-- MySQL dump 10.17 Distrib 10.3.23-MariaDB, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: review_automation -- ------------------------------------------------------ -- Server version 10.3.23-MariaDB-1:10.3.23+maria~bionic /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `auth_group` -- DROP TABLE IF EXISTS `auth_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `auth_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `auth_group` -- LOCK TABLES `auth_group` WRITE; /*!40000 ALTER TABLE `auth_group` DISABLE KEYS */; /*!40000 ALTER TABLE `auth_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `auth_group_permissions` -- DROP TABLE IF EXISTS `auth_group_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `auth_group_permissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group_id` int(11) NOT NULL, `permission_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `auth_group_permissions_group_id_permission_id_0cd325b0_uniq` (`group_id`,`permission_id`), KEY `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` (`permission_id`), CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`), CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `auth_group_permissions` -- LOCK TABLES `auth_group_permissions` WRITE; /*!40000 ALTER TABLE `auth_group_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `auth_permission` -- DROP TABLE IF EXISTS `auth_permission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `auth_permission` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `content_type_id` int(11) NOT NULL, `codename` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `auth_permission_content_type_id_codename_01ab375a_uniq` (`content_type_id`,`codename`), CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `auth_permission` -- LOCK TABLES `auth_permission` WRITE; /*!40000 ALTER TABLE `auth_permission` DISABLE KEYS */; INSERT INTO `auth_permission` VALUES (1,'Can add log entry',1,'add_logentry'),(2,'Can change log entry',1,'change_logentry'),(3,'Can delete log entry',1,'delete_logentry'),(4,'Can view log entry',1,'view_logentry'),(5,'Can add permission',2,'add_permission'),(6,'Can change permission',2,'change_permission'),(7,'Can delete permission',2,'delete_permission'),(8,'Can view permission',2,'view_permission'),(9,'Can add group',3,'add_group'),(10,'Can change group',3,'change_group'),(11,'Can delete group',3,'delete_group'),(12,'Can view group',3,'view_group'),(13,'Can add user',4,'add_user'),(14,'Can change user',4,'change_user'),(15,'Can delete user',4,'delete_user'),(16,'Can view user',4,'view_user'),(17,'Can add content type',5,'add_contenttype'),(18,'Can change content type',5,'change_contenttype'),(19,'Can delete content type',5,'delete_contenttype'),(20,'Can view content type',5,'view_contenttype'),(21,'Can add session',6,'add_session'),(22,'Can change session',6,'change_session'),(23,'Can delete session',6,'delete_session'),(24,'Can view session',6,'view_session'),(25,'Can add user model',7,'add_usermodel'),(26,'Can change user model',7,'change_usermodel'),(27,'Can delete user model',7,'delete_usermodel'),(28,'Can view user model',7,'view_usermodel'),(29,'Can add location',8,'add_location'),(30,'Can change location',8,'change_location'),(31,'Can delete location',8,'delete_location'),(32,'Can view location',8,'view_location'),(33,'Can add reply',9,'add_reply'),(34,'Can change reply',9,'change_reply'),(35,'Can delete reply',9,'delete_reply'),(36,'Can view reply',9,'view_reply'),(37,'Can add review',10,'add_review'),(38,'Can change review',10,'change_review'),(39,'Can delete review',10,'delete_review'),(40,'Can view review',10,'view_review'),(41,'Can add custom reply',11,'add_customreply'),(42,'Can change custom reply',11,'change_customreply'),(43,'Can delete custom reply',11,'delete_customreply'),(44,'Can view custom reply',11,'view_customreply'),(45,'Can add staff',12,'add_staff'),(46,'Can change staff',12,'change_staff'),(47,'Can delete staff',12,'delete_staff'),(48,'Can view staff',12,'view_staff'),(49,'Can add yelp location',13,'add_yelplocation'),(50,'Can change yelp location',13,'change_yelplocation'),(51,'Can delete yelp location',13,'delete_yelplocation'),(52,'Can view yelp location',13,'view_yelplocation'),(53,'Can add yelp review',14,'add_yelpreview'),(54,'Can change yelp review',14,'change_yelpreview'),(55,'Can delete yelp review',14,'delete_yelpreview'),(56,'Can view yelp review',14,'view_yelpreview'),(57,'Can add facebook page',15,'add_facebookpage'),(58,'Can change facebook page',15,'change_facebookpage'),(59,'Can delete facebook page',15,'delete_facebookpage'),(60,'Can view facebook page',15,'view_facebookpage'),(61,'Can add facebook review',16,'add_facebookreview'),(62,'Can change facebook review',16,'change_facebookreview'),(63,'Can delete facebook review',16,'delete_facebookreview'),(64,'Can view facebook review',16,'view_facebookreview'),(65,'Can add facebook page',17,'add_facebookpage'),(66,'Can change facebook page',17,'change_facebookpage'),(67,'Can delete facebook page',17,'delete_facebookpage'),(68,'Can view facebook page',17,'view_facebookpage'),(69,'Can add facebook review',18,'add_facebookreview'),(70,'Can change facebook review',18,'change_facebookreview'),(71,'Can delete facebook review',18,'delete_facebookreview'),(72,'Can view facebook review',18,'view_facebookreview'),(73,'Can add facebook review reply',19,'add_facebookreviewreply'),(74,'Can change facebook review reply',19,'change_facebookreviewreply'),(75,'Can delete facebook review reply',19,'delete_facebookreviewreply'),(76,'Can view facebook review reply',19,'view_facebookreviewreply'),(77,'Can add user account',20,'add_useraccount'),(78,'Can change user account',20,'change_useraccount'),(79,'Can delete user account',20,'delete_useraccount'),(80,'Can view user account',20,'view_useraccount'); /*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `auth_user` -- DROP TABLE IF EXISTS `auth_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `auth_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `password` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `last_login` datetime(6) DEFAULT NULL, `is_superuser` tinyint(1) NOT NULL, `username` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `first_name` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL, `is_staff` tinyint(1) NOT NULL, `is_active` tinyint(1) NOT NULL, `date_joined` datetime(6) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `auth_user` -- LOCK TABLES `auth_user` WRITE; /*!40000 ALTER TABLE `auth_user` DISABLE KEYS */; INSERT INTO `auth_user` VALUES (1,'pbkdf2_sha256$180000$bjtkHwaZBKYw$VDSSBkKs0kFaXhBwT7uLGRHEOKIx0TxzoO5AgW9QxMg=','2020-08-23 10:06:28.534719',1,'admin@ercare','','','',1,1,'2020-01-06 09:03:30.600568'),(3,'pbkdf2_sha256$180000$rDD0adZuyd6Q$EprVaKa3NcKDEhQLGV6z4iTYyf4+weXKyBgPJ+NzaAA=','2020-08-19 08:31:40.645587',0,'admin@motrose','','','',0,1,'2020-08-19 06:49:32.000000'); /*!40000 ALTER TABLE `auth_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `auth_user_groups` -- DROP TABLE IF EXISTS `auth_user_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `auth_user_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `group_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `auth_user_groups_user_id_group_id_94350c0c_uniq` (`user_id`,`group_id`), KEY `auth_user_groups_group_id_97559544_fk_auth_group_id` (`group_id`), CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`), CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `auth_user_groups` -- LOCK TABLES `auth_user_groups` WRITE; /*!40000 ALTER TABLE `auth_user_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `auth_user_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `auth_user_user_permissions` -- DROP TABLE IF EXISTS `auth_user_user_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `auth_user_user_permissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `permission_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `auth_user_user_permissions_user_id_permission_id_14a6b632_uniq` (`user_id`,`permission_id`), KEY `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` (`permission_id`), CONSTRAINT `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`), CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `auth_user_user_permissions` -- LOCK TABLES `auth_user_user_permissions` WRITE; /*!40000 ALTER TABLE `auth_user_user_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `django_admin_log` -- DROP TABLE IF EXISTS `django_admin_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `django_admin_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `action_time` datetime(6) NOT NULL, `object_id` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `object_repr` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `action_flag` smallint(5) unsigned NOT NULL CHECK (`action_flag` >= 0), `change_message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `content_type_id` int(11) DEFAULT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `django_admin_log_content_type_id_c4bce8eb_fk_django_co` (`content_type_id`), KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`), CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`), CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1809 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `django_admin_log` -- LOCK TABLES `django_admin_log` WRITE; /*!40000 ALTER TABLE `django_admin_log` DISABLE KEYS */; INSERT INTO `django_admin_log` VALUES (1,'2020-01-06 09:05:38.604924','1','admin@ercare',1,'[{\"added\": {}}]',7,1),(2,'2020-01-06 09:06:20.878521','1','admin@ercare',2,'[{\"changed\": {\"fields\": [\"Refresh token\"]}}]',7,1),(3,'2020-01-06 09:10:56.631280','8918455867446117794','Stafford',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(4,'2020-01-06 09:11:05.144233','8916258876770296726','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(5,'2020-01-06 09:11:11.089666','8679688254631342173','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(6,'2020-01-06 09:11:15.803784','8626688543755174284','Paris',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(7,'2020-01-06 09:11:21.508468','6521947413723274945','Odessa',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(8,'2020-01-06 09:11:28.456530','3511292162159714121','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(9,'2020-01-06 09:11:36.759738','3272657195432704501','Texarkana',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(10,'2020-01-06 09:11:43.700008','2850309161695582935','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(11,'2020-01-06 09:11:49.850190','2694018788013845459','Killeen',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(12,'2020-01-06 09:11:57.691477','17898197009688164559','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(13,'2020-01-06 09:12:04.898137','17394740196501090048','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(14,'2020-01-06 09:12:11.583770','16891069708558046635','Austin',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(15,'2020-01-06 09:12:11.869104','16891069708558046635','Austin',2,'[]',8,1),(16,'2020-01-06 09:12:17.725280','16590124370714063921','College Station',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(17,'2020-01-06 09:12:23.697719','16389487648212004696','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(18,'2020-01-06 09:12:32.544546','14904078213800803294','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(19,'2020-01-06 09:12:46.645761','14567670160750071148','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(20,'2020-01-06 09:12:52.930828','13486358490203335051','Midland',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(21,'2020-01-06 09:12:59.158644','12541597562633926366','Houston',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(22,'2020-01-06 09:14:02.827834','AIe9_BExcxslmE1rr7n5jMcadSKeEzsETDvvrF033t6gZF1fDIyehvvKHwcNFUen4nRm4OEF45gcwVjY5NX-qusf6CHRMzRmaAgBk3xALNeQ6uIKv08bVnU','Amanda Winnicki - The staff is very attentive and nice people. They make sure you are comfortable and take very good care of you.',3,'',10,1),(23,'2020-01-06 09:14:02.960312','AIe9_BH3gZxYpIxBZcqAOO5HuBVkCIuqdli69IfiARKi3ZuiErMRCKBhQnczCb0QbiEqxDQDErkIFb4At_TNAXTyAitFakW2cCWIXRWVkCv3MfOTJxhvQdA','Alyssa Alonzo - Maya the receptionist was very helpful.',3,'',10,1),(24,'2020-01-06 09:14:03.060469','AIe9_BFu3rdicGrPrzdyu4PDXmqMWOAdyYNv_JdU2WCUKu-vMaWgCXbnGDWip1hr_iIadJEezNmsYg1m04-2Fhz8WCl5YONuWBB3gCAcB-HMjPtgK_9sAT4','Michael Alonzo - Maya the receptionist was awesome and very kind helped us alot',3,'',10,1),(25,'2020-01-06 09:14:03.168595','AIe9_BGErQpX2pRNZrXBy5NOsH0eq7oTwYuiamPTPuFNrmtdCfL7EKcQ0v8okbHh8rgP17b4s0IAJTgv2FOw7rbHi9YhuGaOiXw2Pu6_pvjNOddbboV0oRw','Armando Alonzo - The team at signaturecare was amazing! Kristina is the best nurse ever!!',3,'',10,1),(26,'2020-01-06 09:14:03.266826','AIe9_BFu3rdicGrPrzdyu4PDXmqM6DJTb-iEo3b2mMQIt5bVMEkVSeLw_gbcP6grVFv_xLOhoPqJ0z92TAhwDh7Gwj_kPkllxCWB_stwf3FjmDiQfzQpE1I','Celeste Tzunux - Maya and Kristina were so helpful and wonderful I recommend it',3,'',10,1),(27,'2020-01-06 09:14:03.614707','AIe9_BGhYIk2KhOdF8fekWDvq8JUuGaF2Phe3ivsD7IlDcHJ9fVgQ-hSpcVsCWOknCw3Dsp_3MDo3gB9MDXiYuXrI-2iSW7DQspKqfupoeMTJDEuw_NIktQ','Selena Tzunux - Great place to be and inviting. Maya the receptionist helped a lot and made my mom feel right at home.',3,'',10,1),(28,'2020-01-06 09:14:03.713180','AIe9_BGvUJd9etQojwpjZIMsiFne_zWQW5oeehe-jcZtF3TRx_RQQw4b9rAFCKUiUgww2DElIaeZngqNpBojfvniJSM1L5PqDb5FNrgriVA-tpHYPcaCF7I','Norma Tzunux - Always great to be here. Maya and Kristina were so helpful and pleasantly wonderful. def recommend.',3,'',10,1),(29,'2020-01-06 09:14:03.811816','AIe9_BFLWlqwz3qGBnCfbAsLD0lV6r_d1DR6No45Upkaz-LeBAKoO7DKckZvztRH3qRVyqoKoA0-MNin3Vxme2hmjDTKXz2c_tovQ8TF8CHXGR_BXSKuwzM','yvette lee - Maya the receptionist was a great help! My nurse Kristina was so kind and caring. I had great service. Way faster than an normal ER. Was in and out less than an hour and received great ca',3,'',10,1),(30,'2020-01-06 09:14:04.008484','AIe9_BGTHfLB7ZAtvlQmidaL-PvD_z4WQ_7YgdcwHUohTAlZ0zuGRti_y2yGWhzrEO75dupMf6PvuvTmv5PhhwD6vLh77NbYcZJpHaLADixPkX6XfNmRowY','Gwen Baylis - I was seen and began treatment immediately. I came at 8:30 am on Sunday morning. The staff was friendly and professional starting with the receptionist, and the whole medical team, incl',3,'',10,1),(31,'2020-01-06 09:14:04.107080','AIe9_BEuFX7PcAP2nNY_ju84FoFSM4ADFdHyLAqXsbvZSinHObsjEHGgfgOJqJmjDfNO7SobJvfd1MyNhx_bPqJauP3fCcflD0Qn9bU2q8IMkUaDdFQxU6k','Anthony Nelson - Great and speedy service. Excellent care from Dr. Zheng and her team. Shout to Maya for being professional and expedite when we first arrived.',3,'',10,1),(32,'2020-01-06 09:14:04.205531','AIe9_BGTHfLB7ZAtvlQmidaL-PvDT_C2zRNcVEbh9_NMPN0wt5Q9TisBEAcnlthfJIp3ica64yUpj9UmZUljD3zMQ0HTgQq_rB8Q_K8duGhMcAGAK8sDZOQ','Roxine Smith - The staff DR. KE ZHENG,MAYA,KRISTINA,QUYEN AND JOHN WAS EXTREMELY FRIENDLY! THEY WENT ABOVE AND BEYOND TO MAKE SURE I WAS COMFORTABLE! I WOULD HIGHLY RECOMMEND THIS LOCATION.',3,'',10,1),(33,'2020-01-06 09:14:04.304112','AIe9_BHZM2k_MpOhRgkb8w5Bn_urLR3pLn2rDZ0p-A6Po3F1JHB1cZz3CdhX1r3F0XOwCEYgaPL-xrn1TUA03e84fgz10Bxl7qydK6dTwloUxDh_aHAameM','Jeffery Jackson - Maya the receptionist was a great help! Location is quick and fast. Definitely will visit again.',3,'',10,1),(34,'2020-01-06 09:14:04.402121','AIe9_BHAFUK2tNBZL25dLQ0jVdh0m26WgOOOn71ISQ-Fo4bvy15IluAEk32G85cr7swUVNbCtpQWPjWruyRCk_xLkL-lNAw17F5b3bVit-fVu-M6aMomGQo','Fadi Had - Every one was great thank you for making my wife fee better. Maya was an amazing help!',3,'',10,1),(35,'2020-01-06 09:14:04.549890','AIe9_BG84YPnR8vhxeJfV_lAYVNiLlio9FTmSWRFLhzs0ebITdbqySdxon0UnNXke5d-QSbS4KUNGOCd0pvuF87afDQJmPZSjvT3skh6PzelDhL9PZ8ukjI','Nadine Badreddine - Quick and fast team, they make sure you are well taken care of. maya, Laura and Stephanie were amazing',3,'',10,1),(36,'2020-01-06 09:14:04.697735','AIe9_BFhqAtkXvUqdYNeMuBBGjaAz5vNapEjUheH9jDDM7a1sCAyL2uxJ30AfD9wGqHPohPj8dalqJh77nWCQsbfRJapZ0zDzZwxYblTlwaF3bZPexvkDw0','Ofer Faig - Thank you to the Westchase team for an exceptional service. Kristina RN, Laura Rad Tech, Scott, and Dr. Leavitt. Thank you for putting me at ease and being so kind and professional. Tha',3,'',10,1),(37,'2020-01-06 09:14:04.796542','AIe9_BGvUJd9etQojwpjZIMsiFneRtbPIIWelEspna736FNehbUljR4-47D3O77PGKXOaKvyhTBbM0Pak-ERtHFbXZ3kio0XRiFMd6eHrqrE7FURtgh8FCs','Adalberto Arguelles - None',3,'',10,1),(38,'2020-01-06 09:14:04.895348','AIe9_BHZM2k_MpOhRgkb8w5Bn_urvmasO8TFmwhANvUNpH3CJ0j2_QMYsgYq9nIHQRRHIqdn-uHlH0_zm8CaMkYzDHaR6wXTSi7BFqlVTJKHUCdGwP39AWM','Brody Saxe - My fiance came here for some stomach pain at 5am and the staff were fast, nice, and knowledgeable! Dr. Zhen and Kristina were amazing, we will be coming back for sure!',3,'',10,1),(39,'2020-01-06 09:14:05.092184','AIe9_BEuFX7PcAP2nNY_ju84FoFSX2gfNzPBLDxbJf-8B_ThCNxkN71QlBiC4zFqnTy9SfsHdk7CXagPV1RZe4p54GR4RUWP1M_tOmcMZ17GNJNUfpHvvd4','Deklon Smith - Friendly and welcoming staff here at Signature Care Westchase!',3,'',10,1),(40,'2020-01-06 09:14:05.190508','AIe9_BFml1g03-jEFpSzhzgS2OedHxBGfEGAKuXpcT5yqrpTpJ0p8K8r_nb25mLiD9uVR5L8s0QuSe1PYioq2gvPXt_x6ogBmOlwXMiGdDT7zc-zfC_W4T4','Anitra Francis - Great staff!! We will be back!!',3,'',10,1),(41,'2020-01-06 09:14:05.289002','AIe9_BGErQpX2pRNZrXBy5NOsH0enXFQyGIhBV-mQUwiRxM64rsNj_GGPcp8-pBA0MDFwTNXeKPQ1KG639dMCKz0A5yn3rj65oz0ZNaF8S80PBy-jARGB98','Erving Wilburn - Ana,SARRA & FAHME, SHERWIN, CHRISTIAN',3,'',10,1),(42,'2020-01-06 09:14:05.387516','AIe9_BGvUJd9etQojwpjZIMsiFnenUlH5AwA3aWHmtWlPb5V56eRdWmqcNrToHofUs_-waBQpYrZonhbidS2ivY1hIclouf-BaX-ESzg2c60XcIVs_ZtQD0','Salina R - Great customer service! \nSeen almost immediately when you get here every time!',3,'',10,1),(43,'2020-01-06 09:14:05.485600','AIe9_BFMK6FB7k24ANEBV5CospTTR33R0hN4NoDQa10CUQvGeYhbVGZdLjEcAusGne-o3JLb98QRu7fviPXc0QUuzppBu4tc-cVVybmsfU6TN0l7gl-LghU','Anoop Shankaran - None',3,'',10,1),(44,'2020-01-06 09:14:05.634256','AIe9_BGhYIk2KhOdF8fekWDvq8JUYXrf0guChDTiTOXDdIkiuzpjuyMT_b0ITCz5_uYQ7pH0CcJYCyzSEuH51iD0-KdvWsA25OAgshZKFtajiak8iNR1s9s','Mal Miles - The staff here is awesome!! I am not a big fan of hospitals but everyone here makes you feel at home. They explain the process from start to finish. Not to mention it\'s a bunch of beautifu',3,'',10,1),(45,'2020-01-06 09:14:05.781426','AIe9_BGlY-BaOO_aND3JZqxJBS1RSCyt2BGjoCj-1gSK-sjdlHgO5I32cYxNzEr_fINX0fC1Gauwpc5HOg1KCFEOdQurRuEfDgzjBWMALkiLxxlh8sK6AbE','Derrick Abrams - Kristina was the best! Would definitely recommend. No wait and ALL staff were friendly and informative',3,'',10,1),(46,'2020-01-06 09:14:05.879931','AIe9_BEV1VP1woYvuPRixSBHlWg4qEdLmkiaZhHRdaYuhXMlEt06hpfqj6wTh71iiuv0j-ma9XDbvBgyuedpswUOo5numPYt8xhD_JxRuN-vFoWwcdxMlNg','sonja Bradley - Fast and wonderful care. My team of caregivers from the front to the back were extremely nice and attentive.\nDr. Tran\nIrving Sherwin and Bram\nThank you all.',3,'',10,1),(47,'2020-01-06 09:14:05.978447','AIe9_BEV1VP1woYvuPRixSBHlWg4xQTdydypHTE2HpHvH6IX8nRetS3Gs8vzKKsqnmf3HNIts1t3bHntqdX2OI6_y1B5CR8bKxjZBbEMtECmwNT0nmyQkg0','Stacey M Ruffin - Very poor service didn\'t know what thy were talking about had to call another hospital for advice equipment doesn\'t work just over all a nice looking clinic thats it',3,'',10,1),(48,'2020-01-06 09:14:06.175649','AIe9_BGErQpX2pRNZrXBy5NOsH0exp8sXCS9QFT-vcAHo1h3vJyh3sSLmoFj7maFoXy6-UdSNIFxxOyp1KJ72IPNgeg4ImjhlkN47ThrS-m8xkNOa7wP5_k','Daniel Binder - Took my child in for an allergic reaction - was treated courteously and efficiently by Maya at registration. Nurse Stephanie was helpful and gentle, and tech John was as well. Dr Fai',3,'',10,1),(49,'2020-01-06 09:14:06.274232','AIe9_BF8X4EpR_fF6mwcYdso9awgt1GJB6nMiDLPb4aqFgXvtPmex9CTTbJ40Un5oq6P0uIE0Cm17cdbdSeOrUIKsjyjTsjsgrHRb7r_m5jpRLl6dMdcWnU','Nicole Kaspar - They got me in quickly on nye (my birthday) and got me back to feeling well in just about an hour. They were so kind and the whole experience, which I thought would be a chaotic one, w',3,'',10,1),(50,'2020-01-06 09:14:06.372392','AIe9_BG84YPnR8vhxeJfV_lAYVNi5CfrWxVtYfwFlte2R4-MKcPbcLfb9xsmyjvmxdfZ0YW6e3nHeva8ugWDl5aPnoyE7dkqekqLrcidYLCfBAK9uK3FBS4','Claribeth Dominguez - Very fast , attentive service. Conveniently down the street from our house .. We only been here 30 min and they have done at least 4 test . recommend this facility Dr. faig, maya',3,'',10,1),(51,'2020-01-06 09:14:06.471090','AIe9_BGhYIk2KhOdF8fekWDvq8JUu1TtNuYaoX7FM13gfM8NAAP7k2h0i9hVCTBiVYK6L7oP44Vzcvqcl2JALJaLqWD0moTZnexrJyLGX-0qoWeKFfNgRiU','Jay Holmes - Had a great experience they were fast and thorough Kristina was great and dr. Faig made me feel so much better',3,'',10,1),(52,'2020-01-06 09:14:06.568923','AIe9_BGvUJd9etQojwpjZIMsiFnegjW5HpmQ34ZJZZhrOxdbF6Q0XCPK3roXtXBqt_06fmLmC94CahMLXk_R6IG_qbPYSOt4HADqdLV48BW7iMY7-bB4hTM','Brandey Dale - Maya the receptionist was really great we were in and out!!!!',3,'',10,1),(53,'2020-01-06 09:14:06.668478','AIe9_BG84YPnR8vhxeJfV_lAYVNiElVJOOYDomLqxLZBfNWT9fkKlJx0z9oXFPG87-xxsBhbX_gujmik1nxKdS59zNw_ZZToWVHKyV89JvHmp6CHyFkGNIY','kayla groden - Maya, Kristina, Quyen, Scott were great!',3,'',10,1),(54,'2020-01-06 09:14:06.766413','AIe9_BEV1VP1woYvuPRixSBHlWg4lErEEzaIOgHsTSI01NFBHH_0FGrriA26sHGx9l3gsnWKWdRIBd715dKx_HLl-nb42E-FsYhh4aYiCGx84-c3pRhI7XU','Cam Chau Hoang Nguyen - Thank you so much to Dr. Faig, Nurse Kristina and Radiology Tech Quyen for your fabulous service and care for me!\n\nYou all were very nice and made me feel at ease even while I ',3,'',10,1),(55,'2020-01-06 09:14:06.865156','AIe9_BGTHfLB7ZAtvlQmidaL-PvDgL4HYt-imaih0RIhsZvM355xML17h5tMCwLsSTY_TQfDS88FGiWU4KX0c74PF0QSNv9ERFO2HpA7XQDKTzX0dbWO7Tc','My-Linh Tran - SignatureCare Emergency Center - West Chase provides excellent medical service at any time of the day, especially for those hoping to get medical attention without a long wait of a doct',3,'',10,1),(56,'2020-01-06 09:14:06.963831','AIe9_BGvUJd9etQojwpjZIMsiFneCkGj0L_DZYFaBq4ereqRR3RqAOMrfOnv11KnqSPQEgHR0N2m4IopD5AvjLcKdXwXMo8An9sUuXIhyCwZxyH-lflLYeA','Chris Jones - Quick, prompt, and professional. On top of awesome service; these guys treat you like royalty. I would definitely recommend this location to anyone who needs fast, reliable service!\nFrom',3,'',10,1),(57,'2020-01-06 09:14:07.062129','AIe9_BGvUJd9etQojwpjZIMsiFnetWJeMzG-DTUb4MLMyuBpgruEquifQ70eUZqKkd_m9NwHPDJDMs632DVY9-AHC99siEMkTgSGxUVfybsBE9lTsfLBP28','Babyykayy - Very quick and friendly! Would definitely recommend',3,'',10,1),(58,'2020-01-06 09:14:07.259082','AIe9_BH3gZxYpIxBZcqAOO5HuBVkZunNPN6OBv_dQOf_Efm1gcLT10tcCKrX6mhNgN6sMHcSpa3Iw6-R4P9MYkG-3WP1T7ofxyCflsfV6Ku691MFjl0EE5c','PJ Norseweather - This is a very clean place with nice friendly smiling faces. I usually go to the one on Hwy 6 but this one is closer. The service was great, I was seen pretty quick and I am pleased ',3,'',10,1),(59,'2020-01-06 09:14:07.357463','AIe9_BH3gZxYpIxBZcqAOO5HuBVkrCYht9SFDq0cVV9yl7ekVwE8HlCpB1gJJ-KsT0YLcOe7NOzLElg5Lq9bczizNVlxzzQ8XO2pzbXt3JnJGZBB1ThtsMs','Sofia Ramos - Really excellent customer service. We appreciate all the help of Dr. Zengh and irving, Holly, Ellen and Thelma. Great team!',3,'',10,1),(60,'2020-01-06 09:14:07.455912','AIe9_BFu3rdicGrPrzdyu4PDXmqMZhP-xUdS3Jhz5uM0s4_yfQ5AJrzIO5ikJMZImbRqal1HCeHz2Rngx4qn4SUJD5W3kdYDQG-rsd_BoVICAV9Y2a1Uhkk','Tiffany Carr - Tonight was my first visit here. Our wait time was less than 10mins to go in the back. Terra greeted us and was very friendly and welcoming. This ER is very clean and offers coffee and ',3,'',10,1),(61,'2020-01-06 09:14:07.554304','AIe9_BEAgUIalCkcXZnurOUpP4uA7xRuBXTtiEw3RG5w_Xwv88eSvKW4h2P5ShNbrotenodj-o8tqC6MPBqP1QJLhmy1OpTKY4O0699HIyLrJl5M2i8fnDk','Terrielle Harrison - The staff was very professional and the wait time is little to none. Great experience!',3,'',10,1),(62,'2020-01-06 09:14:07.652447','AIe9_BFL0OZrFaHgoJtqifT1GHrIc2pv--mcZFF_rrw5jmVhI6CZ2p0UsPNdF7WZVOMtCw8zvmmeGvGgs2wvCLm9cKa1S1wjND9WpLzX_Yr0E4T1AFEhHfs','Jasmine Smith - The care by Doctor Zheng and nurse Irving was amazing! They were so patient and caring! The whole staff were great ! Thanks',3,'',10,1),(63,'2020-01-06 09:14:07.801002','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMpUrNS1XsTMUTs9xKwyAgEWrK032XNGh9O-CYWz1lqyhJ9v3mGVtd5-dYS4zZsT0F3KXMbztvqu3FX0GJ-2RUENKtmJ0','Coco Alexander - I have been here several times due to a few incidents and they have been the best EVERYTIME!!',3,'',10,1),(64,'2020-01-06 09:14:07.948280','AIe9_BHAFUK2tNBZL25dLQ0jVdh0FSfF9NhOGu6AExd90HlkqOTNgCHzE7Vc7DBcyJVx0Vr6xfzcqeMIfsCcyR_NKPYKTSN7WijyzU2JpOi7bk7jA6rh_bU','Bernadine Philip - Very clean environment and incredibly fast. Nurses and Staff were very kind. DR Wang was very professional, and so far best ER experience',3,'',10,1),(65,'2020-01-06 09:14:08.046790','AIe9_BHAFUK2tNBZL25dLQ0jVdh0GmVokwUaATOCXzghQ6AZtTttUkeEdAUIMSgcjyJevAUtrTBdsuTaPWVQkneWw3qDWbnNDU6U1reCJoBa6SEe4ZApdx0','Bobby Shemiranipour - great place with awesome staff, everyone very nice and caring and helpful, thank you',3,'',10,1),(66,'2020-01-06 09:14:08.145473','AIe9_BFLWlqwz3qGBnCfbAsLD0lVvYdkGkXuUKrw434No6P-GJbxoV5rRUjljRUsWK9THOdEMq2N6ivma6I8kAD2asn7zPIfhwtA12BoT3Q_63Qi7cKK10Q','Adreanna Hill - Dr.ibarra, Nurse Irving/ Kelly, Tech Thelma and the ct/xr Tino where sooo awesome they made the time spent go by fast and they always was checking in just to make sure I was ok',3,'',10,1),(67,'2020-01-06 09:14:08.342439','AIe9_BGErQpX2pRNZrXBy5NOsH0eXChN6tllzpdBBxp274YeTnjay4ANjIhLvtQU8HC8Srvgri8C61W_bkzSrFXG-71DDyHcT5EOAi0FeX07R2k_-disnIU','cynthia patton - The staff was friendly nice knowledable especially my Thelma and Irving. Them two was a hoot. Should be more ppl on earth like them too',3,'',10,1),(68,'2020-01-06 09:14:08.440728','AIe9_BExcxslmE1rr7n5jMcadSKeJkWurxNGmmXZdbmw8VSxTYh241m-n3QJkdx_FWjEZziNI5wVwIUrFlDw-RzMl5Ffbne6ZZkI24V230_o3wDutyjih2Y','Diamond Jay - I received the best care any one would want, And it was Quick and reliable🙌🏼. MD - Do, Registration Ana, Rn Irving, Tech Christian and CT Holly was all amazing and helpful👏🏽 Highly Recom',3,'',10,1),(69,'2020-01-06 09:14:08.588637','AIe9_BEAgUIalCkcXZnurOUpP4uA2JA3ltCgtaeDbfg0pvQX_6O4D-RTPS4vHFME009Cq2iMF0gZFLZugJFaM4aT_q600fBzGYNp57pTjPI4KVLt9gZ2yA8','Breanna Stubblefield - Great experience & very helpful & amazing staff.',3,'',10,1),(70,'2020-01-06 09:14:08.637847','AIe9_BGTHfLB7ZAtvlQmidaL-PvDmEYzhwSN9zNuWwlWaF_CmSW0kYhP682uIRZpU2OOKgk13bLvbPgaNqDD5GISd2H8KkVENZhMiysCbEi10A4MWbV3nLU','Katina Chimney - This facility was exceptional from start to finish. Thank you Mayra, Lia, Christian, Scott, Dr. Zhen, Dr. Do, Kayla and Estelle! I recommend them to everyone!!!',3,'',10,1),(71,'2020-01-06 09:14:08.736393','AIe9_BG84YPnR8vhxeJfV_lAYVNiyHgb6Is-l24m3SZ28KlTKx8otgYCNG5jsFdoQpIlJc3BnVmfESCdGGRivP6slEiplo7tL8uLCGdCHodZCfe4Lk-lw0o','Alysen Campbell - I had a really good experience at this location with Kristina and Dr Zhen! I felt comfortable and confident after my visit.',3,'',10,1),(72,'2020-01-06 09:14:08.884387','AIe9_BGTHfLB7ZAtvlQmidaL-PvDFfpQIBFRXvQ-mr33be5CGb6ZnfMIZuoDJQUC80DleKW3itYcWejGai8t6SRpbyBY0AvGFN-2_7Y06nnDCl4NJSvADGQ','Mercy Hoang - Between nurse Kristina, Dr Zhen and Dr California this couldn’t have been a better ER stay. It truly is concierge service for the same cost to your insurance as a large hospital facility',3,'',10,1),(73,'2020-01-06 09:14:09.032055','AIe9_BGTHfLB7ZAtvlQmidaL-PvDznYxHe6e9JexG7VJJh-opwaKKxBtQUXmoJwSkfK5uxd2T6RGr9PYuP4awiCCjBvXF6DjOgzs9GOx_gmAuU5ZrhGHjwU','Gisselle Vega - I had a great experience here, I was seen and treated quickly. Dr.Do and nurse Leslie where kind and helpful.',3,'',10,1),(74,'2020-01-06 09:14:09.130821','AIe9_BGIy_plKfaZrItPyyQZNLvsfRSUYcUQwIVi_bDDRDQE8EcOnFh5NLzfMcy2zKJwIkbTZ96RxMSn8ByM_-m1GdrYuQ1SxaGdQjWzxPfawyAwCHdBB_s','ANTHONY BUCHANAN - Staff was very friendly and extremely helpful. the Nurse Kristina was very concerned and explained well. The E.R Tech Scott was super care when drawing blood and made sure it was as',3,'',10,1),(75,'2020-01-06 09:14:09.229224','AIe9_BGlY-BaOO_aND3JZqxJBS1RNJZ1NpJmQecnbcUNxwTU2WmzQ3hc2U8bxDgXrvEO8lFTQRr8KgaPBmxAzrxhACv4PGeexS-obpPiSVYhKJZuRoltxQ0','Crystal Vega - Nurses and team were very nice and attentive. Got check in and seen very quickly by Diana. My husband was the one being seen and the doctor was dr. Zhen and his nurse was Kristina. Grea',3,'',10,1),(76,'2020-01-06 09:14:35.077978','AIe9_BHkHJRvhG8n5BjqdcMSKR_FYnbI1e2VdQtzpbcBO24IMKXA70u5NihQSZTzSRJFhfwHbiYxG50Ew6hsz7ibbwTMRRg9S2yZRrpuwYxwwDmJRCCAcoE','imran2mane - Good people nice service and fast dr. Do nurse :Irving and Sheraton and cristian',3,'',10,1),(77,'2020-01-06 09:14:35.133263','AIe9_BHVBnWjBJvk55vq2QEm0wl--SB2W4B62oOhnj1Bo6ckWPzByJ64USGG6ruV4NBLIZMVWYRYDYU-rzITQQIpaajHJ0kpEvbigJFLo5BTzPK6ZiTqPsY','sheni11 - Very nice facility, the staff was extremely helpful and friendly. I was seen immediately which is amazing when you’re in pain, I would highly recommend coming here!',3,'',10,1),(78,'2020-01-06 09:14:35.231942','AIe9_BG84YPnR8vhxeJfV_lAYVNiBoC78SHHf6txeoPCGv1w3vcj_Mraz7De1WY7wBtI0A0fDhT5ZiDfDUtRvAewLu-cgTndKWd4NpjsDz3YtoTDe5mEcNI','STIFF Muzik - Very nice place all the staffs are awesome everyone has a good positive characteristics \nI recommend everyone to come here definitely five stars',3,'',10,1),(79,'2020-01-06 09:14:35.470628','AIe9_BG84YPnR8vhxeJfV_lAYVNis2w-rg82afG7Radt3AgWKMJw1vHqdeiJl2kNdT6gLFg_w_iewBaYCAfK7R7hClylRHQykOc4CLnT2wpEfoK1o1qZD4g','Brie Brown - I had a good experience here, very fast service and friendly doctors. Thank you for caring for my injury. Happy Holidays!',3,'',10,1),(80,'2020-01-06 09:14:35.520323','AIe9_BGvUJd9etQojwpjZIMsiFneOpZtMoZ-Ja780uRlt3FLizNnv5YYN5DMRZGQRnJaXeGHbZq7VTKihFqwHyuxSj96j3qoUuhDkMRYDAeJGZvM_lNTHkA','Taneisha Ezeh - Quick and efficient service, friendly staff appropriate medical care provided.',3,'',10,1),(81,'2020-01-06 09:14:35.569508','AIe9_BGvUJd9etQojwpjZIMsiFnedM0q-XlA9VKnqu7lcdZ5HPwe5UFcKtVKab6ELpw_vale6xtLgWqrKhbTB7UDDbDjF3L4C21Fv4KRnHxZTINUgvnaKI8','Johnathan Felder - Very helpful, I was in and out in no time!!! Staff is very friendly and professional!!!',3,'',10,1),(82,'2020-01-06 09:14:35.618851','AIe9_BF8X4EpR_fF6mwcYdso9awg7xgdfN6zC6aQ8ar7luJSXuuCkiN6ClVqhp4D41G5lFwJf3mc9Fc_ehVPN4Gd9ohfqcFHlmibaXfbjxjAxAIPN_AQJrQ','Jonathan Renderos-Rubio - DR Feig and nurse sarra were amazing people and helped us so much! Highly recommend it',3,'',10,1),(83,'2020-01-06 09:14:35.668173','AIe9_BHZM2k_MpOhRgkb8w5Bn_ur-2Ywr--aYHcMwAeWZh4KMXjG-b4-owrG0BYaCQxOvSIgABq2toyIokFIJya2MJRjtuy9u1Y8Fv1QRHPMBM6PQq-kse0','Jennifer Alvarez - Everyone was so caring (Carly, Sarra, Holly, and Thelma)',3,'',10,1),(84,'2020-01-06 09:14:35.815946','AIe9_BGTHfLB7ZAtvlQmidaL-PvDQa3u3UPgG9Lcu1no-B9V7b6tWLvtdWnUeCXl5ws08b69mCM9jHT_Hx5Pd5rE1vmxWqv7TclUNW3HkrRHb_RLAc9BEv4','Walter Salamanca - Everyone there are total sweeethearts‼️\nCarly\nSarta\nHolly\nThelma',3,'',10,1),(85,'2020-01-06 09:14:35.914479','AIe9_BEV1VP1woYvuPRixSBHlWg4ai_D8M0FHEaIa0DAO54UBeg9aMEDkcZF4P8ixlIhH5CO2sqHZochd5GuzdbrseJurkWW8pVKdBH_H3zCKJybJWMrvIE','Melody Salamanca - Everyone there were total sweethearts (Carly , Sara, Holly and Thelma)',3,'',10,1),(86,'2020-01-06 09:14:35.963388','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMll6hI4jg7KDKAaNq-CCXHxj-lVjagrNkxhpr5lV1bg4fc9Cy8q40_MKMrgG7Fl4UJXWHWr1h4gog-G3sgKO8ar5PLWQ','Hasna Aouya - Dr. Faig, nurse Sarra, radiology tech Holly, Carly at registration and E.R tech Thelma where all very nice. I didn’t even start the paperwork and called my name. They whole process was ',3,'',10,1),(87,'2020-01-06 09:14:36.111532','AIe9_BGErQpX2pRNZrXBy5NOsH0ePKY2HZaFSBeKwNVzNO5mg-KcLVAL6h6EH9j9HeH_xYIv4SJNXjLHCEgNZ1NyCa5VpO39Wq-DpXWdgO28B9gO_eGHyoM','ameras G - Maya at the reception was so nice very helpful',3,'',10,1),(88,'2020-01-06 09:14:36.160280','AIe9_BHkHJRvhG8n5BjqdcMSKR_FTcHYJ_jtvOW8kiHNKNBDHobSG0NcyxQVyMLyt0vJqOuR4NKsY3YAC4NiuaohtGZfLHbkx0qQAVbQxcXiZvlF2Rfd2F8','Chadwick Ward - The staff was extremely friendly and professional.. keep up the good work guys 👍🏾👍🏾 Dr. California, Laura, Maya, John, and Fahmen were awesome!',3,'',10,1),(89,'2020-01-06 09:14:36.259325','AIe9_BGTHfLB7ZAtvlQmidaL-PvDEJ4dPIRVLCtcE_w1OsIXYCIK9uvVKio2m_QpNQCQvbW3q_ozo6SDCeGF56ki_55DXpt94n_B1uu1nXXLliejdxaYR0M','Young Lion - Dr. wang is amazing he answered all our questions and was very professional. \nCarly was very professional as well \nAnd the rest of the staff was amazing \nSarra, Thelma, Sherwin very amazi',3,'',10,1),(90,'2020-01-06 09:14:36.357988','AIe9_BFDvtvCY6mNmVUeGBiBb7S5qAZ0rDgLqK3DWZnOWZc2SKXxMmUqniJNEk84VNjQk283rGOmH9XOxLBhj4z90nhMEHJjIG_nsATxWs0dUdTOwCIJ6BQ','lashawna white - My experience at signature was great. The staff at this location is very friendly, patient and makes you feel comfortable. Dr.Wang was very detailed and patient, he listens and he ma',3,'',10,1),(91,'2020-01-06 09:14:36.431960','AIe9_BEAgUIalCkcXZnurOUpP4uAAxS1smbCGKp44STEFJEsrIkwt3-M4Yz8ZtpZqXoFuXB4_qfLO8dcubLvY7qOGEgvaRT1TGPrt99J3bYSGShf9ybTnc4','Bunny Evans - They were also nice starting with registration with Carly! Dr wang answered all my questions in our Rn Sarah was wonderful even the tech Thelma and radiology Sherman was great!',3,'',10,1),(92,'2020-01-06 09:14:36.481122','AIe9_BFLWlqwz3qGBnCfbAsLD0lVMMHg8rD427VYc3VeSHspzB28qsqZknbLXQhxouaO66QEwAQcdjgNL36R--LnCGES2IvYhmTYA6kwNv-JidSVc3RahsA','Christina Treybig - Great customer service and wonderful staff',3,'',10,1),(93,'2020-01-06 09:14:36.530354','AIe9_BFu3rdicGrPrzdyu4PDXmqMiWO9dy9na8VxSmMvDV3V32swHMPUCQGsPD0wtZfGl6VKqy5u8zjwRB77GjLRqAvwT0OZSzwl7wA-wS54Uczcwef5-jQ','Kiara Brown - Stephanie, Dr. Soli, Irving, has given wonderful service to my daughter...FANTASTIC JOB !!!! LOVE IT',3,'',10,1),(94,'2020-01-06 09:14:36.579683','AIe9_BExcxslmE1rr7n5jMcadSKeMSv7MzlnZ1Zumsj_Mhckk7ZBfM4A5a1HBEmNrh00A0CpKtHFspvMavbUQb6tHpgXoVbU4-4hSXKxh_fAT7sun6ja0GY','Giovanna Flores - Came in for a bad tooth abscess.. maya at the front was super helpful and nice!! The nurses and drs helped out a lot! Definitely amazing!',3,'',10,1),(95,'2020-01-06 09:14:36.628996','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fp1mIKVEywe35Gt5YTvqsr8e1tRtc-dyUOAEMpl1ZfNNNnLNWtW-aH_UhhW1h39rvYAzSBBtANaKVJDUwpR6iYuQP808','Geovani Ramos - Very dependable and fast giving good quality care. Maya the receptionist was a great help! Highly recommend!',3,'',10,1),(96,'2020-01-06 09:14:36.688701','AIe9_BF8X4EpR_fF6mwcYdso9awgIDImR3CZ4pL5z9wTLaQ_ooI03OaP9R2we_0FGDyr-T1QfDbP_4ikZCQipvptBGVyZA0-CF2aqynzIgT9gDOWw_UANGc','Colleen Andersen - Best urgent care! Quick and efficient. They care for people individually. Registration nurse, Ana, got us back to a room quickly and we were well cared for by De Faig, Sara, Tino &',3,'',10,1),(97,'2020-01-06 09:14:36.737970','AIe9_BFL0OZrFaHgoJtqifT1GHrIdrXotLiJvCkmY7l5ciADvdANIXuPJlMdK5vIt-b3eendfn38Gz-JUbYqSffK0lV8ozef2q3QFHOxg-pUCSHDn6vvMws','danny chavez - None',3,'',10,1),(98,'2020-01-06 09:14:36.787700','AIe9_BFDvtvCY6mNmVUeGBiBb7S5mxqFhravyVA170gU44VNqoVYKe8_er4FEmlj1f4_QBbkHtHl0XwqcpVlB0q_2iJoNCyUroAQp3msGjfL2VdwNhSQ3rM','Pre B - First time visiting a Signature Care Emergency \nCenter. I came in with my son who was experiencing leg pain. Check in was a breeze & we went back in under 10 mins. The staff was very pleasant.',3,'',10,1),(99,'2020-01-06 09:14:36.886427','AIe9_BHVBnWjBJvk55vq2QEm0wl-y11Q3KX2xF2nR7QGFgk1oWtBfTMluZjjiNpDtFfsTUFAl6JVuJUeebsZlMYzFQS_9asCZVYkPCOvC1lZNF9Fm44r-2U','Leonnya Elmore - Really great service, got me in and out in time for me to make my flight. Very personable and considerate. The made me at ease despite my discomfort.',3,'',10,1),(100,'2020-01-06 09:14:36.960165','AIe9_BEHZ7lh7y1sP-UInhkpmlIp8ojtdV6lNtwgKcYNddwFLFQrr2YLwRwbEgiWHJC4ZmtLCFYNsLFlKCOHn9Z_MZ8D1U8qBpEk85s4KqDx9SGRkkDYvS8','Lacretia Richards - The staff were very informative, helpful, patient, friendly, fast and caring. I want to send a special thank you to all staff including:\nDr. Faig\nRegistration: Ana\nRadiology Tech: ',3,'',10,1),(101,'2020-01-06 09:14:37.009546','AIe9_BFmRFRFwJGRfUDOW8jG3rXn8Dprw8Xg__eDFb93MkGtd_uCI6307C0kxbc8zE7w5emWxq_xgdf1ZCUA5w67XTBj3r8upRH2uxjOzZ8HB5g2yrFWrJY','perry davis - Everyone was extremely professional and made me feel comfortable',3,'',10,1),(102,'2020-01-06 09:14:37.069941','AIe9_BGhYIk2KhOdF8fekWDvq8JU8ZdL6dRkQZczO6zHlTQO-AwSwgQcSG5BXaUPui05lvV2ijlt406xZtrSY3_F-5A1yxOnQ9_Yl1BYJ8Wj4ZV-F3LK_fc','Leo F - Great place! Clean comfortable environment. The staff was excellent in everything from the front the front desk when checking in to seeing the doctor and checking out. Dr. Soli, nurse sarra, ',3,'',10,1),(103,'2020-01-06 09:14:37.130287','AIe9_BFhqAtkXvUqdYNeMuBBGjaAMAeq9fEXCtV2sGOiNnCoCU7zOTAa558NO66EdNswsBfSY-K_Uhoi7x1nelIR09QxuPbZs-fA6lEM-q_WyIAMyUcKbIc','Ricardo Polio - From the moment I entered the building, Genesis at the front desk welcomed me kindly. Nurse Kristina and Radiology Tech Laura checked me and took care me. Dr. Wang was exceptional wi',3,'',10,1),(104,'2020-01-06 09:14:37.179668','AIe9_BFmRFRFwJGRfUDOW8jG3rXno-kRmYAfIsMJSPKd8pM2yiqV2f-b-JUDR6_8yfl5Le7cvbEBuvSfydTfslJJnF7aNwXnzevHhCeObnGtvJg6yG_ejnc','Tracie Jones - They provide excellent and fast service! Dr. Wang and Nurse Kristina provided excellent care.',3,'',10,1),(105,'2020-01-06 09:14:37.239570','AIe9_BFL0OZrFaHgoJtqifT1GHrIuMsA75sjvkhMlyQk565L802ZFNX-MXksIgnqFkMU4lF-Ivv4e_YFMPVenpl0Z9hI-GYrfd44DVzbcxwH_N7eYdhwTKY','Sam Sam - Kristina, Laura and John were great people',3,'',10,1),(106,'2020-01-06 09:14:37.338504','AIe9_BHAFUK2tNBZL25dLQ0jVdh0OWoSain9pMJHFASKilIMXfohsvYJQxu5DQkGMqjU_tsRzyj2qjRfsI8hw32ap5Fg3njYHIsknhdB42dypCtZO3aL7K4','Eyekonik Lashes - The service was wonderful and quick Dr. Lindsay, Carly, Sarra,Sherwin, and Thelma was very professional!',3,'',10,1),(107,'2020-01-06 09:14:37.437189','AIe9_BFL0OZrFaHgoJtqifT1GHrIcjlSzIF3l4t7PyyENOn9hfYKQEcMC4t2ehW5iGQVRG1rc5b7k5qdxA8WerkcbKiNyxgRUBf7A68Ai0Fiw5PX1QQ9nG4','Chucky Ka\'lean - Dr Lindsay, Carly, RN Sarra, Sherwin, and Thelma were nothing short from the best. I really enjoyed coming here and would come here again in a heartbeat. Thank you for being a part of',3,'',10,1),(108,'2020-01-06 09:14:37.535621','AIe9_BFmRFRFwJGRfUDOW8jG3rXnkewRZ5F3eM7Z5HgULKlyLs9t2-P0CANZPnhAnKYGhYQrIyHuag1qm7Ljn3BgQPEVWcqwXeLZ-CglleL9e01xpLWXy-M','Chrissy Bishop - I recieved excellent care here! From the time I walked in, Carly at the front desk was so sweet and helpful and got me to the back before I could finish the paperwork. Dr. Lindsay and',3,'',10,1),(109,'2020-01-06 09:14:37.596341','AIe9_BHAFUK2tNBZL25dLQ0jVdh0ysafUT3phC5WUcaRtoQn_YBfxKtFqVX2ZzO_Q87L-XKVEdUQZdjCOw-37ltcw6yUC0Uk8HE_F-sB7lAmqELfc0sy6C8','Madeleine Mag - I’m really happy stopping by here. I came in and got seen within 10 mins. My nurse Sarra was very sweet and answered all my questions regarding recommendations and my current wellbeing',3,'',10,1),(110,'2020-01-06 09:14:37.656601','AIe9_BGhYIk2KhOdF8fekWDvq8JUXSOYjpgqKpN4m7UJ_WfN0q5bE0CqVnnoOE0rKic8jzWv5DkpCCBkOD5lWcPBB-6HroQFiyK_45moQvVrcAZxAIj2s8Q','Michael Castillo - Everyone was professional and friendly. Especially our nurses, Sarra and Victoria. We didn’t have to wait long to be seen by the doctor on site, just for the specialist that had to ',3,'',10,1),(111,'2020-01-06 09:14:37.716734','AIe9_BFmRFRFwJGRfUDOW8jG3rXniITRxeJr2bvf80puTeweweqNAjvfyXuLnMsJV1JZm6lFxHtyJqLSfxoNJ-DzLwHfwYOMefUNfBoUxoQ3PGNxNNs71es','Caroline Hoang - Fast and efficient service with little wait time. Thanks to Dr Garcia, Maya, Victoria, John',3,'',10,1),(112,'2020-01-06 09:14:37.777119','AIe9_BFLWlqwz3qGBnCfbAsLD0lVp0dk21tiqvlyr-ywUCl0Nxw3HC6nP484H86zAYteB0tvKQGWj--LvEG6AWjFVBhWm1jr-O_QPiOwmxAIOj1WIXbuNp8','Quyen Nguyen - One of the best ER experience we had. The staff was friendly and very knowledgeable. Thanks to Dr Garcia, Victoria, Maya, John, and Ricardo.',3,'',10,1),(113,'2020-01-06 09:14:37.837602','AIe9_BH3gZxYpIxBZcqAOO5HuBVkeGBqrGVDEzj7NkFpXwX67eoIrohtQcNAKtLC88vk7KFmT5ho6bYHbiiMCkwa_9m1eMVTQGufp6YPf-VKlvlH7DQRWHc','Ngan Nguyen - First time going to SignatureCare Emergency center and my experience was great. Anar was really helpful from the time I walked in to the time I walked out. Nurse Sarra and ER tech Christ',3,'',10,1),(114,'2020-01-06 09:14:37.936102','AIe9_BExcxslmE1rr7n5jMcadSKeVhSC3rjSfKMUfxoXsvFINyocHg36p9GiTtU_ndQZwuwfMRjS4BdDs8IajC_MRHiiUCDhmevVVwLaKvZSqnokxz8juEw','Jason Nolasco - Their service is very good thanks to \nDr.Tran\nRegistration:Ana R\nNurse: Sarra\nRadiology Tech: Sherwin\nE.R. Tech: Christian',3,'',10,1),(115,'2020-01-06 09:14:38.034827','AIe9_BFL0OZrFaHgoJtqifT1GHrIEowp8-o_BnYAPa0KvrD2QToEbni1sABnuplaoICn6z1xAlrBW9UwJ9KFz2fCcru3lHpL9Q0diE3dvN5rjQYnQZ_iA8Q','Hilton Caicedo - Nurses were doing a excellent job taking care of my Bm',3,'',10,1),(116,'2020-01-06 09:14:38.133259','AIe9_BExcxslmE1rr7n5jMcadSKeaajSFxP1zuN_UEbCjKpJa1FkZKM3UikD2yhEqAaeAt1bjVNadwlKmqZ3qgSNP-GQWb_-9LsXdy86pU9xoqgs0q5BPVQ','Khanh Nguyen - SignatureCare has been a lifesaver for my family on several different occasions. The service is always fast, professional but also very personal as well. We are always well attended to,',3,'',10,1),(117,'2020-01-06 09:14:38.193563','AIe9_BHknFajYLCY9NfgBafSx8bic8sZOwF1U4vR4MPiFnmyVmX9ezgZkX-Y7rsxqCSKMOZnkt9yysDoE4wReNumjwjQeVgG0jPJDqhF2d-Lr3osZuGJIVc','Brunilda Porter - Dr. Tan and her staff was amazing truly professional and caring with me and my daughter ❤️',3,'',10,1),(118,'2020-01-06 09:14:38.253942','AIe9_BFLWlqwz3qGBnCfbAsLD0lVo2EpVuxn6wuTx9fscdrRsBTtYcemV7KMLBQOF_p-VXUwnswPC3l95_4Z2ee_w-HNNT2v_wm1Wu1s4A2tzVvHD0VlWhc','Kandys Landry - Wonderful super friendly staff. I highly recommend.',3,'',10,1),(119,'2020-01-06 09:14:38.313930','AIe9_BEV1VP1woYvuPRixSBHlWg45r3odXtsuePCecGe3WvLFOxLx_5-Oq73cyEuk-STGarB0nCYdhicU_WgOtQYv0TIC5iELwlsNlO8IQPZcCit3KZq6yU','Anthony Artis - The service was great! I was treated in a timeline fashion and the the professionalism was great!',3,'',10,1),(120,'2020-01-06 09:14:38.412894','AIe9_BF8X4EpR_fF6mwcYdso9awgsuOpOeoGJAyPEfCrvjsGvQzVhF7kt52sJZNPIaS-wod0J542U8ITrPKQ8lr0CLyZHmNnTDXdYT72prX-IGADKwgOS7s','Cally Hearse - Love them great service in and out \nSingla Stephanie Carly Mercy',3,'',10,1),(121,'2020-01-06 09:14:38.511555','AIe9_BFmRFRFwJGRfUDOW8jG3rXnt4M3MPUT429ubmG3iYalUZxdEma5lISS-5ZpTtWrEOSfyX1YhRNofgZGEhqcqcOuCLOsOlTmxJl_kIQKeRSRnQ6Xopc','DJ DOBBINS - No wait time. Staff was very friendly, caring, and knowledgeable. Very patient. Thank you to Ashley, Kristina, Tino, Olivia, and Dr. Wang!!',3,'',10,1),(122,'2020-01-06 09:14:38.585424','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24_Cl8CrTTP9F939_fMXlHYBLeq5iMNoANI3PtPXtsRKBbqGlfSOOGRDr0LygXiAK5iJ3sllUtkKkawJa1rTsTcKW6D8','Kemelya - Really happy I came here. Dr. Henderson is close and his team is great. Kristina is amazing with kids and made my shot bearable. Olivia and Nicole did great testing also.',3,'',10,1),(123,'2020-01-06 09:14:38.660172','AIe9_BHAFUK2tNBZL25dLQ0jVdh0BpODJi5cv9OUNjBjaIZhitGjiq3zlk1543SaITh9hvLylIvsIYxQwy158lewnEF_GY6CT1KYYcZRcxgZ3hCS-SXV0M4','chris byrd - Really enjoyed the humility and comfort provided. My wife came in and needed a full work up as it’s that’s season and out the gate Maya was courteous and inviting. Olivia was a sweetheart',3,'',10,1),(124,'2020-01-06 09:14:38.717134','AIe9_BEAgUIalCkcXZnurOUpP4uAa_ee9APSj0fsdauPDSJNYq5sSA-WRym0omQ5pc4f6HOtteiPSOKpWluaJwYZ-PQJxEIju8VzYzsZBX1wDdHUK__mjTs','Margo Branch - Maya at the reception was great and helpful!',3,'',10,1),(125,'2020-01-06 09:14:38.777349','AIe9_BGlY-BaOO_aND3JZqxJBS1Rxfk0_ji47opHrhhb3oVCsChmys3ttajeAN-_0UzYkcYHdCHtPAxnFFbDMQqflJs0eUsW36CKocQKz1o6Vn4POCaK6Vk','robert - I had GREAT experience here. Dr. Henderson and Nurse Kristina were very friendly and explain the steps for me to get back feeling 100%. If you want a fast, quick and friendly ER process. I ',3,'',10,1),(126,'2020-01-06 09:14:38.837760','AIe9_BG_KYPQZrI7j-moUldshgc1iohPORVcAjFYJ2qtGJza-8yg0O0Hu7cytm7z2YnZ_BO0hR1UTU66wGSzB8cRx9kMZd2Kn4fP1X98oOsSiHoYJqg3sM0','Dominique Rodriguez - Came in tonight and the staff here are absolutely amazing !! The receptionist Maya was very sweet and friendly. The service was quick and painless, Dr Smith and the nurse Kristin',3,'',10,1),(127,'2020-01-06 09:14:38.898339','AIe9_BFhqAtkXvUqdYNeMuBBGjaAhzBGLwN_2Ub47M_59t1fvwGlKNc-kFna5vUk9INJCmXXo-wut8lHip_eluW0cxcwEMlGHdjZ650wK2Pao27xw2eexpQ','Angie Crowley - Took good care of a friend, maya at the front desk was very helpful!',3,'',10,1),(128,'2020-01-06 09:14:39.009716','AIe9_BFDvtvCY6mNmVUeGBiBb7S5bTUTX2sBJ8D66aeYUNANDRfHqAw4jhTrGZLhI1uJcakBeqZchL2j9FEsZt1UO5tLWDyNbjrSuftnG9CMR-o_torpdT4','Amber Casimiro - Thank you, SignatureCare for the phenomenal service! Thank you to all the caring staff Dr. Smith, Maya, Kristina, Laura and Bram all made me feel much better!',3,'',10,1),(129,'2020-01-06 09:14:39.104652','AIe9_BGvUJd9etQojwpjZIMsiFnenZfrYM0Gvj8EdM2Fby-Zu1gKIptbun6V0HAPNAA-ZYgijPDcIwIlbiw_SwFS0fvw9aHkpHSwMO2UV74Q9x7HtJg2uT4','Ariah Brown - Was very friendly, clean, and efficient. Service was great!',3,'',10,1),(130,'2020-01-06 09:14:39.178722','AIe9_BHZM2k_MpOhRgkb8w5Bn_urR9kiJyslV1TbEoUp9IBxTIgM8QVH8uEnbMjgAoLpf4HZSXd1B4AdIe37cXF2unqDtVd75b3sNCb94-zodTXdyDaaTfw','Terri Matthies - The staff and Dr. Faig at the Westchase location were extremely kind - from the receptionist (Angela) to the Radiology Tech (Laura). The nurses were awesome, everyone was attentive',3,'',10,1),(131,'2020-01-06 09:14:39.227851','AIe9_BGhYIk2KhOdF8fekWDvq8JUzReJ9iidwKzRdhv82oq8WPzBeHToKWc3_TaMruBg4OWAFMm_XV-R9c9ma3segklzHSa9GxT9ah0YPqoX2Si0hpyXFeU','Crystal Chukwu - very nervous and teary eyed upon arrival the feeling of reassurance they gave me to find out what was wrong with me warmed my heart wasn’t like most ER’s didn’t feel r',3,'',10,1),(132,'2020-01-06 09:14:39.277008','AIe9_BH3gZxYpIxBZcqAOO5HuBVkRiAtWE8yiOaEe9wqJbCTB5m-pm2dcopM_EPW9booSCm_Vubmd-sXXj6HioHavoC1Z0i8k5EgA8SZZkubES3FLZRU3PA','Charlene Rollins - I was seen there on 12/9/19, wow what a pleasant pleasant experience I had there, Dr.Nylund, RN Saran ,and it started with the receptionist, Alysson, the service was very passionate',3,'',10,1),(133,'2020-01-06 09:14:39.375287','AIe9_BFu3rdicGrPrzdyu4PDXmqMI3EWYxaQvEc90h6_hAI1zAj71MJOsvvMlynfojuZg-KxUWIuv0Xop8ddIl0dzdDfkmjGlLFkqbAltVVQ04by36G2LYY','Family Ireland - None',3,'',10,1),(134,'2020-01-06 09:14:39.474106','AIe9_BHAFUK2tNBZL25dLQ0jVdh0-2ie1B8BlwdIy75Zh8eiFqV3dY_WYZ4poo_Of_1gVDDbEvdVUpm_rjZ0Z5vFuAHIF79r46KbjKS2rYl82zKZ2IoycZA','Roberta Jeffery - The service here is exellent I\'ll recommend anyone. Mya was very helpful she has excellent customer service.',3,'',10,1),(135,'2020-01-06 09:14:39.572852','AIe9_BEHZ7lh7y1sP-UInhkpmlIpOkvmtGGL6jVNmATn-mK-ApnyC_3ihBBhXMKtOhFbm13LEkB1rn2PXgSgEy9lxcKIvG8ltVKUMjf6N8YMWkyyEXKwNjo','Anita Rich Salazar - On December 10 ,2019 \nFell fractured my left malleus bone and Was in severe pain. \nWas not in good mood obviously and was very short with Maya at the desk. \nMaya was very profess',3,'',10,1),(136,'2020-01-06 09:14:39.671095','AIe9_BHR7p0hPy1flx1br0TYdEUBbIoITRnlBIUeOVYCZ27GCoW2hzycxdPtbw7nDuZkfh2CZJW7OXYo1IkfDeTLPfBtJRNo02LvS0yrhZScgY_QYf-3NhI','Nisha Davis - I was very skeptical about coming here but it was close to home. Went in and the registrar Genesis was very nice and quick. Check in process was so fast! Dr. Jaber, nurse Stephanie, E.R ',3,'',10,1),(137,'2020-01-06 09:14:39.720341','AIe9_BGlY-BaOO_aND3JZqxJBS1RMME8KYOVfYevIZml7jKz8iCgRmkZdxX5KWdI537avULZRMr8Ekg4ZVdtQ8S0NBNz4LLzSys463AbnlodMgSNZzk8O4A','Andrea Jones - Best experience ever! In and out in 30 minutes. Dr Patel was very easy on the eyes. Wonderful service and explanations.',3,'',10,1),(138,'2020-01-06 09:14:39.769517','AIe9_BGZuRKHeO1iYrcf4B001kE2-U-M7DrnvPvR4OqavVnxVYy3FLbhWGGTTlhpZ_w_bOaA4GikRmZVa2bG1aB_9HkZIMzV_Q0WzttCO8X6JvNTdPSXcPY','Andre Murray - The experience I had at Signature Care ER was amazing. Ashley S. was very welcoming and worked very fast on not only me but multiple patients. When Dr. Patel, Tony, and Scott came into ',3,'',10,1),(139,'2020-01-06 09:14:39.818773','AIe9_BExcxslmE1rr7n5jMcadSKe8zUpggrysor6jfgaCbVXy028Hsft6u6_GtUBh5PR5s8bHTAxY9ndbWjg-quW-HP2W_b-eAHt2CWyBo5m6bxERAQZ9lY','Hartsvoice! Hartsvoice! - Great customer service,Thanks Maya for helping my wife find her ID!',3,'',10,1),(140,'2020-01-06 09:14:39.868019','AIe9_BFu3rdicGrPrzdyu4PDXmqMVd6FCTw71WknzdKUmioBC2J6mvDCmn3Wa44iJoEt-Vr1COUw-RkzcsiMx0wJRmEc6_aPXNjEaR80p1jC6T-YWDccVvE','Rosalyn West - I left my ID and Maya, thank God for her she went above and beyond to locate it!!! Thanks again',3,'',10,1),(141,'2020-01-06 09:14:39.917304','AIe9_BGvUJd9etQojwpjZIMsiFne0Si2bGJzNocEEU-ZMuzDEQZ9V5GFmkdRzAy9WbaIxKyOS2g3jjLkjxWrDHxeyoDLs0_w7rYFdpp6xR02uw1QCM0gfac','Vixsksツ - None',3,'',10,1),(142,'2020-01-06 09:14:39.966514','AIe9_BGhYIk2KhOdF8fekWDvq8JU_aZ9xxD2J6HIcA1qYknAzi_xUBRu-yJcd_khViwUeQU3Q27F4ob0uDoM72vkQ6U-wKL3lsZi5aDI9-ATMOx5-0BSaXk','LeAndria Randolph - Fast and very friendly staff. Just moved here from out of state and they were welcoming right from the start',3,'',10,1),(143,'2020-01-06 09:14:40.065514','AIe9_BGhYIk2KhOdF8fekWDvq8JUvUCmLbImrptIXfJ7WfITTmL4NvzudlTXy33aifT9yLSueDqZRJjLoOEmTil6k_grNW1A5gZJ6_JmLXRCfPl5RtQHxGs','Deb C - The team here is great, friendly, accommodating and they LISTEN. The facilities are spotless and this was really the best medical experience I\'ve ever had. And Dr Patel is super dreamy lol.',3,'',10,1),(144,'2020-01-06 09:14:40.212779','AIe9_BFqh_zr355jzGaEpH7666zcQOp5eiLhMEBqK-5C3HvyxRKSILm_HynDh4mrf0ULBmuyw3WRKjTBkHQlsoa2inUDfikqR_DS7Cd8LWOkmk5v7bPToE0','Dayveed Youtube - It’s a very good place with good staff and well experienced doctors',3,'',10,1),(145,'2020-01-06 09:14:40.262052','AIe9_BHVBnWjBJvk55vq2QEm0wl-BZLK-F2KlLSRw9ut7mkMqvt0vDKD8ctunD2duhh25H6uG2BMYWyuABZrsa0aDf0b27aOtI10F8w8_Naf40psLjN4zsE','Monique Gingerich - Very friendly staff, I was seen very quickly after arriving. Everyone was very nice and professional which made my visit very comfortable thanks again Alyssa',3,'',10,1),(146,'2020-01-06 09:14:40.311348','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2gnxxGuUtEXGGsh3qqmT22-6X22vSpWkmCe3gfCCW7wCS_SS5fvBPexp0NEVTFVHgXFTOQ-uCsRctEhX5e2WFq5EdPpo','Demond Wright - Very fast and knowledgeable. Excellent service',3,'',10,1),(147,'2020-01-06 09:14:40.360564','AIe9_BGvUJd9etQojwpjZIMsiFneo-ohZHWVgO6CGe5-vNUkny_9Q3rOBooiGdPQalxYAxDGwqbeCCW6dTyPh6PvhivFgDhSeNphwF0ubxXhRHxACHWF-Yo','Magdalena Dias - I’m new to the Houston area and had a bit too much fun at the NFL Sunday! #steelers won.. I conveniently stepped barefoot on a piece on mental and cut the bottom of my foot...I was gr',3,'',10,1),(148,'2020-01-06 09:14:40.409299','AIe9_BExcxslmE1rr7n5jMcadSKeK8Rl9FJcIUak9vQdfzfZK2E8fBEdkcNnS7F8pfPoI8bMG7v0KEoDBlnkoR5Ynue83_AI4bBWdDCX_ifCrwFDvuha1VU','Mashal Kazmi - The staff and service was wonderful! They explained everything perfectly. I would definitely come back.',3,'',10,1),(149,'2020-01-06 09:14:40.458861','AIe9_BGIy_plKfaZrItPyyQZNLvsPMLAprb0Tn5bZTuOKK3yq2x3nF8lSYbgsIgCdStPUZYA7Kq8UCE1H4388DR7vMfs-ZYfhmgpsHwrWEXHG4eB3kkv5wo','Renee Wade - I was welcomed warmly by Genesis in reception and seen before I even had time to fill out my paperwork. Kristina RN and ER tech John took wonderful care of me and Dr. Spangler is the bes',3,'',10,1),(150,'2020-01-06 09:14:40.557470','AIe9_BFDvtvCY6mNmVUeGBiBb7S5BB1qUZhPVx2Oneuu9vsQ3qkNaplDuvzuIGRg_18V03Ndfsj7rB7K5hQrpmmgPAQYFACd7LJ2nNLurQWQ160r3NEuddk','Cavin Langston - The staff here are wonderful nurse Irving B is a great guy just all the staff here are great ppl please visit here if u ever need an emergency room.',3,'',10,1),(151,'2020-01-06 09:14:40.656012','AIe9_BFu3rdicGrPrzdyu4PDXmqMuhxfbNhbLsIUFSOTKfvMB2XrtmpA9NlUEFtToJdu2w7_sJsF6bgI-bU5uhUHumzCjZc4iP4GOxpqsHXsEeLd6fl7k8E','Kat Green - None',3,'',10,1),(152,'2020-01-06 09:14:40.729945','AIe9_BHVBnWjBJvk55vq2QEm0wl-9Gr-XMWDy34Ku0xT_aPmzQiJoaTE3Fj6MHIC8ZCRQv6yRRQjxRHSx58rWTxLXuXjb_6tKY5nQkis0qsySMKqEAhd28Y','slim frank - The care I received From Dr. Miller, Kristina, Jennifer, Laura, an John\n\nwas beyond amazing. I could barely walk when I arrived, within an hour\nI was 90% better. Just wanted to say Tha',3,'',10,1),(153,'2020-01-06 09:14:40.779008','AIe9_BFqh_zr355jzGaEpH7666zc30ry371bUJtkWf2PeEmlrBuHmqwCmiQ1UxvUYZFkGE_5f5d9Sgy41Mf2KwJo7Q4ayjRl7PghTbKhFaPPui5aNBAt3aM','zach leal - Very prompt, I was seen to immediately after entering and describing my issue. Both the nurses Kristina and Jennifer were quick to get me set up in my hospital bed and get me on IV, just a',3,'',10,1),(154,'2020-01-06 09:14:40.828436','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRe3QwaWtwI-gHEbwq2bSHLaI5Q_vizEZ1VWVtheTeHQtDgcB0YqDaRusqts3OVYzw8DoqdNf7v6t3CHC8O59WoFAaa8','Latere Beaudoin - Omg the receptionist is amazeballs her name is Alyssa she has the best customer service ever. And the doctors are quick, nice and straight to the point❤️',3,'',10,1),(155,'2020-01-06 09:14:40.877602','AIe9_BGhYIk2KhOdF8fekWDvq8JUa31Ewwqb9N1oXu6rmoM6-jycI4qnsuOBcJzEgGhqjB5q_hMUwsL47gJP-K9P6NlZUs3CB8rbshTirU-PTTZVeh3o2n0','Jackeline cb - Love this place. The doctors and staff are all so sweet and caring. This is my go to spot whenever i\'m feeling sick.',3,'',10,1),(156,'2020-01-06 09:14:40.926777','AIe9_BHx9wW5OAXpNIH08blLdli06z5fAMHP--uu1AyStQlwJ9PLprdikRZITD4E1Xo1KhCBP3r4RI6buDLygTW1QCk9ZTIKwLjhO-ket7ieGrg-gt1VGIg','Sunshine Mathis - None',3,'',10,1),(157,'2020-01-06 09:14:40.975686','AIe9_BF8X4EpR_fF6mwcYdso9awgSK9s0GLlGu60ghCyjLE4AnprCTmsvXtDiCKGVZrIsz0JMRIJ-fbjFF6c0Qo-KV6K_psuOtRdsP3QSvNSYCiqHEL5Q70','Marie Prier - I had been there a couple of different times before but this time really stood out. Dr. Jaber was sooooo interested in how I actually felt and so concerned about my situation. Sherwin ',3,'',10,1),(158,'2020-01-06 09:14:41.025227','AIe9_BFhqAtkXvUqdYNeMuBBGjaAX3Q-QmY6iY1mLqdlepMO2MfHr6fjNiGdA0LalIlHiEfkSAGBEMIvt05Bwprbi8pmDx_2KS_tH5DxFMhbf270SWC9N-k','Rachel Wagnon - Mercy, Jeff and Dr Lim helped me make this process so much better and were extremely helpful. I won’t go anywhere else but here. They always see me in a timely manner and so polite!!',3,'',10,1),(159,'2020-01-06 09:14:41.124259','AIe9_BFu3rdicGrPrzdyu4PDXmqMriYy9wk8Rfn9tczMbLsWzEeKoq4ebMhGW6iezsW3Y45x69kPVrAUJu2OO6B0cgO5s8vmniEfJKKxbxoo1ImfFF7PNqg','Alisha Beard - Mercy and Dr.Lim were Wonderful I wanted to thank them very much for all of their help and consideration and having patience with me coming in with bronchitis needing several testing an',3,'',10,1),(160,'2020-01-06 09:14:41.222484','AIe9_BHkHJRvhG8n5BjqdcMSKR_FcqLz_kL_1JEr6YOgqTJyrvELuTJsTVBL3UxyQonpZ-6ppDV3S8VyfJWyhoGRZ4g-wUxX6uwbbK1DwtIYHfuQalGOPnA','Courtney Gunter - Excellent care from Dr. Daniels, Breanna, Irving, and Holly!! I was really appreciative of the way they took care of me!!',3,'',10,1),(161,'2020-01-06 09:14:41.271702','AIe9_BG84YPnR8vhxeJfV_lAYVNiOtR8FAo2ibRifCD8j8yuH32RqnTuvYhZPRi8M0p7zjithKPeQtlQxpAokc56CYxQkhtl5yM-entUIlBWAUhariQ8MmY','Trevon Ellis - Service was tremendous. Good staff with Edgar, Irving, Holly, and Thelma.',3,'',10,1),(162,'2020-01-06 09:14:41.320893','AIe9_BFhqAtkXvUqdYNeMuBBGjaAOHjKKDwuNQaKPGdzIJko73SMriUdu4AUnE5z6qHpNK9yj5hlttRaqUo7CqjfLg4JI8rOCyeQoS1dsjyp8NFJGLDF9hc','Jesus Aranda - None',3,'',10,1),(163,'2020-01-06 09:14:41.369875','AIe9_BHR7p0hPy1flx1br0TYdEUB3FZpVahNbdUZzuV8lOnd7UrGTF0YsygS6kWSIMq8K4wccNcesgHMKiQSfoGH9j8MN6P3cfx2qemhu1i_7Y3Ip95z1Gs','Kelly Greenwood - Cannot say enough great things about the care I received! I had to seek emergency care 11/9/19. From start to finish, the care I received was amazing and excellent. The most importan',3,'',10,1),(164,'2020-01-06 09:14:41.419431','AIe9_BGRQgPYLyzMT9U_xLCp0vBePFWTUwoV7JeBsKyEnkvvh0Slv-QGEtwhUcxQ9XziCtoqGW5Ld8YheAIevBpEh8RnviKqq7QpOG6ScwZp8HuF_mRMcjQ','Courtney Williams - Awesome visit! I have asthma and simply needed an inhaler and was able to get checked in, examined in less than thirty minutes \nDee at the front desk was so nice and helpful and th',3,'',10,1),(165,'2020-01-06 09:14:41.468121','AIe9_BG84YPnR8vhxeJfV_lAYVNi9bVWiDsYzcwl5Jea-R4s4P4WzYVAeL5Fs30xW8nc9WLupfm1jcfJBt2e9ddTxGfU2YCY3_iQd7x4ujN6Y-frJAtca9w','Latasia Ramar - The staff was so nice and helpful.. they were more than willing to help. Dr. Wang explained everything perfectly and Irving & Thelma were extremely courteous as well. Would definitely ',3,'',10,1),(166,'2020-01-06 09:14:41.518266','AIe9_BGhYIk2KhOdF8fekWDvq8JUhX2ybfzzk1sJSbkX7WRG-ulT0rKoeIcqTW6TPqlY2HwxZMv0-mJ4Zd1g9ywYKkBaTs_U8Od-TXK6b1rMrNiotVAMzec','Mirenda Langston - Signature had excellent customer service I was very pleased with everything they did for me and they took care of me in a timely manner. Staff was excellent and very attentive. I wi',3,'',10,1),(167,'2020-01-06 09:14:41.616513','AIe9_BFqh_zr355jzGaEpH7666zc63oEYQsxtVaXyp3WECNNhB7vg7Pdm7aBKLwvvFDri6DBhh_9bggPgDuMNn6EG7V1eucNVUWeivChKREIGQXCWrJYuNQ','Brad Bohlin - I was impressed with staff, service and Dr Tran. Got in and out quickly and price was less then I expected.',3,'',10,1),(168,'2020-01-06 09:14:41.715073','AIe9_BHkHJRvhG8n5BjqdcMSKR_FEei4Ds2guy2CZWMJ2T2HX0awUUONOGwc0jZZNJ69Lx0-Y8nkag9S4coIjVyPoC2otgr099PfsU5U4CE-aZhOoGuDxWs','Edward Phillips - The whole staff was awesome and fast starting with registration with Ana, Irving, sherwin, shaylene and Dr Daniels',3,'',10,1),(169,'2020-01-06 09:14:41.813189','AIe9_BH3gZxYpIxBZcqAOO5HuBVkJw6CwbjLRsaDWqZ2SaevM9ypmZagUDrEbScm_D2sgWmwBzYm7Z7XC6gbirb1ta3Y61QcJPdRsBFeHP70wevPEkIlUqQ','Connie Allen - The Employees at 24 ercare are the most help full People i bin with in a long time the made me feel good and well taking care off. Dr.Daniels, Nurse Irving ,Radiology Tech Sherwin ,Er T',3,'',10,1),(170,'2020-01-06 09:14:41.862739','AIe9_BHkHJRvhG8n5BjqdcMSKR_F1EODc2QTCCMZBleMQpZfonMCML5pdcYkMxreM_tat0UePk1jVy6N0jiSoBgx2bpnfTqahI3U9L88sZFjBYJAy3Khfsg','Everad The Great - Dr. Daniels, BrendaM, Sara, Holly, Shaylene, Officer Perrault!!! They were totally amazing and they made me feel so comfortable & they helped get everyone needed to live a healthy l',3,'',10,1),(171,'2020-01-06 09:14:42.011592','AIe9_BF8X4EpR_fF6mwcYdso9awgAftmxGCzRet2GKwiVgn5YrSzad1qKAEl1uoAGYScphSvgWP4GjHlfvWyRUP04Bg6mOasSa_DG6KojB78nGh044I9Co4','Amy Williams - Westchase location staff were super nice and chipper very helpful. I came in with bp issues and was quickly treated. Staff was very understanding and good listeners. Dr. Daniels asked d',3,'',10,1),(172,'2020-01-06 09:14:42.060828','AIe9_BFu3rdicGrPrzdyu4PDXmqMWOH8lewOaTfIgVgN62nrrTa0GpmvblY6_FglaVIiVQNHVVc8M0r1skpBDqHmhZI8PeOGMLdsAYlWqYEWEnnbNY-TlwM','Marta Molina - I recommend these folks all day every day, kind, speedy, caring, professional, efficient, attentive to hear the issue, examine and proceed to answer all questions about meds etc. Place ',3,'',10,1),(173,'2020-01-06 09:14:42.110232','AIe9_BG84YPnR8vhxeJfV_lAYVNi4_YSvr_RiGsGzn_A9zVoJyzxC6SEF38GF7utWhEYOiyHCol_dz_-YoptzCS9X91rnsL__U16LzGcwA6gamquaRcDpZU','Jorge Castellanos - None',3,'',10,1),(174,'2020-01-06 09:14:42.208688','AIe9_BGvUJd9etQojwpjZIMsiFnemChhDSD1Txbn74UZNe0VYKQ6cP7N39AAGpLUrtZHEY7AkLR7nVzP_cI3Xe6etyJqOGCjYNXhgbKj8W8oSfAI6crPIqw','Tracey Marvin - The warm welcomes, the smiles, the compassion, the bedside manner, the promptness and the listening ears is what makes a great Emergency Room, and the Westchase Signature Facility HAS ',3,'',10,1),(175,'2020-01-06 09:14:42.306724','AIe9_BG84YPnR8vhxeJfV_lAYVNicqcffOCE-iEqUlF8XNBggCQOdvEF65n1V1se4odRzA-ica1AtMdVE1_bh66BlzVCo44LGPycparYBIP7ESovMctKxNw','Jaime Guillen - Doctor and nurse very helpful and kind. We were in and out, everything was so quick!',3,'',10,1),(176,'2020-01-06 09:15:05.008203','AIe9_BEHZ7lh7y1sP-UInhkpmlIp8BezDi7JDn9j6_IiSyfjYs8WHdrRcNfd3GmU2YA01gmPpoQRARh_Y9CJpyThn204zolhxKbLrnSX24ncNu1iZcPGPcc','Extra-Ordinary Events - My husband was in a lot of pain and from the moment we came in we had a great experience. Anna was very warm and friendly and got us registered very quickly. Thelma got us situ',3,'',10,1),(177,'2020-01-06 09:15:05.126823','AIe9_BFhqAtkXvUqdYNeMuBBGjaAtLPQxBNkSCQOlRe9ohZi32-t2oTCOYQifOq6j4euf1HohwLGIEEPNVi9xkp_7mxApBEP3jXLaJ4y76upLwF0JOhXQf4','Layla Niyo - I love how the Ana Estefania R welcomed me she took care of me with joy and grate ness \n Dr. SINGLA, MD, NITIN K He was good to me very understanding and patient dr so thank you \nNurse',3,'',10,1),(178,'2020-01-06 09:15:05.308459','AIe9_BGvUJd9etQojwpjZIMsiFneNDd-m1gZ5G1k4nbvudaXYAs6yN62brH6MDGkvFzCJY4-r7VF2pAXtgnV1E4xIvsAqhcr3nbHWZgrDdJ3eEuHpnjKiQ4','MUZAMMIL SHAFI - I’m a physician . These guys are great .',3,'',10,1),(179,'2020-01-06 09:15:05.407086','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2x3TZXsTFPmJg0Yxm8eYATWhITym7BUclHUu9Sg1HAR6L_8ePH6-X-lwKiHj0bcewRpUoKD_XsQ9jobKAOdf27TAkTJ8','Pierre Whittington - None',3,'',10,1),(180,'2020-01-06 09:15:05.678001','AIe9_BEuFX7PcAP2nNY_ju84FoFSpXohDOpJuOnXbZEb0xx7lnuxJIZMU_OdbkdVE8uWpdVJ__1i-zK45QSJdzEWKty_PdRU4lZq1vebBTcwHoG-2zzL1iQ','vincent espinosa - Very helpful, second time going treated with kindness. Made me feel comfortable.',3,'',10,1),(181,'2020-01-06 09:15:05.776579','AIe9_BFhqAtkXvUqdYNeMuBBGjaApxZkTgbaurYaoT7NZb3LGm9bdDW8PVSt0skThcECp3YukZTOlPNa33aCPhjAelNeE6K1WSjVANcJeK_tzPoSsae01Nc','Vivian Jones - Fast and efficient. I was seen quickly and test were ran quickly. My nurse Irving was kind and checked on me as needed.',3,'',10,1),(182,'2020-01-06 09:15:05.875196','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_AxzMASjV_rj8JzG77PPxGVYNDwhLwu7XtX5L_m7AGBiwG4EMTP6O9R8NeUlRXepH1uCsImZbeixy3tjYOX75PnDw-s','Joselyn Perez - Was taken care of in a professional manner. Treat me and my health quickly and very kind, and the medical staff was really nice. I would be going back whenever I have an emergency.',3,'',10,1),(183,'2020-01-06 09:15:05.924479','AIe9_BExcxslmE1rr7n5jMcadSKeP3DofkpqLtCqXhFXrqFB0fjGuevWSPW_fNr8SDp3tdrxFW4yiVQDq3VhXFDQ6YUQtLzO1ArjRMvnznGECnWyKpb_9ic','Ron Pope - My son fell Sunday night at 11:30PM and had a very large gash above his left eye and below the brow. Brenda at front desk had us received in the system (< 5 minutes) and the nurse took us ',3,'',10,1),(184,'2020-01-06 09:15:05.973708','AIe9_BGvUJd9etQojwpjZIMsiFneRDMeFAygYNk2I5r6I2oMIB0aoXd4ClqXv-pOJk_mbF92SE6nnQP2_FjK-HCMdeE0MDaCGU8HyYOGrwu1odj94Z581mE','B ChAv - Everyone was very nice did the best they can to see what was wrong with me. Worked very fast too I was out of there less than 2 hours.',3,'',10,1),(185,'2020-01-06 09:15:06.022894','AIe9_BFDvtvCY6mNmVUeGBiBb7S5N3xFMk0-TIKejkI3tRTs98fKkNziTmQ-tGRJPJhXJcokW4-oIPyaCxF4mWZhlei_smjKdajYVEyOZ-EDkIuc3bcL8OM','Rola Ayoub - None',3,'',10,1),(186,'2020-01-06 09:15:06.072202','AIe9_BGErQpX2pRNZrXBy5NOsH0efMoXDpF-HWEQsX9VxswHLUacxgBH215vWIxWf2p_zlu2wtRsthl4HoNfyBvukhHcocFkRc70D8Lu1-i2d1kTQMWkReo','Daniel Moses - Great staff and quick response time. Irving the RN was a great help!',3,'',10,1),(187,'2020-01-06 09:15:06.121571','AIe9_BHAFUK2tNBZL25dLQ0jVdh0H9_ikXt8Lm0LLWI_HCHSYwHkXGtrEGTYHa-AI3ChgnBmioOz3s0zW4ZB1GNp4YzOcScHudjHzCm7jLas07HQ8HZI9HQ','John s - I had an amazing experience from the moment I walked through the door even though I felt horrible .Staff was super friendly and showed true empathy the entire time .My RN-Irving was absolutel',3,'',10,1),(188,'2020-01-06 09:15:06.181842','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27NapfUxbuVlb7jJFxxdp--V7qyaLjcALlBBivuHEuhENQCAgRIbizBWjB_kkl6yEmQ5UodNx8BHXCljGwFytgcZ79Kg','Amanda Norris - Everyone did a great job keeping me relaxed while they worked on my finger. Irving, Holley and Lisa were very helpful and let my mind off the pain! Highly recommend.',3,'',10,1),(189,'2020-01-06 09:15:06.280568','AIe9_BGTHfLB7ZAtvlQmidaL-PvDmmPKMFivgjdL3czNjbkbPvFitfqZcIIW7jgaI1lkTsvMjzD1fFaioPUxUC-D8jlLVyAq50cLlFsYeLHb1iqgFiEKsJ8','Deshanay Brinkley - Fast and great service\nDr.Thomas/nurse Irving \nRad tech Holly/tech Lisa/Registration:Ariel W',3,'',10,1),(190,'2020-01-06 09:15:06.378878','AIe9_BGErQpX2pRNZrXBy5NOsH0epqKvO0MydU3ym0LL8pzO7aURsljFuqhr4vsWkvpw2akv46K-jY3Kxm1E0W4gaXNAZW-uB_60Hnu8EDgfRF0sr0Tdcto','Clarisse - MOST FRIENDLY HOSPITAL IVE EVER BEEN TO. MADE ME FEEL REALLY SAFE. DR. Thomas, Nurse Irving, Rad Tech Holly & Lisa, Registration Aerial W were so welcoming. I’ll definitely be back!',3,'',10,1),(191,'2020-01-06 09:15:06.452929','AIe9_BGvUJd9etQojwpjZIMsiFneKCEQ3oB5sxVGtrphyR0gWk4MplNZ8WqKjfgWjjlSTMXOu0CDnqyy0YX_CWzjJYWMPR1knH6hRKJoLvjQsHLeDYPwSW8','Angelica Sampaio - No waiting, all the staff was caring and sympathetic to our issue.',3,'',10,1),(192,'2020-01-06 09:15:06.513145','AIe9_BGvUJd9etQojwpjZIMsiFnexxCW2zTHh9UwsBypHC6JnFdxzE_jz2pn7v5El7ycl9sbN2KdPHRDWHyaonumNfgfTT7ETZuaaI6l89PUMSK1ynrREQI','Robert Smith - This was a great exsperiance. New clean facility , friendly and profetional staff with prompt service !!!Gets no better than this.',3,'',10,1),(193,'2020-01-06 09:15:06.562510','AIe9_BGlY-BaOO_aND3JZqxJBS1Riac7cWeo3UJ8pqypE-LnJ2LdM8onqQRdWPONuIw1z8zaBdQaVCY1XsYbkzTjlqKKj3_3V-I8Cl9aG-6W1YRgqAgRyX8','Godwin Ndukwe Jr - Great experience, staff were very welcoming and helpful. Definitely an 5 star service.',3,'',10,1),(194,'2020-01-06 09:15:06.611829','AIe9_BEuFX7PcAP2nNY_ju84FoFSCICoZG2oiHTmAHTfD0dWKTuiH5r0QEJJKqLuDJvo90dJGrahIMTanmr5XNdGFhI-vA0taMIHog6O03RDW6wf_VbHqTg','Jennifer - The best experience for an ER clinic ever! I was offered a warm blanket twice while I was there. It took under an hour including with xrays. Everyone was friendly especially Dr. Patel. Very',3,'',10,1),(195,'2020-01-06 09:15:06.660976','AIe9_BHR7p0hPy1flx1br0TYdEUBczE-9P7OGQ9BwVYk6yGB6G1FUky1EBvuJYlpdu_I410vfIRv17aRPmGh_aSbDsk_CDF1fEjwimMMP8Z36WQAiQClNcM','Jennifer James - I received a greeting when I entered the ER. Melissa was very nice and professional. Dr. Appiah, Kristina, and Laura were all very helpful, patient, and attentive. This was my second ',3,'',10,1),(196,'2020-01-06 09:15:06.710667','AIe9_BHkHJRvhG8n5BjqdcMSKR_FwqyupMn9XN_s3SaIbRlDq7yuUmh-YXuXMoSjni5KYzKpJ3D5N7pQt2nL8_NJ5_QbqrkU7q_ZioIn3TU56rSu78NoR8E','Jose Gabriel Rosas - I went at night with a very strong headache. Everybody was prompt to fix the issue BUT the male nurse that was on that night shift, was really unprofessional asking several times ',3,'',10,1),(197,'2020-01-06 09:15:06.808516','AIe9_BHZM2k_MpOhRgkb8w5Bn_urMTWoaSq2fM0a4qAnm0PAO86984jKHHsKbrjz1somPfWWZWLTvnc3gZdEWR95IyW_RhCN0qJWeJeXY00HTiT0oNC_c78','Jaime Morgan - This is my second time coming to this location. Both time I was seen very quickly and also taken care off well they a great at what they do.',3,'',10,1),(198,'2020-01-06 09:15:06.907494','AIe9_BFMK6FB7k24ANEBV5CospTT9nkRbfzfYaiH0GsMy_UQfZKLGgV8u5ZWJeU4eSr5hfUcRU5GJnFrbMOXPP0MYtt8TScUIngHo2qeV_FUUUIseATWokA','Ariel Ferguson - Great service and very quick! Dr. Ding and Nurse Irving is the best! Thank you !',3,'',10,1),(199,'2020-01-06 09:15:06.967957','AIe9_BHVBnWjBJvk55vq2QEm0wl-65oIJuiw6tl0uM5GyXmpGTR8mU5921OXaY6fr7qh38H2_mPwKCv7IEt6yaUIchBppyfPAciGqEzNuzPdUTtn1v5rdEQ','Dana Robinson - Dr. Morrical, Nurse Irving, Rad TecH Holly, Holly/TecH; Lisa Registration Aerial W were all very professional, courteous and caring ... they made my visit very pleasant',3,'',10,1),(200,'2020-01-06 09:15:07.028168','AIe9_BEUgL1r3GxZ6pSpn17DD2M7gQnD_Ngz2l0kMhv4ehm_b2LJpfjUo_3JfkABZe7yhRzRemWaoX1GiGwTO3HUC331EwbTzZsyLWy1RqAo8fTqiI5591M','shelle taylor - Great Experience with Dr. Morrical, Nurse Irving and Holly the tech. They were friendly and made us feel at home.',3,'',10,1),(201,'2020-01-06 09:15:07.088455','AIe9_BH-PZCNGatIuVf9MEYiysTxnc6rNISHHaxYe7AshvyWRrce-FtFg0ttb-UqsMpjpAFJzRKtVLj4Oddz6-P8vV0sLdh3EAu3SNvnGA1-6Lq-cUbEkDg','Igone Garayo - Dr. Morrical, and his team Irvin, Laura, Lisa and Maryann were great. Fast and friendly service. 100% recommended.',3,'',10,1),(202,'2020-01-06 09:15:07.148806','AIe9_BExcxslmE1rr7n5jMcadSKeqmXSO7XT7WyO6KpF6ugJgVrbqxxEx_UHwwhTW6vUsT2HIwL8j98Tv6QTpgi26Km08_t6k1gXlCnGcBQ4UZIJ4kpYcMg','Stephen Pinkerton - Dr. Morrical, Maryann, Irvin, Laura, and Lisa made us feel at ease when we brought our toddler in. He had fallen off the bed at our hotel and we wanted to make sure there was no in',3,'',10,1),(203,'2020-01-06 09:15:07.198212','AIe9_BFu3rdicGrPrzdyu4PDXmqMGdNiHHPAxewd9upJyBB3naDj4xkDAwk3460KvlTgyWhQsDG1t0MpKIuj_rOc3HUo90GH1XjCW9WsxkQ-EpFgz_wqY5U','ilham kharrubi - Love this facility. Aerial was very patient with all the paperwork and checking me in and out!',3,'',10,1),(204,'2020-01-06 09:15:07.258674','AIe9_BGhYIk2KhOdF8fekWDvq8JUW70uNv7YPXMvHr9eqqNVEtOhkCBCqU2M1ZQUPWCgLvy6huIebfUR2Vu1xQZD790ia4iQYzQME8fE3nDGwnOGsTY3qbQ','Chelsea Kirkwood - I really enjoyed our visit today the service by Dr. Faig, Irving and Holly was beyond exceptional! How could i leave out Amy at the front desk super sweet and caring...',3,'',10,1),(205,'2020-01-06 09:15:07.357043','AIe9_BGTHfLB7ZAtvlQmidaL-PvDqhBzFbVymEvfC2smE0MF9kQYzgMUibk0dM19G7vov7ZiaVKCPVwIIB_CI_ewS7q8Rz9_98bD6GMpX_HPhRs6_-WI2uo','Tiana Miles - Dr faig \nAmy \nHolly\nThelma\nIrving \n*wonderful staff✨',3,'',10,1),(206,'2020-01-06 09:15:07.455764','AIe9_BFLWlqwz3qGBnCfbAsLD0lVOUlvKOywL4-kSheyTaIaUkN9gPOcYndS90zOmNRLSnqJrh-goD55V5rupOfml0nLV69k8JbNm5_MSh4rFwCkWab6P5Q','Claire Vargas - Dr. Faig, Amy, Irving, and Holly were the coolest! Very down to earth people, I trusted them all with my life!',3,'',10,1),(207,'2020-01-06 09:15:07.554128','AIe9_BGErQpX2pRNZrXBy5NOsH0eRpaRGjrZivpYAGR8MzgwSGtIzmIyErJ4p7ab0zlIdqK09Q2rY2SLLIji7IkRr0N3w7LPDKUDcC8lf0KBMLhexvQpP10','harmony olatungie williams - From the minute I step in i felt very cared for staff greeted me and pointed me to the right direction. I really loved the fact that Amy was able to get me through the reg',3,'',10,1),(208,'2020-01-06 09:15:07.614470','AIe9_BH3gZxYpIxBZcqAOO5HuBVki7JTtaiKVG6Q9wU9Q2AN7MCbqGW12n-X-2KwmWuKAt-LiMCkkjNYp7ewCgK7hx5NtrTv6KZxrD9Qi1kKijBFVm9hJyo','Courtney Green - I truly appreciated my visit here. The staff were nice and helpful! Dr. Faig helped me understand why I was sick! Amy she took me straight back to the room and was very sweet and help',3,'',10,1),(209,'2020-01-06 09:15:07.674870','AIe9_BHVBnWjBJvk55vq2QEm0wl-3-7JuEg1w-KnHCF-cQICRN5H2LvJjgMX9cGf0etFyEdwkKsxPKin5YQY0JqYcleEonQ_Dxbh2j-UaUPJfZQspG-7CNg','Maria Rodriguez - Dr. Faig, Amy, and Holly',3,'',10,1),(210,'2020-01-06 09:15:07.735436','AIe9_BHknFajYLCY9NfgBafSx8biR3Hc7sPMr3B8HEAfZpuR09i6iFR5OcxcK8vCYXNMrzc7Z0Ef7bWedyPgArrBNqP4Qn__IzTQWv3dpziPWHIZZZIzAH4','Emily Rodriguez - Amy dr faig and holly',3,'',10,1),(211,'2020-01-06 09:15:07.795880','AIe9_BGErQpX2pRNZrXBy5NOsH0eSyJq53J9P1EJpQNvdxxeJF66JNx5RgKhLqwm5qG1zgozePJ0P3dKzorB3O6UCMk5Wv8rsBhurVI13PFZwGEM4_hAJPE','Raven Martin - Everyone was friendly and the service was great! Irving, Aerial , Thelma , Sherwin were all super',3,'',10,1),(212,'2020-01-06 09:15:07.943653','AIe9_BExcxslmE1rr7n5jMcadSKezWqUWnWDXbmHstXGtJArvhce4b17oaLvhcOhbEwZaKoEuZ_veHqZyYC7LCX0F9QuNly6FgrOKOSP8TR7GAzj2BBmLt4','Odalis Robles - Aerial the receptionist was very quick professional and friendly as soon as I walked in. Irving the nurse was very understanding and compassionate when it came to listening to my conc',3,'',10,1),(213,'2020-01-06 09:15:08.017385','AIe9_BGhYIk2KhOdF8fekWDvq8JUQPg25sIEW3zCsPF4-YNNE0fQk2GBTkPhZgyMh0WCe5HrXeUwSC1lwcKvoomVmbzG5glD0PvffnTetXRlVG3IHHlPA60','CeeCee Vaughan - Genesis was really helpful and conversational while getting checked in & seen. She made my experience better.',3,'',10,1),(214,'2020-01-06 09:15:08.077949','AIe9_BF8X4EpR_fF6mwcYdso9awgDna9tbKisDfkMZQuDYUpTDaJg4eIxR74HT_LJow5uz4PSOh0Jfa2YePJNy-kD6wt4Hkq3_q6hfRKVlS0Alug0WN-Jf8','Aliyanna Brown - I love this ER!! walked in and was greeted immediately and the staff was extremely nice and friendly!',3,'',10,1),(215,'2020-01-06 09:15:08.138175','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2iyuNV93f-OcgcWl8hcUYYgLR14LUx4vjNC9IY8IiApjgDGEwqFn8yUns-B5wCgAZe5svuEYkZ9DJm7Z5jL3c8t72i1g','Jo M - The service was fast and amazing!! Aerial, Dr. Tran, Irving, Tino, and Carmella were really great with treatment and answering all the questions I had. I expected to be here for hours since it ',3,'',10,1),(216,'2020-01-06 09:15:08.198058','AIe9_BGIy_plKfaZrItPyyQZNLvsaTZjhf-dh-5KNbHS0dLJJyCHmUP36RLloH-dWcqGI0sf2ppL2fwfNpNbBwHZUuIK4krvLvvwZQwmsQtLMrDTpHVx3qc','Danielle Francis - I came in because I was experiencing the worst abdominal pain and vomiting. The nurses and Dr. Chai were amazing!!! They took great care of me and I could tell they were genuinely c',3,'',10,1),(217,'2020-01-06 09:15:08.247479','AIe9_BGTHfLB7ZAtvlQmidaL-PvDhO_kEUenRL9n9xhtW88OKk0Pli-_lE1rvAYiSp_O_YHIQ2Cxz6-d8bUjq0JYrslrq6hfgTbGEqLSU3HI1k8uH4z27wA','Sobeida Diana Rodriguez Valadez - Dr. Edwards, RN Shola, RN Irving and RT(R) Thao were all so wonderful! Made a stressful situation better by the time we left. Definitely great ER care.',3,'',10,1),(218,'2020-01-06 09:15:08.321352','AIe9_BGhYIk2KhOdF8fekWDvq8JUy6qtOSSL0ay8ZaLmy5l5pLj6fa7aD1QFapRF9iJ8IsuqiIUz1v4_th-Exk_f-JEXg4cizpnV_PMm5n-HKmAP8xq4AMY','wtf hermes - Dr. Edwards \nRn. Shola \nRn. Irving\nRt(r) thao \nReally great people!',3,'',10,1),(219,'2020-01-06 09:15:08.441898','AIe9_BGZuRKHeO1iYrcf4B001kE2U8FFWfVINd3-6ycXnQtnoet17ESIKlWyTbaQShonB33E9i5YO45DbGTjEHXU90qi2TnSO8Ak6BF_IeALuOB2QnvP81E','Gabrielle Guy - Staff was very friendly and accommodating. Irving was very helpful and took the time to talk to me and it made the process more comfortable. Dr. Edwards was also an amazing doctor and ',3,'',10,1),(220,'2020-01-06 09:15:08.552333','AIe9_BFmRFRFwJGRfUDOW8jG3rXn4bnkpaWuuV_ocS2vDcHc7Hf_RYTMR0gQMzv3lCvXaS4uNncU69pMfFfVYS5lAjGAgB9dkkEdwQPush95nrdvf2FMXJg','Mimi Wilks - I always have a good experience Nurse Irving and Doctor Edwards was really nice and helpful.',3,'',10,1),(221,'2020-01-06 09:15:08.650493','AIe9_BGZuRKHeO1iYrcf4B001kE2isACLviAazMeWPiGQZJrSqK9nZy9oWldJFHadOHEqZzxmThKw0IqlR5U8XBOyfKZ2b_jNBWSKrMYXtGuPHjEIj7irTc','Donna McCoy - I had a bad bike accident in Terry Hershey Park and went straight to Signature Care Westchase. After having had a previous experience with them, they were my first choice. I\'m glad I did',3,'',10,1),(222,'2020-01-06 09:15:08.711017','AIe9_BFLWlqwz3qGBnCfbAsLD0lVO_Tv43PAGMT2y-DX5rTh5Ma0TIFKhBRZr_fBWs314KZ4iidQI8Ve4HTaN4A0G8mw7PMU1blLT9LINMprindyGFIHZfQ','aneka grandison - This has been the fastest emergence care I have receive from a emergency care. The young lady at the front desk Arieial was so patience and very helpful. The staff took very good car',3,'',10,1),(223,'2020-01-06 09:15:08.771532','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EfyE5E1b4I2H3RAg0udtQeiwDNfOTejcg0mqPGXroqPsEbZjfw5oNDydEIHC2di2Toy2Mp69mnvridOwJjQ0XffbaxE','Breanna Dzurikanin - From the moment I walked it everybody on the list was absolutely amazing. Definitely take care of you',3,'',10,1),(224,'2020-01-06 09:15:08.845890','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2xyzHdCRmcvYDbaIGoRzpMo2l26LX9BhsuL0TFi3vBNxAlmfzNABfqUfONOerNtSQzE3iZzFFeeinRrmcKYWHtNxZ6jY','Vicki Pound - Melissa greeted me at the front desk with a smile and professionalism! Promptly, Sarah, my nurse, brought me back making me feel confident they could help me with my week old insect bite',3,'',10,1),(225,'2020-01-06 09:15:08.901172','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG28rcwhBBECaQLv8i2ISp8wXQAkmil1leLeqETO3OjQdeWqf82b4IkjG1WszyeWptUpX4LqWz-FjeGeO1eJcls6Uyj_cE','Roberta Jeffery - I really recommend Signature Care Westchase I\'m sure all locations or just as good however this is the only location I\'ve visited. The staff is very warm and welcoming and the servic',3,'',10,1),(226,'2020-01-06 09:15:09.122923','AIe9_BGvUJd9etQojwpjZIMsiFne9_YXr16WZjL4ZJAGnRhFX0ULfaRVpwizfbM16QNt36qXn1GvZXwttYb3Pqtk4aryJh7ELfYX1adyOdKeN5uAYdWyVnw','T Johnson - Who wants to be in ER at 7am? No one, but the team SignatureCare Westchase were overly amazing. From checking in with Malissa, to speaking with Sarah and Dr. Miller, the entire team was so',3,'',10,1),(227,'2020-01-06 09:15:09.172347','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMGpxAHXzRgPfClLPKnMsznEAj0u_g7nWAB9WZpDIPhgG4P6yMve641GkhiEHHPUSZQTOdEZ5yME46lp07HMv_CmO3iUQ','Sarah Takagi - I highly recommend SignatureCare. Dr. Yusuf, Kristina (RN), Laura (Ad tech), Scott (ER tech), and Malissa (front desk) were professional, caring and so kind towards our youngest daught',3,'',10,1),(228,'2020-01-06 09:15:09.221660','AIe9_BExcxslmE1rr7n5jMcadSKejA56Gj25F5XHRKj84Stf011NZEGblqtV_vIxpTKrQ9RGniRn2DEEeFsivCPc2AZIBp9xNk1xnCdvhhpZBu-wFKFrwbA','rachel gleason - All the staff here is really nice, but the one who really stood out and made me feel comfortable was nurse Irvan. He goes above and beyond his job description. Very friendly and atten',3,'',10,1),(229,'2020-01-06 09:15:09.271022','AIe9_BFDvtvCY6mNmVUeGBiBb7S57Cq02f_FBouWThaAElmCza_I_tQqtOaBBkijmqhmQa5A84GWE1k3DqE15hc090z6kV1Md8Ae2aT7h16bLfj9M1vnkPg','Mikeya Foley - Best ER EVER!!!! Hands down!! Dr. Yusuf, Reg. Malissa, RN Kristina, Rad tech Laura and Rad tech Scott most patient sincere center!',3,'',10,1),(230,'2020-01-06 09:15:09.369358','AIe9_BGTHfLB7ZAtvlQmidaL-PvDRZbP_Yuf724AU_P30g9RnhnbJPi-3AFYWMcsEvIToUz8QIT-QwmZL23TrT2UTG0vOjBg0pu0QlTC36eCaLSTOm6TAxU','Tiffani T - My mom visited this location as it was closest to her job. Dr Yusuf and his staff( Kristina,Laura,Scott and Malissa) treated my mom like she mattered and wasn’t just a patient with a numbe',3,'',10,1),(231,'2020-01-06 09:15:09.467914','AIe9_BGZuRKHeO1iYrcf4B001kE2MlyXCXyhed6cJ2LrFHwYaMHTTdSthAsOjvHeBMLF0L-vpARkpolXXFrYay08uHVGrnlr5IbyzPsZLuD-cZki5EMs9pY','Destiny Russell - Came in for a back muscle strain that was really hurting. Malissa was very helpful at the front. Dr. Yusuf was very detailed in explaining what was wrong, and my Nurse Kristina took ',3,'',10,1),(232,'2020-01-06 09:15:09.517217','AIe9_BGErQpX2pRNZrXBy5NOsH0e4Ffjppo4SF4TFJ_Ry--2nseQyxyzs5S0zfQMaZlOtbhLDvF4BlncWf8AqFqh5IWhaNRiFRoTHUL8m-Mw2I9rcVv52dk','Alisha Owens - They were very helpful, they treated me with no wait time and was out in a timely manner. The lady at the front desk, Hayleigh helped me getting the bill taken care of and was very pro',3,'',10,1),(233,'2020-01-06 09:15:09.615928','AIe9_BGlY-BaOO_aND3JZqxJBS1Ro9cW0yNnGTnMO6lRbTw7N7VhQsdaeAOoVJA3VP56rlVLDrvEteLyPyzUnCyCQ0cK1KMERJPfX6bhi6M6mG7SQK71lSg','SilkyPussy - Everybody here are very helpful and great. Better service than any other clinics and hospitals i went to.',3,'',10,1),(234,'2020-01-06 09:15:09.714066','AIe9_BFqh_zr355jzGaEpH7666zc5SithnvdH7SNAnOwjFjhuZ1R_DzBCWPWire_Qp9i9Bmr2CGMEGTMQyRp-RMCsur_WeaewzN87j4Tromt22mtec4IGF4','Karolina Nyasa - None',3,'',10,1),(235,'2020-01-06 09:15:09.763400','AIe9_BHVBnWjBJvk55vq2QEm0wl-uatmsCSEQHVS5zQxXYGvgCiFds1j6n4bnWW8bjA87NJPk9E2iqgR1xrt5z1ecP89cQkvitNN-TlzZD4HItxRjYDres0','Eric Portillo-Lopez - I\'ve been here a few times and always receive the best treatment. The staff here cares about their patients. From the receptionist Genesis to the physician Dr. Faig everyone was ',3,'',10,1),(236,'2020-01-06 09:15:09.812613','AIe9_BGErQpX2pRNZrXBy5NOsH0eCudUK3JioKkq-6KZH04TnW7IJDdMQvAQ90ggoyX1F064k1mwMjj29GwfvZ9WDDbtzyaLcJbMkYYX9HXAxEXVXSuqtEM','Lisa Braysen - Wonderful experience under the circumstances. Friendly, competent staff. Irvin, Dr. Faig, Kristina, John, Laura and Genesis were great.',3,'',10,1),(237,'2020-01-06 09:15:09.861856','AIe9_BGvUJd9etQojwpjZIMsiFneHE6sbMRtYb-WbbrXCJ2ZwqGgfj_HYctwVrLzuBRuFoiaZuLzZXBJEgtDF5B-c3IHeytJifo0uLOgDfNoNwQQuwc9_Uk','Marthal Nyame - It was the best experience i have ever had .The lady at the front desk Malissa gave me a warm welcome .I was dizzy and she immediately called for a wheelchair before i asked.In .The nu',3,'',10,1),(238,'2020-01-06 09:15:09.910971','AIe9_BHx9wW5OAXpNIH08blLdli0TeSTmBfpsHJOMNDpBotyASMW-glnOrhdDVQE-JToptkQPFq5Jo1wuqxFraEJ2dna0Sc0UmR3xFQJHAM539v3jsmGTJk','Lesley A - Loved it here. Was nervous but the staff assured me that I’ll be fine. Very polite and took great care of me. Let’s not forget the receptionist at the front, she’s a doll xoxo',3,'',10,1),(239,'2020-01-06 09:15:09.959857','AIe9_BExcxslmE1rr7n5jMcadSKezEKDPDPLdLpx9Ro2KcEBJAFfpc3Fz_9oNcMJBXpj8PXF20DvnghPjJXDs4XjfbFujrRJJrcmBxtSrSa9zGjr6Agbk2c','JassyCakes Francois - The treatment here is better than half the hospitals I’ve been to in Houston. \nThe actually care about their patients health and well-being.\nDr. Wang, Malissa, John, Rajesh, Laur',3,'',10,1),(240,'2020-01-06 09:15:10.009116','AIe9_BEV1VP1woYvuPRixSBHlWg4ngzSAyge6ev_rz0tIJzvn1eSNRt0ilSfC1VKcOnJkbu-Hxht4DTiCcf0kOcVy7Sv8Y4Kj3OFdTnf3DVmZxsJWelCGLM','H. Mesopotamia - Very good service',3,'',10,1),(241,'2020-01-06 09:15:10.108012','AIe9_BGlY-BaOO_aND3JZqxJBS1RuoBSweNRrsUedybdY5W3sH_4LMBiK7IJFP2pEZ4_kb-6Zxw1OJQyCoQOSoaIlfwN8Z6VB91FoQe-HtqZydmyZPaiTQA','Amyl Chaudhry - None',3,'',10,1),(242,'2020-01-06 09:15:10.157455','AIe9_BHZM2k_MpOhRgkb8w5Bn_urvej0YWOrqCcevCB4E-4vgp93VmzFmia0fdc3Rtzv9EMrhTpCsrq-UfvQJ1YDMmZS8cdRsC8hk4OxZlLKHAHpAYX-tII','Tay Tay - Miss Malissa was so friendly from the moment I walked in. She immediately processed my paperwork so i could be seen quicker. My doctor, Dr. Daniel\'s was very knowledgeable and helpful and sh',3,'',10,1),(243,'2020-01-06 09:15:10.206535','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fBUExekiGHOcu2oUiZ56Gzt91x3I1OLyLe9UohzMl-0q-IdyqtKBwoH70P0EqkxQtlu33J-WuLllCzYSJFOD34sjLj0','Carmen Zuniga - This is hands down the best Emergency Room I have been too!!. Loved it. Service from the receptionist and the nurses/tech Genesis, John, Kristina ,and Mayra were all very nice and welc',3,'',10,1),(244,'2020-01-06 09:15:10.255830','AIe9_BH3gZxYpIxBZcqAOO5HuBVkyQ3JTfE2rCF1XNLF-5HXoWzo10uQMQHTkxus_GxgGYuNpwk52K-f_C4T66L1WD_blcFiwEz5FhBVS046z_pfYKbOA6g','Asia Kay - First time: 4.5 stars. came here because of a disruptive stomachache and I saw Dr. Pham. He is informative and mostly kind. I didn’t have insurance so my bill went up to almost $800, but he',3,'',10,1),(245,'2020-01-06 09:15:10.305089','AIe9_BHAFUK2tNBZL25dLQ0jVdh0sxDMgz9eSUXzn9-NNPsK-Txz-9IM0z3dV3R5pzEqjML9AeyE-li827TmUxVgSgfwgM0C6PhX4HDjOmJCr3xHUsckHnE','Totally Netters - Ariel the receptionist was very excellent and extremely pleasant!! The doctor Alisha Wren was very helpful in relieving me from my blistered bug bites. Thanks so much!!! Everyone was',3,'',10,1),(246,'2020-01-06 09:15:10.354052','AIe9_BG84YPnR8vhxeJfV_lAYVNimvwDmgWgOMBUGnmmDyZgauHRgx9IEGDlSY_FhP-FWTmjoBaMcgwONBnG31KMDodV8-uTC97Kr3sYnJzw9WK-uqF9UbU','Shenetta Hampton - Awesome customer service!!',3,'',10,1),(247,'2020-01-06 09:15:10.403100','AIe9_BEHZ7lh7y1sP-UInhkpmlIpT4n1lkov3CmUXM-qiCLveCAbBDVm2M8vRnhXldKngZ16FM4A3yi9incQiAQaaiy3uHWs-Nd-lt6NhbOsVF-2Mgi1LHQ','jafar rezai - It was a great experience. Very clean and new place, friendly stuff. Way helpful and fruitful visit than my regular physician office. I am thankful that this place is here. Dr Daniels, K',3,'',10,1),(248,'2020-01-06 09:15:10.452861','AIe9_BG84YPnR8vhxeJfV_lAYVNiMngSVo86Morp2a-BU-A0Lfz8tEtjhEOyXtUr1mi2puCtkBjWdmh04tj2vgcw_VwPbqcw2rVlgfxXHb6I2W4XXTxElSo','Danielle Cormick - Reg.Malissa ,RN Stephaine,Rad TechLaura,ERTech Scott,Dr.Chen everyone was EXTREMELY PROFESSIONAL.Signture Care Emergency was extremely CLEAN.It felt like a VIP Hotel experience.Ever',3,'',10,1),(249,'2020-01-06 09:15:10.551650','AIe9_BEV1VP1woYvuPRixSBHlWg4uP1Bt6xetqn1iXwrLokV6gir6dBQigF8BNR6IET_wbURXDueXKvkaF7C6AMGBd0Yyd-uySv5__5rxr0s1viM1qGnPQ8','T Barbie - Nurse Stephanie , dr Chen, reg malissa was great and took good care of me got me in and out fast , would highly recommend this ercare 😁😁😁',3,'',10,1),(250,'2020-01-06 09:15:10.649431','AIe9_BFhqAtkXvUqdYNeMuBBGjaAyAoDiBP-J6gG6Sz9ivFfHkUocRyNJfWWHUd8j_3obc0aaQ2C6PLvxbasapEHMF7uM3yGcUo7sifmadLnwpGmZJHTjbw','LMAYA SMITH - Everybody was so very helpful. Dr.Chen was swift and helped with everything efficiently. Gave me the best answers. Malissa, Stephanie, Laura, and Scott were super nice and handled me wit',3,'',10,1),(251,'2020-01-06 09:15:10.747865','AIe9_BF8X4EpR_fF6mwcYdso9awgCSxVnFWYLSDJbTrvrPBK5dUESC7KHkcGoOkG1SOxBmlsFbOcSxESE2IWlxHIe_zmB5AfmGjJS3bXNR-d7QlxEQcaw5o','James Livingston - The service was fast and very professional. Dr Chen, Malissa, Stephanie and Scott were very helpful.',3,'',10,1),(252,'2020-01-06 09:15:10.797151','AIe9_BFu3rdicGrPrzdyu4PDXmqMYAMOfKk7cZj_AbFXctGXJDsqeKDf-Kc4SHZMeNs9lYh7TNPDDeT1RbCwk0t2B3PKpLfn69URR-YTE-shUMqrLWjwRVI','Reginald Lampley Jr - None',3,'',10,1),(253,'2020-01-06 09:15:10.846274','AIe9_BFMK6FB7k24ANEBV5CospTTF2ms5LFoyCYe_CAzdaGKn366HpjhynK6vd88jsnTo4a-diGAN-NtWv80vvOQ6IvI880k9Fwtn3iggQIyJMB0r966T8c','Jose Rodriguez - Very fast and friendly',3,'',10,1),(254,'2020-01-06 09:15:10.895621','AIe9_BF8X4EpR_fF6mwcYdso9awgTKN6L3usqEx5w_qVd4vYCpXsgdOrRCmSYauxCS9L7Ntdx0McBY9rSjW0xfwDPCzdD-1ofcSZEbgL0zROiu7tmUqDId4','Sanil Williams - Great experience and friendly smiles all around. \nDefinitely recommend this place to anyone!',3,'',10,1),(255,'2020-01-06 09:15:10.944847','AIe9_BH3gZxYpIxBZcqAOO5HuBVkjVQzNQnZou2n7mi-cYcbLUSMoWrihioz7xr5NszKJMMrX0ZLZG3YNHV6Ps981TY9cH7eZU7puz2oEMtdGnVNxlu5vyU','sharees turner - My God where do i began!? Literally from the second i opened the door i was greeted by Mercy! She was warm and inviting, but most importantly she was caring! She made me feel welcomed',3,'',10,1),(256,'2020-01-06 09:15:10.994175','AIe9_BFmRFRFwJGRfUDOW8jG3rXn-VMgWuiA4c5NvFpQF26vrdqJnQ54ViHAfcpXRfZEH0JtAbgm9W88or8y2WGzk5fLO9FFTUcOBCHPB-S_YN8sNs8FBqA','Mychael Jackson - Short wait time, clean and inviting facility. Absolutely great staff so nice and friendly. Nurse Kristina was funny and caring. Everyone was so nice and wonderful. Everyone from the',3,'',10,1),(257,'2020-01-06 09:15:11.043501','AIe9_BEHZ7lh7y1sP-UInhkpmlIpVgtWwttM848QrJF6Qf74MHOv0xyJ9a9n76AVkhOgQgqT09gimbYzKtNgPW0FbkktTpyEGJau_gRnGm3WE9bzSkUUBlA','Taijhana Jenkins - They are super friendly and very warm welcoming. Melissa was so sweet when we first walked in very helpful. Kristina was THE BEST NURSE ! Scott was so firendly, and Mayra had us cra',3,'',10,1),(258,'2020-01-06 09:15:11.093239','AIe9_BGlY-BaOO_aND3JZqxJBS1RRErHvCf5h6KirIeaHw1Hh95gOf1yNRVET-iK8fpRSn0aSk7N98dAlBDk9xPyclCv1UHB3qfWS4DbPmLwNt-lQ1GAWmo','J Ross - Great experience! I was seen quickly and all the staff were pleasant, helpful, and professional.',3,'',10,1),(259,'2020-01-06 09:15:11.191808','AIe9_BHkHJRvhG8n5BjqdcMSKR_FsotbUC3Nfix2Dn8vsrVDNAnkMUbrWaVphoFgh-zfRge9L9HUnUZoMdSPjNGTg4CXTIoOlHGxDneSNp9mtdtbfTHYkhQ','Nhan Nguyen - The receptionist was awesome, fast, and efficient.',3,'',10,1),(260,'2020-01-06 09:15:11.289544','AIe9_BHkHJRvhG8n5BjqdcMSKR_F9OcoF-rxdRSSAvG-sAKUKf4wJKFEiH0_PqP3gKJGY3BP8StITcMHvRvfGo16qKcaPqVKQ3kdkXrTlSVgN1uvlEe_SI0','Huy Hí - The doctor and the staff are friendly. The services are good!!',3,'',10,1),(261,'2020-01-06 09:15:11.371921','AIe9_BFmRFRFwJGRfUDOW8jG3rXn8IiDbCHWqwZGWWAtc313Bl4pD3wgCpib04JTirKKpfhaBqWoER1D_Z6EWovK-PN4toPFWe4ntbopo7PiZmx5nQgo9s8','Ellie Butler - I’ve has the best experience with this signature care (westchase) the staff is amazing ! Ariel , dr grinblatas was amazing with my daughter took real good care of us in less than a hour',3,'',10,1),(262,'2020-01-06 09:15:11.490447','AIe9_BGvUJd9etQojwpjZIMsiFne2vgs4RTcltE_veXBPk3iBdCMsKvV4jaBO19jfcj0fLjg3pbP1j6eIiMlFHh4OznlrFcXuOko6xeOhdMCsDCHgTjuq5M','Brendan Jackson - Great and fast care ! Doctors are excellent and very caring .',3,'',10,1),(263,'2020-01-06 09:15:11.539744','AIe9_BHR7p0hPy1flx1br0TYdEUBo8MPNHWgtbxUz2XRXkm75jjK3JaCguqSz9hPnH_GEFyWlMVPkZwsppgJxK-gpFvRZBntQyuTXokfKqKFjY7TkmkW96I','Jose Tubens - One of the best ER room in houston, very lovely and very friendly, the human touch is always present since you enter trhu the door till you leave the building, number one in cleaning and',3,'',10,1),(264,'2020-01-06 09:15:23.314226','1','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(265,'2020-01-06 09:15:23.366574','2','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(266,'2020-01-06 09:15:23.415850','3','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(267,'2020-01-06 09:15:23.514343','4','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(268,'2020-01-06 09:15:23.563327','5','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(269,'2020-01-06 09:15:23.613219','6','We want everyone who visits us to feel like family. It\'s great to hear that our team made your mom feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for ',3,'',9,1),(270,'2020-01-06 09:15:23.673312','7','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(271,'2020-01-06 09:15:23.722189','8','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(272,'2020-01-06 09:15:23.771571','9','There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team i',3,'',9,1),(273,'2020-01-06 09:15:23.993605','10','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(274,'2020-01-06 09:15:24.141412','11','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(275,'2020-01-06 09:15:24.215307','12','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(276,'2020-01-06 09:15:24.264625','13','Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for your wife, and are so glad to hear that she is feeling better. Thank you for ch',3,'',9,1),(277,'2020-01-06 09:15:24.324907','14','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(278,'2020-01-06 09:15:24.373737','15','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(279,'2020-01-06 09:15:24.422980','16','We appreciate your great rating, Adalberto!',3,'',9,1),(280,'2020-01-06 09:15:24.472257','17','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope your fiance is feeling ',3,'',9,1),(281,'2020-01-06 09:15:24.620693','18','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(282,'2020-01-06 09:15:24.694906','19','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(283,'2020-01-06 09:15:24.792511','20','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(284,'2020-01-06 09:15:24.891639','21','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(285,'2020-01-06 09:15:25.014838','22','Thank you so much for your great rating, Anoop!',3,'',9,1),(286,'2020-01-06 09:15:25.162621','23','We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the n',3,'',9,1),(287,'2020-01-06 09:15:25.310493','24','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(288,'2020-01-06 09:15:25.370694','25','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(289,'2020-01-06 09:15:25.453326','26','Hi Stacey! We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and t',3,'',9,1),(290,'2020-01-06 09:15:25.513717','27','At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope y',3,'',9,1),(291,'2020-01-06 09:15:25.574039','28','Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can ge',3,'',9,1),(292,'2020-01-06 09:15:25.766276','29','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(293,'2020-01-06 09:15:25.864314','30','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(294,'2020-01-06 09:15:25.913977','32','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(295,'2020-01-06 09:15:25.963391','31','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(296,'2020-01-06 09:15:26.012543','33','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.',3,'',9,1),(297,'2020-01-06 09:15:26.160216','34','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(298,'2020-01-06 09:15:26.234170','35','Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can ge',3,'',9,1),(299,'2020-01-06 09:15:26.332838','36','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(300,'2020-01-06 09:15:26.431073','37','At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!',3,'',9,1),(301,'2020-01-06 09:15:26.480218','38','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(302,'2020-01-06 09:15:26.529621','39','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(303,'2020-01-06 09:15:26.578749','40','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(304,'2020-01-06 09:15:26.650927','41','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(305,'2020-01-06 09:15:26.762174','42','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare',3,'',9,1),(306,'2020-01-06 09:15:26.811482','43','At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!',3,'',9,1),(307,'2020-01-06 09:15:26.860717','44','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(308,'2020-01-06 09:15:26.959121','45','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(309,'2020-01-06 09:15:27.008550','46','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(310,'2020-01-06 09:15:27.057628','47','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(311,'2020-01-06 09:15:27.107048','48','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(312,'2020-01-06 09:15:27.156378','49','Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency ne',3,'',9,1),(313,'2020-01-06 09:15:27.255024','50','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and dia',3,'',9,1),(314,'2020-01-06 09:15:27.353144','51','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing Sig',3,'',9,1),(315,'2020-01-06 09:15:27.452045','52','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(316,'2020-01-06 09:15:27.550111','53','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(317,'2020-01-06 09:15:27.599403','54','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(318,'2020-01-06 09:15:27.648774','55','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(319,'2020-01-06 09:15:27.697892','56','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(320,'2020-01-06 09:15:27.747290','57','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!',3,'',9,1),(321,'2020-01-06 09:15:27.796381','58','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(322,'2020-01-06 09:15:27.845580','59','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(323,'2020-01-06 09:15:27.944294','60','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(324,'2020-01-06 09:15:28.091883','61','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(325,'2020-01-06 09:15:28.141068','62','When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your ',3,'',9,1),(326,'2020-01-06 09:15:28.190296','63','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(327,'2020-01-06 09:15:28.239838','64','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(328,'2020-01-06 09:15:28.338067','65','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(329,'2020-01-06 09:15:28.411915','66','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(330,'2020-01-06 09:15:28.461220','67','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(331,'2020-01-06 09:15:28.559935','68','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(332,'2020-01-06 09:15:28.658271','69','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(333,'2020-01-06 09:15:28.707521','70','Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing Si',3,'',9,1),(334,'2020-01-06 09:15:28.756717','71','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(335,'2020-01-06 09:15:28.806104','72','Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.',3,'',9,1),(336,'2020-01-06 09:15:28.855141','73','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(337,'2020-01-06 09:15:28.904454','74','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(338,'2020-01-06 09:15:28.953797','75','Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can ge',3,'',9,1),(339,'2020-01-06 09:15:29.014058','76','We appreciate your great rating, Danny!',3,'',9,1),(340,'2020-01-06 09:15:29.079650','77','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(341,'2020-01-06 09:15:29.161891','78','Thank you so much for your nice review, Leonnya. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since ',3,'',9,1),(342,'2020-01-06 09:15:29.211046','79','It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing Sig',3,'',9,1),(343,'2020-01-06 09:15:29.260204','80','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(344,'2020-01-06 09:15:29.309491','81','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!',3,'',9,1),(345,'2020-01-06 09:15:29.408179','82','We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the n',3,'',9,1),(346,'2020-01-06 09:15:29.506467','83','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(347,'2020-01-06 09:15:29.556113','84','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(348,'2020-01-06 09:15:29.654286','85','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(349,'2020-01-06 09:15:29.752886','86','Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.',3,'',9,1),(350,'2020-01-06 09:15:29.826513','87','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(351,'2020-01-06 09:15:29.875907','88','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(352,'2020-01-06 09:15:29.925035','89','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(353,'2020-01-06 09:15:29.974296','90','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(354,'2020-01-06 09:15:30.023645','91','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(355,'2020-01-06 09:15:30.122159','92','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(356,'2020-01-06 09:15:30.170760','93','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(357,'2020-01-06 09:15:30.220533','94','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(358,'2020-01-06 09:15:30.352344','95','We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank',3,'',9,1),(359,'2020-01-06 09:15:30.401798','96','Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.',3,'',9,1),(360,'2020-01-06 09:15:30.500530','97','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!',3,'',9,1),(361,'2020-01-06 09:15:30.598736','98','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.',3,'',9,1),(362,'2020-01-06 09:15:30.648029','99','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(363,'2020-01-06 09:15:30.746560','100','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(364,'2020-01-06 09:15:38.036121','101','Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency ne',3,'',9,1),(365,'2020-01-06 09:15:38.095197','102','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(366,'2020-01-06 09:15:38.531896','103','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(367,'2020-01-06 09:15:38.581034','104','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(368,'2020-01-06 09:15:38.629817','105','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(369,'2020-01-06 09:15:38.778101','106','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your friend is feeling well.',3,'',9,1),(370,'2020-01-06 09:15:38.876135','107','Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing Si',3,'',9,1),(371,'2020-01-06 09:15:38.925678','108','Thank you for your review. We appreciate you choosing SignatureCare!',3,'',9,1),(372,'2020-01-06 09:15:38.974808','109','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(373,'2020-01-06 09:15:39.024391','110','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(374,'2020-01-06 09:15:39.073753','111','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(375,'2020-01-06 09:15:39.134087','113','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!',3,'',9,1),(376,'2020-01-06 09:15:39.194495','114','Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing Si',3,'',9,1),(377,'2020-01-06 09:15:39.254875','115','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(378,'2020-01-06 09:15:39.315254','116','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(379,'2020-01-06 09:15:39.364548','117','We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the n',3,'',9,1),(380,'2020-01-06 09:15:39.463110','118','Thank you so much for your nice review. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim fo',3,'',9,1),(381,'2020-01-06 09:15:39.537028','119','Thank you so much for your nice review, Rosalyn. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our pa',3,'',9,1),(382,'2020-01-06 09:15:39.597532','120','Thank you so much for your great rating!',3,'',9,1),(383,'2020-01-06 09:15:39.657681','121','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(384,'2020-01-06 09:15:39.706472','112','We appreciate your great rating! Thank you for choosing SignatureCare!!',3,'',9,1),(385,'2020-01-06 09:15:39.854784','122','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.',3,'',9,1),(386,'2020-01-06 09:15:39.928818','123','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(387,'2020-01-06 09:15:40.026777','124','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(388,'2020-01-06 09:15:40.125707','125','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(389,'2020-01-06 09:15:40.186059','126','Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency ne',3,'',9,1),(390,'2020-01-06 09:15:40.246691','127','We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.',3,'',9,1),(391,'2020-01-06 09:15:40.306914','128','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(392,'2020-01-06 09:15:40.367505','130','Thank you so much for your great rating, Kat!',3,'',9,1),(393,'2020-01-06 09:15:40.427683','131','Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.',3,'',9,1),(394,'2020-01-06 09:15:40.526089','132','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(395,'2020-01-06 09:15:40.624782','133','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(396,'2020-01-06 09:15:40.717634','134','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(397,'2020-01-06 09:15:40.767419','135','We appreciate the great rating you gave us, Mathis!',3,'',9,1),(398,'2020-01-06 09:15:40.828072','136','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare',3,'',9,1),(399,'2020-01-06 09:15:40.926342','137','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they',3,'',9,1),(400,'2020-01-06 09:15:41.025100','138','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.',3,'',9,1),(401,'2020-01-06 09:15:41.172670','139','Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing Si',3,'',9,1),(402,'2020-01-06 09:15:41.232976','140','Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(403,'2020-01-06 09:15:41.293548','141','We appreciate your great rating, Aranda!',3,'',9,1),(404,'2020-01-06 09:15:41.367578','142','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to',3,'',9,1),(405,'2020-01-06 09:15:41.477107','143','Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCa',3,'',9,1),(406,'2020-01-06 09:15:41.586354','144','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(407,'2020-01-06 09:15:41.878283','146','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(408,'2020-01-06 09:15:41.976870','147','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.',3,'',9,1),(409,'2020-01-06 09:15:42.050633','148','Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing Signa',3,'',9,1),(410,'2020-01-06 09:15:42.100178','149','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing Sig',3,'',9,1),(411,'2020-01-06 09:15:42.198392','150','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(412,'2020-01-06 09:15:42.247682','151','Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(413,'2020-01-06 09:15:42.296901','152','Thank you, Jorge, for your great rating!',3,'',9,1),(414,'2020-01-06 09:15:42.346049','153','We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the n',3,'',9,1),(415,'2020-01-06 09:15:42.395180','154','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(416,'2020-01-06 09:15:42.444646','155','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(417,'2020-01-06 09:15:42.493871','156','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(418,'2020-01-06 09:15:42.543366','157','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(419,'2020-01-06 09:15:42.690971','159','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare',3,'',9,1),(420,'2020-01-06 09:15:42.764709','160','When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your ',3,'',9,1),(421,'2020-01-06 09:15:42.813670','161','We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.',3,'',9,1),(422,'2020-01-06 09:15:42.862791','145','Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can ge',3,'',9,1),(423,'2020-01-06 09:15:42.912461','162','At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope y',3,'',9,1),(424,'2020-01-06 09:15:42.961729','163','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(425,'2020-01-06 09:15:43.060311','164','Thank you so much for your five star rating, Rola!',3,'',9,1),(426,'2020-01-06 09:15:43.158664','165','Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(427,'2020-01-06 09:15:43.257204','166','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.',3,'',9,1),(428,'2020-01-06 09:15:43.306402','167','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to',3,'',9,1),(429,'2020-01-06 09:15:43.404823','168','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(430,'2020-01-06 09:15:43.454240','169','Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.',3,'',9,1),(431,'2020-01-06 09:15:43.552734','170','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(432,'2020-01-06 09:15:43.651352','171','At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!',3,'',9,1),(433,'2020-01-06 09:15:43.749720','172','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(434,'2020-01-06 09:15:43.848102','177','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(435,'2020-01-06 09:15:43.912913','173','We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank',3,'',9,1),(436,'2020-01-06 09:15:44.023517','174','Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing Si',3,'',9,1),(437,'2020-01-06 09:15:44.122299','175','Thanks for leaving a review, Gabriel! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will ',3,'',9,1),(438,'2020-01-06 09:15:44.220445','176','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare',3,'',9,1),(439,'2020-01-06 09:15:44.318944','178','Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing Signa',3,'',9,1),(440,'2020-01-06 09:15:44.368243','179','We want our patients to feel like family. We are happy to hear that our staff made you feel like home. Thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!',3,'',9,1),(441,'2020-01-06 09:15:44.417440','180','At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.',3,'',9,1),(442,'2020-01-06 09:15:44.466680','181','At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope y',3,'',9,1),(443,'2020-01-06 09:15:44.515938','182','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(444,'2020-01-06 09:15:44.565241','184','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(445,'2020-01-06 09:15:44.614438','185','We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.',3,'',9,1),(446,'2020-01-06 09:15:44.663755','186','We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the n',3,'',9,1),(447,'2020-01-06 09:15:44.713066','187','Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing Si',3,'',9,1),(448,'2020-01-06 09:15:44.811581','183','Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(449,'2020-01-06 09:15:44.909894','188','Thank you so much for your review and rating!',3,'',9,1),(450,'2020-01-06 09:15:44.958653','189','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(451,'2020-01-06 09:15:45.008345','190','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(452,'2020-01-06 09:15:45.057689','191','Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCa',3,'',9,1),(453,'2020-01-06 09:15:45.205572','129','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(454,'2020-01-06 09:15:45.303918','192','Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(455,'2020-01-06 09:15:45.402600','193','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(456,'2020-01-06 09:15:45.501009','194','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(457,'2020-01-06 09:15:45.550170','195','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(458,'2020-01-06 09:15:45.599401','196','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(459,'2020-01-06 09:15:45.648696','197','Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for c',3,'',9,1),(460,'2020-01-06 09:15:45.697926','198','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(461,'2020-01-06 09:15:45.747312','199','Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.',3,'',9,1),(462,'2020-01-06 09:15:45.796396','200','When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your ',3,'',9,1),(463,'2020-01-06 09:15:45.894841','201','Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can ge',3,'',9,1),(464,'2020-01-06 09:15:54.226603','202','Thank you so much for your feedback! Our goal is to always provide the abest care. Thank you for choosing SignatureCare.',3,'',9,1),(465,'2020-01-06 09:15:54.336556','203','Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCa',3,'',9,1),(466,'2020-01-06 09:15:54.607432','204','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!',3,'',9,1),(467,'2020-01-06 09:15:54.681199','205','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(468,'2020-01-06 09:15:54.779953','206','Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It ',3,'',9,1),(469,'2020-01-06 09:15:54.878364','207','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(470,'2020-01-06 09:15:54.952415','158','Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with yo',3,'',9,1),(471,'2020-01-06 09:15:55.051036','208','At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.',3,'',9,1),(472,'2020-01-06 09:15:55.149357','209','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your mom feels well.',3,'',9,1),(473,'2020-01-06 09:15:55.198593','210','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(474,'2020-01-06 09:15:55.247957','211','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hosp',3,'',9,1),(475,'2020-01-06 09:15:55.297500','212','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.',3,'',9,1),(476,'2020-01-06 09:15:55.346686','213','Thank you so much for your feedback. We appreciate the great rating you gave us, Karolina!',3,'',9,1),(477,'2020-01-06 09:15:55.395993','214','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare',3,'',9,1),(478,'2020-01-06 09:15:55.445102','215','Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing Signa',3,'',9,1),(479,'2020-01-06 09:15:55.543668','216','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(480,'2020-01-06 09:15:55.617018','217','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(481,'2020-01-06 09:15:55.666775','218','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(482,'2020-01-06 09:15:55.715984','219','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(483,'2020-01-06 09:15:55.765225','220','Thank you so much for rating us five star, Amyl!',3,'',9,1),(484,'2020-01-06 09:15:55.814499','221','Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(485,'2020-01-06 09:15:55.863917','222','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(486,'2020-01-06 09:15:55.913146','224',' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(487,'2020-01-06 09:15:55.962321','225','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(488,'2020-01-06 09:15:56.011661','226','At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!',3,'',9,1),(489,'2020-01-06 09:15:56.060392','227','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!',3,'',9,1),(490,'2020-01-06 09:15:56.208292','228','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.',3,'',9,1),(491,'2020-01-06 09:15:56.307336','229','Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing Si',3,'',9,1),(492,'2020-01-06 09:15:56.392593','230','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(493,'2020-01-06 09:15:56.491099','231','We appreciate the great rating you gave us, Lampley!',3,'',9,1),(494,'2020-01-06 09:15:56.551370','223','Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with yo',3,'',9,1),(495,'2020-01-06 09:15:56.698638','232','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(496,'2020-01-06 09:15:56.773031','233','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!',3,'',9,1),(497,'2020-01-06 09:15:56.833438','234','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(498,'2020-01-06 09:15:56.893751','235','SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencie',3,'',9,1),(499,'2020-01-06 09:15:56.992351','236','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to',3,'',9,1),(500,'2020-01-06 09:15:57.052714','237','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(501,'2020-01-06 09:15:57.113007','238',' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(502,'2020-01-06 09:15:57.197262','239','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(503,'2020-01-06 09:15:57.402422','241','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(504,'2020-01-06 09:15:57.462675','240','Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It ',3,'',9,1),(505,'2020-01-06 09:15:57.523140','242','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hosp',3,'',9,1),(506,'2020-01-06 10:12:22.830695','123','Mohit - My brother was feeling horrible but we couldn’t find somewhere that would take Medicaid, we called and Amanda encouraged us to come in and the screening was free, his doctor DrLingan was genui',1,'[{\"added\": {}}]',10,1),(507,'2020-01-06 10:13:31.109895','dsaf','Pronoy Majumdar - The is the best ER by far. Dr. Zhen is a very caring and wonderful person. Jessica is a very knowledgeable and friendly nurse. Nurse Allison was very kind and also called my prescrip',1,'[{\"added\": {}}]',10,1),(508,'2020-01-06 10:14:50.001784','123456788889','Pabon SEC - Shania at registration got us checked-in in a matter of minutes, Jose walked us to the room in a matter of minutes as well and got us set up very quickly. Kim then took down the informatio',1,'[{\"added\": {}}]',10,1),(509,'2020-01-06 13:25:20.627504','54321.01','Alex - Thank you to the Westchase team for an exceptional service. Kristina RN, Laura Rad Tech, Scott, and Dr. Leavitt. Thank you for putting me at ease and being so kind and professional. Thanks to P',1,'[{\"added\": {}}]',10,1),(510,'2020-01-06 13:26:34.510184','54321.01','Alex - Thank you to the Westchase team for an exceptional service. Kristina RN, Laura Rad Tech, Scott, and Dr. Leavitt. Thank you for putting me at ease and being so kind and professional. Thanks to P',2,'[{\"changed\": {\"fields\": [\"Reviewer photo\"]}}]',10,1),(511,'2020-01-06 13:27:18.723298','123','Mohit - My brother was feeling horrible but we couldn’t find somewhere that would take Medicaid, we called and Amanda encouraged us to come in and the screening was free, his doctor DrLingan was genui',2,'[{\"changed\": {\"fields\": [\"Reviewer photo\"]}}]',10,1),(512,'2020-01-06 13:29:40.831557','9405','thank you mazumdar',3,'',9,1),(513,'2020-01-07 05:48:25.966336','123','Mohit - My brother was feeling horrible but we couldn’t find somewhere that would take Medicaid, we called and Amanda encouraged us to come in and the screening was free, his doctor DrLingan was genui',3,'',10,1),(514,'2020-01-07 05:48:36.469427','123456788889','Pabon SEC - Shania at registration got us checked-in in a matter of minutes, Jose walked us to the room in a matter of minutes as well and got us set up very quickly. Kim then took down the informatio',3,'',10,1),(515,'2020-01-07 05:49:12.473189','54321.01','Alex - Thank you to the Westchase team for an exceptional service. Kristina RN, Laura Rad Tech, Scott, and Dr. Leavitt. Thank you for putting me at ease and being so kind and professional. Thanks to P',3,'',10,1),(516,'2020-01-07 07:59:22.597825','9406','Thank you so much for your great rating, Wesley!',3,'',9,1),(517,'2020-01-07 07:59:59.295796','AIe9_BFDvtvCY6mNmVUeGBiBb7S5a6xjNGE_eV65JrYv3GiPyF5daNl4n2Rgo9oecO1cwF-lJMBLQcDGxE3Ff_WhxjrfHZBWs1UmrVaJi2uiuD7gUZtoxD0','Bo Carrasco - Dr. Faig and nurse Sarra were amazing. My wife’s wedding band hand to be cut off. Lots of laughs on our part. Thank you Dr Faigbfor your patience with us!',3,'',10,1),(518,'2020-01-08 06:10:23.177588','AIe9_BGZuRKHeO1iYrcf4B001kE28m7HpUKNnopIvx3FU6NjUSbQLCP8jNjvp3IuNJSUXlzD0kJAruCvn4zNR4l_imQZkEMOGdshnkR0wruLj5CcdEzW56E','Emma Thomas - The care was phenomenal!! I had to get stitches there and they were quick, attentive, and very personable!',3,'',10,1),(519,'2020-01-08 06:10:23.261796','AIe9_BEAgUIalCkcXZnurOUpP4uAR9Xo9FtZkS7agfIlzISEHXAWLJxTRaXoSOvEnWO0v6IH08En-lDMHKIKeNpo9_lUdaTQ7p5RAJw65fhfSyTnFWKR1FE','Random Chit - Awesome place. The staff was both polite and caring in regards to my condition. I hope I dont get sick again but if I do I will definitely come back',3,'',10,1),(520,'2020-01-08 06:10:23.311144','AIe9_BH3gZxYpIxBZcqAOO5HuBVkc7gsQb1lUK3gBRoiYh7rbKv4BMXEz5BEaAPHxWb2luP5_YnuK2m36S0HJMSa2AewzI9kxVBsLfWDRw4f3Nqy4_kMLqs','Cindy Witte - My doctor referred me here to get. c-scan. They made a diagnoses and offered care for IV antibiotics onsite so I didn’t have to transfer to a hospital. The staff was smart, kind and ca',3,'',10,1),(521,'2020-01-08 06:10:23.360393','AIe9_BFhqAtkXvUqdYNeMuBBGjaAXm9MIXU0092GfKC_iNC8nP-7GsurWDhyRpXgcQ4pvrLZSorWJ3x94q26YkK_5a1mPW4T7Smu7h2XfO1KTIN9XC7szV0','Dezi Dee - Fast treatment! And Erica at the front desk was fast getting us checked in and out and making sure we had all the info we needed!!',3,'',10,1),(522,'2020-01-08 06:10:23.409488','AIe9_BH3gZxYpIxBZcqAOO5HuBVkBYGBbLx4nAByaFDqiTwebQWeAmYdIbksIFcUjI0-YzwUjBm60YIOW4EHqpxFw2-gUGCgMfziBFgyNGfiH3DWLM5Dvro','Linda Newton - Everyone was friendly and efficient. And there was no wait time.',3,'',10,1),(523,'2020-01-08 06:10:23.458968','AIe9_BFLWlqwz3qGBnCfbAsLD0lVo6vILvTXGZfyYbmXnuXzPPaLpClG8Qvlji4sl7qZz_ZjbCpGt6cIRdBZOnbcBSGnyWp7-LzI3Bl7oBwFa8F-n5ofCAs','Karma _Official - Very fast & attentive.',3,'',10,1),(524,'2020-01-08 06:10:23.508046','AIe9_BGZuRKHeO1iYrcf4B001kE2T7uljME43098E-IoTUxkO9bSrgks9IZ5G8C2FkiFpN94eBrId4no0H7_9h71ji0tNHxai6zHvO6d7e0nEddwzkunbKg','Sharia Castillo - My son had a sprained wrist he had been complaining about for a few days. I decided to get it checked out and called SC. I spoke with Adell and he was excellent on the phone. He told',3,'',10,1),(525,'2020-01-08 06:10:23.557356','AIe9_BEAgUIalCkcXZnurOUpP4uAWO1u2C7VCtRm83-SRcGeiKB0eNkju9GSrAXQE-HaktmlBq7GHArinQpES6up2WQUrfA13Jx4uekFG04aOezMLP0nCuU','Nicole Burd - Very nice and friendly staff. We have had nothing but the best service there. Highly recommend!',3,'',10,1),(526,'2020-01-08 06:10:23.606608','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fc4NAgSNSJLnw_A4J7vZZWqYuA2Qg7njHng41bYmIagN0tAmS_aFPaaL4hJ-8uqzWhrHdqagJ66kh9zkuNQlIL_cmygw','Anna Soto - I recommend Signature Care Emergency Center. Great Customer service, Staff and Doctor. \nWe only waited 5 minutes in the waiting room then put in a room and the Doctor came in within minute',3,'',10,1),(527,'2020-01-09 05:02:19.715482','AIe9_BEAgUIalCkcXZnurOUpP4uAJ3a-d_vL4lIsbOEdEPYkybSWFVCa_8gNzuIs4mcol0EFFEZe_rMFJqWzx7DurI7Smzxrs9YS2bI6eDGSObYCLVg_O_Q','Lakesha Winfree - Norma and the ER staff was amazing and made me feel comfortable. The facilities are top notch and I received excellent care!',3,'',10,1),(528,'2020-01-09 05:02:19.989705','AIe9_BGTHfLB7ZAtvlQmidaL-PvDYmkD1jjHL76yaRwRK_VNKCylBGv9ecLMnP9G6wkY2UFSUeM4jM6MxFuOktkj_4ckY-TAGGK_oQ0Ugecf4ff9KqSOucI','Victoria Jones - Everyone was welcoming and throughly explained everything and made the ER visit more comfortable. All staff was knowledgeable and pleasant',3,'',10,1),(529,'2020-01-09 05:02:20.364339','AIe9_BEuFX7PcAP2nNY_ju84FoFS0w1QRMaqrOckSPY7g7W75uyVUKps1h3oW-7tRsyKszKu-IGGOj4Ha-iQwjFngiqeiVIpC-9W88wMZO-q8bea7coT5kc','Damien Brito - None',3,'',10,1),(530,'2020-01-09 05:02:20.491010','AIe9_BExcxslmE1rr7n5jMcadSKec5o_QJCjHx9lJRq2jnrpfK6ArQSXZN4Bt_Qmv3HO0glFEdQn_h4rmt5lu04s3x6IrAuaxcuPrrEvPfJ2vLpHBws78iM','Chloe Dumas - I will be visiting this ER location again because Rayven was nice and showed professionalism.',3,'',10,1),(531,'2020-01-09 05:02:20.640441','AIe9_BFmRFRFwJGRfUDOW8jG3rXnYNhiA-v4Fui6IuXM0LhaFRQYPfQpslzSazSFrG7oJ9QIfzJXx_RKgXfo59-aeUsREr_vWOJwMD-9bRZm__civXaYDGE','Eryn Harper - Rayven was very polite and welcoming when I came in. She was very fast and efficient when it came to answering questions.',3,'',10,1),(532,'2020-01-09 05:02:20.811269','AIe9_BHrWISkj5yJg3Mm8Kf_x3la-NIKNWvLYj-sPMKjQm01C3KL6bRfMaPvNveaxVYehDRAntivk3aJcxoXvrwkpYgbNUA9uQ','Ashley Williams - Came in late on a weekday, we were seen almost immediately with a less than 5 minute wait. The staff was very knowledgeable and attentive. Samantha did a great job at the front desk ',3,'',10,1),(533,'2020-01-09 05:02:20.938891','AIe9_BHQjprpOXGeqmXihYBIHmuaZS9FoRXpMEySrsDySMcANF480lEE9j1CK93Rp_xOPo_z4WGznGpzNVKynOsu31KukGK1zQDi4FsNj_iuzJazLOWbih0','Danica Salazar - The staff is very friendly. The Dr. Found the reason for the pain in sons ear Very quickly gave us the prescription and we were on our way.. \nI would definitely reccomend Signature C',3,'',10,1),(534,'2020-01-09 05:02:21.032598','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2theeeqXKgHxlnKxCzBZeCgYmGF0urdy5CrATu1w8oBhkszX9Tpidh2RMBI076GY8TvWBD9lWz_GVX8IEQUVaiWZamkY','marmaljr mmm - Great and fast service! Dr wang, Susan, Tamisha were awesome and took really good care of me!',3,'',10,1),(535,'2020-01-09 05:02:21.192824','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ws3-0jplRQmEMHMAn6Yeq-5BKKsI0ZmFSTYroSXvL-BTAkJZMYoPzZgE4k3cAb-M0yZ06eHSPViZ6UJpznHi7r4sGHo','sherita johnson - The staff were very pleasant especially Norma. The wait time wasn’t overwhelming we were in and out.',3,'',10,1),(536,'2020-01-09 05:02:21.380204','AIe9_BGlY-BaOO_aND3JZqxJBS1RG2MGAbqhLXIWiOTq6xrfOIDCaMRwS4GnigXkDqR-iRdueqLufaDk9T-mPdCTCU1adH6Rn1DvcrrEujHwB2U2eEsY360','Prima Starr - Wonderful Job!',3,'',10,1),(537,'2020-01-09 05:02:21.496113','AIe9_BFmRFRFwJGRfUDOW8jG3rXnMlMGPxEIwm8CbdiJpI8PwzeD2cm3So6cwv_tMHV_IqH0K620zpD6KkH2iuNixzBc_fOvrMrJrnO7LkaKHMYZtRJJejg','cassiedouglas12 - Alvean, Marcus, and Jordan are awesome.',3,'',10,1),(538,'2020-01-09 05:02:21.612153','AIe9_BGhYIk2KhOdF8fekWDvq8JUjmMplOswYSwZ2csI2_Lj-M1coT5mnzTKM8-WVAVXfHnhmHlNKTDlECWvXv5fun8NOvwmmm0vNAq9PWvSFnGVQsnbXJs','samantha molina - Awesome service everytime. I have been here more than 3times and service is excellent!!!!',3,'',10,1),(539,'2020-01-09 05:02:21.683529','AIe9_BGZuRKHeO1iYrcf4B001kE2o4dDwQPrO0JU0VjT9bIaAlqSz4VkvtmDVbJ-JgCs7DgJpe29Xp0dPTV2tJjUzTEpxavUX5zPRhYmbSO2ZtTCGiKJ2UY','Henrietta Turner - Dr Patel was great knowledgeable and sweet. Genesis at registration was a welcoming soul and my nurses Catherine and Fame .... No words ... I left feeling much better due to them . ',3,'',10,1),(540,'2020-01-09 05:02:21.732721','AIe9_BG84YPnR8vhxeJfV_lAYVNi9jz2DF-IFzLODKl6GxfDJ3KPZocc6vJNxBVMPYBAfhqZDw5eNmT2k65lSR-2I1p_9VG4olMlp1Wchg7U03dx5QaU3OY','Fred Colesby - Holy Moly. I was going to rate this place a 4 or 5 until I seen the Bill !! Wife was there for less than 2 hours with stomach pain. They did a chest x-ray, blood test and EKG. The bill ',3,'',10,1),(541,'2020-01-09 05:02:21.859597','AIe9_BFLHEJ8hYqd4VCbbc-EtvgM5may6C2-ssvDQI3bsK2gCb_8AgNTnVfG09mTLPN4XP3WxWOlWeHDfUNNzFVsP6BBa5s86uUEuWnQkVEZkDidrIyPr-A','Dahki Adams - Alvean and Marcus really helped me out and in a hurry ! Very kind people !',3,'',10,1),(542,'2020-01-09 05:02:21.953214','AIe9_BGlY-BaOO_aND3JZqxJBS1RB4penSKCAZ4Eyg9yN3q6QLgJyKKgAFj5KJrhs_FpwDArKs9Dmt3KLwWsMnnR6SKkBBPYY3UTm0JFRJUx6qtq-kjhdH8','nataly carrillo - I enjoyed my visit to SignatureCare, it was fast and easy. Alvean and Marcus were a professional and help so much.',3,'',10,1),(543,'2020-01-09 05:02:22.047209','AIe9_BEHZ7lh7y1sP-UInhkpmlIp6vfuucHWvL7vqnhYpVPpoA6tLmZxDtYTTzqT9OAI657v75OPK-j9Tkg3-evR3GMIUqz_z3hkt6DMZdOfyfpFp1mrHoo','Julia Martinez - This was my first visit to SignatureCare and I was very pleased with my experience. Alvean greeted me and my spouse with a warm friendly smile and Marcus was quick when it came to my ',3,'',10,1),(544,'2020-01-09 05:02:22.118565','AIe9_BGvUJd9etQojwpjZIMsiFneJECVahC7L6z7CHja7R-GjoLPnYX6SOerQY1fbWbMPntKeWu--WR8rSIsDx14lKfcIAGJmSZ7Mr9a2SziVMENrP5S4HI','brittany brown - Went to Entrust and saw Dr. Martinez and Reymark. Speedy service, very patient and knowledgeable! Thanks guys!!',3,'',10,1),(545,'2020-01-09 05:02:22.201214','AIe9_BFu3rdicGrPrzdyu4PDXmqMIMrx0z1VgvDqqKu8nKUdbAxCkY7Qrmu7Kae-50N4VuU9ITXmIYbHXjSJDOwsRh2xNR6hxijYNnhsmL3ZraV0IjsRkos','Eva Aguirre - Everyone was really helpful and got me in and out. Thank you Rey for your help!',3,'',10,1),(546,'2020-01-09 05:02:22.273235','AIe9_BFhqAtkXvUqdYNeMuBBGjaAoGjkqFjwjCdHA8wYpVDS0D8Jercq-Zj-6PGEummsBcMMOSrorj_1v1JcDMHEo-J8IOBEoLRMAELXUMgtrjRBQirBGLE','Dru - I went to this location after work yesterday and was pleasantly greeted and checked in by Ms. Erica. She was super kind and extremely informative and patient with me (I had a few questions regar',3,'',10,1),(547,'2020-01-09 05:02:22.399885','AIe9_BGekwi02pW78Sb6PRYJ6nZsrPKVjddyxTYddsv_7-bAMBzfzQ_vAfmHbxxCVHN9dPOHXlSQfr753B2bsXBYOfaJiqMSXpWSm-2nhgGml8r_XKp7ra0','Stacy Owens - None',3,'',10,1),(548,'2020-01-09 05:03:07.720809','AIe9_BGZuRKHeO1iYrcf4B001kE2T7uljME43098E-IoTUxkO9bSrgks9IZ5G8C2FkiFpN94eBrId4no0H7_9h71ji0tNHxai6zHvO6d7e0nEddwzkunbKg','Sharia Castillo - My son had a sprained wrist he had been complaining about for a few days. I decided to get it checked out and called SC. I spoke with Adell and he was excellent on the phone. He told',3,'',10,1),(549,'2020-01-09 08:03:05.921620','3272657195432704501','Texarkana',2,'[{\"changed\": {\"fields\": [\"Total review DB\"]}}]',8,1),(550,'2020-01-09 08:55:48.840809','47','no_comment - f\'Thank you so much, { name }! We appreciate your great feedback.\'',1,'[{\"added\": {}}]',11,1),(551,'2020-01-09 09:00:42.481643','47','no_comment - Thank you so much, %s! We appreciate your great feedback.',2,'[{\"changed\": {\"fields\": [\"Reply\"]}}]',11,1),(552,'2020-01-12 05:45:38.444911','AIe9_BGhYIk2KhOdF8fekWDvq8JU9_UD0M8TpysH2skFueMx1bAGk7FPZZf-XY2fyYqAyEyFtIcTGERIAfiTOg4txHfSlxwLMiDTvMOenvi40AaW_Mk7WdQ','Courtney Wetmore - None',3,'',10,1),(553,'2020-01-12 05:45:38.502489','AIe9_BG84YPnR8vhxeJfV_lAYVNisMw5_C2Tq2tBB6wpqZHKeiWGFcD3c94xKE3CDgccpClv9h6ZbMmaNpPdEM4iv5IoNoQ1qDg4V-vGRx34HRqPzfyij_Y','Gloria Banks - Doctor and staff were very friendly, professional and caring. There was no wait time',3,'',10,1),(554,'2020-01-12 05:45:38.562950','AIe9_BFmRFRFwJGRfUDOW8jG3rXn4z1IDx9fqk0Oev1zETY9yhbzgLDYI0KuN9XnX154KMxG77A5gXChimWJDehg6O7W_TKpGQwS2jhQm6n5Tu7xVUHMKus','Wanderson - I had a kidney stone emergency and quickly ran to the emergency room before the pain became unbearable. From the second I got there, the staff was incredible. They understood the urgency o',3,'',10,1),(555,'2020-01-12 05:45:38.623297','AIe9_BEHZ7lh7y1sP-UInhkpmlIpqE7PPIpOVBfp9qtIzTGAlEMu56ylTDCVN1JNXDBHRuAVhRMauUHC_io55GHB0H6nrs-09g_LkYQVoklmRVF5d66WpmE','LT Lawson - Very caring Staff. Service was timely. I went in with a severe tooth ache 🤕 that was causing unbearable pain. Thank you Dr. Castaneda and Nurse Irving. You guys are superstars.',3,'',10,1),(556,'2020-01-12 05:45:38.721818','AIe9_BF8X4EpR_fF6mwcYdso9awggNJyLmHnm1rdm8uttWSULmoOLJEFJphxTHfDRFy_pIHxxQOmXtR5CI6xxvM92rGzeO5ndDoVygltb8thahG4ah1XTsA','Blair Tyson - None',3,'',10,1),(557,'2020-01-12 05:45:38.782046','AIe9_BFMK6FB7k24ANEBV5CospTTxVDVSEP6LDub_O9eWK7YbkJKy6eK06FbClzcsp4rM3ayCm3euTRbBlBnYJconnd-3iPARlVycngFcTzJyGz_2ZxKA24','T Jackson - None',3,'',10,1),(558,'2020-01-12 05:45:38.842548','AIe9_BHR7p0hPy1flx1br0TYdEUBSmhY5Nneiq9CJ0jI7aSWYKfEg1amzpLE7m9pTpeUy58uiEqvACvxf-Vfu7d4Se-FZszXCiD-Q2hfdgGwBVjSk9eU95M','erykha\'s adventures Gomez - I came to this place and they were super good no waiting time and they check on me quick and I was off in about 1 hr the nurse and the doctor we\'re professional and alvean ',3,'',10,1),(559,'2020-01-12 05:45:38.902446','AIe9_BFmRFRFwJGRfUDOW8jG3rXn1kOTJDLh1U3EWiAFX06SqBp6bdwmo2CHS6REfWY6bHRc6Ob_fKRXwuBIsuU1jzg4tdzlOMkF-1LBeBkLi29cFDsB-i0','Alexandria Y - My father\'s nurse was Meredith and doctor Harjai and reception was Jocelyn were very pleasant and sweet while my dad was having a tough time with his issue 👍 Also super fast cause they ',3,'',10,1),(560,'2020-01-12 05:45:38.952089','AIe9_BFMK6FB7k24ANEBV5CospTTscf_bHJKr5jeQwm2XnX1Q8aA7oT8BUZxZLVUVHKukT5uZfFjl5fA007QwDm_2X925C_lBHfB-Apg5h2vhI4VKwO-vX4','Vivek singh - None',3,'',10,1),(561,'2020-01-12 05:45:39.001452','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMWyjezBRAE5EhgxMfryYPUKoBDJmf-Ve5ZuVFxgdE_38J1JAF2-2w8laW5IzSQChOcX7tIuC6fgyWYo9xxjI-sPKUdQI','Angela Mejia - They were very caring. The front desk lady, Ebony, was courteous and compassionate.',3,'',10,1),(562,'2020-01-12 05:45:39.061848','AIe9_BGhYIk2KhOdF8fekWDvq8JUuApryMKAbvZfJWGhAqWOzzhdpZeA_4Tk77mDND6ouXuh7MuubBwHKAlAspcZkJ2peLbJRwp4jpK_6r8PTcQA4sMG7UI','Hawraa Abdullah - The staff were very kind and the process went by quickly. It\'s a clean and comfortable environment that I would definitely recommend to anyone skeptical of this place. I\'m very pleas',3,'',10,1),(563,'2020-01-12 05:45:39.122177','AIe9_BF8X4EpR_fF6mwcYdso9awg5ThZtmvOwm7pSD0oczdYe70Onf4fk_83W7HRWv6YJ4oJBAuGGDd3gD2jH2mTjuEIaMElRplCfJ0tSF_UtN-gWgh_sU8','Irma Limas - Sindy took excellent care for us at the front desk. She was quick to enter is in the system and everyone was kind in their care for us. We really appreciate their care for us.',3,'',10,1),(564,'2020-01-12 05:45:39.182637','AIe9_BEAgUIalCkcXZnurOUpP4uABu_KhuTJxRpgTshARCFCyGHEpj7qop8PL8WE2WcSYZrU8Gt-sQQmrZq0SgRvjh3sUzMO6fgugcrn_J4js8TX_ZwuA7c','Lydia Clifton - The staff and Sindy treated us with excellent care. Everything was explained to us thoroughly and they took their time in reviewing our status.',3,'',10,1),(565,'2020-01-12 05:45:39.280946','AIe9_BEHZ7lh7y1sP-UInhkpmlIpA2yHOKBuMbLuZJjpS2CX7daoANircYcqcN-VyHW13bICmw578NDD9lO2V4vxvdBPl_gw8kwIkXPhHkwZ52maEyN2ib4','Anna M Garcia - The entire staff at The Heights branch took great care of us. Dr. Thomas was extremely thorough in her examination. Sindy got our paper work fast and into the room quickly. Gina and Di',3,'',10,1),(566,'2020-01-12 05:45:39.341628','AIe9_BEAgUIalCkcXZnurOUpP4uAJnpb1LIapbvbA3_fLIsM1ohThAECikmYeIGg_AEeOP-PDl8_OlgVPxigG7L7spLw1LHXSz_H74UuEbM5EaL0X1KmQCg','Chris Robertson - None',3,'',10,1),(567,'2020-01-12 05:45:39.401787','AIe9_BFmRFRFwJGRfUDOW8jG3rXnZri9b6Xn4NtwQZ9KVNM28nI32Cjx4gzB0KNDDPV9pNjmiEYhYu86hlXfuhPEAfFycpEWD4EQlN8THDPay0UJsqZgyLo','carolyn thomas - I had a 5 star experience.the care team was efficient and knowledgeable from the front desk all the way to the back. Alvean .A and Jocelyn. A where absolutely great. And the Doctor wa',3,'',10,1),(568,'2020-01-12 05:45:39.462297','AIe9_BGIy_plKfaZrItPyyQZNLvs-MeuubNW9_3xcpujCm8Fg63M1nsB-SsbY1pIQJpAfvDGUEg6bsReSME3VSYCmu1g3qC1ErdadzP9Onqbpiq7LltZaPA','Neinah Cloud - Alvean and Jocelyn are really great and the service speedy with no long wait. Love it',3,'',10,1),(569,'2020-01-12 05:45:39.522572','AIe9_BFL0OZrFaHgoJtqifT1GHrIxsg1jWM58vS4xvvV2c64B6ib7jvZUDvD6nsU267Fifi-6oe4a92tc0wUYtf6WhpH421_3LpPOnl3yGaKyKlZoUUpcGM','Sajdah Habeeb - This was my first visit to Signature Care and I would absolutely recommend this facility to everyone in the area. Scott and Laura were very kind and accommodating and Dr. Patel is so s',3,'',10,1),(570,'2020-01-12 05:45:39.582883','AIe9_BGZuRKHeO1iYrcf4B001kE2mDa-FgTlm9-ogznzDSwpBjhOZbW87mwzHbORO6RbDvX3k3GMCRRo-Ml7LIvKlmLfMNxcxdUtB4hzQIfdctWrsUli28o','Ada Mansaku - Very clean and friendly, and I had the best experience!',3,'',10,1),(571,'2020-01-12 05:45:39.643246','AIe9_BHAFUK2tNBZL25dLQ0jVdh09HXy1KzEdypzKdsFKGXpM9V5R_TAN4WL8cZujC4tqMdWTxNwqt8uHpKcPz3W9okZ5KDw_lxkQVJJT4TsNcAnmMz6Czo','Misty Alvarado - This place is fantastic! As soon as I walked in the door everyone made me feel at ease! Jocelyn A., Alvean A., Kelly L., and Jordan N are awesome! I was in and out so quick too and',3,'',10,1),(572,'2020-01-12 05:45:39.703697','AIe9_BFLWlqwz3qGBnCfbAsLD0lVr5GrtT79sXAegEcnb_bWdIWxANBLaCs7s1s5USkpRYxm6zBHJtYMHZzNSRX3cLuUwoX3fK9tRL7TdRJfQxdhctzsdBg','Jameson2018 Rhodesian - The entire staff from Katie, Christine, Dr. Elsbacker, and Townes were incredibly helpful. Helped ease my mind in regards to aggravated symptoms I was having from the flu.',3,'',10,1),(573,'2020-01-12 05:45:39.764080','AIe9_BFFcAiX3_kRXfnRLgvL31HrrM133l6zeERpiXu3UIEP409fw7VtaE6YESxpWgjZLDlh2F7keJ4Ashq4Vhvy7EuZF2_86n0pUbyQ70cM6dTSM35218o','Tiffany Siguenza - The staff was great!! Highly recommend. Very attentive and outgoing staff.',3,'',10,1),(574,'2020-01-12 05:46:03.686665','AIe9_BGZuRKHeO1iYrcf4B001kE2T7uljME43098E-IoTUxkO9bSrgks9IZ5G8C2FkiFpN94eBrId4no0H7_9h71ji0tNHxai6zHvO6d7e0nEddwzkunbKg','Sharia Castillo - My son had a sprained wrist he had been complaining about for a few days. I decided to get it checked out and called SC. I spoke with Adell and he was excellent on the phone. He told',3,'',10,1),(575,'2020-01-12 10:23:38.489717','48','no_comment - Thanks for the 5 star review%s!',1,'[{\"added\": {}}]',11,1),(576,'2020-01-12 10:24:47.091887','49','no_comment - Thank you for the five-star rating%s! We appreciate your feedback.',1,'[{\"added\": {}}]',11,1),(577,'2020-01-12 10:25:58.734978','50','no_comment - Thank you so much%s for your great rating!',1,'[{\"added\": {}}]',11,1),(578,'2020-01-12 10:26:31.299344','51','no_comment - We appreciate the five-star rating%s!',1,'[{\"added\": {}}]',11,1),(579,'2020-01-12 10:28:03.197600','52','no_comment - Thank you for the five-star rating, Terri. We appreciate it.',1,'[{\"added\": {}}]',11,1),(580,'2020-01-12 10:29:14.639026','53','no_comment - Thank you so much for your feedback%s! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',1,'[{\"added\": {}}]',11,1),(581,'2020-01-12 10:39:59.912529','54','no_comment - Thank you%s for your five star review and for trusting us with your care!',1,'[{\"added\": {}}]',11,1),(582,'2020-01-12 10:40:36.250614','55','no_comment - Thank you%s for the 5 star review. We are glad you had a good experience. Feel Better!',1,'[{\"added\": {}}]',11,1),(583,'2020-01-12 10:42:02.828533','56','no_comment - Thank you for the five-star rating%s. We appreciate the feedback, and appreciate you choosing SignatureCare.',1,'[{\"added\": {}}]',11,1),(584,'2020-01-12 10:43:31.020212','57','no_comment - Thank you for the great review%s! We appreciate your positive feedback about Neighbors Emergency Center. We hope you are feeling better.',1,'[{\"added\": {}}]',11,1),(585,'2020-01-12 12:08:20.261766','52','no_comment - Thank you for the five-star rating%s. We appreciate it.',2,'[{\"changed\": {\"fields\": [\"Reply\"]}}]',11,1),(586,'2020-01-13 05:45:03.124235','AIe9_BHR7p0hPy1flx1br0TYdEUBdfKOaC9cpkZt3sPo4L7vv3uEcbMEY1NKcWTxEG_rkeXb_cwtzWaSjYYIEW8V6eZyrKTY2OPoYPTEHjYEp0EabrCakuk','Ashley yzaguirre - I had a wonderful experience. I was immediately greeted by Tatiana at the front desk and I didn’t wait very long to be seen. The staff was very attentive. Nicole and Brandon made su',3,'',10,1),(587,'2020-01-13 05:45:03.175661','AIe9_BGvUJd9etQojwpjZIMsiFnedM19xDy78yDl3QvuyUck41wUhSrMUBUIkOiuRw73eLVjvvGmvRdYYc-J4KfxCy2LNz_XcrekyGGupbnwsczUe1NWpbI','evelyn gonzalez - Nicole was very attentive to all our needs',3,'',10,1),(588,'2020-01-13 05:45:03.224896','AIe9_BGhYIk2KhOdF8fekWDvq8JUxhYF3C-bZI-dTpUQbQCJVF7QITVkSyAMVidHN-w8GnTXqN-0YZqnGKxHdNpuk_-S_JkvWOwmfSgMZNCD9snjkry8w3c','Brenda Gonzalez - Very good service our nurse Nicole was very patient with my father',3,'',10,1),(589,'2020-01-13 05:45:03.273603','AIe9_BFL0OZrFaHgoJtqifT1GHrIVd_ywv8H7wCaT8gAnTDZ7oeBob7aaKkLvjkya7Amt28IFDpux2oRJDBUw13CXKJzEINK3_y2TPXiHG5Zi_1U2TQFV6w','Kimberly Bonner - Staff was extremely caring will be using them again',3,'',10,1),(590,'2020-01-13 05:45:03.323408','AIe9_BF8X4EpR_fF6mwcYdso9awg5VoxP6NZ0EQYJLvmpThZnKwzUnC-Gakoano2cuOjYFyoYmAmyWGTyYAUWwtLK6sx1KKQvRLr8GfnNQpqUEPIkJW5z4M','April Moon - The staff and doctors are wonderful! Fast service!',3,'',10,1),(591,'2020-01-13 05:45:03.372773','AIe9_BEV1VP1woYvuPRixSBHlWg4KjaOU-RNW2v4CrHx6lb1dpalRZN5RkLeL-IyEGdDZqYne_a_Cl-whIooXEcWeOSCANYdNzgLGszGeq8RwuWtEnzQPTg','Lily Mejia - I\'ve been here a few times and every time i come they are always so helpful and kind with my children.\n\nToday Dr.Nguyen was fast in his diagnosis of my sons strep throat and flu virus. Ot',3,'',10,1),(592,'2020-01-13 05:45:03.421958','AIe9_BGErQpX2pRNZrXBy5NOsH0e3FUJ0_YJCp6exS5vu0TMLudbWOPMC23ll72rK8ruoZqxcH0OdHt9tU1sOCsxawClpu3BpO22oFRligXNCCXwxPMZsVQ','Kyla Solomon-Hawkins - I had the pleasure of having Nurse Fanny, Nurse Eda, and Dr. Wang taking care of me. They were all so kind and excellent at what they do. They treated me like a real human being',3,'',10,1),(593,'2020-01-13 05:45:03.471401','AIe9_BFmRFRFwJGRfUDOW8jG3rXnxCtgyPFVMsd-52cdEQE8xqh4bbW9OUCQJmOIgz44IMv8dlil2iP2KdWLyJ7_qZEk3_KZ39kXK0OEPIAJ_674AzB0lak','Alex Tran - Nurse Fanny, Nurse Eda, and Dr. Wang were excellent to us. They were all very warm, welcoming, accommodating, and addressed every single one of our concerns, taking the time to carefully e',3,'',10,1),(594,'2020-01-13 05:45:03.520598','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ji4S3hABzD9-pfMNFfYzV0nWydrXPyJ6hUVLQeSDDy9F1LnI89gijjOLWzDjSGETHPpkndODpmTyGDQwEG2todx_JG4','JA Guardado - None',3,'',10,1),(595,'2020-01-13 05:45:03.569756','AIe9_BFmRFRFwJGRfUDOW8jG3rXnN-s-jFPci846b8AUTdK7Fq_EpIh-2XrSPX6JwjP8MJ6NU7fQEAKmvZNe-8Aqb6hMvZAaW-dvVJSoEJPh8uTJgbzsAK8','Kaylee Clyburn - My little man was sick and after my experience here a while back, we decided to bring him here. the doctors were great as always, the front staff is so welcoming and everything is alw',3,'',10,1),(596,'2020-01-13 05:45:03.619012','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YHOTpsKSA0-MBOXMSzqZBPtgNnbK6sZ-rsgnResiC_owB4tdkjmLITJLMkN6nY1klgSZvSG-zpwjboX7Gm9L3jOkoIg','Jb Wright - None',3,'',10,1),(597,'2020-01-13 05:45:03.668356','AIe9_BG84YPnR8vhxeJfV_lAYVNi5qjCk-_1vkIUeH_NxB3LSWA0xHQQt9S_U4XdFYRtm-RN3GnHn6SUYH3FkqckQxR6u8ZspTG7RMAaIfz1AYOr0Y_xnqw','James Jackson - Dr Do ,Alvean , jocelyn Great service',3,'',10,1),(598,'2020-01-13 05:45:03.717514','AIe9_BFqh_zr355jzGaEpH7666zchGyOJfeA6T4jOBL7Uza44dfo5VDTASR4Z76atlEPEdzQfH4t1HpewTap4-psTDu17AJtsuMMXtsTBi4bQs6s7DknTI8','Reynaud Jackson - Overall great experience Jocelyn at the front desk was supper nice. Alvean and Jose has a really cool vibe and Dr. Do gave off good energy.',3,'',10,1),(599,'2020-01-13 05:45:03.766741','AIe9_BGErQpX2pRNZrXBy5NOsH0eYMLj9ybBViYn3DO38Eb7gflrVWHpksPqS_csN6m1mDhgzQ23pC3N0iia-XRvGwwS3A1zEMcEIyXAU91FNiN-Bq6C8hc','Apolinar A - Great everyone took very good care of my grandson Thank you, Dr. Do, Alvean A and Jocelyn A.',3,'',10,1),(600,'2020-01-13 05:45:03.816112','AIe9_BEV1VP1woYvuPRixSBHlWg46tv471RUmf7mufzUy8hmeAx1ZuRtlVESipZe9y-iwjSdnLrFGnNl-zIY2VlqqHA0Ypf21JVoG6Rh53NYYpY4p0rCRU0','Kendra Cortez - None',3,'',10,1),(601,'2020-01-13 05:45:03.865447','AIe9_BGErQpX2pRNZrXBy5NOsH0eW7uUnWgm67qnwD5yMRC6x0M6YZdW1ak_WC4-UVNdhXM7DfH8d8t214RQ74VTZ1ctVrLyHVj-ek0M25mwVP9xun2zKZY','Timothy Turner - Omg the team at erCare24 Bellair location is awesome fast and great customer service',3,'',10,1),(602,'2020-01-13 05:45:03.914698','AIe9_BEuFX7PcAP2nNY_ju84FoFSTTpzChjyLw1M6Rqlxc8ZDFoNf-vNdlhOwhhzoH0bHBdUFei12AZWfO66LwC4joO3nesIvwy1b846Id4APiclJaWVAv4','Samantha Sampilo - Johnny is such an excellent nurse. He\'s very attentive to my concerns and needs. He\'s the best!',3,'',10,1),(603,'2020-01-13 05:45:03.963994','AIe9_BH-PZCNGatIuVf9MEYiysTxgqUD2Z_K8zz59ZVsIy152yKIIbFPlvweUQdvsnOMF4xUiITtEfS3P2u_xoi80kvl8ylhgm6F5SBSTtuGQzTlXjcm7GE','Errolynn Zetar - Nurse Alvean, receptionist Jocelyn and Dr Do are amazing!! This was my first visit and everyone worked hard to make me comfortable. They were knowledgeable and explained everything. \n',3,'',10,1),(604,'2020-01-13 05:45:04.013263','AIe9_BExcxslmE1rr7n5jMcadSKe6pigLy2i8LdFLS1g18z3ba9Gaa528JZmS_5WP97zhTq79tDF1cyKdQN33r1xnVzAH2IvwxbIFMdUWP1Wrm9YIKZqevM','JK Hernandez - Always a pleasant experience at Signature Care. The staff is very knowledgeable and quick. I don\'t enjoy going to the ER but it is nice to know that this one exists if I need it.',3,'',10,1),(605,'2020-01-13 05:45:04.185970','AIe9_BHR7p0hPy1flx1br0TYdEUB4xyxoLFfJdb446SWj_TtzikBt0M76ve5_-IE2nr3mCm1FOmEkHOcprcmByxc3SaOMxkK1lACmsO6R05QY88JJ3MEa0g','rubi cabrera - There was no wait at all they took us in right away. They took really good care of us and treated us very well. Thank you Sindy at the reception area made it really easy to sign in! Als',3,'',10,1),(606,'2020-01-13 05:45:04.333021','AIe9_BFhqAtkXvUqdYNeMuBBGjaAsFddy3MKSlUA8rO8oka9huus73jG5OAvhGzFRIKzmT5Qx47HLfdvUBTzmBeOlg0DgIov_cvUgc4bZZFmXWTZ6neGAng','Micaela Truxillo - I went into this facility with work related injury I literally only spent maybe 30 minutes here. Service was greatttttt very quick check In with Jocelyn A. Was amazing she was sooo ',3,'',10,1),(607,'2020-01-13 05:45:04.382996','AIe9_BGZuRKHeO1iYrcf4B001kE2ruKhIA2hikCGLbrF4XjYUOwkBi044lxH7Y3P3-U-hbVsZg0E-VA7DS5-jw94rqG0MZbBN6LhkpJkroncR-D6FsNPeJU','Ekaterini Montano - Everyone was amazing!!! Super friendly and helpful! Loved my experience from the receptionist Jocelyn A. To the nurse Alvear A. To the rad tech Christopher W. And tech Brian. Thank',3,'',10,1),(608,'2020-01-13 05:45:04.432130','AIe9_BHAFUK2tNBZL25dLQ0jVdh0r4VM2E-AyQMEapJaAHm7ZVERktXHpjbrMHKqKjOL--qRZWpjWMbcSg_MvHKO645InslrbTHkboc4QhJGon_3n0Y2hfU','Reina Franco - None',3,'',10,1),(609,'2020-01-13 05:45:04.481360','AIe9_BH3gZxYpIxBZcqAOO5HuBVkQItes7tpafAktygeiLTlPGQQSalaR-SJva_AeDm6FWrlsO-KPnBCxBuLdR1voVVEbgKaI2fwc_Fzo94XXCXtvbXSh1k','Brandon Morse - None',3,'',10,1),(610,'2020-01-13 05:45:04.530687','AIe9_BFhqAtkXvUqdYNeMuBBGjaABlPaZ-UoZYylgUZhCKu-BOTTEY4SfnzZ_w1YxHy5ag7veE0F7vwhonOBmABsquMSOCReLXagpaE1NVXLXQYvzlUZ26I','Graveyard Sweets - My husband fell and sliced his finger open. It wasn\'t super bad but still needed stitches. Everyone was super friendly and tried to make us feel better from a bad situation. They ke',3,'',10,1),(611,'2020-01-13 05:45:04.580060','AIe9_BHZM2k_MpOhRgkb8w5Bn_ur2N2QIxpIKh6DK2Ru_goDa1rNKBlnvyPKdpNGffIK97GxC-XEa02_GhgtkSTZakXJoI4xDfCD99dEkI9c-ZHYZ4vC1P0','Mariana Martinez - Very clean and the staff is very nice. Thank you fir taking care of me. Facility clean and comfy. Went at 1am and they received me without hesitation',3,'',10,1),(612,'2020-01-13 05:45:04.678553','AIe9_BGZuRKHeO1iYrcf4B001kE2qicRWgKbq2d_R3Yzy5LptpK6vCQQNF0FhKeLPX4TNcJR2eDCg9SeWz9jxu1_KKGQXeYu5gmzpAbB1aLqrbxvoGwYqRU','bleach nuunki - None',3,'',10,1),(613,'2020-01-13 05:45:04.727714','AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sBG03UJvjXBQe-jR_6yutWjEI-DCJhIjHz_257TitwmX2-rHEJvD1U71PoZBFSMmqRkCeCjiFHf_POVG4jAgcp95JkTc','Joshua M M - We were greeted by Rebecca, with wonderful pace and ease. Stephanie helped us to our rooms. Gabe helped us out alot with calming down. Dr. Bare, diagnosed us and helped us through our pre',3,'',10,1),(614,'2020-01-13 05:45:04.777170','AIe9_BEV1VP1woYvuPRixSBHlWg4yGRVd8ZgTqX3XYlznYDbGmjyKV-quVjvBYACVYy_psNJghnMmWQiFBSN7UoGAyCsjtFTSDxF-aqj7vMe9B-heTNQf7E','Barbara Okorafor - Amy, Dr Dang, Dion, Josh T and Erika were every welcoming and was treated by our facility unirse evryrhkng was nice',3,'',10,1),(615,'2020-01-13 05:45:04.837375','AIe9_BHkHJRvhG8n5BjqdcMSKR_FaMq6W6qS3-VngYBxeVGOgDWPehmKn9_-RwX9b_7zScwwBQyac9wCyC79-Bf7UOc93odKSZxW-3Q2vTxK71N1mVCX0IA','Emily Catalan - The staff have been nothing but sweet and nice during my stay! They even laughed at my lame nervous jokes, so very much appreciated and cared for my well being !',3,'',10,1),(616,'2020-01-13 05:45:04.897926','AIe9_BFL0OZrFaHgoJtqifT1GHrISZ0BlLGlVsOyEKOtHcZpQtT8BjO8_PQzBKC8MGaq8NHjjp30eylpFxRZUudOjZ1wCs8ZuXY4_GILtGtqKFDTTcWJRyg','Triana Fontecha - Fast! I was in and out. Dr. He and staff are amazing. ❤',3,'',10,1),(617,'2020-01-13 05:45:04.958221','AIe9_BExcxslmE1rr7n5jMcadSKe_DRUyrgDVtRe52Seq0NB8wf64UCmNfwEI_xZbL-6o-iieoIjQ9-oX0Lqi2GQn85HYIgpa6CYX6_C77X5fjmTRuKHZRY','keasha collins - Amy and josh T, dion, josh M helped me out very well. They were very patient and determined that I was seen today. Thank you all for the great service.',3,'',10,1),(618,'2020-01-13 05:45:05.008164','AIe9_BGvUJd9etQojwpjZIMsiFneDpy-f71qG77JvwBgKISZLWBr1SjN_TAG4y8sPKOOIL-ab4x7N9WF4ITsy-7JKIjISVS3V8JiRxdqvSYm9j2MUP_HobY','David Paz - The staff at Signature Care in Midland was extremely gracious treating my 5 year old daughter. As kids will do my little girl got scared and panicky and threw a pretty good fit but they we',3,'',10,1),(619,'2020-01-13 05:45:05.067895','AIe9_BH3gZxYpIxBZcqAOO5HuBVkQF-8WjbuT-2el4jFccaP7udJBCQaM-hf_IwGlqSY5xDeZD6k84Ib_qq6S41QMdZ_oGp-ynpCSF45MxLXV7LLAqMENdE','Heather Schrock - My fiancé JD Carrera was the patient in need of medical attention and we are from out of town. We were not familiar with the Houston area and stumbled upon the Signature Care Emergen',3,'',10,1),(620,'2020-01-13 05:45:05.166506','AIe9_BEV1VP1woYvuPRixSBHlWg4V3z6jNaFPSM4B3Z9lVrmqHXxSzM3FMWvQeQZAFmb2hkGuU6L0fDO1fExHMfu5rdoKhrEEHADOvpiswKiXL_SnejITFA','Mark Camacho - When I first walked in the front desk greeted me with a warm welcome. Angelina helped me\nwith the paper work and had a great spirit. My nurse Seleni was one of a kind and was very atten',3,'',10,1),(621,'2020-01-13 05:45:05.226721','AIe9_BFmRFRFwJGRfUDOW8jG3rXnv6ykCwHmVSVRXwdrkl8ahLGT2pD-SiQmXWWjCD3LvVmxwa93jZocSEdTJ7T1qcIHAw36QBaWMrUPaWwbXKtsuMs2BJg','Reyna Colejio - Great job by the team',3,'',10,1),(622,'2020-01-13 05:45:05.287303','AIe9_BGvUJd9etQojwpjZIMsiFneii-nvBQGX4QKPiUnQiBSY72LDnJeLp0s03F7Z213l-558hBmLJu8Hz727VRBckLFlJ8a4ytblYmjBPXCxVcHM8lFvFg','Juan Colejio - Great staff no wait Chris did a great job!!!!',3,'',10,1),(623,'2020-01-13 05:45:05.347454','AIe9_BHVBnWjBJvk55vq2QEm0wl-WjmZ4e_3k-cgFs5n9YvHgS99bdwTq6YGVZ61mxhsftQ3KBHJsYdbiopp7kzbM6zREjWLPOokgViwMJZU7whGBFCN588','Hunter Wilson - I came in yesterday for a truly awful pain in my lower back - I could barely walk or bend my waist when I arrived. From the second I limped in I could tell that the people there truly ',3,'',10,1),(624,'2020-01-13 05:45:05.407405','AIe9_BG_KYPQZrI7j-moUldshgc1rxEOW_oxcOFcL2RjzIKQK0aJ3Ohahdw5Skk19HWAUrtWmI6KNNuQGgxQaKW7YRZkCrkvuX6qQYnxWsYNEDVHUpRGVT0','Sandra Diaz - None',3,'',10,1),(625,'2020-01-13 05:45:05.457341','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG23rS0MHMWKMB8_fOUeOaFA-0OhuA68hDmlgVDPJ-O6jwoc4hLaNX2c_unPjFdME9XGuXj23tRZPJyk6godT4QDd_Wu7I','Alejandra Diaz - None',3,'',10,1),(626,'2020-01-13 05:45:05.517583','AIe9_BGErQpX2pRNZrXBy5NOsH0es--pBKtTGpmXZtdilOWznGvRSCxAwW7iHmJFe-79YVT8pBlAgQKABIzeBRc6UX0jCredMjV4AAJL3RrD0FqtEpI_pcQ','Moe Brooks - After long back and forth discussing the benefits of attending an urgent care with my mother for her very bad cough and aches, we ended up at ERCare in the Heights. I was very pleased to ',3,'',10,1),(627,'2020-01-13 05:45:05.578062','AIe9_BFhqAtkXvUqdYNeMuBBGjaA3NRrMRf2_ElPg4oMN4lckn4umgxDIinmeJ999lOJZOeu9NIo97gVC6SNISDl6g7FnHfgVeAqgNaO0NxKQhdncMvQUtc','Christy Hicks - The best experience I ever had loved it',3,'',10,1),(628,'2020-01-13 05:45:05.638484','AIe9_BExcxslmE1rr7n5jMcadSKeqcDjbwZDXYzPOfr6GxyVg8zjiBwDkRfCFYKQdJKyavQSYeJeTa7ivuQZZy6B1fvwq6R_N-KabWQictXdnvC_M20gTVk','Debbie Ashford - I took my husband last night to Signature Care and the care he received was top notch! The registration with Tobie and all the questions she answered to quickly getting us into a room',3,'',10,1),(629,'2020-01-13 05:45:05.698760','AIe9_BGErQpX2pRNZrXBy5NOsH0e4lHS7R_9XJOSKpp9xSNt7OuHzneCwRGXpeI5pHG50mDfa4m5fLz0bGRdXlthgtmkX4Am-mlgYfmZFLhX2len8DjjcwY','Alex Gonzalez - Amazing Service ! \nFirst time here and I felt like home,\nJust like my mother would take care of me \nNurse Selina and Doctor Wang Did an amazing job, way beyond !!',3,'',10,1),(630,'2020-01-13 05:45:05.759102','AIe9_BGErQpX2pRNZrXBy5NOsH0eA_a0PLjelnKWs26GvWVf0GYto_HwTvtG0RHpBvpbLofWfMfzsciWILRTOg2k99PeXZKo8igZ6RKctb_mJGuofixBI1E','Lu Perrilloux - Great experience I saw the doctor in no time. I highly recommend this place for your emergencies.',3,'',10,1),(631,'2020-01-13 05:45:05.819494','AIe9_BHR7p0hPy1flx1br0TYdEUBIW9Zchm-LmxoRoPBLdeGGz8ZhCX4a3juGtRf9uPsaNqMIqDxGy9Y-pYJuHWpWNs3kQcLJSGAiRxTGqmaw2KzF1--0Qk','Komla Richard Hemedzo - Fast service',3,'',10,1),(632,'2020-01-13 05:45:05.879942','AIe9_BGErQpX2pRNZrXBy5NOsH0eCgdsXGY2Yg0VGHVMNWFvDmmpAJKLHjLNJt09JFRyUwbqz6gOshPibs-X3hZJuqPqTHxsqQBZ4hyxYWRVKYFRz3M_bjw','Pathways Of Hope - The staff is extraordinarily friendly! Fast and accurate. You leave with a plan of action to remain healthy.',3,'',10,1),(633,'2020-01-13 05:45:05.940333','AIe9_BG84YPnR8vhxeJfV_lAYVNibhaN_RHqbGb_37FByF9QsvvTCsIW7NbaPuWa9N7QDpN4uBKxwod5AI1zi9dVQCaB0s1pt4mqqm-LIPdIw8_w0HSbt-M','Stella Flores - I love going to this ER for fast care... They saw me immediately an got me going back to good health... Would definitely recommend signature care.',3,'',10,1),(634,'2020-01-13 05:45:06.000887','AIe9_BHVBnWjBJvk55vq2QEm0wl-i3x3Uff83U5u0xHMWEOgtueRvo9U4spsSnULhouMVy5goPpMLw1CHVhvRFP3dharSmwf-uzcYZSWTsmEfexLHaN8ixs','stephanie oguchi - Everyone was very accommodating and service oriented. I was able to get in and get out quickly!',3,'',10,1),(635,'2020-01-13 05:45:06.061206','AIe9_BG84YPnR8vhxeJfV_lAYVNiYvv5QZoSRes8SJRxglIBXzJ0soeACvjhPfo7icmImMS7thAtNMUW26pTjaBle98NVxtJWjBDoo1t69j8VpY5yRzVyvc','Lauren Graff - Brought my boy friend’s brother here late at night and Rondi, Miguel, and Dr. Lim took good care of us!',3,'',10,1),(636,'2020-01-13 05:45:06.121601','AIe9_BFmRFRFwJGRfUDOW8jG3rXn4C1vI3RihXG_30NXbBGca_7O34l91ZOuoYCNT-ia_6IFeUR_YTIFecjNPEMsHYoqi7rx83IsU_sTNZ4BLxAcGnhG8II','Lindsay Ogden - We were at the Midland Memorial ER Monday for my daughter- 2 hour wait. My husband called here and they said they had no wait. We were about to leave and as we were getting up, we got ',3,'',10,1),(637,'2020-01-13 05:45:06.181967','AIe9_BFhqAtkXvUqdYNeMuBBGjaALbBITC41LHVp6RnYiyo_eN7ZEPqkvaXOg-KlYivxNUqiMi-A1d4OfzqVfnUylJrDdTi4LJSdc02kpdC9hv8YOxfQofI','Melissa Lopez - It was fast, professional ataff.',3,'',10,1),(638,'2020-01-13 05:45:06.280391','AIe9_BG84YPnR8vhxeJfV_lAYVNigjvMUIoAnGb1dcqS0wK3JD_q6a6eE7oeLDLMbBgsF3msXCFwUaE8Z6mNPwgaK6_yl4Q6SMmCeMYoRYZDVcQqDkptZK8','Kristin Velladao - Excellent experience! Zero wait time, we were seen immediately. Everyone was super professional and nice. Special thanks to Dr. Jaber, Josh and Elizabeth. Elizabeth was super welcom',3,'',10,1),(639,'2020-01-13 05:45:06.340988','AIe9_BGTHfLB7ZAtvlQmidaL-PvDTF_Msw4xm3nsubIKnaVi0-xuo3E_hrjOC9VTXH-8rcHbh9qm1k-QoPcjfj8xyy6KoQc0iqyBsuNu46pwtHWNgbvueG8','Edward Brown - Very nice place Miss Brenda looked out for us',3,'',10,1),(640,'2020-01-13 05:45:06.401122','AIe9_BFLHEJ8hYqd4VCbbc-EtvgM1vDlPjR2zWlVrloNaZ60mHcNCtO1iTZaypCW4NI7pdMIdaPgoJb_b4-WgOnkavk6FznApQOVFWqUYBu2vnXTgum-igs','Jose Olavarrieta - Great people that work here, took care of me really fast. \n\nRN: Irving and catherine\nER Tech: thelma\nRAD Tech: holly\nRegistration: veronica\nDoctor: A. Patel',3,'',10,1),(641,'2020-01-13 05:45:06.460970','AIe9_BGTHfLB7ZAtvlQmidaL-PvDnZXaP11je_17WUgiKv73_kZu__YoUiPl9L-xGVMVUmDhN8ZJk3wvC1beH8Z4eU-T8CqviUxSFDh1uufHFedMdv-thTA','Samuel Klepper - I came in for a severe infection in my mouth and I was greeted by Tatiana at the front desk who was just wonderful. Then I was taken inside by Christine the nurse who was also so wond',3,'',10,1),(642,'2020-01-13 05:45:06.510877','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMPww7QywrBg2jMTKu2UOFnVFjqtSolbgWWcAqgM6VKo2U1q4C_0PG6tvTqTENUSX9t5HQqBfXDipeRLoGhrdgUv9oX8k','Victoria Gomez - We came in for my boyfriends severe infection in his mouth and we were greeted by Tatiana at the front desk who was just wonderful. Then we were taken inside by Christine the nurse wh',3,'',10,1),(643,'2020-01-13 05:45:06.571403','AIe9_BFDvtvCY6mNmVUeGBiBb7S5pp3bqe9Ag4YzhoAYICsVzFwU3mE0TIEzjTx0laV65_r5VRrKNYKngYV4LUJueIvcX3Bbzd_eygDyThx1PH3LVnxf1NE','George Jr - The staff was great. They took care of my son Ebony was really helpful. The Dr was very patient. Dania was patient whit him.',3,'',10,1),(644,'2020-01-13 05:45:06.631173','AIe9_BEV1VP1woYvuPRixSBHlWg4xv-yv00ys7ZETMmPt7SwlXvP5Y04Pu7l8x8JRSRJ5KoIgtTiwesGwX0f8URt0LPnnLV-w26VCmAAurD8HbXT53j0Gt8','chase - This ER claims they “have a right” to charge whatever they want, and doesn’t tell you until months after the visit. Charged me over $3000 for a couple numbing shots and xrays.',3,'',10,1),(645,'2020-01-13 05:45:06.779308','AIe9_BHVBnWjBJvk55vq2QEm0wl-vdDU5v36KJFDkzoT8UzoaxyN5jnVr_vDV_RrmS3fi8qqL8VaywHex6v8wR2NVpwliMCOIT1-4kiZ-NzpgPCwqhQHwDw','Tatyana Campbell - I really enjoy coming here the staff is very quick to help you and meet your needs. I highly recommend this place. The service I receive is always excellent.',3,'',10,1),(646,'2020-01-13 05:45:06.839761','AIe9_BHR7p0hPy1flx1br0TYdEUBryK_HOhks5sQ_clkc3vWJBsWZTPBXELgxmdNVtFkUSVsrhHOp7I-9yKoqhaIlPhgQD8rxyYrGbJDMdFuj8XHBSEncZI','Darveon Trahan - Josh the tech and Josh the nurse are amazing at what they do. They answered all the questions in detail and made sure we understood everything before leaving',3,'',10,1),(647,'2020-01-13 05:45:06.900209','AIe9_BGhYIk2KhOdF8fekWDvq8JU_6zBbHgMKzV_uSN9VfaXCxhOY_JwvPAP3eWuIJgelPcXcchir9xJLSeZ8KoR4i80uAI7WLXEa_flIPbk2NEe0T7DgIk','Dania Banegas - None',3,'',10,1),(648,'2020-01-13 05:45:06.960685','AIe9_BHkHJRvhG8n5BjqdcMSKR_FYCPGHZYy_6nP1lvSYfjxgeiXsOQiIoDz72K-Y13FedQfL7HDg6HbQa-1xTqGMhV3JGCAEHT57_bnIghp2c_9nrNEFIo','Sarah Sarah - I\'m indigent with a fixed income and was unable to pay, yet they still helped me with my heart issue. Thank you for everything.',3,'',10,1),(649,'2020-01-13 05:45:07.045436','AIe9_BFMK6FB7k24ANEBV5CospTTtoeh9sNZU_wHrf1X9jWqfZhwgEq-uN2uI7-nyq-lv9sB5KkRK0-2diKjspfrIzd4WPczEBT0CJvxsnlIM9e9eimnaRM','Prudence Gruss - I love Dr He and the staff. This is my second visit and once again it was quick and easy and I feel better already. I’m glad it’s in our neighborhood. Thank you',3,'',10,1),(650,'2020-01-13 05:45:07.152687','AIe9_BGhYIk2KhOdF8fekWDvq8JUr1sb8B4qfWQKrI5Euj18O0KiHpl8TXb1a0BlQkizlTj_oZQO2DrqCDnZTqTEyjHYKUmq-ZbQyNhtPYa9KAQvE71-2vE','Mindy Wilson - This place is fast and friendly Dr Was knowledgable and easy to talk to will definitely use them again should another problem arise and my Nurse Kaiti was amazing',3,'',10,1),(651,'2020-01-13 05:45:07.317385','AIe9_BFL0OZrFaHgoJtqifT1GHrIQC8WFYOOgO9Dc1-i0oDDb8o679uqrjxW3bEo9pAI_f7LubGTgI2VgBZNQSktArhEgKQ33zJCzhJzmoaBTnOcbcJLs-U','Irem Fidanci - First time they was helpful but when I was have pain they said you have to leave the room and they said they have to clean room. That was so rude and unprofessional!!',3,'',10,1),(652,'2020-01-13 05:45:07.415687','AIe9_BFmRFRFwJGRfUDOW8jG3rXnmWwej_NYiu4iBHh3LaT667namFy2UkcaEPuzEPlb33NpAAR3v73jfMfg0tirak_2lYp5xDVq-_ELf4fJzqW4P9szdu8','Christy Ta - Everyone was very kind and knowledgeable. The facilities were incredibly clean. We were seen very quickly.',3,'',10,1),(653,'2020-01-13 05:45:07.466564','AIe9_BF8X4EpR_fF6mwcYdso9awgVuMAyJaUSVcT7hHbeMQpSlikvoeYa4NmpmJoDF---AsTd-Cv1w7DNM31RhWA4PQQV0hR1JiRQ5cLI74y6ocoSZ-qkGA','Tre\'uvon Simpson - The staff here was caring and awesome! Kristina the nurse was so great!',3,'',10,1),(654,'2020-01-13 05:45:07.524697','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2q9l1kPjBGCnvEWWkeoY5AkXOsXNVcUBYzjrhnHL4P9kWrl4TxFBzOKN3WV1sCHi2uVXMEPp6SZcha67Bfq3n-WIBATM','brittney fletcher - None',3,'',10,1),(655,'2020-01-13 05:45:07.574461','AIe9_BHAFUK2tNBZL25dLQ0jVdh0zJ6WywV_rVP8CHRzd-QGTGkLzNnOODo-_e5neuX7xVCCA6ZnUio_XFpEZIODUOZvE2oiwoJkk9posbtciFyxxhXNwX0','Marja Lappalainen - This place took great care of me, my nurse Kristina was great!',3,'',10,1),(656,'2020-01-13 05:45:07.623907','AIe9_BGIy_plKfaZrItPyyQZNLvs1q58nAP2xLRGXlggMnO5HuAB747AWJfpInTEHyjKYsaA0iRBSstSPR7IAzPbix2Cz9eTGhMbK1gu90glH8mr9MLQy3w','alkaline water - Great service Kristina was wonderful',3,'',10,1),(657,'2020-01-13 05:45:07.684232','AIe9_BEUgL1r3GxZ6pSpn17DD2M7SQBbTk1XIU4SS4syeMWmkpboj2t-C6g1jbM1errutvncqma5wUXjL0ErtjnI4CQRISiw6uaAZlyjseyBBrY6pe1-uN4','Jessica Sewell - Reymark and Vaneza were very helpful when I came in this morning with the flu. Reymark brought me a croissant to help wash down my fever reducers. About as pleasant experience as you ',3,'',10,1),(658,'2020-01-13 05:45:07.733441','AIe9_BEuFX7PcAP2nNY_ju84FoFSkIbU0oSJp6AEVpwes-yY0SdsgkhxjehmMOCWbM3yZzch_TlZ3SK82SKYbFeebUGLk41RdYTggHJFbjViJf9VFLjHTUQ','Angel Dixon - My experience at 24 emergency care was great. ( Nitza ) was very kinda and made sure that I got good service . My doctor who help (Patricia ) was good too also she made everything clear ',3,'',10,1),(659,'2020-01-13 05:45:07.782619','AIe9_BEAgUIalCkcXZnurOUpP4uAZITd-I2NtvLqv66qQI-YMOR5Uk6hwXjxvt4-OLnblRMvylxpF_C8tILlS8xRyeiEzFXdH-9nN5VIELl8ktf-Y7WqRT8','Karson Brown - Quick and great service!',3,'',10,1),(660,'2020-01-13 05:45:07.831897','AIe9_BHx9wW5OAXpNIH08blLdli08yq2srJNRpLi0ELrwin48mP-rpyi4nmd_S3FZgdFo6wmytAVwmxF34wHa93sWZsguaFI0M9YZ2Tmrk-_jlnUr74BuHQ','J Ben - I encountered a pretty deep laceration that required stitches to my index finger and I received immediate attention by Signature Care Copperfield amazing staff. Dr. Cavasos and his medical sta',3,'',10,1),(661,'2020-01-13 05:45:07.881165','AIe9_BGhYIk2KhOdF8fekWDvq8JUuApryMKAbvZfJWGhAqWOzzhdpZeA_4Tk77mDND6ouXuh7MuubBwHKAlAspcZkJ2peLbJRwp4jpK_6r8PTcQA4sMG7UI','Hawraa Abdullah - The staff were very kind and the process went by quickly. It\'s a clean and comfortable environment that I would definitely recommend to anyone skeptical of this place. I\'m very pleas',3,'',10,1),(662,'2020-01-13 05:45:07.930361','AIe9_BFL0OZrFaHgoJtqifT1GHrIxsg1jWM58vS4xvvV2c64B6ib7jvZUDvD6nsU267Fifi-6oe4a92tc0wUYtf6WhpH421_3LpPOnl3yGaKyKlZoUUpcGM','Sajdah Habeeb - This was my first visit to Signature Care and I would absolutely recommend this facility to everyone in the area. Scott and Laura were very kind and accommodating and Dr. Patel is so s',3,'',10,1),(663,'2020-01-13 10:58:03.478516','AIe9_BHVBnWjBJvk55vq2QEm0wl--S1dYoH07PjGmCoBxUNLCXNkgjk9pRkuZplUsQMzF5KIGw2ij5Nu7Sci0rugRkteWNDoPv_mTxC8THBihzRqoXQU9hY','Kentrail D - This place is awesome! The staff greeted me immediately and throughout the entire process I was kept updated. Everyone was nice and friendly and reception helped me understand what my i',3,'',10,1),(664,'2020-01-13 10:58:03.556424','AIe9_BFMK6FB7k24ANEBV5CospTTNSUsyp9hqeOTPSuf39S1Ag9X0U-SzjLBQI599niD90vgtRrUJ-cmXl_IuYq_TPp4obCVoNKf6g6iRRRl1qi1zbFW2uY','Dystani Jackson - Melissa greeted us as soon as we came in and jumped into action as we explained the situation. Jani and Jose then lead us into the back and asked us the appropriate questions and gav',3,'',10,1),(665,'2020-01-13 10:58:03.654765','AIe9_BFu3rdicGrPrzdyu4PDXmqMDo0-TJjBbBe8OqEngX0Xz9GhaLK4wuQxZwJxqVdIOg4gy2UhGcmuDzFHg-QOMrE9VTaM-3Fn4niSYXV1c1XRK9LJLTs','Robert Vaughn - Everyone was great and efficient\nGreat job melissa jani jose david and andrea',3,'',10,1),(666,'2020-01-13 10:58:03.703998','AIe9_BFu3rdicGrPrzdyu4PDXmqMZggyC1AafvH3VhzC2NdYtrar6lFSb9ejGuzxG4l_DdHNlpPldTsBVITcOJzaWk8aZHTl6lmr5nyTBP-ckak9nDMyI88','Carol Oakley - None',3,'',10,1),(667,'2020-01-13 10:58:03.753305','AIe9_BGlY-BaOO_aND3JZqxJBS1RjKDKcrikh-evDkm04UxbtN5Q4aXPBxqtuTCR1KISzTF_dgCfDdj8g5aKMqd_Vlw0RIjmkeOo4bq3tBiLRd11y6OjMMs','hippiee - I always get attended super fast and the doctors are really helpful and fast. my dr. was Ybarra, nurse rollie, rad tech natalia & registration Stephanie. you guys rock !',3,'',10,1),(668,'2020-01-13 10:58:03.802499','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2SWKeox3RAti_7ogk0dazuUtFB0icOjLpOcCLO78PLPigGd23Tq2k16jEJY0LZDYU5DyVBAK-l17UwE_adEEgLxPSCd4','Michael Harper - Great experience! Highly recommend them! I had Mollie, Leanne, Dr. Yost, Gunner, Eric, Tobie and Carla! Everyone was great! Thank y’all!!',3,'',10,1),(669,'2020-01-13 10:58:03.851904','AIe9_BGvUJd9etQojwpjZIMsiFnepvKzvM4d2jfvS8TWhPfGCvFx-qywQ_8VA7-eEYltCm9TgwgjadCdn5MugMzHes0HXemq42VTXl7ktdTuO7OnqdJRJys','Xxfire wolfiexx - Great care! Very quick! Clean facility and very nice staff! Nurse Jennifer was very nice! Would recommend for all your emergency needs',3,'',10,1),(670,'2020-01-13 10:58:03.901187','AIe9_BFu3rdicGrPrzdyu4PDXmqM1hIhs5O61_6mrp4Ar9y1W6TwWkss7xid_oKgqIEn-7wtWhtop4e4Tpfu4AzpELbUAy6HBUh4XW67Du499QxYrqpVFq8','Torchie Beatty - The entire experience was so positive. There was no wait time, ALL of the staff were very kind and caring. I will be recommending Signature Care Emergency Center to all my friends an',3,'',10,1),(671,'2020-01-13 10:58:03.950295','AIe9_BHkHJRvhG8n5BjqdcMSKR_FYZUpdFfqclm-HJHtPRuWPflqV7bwuQqHPb05_b8rRFLGwpYxO1fZxrDY5Z_qKz0XJp0DXh3k6HJL0WxRhyDIaCe-yLs','Dianna Belt - Th Er we very nice and kind and welcoming they also talked to us and made us laugh and enjoyed my experience with the new place I’ve been driving by. I had a lovely experience.',3,'',10,1),(672,'2020-01-13 10:58:03.999526','AIe9_BHkHJRvhG8n5BjqdcMSKR_F-4JM4v9uk_RePSuvlrcw6KoC3cNQSPsbssOIO2ebh3LUKyKWJ-zFDiZbD_YaQIAjzu3BrMKtCCVJqx4ZNdbYTm6m24k','Big MegSarah - Becca the ER tech took my blood and it was the best blood taking experience ever! Didn’t even hurt! Wow! First time!',3,'',10,1),(673,'2020-01-13 10:58:04.048854','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fi9kZauUbRK0wl9i0IaJyz3lLXP-WYqx30IGYUx6ZC0bT3lBUYGVVIkX33jySJg4SpCx5I-CxyS6dcTcRQjXu0ReGUOA','Marcia Fanini Oliveira - It was my third time at enTrust. The doctors are courteous and I feel better after the visits. I would like to thank you Timo Juarez for always being nice, careful and calm.',3,'',10,1),(674,'2020-01-13 10:58:04.098191','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fza_2Qr8rTMCaj_B9D5VVp81zHQ9_WXpGzBeTTey4GY0Qd-X-_sZekYx98_vfGYoeVWEbNNUkSS-lJAS0j9Kfa0TQpiE','Kathryn Kaimana - Lorena, Dr.Akunyili, Jeri, Becca, and Morgan were so helpful and made our visit super quick and painless!!',3,'',10,1),(675,'2020-01-13 10:58:04.147413','AIe9_BGZuRKHeO1iYrcf4B001kE2Dmra1hZKHUtLwNBz-prMWhxO5sAcGvrwIgajUanqvp1DhdO6ueMZI3KEfvXl4SITazkuQxh8nHhK7BiiiY_OruaB9Iw','Elias Ayala - Trisha, Kelly, and Thanh took great care of my wife and son.',3,'',10,1),(676,'2020-01-13 10:58:04.196376','AIe9_BGlY-BaOO_aND3JZqxJBS1RM_nf-F7Cz2nPn_OIA1NPqXv5Xjii0Fnc0pdzupRu2V_Dy8eFjn4QfbFfMADN_Eoc5zdH1utzD9OZaKyfOjcwT3xwYhI','Peggy Krendl - Dr. Noor, Dana, Aaron and Ryan were very helpful in quickly identifying an issue to pain I had in my left side. I was immediately admitted and care for thoroughly. I was so relieved',3,'',10,1),(677,'2020-01-13 10:58:04.245980','AIe9_BHx9wW5OAXpNIH08blLdli0GP2Xcv53nGz1QQia-sRK5kKbEp_tg_yu_FP_B2Z93mEHrZEws9R_iHfwZmttrt4e0ydDzKgVoNTe80afeo2IZBLXaZI','Shaylene Ayala - Brought my 4 month old son in and they took great care of him. Trisha was so sweet and caring. Nurse Kelly was very informative. Thanh helped us navigate paperwork easily. The staff h',3,'',10,1),(678,'2020-01-13 10:58:04.295248','AIe9_BGlY-BaOO_aND3JZqxJBS1RZcsPHlYkDzF7iBujYI2uOHdH6x4izChlp5ccqr8ZFB4Bnwbfuh8lzcTZDGwreKe8i4NmNF61TV3gq6tU2NbqPQzvPLs','Sherry - They treated me wonderfully! Shaunda at the front desk was such a pleasure to speak with. Dr. Jones, Linda, Chris and Christina each were so pleasant and took great care of me.',3,'',10,1),(679,'2020-01-13 10:58:04.344499','AIe9_BFDvtvCY6mNmVUeGBiBb7S5PDCIFgmcj67F_8IcYUFj05qQ4tTaQmz4qCxSQ0VYGIqEgLsHaTEpT7wtExG956Wi82vAtWQss-Ys5wV4mKeD8CMvp4o','jonterra\'s Vlogs - Alvean A. & Nurse Chanell were so helpful. I had a great experience ! Definitely, recommend 👍',3,'',10,1),(680,'2020-01-13 10:58:04.393744','AIe9_BGErQpX2pRNZrXBy5NOsH0eJiWxdunvgrT8uH9M4QNq3X19KlfDxaK9W-UFmpG1UzzzKQMwzvOgWRXV3DfiQbKWwkeyiLkQwMDpmwsEgAlJ1tybx5M','Krystle B - Very pleased with my experience here. Was in & out in under an hour. Lorena at the front desk was very welcoming. Nurse Brad. & Dr. Akunyili made me very comfortable.',3,'',10,1),(681,'2020-01-13 10:58:04.443166','AIe9_BFu3rdicGrPrzdyu4PDXmqM6vBTulkuensYBo3sQQuBGOgGk8NO0g4_y-JNNdJndsQ7y4GgUhuqycigjU4PToyrzmRGnu86gTo4KdxFQ9Tp4GWNkiY','Dina Tabora - I came here with my mom since she fell at her job. I felt like the doctors were really doing their best to make sure my mother pain and injures were well taken care of.They were always i',3,'',10,1),(682,'2020-01-13 10:58:04.492390','AIe9_BFqh_zr355jzGaEpH7666zcfTpM0CVmv4mEcPND4k_P7ErEi7J5I0sZ2BN8kjvQ10UKGDKMPUEX1Q1g6tpz7Ia4X5CW27xCfKdrQ86CfT8jXY8fW8k','Da wa - None',3,'',10,1),(683,'2020-01-13 10:58:04.541661','AIe9_BFmRFRFwJGRfUDOW8jG3rXn4ZcIqsScaBcWglEwcjxds0Q1DbTdiHgO6ObVpLHCWVFKwMkrVbsMPuJ2jNdJ4RgXef4ERrjD4Ffbdsf2NygR2y8eT18','Yesenia Escalante - This place rocks!\nThe front desk is super fast and has professionalism.\nMiguel and Viv are an awesome team in the back💓',3,'',10,1),(684,'2020-01-13 10:58:04.590803','AIe9_BEV1VP1woYvuPRixSBHlWg4kRdqNT8yDvOmIFcLlGigGH2aM1FPLxolvbk4phy9Ctn5HBDbQON81cwF19iWkzUlG4007s7Xro9jMTrbtHMOjdCELUU','Samantha Martinez - Great experience from the moment you walk in it has a family atmosphere all the staff had a welcoming smile and was more than willing to answer any questions. We only had to wait a',3,'',10,1),(685,'2020-01-13 10:58:04.640116','AIe9_BFLWlqwz3qGBnCfbAsLD0lVsV_iHDN4wX_pyxfqmVA3u3lUYXzXrf5SFenbBAnt9sD_22RYbsvarQMkuFugM-XHRPUqhz3tw5muWHpdLevYby1PtHg','Mister Miles - The best emergency center any body can come. I’ve been coming for over 2 years now they are so quick, fast good selected executive people like Dr Wang , Fanny, EDA , Wendy, Angela . Wo',3,'',10,1),(686,'2020-01-13 10:58:04.738591','AIe9_BFL0OZrFaHgoJtqifT1GHrI7gSOL3MBHtPPLtBsMGE0qxTEycf4aBHSoDrNbONZ7yfYk9TJ8YIvQeMIbAU7PepmFat3U-HgBFbem48-VuHk2yO_cas','Leatrice Coleman - Excellent service! Nicole G, Brandon Williams, Kelly, Bre M & Dr. Souman were all fantastic! Great bedside manner. Have already recommended this place to others and would definitely',3,'',10,1),(687,'2020-01-13 10:58:04.788062','AIe9_BGlY-BaOO_aND3JZqxJBS1RopHK4IRSdUMNK5M8nbERXpytOuBufBhBRIiU1itS20akITB3jAPHD017Vr3DDhPGG2aWrhQkRkWk9YCV1c3JBPtMmWc','Christan Coleman - I had a wonderful experience best Er visit that I have ever had. Everyone was so fast, sweet, and had so much patience. Anything we needed they were there. Tatiana was awesome. My ',3,'',10,1),(688,'2020-01-13 10:58:04.848623','AIe9_BGZuRKHeO1iYrcf4B001kE2dgjI3E2MMSnJ_cX_zkHDpV-AlnIqJ4-0_-eAkA9jAK66-RGWPybmaHUvWSJm5BtsepacA5cNE5hkKaPrUHVwbEd50P0','David Arias - Great and fast service from everyone, thanks to Nelson, Holly Irving and Dr Smith.',3,'',10,1),(689,'2020-01-13 10:58:04.908789','AIe9_BG84YPnR8vhxeJfV_lAYVNiVnnqTcZ3j8sqredAPmiZb2EmegaKzc978ajf37GkUFRSUN8EnzPOq2EsXurNXs2MrhpICZFUy9oiKfmId-LQulVOYqU','Envy Vision - None',3,'',10,1),(690,'2020-01-13 10:58:04.957978','AIe9_BFhqAtkXvUqdYNeMuBBGjaAxRVxNBQrIPQA3Y87gF5HQSfMqN6vXPJ7BGDSYK0feDgm5stm3Kx17lWdfRAchE2LU8ojkeqOafBVsqDOsfPBIMKHplU','Lakeshia Stallworth - I brought my \nboyfriend here behind a DVT scare we were treated with care and didn\'t have to wait I recommend this facility to everyone. Dr.Smith, Ana Registration, Nurse Irvi',3,'',10,1),(691,'2020-01-13 10:58:05.007302','AIe9_BEHZ7lh7y1sP-UInhkpmlIpv1bh9LmmmCZSMsVN2KnCx46vBMkMQAS3_YdGgYhD8nfASRIDU92aIZWG3lCJBGCWVBZmbTTP6PokLy62HC0iVivnUrU','xavier mendoza - This emergency clinic was very quick and took care of my husband within 2 hours. Would highly recommend this place to anybody in the stafford area. Big ups to Dr. Singha, brenda, shob',3,'',10,1),(692,'2020-01-13 10:58:05.056631','AIe9_BGTHfLB7ZAtvlQmidaL-PvDfZ-zGlyfjN-Oxikfzd5al751MVvX1VrPd78ZjchopohpsZa_43U0JHEeq8AHrmHMRFud5en1NcF8i80E7FryYx_FD7c','Kayy. Lex - Great staff Ana in registration was quick and efficient good Irving was the best nurse and my Er tech was so cool Nelson',3,'',10,1),(693,'2020-01-15 06:02:05.287890','AIe9_BHkHJRvhG8n5BjqdcMSKR_FSkjQh5K2hfut7VM93HLm_WZcC0hxZo9JT41LyDZzEMvpXte8Kz_WxVITuuvS2P5lmA3UNKFMAD4hxEMMo2qe0tFwrq4','Adrian Pardo - Amazing place! Their service was excellent and all their staff were very friendly and professional! Finally an ER that we can trust and be seen very quickly! Receptionist was also extre',3,'',10,1),(694,'2020-01-15 06:02:05.375680','AIe9_BGZuRKHeO1iYrcf4B001kE2ZRzWI4oYifgkYQDY6OOW11BlPtPT0dzF7XB7-Uj57T06I3NuqLSJ-y8IALCbd606QGhDGiMBB-k1gVwmt8RkirZqgaA','Erikuh Muhree - Dr. Akunyili and Nurse Marcie were great\nThey explained everything to me from beginning to end\nThe whole experience from Check in To checkout was awesome\nAll drs, rns and staff at sign',3,'',10,1),(695,'2020-01-15 06:02:05.424798','AIe9_BGhYIk2KhOdF8fekWDvq8JUGjdoYTdqB5WWj0pzY1QsXC3raqid0A3pOeEd0GREYZIYiFiiOiboN1-zlmbe5L1P65NBJflfh11LRiN-wrspDg_noVg','Ebony penrice - Very professional. No wait. Attentive staff. Positive results. Very clean. Do not try to eat up your insurance as they treat you and release you. Thank you and your staff.',3,'',10,1),(696,'2020-01-15 06:02:05.474180','AIe9_BGErQpX2pRNZrXBy5NOsH0ebBKBalABcUNb9RdXnoip_8hqmraNviQSsqpEw3d3VPODZHBYmgbRZPqslbfB4Ku9qsTmUrZoMMll8FihluEozUnG2v4','J S - Had a great experience here today with my 4 year old daughter. The nurse and doctor were so sweet and caring. My daughter had been traumatized by the flu the last few days, wouldn’t take medic',3,'',10,1),(697,'2020-01-15 06:02:05.574846','AIe9_BEV1VP1woYvuPRixSBHlWg4KdNZU9VwuY-xcIJZ1qlirj-CtPqhO70qjrOfGQFrAwBtkxUSbZBHX7WeQ8-l5ErCnnxrCX_SuQK44170Gyl7tsAGzzo','Hector Giron - State of the art facility. Staff (Dania, Ebony, and Timo) made us feel at home and were very helpful. Blessed to have This urgent care so close to our home .',3,'',10,1),(698,'2020-01-15 06:02:05.632490','AIe9_BGhYIk2KhOdF8fekWDvq8JUb88XVdpXFrni3M2v0J1teVRaC6hYVK_eYpvEftXk_7RtPGc236Q47fptEfnMrT6Aw_i00Nny5BqQ3kprSI9EJHI21hw','amie Crawford - Everyone here are caring to your needs. Fast at helping and getting what is needed in order to make you feel comfortable',3,'',10,1),(699,'2020-01-15 06:02:05.681924','AIe9_BEHZ7lh7y1sP-UInhkpmlIpNX88Q3sKOftHW1hrlX-d4AwLH98q7eYTDAd7WmPahZzsxcqVJ9j4CunCwYJbfDJRP54VGrW-zRVAleQUwzvcFB6kodg','Monique Glover - Sindy was very friendly upon registration and answered all the question I had. Dr.Guharoy and Stephanie were very knowledgeable and understood all of my concerns, and Quyen got my lab',3,'',10,1),(700,'2020-01-15 06:02:05.731803','AIe9_BGlY-BaOO_aND3JZqxJBS1Rqd7_b_UkIYJDKpOc0JZeuf6H3SghsUin6jhMC5kJ5Hutf1Uw3Frvm9O073btCdX4nMo8VQrUFeR84cZA2nB0BtGqugI','Christian Evans - My visit was very pleasant. Nurse Vivienne was so sweet & professional. Dr. Miller was very informative and make me feel very comfortable. I’d definitely recommend anyone to come her',3,'',10,1),(701,'2020-01-15 06:02:05.781022','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2iAnv2RLrYWlymm6eylX5pZv_kk6VxtYObE9v648TKIDaHn-N3UgsyhRxugDSNlbvJoBK5uChejE6uuNE68yEa7VoVn4','Chan Hayes - Jocelyn marcus and ekaterini. Get fast service and friendly people here',3,'',10,1),(702,'2020-01-15 06:02:05.830118','AIe9_BHR7p0hPy1flx1br0TYdEUBENJG0jsfDSZoqg2S54NA1FLcj6bErrkMbZGbqlC0JCjh9YDUcnZafkdf-UH-JfgchEoNjPa_jq9aMFE8h4PNcg4LlnQ','Starlene Hayes - Evening, First time coming here. the atmosphere very pleasant and warming. I had the pleasure of meeting this awesome team today. Dr.Edwards , Jocelyn , Ekaterini S , Marcus And Brian',3,'',10,1),(703,'2020-01-15 06:02:05.879437','AIe9_BGTHfLB7ZAtvlQmidaL-PvDHAgp300yDvyUXo67ibmnFFB140Vh3QY_Oo2Gy41vIjHAGSYERl8Nme3qK8_JNgWG73FaYMk0v3s4ZwX8U_GDcgaJWVk','Mizraim Reyes - Took the missus here for some chest pain, staff was very kind and helpful, kept the mood up.',3,'',10,1),(704,'2020-01-15 06:02:05.928669','AIe9_BF8X4EpR_fF6mwcYdso9awgvXjMmzQsFW9jaOmli9hlvxH5Z71j-DeQ0cQwEEt-sC3Ayr-joSpxzhjuQOxvWMCEamUxPjOvRXmBmkNM7ElRO52WyrQ','sara martinez - None',3,'',10,1),(705,'2020-01-15 06:02:05.977847','AIe9_BGZuRKHeO1iYrcf4B001kE2sr9rh5G4B8Gy6303QYVoO2y5Jw2ELSmnOvIzu1MjyvMqwmlOnQWEbTwkKcyD9wzc0tvCL_LnFyPuVILmDCCfii_gKOE','Matthew Woodruff - Normally wouldn\'t be excited or thrilled about a emergency visit but Signature Care has definitely changed that. They have the most amazing staff. We weren\'t waiting forever and the',3,'',10,1),(706,'2020-01-15 06:02:06.027142','AIe9_BFL0OZrFaHgoJtqifT1GHrIvu80qkbpMD1oHujcX1J6-h-Te4Ca6b2aRBEBy076Z8aEXu0lEvKCvN0aFstORGHPaxDNzN14oZLvyjE1hJ1H_8K3Kmc','Tasha Raie Fit - Very convenient. Walked in and was immediately help. Recommend This place.',3,'',10,1),(707,'2020-01-15 06:02:06.076524','AIe9_BFmRFRFwJGRfUDOW8jG3rXnC9tyVClrtIaPYOE9PZHkvzNJRjJm57uxSVyYZSE3m6IwGfTHFLRbyqTRyoHtvydIfb5NI_2lBaabmB1RmaYR6q5Y-EY','Laura Gravestty - None',3,'',10,1),(708,'2020-01-15 06:02:06.125884','AIe9_BGErQpX2pRNZrXBy5NOsH0e7AH64hPoP4dIMYtdl5DVzBuTSopWM2MvH53ClGJGPgA0PfWHC14mrh8cGyjhjsohE85vbiW3346NQd8r31UEcMhl1HY','Rodney Price - None',3,'',10,1),(709,'2020-01-15 06:02:06.175108','AIe9_BGZuRKHeO1iYrcf4B001kE2NQM1-5RAwZBJyi9kFgPWf5umo5wX8WfOFG9Jeagib1VEfZZUUiY6Vkdj1DvR_DwPAhxNqbg8HY3xWN4T86i5rO0ggL4','Pamela Young-Robertson - The staff from the front desk to the nurse\'s and doctors was very cordial, I was in so much pain on arrival. With the team effort I left with so much peace. My pain worsen the',3,'',10,1),(710,'2020-01-15 06:02:06.224357','AIe9_BFMK6FB7k24ANEBV5CospTTTNOHDHrfPqHVZyyTDyc8wlpmEigeeuFhq7nmGFvLoz6DoXG8v39297Lo1Cr-kc0oT9127zP1Hvl224v_3l2tOWGdQ5M','Sheryl Wallace - The warmth and caring was felt as I entered the building starting with registration (Delicia) , nurse (Kelly) Rad Twc (Son/Le/Vasmina) and Dr Guharoy! Thanks for being an Awesome Team',3,'',10,1),(711,'2020-01-15 06:02:06.322767','AIe9_BEjL8GlZLzWC88r4N2XQbJouTzj41RSKgb59JCZMvV_9MdEbUJR3B-XqlPaWpUgzS3HDONNwoza_qoCjL-b5xeFyzsbi2diQaJ1NuA8dKA2dfyWXgw','Jessica Vickers - Everyone was so amazing. They had a lot of patients at the time I came in but we never felt rushed or abandoned, as you sometimes do in the ER. Brenda at the front desk was very frie',3,'',10,1),(712,'2020-01-15 06:02:06.372306','AIe9_BGIy_plKfaZrItPyyQZNLvskHxT5hwStps6CbFt9zdwH63cEaBawaOkyQwUL9AeaLMP1SDlyfdAxV8Q8RQFY2xcoC5hip_Gp5z-Dj1Pmrc7R8BeQ3A','Brianna Stanzione - Staff is super nice and very helpful!',3,'',10,1),(713,'2020-01-15 06:02:06.421384','AIe9_BFMK6FB7k24ANEBV5CospTTaRAot_tRf2uvxZjJ60FJH1MZQAQYnM8zbO-RUdfcolw8nK6xjOrNEotEBnvGas7GRGTIbIJ7fN0gqtFGPP93DWHIz6c','Glenda Ageitos - Everything was wonderful, the staff was amazing, Dr. Souman, Churiah my nurse was great!! Thank you Jackie, Kenzie and Dee!',3,'',10,1),(714,'2020-01-15 06:02:06.470759','AIe9_BFMK6FB7k24ANEBV5CospTTt9M0IqhTctn6hFqCywfP7VPIB9Ltwp80H7xUXwPWzVIq7U-Eiq-CIrFo47AriSWn4SwbDBPPiGbr0kzH9b2toopuzyI','Rodney Dede - Dr. Guharoy and the team we’re great! Quyen and Sindy were awesome too!',3,'',10,1),(715,'2020-01-16 06:05:20.101803','9589','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(716,'2020-01-16 06:07:09.096618','AIe9_BGvUJd9etQojwpjZIMsiFneeKcGssDJvYWEJY1GpfzwD0Rtp9VqI-Ev1jVxBmRlWLmVhFUWjiBW7XdrQJSVa1ErF1P-IM2L2tztQ-ZcTXEMN7DoEGg','Bryan Haas - Everything about SignatureCare is first class. It\'s obvious from the moment you walk through the door.',3,'',10,1),(717,'2020-01-16 06:07:09.155196','AIe9_BGlY-BaOO_aND3JZqxJBS1RTEHUIk_gDQ9sNsamIpH-BcGgwQhRZ05KJ4Fed8SlOtBsIX0NsQRKS3Au0dfOMHVnvPcmWpltGHgXJKZ8-QLdRpg3KGM','Nestas Home - I came in at 10:08pm and was seen immediately and treated with great care. The staff, Stephanie in registration, Dr. Daniels, Nurses Rollie & Leslie, Radiology Tech Natalia, were all am',3,'',10,1),(718,'2020-01-16 06:07:09.254834','AIe9_BHkHJRvhG8n5BjqdcMSKR_FXMFFfkONu-z4K7uSNTgtJk7GjGQrKldqVuzuAklnpjM8hD1AZ5m_ZF4vsG_PjAm3L0NQwaR9V5ViWUVYBMdMBvJA98Y','Terrika Turner - Leslie, Rollie, Nantalia, and Stephanie were all absolutely lovely & awesome. I arrived in so much pain and they were quickly attending to my needs while making me comfortable at eas',3,'',10,1),(719,'2020-01-16 06:07:09.353666','AIe9_BFL0OZrFaHgoJtqifT1GHrIbqdkzIzU7VJEG05Or9xj_uVIMbE5snkKqk0vJqqR0nAroH91Ad5JFzJ0fpycxaeT22-CSmeFqzD4D96BlTXUA1_FCd4','valerie dettore - I want to thank Memorial City Signature Care staff for taking such good care of me. Doc Daniel was very personable and competent, \n thank you so much for such a nice stitch job! John',3,'',10,1),(720,'2020-01-16 06:07:09.403173','AIe9_BFu3rdicGrPrzdyu4PDXmqM7kN-RwEKi3q4jtMEXeSwVICpLuo5TH57rglL6jk5sJG-6-d0TDngZ4uajYMltFZxUv2t8y5ljAr1H7YOGPsfCNwWfVI','LaSable McDaniels - Ms.Tobie was so kind, the entire staff was amazing. I do not go any where else!',3,'',10,1),(721,'2020-01-16 06:07:09.452850','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMSZ4NJ9AKejw-jdMEU4UNW8GMgjwnHAXRwF6zu2arNgQ-HBzKDpeOfmtzdnie77CwGMcB-MjQBCI0ho4F1TaLhK2f6Y0','Alexander Taylor - They get you right in. Let you know exactly what’s going on. They make sure that you are comfortable. They show concern. And they make you laugh while you hurt lol',3,'',10,1),(722,'2020-01-16 06:07:09.502290','AIe9_BHR7p0hPy1flx1br0TYdEUB4SQunuaEEy2R9z9x4US4mG6JEgQGBjobZNTVmluEFKceTNzF6p-Ctvxi5m9mZp9g4iEDktp-gvY-jyMPU5JZCHW7NIk','JuWanna Smith - Very friendly and offer snacks',3,'',10,1),(723,'2020-01-16 06:07:09.552045','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2zOeuAmBvrhxM0zaPXoBA8Wmj-IjO5WVShofHDM7UpqjCpUnEGm3eOZ1tslXAdORyRB7zRXuPpyr0jvLTr315TpERhFg','Bianca Olivo - Dr He, the tech Dania, and the receptionist Ebony formed a very kind caring and quick team that was able to check me in get me diagnosed and have me back out in record time. The staff w',3,'',10,1),(724,'2020-01-16 06:07:09.601322','AIe9_BGlY-BaOO_aND3JZqxJBS1RaPwjIjhC8q2582oQXsqWkH-72LyPlIcXQDppnj4j78ef4x4OT7GvX6r-BRTPOp4mXMTmgIvqgqlmHd4I1z0AEjo5ldE','Jessica ONeill - Ebony was very welcoming, and Dania was professional and sympathetic. The doctor saw me quickly, and clearly explained my diagnosis. It was a helpful, professional crew. Thank you!',3,'',10,1),(725,'2020-01-16 06:07:09.650896','AIe9_BFu3rdicGrPrzdyu4PDXmqMn8bCgIWshbyCBsAHiOWu1Fxo7CeHX0Gax46jkWjRjd1eTAh9KlntN1_dr4h4HPaehyiv5DnR-QUuckphhzeRvyH0-sc','Sheila Flecha - I went in to get checked out and follow up due to a stomach illness. The day before I went to a family practice and they gave me 2 IV and send me home with antibiotics and nausea medic',3,'',10,1),(726,'2020-01-16 06:07:09.700491','AIe9_BEHZ7lh7y1sP-UInhkpmlIpqp3JxUb7MkPRsk0tJQZ5JvhbbYkpPEce3vGd6-gmAOxYlOqDvyv8xB7epDHAFOcVsarzrnKNfp1GNtQUKbimc0tMGQM','Dakota Bloyd - All of the staff was wonderful throughout the whole visit!! Thanks a lot to Dr. Yost, Kara, Gunner, and Courtney.',3,'',10,1),(727,'2020-01-16 06:07:09.750053','AIe9_BF8X4EpR_fF6mwcYdso9awgzub0HYBp7Q16mw6gudvyidcrbEbETFVxsL1IMgBB9pv_23Yje5O_1zvhZf9bzKXRfRsxH3vfKOwKXNZNYBJSLI5zUjQ','Jennifer Whiteside - Mollie, Dr. Yost and Tobie were awesome!',3,'',10,1),(728,'2020-01-16 06:07:09.849050','AIe9_BFDvtvCY6mNmVUeGBiBb7S594y2EHC2WXjq-xNNo3x-i1n2UBeW_b2NUEUPwBl0T978_kTHnjs2yVhO6eK3hYW0lotkz6GcXUev5DLHrcWDbvmByx4','Kaley Padgett - They were quick, kind and gave a discount because I am a local teacher. I will be returning again! Kara, Courtney, Gunnar and Dr. Yost are fabulous!',3,'',10,1),(729,'2020-01-16 06:07:09.898573','AIe9_BFrHfJ2dmEi-Vy2qpFFGM-S8vLIguuGRSNYDALQy6tOzRXm-w-YrsBH3BMSfmtYkvN8LG-KyxlR5au7Li7wjuKKK62HF2Q9ABMixBoEvdw2L6zAhW0','Ashley Mills - This place is awesome! Chris was an excellent nurse as he tended to my every need and was very informative. Upon arrival I was greeted by the friendly staff, had little to no wait time ',3,'',10,1),(730,'2020-01-16 06:07:09.948175','AIe9_BGlY-BaOO_aND3JZqxJBS1Rf48IuuTm-m0G0PFr7eLLVL9y9WYFCh_RVEACjtI1njfImZoaNx5YJ7lNJv3FptJTNG3Evn4MT7w85boY76sN3KBZ2AQ','Stephanie White - Great care with nures Kristina, Scott,Quyen,Genesis,Ding',3,'',10,1),(731,'2020-01-16 06:07:09.997623','AIe9_BGhYIk2KhOdF8fekWDvq8JUdwrDgpIZgxY_pBOuzMSXsgdXvYKyPtcLvTfwoJxth8T_67NNpVUYzw4A1ifzUNJHL8CTYp8mqStpaaZ5bicfJKxKBZA','Bernie Garcia - None',3,'',10,1),(732,'2020-01-16 06:07:10.046837','AIe9_BGTHfLB7ZAtvlQmidaL-PvDCmAllYo14H1X-lrZk4aAFhny0Rl8bBGJ3ebc6NGOkslXUt41mND7uFUV9sT9ar4fIrbvULs-UmTatPurY-DSQ_DUO_E','Ricky Aguilar - Hands down the best experience I\'ve ever had with an ER... because I mean, who likes going to the ER, right? Professional. Clean. Attentive. And all-around stellar work. Thank you to ',3,'',10,1),(733,'2020-01-16 06:07:10.242608','AIe9_BGZuRKHeO1iYrcf4B001kE24jyZ0vKowvRq0_wpkfT4JQHzXZvnBTH5zAuPA7VgN6raI2Cxx8YjtS9e8_uT2Rkg9WLBdjhlD66FBYJ06JTunk2eKbE','Desirae Weise - I came to Signature Care after being in pain for 24hrs. They have amazing customer service, especially the doctors. They were always quick to help and give me proper care. From the fro',3,'',10,1),(734,'2020-01-16 06:07:10.341806','AIe9_BFu3rdicGrPrzdyu4PDXmqMMnL-iDQLrq4FY2G6ZcSgJmIl0DVYyyaw4Mw3lvhUwasJ85mEUXiTfBVt9tfI_j0DG1UG32FdXb9UH_Zdz2ewiG5EYHM','Chuck Bird - Huge thanks to Dr. Miller, Chris C, Kimberly, Cecilia at the front desk, as well Isaac and Natalie as well as the all the other staff took great care of me after a back injury.',3,'',10,1),(735,'2020-01-16 06:07:10.440539','AIe9_BHkHJRvhG8n5BjqdcMSKR_FgIAjkBkiOY16i2dgOkc7oaIkGIC6MZUVpt3IqLi0pqWD6TSTIl_1Axs-yETduhB-sDtuuH5YI2QhJg4uYGp_O3G3W0I','Kacie Gilmore - Went into SignatureCare for some swelling and dietary issues. I was immediately taken care of. I was in and out within 2 hours considering all the processes I had to go through. Christ',3,'',10,1),(736,'2020-01-16 06:07:10.490187','AIe9_BHVBnWjBJvk55vq2QEm0wl-Y6s6I9shmevwrYou7E8fLd3t-J6A6Yw8nNIXaeWROXabReJvrTxYA_-m07AvZ6RiMmJuYgpqI2cmshYGNYCpof3EsIA','Slime Slime 101 - SignatureCare will take care of all your needs. They know your time is valuable and get things done in a timely manner.',3,'',10,1),(737,'2020-01-16 06:07:10.539720','AIe9_BFLWlqwz3qGBnCfbAsLD0lV6GTvgF5eKWqA-ZxdcpgaTXeDWbP_lW72DUwWYW_IcdLFusvxBVpqly3poA8LlAGYqZed4cy2mHcrrAjCyAXkWyMOon4','Patrick Bailey - Quick and efficient. Very helpful.',3,'',10,1),(738,'2020-01-16 06:07:10.589106','AIe9_BFL0OZrFaHgoJtqifT1GHrI1rhBO_bR0oSYbLMb6VZ_aOJRaSAjJxppW6wdSqZ9OoVU05sf0SksIM_xrQjr2wjNAR5szWcKwAWwHkyJ8bDo3noWx08','Samantha Galvin - Amazing!!! Fast service, friendly staff and a clean environment. The best by far.',3,'',10,1),(739,'2020-01-16 06:07:10.638693','AIe9_BHR7p0hPy1flx1br0TYdEUBJ_T3SJEeNqio6q1X4d4vKz1tor2ahGDEtvdxI_wcOkCkcAgjePB0TnO3G6xRNMovcc9Kj-nNIAGzzIJK0G3EylQrr6A','Starlett Carrier - I can’t began to tell you how caring professional and attentive everyone was during my visit. I checked out of memorial Herman and Beechnut due to the staffs rudeness and lack of ca',3,'',10,1),(740,'2020-01-16 06:07:10.688249','AIe9_BGhYIk2KhOdF8fekWDvq8JUWwPH6K4mwu_TcI0JJJt4oYB3ZH8e8N_-uO8yZFUD946kv2Ix4SVOaKSrA8nKza-TMR2T50kTJRrfwwGzmIh6qXli7eE','Amanda Reenan - Came in and was immediately helped by Kendra. Very nice staff and Dr. Hermka was thorough and quick to get the results.',3,'',10,1),(741,'2020-01-16 06:07:10.737839','AIe9_BFqh_zr355jzGaEpH7666zc7OjTmS7Zd1kGWhMLgtrHNeu03YTM8jwhXz5xyfuT_7WnqeFQ36HzXEkeAGFQ2Pg8UAUSrNcV2r_nsCF-p6maU1aprDw','Bailey Todd - They were so nice and helpful! I felt so embarrassed about my injury, but Fatima, Sarah, Dr. Henderson and Daniel made me feel at ease and like it was no biggie! I’d for sure recommend t',3,'',10,1),(742,'2020-01-16 06:07:10.798432','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fai1-nKDBdeYnbKtEX_a7rYsXHdbgYxSS-bEvqek961JWVVfphP4DELAdv74OzWPjCglNiBqE3vL1E5gS7_BVLRfF0h4','Terrie Lewis - None',3,'',10,1),(743,'2020-01-16 06:07:10.897598','AIe9_BHkHJRvhG8n5BjqdcMSKR_FSkjQh5K2hfut7VM93HLm_WZcC0hxZo9JT41LyDZzEMvpXte8Kz_WxVITuuvS2P5lmA3UNKFMAD4hxEMMo2qe0tFwrq4','Adrian Pardo - Amazing place! Their service was excellent and all their staff were very friendly and professional! Finally an ER that we can trust and be seen very quickly! Receptionist was also extre',3,'',10,1),(744,'2020-01-19 05:59:11.205443','AIe9_BFDvtvCY6mNmVUeGBiBb7S5SGLrwjqW20gGiOhr-EcguGORZXiLpjcW525xK8lOXVrHVw_SOakrK65QqYaHCqQctw7wHePnANfwZbrMOPN5wcAgvyM','Julianna Barraza - None',3,'',10,1),(745,'2020-01-19 05:59:11.379017','AIe9_BHAFUK2tNBZL25dLQ0jVdh0amhz9A-2bODKYUw4A9ZDQGbMQIEg3vAm_KqStTLDa6Q8zv9lGP4I4w9Jtsa5JFt7LGBlhlw26Oc0kBTJgeyS3IixSGQ','Noe Cervantes - Alexis the nurse was really nice and the receptionist shania was really awesome and very attending',3,'',10,1),(746,'2020-01-19 05:59:11.428317','AIe9_BGErQpX2pRNZrXBy5NOsH0el-a52Oalv4zi963mSz3wwGiD0kqc_YnGflo7NjjsoXe8CXZTTbOo6PG2GGdkY-t_MbCdDujtyFl_VeJ8iYGO9gC6faQ','Chris Zeniecki - Friendly staff and warm blankets highly recommend this place =) fastest service of any urgent care around.😎🐎',3,'',10,1),(747,'2020-01-19 05:59:11.477468','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2gI0Up4yNgiJ_rGT0m99QFiowQt5ceAMocFQLRq8Yo2ot1nkry3-bRGJk_n3HqYJoA5IEILQTaf_UiYmO5wHRZvl0dfs','ZAYY_ YT - Patricia, Alvean, Marcus \nThey took good care of me while I was here',3,'',10,1),(748,'2020-01-19 05:59:11.526711','AIe9_BFL0OZrFaHgoJtqifT1GHrIGr5HFgEBpp_chq6h7U5645_0udjaBQ38eXGYCQaEDKQjM9ZK3nSJgJ5iNzckgTUvibS-FekKO85z-zDoCjJYqghkurw','Luke Humphreys - This place is the best medical care I have received in years. They were all very personable and nice, and there was no wait!! The front desk lady, Keera was friendly and swift gettin',3,'',10,1),(749,'2020-01-19 05:59:11.576042','AIe9_BGlY-BaOO_aND3JZqxJBS1ReE7qNop_mlLzqmEeLqOXgn3WMaq0zObcJrJRIld4Ue32D6WFMUWPxrJXizaUJ5pQO_VfVDzDHCw7Cy51MiswMlN1ueM','ermal amataj - Very nice facility. Tania and Vanessa Z. Were very friendly and professional.',3,'',10,1),(750,'2020-01-19 05:59:11.625259','AIe9_BEV1VP1woYvuPRixSBHlWg4cW7N1jyeH3lmQ5MwbV_oX0HVKC_9mZGKcwH6FQqoRpr4U0RmB2p-j_CC9YPWEba4eokrC4HEEOqA-OxBKCXpCCJW-ZM','Kenny Aldea - Gracias a Dios por haber conocido este lugar y muchas gracias a las personas como Patricia y Alvean por ser tan amables y tan profesionales se los recomiendo Dios bendiga a cada uno de s',3,'',10,1),(751,'2020-01-19 05:59:11.674669','AIe9_BEHZ7lh7y1sP-UInhkpmlIpLc41zywuHuJohc54iWcGf92rf-W36ycOjWcyzsYHecF4CMwAAX5Zw0lhbVoNPOfgIDwIImCo4V9eumc9sm6dHVAkgt4','Simbai Mutandiro - Very helpful. Great treatment. Dr. Miller is very knowledgeable about medicine. Sindy in reception was extremely charming and helpful. Natalie was attentive and courteous throughout',3,'',10,1),(752,'2020-01-19 05:59:11.723810','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dhJqGiLWxuFLY3P2qO_4qAnWzbLWkLQlKBbMtc8uDk5X17RhLSd2XfhNUKGLlujRFasCB8fjl9xvZPD0Yt0du9oFCps','Doug Brisco - Dr Dang and his staff were extremely courteous and professional. The nurse (Stephanie) on duty was kind and considerate. From the second I walked in the door to register the Registratio',3,'',10,1),(753,'2020-01-19 05:59:11.773119','AIe9_BGvUJd9etQojwpjZIMsiFneu9azmAKakXaop01epvx91Qo_UPlhalFC1zzuOm3ywSigAYjfjeXFhXJS9A3pUowvyTN_da8CIOCAV7xGIBaIYrbaBok','Jocelynn Rodriguez - I am so glad I brought my husband here! Very friendly, prompt, and courteous staff. From the front desk, to Nurse Gina, Vivienne, Rad tech John, ER tech Natalie, and Dr. Miller, ',3,'',10,1),(754,'2020-01-19 05:59:11.822332','AIe9_BFu3rdicGrPrzdyu4PDXmqMHP8HfrZlaK-XJ6DsXFcR4kmrgqq7ao_TTztS7sRcZUG_MM1OCPEUlz7qy6qbrbsAsuv45fB4Ci6RWjZMZAyjg_-rens','Kilo Mathis - Meridith,Marcus, Patricia they all were very great to me I love this location.',3,'',10,1),(755,'2020-01-19 05:59:11.871672','AIe9_BGIy_plKfaZrItPyyQZNLvs20WwB0KzLq7Uag1NyHL_whaMyqM-_Y8Rh0tEG9BkPR62SQXg4TycPobXA2mvjryAqGR6pQvwkynUH-gHxf3HnUBKXBM','Quin Carr - In and out in about an hour. The staff was friendly and very helpful',3,'',10,1),(756,'2020-01-19 05:59:11.970178','AIe9_BEV1VP1woYvuPRixSBHlWg4zPXcNoOWpzimZoqddk8IMloPUfnN0oDFwsscv3BSFn_noeAIU9152rNZDQj5ss5zQbRSJP7YuN4jR6lrMBOVvNcUpEA','Victoria Cook - Patricia and Alvean A did a wonderful job to get me in and out quick with the doctor. Very friendly staff and helpful.',3,'',10,1),(757,'2020-01-19 05:59:12.019457','AIe9_BExcxslmE1rr7n5jMcadSKe-tz4wuwSQPjWhpm1gSXtqzModSc-UE05yW4dFaJGsdbMLRTv3UdaofPW_xnMA4zpfJGp8m8q33eZOumt_kuM8cOdfUw','savannah ephriam - None',3,'',10,1),(758,'2020-01-19 05:59:12.068676','AIe9_BEV1VP1woYvuPRixSBHlWg4Ze4D6B-6X_8RFylpGNFAHApGlytq67g_I0aXLRlxdAdVhAv6dwpLW4CagFfpDf6iYaQtsPjC6lcYR09TucRJH4Bp6wg','charolette lemier - My daughter was brought in just as a precautionary due to bumping her head in a car accident. We usually go to North Cypress for all of our emergencies but thought we would try Sig',3,'',10,1),(759,'2020-01-19 05:59:12.118032','AIe9_BGvUJd9etQojwpjZIMsiFneky0BhM97LMHguqOYsuwTpm72-vjFXmBzM_F27hfUkbSzwkUfsbMbpeNsvANYBuSTOYYfrYQSl45s_343ZF-Nj7pots4','L. Angel Hyder - Very friendly service and I was in and out in quickly. The entire crew was great and very patient. I want to especially thank Vivienne for understanding my needle phobia. Definitely r',3,'',10,1),(760,'2020-01-19 05:59:12.216517','AIe9_BG_KYPQZrI7j-moUldshgc1v1xwLeU_uslAILQhIhJrKQsADwDqk2d5xzT6NFZ1JFom--GkxKKxp9JKTX3yuEJjZjaNwfHdCuSqfud7uPSicBEWzYk','Diane Delgado - We are very pleased with all our experience here. Everyone is so nice and sweet. I will definitely recommend ercare to everyone.',3,'',10,1),(761,'2020-01-19 05:59:12.265786','AIe9_BFLWlqwz3qGBnCfbAsLD0lVDNeSEzi0LhlfwB5hc7Td33YwNI_DYrDB_wGQCx5L9Gl18ULn_kRISSgeX88s3pETiYc3SEbhKFJfHhnVMi85Zrgzw5g','Lakeidru Blaylock - The treatment I received was professional and thorough. Dr Appia explained all the possibilities and was bery detailed. From the time I walked in Joycelyn A greeted me with a smil',3,'',10,1),(762,'2020-01-19 05:59:12.315022','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHkzMzdx8yUoI6XV6tbdC4LWqpcjz4racAa3Xhq8nSc8cBB43zFXVzfEL0rNwrOPfcsJpz3EdOzDrinSeShjrpuZmrBU','Olinda Cardenas - Amazing doctor and nurses. Jennifer was so nice and patient with me. Mark made me laugh so I could feel comfortable. Dr. Edwards made sure to test me for everything. Thank you guys!',3,'',10,1),(763,'2020-01-19 05:59:12.364254','AIe9_BHVBnWjBJvk55vq2QEm0wl-GRh2e2lCRiczvSTrjEhyl-gHx2zfls2ILwifG2-kvHVQbAPRehmebdaeOhd5s0d4C4O3qdVBSqE6_ndM9RWSJah4LWo','Cassidy Byers - I’m not one to go to the doctors when I’m sick but I felt super crummy and my normal physician couldn\'t get me in, this was my last resort. And let me tell you I’m glad I did! The staf',3,'',10,1),(764,'2020-01-19 05:59:12.413463','AIe9_BHkHJRvhG8n5BjqdcMSKR_FenbE4EW2FEGc7GKiw-RKgDdDj0Gres_boIcp-2VIfussZMVkmUEz66jnv-6f8iJadz1DHOfm8pE8feOM3WyKGms8Uyk','Tina Burgos - Cut my bare foot on a dock nailhead and realized I needed a current tetanus vaccination. Having received mailers advertising their community events, facilities, and services; this center',3,'',10,1),(765,'2020-01-19 05:59:12.462913','AIe9_BFLWlqwz3qGBnCfbAsLD0lVdBdsQ4UBV31ZkDldpqpWGywLT_fgnF3ybY_qhfHD1L0zgdUNNPUV20Xa28A1dJjYvhP6Agaqd1TeRgA_edN5WYzKUbI','Myquelle Chapman - Dr Patel, Nurse Kendra and Teri got me in. Really nice and got everything taken care of in a timely manner',3,'',10,1),(766,'2020-01-19 05:59:12.512058','AIe9_BHZM2k_MpOhRgkb8w5Bn_urt6tdE-Kq-_0BTQY6iqArMd3knPVGo9dqZvS9E7Ka1YoN8UqrcBiMBRZOfkPn_i7cCvsVf7y0kRbxKahSvEM6bpUKXsw','MTB BASS - Alvean A. and Marcus was very caring. I really appreciate them.',3,'',10,1),(767,'2020-01-19 05:59:12.561350','AIe9_BHkHJRvhG8n5BjqdcMSKR_FJt9zePmpD15E_e0nicyiF5tlAYYRlRfu1a1f1_V1xwqR3mDiL4MF1DmlvE77LdLJCpeF13TcpsG7Y3loZx-awRNy2tY','Gina Barriga - None',3,'',10,1),(768,'2020-01-19 05:59:12.610610','AIe9_BH3gZxYpIxBZcqAOO5HuBVk_12uemtGe3nc4jr_b3zTUDNudjIfJvPoP26Q9dXDm9xXF61mlrRfks6UIsruz0avLYJsdA8SsxpZ66iLuBHkdrgmzBQ','Milan Walker - I had a wonderful experience, the staff was super attentive and helpful. I was in and out Dr. Edwards nurse and Mark and nurse jennifer were nothing short of amazing . I come here for a',3,'',10,1),(769,'2020-01-19 05:59:12.659894','AIe9_BGErQpX2pRNZrXBy5NOsH0e35a33cbgPNajXaaZMWgxTSiYaZKuYAFmZ9sJ15nejh93T9D68ce2-l00LhxAPwy7KgI_mU1l5mrTsfoUPi9z3hbKiVQ','Sandy Klamert - Great care! Thank you Dr. Golla, Keera, Joy and Fannie!',3,'',10,1),(770,'2020-01-19 05:59:12.709122','AIe9_BGeWygkZoY6qknDFQmPvA4cMJ4vJqjRv1E-RwO3AbV_Xff2K5wHqSBo6ayuKXbp7VLxkt3RbYgTbN6uPL0IpfHIOJxcJRlFYkatY4e2nKijAP48re0','Kaliyah Marie - Came in at 3 am got fast service & great care from Dr.Daniels, Rollie, Natalia & Stephanie for a friend! Good to know something so helpful is so close to home!',3,'',10,1),(771,'2020-01-19 05:59:12.758347','AIe9_BFu3rdicGrPrzdyu4PDXmqMoKqahYyFXQlsI7BeLnJEyD_I_qFmdc4AIAXEitJc0EyDYXVBGiNwapqjWAQ0r4XjkaMM7NuQreTwLAIoMJFUfn-kEzw','Prince Warsace - This was a great experience, staff was helpful and all my questions were answered. It also was done in a timely manner! Thanks to the staff Rollie, Natalia and Stephanie. They were al',3,'',10,1),(772,'2020-01-19 05:59:12.807678','AIe9_BHZM2k_MpOhRgkb8w5Bn_urRETB8W4SfNOkBxX_Rz_vuau0flfV5DGyp7N-8_UJAwOPN47pKzBrDTkb_DG62xBocljUYK7xZuiaMr6TAztjczBsFjY','Brittany Mauritzen - Loved my nurse Gabe. Best care I’ve had in College Station',3,'',10,1),(773,'2020-01-19 05:59:12.856852','AIe9_BF8X4EpR_fF6mwcYdso9awgoxzJmHWen17AgaLimsGwwnv-DVTVaIP_4P9S7mslOQKZNUhz-6li6v0A8UpEOWXK8SF3NzaCcv7GtYx--4R3z6GysHA','Kaitlyn - Great experience. Came with my roommate and we had Kathleen who was phenomenal. 10/10 recommend',3,'',10,1),(774,'2020-01-19 05:59:12.906229','AIe9_BHZM2k_MpOhRgkb8w5Bn_urvedl9qHSWl_p5ntqvaLWdBWQdbgNwg7WwIPbgM3psMzGOkLaMiM4KtO2EXr4G5WgQo9AOE9UgP97gFzaNY65coHrH7Y','maddi brown - Had a great experience and help with \ndr.yost\nRn:Mollie\nRad tech:eric\nRegistration:tobie',3,'',10,1),(775,'2020-01-19 05:59:12.955461','AIe9_BGvUJd9etQojwpjZIMsiFneSIYSL2YN7qx_C5mNMpyo9lculzC1axMXRBPReh1dHEuYi_h1w9WvtLtBBUh9VGX7vpHoi-bH5UTBo0mUzHA6jahMuUg','Alana Morphew - None',3,'',10,1),(776,'2020-01-19 05:59:13.053985','AIe9_BGvUJd9etQojwpjZIMsiFneeKcGssDJvYWEJY1GpfzwD0Rtp9VqI-Ev1jVxBmRlWLmVhFUWjiBW7XdrQJSVa1ErF1P-IM2L2tztQ-ZcTXEMN7DoEGg','Bryan Haas - Everything about SignatureCare is first class. It\'s obvious from the moment you walk through the door.',3,'',10,1),(777,'2020-01-19 05:59:13.103219','AIe9_BGlY-BaOO_aND3JZqxJBS1RTEHUIk_gDQ9sNsamIpH-BcGgwQhRZ05KJ4Fed8SlOtBsIX0NsQRKS3Au0dfOMHVnvPcmWpltGHgXJKZ8-QLdRpg3KGM','Nestas Home - I came in at 10:08pm and was seen immediately and treated with great care. The staff, Stephanie in registration, Dr. Daniels, Nurses Rollie & Leslie, Radiology Tech Natalia, were all am',3,'',10,1),(778,'2020-01-19 05:59:13.152552','AIe9_BGErQpX2pRNZrXBy5NOsH0eTUf6H_J4bXuw68oLzYx10GEcBtYp09qalwzKZip9YfoF35Z8H1ZDqfyHcmJMAPlb-kM1ZH7iINlooZo_VepdZgzBPTQ','Sarah J - Fast service. Came here after work, so free snacks was a plus in a bad situation. Nicole G the RN and Dr.Yusuf was awesome, made me less anxious about coming in. & Ricardo the tech was funny',3,'',10,1),(779,'2020-01-19 05:59:13.201660','AIe9_BHkHJRvhG8n5BjqdcMSKR_FXMFFfkONu-z4K7uSNTgtJk7GjGQrKldqVuzuAklnpjM8hD1AZ5m_ZF4vsG_PjAm3L0NQwaR9V5ViWUVYBMdMBvJA98Y','Terrika Turner - Leslie, Rollie, Nantalia, and Stephanie were all absolutely lovely & awesome. I arrived in so much pain and they were quickly attending to my needs while making me comfortable at eas',3,'',10,1),(780,'2020-01-19 05:59:13.251064','AIe9_BFL0OZrFaHgoJtqifT1GHrIbqdkzIzU7VJEG05Or9xj_uVIMbE5snkKqk0vJqqR0nAroH91Ad5JFzJ0fpycxaeT22-CSmeFqzD4D96BlTXUA1_FCd4','valerie dettore - I want to thank Memorial City Signature Care staff for taking such good care of me. Doc Daniel was very personable and competent, \n thank you so much for such a nice stitch job! John',3,'',10,1),(781,'2020-01-19 05:59:13.300291','AIe9_BFu3rdicGrPrzdyu4PDXmqM7kN-RwEKi3q4jtMEXeSwVICpLuo5TH57rglL6jk5sJG-6-d0TDngZ4uajYMltFZxUv2t8y5ljAr1H7YOGPsfCNwWfVI','LaSable McDaniels - Ms.Tobie was so kind, the entire staff was amazing. I do not go any where else!',3,'',10,1),(782,'2020-01-19 05:59:13.349600','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMSZ4NJ9AKejw-jdMEU4UNW8GMgjwnHAXRwF6zu2arNgQ-HBzKDpeOfmtzdnie77CwGMcB-MjQBCI0ho4F1TaLhK2f6Y0','Alexander Taylor - They get you right in. Let you know exactly what’s going on. They make sure that you are comfortable. They show concern. And they make you laugh while you hurt lol',3,'',10,1),(783,'2020-01-19 05:59:13.398883','AIe9_BHR7p0hPy1flx1br0TYdEUB4SQunuaEEy2R9z9x4US4mG6JEgQGBjobZNTVmluEFKceTNzF6p-Ctvxi5m9mZp9g4iEDktp-gvY-jyMPU5JZCHW7NIk','JuWanna Smith - Very friendly and offer snacks',3,'',10,1),(784,'2020-01-19 05:59:13.448048','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2zOeuAmBvrhxM0zaPXoBA8Wmj-IjO5WVShofHDM7UpqjCpUnEGm3eOZ1tslXAdORyRB7zRXuPpyr0jvLTr315TpERhFg','Bianca Olivo - Dr He, the tech Dania, and the receptionist Ebony formed a very kind caring and quick team that was able to check me in get me diagnosed and have me back out in record time. The staff w',3,'',10,1),(785,'2020-01-19 05:59:13.497322','AIe9_BGlY-BaOO_aND3JZqxJBS1RaPwjIjhC8q2582oQXsqWkH-72LyPlIcXQDppnj4j78ef4x4OT7GvX6r-BRTPOp4mXMTmgIvqgqlmHd4I1z0AEjo5ldE','Jessica ONeill - Ebony was very welcoming, and Dania was professional and sympathetic. The doctor saw me quickly, and clearly explained my diagnosis. It was a helpful, professional crew. Thank you!',3,'',10,1),(786,'2020-01-19 05:59:13.546594','AIe9_BFu3rdicGrPrzdyu4PDXmqMn8bCgIWshbyCBsAHiOWu1Fxo7CeHX0Gax46jkWjRjd1eTAh9KlntN1_dr4h4HPaehyiv5DnR-QUuckphhzeRvyH0-sc','Sheila Flecha - I went in to get checked out and follow up due to a stomach illness. The day before I went to a family practice and they gave me 2 IV and send me home with antibiotics and nausea medic',3,'',10,1),(787,'2020-01-19 05:59:13.595906','AIe9_BEHZ7lh7y1sP-UInhkpmlIpqp3JxUb7MkPRsk0tJQZ5JvhbbYkpPEce3vGd6-gmAOxYlOqDvyv8xB7epDHAFOcVsarzrnKNfp1GNtQUKbimc0tMGQM','Dakota Bloyd - All of the staff was wonderful throughout the whole visit!! Thanks a lot to Dr. Yost, Kara, Gunner, and Courtney.',3,'',10,1),(788,'2020-01-19 05:59:13.645090','AIe9_BF8X4EpR_fF6mwcYdso9awgzub0HYBp7Q16mw6gudvyidcrbEbETFVxsL1IMgBB9pv_23Yje5O_1zvhZf9bzKXRfRsxH3vfKOwKXNZNYBJSLI5zUjQ','Jennifer Whiteside - Mollie, Dr. Yost and Tobie were awesome!',3,'',10,1),(789,'2020-01-19 05:59:13.694363','AIe9_BFDvtvCY6mNmVUeGBiBb7S594y2EHC2WXjq-xNNo3x-i1n2UBeW_b2NUEUPwBl0T978_kTHnjs2yVhO6eK3hYW0lotkz6GcXUev5DLHrcWDbvmByx4','Kaley Padgett - They were quick, kind and gave a discount because I am a local teacher. I will be returning again! Kara, Courtney, Gunnar and Dr. Yost are fabulous!',3,'',10,1),(790,'2020-01-19 05:59:13.743691','AIe9_BFrHfJ2dmEi-Vy2qpFFGM-S8vLIguuGRSNYDALQy6tOzRXm-w-YrsBH3BMSfmtYkvN8LG-KyxlR5au7Li7wjuKKK62HF2Q9ABMixBoEvdw2L6zAhW0','Ashley Mills - This place is awesome! Chris was an excellent nurse as he tended to my every need and was very informative. Upon arrival I was greeted by the friendly staff, had little to no wait time ',3,'',10,1),(791,'2020-01-19 05:59:13.792864','AIe9_BGlY-BaOO_aND3JZqxJBS1Rf48IuuTm-m0G0PFr7eLLVL9y9WYFCh_RVEACjtI1njfImZoaNx5YJ7lNJv3FptJTNG3Evn4MT7w85boY76sN3KBZ2AQ','Stephanie White - Great care with nures Kristina, Scott,Quyen,Genesis,Ding',3,'',10,1),(792,'2020-01-19 05:59:13.842192','AIe9_BGhYIk2KhOdF8fekWDvq8JUdwrDgpIZgxY_pBOuzMSXsgdXvYKyPtcLvTfwoJxth8T_67NNpVUYzw4A1ifzUNJHL8CTYp8mqStpaaZ5bicfJKxKBZA','Bernie Garcia - None',3,'',10,1),(793,'2020-01-19 05:59:13.891438','AIe9_BGTHfLB7ZAtvlQmidaL-PvDCmAllYo14H1X-lrZk4aAFhny0Rl8bBGJ3ebc6NGOkslXUt41mND7uFUV9sT9ar4fIrbvULs-UmTatPurY-DSQ_DUO_E','Ricky Aguilar - Hands down the best experience I\'ve ever had with an ER... because I mean, who likes going to the ER, right? Professional. Clean. Attentive. And all-around stellar work. Thank you to ',3,'',10,1),(794,'2020-01-19 05:59:13.940865','AIe9_BGZuRKHeO1iYrcf4B001kE24jyZ0vKowvRq0_wpkfT4JQHzXZvnBTH5zAuPA7VgN6raI2Cxx8YjtS9e8_uT2Rkg9WLBdjhlD66FBYJ06JTunk2eKbE','Desirae Weise - I came to Signature Care after being in pain for 24hrs. They have amazing customer service, especially the doctors. They were always quick to help and give me proper care. From the fro',3,'',10,1),(795,'2020-01-19 05:59:13.989974','AIe9_BFu3rdicGrPrzdyu4PDXmqMMnL-iDQLrq4FY2G6ZcSgJmIl0DVYyyaw4Mw3lvhUwasJ85mEUXiTfBVt9tfI_j0DG1UG32FdXb9UH_Zdz2ewiG5EYHM','Chuck Bird - Huge thanks to Dr. Miller, Chris C, Kimberly, Cecilia at the front desk, as well Isaac and Natalie as well as the all the other staff took great care of me after a back injury.',3,'',10,1),(796,'2020-01-19 05:59:14.039297','AIe9_BHkHJRvhG8n5BjqdcMSKR_FgIAjkBkiOY16i2dgOkc7oaIkGIC6MZUVpt3IqLi0pqWD6TSTIl_1Axs-yETduhB-sDtuuH5YI2QhJg4uYGp_O3G3W0I','Kacie Gilmore - Went into SignatureCare for some swelling and dietary issues. I was immediately taken care of. I was in and out within 2 hours considering all the processes I had to go through. Christ',3,'',10,1),(797,'2020-01-19 05:59:14.236294','AIe9_BHVBnWjBJvk55vq2QEm0wl-Y6s6I9shmevwrYou7E8fLd3t-J6A6Yw8nNIXaeWROXabReJvrTxYA_-m07AvZ6RiMmJuYgpqI2cmshYGNYCpof3EsIA','Slime Slime 101 - SignatureCare will take care of all your needs. They know your time is valuable and get things done in a timely manner.',3,'',10,1),(798,'2020-01-19 05:59:14.285595','AIe9_BFLWlqwz3qGBnCfbAsLD0lV6GTvgF5eKWqA-ZxdcpgaTXeDWbP_lW72DUwWYW_IcdLFusvxBVpqly3poA8LlAGYqZed4cy2mHcrrAjCyAXkWyMOon4','Patrick Bailey - Quick and efficient. Very helpful.',3,'',10,1),(799,'2020-01-19 05:59:14.334861','AIe9_BFL0OZrFaHgoJtqifT1GHrI1rhBO_bR0oSYbLMb6VZ_aOJRaSAjJxppW6wdSqZ9OoVU05sf0SksIM_xrQjr2wjNAR5szWcKwAWwHkyJ8bDo3noWx08','Samantha Galvin - Amazing!!! Fast service, friendly staff and a clean environment. The best by far.',3,'',10,1),(800,'2020-01-19 05:59:14.384163','AIe9_BHR7p0hPy1flx1br0TYdEUBJ_T3SJEeNqio6q1X4d4vKz1tor2ahGDEtvdxI_wcOkCkcAgjePB0TnO3G6xRNMovcc9Kj-nNIAGzzIJK0G3EylQrr6A','Starlett Carrier - I can’t began to tell you how caring professional and attentive everyone was during my visit. I checked out of memorial Herman and Beechnut due to the staffs rudeness and lack of ca',3,'',10,1),(801,'2020-01-19 05:59:14.433394','AIe9_BGhYIk2KhOdF8fekWDvq8JUWwPH6K4mwu_TcI0JJJt4oYB3ZH8e8N_-uO8yZFUD946kv2Ix4SVOaKSrA8nKza-TMR2T50kTJRrfwwGzmIh6qXli7eE','Amanda Reenan - Came in and was immediately helped by Kendra. Very nice staff and Dr. Hermka was thorough and quick to get the results.',3,'',10,1),(802,'2020-01-19 05:59:14.482680','AIe9_BFqh_zr355jzGaEpH7666zc7OjTmS7Zd1kGWhMLgtrHNeu03YTM8jwhXz5xyfuT_7WnqeFQ36HzXEkeAGFQ2Pg8UAUSrNcV2r_nsCF-p6maU1aprDw','Bailey Todd - They were so nice and helpful! I felt so embarrassed about my injury, but Fatima, Sarah, Dr. Henderson and Daniel made me feel at ease and like it was no biggie! I’d for sure recommend t',3,'',10,1),(803,'2020-01-19 05:59:14.531909','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fai1-nKDBdeYnbKtEX_a7rYsXHdbgYxSS-bEvqek961JWVVfphP4DELAdv74OzWPjCglNiBqE3vL1E5gS7_BVLRfF0h4','Terrie Lewis - None',3,'',10,1),(804,'2020-01-19 05:59:14.581120','AIe9_BFhqAtkXvUqdYNeMuBBGjaAGfgxptcFuA2PKKGsIAL_bqJIfEawcKLc_puE8fvTAQfirbES5H297iQGnzN4TBD9W9vr4ZH3kt9fDTS2AMjXLq0QFFU','Christian Giles - None',3,'',10,1),(805,'2020-01-19 05:59:14.630449','AIe9_BFMK6FB7k24ANEBV5CospTTGk2ZzyvEYb1xtNRtxvpUl5vfGX4tWZAZ9PdhvImePwb5bXGXeGkZBbASZV3Xro91xUK2HVMEm4xUL4EFJQVGfuFKKhY','tyjanae smith - Very friendly staff. Carly made sure my check in and check out time wasn’t prolonged. Dr. Akunyili diagnosed me and prescribed me with the proper medications. My nurse Irving was funny',3,'',10,1),(806,'2020-01-19 05:59:14.679703','AIe9_BHkHJRvhG8n5BjqdcMSKR_FSkjQh5K2hfut7VM93HLm_WZcC0hxZo9JT41LyDZzEMvpXte8Kz_WxVITuuvS2P5lmA3UNKFMAD4hxEMMo2qe0tFwrq4','Adrian Pardo - Amazing place! Their service was excellent and all their staff were very friendly and professional! Finally an ER that we can trust and be seen very quickly! Receptionist was also extre',3,'',10,1),(807,'2020-01-20 06:09:32.417547','AIe9_BGTHfLB7ZAtvlQmidaL-PvDCuyJiVKUnE-V2-x1p2732lcsK18r1Aj5hg5YHIUvLnfUjKEaPbBAc6j2fuKtsfjcr_Go7XUNnv9IfS9J_-SNU1mn_Ks','MarissaJuarez11 - First time here & they definitely brought us to our room in less than 5 mins. The staff did great, especially Nicole G. who was very sweet to taking care of our son. Our doctor that ',3,'',10,1),(808,'2020-01-20 06:09:32.543177','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHuxhlhcsq9ZwPozYjzHdlYYdY4VxtKKIfmASrXMJE95-gJcztTh6P7tR0d4mUlfvOudogFJ4MiexR1v5BtyYD3TjPhI','Anthony Vergara - Great Staff! Came In And Checked My Son Out ASAP! Loved The Way They Took Care Of My Son! Totally Recommend! Best Nurse Is Nicole G., Dr. Stevez, Olusola S, Dustin H, & Tim M!',3,'',10,1),(809,'2020-01-20 06:09:32.653230','AIe9_BGlY-BaOO_aND3JZqxJBS1RSHcZVpj38ctsKYdxzDBhbYnXgetnRrpP08BLn5l9lG7nTKt7Dy9A67bFnHrcaFhtuuteZ36VIRI9xuAsoUwuJDrDTf0','Joseph Balita - SignatureCare took care of both my wife and daughter when I had to unexpectedly bring them for their illnesses. The front desk staff Kim and Cecilia were both welcoming, nurse Nicole G',3,'',10,1),(810,'2020-01-20 06:09:32.751770','AIe9_BG84YPnR8vhxeJfV_lAYVNiQsp0vJ_XP26Bxs2MMrHSGQFOEF2Lk20DUkpoxIteQQmOqLeAj1g9iO-7lHV7HJ_9dlBL-OrR4F4LYIjQM-cR84zKqd8','Alexiya R. - Rebecca, Dr.Kimball, cat and Remington, Patrick and Morgan were extremely helpful and Nice throughout our late night visit.',3,'',10,1),(811,'2020-01-20 06:09:32.800992','AIe9_BHx9wW5OAXpNIH08blLdli0AwTpHxA1f25Xj7VAVsvIbQtEsIZuGwXS2MlVel_5wJSJziEFM4ZP3N0OMFp9H0B5oUSx4DSht5_pUqT9BSTzIiFJpds','Inga - The Yoga Goddess - Excellent staff. Attentive to my stepsons needs, and very thorough. So grateful, thank you',3,'',10,1),(812,'2020-01-20 06:09:32.850343','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2a2lqYpflWnvrilUtUvjPgJdzxeVfQRN9FDP7WjmirmyO8Ku55STxXJsZqAeNRQJFxJJS8Zn5oOhwzeH63FZRkicjAVk','Zubair Nawaz - For some reason I’ve never been to emergency center before. The other day I had a bad ear infection and I went to Signaturecare emergency center and I can tell y’all that it was a good ',3,'',10,1),(813,'2020-01-20 06:09:32.899518','AIe9_BHAFUK2tNBZL25dLQ0jVdh0Na6nQC_a7EeN9sAweZibfpJTHCbRtUd1V1B9SaAcuFz2FfzdkzmEBNRoU0A2H4l21IRIi528Pr2XqTmud-1ZahuqA9M','D\'uane Merchant - Kimberly P. and Cecila Z. were kind and patient as my little niece chatted away. They were not rude and very accommodating as we waited for my nephew to be seen.',3,'',10,1),(814,'2020-01-20 06:09:32.948729','AIe9_BGlY-BaOO_aND3JZqxJBS1Rbr4Qz6HVroBiJqs8XDMScym7i-VmJFPundgE_FFW14RumYf9g-yrIG9YR0-ZueBsgBH8W8m8nT7wv07a7tte9bXqh9A','Dyanira Saucedo - Just visited this Emergency Center, the service was super fast, and the receptionist Kimberly P. and Cecilia Z. were super nice, helpful, and friendly. Very satisfied with treatment,',3,'',10,1),(815,'2020-01-20 06:09:32.998032','AIe9_BFQ5F7lhNP5_ppaS_sKelW4Q34iyg4siNkUKJ5vbQ5kBnjsYYd90xCokwE-FqpyIbGYXCyJesHVc6eolztqVgX9D9u7Xw5IHoGbuSRvYT2pCCavjUM','Kaylea Rucker - Lucas and Jennifer they where both nice and sweet',3,'',10,1),(816,'2020-01-20 06:09:33.047298','AIe9_BGZuRKHeO1iYrcf4B001kE2s_2E-6s77jkn5oVAi2j-zaoTzoM4jBZrHHPl6AGhDl7VLUAUyg6aJeMGPUAlOvrRGih3kt_rBzpzpFOJ9yBhEUQpiM8','Chantail Burns - Lucas And Jennifer Was Extremely Helpful And Dr.Henderson Was Amazing And Very Helpful',3,'',10,1),(817,'2020-01-20 06:09:33.096588','AIe9_BF9X3094ISxKFNbAUDe3Xegm8IZbg-V-Z4S2rZ9153Y277hh_zFVRJZLj6xsyL7zhPgfRiZG2ZDuBCImrxGXQtHU9QsVS1uLLZfy-ZUjEOugJDTy34','Rebecca Smith - Ebony is awesome.. She is so friendly and welcoming...',3,'',10,1),(818,'2020-01-20 06:09:33.145874','AIe9_BFMK6FB7k24ANEBV5CospTTkSDvsy8vsp14LThrNaqUWLqIUV7RT-46Ao2QiwdUcM6UlcU8ff1mzFum7tj1UOHHnc6yEOKT0GVe5WPWNEzJzQfKljE','Amber Molina - I was checked in by Kendra and seen by Dr. Vakey, Jacob, and Victoria. Everyone was so helpful and went above and beyond to help me and make me feel comfortable. Would definitely recomm',3,'',10,1),(819,'2020-01-20 06:09:33.195229','AIe9_BExcxslmE1rr7n5jMcadSKesqyGpklRcIyRNXLn0m4ZPLhCR4i8LpNzjeOYzgZp2VCUBo4MxTr-mxiUDNJxEY8ASC4FrAaTfgO3eMEthHcb5BvsgI0','Bill Iroh - None',3,'',10,1),(820,'2020-01-20 06:09:33.244398','AIe9_BExcxslmE1rr7n5jMcadSKeB4VTK3PfZv1MFtJoinaNNuBn2krl4pi0W0w-ol0lihEsyIZ25BrjykHEMFcg5tyYPabxjJGPFi_FWfRhYpXdttM3WDM','Bill Iroh - None',3,'',10,1),(821,'2020-01-20 06:09:33.293886','AIe9_BFhqAtkXvUqdYNeMuBBGjaAE-SI8KU0KmxmBpIA0L8Iujklkd9aKYFXCx_bwfJQVbZzJg8ImZ7HFHR2Bi_zzvS3TWLBgq4PmwYFUP9529hACwz8h8M','Kati Donaho - They were very friendly and the check in and care were both exceptional. Thank you Jocelyn A for being so helpful!',3,'',10,1),(822,'2020-01-20 06:09:33.342979','AIe9_BGvUJd9etQojwpjZIMsiFneWiiFig8jGI55jlujVGfJJChf8G5ujMjucmIVj0Pk2H4BoODRpjiJ3sHA2zIu5GKauSO1zyASj_BfBRiED6gNFABlFsU','Justin Mendoza - None',3,'',10,1),(823,'2020-01-20 06:09:33.392229','AIe9_BFqh_zr355jzGaEpH7666zc_WPeTqS_euu4pbGBTQ-S27p_BHDmBZMaT6IZ1CrlUL5LUcuNjlIaCGmbrUw5KTkOg1mxsdnpJgvW9oi5-xYQEOosXhw','Beverly Edmonds - Jocelyn on arrival was very helpful and lead me straight to the back to my spouse very professional!! \nNikalea the nurse was also very helpful and professional the whole time there. ',3,'',10,1),(824,'2020-01-20 06:09:33.441484','AIe9_BGErQpX2pRNZrXBy5NOsH0e2XnI4I8bIlfk44RS72OmCviwttw3tdClpa36J1oUshiUCgGX54xvzEm7xrU63CGW82nnoLMb6sI0Ld_2NWHYVglTLhU','Iesha Kkay - The staff was great! Joycelyn nikaela was great at the front desk it was very fast and friendly service!!!',3,'',10,1),(825,'2020-01-20 06:09:33.490694','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2DHge00r28oEZlKXxISYfBZnODfjkCCDi9L10_Ca0WwEEccuvgBrXaVmY0hzQ3bzMHKao2--jM8-nI3hYi9Y0fMsEXQg','Keeley Thomas - None',3,'',10,1),(826,'2020-01-20 06:09:33.540071','AIe9_BEHZ7lh7y1sP-UInhkpmlIp17n6m9ahaWTETtbBl9ouQiVxMvh3mVdMCPgYN_tIZb0fN9BLNKosh4kRX8hNaYeW6RoCjQG7hLNjgYsjbijU-8aZ3UE','Garland Vennus - None',3,'',10,1),(827,'2020-01-20 06:09:33.589122','AIe9_BFmRFRFwJGRfUDOW8jG3rXn9SI9ofo6Z0J7Y3MjN4ToP9GLnAqtmYdAWWtSBUlc7a_ZL8lRdTuOvr5OuQTFwl8htHHjAx-0rqi7bkPiBC9fxZXp-mQ','Arianette Campos - This is one of the best experiences I’ve had at a clinic. Every person I interacted with, the doctor, nurse, rad. Technician, etc., was very kind and helpful. I worked with Kendra a',3,'',10,1),(828,'2020-01-20 06:09:33.687847','AIe9_BHkHJRvhG8n5BjqdcMSKR_FdJTylgPFMGX2oficMJtP_heuN_VR-BiE1ElPtN7yPZHGkHahDiU6RVOBv4XRgLiK5v2j30MBN_Nr5qrRDKZP8Ie5DX8','Dejanae Eleby - Overall great experience. I was nervous due to the pain I had but the receptionist Amy, nurses (Regina & Natalie ) & Dr Henderson was really helpful & informative.',3,'',10,1),(829,'2020-01-20 06:09:33.737164','AIe9_BEHZ7lh7y1sP-UInhkpmlIpE3TR40YIA7z63etyqSFwlCCnVwYU9rh4QSYp_UmW2dkaMib6UwGst9q8cHzNfuOO0Yo9Ou0YOqDqgwSBCSLC1s_xKbY','Morgan Kingsbury - I had a great experience! My friend was able to be taken care of in a timely manner. Kendra, nurse Jacob and doctor Vakey are very professional and super nice!!! Would recommend com',3,'',10,1),(830,'2020-01-20 06:09:33.786299','AIe9_BExcxslmE1rr7n5jMcadSKedIRV1t32Lw0FpwLTakinQ-Fyq5SsMUX7LgxXW-P77rUoF7MBvV29GUdyBQQI5Y5Pht0k54hwWPFq-MdsIhLX7WlLjno','Jennifer Aguiluz - Excellent service and very helpful.\nRegistration Jocelyn and nurse Lee were amazing.',3,'',10,1),(831,'2020-01-20 06:09:33.835650','AIe9_BExcxslmE1rr7n5jMcadSKe7Eptm1faIpdkoEf6-nRrTecN7xt_eSaSp2qjSM8fImgw-4QrzE3D-3p-_ln5Vot-FWYRxjCSqyfwNKttv-61rIrZVlc','Landria Manuel - My experience here was the best I ever had at a Emergency room! From the moment I walked in the door Jocelyn was friendly and super welcoming. Before I could finish registration paper',3,'',10,1),(832,'2020-01-20 06:09:33.884919','AIe9_BGIy_plKfaZrItPyyQZNLvsHDrJ0QJeltTCyWsArxMkzmyDdrdMK6hXja1ZtL-mfIJ6qa6-JJYOsiw4HF9AKoezUzJmex4ybWv-Pqj6BDfo0daMD0U','Erica Jones - Everyone was so kind and attentive to our every need. There just wasn’t anything they left out. Front desk staff Carla, Kim and Linda were welcoming and helpful in getting us in quickly.',3,'',10,1),(833,'2020-01-20 06:09:33.934134','AIe9_BFhqAtkXvUqdYNeMuBBGjaA0iIEAkXxKGrnfG_oSya1priBV8x9Gm4eFgT4Iv1hnIvTs-mZpnMZ8RuxlCQFxgVfhEtJB-JYxuUwiDh-QNyp61GmL98','Courtney Mahoney - None',3,'',10,1),(834,'2020-01-20 06:09:33.983531','AIe9_BGlY-BaOO_aND3JZqxJBS1RHki0iLwAufMCzRhTEiJDkK9c9zN97zHoo3CYrdYFum4MIScdtlAaNdcFRcEK1sH3M3Loo10V4ldo7jC3GhjSj0kf3jQ','Isaiah Green - Great environment and very clean. Lucas, Carla, Dr. Henderson, and the rest of the staff were great and very friendly.',3,'',10,1),(835,'2020-01-20 06:09:34.032748','AIe9_BH3gZxYpIxBZcqAOO5HuBVkgAHih2pEyt8NT-xrPKDFinqh8TOxntGFMUYAiRnvrqRfI-kB633O4DDVph_CRmDSmT4uvdufQxxFPFOd-VPT1LvLC4I','Andrea Elizabeth - Kendra was great , very helpful',3,'',10,1),(836,'2020-01-20 06:09:34.093142','AIe9_BExcxslmE1rr7n5jMcadSKeGs2NiTUzYofGsBLEKEqvYuWvG7SQGa25oWsAD1dn4cMDtv_A4Ouc0m-tMoHQj4KAbF0EmVLxM7SzaEQsaE27GPkd5Yg','Jeremy Solis - Kendra was super helpful and answered the questions I had very clearly',3,'',10,1),(837,'2020-01-20 06:09:34.153458','AIe9_BFL0OZrFaHgoJtqifT1GHrIJtmfWp0WL3lpucMjHHNmz2k0M1H_Ymcps6ycWSHEBcXotaf9cToxXKPdVQc3LPMwsqMN-Kfsjkjq165w2yD7WXUCiPE','casandra gulley - None',3,'',10,1),(838,'2020-01-20 06:09:34.202622','AIe9_BFhqAtkXvUqdYNeMuBBGjaAvtFhKvG-IkmyfxhTP2NHHIKYa2RnG72joe9Jl6AYBw8Q_hTMrN8RMZt4qGxJ-gt-2eUGtSGszfi55ZSUem-rgRvjj2I','Sterling Perezly - Dr. Ortiz was thorough and took the time to talk to my urologist before deciding on additional test.Kristina displayed her professionalism and extensive experience. Laura provided ',3,'',10,1),(839,'2020-01-20 06:09:34.252072','AIe9_BFLWlqwz3qGBnCfbAsLD0lVVOBuPYzJeKfQjqvteL_BbELmfTMsI4iUAkfopXgzNT6XwMxhSGgW_5X0grQKGzcSeWIGEKkbSYplZjGwPU9TzN7bD4w','Matthew Bohac - It was a very good experience and the staff was very nice and helpful. I will definitely come back if I feel sick again.',3,'',10,1),(840,'2020-01-20 06:09:34.301263','AIe9_BG84YPnR8vhxeJfV_lAYVNiimv6lMpHVPSHFzactOU44nQ9cQQaLJ6PizAa-bqY95mZnAefMawOXJVFCitP8rSWP8CWpV1ncrQf4pWPC8sA4qMBTjw','Daniel Munoz - None',3,'',10,1),(841,'2020-01-20 06:09:34.350616','AIe9_BHx9wW5OAXpNIH08blLdli0cOdj-MVuABEv3MKviUgkfZIVIwI1azT3v5RC1QZ64fDs9y6HE6HW9v94xfr_QDiK_er9_X-UCoUn9czUnXEDEoGBf8k','Valerie Mosby - My overall experience was excellent. Fast quick service and everything was very pleasant from the receptionist Patricia to the doctors. I recommend this facility for all of your health',3,'',10,1),(842,'2020-01-20 06:09:34.399867','AIe9_BF9X3094ISxKFNbAUDe3Xeg2ijv68ThLiW11tHye7gGnPogo2WYUCJ72v7TVpTn665BfYyB__u_K-5RCigDE5_KcrO29HvvI8hWoI7tC9PEw7ogr68','Melissa Mongroo - Efficient service by Jessica',3,'',10,1),(843,'2020-01-20 06:09:34.498368','AIe9_BFhqAtkXvUqdYNeMuBBGjaANbtUfaOe1T1e6s6objlKAr7bdWLIKciucpfABw4FTwranb-BFR2HMQ17jjKb4cGDCoYVc38UmPWxVHnffaEMB4AW3r0','Farah Sahajad - Amazing staff! Quick service! Jessica was amazing at the front desk!',3,'',10,1),(844,'2020-01-20 06:09:34.572418','AIe9_BHx9wW5OAXpNIH08blLdli0K8eF5vCWzgFfmMwS9mjOx8wElhIvwnIfbPQZV-vav6KcCBJZpI-N28Ep1D0mnInAFODJ4ktTD-YAMqQ0dBVMfRQmAf8','ana alvarenga - In and out . Very fast ! Place is really clean . Love the staff, Ebony and Dania were very friendly! Make me feel like home ! \nDoctor He , explain everything really good. I was',3,'',10,1),(845,'2020-01-20 06:09:34.670323','AIe9_BFL0OZrFaHgoJtqifT1GHrIXfQQxj4Z6xoEqAIm8FyKTfA-6tuWsYUj0dZexAhmDefUYW8OdVZGt1PR-iwhJwzSQVxqjBn8zYQmcNO5TBooq8868H8','MERARI GONZALEZ - Excellent service very friendly staff and clean facility Patricia and Jordan',3,'',10,1),(846,'2020-01-20 06:09:34.867874','AIe9_BHR7p0hPy1flx1br0TYdEUB6s9S0VWCTR_4suJjyDCKuaLWSeMbyDHG9fDqlmiIwhmtAgmDCZGzTsUn-IqNYgmXsmrVIjDOLUIuizsO_vR52S5e4oo','Rudi Marie Martinez - The staff greeted us as soon as we walked in and were very attentive. They were quick and precise about getting our friend checked in. Rebecca V. was generous as we waited in the',3,'',10,1),(847,'2020-01-20 06:09:34.966331','AIe9_BExcxslmE1rr7n5jMcadSKeYvTPWo7yP8cwc0Rxfoli9fOI3ntTVANWvS4OlIe9g4t1LZHjmvhpIegpsWYdwxQrKd89K2hwNtLTf2bODo4lQIuA4qY','Antonio Chong - Came in after a friend’s injury, Rebecca on the front desk was very prompt to assist and get him set up quickly. He hardly had a chance to sit down before they were ready to help him.',3,'',10,1),(848,'2020-01-20 06:09:35.026725','AIe9_BFqh_zr355jzGaEpH7666zcRNbFYpPLZjAp_MnV7BdarfQrblEGQi9t-eZrY2RB4NZv_lpGcc8G5i5GhQECCeN_2WG6TEtW_MsEHPMRSjuKC76tcMM','Elijah C. - Friend busted his lip and so we took a late night trip to SignatureCare. Rebecca V. Was working the desk and was very helpful!',3,'',10,1),(849,'2020-01-20 06:09:35.125316','AIe9_BFFcAiX3_kRXfnRLgvL31Hri7whSKnX7Bl9KiN1RgK2uywKJvzFYSHlspoKiTnFA5M4cCYOgFL5vFCWK6ZSVgNYl6g2Mf238xFe-ixk9hQHl_UdTFQ','Sophia Pearson - They had really nice area for those waiting and Rebecca V. was very accommodating',3,'',10,1),(850,'2020-01-20 06:09:35.185696','AIe9_BExcxslmE1rr7n5jMcadSKeJt8PUJZ4tqp03PfV9aW9zWVHVxog0RT3HkOWL9bNk4r1anDs5hOupuL2NETQsfrmYy7k2j9d2Wl6eOs6MiaGuGLvOL8','Destiny Salinas - I want to say thank you to the team at SignatureCare! Ive been to the location in Montrose. This location was down the street from me. I came in with swimmer’s ear. Painful! Came in ',3,'',10,1),(851,'2020-01-20 06:09:35.246009','AIe9_BExcxslmE1rr7n5jMcadSKelpMABbWJ7l2PR0GnakpIys43oy6v_T9O5yUYKyEWEMs8Z5MYajfwdjls_2epRm7wP9tVd7bYfy1Bw8PwgBqkajIGbG0','AARON VILLARREAL - They were nice here and took care of my brother. Thats what was most important to me! Will definitely come back if we ever need Emergency Care again.',3,'',10,1),(852,'2020-01-20 06:09:35.306644','AIe9_BEV1VP1woYvuPRixSBHlWg4-KgKSxIOS8HKLlFXTRGfmqYTrcYKthvrYs5Wdf59OSq5L2GTli6iiLZXJrIS8seqGeI3MG0f60T1e3UOh0Yv1b9iY8o','Yusra Mumtaz - Came here on a Friday night since I wasn’t feeling well. Vanessa G at the front was very nice and helpful. Once I was in the patient room I was greeted by the nurse Nicole G. And rad te',3,'',10,1),(853,'2020-01-20 06:09:35.366784','AIe9_BHVBnWjBJvk55vq2QEm0wl-NcJhFqg71z68q0S7DeBFqEbp9_Q5fBUa2yQzuCZiuwJ3ea3tcp8q_fSeH-OfVroldYX7qFjuqKJv-OmWg_yY-hqXM8U','Eduardo Villarreal - None',3,'',10,1),(854,'2020-01-20 06:09:35.427173','AIe9_BGTHfLB7ZAtvlQmidaL-PvDBfsB6QRxmMQ-0evMkZNB7MYQPT3FvWSUQsDYxl6xqmlKXKtbHdX3x0TxV11GJeL_68vWENx67RKihi6XI8cEI4aUHWo','christina villarreal - My son had severe eye pain but it was coming from behind his eye. He is 10 and it\'s a big deal to him. As soon as we walked into the doors we were greeted by Shania. All my ques',3,'',10,1),(855,'2020-01-20 06:09:35.487503','AIe9_BFL0OZrFaHgoJtqifT1GHrIwwqor5ZynawUAXZF95G332VdijBeDpI1BJmZxOesnvf2fkVjrVMJCvPcJgeqoq8wlhwgByHI13lDZx9grYIxjLmloPA','Ava Rochele - None',3,'',10,1),(856,'2020-01-20 06:09:35.547949','AIe9_BGTHfLB7ZAtvlQmidaL-PvDxWUqrHvI2ndGwODpBpTIZCUpumccd414Q0E-qXGVkyIzIwDRfzzH-qf6DB8vKuTaRz2_QEarX2hxzp8-flKAnWFsMS8','Brenda Drew - Awesome place! The staff is very nice and there\'s never a long wait and the facility is beautiful.',3,'',10,1),(857,'2020-01-20 06:09:35.608365','AIe9_BFhqAtkXvUqdYNeMuBBGjaArUiWVAvpQTV9Dl2v4-7df9YjNj9F1Z2QX9hZYHt4XugDkxHW8jFwWPXGUDleBLUaHed7IqvAVr7pJkDvpCOoblJi3Yw','Jacob Wendel - Great facility, caring and talented staff. They took excellent care of our 3 year old. Thank you Shania, Kim, Audrey, and Dr. Mauldin.',3,'',10,1),(858,'2020-01-20 06:09:35.668715','AIe9_BHR7p0hPy1flx1br0TYdEUBiBXiPaifZw4GVcnS9ivVAFdaUEGaRWUwoTItXT8SVipZGkzAnQAxq8FkAaeX31xabi2tZ8p37ZxOl6To7wd8jnx9RcM','Ed Parker - Dr Huerta, and his staff Krystal, Cy, Audrey and Maria were ALL TOP NOTCH!!!! Very effective, very courteous and professional. I will definitely return. All Dr Offices should be like th',3,'',10,1),(859,'2020-01-20 06:09:35.728484','AIe9_BHZM2k_MpOhRgkb8w5Bn_urPRNHxRn40MlyemsabP3NiW2ZrpsCvTuKuJYCUW59BDPAmV3VNxeG8YPOrOIA-hTC7wIOPrd4KkulEbWDmLalpYPZXG0','Lisa McDaniel - The South Austin location has the best staff. Amanda made sure that I had a room immediately and made me a priority. Everyone had an upbeat attitude and overall good vibe. I would go t',3,'',10,1),(860,'2020-01-20 06:09:35.876940','AIe9_BHx9wW5OAXpNIH08blLdli0m8WRpDggcC1C2GiArwadvVZa98Vj4TnS9gSaS_eoINWzoo5ncvijoCQgrfyErs7CGNtzFJ15OEMuqSvu8mIMVyFPruk','Ivar K - The complete process was smooth and time taken when in emergency was less. The doctor was approachable. The other plus thing is when without medical insurance its very easy to know how much i',3,'',10,1),(861,'2020-01-20 06:09:35.937485','AIe9_BEV1VP1woYvuPRixSBHlWg4yE1XZOn8QhkMpOCnmBf4uJaOAdwkjAT7wvPuUnv15YyUTRR7WMpFFV7E8SzD53i7kva7S4B5SOXwI_6BVE7jeKJTGPQ','Tina Nelson - First, the receptionist was so kind and professional! Sindy, Gina, Marone and Dr.Wang are the BEST! I know I was not dying BUT I was uncomfortable having to be taken to the facility by m',3,'',10,1),(862,'2020-01-20 06:09:35.997706','AIe9_BGErQpX2pRNZrXBy5NOsH0eA-YmyBcg1Gd41MLmOhz2upKyWOlYuuRv4pJOjBKO8QVwBSzpRxouJO2OlisHYXozeKjtBCp6_OyY7hjtdItnVZeS094','LGerardo solis Gerardo Soles - Good its good doctors',3,'',10,1),(863,'2020-01-20 06:09:36.058098','AIe9_BHVBnWjBJvk55vq2QEm0wl-jZ6FCS5cZ26uXDoHlTbYV-yxuZ3nwnRi6Yu7W86iViIAOYnoZXUzwAQ3lxyFQSEUTi_AbZ6wnaOdJrZMBPamQrYEPRE','Rechelda Stewart - Awesome Hospital love the staff n the doctors, ur in n out n they take care of u n your family , hands down the best hospital ever',3,'',10,1),(864,'2020-01-20 06:09:36.118478','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMU1VOL9Zea5Wcf99vEWCEkO5ZjfOKxlxz8DZ6SblDJBoPjqv955yn5OcSwUHVX7m-Vg6WOspTcvvJ8oq-b9HVOlRQcFs','Josue Ventura - I came here to check up on some lower abdominal pain. As soon as I got registered I was tended to. Nurse Kayla and Jessica treated me well and asked all the right questions to know wha',3,'',10,1),(865,'2020-01-20 06:09:36.245488','AIe9_BGZuRKHeO1iYrcf4B001kE25aU06hclguc8B-cMOkpS6Ofa1-Ak_Oq8P3HZeJajcyC2wqg8EIIikmWd8Mzlroj_HzoTyN300ylbg6zsAUT68_X-pJU','Gregory Mcclendon - The staff here is amazing! Maya at the front desk was very sweet and fast with registering me in. the nurse that greeted me was very attentive and address all of my concerns. Dr D',3,'',10,1),(866,'2020-01-20 06:09:36.326302','AIe9_BFhqAtkXvUqdYNeMuBBGjaAVGrCtbpIGhqiRNzjqjpda6bsJrYnZW8GTsaXQ1S99R4BgPNLpSfLYDcgVQMEbkUWGnH_40Nnd62c5rdoT07Mt81HPhQ','Paige Reeves - Everyone at the front desk, nurses and doctors were all very friendly and professional! Short waiting time.',3,'',10,1),(867,'2020-01-20 06:09:36.375670','AIe9_BFDvtvCY6mNmVUeGBiBb7S5JSuAzUYV2CAdY1d2tJu3pl9RvT3ruAeY1Y4zcOzjZjZUqFMrztsYpj0MgGZKKaF2p6fSGJeN7T-tHjY_-3UVuP7W4Mw','Patrice Palmore - I absolutely love this ER! The team is amazing. Maya is very sweet and caring when she checks you in, The tech John is the epitome of awesomeness!! He’s great at IVs! My nurse was Kr',3,'',10,1),(868,'2020-01-20 06:09:36.424816','AIe9_BHZM2k_MpOhRgkb8w5Bn_urBefqLYciMwjAjF9j3quOCyZCKEoz0AOwIwU09qa1RIeHtTX1cTGv23zxSgQfG10xxK80J7wC5DFDahaezPQzDx278lE','James Arnold - As far as private ER gose this is one of the best, they really care for you.\n\nLittle to no wait time I was seen right away.I would recommend instead of a traditional Hospital ER.',3,'',10,1),(869,'2020-01-20 06:09:36.474087','AIe9_BGvUJd9etQojwpjZIMsiFneV2dt67fOa7wUr324V3ULUBmuRxJ-0xuBcwo8-wMhLFjBWXcKsBipqc92OTyrv7YImPTDdMnDMumGK4sm_J72c8f2C6w','Jade Nolan - Very friendly staff and quick service. I did not have to wait AT ALL which is amazing and everyone was so nice, professional, and gentle with my injury.',3,'',10,1),(870,'2020-01-20 06:09:36.523387','AIe9_BGvUJd9etQojwpjZIMsiFne06dom5O_tt8dntwr7cXK5Kdp2UKXdJ1H3-ftaFLWEJZNhWHL3M8OtDrvNbDaryzUmReyVF-9umhBSg-p0KyN-SVw_Kc','Joseph Matthews - Nurse Gina and Regina were great! Made sure I was comfortable and knowledgeable of my visit. Dr. Wang was really kind and got me up and going in no time. Tech Diem and Marone got me ',3,'',10,1),(871,'2020-01-20 06:09:36.572669','AIe9_BG84YPnR8vhxeJfV_lAYVNiUM3Q5jv0bVzdi72z6Y1BfMpT09l-G2Dj7fsCOXTUoBxK6kjC-fehnvJCPt5eIcGKciGW4gGSwXxgeurGWt_AAQbUg2U','Joseph Belcourt - The receptionist Itza was very welcoming and friendly and assisted me with the paper work. Technician Laura was very kind and made me feel right at home and she got me a warm blank',3,'',10,1),(872,'2020-01-20 06:09:36.621853','AIe9_BGvUJd9etQojwpjZIMsiFne6cWEhXGL_XIRoJd_twAr0i8YgRDuWrDSmXvPu5Cay6JDBRmiJvK9NZ8jJgLCb5oyMD4iBcJ-0I6_GRpSDE7EgXBJfIU','Natasha R. - I visited this facility for chest pain and indigestion. I was immediately and well taken care of by the team - Anastasia, Joe, Dr. Yusuf Samar, Brenda and Noreen. They kept apologizing fo',3,'',10,1),(873,'2020-01-20 06:09:36.671139','AIe9_BFMK6FB7k24ANEBV5CospTT2NyboNQD__jESPsqagD60-tK-M4KQQxiFaPhu5E9-l1fj9jVohqlE5A9rSGCYUhzWsX_3rx-my4BloSyfFShO9eLVoQ','Leslie Stewart - I was treated so nicely by everyone. Laura, the radiologist tech, not only did some xrays and vital signs, and was the first person I saw. She couldn’t have been nicer, efficient, and',3,'',10,1),(874,'2020-01-20 06:09:36.720309','AIe9_BGlY-BaOO_aND3JZqxJBS1RVpJsB1ZTMaP_nXAjOPEDwK9HlirMB7OUd_uvGEy6NNs_gSQ5fAqlrR0aRRNgVFlQbMZMnlkffYdP0fUU-z0bZ_m3niU','Graciela Gutiérrez - Exelente gracias Alvean y Patricia \nBendiciones',3,'',10,1),(875,'2020-01-20 06:09:36.769396','AIe9_BFDvtvCY6mNmVUeGBiBb7S5C3Jbo8k0dkCtOBGkmviyW53gSTq4AsrqBlwRackcmKluMyQNNfMe-x6W_PipXkgF-dorNpOK0U_RUyDqo7E89bIFovY','Cesar Gomez - Alvean and Patricia were very helpful with my visit and getting me the help i needed.',3,'',10,1),(876,'2020-01-20 06:09:36.818451','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2tlL5nchYTDkxoZ9QoVYGu90aJFr2EZ8Plbf6fOU6j0dSaZuaqZmERRD2lwB3LXcOvYnpiUPfVw6ZXkTEaypnrh7CUEI','Tonja Fairchild - The facility was nice and amazing maya the receptionist was so welcoming and nice. Will def recommend I was in and out less than 2 hours.',3,'',10,1),(877,'2020-01-20 06:09:36.868134','AIe9_BEAgUIalCkcXZnurOUpP4uA-JOkSmlyNQdcNtobKApLaNvFtUArc5yqpL3a_GVlCQW0gHa-FrHvmM4cmwiLWTN-k-g9N_PkzSaNaZjTFGOSoUWjxPE','Justin Hunter - None',3,'',10,1),(878,'2020-01-20 06:09:36.966615','AIe9_BFL0OZrFaHgoJtqifT1GHrI1YupmlZ9qjmdrF6qLiyMDei45XJUvcwSHEIvo--P6haDQkyjIt6cPTFen0gH3fDFAVMqVgexUUQeQNSdGhfU5SEFkWQ','Richelle Von - This place gets you in and out',3,'',10,1),(879,'2020-01-20 06:09:37.015942','AIe9_BFL0OZrFaHgoJtqifT1GHrIY2OjzKASu9rLfIJEmLUes9aiH1wU6KBUU61uy6jn9dRKXWrA2-Xz3TG_La3JBRiP3Z3dM3cmZvoaeOnmmWSTo3OFbnY','Erin Wyrick - I’ve been seen here a couple of times, and always the best experience! They consistently go above and beyond and always care! The facility is so clean! And a genuine positive atmosphere,',3,'',10,1),(880,'2020-01-20 06:09:37.064934','AIe9_BEHZ7lh7y1sP-UInhkpmlIpHe4m8VbzLNNSxdKwyFM24njdS9wJG8TPC0U_EUzm4JoaNVubiHhrIbdkOc5KF3OIqjp2_uy4aG0DxtKecuBEUFF-4_U','sharon gomez - This was not the first time I have been to this Montrose SignatureCare ER but every time they excel my past experience. From the moment I walked in greeted by Kearie, everyone was so fr',3,'',10,1),(881,'2020-01-20 06:09:37.335144','AIe9_BHZM2k_MpOhRgkb8w5Bn_urEvZ0bdyhnOcaIs0_vP7CVXpSLlTTJ_kPeXxuO7oDgIEjiwvlImYCHKfT6PhydFKXgv_PaspkI_RHfLPSHlX6kKuMe_4','Marcia Johnson - This place is wonderful. Maya was very kind and friendly as soon as we walkes through the door. John came to help me out of the car with a bjg smile. Kristina came with a warm and fri',3,'',10,1),(882,'2020-01-20 06:09:37.456890','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMI7fXdxyPFwD4dCLWyYwB3XEUJhbK89gXI5pR0M20jPmsPOzSCqQOQkaalSCWUPVMa9FI31lnKVThN6kuBiEDLhglFfA','Kristin Hicks - Omg! I just found my go to spot for getting sick. When I tell you these people are Amazing! I just took a coworker to get her leg checked out from a fall. They treated both of us like',3,'',10,1),(883,'2020-01-20 06:09:37.529250','AIe9_BHAFUK2tNBZL25dLQ0jVdh0LNOCu8hgkXCuiede80sJcrUBgAmCPhkoveZY2II8ujN-usC0r1xEfSLIBgU5VY6-tRxqLQZ9HI9IyswePqtOD7CInyQ','Gfdsa Qazxsw - Our teenage son had a knee injury and the hospital er sounded dreaful. We tried this place and there was barley a wait, they treated him with such care and professionalism. If we need u',3,'',10,1),(884,'2020-01-20 06:09:37.700602','AIe9_BHAFUK2tNBZL25dLQ0jVdh0ZKsAf5ZBa-HpY2AKeVBlfWHDFhOXtujmLDY6JWxvi0FV7llCfYE8rTNLXXdt-qLbU0vY6tQV3Fq4ayxJtERngUCbcC8','christy johnson - Very fast and super efficient! The staff was amazing and very caring!',3,'',10,1),(885,'2020-01-20 06:09:37.774457','AIe9_BFMK6FB7k24ANEBV5CospTTJCEldU2yZOw278Vb7nwbidlyElTYdGMSc8nkZ7mO_6LedMmmf3qJLtZF7_13fqcA_iVkfPNDXHLMahUrTPQG-6nq7q8','Martha Johnson - I cannot begin to express my satisfaction with the staff and services at Signature Care. From the front desk, to the nurses, and the doctor. Each and every one of them was courteous, ',3,'',10,1),(886,'2020-01-20 06:09:37.952143','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EIzcE75yBkgbItgljgW_-gMVnPIv5zoIePFuV9vOWaFe0Vrd842hxZ1tDPMGAaqjxpr0bYBTwDHzTMbIafnAoK2xkRo','Tonya Zepeda - Came in with my crazy husband... he is always doing crazy stuff. But as soon as we walked in to emergency room we felt very welcome. Tanishia was a very welcoming offering drinks and tr',3,'',10,1),(887,'2020-01-20 06:09:38.049334','AIe9_BHAFUK2tNBZL25dLQ0jVdh0KVMIfbPpWFth6m9XVVLx2zpY7WBgOFdrKdotkrhiLed1E28_LKpQ8qa7_G58JgV-ikdR52DtUacE1K2W4YcgPX299gg','Shaqueta Henry - The staff were extremely wonderful and very helpful to my needs and care!! Strongly recommend to all!',3,'',10,1),(888,'2020-01-20 06:09:38.098682','AIe9_BFu3rdicGrPrzdyu4PDXmqMu0LfEmIpyPHQHwhx6ji0CS9t1knLOWLTWgqi840FwYHzyuF8ZZibEgetYwT_NpiKbqvzzsxySYOFc-q4acpNYUmcPRo','Amador zepeda - One of the best experience in a emergency care. Got stitches without an overnight stay. Dr. Thomas really did a very good stitching my right middle figure. Nurse Sarah G. is very profe',3,'',10,1),(889,'2020-01-20 06:09:38.148023','AIe9_BFhqAtkXvUqdYNeMuBBGjaACei7oPqlpdfqS_B-D3gJXjF6WF4TwiUuzRKXbjY3uo6x-JeQNzXsxB2tqv5xhglHotl0Fc7yL7zA_qGRoISWCykuqy8','Mac Ways - Thank you guys to everyone \nDr Thomas \nNurse Sarah\nEr Tech geovanny \nRegistration tanisha \nYou guys were awesome',3,'',10,1),(890,'2020-01-20 06:09:38.197176','AIe9_BGErQpX2pRNZrXBy5NOsH0esMthQQey-6pL96i2vHOBt3QDHC3SYAq9BPHo7DBNwy69AH5zwtV-rtM1PjG7kaeGQNdlPdYbMzOZY5JRdUczcg1GfW4','Caress Boyd - Great service thanks the doctor Thomas Sarah g geo any Laura and tanishia',3,'',10,1),(891,'2020-01-20 06:09:38.246342','AIe9_BFmRFRFwJGRfUDOW8jG3rXnfNT93T0heVmVJl03-67IFgFHWfFVHbt2CoIPSGc71AAceba-r0CPF62eKsolK9EzM1Jy0Hlr0IszpAkbYUGR6vxkO94','Military Mama - I’m never going back to military er again!! SignatureCare is amazing. I started my stay with Kat and Alexa and everyone who I saw after that got better and better. Dr. Hemerka was amaz',3,'',10,1),(892,'2020-01-20 06:09:38.295524','AIe9_BFLHEJ8hYqd4VCbbc-EtvgM7ErtnTLKYDojwFFO_wKCaS2Gn2tsvgdfFiTvFzT4S1ORyqpcfQv_GrCU9GbaUaVnfGvdSG2OUtRnd2Gq1Y7OUPuh1xA','Me heidi Ok - Best place to be seen with fast service. We were in the back within 5 minutes! Our nurse Kristina was awesome as well as Matt. Thank you for taking all of my concerns into consideration.',3,'',10,1),(893,'2020-01-20 06:09:38.344830','AIe9_BFhqAtkXvUqdYNeMuBBGjaAcEAEywuMLcPXO2cWHHRURpKxcY2_KWhi9UUXPSFLB-k2QCCxDSnrGOTClimu0jv1TiIAsSyvVluYgxW-l9ymnD_D_-Y','Melissa Avila - Sarah tanishia geovanny Thomas Laura',3,'',10,1),(894,'2020-01-20 06:09:38.394026','AIe9_BFhqAtkXvUqdYNeMuBBGjaAz_sWHS898kk2goZGRQWH2JmX8u56vMzFTkYpJXQNmm9pkXH0r_lmM13lmp4n6Gi69T-bSsDaLbokm3_5GeoImUI7TQA','Melissa Avila - None',3,'',10,1),(895,'2020-01-20 06:09:38.443231','AIe9_BHR7p0hPy1flx1br0TYdEUBOTYW4ve2Gq18y26Iqyr2vu73c2kV23YihX4u4pc7nyZo0ItonY_8B8M2mKnR59I6-Age1hHPDf2nb2yq8p5qTEKA44A','Fatemah Younus - This has been the best medical facility that I have ever visited. Not only did they solve my problem but they also went above and beyond to make sure I was comfortable and had somethi',3,'',10,1),(896,'2020-01-20 06:09:38.492485','AIe9_BHknFajYLCY9NfgBafSx8bir6rr_NLzpDfTDh48qfT9OO1iSNLW8hkUrGYpqIhvlVsHKkL7mcx1eUrL602wvW32TIYgN59gq3CFooul1e_XI1Di-yQ','Adrian Garcia - Awesome customer service from Tanisha W, Thomas W, Geovanny, Sarah G, and Laura H 😊',3,'',10,1),(897,'2020-01-20 06:09:38.541759','AIe9_BFu3rdicGrPrzdyu4PDXmqMA-35n4bSxnQ1JMwu514Y5C7q5lt4l-d1lGtwTFi5GEes39be6vfzNOAihgM6PHJ6H4Uflf3XBZ2dLFRM8meoX_9Ke_A','Gabriela Stanley - They were amazing, super professional, specially Tanishia W. And Sarah! Thank you so much.',3,'',10,1),(898,'2020-01-20 06:09:38.591028','AIe9_BGvUJd9etQojwpjZIMsiFne6HOl-eSl9bsAZeJFWKTxbenAYh4dQOM1s_RXen-H1uImZnPTQaXHtVV58OeVpEgiCi7XBcKfysCSNtKVeK4wZOD-sHA','Pamela Pierson - I have brought my 3 1/2 year old daughter here twice in the last month and all the staff have been amazing with her and with me! They were all very competent, thorough and kind as med',3,'',10,1),(899,'2020-01-20 06:09:38.640247','AIe9_BFu3rdicGrPrzdyu4PDXmqMIkUWnjmzsKOWrhIN4T3Jv2C_-qi2qBsYN1_UF4-s8lDfBdyp1pd87gr6KPU19vyqNk_lmwTbFgpQxvp1mUmoUQP2fcs','Natalie Dowd - Top notch facilities and such friendly staff!',3,'',10,1),(900,'2020-01-20 06:09:38.689664','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KZBj32Vckg7wtyhr1vmgsUQNTF0xA7Fe9wnoBHCQQYxuyYjW26-Ojnnt0c0hBXyADwWwPYXp64t7nIS4MvJTcD4rCQ0','Erica Evans - They reduced my mother\'s dislocated shoulder in no time! She received pain medication immediately upon arrival, and they had us on our way really fast. Dr. Nilang Patel, RN Blake, rad te',3,'',10,1),(901,'2020-01-20 06:09:38.738613','AIe9_BFMK6FB7k24ANEBV5CospTTzVFP9ltlnDSbasyXbmPlN9yXsz7WMOU-dbxSD1CeMnTZNpRPfZ_eyGXukoMs7cg4V_4vR4eA629Mud60JojZBLCCeM4','Melanie Brito - Husband came in, his knee was hurting really bad \nThey were all helpful very fast service. Would recommend highly.',3,'',10,1),(902,'2020-01-20 06:09:38.787930','AIe9_BFDvtvCY6mNmVUeGBiBb7S5fqdW49vrWXaC2LOiSCPQWxAecrhU4ItMudwJSNlhRFZcI-Vbqw5_4VNRtxMis2zmdEwBuqDkxjreTEjLTkF7zFt111M','Claudia Robinson - Sarra, dr faig, anna & Christian are all very helpful with my son who got a cut on his finger..thank you guys! great job!',3,'',10,1),(903,'2020-01-20 06:09:38.837359','AIe9_BGhYIk2KhOdF8fekWDvq8JUPIKYzGWoUO6QS8V2jn571vCEWvjhu9S53Dpfqof6xYBKqbAR6ALBI5Xn3gLWYXSdm6ebNdCt2wHFJKy6581qCjDCr1E','Lawrence Washington - Great experience! Attentive and amazing staff Patricia and Alvean were delightful. Very comfy waiting and treatment rooms pristine and clean.',3,'',10,1),(904,'2020-01-20 06:09:38.886240','AIe9_BHR7p0hPy1flx1br0TYdEUBbfgjU0uxJzcyqopRJt4npN6zVZlyzqcSo3lCSHopv0KM2rZmvC1dEeZ3VNS0Ahaq02AoajLbJzncqGGhd5K_dTtRB_I','Christina Sings - I always a have a good experience when I come here. The lady in registration, Maya J, was really professional. My nurse Catherine was really sweet and helpful, she made me feel at ho',3,'',10,1),(905,'2020-01-20 06:09:38.935245','AIe9_BGvUJd9etQojwpjZIMsiFneXKsQ2q_QFeaGZqkLptmtLUPpQhwehkGIie-STJJCD2KJLNFdgA3U2uf2FbFfX7yBiL30AQErUcPfPMzx9lZOCWL0U1o','Jaylen Gray - Great experience!',3,'',10,1),(906,'2020-01-20 06:09:38.984988','AIe9_BFmRFRFwJGRfUDOW8jG3rXnrywf6HRdd6c_aEupjV5PH0lcuJr5jiE9KYuDHAe8wysQ4cG4aJQXWwcqYzNzIBPdh3xrUv6TyU8KRb6y4xRFCG-MXzg','Mustafa Al-Nomani - This ER facility was fantastic and made my stay with them comfortable and fluid. The nurses Patricia and Alvean had stupendous bedside manners and made my time here enjoyable despi',3,'',10,1),(907,'2020-01-20 06:09:50.545058','AIe9_BHAFUK2tNBZL25dLQ0jVdh0c2u4gxfnTvz0Akks4_LhVh3c5JhvQKaW_jExakmVsbO9XqzDKABYgVNJE7TBOW9-fH0MLznKDo_F0OWLgzNb25-231M','Neira Lopez - The service was wonderful. Patricia C was really friendly great customer service.\nAlvean A was so wonderful with my daughter explain everything that she was going to do with her.',3,'',10,1),(908,'2020-01-20 06:09:50.662651','AIe9_BEuFX7PcAP2nNY_ju84FoFSgXPOSMpLwqVGQV4nsPr8jyH6x7iqnoQdshjKSTR6rkmJLdBddc8_uEC0aRvU_d6Ke8k5V14i6Zus9QzL3LWEZ8ibP1I','Omar Rios - Great service by staff ! Treated me well and kept me comfortable at every step! Especially Patricia and Alvean A.',3,'',10,1),(909,'2020-01-20 06:09:50.711893','AIe9_BGvUJd9etQojwpjZIMsiFne2_mZLmzRjqFNvo4Wi7CPFYwZDLYGZsjpO3kNT_jKt--Y7l-IgCICGbmmhKtYokcGnCMSuGahNXVYJFcHbHslDJ6MCos','Nicole Williams - Great customer service. Jessica Aaron Ryan Cynthia Smith. Fast service no wait',3,'',10,1),(910,'2020-01-20 06:09:50.761278','AIe9_BFL0OZrFaHgoJtqifT1GHrIJZSkRVYs4ng1qdyAG1rJSb1QLCKLB6xZsJcEs4XdabcBYYevuk9QP5nImpp3Xo31oNozUOnEjDtIlb4W6msEdhytAfw','Crista Valenzuela - Brought my son in early this week, staff was so so nice and very helpful. There wasn’t a long wait, we were in and out within the hour. Highly recommend',3,'',10,1),(911,'2020-01-20 06:09:50.810340','AIe9_BHknFajYLCY9NfgBafSx8biSIF3PDFZ98G_cxcp1bnYftx1HmWS4i80EeG5wkaUDPLwXoWMZsH5Ea6xO1jjmldEYYs-xvVinWBcI7DmR4ug0cdjysU','Alexander\'s - This was such a great experience! From the check in to the care. Alvean A. Was very nice and answered all my questions. Patricia C was also great. I would definitely recommend this ER ca',3,'',10,1),(912,'2020-01-20 06:09:50.859874','AIe9_BHVBnWjBJvk55vq2QEm0wl-Ue1vgeT1nkTo0ArkQzI86mXE1SgIyTrXzFU0DtVARmuuQH4Zx5Bzj57WkuLnTHnKividKirDvuHNijPqBshMrPtbf0w','LaLa Notorious - Dr Curtis was super helpful as was the rn, Lucas. It was a quick and painless experience. Highly recommend',3,'',10,1),(913,'2020-01-20 06:09:50.908924','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMMuP_fTDVsyTgQysUCsU1qN-bMDaVQ6eRD3akIrxf57XWjULdoc8NYvB1e3lwHGbAnNjwp2chImOFUlTxcZ_K1p6NQHY','Kendall Hemphill - I love it they were fast explained everything and my nurse Katy was awesome !!!!!! DeAndrea Glass',3,'',10,1),(914,'2020-01-20 06:09:50.958379','AIe9_BH-PZCNGatIuVf9MEYiysTxxjI6K46NlLfAm5dpIbsR_W5Qryj6cQCpbuwuknb2VkUfMDvvG38zha4p2lQi8EpUMtlwXTiW2w1zmoBxLFnuMTbzDSA','Justin Wasson - Really clean and neat. Great with our support dog and really sweet in general.',3,'',10,1),(915,'2020-01-20 06:09:51.007823','AIe9_BEcsqFw5ZXjJ1YdcBn5-w4smdRMnqqPnx9BzwTAX-vCoU08-DUlW9bE2qm0360vk1qikNML-IquXRN75yC5vR9j6-OM3YdS7fEeYMrmqRLtbX5Hxpg','Ivette - Brought my son in for sore throat. The girl at the front desk was greeted us right away and helpful with signing in. Vanessa and Dr. Martinez were very nice and efficient.',3,'',10,1),(916,'2020-01-20 06:09:51.117367','AIe9_BFmRFRFwJGRfUDOW8jG3rXnIJddPpXQcgbO16YtLOODH0aSdnZUKVDoLNjgbbBsBsIYrrdcni8RQBkTdvvtueAvwV3uEisUT1nZQxqlZMjJ_Wrniro','Ahmad Robertson - A great Facitlity with Awesome Doctors and Staff. Fast, Friendly and Informative Service very welcoming here!! Maya the receptionist was so welcoming',3,'',10,1),(917,'2020-01-20 06:09:51.215961','AIe9_BGvUJd9etQojwpjZIMsiFne-oWscDTeQAGBuMFzogWWwz0ARnGEmW1qKGUFPfbmgjUrZSqGJsRrNlYBOV2OJbEE-zXIqJbF6TW-BIBvHyb6bYXdFKc','Michelle Balsara - Ruby at the front desk was sweet and helpful and then Dr. Martinez took great care of me. Most special part of my visit was the tech Vanessa who was so so sweet, comforting and reas',3,'',10,1),(918,'2020-01-20 06:09:51.265277','AIe9_BFL0OZrFaHgoJtqifT1GHrI-Ch2fvr_bor6W0B0v9c276cQnhRDMs3A8iYYad-CJowyTzb2KQ7nc68LK_4eOPLeERAVUFb0CdIThNQFuCcJj3Ntxg4','Tanny Broaddus - Flu season and of course I catch influenza right before my trip to Mexico. The staff was super professional, and very responsive to all of my questions. I came in with a fever at 103,',3,'',10,1),(919,'2020-01-20 06:09:51.314476','AIe9_BGhYIk2KhOdF8fekWDvq8JUO4dYyeUEISG1R15JRgs2WV9agkqdQ965FI7-5I50FcXOPBDAKKHo5SirW4rnDYFBGHhtQ5lUrlzBZkqKnnBRCCmJMZM','MikenMollie Levar - I would like to give a huge shout out to these guys here at the signature care here at Cypress. Dr. O\'Malley, Patricia and Alvean were amazing.\nThey are the Ritz Carleton of healt',3,'',10,1),(920,'2020-01-20 06:09:51.363682','AIe9_BGTHfLB7ZAtvlQmidaL-PvD_0FUYlxEmjFBgrSf-6qtUwGVBemnfo74d4mNhViIkuDSfuK1Fe2kQrWo20jvkqpeKGcWeINGGUIcCKiBKreXK0I-5S8','Rosalinda Cadena - None',3,'',10,1),(921,'2020-01-20 06:09:51.560445','AIe9_BGZuRKHeO1iYrcf4B001kE2-0bGD4-jZpevItQ4Un8_z5AE7nvfN7S0N35pC7ofKuzCmrskYRS7ysW5bD1o6-npaqlfiPdCCqW2OarEMBdxxx0LpRg','Rhonda Rodriguez - Had a wonderful experience at Signature. The stagg was amazing. Thank you Lindsay, Brad, JR & Dr. Vakay!',3,'',10,1),(922,'2020-01-20 06:09:51.708800','AIe9_BEV1VP1woYvuPRixSBHlWg4zDWvYPq4IpIdtjIm2dgpmEgZilFbGP2QJff1PSagnpw7bDsWUJU5Gt45eDgKGCDdZa72XIWaWV4LW25DFBfXRenR2V4','Mark Rodriguez - Everyone at SignatureCare was very professional and courteous. Making our stay pleasurable during this unfortunate time. Thank you Dr. Vakey, Nurse Brad, and Rad Tech JR',3,'',10,1),(923,'2020-01-20 06:09:51.768946','AIe9_BGvUJd9etQojwpjZIMsiFneULXxQQyRPk8GJrRcKt41popWIpUU4vZK8Z151jVC5WJhqdh9ft1NIOA2GKhCkvCpfY60lreK9cSKGdwrEmmaf68y2DM','Josue Merino - The staff is very friendly and welcoming. they make sure i was comfortable all the time.',3,'',10,1),(924,'2020-01-20 06:09:51.818398','AIe9_BFDvtvCY6mNmVUeGBiBb7S5SGLrwjqW20gGiOhr-EcguGORZXiLpjcW525xK8lOXVrHVw_SOakrK65QqYaHCqQctw7wHePnANfwZbrMOPN5wcAgvyM','Julianna Barraza - None',3,'',10,1),(925,'2020-01-20 06:09:51.867481','AIe9_BHAFUK2tNBZL25dLQ0jVdh0amhz9A-2bODKYUw4A9ZDQGbMQIEg3vAm_KqStTLDa6Q8zv9lGP4I4w9Jtsa5JFt7LGBlhlw26Oc0kBTJgeyS3IixSGQ','Noe Cervantes - Alexis the nurse was really nice and the receptionist shania was really awesome and very attending',3,'',10,1),(926,'2020-01-20 06:09:51.916881','AIe9_BGErQpX2pRNZrXBy5NOsH0el-a52Oalv4zi963mSz3wwGiD0kqc_YnGflo7NjjsoXe8CXZTTbOo6PG2GGdkY-t_MbCdDujtyFl_VeJ8iYGO9gC6faQ','Chris Zeniecki - Friendly staff and warm blankets highly recommend this place =) fastest service of any urgent care around.😎🐎',3,'',10,1),(927,'2020-01-20 06:09:51.977189','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2gI0Up4yNgiJ_rGT0m99QFiowQt5ceAMocFQLRq8Yo2ot1nkry3-bRGJk_n3HqYJoA5IEILQTaf_UiYmO5wHRZvl0dfs','ZAYY_ YT - Patricia, Alvean, Marcus \nThey took good care of me while I was here',3,'',10,1),(928,'2020-01-20 06:09:52.026372','AIe9_BFL0OZrFaHgoJtqifT1GHrIGr5HFgEBpp_chq6h7U5645_0udjaBQ38eXGYCQaEDKQjM9ZK3nSJgJ5iNzckgTUvibS-FekKO85z-zDoCjJYqghkurw','Luke Humphreys - This place is the best medical care I have received in years. They were all very personable and nice, and there was no wait!! The front desk lady, Keera was friendly and swift gettin',3,'',10,1),(929,'2020-01-20 06:09:52.075690','AIe9_BGlY-BaOO_aND3JZqxJBS1ReE7qNop_mlLzqmEeLqOXgn3WMaq0zObcJrJRIld4Ue32D6WFMUWPxrJXizaUJ5pQO_VfVDzDHCw7Cy51MiswMlN1ueM','ermal amataj - Very nice facility. Tania and Vanessa Z. Were very friendly and professional.',3,'',10,1),(930,'2020-01-20 06:09:52.174202','AIe9_BEV1VP1woYvuPRixSBHlWg4cW7N1jyeH3lmQ5MwbV_oX0HVKC_9mZGKcwH6FQqoRpr4U0RmB2p-j_CC9YPWEba4eokrC4HEEOqA-OxBKCXpCCJW-ZM','Kenny Aldea - Gracias a Dios por haber conocido este lugar y muchas gracias a las personas como Patricia y Alvean por ser tan amables y tan profesionales se los recomiendo Dios bendiga a cada uno de s',3,'',10,1),(931,'2020-01-20 06:09:52.322155','AIe9_BEHZ7lh7y1sP-UInhkpmlIpLc41zywuHuJohc54iWcGf92rf-W36ycOjWcyzsYHecF4CMwAAX5Zw0lhbVoNPOfgIDwIImCo4V9eumc9sm6dHVAkgt4','Simbai Mutandiro - Very helpful. Great treatment. Dr. Miller is very knowledgeable about medicine. Sindy in reception was extremely charming and helpful. Natalie was attentive and courteous throughout',3,'',10,1),(932,'2020-01-20 06:09:52.382478','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dhJqGiLWxuFLY3P2qO_4qAnWzbLWkLQlKBbMtc8uDk5X17RhLSd2XfhNUKGLlujRFasCB8fjl9xvZPD0Yt0du9oFCps','Doug Brisco - Dr Dang and his staff were extremely courteous and professional. The nurse (Stephanie) on duty was kind and considerate. From the second I walked in the door to register the Registratio',3,'',10,1),(933,'2020-01-20 06:09:52.442807','AIe9_BGvUJd9etQojwpjZIMsiFneu9azmAKakXaop01epvx91Qo_UPlhalFC1zzuOm3ywSigAYjfjeXFhXJS9A3pUowvyTN_da8CIOCAV7xGIBaIYrbaBok','Jocelynn Rodriguez - I am so glad I brought my husband here! Very friendly, prompt, and courteous staff. From the front desk, to Nurse Gina, Vivienne, Rad tech John, ER tech Natalie, and Dr. Miller, ',3,'',10,1),(934,'2020-01-20 06:09:52.503182','AIe9_BFu3rdicGrPrzdyu4PDXmqMHP8HfrZlaK-XJ6DsXFcR4kmrgqq7ao_TTztS7sRcZUG_MM1OCPEUlz7qy6qbrbsAsuv45fB4Ci6RWjZMZAyjg_-rens','Kilo Mathis - Meridith,Marcus, Patricia they all were very great to me I love this location.',3,'',10,1),(935,'2020-01-20 06:09:52.552538','AIe9_BGIy_plKfaZrItPyyQZNLvs20WwB0KzLq7Uag1NyHL_whaMyqM-_Y8Rh0tEG9BkPR62SQXg4TycPobXA2mvjryAqGR6pQvwkynUH-gHxf3HnUBKXBM','Quin Carr - In and out in about an hour. The staff was friendly and very helpful',3,'',10,1),(936,'2020-01-20 06:09:52.612787','AIe9_BEV1VP1woYvuPRixSBHlWg4zPXcNoOWpzimZoqddk8IMloPUfnN0oDFwsscv3BSFn_noeAIU9152rNZDQj5ss5zQbRSJP7YuN4jR6lrMBOVvNcUpEA','Victoria Cook - Patricia and Alvean A did a wonderful job to get me in and out quick with the doctor. Very friendly staff and helpful.',3,'',10,1),(937,'2020-01-20 06:09:52.711504','AIe9_BExcxslmE1rr7n5jMcadSKe-tz4wuwSQPjWhpm1gSXtqzModSc-UE05yW4dFaJGsdbMLRTv3UdaofPW_xnMA4zpfJGp8m8q33eZOumt_kuM8cOdfUw','savannah ephriam - None',3,'',10,1),(938,'2020-01-20 06:09:52.967788','AIe9_BEV1VP1woYvuPRixSBHlWg4Ze4D6B-6X_8RFylpGNFAHApGlytq67g_I0aXLRlxdAdVhAv6dwpLW4CagFfpDf6iYaQtsPjC6lcYR09TucRJH4Bp6wg','charolette lemier - My daughter was brought in just as a precautionary due to bumping her head in a car accident. We usually go to North Cypress for all of our emergencies but thought we would try Sig',3,'',10,1),(939,'2020-01-20 06:09:53.017451','AIe9_BGvUJd9etQojwpjZIMsiFneky0BhM97LMHguqOYsuwTpm72-vjFXmBzM_F27hfUkbSzwkUfsbMbpeNsvANYBuSTOYYfrYQSl45s_343ZF-Nj7pots4','L. Angel Hyder - Very friendly service and I was in and out in quickly. The entire crew was great and very patient. I want to especially thank Vivienne for understanding my needle phobia. Definitely r',3,'',10,1),(940,'2020-01-20 06:09:53.066600','AIe9_BG_KYPQZrI7j-moUldshgc1v1xwLeU_uslAILQhIhJrKQsADwDqk2d5xzT6NFZ1JFom--GkxKKxp9JKTX3yuEJjZjaNwfHdCuSqfud7uPSicBEWzYk','Diane Delgado - We are very pleased with all our experience here. Everyone is so nice and sweet. I will definitely recommend ercare to everyone.',3,'',10,1),(941,'2020-01-20 06:09:53.116057','AIe9_BFLWlqwz3qGBnCfbAsLD0lVDNeSEzi0LhlfwB5hc7Td33YwNI_DYrDB_wGQCx5L9Gl18ULn_kRISSgeX88s3pETiYc3SEbhKFJfHhnVMi85Zrgzw5g','Lakeidru Blaylock - The treatment I received was professional and thorough. Dr Appia explained all the possibilities and was bery detailed. From the time I walked in Joycelyn A greeted me with a smil',3,'',10,1),(942,'2020-01-20 06:09:53.165139','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHkzMzdx8yUoI6XV6tbdC4LWqpcjz4racAa3Xhq8nSc8cBB43zFXVzfEL0rNwrOPfcsJpz3EdOzDrinSeShjrpuZmrBU','Olinda Cardenas - Amazing doctor and nurses. Jennifer was so nice and patient with me. Mark made me laugh so I could feel comfortable. Dr. Edwards made sure to test me for everything. Thank you guys!',3,'',10,1),(943,'2020-01-20 06:09:53.263841','AIe9_BHVBnWjBJvk55vq2QEm0wl-GRh2e2lCRiczvSTrjEhyl-gHx2zfls2ILwifG2-kvHVQbAPRehmebdaeOhd5s0d4C4O3qdVBSqE6_ndM9RWSJah4LWo','Cassidy Byers - I’m not one to go to the doctors when I’m sick but I felt super crummy and my normal physician couldn\'t get me in, this was my last resort. And let me tell you I’m glad I did! The staf',3,'',10,1),(944,'2020-01-20 06:09:53.362173','AIe9_BHkHJRvhG8n5BjqdcMSKR_FenbE4EW2FEGc7GKiw-RKgDdDj0Gres_boIcp-2VIfussZMVkmUEz66jnv-6f8iJadz1DHOfm8pE8feOM3WyKGms8Uyk','Tina Burgos - Cut my bare foot on a dock nailhead and realized I needed a current tetanus vaccination. Having received mailers advertising their community events, facilities, and services; this center',3,'',10,1),(945,'2020-01-20 06:09:53.460776','AIe9_BFLWlqwz3qGBnCfbAsLD0lVdBdsQ4UBV31ZkDldpqpWGywLT_fgnF3ybY_qhfHD1L0zgdUNNPUV20Xa28A1dJjYvhP6Agaqd1TeRgA_edN5WYzKUbI','Myquelle Chapman - Dr Patel, Nurse Kendra and Teri got me in. Really nice and got everything taken care of in a timely manner',3,'',10,1),(946,'2020-01-20 06:09:53.510252','AIe9_BHZM2k_MpOhRgkb8w5Bn_urt6tdE-Kq-_0BTQY6iqArMd3knPVGo9dqZvS9E7Ka1YoN8UqrcBiMBRZOfkPn_i7cCvsVf7y0kRbxKahSvEM6bpUKXsw','MTB BASS - Alvean A. and Marcus was very caring. I really appreciate them.',3,'',10,1),(947,'2020-01-20 06:09:53.570425','AIe9_BHkHJRvhG8n5BjqdcMSKR_FJt9zePmpD15E_e0nicyiF5tlAYYRlRfu1a1f1_V1xwqR3mDiL4MF1DmlvE77LdLJCpeF13TcpsG7Y3loZx-awRNy2tY','Gina Barriga - None',3,'',10,1),(948,'2020-01-20 06:09:53.630755','AIe9_BH3gZxYpIxBZcqAOO5HuBVk_12uemtGe3nc4jr_b3zTUDNudjIfJvPoP26Q9dXDm9xXF61mlrRfks6UIsruz0avLYJsdA8SsxpZ66iLuBHkdrgmzBQ','Milan Walker - I had a wonderful experience, the staff was super attentive and helpful. I was in and out Dr. Edwards nurse and Mark and nurse jennifer were nothing short of amazing . I come here for a',3,'',10,1),(949,'2020-01-20 06:09:53.690618','AIe9_BGErQpX2pRNZrXBy5NOsH0e35a33cbgPNajXaaZMWgxTSiYaZKuYAFmZ9sJ15nejh93T9D68ce2-l00LhxAPwy7KgI_mU1l5mrTsfoUPi9z3hbKiVQ','Sandy Klamert - Great care! Thank you Dr. Golla, Keera, Joy and Fannie!',3,'',10,1),(950,'2020-01-20 06:09:53.789704','AIe9_BGeWygkZoY6qknDFQmPvA4cMJ4vJqjRv1E-RwO3AbV_Xff2K5wHqSBo6ayuKXbp7VLxkt3RbYgTbN6uPL0IpfHIOJxcJRlFYkatY4e2nKijAP48re0','Kaliyah Marie - Came in at 3 am got fast service & great care from Dr.Daniels, Rollie, Natalia & Stephanie for a friend! Good to know something so helpful is so close to home!',3,'',10,1),(951,'2020-01-20 06:09:53.888499','AIe9_BFu3rdicGrPrzdyu4PDXmqMoKqahYyFXQlsI7BeLnJEyD_I_qFmdc4AIAXEitJc0EyDYXVBGiNwapqjWAQ0r4XjkaMM7NuQreTwLAIoMJFUfn-kEzw','Prince Warsace - This was a great experience, staff was helpful and all my questions were answered. It also was done in a timely manner! Thanks to the staff Rollie, Natalia and Stephanie. They were al',3,'',10,1),(952,'2020-01-20 06:09:53.948634','AIe9_BHZM2k_MpOhRgkb8w5Bn_urRETB8W4SfNOkBxX_Rz_vuau0flfV5DGyp7N-8_UJAwOPN47pKzBrDTkb_DG62xBocljUYK7xZuiaMr6TAztjczBsFjY','Brittany Mauritzen - Loved my nurse Gabe. Best care I’ve had in College Station',3,'',10,1),(953,'2020-01-20 06:09:54.008950','AIe9_BF8X4EpR_fF6mwcYdso9awgoxzJmHWen17AgaLimsGwwnv-DVTVaIP_4P9S7mslOQKZNUhz-6li6v0A8UpEOWXK8SF3NzaCcv7GtYx--4R3z6GysHA','Kaitlyn - Great experience. Came with my roommate and we had Kathleen who was phenomenal. 10/10 recommend',3,'',10,1),(954,'2020-01-20 06:09:54.069373','AIe9_BHZM2k_MpOhRgkb8w5Bn_urvedl9qHSWl_p5ntqvaLWdBWQdbgNwg7WwIPbgM3psMzGOkLaMiM4KtO2EXr4G5WgQo9AOE9UgP97gFzaNY65coHrH7Y','maddi brown - Had a great experience and help with \ndr.yost\nRn:Mollie\nRad tech:eric\nRegistration:tobie',3,'',10,1),(955,'2020-01-20 06:09:54.129936','AIe9_BGvUJd9etQojwpjZIMsiFneSIYSL2YN7qx_C5mNMpyo9lculzC1axMXRBPReh1dHEuYi_h1w9WvtLtBBUh9VGX7vpHoi-bH5UTBo0mUzHA6jahMuUg','Alana Morphew - None',3,'',10,1),(956,'2020-01-20 06:09:54.190161','AIe9_BGvUJd9etQojwpjZIMsiFneeKcGssDJvYWEJY1GpfzwD0Rtp9VqI-Ev1jVxBmRlWLmVhFUWjiBW7XdrQJSVa1ErF1P-IM2L2tztQ-ZcTXEMN7DoEGg','Bryan Haas - Everything about SignatureCare is first class. It\'s obvious from the moment you walk through the door.',3,'',10,1),(957,'2020-01-20 06:09:54.250673','AIe9_BGlY-BaOO_aND3JZqxJBS1RTEHUIk_gDQ9sNsamIpH-BcGgwQhRZ05KJ4Fed8SlOtBsIX0NsQRKS3Au0dfOMHVnvPcmWpltGHgXJKZ8-QLdRpg3KGM','Nestas Home - I came in at 10:08pm and was seen immediately and treated with great care. The staff, Stephanie in registration, Dr. Daniels, Nurses Rollie & Leslie, Radiology Tech Natalia, were all am',3,'',10,1),(958,'2020-01-20 06:09:54.551048','AIe9_BGErQpX2pRNZrXBy5NOsH0eTUf6H_J4bXuw68oLzYx10GEcBtYp09qalwzKZip9YfoF35Z8H1ZDqfyHcmJMAPlb-kM1ZH7iINlooZo_VepdZgzBPTQ','Sarah J - Fast service. Came here after work, so free snacks was a plus in a bad situation. Nicole G the RN and Dr.Yusuf was awesome, made me less anxious about coming in. & Ricardo the tech was funny',3,'',10,1),(959,'2020-01-20 06:09:54.649539','AIe9_BHkHJRvhG8n5BjqdcMSKR_FXMFFfkONu-z4K7uSNTgtJk7GjGQrKldqVuzuAklnpjM8hD1AZ5m_ZF4vsG_PjAm3L0NQwaR9V5ViWUVYBMdMBvJA98Y','Terrika Turner - Leslie, Rollie, Nantalia, and Stephanie were all absolutely lovely & awesome. I arrived in so much pain and they were quickly attending to my needs while making me comfortable at eas',3,'',10,1),(960,'2020-01-20 06:09:54.700000','AIe9_BFL0OZrFaHgoJtqifT1GHrIbqdkzIzU7VJEG05Or9xj_uVIMbE5snkKqk0vJqqR0nAroH91Ad5JFzJ0fpycxaeT22-CSmeFqzD4D96BlTXUA1_FCd4','valerie dettore - I want to thank Memorial City Signature Care staff for taking such good care of me. Doc Daniel was very personable and competent, \n thank you so much for such a nice stitch job! John',3,'',10,1),(961,'2020-01-20 06:09:54.758606','AIe9_BFu3rdicGrPrzdyu4PDXmqM7kN-RwEKi3q4jtMEXeSwVICpLuo5TH57rglL6jk5sJG-6-d0TDngZ4uajYMltFZxUv2t8y5ljAr1H7YOGPsfCNwWfVI','LaSable McDaniels - Ms.Tobie was so kind, the entire staff was amazing. I do not go any where else!',3,'',10,1),(962,'2020-01-20 06:09:54.857536','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMSZ4NJ9AKejw-jdMEU4UNW8GMgjwnHAXRwF6zu2arNgQ-HBzKDpeOfmtzdnie77CwGMcB-MjQBCI0ho4F1TaLhK2f6Y0','Alexander Taylor - They get you right in. Let you know exactly what’s going on. They make sure that you are comfortable. They show concern. And they make you laugh while you hurt lol',3,'',10,1),(963,'2020-01-20 06:09:54.956217','AIe9_BHR7p0hPy1flx1br0TYdEUB4SQunuaEEy2R9z9x4US4mG6JEgQGBjobZNTVmluEFKceTNzF6p-Ctvxi5m9mZp9g4iEDktp-gvY-jyMPU5JZCHW7NIk','JuWanna Smith - Very friendly and offer snacks',3,'',10,1),(964,'2020-01-20 06:09:55.005274','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2zOeuAmBvrhxM0zaPXoBA8Wmj-IjO5WVShofHDM7UpqjCpUnEGm3eOZ1tslXAdORyRB7zRXuPpyr0jvLTr315TpERhFg','Bianca Olivo - Dr He, the tech Dania, and the receptionist Ebony formed a very kind caring and quick team that was able to check me in get me diagnosed and have me back out in record time. The staff w',3,'',10,1),(965,'2020-01-20 06:09:55.054779','AIe9_BGlY-BaOO_aND3JZqxJBS1RaPwjIjhC8q2582oQXsqWkH-72LyPlIcXQDppnj4j78ef4x4OT7GvX6r-BRTPOp4mXMTmgIvqgqlmHd4I1z0AEjo5ldE','Jessica ONeill - Ebony was very welcoming, and Dania was professional and sympathetic. The doctor saw me quickly, and clearly explained my diagnosis. It was a helpful, professional crew. Thank you!',3,'',10,1),(966,'2020-01-20 06:09:55.153029','AIe9_BFu3rdicGrPrzdyu4PDXmqMn8bCgIWshbyCBsAHiOWu1Fxo7CeHX0Gax46jkWjRjd1eTAh9KlntN1_dr4h4HPaehyiv5DnR-QUuckphhzeRvyH0-sc','Sheila Flecha - I went in to get checked out and follow up due to a stomach illness. The day before I went to a family practice and they gave me 2 IV and send me home with antibiotics and nausea medic',3,'',10,1),(967,'2020-01-20 06:09:55.202284','AIe9_BEHZ7lh7y1sP-UInhkpmlIpqp3JxUb7MkPRsk0tJQZ5JvhbbYkpPEce3vGd6-gmAOxYlOqDvyv8xB7epDHAFOcVsarzrnKNfp1GNtQUKbimc0tMGQM','Dakota Bloyd - All of the staff was wonderful throughout the whole visit!! Thanks a lot to Dr. Yost, Kara, Gunner, and Courtney.',3,'',10,1),(968,'2020-01-20 06:09:55.300819','AIe9_BF8X4EpR_fF6mwcYdso9awgzub0HYBp7Q16mw6gudvyidcrbEbETFVxsL1IMgBB9pv_23Yje5O_1zvhZf9bzKXRfRsxH3vfKOwKXNZNYBJSLI5zUjQ','Jennifer Whiteside - Mollie, Dr. Yost and Tobie were awesome!',3,'',10,1),(969,'2020-01-20 06:09:55.399339','AIe9_BFDvtvCY6mNmVUeGBiBb7S594y2EHC2WXjq-xNNo3x-i1n2UBeW_b2NUEUPwBl0T978_kTHnjs2yVhO6eK3hYW0lotkz6GcXUev5DLHrcWDbvmByx4','Kaley Padgett - They were quick, kind and gave a discount because I am a local teacher. I will be returning again! Kara, Courtney, Gunnar and Dr. Yost are fabulous!',3,'',10,1),(970,'2020-01-20 06:09:55.497715','AIe9_BFrHfJ2dmEi-Vy2qpFFGM-S8vLIguuGRSNYDALQy6tOzRXm-w-YrsBH3BMSfmtYkvN8LG-KyxlR5au7Li7wjuKKK62HF2Q9ABMixBoEvdw2L6zAhW0','Ashley Mills - This place is awesome! Chris was an excellent nurse as he tended to my every need and was very informative. Upon arrival I was greeted by the friendly staff, had little to no wait time ',3,'',10,1),(971,'2020-01-20 06:09:55.547080','AIe9_BGlY-BaOO_aND3JZqxJBS1Rf48IuuTm-m0G0PFr7eLLVL9y9WYFCh_RVEACjtI1njfImZoaNx5YJ7lNJv3FptJTNG3Evn4MT7w85boY76sN3KBZ2AQ','Stephanie White - Great care with nures Kristina, Scott,Quyen,Genesis,Ding',3,'',10,1),(972,'2020-01-20 06:09:55.596203','AIe9_BGhYIk2KhOdF8fekWDvq8JUdwrDgpIZgxY_pBOuzMSXsgdXvYKyPtcLvTfwoJxth8T_67NNpVUYzw4A1ifzUNJHL8CTYp8mqStpaaZ5bicfJKxKBZA','Bernie Garcia - None',3,'',10,1),(973,'2020-01-20 06:09:55.645458','AIe9_BGTHfLB7ZAtvlQmidaL-PvDCmAllYo14H1X-lrZk4aAFhny0Rl8bBGJ3ebc6NGOkslXUt41mND7uFUV9sT9ar4fIrbvULs-UmTatPurY-DSQ_DUO_E','Ricky Aguilar - Hands down the best experience I\'ve ever had with an ER... because I mean, who likes going to the ER, right? Professional. Clean. Attentive. And all-around stellar work. Thank you to ',3,'',10,1),(974,'2020-01-20 06:09:55.743880','AIe9_BGZuRKHeO1iYrcf4B001kE24jyZ0vKowvRq0_wpkfT4JQHzXZvnBTH5zAuPA7VgN6raI2Cxx8YjtS9e8_uT2Rkg9WLBdjhlD66FBYJ06JTunk2eKbE','Desirae Weise - I came to Signature Care after being in pain for 24hrs. They have amazing customer service, especially the doctors. They were always quick to help and give me proper care. From the fro',3,'',10,1),(975,'2020-01-20 06:09:55.793049','AIe9_BFu3rdicGrPrzdyu4PDXmqMMnL-iDQLrq4FY2G6ZcSgJmIl0DVYyyaw4Mw3lvhUwasJ85mEUXiTfBVt9tfI_j0DG1UG32FdXb9UH_Zdz2ewiG5EYHM','Chuck Bird - Huge thanks to Dr. Miller, Chris C, Kimberly, Cecilia at the front desk, as well Isaac and Natalie as well as the all the other staff took great care of me after a back injury.',3,'',10,1),(976,'2020-01-20 06:09:55.842402','AIe9_BHkHJRvhG8n5BjqdcMSKR_FgIAjkBkiOY16i2dgOkc7oaIkGIC6MZUVpt3IqLi0pqWD6TSTIl_1Axs-yETduhB-sDtuuH5YI2QhJg4uYGp_O3G3W0I','Kacie Gilmore - Went into SignatureCare for some swelling and dietary issues. I was immediately taken care of. I was in and out within 2 hours considering all the processes I had to go through. Christ',3,'',10,1),(977,'2020-01-20 06:09:55.941225','AIe9_BHVBnWjBJvk55vq2QEm0wl-Y6s6I9shmevwrYou7E8fLd3t-J6A6Yw8nNIXaeWROXabReJvrTxYA_-m07AvZ6RiMmJuYgpqI2cmshYGNYCpof3EsIA','Slime Slime 101 - SignatureCare will take care of all your needs. They know your time is valuable and get things done in a timely manner.',3,'',10,1),(978,'2020-01-20 06:09:56.039443','AIe9_BFLWlqwz3qGBnCfbAsLD0lV6GTvgF5eKWqA-ZxdcpgaTXeDWbP_lW72DUwWYW_IcdLFusvxBVpqly3poA8LlAGYqZed4cy2mHcrrAjCyAXkWyMOon4','Patrick Bailey - Quick and efficient. Very helpful.',3,'',10,1),(979,'2020-01-20 06:09:56.088289','AIe9_BFL0OZrFaHgoJtqifT1GHrI1rhBO_bR0oSYbLMb6VZ_aOJRaSAjJxppW6wdSqZ9OoVU05sf0SksIM_xrQjr2wjNAR5szWcKwAWwHkyJ8bDo3noWx08','Samantha Galvin - Amazing!!! Fast service, friendly staff and a clean environment. The best by far.',3,'',10,1),(980,'2020-01-20 06:09:56.236468','AIe9_BHR7p0hPy1flx1br0TYdEUBJ_T3SJEeNqio6q1X4d4vKz1tor2ahGDEtvdxI_wcOkCkcAgjePB0TnO3G6xRNMovcc9Kj-nNIAGzzIJK0G3EylQrr6A','Starlett Carrier - I can’t began to tell you how caring professional and attentive everyone was during my visit. I checked out of memorial Herman and Beechnut due to the staffs rudeness and lack of ca',3,'',10,1),(981,'2020-01-20 06:09:56.285584','AIe9_BGhYIk2KhOdF8fekWDvq8JUWwPH6K4mwu_TcI0JJJt4oYB3ZH8e8N_-uO8yZFUD946kv2Ix4SVOaKSrA8nKza-TMR2T50kTJRrfwwGzmIh6qXli7eE','Amanda Reenan - Came in and was immediately helped by Kendra. Very nice staff and Dr. Hermka was thorough and quick to get the results.',3,'',10,1),(982,'2020-01-20 06:09:56.334977','AIe9_BFqh_zr355jzGaEpH7666zc7OjTmS7Zd1kGWhMLgtrHNeu03YTM8jwhXz5xyfuT_7WnqeFQ36HzXEkeAGFQ2Pg8UAUSrNcV2r_nsCF-p6maU1aprDw','Bailey Todd - They were so nice and helpful! I felt so embarrassed about my injury, but Fatima, Sarah, Dr. Henderson and Daniel made me feel at ease and like it was no biggie! I’d for sure recommend t',3,'',10,1),(983,'2020-01-20 06:09:56.384302','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fai1-nKDBdeYnbKtEX_a7rYsXHdbgYxSS-bEvqek961JWVVfphP4DELAdv74OzWPjCglNiBqE3vL1E5gS7_BVLRfF0h4','Terrie Lewis - None',3,'',10,1),(984,'2020-01-20 06:09:56.482700','AIe9_BFhqAtkXvUqdYNeMuBBGjaAGfgxptcFuA2PKKGsIAL_bqJIfEawcKLc_puE8fvTAQfirbES5H297iQGnzN4TBD9W9vr4ZH3kt9fDTS2AMjXLq0QFFU','Christian Giles - None',3,'',10,1),(985,'2020-01-20 06:09:56.580994','AIe9_BFMK6FB7k24ANEBV5CospTTGk2ZzyvEYb1xtNRtxvpUl5vfGX4tWZAZ9PdhvImePwb5bXGXeGkZBbASZV3Xro91xUK2HVMEm4xUL4EFJQVGfuFKKhY','tyjanae smith - Very friendly staff. Carly made sure my check in and check out time wasn’t prolonged. Dr. Akunyili diagnosed me and prescribed me with the proper medications. My nurse Irving was funny',3,'',10,1),(986,'2020-01-20 06:09:56.630271','AIe9_BHkHJRvhG8n5BjqdcMSKR_FSkjQh5K2hfut7VM93HLm_WZcC0hxZo9JT41LyDZzEMvpXte8Kz_WxVITuuvS2P5lmA3UNKFMAD4hxEMMo2qe0tFwrq4','Adrian Pardo - Amazing place! Their service was excellent and all their staff were very friendly and professional! Finally an ER that we can trust and be seen very quickly! Receptionist was also extre',3,'',10,1),(987,'2020-01-20 06:09:56.679712','AIe9_BGZuRKHeO1iYrcf4B001kE2ZRzWI4oYifgkYQDY6OOW11BlPtPT0dzF7XB7-Uj57T06I3NuqLSJ-y8IALCbd606QGhDGiMBB-k1gVwmt8RkirZqgaA','Erikuh Muhree - Dr. Akunyili and Nurse Marcie were great\nThey explained everything to me from beginning to end\nThe whole experience from Check in To checkout was awesome\nAll drs, rns and staff at sign',3,'',10,1),(988,'2020-01-20 06:09:56.728676','AIe9_BGhYIk2KhOdF8fekWDvq8JUGjdoYTdqB5WWj0pzY1QsXC3raqid0A3pOeEd0GREYZIYiFiiOiboN1-zlmbe5L1P65NBJflfh11LRiN-wrspDg_noVg','Ebony penrice - Very professional. No wait. Attentive staff. Positive results. Very clean. Do not try to eat up your insurance as they treat you and release you. Thank you and your staff.',3,'',10,1),(989,'2020-01-20 06:09:56.827456','AIe9_BGErQpX2pRNZrXBy5NOsH0ebBKBalABcUNb9RdXnoip_8hqmraNviQSsqpEw3d3VPODZHBYmgbRZPqslbfB4Ku9qsTmUrZoMMll8FihluEozUnG2v4','J S - Had a great experience here today with my 4 year old daughter. The nurse and doctor were so sweet and caring. My daughter had been traumatized by the flu the last few days, wouldn’t take medic',3,'',10,1),(990,'2020-01-20 06:09:56.875986','AIe9_BEV1VP1woYvuPRixSBHlWg4KdNZU9VwuY-xcIJZ1qlirj-CtPqhO70qjrOfGQFrAwBtkxUSbZBHX7WeQ8-l5ErCnnxrCX_SuQK44170Gyl7tsAGzzo','Hector Giron - State of the art facility. Staff (Dania, Ebony, and Timo) made us feel at home and were very helpful. Blessed to have This urgent care so close to our home .',3,'',10,1),(991,'2020-01-20 06:09:56.925365','AIe9_BGhYIk2KhOdF8fekWDvq8JUb88XVdpXFrni3M2v0J1teVRaC6hYVK_eYpvEftXk_7RtPGc236Q47fptEfnMrT6Aw_i00Nny5BqQ3kprSI9EJHI21hw','amie Crawford - Everyone here are caring to your needs. Fast at helping and getting what is needed in order to make you feel comfortable',3,'',10,1),(992,'2020-01-20 06:09:57.024476','AIe9_BEHZ7lh7y1sP-UInhkpmlIpNX88Q3sKOftHW1hrlX-d4AwLH98q7eYTDAd7WmPahZzsxcqVJ9j4CunCwYJbfDJRP54VGrW-zRVAleQUwzvcFB6kodg','Monique Glover - Sindy was very friendly upon registration and answered all the question I had. Dr.Guharoy and Stephanie were very knowledgeable and understood all of my concerns, and Quyen got my lab',3,'',10,1),(993,'2020-01-20 06:09:57.122736','AIe9_BGlY-BaOO_aND3JZqxJBS1Rqd7_b_UkIYJDKpOc0JZeuf6H3SghsUin6jhMC5kJ5Hutf1Uw3Frvm9O073btCdX4nMo8VQrUFeR84cZA2nB0BtGqugI','Christian Evans - My visit was very pleasant. Nurse Vivienne was so sweet & professional. Dr. Miller was very informative and make me feel very comfortable. I’d definitely recommend anyone to come her',3,'',10,1),(994,'2020-01-20 06:09:57.171973','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2iAnv2RLrYWlymm6eylX5pZv_kk6VxtYObE9v648TKIDaHn-N3UgsyhRxugDSNlbvJoBK5uChejE6uuNE68yEa7VoVn4','Chan Hayes - Jocelyn marcus and ekaterini. Get fast service and friendly people here',3,'',10,1),(995,'2020-01-20 06:09:57.221313','AIe9_BHR7p0hPy1flx1br0TYdEUBENJG0jsfDSZoqg2S54NA1FLcj6bErrkMbZGbqlC0JCjh9YDUcnZafkdf-UH-JfgchEoNjPa_jq9aMFE8h4PNcg4LlnQ','Starlene Hayes - Evening, First time coming here. the atmosphere very pleasant and warming. I had the pleasure of meeting this awesome team today. Dr.Edwards , Jocelyn , Ekaterini S , Marcus And Brian',3,'',10,1),(996,'2020-01-20 06:09:57.270488','AIe9_BGTHfLB7ZAtvlQmidaL-PvDHAgp300yDvyUXo67ibmnFFB140Vh3QY_Oo2Gy41vIjHAGSYERl8Nme3qK8_JNgWG73FaYMk0v3s4ZwX8U_GDcgaJWVk','Mizraim Reyes - Took the missus here for some chest pain, staff was very kind and helpful, kept the mood up.',3,'',10,1),(997,'2020-01-20 06:09:57.319749','AIe9_BF8X4EpR_fF6mwcYdso9awgvXjMmzQsFW9jaOmli9hlvxH5Z71j-DeQ0cQwEEt-sC3Ayr-joSpxzhjuQOxvWMCEamUxPjOvRXmBmkNM7ElRO52WyrQ','sara martinez - None',3,'',10,1),(998,'2020-01-20 06:09:57.368920','AIe9_BGZuRKHeO1iYrcf4B001kE2sr9rh5G4B8Gy6303QYVoO2y5Jw2ELSmnOvIzu1MjyvMqwmlOnQWEbTwkKcyD9wzc0tvCL_LnFyPuVILmDCCfii_gKOE','Matthew Woodruff - Normally wouldn\'t be excited or thrilled about a emergency visit but Signature Care has definitely changed that. They have the most amazing staff. We weren\'t waiting forever and the',3,'',10,1),(999,'2020-01-20 06:09:57.418221','AIe9_BFL0OZrFaHgoJtqifT1GHrIvu80qkbpMD1oHujcX1J6-h-Te4Ca6b2aRBEBy076Z8aEXu0lEvKCvN0aFstORGHPaxDNzN14oZLvyjE1hJ1H_8K3Kmc','Tasha Raie Fit - Very convenient. Walked in and was immediately help. Recommend This place.',3,'',10,1),(1000,'2020-01-20 06:09:57.467674','AIe9_BFmRFRFwJGRfUDOW8jG3rXnC9tyVClrtIaPYOE9PZHkvzNJRjJm57uxSVyYZSE3m6IwGfTHFLRbyqTRyoHtvydIfb5NI_2lBaabmB1RmaYR6q5Y-EY','Laura Gravestty - None',3,'',10,1),(1001,'2020-01-20 06:09:57.566258','AIe9_BGErQpX2pRNZrXBy5NOsH0e7AH64hPoP4dIMYtdl5DVzBuTSopWM2MvH53ClGJGPgA0PfWHC14mrh8cGyjhjsohE85vbiW3346NQd8r31UEcMhl1HY','Rodney Price - None',3,'',10,1),(1002,'2020-01-20 06:09:57.664483','AIe9_BGZuRKHeO1iYrcf4B001kE2NQM1-5RAwZBJyi9kFgPWf5umo5wX8WfOFG9Jeagib1VEfZZUUiY6Vkdj1DvR_DwPAhxNqbg8HY3xWN4T86i5rO0ggL4','Pamela Young-Robertson - The staff from the front desk to the nurse\'s and doctors was very cordial, I was in so much pain on arrival. With the team effort I left with so much peace. My pain worsen the',3,'',10,1),(1003,'2020-01-20 06:09:57.713666','AIe9_BFMK6FB7k24ANEBV5CospTTTNOHDHrfPqHVZyyTDyc8wlpmEigeeuFhq7nmGFvLoz6DoXG8v39297Lo1Cr-kc0oT9127zP1Hvl224v_3l2tOWGdQ5M','Sheryl Wallace - The warmth and caring was felt as I entered the building starting with registration (Delicia) , nurse (Kelly) Rad Twc (Son/Le/Vasmina) and Dr Guharoy! Thanks for being an Awesome Team',3,'',10,1),(1004,'2020-01-20 06:09:57.762879','AIe9_BEjL8GlZLzWC88r4N2XQbJouTzj41RSKgb59JCZMvV_9MdEbUJR3B-XqlPaWpUgzS3HDONNwoza_qoCjL-b5xeFyzsbi2diQaJ1NuA8dKA2dfyWXgw','Jessica Vickers - Everyone was so amazing. They had a lot of patients at the time I came in but we never felt rushed or abandoned, as you sometimes do in the ER. Brenda at the front desk was very frie',3,'',10,1),(1005,'2020-01-20 06:09:57.812416','AIe9_BGIy_plKfaZrItPyyQZNLvskHxT5hwStps6CbFt9zdwH63cEaBawaOkyQwUL9AeaLMP1SDlyfdAxV8Q8RQFY2xcoC5hip_Gp5z-Dj1Pmrc7R8BeQ3A','Brianna Stanzione - Staff is super nice and very helpful!',3,'',10,1),(1006,'2020-01-20 06:09:57.910601','AIe9_BFMK6FB7k24ANEBV5CospTTaRAot_tRf2uvxZjJ60FJH1MZQAQYnM8zbO-RUdfcolw8nK6xjOrNEotEBnvGas7GRGTIbIJ7fN0gqtFGPP93DWHIz6c','Glenda Ageitos - Everything was wonderful, the staff was amazing, Dr. Souman, Churiah my nurse was great!! Thank you Jackie, Kenzie and Dee!',3,'',10,1),(1007,'2020-01-23 08:25:35.615742','AIe9_BHZM2k_MpOhRgkb8w5Bn_urcKr-gJRY3oaKUjc5xJ4OZ9AyMO0PIGmyeg3SlGqEopK1Vk-UllEPHrFiQAO6sVv5d9mOeJksgR1wOEAQPLG52ZlcN6w','Jack Right - None',3,'',10,1),(1008,'2020-01-23 08:25:35.670789','AIe9_BHR7p0hPy1flx1br0TYdEUBC9noJIkNvEhsR8GjSUIg1M9SIUmUuNf5PsVHN4zKsnbETvQNZ-eA1wQ4QNRj5Hd3v0P9U-15wXTNvMP1spyfrQjLx08','Brigitte Velez - Came here because my mom had a really bad allergy reaction and Tanisha was super friendly and helpful! Translated for my mom and was so friendly! Constantly checked up on us! \nDr. Zhe',3,'',10,1),(1009,'2020-01-23 08:25:35.719876','AIe9_BFDvtvCY6mNmVUeGBiBb7S5a2U5t4qms6LFokb_mPCbHk86MB_cjYnNbIQOqD0qXXNY9QG8uthcCNnYuH_lhNSJLhosI16OhYBpNY4HQ8fiLKJyhww','Brooke Smith - We come here anytime our regular dr or walk in clinic is closed and they’re very good.',3,'',10,1),(1010,'2020-01-23 08:25:35.769211','AIe9_BFu3rdicGrPrzdyu4PDXmqMdaxJp0PaYMR74uE45YPFbCR9ZW23DDVMjEr-zusvEMRccfsmI5bULNaY-ro5eYsauEIz9acTJUrRv9wHuCCzYrTDrq4','KA Hall - After struggling w/severe colitis attack for several weeks, reluctantly realized had to go to the hospital. Aisha, our mobile IV nurse with Luxe IV, recommended Signature Care Emergency Cent',3,'',10,1),(1011,'2020-01-23 08:25:35.818692','AIe9_BGlY-BaOO_aND3JZqxJBS1Rg6SXHz5aYROhlfePcmqbokRm30ic3HKGGxbLJqoq7Xngi8C2uvs4yvp7TT1AqpzYjAJarfcm1j7auHHjTpr0Bd-qmNU','Jasmine Orduno - None',3,'',10,1),(1012,'2020-01-23 08:25:35.867750','AIe9_BEAgUIalCkcXZnurOUpP4uA5bWjydtXBvTNo2bU7T8KX5jfaz9Nb4TKQO97bppy19NrenRatDAOVIrraVyt1ZneFOfAsjPhaf92to7MFOpirbUiMeU','Tony Davis - At least 5 people showed up in the room to check out my wife. Very thorough and professional. Highly recommend this facility.',3,'',10,1),(1013,'2020-01-23 08:25:35.917068','AIe9_BFqh_zr355jzGaEpH7666zc9OHSZK_Wwcf84YJGmRFfR9RFJVHvWU7jWp4z9nnFQd3S4j5ZyPelBM7Ldl0yx4sVM4JBPiMTjEKEqMHhWg4YrW_4Rsc','David Delgado - Excellent staff :) Kristina, John, Hanh, Genesis ans Doctor Jaber were all very nice to my brother and very informative',3,'',10,1),(1014,'2020-01-23 08:25:35.966362','AIe9_BFhqAtkXvUqdYNeMuBBGjaAx64zW321r6mJ7PMwOOYnXveXj-dZkSyuFSnBK340w4Uf7-UkGSZCFIfq6H93DRDiIeDLmbPvS4ySLCckKgpI65hxqNE','Joseph Caballero - Kristina, John, hang, genesis and Dr.Jaber were all amazing. Would highly recommended.',3,'',10,1),(1015,'2020-01-23 08:25:36.015563','AIe9_BF8X4EpR_fF6mwcYdso9awgG2cu_iWa2cWQODnd7XZAnI-907qAcoVGSAsmVRrFec9aDXjzIGP2cCZyzCrsMEV7-jhyIk7IFSivf5551jZapISs-pM','Cara Donahue - This group of medical staff was just Amazing! Hands down! I had no wait time, Dr. Hemerka and nurse Kat were just simply caring and attentive to me. They had me feeling better in no tim',3,'',10,1),(1016,'2020-01-23 08:25:36.064882','AIe9_BGZuRKHeO1iYrcf4B001kE2diCXj9nKwPzU7LuxddGKE8TmYaNM7LEGtCpm8Xmz8_cd0wtD91xp1jZC1B4Ru7klL6lm2pef4jge0e_4aSF9PQU2-BE','Jonathan Hoar - The staff was very friendly the entire visit. The nurses (specifically Jacob and Remington) were knowledgeable and explained everything that was going on. Dr. Vakey was great! He broke',3,'',10,1),(1017,'2020-01-23 08:25:36.114138','AIe9_BFhqAtkXvUqdYNeMuBBGjaAIdpiqHVAvRKpoSB91qGCyQrXiKGUAkhQa-OnHign3eXPaCnMYmf8N2FCqsy5cMPtSdJHzpD56WJwzkqzffp4pCKSH-k','Jaymes Roberts - Great experience. They are always super friendly and best of all fast!!!!',3,'',10,1),(1018,'2020-01-23 08:25:36.163508','AIe9_BHkHJRvhG8n5BjqdcMSKR_FLa3KaXNcFINVTPBcwXPiktJ4zkQ6tmhEYFxUh8BwqKhYD7jxZ91cAc8-jCN2ZRLLuskfy59L8w5CQ__2_9CYrXaK2CU','BlazingHype - None',3,'',10,1),(1019,'2020-01-23 08:25:36.212722','AIe9_BGTHfLB7ZAtvlQmidaL-PvDr7Xu10mGcKygXnWUlyrnQXYUWf04Y46TpL9bwtdb0R0vYwHSZUTA9Vvc5HmVlMxXhCcP6T41evxw2vtDAyCXQqT8VzM','Allina McDaniel - Awesome and quick! Dr. Remington and Jacob were great. The front desk Kendra was so helpful as well! Highly recommend.',3,'',10,1),(1020,'2020-01-23 08:25:36.310867','AIe9_BGZuRKHeO1iYrcf4B001kE27ZHgDUrytflkNvc4D7KurvnhWCf7KlaG-lwvu3BtvmoT7tx2VwVMhBMg8RwIc--w-is1i5if5d454pAwGrK9usQKCh8','Brandi Reed - Kendra did awesome! She really hooked it up!!!',3,'',10,1),(1021,'2020-01-23 08:25:36.360413','AIe9_BGZuRKHeO1iYrcf4B001kE2tNPRlmcUla5P1yH3OOgTIBDKWWid97V21HLx01pyi0Q2XEj0Cd7T4FKlTkagVZkDyYgKE4ZxC2rcgHw0FErICeVpPcs','Kymberly Sredanovich - The care was fast and effective. The receptionist made getting registered easy and with kindness. I hurt my back and they knew I was having trouble moving. They assisted me with',3,'',10,1),(1022,'2020-01-23 08:25:36.409807','AIe9_BGhYIk2KhOdF8fekWDvq8JU1kBqlyJ4jAsGJxFnlx1F0EHXaiQ2KeUQDZt-nd7_KkZLAO5xWcRn0XQZb2EwuDwxcPXN2Z34ezBhavDS0oZLpgSiG0Y','ashley williamson - Best experience ever! Love, love, love the staff! Dr. Goodman, Adam, Andrew, Chris, and Aileen were all perfect. I couldnt have asked for better care.',3,'',10,1),(1023,'2020-01-23 08:25:36.459068','AIe9_BGvUJd9etQojwpjZIMsiFne_PS_QRw0fI_XalL-XsP9qU3nnfH4t29H3KvQKu1ak0lMqjESI0t9SUQmytZHgpceT2bJX-4Rs2ErtPq0nXog6Le4nNw','Valerie Rangel - I came into to SignatureCare and was immediately welcomed by Kendra, who helped put my nerves at ease with her positive and reassuring personality. I was helped by nurses Jacob and Re',3,'',10,1),(1024,'2020-01-23 08:25:36.508475','AIe9_BFu3rdicGrPrzdyu4PDXmqMGve1gRl5VF4OydMZ295htCvbPcp02uowuasi1x4MoC2uczFbnRHVfiPpaC1j7RwWoStox3FZcKo0buo3bprnNzgNYGo','Saher Nabulsy - Fade fast and prompt service wife was in a car accident and they took the other vehicles car insurance and did not charge me!',3,'',10,1),(1025,'2020-01-23 08:25:36.557552','AIe9_BGlY-BaOO_aND3JZqxJBS1RIrSEG9Yw5h_GlXRzH8zomNVOvL7LLNiycC85W1mcbFZmPxNSerlIq48NBhmPud3uncPm2xs5GUmeQXksjGmZg06s6JI','Leslie Bustos - Loved the fast service compared to a regular hospital. I was in a car accident was able to bill the person at fault didn\'t have to pay anything. All of the staff was great. Dr. Jaber e',3,'',10,1),(1026,'2020-01-23 08:25:36.606913','AIe9_BHkHJRvhG8n5BjqdcMSKR_FZTjFDT8hcdcy1Ft_5HZ0n2fBu-pbc-5EyA31fO8SuNQx8gp3akxO-4rTS7OFuPvoZA7bI4ehzb75hB3FxhIibYFhNiY','Jamaya & Rannisha - None',3,'',10,1),(1027,'2020-01-23 08:25:36.656197','AIe9_BEAgUIalCkcXZnurOUpP4uA_pPG45HKLX4pusCVodhFC7MuCpzqsjKyqvLMwrXmfVrAIjmMel2fFXC1RfrWq4HEzPDhRrKmrDityWjOgV7zuey5ElM','Janet Troxell - Great to have such a great place close to home. Full service very friendly staff.',3,'',10,1),(1028,'2020-01-23 08:25:36.705450','AIe9_BHVBnWjBJvk55vq2QEm0wl-IuukaDqVqXOtKYh2w3q1yiPqQh_29SK_OY4Xl34f5hu6YJlx0Jeu5f3heSTAQwvEZn98Cv9WHjtUI5vNSZQ-gex0lCA','Amanda Hicks - None',3,'',10,1),(1029,'2020-01-23 08:25:36.754699','AIe9_BExcxslmE1rr7n5jMcadSKe8f9LnJbVy0InEtR2iEBM5MxAo-_FiXmVkR3jwsByJh0IxEyS95uMsufRJnYt9MPahYuDKELvhtXsa5gBWFuxqyNeOTs','Bill Iroh - None',3,'',10,1),(1030,'2020-01-23 08:25:36.803909','AIe9_BGTHfLB7ZAtvlQmidaL-PvD09udxOqxTUEEm6CX3DHI5518gxpNJJdAPfGB0rkA21oE9-J1fAt2my5dBUrsHvy8uu9OinmekWRrYZuJot7JSFSq_0A','Jessica Zamarripa - My experience here at signaturecare emergency was nice. The front desk admissions Kimberly P. And Cecilia Z. were quick to check us in. The Nurses Nicole G and Olusola S were super',3,'',10,1),(1031,'2020-01-23 08:26:39.658092','9709','Thank you Bill, for your great rating!',3,'',9,1),(1032,'2020-01-23 08:26:39.897238','9708','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to',3,'',9,1),(1033,'2020-01-23 08:26:40.044599','9787','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(1034,'2020-01-23 08:26:40.192076','9642','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1035,'2020-01-23 08:26:40.382177','9592','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(1036,'2020-01-23 08:26:40.579373','9593','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1037,'2020-01-23 08:26:40.677464','9594','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.',3,'',9,1),(1038,'2020-01-23 08:26:40.751713','9607','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(1039,'2020-01-23 08:26:40.800853','9608','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1040,'2020-01-23 08:26:40.850258','9632','We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.',3,'',9,1),(1041,'2020-01-23 08:26:40.899521','9619','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(1042,'2020-01-23 08:26:40.948887','9620','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1043,'2020-01-23 08:26:40.998075','9599','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and dia',3,'',9,1),(1044,'2020-01-23 08:26:41.047362','9600','It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing Sig',3,'',9,1),(1045,'2020-01-23 08:26:41.096645','9601','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1046,'2020-01-23 08:26:41.145748','9602','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1047,'2020-01-23 08:26:41.195134','9603','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1048,'2020-01-23 08:26:41.244364','9605','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(1049,'2020-01-23 08:26:41.293796','9606','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.',3,'',9,1),(1050,'2020-01-23 08:26:41.343121','9641','Thank you so much for giving us five stars, Terrie!',3,'',9,1),(1051,'2020-01-23 08:26:41.403295','9615','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1052,'2020-01-23 08:26:41.452556','9616','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(1053,'2020-01-23 08:26:41.551202','9617','We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.',3,'',9,1),(1054,'2020-01-23 08:26:41.649716','9618','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1055,'2020-01-23 08:26:41.698561','9609','Thank you so much for giving us five stars, Julianna!',3,'',9,1),(1056,'2020-01-23 08:26:41.747880','9610','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1057,'2020-01-23 08:26:41.797625','9611','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1058,'2020-01-23 08:26:41.857905','9612','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1059,'2020-01-23 08:26:41.907034','9613','Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosin',3,'',9,1),(1060,'2020-01-23 08:26:41.956317','9614','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1061,'2020-01-23 08:26:42.016687','9621','Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare',3,'',9,1),(1062,'2020-01-23 08:26:42.066047','9622','Thank you so much for giving us five stars, Bernie!',3,'',9,1),(1063,'2020-01-23 08:26:42.126316','9633','We appreciate your great rating, Gina!',3,'',9,1),(1064,'2020-01-23 08:26:42.175592','9625','We appreciate your great rating, Alana!',3,'',9,1),(1065,'2020-01-23 08:26:42.224961','9626','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.',3,'',9,1),(1066,'2020-01-23 08:26:42.285292','9627','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(1067,'2020-01-23 08:26:42.345627','9629','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1068,'2020-01-23 08:26:42.405985','9628','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1069,'2020-01-23 08:26:42.455320','9630','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1070,'2020-01-23 08:26:42.515680','9631','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(1071,'2020-01-23 08:26:42.575929','9624','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1072,'2020-01-23 08:26:42.723905','9634','We appreciate your great rating, Savannah!',3,'',9,1),(1073,'2020-01-23 08:26:42.783636','9635','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and dia',3,'',9,1),(1074,'2020-01-23 08:26:42.833609','9636','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1075,'2020-01-23 08:26:42.894018','9637','At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.',3,'',9,1),(1076,'2020-01-23 08:26:42.954307','9638','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1077,'2020-01-23 08:26:43.014569','9639','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(1078,'2020-01-23 08:26:43.074917','9640','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(1079,'2020-01-23 08:26:43.135365','9623','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(1080,'2020-01-23 08:26:43.195756','9597','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1081,'2020-01-23 08:26:43.256167','9598','Hi, Sheila, I\'m sorry you had this experience and we\'d like to look into it more on our end. Can you send an email to info@ercare24.com so that we can reach out to you for more details and try to make',3,'',9,1),(1082,'2020-01-23 08:26:43.316549','9590','Hi, Sheila, I\'m sorry you had this experience and we\'d like to look into it more on our end. Can you send an email to info@ercare24.com so that we can reach out to you for more details and try to make',3,'',9,1),(1083,'2020-01-23 08:26:43.376956','9604','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(1084,'2020-01-23 08:26:43.437353','9591','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(1085,'2020-01-23 08:26:43.497702','9583','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing enTrust Urgent Care!',3,'',9,1),(1086,'2020-01-23 08:26:43.557874','9588','At enTrust Urgent Care, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.',3,'',9,1),(1087,'2020-01-23 08:26:43.618461','9595','We appreciate your great rating, Christian!',3,'',9,1),(1088,'2020-01-23 08:26:43.678846','9566','We appreciate your great rating, Christian!',3,'',9,1),(1089,'2020-01-23 08:26:43.826277','9596','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(1090,'2020-01-23 08:26:43.925358','9567','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(1091,'2020-01-23 08:26:43.985445','9568','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.',3,'',9,1),(1092,'2020-01-23 08:26:44.090417','9569','Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency ne',3,'',9,1),(1093,'2020-01-23 08:26:44.160072','9570','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1094,'2020-01-23 08:26:44.209365','9584','Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency ne',3,'',9,1),(1095,'2020-01-23 08:26:44.258625','9585','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(1096,'2020-01-23 08:26:44.307777','9582','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!',3,'',9,1),(1097,'2020-01-23 08:26:44.357311','9573','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(1098,'2020-01-23 08:26:44.406310','9581','Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare',3,'',9,1),(1099,'2020-01-23 08:26:44.455649','9579','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and dia',3,'',9,1),(1100,'2020-01-23 08:26:44.504826','9580','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1101,'2020-01-23 08:26:44.553946','9587','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1102,'2020-01-23 08:26:44.603214','9574','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1103,'2020-01-23 08:26:44.652348','9575','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(1104,'2020-01-23 08:26:44.701771','9576','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.',3,'',9,1),(1105,'2020-01-23 08:26:44.751009','9577','We appreciate your great rating, Sara!',3,'',9,1),(1106,'2020-01-23 08:26:44.849467','9578','Thank you so much for giving us five stars, Rodney!',3,'',9,1),(1107,'2020-01-23 08:26:44.898308','9572','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to',3,'',9,1),(1108,'2020-01-23 08:26:44.948017','9586','We appreciate your great rating, Laura!',3,'',9,1),(1109,'2020-01-23 11:17:28.760881','AIe9_BFMK6FB7k24ANEBV5CospTTMhO8cUtsfQUKjxq9QH-P3EjwhGfmxnMWCzEsmwtbOX7j0I2XVR6FCxdVQbnNHwVB4d8WaRkTbc5hbjvy0k-tCuMLApg','Taylor Bass - I had a shoulder injury that was really painful. The staff onsite (Tatiana, Nicole, Chris, Dr Patel) were really knowledgeable and helpful. I was in and out within an hour.',3,'',10,1),(1110,'2020-01-23 11:17:28.812248','AIe9_BEHZ7lh7y1sP-UInhkpmlIpPJ12wbVJKx2EliDIWNXeMlqw-i69TxFuSA8r5c2_smgDHBgMablyeZdlxpaNTCE0WxkDtAR4GKF39MHFPt2lN5IIK-I','Christopher Smith - Visited late night for an injury. Really impressed with the staff. Tatiana was swift at the front desk. Nicole and Chris were great nurses, even the techs were fantastic. Dr Patel',3,'',10,1),(1111,'2020-01-23 11:17:28.861591','AIe9_BFmRFRFwJGRfUDOW8jG3rXnVrw4yMIH5MuhzK7o47r0SYPpv6QoTxdClj6vF2TNfP5ExZ_VAXeZXTLSrEMf93lj3LWV08JpFt8vcpv8qfK8ycIQ46Q','Kymora Thomas - Service on 11/17/2019 Dr.Faig, Nurse Balliu along with the customer service rep at the Copperfield Signature Care were amazing. Service was rendered in no time. Simply great customer ',3,'',10,1),(1112,'2020-01-23 11:17:28.910827','AIe9_BGvUJd9etQojwpjZIMsiFnezAXwOuHLUabXw3W-u-7soBumgg2TkLoZUeqkdFl01i-YvIYgnKstMA__ruPJPw81r7HuJoaHskx6Pfqh_J4HePF4nWk','Ana Nevarez - They were all so kind. Very quick service. Shania moved us in very fast.Every one was so kind and considerate. Tried to make us as comfortable as possible. Dr. Diaz communicated very wel',3,'',10,1),(1113,'2020-01-23 11:17:28.960122','AIe9_BGlY-BaOO_aND3JZqxJBS1RangAl5AidFHI6dJFTBdmVG3WmxJVI0CKBIqe3ZtAKiH2vro5UmdqAeUgcrwqoecRh-83Rk8Su9l3VZdrseL-wvSlaU0','Jen -StarberryPocky- - Excellent staff. Fast service. Nicole, Tatiana, Dustin, Ricardo and Dr. Patel were wonderful',3,'',10,1),(1114,'2020-01-23 11:17:29.020516','AIe9_BGErQpX2pRNZrXBy5NOsH0exvJim9JJ6ykM8dg46Ew6o8JsAtqO3bin79wjdptzzMThmXGfqDUO-2hPIpXBB0HPANAIL5d6KCu7tm-wgOgHG9WPfWM','Ted Sornson - Really great experience. Came in with terrible ear pain at 8:45 pm and was checked in, evaluated, and diagnosed in 20 min. They’ve got a calm, quiet, and clean waiting area. Nurse Chris ',3,'',10,1),(1115,'2020-01-23 11:17:29.069767','AIe9_BH3gZxYpIxBZcqAOO5HuBVkOlhL0h7KUzD53_t2MyqiG-fN-PWTXoVEMjRyI9j5udoq2tNQTb4d2NdT_DjIHn0sdblEUMei6epsoggn27WM6JFvB4o','Darniesha Wrightner - The nurses and the doctor took care of me right away and treated me with respect. They got me “IN AND OUT” I appreciate everything they did for me so s/o to RN- Lucas, Kim Domans',3,'',10,1),(1116,'2020-01-23 11:17:29.119055','AIe9_BHAFUK2tNBZL25dLQ0jVdh0SnRsBskrZI81pPpSYDZ1Q7TTEziEHuUZjbo4yreMOibaokolS_Fe-JYNKhONb7W7UfkaO5WFspiRXGeOPmK_v9NhUwo','Jessica Anderson - This location should be the EXACT prototype for ALL SignatureCares in the Houston area!!',3,'',10,1),(1117,'2020-01-23 11:17:29.168005','AIe9_BFL0OZrFaHgoJtqifT1GHrIUdA0241x-C11_Hfe-McfVufIlq8ArW3aUdzcFGjp5EzVV3PkppcxW-Yq1tm8egnxM-colJrz8ggdveAhL_eBY1s8OGQ','Lindsay Mahlow - Dr. Patel, Nicole G, Chris M, Dustin, Ricardo and Tatiana all took great care of me as a scared and very sick pregnant patient. I was able to walk in right away and be seen by the doc',3,'',10,1),(1118,'2020-01-23 11:17:29.315931','AIe9_BFqh_zr355jzGaEpH7666zcL2wEfx4hFtaYt49pBda7L9xtonQXl0mGLIlSJBm9NUxmzbDHCNiKWzIpiIv8gGLieOHjFygRTPuzTp5z5gXIZv_hzCE','kiara parker - They were very good. Treated me like their own. Would recommend them all.',3,'',10,1),(1119,'2020-01-23 11:17:29.365569','AIe9_BHVBnWjBJvk55vq2QEm0wl-2As3ikhAi9lpcFU3EKGkxRPfCQgXl-FlvSGXsDb_wPFUHO6nzcih3v9MNGSMs0XcABjx4jBHuQWHhoWH-UzBHxD6HkA','Wendy Ugarte - The whole was very nice and answered every question.',3,'',10,1),(1120,'2020-01-23 11:17:29.425827','AIe9_BEHZ7lh7y1sP-UInhkpmlIp-NWORN-XsRHkunAk8BVrV-J822mUXqlX2OXsNcbKgIMRA_dPdcwhwIQY67Exg5wyAqg__GDSAB2WGAodwj9LPFiXSRo','Bryce Keeler - None',3,'',10,1),(1121,'2020-01-23 11:17:29.475209','AIe9_BG_KYPQZrI7j-moUldshgc1ZPp5afnBLwMWudd3n2Vy7xqvHqqn1oN-ebqqyPnE88lDX20WCrefceAOD2sfqqCJ97joVSnfAhxrsZGbgu1drVLFiMI','Joe Watterson - Wish they took Medicare - otherwise great!',3,'',10,1),(1122,'2020-01-23 11:17:29.573672','AIe9_BGErQpX2pRNZrXBy5NOsH0e7SiDo4uNG_uHXSG8zWGfcNV_iqImcF9G_2Q8EyMdJnpfUvd9n58hyNJ_JWAQLCW9jlKwZlrG54nZ0s3xhh4dwcdkaYw','Susanna LeJeune - Had wonderful care for my daughter from Dr. Yost, Brandi, Karen, Kim, and Gunner!',3,'',10,1),(1123,'2020-01-23 11:17:29.622903','AIe9_BGZuRKHeO1iYrcf4B001kE2gwvJxeEWMp4SLirzwzgLWAY-AwHUsqzzOnR-BGmYqUoGOpJEFfPQ506idNTI6Q15f8lADAKZuhT12O-a9NZll0XQvtA','Sophia Lejeune - Received awesome care from Dr.Yost, Brandi, Karen, Kim, and Gunnar.',3,'',10,1),(1124,'2020-01-23 11:17:29.672320','AIe9_BFqh_zr355jzGaEpH7666zceN3Nz2396FfNEKPmdAeDGYi4wOsDn9BSbsqW5iMLUOXX6jHUX1WIA6of3EqYL8kgnalCU2GuKHbFdgLphG0abLHcxWk','Shelby LeJeune - Recieved awesome care from Dr.Yost, Brandi, Karen, Kim, and Gunnar.',3,'',10,1),(1125,'2020-01-23 11:17:29.771323','AIe9_BHVBnWjBJvk55vq2QEm0wl-SJLxAzFkFMuaik4IF136L0VBai0XhLGqa3cyGGUZfhWTrZ2gvCmDjP5nIKcOxVUtJkIkg4Qlzfxz22nPvMaBo-jQ5f8','jlshelton83 - Comfy, quiet, clean. Big rooms and a very friendly staff. Highly recommend.',3,'',10,1),(1126,'2020-01-23 11:17:29.869497','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ImZ09w0aT1VamzcRvxP_UDtXNpgUb-zKsGdD_DB8w3ziD13SzIVyaO_-dQXReAJ8Y161tdhhp-UkarWiEWMnYsjV3Hg','Christina Shipp - None',3,'',10,1),(1127,'2020-01-23 11:17:29.929822','AIe9_BExcxslmE1rr7n5jMcadSKeOd2BjIZCvVhBbUeyHlbQgVcNVANQgoB6yTGhgC0kG2E1FwxEPxTZr9y4W65E-705zoX8mvMjqMWNsWlcRGgE5mJ2Aak','Bpb Works - Jocelyn A. welcomed at the entrance with a smile and reassurance that I would get the help I needed it and I did Alvean A. my nurse asked me what was wrong along with follow up questions w',3,'',10,1),(1128,'2020-01-23 11:17:29.989985','AIe9_BH3gZxYpIxBZcqAOO5HuBVku-nhaSRkS-VUboHetNQ2lHzo-uJ0DkUsdCuGPyi5Fc4fq6EqMe49ZhaY14D51fopqzKKZTvHLR0YRxm7mWQ2Vquz90U','L BOOGIE NATION - I would highly recommend everyone to come here great service and snacks 🤗🤗🤗 Jocelyn A and Alvean A were awesome and also thanks to Dr.Patel we can go home feeling better then this mo',3,'',10,1),(1129,'2020-01-23 11:17:30.039625','AIe9_BFu3rdicGrPrzdyu4PDXmqMbt6hon2Gv29qH5_sGr20YBk5pEwvFdiJCLqjLibHhJzm-Y9NtkpVjI2wXUYGq1E-8OuUXgkYYuuuhIcIeyhpKYqiXg8','Neely Lee - The absolite best experience considering why we were there. The staff is friendly, kind and caring. I would highly recommend this free standing emergency room! Kim D. at registration, Luca',3,'',10,1),(1130,'2020-01-23 11:17:30.138074','AIe9_BFMK6FB7k24ANEBV5CospTThxYr3pUOTrY0nxtH6YgsqcFG-IQE5ezNrX50O9LFu38btR2ae_sYJHnEdYHnMZkIE2s7NXW85ZyNlTiETIpzDBYqzI0','Amy Southerland - I had a wonderful experience. The receptionists Vanessa & Ebony kept me up to date on wait time and there was a posted board as to where I was. My nurses Timo and Dr Brigette were ',3,'',10,1),(1131,'2020-01-23 11:17:30.198517','AIe9_BGlY-BaOO_aND3JZqxJBS1RlEvsZ5x9QCaJCkoi32NpmU-4tU-dsqsQHbwkFS553KKKG10W-MrqrAO1AuZrBdpzURXXHtEm0QZAlpTVoM-cisB9i6Y','symone taylor - Jocelyn A. And Alvean A. Where great, kind and very helpful.',3,'',10,1),(1132,'2020-01-23 11:17:30.258893','AIe9_BHQjprpOXGeqmXihYBIHmuakhnlqD5LB5x6opczVT_CjpHwklWwE6uSS2PG8d2mlqitj6Bkc7-8anP7vTm3VOa2F9AnuYHIu_Mxr5v0CDh-AKWMFtU','denise chavez - Came in with husband had a great experience and delicia at the front desk was nice and helpful would definitely come back! :)',3,'',10,1),(1133,'2020-01-23 11:17:30.319233','AIe9_BGvUJd9etQojwpjZIMsiFnevIohIF-1UGoYeaB8JqWaW4QC6CspKndc-4rrPOVo8fVyC1AovQukVYlvCR-B4Kz8vQp3yo8drAKxKyfcOE9aFT9cZUY','Jaylen Gray - Delicia was very helpful!',3,'',10,1),(1134,'2020-01-23 11:17:30.379295','AIe9_BHx9wW5OAXpNIH08blLdli0T7VkBtOvqi3qOoPUymDaZPIiQe8UfhqPvPdx6yo7komrAYWNlCQCgpkZFD-vB_-8wQ-q8hdlAKKyB7VQ7-uDAvV7FYY','Ant honcho - Jocelyn A \nMeredith\nalveanA\n\nThey was helpful & nice to me',3,'',10,1),(1135,'2020-01-23 11:17:30.478221','AIe9_BFu3rdicGrPrzdyu4PDXmqM3QrJkLwJ2GaTyYN8RGr9bOQNej2Mq8NPZ4lTs09RPEAgBWkveN18uoVP3-3Bor_Gw4fj7cbVLWv2vyRHMs0HwhF-o8g','Samantha Santacruz - Excellent patient care! Staff went above and beyond to make you comfortable. OMG the warm blankets. Doctors did a thorough evaluation, very attentive to your needs. Even betwe',3,'',10,1),(1136,'2020-01-23 11:17:30.538587','AIe9_BHx9wW5OAXpNIH08blLdli0uWpZ-iaLrBqbMNBjw0mSNYoUwc8cRfQJZLNf9X67iwxTtTU62LhQk3tqgjzSiJKJ70vtA3AbgXYQ3yXRYiqaoz_ttIk','Kashi B - Very great experience , I\'m a new patient my check in time and being called to the back was less than 10 mins I was referred by my sister in law , she told me how fast and friendly her exper',3,'',10,1),(1137,'2020-01-23 11:17:30.598998','AIe9_BH3gZxYpIxBZcqAOO5HuBVk_3MmNnEYBybMcn5wof2ZDaUzAf_iuhDylEEz1xD3UYUXPk9Lmd5WeSaDpcITYVcqk-9HJ4M0lFCnry-NHQ5upejsszQ','Nkechi Ukoha - Excellent Emergency care center..super clean.my doc Dr Golla was excellent knew exactly what tondo for my pain n discomfort to go away.The staff is always perfect the nurse was superb n',3,'',10,1),(1138,'2020-01-23 11:17:30.659388','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMzQwUGDOM2DA2nQ4rH4QkCiNg950Fk3KqKC_J_N6D41a0JPWn6osF63tVsjH_HGGO7LXID_EHNPYw2ikpHeZhRw-QIIs','Bill Plank - Clean place with very friendly staff. Staff were knowledgeable and thorough with diagnosis and treatment.',3,'',10,1),(1139,'2020-01-23 11:17:30.719902','AIe9_BFhqAtkXvUqdYNeMuBBGjaAxa_I4y9cMtcHQPbzoM7lkPEb2SWJR_LXv8YObGZpo4FsA0KGJ_ahOY14WW5_zoQvTy_Ol__qD0s6vkcDWJxm7s239bU','LELA YOUNG - This Crew but people make me feel like I am home they are so nice and nourishing they was attended to all my needs. Jocelyn A. Is great and very sweetie and patient as well as Alvean A. D',3,'',10,1),(1140,'2020-01-23 11:17:30.829636','AIe9_BGvUJd9etQojwpjZIMsiFneRnVUTZLRHrOTGzJIhnwS4EjyRFI73DihfSXrA014giZUVxJwgW4xtKtU-g8H5kAEtV9q0gOUfuiJuFM5ATVUGpjJ-Mk','manuel gaytan - None',3,'',10,1),(1141,'2020-01-23 11:17:30.889787','AIe9_BFhqAtkXvUqdYNeMuBBGjaANwU-Y8ssD0zBsFyQxtFrwp6kg1EifscnNfb8mxTmdimwkMZA1Nzbav_42TS6yNG5f_Cc63HG4O4ce2LPzFynyV5RJTA','Savanah Sbeiti - From the moment I walked in until the moment I discharged every staff member on every shift exceeded my expectations. The doctors were very informative and the staff was extremely nic',3,'',10,1),(1142,'2020-01-23 11:17:30.950292','AIe9_BExcxslmE1rr7n5jMcadSKe73MxXUmlEs8f5E63V_LqtN0MpW0bGVhd-30Ikn2PSeBGtv5_9W6X3ATEyBt6NLsCpz2kKshaSr5TVFYSqk5I0SwBGRI','Alexis Doyle - None',3,'',10,1),(1143,'2020-01-23 11:17:31.043854','AIe9_BGlY-BaOO_aND3JZqxJBS1RSAmKS3tgW7C9z__488TJLBCnBDVpgvaf2nzQUqDzWMmYsZlDypw8jFtEE5WwAM1fzft2cQ5AAAooKwDmK2BQ9ySSp2E','Tim Smith - OUTSTANDING EXPERIENCE! I went in for a nasty respiratory infection. I was a new patient and the paperwork was reasonable. They saw me quickly. The PA took time to understand my health h',3,'',10,1),(1144,'2020-01-23 11:17:31.104234','AIe9_BFMK6FB7k24ANEBV5CospTTRQ9UlrKDtOuL7mabGumr8fYyF5oe0WDQDLNNKS8ERdF9We3IVAyxG1_bb_kXTePn4Q5Y8dG8eDlLcYcRJzjglc-cd54','rechanda primas - So! This place is the answer to patients who need to be seen quickly, professionally and compassionately. This is my second time visiting this facility (once with my husband a few ',3,'',10,1),(1145,'2020-01-23 11:17:31.164591','AIe9_BExcxslmE1rr7n5jMcadSKen6IOlzEp67g2CsLusxK0a-Vg4OWQK00kCc3S0mkuzH8A6ybp0_4yG5oUnlNH4dEtMTp1CXA-0iWljL8EcFv8QCCLCXc','Nancy Cruz - None',3,'',10,1),(1146,'2020-01-23 11:17:31.225138','AIe9_BGvUJd9etQojwpjZIMsiFneHuNMPVJEjhRaCb_8jjTUPmPp4_t-mtCvBHpV2HhvP4gsfbVvF4KUCsF3RBtDH8f7L14rU9Ozx9cOdr2alt4tlkrgLCY','Stanleigh Tomich - None',3,'',10,1),(1147,'2020-01-23 11:17:31.285466','AIe9_BExcxslmE1rr7n5jMcadSKeuh7a8YUOGBfjI3DGjVuBOE66niBkRDqIgc7VtrSuy7LpxcG3d3IiwfXqYFZst9oFT5UqyKzHTY4kyaRTkEFSpIomdnw','Kayla Batchelor - Came in with some bad pains in my back. The staff was wonderful in helping me get to the cause of my pain. Thank you for being so proficient.',3,'',10,1),(1148,'2020-01-23 11:17:31.345860','AIe9_BH3gZxYpIxBZcqAOO5HuBVkJuY6XmUY9abEQKsQHjdP1QBtFfFmB8ISGOv0azfhEhFep9l5Sl2UCTmzZ5fhk5xF1u4rwdOyAyFbDoU-mef55_tBp68','Jorge Munoz - Wang, susan, geovanny and tanishia are the best ever, they all did their jobs right and i couldnt ask for a better staff!!!',3,'',10,1),(1149,'2020-01-23 11:17:31.405686','AIe9_BGTHfLB7ZAtvlQmidaL-PvDhFbGJcHnAunS_sbxGhJtkRlkFH1CSReH4YyTT7cLd4_75VNpOai7O0CVuz4xki0Kazq9Zz0UCVktT0OHC0HchRdPys0','Angela Fleming - Great experience! Ryan and Dr. Henderson took great care of me and made sure that I was comfortable throughout the visit. There was no wait and I was seen immediately. Will use this f',3,'',10,1),(1150,'2020-01-23 11:17:31.464704','AIe9_BE-WkHUQvYNuVhjQlzNta9L8oQZ_nAT3p0422N9N9xPyDMCIXbHCcWeVLnLBMzQybnBbg7swAWMQZrkZaH4CO_wThmyft64JTI-ijfuNIqaSM-1Q1c','I Dizzy - I had a really good experience here with Dr.omalley and Alvean chanell they helped me with a really painful cyst and im grateful for chossing this place !!😁😁',3,'',10,1),(1151,'2020-01-23 11:17:31.514479','AIe9_BExcxslmE1rr7n5jMcadSKeBJ1wmcEV5rmnuK9BMHoFzNWgMh7wRqd_AuAk4MLCm_hUM6PbbrfSAn830Fw9VZctk2n6CC5YEi1rHTfwh6U1beNwcK8','Charina Johnson - Very professional, fast and Friendly staff with Dr. Omalley, Alvean, and Marcus.',3,'',10,1),(1152,'2020-01-23 11:17:31.612867','AIe9_BH3gZxYpIxBZcqAOO5HuBVkUXhp7GjkbC6BOMm5tg6QHOYsGVeJMBEEHUTHTTMaCWS2DaoZTpexoPHHrshClmKzbjRtqTjk-sDrzXnRm9wzpn6jo78','Jamal B - The staff was amazing! As soon as I entered into the facility they immediately wanted to help. Kendra and Dyveliz made sure they could get me where I needed in the fastest way possible.',3,'',10,1),(1153,'2020-01-23 11:17:31.686786','AIe9_BF8X4EpR_fF6mwcYdso9awg93T2zFvau_AOzSSE3YcKrmXsrbOFC8k_zBZg1-qEJYoDDuU_aRFe3P9DmII6qZ0S6-VYKtDhUuLf21fLg0ZPDCzvZcg','DSean Harden - I have made a couple of visits to this facility since my family and I moved here 10 months ago. I have to say. Whether it\'s been service for my kids or myself, the team ( Dr. Elsebecker',3,'',10,1),(1154,'2020-01-23 11:17:31.785475','AIe9_BFl89CEg3-ah5_8iIgQFwgZgklDAaXSGrY1ZD2T_0StG163kSsW-yMxpBOsYE3MNRkmLuM2TTUqZ8lmVy7qVW9iHCj23c5BCewz8UYVV1MeWfD_c1A','Gloria Sayles - Alvean my nurse was fast with getting me in and out I was there less than one hour. I was seen the lady in the front Chanel made sure my insurance info was put it and I was see in less',3,'',10,1),(1155,'2020-01-23 11:17:31.884124','AIe9_BGvUJd9etQojwpjZIMsiFnenhnB5o3t6sQ7VfLxJ-0XNxYokzVGWWZYPm0VeWbDTUJTjkFNdUqJmTaNZUNwnMhfKMkYPF4HBB8E3VUfYEZuTlbgx28','Brittany Starace - The staff here are incredible. I was referred by a former employee and couldn’t have been more pleased by the care I received by Shelli, Chris, Dr. Elsbecker, Adam, Christina K, and',3,'',10,1),(1156,'2020-01-23 11:17:31.933143','AIe9_BFBNh-3p60HGE0VxxVuj8CVN2rEVk89qlTwd4mKmoIZ8_Z6i3bNlPpIFg0pmxq95nbLbF4HkDV16qtZP-OlLc5KPVeOXtwiynwEymFgj_eV-beVJxQ','Alexis Swafford - None',3,'',10,1),(1157,'2020-01-23 11:17:31.982386','AIe9_BExcxslmE1rr7n5jMcadSKehJ8XA1_0LpuNXUtp6mdya1tC4j-HqzHJ84mfkO-iBUbVsLfVWku19yViMfS1K1rsyAj4GgNj_m_3PfazpikWzDPLLME','SHERRY STOVER - Good work by Marcus, Alvean, and Dr. O’Malley',3,'',10,1),(1158,'2020-01-23 11:17:32.031527','AIe9_BGvUJd9etQojwpjZIMsiFne-C61_ROD8c-9O1r5QrXeDIff4LMrHovcbkB1IxKhmHZIC31G8uwVvt1uZDI65QTLHuBj0UhEh-GhiYwCQEaoL66K434','Lynn Hart - We went to the Copperfield location twice. Both visits were wonderful! The Clinic is so nice and clean. The staff are very warm, friendly and helpful. The care my daughter received was ex',3,'',10,1),(1159,'2020-01-23 11:17:32.080761','AIe9_BEtr-1H2yEDwUdLS9nPaZGhFit-4JBGwo1e1iWEJJBMzguHFZ-qmBteJZWBjn2uT-7sb3a2RibDho3BA7ik23SFg2QUgQ','Barbara McCullough - My niece came to Signature Care and was admitted very quickly. The staff and doctors were friendly and attentive to her needs and concerns. The doctors were able to control her pa',3,'',10,1),(1160,'2020-01-23 11:17:32.130107','AIe9_BHVBnWjBJvk55vq2QEm0wl-3N733fpGyBhZbM4U8dIAPMzr9GUsLAKAwATqnpnvvPZkFUKVya-DE2hP2_Fc7-bzAYENbJDLlI3aQLKiW-0ok2o5c2w','debra Palms - Chanelle and Alvean were very caring and friendly.',3,'',10,1),(1161,'2020-01-23 11:17:32.179411','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Gvo_nWFRNyQmQuN72KN1eJkgXabPlfrqGRWJbQEScwMnxEkrnIgGpRrulx_UXyLqt-45hspI-TlyfEf225xYMB79Bck','Erick Looza - Everyone was very nice and helpfull Kristina the nurse who helped me was excellent when I was called and then scott was really helpfull too and really nice and quyen was really professio',3,'',10,1),(1162,'2020-01-23 11:17:32.228694','AIe9_BF8X4EpR_fF6mwcYdso9awg3s1qFaQHvMFIyv2ze6ZHNsEDvo3jr4NVJckfHfMUl_D7rgxllkpjlA2L9dpnCdls5AJMbQzuZIB6xVyhjLCI19zYKRE','Tom Kiker - None',3,'',10,1),(1163,'2020-01-23 11:17:32.327241','AIe9_BFu3rdicGrPrzdyu4PDXmqMaryj5ow__ISaPASmsCh6ahyT5VU2Y4eP7ldKZ0P8yEm8xyO0UtKUKfcNk83cKz5zWrsq5ngzRsjufksm-SO-_3hA53w','Deon Washington - None',3,'',10,1),(1164,'2020-01-23 11:17:32.401114','AIe9_BHQRY2ZSwEqF8wFOgAU7mdNoW-UAaT2NLiA3-8UaE9gsjwptEMLmAkqjkVq4Zlww7LjTILc9Oiu3SiTapO803Rw9rPPVqGj_BtSI7hh5B1LjfXCMJc','Lisa - RUN - DO NOT GO HERE. LOOK FOR ANOTHER URGENT CARE CENTER.\nFraudulent billing practices. \nI came in due to stomach pains and was worried that it was my appendix. I asked the front desk if they ',3,'',10,1),(1165,'2020-01-23 11:17:32.499511','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2X9iahhI47p3hWZhxfGnykzk1K8fzNfMe9tzdl6l4tTsbiA_5ny5otq-CsRwoX2vuatwat-OJhTBePlQpBDYg4m7nRrs','jamelle blalock - Very nice and fast',3,'',10,1),(1166,'2020-01-23 11:17:32.598105','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fs1TflvaS-xBnjbX3CEedStwM0seZfgVDjFd6YDw6Gs3rY9hSseuLzHlkzBW_OK5fii7FnbwcPqqfAxunyPyG2NRu_s','Philippe Sergerie - I wish I was sick more often so I could come visit them more often!',3,'',10,1),(1167,'2020-01-23 11:17:32.671946','AIe9_BFhqAtkXvUqdYNeMuBBGjaA6MppXqzhfG4gy77MvrodvzKyrbZn6-f9G5fxFhuV6dog2irkmk0yn4KVj0ZpUB5jh6wGTMboRfZv9a1XJfRi7Qh92Fg','Chelsea Barry - Rey, Vaneza & Don were very helpful with listening to all of my symptoms & giving me good options to try to help relieve my symptoms.',3,'',10,1),(1168,'2020-01-23 11:17:32.770354','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26Uyc9-8OKlr2deT3zWcAoNtLfqUQBLvcDzhWpTj4t1UKHNFdnk4dgiqkhm0_TzLXMEakoq4NH8ZMvqwgG4GAZHC7t0U','Paul Forsyth - Very friendly and fast',3,'',10,1),(1169,'2020-01-23 11:17:32.819883','AIe9_BHVBnWjBJvk55vq2QEm0wl-DsH9zJ0W6XF3wbJRuoU3CJn6r_22akFMEG0dLglgfB-Nt6yYQLFAS993AJ28Du7Ko97i2xg4YEGIsDd6l4VO2UChTwg','Kayla Graham - The staff is great!',3,'',10,1),(1170,'2020-01-23 11:17:32.868920','AIe9_BGlY-BaOO_aND3JZqxJBS1RSelLZVMXM0ZN7ZTx0bK62Xh1kOB1PTpMg6GTEJFraN1jHmxxWhopcEabYKnfIAMNwYDjEp73OZPMd0vLz9PvLqqkrvY','Lara Fendley - None',3,'',10,1),(1171,'2020-01-23 11:17:32.967564','AIe9_BGvUJd9etQojwpjZIMsiFnekz6H-DrCTvQsG5GyXspbUlzPZ3mkNzoVK5BZnB-CfJ1fm-OT_9XjetR9pTpLwvAs1tuqbKwdiFhYK7E_8pKCZeyioA8','Lynn Hart - Twice I have had treatment here and both times the experience was A+! The place is clean and smells great! The staff is friendly, attentive and very professional. I always feel that I am',3,'',10,1),(1172,'2020-01-23 11:17:33.016856','AIe9_BGZuRKHeO1iYrcf4B001kE2QM4EENwdObD4cvrr1mSm-WJNaQdR4CbLJ3WabzaCcZnUcOCFtVrD8fQ76JZ3hYHksEzD7-Ql6nKus-KceEYi2EQ4DkA','Tonya Dolphin - This location was excellent. Marcus and Alvean were very attentive and friendly. I would recommend my family and friends to come to this location',3,'',10,1),(1173,'2020-01-23 11:17:57.037716','9844','We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like ',3,'',9,1),(1174,'2020-01-23 11:18:55.301068','AIe9_BHAFUK2tNBZL25dLQ0jVdh0NfI19ZF_xA0oFg-nwl8BqaaZ67_R037Y-HXYuqoVX2ewWDovclEnxCsSXdoEZMmHuEBa9CnAkByzZISDR9bb7f_6xOk','Amilkar Martinez - Great experience! Thank you Dr Ortiz and Nurse Kristina for thanking care of me!',3,'',10,1),(1175,'2020-01-23 11:18:55.510095','AIe9_BFBNh-3p60HGE0VxxVuj8CVwWT3Z2ID2FePtktPi3LqVQVLLCINhw_GADxC9L2R22HetUSNylIehAmsdGSPpgU6HRt0ay5EDAFiUQRyvHKnWU-h6Ik','Sønder - Everyone here is super nice and thorough especially the people who took care of me, Alvean and Brian. Highly recommended',3,'',10,1),(1176,'2020-01-23 11:18:55.608702','AIe9_BFmRFRFwJGRfUDOW8jG3rXndzopaktQypV3H-ijr5RwIcFMpz409_lRDd7oImXsVPIOT64tLlUhcRojDHTSOVyCloJILFnwKRtduKg7qySgi9Vatw4','Kimberly Fertonardo - Was here this Morning for a turned ankle great service, friendly, staff Dr. Elsbecker was super nice and knowledgeable. Chris was awesome !!',3,'',10,1),(1177,'2020-01-23 11:18:55.731721','AIe9_BEHZ7lh7y1sP-UInhkpmlIpASROmVj2doRfV89AJpeI6Sjy9funuC7QWrivGJUYDtFwNxUWCEGx6VETXgEpfnkL7WDqNMXs0jWw5KUrv2pyl5cWJ90','Paige Hanna - I personally didn’t get treated here BUT I took my friend and they were all so nice and helpful in a timely manner. If I need treatment in the future I would definitely chose this place!',3,'',10,1),(1178,'2020-01-23 11:18:55.780679','AIe9_BG84YPnR8vhxeJfV_lAYVNiGjdxK8-SyZrYELIfjl8n684UyJwxCHjU2ZL2znF-TrXCjSQnph52I9hYSm2A19_mW-_9gusFz3gxU8pl_Hn_ojTPlxM','James M - Overall everything was great. Everyone was very friendly and I didn’t have to wait long.',3,'',10,1),(1179,'2020-01-23 11:18:55.830355','AIe9_BHkHJRvhG8n5BjqdcMSKR_FGLXq5cPc_cYO9l5SiVri31LYNIlQLPpLtAqDFDOsO2pd-DLlYEuvJxOJhRuni_YLiRRx7SWqaLFN_N_c8oy0j1M2EXE','Rashad Punch - Dawn, Norma,Jacque! Are soo helpful and nice! They are very smart!',3,'',10,1),(1180,'2020-01-23 11:18:55.879677','AIe9_BEAgUIalCkcXZnurOUpP4uAvJDGlPFYPxcDHcROoqTcBB0SQKzRjsPtIPF1HkWtEYlLiRMIGKz8oZZDRhOnpKH0xzHDagC8XVwYHh3TLVSryv8GSa4','Sharla Enlow - Staff was great. Very clean and up to date. Will go again if I need to.',3,'',10,1),(1181,'2020-01-23 11:18:55.929057','AIe9_BH3gZxYpIxBZcqAOO5HuBVkFz4P-ILRnu4vkhX24c-NivFmh_uf2q4-OnVP0JdSDn_cof0Ipeu1BgmvcUiCgOvYUIdFmKIL4pfOlbz_gcGV0CfWBXI','Jazmin Diaz - I am impressed of the oustanding service I received here! I took my mother here and she received very much care and friendliness! The place is very clean and organized, front staff were ',3,'',10,1),(1182,'2020-01-23 11:18:56.027583','AIe9_BHR7p0hPy1flx1br0TYdEUBolfLw-rgJj4RqaY7Za4T7RLemj5H_lVPZnu0kzOJP6SVmbWVhL7syNx4oXqHUEyRnuIW-Diuudj0CAOU9NJPLs8D2Q0','Pedro Vargas Jr. - The E.R. Service was amazing . Front customer service Samantha was nothing short of exceptional . Staff nurses and Dr were super friendly and very helpful.',3,'',10,1),(1183,'2020-01-23 11:18:56.076796','AIe9_BGhYIk2KhOdF8fekWDvq8JUqZ4UA5qTSqZPvDg7iU8jTakTSZtSZm3Rk1g1cahLmd8K2IMilcpUXyJLNtivL-2_zMKupfqJfC_Rh38Yo5oHPns7Ha8','Bernie Vargas - The staff was very welcoming and very professional. Samantha, Nicole G, Meredith S, Bryan D, Ricardo and Dr. Yusuf gave EXCEPTIONAL SERVICE!!!',3,'',10,1),(1184,'2020-01-23 11:18:56.126063','AIe9_BGvUJd9etQojwpjZIMsiFnejSqUWlFmvjf-mKmgs7Y9moY9CkJdNRdcnZ2NtQTAX2pT0vIJiZdfe6mJlwQQaaFMqQhWJGCMSBMD3Q9dzWTlvmHomDI','Alexzandra Herrera - Amazing & fast service! The staff for tonight’s visit was super nice & caring! I was actually referred here by a friend who’s been here before & I can honestly say I’m impressed w',3,'',10,1),(1185,'2020-01-23 11:18:56.175294','AIe9_BGTHfLB7ZAtvlQmidaL-PvDP3fTuoF6V_EZUz2zKizp27rq5olYO7rFKrtSAOkvgBhYzwu0PAkQigLqiXs55NAiHIdec6hNAgCXQknMkyJVeenUFpQ','Thomas Perley - None',3,'',10,1),(1186,'2020-01-23 11:18:56.224596','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fr51wbi0IW7FZRZfvB8yBGqdL815woJLrncvKn639MbOYbR31x-HtoqDL4zxPaHPGzvt8HTNplOeHgs_Bb3BAkDwWP94','Jackie Chavez - None',3,'',10,1),(1187,'2020-01-23 11:18:56.372583','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wMNujh7CfhpVYBCusHoOb7Hd_gDtFwYjs5u7c4xFrlrq-MHDYEyb7CDR7kJ7IJQat487Wkuve0iOkQUXvLAv96e3zkI','Lucero Carreon - Brought my mother in Saturday for stomach and back pains. Everyone we encountered was extremely nice and helpful. My mother only speaks Spanish, so the fact that everyone knew a littl',3,'',10,1),(1188,'2020-01-23 11:18:56.471077','AIe9_BFMK6FB7k24ANEBV5CospTTFlXqqFS60f2cz-jUYHqxlYZ4Zy7an2GR0sjXEnPdlgmwmcPnH1fmg2gw254K1dae54XnGtD3D-Mf8J5mT_IyPCP4nUg','Edwin Langley - Quick service, very nice, very helpful. Would definitely come back! But hope I don’t have to. Make sure you see Nedi as the provider, Breanna at the desk, and Vanessa as your tech.',3,'',10,1),(1189,'2020-01-23 11:18:56.520354','AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SDfk5sLF5pEHmtR9iUqLd0WmVb3nZmqsBhAv4t_BNCctnsosN2g64Z0LGl_AWKNRIACSAMxJAhqUOFx-23SJoMEu_ZbQ','Devan perez - Dr leavitt \nRita\nJonathan\nRommel\nAdolfo your all awesome I felt welcome and left feeling better thank you!',3,'',10,1),(1190,'2020-01-23 11:18:56.569664','AIe9_BHR7p0hPy1flx1br0TYdEUBxmm_HM1EGIHKLD_pnRH-Um8cwC6mHhbsqxFcbGxAmYHUodenli6ZUYuO1CMBtyIf8vJSoiV4hVybLOcNL5-XRXXC0gU','Hannah Carrillo - I was taken back very quickly and the staff was so helpful. Itza, Dr. Vakey, Rebeca, nurse Jacob and Laura did a great job. I will definitely come back here if I ever need to again.',3,'',10,1),(1191,'2020-01-23 11:18:56.618977','AIe9_BFmRFRFwJGRfUDOW8jG3rXnUUKezTYrGFp-tzZ0EbSqD0uGZtt3SnjHugXejLvezqcZZ3nQtZc2ninNg9Rth5YyFIaWp4iM7BIhlN4k0E9rqfi7l-E','Jacob Johnson - Itza was very attentive when we first arrived. Jacob and Rebeca provided good nursing care and were very helpful in answering questions and putting us at ease throughout our visit.',3,'',10,1),(1192,'2020-01-23 11:18:56.768068','AIe9_BFmRFRFwJGRfUDOW8jG3rXnnmtd47UYh24AFJh2EjLgNR0QnXB17DDBYCDPN7vNJFkQV7k7H7_l3dM5jt50Q4Fa69XGC03CWDxgHQt4NdbvG93LXqk','Alaina Reyes - Itza was so nice and attentive! Jacob and Rebeca were very quick with administering pain medication and were fun to talk to. Would definitely go again!',3,'',10,1),(1193,'2020-01-23 11:18:56.826604','AIe9_BEAgUIalCkcXZnurOUpP4uAtDzaK7m2H_SchpHaRv8DDZ0U9LqfvrQvoOPY9xQH-u4ORZoryMUxEtfbr5cgNvjZWtFtasgONmomOtRAxJMlUJ5PhvU','Deann Clark - None',3,'',10,1),(1194,'2020-01-23 11:18:56.875899','AIe9_BFL0OZrFaHgoJtqifT1GHrI_sEaFqWhVmAd22qK6V0amL_u6cr9pygg5evNXm9YBN4ug54D1EOPpc3QWa_3dhn0Dx3wAK7amGQGsL8CMXYcO49V7ko','Sara Reiss - Vanessa was very welcoming and efficient. I got treated quickly and Nedi was very helpful',3,'',10,1),(1195,'2020-01-23 11:18:56.925627','AIe9_BFLWlqwz3qGBnCfbAsLD0lVTENHAtThkizNwVrEFVTQu7u7eej3gdwRjyUtlNmr2BOvM1KOHvCLNhC1SlwWPeWNVhliyGBoS3r712H-lYoGzuHJv9E','Christopher Phillips - Nurse Lucas was great,',3,'',10,1),(1196,'2020-01-23 11:18:56.974945','AIe9_BGErQpX2pRNZrXBy5NOsH0eVUGQRxPH3dy3OOipa_2XgV-XLiYBlJV9nZ4N3sk9FcB7gZuorOmhYOcH3iiaSLUFbeLsA7t07jCciHwui4_oB7rguUU','Buffie Holcomb - I had a really good visit. The staff here was kind and greeted you with a smile. They were genuinely concerned about your issue. I highly recommend.',3,'',10,1),(1197,'2020-01-23 11:18:57.024297','AIe9_BGvUJd9etQojwpjZIMsiFne4vR5eB9m4IAGVDC1yDx_dXQ-POkaMo57-ifCL-scho-wkGhCVvJMGl6GxRiQiaKBPiUMcP_0SZZrWSL3TOzgFnUHTtQ','Heather Quigley - I took my son for a possible ear infection and was in and out in 35 minutes. Aileen at the front desk was efficient and quick with the paperwork. Chris and Andrew got him triaged wit',3,'',10,1),(1198,'2020-01-23 11:18:57.122741','AIe9_BGeWygkZoY6qknDFQmPvA4c_0nIcbjwEkKzaYRTSX7XT-xY1tN4H2tmcmBnjvvgIWUJUMP0DKky-MBL7ziSWYbtjFxS565JEG2ZNDFw_QL2qy-nvMw','Madhurima Gupta - None',3,'',10,1),(1199,'2020-01-23 11:18:57.172049','AIe9_BFL0OZrFaHgoJtqifT1GHrIScfxJt3EvuSo74XXKSK88yNowEYVU9SWRB4uTnokAtHir0F41y7Wo0FLqF24OBy5gehrvXK8kNG_dFxjZiLK4Mj4wAM','Linda Walker - My daughter and I had to visit signature care while visiting Houston, for the MLK Day Parade. Everyone there was kind, Professional, caring and concerned. From the time we entered th',3,'',10,1),(1200,'2020-01-23 11:18:57.221444','AIe9_BEV1VP1woYvuPRixSBHlWg4LdjSF6qO5E67LOQcDdJZpXDKvHcovW9VnbFRQ4tvvdiLBWLZdCfQoUmy5WF7CJh8AqNG4igfMsWGwG-i7kycFczfnOA','charles beasley - The staff was very friendly and Lucas was very helpful',3,'',10,1),(1201,'2020-01-23 11:18:57.281741','AIe9_BHZM2k_MpOhRgkb8w5Bn_urcKr-gJRY3oaKUjc5xJ4OZ9AyMO0PIGmyeg3SlGqEopK1Vk-UllEPHrFiQAO6sVv5d9mOeJksgR1wOEAQPLG52ZlcN6w','Jack Right - None',3,'',10,1),(1202,'2020-01-23 11:18:57.342091','AIe9_BHR7p0hPy1flx1br0TYdEUBC9noJIkNvEhsR8GjSUIg1M9SIUmUuNf5PsVHN4zKsnbETvQNZ-eA1wQ4QNRj5Hd3v0P9U-15wXTNvMP1spyfrQjLx08','Brigitte Velez - Came here because my mom had a really bad allergy reaction and Tanisha was super friendly and helpful! Translated for my mom and was so friendly! Constantly checked up on us! \nDr. Zhe',3,'',10,1),(1203,'2020-01-23 11:18:57.490013','AIe9_BFDvtvCY6mNmVUeGBiBb7S5a2U5t4qms6LFokb_mPCbHk86MB_cjYnNbIQOqD0qXXNY9QG8uthcCNnYuH_lhNSJLhosI16OhYBpNY4HQ8fiLKJyhww','Brooke Smith - We come here anytime our regular dr or walk in clinic is closed and they’re very good.',3,'',10,1),(1204,'2020-01-23 11:18:57.539268','AIe9_BFu3rdicGrPrzdyu4PDXmqMdaxJp0PaYMR74uE45YPFbCR9ZW23DDVMjEr-zusvEMRccfsmI5bULNaY-ro5eYsauEIz9acTJUrRv9wHuCCzYrTDrq4','KA Hall - After struggling w/severe colitis attack for several weeks, reluctantly realized had to go to the hospital. Aisha, our mobile IV nurse with Luxe IV, recommended Signature Care Emergency Cent',3,'',10,1),(1205,'2020-01-23 11:18:57.638003','AIe9_BGlY-BaOO_aND3JZqxJBS1Rg6SXHz5aYROhlfePcmqbokRm30ic3HKGGxbLJqoq7Xngi8C2uvs4yvp7TT1AqpzYjAJarfcm1j7auHHjTpr0Bd-qmNU','Jasmine Orduno - None',3,'',10,1),(1206,'2020-01-23 11:18:57.698121','AIe9_BEAgUIalCkcXZnurOUpP4uA5bWjydtXBvTNo2bU7T8KX5jfaz9Nb4TKQO97bppy19NrenRatDAOVIrraVyt1ZneFOfAsjPhaf92to7MFOpirbUiMeU','Tony Davis - At least 5 people showed up in the room to check out my wife. Very thorough and professional. Highly recommend this facility.',3,'',10,1),(1207,'2020-01-23 11:18:57.796757','AIe9_BFqh_zr355jzGaEpH7666zc9OHSZK_Wwcf84YJGmRFfR9RFJVHvWU7jWp4z9nnFQd3S4j5ZyPelBM7Ldl0yx4sVM4JBPiMTjEKEqMHhWg4YrW_4Rsc','David Delgado - Excellent staff :) Kristina, John, Hanh, Genesis ans Doctor Jaber were all very nice to my brother and very informative',3,'',10,1),(1208,'2020-01-23 11:18:57.894766','AIe9_BFhqAtkXvUqdYNeMuBBGjaAx64zW321r6mJ7PMwOOYnXveXj-dZkSyuFSnBK340w4Uf7-UkGSZCFIfq6H93DRDiIeDLmbPvS4ySLCckKgpI65hxqNE','Joseph Caballero - Kristina, John, hang, genesis and Dr.Jaber were all amazing. Would highly recommended.',3,'',10,1),(1209,'2020-01-23 11:18:57.944643','AIe9_BF8X4EpR_fF6mwcYdso9awgG2cu_iWa2cWQODnd7XZAnI-907qAcoVGSAsmVRrFec9aDXjzIGP2cCZyzCrsMEV7-jhyIk7IFSivf5551jZapISs-pM','Cara Donahue - This group of medical staff was just Amazing! Hands down! I had no wait time, Dr. Hemerka and nurse Kat were just simply caring and attentive to me. They had me feeling better in no tim',3,'',10,1),(1210,'2020-01-23 11:18:58.004894','AIe9_BGZuRKHeO1iYrcf4B001kE2diCXj9nKwPzU7LuxddGKE8TmYaNM7LEGtCpm8Xmz8_cd0wtD91xp1jZC1B4Ru7klL6lm2pef4jge0e_4aSF9PQU2-BE','Jonathan Hoar - The staff was very friendly the entire visit. The nurses (specifically Jacob and Remington) were knowledgeable and explained everything that was going on. Dr. Vakey was great! He broke',3,'',10,1),(1211,'2020-01-23 11:18:58.065501','AIe9_BFhqAtkXvUqdYNeMuBBGjaAIdpiqHVAvRKpoSB91qGCyQrXiKGUAkhQa-OnHign3eXPaCnMYmf8N2FCqsy5cMPtSdJHzpD56WJwzkqzffp4pCKSH-k','Jaymes Roberts - Great experience. They are always super friendly and best of all fast!!!!',3,'',10,1),(1212,'2020-01-23 11:18:58.125791','AIe9_BHkHJRvhG8n5BjqdcMSKR_FLa3KaXNcFINVTPBcwXPiktJ4zkQ6tmhEYFxUh8BwqKhYD7jxZ91cAc8-jCN2ZRLLuskfy59L8w5CQ__2_9CYrXaK2CU','BlazingHype - None',3,'',10,1),(1213,'2020-01-23 11:18:58.224357','AIe9_BGTHfLB7ZAtvlQmidaL-PvDr7Xu10mGcKygXnWUlyrnQXYUWf04Y46TpL9bwtdb0R0vYwHSZUTA9Vvc5HmVlMxXhCcP6T41evxw2vtDAyCXQqT8VzM','Allina McDaniel - Awesome and quick! Dr. Remington and Jacob were great. The front desk Kendra was so helpful as well! Highly recommend.',3,'',10,1),(1214,'2020-01-23 11:18:58.284576','AIe9_BGZuRKHeO1iYrcf4B001kE27ZHgDUrytflkNvc4D7KurvnhWCf7KlaG-lwvu3BtvmoT7tx2VwVMhBMg8RwIc--w-is1i5if5d454pAwGrK9usQKCh8','Brandi Reed - Kendra did awesome! She really hooked it up!!!',3,'',10,1),(1215,'2020-01-23 11:18:58.345158','AIe9_BGZuRKHeO1iYrcf4B001kE2tNPRlmcUla5P1yH3OOgTIBDKWWid97V21HLx01pyi0Q2XEj0Cd7T4FKlTkagVZkDyYgKE4ZxC2rcgHw0FErICeVpPcs','Kymberly Sredanovich - The care was fast and effective. The receptionist made getting registered easy and with kindness. I hurt my back and they knew I was having trouble moving. They assisted me with',3,'',10,1),(1216,'2020-01-23 11:18:58.405597','AIe9_BGhYIk2KhOdF8fekWDvq8JU1kBqlyJ4jAsGJxFnlx1F0EHXaiQ2KeUQDZt-nd7_KkZLAO5xWcRn0XQZb2EwuDwxcPXN2Z34ezBhavDS0oZLpgSiG0Y','ashley williamson - Best experience ever! Love, love, love the staff! Dr. Goodman, Adam, Andrew, Chris, and Aileen were all perfect. I couldnt have asked for better care.',3,'',10,1),(1217,'2020-01-23 11:18:58.504063','AIe9_BGvUJd9etQojwpjZIMsiFne_PS_QRw0fI_XalL-XsP9qU3nnfH4t29H3KvQKu1ak0lMqjESI0t9SUQmytZHgpceT2bJX-4Rs2ErtPq0nXog6Le4nNw','Valerie Rangel - I came into to SignatureCare and was immediately welcomed by Kendra, who helped put my nerves at ease with her positive and reassuring personality. I was helped by nurses Jacob and Re',3,'',10,1),(1218,'2020-01-23 11:18:58.602634','AIe9_BFu3rdicGrPrzdyu4PDXmqMGve1gRl5VF4OydMZ295htCvbPcp02uowuasi1x4MoC2uczFbnRHVfiPpaC1j7RwWoStox3FZcKo0buo3bprnNzgNYGo','Saher Nabulsy - Fade fast and prompt service wife was in a car accident and they took the other vehicles car insurance and did not charge me!',3,'',10,1),(1219,'2020-01-23 11:18:58.662909','AIe9_BGlY-BaOO_aND3JZqxJBS1RIrSEG9Yw5h_GlXRzH8zomNVOvL7LLNiycC85W1mcbFZmPxNSerlIq48NBhmPud3uncPm2xs5GUmeQXksjGmZg06s6JI','Leslie Bustos - Loved the fast service compared to a regular hospital. I was in a car accident was able to bill the person at fault didn\'t have to pay anything. All of the staff was great. Dr. Jaber e',3,'',10,1),(1220,'2020-01-23 11:18:58.723397','AIe9_BHkHJRvhG8n5BjqdcMSKR_FZTjFDT8hcdcy1Ft_5HZ0n2fBu-pbc-5EyA31fO8SuNQx8gp3akxO-4rTS7OFuPvoZA7bI4ehzb75hB3FxhIibYFhNiY','Jamaya & Rannisha - None',3,'',10,1),(1221,'2020-01-23 11:18:58.783884','AIe9_BEAgUIalCkcXZnurOUpP4uA_pPG45HKLX4pusCVodhFC7MuCpzqsjKyqvLMwrXmfVrAIjmMel2fFXC1RfrWq4HEzPDhRrKmrDityWjOgV7zuey5ElM','Janet Troxell - Great to have such a great place close to home. Full service very friendly staff.',3,'',10,1),(1222,'2020-01-23 11:18:58.882343','AIe9_BHVBnWjBJvk55vq2QEm0wl-IuukaDqVqXOtKYh2w3q1yiPqQh_29SK_OY4Xl34f5hu6YJlx0Jeu5f3heSTAQwvEZn98Cv9WHjtUI5vNSZQ-gex0lCA','Amanda Hicks - None',3,'',10,1),(1223,'2020-01-23 11:18:58.980677','AIe9_BExcxslmE1rr7n5jMcadSKe8f9LnJbVy0InEtR2iEBM5MxAo-_FiXmVkR3jwsByJh0IxEyS95uMsufRJnYt9MPahYuDKELvhtXsa5gBWFuxqyNeOTs','Bill Iroh - None',3,'',10,1),(1224,'2020-01-23 11:18:59.041314','AIe9_BGTHfLB7ZAtvlQmidaL-PvD09udxOqxTUEEm6CX3DHI5518gxpNJJdAPfGB0rkA21oE9-J1fAt2my5dBUrsHvy8uu9OinmekWRrYZuJot7JSFSq_0A','Jessica Zamarripa - My experience here at signaturecare emergency was nice. The front desk admissions Kimberly P. And Cecilia Z. were quick to check us in. The Nurses Nicole G and Olusola S were super',3,'',10,1),(1225,'2020-01-23 11:18:59.101645','AIe9_BGTHfLB7ZAtvlQmidaL-PvDCuyJiVKUnE-V2-x1p2732lcsK18r1Aj5hg5YHIUvLnfUjKEaPbBAc6j2fuKtsfjcr_Go7XUNnv9IfS9J_-SNU1mn_Ks','MarissaJuarez11 - First time here & they definitely brought us to our room in less than 5 mins. The staff did great, especially Nicole G. who was very sweet to taking care of our son. Our doctor that ',3,'',10,1),(1226,'2020-01-23 11:18:59.162021','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHuxhlhcsq9ZwPozYjzHdlYYdY4VxtKKIfmASrXMJE95-gJcztTh6P7tR0d4mUlfvOudogFJ4MiexR1v5BtyYD3TjPhI','Anthony Vergara - Great Staff! Came In And Checked My Son Out ASAP! Loved The Way They Took Care Of My Son! Totally Recommend! Best Nurse Is Nicole G., Dr. Stevez, Olusola S, Dustin H, & Tim M!',3,'',10,1),(1227,'2020-01-23 11:18:59.222485','AIe9_BGlY-BaOO_aND3JZqxJBS1RSHcZVpj38ctsKYdxzDBhbYnXgetnRrpP08BLn5l9lG7nTKt7Dy9A67bFnHrcaFhtuuteZ36VIRI9xuAsoUwuJDrDTf0','Joseph Balita - SignatureCare took care of both my wife and daughter when I had to unexpectedly bring them for their illnesses. The front desk staff Kim and Cecilia were both welcoming, nurse Nicole G',3,'',10,1),(1228,'2020-01-23 11:18:59.320951','AIe9_BG84YPnR8vhxeJfV_lAYVNiQsp0vJ_XP26Bxs2MMrHSGQFOEF2Lk20DUkpoxIteQQmOqLeAj1g9iO-7lHV7HJ_9dlBL-OrR4F4LYIjQM-cR84zKqd8','Alexiya R. - Rebecca, Dr.Kimball, cat and Remington, Patrick and Morgan were extremely helpful and Nice throughout our late night visit.',3,'',10,1),(1229,'2020-01-23 11:18:59.401295','AIe9_BHx9wW5OAXpNIH08blLdli0AwTpHxA1f25Xj7VAVsvIbQtEsIZuGwXS2MlVel_5wJSJziEFM4ZP3N0OMFp9H0B5oUSx4DSht5_pUqT9BSTzIiFJpds','Inga - The Yoga Goddess - Excellent staff. Attentive to my stepsons needs, and very thorough. So grateful, thank you',3,'',10,1),(1230,'2020-01-23 11:19:21.034425','9887','Thank you for taking time out of your day to review your experience with enTrust Immediate Care. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back o',3,'',9,1),(1231,'2020-01-23 11:19:21.136148','9888','Our goal at enTrust Immediate Care is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1232,'2020-01-23 11:19:21.185415','9845','Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare',3,'',9,1),(1233,'2020-01-23 11:19:21.234606','9864','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1234,'2020-01-23 11:19:21.283938','9861','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they',3,'',9,1),(1235,'2020-01-23 11:19:21.333239','9862','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1236,'2020-01-23 11:19:21.382473','9875','At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope y',3,'',9,1),(1237,'2020-01-23 11:19:21.431771','9876','We appreciate your great rating, Madhurima!',3,'',9,1),(1238,'2020-01-23 11:19:21.530305','9867','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.',3,'',9,1),(1239,'2020-01-23 11:19:21.628846','9868','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1240,'2020-01-23 11:19:21.678123','9869','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1241,'2020-01-23 11:19:21.776207','9870','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1242,'2020-01-23 11:19:21.923995','9881','We appreciate your great rating, Deann!',3,'',9,1),(1243,'2020-01-23 11:19:22.023216','9882','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1244,'2020-01-23 11:19:22.121113','9883','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1245,'2020-01-23 11:19:22.220023','9884','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1246,'2020-01-23 11:19:22.269365','9854','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1247,'2020-01-23 11:19:22.460278','9855','We appreciate your great rating, Thomas!',3,'',9,1),(1248,'2020-01-23 11:19:22.657099','9856','Thank you so much for giving us five stars, Jackie!',3,'',9,1),(1249,'2020-01-23 11:19:22.804811','9857','Thank you Jack, for your great rating!',3,'',9,1),(1250,'2020-01-23 11:19:22.854125','9858','At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.',3,'',9,1),(1251,'2020-01-23 11:19:22.903344','9859','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your wife is feeling better.',3,'',9,1),(1252,'2020-01-23 11:19:22.963662','9860','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1253,'2020-01-23 11:19:23.012951','9846','Thank you so much for giving us five stars, Jasmine!',3,'',9,1),(1254,'2020-01-23 11:19:23.062156','9847','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your brother is feeling well.',3,'',9,1),(1255,'2020-01-23 11:19:23.111516','9848','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1256,'2020-01-23 11:19:23.210055','9849','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1257,'2020-01-23 11:19:23.357821','9850','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1258,'2020-01-23 11:19:23.407261','9851','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1259,'2020-01-23 11:19:23.467663','9863','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1260,'2020-01-23 11:19:23.527998','9877','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1261,'2020-01-23 11:19:23.588249','9878','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1262,'2020-01-23 11:19:23.637931','9879','We appreciate your great rating, Amanda!',3,'',9,1),(1263,'2020-01-23 11:19:23.697926','9871','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(1264,'2020-01-23 11:19:23.758451','9872','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1265,'2020-01-23 11:19:23.906221','9873','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1266,'2020-01-23 11:19:23.966703','9874','We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the n',3,'',9,1),(1267,'2020-01-23 11:19:24.026980','9880','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.',3,'',9,1),(1268,'2020-01-23 11:19:24.087663','9885','Thank you so much for giving us five stars!',3,'',9,1),(1269,'2020-01-23 11:19:24.147818','9886','Thank you Jamaya, for your great rating!',3,'',9,1),(1270,'2020-01-23 11:19:24.208219','9866','Thank you Bill, for your great rating!',3,'',9,1),(1271,'2020-01-23 11:19:24.306638','9865','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to',3,'',9,1),(1272,'2020-01-23 11:19:24.405418','9889','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(1273,'2020-01-23 11:53:09.359069','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2a2lqYpflWnvrilUtUvjPgJdzxeVfQRN9FDP7WjmirmyO8Ku55STxXJsZqAeNRQJFxJJS8Zn5oOhwzeH63FZRkicjAVk','Zubair Nawaz - For some reason I’ve never been to emergency center before. The other day I had a bad ear infection and I went to Signaturecare emergency center and I can tell y’all that it was a good ',3,'',10,1),(1274,'2020-01-23 11:53:09.417529','AIe9_BHAFUK2tNBZL25dLQ0jVdh0Na6nQC_a7EeN9sAweZibfpJTHCbRtUd1V1B9SaAcuFz2FfzdkzmEBNRoU0A2H4l21IRIi528Pr2XqTmud-1ZahuqA9M','D\'uane Merchant - Kimberly P. and Cecila Z. were kind and patient as my little niece chatted away. They were not rude and very accommodating as we waited for my nephew to be seen.',3,'',10,1),(1275,'2020-01-23 11:53:09.515667','AIe9_BGlY-BaOO_aND3JZqxJBS1Rbr4Qz6HVroBiJqs8XDMScym7i-VmJFPundgE_FFW14RumYf9g-yrIG9YR0-ZueBsgBH8W8m8nT7wv07a7tte9bXqh9A','Dyanira Saucedo - Just visited this Emergency Center, the service was super fast, and the receptionist Kimberly P. and Cecilia Z. were super nice, helpful, and friendly. Very satisfied with treatment,',3,'',10,1),(1276,'2020-01-23 11:53:09.564942','AIe9_BFQ5F7lhNP5_ppaS_sKelW4Q34iyg4siNkUKJ5vbQ5kBnjsYYd90xCokwE-FqpyIbGYXCyJesHVc6eolztqVgX9D9u7Xw5IHoGbuSRvYT2pCCavjUM','Kaylea Rucker - Lucas and Jennifer they where both nice and sweet',3,'',10,1),(1277,'2020-01-23 11:53:09.614261','AIe9_BGZuRKHeO1iYrcf4B001kE2s_2E-6s77jkn5oVAi2j-zaoTzoM4jBZrHHPl6AGhDl7VLUAUyg6aJeMGPUAlOvrRGih3kt_rBzpzpFOJ9yBhEUQpiM8','Chantail Burns - Lucas And Jennifer Was Extremely Helpful And Dr.Henderson Was Amazing And Very Helpful',3,'',10,1),(1278,'2020-01-23 11:53:09.663360','AIe9_BF9X3094ISxKFNbAUDe3Xegm8IZbg-V-Z4S2rZ9153Y277hh_zFVRJZLj6xsyL7zhPgfRiZG2ZDuBCImrxGXQtHU9QsVS1uLLZfy-ZUjEOugJDTy34','Rebecca Smith - Ebony is awesome.. She is so friendly and welcoming...',3,'',10,1),(1279,'2020-01-23 11:53:09.712431','AIe9_BFMK6FB7k24ANEBV5CospTTkSDvsy8vsp14LThrNaqUWLqIUV7RT-46Ao2QiwdUcM6UlcU8ff1mzFum7tj1UOHHnc6yEOKT0GVe5WPWNEzJzQfKljE','Amber Molina - I was checked in by Kendra and seen by Dr. Vakey, Jacob, and Victoria. Everyone was so helpful and went above and beyond to help me and make me feel comfortable. Would definitely recomm',3,'',10,1),(1280,'2020-01-23 11:53:09.761353','AIe9_BExcxslmE1rr7n5jMcadSKesqyGpklRcIyRNXLn0m4ZPLhCR4i8LpNzjeOYzgZp2VCUBo4MxTr-mxiUDNJxEY8ASC4FrAaTfgO3eMEthHcb5BvsgI0','Bill Iroh - None',3,'',10,1),(1281,'2020-01-23 11:53:09.810472','AIe9_BExcxslmE1rr7n5jMcadSKeB4VTK3PfZv1MFtJoinaNNuBn2krl4pi0W0w-ol0lihEsyIZ25BrjykHEMFcg5tyYPabxjJGPFi_FWfRhYpXdttM3WDM','Bill Iroh - None',3,'',10,1),(1282,'2020-01-23 11:53:09.860017','AIe9_BFhqAtkXvUqdYNeMuBBGjaAE-SI8KU0KmxmBpIA0L8Iujklkd9aKYFXCx_bwfJQVbZzJg8ImZ7HFHR2Bi_zzvS3TWLBgq4PmwYFUP9529hACwz8h8M','Kati Donaho - They were very friendly and the check in and care were both exceptional. Thank you Jocelyn A for being so helpful!',3,'',10,1),(1283,'2020-01-23 11:53:09.909184','AIe9_BGvUJd9etQojwpjZIMsiFneWiiFig8jGI55jlujVGfJJChf8G5ujMjucmIVj0Pk2H4BoODRpjiJ3sHA2zIu5GKauSO1zyASj_BfBRiED6gNFABlFsU','Justin Mendoza - None',3,'',10,1),(1284,'2020-01-23 11:53:09.958407','AIe9_BFqh_zr355jzGaEpH7666zc_WPeTqS_euu4pbGBTQ-S27p_BHDmBZMaT6IZ1CrlUL5LUcuNjlIaCGmbrUw5KTkOg1mxsdnpJgvW9oi5-xYQEOosXhw','Beverly Edmonds - Jocelyn on arrival was very helpful and lead me straight to the back to my spouse very professional!! \nNikalea the nurse was also very helpful and professional the whole time there. ',3,'',10,1),(1285,'2020-01-23 11:53:10.007490','AIe9_BGErQpX2pRNZrXBy5NOsH0e2XnI4I8bIlfk44RS72OmCviwttw3tdClpa36J1oUshiUCgGX54xvzEm7xrU63CGW82nnoLMb6sI0Ld_2NWHYVglTLhU','Iesha Kkay - The staff was great! Joycelyn nikaela was great at the front desk it was very fast and friendly service!!!',3,'',10,1),(1286,'2020-01-23 11:53:10.067701','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2DHge00r28oEZlKXxISYfBZnODfjkCCDi9L10_Ca0WwEEccuvgBrXaVmY0hzQ3bzMHKao2--jM8-nI3hYi9Y0fMsEXQg','Keeley Thomas - None',3,'',10,1),(1287,'2020-01-23 11:53:10.166072','AIe9_BEHZ7lh7y1sP-UInhkpmlIp17n6m9ahaWTETtbBl9ouQiVxMvh3mVdMCPgYN_tIZb0fN9BLNKosh4kRX8hNaYeW6RoCjQG7hLNjgYsjbijU-8aZ3UE','Garland Vennus - None',3,'',10,1),(1288,'2020-01-23 11:53:10.215303','AIe9_BFmRFRFwJGRfUDOW8jG3rXn9SI9ofo6Z0J7Y3MjN4ToP9GLnAqtmYdAWWtSBUlc7a_ZL8lRdTuOvr5OuQTFwl8htHHjAx-0rqi7bkPiBC9fxZXp-mQ','Arianette Campos - This is one of the best experiences I’ve had at a clinic. Every person I interacted with, the doctor, nurse, rad. Technician, etc., was very kind and helpful. I worked with Kendra a',3,'',10,1),(1289,'2020-01-23 11:53:10.264413','AIe9_BHkHJRvhG8n5BjqdcMSKR_FdJTylgPFMGX2oficMJtP_heuN_VR-BiE1ElPtN7yPZHGkHahDiU6RVOBv4XRgLiK5v2j30MBN_Nr5qrRDKZP8Ie5DX8','Dejanae Eleby - Overall great experience. I was nervous due to the pain I had but the receptionist Amy, nurses (Regina & Natalie ) & Dr Henderson was really helpful & informative.',3,'',10,1),(1290,'2020-01-23 11:53:10.313574','AIe9_BEHZ7lh7y1sP-UInhkpmlIpE3TR40YIA7z63etyqSFwlCCnVwYU9rh4QSYp_UmW2dkaMib6UwGst9q8cHzNfuOO0Yo9Ou0YOqDqgwSBCSLC1s_xKbY','Morgan Kingsbury - I had a great experience! My friend was able to be taken care of in a timely manner. Kendra, nurse Jacob and doctor Vakey are very professional and super nice!!! Would recommend com',3,'',10,1),(1291,'2020-01-23 11:53:10.362857','AIe9_BExcxslmE1rr7n5jMcadSKedIRV1t32Lw0FpwLTakinQ-Fyq5SsMUX7LgxXW-P77rUoF7MBvV29GUdyBQQI5Y5Pht0k54hwWPFq-MdsIhLX7WlLjno','Jennifer Aguiluz - Excellent service and very helpful.\nRegistration Jocelyn and nurse Lee were amazing.',3,'',10,1),(1292,'2020-01-23 11:53:10.423064','AIe9_BExcxslmE1rr7n5jMcadSKe7Eptm1faIpdkoEf6-nRrTecN7xt_eSaSp2qjSM8fImgw-4QrzE3D-3p-_ln5Vot-FWYRxjCSqyfwNKttv-61rIrZVlc','Landria Manuel - My experience here was the best I ever had at a Emergency room! From the moment I walked in the door Jocelyn was friendly and super welcoming. Before I could finish registration paper',3,'',10,1),(1293,'2020-01-23 11:53:10.483432','AIe9_BGIy_plKfaZrItPyyQZNLvsHDrJ0QJeltTCyWsArxMkzmyDdrdMK6hXja1ZtL-mfIJ6qa6-JJYOsiw4HF9AKoezUzJmex4ybWv-Pqj6BDfo0daMD0U','Erica Jones - Everyone was so kind and attentive to our every need. There just wasn’t anything they left out. Front desk staff Carla, Kim and Linda were welcoming and helpful in getting us in quickly.',3,'',10,1),(1294,'2020-01-23 11:53:10.581617','AIe9_BFhqAtkXvUqdYNeMuBBGjaA0iIEAkXxKGrnfG_oSya1priBV8x9Gm4eFgT4Iv1hnIvTs-mZpnMZ8RuxlCQFxgVfhEtJB-JYxuUwiDh-QNyp61GmL98','Courtney Mahoney - None',3,'',10,1),(1295,'2020-01-23 11:53:10.641851','AIe9_BGlY-BaOO_aND3JZqxJBS1RHki0iLwAufMCzRhTEiJDkK9c9zN97zHoo3CYrdYFum4MIScdtlAaNdcFRcEK1sH3M3Loo10V4ldo7jC3GhjSj0kf3jQ','Isaiah Green - Great environment and very clean. Lucas, Carla, Dr. Henderson, and the rest of the staff were great and very friendly.',3,'',10,1),(1296,'2020-01-23 11:53:10.702034','AIe9_BH3gZxYpIxBZcqAOO5HuBVkgAHih2pEyt8NT-xrPKDFinqh8TOxntGFMUYAiRnvrqRfI-kB633O4DDVph_CRmDSmT4uvdufQxxFPFOd-VPT1LvLC4I','Andrea Elizabeth - Kendra was great , very helpful',3,'',10,1),(1297,'2020-01-23 11:53:10.751310','AIe9_BExcxslmE1rr7n5jMcadSKeGs2NiTUzYofGsBLEKEqvYuWvG7SQGa25oWsAD1dn4cMDtv_A4Ouc0m-tMoHQj4KAbF0EmVLxM7SzaEQsaE27GPkd5Yg','Jeremy Solis - Kendra was super helpful and answered the questions I had very clearly',3,'',10,1),(1298,'2020-01-23 11:53:10.811573','AIe9_BFL0OZrFaHgoJtqifT1GHrIJtmfWp0WL3lpucMjHHNmz2k0M1H_Ymcps6ycWSHEBcXotaf9cToxXKPdVQc3LPMwsqMN-Kfsjkjq165w2yD7WXUCiPE','casandra gulley - None',3,'',10,1),(1299,'2020-01-23 11:53:10.871344','AIe9_BFhqAtkXvUqdYNeMuBBGjaAvtFhKvG-IkmyfxhTP2NHHIKYa2RnG72joe9Jl6AYBw8Q_hTMrN8RMZt4qGxJ-gt-2eUGtSGszfi55ZSUem-rgRvjj2I','Sterling Perezly - Dr. Ortiz was thorough and took the time to talk to my urologist before deciding on additional test.Kristina displayed her professionalism and extensive experience. Laura provided ',3,'',10,1),(1300,'2020-01-23 11:53:10.920707','AIe9_BFLWlqwz3qGBnCfbAsLD0lVVOBuPYzJeKfQjqvteL_BbELmfTMsI4iUAkfopXgzNT6XwMxhSGgW_5X0grQKGzcSeWIGEKkbSYplZjGwPU9TzN7bD4w','Matthew Bohac - It was a very good experience and the staff was very nice and helpful. I will definitely come back if I feel sick again.',3,'',10,1),(1301,'2020-01-23 11:53:10.970145','AIe9_BG84YPnR8vhxeJfV_lAYVNiimv6lMpHVPSHFzactOU44nQ9cQQaLJ6PizAa-bqY95mZnAefMawOXJVFCitP8rSWP8CWpV1ncrQf4pWPC8sA4qMBTjw','Daniel Munoz - None',3,'',10,1),(1302,'2020-01-23 11:53:11.030052','AIe9_BHx9wW5OAXpNIH08blLdli0cOdj-MVuABEv3MKviUgkfZIVIwI1azT3v5RC1QZ64fDs9y6HE6HW9v94xfr_QDiK_er9_X-UCoUn9czUnXEDEoGBf8k','Valerie Mosby - My overall experience was excellent. Fast quick service and everything was very pleasant from the receptionist Patricia to the doctors. I recommend this facility for all of your health',3,'',10,1),(1303,'2020-01-23 11:53:11.079259','AIe9_BF9X3094ISxKFNbAUDe3Xeg2ijv68ThLiW11tHye7gGnPogo2WYUCJ72v7TVpTn665BfYyB__u_K-5RCigDE5_KcrO29HvvI8hWoI7tC9PEw7ogr68','Melissa Mongroo - Efficient service by Jessica',3,'',10,1),(1304,'2020-01-23 11:53:11.128856','AIe9_BFhqAtkXvUqdYNeMuBBGjaANbtUfaOe1T1e6s6objlKAr7bdWLIKciucpfABw4FTwranb-BFR2HMQ17jjKb4cGDCoYVc38UmPWxVHnffaEMB4AW3r0','Farah Sahajad - Amazing staff! Quick service! Jessica was amazing at the front desk!',3,'',10,1),(1305,'2020-01-23 11:53:11.189379','AIe9_BHx9wW5OAXpNIH08blLdli0K8eF5vCWzgFfmMwS9mjOx8wElhIvwnIfbPQZV-vav6KcCBJZpI-N28Ep1D0mnInAFODJ4ktTD-YAMqQ0dBVMfRQmAf8','ana alvarenga - In and out . Very fast ! Place is really clean . Love the staff, Ebony and Dania were very friendly! Make me feel like home ! \nDoctor He , explain everything really good. I was',3,'',10,1),(1306,'2020-01-23 11:53:11.249443','AIe9_BFL0OZrFaHgoJtqifT1GHrIXfQQxj4Z6xoEqAIm8FyKTfA-6tuWsYUj0dZexAhmDefUYW8OdVZGt1PR-iwhJwzSQVxqjBn8zYQmcNO5TBooq8868H8','MERARI GONZALEZ - Excellent service very friendly staff and clean facility Patricia and Jordan',3,'',10,1),(1307,'2020-01-23 11:53:11.358719','AIe9_BHR7p0hPy1flx1br0TYdEUB6s9S0VWCTR_4suJjyDCKuaLWSeMbyDHG9fDqlmiIwhmtAgmDCZGzTsUn-IqNYgmXsmrVIjDOLUIuizsO_vR52S5e4oo','Rudi Marie Martinez - The staff greeted us as soon as we walked in and were very attentive. They were quick and precise about getting our friend checked in. Rebecca V. was generous as we waited in the',3,'',10,1),(1308,'2020-01-23 11:53:11.418971','AIe9_BExcxslmE1rr7n5jMcadSKeYvTPWo7yP8cwc0Rxfoli9fOI3ntTVANWvS4OlIe9g4t1LZHjmvhpIegpsWYdwxQrKd89K2hwNtLTf2bODo4lQIuA4qY','Antonio Chong - Came in after a friend’s injury, Rebecca on the front desk was very prompt to assist and get him set up quickly. He hardly had a chance to sit down before they were ready to help him.',3,'',10,1),(1309,'2020-01-23 11:53:11.479322','AIe9_BFqh_zr355jzGaEpH7666zcRNbFYpPLZjAp_MnV7BdarfQrblEGQi9t-eZrY2RB4NZv_lpGcc8G5i5GhQECCeN_2WG6TEtW_MsEHPMRSjuKC76tcMM','Elijah C. - Friend busted his lip and so we took a late night trip to SignatureCare. Rebecca V. Was working the desk and was very helpful!',3,'',10,1),(1310,'2020-01-23 11:53:11.539752','AIe9_BFFcAiX3_kRXfnRLgvL31Hri7whSKnX7Bl9KiN1RgK2uywKJvzFYSHlspoKiTnFA5M4cCYOgFL5vFCWK6ZSVgNYl6g2Mf238xFe-ixk9hQHl_UdTFQ','Sophia Pearson - They had really nice area for those waiting and Rebecca V. was very accommodating',3,'',10,1),(1311,'2020-01-23 11:53:11.638083','AIe9_BExcxslmE1rr7n5jMcadSKeJt8PUJZ4tqp03PfV9aW9zWVHVxog0RT3HkOWL9bNk4r1anDs5hOupuL2NETQsfrmYy7k2j9d2Wl6eOs6MiaGuGLvOL8','Destiny Salinas - I want to say thank you to the team at SignatureCare! Ive been to the location in Montrose. This location was down the street from me. I came in with swimmer’s ear. Painful! Came in ',3,'',10,1),(1312,'2020-01-23 11:53:11.698181','AIe9_BExcxslmE1rr7n5jMcadSKelpMABbWJ7l2PR0GnakpIys43oy6v_T9O5yUYKyEWEMs8Z5MYajfwdjls_2epRm7wP9tVd7bYfy1Bw8PwgBqkajIGbG0','AARON VILLARREAL - They were nice here and took care of my brother. Thats what was most important to me! Will definitely come back if we ever need Emergency Care again.',3,'',10,1),(1313,'2020-01-23 11:53:11.758248','AIe9_BEV1VP1woYvuPRixSBHlWg4-KgKSxIOS8HKLlFXTRGfmqYTrcYKthvrYs5Wdf59OSq5L2GTli6iiLZXJrIS8seqGeI3MG0f60T1e3UOh0Yv1b9iY8o','Yusra Mumtaz - Came here on a Friday night since I wasn’t feeling well. Vanessa G at the front was very nice and helpful. Once I was in the patient room I was greeted by the nurse Nicole G. And rad te',3,'',10,1),(1314,'2020-01-23 11:53:11.818576','AIe9_BHVBnWjBJvk55vq2QEm0wl-NcJhFqg71z68q0S7DeBFqEbp9_Q5fBUa2yQzuCZiuwJ3ea3tcp8q_fSeH-OfVroldYX7qFjuqKJv-OmWg_yY-hqXM8U','Eduardo Villarreal - None',3,'',10,1),(1315,'2020-01-23 11:53:11.878772','AIe9_BGTHfLB7ZAtvlQmidaL-PvDBfsB6QRxmMQ-0evMkZNB7MYQPT3FvWSUQsDYxl6xqmlKXKtbHdX3x0TxV11GJeL_68vWENx67RKihi6XI8cEI4aUHWo','christina villarreal - My son had severe eye pain but it was coming from behind his eye. He is 10 and it\'s a big deal to him. As soon as we walked into the doors we were greeted by Shania. All my ques',3,'',10,1),(1316,'2020-01-23 11:53:11.927602','AIe9_BFL0OZrFaHgoJtqifT1GHrIwwqor5ZynawUAXZF95G332VdijBeDpI1BJmZxOesnvf2fkVjrVMJCvPcJgeqoq8wlhwgByHI13lDZx9grYIxjLmloPA','Ava Rochele - None',3,'',10,1),(1317,'2020-01-23 11:53:11.977290','AIe9_BGTHfLB7ZAtvlQmidaL-PvDxWUqrHvI2ndGwODpBpTIZCUpumccd414Q0E-qXGVkyIzIwDRfzzH-qf6DB8vKuTaRz2_QEarX2hxzp8-flKAnWFsMS8','Brenda Drew - Awesome place! The staff is very nice and there\'s never a long wait and the facility is beautiful.',3,'',10,1),(1318,'2020-01-23 11:53:12.037529','AIe9_BFhqAtkXvUqdYNeMuBBGjaArUiWVAvpQTV9Dl2v4-7df9YjNj9F1Z2QX9hZYHt4XugDkxHW8jFwWPXGUDleBLUaHed7IqvAVr7pJkDvpCOoblJi3Yw','Jacob Wendel - Great facility, caring and talented staff. They took excellent care of our 3 year old. Thank you Shania, Kim, Audrey, and Dr. Mauldin.',3,'',10,1),(1319,'2020-01-23 11:53:12.097789','AIe9_BHR7p0hPy1flx1br0TYdEUBiBXiPaifZw4GVcnS9ivVAFdaUEGaRWUwoTItXT8SVipZGkzAnQAxq8FkAaeX31xabi2tZ8p37ZxOl6To7wd8jnx9RcM','Ed Parker - Dr Huerta, and his staff Krystal, Cy, Audrey and Maria were ALL TOP NOTCH!!!! Very effective, very courteous and professional. I will definitely return. All Dr Offices should be like th',3,'',10,1),(1320,'2020-01-23 11:53:12.158025','AIe9_BHZM2k_MpOhRgkb8w5Bn_urPRNHxRn40MlyemsabP3NiW2ZrpsCvTuKuJYCUW59BDPAmV3VNxeG8YPOrOIA-hTC7wIOPrd4KkulEbWDmLalpYPZXG0','Lisa McDaniel - The South Austin location has the best staff. Amanda made sure that I had a room immediately and made me a priority. Everyone had an upbeat attitude and overall good vibe. I would go t',3,'',10,1),(1321,'2020-01-23 11:53:12.218289','AIe9_BHx9wW5OAXpNIH08blLdli0m8WRpDggcC1C2GiArwadvVZa98Vj4TnS9gSaS_eoINWzoo5ncvijoCQgrfyErs7CGNtzFJ15OEMuqSvu8mIMVyFPruk','Ivar K - The complete process was smooth and time taken when in emergency was less. The doctor was approachable. The other plus thing is when without medical insurance its very easy to know how much i',3,'',10,1),(1322,'2020-01-23 11:53:12.278516','AIe9_BEV1VP1woYvuPRixSBHlWg4yE1XZOn8QhkMpOCnmBf4uJaOAdwkjAT7wvPuUnv15YyUTRR7WMpFFV7E8SzD53i7kva7S4B5SOXwI_6BVE7jeKJTGPQ','Tina Nelson - First, the receptionist was so kind and professional! Sindy, Gina, Marone and Dr.Wang are the BEST! I know I was not dying BUT I was uncomfortable having to be taken to the facility by m',3,'',10,1),(1323,'2020-01-23 11:53:12.338734','AIe9_BGErQpX2pRNZrXBy5NOsH0eA-YmyBcg1Gd41MLmOhz2upKyWOlYuuRv4pJOjBKO8QVwBSzpRxouJO2OlisHYXozeKjtBCp6_OyY7hjtdItnVZeS094','LGerardo solis Gerardo Soles - Good its good doctors',3,'',10,1),(1324,'2020-01-23 11:53:12.423584','AIe9_BHVBnWjBJvk55vq2QEm0wl-jZ6FCS5cZ26uXDoHlTbYV-yxuZ3nwnRi6Yu7W86iViIAOYnoZXUzwAQ3lxyFQSEUTi_AbZ6wnaOdJrZMBPamQrYEPRE','Rechelda Stewart - Awesome Hospital love the staff n the doctors, ur in n out n they take care of u n your family , hands down the best hospital ever',3,'',10,1),(1325,'2020-01-23 11:53:12.481400','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMU1VOL9Zea5Wcf99vEWCEkO5ZjfOKxlxz8DZ6SblDJBoPjqv955yn5OcSwUHVX7m-Vg6WOspTcvvJ8oq-b9HVOlRQcFs','Josue Ventura - I came here to check up on some lower abdominal pain. As soon as I got registered I was tended to. Nurse Kayla and Jessica treated me well and asked all the right questions to know wha',3,'',10,1),(1326,'2020-01-23 11:53:12.541343','AIe9_BGZuRKHeO1iYrcf4B001kE25aU06hclguc8B-cMOkpS6Ofa1-Ak_Oq8P3HZeJajcyC2wqg8EIIikmWd8Mzlroj_HzoTyN300ylbg6zsAUT68_X-pJU','Gregory Mcclendon - The staff here is amazing! Maya at the front desk was very sweet and fast with registering me in. the nurse that greeted me was very attentive and address all of my concerns. Dr D',3,'',10,1),(1327,'2020-01-23 11:53:12.590903','AIe9_BFhqAtkXvUqdYNeMuBBGjaAVGrCtbpIGhqiRNzjqjpda6bsJrYnZW8GTsaXQ1S99R4BgPNLpSfLYDcgVQMEbkUWGnH_40Nnd62c5rdoT07Mt81HPhQ','Paige Reeves - Everyone at the front desk, nurses and doctors were all very friendly and professional! Short waiting time.',3,'',10,1),(1328,'2020-01-23 11:53:12.689330','AIe9_BFDvtvCY6mNmVUeGBiBb7S5JSuAzUYV2CAdY1d2tJu3pl9RvT3ruAeY1Y4zcOzjZjZUqFMrztsYpj0MgGZKKaF2p6fSGJeN7T-tHjY_-3UVuP7W4Mw','Patrice Palmore - I absolutely love this ER! The team is amazing. Maya is very sweet and caring when she checks you in, The tech John is the epitome of awesomeness!! He’s great at IVs! My nurse was Kr',3,'',10,1),(1329,'2020-01-23 11:53:12.749462','AIe9_BHZM2k_MpOhRgkb8w5Bn_urBefqLYciMwjAjF9j3quOCyZCKEoz0AOwIwU09qa1RIeHtTX1cTGv23zxSgQfG10xxK80J7wC5DFDahaezPQzDx278lE','James Arnold - As far as private ER gose this is one of the best, they really care for you.\n\nLittle to no wait time I was seen right away.I would recommend instead of a traditional Hospital ER.',3,'',10,1),(1330,'2020-01-23 11:53:12.809978','AIe9_BGvUJd9etQojwpjZIMsiFneV2dt67fOa7wUr324V3ULUBmuRxJ-0xuBcwo8-wMhLFjBWXcKsBipqc92OTyrv7YImPTDdMnDMumGK4sm_J72c8f2C6w','Jade Nolan - Very friendly staff and quick service. I did not have to wait AT ALL which is amazing and everyone was so nice, professional, and gentle with my injury.',3,'',10,1),(1331,'2020-01-23 11:53:12.882157','AIe9_BGvUJd9etQojwpjZIMsiFne06dom5O_tt8dntwr7cXK5Kdp2UKXdJ1H3-ftaFLWEJZNhWHL3M8OtDrvNbDaryzUmReyVF-9umhBSg-p0KyN-SVw_Kc','Joseph Matthews - Nurse Gina and Regina were great! Made sure I was comfortable and knowledgeable of my visit. Dr. Wang was really kind and got me up and going in no time. Tech Diem and Marone got me ',3,'',10,1),(1332,'2020-01-23 11:53:12.939890','AIe9_BG84YPnR8vhxeJfV_lAYVNiUM3Q5jv0bVzdi72z6Y1BfMpT09l-G2Dj7fsCOXTUoBxK6kjC-fehnvJCPt5eIcGKciGW4gGSwXxgeurGWt_AAQbUg2U','Joseph Belcourt - The receptionist Itza was very welcoming and friendly and assisted me with the paper work. Technician Laura was very kind and made me feel right at home and she got me a warm blank',3,'',10,1),(1333,'2020-01-23 11:53:12.988314','AIe9_BGvUJd9etQojwpjZIMsiFne6cWEhXGL_XIRoJd_twAr0i8YgRDuWrDSmXvPu5Cay6JDBRmiJvK9NZ8jJgLCb5oyMD4iBcJ-0I6_GRpSDE7EgXBJfIU','Natasha R. - I visited this facility for chest pain and indigestion. I was immediately and well taken care of by the team - Anastasia, Joe, Dr. Yusuf Samar, Brenda and Noreen. They kept apologizing fo',3,'',10,1),(1334,'2020-01-23 11:53:13.037310','AIe9_BFMK6FB7k24ANEBV5CospTT2NyboNQD__jESPsqagD60-tK-M4KQQxiFaPhu5E9-l1fj9jVohqlE5A9rSGCYUhzWsX_3rx-my4BloSyfFShO9eLVoQ','Leslie Stewart - I was treated so nicely by everyone. Laura, the radiologist tech, not only did some xrays and vital signs, and was the first person I saw. She couldn’t have been nicer, efficient, and',3,'',10,1),(1335,'2020-01-23 11:53:13.087021','AIe9_BGlY-BaOO_aND3JZqxJBS1RVpJsB1ZTMaP_nXAjOPEDwK9HlirMB7OUd_uvGEy6NNs_gSQ5fAqlrR0aRRNgVFlQbMZMnlkffYdP0fUU-z0bZ_m3niU','Graciela Gutiérrez - Exelente gracias Alvean y Patricia \nBendiciones',3,'',10,1),(1336,'2020-01-23 11:53:13.136372','AIe9_BFDvtvCY6mNmVUeGBiBb7S5C3Jbo8k0dkCtOBGkmviyW53gSTq4AsrqBlwRackcmKluMyQNNfMe-x6W_PipXkgF-dorNpOK0U_RUyDqo7E89bIFovY','Cesar Gomez - Alvean and Patricia were very helpful with my visit and getting me the help i needed.',3,'',10,1),(1337,'2020-01-23 11:53:13.185337','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2tlL5nchYTDkxoZ9QoVYGu90aJFr2EZ8Plbf6fOU6j0dSaZuaqZmERRD2lwB3LXcOvYnpiUPfVw6ZXkTEaypnrh7CUEI','Tonja Fairchild - The facility was nice and amazing maya the receptionist was so welcoming and nice. Will def recommend I was in and out less than 2 hours.',3,'',10,1),(1338,'2020-01-23 11:53:13.234711','AIe9_BEAgUIalCkcXZnurOUpP4uA-JOkSmlyNQdcNtobKApLaNvFtUArc5yqpL3a_GVlCQW0gHa-FrHvmM4cmwiLWTN-k-g9N_PkzSaNaZjTFGOSoUWjxPE','Justin Hunter - None',3,'',10,1),(1339,'2020-01-23 11:53:13.283794','AIe9_BFL0OZrFaHgoJtqifT1GHrI1YupmlZ9qjmdrF6qLiyMDei45XJUvcwSHEIvo--P6haDQkyjIt6cPTFen0gH3fDFAVMqVgexUUQeQNSdGhfU5SEFkWQ','Richelle Von - This place gets you in and out',3,'',10,1),(1340,'2020-01-23 11:53:13.332867','AIe9_BFL0OZrFaHgoJtqifT1GHrIY2OjzKASu9rLfIJEmLUes9aiH1wU6KBUU61uy6jn9dRKXWrA2-Xz3TG_La3JBRiP3Z3dM3cmZvoaeOnmmWSTo3OFbnY','Erin Wyrick - I’ve been seen here a couple of times, and always the best experience! They consistently go above and beyond and always care! The facility is so clean! And a genuine positive atmosphere,',3,'',10,1),(1341,'2020-01-23 11:53:13.382000','AIe9_BEHZ7lh7y1sP-UInhkpmlIpHe4m8VbzLNNSxdKwyFM24njdS9wJG8TPC0U_EUzm4JoaNVubiHhrIbdkOc5KF3OIqjp2_uy4aG0DxtKecuBEUFF-4_U','sharon gomez - This was not the first time I have been to this Montrose SignatureCare ER but every time they excel my past experience. From the moment I walked in greeted by Kearie, everyone was so fr',3,'',10,1),(1342,'2020-01-23 11:53:13.431141','AIe9_BHZM2k_MpOhRgkb8w5Bn_urEvZ0bdyhnOcaIs0_vP7CVXpSLlTTJ_kPeXxuO7oDgIEjiwvlImYCHKfT6PhydFKXgv_PaspkI_RHfLPSHlX6kKuMe_4','Marcia Johnson - This place is wonderful. Maya was very kind and friendly as soon as we walkes through the door. John came to help me out of the car with a bjg smile. Kristina came with a warm and fri',3,'',10,1),(1343,'2020-01-23 11:53:13.480156','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMI7fXdxyPFwD4dCLWyYwB3XEUJhbK89gXI5pR0M20jPmsPOzSCqQOQkaalSCWUPVMa9FI31lnKVThN6kuBiEDLhglFfA','Kristin Hicks - Omg! I just found my go to spot for getting sick. When I tell you these people are Amazing! I just took a coworker to get her leg checked out from a fall. They treated both of us like',3,'',10,1),(1344,'2020-01-23 11:53:13.529438','AIe9_BHAFUK2tNBZL25dLQ0jVdh0LNOCu8hgkXCuiede80sJcrUBgAmCPhkoveZY2II8ujN-usC0r1xEfSLIBgU5VY6-tRxqLQZ9HI9IyswePqtOD7CInyQ','Gfdsa Qazxsw - Our teenage son had a knee injury and the hospital er sounded dreaful. We tried this place and there was barley a wait, they treated him with such care and professionalism. If we need u',3,'',10,1),(1345,'2020-01-23 11:53:13.578616','AIe9_BHAFUK2tNBZL25dLQ0jVdh0ZKsAf5ZBa-HpY2AKeVBlfWHDFhOXtujmLDY6JWxvi0FV7llCfYE8rTNLXXdt-qLbU0vY6tQV3Fq4ayxJtERngUCbcC8','christy johnson - Very fast and super efficient! The staff was amazing and very caring!',3,'',10,1),(1346,'2020-01-23 11:53:13.627653','AIe9_BFMK6FB7k24ANEBV5CospTTJCEldU2yZOw278Vb7nwbidlyElTYdGMSc8nkZ7mO_6LedMmmf3qJLtZF7_13fqcA_iVkfPNDXHLMahUrTPQG-6nq7q8','Martha Johnson - I cannot begin to express my satisfaction with the staff and services at Signature Care. From the front desk, to the nurses, and the doctor. Each and every one of them was courteous, ',3,'',10,1),(1347,'2020-01-23 11:53:13.676915','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EIzcE75yBkgbItgljgW_-gMVnPIv5zoIePFuV9vOWaFe0Vrd842hxZ1tDPMGAaqjxpr0bYBTwDHzTMbIafnAoK2xkRo','Tonya Zepeda - Came in with my crazy husband... he is always doing crazy stuff. But as soon as we walked in to emergency room we felt very welcome. Tanishia was a very welcoming offering drinks and tr',3,'',10,1),(1348,'2020-01-23 11:53:13.775064','AIe9_BHAFUK2tNBZL25dLQ0jVdh0KVMIfbPpWFth6m9XVVLx2zpY7WBgOFdrKdotkrhiLed1E28_LKpQ8qa7_G58JgV-ikdR52DtUacE1K2W4YcgPX299gg','Shaqueta Henry - The staff were extremely wonderful and very helpful to my needs and care!! Strongly recommend to all!',3,'',10,1),(1349,'2020-01-23 11:53:13.824309','AIe9_BFu3rdicGrPrzdyu4PDXmqMu0LfEmIpyPHQHwhx6ji0CS9t1knLOWLTWgqi840FwYHzyuF8ZZibEgetYwT_NpiKbqvzzsxySYOFc-q4acpNYUmcPRo','Amador zepeda - One of the best experience in a emergency care. Got stitches without an overnight stay. Dr. Thomas really did a very good stitching my right middle figure. Nurse Sarah G. is very profe',3,'',10,1),(1350,'2020-01-23 11:53:13.873602','AIe9_BFhqAtkXvUqdYNeMuBBGjaACei7oPqlpdfqS_B-D3gJXjF6WF4TwiUuzRKXbjY3uo6x-JeQNzXsxB2tqv5xhglHotl0Fc7yL7zA_qGRoISWCykuqy8','Mac Ways - Thank you guys to everyone \nDr Thomas \nNurse Sarah\nEr Tech geovanny \nRegistration tanisha \nYou guys were awesome',3,'',10,1),(1351,'2020-01-23 11:53:13.922612','AIe9_BGErQpX2pRNZrXBy5NOsH0esMthQQey-6pL96i2vHOBt3QDHC3SYAq9BPHo7DBNwy69AH5zwtV-rtM1PjG7kaeGQNdlPdYbMzOZY5JRdUczcg1GfW4','Caress Boyd - Great service thanks the doctor Thomas Sarah g geo any Laura and tanishia',3,'',10,1),(1352,'2020-01-23 11:53:13.971863','AIe9_BFmRFRFwJGRfUDOW8jG3rXnfNT93T0heVmVJl03-67IFgFHWfFVHbt2CoIPSGc71AAceba-r0CPF62eKsolK9EzM1Jy0Hlr0IszpAkbYUGR6vxkO94','Military Mama - I’m never going back to military er again!! SignatureCare is amazing. I started my stay with Kat and Alexa and everyone who I saw after that got better and better. Dr. Hemerka was amaz',3,'',10,1),(1353,'2020-01-23 11:53:14.020531','AIe9_BFLHEJ8hYqd4VCbbc-EtvgM7ErtnTLKYDojwFFO_wKCaS2Gn2tsvgdfFiTvFzT4S1ORyqpcfQv_GrCU9GbaUaVnfGvdSG2OUtRnd2Gq1Y7OUPuh1xA','Me heidi Ok - Best place to be seen with fast service. We were in the back within 5 minutes! Our nurse Kristina was awesome as well as Matt. Thank you for taking all of my concerns into consideration.',3,'',10,1),(1354,'2020-01-23 11:53:14.291321','AIe9_BFhqAtkXvUqdYNeMuBBGjaAcEAEywuMLcPXO2cWHHRURpKxcY2_KWhi9UUXPSFLB-k2QCCxDSnrGOTClimu0jv1TiIAsSyvVluYgxW-l9ymnD_D_-Y','Melissa Avila - Sarah tanishia geovanny Thomas Laura',3,'',10,1),(1355,'2020-01-23 11:53:14.424099','AIe9_BFhqAtkXvUqdYNeMuBBGjaAz_sWHS898kk2goZGRQWH2JmX8u56vMzFTkYpJXQNmm9pkXH0r_lmM13lmp4n6Gi69T-bSsDaLbokm3_5GeoImUI7TQA','Melissa Avila - None',3,'',10,1),(1356,'2020-01-23 11:53:14.558661','AIe9_BHR7p0hPy1flx1br0TYdEUBOTYW4ve2Gq18y26Iqyr2vu73c2kV23YihX4u4pc7nyZo0ItonY_8B8M2mKnR59I6-Age1hHPDf2nb2yq8p5qTEKA44A','Fatemah Younus - This has been the best medical facility that I have ever visited. Not only did they solve my problem but they also went above and beyond to make sure I was comfortable and had somethi',3,'',10,1),(1357,'2020-01-23 11:53:14.631762','AIe9_BHknFajYLCY9NfgBafSx8bir6rr_NLzpDfTDh48qfT9OO1iSNLW8hkUrGYpqIhvlVsHKkL7mcx1eUrL602wvW32TIYgN59gq3CFooul1e_XI1Di-yQ','Adrian Garcia - Awesome customer service from Tanisha W, Thomas W, Geovanny, Sarah G, and Laura H 😊',3,'',10,1),(1358,'2020-01-23 11:53:14.865579','AIe9_BFu3rdicGrPrzdyu4PDXmqMA-35n4bSxnQ1JMwu514Y5C7q5lt4l-d1lGtwTFi5GEes39be6vfzNOAihgM6PHJ6H4Uflf3XBZ2dLFRM8meoX_9Ke_A','Gabriela Stanley - They were amazing, super professional, specially Tanishia W. And Sarah! Thank you so much.',3,'',10,1),(1359,'2020-01-23 11:53:14.996064','AIe9_BGvUJd9etQojwpjZIMsiFne6HOl-eSl9bsAZeJFWKTxbenAYh4dQOM1s_RXen-H1uImZnPTQaXHtVV58OeVpEgiCi7XBcKfysCSNtKVeK4wZOD-sHA','Pamela Pierson - I have brought my 3 1/2 year old daughter here twice in the last month and all the staff have been amazing with her and with me! They were all very competent, thorough and kind as med',3,'',10,1),(1360,'2020-01-23 11:53:15.152257','AIe9_BFu3rdicGrPrzdyu4PDXmqMIkUWnjmzsKOWrhIN4T3Jv2C_-qi2qBsYN1_UF4-s8lDfBdyp1pd87gr6KPU19vyqNk_lmwTbFgpQxvp1mUmoUQP2fcs','Natalie Dowd - Top notch facilities and such friendly staff!',3,'',10,1),(1361,'2020-01-23 11:53:15.250533','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KZBj32Vckg7wtyhr1vmgsUQNTF0xA7Fe9wnoBHCQQYxuyYjW26-Ojnnt0c0hBXyADwWwPYXp64t7nIS4MvJTcD4rCQ0','Erica Evans - They reduced my mother\'s dislocated shoulder in no time! She received pain medication immediately upon arrival, and they had us on our way really fast. Dr. Nilang Patel, RN Blake, rad te',3,'',10,1),(1362,'2020-01-23 11:53:15.299707','AIe9_BFMK6FB7k24ANEBV5CospTTzVFP9ltlnDSbasyXbmPlN9yXsz7WMOU-dbxSD1CeMnTZNpRPfZ_eyGXukoMs7cg4V_4vR4eA629Mud60JojZBLCCeM4','Melanie Brito - Husband came in, his knee was hurting really bad \nThey were all helpful very fast service. Would recommend highly.',3,'',10,1),(1363,'2020-01-23 11:53:15.349265','AIe9_BFDvtvCY6mNmVUeGBiBb7S5fqdW49vrWXaC2LOiSCPQWxAecrhU4ItMudwJSNlhRFZcI-Vbqw5_4VNRtxMis2zmdEwBuqDkxjreTEjLTkF7zFt111M','Claudia Robinson - Sarra, dr faig, anna & Christian are all very helpful with my son who got a cut on his finger..thank you guys! great job!',3,'',10,1),(1364,'2020-01-23 11:53:15.398469','AIe9_BGhYIk2KhOdF8fekWDvq8JUPIKYzGWoUO6QS8V2jn571vCEWvjhu9S53Dpfqof6xYBKqbAR6ALBI5Xn3gLWYXSdm6ebNdCt2wHFJKy6581qCjDCr1E','Lawrence Washington - Great experience! Attentive and amazing staff Patricia and Alvean were delightful. Very comfy waiting and treatment rooms pristine and clean.',3,'',10,1),(1365,'2020-01-23 11:53:15.447724','AIe9_BHR7p0hPy1flx1br0TYdEUBbfgjU0uxJzcyqopRJt4npN6zVZlyzqcSo3lCSHopv0KM2rZmvC1dEeZ3VNS0Ahaq02AoajLbJzncqGGhd5K_dTtRB_I','Christina Sings - I always a have a good experience when I come here. The lady in registration, Maya J, was really professional. My nurse Catherine was really sweet and helpful, she made me feel at ho',3,'',10,1),(1366,'2020-01-23 11:53:15.497131','AIe9_BGvUJd9etQojwpjZIMsiFneXKsQ2q_QFeaGZqkLptmtLUPpQhwehkGIie-STJJCD2KJLNFdgA3U2uf2FbFfX7yBiL30AQErUcPfPMzx9lZOCWL0U1o','Jaylen Gray - Great experience!',3,'',10,1),(1367,'2020-01-23 11:53:15.545952','AIe9_BFmRFRFwJGRfUDOW8jG3rXnrywf6HRdd6c_aEupjV5PH0lcuJr5jiE9KYuDHAe8wysQ4cG4aJQXWwcqYzNzIBPdh3xrUv6TyU8KRb6y4xRFCG-MXzg','Mustafa Al-Nomani - This ER facility was fantastic and made my stay with them comfortable and fluid. The nurses Patricia and Alvean had stupendous bedside manners and made my time here enjoyable despi',3,'',10,1),(1368,'2020-01-23 11:53:15.595072','AIe9_BHAFUK2tNBZL25dLQ0jVdh0c2u4gxfnTvz0Akks4_LhVh3c5JhvQKaW_jExakmVsbO9XqzDKABYgVNJE7TBOW9-fH0MLznKDo_F0OWLgzNb25-231M','Neira Lopez - The service was wonderful. Patricia C was really friendly great customer service.\nAlvean A was so wonderful with my daughter explain everything that she was going to do with her.',3,'',10,1),(1369,'2020-01-23 11:53:15.644314','AIe9_BEuFX7PcAP2nNY_ju84FoFSgXPOSMpLwqVGQV4nsPr8jyH6x7iqnoQdshjKSTR6rkmJLdBddc8_uEC0aRvU_d6Ke8k5V14i6Zus9QzL3LWEZ8ibP1I','Omar Rios - Great service by staff ! Treated me well and kept me comfortable at every step! Especially Patricia and Alvean A.',3,'',10,1),(1370,'2020-01-23 11:53:15.693455','AIe9_BGvUJd9etQojwpjZIMsiFne2_mZLmzRjqFNvo4Wi7CPFYwZDLYGZsjpO3kNT_jKt--Y7l-IgCICGbmmhKtYokcGnCMSuGahNXVYJFcHbHslDJ6MCos','Nicole Williams - Great customer service. Jessica Aaron Ryan Cynthia Smith. Fast service no wait',3,'',10,1),(1371,'2020-01-23 11:53:15.742569','AIe9_BFL0OZrFaHgoJtqifT1GHrIJZSkRVYs4ng1qdyAG1rJSb1QLCKLB6xZsJcEs4XdabcBYYevuk9QP5nImpp3Xo31oNozUOnEjDtIlb4W6msEdhytAfw','Crista Valenzuela - Brought my son in early this week, staff was so so nice and very helpful. There wasn’t a long wait, we were in and out within the hour. Highly recommend',3,'',10,1),(1372,'2020-01-23 11:53:15.841046','AIe9_BHknFajYLCY9NfgBafSx8biSIF3PDFZ98G_cxcp1bnYftx1HmWS4i80EeG5wkaUDPLwXoWMZsH5Ea6xO1jjmldEYYs-xvVinWBcI7DmR4ug0cdjysU','Alexander\'s - This was such a great experience! From the check in to the care. Alvean A. Was very nice and answered all my questions. Patricia C was also great. I would definitely recommend this ER ca',3,'',10,1),(1373,'2020-01-23 11:54:07.692366','AIe9_BFMK6FB7k24ANEBV5CospTTMhO8cUtsfQUKjxq9QH-P3EjwhGfmxnMWCzEsmwtbOX7j0I2XVR6FCxdVQbnNHwVB4d8WaRkTbc5hbjvy0k-tCuMLApg','Taylor Bass - I had a shoulder injury that was really painful. The staff onsite (Tatiana, Nicole, Chris, Dr Patel) were really knowledgeable and helpful. I was in and out within an hour.',3,'',10,1),(1374,'2020-01-23 11:54:07.771385','AIe9_BEHZ7lh7y1sP-UInhkpmlIpPJ12wbVJKx2EliDIWNXeMlqw-i69TxFuSA8r5c2_smgDHBgMablyeZdlxpaNTCE0WxkDtAR4GKF39MHFPt2lN5IIK-I','Christopher Smith - Visited late night for an injury. Really impressed with the staff. Tatiana was swift at the front desk. Nicole and Chris were great nurses, even the techs were fantastic. Dr Patel',3,'',10,1),(1375,'2020-01-23 11:54:07.880950','AIe9_BFmRFRFwJGRfUDOW8jG3rXnVrw4yMIH5MuhzK7o47r0SYPpv6QoTxdClj6vF2TNfP5ExZ_VAXeZXTLSrEMf93lj3LWV08JpFt8vcpv8qfK8ycIQ46Q','Kymora Thomas - Service on 11/17/2019 Dr.Faig, Nurse Balliu along with the customer service rep at the Copperfield Signature Care were amazing. Service was rendered in no time. Simply great customer ',3,'',10,1),(1376,'2020-01-23 11:54:07.979377','AIe9_BGvUJd9etQojwpjZIMsiFnezAXwOuHLUabXw3W-u-7soBumgg2TkLoZUeqkdFl01i-YvIYgnKstMA__ruPJPw81r7HuJoaHskx6Pfqh_J4HePF4nWk','Ana Nevarez - They were all so kind. Very quick service. Shania moved us in very fast.Every one was so kind and considerate. Tried to make us as comfortable as possible. Dr. Diaz communicated very wel',3,'',10,1),(1377,'2020-01-23 11:54:08.077755','AIe9_BGlY-BaOO_aND3JZqxJBS1RangAl5AidFHI6dJFTBdmVG3WmxJVI0CKBIqe3ZtAKiH2vro5UmdqAeUgcrwqoecRh-83Rk8Su9l3VZdrseL-wvSlaU0','Jen -StarberryPocky- - Excellent staff. Fast service. Nicole, Tatiana, Dustin, Ricardo and Dr. Patel were wonderful',3,'',10,1),(1378,'2020-01-23 11:54:08.176199','AIe9_BGErQpX2pRNZrXBy5NOsH0exvJim9JJ6ykM8dg46Ew6o8JsAtqO3bin79wjdptzzMThmXGfqDUO-2hPIpXBB0HPANAIL5d6KCu7tm-wgOgHG9WPfWM','Ted Sornson - Really great experience. Came in with terrible ear pain at 8:45 pm and was checked in, evaluated, and diagnosed in 20 min. They’ve got a calm, quiet, and clean waiting area. Nurse Chris ',3,'',10,1),(1379,'2020-01-23 11:54:08.275059','AIe9_BH3gZxYpIxBZcqAOO5HuBVkOlhL0h7KUzD53_t2MyqiG-fN-PWTXoVEMjRyI9j5udoq2tNQTb4d2NdT_DjIHn0sdblEUMei6epsoggn27WM6JFvB4o','Darniesha Wrightner - The nurses and the doctor took care of me right away and treated me with respect. They got me “IN AND OUT” I appreciate everything they did for me so s/o to RN- Lucas, Kim Domans',3,'',10,1),(1380,'2020-01-23 11:54:08.471657','AIe9_BHAFUK2tNBZL25dLQ0jVdh0SnRsBskrZI81pPpSYDZ1Q7TTEziEHuUZjbo4yreMOibaokolS_Fe-JYNKhONb7W7UfkaO5WFspiRXGeOPmK_v9NhUwo','Jessica Anderson - This location should be the EXACT prototype for ALL SignatureCares in the Houston area!!',3,'',10,1),(1381,'2020-01-23 11:54:08.531883','AIe9_BFL0OZrFaHgoJtqifT1GHrIUdA0241x-C11_Hfe-McfVufIlq8ArW3aUdzcFGjp5EzVV3PkppcxW-Yq1tm8egnxM-colJrz8ggdveAhL_eBY1s8OGQ','Lindsay Mahlow - Dr. Patel, Nicole G, Chris M, Dustin, Ricardo and Tatiana all took great care of me as a scared and very sick pregnant patient. I was able to walk in right away and be seen by the doc',3,'',10,1),(1382,'2020-01-23 11:54:08.592279','AIe9_BFqh_zr355jzGaEpH7666zcL2wEfx4hFtaYt49pBda7L9xtonQXl0mGLIlSJBm9NUxmzbDHCNiKWzIpiIv8gGLieOHjFygRTPuzTp5z5gXIZv_hzCE','kiara parker - They were very good. Treated me like their own. Would recommend them all.',3,'',10,1),(1383,'2020-01-23 11:54:08.652601','AIe9_BHVBnWjBJvk55vq2QEm0wl-2As3ikhAi9lpcFU3EKGkxRPfCQgXl-FlvSGXsDb_wPFUHO6nzcih3v9MNGSMs0XcABjx4jBHuQWHhoWH-UzBHxD6HkA','Wendy Ugarte - The whole was very nice and answered every question.',3,'',10,1),(1384,'2020-01-23 11:54:08.712407','AIe9_BEHZ7lh7y1sP-UInhkpmlIp-NWORN-XsRHkunAk8BVrV-J822mUXqlX2OXsNcbKgIMRA_dPdcwhwIQY67Exg5wyAqg__GDSAB2WGAodwj9LPFiXSRo','Bryce Keeler - None',3,'',10,1),(1385,'2020-01-23 11:54:08.903283','AIe9_BG_KYPQZrI7j-moUldshgc1ZPp5afnBLwMWudd3n2Vy7xqvHqqn1oN-ebqqyPnE88lDX20WCrefceAOD2sfqqCJ97joVSnfAhxrsZGbgu1drVLFiMI','Joe Watterson - Wish they took Medicare - otherwise great!',3,'',10,1),(1386,'2020-01-23 11:54:27.782699','AIe9_BGErQpX2pRNZrXBy5NOsH0e7SiDo4uNG_uHXSG8zWGfcNV_iqImcF9G_2Q8EyMdJnpfUvd9n58hyNJ_JWAQLCW9jlKwZlrG54nZ0s3xhh4dwcdkaYw','Susanna LeJeune - Had wonderful care for my daughter from Dr. Yost, Brandi, Karen, Kim, and Gunner!',3,'',10,1),(1387,'2020-01-23 11:54:27.875483','AIe9_BGZuRKHeO1iYrcf4B001kE2gwvJxeEWMp4SLirzwzgLWAY-AwHUsqzzOnR-BGmYqUoGOpJEFfPQ506idNTI6Q15f8lADAKZuhT12O-a9NZll0XQvtA','Sophia Lejeune - Received awesome care from Dr.Yost, Brandi, Karen, Kim, and Gunnar.',3,'',10,1),(1388,'2020-01-23 11:54:27.924835','AIe9_BFqh_zr355jzGaEpH7666zceN3Nz2396FfNEKPmdAeDGYi4wOsDn9BSbsqW5iMLUOXX6jHUX1WIA6of3EqYL8kgnalCU2GuKHbFdgLphG0abLHcxWk','Shelby LeJeune - Recieved awesome care from Dr.Yost, Brandi, Karen, Kim, and Gunnar.',3,'',10,1),(1389,'2020-01-23 11:54:27.973395','AIe9_BHVBnWjBJvk55vq2QEm0wl-SJLxAzFkFMuaik4IF136L0VBai0XhLGqa3cyGGUZfhWTrZ2gvCmDjP5nIKcOxVUtJkIkg4Qlzfxz22nPvMaBo-jQ5f8','jlshelton83 - Comfy, quiet, clean. Big rooms and a very friendly staff. Highly recommend.',3,'',10,1),(1390,'2020-01-23 11:54:28.022541','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ImZ09w0aT1VamzcRvxP_UDtXNpgUb-zKsGdD_DB8w3ziD13SzIVyaO_-dQXReAJ8Y161tdhhp-UkarWiEWMnYsjV3Hg','Christina Shipp - None',3,'',10,1),(1391,'2020-01-23 11:54:28.072200','AIe9_BExcxslmE1rr7n5jMcadSKeOd2BjIZCvVhBbUeyHlbQgVcNVANQgoB6yTGhgC0kG2E1FwxEPxTZr9y4W65E-705zoX8mvMjqMWNsWlcRGgE5mJ2Aak','Bpb Works - Jocelyn A. welcomed at the entrance with a smile and reassurance that I would get the help I needed it and I did Alvean A. my nurse asked me what was wrong along with follow up questions w',3,'',10,1),(1392,'2020-01-23 11:54:28.170846','AIe9_BH3gZxYpIxBZcqAOO5HuBVku-nhaSRkS-VUboHetNQ2lHzo-uJ0DkUsdCuGPyi5Fc4fq6EqMe49ZhaY14D51fopqzKKZTvHLR0YRxm7mWQ2Vquz90U','L BOOGIE NATION - I would highly recommend everyone to come here great service and snacks 🤗🤗🤗 Jocelyn A and Alvean A were awesome and also thanks to Dr.Patel we can go home feeling better then this mo',3,'',10,1),(1393,'2020-01-23 11:54:28.269338','AIe9_BFu3rdicGrPrzdyu4PDXmqMbt6hon2Gv29qH5_sGr20YBk5pEwvFdiJCLqjLibHhJzm-Y9NtkpVjI2wXUYGq1E-8OuUXgkYYuuuhIcIeyhpKYqiXg8','Neely Lee - The absolite best experience considering why we were there. The staff is friendly, kind and caring. I would highly recommend this free standing emergency room! Kim D. at registration, Luca',3,'',10,1),(1394,'2020-01-23 11:54:28.416926','AIe9_BFMK6FB7k24ANEBV5CospTThxYr3pUOTrY0nxtH6YgsqcFG-IQE5ezNrX50O9LFu38btR2ae_sYJHnEdYHnMZkIE2s7NXW85ZyNlTiETIpzDBYqzI0','Amy Southerland - I had a wonderful experience. The receptionists Vanessa & Ebony kept me up to date on wait time and there was a posted board as to where I was. My nurses Timo and Dr Brigette were ',3,'',10,1),(1395,'2020-01-23 11:54:28.491204','AIe9_BGlY-BaOO_aND3JZqxJBS1RlEvsZ5x9QCaJCkoi32NpmU-4tU-dsqsQHbwkFS553KKKG10W-MrqrAO1AuZrBdpzURXXHtEm0QZAlpTVoM-cisB9i6Y','symone taylor - Jocelyn A. And Alvean A. Where great, kind and very helpful.',3,'',10,1),(1396,'2020-01-23 11:54:28.540240','AIe9_BHQjprpOXGeqmXihYBIHmuakhnlqD5LB5x6opczVT_CjpHwklWwE6uSS2PG8d2mlqitj6Bkc7-8anP7vTm3VOa2F9AnuYHIu_Mxr5v0CDh-AKWMFtU','denise chavez - Came in with husband had a great experience and delicia at the front desk was nice and helpful would definitely come back! :)',3,'',10,1),(1397,'2020-01-23 11:54:28.600312','AIe9_BGvUJd9etQojwpjZIMsiFnevIohIF-1UGoYeaB8JqWaW4QC6CspKndc-4rrPOVo8fVyC1AovQukVYlvCR-B4Kz8vQp3yo8drAKxKyfcOE9aFT9cZUY','Jaylen Gray - Delicia was very helpful!',3,'',10,1),(1398,'2020-01-23 11:54:28.649497','AIe9_BHx9wW5OAXpNIH08blLdli0T7VkBtOvqi3qOoPUymDaZPIiQe8UfhqPvPdx6yo7komrAYWNlCQCgpkZFD-vB_-8wQ-q8hdlAKKyB7VQ7-uDAvV7FYY','Ant honcho - Jocelyn A \nMeredith\nalveanA\n\nThey was helpful & nice to me',3,'',10,1),(1399,'2020-01-23 11:54:28.698847','AIe9_BFu3rdicGrPrzdyu4PDXmqM3QrJkLwJ2GaTyYN8RGr9bOQNej2Mq8NPZ4lTs09RPEAgBWkveN18uoVP3-3Bor_Gw4fj7cbVLWv2vyRHMs0HwhF-o8g','Samantha Santacruz - Excellent patient care! Staff went above and beyond to make you comfortable. OMG the warm blankets. Doctors did a thorough evaluation, very attentive to your needs. Even betwe',3,'',10,1),(1400,'2020-01-23 11:54:28.748046','AIe9_BHx9wW5OAXpNIH08blLdli0uWpZ-iaLrBqbMNBjw0mSNYoUwc8cRfQJZLNf9X67iwxTtTU62LhQk3tqgjzSiJKJ70vtA3AbgXYQ3yXRYiqaoz_ttIk','Kashi B - Very great experience , I\'m a new patient my check in time and being called to the back was less than 10 mins I was referred by my sister in law , she told me how fast and friendly her exper',3,'',10,1),(1401,'2020-01-23 11:54:28.797450','AIe9_BH3gZxYpIxBZcqAOO5HuBVk_3MmNnEYBybMcn5wof2ZDaUzAf_iuhDylEEz1xD3UYUXPk9Lmd5WeSaDpcITYVcqk-9HJ4M0lFCnry-NHQ5upejsszQ','Nkechi Ukoha - Excellent Emergency care center..super clean.my doc Dr Golla was excellent knew exactly what tondo for my pain n discomfort to go away.The staff is always perfect the nurse was superb n',3,'',10,1),(1402,'2020-01-23 11:54:28.846480','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMzQwUGDOM2DA2nQ4rH4QkCiNg950Fk3KqKC_J_N6D41a0JPWn6osF63tVsjH_HGGO7LXID_EHNPYw2ikpHeZhRw-QIIs','Bill Plank - Clean place with very friendly staff. Staff were knowledgeable and thorough with diagnosis and treatment.',3,'',10,1),(1403,'2020-01-23 11:54:28.994210','AIe9_BFhqAtkXvUqdYNeMuBBGjaAxa_I4y9cMtcHQPbzoM7lkPEb2SWJR_LXv8YObGZpo4FsA0KGJ_ahOY14WW5_zoQvTy_Ol__qD0s6vkcDWJxm7s239bU','LELA YOUNG - This Crew but people make me feel like I am home they are so nice and nourishing they was attended to all my needs. Jocelyn A. Is great and very sweetie and patient as well as Alvean A. D',3,'',10,1),(1404,'2020-01-23 11:54:29.092554','AIe9_BGvUJd9etQojwpjZIMsiFneRnVUTZLRHrOTGzJIhnwS4EjyRFI73DihfSXrA014giZUVxJwgW4xtKtU-g8H5kAEtV9q0gOUfuiJuFM5ATVUGpjJ-Mk','manuel gaytan - None',3,'',10,1),(1405,'2020-01-23 11:54:29.141826','AIe9_BFhqAtkXvUqdYNeMuBBGjaANwU-Y8ssD0zBsFyQxtFrwp6kg1EifscnNfb8mxTmdimwkMZA1Nzbav_42TS6yNG5f_Cc63HG4O4ce2LPzFynyV5RJTA','Savanah Sbeiti - From the moment I walked in until the moment I discharged every staff member on every shift exceeded my expectations. The doctors were very informative and the staff was extremely nic',3,'',10,1),(1406,'2020-01-23 11:54:29.191197','AIe9_BExcxslmE1rr7n5jMcadSKe73MxXUmlEs8f5E63V_LqtN0MpW0bGVhd-30Ikn2PSeBGtv5_9W6X3ATEyBt6NLsCpz2kKshaSr5TVFYSqk5I0SwBGRI','Alexis Doyle - None',3,'',10,1),(1407,'2020-01-23 11:54:29.240511','AIe9_BGlY-BaOO_aND3JZqxJBS1RSAmKS3tgW7C9z__488TJLBCnBDVpgvaf2nzQUqDzWMmYsZlDypw8jFtEE5WwAM1fzft2cQ5AAAooKwDmK2BQ9ySSp2E','Tim Smith - OUTSTANDING EXPERIENCE! I went in for a nasty respiratory infection. I was a new patient and the paperwork was reasonable. They saw me quickly. The PA took time to understand my health h',3,'',10,1),(1408,'2020-01-23 11:54:29.338780','AIe9_BFMK6FB7k24ANEBV5CospTTRQ9UlrKDtOuL7mabGumr8fYyF5oe0WDQDLNNKS8ERdF9We3IVAyxG1_bb_kXTePn4Q5Y8dG8eDlLcYcRJzjglc-cd54','rechanda primas - So! This place is the answer to patients who need to be seen quickly, professionally and compassionately. This is my second time visiting this facility (once with my husband a few ',3,'',10,1),(1409,'2020-01-23 11:54:29.388046','AIe9_BExcxslmE1rr7n5jMcadSKen6IOlzEp67g2CsLusxK0a-Vg4OWQK00kCc3S0mkuzH8A6ybp0_4yG5oUnlNH4dEtMTp1CXA-0iWljL8EcFv8QCCLCXc','Nancy Cruz - None',3,'',10,1),(1410,'2020-01-23 11:54:29.486491','AIe9_BGvUJd9etQojwpjZIMsiFneHuNMPVJEjhRaCb_8jjTUPmPp4_t-mtCvBHpV2HhvP4gsfbVvF4KUCsF3RBtDH8f7L14rU9Ozx9cOdr2alt4tlkrgLCY','Stanleigh Tomich - None',3,'',10,1),(1411,'2020-01-23 11:54:29.560329','AIe9_BExcxslmE1rr7n5jMcadSKeuh7a8YUOGBfjI3DGjVuBOE66niBkRDqIgc7VtrSuy7LpxcG3d3IiwfXqYFZst9oFT5UqyKzHTY4kyaRTkEFSpIomdnw','Kayla Batchelor - Came in with some bad pains in my back. The staff was wonderful in helping me get to the cause of my pain. Thank you for being so proficient.',3,'',10,1),(1412,'2020-01-23 11:54:29.609582','AIe9_BH3gZxYpIxBZcqAOO5HuBVkJuY6XmUY9abEQKsQHjdP1QBtFfFmB8ISGOv0azfhEhFep9l5Sl2UCTmzZ5fhk5xF1u4rwdOyAyFbDoU-mef55_tBp68','Jorge Munoz - Wang, susan, geovanny and tanishia are the best ever, they all did their jobs right and i couldnt ask for a better staff!!!',3,'',10,1),(1413,'2020-01-23 11:54:29.669947','AIe9_BGTHfLB7ZAtvlQmidaL-PvDhFbGJcHnAunS_sbxGhJtkRlkFH1CSReH4YyTT7cLd4_75VNpOai7O0CVuz4xki0Kazq9Zz0UCVktT0OHC0HchRdPys0','Angela Fleming - Great experience! Ryan and Dr. Henderson took great care of me and made sure that I was comfortable throughout the visit. There was no wait and I was seen immediately. Will use this f',3,'',10,1),(1414,'2020-01-23 11:54:29.719116','AIe9_BE-WkHUQvYNuVhjQlzNta9L8oQZ_nAT3p0422N9N9xPyDMCIXbHCcWeVLnLBMzQybnBbg7swAWMQZrkZaH4CO_wThmyft64JTI-ijfuNIqaSM-1Q1c','I Dizzy - I had a really good experience here with Dr.omalley and Alvean chanell they helped me with a really painful cyst and im grateful for chossing this place !!😁😁',3,'',10,1),(1415,'2020-01-23 11:54:29.768452','AIe9_BExcxslmE1rr7n5jMcadSKeBJ1wmcEV5rmnuK9BMHoFzNWgMh7wRqd_AuAk4MLCm_hUM6PbbrfSAn830Fw9VZctk2n6CC5YEi1rHTfwh6U1beNwcK8','Charina Johnson - Very professional, fast and Friendly staff with Dr. Omalley, Alvean, and Marcus.',3,'',10,1),(1416,'2020-01-23 11:54:29.866844','AIe9_BH3gZxYpIxBZcqAOO5HuBVkUXhp7GjkbC6BOMm5tg6QHOYsGVeJMBEEHUTHTTMaCWS2DaoZTpexoPHHrshClmKzbjRtqTjk-sDrzXnRm9wzpn6jo78','Jamal B - The staff was amazing! As soon as I entered into the facility they immediately wanted to help. Kendra and Dyveliz made sure they could get me where I needed in the fastest way possible.',3,'',10,1),(1417,'2020-01-23 11:54:29.965554','AIe9_BF8X4EpR_fF6mwcYdso9awg93T2zFvau_AOzSSE3YcKrmXsrbOFC8k_zBZg1-qEJYoDDuU_aRFe3P9DmII6qZ0S6-VYKtDhUuLf21fLg0ZPDCzvZcg','DSean Harden - I have made a couple of visits to this facility since my family and I moved here 10 months ago. I have to say. Whether it\'s been service for my kids or myself, the team ( Dr. Elsebecker',3,'',10,1),(1418,'2020-01-23 11:54:30.063910','AIe9_BFl89CEg3-ah5_8iIgQFwgZgklDAaXSGrY1ZD2T_0StG163kSsW-yMxpBOsYE3MNRkmLuM2TTUqZ8lmVy7qVW9iHCj23c5BCewz8UYVV1MeWfD_c1A','Gloria Sayles - Alvean my nurse was fast with getting me in and out I was there less than one hour. I was seen the lady in the front Chanel made sure my insurance info was put it and I was see in less',3,'',10,1),(1419,'2020-01-23 11:54:30.162347','AIe9_BGvUJd9etQojwpjZIMsiFnenhnB5o3t6sQ7VfLxJ-0XNxYokzVGWWZYPm0VeWbDTUJTjkFNdUqJmTaNZUNwnMhfKMkYPF4HBB8E3VUfYEZuTlbgx28','Brittany Starace - The staff here are incredible. I was referred by a former employee and couldn’t have been more pleased by the care I received by Shelli, Chris, Dr. Elsbecker, Adam, Christina K, and',3,'',10,1),(1420,'2020-01-23 11:54:30.222896','AIe9_BFBNh-3p60HGE0VxxVuj8CVN2rEVk89qlTwd4mKmoIZ8_Z6i3bNlPpIFg0pmxq95nbLbF4HkDV16qtZP-OlLc5KPVeOXtwiynwEymFgj_eV-beVJxQ','Alexis Swafford - None',3,'',10,1),(1421,'2020-01-23 11:54:30.282900','AIe9_BExcxslmE1rr7n5jMcadSKehJ8XA1_0LpuNXUtp6mdya1tC4j-HqzHJ84mfkO-iBUbVsLfVWku19yViMfS1K1rsyAj4GgNj_m_3PfazpikWzDPLLME','SHERRY STOVER - Good work by Marcus, Alvean, and Dr. O’Malley',3,'',10,1),(1422,'2020-01-23 11:54:30.343262','AIe9_BGvUJd9etQojwpjZIMsiFne-C61_ROD8c-9O1r5QrXeDIff4LMrHovcbkB1IxKhmHZIC31G8uwVvt1uZDI65QTLHuBj0UhEh-GhiYwCQEaoL66K434','Lynn Hart - We went to the Copperfield location twice. Both visits were wonderful! The Clinic is so nice and clean. The staff are very warm, friendly and helpful. The care my daughter received was ex',3,'',10,1),(1423,'2020-01-23 11:54:30.441943','AIe9_BEtr-1H2yEDwUdLS9nPaZGhFit-4JBGwo1e1iWEJJBMzguHFZ-qmBteJZWBjn2uT-7sb3a2RibDho3BA7ik23SFg2QUgQ','Barbara McCullough - My niece came to Signature Care and was admitted very quickly. The staff and doctors were friendly and attentive to her needs and concerns. The doctors were able to control her pa',3,'',10,1),(1424,'2020-01-23 11:54:30.540338','AIe9_BHVBnWjBJvk55vq2QEm0wl-3N733fpGyBhZbM4U8dIAPMzr9GUsLAKAwATqnpnvvPZkFUKVya-DE2hP2_Fc7-bzAYENbJDLlI3aQLKiW-0ok2o5c2w','debra Palms - Chanelle and Alvean were very caring and friendly.',3,'',10,1),(1425,'2020-01-23 11:54:30.638788','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Gvo_nWFRNyQmQuN72KN1eJkgXabPlfrqGRWJbQEScwMnxEkrnIgGpRrulx_UXyLqt-45hspI-TlyfEf225xYMB79Bck','Erick Looza - Everyone was very nice and helpfull Kristina the nurse who helped me was excellent when I was called and then scott was really helpfull too and really nice and quyen was really professio',3,'',10,1),(1426,'2020-01-23 11:54:30.698949','AIe9_BF8X4EpR_fF6mwcYdso9awg3s1qFaQHvMFIyv2ze6ZHNsEDvo3jr4NVJckfHfMUl_D7rgxllkpjlA2L9dpnCdls5AJMbQzuZIB6xVyhjLCI19zYKRE','Tom Kiker - None',3,'',10,1),(1427,'2020-01-23 11:54:30.759209','AIe9_BFu3rdicGrPrzdyu4PDXmqMaryj5ow__ISaPASmsCh6ahyT5VU2Y4eP7ldKZ0P8yEm8xyO0UtKUKfcNk83cKz5zWrsq5ngzRsjufksm-SO-_3hA53w','Deon Washington - None',3,'',10,1),(1428,'2020-01-23 11:54:30.819568','AIe9_BHQRY2ZSwEqF8wFOgAU7mdNoW-UAaT2NLiA3-8UaE9gsjwptEMLmAkqjkVq4Zlww7LjTILc9Oiu3SiTapO803Rw9rPPVqGj_BtSI7hh5B1LjfXCMJc','Lisa - RUN - DO NOT GO HERE. LOOK FOR ANOTHER URGENT CARE CENTER.\nFraudulent billing practices. \nI came in due to stomach pains and was worried that it was my appendix. I asked the front desk if they ',3,'',10,1),(1429,'2020-01-23 11:54:30.879991','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2X9iahhI47p3hWZhxfGnykzk1K8fzNfMe9tzdl6l4tTsbiA_5ny5otq-CsRwoX2vuatwat-OJhTBePlQpBDYg4m7nRrs','jamelle blalock - Very nice and fast',3,'',10,1),(1430,'2020-01-23 11:54:30.940323','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fs1TflvaS-xBnjbX3CEedStwM0seZfgVDjFd6YDw6Gs3rY9hSseuLzHlkzBW_OK5fii7FnbwcPqqfAxunyPyG2NRu_s','Philippe Sergerie - I wish I was sick more often so I could come visit them more often!',3,'',10,1),(1431,'2020-01-23 11:54:31.000715','AIe9_BFhqAtkXvUqdYNeMuBBGjaA6MppXqzhfG4gy77MvrodvzKyrbZn6-f9G5fxFhuV6dog2irkmk0yn4KVj0ZpUB5jh6wGTMboRfZv9a1XJfRi7Qh92Fg','Chelsea Barry - Rey, Vaneza & Don were very helpful with listening to all of my symptoms & giving me good options to try to help relieve my symptoms.',3,'',10,1),(1432,'2020-01-23 11:54:31.099073','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26Uyc9-8OKlr2deT3zWcAoNtLfqUQBLvcDzhWpTj4t1UKHNFdnk4dgiqkhm0_TzLXMEakoq4NH8ZMvqwgG4GAZHC7t0U','Paul Forsyth - Very friendly and fast',3,'',10,1),(1433,'2020-01-23 11:54:31.197144','AIe9_BHVBnWjBJvk55vq2QEm0wl-DsH9zJ0W6XF3wbJRuoU3CJn6r_22akFMEG0dLglgfB-Nt6yYQLFAS993AJ28Du7Ko97i2xg4YEGIsDd6l4VO2UChTwg','Kayla Graham - The staff is great!',3,'',10,1),(1434,'2020-01-23 11:54:31.246249','AIe9_BGlY-BaOO_aND3JZqxJBS1RSelLZVMXM0ZN7ZTx0bK62Xh1kOB1PTpMg6GTEJFraN1jHmxxWhopcEabYKnfIAMNwYDjEp73OZPMd0vLz9PvLqqkrvY','Lara Fendley - None',3,'',10,1),(1435,'2020-01-23 11:54:31.295949','AIe9_BGvUJd9etQojwpjZIMsiFnekz6H-DrCTvQsG5GyXspbUlzPZ3mkNzoVK5BZnB-CfJ1fm-OT_9XjetR9pTpLwvAs1tuqbKwdiFhYK7E_8pKCZeyioA8','Lynn Hart - Twice I have had treatment here and both times the experience was A+! The place is clean and smells great! The staff is friendly, attentive and very professional. I always feel that I am',3,'',10,1),(1436,'2020-01-23 11:54:31.356368','AIe9_BGZuRKHeO1iYrcf4B001kE2QM4EENwdObD4cvrr1mSm-WJNaQdR4CbLJ3WabzaCcZnUcOCFtVrD8fQ76JZ3hYHksEzD7-Ql6nKus-KceEYi2EQ4DkA','Tonya Dolphin - This location was excellent. Marcus and Alvean were very attentive and friendly. I would recommend my family and friends to come to this location',3,'',10,1),(1437,'2020-01-23 11:54:31.416748','AIe9_BHAFUK2tNBZL25dLQ0jVdh0NfI19ZF_xA0oFg-nwl8BqaaZ67_R037Y-HXYuqoVX2ewWDovclEnxCsSXdoEZMmHuEBa9CnAkByzZISDR9bb7f_6xOk','Amilkar Martinez - Great experience! Thank you Dr Ortiz and Nurse Kristina for thanking care of me!',3,'',10,1),(1438,'2020-01-23 11:54:31.515015','AIe9_BFBNh-3p60HGE0VxxVuj8CVwWT3Z2ID2FePtktPi3LqVQVLLCINhw_GADxC9L2R22HetUSNylIehAmsdGSPpgU6HRt0ay5EDAFiUQRyvHKnWU-h6Ik','Sønder - Everyone here is super nice and thorough especially the people who took care of me, Alvean and Brian. Highly recommended',3,'',10,1),(1439,'2020-01-23 11:54:31.613705','AIe9_BFmRFRFwJGRfUDOW8jG3rXndzopaktQypV3H-ijr5RwIcFMpz409_lRDd7oImXsVPIOT64tLlUhcRojDHTSOVyCloJILFnwKRtduKg7qySgi9Vatw4','Kimberly Fertonardo - Was here this Morning for a turned ankle great service, friendly, staff Dr. Elsbecker was super nice and knowledgeable. Chris was awesome !!',3,'',10,1),(1440,'2020-01-23 11:54:31.711947','AIe9_BEHZ7lh7y1sP-UInhkpmlIpASROmVj2doRfV89AJpeI6Sjy9funuC7QWrivGJUYDtFwNxUWCEGx6VETXgEpfnkL7WDqNMXs0jWw5KUrv2pyl5cWJ90','Paige Hanna - I personally didn’t get treated here BUT I took my friend and they were all so nice and helpful in a timely manner. If I need treatment in the future I would definitely chose this place!',3,'',10,1),(1441,'2020-01-23 11:54:31.772457','AIe9_BG84YPnR8vhxeJfV_lAYVNiGjdxK8-SyZrYELIfjl8n684UyJwxCHjU2ZL2znF-TrXCjSQnph52I9hYSm2A19_mW-_9gusFz3gxU8pl_Hn_ojTPlxM','James M - Overall everything was great. Everyone was very friendly and I didn’t have to wait long.',3,'',10,1),(1442,'2020-01-23 11:54:31.851719','AIe9_BHkHJRvhG8n5BjqdcMSKR_FGLXq5cPc_cYO9l5SiVri31LYNIlQLPpLtAqDFDOsO2pd-DLlYEuvJxOJhRuni_YLiRRx7SWqaLFN_N_c8oy0j1M2EXE','Rashad Punch - Dawn, Norma,Jacque! Are soo helpful and nice! They are very smart!',3,'',10,1),(1443,'2020-01-23 11:54:31.927150','AIe9_BEAgUIalCkcXZnurOUpP4uAvJDGlPFYPxcDHcROoqTcBB0SQKzRjsPtIPF1HkWtEYlLiRMIGKz8oZZDRhOnpKH0xzHDagC8XVwYHh3TLVSryv8GSa4','Sharla Enlow - Staff was great. Very clean and up to date. Will go again if I need to.',3,'',10,1),(1444,'2020-01-23 11:54:31.985149','AIe9_BH3gZxYpIxBZcqAOO5HuBVkFz4P-ILRnu4vkhX24c-NivFmh_uf2q4-OnVP0JdSDn_cof0Ipeu1BgmvcUiCgOvYUIdFmKIL4pfOlbz_gcGV0CfWBXI','Jazmin Diaz - I am impressed of the oustanding service I received here! I took my mother here and she received very much care and friendliness! The place is very clean and organized, front staff were ',3,'',10,1),(1445,'2020-01-23 11:54:32.034528','AIe9_BHR7p0hPy1flx1br0TYdEUBolfLw-rgJj4RqaY7Za4T7RLemj5H_lVPZnu0kzOJP6SVmbWVhL7syNx4oXqHUEyRnuIW-Diuudj0CAOU9NJPLs8D2Q0','Pedro Vargas Jr. - The E.R. Service was amazing . Front customer service Samantha was nothing short of exceptional . Staff nurses and Dr were super friendly and very helpful.',3,'',10,1),(1446,'2020-01-23 11:54:32.083502','AIe9_BGhYIk2KhOdF8fekWDvq8JUqZ4UA5qTSqZPvDg7iU8jTakTSZtSZm3Rk1g1cahLmd8K2IMilcpUXyJLNtivL-2_zMKupfqJfC_Rh38Yo5oHPns7Ha8','Bernie Vargas - The staff was very welcoming and very professional. Samantha, Nicole G, Meredith S, Bryan D, Ricardo and Dr. Yusuf gave EXCEPTIONAL SERVICE!!!',3,'',10,1),(1447,'2020-01-23 11:54:32.182075','AIe9_BGvUJd9etQojwpjZIMsiFnejSqUWlFmvjf-mKmgs7Y9moY9CkJdNRdcnZ2NtQTAX2pT0vIJiZdfe6mJlwQQaaFMqQhWJGCMSBMD3Q9dzWTlvmHomDI','Alexzandra Herrera - Amazing & fast service! The staff for tonight’s visit was super nice & caring! I was actually referred here by a friend who’s been here before & I can honestly say I’m impressed w',3,'',10,1),(1448,'2020-01-23 11:54:32.280415','AIe9_BGTHfLB7ZAtvlQmidaL-PvDP3fTuoF6V_EZUz2zKizp27rq5olYO7rFKrtSAOkvgBhYzwu0PAkQigLqiXs55NAiHIdec6hNAgCXQknMkyJVeenUFpQ','Thomas Perley - None',3,'',10,1),(1449,'2020-01-23 11:54:32.378772','AIe9_BHkHJRvhG8n5BjqdcMSKR_Fr51wbi0IW7FZRZfvB8yBGqdL815woJLrncvKn639MbOYbR31x-HtoqDL4zxPaHPGzvt8HTNplOeHgs_Bb3BAkDwWP94','Jackie Chavez - None',3,'',10,1),(1450,'2020-01-23 11:54:32.452586','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wMNujh7CfhpVYBCusHoOb7Hd_gDtFwYjs5u7c4xFrlrq-MHDYEyb7CDR7kJ7IJQat487Wkuve0iOkQUXvLAv96e3zkI','Lucero Carreon - Brought my mother in Saturday for stomach and back pains. Everyone we encountered was extremely nice and helpful. My mother only speaks Spanish, so the fact that everyone knew a littl',3,'',10,1),(1451,'2020-01-23 11:54:32.551037','AIe9_BFMK6FB7k24ANEBV5CospTTFlXqqFS60f2cz-jUYHqxlYZ4Zy7an2GR0sjXEnPdlgmwmcPnH1fmg2gw254K1dae54XnGtD3D-Mf8J5mT_IyPCP4nUg','Edwin Langley - Quick service, very nice, very helpful. Would definitely come back! But hope I don’t have to. Make sure you see Nedi as the provider, Breanna at the desk, and Vanessa as your tech.',3,'',10,1),(1452,'2020-01-23 11:54:32.862410','AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SDfk5sLF5pEHmtR9iUqLd0WmVb3nZmqsBhAv4t_BNCctnsosN2g64Z0LGl_AWKNRIACSAMxJAhqUOFx-23SJoMEu_ZbQ','Devan perez - Dr leavitt \nRita\nJonathan\nRommel\nAdolfo your all awesome I felt welcome and left feeling better thank you!',3,'',10,1),(1453,'2020-01-23 11:54:32.960719','AIe9_BHR7p0hPy1flx1br0TYdEUBxmm_HM1EGIHKLD_pnRH-Um8cwC6mHhbsqxFcbGxAmYHUodenli6ZUYuO1CMBtyIf8vJSoiV4hVybLOcNL5-XRXXC0gU','Hannah Carrillo - I was taken back very quickly and the staff was so helpful. Itza, Dr. Vakey, Rebeca, nurse Jacob and Laura did a great job. I will definitely come back here if I ever need to again.',3,'',10,1),(1454,'2020-01-23 11:54:33.009945','AIe9_BFmRFRFwJGRfUDOW8jG3rXnUUKezTYrGFp-tzZ0EbSqD0uGZtt3SnjHugXejLvezqcZZ3nQtZc2ninNg9Rth5YyFIaWp4iM7BIhlN4k0E9rqfi7l-E','Jacob Johnson - Itza was very attentive when we first arrived. Jacob and Rebeca provided good nursing care and were very helpful in answering questions and putting us at ease throughout our visit.',3,'',10,1),(1455,'2020-01-23 11:54:33.059110','AIe9_BFmRFRFwJGRfUDOW8jG3rXnnmtd47UYh24AFJh2EjLgNR0QnXB17DDBYCDPN7vNJFkQV7k7H7_l3dM5jt50Q4Fa69XGC03CWDxgHQt4NdbvG93LXqk','Alaina Reyes - Itza was so nice and attentive! Jacob and Rebeca were very quick with administering pain medication and were fun to talk to. Would definitely go again!',3,'',10,1),(1456,'2020-01-23 11:54:33.157759','AIe9_BEAgUIalCkcXZnurOUpP4uAtDzaK7m2H_SchpHaRv8DDZ0U9LqfvrQvoOPY9xQH-u4ORZoryMUxEtfbr5cgNvjZWtFtasgONmomOtRAxJMlUJ5PhvU','Deann Clark - None',3,'',10,1),(1457,'2020-01-23 11:54:33.256104','AIe9_BFL0OZrFaHgoJtqifT1GHrI_sEaFqWhVmAd22qK6V0amL_u6cr9pygg5evNXm9YBN4ug54D1EOPpc3QWa_3dhn0Dx3wAK7amGQGsL8CMXYcO49V7ko','Sara Reiss - Vanessa was very welcoming and efficient. I got treated quickly and Nedi was very helpful',3,'',10,1),(1458,'2020-01-23 11:54:33.354045','AIe9_BFLWlqwz3qGBnCfbAsLD0lVTENHAtThkizNwVrEFVTQu7u7eej3gdwRjyUtlNmr2BOvM1KOHvCLNhC1SlwWPeWNVhliyGBoS3r712H-lYoGzuHJv9E','Christopher Phillips - Nurse Lucas was great,',3,'',10,1),(1459,'2020-01-23 11:54:33.404079','AIe9_BGErQpX2pRNZrXBy5NOsH0eVUGQRxPH3dy3OOipa_2XgV-XLiYBlJV9nZ4N3sk9FcB7gZuorOmhYOcH3iiaSLUFbeLsA7t07jCciHwui4_oB7rguUU','Buffie Holcomb - I had a really good visit. The staff here was kind and greeted you with a smile. They were genuinely concerned about your issue. I highly recommend.',3,'',10,1),(1460,'2020-01-23 11:54:33.452945','AIe9_BGvUJd9etQojwpjZIMsiFne4vR5eB9m4IAGVDC1yDx_dXQ-POkaMo57-ifCL-scho-wkGhCVvJMGl6GxRiQiaKBPiUMcP_0SZZrWSL3TOzgFnUHTtQ','Heather Quigley - I took my son for a possible ear infection and was in and out in 35 minutes. Aileen at the front desk was efficient and quick with the paperwork. Chris and Andrew got him triaged wit',3,'',10,1),(1461,'2020-01-23 11:54:33.502179','AIe9_BGeWygkZoY6qknDFQmPvA4c_0nIcbjwEkKzaYRTSX7XT-xY1tN4H2tmcmBnjvvgIWUJUMP0DKky-MBL7ziSWYbtjFxS565JEG2ZNDFw_QL2qy-nvMw','Madhurima Gupta - None',3,'',10,1),(1462,'2020-01-23 11:54:33.551463','AIe9_BFL0OZrFaHgoJtqifT1GHrIScfxJt3EvuSo74XXKSK88yNowEYVU9SWRB4uTnokAtHir0F41y7Wo0FLqF24OBy5gehrvXK8kNG_dFxjZiLK4Mj4wAM','Linda Walker - My daughter and I had to visit signature care while visiting Houston, for the MLK Day Parade. Everyone there was kind, Professional, caring and concerned. From the time we entered th',3,'',10,1),(1463,'2020-01-23 11:54:33.611724','AIe9_BEV1VP1woYvuPRixSBHlWg4LdjSF6qO5E67LOQcDdJZpXDKvHcovW9VnbFRQ4tvvdiLBWLZdCfQoUmy5WF7CJh8AqNG4igfMsWGwG-i7kycFczfnOA','charles beasley - The staff was very friendly and Lucas was very helpful',3,'',10,1),(1464,'2020-01-23 11:54:33.660840','AIe9_BHZM2k_MpOhRgkb8w5Bn_urcKr-gJRY3oaKUjc5xJ4OZ9AyMO0PIGmyeg3SlGqEopK1Vk-UllEPHrFiQAO6sVv5d9mOeJksgR1wOEAQPLG52ZlcN6w','Jack Right - None',3,'',10,1),(1465,'2020-01-23 11:54:33.709984','AIe9_BHR7p0hPy1flx1br0TYdEUBC9noJIkNvEhsR8GjSUIg1M9SIUmUuNf5PsVHN4zKsnbETvQNZ-eA1wQ4QNRj5Hd3v0P9U-15wXTNvMP1spyfrQjLx08','Brigitte Velez - Came here because my mom had a really bad allergy reaction and Tanisha was super friendly and helpful! Translated for my mom and was so friendly! Constantly checked up on us! \nDr. Zhe',3,'',10,1),(1466,'2020-01-23 11:54:33.759197','AIe9_BFDvtvCY6mNmVUeGBiBb7S5a2U5t4qms6LFokb_mPCbHk86MB_cjYnNbIQOqD0qXXNY9QG8uthcCNnYuH_lhNSJLhosI16OhYBpNY4HQ8fiLKJyhww','Brooke Smith - We come here anytime our regular dr or walk in clinic is closed and they’re very good.',3,'',10,1),(1467,'2020-01-23 11:54:33.808661','AIe9_BFu3rdicGrPrzdyu4PDXmqMdaxJp0PaYMR74uE45YPFbCR9ZW23DDVMjEr-zusvEMRccfsmI5bULNaY-ro5eYsauEIz9acTJUrRv9wHuCCzYrTDrq4','KA Hall - After struggling w/severe colitis attack for several weeks, reluctantly realized had to go to the hospital. Aisha, our mobile IV nurse with Luxe IV, recommended Signature Care Emergency Cent',3,'',10,1),(1468,'2020-01-23 11:54:33.906858','AIe9_BGlY-BaOO_aND3JZqxJBS1Rg6SXHz5aYROhlfePcmqbokRm30ic3HKGGxbLJqoq7Xngi8C2uvs4yvp7TT1AqpzYjAJarfcm1j7auHHjTpr0Bd-qmNU','Jasmine Orduno - None',3,'',10,1),(1469,'2020-01-23 11:54:33.956024','AIe9_BEAgUIalCkcXZnurOUpP4uA5bWjydtXBvTNo2bU7T8KX5jfaz9Nb4TKQO97bppy19NrenRatDAOVIrraVyt1ZneFOfAsjPhaf92to7MFOpirbUiMeU','Tony Davis - At least 5 people showed up in the room to check out my wife. Very thorough and professional. Highly recommend this facility.',3,'',10,1),(1470,'2020-01-23 11:54:34.005396','AIe9_BFqh_zr355jzGaEpH7666zc9OHSZK_Wwcf84YJGmRFfR9RFJVHvWU7jWp4z9nnFQd3S4j5ZyPelBM7Ldl0yx4sVM4JBPiMTjEKEqMHhWg4YrW_4Rsc','David Delgado - Excellent staff :) Kristina, John, Hanh, Genesis ans Doctor Jaber were all very nice to my brother and very informative',3,'',10,1),(1471,'2020-01-23 11:54:34.054477','AIe9_BFhqAtkXvUqdYNeMuBBGjaAx64zW321r6mJ7PMwOOYnXveXj-dZkSyuFSnBK340w4Uf7-UkGSZCFIfq6H93DRDiIeDLmbPvS4ySLCckKgpI65hxqNE','Joseph Caballero - Kristina, John, hang, genesis and Dr.Jaber were all amazing. Would highly recommended.',3,'',10,1),(1472,'2020-01-23 11:54:34.103624','AIe9_BF8X4EpR_fF6mwcYdso9awgG2cu_iWa2cWQODnd7XZAnI-907qAcoVGSAsmVRrFec9aDXjzIGP2cCZyzCrsMEV7-jhyIk7IFSivf5551jZapISs-pM','Cara Donahue - This group of medical staff was just Amazing! Hands down! I had no wait time, Dr. Hemerka and nurse Kat were just simply caring and attentive to me. They had me feeling better in no tim',3,'',10,1),(1473,'2020-01-23 11:54:34.152959','AIe9_BGZuRKHeO1iYrcf4B001kE2diCXj9nKwPzU7LuxddGKE8TmYaNM7LEGtCpm8Xmz8_cd0wtD91xp1jZC1B4Ru7klL6lm2pef4jge0e_4aSF9PQU2-BE','Jonathan Hoar - The staff was very friendly the entire visit. The nurses (specifically Jacob and Remington) were knowledgeable and explained everything that was going on. Dr. Vakey was great! He broke',3,'',10,1),(1474,'2020-01-23 11:54:34.202171','AIe9_BFhqAtkXvUqdYNeMuBBGjaAIdpiqHVAvRKpoSB91qGCyQrXiKGUAkhQa-OnHign3eXPaCnMYmf8N2FCqsy5cMPtSdJHzpD56WJwzkqzffp4pCKSH-k','Jaymes Roberts - Great experience. They are always super friendly and best of all fast!!!!',3,'',10,1),(1475,'2020-01-23 11:54:34.251338','AIe9_BHkHJRvhG8n5BjqdcMSKR_FLa3KaXNcFINVTPBcwXPiktJ4zkQ6tmhEYFxUh8BwqKhYD7jxZ91cAc8-jCN2ZRLLuskfy59L8w5CQ__2_9CYrXaK2CU','BlazingHype - None',3,'',10,1),(1476,'2020-01-23 11:54:34.349398','AIe9_BGTHfLB7ZAtvlQmidaL-PvDr7Xu10mGcKygXnWUlyrnQXYUWf04Y46TpL9bwtdb0R0vYwHSZUTA9Vvc5HmVlMxXhCcP6T41evxw2vtDAyCXQqT8VzM','Allina McDaniel - Awesome and quick! Dr. Remington and Jacob were great. The front desk Kendra was so helpful as well! Highly recommend.',3,'',10,1),(1477,'2020-01-23 11:54:34.448263','AIe9_BGZuRKHeO1iYrcf4B001kE27ZHgDUrytflkNvc4D7KurvnhWCf7KlaG-lwvu3BtvmoT7tx2VwVMhBMg8RwIc--w-is1i5if5d454pAwGrK9usQKCh8','Brandi Reed - Kendra did awesome! She really hooked it up!!!',3,'',10,1),(1478,'2020-01-23 11:54:34.546655','AIe9_BGZuRKHeO1iYrcf4B001kE2tNPRlmcUla5P1yH3OOgTIBDKWWid97V21HLx01pyi0Q2XEj0Cd7T4FKlTkagVZkDyYgKE4ZxC2rcgHw0FErICeVpPcs','Kymberly Sredanovich - The care was fast and effective. The receptionist made getting registered easy and with kindness. I hurt my back and they knew I was having trouble moving. They assisted me with',3,'',10,1),(1479,'2020-01-23 11:54:34.644895','AIe9_BGhYIk2KhOdF8fekWDvq8JU1kBqlyJ4jAsGJxFnlx1F0EHXaiQ2KeUQDZt-nd7_KkZLAO5xWcRn0XQZb2EwuDwxcPXN2Z34ezBhavDS0oZLpgSiG0Y','ashley williamson - Best experience ever! Love, love, love the staff! Dr. Goodman, Adam, Andrew, Chris, and Aileen were all perfect. I couldnt have asked for better care.',3,'',10,1),(1480,'2020-01-23 11:54:34.694257','AIe9_BGvUJd9etQojwpjZIMsiFne_PS_QRw0fI_XalL-XsP9qU3nnfH4t29H3KvQKu1ak0lMqjESI0t9SUQmytZHgpceT2bJX-4Rs2ErtPq0nXog6Le4nNw','Valerie Rangel - I came into to SignatureCare and was immediately welcomed by Kendra, who helped put my nerves at ease with her positive and reassuring personality. I was helped by nurses Jacob and Re',3,'',10,1),(1481,'2020-01-23 11:54:34.743454','AIe9_BFu3rdicGrPrzdyu4PDXmqMGve1gRl5VF4OydMZ295htCvbPcp02uowuasi1x4MoC2uczFbnRHVfiPpaC1j7RwWoStox3FZcKo0buo3bprnNzgNYGo','Saher Nabulsy - Fade fast and prompt service wife was in a car accident and they took the other vehicles car insurance and did not charge me!',3,'',10,1),(1482,'2020-01-23 11:54:34.792544','AIe9_BGlY-BaOO_aND3JZqxJBS1RIrSEG9Yw5h_GlXRzH8zomNVOvL7LLNiycC85W1mcbFZmPxNSerlIq48NBhmPud3uncPm2xs5GUmeQXksjGmZg06s6JI','Leslie Bustos - Loved the fast service compared to a regular hospital. I was in a car accident was able to bill the person at fault didn\'t have to pay anything. All of the staff was great. Dr. Jaber e',3,'',10,1),(1483,'2020-01-23 11:54:34.842028','AIe9_BHkHJRvhG8n5BjqdcMSKR_FZTjFDT8hcdcy1Ft_5HZ0n2fBu-pbc-5EyA31fO8SuNQx8gp3akxO-4rTS7OFuPvoZA7bI4ehzb75hB3FxhIibYFhNiY','Jamaya & Rannisha - None',3,'',10,1),(1484,'2020-01-23 11:54:34.891172','AIe9_BEAgUIalCkcXZnurOUpP4uA_pPG45HKLX4pusCVodhFC7MuCpzqsjKyqvLMwrXmfVrAIjmMel2fFXC1RfrWq4HEzPDhRrKmrDityWjOgV7zuey5ElM','Janet Troxell - Great to have such a great place close to home. Full service very friendly staff.',3,'',10,1),(1485,'2020-01-23 11:54:35.087892','AIe9_BHVBnWjBJvk55vq2QEm0wl-IuukaDqVqXOtKYh2w3q1yiPqQh_29SK_OY4Xl34f5hu6YJlx0Jeu5f3heSTAQwvEZn98Cv9WHjtUI5vNSZQ-gex0lCA','Amanda Hicks - None',3,'',10,1),(1486,'2020-01-23 11:55:17.445961','9890','We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like ',3,'',9,1),(1487,'2020-01-23 11:55:17.500061','9936','Thank you for taking time out of your day to review your experience with enTrust Immediate Care. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back o',3,'',9,1),(1488,'2020-01-23 11:55:17.560611','9937','Our goal at enTrust Immediate Care is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1489,'2020-01-23 11:55:17.620752','9891','Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare',3,'',9,1),(1490,'2020-01-23 11:55:17.681283','9912','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1491,'2020-01-23 11:55:17.741534','9905','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they',3,'',9,1),(1492,'2020-01-23 11:55:17.839540','9906','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1493,'2020-01-23 11:55:17.938502','9924','At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope y',3,'',9,1),(1494,'2020-01-23 11:55:17.998987','9925','We appreciate your great rating, Madhurima!',3,'',9,1),(1495,'2020-01-23 11:55:18.097619','9915','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.',3,'',9,1),(1496,'2020-01-23 11:55:18.245167','9916','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1497,'2020-01-23 11:55:18.305476','9917','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1498,'2020-01-23 11:55:18.365716','9918','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1499,'2020-01-23 11:55:18.426186','9930','We appreciate your great rating, Deann!',3,'',9,1),(1500,'2020-01-23 11:55:18.486508','9931','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1501,'2020-01-23 11:55:18.546915','9932','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1502,'2020-01-23 11:55:18.607195','9933','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1503,'2020-01-23 11:55:18.667526','9898','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1504,'2020-01-23 11:55:18.727955','9899','We appreciate your great rating, Thomas!',3,'',9,1),(1505,'2020-01-23 11:55:18.806456','9900','Thank you so much for giving us five stars, Jackie!',3,'',9,1),(1506,'2020-01-23 11:55:18.919967','9901','Thank you Jack, for your great rating!',3,'',9,1),(1507,'2020-01-23 11:55:18.993822','9902','At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.',3,'',9,1),(1508,'2020-01-23 11:55:19.067841','9903','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your wife is feeling better.',3,'',9,1),(1509,'2020-01-23 11:55:19.123946','9904','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1510,'2020-01-23 11:55:19.173301','9892','Thank you so much for giving us five stars, Jasmine!',3,'',9,1),(1511,'2020-01-23 11:55:19.370006','9893','We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your brother is feeling well.',3,'',9,1),(1512,'2020-01-23 11:55:19.419295','9894','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1513,'2020-01-23 11:55:19.468541','9895','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1514,'2020-01-23 11:55:19.517671','9896','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1515,'2020-01-23 11:55:19.566937','9897','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1516,'2020-01-23 11:55:19.616114','9926','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1517,'2020-01-23 11:55:19.665521','9927','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1518,'2020-01-23 11:55:19.714525','9928','We appreciate your great rating, Amanda!',3,'',9,1),(1519,'2020-01-23 11:55:19.763767','9919','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(1520,'2020-01-23 11:55:19.813159','9920','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1521,'2020-01-23 11:55:19.862362','9921','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1522,'2020-01-23 11:55:20.009668','9922','We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the n',3,'',9,1),(1523,'2020-01-23 11:55:20.157665','9929','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.',3,'',9,1),(1524,'2020-01-23 11:55:20.206919','9934','Thank you so much for giving us five stars!',3,'',9,1),(1525,'2020-01-23 11:55:20.438862','9935','Thank you Jamaya, for your great rating!',3,'',9,1),(1526,'2020-01-23 11:55:20.586513','9914','Thank you Bill, for your great rating!',3,'',9,1),(1527,'2020-01-23 11:55:20.635537','9913','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to',3,'',9,1),(1528,'2020-01-23 11:55:20.684708','9938','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(1529,'2020-01-23 11:55:20.733966','9788','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!',3,'',9,1),(1530,'2020-01-23 11:55:20.783240','9790','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing enTrust Immediate Care.',3,'',9,1),(1531,'2020-01-23 11:55:20.832454','9791','Thank you Justin, for your great rating!',3,'',9,1),(1532,'2020-01-23 11:55:20.881700','9792','We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing enTrust Immediate Care and ',3,'',9,1),(1533,'2020-01-23 11:55:20.931052','9793','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing enTrust Immediate Care.',3,'',9,1),(1534,'2020-01-23 11:55:20.980193','9643','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1535,'2020-01-23 11:55:21.078667','9644','Thank you so much for your nice review, Ivar. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patie',3,'',9,1),(1536,'2020-01-23 11:55:21.177134','9645','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1537,'2020-01-23 11:55:21.226301','9646','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1538,'2020-01-23 11:55:21.275529','9647','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(1539,'2020-01-23 11:55:21.324475','9648','It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing Sig',3,'',9,1),(1540,'2020-01-23 11:55:21.472007','9649','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1541,'2020-01-23 11:55:21.669581','9650','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(1542,'2020-01-23 11:55:21.767757','9651','We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.',3,'',9,1),(1543,'2020-01-23 11:55:21.816901','9652','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1544,'2020-01-23 11:55:21.866221','9653','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1545,'2020-01-23 11:55:21.915322','9654','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and dia',3,'',9,1),(1546,'2020-01-23 11:55:21.964548','9700','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.',3,'',9,1),(1547,'2020-01-23 11:55:22.013853','9701','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(1548,'2020-01-23 11:55:22.063154','9702','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(1549,'2020-01-23 11:55:22.161691','9703','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(1550,'2020-01-23 11:55:22.259995','9704','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1551,'2020-01-23 11:55:22.309217','9819','Thank you Bill, for your great rating!',3,'',9,1),(1552,'2020-01-23 11:55:22.358402','9820','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(1553,'2020-01-23 11:55:22.407612','9821','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1554,'2020-01-23 11:55:22.456766','9822','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare',3,'',9,1),(1555,'2020-01-23 11:55:22.506147','9769','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1556,'2020-01-23 11:55:22.555433','9770','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1557,'2020-01-23 11:55:22.653781','9771','Thank you so much for giving us five stars, Melissa!',3,'',9,1),(1558,'2020-01-23 11:55:22.703109','9679','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hos',3,'',9,1),(1559,'2020-01-23 11:55:22.801512','9681','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your wife and daughter. Thank you for choosing SignatureCare.',3,'',9,1),(1560,'2020-01-23 11:55:22.899828','9682','Thank you for trusting us with the care of your stepson. We appreciate the great feedback and are very glad to hear that our team took such good care of him.',3,'',9,1),(1561,'2020-01-23 11:55:22.949149','9683','At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when kids get sick, but we are here to help. Thank you for your review and we hope your nep',3,'',9,1),(1562,'2020-01-23 11:55:22.998272','9684','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(1563,'2020-01-23 11:55:23.047366','9685','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1564,'2020-01-23 11:55:23.096634','9686','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(1565,'2020-01-23 11:55:23.145552','9687','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1566,'2020-01-23 11:55:23.244498','9688','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1567,'2020-01-23 11:55:23.342901','9689','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(1568,'2020-01-23 11:55:47.989541','9837','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing enTrust Ur',3,'',9,1),(1569,'2020-01-23 11:55:48.093354','9680','Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.',3,'',9,1),(1570,'2020-01-23 11:55:48.142472','9690','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(1571,'2020-01-23 11:55:48.191965','9841','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1572,'2020-01-23 11:55:48.290208','9842','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1573,'2020-01-23 11:55:48.388561','9761','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(1574,'2020-01-23 11:55:48.438054','9762','We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank',3,'',9,1),(1575,'2020-01-23 11:55:48.535864','9738','At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.',3,'',9,1),(1576,'2020-01-23 11:55:48.585561','9739','Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency ne',3,'',9,1),(1577,'2020-01-23 11:55:48.635358','9740','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.',3,'',9,1),(1578,'2020-01-23 11:55:48.684701','9741','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better! Hope your friend is feeling better.',3,'',9,1),(1579,'2020-01-23 11:55:48.930463','9743','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1580,'2020-01-23 11:55:49.029066','9742','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1581,'2020-01-23 11:55:49.078304','9744','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.',3,'',9,1),(1582,'2020-01-23 11:55:49.127527','9745','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1583,'2020-01-23 11:55:49.187850','9746','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.',3,'',9,1),(1584,'2020-01-23 11:55:49.237140','9747','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!',3,'',9,1),(1585,'2020-01-23 11:55:49.286366','9748','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing Sig',3,'',9,1),(1586,'2020-01-23 11:55:49.384855','9749','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1587,'2020-01-23 11:55:49.458647','9750','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(1588,'2020-01-23 11:55:49.508101','9775','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(1589,'2020-01-23 11:55:49.605987','9776','Thank you so much for giving us five stars, Bill!',3,'',9,1),(1590,'2020-01-23 11:55:49.655732','9777','Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.',3,'',9,1),(1591,'2020-01-23 11:55:49.705042','9778','We want everyone who visits us to feel like family. It\'s great to hear that our team made you both feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for ',3,'',9,1),(1592,'2020-01-23 11:55:49.754154','9779','Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency ne',3,'',9,1),(1593,'2020-01-23 11:55:49.803429','9780','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!',3,'',9,1),(1594,'2020-01-23 11:55:49.902015','9781','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1595,'2020-01-23 11:55:49.951293','9782','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1596,'2020-01-23 11:55:50.049728','9783','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1597,'2020-01-23 11:55:50.148323','9784','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1598,'2020-01-23 11:55:50.246807','9800','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1599,'2020-01-23 11:55:50.307010','9801','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1600,'2020-01-23 11:55:50.356331','9802','Thank you so much for your great rating, Keeley!',3,'',9,1),(1601,'2020-01-23 11:55:50.454851','9803','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureC',3,'',9,1),(1602,'2020-01-23 11:55:50.553366','9804','We appreciate your great rating, Mahoney!',3,'',9,1),(1603,'2020-01-23 11:55:50.602743','9805','At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!',3,'',9,1),(1604,'2020-01-23 11:55:50.701196','9806','Thank you so much for giving us five stars, Casandra!',3,'',9,1),(1605,'2020-01-23 11:55:50.799534','9807','Thank you Justin, for your great rating!',3,'',9,1),(1606,'2020-01-23 11:55:50.898135','9808','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!',3,'',9,1),(1607,'2020-01-23 11:55:50.958291','9828','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.',3,'',9,1),(1608,'2020-01-23 11:55:51.018716','9710','Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!',3,'',9,1),(1609,'2020-01-23 11:55:51.117481','9711','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical need',3,'',9,1),(1610,'2020-01-23 11:55:51.215714','9712','We appreciate your great rating, Garland!',3,'',9,1),(1611,'2020-01-23 11:55:51.276240','9713','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.',3,'',9,1),(1612,'2020-01-23 11:55:51.336494','9714','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary exper',3,'',9,1),(1613,'2020-01-23 11:55:51.396957','9715','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1614,'2020-01-23 11:55:51.457378','9716','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!',3,'',9,1),(1615,'2020-01-23 11:55:51.555828','9717','(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal',3,'',9,1),(1616,'2020-01-23 11:55:51.654237','9718','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.',3,'',9,1),(1617,'2020-01-23 11:55:51.752237','9719','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and dia',3,'',9,1),(1618,'2020-01-23 11:55:51.802001','9720','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing Sig',3,'',9,1),(1619,'2020-01-23 11:55:51.862394','9721','Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.',3,'',9,1),(1620,'2020-01-23 11:55:51.922716','9722','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with',3,'',9,1),(1621,'2020-01-23 11:55:52.005448','9723','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We',3,'',9,1),(1622,'2020-01-23 11:55:52.077380','9665','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your brother. Thank you for choosing SignatureCare.',3,'',9,1),(1623,'2020-01-23 11:55:52.173548','9664','Thank you so much for your great rating, Daniel!',3,'',9,1),(1624,'2020-01-23 11:55:52.439271','9666','We appreciate your great rating, Eduardo!',3,'',9,1),(1625,'2020-01-23 11:55:52.655085','9667','At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope y',3,'',9,1),(1626,'2020-01-23 11:55:52.753601','9668','Thank you so much for giving us five stars, Ava!',3,'',9,1),(1627,'2020-01-23 11:55:52.901198','9669','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!',3,'',9,1),(1628,'2020-01-23 11:55:52.999460','9670','We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.',3,'',9,1),(1629,'2020-01-23 11:55:53.048632','9671','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!',3,'',9,1),(1630,'2020-01-23 11:55:53.097956','9672','Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare',3,'',9,1),(1631,'2020-01-23 11:55:53.147321','9673','Thank you for your feedback. We appreciate you choosing SignatureCare!',3,'',9,1),(1632,'2020-01-23 11:55:53.294887','9674','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare! Hope your husband is feeling better.',3,'',9,1),(1633,'2020-01-23 11:55:53.393445','9675','Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.',3,'',9,1),(1634,'2020-01-23 12:10:33.775997','AIe9_BGvUJd9etQojwpjZIMsiFneCKlKToiMYZBG1hkpv-choNOC4SKEDUI0nyxBRMEVMgQMyyP-6msIOEBOE4v0Sgn_P_J2lv8-1Sp-tD1k6eJrJADOoo4','Jonathan Holt - This place was amazing. I really can’t imagine it’s a part of our healthcare system because it’s so much better than a hospital emergency department.. if you ever need care just go he',3,'',10,1),(1635,'2020-01-23 12:10:33.834446','AIe9_BFMK6FB7k24ANEBV5CospTTMhO8cUtsfQUKjxq9QH-P3EjwhGfmxnMWCzEsmwtbOX7j0I2XVR6FCxdVQbnNHwVB4d8WaRkTbc5hbjvy0k-tCuMLApg','Taylor Bass - I had a shoulder injury that was really painful. The staff onsite (Tatiana, Nicole, Chris, Dr Patel) were really knowledgeable and helpful. I was in and out within an hour.',3,'',10,1),(1636,'2020-01-23 12:10:33.883645','AIe9_BEHZ7lh7y1sP-UInhkpmlIpPJ12wbVJKx2EliDIWNXeMlqw-i69TxFuSA8r5c2_smgDHBgMablyeZdlxpaNTCE0WxkDtAR4GKF39MHFPt2lN5IIK-I','Christopher Smith - Visited late night for an injury. Really impressed with the staff. Tatiana was swift at the front desk. Nicole and Chris were great nurses, even the techs were fantastic. Dr Patel',3,'',10,1),(1637,'2020-02-02 03:58:02.081675','AIe9_BFLWlqwz3qGBnCfbAsLD0lV3Vjz5k0EvUTB-VT9qyAKB9yZI2YQnGp_F_IeXHpZjKbxzUFp_8P9Axd0ggSewVJ__2NLpOI4H3TpAWHkUAyUiIC7VYQ','Jaimauria Halyard - Everyone was kind and attentive. They kept me informed about what was happening and did their best to make me feel comfortable. There was no wait time, and I was seen almost as soo',3,'',10,1),(1638,'2020-02-04 05:39:06.069968','AIe9_BGvUJd9etQojwpjZIMsiFnenKxhIv2tbjqvQ75d7qO6Vrt9Q0RydpAxNYZrqfj8ir4YGvbE-NZV3TIMKCIgl1VXorY3hwKR39rIrH_907dwhU2n2vo','Cody Caraway - Thanks to Sita, Alexis, Allison and Dr Herbert. Very professional and got my pain level down in a timely manner.',3,'',10,1),(1639,'2020-02-04 05:39:06.126610','AIe9_BGvUJd9etQojwpjZIMsiFneXPP3K039O5vmtrJM1OT8GbB1yOtrQgreK8N0ne9Z6zoS4ZgwryNoVUMhcUKheFGiQpS36O9BbLsTpPzT6aPjSn-7-Hk','Melody Santana - Dr. Edwards\nRegistration: Carly\nNurse: Sarra\nRadiology: Tino\nEr tech: Olivia \n\nThanks for everything 💋',3,'',10,1),(1640,'2020-02-04 06:36:40.148634','2850309161695582935','en-Trust',3,'',8,1),(1641,'2020-02-04 06:37:04.688738','2850309161695582935','en-Trust',3,'',8,1),(1642,'2020-02-04 06:42:26.246677','8916258876770296726','Memorial Drive',3,'',8,1),(1643,'2020-02-04 06:42:26.301938','2850309161695582935','en-Trust',3,'',8,1),(1644,'2020-02-09 12:15:51.639896','1','Shahnewaz Pabon - Westchase',1,'[{\"added\": {}}]',12,1),(1645,'2020-02-09 12:35:10.008749','1','Shahnewaz Pabon - Westchase',2,'[{\"changed\": {\"fields\": [\"Nick names\"]}}]',12,1),(1646,'2020-02-10 05:39:20.625346','AIe9_BFL0OZrFaHgoJtqifT1GHrIhFOufAW_mjQkGauzvveev9o5pfxq1l32dXCXAmtomyZJAJ2j-eHieg1jJ0MMi9lOZy7tAj9cMJyfzAngDg_WSFhsfpk','Thomas Hopkins - We were taken care of promptly, the entire staff displayed excellent manners and we were promptly moved to a very clean room where we were seen by Dr. Lim. So far, the experience has ',3,'',10,1),(1647,'2020-02-10 05:39:20.737837','AIe9_BExcxslmE1rr7n5jMcadSKe-xz62LrVr79b5-z55VakiSClGA1O5ze9iP5yL20ntUa34qJJWaw0l5dDjn05utsSNJ9HAYeHTFTUkj1Q1tm2YBRPF48','Clarissa Lara - Definitely one of the better ER experiences I’ve had. Almost no wait time, necessary pain meds were given almost right away, tests and results were very quick. We had Dr. Thomas, nurse',3,'',10,1),(1648,'2020-02-10 07:12:20.727355','2','Kristina - Westchase',1,'[{\"added\": {}}]',12,1),(1649,'2020-02-13 08:10:57.853658','2','Kristina - Westchase',3,'',12,1),(1650,'2020-02-13 08:10:57.995571','1','Shahnewaz Pabon - Westchase',3,'',12,1),(1651,'2020-02-20 10:53:51.847000','17394740196501090048','Mission Bend',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(1652,'2020-02-20 13:27:46.177007','348','Wiltz,Tanishia Trisandra - Copperfield',2,'[{\"changed\": {\"fields\": [\"Nick names\"]}}]',12,1),(1653,'2020-02-20 13:31:31.680011','348','Wiltz,Tanishia Trisandra - Copperfield',2,'[{\"changed\": {\"fields\": [\"Nick names\"]}}]',12,1),(1654,'2020-02-20 13:32:00.218468','348','Wiltz,Tanishia Trisandra - Copperfield',2,'[]',12,1),(1655,'2020-02-23 08:42:18.098890','57','no_comment - Thank you for the great review%s! We appreciate your positive feedback about SignatureCare ER. We hope you are feeling better.',2,'[{\"changed\": {\"fields\": [\"Reply\"]}}]',11,1),(1656,'2020-02-25 06:12:07.972050','AIe9_BEAgUIalCkcXZnurOUpP4uAKdrzZ8so6uFtyVyMpsKUgNFDK-61Qy1hgudl83KVIci6Y1DYTW_RLeP2I5bsZRWgU9koF_Ki0MezZSLfGdm3Tpk5dX8','Shaunda Hill - I was thoroughly impressed with the fast service from this establishment I checked in with Aileen and filled out paperwork and was seen all within 45 mins. I was having some sort of all',3,'',10,1),(1657,'2020-02-25 06:12:08.133236','AIe9_BF8X4EpR_fF6mwcYdso9awgxePsECTftQ7L57SulByeCw9Ydq79Ucvdl2LYNUrYFXKox8zw7C0MPLvbfrPO2ypL8Q_EIuYMITTiKYVbg1wfBNpSZ3A','Jasmin Bobs - Wow, I really loved the people at this location! Super nice and very convenient, clean and comfortable. Highly recommend. Shawn and Dr. Ding are great!',3,'',10,1),(1658,'2020-02-25 06:12:08.271292','AIe9_BGIy_plKfaZrItPyyQZNLvsM-4yDjeTZu3Dk61RL_ROslCcNnOC3lJmBrmEwe-j8AMYajRX87u1eRU7IWSrQxz0A_MwYv8g_aWV18u7_DxDlisMoMI','Karen Dao - Went there recently for a dislocated finger. Dr. Souman was able to pop it back in place like a pro! Quick and professional service. No wait, no crazy co-pay. Highly recommend for your',3,'',10,1),(1659,'2020-02-25 06:12:08.661230','AIe9_BGvUJd9etQojwpjZIMsiFneKGEdBmLNl6cJGR8FEgEeqo-arNYB72e9N5d_3co2IG9hapVTwAQJhSUwADwV0x_DKRXAKdaM4iSLXGztOmFHsSpaTYw','Eva Yorks - Dr. Kotey Fatima Karen Donna Sindy Wendolline were great they took great care of me and my family. Made sure i was comfortable and that i understood the plan of care. This is the best Er i',3,'',10,1),(1660,'2020-02-25 06:12:08.821533','AIe9_BExcxslmE1rr7n5jMcadSKeLbkwVuZD7_La0yyulpjoeztz9_hEgtPPJKxxVUq1mfqPQFoKXq3f24YJY5bWpNdhEiS7CWhni9DbBCpqj5bItQkFHYQ','Kaitlyn Bonvillain - I just moved here from Louisiana 2 months ago so I didn’t know the area very well but I passed by them everyday going to school. They treated me with amazing care and listened to ',3,'',10,1),(1661,'2020-02-25 06:12:08.959554','AIe9_BEV1VP1woYvuPRixSBHlWg4DbNIqWun3YyN3eOyogV8V1FwoflfnJnuq8h-wMgz11wc8nnHxBoR9Hz1sULyIMNXgLnrDb0w7K4GXj_S9gpIwQ7cJ7o','shemeka davis - Such a amazing staff: Dr. Ashbrooks RN: Mollie Rad/Lab: Eric Reg:Tobie‼️ After a month of seeing several doctors and Er physician; this staff cared enough to get me the proper care tha',3,'',10,1),(1662,'2020-02-25 06:12:09.197671','AIe9_BFhqAtkXvUqdYNeMuBBGjaAN65Bl23xYo8ro6KdMDlOTSUfdLKPfRzj5p9JJGmFNyP6wTRAJAJ0zw6YPxvLtVIgLvCwD8C0bK3Do5Z_ozgtLPkVDoo','Joanna Cervantez - Was with my bf in the ER. The Dr came in and was good. The tech Daniel and the nurse Keira took care of him. They made sure he and I were comfortable. We will be returning here. It ',3,'',10,1),(1663,'2020-02-25 06:12:09.510489','AIe9_BFL0OZrFaHgoJtqifT1GHrIE8HIsWiAdHzNF014TgP8Q5eC53ui3LG1dxuh0cEDbdc4U8XjaW-IIhusPZjOWEcG_AlFhOEXPecPCFU6gbmBueWov78','Veronica Aguilar - Friendly staff, I didn’t have to wait at all ..they took care of me right away Thank you Christine M.\nBrandon, Dustin and Tatiana :)',3,'',10,1),(1664,'2020-02-26 10:32:30.099893','AIe9_BG84YPnR8vhxeJfV_lAYVNi3HJkLoUfSfXN0a-m7JO69GmzspoWvxc0SM48ZCDmdgW8BdGZaLW1UDOz4GbtUbbBFFduoTx3zSdtd7YF-tBqA_6hVt8','Sheanise McCardell - None',3,'',10,1),(1665,'2020-02-26 10:32:30.148014','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2MZIakGscCRTpNi3T_JIGwFd0l6yJl3j3XSDAhAgbl1gtlPgUUnk-yK5u7MuO5Bx4n2HeQ-qjak-3NTl2fMQNJpvaoDc','Lauren Lopez - Came with a friend and the care was the best I’ve seen in an emergency room. Ashley, Keira, Magali, Eliza, and Dr. Anders were great.',3,'',10,1),(1666,'2020-02-26 10:32:30.246958','AIe9_BEAgUIalCkcXZnurOUpP4uArLS7sCEpl8Bo1jM1ysH5Li52dV8pNujTH28PXq7BzKPhXjzJXrTIco7o0_8gAcWVRzt6txUjw4Ci5SC_XQBTGYg8V_0','lizbeth bello - This is my to go emergency center never a long wait, the staff is absolutely helpful and very informative! Doctors are really nice and self conscious about your health and symptoms\nDr ',3,'',10,1),(1667,'2020-02-26 10:32:30.345465','AIe9_BHVBnWjBJvk55vq2QEm0wl-6cacOcVzCqUgp8Rmeo6kMburo966f5ftSB9dzWhzz2R2vU3y2ZrfCRIKJAk9QaRDVipzqT2h6FHaSuSPdoUz0dWDs14','Shannon Thames - Very friendly staff, short wait time, knowledgeable staff. Will definitely visit again if needed!',3,'',10,1),(1668,'2020-02-26 10:32:30.394740','AIe9_BHVBnWjBJvk55vq2QEm0wl-kN9pzZHfkq5E07F_jxEkpclhYmr5hrMHyT2j8gwF8NJgS6czd_utk6i3pFRmwQszf9Wx9dKkbzsubc3lvkPDbRVVMMc','Bobbi Manchester - Came into the center and was helped right away. Staff was super friendly and polite. I totally don\'t like hospital but if i have to make a trip I\'m definitely coming here first. The',3,'',10,1),(1669,'2020-02-26 10:32:30.444046','AIe9_BGlY-BaOO_aND3JZqxJBS1Rq1sddYVKZQE4jH4PJtMDxurz9xRIAdo5Kc_5bmC5WrNMpRUelNRQtgo72CRIKifj_th1GzxFVjB944g0LzqEMisvkK8','Cynthia Garcia - All the staff was very caring!',3,'',10,1),(1670,'2020-02-26 10:32:30.493124','AIe9_BF8X4EpR_fF6mwcYdso9awgagRVFsumv-8FIRDGiLl4f25ertlKofr3OyiJR5HNBNDBBflEs0lL78ZFtS6yslktBLmFnqkySIhIr1PlE3lByr05x_k','Myeasha Craven - Quick registration with Stephanie! \nNurse Rollie was kind and gentle with my 6 year old! \nNatalia and Mackenzie were very sweet as well! \nWould definitely recommend this place for eve',3,'',10,1),(1671,'2020-02-26 10:32:30.542447','AIe9_BGTHfLB7ZAtvlQmidaL-PvDhsjULNlKZaVg1-SgoiWGg6QqJjg0Lh34LsX71dE5UZgaVper2jpkd8yY3vTKken-ccpPc0hKR-7s9QEkzCyjE7NPpuk','Jacques Mayer - None',3,'',10,1),(1672,'2020-02-26 10:32:30.591847','AIe9_BHQRY2ZSwEqF8wFOgAU7mdNWMZo5Y-Gx0kDRdY6Hg-TSaI4mz42RnM8fuE6DkpvPYuI3coS93PMnqajn9HMQ2_JJ-T1Kk8Eb64yOuvNEmGr5B-QzWQ','Lacy Conrad - Took my husband in to the ER here and everyone was so kind, caring and thorough. Also a very nice/comfortable ER if you have to be in one. Thanks so much to Adam, Chris, Linda, Aileen an',3,'',10,1),(1673,'2020-02-26 10:32:30.641107','AIe9_BHR7p0hPy1flx1br0TYdEUB3L5-qYXj9DD5TprFg4CMp9VC1EkkcUORImcu3q-G01PZ5M0dY_yBo89xUf3ifCh2CjQdLl1MUDNOOU2I2TvhQd7-7Eo','Adrien Conrad - I was helped by Adam, Linda, Chris, and Dr Leung, who were all excellent and helped me relax during a 13-hour stay. Great staff, great rooms, chill atmosphere.',3,'',10,1),(1674,'2020-02-26 10:32:30.690297','AIe9_BFhqAtkXvUqdYNeMuBBGjaAmhkm2D47skb6jSFbGmoJLsEm1hQk69jd8ZVXuWc3D9Q4a7L2SRoDYfOvyIf_edm8isYthgoL5bMepNqvybbDHIvGrc0','Douglas Craft - Ashley, Trinie, and Dr Anders(I think that’s his name) we’re all very nice and informative. Very speed service and friendly atmosphere. Highly recommended!',3,'',10,1),(1675,'2020-02-26 10:32:30.739174','AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2agzo3kDHM_10OJNiclghvnY0PIAkZ5ocpdLkpFE4M75jI2saRlUe2f2rwuYVEc8y8ELzdj6GRpvAjQGUCpqqXYpKAxY','lovesentable - Thank you so much for a wonderful visit!! Nurse Adam, Dr Leung, Chris, Adam, and Aileen were super nice and professional! I have been here several times and trust them with my health!',3,'',10,1),(1676,'2020-02-26 10:32:30.789169','AIe9_BFhqAtkXvUqdYNeMuBBGjaAh6ErtC1g1uf5rSoF3GPHiuXSXxYw9bNUzZb13-CobdsFqZImZMkINZlaFgn8AlmPeaHP-LkolQgP5HyvGOaYqNUBxKA','Brittne Dansby - I was seen and diagnosed with the flu on 2/2/20. Linda with registration is who I encountered first. She was very friendly and greeted me as soon as I walked in the door. Kara was my ',3,'',10,1),(1677,'2020-02-26 10:32:30.849182','AIe9_BGlY-BaOO_aND3JZqxJBS1RfBLaI8Dw9mKlGyq_8eLh0N8FB4bTtZYtkWqLBfWxaGWwC84IQlLXSbNbji8yqzX_XtKyt9u0dihhKyRwBU0dGtr2Nuk','Paul Kolanek - Quick service, caring staff. I highly recommend them for any of your emergency needs.',3,'',10,1),(1678,'2020-02-26 10:32:30.965142','AIe9_BGlY-BaOO_aND3JZqxJBS1RqEu8JWGqIPJkDRmpLc07ajRLmkr4zZjhT-EZEHUVQ7U8_w3MvuUUImBwX9Lwj8KnBdPo6tq14lXUYtYVce__H5z7v3o','Paul Kolanek - I had a great Experience, quick service, kind employees that really seamed to care. I highly recommend.',3,'',10,1),(1679,'2020-02-26 10:32:31.014549','AIe9_BHZM2k_MpOhRgkb8w5Bn_urHkDGaZb_scttjeMC7Y7llVX0eetTbaZ2YHQoICo7G19n9B0eS6kSVFpR0fiA4nzSUowo0amiL0Fy7GaWd9Cmwq5eU0g','Dennis Kihlberg - This place is great. I have had to stop in twice for late medical emergencies and was well taken care of during both instances. I would recommend this place to anyone!',3,'',10,1),(1680,'2020-02-26 10:32:31.063654','AIe9_BFDvtvCY6mNmVUeGBiBb7S54-n9DLWpVxLubFqi2IQFQh8Qr3rwD_FQgNGMWJn6x6yXtyEMERSWmmv3pzXKse8ABmP-1FbK0TOuu1m34E9Ux7cgV_I','Michaela Guerrero - They were super nice and fast!',3,'',10,1),(1681,'2020-02-26 10:32:31.113003','AIe9_BFhqAtkXvUqdYNeMuBBGjaA9730iWCeFftCe-bq8LJALY0lw-LG0D9Wp2GPv_a-BQIbZn89vDP9OCCJHvUjbXvzPadIPuER4yiI3cz7iKSQzZKeSRk','Trung Truong Cover - Nurse : Fanny ,Selina\nEr tech : Brian , Ralph\nRad : Sandy\nDr : Wang\nReg :Okarys',3,'',10,1),(1682,'2020-02-26 10:32:31.161815','AIe9_BGZuRKHeO1iYrcf4B001kE2QrKokZNV70LEooTnHolvvyM7lVibijTU7aqwVBnF6vIwuvUdYQwxGwZblcftDE8glmrR7s4jSGfwjiCWB9qKxFDSBiI','Mallory Holmes - This place is fantastic! No one enjoys being sick, especially on the weekend. But Signature Care took great care of me and my husband. When we walked into the door, we were greeted by',3,'',10,1),(1683,'2020-02-26 10:32:31.211109','AIe9_BFL0OZrFaHgoJtqifT1GHrIsjCAQI_fXQvKTVB-sdvnYHgmt49Cls0fgNksAUlM7X8Dj14sKFpBcXfd8gdhik9X1-kSSVVeF_lICiyZxhiHyW4tiBM','Irina Watson - None',3,'',10,1),(1684,'2020-02-26 10:32:31.309731','AIe9_BHZM2k_MpOhRgkb8w5Bn_urr860o3s9HIs8V2MrPCzQOMTcGWf3SwtkEolxD5dUPtwmR5JAt_9brr0RjtC8qWDCGWsqcP5bfcJt_FS0Rk6gBscWV28','Gia Garcia - The staff was great and friendly. Okarys was helpful with the paperwork. Mr Ralph was patient with my grandson\'s vitals. Nurse Selena and Dr. Wang reassured me that everything was okay.',3,'',10,1),(1685,'2020-02-26 10:32:31.359277','AIe9_BFMK6FB7k24ANEBV5CospTToDMQfSVoxYiTVqXMPF8ozbKMPmnazcEDnELYQf3b5-v8t1P-5V06YWLVnxr-5OE8wpARSjkm-9sNmUqcSCFPJvhA0UI','Samuel Hearne - Very comfortable place and very fast the ppl are so nice and very friendly',3,'',10,1),(1686,'2020-02-26 10:32:31.419641','AIe9_BGhYIk2KhOdF8fekWDvq8JUdmwR4PG1rLZcrxLiBWwRncTu1j4yDhIqVGihGVQmbLnk_Fkf4dXdl7NjZRiNdZJBEadHr2_HZnUf_WP4HgTIn757CII','Ms. crayton - As always signature care is a place I highly recommend, they take great care of you, beginning to end! The receptionist Erica is amazing! She is great about getting you in right away, an',3,'',10,1),(1687,'2020-02-26 10:32:31.469080','AIe9_BGErQpX2pRNZrXBy5NOsH0evNjcl1kf3FIDHqkmFLy3_GAZXkW7ppinkQQbIMxQ7bWPZK9fTK6sDgZ3oVelfY4_hXtvAWA_k5JNxWAeiYoSku-QQgM','Theresa Ward - None',3,'',10,1),(1688,'2020-02-26 10:32:31.529321','AIe9_BFLHEJ8hYqd4VCbbc-EtvgMFAJ7fHBJ49Oj6Lxzia-4eKLdsTJx47qbeASmWb5LVaO0nL18I9y8CG2CahNmQrfh82KoZiL-q5md07cdkDiBIBo7bHk','Christy Naponic - None',3,'',10,1),(1689,'2020-02-26 10:32:31.578728','AIe9_BHVBnWjBJvk55vq2QEm0wl-a9pD79IUqi-99AHQqyYsdPj1Nf8FZnMuQIfo0J4AqeQQdy0aNZ2tVOTLvUhlsNJGWYE698nRyZrfYD_ds96u6-c2w90','Ashlyn Williams - Everyone is really nice!',3,'',10,1),(1690,'2020-02-26 10:32:31.627919','AIe9_BExcxslmE1rr7n5jMcadSKe1NUe9rZGuKsf9rfNLjn9nEIlyFtKRlp8DtimN5L-MkVmKMrC3Y6zej8HqugZP6k-dAr35Y8sAtpaB8uwnGqRKkXPNE4','Georgina Foust - I came to your facility tonight with my daughter. I had never seen her in the shape she was in before. The care she received was astounding. Her nurse Keira explained everything and t',3,'',10,1),(1691,'2020-02-26 10:32:31.688564','AIe9_BHZM2k_MpOhRgkb8w5Bn_urFHAWkRt_w4JYTz42ncSZyOPZbXwXv8CuCf-lXdx3jwq35fkpHJt-Y030dFKdAo0cN8xWI9VYeEL6ey44EZ2NP6UbmJI','Judy Taylor - By far- this is the absolute best emergency room/medical staff I have ever dealt with (Irving, Victoria, Tino, Christian, Ana and of course Dr. Patel). I wasn\'t even waiting for 1 minute',3,'',10,1),(1692,'2020-02-26 10:32:31.748551','AIe9_BFu3rdicGrPrzdyu4PDXmqM_5plN3LcBQgD_fTRpdv0IPIiSmuI9cSgnDhtXotUPmHMM89r_Egbl5uj_9SwFmuigZYGD2jHzSLKW7g6hgVvwueBUvk','Ana Karina Rodriguez - Good atmosphere! Loved the attention from everybody! Nice and clean place . everybody very friendly. I highly recommend this place. Channel, Fatima, Elaine and Tanisha all very ',3,'',10,1),(1693,'2020-02-26 10:32:31.808977','AIe9_BGhYIk2KhOdF8fekWDvq8JUUUtIDeLA6UU7pT9tzgo94eSBrsKz-D2dfgJEp46FEU8sMO2zTIERj5rEtSUL7nAvEcBGuQvUCXwTu6MjKv-Dca6mTmM','Victor Borrayo - Super great experience! Tanishia was helpful at the front and on top of everything. All the nurses were awesome and made me feel comfortable',3,'',10,1),(1694,'2020-02-26 10:32:31.869376','AIe9_BGIy_plKfaZrItPyyQZNLvsTE5FEVLq5-LhgTHXkFNYpBLNU6MKFYRQQOHVN0jf2HX4tSzolP93T0grqMEbVthFbe1D4Lo52mwc3DetedlRFjFQD1E','Gustavo Gonzales - Our kiddo (age 13) came home with what turned out to be a fractured wrist and displaced radius from running around in the woods this evening. We cleaned him up and ran him over to S',3,'',10,1),(1695,'2020-03-02 07:44:49.953167','AIe9_BHR7p0hPy1flx1br0TYdEUBcbm71-T2auJAH8h6CktNi4NCuri71iIj_mEzgCV21QGjNYQGJb0-jKeibD2ZPKErkakEUqgJOmGvlOcUrFv5YM0vzaM','Dariana harris - Great service, quick and efficient...',3,'',10,1),(1696,'2020-03-02 07:44:50.040774','AIe9_BFqh_zr355jzGaEpH7666zcbmzRZMzlvG-WxDdW_r-9gY0vH5HQ2N2DGEbQghLzU_RdEg4do4dPQEgGy92AE6JFzeZ-teja2vve_gsAcDDt2Rtm0HM','Moses Vasquez - Amazing working space very child friendly. \nNurse Samantha was wonderful \nand very helpful. \nI’m glad to know we have help in any place needed!',3,'',10,1),(1697,'2020-03-02 07:44:50.188555','AIe9_BGIy_plKfaZrItPyyQZNLvsKPY2iVwuoZy62NtSU2qoW0sIm_B11YV40-7xTa79pE15lDkprlbhNE9BfpmvIHLA0xzbkI8Tq5Wl00FMCV9KjvXyLjM','Chasity Johnson - Great customer service and very fast service. Everybody was friendly and helpful. From the moment I walked in Carly was very welcoming. Irving and Sherwin gave me all the information',3,'',10,1),(1698,'2020-03-02 07:44:50.286984','AIe9_BHx9wW5OAXpNIH08blLdli0WQSVQXuhCE_QXkD_Ch6K8TgPciuUOucCprdOaLsAHAZC6CcqNYD2LJTC3zbYvr92loOeAfsgvtiLSMWigRCqPYvUAhI','Jazzmynn J - They are always funny and amazing 😄😀',3,'',10,1),(1699,'2020-03-02 07:44:50.336285','AIe9_BFu3rdicGrPrzdyu4PDXmqM4dNBUID252rZ5gXnQ3XrC4LcUi-U9r_I1o58ekOqovptCqNcQH9kFAsydDydNDNexjkEOw_EQyII8nvSVmMP9YZOlm8','Justin Stevenson - Everyone was so nice they took great care of me in a timely manner',3,'',10,1),(1700,'2020-03-04 09:45:13.097037','8918455867446117794','Stafford',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1701,'2020-03-04 09:46:09.551624','8679688254631342173','Bellaire',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1702,'2020-03-04 09:46:26.748536','8626688543755174284','Paris',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1703,'2020-03-04 09:46:42.747707','6521947413723274945','Odessa',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1704,'2020-03-04 09:47:00.481507','16590124370714063921','College Station',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1705,'2020-03-04 09:47:15.002641','16891069708558046635','Austin',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1706,'2020-03-04 09:47:49.584942','3511292162159714121','Montrose',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1707,'2020-03-04 09:48:04.379741','12541597562633926366','Westchase',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1708,'2020-03-04 09:48:16.187078','14904078213800803294','Memorial City',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1709,'2020-03-04 09:48:28.836442','17394740196501090048','Mission Bend',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1710,'2020-03-04 09:48:50.074993','14567670160750071148','Heights',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1711,'2020-03-04 09:49:21.578143','17898197009688164559','Copperfield',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1712,'2020-03-04 09:49:42.608189','8679688254631342173','Bellaire',2,'[]',8,1),(1713,'2020-03-04 09:49:54.016167','13486358490203335051','Midland',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1714,'2020-03-04 09:50:49.869441','16891069708558046635','Austin',2,'[]',8,1),(1715,'2020-03-04 09:51:13.103743','3272657195432704501','Texarkana',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1716,'2020-03-04 09:51:25.913373','16389487648212004696','Cypress',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1717,'2020-03-04 09:51:41.907790','2694018788013845459','Killeen',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1718,'2020-03-04 11:13:06.654381','8918455867446117794','Stafford',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(1719,'2020-03-04 11:13:42.404718','8918455867446117794','Stafford',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(1720,'2020-03-09 06:38:48.341709','393','Montgomery,Sarah M - Texarkana',2,'[{\"changed\": {\"fields\": [\"Nick names\"]}}]',12,1),(1721,'2020-03-09 06:38:58.205570','326','Grant,Sarah A - Copperfield',2,'[{\"changed\": {\"fields\": [\"Nick names\"]}}]',12,1),(1722,'2020-03-09 07:53:06.427802','8918455867446117794','Stafford',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1723,'2020-03-09 07:53:25.224738','8918455867446117794','Stafford',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1724,'2020-03-09 07:59:18.316350','8918455867446117794','Stafford',2,'[{\"changed\": {\"fields\": [\"Review site url\"]}}]',8,1),(1725,'2020-03-10 07:30:45.135021','AIe9_BH3gZxYpIxBZcqAOO5HuBVkRjymUkVjCNeSuEWE2VitTXdFD2tnUWe2yLNGNjKrmW5wS-DkZhsKEMyS8QvlKoFYbwBnsv2rTVojXUFUHl61-nSAE-w','Misty McCleary - This is our second day in a row here, and we’ve been impressed with the treatment we’ve received both days. Great place to go!',2,'[{\"changed\": {\"fields\": [\"Star rating\"]}}]',10,1),(1726,'2020-03-10 07:32:05.235558','58','four_star - Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us k',1,'[{\"added\": {}}]',11,1),(1727,'2020-03-10 07:32:21.619108','59','four_star - Thank you so much for your nice review, [NAME]. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do',1,'[{\"added\": {}}]',11,1),(1728,'2020-03-10 07:33:38.921145','60','three_star - Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion w',1,'[{\"added\": {}}]',11,1),(1729,'2020-03-10 07:33:50.559968','61','three_star - Thank you so much for your feedback. I hope you will let us know why you gave us a three-star rating so that we can learn from our mistakes! We always want our customers to be 100% satisf',1,'[{\"added\": {}}]',11,1),(1730,'2020-03-10 07:35:22.613829','62','Negative-Details - We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love ',1,'[{\"added\": {}}]',11,1),(1731,'2020-03-10 07:35:49.351698','63','Negative_Service - We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without compli',1,'[{\"added\": {}}]',11,1),(1732,'2020-03-10 07:35:59.463966','64','Negative_Service - Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our lea',1,'[{\"added\": {}}]',11,1),(1733,'2020-03-10 07:36:40.508848','65','Negative_Billing - Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@e',1,'[{\"added\": {}}]',11,1),(1734,'2020-03-10 07:39:18.630143','66','Negative - We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications.',1,'[{\"added\": {}}]',11,1),(1735,'2020-03-15 05:52:34.097215','AIe9_BH3gZxYpIxBZcqAOO5HuBVkRjymUkVjCNeSuEWE2VitTXdFD2tnUWe2yLNGNjKrmW5wS-DkZhsKEMyS8QvlKoFYbwBnsv2rTVojXUFUHl61-nSAE-w','Misty McCleary - This is our second day in a row here, and we’ve been impressed with the treatment we’ve received both days. Great place to go!',3,'',10,1),(1736,'2020-03-15 05:52:49.250198','AIe9_BGhYIk2KhOdF8fekWDvq8JUeiQknXhAZ4F1dmwnoMAxqKhs3xmQ3ZFpnhg2E8Wwe2lmSSTFqmYP8qX72ORy7i3yrflipDoR113QHLbbpcKmM8bfJJc','Courtney Rickels - Very helpful, friendly, clean, and informative! Dr Daniels and Tanishia were great. Everyone was great! Thanks again.',3,'',10,1),(1737,'2020-03-15 05:53:18.052076','AIe9_BHZM2k_MpOhRgkb8w5Bn_urdQ4m-my7yXhQZzrUf00cNb2Vw4kWwvRYsToR_vGVd2-CfQoGc8mokd4RcMs0A7hY1JWDPy96CkzMu3PwrrsoskdVN-Q','Ellen Scott - I really feel very confortable was given a chance ask questions and feel all questions answer very by everyone tonight Dr Daniels, Chantel, Laura, and Tanishia. Thanks!',3,'',10,1),(1738,'2020-03-15 05:54:25.918925','AIe9_BHVBnWjBJvk55vq2QEm0wl-ngAmMNAebF0NTBOmdw368HN8z3d2Wvd0oA4El4_bv0KLn-ET4-x2HaPw1gxGcuJWZekoGU9DtG5BGYoJUAFv4zjbph0','Zonjia Jackson - The staff was very professional, patient and super friendly. Sita, Allison and Leah made me comfortable and explained what they were doing. I will recommend Signature Care to all my ',3,'',10,1),(1739,'2020-03-15 05:54:43.201082','AIe9_BEV1VP1woYvuPRixSBHlWg4CExgI6xmw3MJABwA2TfeKeKX6enME4IMqlT7zswdVSBZSwIA4q4g-L9yeY3GJXFxXdz83LKAAX5-ZGknnMd0k_4sDZI','babygurll periodt - Ive come as a guest while my mom was in the er and ive had the best experience they take care of there pacients and they are the best to laugh with and talk to love them so much',3,'',10,1),(1740,'2020-03-15 05:55:03.749053','AIe9_BGErQpX2pRNZrXBy5NOsH0eTMFO1BfnjphBqlXbKUm4dSsbgflkCh1j0aEZfg2MHCnIsm8yF4UxeMbRyXU3uQnhrnvxb9rSYUNb0k2x83dBgf_0DkY','Yamiles Bravo - The staff was very great and friendly. Dr. Faig and nurse Sarra were very friendly and informative. Carly made sure to check us in quickly. Christian as well was very friendly. The who',3,'',10,1),(1741,'2020-03-15 05:55:20.502470','AIe9_BG84YPnR8vhxeJfV_lAYVNiPN7IhZn0VZPQjiADxMNgBMy5U5MxQ1CJ7vnr9Gz8ZVfQIYMldJcYvu37nSfga7dVxlKHI6cdOIz9ip8sGy_THh1ku_E','Chasity Smith - Samantha ,Christine, Ricardo, & Dr.Jaber were fast and very friendly. My 4month old was handled gently and with lots of care.',3,'',10,1),(1742,'2020-03-15 05:55:49.962463','AIe9_BEHZ7lh7y1sP-UInhkpmlIp_xzF64QrRAw12SNUlMB-zj31s3XSPhhaI_J5M9AopoanEso0sah8SASIvj-cYMn36BzxKnMQSZCxyPy7bkS-xi9zrho','My Random Life - Thank you\' Samantha! Awesome service. Professional employees and great options for treatment even if you don\'t have insurance. Thank you for treating us like people. I definitely reco',3,'',10,1),(1743,'2020-03-15 05:56:16.742954','AIe9_BHAFUK2tNBZL25dLQ0jVdh0lgAj-0S-8lW_sErS5Bo7KzNf3YKecDgMpb-1V7DD8f3f8qgsgy0pwSycKTWoCIN0s3OexPo3yD9-hzhIU_t0yCwFD4U','Timna Viera - The receptionist was amazing, very informative. Tanishia was so great and kind. She was attentive Chantele, the nurse, was so amazing. She was so caring and kind. She was informative and',3,'',10,1),(1744,'2020-03-15 05:56:45.999779','AIe9_BGErQpX2pRNZrXBy5NOsH0ehTcV2G8Zf4zPLEG9l98zEtCD-GW6MkaG01oTWAqTtxgbBP6WGxOcL4Ywc7qcL8jovJHUu_ulDgP1a-gHz9_LyEfZNk8','Jacqueline Echevarria - This emergency facility was very quick and got me in and out. Tanishia was very friendly and very efficient with getting me in immediately. Dr. Erica Daniels was a wonderful do',3,'',10,1),(1745,'2020-06-14 10:35:59.218092','1','admin@ercare',2,'[{\"changed\": {\"fields\": [\"Expiry\"]}}]',7,1),(1746,'2020-06-14 10:57:10.071954','8916258876770296726','Houston',3,'',8,1),(1747,'2020-06-14 10:57:10.320228','5397588228065547694','Houston',3,'',8,1),(1748,'2020-06-14 10:57:10.369498','2850309161695582935','Houston',3,'',8,1),(1749,'2020-06-14 10:57:47.388124','2077061009497551125','Pflugerville',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(1750,'2020-06-14 10:57:58.278446','14748677429039074158','Lewisville',2,'[{\"changed\": {\"fields\": [\"Care name\"]}}]',8,1),(1751,'2020-06-14 11:13:35.035281','1','Montrose',1,'[{\"added\": {}}]',13,1),(1752,'2020-06-14 11:14:29.024629','2','Heights',1,'[{\"added\": {}}]',13,1),(1753,'2020-06-14 11:16:40.340901','3','Memorial City',1,'[{\"added\": {}}]',13,1),(1754,'2020-06-14 11:17:30.090389','4','Westchase',1,'[{\"added\": {}}]',13,1),(1755,'2020-06-14 11:18:58.079430','5','Midland',1,'[{\"added\": {}}]',13,1),(1756,'2020-06-14 11:24:41.205591','6','Odessa',1,'[{\"added\": {}}]',13,1),(1757,'2020-06-14 11:27:00.588200','7','Paris',1,'[{\"added\": {}}]',13,1),(1758,'2020-06-14 11:30:57.334454','8','Bellaire',1,'[{\"added\": {}}]',13,1),(1759,'2020-06-14 11:34:52.006249','9','Stafford',1,'[{\"added\": {}}]',13,1),(1760,'2020-06-14 11:36:05.698021','10','Texarkana',1,'[{\"added\": {}}]',13,1),(1761,'2020-06-14 11:37:41.250282','11','Killeen',1,'[{\"added\": {}}]',13,1),(1762,'2020-06-14 11:38:01.186681','12','Pflugerville',1,'[{\"added\": {}}]',13,1),(1763,'2020-06-14 11:43:52.415951','13','Austin',1,'[{\"added\": {}}]',13,1),(1764,'2020-06-14 11:47:29.738782','14','College Station',1,'[{\"added\": {}}]',13,1),(1765,'2020-06-14 11:47:47.302483','15','Cypress',1,'[{\"added\": {}}]',13,1),(1766,'2020-06-14 11:51:48.043146','16','Mission Bend',1,'[{\"added\": {}}]',13,1),(1767,'2020-06-14 11:52:31.391534','17','Copperfield',1,'[{\"added\": {}}]',13,1),(1768,'2020-06-14 13:11:18.635448','18','Lewisville',1,'[{\"added\": {}}]',13,1),(1769,'2020-06-17 14:59:23.746919','66','Negative - We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications.',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1770,'2020-06-17 14:59:43.139962','66','Negative - We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications.',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1771,'2020-06-17 15:00:01.134302','66','Negative - We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications.',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1772,'2020-06-17 15:00:47.375114','65','Negative_Billing - Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@e',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1773,'2020-06-18 07:50:30.732369','59','four_star - Thank you so much for your nice review, [NAME]. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1774,'2020-06-18 07:50:38.661616','58','four_star - Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us k',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1775,'2020-06-18 07:52:03.769156','64','Negative_Service - Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our lea',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1776,'2020-06-18 07:52:11.873314','63','Negative_Service - We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without compli',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1777,'2020-06-18 07:52:22.003643','62','Negative-Details - We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love ',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1778,'2020-06-18 07:52:37.516691','61','three_star - Thank you so much for your feedback. I hope you will let us know why you gave us a three-star rating so that we can learn from our mistakes! We always want our customers to be 100% satisf',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1779,'2020-06-18 07:52:47.672846','60','three_star - Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion w',2,'[{\"changed\": {\"fields\": [\"Reply star\"]}}]',11,1),(1780,'2020-06-18 07:58:17.493731','dsaf','Mohit - dsaf;fkjsl',1,'[{\"added\": {}}]',10,1),(1781,'2020-06-18 07:59:00.183136','dsaf','Mohit - dsaf;fkjsl',2,'[{\"changed\": {\"fields\": [\"Create time\", \"Update time\"]}}]',10,1),(1782,'2020-06-18 07:59:22.456096','dsaf','Mohit - dsaf;fkjsl',2,'[{\"changed\": {\"fields\": [\"Star rating\"]}}]',10,1),(1783,'2020-06-18 07:59:46.994875','dsaf','Mohit - dsaf;fkjsl',2,'[{\"changed\": {\"fields\": [\"Star rating\"]}}]',10,1),(1784,'2020-06-18 08:00:17.204383','dsaf','Mohit - dsaf;fkjsl',2,'[{\"changed\": {\"fields\": [\"Star rating\"]}}]',10,1),(1785,'2020-06-18 08:00:38.980190','dsaf','Mohit - dsaf;fkjsl',2,'[{\"changed\": {\"fields\": [\"Star rating\"]}}]',10,1),(1786,'2020-06-18 08:01:22.304359','dsaf','Mohit - dsaf;fkjsl',3,'',10,1),(1787,'2020-07-08 08:19:20.296407','829264323932850',' Westchase',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1788,'2020-07-08 08:19:51.923556','596022027480375',' Midland',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1789,'2020-07-08 08:22:52.577251','461782867645453',' Copperfield',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1790,'2020-07-08 08:23:01.798727','326347177710316',' College Station/Bryan',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1791,'2020-07-08 08:23:10.523921','299216637560955',' Paris',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1792,'2020-07-08 08:23:17.535704','251751275488925',' Killeen',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1793,'2020-07-08 08:23:25.114922','237100240304186',' Odessa',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1794,'2020-07-08 08:23:31.728758','235046800697531',' Texarkana',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1795,'2020-07-08 08:23:37.861166','1787364321589026',' Stafford',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1796,'2020-07-08 08:23:48.760439','1765121397101399',' Memorial City',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1797,'2020-07-08 08:23:58.293348','1698192877146046',' South Austin',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1798,'2020-07-08 08:24:11.290336','167959367441528',' Cypress/1960',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1799,'2020-07-08 08:24:22.235539','1648645701907657',' Bellaire',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1800,'2020-07-08 08:24:36.711023','1609539722669429',' The Heights',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1801,'2020-07-08 08:24:46.158746','1608991329419166',' Montrose',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1802,'2020-07-08 08:24:54.106537','105589317817643',' Pflugerville',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1803,'2020-07-08 08:25:12.496690','104213804456471',' Lewisville',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1804,'2020-07-27 06:14:01.066569','2','mohit',3,'',4,1),(1805,'2020-07-27 06:21:45.375370','544778295636544','SignatureCare Emergency Center',2,'[{\"changed\": {\"fields\": [\"Location\"]}}]',17,1),(1806,'2020-07-29 07:52:15.335053','1','Thank you',3,'',19,1),(1807,'2020-08-19 06:49:32.421014','3','admin@motrose',1,'[{\"added\": {}}]',4,1),(1808,'2020-08-19 06:49:48.999860','3','admin@motrose',2,'[]',4,1); /*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `django_content_type` -- DROP TABLE IF EXISTS `django_content_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `django_content_type` ( `id` int(11) NOT NULL AUTO_INCREMENT, `app_label` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `model` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `django_content_type` -- LOCK TABLES `django_content_type` WRITE; /*!40000 ALTER TABLE `django_content_type` DISABLE KEYS */; INSERT INTO `django_content_type` VALUES (1,'admin','logentry'),(3,'auth','group'),(2,'auth','permission'),(4,'auth','user'),(5,'contenttypes','contenttype'),(15,'facebook','facebookpage'),(16,'facebook','facebookreview'),(17,'facebook_app','facebookpage'),(18,'facebook_app','facebookreview'),(19,'facebook_app','facebookreviewreply'),(8,'gauth','location'),(7,'gauth','usermodel'),(12,'name_extractor','staff'),(11,'review','customreply'),(9,'review','reply'),(10,'review','review'),(6,'sessions','session'),(20,'user','useraccount'),(13,'yelp','yelplocation'),(14,'yelp','yelpreview'); /*!40000 ALTER TABLE `django_content_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `django_migrations` -- DROP TABLE IF EXISTS `django_migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `django_migrations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `app` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `applied` datetime(6) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `django_migrations` -- LOCK TABLES `django_migrations` WRITE; /*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */; INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2020-01-06 09:02:20.750518'),(2,'auth','0001_initial','2020-01-06 09:02:23.122237'),(3,'admin','0001_initial','2020-01-06 09:02:32.932943'),(4,'admin','0002_logentry_remove_auto_add','2020-01-06 09:02:35.756483'),(5,'admin','0003_logentry_add_action_flag_choices','2020-01-06 09:02:35.822163'),(6,'contenttypes','0002_remove_content_type_name','2020-01-06 09:02:37.583156'),(7,'auth','0002_alter_permission_name_max_length','2020-01-06 09:02:38.972634'),(8,'auth','0003_alter_user_email_max_length','2020-01-06 09:02:39.092083'),(9,'auth','0004_alter_user_username_opts','2020-01-06 09:02:39.157349'),(10,'auth','0005_alter_user_last_login_null','2020-01-06 09:02:40.172616'),(11,'auth','0006_require_contenttypes_0002','2020-01-06 09:02:40.270438'),(12,'auth','0007_alter_validators_add_error_messages','2020-01-06 09:02:40.352674'),(13,'auth','0008_alter_user_username_max_length','2020-01-06 09:02:41.788867'),(14,'auth','0009_alter_user_last_name_max_length','2020-01-06 09:02:43.089997'),(15,'auth','0010_alter_group_name_max_length','2020-01-06 09:02:43.287119'),(16,'auth','0011_update_proxy_permissions','2020-01-06 09:02:43.341943'),(17,'gauth','0001_initial','2020-01-06 09:02:44.330859'),(18,'gauth','0002_auto_20191231_1139','2020-01-06 09:02:47.154486'),(19,'gauth','0003_auto_20191231_1140','2020-01-06 09:02:48.754749'),(20,'gauth','0004_auto_20191231_1144','2020-01-06 09:02:50.070325'),(21,'gauth','0005_auto_20200101_0803','2020-01-06 09:02:52.899728'),(22,'gauth','0006_location_care_name','2020-01-06 09:02:53.057406'),(23,'review','0001_initial','2020-01-06 09:02:53.984605'),(24,'review','0002_auto_20191231_1012','2020-01-06 09:02:57.975071'),(25,'review','0003_auto_20200101_0803','2020-01-06 09:02:58.095489'),(26,'review','0004_auto_20200101_0807','2020-01-06 09:03:00.801185'),(27,'review','0005_auto_20200101_0830','2020-01-06 09:03:01.019301'),(28,'review','0006_auto_20200101_0847','2020-01-06 09:03:03.848133'),(29,'review','0007_customreply','2020-01-06 09:03:04.298801'),(30,'review','0008_auto_20200106_0757','2020-01-06 09:03:05.770223'),(31,'sessions','0001_initial','2020-01-06 09:03:06.317959'),(32,'gauth','0007_auto_20200109_0638','2020-01-09 06:38:43.059945'),(33,'gauth','0008_location_total_review_db','2020-01-09 07:02:32.224684'),(34,'review','0009_auto_20200204_0638','2020-02-04 06:38:54.371775'),(35,'name_extractor','0001_initial','2020-02-09 12:13:59.491817'),(36,'name_extractor','0002_auto_20200213_1122','2020-02-13 11:22:31.504800'),(37,'name_extractor','0003_staff_department','2020-02-13 11:30:39.971972'),(38,'name_extractor','0004_staff_name_mentioned','2020-02-19 10:49:34.475564'),(39,'name_extractor','0005_auto_20200219_1157','2020-02-19 11:57:36.675475'),(40,'gauth','0009_location_review_site_url','2020-03-04 09:44:13.176441'),(41,'gauth','0010_auto_20200304_1616','2020-03-04 10:17:09.022704'),(42,'gauth','0011_auto_20200304_1707','2020-03-04 11:07:52.086958'),(43,'gauth','0012_auto_20200512_1212','2020-06-14 10:34:46.456382'),(44,'review','0010_customreply_reply_star','2020-06-14 10:34:46.577787'),(45,'yelp','0001_initial','2020-06-14 10:34:47.835540'),(46,'yelp','0002_auto_20200609_0829','2020-06-14 10:34:51.594316'),(47,'facebook','0001_initial','2020-06-30 09:36:40.272091'),(48,'facebook_app','0001_initial','2020-06-30 10:11:14.771018'),(49,'facebook_app','0002_facebookpage_location','2020-07-08 08:17:41.831718'),(50,'gauth','0013_auto_20200727_0612','2020-07-27 06:12:21.025836'),(51,'facebook_app','0003_facebookreviewreply','2020-07-28 09:55:55.573840'),(52,'facebook_app','0004_auto_20200729_0750','2020-07-29 07:50:48.690189'),(53,'facebook_app','0004_auto_20200812_1021','2020-08-12 10:21:47.018660'),(54,'user','0001_initial','2020-08-19 07:51:34.413309'); /*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `django_session` -- DROP TABLE IF EXISTS `django_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `django_session` ( `session_key` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `session_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `expire_date` datetime(6) NOT NULL, PRIMARY KEY (`session_key`), KEY `django_session_expire_date_a5c62663` (`expire_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `django_session` -- LOCK TABLES `django_session` WRITE; /*!40000 ALTER TABLE `django_session` DISABLE KEYS */; INSERT INTO `django_session` VALUES ('01pgz451ox99sch0egaaogpzno43xr5y','NjIzYWU0OGMwZGEwYjU2ZjJjNjA1MzA0ZGYxYTMxMzYxZmU0YTIwZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfN1FzNWtGWUo2VDVXTzNsVjczVzBlOGt1Yjg1THZJcHYyem9lUDcwREY0U2J0VVZORGhjaXpncldqSTduQXh1eDVWbzVTQ0UwZVpVTnBmWk1Ldm5BMTVabExlRV94WmFWS1NXSTRKaXo1QmlYdG1velRPMGo0SzU1ZW5GUTAiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjIxLjkyNTYyMiJ9fQ==','2020-02-13 07:50:22.928953'),('01ukr1oj86vwroogeypi0tuxhkmcx1a2','YTUzMzdiZWJlMmU0NTY0M2ZiZGI5YTJjZGE1MDk4MTc2YjIwNjk0YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0M21NS0V6ZDQwME9EQXRtOVRmNUk0amoyV1c3VXVRc2M5OUhMN2xNWWZDSGd2UnFYX3NUaGpqUFlqNV9lOTJjVExOVWhodlZlTFNMTVluY2UyQm05eUJlTG5icDFoSEtPMW5NdEhyS2xOa05OYUgwZGQzMWw4RGNaM0tDZGsiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjE3OjU0LjU5NzY3OCJ9fQ==','2020-01-20 09:17:54.600754'),('03a0k7dierks32bdfkfuk088xbv5ceto','ZDkyNzdjMTY0NjIyOWExZGY5NmE5ODg0ODE3Zjk1OGM2MTQ4MDQ4Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6TEt2OWp2ckdCbndSckM0Ym9MR2tPcENwbnNrNDdxNXp4aVpNVUJkUV96TnlobDg4TDJBVUdqVmxLUEhqNG5oSkRrYWMtU3E5LV9lSkoyc2dwMTlMT3k4T3MxT1gyTjlpWFFEUms3MnBSMEJyY1ZjOW93a2QzTTVrX2o0ZWF5IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDo0MC41Nzc1OTYifX0=','2020-02-26 05:00:41.581207'),('03x1ap49swu4ul5eal4ojbo5qh9d7mdv','MjJmNzZjN2Q1NGVhZTI3NmYwNjNlMjBjZjRmZWY0ZDY1NjgxN2UxODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1Yk5YYkdtV2NyLXBTSEVBcHRHczRQWVBERl85X1ZwYXBsZ1dtVXgzTEwzOWF1MXdFNDk4c1pZTS1WbjVycEhBaHJjeTRoM18ydjlQTzFrQ0NWY3BjZ09vRmhhWC1JZDBUMnVIc2pDcDhlWGF4M2tYTmhUazlIVm03dWRQSU1MIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0OToyOS4yODUxNjEifX0=','2020-02-24 05:49:30.288571'),('041llilflnbxdnrh0m93bhkbg730kxl4','ODQ0MGRiMGFkN2Q0NDQyOTJhNjdiNGFmZmUyZDYxZWVmZTM2Y2U2Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItU2NLUXJaOEtVZnE3U1E1dFEtZHFOd2xmZWMwakoxcnRsMjhNeGJNcXRtSDZMQUpYSWNFekwtWTc4ay1GRWtXRTlOM0NnV0hBUDl5a2xKMEs1Y2FFRXp5MzViUFpQTnhQQXYtU2kxZVBvN2tqaXRPclhVZWx6Y2ZTM0M3ZTQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjM5LjU4MDk0MyJ9fQ==','2020-02-06 12:19:40.584383'),('05sm5i3hii73v08hj8yxlxdkzzrh98v1','NDZhZTRlZGNhMmE2N2IxYWRhNWY5NDAwNTcyMDYyMjQ2YjI4ODE1Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzaTk5ZGtwaFVBX0M5dEN4WFBPLUMwUlc5QzNsM25jR1VzYmxDSjZxVDJuRERweUUybmFtcWNjLWRjSzV5ZDNGWFl3OXNoMktOTVQwRm03M3lPNGdISGZOQlh6dFBFeWRTYkQ0bEZmYm9zcTBGckRfVWdYMzgxM3F2U1VNOXciLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjIyLjgyNTc4MiJ9fQ==','2020-02-09 06:17:23.827501'),('079ai3o8em75zti999m7r8ljskczttn4','ZjNkMTA5NDA3YTQ3ZjRkNDA0MzllZTIzYTIwMDlkZmI4YjZkMTBmNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzbTZKMmtid1dhRWZUSDJDcVFVaWVlck9vZk1hS2otalV3YlgzcU1ZMGZ4M1RqM2Q5SGV5VU5fMVV3NlhsYTZBUjFDX3lweGFLOGJOYTlsT0JXanI3SGtsemJ4dzlfajVvS3JkbFAweDBVRE9kcU1rZy12X3JJb2Y1N1FKNmciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjEzOjM5LjgzODA3MCJ9fQ==','2020-02-20 07:13:40.841734'),('09w77yaz30oitqkbaon0h27o7g0zhstj','YmJkYWRlMDc3NmUwYzE2YzMyZTgwM2QwMjY1ZGMyZmIwYTg1ZTZmZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxZVBmanBSYVpZMDNiUVdMSmp3V2RmeF9rR0RlTUZ3N3AzOXJ0OG94Z3B0TERxa1I2UmJDSjhzZVJ5UVlua0RNclhDLTkxcDl4U2ZqbURwbXAtSGFTTnFIUklJc3U2TVZCcklObGEwOGhGczJNN2M0cmhWc1MwYkVFTjg3dUpZIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowOTowMC4xMzA3MzAifX0=','2020-02-23 07:09:01.131905'),('0a6t3ymlpa95m72h3a9cr3cb0d17wagb','Y2ZjZWE3MzU5YTdlZDQ3YjkxYWM2NjIyOGJlN2U1OWJkYWUxNTExMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4Y0ZnYWFVWHA3UWM5WWxGbU1sZndIZWZVVjRvTC1kME83QUZTSTlvd2tIc0t2eGk3cG5iYWp4VEVSV28wQnhkRHZCa1BUeG1kc2tsNURSNlpoQ3JKSGlTTmRaanZQeWRmamhkWDE1REJXWkVuSERzWG9BRWIxUEVPT193QkUiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQwOjA1LjM5MDMwOSJ9fQ==','2020-02-18 05:40:06.393843'),('0aa8v2d8961o02wuwltbcox7t2iue08c','YTIyY2Y1YTU2ZWYzMGM5Njg0ZjdjNjE3NTY2ZmJlYTMwNTVhNDQwMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4X3ZfYmpuZC1PeTd1WHJMR0plM1RobjFHMlprdF9TRGRxb3ktYXJ4VUVFV3pBXzl6ZkhkUUctZEN3a3VNMFc0dW0tQURfN3FOX09BaXA2UUxnYVpfWnlwSkNTNGNMNlRLSWV4My1FaGpyOFNJcXRNdXBCY3lKdXRxdW9rTjQiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ3OjE5LjQyMDI3NSJ9fQ==','2020-02-18 05:47:20.423809'),('0aks4we22hizm70dpns906ii0fxc40zr','MjFkNmNlMzA5NzZiNTIyZDcyYTdjYTM3NTVlNzFiODgwYzVhYTVlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6OV9EZnJmTFhyOE9qOFZybnBvT3VSbG51TjFpejlXM2YtMU04MXhLdndvYzhkemRUSG1fRkdNb3FxSnRfemZHWEdYYmRfTjZNZXdTc1pDVlZSSG5Ra2tZbUxDYTZUMm5URDIxRjFSOFJEaDBfdTZWVmRKdDUzekxxb1ZBVVUiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjAxLjQyMDQyNyJ9fQ==','2020-02-02 06:01:02.421599'),('0cttz3siqkiog7bxgz3hibf4eln97gnv','N2FmOGNiNmFmZWJmNzBjM2M4ZTA2NjU3MDZiZTU5ZTk2ZTk0YTMwNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3TEYxMFU3RDI0elZtZkNxd0loZXJoSmViRngzOG5kVkIyYktQNjZyQllTUXVZSWhFaEdHZG1QeTdmd3NTeURSbGxLWUo2MVBNaDNxQ0laZ0pqRF9GQWQ2d1lrQnlKZzV2eF8yY3hNaXd4TEdBdkt3dUd5NFZJcmxRTERnOWVxIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0ODowMi40MDE2MTcifX0=','2020-02-24 05:48:03.405020'),('0d49yq0dig5a57w001mkv37fgq2sbglv','NTgyMzYzMDIxNTVmN2JlNTM1ZWViZDg3MzM5ODk0ZDc3YWQ0MjNmYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI3Mm51Nl9EMkxQZzJvRFVEYXU3YnhvaktOVTdZQXB2dTRRYzhzeE5jczdMZ2JHdnc4Mks1elJ6WkVJbWRoX3k0ZzhscWdlWWVNcUV2ZVhpUERsd2VLcGFlSHJjSXBZckZ5Nk9DSUtaTzQwMkZuMWxhSFFDeEVEUUZ6ZmptQzQiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ2OjQ4Ljk2NTY5OSJ9fQ==','2020-01-26 05:46:48.969313'),('0dv9luvmsoxi0c0xuxq2fp0tz0q6qapx','ZWRjYzhhNmI2ZmQ1NmRjZDg1N2U0OWM2OTg0ZDcxMTIxYzE5ODcyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5QmhMS29XdXdoOXYzWllUT3NYYTUtQktjaWU1aXczYktVS2pqTTNBX0xkTVFEZ2R3dU9raUdXeElITFBIT1Joc2loSFdVYnJIQ0Vua3BiSzZwYzg2M3h1WXJjQ3diZGN2MmFvQ09oN25RVm9WaUxGcm5EMENERnVUV2VYNllGIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDoyNy40MzIxMjQifX0=','2020-02-26 05:00:28.435813'),('0ebb4987bgqp4mofaxs6nmkye3aa6z16','ODBiYmRmMWQ2MmNhYTc0OTgzOWYzYTcwM2U0MmUyNzhmNmRjNTZhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2OEFnZUROSmlvLTdxaTJaU05qbmxhMFpEQXZtZlE4cEw1aDVWa1FHZzFHVHNLZnRWMm1xSWVNMVdSeElDOXQxM2JyZmxrSHZwelhYd1ZkSnZleFJCVElTOFRkMFdhU1dhb0ZYQkE4aUJIQzVjM0pReE1rUGQ3ZmxiOE5LeGciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjA0Ljg4OTYzNyJ9fQ==','2020-02-17 10:50:05.893089'),('0g7tw7azuqdgtgjv9qi1bl2vazzqv40z','MDY2YzNmMDVmYTUwNDg4NzEzN2E1Nzk3MGJkYjJjOWRhMzUwYzY3MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5STI2ODZrQ0NVcWltUVJyWnpTNFpsMl9PNWNZV3dYSEQ3WnBWUWt2WnFHaHd3RzVtTTBWay1aNjFQNkcwMlNxWDIxdkFwWFMzWUJOY1dsTGNzU2ZoNno5eFdqXzhaUW15VjlTMWxTOGh0UmN0V19wWGlSTzhvRGVSd2xDbjQiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjM2LjAzNDY2MSJ9fQ==','2020-02-13 08:10:37.038261'),('0gh7zflyqgfodlj7s4gy7o3lf8f150wj','MmQ1MjI4Y2M0ZTcwNWM5MzY2NTczOTNiZjVlYjdhMWRhNzUzYzdlYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzOWYxWUh0OWZYM0szZWl5c0dmUHFqR29hRXlfaDJhaWhlaXNxWHF4eTk0UWdMc29wZDZjZjFlRzZaWWNhNnp5QTF2R2JUc01fcG9qNWpUcDlveFB4bldFYUhYMkg2dU5BYTdpS3hjSnM1MEUzWUxzakdyRTNPSGN6MGN1bVEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjA5LjU4MjMyNSJ9fQ==','2020-02-17 11:20:10.585855'),('0gkswata1f1q8t4ue96kuu0i03lapbow','OWUwM2Y4MDhlY2Y5Y2VhMTc3ZjgxMGE1ZWVkZTQxZWQxZWVlMmMwMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5c01yLS1iTEtNUXFWdmtIYWVYV21kaUZpc0ZFclF4LVM0NXdFNVU1LUFvY0otUnVwOUhyM3U4UFh1TDBFRk1KODd0Yy1KVXpKWGt6c19mTWFVVkYzZ3lNLUFuZ2tVdUlDQnFBVUY5STlWdUd3c3JWbklyLURaTXotTVUwbVUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjU4LjE5MTE2NyJ9fQ==','2020-02-17 10:50:59.194790'),('0hvhd2j1h0hk3gby3uxz3lt2inahgu5u','ZDAwNGFmMjAzN2U0OWFmZDU1ZmVhNzFkMzRkZTkwNmEwMDlmYzM5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfOVV1MXUyc2lGTzVxWXBKYUIxckJ6Q1BoZmJzNVFwcW5raHVxRnYxTkEyU2I2Q01rbk1VTk4zRmtOWTdUa0RUMGZDWm4wRDRGV191TVJvMmtPQVE4RS1RVU1mQko5QkYyY0Q4SGZWM21ObDdVcnZJWmtCLWwtNkVxQmVlb1UiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjMyLjkyODkyNCJ9fQ==','2020-02-09 06:50:33.932551'),('0j8cduzahn20smvzngowj3e26hwrkzs6','OTE2NjE0NjdkYjE0YTczNmJhNjA2NmZlMzQ4ZjQxYTFmZjRkNTY1Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVc3JyclZ1bVMxOHFhQjd5N055NFB5UFk3cXFET2xDMTlMTkRHREJhTnU4NHg1b1Z1RGw4elRXZ05ZTzJGM0d2MmRfVmdwX0llNFNuQmF5SElReTNtWi1UX3cwYkRzdEpGOWNkVUs4bjVRLXpWdDRDRFNRWUJxdFNoalJLaWVWTUZIVGRWUGxJQXNERVpOSFJpUl9SUExSUi1iS0M3SFBnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDozMToyOS41NjQ1NTUifX0=','2020-03-29 07:31:30.568133'),('0mefoa9v7ddrm5aprl936hhx29kdtmhm','M2IzZjkwOTg4NzE0YTg2NjlkODVlYzIyZGJkNzZlZTAxYTg2YTI3MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzaGpzemNKdTZxRWlfTnBwVHpNZHFtRlRCcTdBa21zMHRsVFBRc242TGVURG9tTlYtM2VkeUNRYmpNd0pKbmNFZDQ3UmQ3Zm82NXFWbjJTQVBvN295c3drRTNJb2NhWGtYQUpoVmFtVVpYV0lLSTBlaWRQM0ljc2tGWW44bl8xeHRMZVk0V1BSRVpkTnVNQ3o5WElVSUhkY0o2THJ4cE9nIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNDozMC41NzA2ODYifX0=','2020-04-21 07:04:31.574132'),('0mije92adg2bl2o1gwa2bvqiljn6ngag','YTk1ODUwYWUxODU5NWIwNDZmYWQzYTg1MTNiYTRhNzAyZjFlZmNhNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIyN193bDdaMkVyUDM5cmVLNVdLS0kxOWZUeW50OVlMUE1sYWkxYWVydlE3TXNXeS1kWkdNbkIwX2hnZUFXTlctYi1zaDVXSGFQaEdIaG4zUG1ib2lFc3ROZGlxWXlSWGtocDRPMUJINWpSU3c5ck41bG51YkhkUGxvVlVySUEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjU3LjEzNDg0MiJ9fQ==','2020-01-23 05:26:57.138700'),('0n5v06shcpojyo82b07nk4z6xyh1nuxv','ZWM4MmZlMzI0YjZjNDIyM2MwYzJiNzZiZWQxNzAxNDQ5NWExMjRhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfem5ldU5jLTJiQ1Q1SVhIVlFJYTdXMHdyQVBsV2lMZ0RETml0RVVKcU5YSkROVnBOSmtkRFlrV2VlY0hBazJfSllxNnp2MWY2MzFaY0trTWJyMWFIalBNcHBjT2lBLXNhbTEzVWV3SHp4R1RpaEFMc3FlbW14RFJNcUVvTFkiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjUxLjc3ODQxOCJ9fQ==','2020-02-18 05:39:52.781909'),('0ng6hk722h99wpx532y54hnpf1m8076p','NmVhZmFiMDk4MWJkMDY4YjYwZDM4ODQwNDMxOGI3YThmYTE2ZTAxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxY2ptTFNvZm1XeWkteU9rNnRJLXJ6bzV0UmZfLU93OXQxakJXRjlCRFZhbXRmaXI0NC1KbUpIUHM1Qm9OUGVTLUExcTBaNnB1NXVTakRCWEx5Z0dIc25pTlBXdEN2SldwMHhjU21QbW1XYzNad0dfRHc2bDd5WTBuN0N2TWMiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjQ1LjY1MDMwOSJ9fQ==','2020-02-13 08:10:46.653737'),('0nw7zgkvufobau5rhzbq8dc9xi9pk5no','M2UxZjAzNjVlOWE5NDdjZjljMGNmM2I3OGIzZWZkMjExM2IzNmIwMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2c3VsX2g5X21GVlZoV1RPNGdQeGNmMVhZM2stM05RY2FiWFd0SzJjb05OWnVBazQzRm9vVEZpLVpBTHJ1dl9raHRhV1JOSi01cTJIVzZyTGN2dkZ5bmMzV1ZoXzlBZEpQQ3FPLXdQUDF6T215WV9nS2RhM0FVLWh2UTNodlFGIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDozMC45OTUyOTAifX0=','2020-02-26 07:30:31.998859'),('0nxhaszaduc6306nbl341iuf00ozd5f6','MTFjZjg3NmI2ZjYwNjgyYjI4MDFjN2JjMzE2MzQwMWNhNWVhMjE1MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6UGwyLVdCTDlJWHJ5ZExWc3ZmNVZ4djlyR08tamo2MHplY01uQmhxcGtlc3pTNWlDR2w3RmtCakp4LU8xNi1XeWY4UHcwMUN0Z2lOcVVBRFIyRXRlSGlBVWN4TVltQzBOeDgyRkVqdkFTcVJrQ2pzcFFscWpaY2hBbnZnTkUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjAxLjIzOTIyNSJ9fQ==','2020-02-17 12:30:02.242816'),('0qm1sudk7v0szqm2alny1292839u58co','YmIyZTU4YzM5NzczMGU0MzVlMDlhNjU3MmY0MWM3ODM0MjhiZjY5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzS095X3R3NktZSHR6Tll5SGg2dUlkR2t0bG1fQU5xX1pyRkk5QzhfNlBmdTVaRF90OV83V1dPRzFUQlVfdnNiUDhhQ3ZRZGxLWFdDYXFZejgzZFctMDlBVVA1Q2dkaGVDWC1zcENBNm54SmZ4dkxXZWRVM2Vua0hxbG5laGciLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjQyLjQzNTQxMSJ9fQ==','2020-01-21 05:51:42.438775'),('0r69xvjhyrl8rz8lmm4dt9hqenbk7euy','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-07-05 07:10:46.382054'),('0rdcyu3qpur6vnu1okh98pczgxtu85jz','ODcyZWYxNWMwOTEyYTMwYzA3MTVkZTNmYzg0Yzk5YTJmMGYwMWI5MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJfdnR6emNmRUlqZnUxVG4wNGlUc2lsbTlWUDdCbXZUazBON2pWOWplcUZVRVNTTWgteEJINXJVQ3FUQ3BWMTR4blY5SDY2X3JaMXYtTk82TXozMTh4M1F6bXJQVk1YM2JuYlU0d05kTnY5WGRGMm1NM1BwUkU5SjhReFdVNTQiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ2OjUzLjYyMzkwNCJ9fQ==','2020-01-26 05:46:53.625046'),('0rgv96ke77vddbrys0gium7ywbfrohe9','NzZkZmVlZWRhZjdjMmZjMTFlMjRlNGIzMzYzMDU2ZTBmNTAwYzI1NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzelplcjh1c3M3aVpzd3ZybGlTc3Z4VlNuVXZ5cDJqWkkwanZmakw5QnRrRkJiYUhRUTg2aTFjYTNJdjRWTDZROFItQjJlU0M0WV9aalVJOVNyN3lKNFlxYjJkUlNrVkZfNDJLUzhsM2dtYWZkQ2lxaHh6X2FLd25uQVpWemtmMmF4Slh3TXNoMVdUc0duRTJtcVpiNmlvQnVzY2FRMEpnIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNTo1Ni4yNTM5NDEifX0=','2020-04-21 07:05:57.255542'),('0ski1xhpiu3mkcqoo1uwjcgr50c6ldh5','ZGI1MTE3MmViYzZhMmUzOTc0NzExMTEwYzA1ZTcwMDNlN2QxOGUzODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4SEtQeDNwc2NIM2ZiVnY5WEZ6M3Q2dDVFYVBySmRiUnprQlRVVGszMHM5ZURmLWRhek5PbW83YW9oSWppcmJzMUtBeUc2a202Q1pXQlNvcUxkTFlDaHpvcUdONF9PU0RYekNWT1RvUF9TTUpoaWxBRXZZWmdwaGU4UDJOSUEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjA2Ljk0ODA1MSJ9fQ==','2020-02-10 08:00:07.951225'),('0tubxiigueuq8s9axdc359lx137ia8gt','NTdhYjhmY2I1NGMxOTc0MDBhODYxMzFiYzZkYmY4MzNkY2QwOWRkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1ekNySmw0eEgxWUNpa0VQNUZsbHFPOHVaUjNwMGtyUEJGLXlkUTAwTTRSMEowS3F0WFBURVNtS0hMZDJTUENfNUZsV3NYTS10WHVJMFJ1eW1WR3RaTHk2Y1VqRnJQck1GMFdwMFlvVmJFWVFwVGdvT0FmWTFrSGxTbUxWUVNEIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMjoxMi42Mjk3ODYifX0=','2020-02-23 07:12:13.633537'),('0v807ii8azkipui8953ddh69qtn4yobh','ZTgxMzFlMWVlNWVhMmI0MGM2Y2ZlNWU0N2Y2NDhkZmRiNTc1MWVlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1eXFUZ2Jsb3FZTG51bzI0YktXa0N2WkoyNmNvUVJKb2g0MnRGbDFXYlRNNDVQRjVaR25OVVBNNEVuVXVUWkY2cENuVDdrUTBYdXFfLUdORDZrR2dSVFotUGlKQWttRWFfM2tvZFJnNUllTlJZaC1vdXZyQl9hcDNkUktmQUI4IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMTo0OC44NzI1NjcifX0=','2020-02-23 07:11:49.876075'),('0vqtjtr1oirdohda447lom86g6fpxkif','OWE3YjJkOGJkMGNkODRmYjUwZjk2ZDZlOTU2NjUxYTNkNzgwMGZjOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVZlJmRC0yMWw0Vk1kQ0VacWk4Z0RZNHViZUVwT01MN000bm1mNzZ5bm84bXNPSGJNN1hpbmZWQzB6UUp2Mk45THJDdHBPaDRETERPNE9tTUtwQ1djcGw2NHhieXE0ZjVVQ1VfTmtKT1ZUZjUzODk1Rmlxd243OGtUamJGajZzQnV0cS1QaFJyNEhqN3JhUzYwQUZwU0NWX2JtZUYwUnpRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjoxNy41OTAyNTMifX0=','2020-03-29 05:32:18.593805'),('0x3gh53bswkgowescdi4qm6m0z9gw3cd','ZmU5ZDFiNTNmNjQ5NjdlNGIwYTgxZTQ2NGFmYjQ0MjFkMThkMmIyNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMxRHp0bWlTdlB4NE5SVmxpbzhmT0RCWGczREhSNUVFZVc5a1VEOHJTc3l0eTNwZGVNaEF4T1ZKUEdHZ0dVZ0ZlSXZvRGYxUVlRak5oV29nQ3lJcWtCRmVpdWdkZTZWZkFMUFFKYXVadjcwaU4wMm81QWVmWlNVWExkWjlIN1R3djdzNlVMOXNoX0U2SElqand3OHJsai1NVXVjd3A0b09nIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNToyMC4zMDcyNzgifX0=','2020-04-21 07:05:21.308371'),('0x532t803r59k7tfggpdow00uplyqqs2','Mzg0NzM2MDRmOGM0ZGU1NTU0NzBlNjIwYzdmNWYzNGY1YjI3ZTcxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5WmdFc0RsTWItQ0NjLVJ1RmE3bFZzU1NuU1UzR21IMEdtX2JMSV9ocTBhOEMzLUNZeHBzWmNVdWx4Z1dWMjZBbS1TVWZ4NkE1bFVkWnAwRlZ4TnExVnFoMmpNaElPei1GWWhvOXl5TDBNdDUtZVRRV2NFWkhacG1IaDloaWMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjE2Ljk3NjgzMCJ9fQ==','2020-02-17 11:50:17.980740'),('0xsfp0tqafikh6oq99kdirqbcd6bp96y','NGU0ODkzZDE4YWY3NzE0Y2E3NTkyMDliNGYwY2Q2ODE5MjIzMGRkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3Ml9RN1NqZHhrOUlIajc3aGF6MjZZS1BWdDlqOG13TXRuWUc4NFgxamRQTTRlcHNuX0lHd2lFZmV2Skp4Qng4SmhSQ2k4WF80WmJyVzdaaG9fSFFfdVJOVUZ4cTZsZm13bXRpU2ljU3BHZTZ5cWpxTFJzd0pTWDhtYm55dWd2IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMjozMy45MzY1MzIifX0=','2020-02-23 07:12:34.939969'),('0zshdvhof4u787zz5yktrsz00tbnvz6c','NjY0YTI0NzM1ODFiMDUxNjNhMjRkZjI5NzhmOWRjZmMxNmNlYjRlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5U01adG5ERVdOWlJNM2dmMWN5aUl4VmRiWXFLMzBnMERSSXdod3VieDRnSXFVTlEzZ2ZwUmc4YkdnVlBscmxFT3BYLTR1SGdoVWV1WHZuVElGd2dzbUlXTFBOdHJsNXlDYWJzR1NFYllQdlUta244ZXpaa0Vwd1hVejItd1FKIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1Mjo0NC40ODA1OTIifX0=','2020-02-27 07:52:45.484062'),('11t76ss8e1mf6qfaayvq6x6vz4inoy4z','ODBkZWM1MjMwMTI1YmRlM2ZmYzJjZDNmMWYwODM3NTJiZTQxMTgyNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Itcm1VSGRkRTFKYnBCNHhJX3dOSFUtVDFuZV9EWGtfZmxGRmFsN1JWWWUzRW52T3ZaQlRyMkdnaElGbUg1REFGRUREWW82MFRfazV3NWZvTjRPNktCdkdUY3pXeUxfdkx0T3J0UHctaXA1d0poTlI2TDhBQjRidXFoTU16WWsiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjA2LjYzNTEwOSJ9fQ==','2020-02-10 08:10:07.638704'),('11v3yd02o5r1fcfxvj4h6led7pqg3rlk','MzVkYTdhMzVjY2YzZmM1NWMwZDYyMjM4YTBkMzdhYjJkZDQ4ZGZkNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0ZE9iRGVEYXRTRlJSY18ybTdoQWxmcGRjYV9QNXZOeTZYcXYyMzFQczhhVWVFZ0psbmFxbzgtdXdXYThxTk5heEJxbk9ZeFJzWUVjRDBfeHBJTDFUXzlqaTBEY25ncGk1S1ZDZ2R6TWx5UFd5bHRyMm90b19CclhEeDZKNU0iLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjU2LjU3MzY1OCJ9fQ==','2020-02-18 05:39:57.577071'),('17o9oq9a0umsxo0o81jf62vxrryhsdlu','YzFlMDU5ZDM5ZTYyZDJjZTQ5NzY1MDNlNTQyZDE2NWI5ZjMzM2YzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1YWhmNmE2bXE3YTN1Xzd4R3JIZzJNd3NJSjIxVkxhMjRVM0pqYzltWnQ0RTV0VUdvdHV2MERGd18wUGZrN25RMUpsZnN1aGozWWRkbUpPNjNibFRtc1dMZWlXQzFLZUR1TENZOVZSWndJaDR5ZGw3c0RWb0xyUWlVTjV4YmsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjQ5LjE5NjIzNSJ9fQ==','2020-02-06 10:57:50.199773'),('1a4del0bym2pl3jczp5z844bhggn44po','NGEwYjZiM2M5ODQ3NDJiNDViNzNiMjI4ZTZiNjJhNGU5NDEyMDBkNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5cXFybTVZZU84WEV2dUZ5Q2JyNzVrOW5tdEg2VHN4QzQyU1pYMlF1Sm9TOUVBYTBMV2IyUTh6bGF0Zk0xYnJTcldraGJXZ2VoTUx6RGdzd3htUVQ5ZExabkcxQ0MtRUNsd1ZEXzBYVlBFc3FKaVdBbGd1R3FUVVUzOHhyVHhyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxOTo1Mi4yODUwNzAifX0=','2020-02-25 08:19:53.288470'),('1alqjoil9d96e492cydmfsub2x7e7p1x','ZWU5MTI2ZDhlZjVhY2VmNTA1ZDY0NGE4OGM5Njk0MjU2MmE4NzE3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5RXZ3ZVRCVGJuMDJpVHd1UHlJcnBlMm9hSHdFSzRKQmRUVWtlNXRacTZlRnV0WHUzQi0xOTkzS2JLNHM2dHZWZC1hY1BzNjZFTGF3aU1kOXdLbUVzOWpnWUVFSWNLcGFnanc5SVVkNjdaTlhmRzNLaXRjTGh0RFVvSTR1UVluIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDo0Ny44MTQ2OTQifX0=','2020-02-23 06:00:48.818101'),('1b8qkcw5hmm1l5h8aiq34nxgwst19iqd','YjI2ZmUxNjAyZTlmMjAzMDc5ZjhkYzhhYmU0NjA4OGUyMGNkYTk5ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5WUJvYzRPQy1RVlhlN2tDdlhUOHQzeHJ1U05xRkstOHp3VUE1dlVaSkswZTdNdFVpaVpTdlczWWFzc2lXU01qYl9MZjNHQWVORkJSaW82UW5RRzJtcU9PYk1EaHQ2bXlTV0QyelR2VkxkRVVqY3ZTcnkyZHZsd1BMSTVuMWMyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOToyOS42MDY5MDgifX0=','2020-02-26 04:39:30.608764'),('1dc1v5h8hluwkbwhxglm57w3xbev8veu','NWM0Mjg2NjM4YWU1NjdkYzkyZDA3MjI4Yzg2ODAwMTY1N2VmOGY3MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfdnFxdldKMDBsSFFDV3FYeXQwckFad0QzamNCeEt1MmZ6SDJRQUMyQUJFYWpqXzB2UG8wS0docEVOaDZxUVNCT2FINUZPUlZndlNOQ2pzS1EtS25pMzJpRlFqbFlBSHJiY01ZdlBUY0ljaHNNREMyQXl2NWJsYUxzSkdYSlJsIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MTo0Ni43MjkzMjMifX0=','2020-02-27 07:41:47.732772'),('1ds4mrlqot3vpuw6unvfvvm2oxq79lcu','NWNmZWIxYTZmNWU2YmU1NTcyOTc0MzQzMTgyNDNiZjA1YjAyNjgzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2aDVwYmFFZFRSVHI5NXk4UE1sSU9jTlBPYmRsanZKNG1IYkdYbi1OWk5kUVJ0V29lWEMxN3ZQcnNwN05kbm5KVFd5Y0pNd1hLajlIdVYxUnVOcWpscEoyLVpOQ3UtY1hpeGNBc1o2V3JVdWtlWmxZZUR3YzVvUkhiSEwtbnA2IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0Mjo1Mi4yNzg0NTMifX0=','2020-02-27 07:42:53.281820'),('1e94vxnr7v0qhz0r4cb9nxs8jfk7g0pg','NjE3NzU3Y2QzODhmMzI1MzUzMzgwMjcyYjA2NzQwMzA4NzdjYmYxYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzT2FsaDNSaXd3T1hYVDFIRlFIempHdnRTQmR4WXQ0bFlGLXNpd1AyaWFJRWR2SkVSSF80WF9GWkszY2dvOWZ2YjlPTUN1WFhVSVQyeHQwSlFQNjRNMjQyZF9QaW43dG9Xc0dmNzl3U0cwcjNlVW44dHg1LVg0a1FqWlNHOUUiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjIxLjY0MDkzNiJ9fQ==','2020-01-23 05:26:21.644390'),('1f6hzq6ugvmbnxjgy9xk7mtd77xgiu3a','MGM3YWE0MjFjNTU3ZTJkNDlmNDU4NDNhODU0N2VmZGU0Mzg1ZGYzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3bVhhZmltM2M4cTJOM1dDOUFHMFNaRmMyclY2akJ1Qzl3alVOZ3pFSGNuSFg1Q0hOel9HdDRxSmFwRTBNZEh1cURPY0QyUVpBS1hMLS1fbjR1eDJwdXVOdTI3b2ZPLWo0dkNCbTlUaWxJNHA4czlORmR6UGhRUWxjMXg3LVUiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjA5LjQxOTY5NyJ9fQ==','2020-02-10 08:10:10.423239'),('1gzs4g3xu8s260t0v9860azshiak92kc','YTA3ZjMyODFiNzA1ODVkMjAyNWY1MGFmYzI3YzVlOWVhZWIwNmVkZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfLUNKUThTUGhDU29yVmNzOTlOQWtVQWJVWW1PYl84T3B6UTZsY2k0Qnpad1g3QllIbE91aGRicERMcGZPREl4dktkdnp4ZkxtLTdSRzE0YWttUGNia0xocXQyRmFFZUtscDZDQ19jSzc4d3hyLUFrUndsbEdmZlNHSm81Z3BrIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0Mjo1Ni43MzUwMTkifX0=','2020-02-27 05:42:57.738518'),('1hozeblo4s0y8gqns90va9b0alywnrpv','NjFmM2EzZDEyMjFhYzA0NThhYjRkYTk0YzgwMzc2MWZjNzBjODM5OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyYTZIVjRnUC1xNWFaV1BhNEpPMkY1aWlfMWs3VzlHbWFPX045cHlSNDBWcEo4NEkxWG8xUWZPcFhMZmppME9PbUc0QV9qUzlmS25sNDBTODFtZ2V0MEl4X1l2OFlfRVJLRlVjb2E3Y05yaWl4T1FxVXFCNHJrNGFHZzVEUlNhIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowOTo1Ni40NzM4NDAifX0=','2020-02-23 07:09:57.477329'),('1hq2uln176hw1btsr1jmufm52rnbhp1q','MTNmZGNkMWI2ODMzYzA1MjM4ZTExMWNjMmFlZTA5Y2RjMjk3MGFjNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3LThmeXNSSXJVV3FtcHktaWpnNktCYk9wWkhjNVduVmNPenlZUjdGMk5MVmczWU5XWldBY1VLUVVwNTl5SmpWR25KUVVNMzVRNV8zQWV4V3NLeEZQUkVSMTIyYzVuaDk2Q1JkY3NIOFBaVFp6LVJuR0RFOU1OcFJYR2J4c00iLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUwOjEwLjY5MjAwMiJ9fQ==','2020-01-21 05:50:10.695433'),('1hq88jh36kwoehggq0v0uc3gnbn36dfr','YWUxM2VmMzQ1MmYyOTcyMmIwMGFkZWMyNTJkMzlmZjg2OWM2YmE3Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItTlplMjNNVWtDZDB3MmxINTRaRlIwREVlcVNja3A0Ykw0TWFDZ1FicVlUMTU3YzByUzZ3SlRGckpGbFc5Nm45UmpXbkJ3ZnYtWFduUGJSZjBxUG8tR3JGSnFOeldnRlNRRVpELTBCQzBLNXB1NEFjYndDdkVHQ3hjRGVHSmciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjQ1LjgzNTUyNSJ9fQ==','2020-02-17 12:30:46.839039'),('1i0v21gxerqpk0sb0my89ey0dhvhoijz','YzgyNjExMTg4OGRlYTE1MDRkZmE5NWQzYzY5YjM4MjhlNGRjOWI4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYMHZES21Gb251OTYydUNLUTFBYjZfRWNXSkl0eTk0RDFZcXExU05xelh3T3NfTi1XbmI2WkdZWXFvcFJ2QlR0eVRjNDhYajBSblY4ZFY5dTU4LXNrdExMX3A4M1JmaVNrTkI4MGc1QUZsMkJoVDBYckt5Q3MyZ1RtUklMa2lVd01RUEMweWZ2MlktdXRNVGtXb014dkkzaHV2NTJVNG13IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzowNS4yNzM2NzkifX0=','2020-03-29 05:37:06.277243'),('1k0m5upa2y24tdb6tarp53bvrx7l3yub','MDFlYjMyZTEwZmYwMDlkMjEyOTAxOGQzNGEyMWYyNDJlMWYyMzc5Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfTV9nVW5pa2tHRmZGaWI1eWZTYk9hcmJtTnlObE9ucVhNS0M3OE1MeTNlczkxZkZHTWJ6QU9Qd3A2N2NHNlE2M3FEQi1pRU1JN28xUGJEXy1IT1F3bnI1VE5UNTVpQkR5QmI0d1l5UFNoMTQ4cVFRLWxfcmYtX2k1Zm5Fbk12IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxNzoyMi4yMTMxMDcifX0=','2020-02-25 07:17:23.216691'),('1l8kpdxxx70mr5j0yms574zwomrch0us','NmRiNTc0OGI0MDRmOTgxY2ViM2ZkOGEyMDk3MjJlMjJhMDBhNTRmNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJfZ0RyaFAxeG1xMnU2V2hRaFJvOWFfbDdZTWp1RG1oQXkyVmJpV0tmMVBOc2dMMk5kT2Z4SU93SEFZS1laX3VQUldRdGpYY3VpSV8xSVVSdE54ekhmenl1ZVhBWFVpYWR1SEdtQ0NpOWpTN01zb213YzZVRmI0eFhaUjFwdUUiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjExLjkzMjg5MSJ9fQ==','2020-01-23 05:26:11.936406'),('1n9qat9alemvkbauldth6s3opsk9saun','MGRlNGUyOWIwNTIyYTQ4YzkxMzVkYzA0ZWExZTkxMWNiMDY0Y2Y1Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwMW84ekloc1Bld3doNE1iQjFxVjJYT3pTUzlJajNVYXJyMDNUR2k4a2VtUjBSRV9lSDc2cjZ6T2hkdHFmWDRFeWxwb1BWNUs0NXo5UXJfdEdjSjZXaDNZVDRYS1dJcUtlY3lzU0d4YzZvSHgyZW1NemdwTlFnM0c0ZnpKQmhmIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDo0Ni4wODEyMDIifX0=','2020-02-24 06:00:47.084639'),('1nbtehm3654dzcxnip3e9p5esp4v17c0','OWUzN2QzY2I5MzkyYzNhYzMzZDg4MWQ1ODgzMjkzM2Y2MTY4NTY5Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIxaDRIZDAyeHRvVVpEaWpwaEU1aGlOWWQwM3Q5c1g0TDhGOUg4aTEwdmwxdmVvSHhReUJxUjliSnRkSUdldGhZUFNnTTVfQjQxWWhCcDQ2dDVTOXZ4eGt3VHRQM0JEelJMUFZjTl9NandYM2lmcllCMnJKcXRVb0c2NEo1X0UiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjEwLjEzOTYyNiJ9fQ==','2020-01-28 05:38:11.143043'),('1nee5al108q4u894zxaxpphbtgqd0slq','NjVkYjMwMWY3ODI4MWFmMmQ2ZGMyY2Y0MWMyODdlYWM1ZmQ5ODI2YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI3NTFaTWg3TmtEWkxtRUZzNFhhYWl6cHhtdDZrMHYxREszR1RfbU9zODV2dnFHZE96OS1VdnhEenllWkd3MlA0MGVJb2RPVW9VN01PMUZjQ3pBTWwyRVcxb0JIT1RhUU90MlhUNHJfanREd1dUSldvUGhkT1VDY3YtY1VOUlkiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjIyLjUyMzY3NyJ9fQ==','2020-01-28 05:38:23.527349'),('1ngxnk0qupi53ktstlkj2q25nw3emxi4','YjdlNzA1MzllZjNlNjQ4YzIwYzRiZDExOTVjODQwYWJjMmZiMTY2Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItZ0gyRjM2aDRkWGNoSlRaZDNwQ2tIbmduaVA0cFdWNUZxdDd3WkFWQndHdkVZeGhRSUZYcG9rdGlEdmlnVE9GRHAzcXV2WjdvY01YU2JCRkRuU0tFak1OZHpNZHJ5d2VnbHRjZUpwMGwyRWFHaVVPYXY4TDB0VEk4bnlSbkEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjI0LjY0NzM1NSJ9fQ==','2020-02-06 11:50:25.650692'),('1pg32481vhx2wow0r46398gwsj7c4oul','M2NmYTkwOWIzYWY0NmIzM2M1NDZmMWY0MzZmMWMxOWQyZTQ5NzQ2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzWjY3Rmp0VWNUMF9IVEdhMkU3cVF3aF9UekkyUzhrUGdLZHNkM1BISFhJSlpBSFhZUDJJQ1dhcXlqM0hiRTh6WW84cEUtRl9IUmF5Z1JYRVd3dkFSUGUzQklIcU4xYXRSMnNzcnp1OV9yQm5wRndvY0R5MVdCU1BsZUVobGciLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUwOjU5Ljg4OTA1OSJ9fQ==','2020-01-21 05:50:59.890325'),('1ppsobtaqo603yn3er5pbeih2t49h3ut','NjBiNDM1ODNiMzQ1MzA1NTMwODcyOGQ4MDhjYWYwNmVlYWU3ZDRlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ4MWZKSVZIVzBEVzd3aFBlOU9MNjdpTm82XzgzUklkaHRrdEFnbUJvRmptM1dTdnlJOVctMEp1YzJIMkdFTDhQSHdwVnB6NTMwYnlDZTdsV0lQUWN3U19QeE1NbXJWN1BqaTNkT3pEdF9YZXZ1U3d1U3MtcHcwOWFQWldzdDQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjQ3LjIwODE4NCJ9fQ==','2020-01-23 05:26:47.211739'),('1q5m8ghf61rejhp5jp8r4w24tq5p8sb1','NGQ2NzA5NDdiMTE0YmM3ZjJmODE3ZTU2YzRlMjQ0NTMyMGQxZGQ5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6X3Q0SWFPQy1GNGdQZEdDSUlaaHJqeXQtclZCbFNRakVMN2h3X0Zyd2tTcFBrSGN4TUE1eE1UY3dabFkyVHhFMGIzSU1KVVZsVVgtQ0N0d0pKbjhBdUVfMkgzSHprN01LWXJLMFFGX0dLWmk3YjRNT3MyMHN1YmJyeWVhZ0kiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjE2LjAyNTgyMiJ9fQ==','2020-02-17 12:20:17.029435'),('1qcpe5w8qrifpfyrv5fyjh747h811f0o','MzhjOWZhMmU3ZTI3NDQ1NTBkNTljNjMyNzVkYjU4ZjFlMzZjZGJlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4aHF1RnlRcGFCdm5vLUlLdVZNd1V3cGRnVXl5U21rbERxdUpjYWFsY0FRS3dmSlBaV3pxNVM3X1c4S0xIRW5IbUszSk8yNkVnZnNFc0poenZ5VXpJUjNfYWZpQUJGS3BPTEhfcjJjRXZXdzlpblFkN0U5dlljRjFJb0lCa1kiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA4OjEyOjQ5LjAyNjk5NSJ9fQ==','2020-02-19 07:12:50.028640'),('1r93sep54oiavtw8ltcbtqvij8ieanzj','MjEzMDEzYmFmNTA1MTBkM2YzZTgwNTZhMzQxYjkzNWQ4MDVlMTBjNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0S0luMTk0Njgtdmw4S1A3V3hYbkh0OThCX2gxSjJabmx4ZTF4RUlJeTZQRTluY09ta1JXZnRJamt3dGZqN2ltb2htX3R4WVkzc0pNYXVjRnVXcG1XTTRJQ0x0dHhFNkg1LU5vWGc1U3hRV2Jtb3dhZnptanRnbnFOcFJBU3MiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjQ2LjI0OTM3MCJ9fQ==','2020-02-13 07:40:47.252912'),('1rkcb6xns0f9y0as4rz9h417zkwlxbn3','OTkxZmZmOTFmZWY5Mzg4YWM3YTIyMTRmMDQ3MzliN2ZlZjUwNzhkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ3QWRKaHYyR1NpRFVoRmRKVHdMMTd2OFczREdtYkpmT0t1TXdJN2c0MFY4OEozc0djM183dk80Q0dkam5TTWdpMHBfYUtuV2N6M0pmX045dWNQZGNuMFJNQUpfMHkyTjNyaWNIa2tRZmdPN0s4bVhkSlB0blF2NTJkNE1VQlUiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjQyLjYyNTk0NiJ9fQ==','2020-01-23 06:50:42.629380'),('1rzp0m4afssrba2n8xcayytovxfmm4c4','ZGM3MDIyZTRkYzNlNWIyMWRkMDM2NDRhNzc3OGZmOTM2NGQ5NmMyNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ6b3kyMVJMaHR5dGJmcUZvSHpEUmlTQ3V3RkNWM3ZiakFXbmhyUEM2eUdMS3dHaGR5OVhwTFFsbGw2SnZKT1RpenZGODF3Q3l5S0ZtSzZqQ1F5VkRHTGVMSEFjU1RvYzlobmpNeXRvOHN1UVZfWDFlZU9qblpmSl9RN1dnZU0iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjA4Ljk5MDAyOSJ9fQ==','2020-01-23 05:26:08.993765'),('1t56ktlv2uhzr3v159ixogyfrftpceho','NWFmMmMwMjkwZjgxNDBjNTVlMjNmYzJmZTY3OWRkM2RkMTc2MTk3Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1bGswTTRkVFNxTk5jZG9ZU0VUN0Y3ZmhzNjg1UUxoUG4tZDFhajZrUHJObzExSHdEck9sd1Fya0ZKTFU0OUlOYmZrZE9FMlAyRDhjQm5EeC1zcDZibEJVUjFvNUEzQUVhazNxZkczRG03SldNTWxmaHVSOWhMaGI0b2RDZW8iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjM1LjE0MzE3NyJ9fQ==','2020-01-23 05:26:35.146594'),('1t9k72n573y7n9p3icarxs0afl97jeqa','NWNiZjU2NWZhMmRlOGQ1YjBjNGQ5MDAzNTMxZjRkNjg3ZDM2MTAzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItaWMyemdIbWRjYlNkWkI1RW1XNFhEeEc3Ry1ZeXZ6RTA5R0RrTElJQU5neDdxb0V4dFlib1VaODF4TzJkdHJtNTNKN2dvNzJCN2UtckZ5dy1YZ3F5SXU3RjM3SXVsTkd2V1JENi1MUUxFSWl1enhQUVBOdlZwZFdmc3lTd1UiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjM4LjA3NDI5MyJ9fQ==','2020-02-10 08:00:39.077629'),('1t9xmg781xijg0w0gxg9dp60uuj74eya','NmVlMjMwMzc2ZmJiYTYzNjI1NjIwYmE0NGQzYmIxZjdiMmMxMzdjNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwd3VwUXgtNDVCd1A3UnVSa0pfX3RNLU02LWk1QnI5SHdVcDdaYTNSZUVqeF9GVTUxbm1FbXpBWDZpTFYyMHJMM2p6cENHcGFzQ1h2RTVWelNXby1CSHdLakQzUERtQWZRM3FaOEZyVU9TRm1fbjF1R21ZaUROMU9FSWs3cjQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjQxLjU3NzU2NCJ9fQ==','2020-02-06 11:47:42.580823'),('1tk7htoltbfi46w8fcqsnz6mx69ktg53','OTU3ODc1MjY3Yjk2YzAzNmZkNmZkN2Y3Mjc2ZTZmZTRiZTEzMjFhZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3Qy05Q2ZqcVhVZDBTcGVVSGUwb0tBQVFfZ19hM0ZpWm02enZaemw2SFZhN3gzT1hIcVpfdXBSM3RxU2x4WFNpMWJLU0FGTUhTc3lEUjhMdGVRaGZQR05KT1dqejdyb1ZiNzhJeXUzNlBvaVJUOUg1VFNIR2ZBdjd6THZZUHdhIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDo0NS4zNzU4MjMifX0=','2020-02-23 06:00:46.379228'),('1v1yp0iv834x2zs2p862j9yq9us86d14','MmVmN2MwMzgyOGRlZDY3OTEzMjEwNWQwZmJlMzFjMTQ1ZWU1YWI0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXcUZENzlqd0ZFWkJsS3lTMm5Ib0l0R1JzTW5XS0g4VmxZc3pVQ1NFQUozMTRONVM3cUJYREdfNDZlMVdaQ1dwVlZoY3pnWFZNVWJnT25nbF9qUjRDUVhLSzdOUnRXVkpKdE1pQzhCcmtqN1pFRG9uWWFVSFpFaHRmMmFyc2RnOHRwNVJ3LWNGTmZIc0lmOEMyLTEyOVUwcHNKWTFjYyIsImV4cGlyeSI6IjIwMjAtMDItMDUgMDY6MzM6NTguNTE3Nzk3In19','2020-02-19 05:33:59.545497'),('1vr7yz7z6hlabs0kyytl5b1wve31z88x','ZWRhYjYyNjhkZGIwOGZlZDJiZWM1YjY4NmE2N2Y4ZTFjYTQ4OTAxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI4S3VtZXVybG9PbnpYQWtrSjZJMzB2X2ZoLW51anNJdGgwUjNJZkZlMXo4SXNGUmFSLS1ES0FGQWJVVlBZdVFmQnhTNFRJU0VPeWU0M1RNUVFHLUQzOGJybGI2cUE1eVdOUjlobEtlOGs4OENpbWJVcl95T0I1YU9lVFFqV0kiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA4OjAwLjAxMzE2OCJ9fQ==','2020-01-23 07:08:00.016765'),('1wr8m64i9wqhfohruohs84huvox1p51b','ZjM2NDBjNTA0MmJlNTUyZTJiNDQyMGIxNTRjZjAzODRmZGM1OWIwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzeThFU0FWWFF6M19WLURUVW9nM1FuVDZ5V3p0Nl94RWFHalJnR1dpNWRHdllvcFBXUV9wbnYyQUpCQ0laZ2IwQUNfbFVaODdVOWdEM0VldUtNblFYZFB4ZTRmbEM5WG16R0VyMEktd0dvTmp3VlcyYlllVEQyMzRmLUJEcjgiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjIzOjA1LjAyNTc3NiJ9fQ==','2020-02-20 07:23:06.029155'),('1x8rkaepdje3ejydil64gcirnjy181m5','OGI3NjA0YjUwOTU1MmU2Nzg5NjFlYmE5N2UzMGZmYjg2NDhhODA5Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2N3hGTUtNMm5udzQ2SnVEZmhjbXVheWJud2QtclFlSU9oaDVEQWd4blJINkNSWFIwLUhObWhIRHZ3UUZqd01KcnFSQ0l4WTRybGU1dGlOVGRLRDFuUEJNeGNacUFGYm5MLUZuamh4UU12UDFRaGgxM0tLQ2g2aHRjYkFCWlUiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjI0LjcxNTg1MyJ9fQ==','2020-02-13 08:00:25.719263'),('1xyl6bwkm6e638mgecuqtxjk311671ut','MmFkNjNhOGU5M2RlOTBmNjNlNGM4NTlkNmYyNWRhZmZhNTJlNmJhODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5WGlkdnVfVFpqZjE0a1pzaDFkUlF1VUp6dkJwTWkxaFdSdFAtamNJcFhQTDlTUkw4eC1GVnMtSndGQmZldnROM285RTdib2ZXTkQ3MmhJX1lIXzRHYzdoaUd0cmlrUVlERERJaVZzU2w5MVhWWmNvVjNzUy1mTHJDZFBYMkk1IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxNjozNi45ODc3NTMifX0=','2020-02-25 08:16:37.991276'),('1ysja3nr1m2zpfl5iczrd7u2io5ienn9','NzE1YmI0NDYyOWY3Y2M0ZTE4MzJlOTg4Y2I1ZTM1ZGFkOTVmMDcwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMza0pKc0lTLUkwcEZzVUpsZzNmY1B4UC1HeDY3Sm9reDVQbjBnMTBjVnV0ckRPOUFTWk1rcWlBWmg0NTA1UURoUi0zNGdLYjVYQ1NxWUNYUnhwU29fbmp2ZGFheWljN21DdEZsM3NkZ3o2d3dOMVBUdXEzTnNPUjBqQ3d3OXZPbGhndDhlSldjeWE2R3QyU1lrcTdvTmpDUENaVHYwWnpBIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MzozNi4yMTIyNzkifX0=','2020-05-18 06:43:37.215531'),('200tqup1ym3veipegs1iz572o5k6vdna','Mzg2MGI2NWM2MjVkODk4YjVjYzFhZTVhNDJiN2M3NWUwYjMyMzM3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2bnc0NVZ1RTN5SFRuckpTOFpLbWZ4Q1NtSjU5ajFwMzAtRVhnV3pGUnZsS2JxVHJGUWoxbGpEMVBrLWRSY0t4VHVYemlvM2FwaUtydHpIbThNX09WcGxsaHVDVjAtY05DaHJ0TDZaQzA4akUyTFRFeS1VY0FDdjltdE9JaTQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjMzLjk0NTk4NiJ9fQ==','2020-02-17 12:10:34.949444'),('20bg7e45xc740a1pkv9ktfqn0rvvi6tp','OTY2ZWNmMDk1ZmY2YTU0ZTRiYzkwNzVjNDNiYzhjNTA1ZDM2ZjI4Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzUmpfSmVGUmhZdzhFUmV5U2RDSThZWEdRdGtzSElfbXh2YWdqcUxsYzFkbHJfRjZSZWhBQ1hvRjhkb3hPTkJxNVJUaC1hdXFZODduMzdBbEJ3V1h1NTltTXBmYm5PeFdXYmNkYzV4LUREYkdIV3l3VlJwWHp5bDRNNTR1R2siLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjIwLjU2MzU3NiJ9fQ==','2020-01-23 07:12:20.565004'),('20mr5xd70p7wyxhisw7baz23rp4j59fg','ZTE4YmE5OTExZTI2ZGM4MDUzNDcwOTkwMDFhYzU4NDNhMzY5ZjRjMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMwQms1RE5WdFl3MTJNVnQ2a1pWdGJzOEhueG1DOTk5WXNXNS1Hd01oR3BNSDlTSFJ3bHh1djNhRWtmN3pvZTNmcGstMlNxaWpROE9CX0d2d1lnVHVCOHMwbEpVdm9Mc1hMdm56dUpDcDd1N24xaVJueUpORXRidEpOWW9LdlJMUE5aTVVZQ0pIdG5BY1FkNldZOG04bFY4RUxBOGdEUGt3IiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNjo0OS4yOTczMDQifX0=','2020-04-21 07:06:50.300733'),('23lh7b7jo0on322e0n1z9qvan83iyv1t','NzU4MDY3YjM5ZjIxYmU4Njc3OTk4YjliZDQ0NWFjYzQwYmJjYzY3Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWY01HQlBXdjFlQTN4Zko0SXpGU3A5UnBuVkEtVTB6Q21wU04ySE1NWmMzb1VQNlg3a0NHU1FhM2NxNXF6eXJDN1llLVI4NkMxdVVVUDdTRXNUUmNXV3l6d1A0Z01jME5ud2J5bkFiQnh0RkJHWDJGTzNrck9ZZF9GR3VzVXctcER6YlZKU1NUcWdJNlFORzB0WGxGMm45UURRVmp2M253IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjo0MS4zNDU3MTQifX0=','2020-03-29 05:32:42.349209'),('23xgullxyxu1b2buohuxnhygzf2682uf','OTA1NmRiZWI0OWM2MTJkNjZhMGY5MTc5ZmJmODExNDU1NGU5YmM2Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxblp3ZzFYUGdGUmtsNWFFd251LXQyYk40TE95UUk4WllKSWRHMmRiYjR1R2Fpd1lzNEFoS0FScDlSLXRRUW5HVFlBVFJuOU52RVlMQzdXQmt4bjRmT1h3bFdyWXdmekw2aV8tVjMyRVVfTUpKX0d6TFRpRXRpSk1ZWFNGSHllIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1OTo0NC42NzQwOTMifX0=','2020-02-26 06:59:45.677615'),('24totlb6kilo6q5938wnbhl2wk3bohwm','OTJkNDFjYjZhN2JjN2YzOWVjZWE4YzQwYjBlNDU1NWMyNTM1ZmU0MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI4VGhhT2pyRUJMMVdMQVl3bzJpTjJENmR0TDVuSHNhVWE4R2dHR3FkYjVsUlZMUHBkY2pwSlJwUmc0WXV1Z3hHdEQ1VW1QcHA0MEZOVUVjVExaSkNYYzRsSzIza2kzZHhzejJ2LV9ZSjl2bFNjUTNqY29kRG5SNVRNTGJSa0EiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjE2LjY1NDQ0MyJ9fQ==','2020-01-27 05:46:16.657913'),('24ye88f4lr7p1ubyvlg5efxthc0yw968','ZGUyMjY2MGExOTgyYjI5NzhkNmZlODkwMzU5MTUxZjQ4ODkxMjNlZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5M0V2S3IwakM1MzRnZjl0UlpVa2FjY2t3MmlfZG45VUZUYzA1ZTVrWFNRVVVnaEZBbmduR2ZtWWNHTDIzMWVJaXdVVUd2dHRxanVMN1ZKUnhCSDc3T0NpNm5FWGxPV2U2MUZwT18wRU4xdnhfUWFvWDVTeHZjTzExTHQ5YkUiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjIwLjEwMTg5MyJ9fQ==','2020-02-09 06:50:21.105421'),('24zd1gh9ptecj01jftmzxmft0phcjmhz','MDIyNTNlYTQxMDVkNTY2YjRmZmYxMTcxNGEyMDdlYmNiZWRjNWIwODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzMTVsc0QwVXNCb0tnSzB0MjhtUTJKaFBXbEpXRVB5b18wT2FpWFQxaVphaDQzV2h0ck1tQzdZMFdGdzl1SmV6U2RvWjdZQU9KRktlZ1RZUTJjd1BuWFFsWmxqX0ttSFVIWDYyWWdSalJYTUtzb3ZkN0V2ZW1YaTNPUHlqbVR6IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDoyMy45OTQwNTEifX0=','2020-02-24 06:00:24.997432'),('2763qyoz4vlxkfoiukqiyex012wdup83','Zjc1YmJmZGEzMGFkNzcxNmI1YmJkMGM5Mjc1NzhlNTk1ZmI1MGEzMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6c2R3R21XTVczWi1lcG9jbmhHRFpIQWd6Sl9qZ1h1SmVlTzNhY0s1MXZWQ0FCRVd3ck8zb0pPVEFma3RocTAtaU5fZmJXZWpTRzU1QllEbHFBODBtTlJFLVRUTWk2SVo5MjNjMFlXeWxjd2JXbk15MTJBbEhCc1V4OU52QTAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjAwOjEwLjYzODYyNiJ9fQ==','2020-02-06 11:00:11.642712'),('27yr5jrdi0kvxjbl69bhd9unkt8y94uk','NmFmNDA5MmRlMDFjYzA3OWRmYzg1NjAyZTBkNTFhN2FiZDJmYzFhZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXaEVQV3hyeU9TS3pfb0xjZlVGdGY4d255LXJCWDN5cHNEMU9td1U2SGFkRjNzRzdubHNNd1dxUUpQREZHeTF0TzlzUThrVEo4VUcxOUVDaU02VDlWdnBPY3Q5VVJZYUJWRURrS3BWM0lPR3hqNmFKaThQXzc4NTI3S0ZSS3o4Rm5PakwwMV9YWWNrQ3NVdUJWYmwzZnk2TEFzR0lHMk9RIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNjoxOC43MTQ5NDAifX0=','2020-02-23 07:06:19.715946'),('28k4vl29zs7z6zgkw7soe5ak7fqbkn5s','MTk2YTE4Yjk4YTMwMzQ0NjMwNzVmYzEwM2VhYTYzNTY4ODExZDAxNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6VkdDLVB5UGxzTnl0LTNQMFFiTjliS3N4Q3I2Zndrd3NjaE56eXAzcVpuZ2V4dEpEbVhNQjU1RTJiYzFoYTUxS1FmQUVqS1lHQ195VERPLTJmclJCTXhDcWI5TmNlUDJwVDlFZWtEME5xcUNGWUQ0bjFhUHd6RkJDVnJYMFEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjEyLjQxODMwNCJ9fQ==','2020-02-17 12:10:13.421898'),('28von9kw2aboodmj3a3873cdjf617q5w','Y2I4YTk1YzEyOTBmYmQzNjgzZTBhMWVjZmI2OTZjNzg1YWU1YTM1ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5Yk1jR015Rl96QWZxQTlTX1dWUVB3ZE5LM2xUYkxKSkF3LU52R1h0SjRDakN5c0xjVDZaemc4U183VjU1OC1XZktQLVFjRFA5bDg2V25wcnp4S05JWmEteWdlSzZvVmRBMzhKZUxZeXIyRDhHbnduR2FGTFhwaFlWSTZVcWciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjI3LjU5OTc2NiJ9fQ==','2020-02-13 08:10:28.603268'),('2afn5pmy9d0ce0ihn3o6bmir8j01s3z9','ZTA1YWVlOWYwMzY0YjA0ZjAzN2QxNzMwMjFmZGZkNTZhZGU1OWQ0ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0aHV3alZQS1ZtZEFicWdVbEhrUjVTZFNVZ3lIRFRyM3VVZDktOFpwZVgwYV8wQmlnV2xHUVd6OWUwQkpZVGliWGpFVWhQQ0dCWTlYWndkV0RIYTBTT05pRjUtaVdKbjZUMjFqU0NVY2dmckFPdm5tT0NCOTczamdadFhvVkUiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjIyOjA2LjA3Mzc2NCJ9fQ==','2020-02-20 07:22:07.077218'),('2as3wone0gw9eypk3yc5aektqzaiu0sn','NjNmODMyMjYyN2U1MTJlMmQ5YzIxZjA1MTAxN2NhOTAwYTdiMDQ3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEItb2NDRjM5MkhwS3BBNTFiMGVCUmM5LVFrZnRoOVh4UzEyYklMdEZjNExJTkNOUDZZMVFUMzFOemlvaEdFOGpFODVDSU4zVkRJenZuM3kxTDVrSHV0Um5mU2lyOWRiUUFQXzRhb1JrZTVjY2Z1SDZ3WFlXUGVDN3BSY2k3eDAiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjEzOjM2LjczMjMzOSJ9fQ==','2020-01-20 09:13:36.736084'),('2b0e4g14wb9p5ncuph8unv7j06lkpyzx','ZmExYjU4N2U0ZTUwYzZhMzAzZGQ4YTAyNWQwYTM5NGQ2M2FjZGJhMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfV2lXRzZYVzN6TG5TbEtmMXV3V1ViU0daNEw3dnZGazJDRjVmWHpQbVl4UjRfXzUtb29jQVZuRm04a1VuUF9RdnZiYzh0VF8yQmNOZ3RhZ0ZKVlRKRjNtMHR6VWR5VjhQTW5rWXkzYlBaXzU0VGJiWkxjYVZrUmNqN05qaUUiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjUzLjU3MTI3MyJ9fQ==','2020-02-09 06:50:54.574757'),('2b85jxpp29h2trkvfj90w2penzvlx5yd','ZjgxNzY4NjRjOWE3MDc3OWFhMTY4YWZhZWY0YWI0MjI1N2VlNmEzODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3a0pNU2FFUXUzdnY4QnZKV0VmNU1MSnBNSkV2VHZjaEdiYkN2ZU5SX0UzbGg1eWF2UkhUSFhjVEdUalF5TkVPaENXRVg5bUlfZlpJdHVUV0tTUkI1Q2U5eGhZWkhsOW82dkJ5eGk0ZVpxeGJHcUUtNENHa3FlLTdTNXFmQXciLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjI2Ljg1ODQ3MCJ9fQ==','2020-01-21 05:51:26.861734'),('2bjb4fzn885u11wrp8ntz4s8769g5ccq','N2UzZWVmMjc4ZTQ5NzVhYjhkZmJhNjcxOTYzYjRiNDNhNjJkMDg1Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5OGdUTE45Q2M1VGhQOHhHUVVfSllDX1FsNGc5TlVmdVRkdXJZOW9INmNKUE85YkN5MmliSFczV05VSHZUY1NPeHlQRWJ1Wkw3SlotTk5lVUxjekFOQktGNzk2NDhoNms5OGgzZy1YcE9fdktKWks0MTFmby1BbGs4cWNJbnciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjQzLjkxMDU3NCJ9fQ==','2020-02-10 07:40:44.911947'),('2c0p1f3wgdi1wi5ltb0v3hnwjl54b5qo','YTdiY2NlMjFjZWY0ZDgzM2FkMGFmMTExNTZkNTFhNDI2NjI5ZjMxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4WkItWENuamlsSkR0QjBlLV9BOE1QbG03ek41N0FLbU1RMVRBMFJiYjRsTEJqMVFlUHZ6bTZzM0hOV3F4Q3UtSHgwaGYwNk5RNkZrX2FnNTk4OWxMR0RhMnpxNnNza3RxNFRWd3BoWjZHRmpPOVVSSDlaaVJHZENaQkVfSUEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjEyLjk3NzcyMiJ9fQ==','2020-02-06 11:26:13.978837'),('2c2ouo8wnznuyn63f1jqm2noufg1ybt5','NjE5MDA0Zjc1NmZmNjUxOTgxNzgyMzJmMThjZmE1ODI4MmE0OGYyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxYTJVQWRlV2pOeDFLUWpNdUVPMHJHNGdjTF85Qng5Vm9aRUhDdTc2VmlCQThyb3RkdEIwTlYtUDBKZ0kyQnVhbHZXX2g1YzlvZldEM2ZUeXQxUFdkMG4xUVlmWFZfbEVsdXA0V0Z6RWMtMkpKdFpwS2RZODhjUmlLaTEyWnMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjIzLjAyNDI4MyJ9fQ==','2020-02-17 12:00:24.027735'),('2dbi43f2e0iutk3nrk1g25yncck2oyc1','ZmJjMjlmZTY5OTIwMTZjMWIyNzJmNDQ0NmFjMTlmNWRiNjQ2NGE2Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3bFp0bDVhTDFleUVJVnhFc3BxVlF5WVE2bFlxUUZLMkZOVllLa0dsM3dKb1l0ZU1NdnR5MDJRVjA3cE83TzNSd0poN3dTaVVXZnVjdVFqWXBlRHRaNjQ4a0lvRGN2MXVDcUZWQzZxWGM0QU0ySFZ2ZVMwZUxRMlFiOVVoNDgiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjM1LjM4MDUxMiJ9fQ==','2020-02-20 05:59:36.383949'),('2eyr8iukr869treby4c909hcu3spkf3n','MDRlOGM0MzJkMzRhMGYyZjYzNzEzZDY4MGZlMjcxMzRkZTFiNGRmNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1TWI1Yl85YnI2QWthcVp1WmU4UmdQSl9GNUluY3BVWGZkeHBrN284Y3VYMnU3SDNqalZ4ZE5UWTVRUkxnaXpVWUhkSnNodjktakR5VHczN2ZWSEFMcE9ORXFyWld2VG5laW1vTE1VU2NQYThOYm1WQTh2VVota3JOQnpQWmMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjU5Ljk4NDcxNSJ9fQ==','2020-02-06 10:58:00.988189'),('2fhnb83wf1w1e2ap5yaya9n2gmrseyee','OTZhMTFkMTUyMWJjODljMDgwZDUzYmVlZTUwMTdlM2JhNmE0MDQ4NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUIzNWdJNTlfemROQ3BZckpNRlFSaUxkN0JrRlpHQ3gzMjVxNVhaUVlzNXAwMG55MEhvQlhqbUk1MVc2YkwtQndNQkVBTGVKek5qYk1CSndpRDI0NVFENEpUeGp2ME5JaUZlOW5oRHZXcmlybm45dDN3dGxaXzFwTGhZYWF2aklSIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NjozNS4yOTg0MTEifX0=','2020-03-16 07:46:36.299904'),('2frxf3brv07pwha25pwqk5t064emqyej','YjQ2ODZjYTBlMjRmYjJhZGRmY2E5YjAzNmY4MzM2NDkxZDNhOTFiMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfSHpJYllYSERnSGhWSUh5OUNUS0JrZHVVSmJIWk9aTXI1N3RheFpPakd0bU84bUdYZFdKRnBNQVdMMy05VVFPTzVjRFVwMVJmR24zRjRMNS05NnB5UUVhcnNLSVZyUXZTZlIwQU5MaW8wRkl0QzhGLWI4S253TFl4U2xrT1UiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjM3LjQ1OTU1NyJ9fQ==','2020-02-06 11:26:38.463011'),('2fyqyvqncxcsa1m45yg85j5th8dx1ec4','NTZlZjBiZjAyZjliYTQ5MjYyZmU0OTFiY2I0OTgxNzRjYjIyOGE5NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUI0Ql8tWkNOdGVKVTdQUzh4TDRZWGR5ZlExOXVYQ3RSdVBSNllKVTNxUXoxUVR5ZVllZlVpU05Db093OU9XX0RZYVRaeVpSQ2paZ2dUVEo5VXE0ZXM2NXZZYmRpMTZkNzRzZEs3LVpOVXdPMG1yMjRHcU9pRWRCRTNMWktDaFBQIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NzowNy43NzcxMzYifX0=','2020-03-16 07:47:08.778744'),('2gpppr9puqsezipfu0o8bw0czwj8i94u','MmUxNjMzOGNjZmJhNDJmZDU2ZmE4NWQxOWRjZTAwMmFhMjgyYjlhMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0eVlkdDlOSk5sYm54RkNWMTBCTDltOVhyY3dsTkZteVJ0V1lndExXbjhfSTZCMmxzMDRMb1pCSUZwNFc0SFRrVGxiemhzcG9ZU0hwYU9WWXAzcjNmTzJzTWF0MVpxeTdjN0w0RnlpVi1FdkVWOFVmbi1qbG8xQ2xMbUhBR3ciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjU0LjM2MTkyMiJ9fQ==','2020-01-23 07:07:54.365589'),('2ihgzk8fhykb7n59s175umx39x1o1kit','NDkyMmQ5N2E0M2YzNDA0ZDI1YjEzZDNiYWU1YzI4Y2RhY2MzOGMzNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2YW1WTk9meDZuUjcyREY5VlRDdnNyaFloTll3U2dFeWRrdG91RHJpT1dGX0VkYkowU3R4UDhQVkVYX2NzeVFYaWtNOVUzYVJLcHJXWGRwd1RfQWZDakJXc2dzN1hjRXI5ZVRKZV81ZmhzbkxwV0htbkIyWkhLNV9NYUZ5R3FDIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOTo0Ny40MDA5MTIifX0=','2020-02-26 04:39:48.404366'),('2ihqsz073b5qpyykop9t8j1qh8ng9c3z','ZTAyNzk3ODdiYTI3ZTViNDNlZjY4NWYyYTBiMzJhZTVhMzE5OGYyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3NWk1M3gyZlJjeWZDT0FOQ19FYjBFMGg3cjZJdUh6UGE1TU40V29URmQzdlB1eGNLVDh2MTZhSFVzN1JxeXVtV3dwUGNBR0p2bHloeW15anRBdERLUEg4eHdVSnRrV2lmUElOV2s3cXh6a3dUNnA5X0hsWjhqQWVKNUZNWkdzIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDoyNi43NjkzODcifX0=','2020-02-23 06:00:27.770739'),('2j7m34x6d000nur2xcfit3mn59ivivgk','OWQzM2JiOTIyZDkyNTJjNGFjZjU5Y2FiZjk0MTU3ZDUzNzZkMmM5Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5cnJ3U2VuMEtFN1otSlRacVo4VjJ0d3d4SDAxeC1vMWRSSldSbFROaTAwYk1BR3ljc1RRcDIzWGhfYjdFbFJucENFcDdJY25mNmZfWkpyUUt1OF9YSTVrY04wcXYxci13NVpSNk9YbmRkQWF4OGtBWGtrNTlHZnRzcjhjcHNHIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1Mjo1MS4zODQ1ODUifX0=','2020-02-27 07:52:52.387014'),('2ksvmm7inmfecda3mdkou6z0ykalezap','OGFmMmYzMDkzY2Q1NWRmY2E3ZjUyNzc3MDMxMWQxODI2ZjhiMmQxMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzSkFGOFpvMXJyd2JvRXNoREtiWmZ2emhPczRlYkJUWFpGN1hCWkJUNGxwLWIzckhnNHltYXhzMTZucDNiQUg2OTY2Wm9ZdVdSVUx5UFNQVndZUjVsTndrOXJybnlBOU9wUHpLb2tBY0p4ZFlhc1JOc05yWkkxT2xWMGtqbFUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjIwLjI0NTQwOSJ9fQ==','2020-02-06 12:20:21.248890'),('2kzzrlhcebb650tzypbhjvmmlroqir7d','N2RhZjNmOGNlYjEzOTk1MGMzZmI2NGNmNjc5YWJlYjkzY2E0YzViYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2aG5YT3V6eVd0VjhVYXJPOUlfNGFIMThaVnNtdkZnWnYtV3NXSWlZemZ4VEVfbjRSUFA2b0FXWTRvbEJqSTFCdW5OYmE3WjMwRHIzdTVST1I3VU9PVFJtWVFqVTE4dlhNWXNmQUc5WG1GN0I5ZVc3NzRiYW5ocWtmTDJvQzgiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjE4LjA2MDYxNyJ9fQ==','2020-02-17 12:10:19.064283'),('2l6mt956rkjat4f855rr2kjcl7tg1f87','NWNjMjA0ODA4ZjU3MDYzZjMwYzQzNWRmYWExMmUxNjlhNDMwYzM0ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2VnE4MkstY0pwdkJpYTUwVzNGaVp3NnB4OGM0b1JGLXl3MVJNaFMtMTlqY0doV3E1MlFLSER0SVhqbHNsWndITVdVZThoR2RlbkQwRGJ4MzBqSXlJZ3k5MmFtQmRCbUFjajFZdlFGejdLU2t2RndqU3V6YS1Pb0NhZkU5TEEiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjE3LjcyMTIxNyJ9fQ==','2020-01-28 05:38:18.724628'),('2l74kqopnfn06vs2wdul24wi7l0c6rbe','YzgzMzA3Y2QzOGNmZjgzY2VlZWY3ZTMzOTgzZTJjODNkMTlkZGE3Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4R2pUQkRnQUdUMlhmeXZKV3NJWG1pUm1FcmxJNHd0ZlVhUm9STE5Kc2F0TFhTTU9RUmFJRGw5Rk5QWU5adU4yNlZhNWNyWnFHYzRISGtGclQ5MWYyRnhJb2NuWUttbHJvcm1FZFlxc2J4YmhrcllNRkR2TmREZ3V1cldLN1UiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjU1LjQ2NzM3NCJ9fQ==','2020-02-16 03:59:56.468694'),('2lkd6609cbvabt6i8glvapcjxa7j4oeh','N2VmOWM0MTRlZjI4YmE1NmJmNGI5ZGQ0Y2RmYzQ3YTgxYjlkYmJmODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0bXA1TUJNbEZaRVNnVEN3aUl6N0N6TGFZTUxrN0h4TmhhaERWcmFIcmZvZC1OTENwS3VLMkNPQjdWUFVkaW1mREhqS25KaXdNbng3RW9TSFZTLVd5ZnNSblhWX3BaUFZiU0FkZHBxMkgwclBQZFg4WjVhZTNaZUJZRVRHR3ciLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjQyOjQxLjg2MzgyNCJ9fQ==','2020-01-20 09:42:41.867084'),('2mtkmwpdbu4tp5x5hnqylw4h0pe2geoj','MmQ1ZTI4YTc3ZGUxNDIyYzc4ZDIyYWNhMzE2MWI1NTU5MzU1OGRiNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5QUFrSUx1aVVoa1RoZTZScEJDMnBUNDEzcXBrU1JLZGNpUTZSWGRmQVdVeTdjd2NWbmVEaFJHcnI5ZlVPUGxyR1U4Q3F6OUM2dElhUk14VHZMNFdGSlhFb2MzcGl4QnlXczdXLXU3SjIzSUFlZHhnWXVyRUdfeE1zdmhrX1EiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjE1LjQxNzc0MCJ9fQ==','2020-02-06 11:26:16.421085'),('2nse6oahoiw9hfikefzob36l1ua5r8tq','MzZkOGVjNjMxMmNiYmQ4ZWU5NGMzYjBhOTJjMjQxNTY4MWI2ZmQxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwbjNtX0sweUlpZGVBQjNESW1lVVpJM0VydlV6UWp1SFY3MTdNbEVqcGlCakdfMUNXekxuLUV3azdnMUQ4X05OTVhTbmFnMmNVT3NCSllLQnExcjRWOVl5dy1Rby0xbFFBWTJKLWpraWptOHlFUW1FcEpBLXZPOHdaWDNjVFEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA3OjE2LjkwMzk2NyJ9fQ==','2020-02-06 12:07:17.907683'),('2nu3vbck0yisexdhej5ydvjfthxs7vcb','ZmY0NmI0ZDVkNmM5ZTIzZmJiYzI0ZGFhZDVkYzZiM2E2ODgyYjc4Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4T2wzMGRBRnRodUhFUE83VzJJRTY4Tml5LURaN1FhQWZzaXZCYmwxekZ5aFBERFAtX0U5UkJnZE83dVhfb2hvY2l6SUtUaXJhSmsxWmtjeVJWbzlVd3JkU3F0Vm9SWVVqZWNZRndDMFE4d3lFQkR2aXB4c2tpWnN6eUpZM0kiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjQ5LjY1OTg3NiJ9fQ==','2020-02-02 06:01:50.661041'),('2o0bic3k4ieg9gwkxmoptrr4hdla137o','MjNhYTkyNmI2NmFjMWY3NTM2NDBiOGY0NzBjZDUxNzIzZjkwNGMwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzLUM0ai1RNzlrSXFBVV9oY1c4WnlhSFlzYncxMlZ1bm8yTXJHZXRVbmhPWk9lSFkyM0JRczJpbmZXRDZyY3daeV9SMDIyYTR2dW5GZjNpQU5hNFc2dGN3dlVmb3UyU0xLaVFvelUwU2JaWTdFb0ZTeFMwbTNJc0tzVWwtRjQiLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjA4LjgzNTQ2NiJ9fQ==','2020-01-21 05:51:08.839075'),('2oac8a7t9y4g2ws3nkpzuxeuwlbh1teu','OGZhZTViMWNlZmQyY2FhNWY5MjNmZjM2ZWRlZmFkZWExYzQ3NWZmMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1QnVRODZ6UGlDWFRFSFdpTWRuVy1yQTgzRHVKOGFjSjZOdC1nV0k0MmVLTTZzRWZEZV9GYWpROGJpa2F0UVJDUnFsNmlvUmRubFROc19jQmNrVW9iZ0puYS04Rk5Xb2dHaXNWam9VTmUxZFlhVVdlTnQ0OEJNUmIzeWF5YWg3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowMzozOC4xNDE4MDYifX0=','2020-02-26 07:03:39.145269'),('2oo7fiorkiq2iuxdr0ojakwqah4xiusq','MThlMmVhNWEyYzIxZjBlYjdhYjg3N2JjYWNkNDEwOTRkMDI2YzZlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0SXFQcUxIZkVCNlI3ZEl0SmQ3Q0t0RmtGcUhSSG9BTTRPX3hXcDgtTDZIMURzZlV1cEI2eUgyRWI3am9tZjBBcXRSVk5HanhoMzBqLWkxeXU5dmhhTG9wNlg5dUF2aU1Rc3k5UnVnNWxJc1ZTYkFOZnpiZ0lkSTlHeEdPUEUiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjA0LjIxNjE4NyJ9fQ==','2020-02-19 05:34:05.258491'),('2peusyjqpk10nb68x5caopn9mp2yufir','ZmEzNmZiM2YzNzZmZDhhNWYyYWU3OTdiODJlZGYyN2ZlMjNlNjdjYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3S3gwalFqaWJtRWlRVTFaZFMtSGRLS1ZWOGhtSlpWQ0tJN0h0YjAwenpvSWlzMUNfdF9jUzVGMXU4anVEdXRXajJ0Q1VDc29iMEJVMlhsYlN4YkJMRGE2VXFpSHNJYzFTQ0pqWkhpbGdxZVZBNzNiZS1HNGxrZ3UzZ1lvdFUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjQwLjE5NTY5MiJ9fQ==','2020-02-17 11:30:41.199231'),('2qeb51zzq2ba5ddnj2w3io4w3zcwlg42','OWViODE3NWI1MTgzZWQxMjY4Y2MwNTRhNzg0YWMwOWRkZWQzYWY1Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1WUN4NWlLMkcyWDhIdGZvX1Q2Zk91cy1XU3lrWVpseGFiX1lZZTNBdkRGRnpobG15V3ZENzN6QVI5N0kzRGNGYkQ3MDdpSlJFTTVtRG1hbFNKQk8td08wTXdzZmNCbnQ4WTRlMm5sRmRXVkRvZFlVN2FoWHJzR2RPOVAtQm1CIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjozNjo0OC40OTc3NTkifX0=','2020-02-24 05:36:49.501348'),('2rmhk275uzp1qgvmlt9lmb7pqwk9esgi','YzkyODQ4NWFhOGNkOTRiZDI3OTcyZjBiNzg5MmI2NDY5MjI0NzZmMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItZzgyNVlhQVVEQ21ENFhDNGhwRmNISF9ob1dKdkd5aVhYci1WcHJ5a3hETWtvdkw2OGFocldjWWxxM2RHZm1RX2xZZlpNLTZEcWJablYwZ010ZzRLRnAzclJrSm1ZNmVhbzhuMnRPeVZXbUxLTGRIclJ6N0JYV1ZvU21rdXciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjE0LjkwMTI1NCJ9fQ==','2020-02-06 12:20:15.904629'),('2tdgcquau5w7ekzmv4e35da4ipvlrdon','MGY1MTczOTVhNDRkMjM4NjRmZGMzZWJiZmQ0NDUyNGZiMTQ1ZDE5Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0WVhDdHB2enh3VmZFVm16RHAtTTJCdjlIMDRmWGVuZFR4UnF0QkxTeFpTV3RPd2toMUdGaUhUZHM1YjdSRWVxRUpCRzJrMWhTUW1tYTNMYTE1Ylhpd0YtTTI5Y25wUzdNWURkX2JhOVk4SHkwMVJCeU5IbDFMbTF6MTE5bjQiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjM3LjMxMTI1NiJ9fQ==','2020-02-09 06:50:38.314770'),('2wl5m52br8zggwvvmpiec12jsk1j9p85','ZjViOGNjZjU0Mjg1YzI0OWIzMWIzY2Q0NjBlYjJkOGQxMDI5NDQ5MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYSzNlU0RISnhwdndwZGs2MGZBVV9fcGhLbktsNjV4Z3Bkcm9HaHNfLTU3XzAwS3ZRbmxLNkowa3FtaFRLallpNFlKWV9kN3pKUHdwdGt2bmNNTm5vZnVhM1FXa0dueDlZcWJmS1BKbjB0cWRpQ0gteVlXemxqUFVxVFppaVVLX0RFYzRMMmQxdTVHa2FIclFuOGFoZDdUXzZxNnNWNnVRIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzo0MS41MTQ3NTgifX0=','2020-03-11 10:33:42.518205'),('2yijaa36tonahz76tnlnn1sq6qgkf12r','OTk4MzEyMDhhYzExNzkzNmEzNmNmMTdjYjNkZjA3N2YzZWQ0ZDQ4Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0J6Q1pncGFIcnBGUVE1ZkRYNGx6cFBEcWNkS1JreU03VXlzTktKODMxVENFNTZYSEtQblRlU1RfWjRXUmNpRFV3Y3ZSYXZMRnYzZHVwQ2MtclpKbTBTZi1xdUFuSmFzNnJvdTg5WHVmZXVlNE9EME9CQWkwTkpMbGNRU1Q1RzR0IiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMjo0Ni40MDkxNTMifX0=','2020-03-10 06:12:47.412765'),('2zm99ny0pnmwen4c862oitjcjtk2w6rk','MTljYzI1MzY4MjBjZTAwZjUwNDVkN2Q0MjU3ZTc4N2M5ZDkxMzZkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwaVFEOTJRWHdMSktGYktXSXlEc1VSWF9TMm8tUzUzWndsZk04N1hfSUFtcHhOUExnWlZyWjFPWFItSXFNOW4xdDZWVzhuTG1COXN3b2dzRVVkRnpmaU15WjY1LTkwNEhCU1ROSG5GWi1OM0U3ZG8xeXQ1cENrSFZKcWVuU2ciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjUxLjIyMDI0NCJ9fQ==','2020-02-17 12:30:52.223759'),('32apddmrmfmwb843vu028ck516cwtop6','ODk2ZGY3ZWZkN2QwODdhZGI1YWIzODRhYzU3YWFmOGZjMTRhMjY2ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4ajl6NGg1WmktVlBzSEFwMlQxTEVnMHFqWVVLSHhFMDNVMVpCQ182WE9zTHdrZGtzTnBmNmswMHdYa3lFdi1mTXdpU2RlakFiTGl3MFdxTm5PZTU3cWhOTzNxR3NVeno5MklDTG5Vam01WGhvTTU2SEU1WFR6c2NyZWZOZm8iLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjMzLjg1NTc4MSJ9fQ==','2020-02-19 05:34:34.859391'),('32nmdwqo0cregta8fvzn28peqr340zcj','NzA1ZDAxZGEyODIzNmQxMWJkNWRjOGJjNDIwZDU5ZTBjZTBiZDQ1OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1b29SMUxfUEZkTWk0aVZDT04tYmY4UDMwVnlGa2xFRnlsbjlBRG5BUVh4Y2REdDFacnZhajhEWlZxOE8tMzFfNW4xc3Vkd0hPUzhJaThmdWpyeUhsb1hMaXF0UFUzTmRReFZMQ1p3MU9oVDVQd1ZxMXppQTFMa19NZjVKNHciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjA1LjA0MzE4NyJ9fQ==','2020-02-17 11:50:06.048824'),('34rz53mwck6n9z5745lalf92w4da4tqd','OTVjY2Y4OGNjMjA1NmIzNjJmNzZmYjVmYTQ5MTI0N2NkNzE2NDI4Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzdG1Xc2NiZUdBUW04S2Vra2RLR3A1aE1QbmVRUzI2ZDhidjZ6QjdPWXRQejF0eDhnWjBqWmIzcXVyellTUlhULW5fbXRiZ0dXdlRibTFiTER6SzQ2ZldkNVdTZnY0MVZZdmJYRnBkZ3FQcEJHS3Y1U28tV2VFWHFKY2tOc1EiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjI3LjkyMjc0OSJ9fQ==','2020-02-06 11:50:28.926351'),('35ao7zp3oxd8qtl62hmyqfi45os53fjf','MjQwYjcyZTZiODNmZmFhZGI3ZjIxNjIyZDY0NzEwYWY0MzY5MzNjYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUJfUnJiNFVPaUZLN29MQjM3NUdvX0RyeFhONi1QLVFXNkEwaUY3SGxRZ1lzWFlaRmJjRGpEZW5VcU9fZjJ5a3ZFX0xDbjhoTnlMay1ITmtBWFdTcmRHNF9sb1pEajhqN3A0WkVUMDBDVXgzc1hRRWJqLVl6c3VxNlV4SFk4THlkIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NzowMS41MjUzMDUifX0=','2020-03-16 07:47:02.529154'),('35dqaa9b7085a6jhtm7ernfonnkgreiw','OGRjM2E1ZjEzZmQ4NDY4N2Q4NDdiNDI1YjI5YzZkNmM0MzJkNmMwNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3RHk0QzM2cDQwS3JYa24ySnRGQXlIRnEtMjMtbGViN0RiejJfazFYMjJIVmI4bTNHeks4VjU4M2NfUWtzdk5tVzdXSnYxLTItUzlTOWp4RDZVS3RLdE9LaXM0ZnRNZk1tS1BHT2VZQi1Ubkk4YWRzTE9yV0tqUmVXQXJ2ZWciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA4OjU4LjgwODQxMCJ9fQ==','2020-02-06 12:08:59.812222'),('37oa904hfawmcqukpc9gozm4yycc6fd1','MjMwOGRkODczN2EwYmE5MGU4MTJjODEyMjIzNjI3ODQyN2ZjMTRhNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5dXFIeEVoUEdvXzBnd1JjLVBuMTNMMlhaVVMwd2NwNm9LY2Yzd3JqWjVIVm5VeEVjN2ppNEFvMnBMcGE5TWRQMWNBUUFNaEN0T3YtV2RoSVlQQUx5MVdkY1lZNFdXMllEckp4N2ZNbnFkZF9JQjExOGFXaWU1enVRN2FNVTgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjMwLjkzMDY5MSJ9fQ==','2020-02-10 08:10:31.931973'),('37sdzrbxemuqwn8jsjgjd8y4y8gg3uqc','YjdhOTExZmJlMGMzN2MwYmIzODA3YzBkNDViMzU1MTE2M2I4MzIwNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJfa0VtUkYta2xLWFJQbFhxajZQcUtfNlByd2xZOGhaZjVzSzlzZVRNb3V2enBrdFZYemU1Qmoxd09PRFRWVEpOUFhocVFYTFVKdC1NcmI2SThmVWwzZ1V3LVo5V3VSMUYyWDJSMFo0bm4tSlZpalpBWGk0SllHOUhyYncydkEiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjExLjg3NDc1OSJ9fQ==','2020-01-26 05:47:11.878495'),('39fwnkmvb3n70yodza298qgx54emm5dv','ZjEyNGQzODM3YTMxODFkMzg2ZjI1OTA0NmIwMGVmMjQxZGUzN2VlODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5T1hkS1VCRjM5MW80ZEVNUWZQRl9DYVc3b3c0aHFlXzl0RXR3MDVORDJtNVlfa0stUFA2SGNIbnZpMFd5STlQcmJ4SmYwOEI4Z1Mwc0tXVHJYRHU3QkxmX3lSckxCUXp0Q0NXOGJUNWF3MFQwUXYySUYzR2FaLW1ic2tDMHZKIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MToxMC41MzUwNzUifX0=','2020-02-24 05:41:11.538696'),('39v4oxqqw072frbrwp50a7vmrnkm2hih','NWY1MjRjOWYyMmNjYjFiYzZkYmQ2NGI1MTdlMTE1ODEzY2IxNzI3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIwcm5FNzVsSmxOcFE1Ul9mU2ptZVlpZHhEdy1YOTlGQ0d3aGtKSGwxRW45RDNsTHVnYVB1RC1DeTB5UGhPelBhSmdUejFrZXB2MGRZb1lSNEdOa0wxMS00em5yeWFOLWZRODRtSzVqNGR1eWNYY29EMS10SXhkc2Q1TmpaRnMiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ3OjAwLjkxODk2MiJ9fQ==','2020-01-27 05:47:00.920137'),('39w4ab1l7lgnraq23m0qjblngvd59d73','NGJkZTQyYzBjYWVjMjI1NzhhNjNiMzU2NzdhMWQ0MGE0MTEyM2FkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1YmlneDlBSlhieG50NkZ2NnFTX1hLcGdxVEVseVZxVHNsN01tTlNYbjR4am5YOVMxT3c2UTR5UVRBZnJpaTBCYUJ2TGhzMDBuYjNDM19sZDIwMzFhM3A4WmZoOGFxUGlUYlF6RGNLTndpaWtTSkJDOXpNNkJZOXZvWjNscmciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjA5LjU5MzYyMCJ9fQ==','2020-02-17 11:50:10.595672'),('3a9pnisjph4gz0t2y1x4ae2ka3f6ag84','ZjJiYWYyZDhjNjU0MzYxYTY5ZDA3ODNlOGFiMjdiNTcwMWQwNjJkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3eVF2V0g0ZVp2MWdFMWhkSERNNnF6MmxqeWRoaFFQQU90eTFvel9fSnEtbnd1TmxPWEJzaERMWHRhV2lneUlZMExZNGFDWHBRdEJ4OVhxcHpoOTUtMDFPMFBmaVZaVmVneW1ac3M4Ym5hQW9BeFNJTDRFMWZkdElqTDJHVVUiLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUwOjI4Ljc3NzU3MiJ9fQ==','2020-01-21 05:50:28.781036'),('3dvnhe35oorao617evx2d660dbqlq94r','NTFhNDAxMzFkMjU2ZWU3NmU3YjM4YWM2MzM0ZjcwNzZhYjk2OWIxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5MGlOeDVwanVaS2VmdGI0MnNfcVd2a0wtY0RTbDNWc2NQT3lLeTVrWnhYcDIzMk5fZVBRd0NTSm41UWZDa1pjTTZZQkZZRWt4RGJVelBZaEtfblVRS0QyV3hGSHNTQ1Y3RmVhYkRZWDJfYjR3anFEdXFNeXFLaDM3ZTFqMWsiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjA3LjEzMzI2NCJ9fQ==','2020-02-19 05:34:08.237361'),('3e2ssrstixvtdk2ad10o6rxxre6e5ld4','N2Y5NzI2M2RlZThiMjVlMzFiNDhlNDA5Yzg1YTZjNTM4Y2I1NmI2MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1WTV5ZmU5dll3b0VWcm1SdGdNYlVqR3ZCaVVvN2VwNEczbjR0SUZtVVVrQ3c1cWttZ1VxZk5waExpSWhEdmZ3b0FyaXpCWnNIOE1RSklQVEg4eTdaaDdCcFVOZ0xtX2t5a3JWeTJmcnpISUNpQzlvT25qSy1Ca1U0MW4xTk0iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjE3LjY5MjQwMyJ9fQ==','2020-02-17 12:00:18.695912'),('3f5tx7oj26ase1w1eameqrnbcdmh1sal','MmI4OTlkZmU5ZGJiOWQzZmU0Y2RhNGM2NWJmZmFlYmQ2M2NmN2UzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzZnNzZDZmcDQ1aW5ia05qdzVLd2pVR29RV1E1QzRkTWs0LUJUdEVmcWJzUDQ5dmJHTnhsVno4bjBSVjVHcDhLZlpiTTh0cWg1Z1ZucVZrd2pmNXExbGRhMzhhM2JfNS12X2REZk1KaTVPcS0wXzJJQnBwN3k1MFBpMDQ0d3MiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjI1LjU1MzQ2MyJ9fQ==','2020-02-17 11:10:26.557091'),('3fjezmsuufu0f8txd1w17qvj7sd7ocbx','MzAxYzMxZDYzZTQzM2FmMjcxMmE4ZjZhNjU1NjRmZjI0ZjU1ZDIzMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwaDV6ZTRTU1RoODRsTmpEUGhSUGFGTDdMLVpraVZsS18tTmhaSnU4X25vTm9tMm0yMWZocUFvbDNnQU9ZaU1rRnhkck5RZzNYdXlRYWV3Uy16a1VJQ0x4ZkROYlBZSkxoQkJ4MUtoVUhmTHU2Y1JzeUpsTjQtUkdUa2JpQ1UiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjIwLjMzODU3NSJ9fQ==','2020-02-06 11:26:21.339514'),('3gx4x6jxhudfy760czewb1o252wsjksh','YWY3YmMyZjU5M2NjZDBjOGE0YjY2MWNkYWRlNjY3MmJhYWUyNGEzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYQkN1Nk1vNklmSDBpdmZFWEtuZzdJcjVxUnNPWTFBZGliMFNhZmJxQV9lOU1JWGJ0SUxMcVlXN2JfMFQ2RnM1TDRVcEdGdDZxa3dlcWw3Q3R4dHdaTWU3RExlR0NMSjFQelJDcmE3X08zcm5NUEwwZVRtQmp2eWtWTlRSVE9CYm1TeWJpLUV4dnN1OTRpa29GUUlsU0VvQ0xwcldjYmxnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMzowMC41MjUyOTIifX0=','2020-03-29 05:33:01.528722'),('3ilb1btf7cw4v1tch2mvnpfwhsmles0x','YmQyM2M3MWU0NTU0ZDU0ZTY4MDdjYmI3OTE3NzMyYjEwZGNmMTgxMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIxRVRNSmp3VlJHUGFSMEtDMTBPYnBXMVA5YXhXa1JrYldmX2ZVRFIwa3lqZ19HTE9tdHZhQUVySkgtR3JwR2lDQm5KYWhDeVUtTzJrT3BiU3hUbmczdVJHRk04cGdGajkydlk3OUpMdFlBTEI2MGZ6a0pGQ2RjWnRHQ2hSVTQiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjE5LjQ4MTczNyJ9fQ==','2020-01-30 06:08:20.485349'),('3j2rzwf9knllzmh41nbxtzx6f3w3w7xl','MGI1MzU3Y2I3NmNjM2RiMDgyMTg1NGE3OTgxZTcxMjRmNzMxZGFmYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0I3WXl1cEVRZkpKTGlfamR3WXAxTUtCclgyWXJvME5HX3V0d2tGNTh1VHA1Uk41M2xQQUlnLTdUSDhYUnNPOUhZWWN0aFpZSFF2d0JJZ0JFbDhZcW9pZkd5YTB1dG52YUxEYmcwek16LVV3LVplWEFSTkdqZmhKWDJVYWwwOUEtIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMzowNi45NzU3MjYifX0=','2020-03-10 06:13:07.979355'),('3j3bkqnijsjdliuhw0si5c1d3d0etz30','NTFmZTFkMThjYjI0YTY2Nzc4ZDEwYjliZGNmMGY3NDVlNGRkNjg1Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4amVnc2lWaUNpUDZ0SDQ4MkZWN01qc3NXeVVxdUJFLTdhY3pNZWpadFczbWFnSFRUTHFZaE9nMF95UFhKMExxVmI3MmozaURSR0FWN0h6THFPRkF6U2xmaDBXbjVraWtrb2xIUm1ZNHNYeDk0VTJVVmhrX3EwTkpqR2NfV2J6IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0NzowNC4yNTIyOTYifX0=','2020-02-24 05:47:05.255720'),('3jszjzs84d398pglztjky3x3v6n0wgwe','YTJmMWI4NjIxMjcxMmMzYmFkM2ZmMmNmZDgyOTQ4Yzk4ZDY1YjQxZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxN2FKWkFXZUp1TUNLS3ZvdzdtM2lXNkQ0Y3h0VktFVThuVm5ZQVRxYU5fa2RjNkZleGhmRUxpa3BHRHRZOU9ZS0hvZjAyWE55U1Bob1NKbE1rYlBfSmNNWV9VamQwN01uaTBtYjdYSnlwZEFkYnlvb2I5bHNhMmYtb2JpSzQiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjU3OjAyLjY3NjMxMSJ9fQ==','2020-02-18 05:57:03.679923'),('3jt2ukwl2amrb5ikd810jnf7kasmifbw','MjY3OTA0YjcyZmIwZWYxM2IyYzk1MTA5YmU0YTMxMDA5M2VjYmYzMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1ZURFNjJQVGcyNzgyM1lnRFZycE1PYWlhaHpfRloxa19ab0RBOGVsbS1mNy1Od1Y2ZGtFMk9MZWRSS2hGY2d4QmJwWDV3UkZhazdTeEdYUnRkZUhIOWZwOGxaVXhYWFJqd2tWenhaYVZFeFk2RGhjRmJlcWwtNVZxYTNKMmsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjI2Ljg3NzYxNSJ9fQ==','2020-02-06 11:26:27.881079'),('3lppq2r29zcdpqkmpujkd8bwirx3s9gn','ZjAwMzkxZTJmYjUxMzdhYWY4MjdlNzhiN2QyYTI2NmU2MWRiYzlkZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4a2ttLXVKckVSRF9SY3dueUV6RWdwemdmX3ZLaENxV09ZVnoyUlVRZTNLbHBoMkdiY0JIRUd4NEl1RkhtZnhBY3RRcEZuSGxCZDNiNjI2dWdUaDlQM180eUp5NnI4dzhVLVpsaF93NV9TVDRfWHJ5MldLemdEcVdwaFo3N0NkIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MDo1Mi42NDE4ODcifX0=','2020-02-27 07:40:53.645188'),('3mx6yr2l7zgs1em9el2mt8pqj62cstoj','NTQ3OGE1NTMxMzcyNDhjMjYzYjBkYTc3ZjFlNjk3MDQ1YTRjMmFiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxYnQyLWdnUE5NejNhRmhNSzVTalM2MWdQZEtHUHVrNXh4WlFRSzlNblh5TG1uXzdaZ2Z2R1ZEaUtWVXNFNUkxVDZIZ1BZejZjdUNmQXRtaFk0RUFIdmFXSVYtYzFkcVRmRUlqY2dzWlJ5MGtvLU1XR21JTEpMU3dIZm1HenRHIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozOTo0MS44NTExNDAifX0=','2020-02-27 07:39:42.854467'),('3n0hll8t3cnq49yorg4vkqbbh2qpyy5b','OTc2MzllNDdmYjY1Y2E4NjlmZWNmNjk3NDE3OTBlZTA4ZGY4ODJlMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3TXRrNWQ1WTFJclZFOVBoWFZkdGgtZDhWOU9aSGpRMUhDRmFsZ09aUmlBZ3BWQUVHNmFNMm9lRFdSZkpPb0loSEFCSjFzMWJSTnBCZURWb1drLWZYaWJmblFlWnI3V3BZUy1uUXhnNVJGMUNSdEJuYmFzLXZ1RjdOb2lELVkiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjA1LjY0MDg2MSJ9fQ==','2020-02-02 06:01:06.641921'),('3o78dlhu1yrbtm9li3vi6dnqp9vkrx3d','NmUzMTBkYjVlZWJjYWJmMWUxYjViYzVjZTllZWQ2MjdjZDY1MTY5OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5eGQxeFdrY1VnWXFYaHUzRmdwNk9nYjBJWlJjX2N2QURQMjZGNEdraEFtSGhUbDB2R3p2NDlfajZHZV9jakVnLTRWVmJHd016WVVtX2czWDRucTRQT3llOG80QkJQLVA3R2toM3psNW9TZUZnNGo3SzBRQzBwMDRXSkxlMHpsIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MDo0Ni44Mjg4MDQifX0=','2020-02-24 05:40:47.832432'),('3q0jslid9os5rq08quopgt7bys7ddplf','ZTMyYWVmODMyNjFmZjM1ZTE5M2Y2ZmQ1MjM2ZTUyOWE2NTdiYjE1Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxdG5FWHVWRDRwT0sxWnJZbXFMVGxQZEpVdlNnWjUtZVVleDhvZDBDQUs5WDhZUjgxcUNDejZmeXhibEI4U2s1QTVIcktqdF94WkZ5MFJBbC05aG91MElZQllNZGJDUnpVYllTbFY4bU50RWg1eW1hUDVLNTZZYVFuYllRb0EiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjE1LjgwMTYyOCJ9fQ==','2020-02-17 12:00:16.805268'),('3qysp9u19entswd9y38o9mq8zpqbgogv','OGEzNGRkZGVhYTg2OTgxNTViMjQxZDZmNDgyNTZmOGYzZDFhMDMwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6WEtIRGpSZ0toNW05WDZZd1Mza0VqRVJlTVRtTU1ybDZnT1pmcEVfVkpHMHpoUm5ycWVVbzVNWW1ncFZrOWFxaEprd003azByZnM2WFlseGctcHQ2ckdjdnFKM3pfTlR1MVVMMllha1JkX21wYXVFbTdrME1qMk1GUmdsVHMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjEwLjIwMjkyOSJ9fQ==','2020-02-17 12:00:11.206469'),('3slg1ne3nwkfmrfgwx93owqb70t46n1m','YzkzNjFjNzE2ZDk4YTJlYWU1ZGFhMmU5NjNjMjNlYjdlYzFhY2ZmMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3a01tcGZVbnNhZlB6M3p0dWRkOFFlZ0dneWUyb01QWmkwVW1Gd19UdGxLQ05YanBPN3FvTzNyUHlLcVJZYjVDTmw0SnRScVBMeUhvek1RenVJQmtEVjNPVVBUWFZ3UmVYdHFNSEs5S2hIMmFhWVFQdWY5a2IxRjVQWUFXVkkiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ1OjQyLjAxMDQ0MyJ9fQ==','2020-02-18 05:45:43.011827'),('3sxfzz30fmrb7aixahce9rf61dx2vvrs','ZDA3YWM2MzU0MGZhZDFiNzU3YWMxYTdmOWViODljZGRlOTNlZjA3Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6Q215TGdlRmM4bmZvRTRCbm5GUUstUXVlRFU3SGFlVXVIVXZPMjNJN1AyUmFQR3BhZEt0YlJGZC1qSjJtZzZZWGktV1RjeUp3bnQ3XzM4MElmOXlzOUJLelI5SjFQNndTYklzcnFVQVdqS0pCdVVNZjdKUGUwbVhXUmVGNlEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjMwLjM3ODMzOCJ9fQ==','2020-02-13 07:50:31.381895'),('3t3c3mqyyra60n83r08gdgwnyxc41xff','YWFhMzk1OWVlOGU5YzRhMTIyZDhmZDQwZDdjMTcxZTBmN2Y0ZTcwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyTW9na21mcGNDX2V3VTl6NzNPYnlfZ0JHNWdIaTJabkJoVUNYYy1Jd19Pa3VjM0ZsSm1lSWlxMUh4VVVwc2pUUW81ZlAzeXdXdFowMmhTN3g4TlV1dGpCUHpVaVMyXzVFbzdvSkNLZnBYWW0tOV8xYW5MbHcxX0VodDFleXciLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjUzLjgzODI0OCJ9fQ==','2020-02-18 05:39:54.841923'),('3trimbckgjq1h32owwgdyoxyyg0o6j0s','NGE2ZTk5MjMzYmJmOTU5MGJlZGJjNmUzY2I4YThlZjM4ZGQ0NzEwMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I4U2k5SVJNYnhqaFFnSnlfVFI5VUVTMnVRaGtRaXhjbGh4bXJvZmQ5TnByV29JaDI2MXdQbENwbFdXRmZ1NEhJaE5KNHlLam96VzhFTDZ3MFkzQ09YeHVOWEpVNGRGeWNzNWhNQjhZekJ1THExd1lUbVBrbEZnVHZfRWhqbEkiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjEyLjg1MDIxNyJ9fQ==','2020-02-09 06:50:13.853753'),('3uj5bq89r585dcus19dzgx6gxwjmd791','MTE1ZDUxMjEwNWE5YTVhODU1NjliMGFjNmUyNzk4MmM0ZGI2NmZlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5cmQ5WkNkXzlkUkh4MU1jSkpOXzUxNnpGN2pDaGI4V2RvZTJpeWpNbkYybmx3dGV5Mm85UGJ2bHkxQ3RNc2VjUllZWkVtMGxuMDcyM1R3Y1NWbnA5UWR2dG1lak1tN0hzblRQQTN2Wm52TFJoazZpUWp3TUpkekxya2JvZ00iLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE2OjMzLjQ5NzEzMSJ9fQ==','2020-02-20 07:16:34.500852'),('3v1onlylklimibun7xo74190yprjwd9k','NWU4OWIwYTBhZGMyNWFjMWM2NTYyNGEwMmQzMzg4OTQ2MzUwZGExMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0OEMtRnVxVGFtVnZ5Q1FYQ2lZWWZqUWY2YU80VHFUSlM0aWZjanZhSV9hZTI1eWNXZ0t0LUJ0dkpzZkd1NnZJaWQ3Qm55SDYxTWlTRl83MFlQeXJ2WTlUNHY2bFJLS1JtMG5GY2ZDRk9hajRYbGFVbHhSdzhnZHBCYTdEenciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjM1LjkzNTY4NiJ9fQ==','2020-02-13 07:41:36.939275'),('3y3yxa3sk91wld7288eothfw3eut3eg5','ZjViMWE5MGNmNDVlZmQ0NTMyNjY1NTIzOTE2Y2E5MmYxNWM2NzBhMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyVE8wdFBaQm1PNUpOU1NEMnAzVnZtS0lfZkdEaGNMUFJTczltaGlDNGFMYWJkSE82djljc0NHUzVLZDJscE15Vm45MzdQMzlMaWtzM08yV3E4Wi0ycC1PY0gxdS1IS0otSHliS3ZhcnJ3RHdfcWhPLUp1SXJ1bnlPSloyV0kiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjI1LjY4NzkyMCJ9fQ==','2020-02-06 10:57:26.691459'),('3yhkw3y9vdwkmzb4adyduqwrgd4r25ju','MmZjMWNkOWQ3ZDFmMzI3ZjExZGJlNGY2ZTcwY2MyYWFmMTdjMDNjZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfdWtWTXFGTERPdUhpZDdEYUtSbWY1djI1bWp3NWJNek5UQXlMM04zR0wzVFhIWk0zYWljWGdkWXE4TkFrWTlENmdWcG5IWDFYUXVkRGdqeXZoQmVwQTN5QmJQZXJJM1hjaTgyUC1EWGcxQmYtWGJMdllrZTlZdHMwNno2UDlkIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDoxMi4yNDc5MjcifX0=','2020-02-26 05:00:13.256246'),('3yiwi2cjxjil324sts4zxfhva1x8y3pf','NTBkNWMwMzJlMWJjYTcwYmYyYzI4YjQ1MDcxY2ZjY2ZjYTExMTA2Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ3amI0VzNVTWZZbVEyTnlkVkstamZJc0xKdDN1eGU0SlRUV3BsR0NjM2F2YU5RWDVtMmpsYkFUSEpwUE8yRWQ0QldMN0xCblNLa1BUN1EzZENMcngyNnRLNDZhc25mX1o2bElxREhTQ005VXVFNEJzSGJjNTZYbTdqVVljOEkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA4OjE2LjQ0MDM2NiJ9fQ==','2020-01-23 07:08:16.447080'),('3z2hj1s1hwfiunnmrn2vjq0iohojy3t0','ZTdlMDFiZWFjMDI1ZGVjNzNjNTA1NTE0ZWZlYjQ0ZTM0YjQ5NzZjODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUJ4TGVZT2RLMGtXWEl6alJUREN6UmMxa0Q3ZFpVTER4QnlMRmliLWNRSjN6bDZqWXNTOXFVYzhka3FaREpJMGl5bFpnLWVYbmhzMnZMQk8zTmt0ZHVNeUtBN3ZGQlZWSFl3RUQ1VHJRUjRMTG5jWjMyZ3ZsLTNkREhCT1FnWG1jIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0Njo1Ni41NTI3NzgifX0=','2020-03-16 07:46:57.556575'),('3zm3zk349b4hvfua3qs5eymkgikv3lmn','NmY2ZDUwYmM0YzdjNjg0YjgxMzg1MjI4NGVlMDZmOWI2ZTRlMjJlODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3QWhPRjNBTXJwWFdCN3dQWE9vM3BmeVc5M3RLajRDMTh5SFh5TkNvelI2d3BHa0Q3VmtDSmJtbFFzUEI2d1hSMzlFZHo1QlJFQ2hZb2hldHp4eUo5OHdWQkFrRmVGR3RQY1V2b29hejljWVZnd205TFBMaF9NcVgwbXp0TlkiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQyOjU4LjE2OTc2NSJ9fQ==','2020-02-18 05:42:59.173479'),('418uz3dwe3ces8me4zzrf70wysz70vzx','NzFiMjc1YTllZWY4YTkwOTU5NzcyYjVlY2JkMmVkMTczMzQ5MGMwZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwSWF5aWR6a3ZHM2hqOHkzMS0xdVl4azZFRlFzNVJIM2w3LUtvRlBDWHU5YVBJd0IycWdCYUxHX2dqTk9HeUZ4Wm9sNUdaNnZ4ZDBwSlBJRUFvQXd2RmJ5T0tTM1A3N3J2TkJnb2U1WmtLRHNUWHBLYnc1bXlVWEtsUl9EMUkiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjA0LjcwNTQyMCJ9fQ==','2020-02-09 06:17:05.708925'),('41epo0qkbb8fhyff4f9o8vpebwz7mcbr','ZWU2OTY3ZTQyOTUwZWVhYzE0YTg3OWUyM2JmYTRiMjcxMTdlMGE2Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwZDZWTzFHZVh4cGx4VmdMd2dCRU9iWmg3RG9kM2F0eVlpYlZQRWU5S3VwamFEdDNwamlhV0ViUjltc3pwT3hxTzRXc3JSRE1qVlprRXBUX1ppR0ZqTEFFSk5xcjRiWFFfQlU1RmNzZTkxRlBhaHdaOU12VkE0S0tjb19wbnMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjIyLjI4NTI4MCJ9fQ==','2020-02-10 08:10:23.288752'),('41vabzmtmvson9i5i9sozsub6jus17bj','NDgzMjY4YmM0MDdlNzc2YzdlNTUxZjRmNTdhN2EzNWQ4NjBmZGI4OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0NG55WERSQmkwU1Y5UW9WSUh1dWE0a3dzNUVobGtYWVNBOS11cjl4bkdvX2x6VlBUOFJ1Y05uY2xiczlYMlpkamVhaTdBdTl6VzhDaEVfMTlwb09PTVhPdy1BYUwzRzMtajRJRWZmemttazRlYWRjcDZFTWpYcWwwUFVCRHciLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjExLjA2NzM4MyJ9fQ==','2020-02-19 05:34:12.068586'),('42ovd0dw5iqyc5ncmbttj92ftn6ozvse','ZjUyZmE0MzBkMjBlOTk3Yzc3OGYyZjU5NTRjOThiMjVjN2FhN2Q5ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXbnAxR1dob2xMQkxjM0hZNUwtVkZ1ZGlNZnF0TFk4NTJoMmZfSVNMdjFJa1gxdEh5R2FhYXBpUU5rOHdUM2o3bk5UTXhfTVdCdkEtQWpqbEU3REJzWURCZktQczJIZVNIaWFlWURRM2lzQjl0bDZsZmQxYmFtdmxKNjJxSDNBS3RTeWlHV0ZQbXVCUmtQakJ5YU9TbjhZQmdjdEhWTFZBIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0Njo0Mi4yNjY2ODAifX0=','2020-03-16 07:46:43.267933'),('430rzg0vn3wb33ej5e7co4939vtrswaa','Y2ExYzJhNzQ2OTFjZDhjZDY1MzNkZmI3OTYxMGIxM2NiN2NhYzdmZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1aE9pZkRkUkVmOXU1YU9QZXF4V1Y0OFJxS0VXSXZIdHlrUE4wU1lSQmFvd3hERkFORG5jSkZBT2JSRkVBLWY4WFpMNEZVV0FWczl3SFpuTHk5WVhkS3RUYXZQTmJqdUo1TkNQWXBzM1Rxd3d3bnVUOXNSR25KMkR0elRQX0EiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjM1OjU0Ljk4NTQ2NCJ9fQ==','2020-01-20 09:35:54.988896'),('443ha5aoppmr7u5x9uobl8ghady419ww','MmI3MmMxN2ZkZTVjNjExYWM2MGNlMTMwMjE2YWI5OWZmYTY0ZTkyMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1TEo1LVJNbjJIVkxVWVF4VEtZOXNDOGhKY3VFWEhBMll0aW1JRG5UdURSNDVoZlFqRFFjRHJxaGtVbWZtS3VfTlQ3djFLbVpVZV83aURSNHBUY1FBaTVkRWFVMnJZbzFyZV8ya1FVVDVJY1VkaEd2Y1pzdTViWDY0R2lFcmciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU4OjA0LjcwNzU3MCJ9fQ==','2020-02-06 10:58:05.708792'),('444ccy80yp9bz8w56jnkfheot8vufgaf','MzMyOWZlMzYzYmJlNjA1MTY3NmQ3ZWQzYzlmMGJjYmYwOTM5N2E0ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2MDVOcEFHOXRKa0tUQTFDQmpHby1RWF9wQ09SUGdydkJtT3Z5ZERMWjF1bkluaWZZZWxyUlJhMHkzd2dvVXdyZGU2ckxkV0hTeURibVZkZE1zX1otQko3OTc2TGg4NDQ0RldvaFhGYlZmLVpOS2dXVzNtQXpubUlWWkhrMFdzIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1ODoxMi45NDQzMzMifX0=','2020-02-26 06:58:13.945618'),('445xap3arbtxdmjmkfnn5svp8nvw9nye','MGFhYjBmNzJlNmNhMTg3NThiNDgzMzZjZTY2OWEzOTg3MmIwNjc3Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI4aXk0ckg3VXJCUjBoVDFLcDBrM3gxUTZPeVZiLTIzdGlXQUx0cDA5cm50Wnh4VGNwazdpZUIxVE95MEREc0oyMmdSUUtzWXI3ZU5xM1d5QzZ3dmZkTlhvbU81SThla1ZlQzE3ZGVkdXQzaFB5MjZqYXY4UkJVeTZzdTJDcWsiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjA2LjE0NTc5OSJ9fQ==','2020-01-26 05:47:06.146818'),('45blpiloe1l4zwh8lntcw6vwc9setzv4','YTNlYTQ0MThhZWE0NTI5ODQ4NmNhNzk1OGJmNWRmOTBlZDYzYzI1ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1VURnTFA1MmZjbm9rdE5uUjZlZlQ1MWxXckFvSnBYM3REU1ZhQzF5VkZMY1V6Y3I2blVfUER4VWpKbDhkd25fdXNIRXFDTzd3dGlMYzNTSzdmWWhwZmJyZkNDMjYybzdFQkdqSjhKUE9YWE9KQU5UTUo5dUVPN1pqeG1aejgiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE3OjA3LjkxODQ4OCJ9fQ==','2020-02-20 07:17:08.922014'),('46180x2akk73ij12gg33y0w4l7z8075r','MjJmNmIxNGZiNjA4ZjM1MDA3ZWQyNzc5YWE4YTI0OTgxZTkyMjk5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4a3VSMGtTWXhLc3NEeUJ6dUJsZWtDSzNCcmdqZEZKS3p3MFFwQUZQYjBndnpPNk91eXFQM01VNDFIeHZHVWJfTXBiNkFKQXZkekUzdlFKREU0SVd6bXZTb1hHSURncFpKOGlPRFFzWjRJdFFfamhfMTVjcDV2bG93dGo5dGciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjMwLjcxMTM2OCJ9fQ==','2020-02-06 11:47:31.714916'),('46rq2jw24l66llsc8ymps34dr15vaeut','NTIyYzg5NWRlODUwNDU1YzdmNGNkMDBkNjIzNjk2OWEzMmJiNWU4Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWa1VMMmI2N1kzZ1UzdG9nWXl3VGRaTlZkMGJrRGtpdUVmZllkV0NENnI2Y3BoLWhoTzhCdjJ3SmhoN21Zb3dWa1FzYllpR0k4cDNKZ21lWlRSWjFOX0xlX0dqTDJ4VXJMNkpxU1BZZGVwSGRGUXdvNUNLaVJUZTlfU2Yya3ltSTZxVWtaZFU0SVVOMWoxVEVmVnBYU3FQTnROTG5XdXVBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjoyOC4yNzgzNDYifX0=','2020-03-29 05:32:29.281702'),('4d17b2bht00e1g1wr7prkumlsz2kk90c','NzVlNGMyOWViMWI2ZmE3MTBmNjk3NTcyM2Y3YWJhOTFiYjAwNDZjOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItMFRvOVZuNUpYeEllNEFKZWQ0eHJwdHV6SkV5VEIydmowdzNKaW5zMkRicWpmc05kNTNOeG1aYWJCcWREdGxHXzdWZVQ4VWhhcWhta1hzd285azNXV3pDWUZwSGhEQmR3aS03eHhhQm9Fd2hXcVJDYlJPWVp6Q0xlMjVnXzAiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjU5LjY0MDgxNSJ9fQ==','2020-01-27 10:58:59.641959'),('4ducqtah4krrosfirgo1w6glazil59y3','MGE0NjE3ZjljZTZlMzgyMWU1MmI3OWM1MmQ3MWFmYmNkNDQ0ZDhlNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4LVZVOEM1eG1kUTZRdVVOTXgwekRVMjFPTEZxdEN5aUZZVFVvak1XbS1lOHdUOUFNWmg3cWhRSEtjYWN3LXV1OGVOMFR6V3p0Wno0Qm1rNXNjSlYxb1RhWFlHOVJtRVdxcko1c1VVMVF6TzBEYlVjN3ZzOHRlbXF4SUMxcjZzIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxOToxNC41MTU4ODEifX0=','2020-02-23 07:19:15.517189'),('4erh5c4m88t62f84dp7w3h1s1auwf9tt','Njk0NDAyZWQ0YzA2M2MxNGMzMGY5ZjlhYTc5MjYzMWZlYTE3OGE5MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2bUpoSUFoVnd3TWRHNlowM1lJbm5UN3BSaU1qQXpKTFF1cW5JRnN4OWY5MmUtTmhkcHBYcjZoVzBvVEM1SDdheGF0M05tajVpWjhIVkNqZkJ2YWFId1pyR0JaZGZrNVpxMGVNTGYtcGpXU0ZjVHdiclNTY2NRX0UzVnhub2MiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA1OjAwOjExLjgxNDU4OSJ9fQ==','2020-02-16 04:00:12.818245'),('4f38hk2t33q6h3aoy1f06x21q7hi470i','M2ZmM2UxODAzNjFkNDJjYTNiMzdkOWI1NTkwZWFhZmFmN2QwYWE2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxNVpLTkJ1NkxKcExXNWJOYlcwdGJ5UFFOTVk3VUJ5ajFzQzNldHhzT016c2lHQlM0V0oxNzV2NkxlU0lsSmUzVzEwNFE1YUMtOU55Z2NWa1l6QnZtVzFxcmVYbF9DZ0N1dm15eVhTZDdLWmFCcS1zMXpUNmhUR2JMZWtQOTQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjQ0LjYzMTE5OSJ9fQ==','2020-02-17 10:50:45.634671'),('4g4qkx1xgqltzmoxl2s3tni9r74530zc','NzNiYjM3YzZjODI0OTc5YWU3ZGZkYmZiOWE1NjY1ZjgxZjgyYjIwZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1MjAya1ZlUlZnOFBKenVHOFdoRExPaUZ1N0R2M3N4NmhmWkh3eVhPb2hmdGs0dWxjTnlvVGRxYldxUFFNVjAtY2RLVXlTb2kwWWJ3WTItVkxYWV8wMDdPWVI0X0E3RDJXTzVHRXV3d3RtTlNmb2hHVVNRSFhPOEN3Q3dQRTAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjQ1Ljk0NjMzMCJ9fQ==','2020-02-06 10:57:46.947982'),('4hlcd5h9sbra1z10zzbi0vc3vqgac1b7','NmRiNGU4OWVmZjg4MzZjNDU3MmQwNDRkODliM2RjYWVmNjUwZjRlZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2Q1lldVI4WmpmWU1LNlZNSE9ORTJPbUJGeWE2SVQ0eDFETnNWUFJodkJ0RTRWWm5RelRjaC1PXzdCZEJidGVtbnR3UHYtZEhzV0d0UXFPWkQ0bzFFOF9kLXNxZzVTVXg0YWpHTDd1Uk9BT0t1TnBpTnNUTkNSUndXOXRvWlUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjIxLjc4MzA1NCJ9fQ==','2020-02-17 11:50:22.786623'),('4ht5o8lr64kpi59rpaorcm88zfusa8ul','MzNiMmNjMDY5MGRlMGZhZjkwYzY1NjMyN2M2MTczNmFiMWU2OWU0Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVValkzWmxBTXJGRm5yUGRLVWduVjlQeW45ZzZFUjhpNkJUUllCeHlpY01PZlJYdC1ERUV3ZDBEc0M4LThrWkxobkNOWGdyamRpSjY5SjV2ZzJxeGlQYm9KWnFhMjhldF92bEdCWC1lV2dWWVZqMnV5WlExRE9zQ1NIcndSQm1oaks4a0hyMUdxaE1MRVBaMGg2MWRmVVh4UlNWZ2pHMnJBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMzoxMi41MjEwNTgifX0=','2020-03-10 06:13:13.524616'),('4k8ojolsmyzqbubpohs162mf6jpl48xw','NDlkOTJmZjEyNTdkNDFmYmFjMzJiY2UyNjM1NjBjMTBhOTliZGYzZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4VU5ubTVoNk9ZN3hSeWpjZzNkdW8wclNsb3dzZUFMV1BqbjJDUnYyalBHaUdhWkxoZHBGM0MyYVZvMFJDbEdLOFFJTVA2TTlCc3NyQ0VyR293bHpxSGs2alM4S1dDeG5XeDRQaGVxOXYwVGFCSFVxM0FrNlBhYzdrS3pKQjgiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjQ5LjIyNDQ3OSJ9fQ==','2020-02-17 11:30:50.226345'),('4k93tipmmnoiuvj0o6etna8s1fcfdo6r','M2NiNzdiNDg5MTlmYmY4Y2EwMDhhNGE5N2ExMDU3ZmJhY2JlMTJhNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4b1RtNTl5blN0Ym1Fb1VNb0FtcVJxSDAxU25ha010bEpNTDFzem4tbHdtdGhCaW5ibTNMdWxRckpsSHhySElEemtVdS1FQVlMZ3ZIS25wdU9LM2IzWnVkSmtMUG9TdGFKSllReWwzYXpJMFNyUzVKcWx0TWtJeWs1d2RvRkUiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA3OjAwOjA0LjA4NjQyNCJ9fQ==','2020-02-20 06:00:05.087779'),('4kwncazmd77f2qzijw78u47u0gcskf06','YzNkZGRmNjlhYjQ5MDRkNzliZDU1MDg4MzBlMTJhN2E2Njg2OTBhOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3YlhRME1McWZuLXpwdlcwVWR3ejh2UF96bWctY2ViTFNvYlNmN3c4WEpRejhYZTJpQkswVzlHSmtOS3pHVTFRSUltdGRpU0FfUC1CSlJZNWc4YzNiWlZlTi1RaHZxSXc1MGRmZWVjM0FGRHRHTE5kbUp3ZVI5b0pGV3ZXUnJ2IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxNzoxMi4xNzA5OTIifX0=','2020-02-25 07:17:13.174428'),('4m5duosiizw0omgnvfykve7btzov9onw','OWM5OGE0YTQ0MzE1Y2Q4YmQ1YThkNGFkM2MyYmJiNTBhMzJiYTU3MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYaE5IZFliU2kwZk9hN2NNczlURUFxQjViaXF1bG1PM0ozdmYzSFRfUXRQRVZ3eVktaElpb2ZrMGZkX1p3bEpjZmpKdXdCWE1Lb2VCT2E1cXk3M2s2bkZDUDF6NFBPV05NTE1oenBTd3U2MnpFZTlpMXFoMUxRZjRqal9rTnRWdFFIcjNhOWhSU0xGVC1NcVktbHhsdW44SWxkZDJGWWlnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzowOC41MjkyMjkifX0=','2020-03-29 05:37:09.532696'),('4n55y9fkpn74ve8zwrem69gvvueqj67b','YTkzYTZkYWJkNjJjNWU0NGYzYzBmMTZiNjFlYzgxMjEzOGQxYjM5ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI4bUpiak80NEZCYlFOSnJDUTk4RnBHT1d0TkNPSWgwb3RpQ0hmN0Q0eFZwMnNITTZMOE5VT1M1LW0zSzlGdDhJMFRTZWliUGlkY3hUNWV2bVBKSUhmVWNmVU1yN05QUTJkOGlfTjJKVVBIYmEyeVBCV3dFNVlzdV90YkVwRFEiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA3OjQyOjM3LjgzNTU2NiJ9fQ==','2020-01-27 06:42:37.839220'),('4ns6uv07xxksxem5l3ktdjbycbt3fwsz','YzFmZjBiOWU3OGY2MmY4ZjE0Njk3ZDIxZjRkZmRiOGNmZWZlNjYxMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyQXBZUmExZTBZOUhTVjlCTEFIOUYxQ3I3VmRVa1VnamdPUlZUTzIwWDluYWt5SWQtTTFIdUVaXzZCU1dKaHpyTzVCcUZLaFhneVJJTkFmdUh1TWdvUXlGWHNLcnlLSU5JUnprMm5sR0JjUG1HTG5xT3FONkdwZ3IzOGx4YWciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI1OjU5Ljg5ODE5NCJ9fQ==','2020-02-06 11:26:00.901742'),('4nurrbz8eyi5j438pydzhjiff3u2kwz1','ZThmZDE0YjAzNzk0Yjg1ZWJjNmFjNDM0OTEzMzU2Y2U2YWNjN2JlZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJfeUpUbFhiZlVzM1J0cUJUZjJxTU9oQXRobzhjaWpETjVDWjdTNUotSVcxTk1Ib3hQSFhEdEF1YVduUnRpQUhvZ2xOYWlPaDBDM0xzV2NhLXZxX2hPc3RRRHdVdlhlcWl2ZzdYMTZKeUJRR0JHS1dBanotY1pyNGs2SHVPZVkiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA3OjM2OjUxLjY1MzkxMiJ9fQ==','2020-01-27 06:36:51.657952'),('4nx2z29su188aedsuxz6dmcpwactiqoq','YzY5MGM2N2NiZWI0MWE1M2RiYTI2YmQyYmU1YzQyYzE3MTk2ZGU5Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxRWE0aHZ3aGNrVDZ1RlRKRnJYR0ZmenBVRmhlV21YZFZraGFSUjFHVGg1Q29DWm8wSXRpTmJmcThHc0lrV1lDT1JOQ2tzbE5Sd3IyM0dnVFA4Y1hnWkttR0Fwb182OW1hVmkwMTMwUEdVV1AybWgybml2a1EwaHpldEcxTWMiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjUyOjQzLjkwMjExNCJ9fQ==','2020-02-18 05:52:44.903205'),('4onkfnehe03xdqxlllk077l6hdn31hsq','YjE2Mzk4MDQ4ZGQ4MWY2ZTFjMTE2NDE1MDZhNTQ4ZTQyNWMxN2Q5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5MGVKcDlhX1RBZXJ2VnNUcFo0X1dSTmdoclpwMU9ZUUtoT1c2TEI3NGo4X1NEWlpRdmc4X2prLXpaaDI5dm0tc3BQZlJiVWZSVUEwbXRUdFVfbl9YVDlqODJld3Faa1p5MHhuV3p5dGlWcW01dGxDME0tR21fSEZsZWZGU28iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA0OjQ2LjAyNjc0NyJ9fQ==','2020-02-06 12:04:47.030972'),('4pn2lu9qsff05afboqhtsyxs9pw0xa66','ODNhZDdkNjQyZjkxYjM5NjFhZTU4OTIxYWEwMzYxMWQ2NDQ2OWViNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5NUwzS2sxRzQyYjNYLV8zdkdnWUlxeHZ1d0FrTXhheTBubVBPbWJlWlBKUTZ5RndGZUg5UzhnZlQzaXVCVE4xWXBnLWtxMGNJLXZGVFZGMlZsVDV5UWtWOEZHQ3lCaXBQdk92UnJQck9UUjFjaERmamVzTXJIQzJ2VWhlM00iLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjU0LjUwMjIxMSJ9fQ==','2020-02-20 05:59:55.557368'),('4pwa7v02g9r0wvtt6sxnbw66whikm80j','MzA5MzYyY2I4MGJiM2FlMTJmZjRkMmViMzE1ZTRmY2U2YTJkYzAwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYdWNHQnctQkdHQWNBVGV2M3YtWG1Ic01qVktXaERWWmxTcFNLTVVqclBtMTBjUTgxNXhiMjZwS0QzWGdSQ0s5OU1pVzNmdVA2NzlORXhWeVNyajVxSkR4WFktb1hnX21lQ0tpSXQ5ZUZiZEZrYVFiSlhMbWN2eWJlcjNoSEtLaDRlbk9ZbHN4RExrZ2lnX21nVHhIQVlnQzNYTzhSWXRRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo0Njo0OC45NDk1MzEifX0=','2020-03-29 06:46:49.953018'),('4rej4r7vtmcwsd345q1la6zavfe6zzqg','NmZhYWJkY2IwN2E0OWUzM2NkMDdlM2FmNDc5OGJjN2M3YWU0MzBkMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYVEpMRk1qLU5Ib1l4eXNtbmpZS0xoX3lPNmgtMmtkVWNLQ1o1aXNJVFdNM09QODBPUzZPc1AzSFZhVGdlLW1zN1hTVEEyNWpLZWM1M21DZW5tUnU4WXZuU3plQS1XczBMSVNyZ3dkVndxN1RINC1zcDRBZzBwU3NPeHZWa1pZVnhhWEtWMzY4UzZGakV0Z0VMOTlFM2R5WmxXSzYydTV3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjo1My4wNzQyMjIifX0=','2020-02-25 07:12:54.077795'),('4rhz70f0ak75i7zlhb68e5cr984c83kp','OGYyMGJkNGRkNjk3ZTRiYjg4YjE4NTEwMmI1YmFjMWI1NTAwNzljODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIzUzUzbjIzZ1hhZnhMRWp4ODcxQU5YeUxrR2NhZ1FiTTZGY0dQUTItNHhEaGZxN0l6MUlpY1FQdGVQbkZ1ZHJYU1F4RW9EaHVSamIyRXRRR3JPX3lNNVM1aEJpVVJRRjRqRjBxUThOUENLXzktd0ppeHg2TlpJdFVKT2pyQTgiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjM3LjAxMzE5NyJ9fQ==','2020-01-27 10:58:37.016702'),('4swu0gnd5qx8bsawv1kg73cvi2o2rzpc','YWUzMWRlNDRjMDFhODRkZGIwMWFhM2E0YzYwMjg5Y2ViZGZjZjdiMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4ek9vTUZEc2hDU3NkR1dIWmp3dDRBcENpTkMzN3VKcWljVDVrRFdKemRzRkExNDBiWjI1bE1VT0Y0YWJyN2NHNkkwbkdxY2NRSDdQeWoxaGtVTmFZaWNLaUVjcV9KSnRya2g2b2Rra21yZkFPeUp5YXJlRTZ6ZUM0VWpGbTQ4IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDoxNS4xNDM0NzAifX0=','2020-02-26 05:00:16.146962'),('4tsytu1lou03gf69jfwvx1o39dmp0567','YWQwZDE4YmE3ZDZkY2NmODMxYjkxMzk3NGI1Y2VjNGMwYzAyZjdjZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2Y0Y1S1BUd0RRX0tjWGVPNDdJcVBzOHFzdDUxMGRHSXNaRjNObVhPU2U5ak1rejJYRHpRM3FYY21RS1Y5VDBCQzJoaEdWMEN4ZlVZekVOVmF0R1ZnV1ZzcC1IOTM4YWxjRmhkbzlRbFZxcmlmVEdXQlJtWWhobVBPVGFlQTBKIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0ODoxMy4xMDIyNzQifX0=','2020-02-24 05:48:14.105984'),('4vbwfzhdvo5g5eng0wyjihh7smk4di1p','Zjc1YWE4ZjIxOTM1Yjg4M2U2MTJlM2U5ZjFhNTE4ZWM3ZWMxZTY4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYcDlzUjNQNmJxYXhZY0lBWTJXQmN4cTc4VmctOUJZbGNHRU9tWXZaNW45SVZndl80UWsxbXEtRjluVDZJZFBxMHhMbDNkdVVsa3VmMUFFQVpQOERLeVU1akZQSEhud2VKeHFpMWxZeDhsUW9DaXdoaHdxdU1TSFlwYy1xMFpuZVYzejlNemtXMWNYdDFEUjZvS3BUNWVUb1E0MkFacUl3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1OTozOS45MDE5MDAifX0=','2020-03-29 06:59:40.905515'),('4wceyuspfnehxg2774p4aza42wvylrj4','ODg1NmZhY2RkNGMzYjljMDFkNTAwYWJkMzc3NzM4NjQ5MjUwZTJiMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUJfbnQ1SzAyNHpZdHFWX182RnJiRFViNHdMejBSbVA2ODVneFJGMEpId0VoSjF6aExTMy1qR2x2LXdSS1B4d2o4WTAxczllQ2NLZGFDRk9ITnk4dEJyc0Fkc3F3NW5hU1lCakdZcDd5b3kxdXZ2cWhwNU40Mk9FRGs3enZUQVhqIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NjoxMS4wNzgyMTYifX0=','2020-03-16 07:46:12.081923'),('4ws52mccjnpvi8jona2jh76e49fgl0lb','NzVhNDBlMzg4NDNmYWE5ZTc5OTg1ZjFlNDliMjNhZDIwOGMyYzk1Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIycDR6MVFGX3NBQWNGT1F3QVlYRXRJc0YyeExoMUZ4dFBjMGRRbXVKS0JJS2Q4WWQ2R3pIVmw0ZUFTdUY3NEVUekVJSkxxOEkzSGNxU3dpcE9GRnJPSm9LNWZ3Y3VpTDBmTnFqcno0MFdRbmMyTjhtVUc5TDRWWFo2a1hsTTFhIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxOToyOS43ODU1MTQifX0=','2020-02-25 08:19:30.788923'),('4zokfi9mk2mkouldbi3pda5kqwue066s','NDIxZmVlNTFiNjJiZGI5NTJkM2IxNDc1ZTYxOGZjNGFjZjNjMGU5Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzeFhuNF93QU1LOU00M2YzQVBLcG5nUkh6MVhIMVNpVXpGbWZUNTBkTERqaUpmeDY0cklnOE5DVmxqVGdzcG0xY2hWSWlDMzYxQUttU3hEVlpzcDE5NS1za3EyOVJCclh0Q3QtYlZZeUNBV3p1UE5OdDFQeG9KV2Z1dFV3R3ciLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjM0Ljk1OTkwNCJ9fQ==','2020-02-09 06:50:35.963325'),('5098dhz9l5rg32ilaqx1ynnqjorekcu5','YTY5Zjk2ODc5MjEwMGYxYmM1NWQ3OGFjZDA3Y2Q0YmJmZTliZTRmYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyYUFtaGZZQ2lKcU83RGluazdZS1d4T2ExYnpMbnBxNnNJRktDQm92ZlZ0anluS1hhcThEZnV4d2NuUzZMYXVfNDZQei1adGhYSTlvdE1lNC03cDEybFVxTVhaVER2ZWZYcUR6MHFZb1N4SEdfd0dIQ3k1bjFNeWlxUGdHZHladmNkSEt5ZHJ0bjRES29FSzZ6d0hMVkFjQld3dDhFMmh3IiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MDo1MC4zMDMxMTkifX0=','2020-05-18 06:40:51.306554'),('50fnyia019cp0dfz8938k7lofzt216ul','YWRlM2I4ZjRmNTgxYjg1M2VjZDliOTRkYzE0Yzc0Nzk5OTZiZTdhNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIydDVUQTM0WGNEcGI4SjRoSGRwOEM4S25RX0F5Z3dwMVhBWHRWT084MXhFZ0drUGxhazVmSDF6WWhUbGtWOUZOUnI0N3RfcV9tWXQwY25pSnpaVlc4T3haSlNvREl1aHdqRkQ4Z3VnQ0lSM2NaLXJVRUphWmV1VGtocTE2THciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjM5LjkwOTc2NiJ9fQ==','2020-02-06 10:57:40.913348'),('52cfqzyk2fh0pfucmdoieg1sjshgb30c','OTYzNjM0MTY5ZGM4OWRlMTgwNDY2MWZlZTRkZjZiYTE1NTFmNzgyZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXdVl0NEdudW5WVEl2WTdWclBTTl9WOHpKb0VTd2hnRnVsMHhueU9IWEhJM0JoZWRVWTZqTi1zSlJFM284MHd2V2NfUkVSY01TVVVsQU1RVUNIUlljRnhRSkZuT1ctR3U1NUhQTHZTR1p1ZkhBREFVbmQzdElFUmYwQjZpRzVJSGpMU2labXVOcnJJZlZ1YVlnYXFfWDRYU2E4Y0txczF3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMTo1My42NjcyMzYifX0=','2020-03-29 05:31:54.670640'),('53dyeqzgut1jolssdqzf6r7rfva2oeqq','MDUxNTA2M2M5ZTY1NzRiZjczZjlkMzMxOGJmYzVlNjlhZWEwYjZlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3SVRDV09pU3AwS1VBNENIdFhvWEFCVkFxOExja0JnQ2VfYWh0Q1Y3WHVWX3hxTDRQZ2pldy1ONWg3b2tDMXhCMFdsRUpUeTVjT2ZJZUtiT05ta2xLeXhtVTlZdXAwM0V2eU5EMlo2VVZUVHJNY0xfdEN0d0c3aVVGNEFtM28iLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjE0LjYwNjczNyJ9fQ==','2020-02-09 06:17:15.610110'),('54lnn418ibaip1oec7542sgpbk92eq5s','Yjg2MzJiMWNmOGE5NmE3ZGI1OWM3OGY1ZDNkZDg5MTJiNWMxNjU4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6NVlfZ2V4NktRZUtLcWNLcEFPanhFbEc4Q1B2c2s1Xy1PbkR0aW9GUWI2cnZ5dDhCUGxJSUxnRGRBZ3lPVzNxNTNwbFhYU1Z4MzBEcDRzZEprM1FTTVRaSmktdkpkaGVvelRvS0p1T0k1ZEFLWFVEWUJfNWpqSlhUV3FkUEkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjIyLjUzNjczMyJ9fQ==','2020-02-17 11:20:23.538405'),('551ujgfmzz89ggzx8hdnrosn4swemerj','MDA4MDc1MmNiN2IyMTViYWRlYzUyYzVlMTk4ZWRkYmZjNDljMGIzMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2amVZMl85dURJUVhvOU5vSWhsV0ItclFDa3FBYXo4MTZQNDh3cHFjY29BVEhQdEN4YkpHeU0tcjBaUDZ2UWlGaEZzcDZuOHJ5NVV5ekZ5aEI2cjBoLUpuVlJSZ1IwUXVQS3ZIc1FsVHRIQl9taE5qeGx0bEo5RXBQaXhFY21YIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjo0NS4wNjA0OTcifX0=','2020-02-25 07:12:46.062457'),('55nclx1dco1qemjw92da35qair9fxpkv','NTdjOWUxYTc1ODNiZjEwNzllMjEzOWMxMDMyNmU2ZmZkNGFjMmIwMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxNlJnamRpRDEzc2c1UmZ0MWpnOUJhbE5GcU5DVE14M2tyanRiaWJTeTFtOUhjcVFmSHlNd01SWWg2S3Naby1GSjYwT3c1Vjg5Zl9Ja3NRQ0NoMjdZamtDR3ZpTmVwYnViQzVQNUgyMlNQdXBwQ0tpbEhZVThJQTA5cm9qMHMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjE0LjA2NzAzOSJ9fQ==','2020-02-06 11:23:15.068600'),('57iapr5wv2t651r8q94pko0hm7f712o5','MDBiYTNiZGY0NDUwNDczN2ZmZWU2ZDMxOTgzN2FjZTE5Yjk1NGZkZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzaTFmWDdZSmJEVkFkdWY0TFhOZ1p4azhUNkNWNXhCYkFzcmlBcW1zQlF1dkJBOFZPQ1NzQ1M5b2FIcW5PcU5fRTFVbzBSVjhqRGJMNktUTFhlWDlOTFYzYlRUT1IxOURBQ29IREpPTURVSkVVM1hSdkRvX1FZT0ZRNUZQS00iLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjQ3LjM2MDQyNyJ9fQ==','2020-01-21 05:51:47.362205'),('57yxrl1eanqvbsyp2ptexqisqv3llpu9','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-07-14 12:56:38.078028'),('59abf1ymnzv869hop7qa19qnlkxwgbjs','MmE2ZDdkY2NlNGZlNWI4YzcwYmIzZmQxMDhhYWY3OGNjMDZjNzJjMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyR2FPZXdaR3pTcHk3S2R2bVFSSjZTNVZYLVhKWE9LQmpiU1JmUnowbjBaQnR2Ry1LXzJTUGRaR0RNYTRWNS1hY3FMX1dReXVyNHBmY1JTWHlHNUdDX0tFOW5iSC0xSFBqXzN2NnQyckhkc2MzNUxoaEdMVUJseFZ4WkFEaE1lIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo1MDowNi4xMjg2NDkifX0=','2020-02-24 05:50:07.132236'),('5au0jnzxn7zwaw2bycftnpq3rcmp1nwa','OTkzNjUwNDRiZGI3YTliMWJhMDkxNDA4MGMyYTczNTMwNTk5ZTNkZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfaHo5ckZHQTBrTVNjMTFVUk9qRDNrZW5tSXNDdjExZGpkNnk3cnNVdWNMaWdKYWVuZlhPcm9pZVYyNE9hbmt3RzducHJjeTdHNGM4MldSeGprUmxFaG9LUmN6azFOVGRkNGg1QXhBdXlrYXIwQU5FYXFFWXBXZGI4N1EyZjBtIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDoxNC4xOTczNDUifX0=','2020-02-24 06:00:15.200670'),('5eol9m5wni7ays323vjhfdyp3frqv93g','MGQzYjBlZGEyNGI2YzI3NWM4MzMzY2ZkY2IxMTM0ZTFmYmQzMjNiYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxa1BpVlZqdFJGWFlGRUtDNDlqeWxCNHRYSWJrWVY5YkpNYnRpbjdiU1BLcWNsZ25idm84VkMzRnZmcTA0UUhkTU1ab0h1MXBLM2Zzc0ZkZ1RmWWpPMUZBUC1EQm90dTVhaFBtbEhKN2FIVmFWWjkwV24xRXFVNHJ4dm0tRzAiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjM4LjE4MzM1MSJ9fQ==','2020-01-23 07:15:38.186921'),('5expwcnxcd6l92sbg6maujzvgeoxptak','ODkxNDI2NDRlMjZkMDlkZTJhZGUxNTZmZDdiOWU1ZjM5NTIyOWIyNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzdjNYTWxvMkFUTmlPQnBQSWlwNkhSTTJfVmlpSFQtUnBmMTR4VmZ6bmdWV0pNVGR6Qjh5T0VwXzlyOHlrRHVKTDg2TldVT1BGeFZzR2tVYWxIVmVBREEtc1lVdTJ1c3owaTA1dldNNXZNUmNTTDA2MGg4TDRpa29adnd3akFZTEFpUEFDR1plbjhMMmxxQm1VMFlNVzJPeVJlUEpCQkt3IiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MDoxNC45OTAxMTAifX0=','2020-05-18 06:40:15.993823'),('5g7gq9c6tg3jhept6rhf26p53yk9mxfy','NTUyMWUxMzdjNTJiZDc0YzNkODhmNjg1YTgxNjUzNDVkMzU3ZmM5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5TW9QTGVnZnBMajdVYlMteFpkaFkwUjJoOHA4T0ZKT21DaGpxUHg0RVhpbUo5eF9FMEViYmFFQnMtbVNzUlMyT2hfR042OXNJTGpiWlF3MmJDN3FSdVJxc0JSYS1lWTE3aS1taDFlNWFOcjBpNnJJZTBicVpYVHV3dGkzanMiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjQzLjkzODUxMiJ9fQ==','2020-02-13 08:10:44.942018'),('5i43hwmjmav0hurto4xexm8ioxiakf8c','ZTc2MmE1NDk5MmI4ZTBhOWQ2ZWExNTNkNDhjNDdlZWM2ZTkzMzM1Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3RDdIbW5PNzNNWnl5eW16VVJrQk10a19ISEFTU0pnQWFmYnZzeXhyREdpcDdCaDBTQTZvMGFHSTlwYTBrMWNPQkJ6ODdLU21YdDBfSnNvaFp3VTNQUFFBTkotdkYxX3dzVXJXX2VNYVB6QmF1aWZnRmR2T216V1lzV2wtUlUiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjI1LjY5NjIwMSJ9fQ==','2020-01-23 07:15:25.699554'),('5jdopb22gu4g57fygsvqhke35gk7gaps','OTRhYWY4YmU2ODljODRlOWQzYjY4YWQyNmZlZjcyZGNhMzg0NTUxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2LVRoY2VxWnpCcWoyUEprSU11YVpzcFpjQjByeFQ5VnJNZHB0Tk1KUEg2THJaVnZOUUQ3Q1lxNmxYcnE4SEVCVlljV3YwaTg0dEF2U1dyOW92RzNYSFNwc0tfOGlNMDh6dC1TVGNBb1VzOXNTRmkyNFU1VUtKcC1HbVVCNDgiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjAzLjUzOTgyOSJ9fQ==','2020-01-26 05:47:03.543228'),('5k1wpqzoj654vzzcfsh0x6ur3v9fil1d','NTViNGE2NDQzMWRjMWY5MmRkMmU1OTE0OWZlMjgwNzc4ZDg0NzMzZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfUlBiZFNLR25fd2xkT2dOUTVuUy1fbGIxWWFjUUZ4VDBzN1I0d1Q2aFduck5OUDNSbnFOZWZVUFg5cGN3Y2dTTGlQU2hHb1Nwd0s4bm0tbWNoM05lR3ZERnhteEdDU251UmRCUFZNTEhfZlo4SUpfdHkwSG9lTUF3ckV5TkkiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA1OjAwOjAxLjgzNDA0MCJ9fQ==','2020-02-16 04:00:02.837490'),('5m2wlqqsfyl16was53zy3fdixv0o2w2h','YjExMjVlYjkzNDBiYjJkMTkxNWZjYzgzMDQ1NzE2Y2UwNTgzOWJjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUI5TG5rUTYwQUx3R2xQSXcwZ1BiQnEwRG80TmVwVGY3TjF3ZHB0aDZISl9ZbVR3ald6bEZvZ0EzclFTRmRxcHFzV0d3QkxUTTNGRkxrc3VsNzE3bWxLSHVfY3kweHpRTVhzUDZyRWdhbURCRHFoT2pvbzJxTWdJOF9MczQ4UVg0IiwiZXhwaXJ5IjoiMjAyMC0wMy0wNSAxNDo1Mzo1NC45NzY5NjcifX0=','2020-03-19 07:53:55.980412'),('5mf5b9sml2bia2v4q8vm6sqejmrg6ud0','ODYwNmZlZWJlODEwNWY4YTZjOWFmMDRiZDYxNjZkYjg1NDI2ZWM1OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVaDVRaG9jNG10RkpFZDg3a1JmUHRRaVZiaWtZd2JKd3V1MGxOaW91OXNPSEdoREo1QjdCWVlBa2F3RFh2THg1ODV5WGhWMmk1ZDctUm9Ua3haeGlyNXBzV2JGQW91R3ByMXdRX3pfei1ybWxrUjFQZXBQRVVPenZkWEQyWXdidl9ZWEdWQzZ2YmtxSHBwZUhCUl9iTkxwcFZVZ1QwVzR3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzoxMi43MDM3MzkifX0=','2020-03-29 05:37:13.707363'),('5n5yaxanxyrwvw4nt4z4us0zywg609g7','NmVhYTc0ZjRlMDlmYzU0Y2QzOGE5NDczNzE3ZGVlMzEwMjQ5YTIzNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6NGt5M3o3SFE2aFFzMFQzNWVVUVJsR3NhNFdEWFIxMnNtMkVvWElYSTd4Y0ItaXNZSDBXelJfQlh2by1jem9GQ2U0UDk5MHdfd0xheE9HbUxKRHNtMHVnQ0daQVJnNGJsSXNxbE1BVUpUZDRaUGo0bzlvM1BXZm43eXFsRk0iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjMyLjI0Nzk5MiJ9fQ==','2020-02-13 08:00:33.249174'),('5naamskn3dhyuyuzjsr8rhpe1rpny32a','YWVhZjdmNzZiNjdiMDM3MWU0ODE5ZmNhOWQwOGZkYjk5MzU4YTBiNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWSDFjblM1WUd5TXFobERYeWtwNUhHZ2N0blQ3X3ByeFdKTmY3UUxnVTd3V053ZDBPd3pCM1h6Z1V3SF9hOEdVU1pMN3JSQjlURTRFMC1ndzNacW5SaXRlSDZ3cy05NGFPT2V1Q2ctczRNSmFSZV9kbVI4cUQ0anpTTXlPMWlmVzVTUFlHY2NORG4ySEhPdWFXR3VxWWRaOHJTTnI5clBBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NTo1NC45MjU3NTEifX0=','2020-03-05 10:55:55.929379'),('5ngmcpwvbvfqq5v3zc1q0r4n91t42aq9','ZDk0NWJhOGRhYmZlYWNmYTBmYjMyZDQyOTU5MGU0ZWM5M2UyOWRlNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMwZEZtVUEzaGVGY1V4Qjl1Wkh5MVlILWFNWEtrc2NFdmMzbTFvaDhTQnFPYlhpaDZYSEdFQ29vMndKN2JDNHpCbUhiZDl2emY3QjI1ZTBYbmJSdndKbzk4UFBwaGk4b0cyeWd3cHJFT1dsYl83djR3blNmRElOSjFXY0EzVHRMME1fWUl4ay05ZTJXRzJzdUVzV2daUkhXYUdzY0Z5QWxBIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowODo1OS4wMTczNTIifX0=','2020-04-21 07:09:00.018511'),('5o7ed9erde7pk9f3xfyv8jnjmvma845w','MjdjNDUwZDI5ZDBkMmRjNzdiZTVjYjczZGQwN2ZmZjhkZjdkNzhlNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItMWRRTzVuOC1pVGNMQnZPTDZXTDJmMkgzcXZWLVNqQ05xRzFVZm5Xbld6dTNmNUQwWVRobmJSWDR5VmlpUnpQRmwweU9xMGg5SGMtVWNmOE1vSFQ5TTM5UmtIUjZqRnp2VjljeE9HeEJYSTVHVFotbGhqZWVuQnZlSnVZV2ciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjMxLjE3MDExOSJ9fQ==','2020-02-06 11:50:32.173555'),('5o9zp6cycmjpuvyu0dmkj4xqjpsm6pz7','MjJkYThjNzFmZDVjMGJkYTkxZmQwYWE4ZjIwODQ3Yjk4NGJhMmUyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUI2NW10UjhZc0RhZ3dHV3JOYkotaWstaHAyZGZwZ1E3RHMxcXZBa0lsd3A0UEVuOGdJX3YzRFRJa1haY3gtcXhoT0dINUhBVUdhbEt2ZmFDY1JOdnFHdTRyblNXTDRPQ2ctXzVLelY0VHNsOE90YV9PUl9BQWNqX2lzOWo1USIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MjMuODk1NzUwIn19','2020-01-29 06:18:24.896957'),('5pfiixntjblh86cfbcx295bmysusw6u9','MjhjMGJhMTg5NDhlMjZkOGNlOGM4NjM4Zjg4MmMzMzdkYWMwOGNkNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6VnFtTXNEX3ZzSkU1aXY3MzV1MnFsQ3g1UHJGV1NNbmNnSXpJbG92bnFmaHJMZXh0YVNiZzA0TVZleUJOb0hOUjBoUFFXMVFhVzdVdWtyM2NyUV9iRzlKenZyczJEX1UyeW8yYnpXU29qRTBYVm50cmROSVEtaTc3aUZzbVEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjAzLjkwNDUxNCJ9fQ==','2020-02-10 07:40:04.908090'),('5phdil79c1xh5warbaegisj56skt4lxn','OTRmMzM1NDhlYmFhNDI4OWEwZWQ0YWZiMzgyYTg4YzIwMWY3YTA5MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYMzRoRzdwLWU0dU1ESFlZaHVadHlqLUgwZ2pnNGk1SHd3OFduZnROcFpYa2NNR01iRTlYajFzZ0N6djZxYmxuZENrYTZwSnlTUXFDVUdCQ05nazNwYWdEZXpSbl9Pakh4RDJhSzkxaURodkRxLURIVUxvd1VtcXdvZi1DVU94bzVnVFJ1bFV2Ry1UQ0NzZGpDQmhCQnFOejZqYzBIM2pnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDozNjo0Ny45ODI3NDEifX0=','2020-03-29 07:36:48.986322'),('5svkreml6ieglz1t8vi3eoi9fs53f86l','NTM1MjVlNDJmMWU3MjcwY2UyMmRlMjIwYzcxNzAwOTI1MThiMTYwMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0IzLTlwenEwOFFMb0JDRGZJaXlDOXFaaTdDTXFtd1ZtaVV4eW85bTZ1aThnZlk3dTRwWXlUNmo3YXd0Wmd0Y1NwdEc2bV9yTHFiOE5NVkxkYW1sUXpuM2o5UmpFVTdSYzg3UlJzM1BiRElLN2FpaFJsX2x2bWlXRWZZWkhoR0FEIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzo0My45OTA1OTkifX0=','2020-03-11 10:33:45.994170'),('5vcslg5z4rblbmt5054oa1g8xcrzp1x0','OTNhMTY0NjQxM2I3ZDk3ODI4Njg3NzMxYzI0YTMzZjlhZjNiMmFlOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyTUpIQURlNTZSS3c4VENvY21PU0o5alFndi1wWmhERGgyQnRSQkRzdnVCUVdERE1rcWNROGJQMHlTZUNNNTdUUHkyTzgwRlZWWTlGNTU2U0h3SE9pbllrZ3M5TFJFUlBMbXpkNGRyRFJORnBVZFFoTHFqZjRNTmx5MkIxVFEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjI5Ljc3MzczOCJ9fQ==','2020-02-06 12:19:30.777723'),('5xawltjv23kklqosejrjrwr0fvmmewdn','ODIwOWYxNWU0ODU1MzU5YzVhM2Q2NWJjZDg4NmJjNWE4NzgxZGUxNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyaHRmck81ZU1pSUVwQk5vdlZWVDhOWV9rMFdfY3BUcnV3X3ZkaERDdkN1STNyRGRyNXZIQldYeHJTTkVEM0xCVmdLQ29aN1JQYU1PTWFnTUtpd1pDSklzeEVscW1ndHltMkhFeXFfQU8yd1pCcUpsbVhmRFVJTnVIT25ja1EiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjM1LjY0NDY0OSJ9fQ==','2020-02-03 06:17:36.646252'),('5xen4au2n3wlc4cdpadzfu9c9j4yo1ju','NjM5ZTY1OGMzNzQ2OTA3NWQ5MzAyMWVmZjg4ODI4MGJmZTExMjM3Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxNnd5dW5naVktaHpWal9lTWNwOGFtMFNmWGdpdy1NbWZXRDd1T21panFwMWN3aFdYeGQ0Um1tMTR4VGNGVGMyUjU2Z0dua3VVVS1aWkVzT3hENFR2MVlibUZSSVZyQnlhN3V6T0I1NWc2cHA2UlNhUlY1dEFod2g2Tjl1RzQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjI4LjA4ODcwNCJ9fQ==','2020-01-23 07:07:28.089828'),('5y43tn1thhglyqjt9i1ybbaewzqcwfbk','NzJjYmUxMWE2ZGYzNDE3NjIzMzUwNzUwODljZmYwZDdiMGI3NzMzMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUJ5MkZGVXRrVTg2Vm56VFhWSUYzVE04MVZaWVhPN25tYXZxNGdNbVZHdmppZWRlVWt1TXcwVlFOMzlLNUVTb2czTWZPNGhkWEUzMUY4RDAxb0dXUE9ETkFDTHFpSTZGWWtESEI2cU55SUFoeXJXUVAwV2tsSnpSdnNQMkQ2bFZTIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NjoyOS43MzcyMDQifX0=','2020-03-16 07:46:30.740668'),('5zqsh0ktwisu4hnkzm9vlrv90r2z8i7k','MWIyOTk4YjQxYTI0MzMwOTEwMzIyNmNiNjcxNDU5NzNjYzBhZmVmMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyb2stbjl2NjROWloyYmdZWElJTG5GSmcyUmNVTHg4aURDcHUxZHRvM3NGM3d1VjJHaDAxWWxjdkVaZmdyYU0yRGFyRzU5YlZyX1J1OXhOQTNfZkVfMGl5QThIR2tmT29IVlJNdnlYVDZvbEVlYUtFYlMwMEx3cERlWjRmNTQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA0OjUzLjkyNTc2MyJ9fQ==','2020-02-06 12:04:54.929421'),('62vp727vncdqgdi1lsexw577s4br6y6n','ZmFiMDI5OTYzM2FkYjU3ZThiYmU1NzNiZGJiN2FjNTJlODhjZDMyMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUItd2FiMW9ZVzVYRFlTWkxNaEt6Q2Q3ZVZpczVBX2czd0JNQXRGcUNFLW01SEx2ZGNQRks3UXpkM0F0R294cW81RjFjUUJNb09nVEdEVVp5WlZkRDVDM3dzYVBOb0dES05sU2hTaGJfbkUtNURTV2hXc193R25NV3JNejNIZyIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MzAuODE0OTA1In19','2020-01-29 06:18:31.818333'),('637nkl6nhjeh7crqunakenh7jerbqcom','ZTNkNmVlZTg0MTI4NWZjMzhhZDc5MTZjODgzMGQ0MjgxZWY0NGQ2ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxTVRfaXl6eVRSRi0tN0lOSzRPUnROQXZJZ0hHY0R2a3RvRGNIUkpJU2lJQkdHZ2NUTTh0RERCZDVoejVPVXJVTzh2ME5ldk41UGtDaHNVcFVSYlg0OWZBUnV1amMwbUMzTUg5LTJtd0lFSjVnVkRqbjhDaWVwRkEyUG9vTUkiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjE0LjI0NTk2MiJ9fQ==','2020-02-02 06:01:15.247131'),('63gvrlre996ccwj7nczucl3eenptc43y','Y2RiNjM2N2Y1ODQyMTY1OWQwNjZmYzU2MTM3ZmYxZDA2OTQ2NTVjZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfRHRwLW5RTERXa203OGd5ZTdBRW9JbmJTTFpDWnRWT2FEQjdTNVBZMTVXSTY2SkRobU5TTDJlbHFBdlViQjNnbTd0b0RLUlQwNUJVMTBuSGN3YXhfeTFMNndOa180amNoNlE1bnR3UV9XOGJ3anc0RGptYWd0M3lYdG5rZFkiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAwOjUyLjU5OTEzMyJ9fQ==','2020-02-02 06:00:53.601284'),('65duggz8es40kkp2qgfqt8hxska9j8dg','Njk1NGJlNGVmMmRiMzg4YTJhMjA5NmFiM2JlMTQwZjAwMjY1MTBiZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYTjRqQ2pwRGZBREZlTVBjS2EwNVhSTElhdTFRaThVSmozTzBrZ0xxdF9Ia1M2OFhwa1k2TXl1M3ZxdUpUT29MTVl5MmhuUUtGR2lPVGctNjQzanRTSTdGSzcwSUEtLUYtb2laRnZoWkxsUEVxNzFKNGRiMzlVNjd6TFdzSVdRX2hUSVpVbjJybGJ5QTFDUGl1SFhVLVVPUko3TFk3TGxnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzoxMC4yMjEwODMifX0=','2020-03-29 05:37:11.224545'),('65p8d9zvkxhfnbh8e4pnqjap1wo56lpo','Zjk0NmZmOWUxNWI2OTBjMDgwZTRjYmFmNWU5MzUzYzNiZmUwMTBlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzVmo0akNLT3NqV09xSFNCZ040UkRZa0lOUWpsVGZHaVIydkoyb25ERWRhbDBic0FDZUdoNC1HQWZhOUtnblB4TWR0ZzFTRlYtaEl0Mi13QThrcW85LWFvR3pxLXJNQjFXeGpCejNkanh1X2NlWktoeDZKblRPX29xQjNUNTQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjEzLjg0NzA2MSJ9fQ==','2020-02-17 12:00:14.848912'),('68tr992py08q1exw1iq5v6e6g9mp41ve','ZGRlOTI2NWI2MTE3N2NlMTljMDRhZDExMDQ4NjlkN2Y5Yjc5NmFmMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxeDNnV21mOWUxaDhnRjF3UW5mZDBIRnBPcGs3UUNJSzc0QTZ6VV9VM3ZXaFZtOGVIaTJhaWFXcEhRbmxNeXVEWEhIbVFKUERKOEhVQ0dielFuTXBEa2Uya0Z4M254VkxPS002ZEN4NzNFTXg1dmFmQ0tzX0J0WDh5UFZDUXciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjAxLjE1NTk4MSJ9fQ==','2020-01-23 05:26:01.159605'),('6ad12aee39qq3p456c7z410qdeosjc5s','OWU5YThmYTM2YTNlODg5NGVlNjhhMDkwOTNlY2RjZjI2ODBlMTg5Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5TEdkb1ZEQm5zOGJ2T2RQTkxma3pnWUdiZkZ6bUFkNFZUNFZ2elNoTkpaSEdCTGdnVmhJaWpubzN6VG02VnVsdEhTaXluUWFCQTRGcXNpRlVMdWFyby0xMFIwbkJ4RGZtUWhPZlU5blNXYXNhWmFlclJvS0wxbmZxWVZ5R0kiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjMwLjU0ODk5MSJ9fQ==','2020-02-13 07:40:31.552399'),('6asln7r1zgdti5ek0zi3oargtmal3fqv','YzVmYzZiNGYxMzMyMWYzNGE0YTkxNmJjNWRlYzQwNzk3MmY1NjkzYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEItWDRiWG4zbzF6aFVWRGRuNUVHZ2JxZ1dRMlpXc1NJNm1VM0c0bnZvWVJFWkdxMTAtODBiUWF4Q2dIYnpobGJ3UWVoRm5VQ1c5eWhjSnlqZUJWYlBaRzVkZ0JXeTJhTk5fLTFsQWo1UGZXMllkaFBBUFU5NGFtaVpMVGIyMXciLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjM3OjUzLjgzNDEwMiJ9fQ==','2020-01-20 09:37:53.837694'),('6b419nhxztijpk3wcbsm6brfygp36tzt','Njk1ZjdhZmM3OWVkN2QzMDJmN2IyZjkwMjFjNzI2YWJkNDNkYTYxZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYNXRjN1N2UGFyZzJMczI3MDRubVBXSVFkdmxCaDBpQ3F5NTFKX1JKWFBIZ3V4bXpuOG9seVM4cFZrUFNUSXprYWFqLUg2YldBaG5URTR2UzdaaTRUdXlBd3VFUmdlakw5QmR1aU5xMnQtMkJ0QWkzMV9vWHN1YUNQVU9odGExbktmTHBrUG9JcE10YkYxQkUtNVBxeXlxRG5NU2RwR0JBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzoyMC4wMTI5MzcifX0=','2020-03-29 05:37:21.017208'),('6c3kg8bxas9bg8rcmxsoty3id02yooq9','OTMyYTAwMGMyMDJjZTVmYjg5MmQ4ZmE5ZjMyNjc3ZTY0NjU3MjU1Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMwTDQzaV9TWndhOE03dHhNV3ZWMS1EYWFOR21hLVY0VERsM2NmdlJTRUo3Vms2dDdHS2x2LUJONDQ0bHRXcU5XN2RaUl9jc1QwcHJ3VmdEc2FUT0xNSW11bk94aWt1d05TYUVQSFNRY3RhajdCN0RNWi13aG44aUc2TThsRXdfWFhmTlduRUF6LVI0MVVWN1ctaU82V2dxUFpLbWQwYlp3IiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNzoyNS4wODI0NzcifX0=','2020-04-21 07:07:26.085804'),('6c3vu6ljkqwxv31phgsg1w4pdnbjz7kk','NmRjN2ZlNjJjMGI5MGNlNzY1NDI5MWI0Y2NkNjQ4OWQzZGEzNWIwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0Y0lZb3EyZExxNXZIRGlPWlYzbW9HMUZvSHJuejhrQUN4YjhOdE9vZHhTa3oyX05oSER2eng4aUVia3hIY0ViRDlZSGpySHdGaE9fTmFJOUt1a3h2dVhSam5BVmhEZnlmLW9zMTFsZkhieWdBUFpNUkd6R1JtVkZwRmZ3cTgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjA1LjU0ODAxMSJ9fQ==','2020-02-10 08:20:06.551436'),('6cup1syvy3dnum8sfqumc6af9lm4cl51','NzA4MTVhMzMxYmY4OWYxM2M4MWRjYTk0Yjg3YzU1YmU5NjQzZDIwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYdERRT3hhRXJweFRYbHkxcjdMeG1jQ25aSmQteHM4ZDBjeXNDXzlwU1pscWJwdjBFMkVxbEE2cEl0VHpLeTRMbDdYS2hTQlI2ZEpMMzY3WXJjbnMyd0hwbVpFckRFQ3F1RnNhSVdwSzJLZTVxUUw3a0lGbTZtTGNBOE1TWV9GSW0yajhmMnplOExjZm5fa2RRRzRVWjRwY0xCSjNBd1FRIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1Mjo1MC4wNzg2NzUifX0=','2020-02-23 06:52:51.082173'),('6eg4uoaa3ymeg2qpjgwlqg9y1grusy33','ZjAyMTBiMDM2MjRiOThmNzBlNzZjNzVhMTk1MzE5OTNhOGE5MWYwNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2XzY3QnI3cnpqV2lfcDFtbWFjb1h5UDBCODRGVENTRkRfbk9pQmVxNEY2WllKeWZrSjNiMG1fY2dFaUNzNW5WS2dxYlViT3lWRW5YY3R0YmJINW5YMGYyZXJDcnBYWG9KQ3V5QUYyYWJSSUg5SV9ZOHZTWEROMG8wU1l4LUkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjE5LjQyNjg5MSJ9fQ==','2020-02-10 07:40:20.430365'),('6epmm1ec2eqrgz2jyykm7ui48260rzr9','ZmIzNTZiMjc1ZGNiYmNmM2E1MTk4OTA2MDVhMGMxZTFlZTFkODdiOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItTGtUYldoM1NQUUxyeXlORTJMaXMwcG01N0tEX2xOYWtHbVRKb0xjV0dCTVI3bDhrOFJXWEJ3Z0V5M3A3eVhWUm53RW5hUDNBWEJMRGVqT1E5azdLSFM5dmYtc2ZJQ0hBQ2hScW5WUGE3cVJVTTdFVGZ4bzZiczh3ZXRVNXdIIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMTowNC42NDg5MjIifX0=','2020-02-23 07:11:05.652356'),('6ewo2fyx85hyuyb5lfxwcnoimldt3wue','NjM1OGU3MjE4ZDc1ZGMyMzg4MDk3YjMzNDhiYTg1NmU5NDZkN2VjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwS19oY3dmcVNGR01IdHBqSjJmb0lOZ2E4Z0ljSlFoZFMwc2tLenFjcnoxNTJGMWlvRkhFWHcxdE5PNXVSVXhZSVlnTm1PNzRUSXBOelkzeHJDUkN6S1h0VHlQVjhzeVZaeHFGQWd5Y0g4QmRSQkFpV2FudllxUXcweHdtTGsiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjI3Ljg4ODcwMiJ9fQ==','2020-02-13 07:41:28.892268'),('6fb9xj466omxcrwdqic9y4q8gei01j2f','MmNjNDM0MDEwNmE4ZjM1MzhjNDZiNjliYjFlNmEzYTgzNTU5YTcwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ4amJrV1gwR0hZWG1JRUZhWHc3LVAxT09vQ1Y2eG1EMUUwZnZBMXJBeDVHVm9xMEY5RlVfNkFzeWNrbVUxQUVKU3p1TW1LODNJRmlzZWlIak1XQUFUUkR6cGt6NzNQaUs1dlZtNUd0OXVGbUpldFpFclVnLUpFQ2JuQXRKSjgiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEyOjEzLjkyNTU4MSJ9fQ==','2020-01-22 06:12:13.929189'),('6fvz2u2ejr0xcmm4ytsp4604f71zc97n','ZTBkNTNlYTczNzQ4NDNiZGFjOGQzNzYxN2MwMGZhM2Q2ZTRkODE1Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2QXpNd1VRMTBZbEdHRnFhOGVLYzQtZUhVV0l2Sy1VTzAzNGd1b0VvdGtUVmhpYlBsWC12VnFMcDRZYlZqYVFvT2hQc19OVi1fcExXOUNvLTB0SXFSMGVST3JZNTZJdW9MdWExSHFJOEUxOWVaWHozUklHR1RQcnBEYkhyemVCIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjozMi43OTE4NzkifX0=','2020-02-25 07:12:33.795328'),('6grlrhh9meq6bhbivj85n1djqs2ep7vv','OTEyYmQ0ZDVkOTIzMTQ1YzlhNzZlZDg0M2E5MTE5ZWJkYzNhMmJhYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItamRhcVhldWR3U09PblM2b1BraGZqWGdoU0hST1VGTXkycVoxUU5ibk5nRnlJZm9oN3RlOF9UOHowVU5TVERsS1FrSnVfSVNQcHliLW9RWmlfRG9rVk4tMFhteU5NbGluaC1YNWdRTG51NnhCNzVLQ1o5Z1dkemRwb1AwNU0iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUxOjM0LjQ0MjgwNSJ9fQ==','2020-02-13 07:51:35.446977'),('6idnmeivjj8yzo7eahsjp9282als3k9y','YTc2Y2Y4NTJlNjE5Mjc3ODY1ZTNiYTA0NDgxMDU2YzY1MzMzN2YzNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwdDRIcWY2Sk1UcDVnd3ktWXF1eHhjd3hiblhDN1NZSXNJbGZuRHQyY205cC1iRmg1VGJ0X3R3cEJTMl9PeGpaaFRfUmhaNTlXNV9IM1N6SFRUUWNvUGRCTmxDem10NTBiZFJkcmR5QU5iX0ZXcllzRkFxYi1kRTdLQm4tQnciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjM1LjcxNTI4MSJ9fQ==','2020-02-13 07:50:36.719176'),('6j68rv4u280yth6ixfx5ykmdxia7illa','MGJiMTQ3NGNmM2RmMTIyZjc4NzZkZGQxMmQzNWM1YjU2N2I1NWExYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3dFVtUDlVMElneFBFaTZ4ODdmcUd0ejJwS2NkNDIwNGpvVU9FcFRaTzBXeVh6b1BSUjE5MXpkeDJyZWRORkxXNUpEenlVNHhlel9OSEJvMUlnZU45ZHh2bXlWV2wtVzdrZGtSWTRveVpta291NUIxTHMydHUzVjI2eDB2ZVEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjEzLjg3OTA0NiJ9fQ==','2020-02-17 11:10:14.882678'),('6j7cgfeu2tmjuu6gqglamlbai5kzo4s7','ZWM1NzA3NTUwN2FkYjg2MzZkODIyNWM4ZjQ3OTg5ZTY4Y2NhNWI4NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3cjRsdTJHbFowYmZlcW1sV0dnemdpaVRaeUpuZG43ZkgwYXBqMzhsdEN3UElmNjA0R1FHeTgyQkZ2M1h0bjUwQ1lqZ1BWaDJXWUtKNHJsZVkxZnc4SERrLUJHZl9NbVlza1FfLTUybi1IcUhTQm9GNm43R1pPWmZTc0IxTlhEIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowODoxOS4xMjcxMjgifX0=','2020-02-23 07:08:20.129212'),('6k7ciaqh3uqoesxtb24yb5wrqwef2uhx','MTA1NGM5NDlkMTI2NjdjMGY0YjFlNzhkYzcwNTVhOWY0ODU5NjJjZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3WmZmS2JkOXJtb1VtRFdpTno5OHJpY1psaS1haUtHeUh1bFNoR0VyZ09tNFlILTNJV0dJYzFHbFJrUzEyMGx2alFqT3VLRUpRMWw1bDJvNXdwVGdaSXE3em50WnI2dWVqUGxLYzh3QVFIejZhQk5GUXBGLV83aEg4dDdSdTQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjI4LjU1NTIzOSJ9fQ==','2020-02-06 11:30:29.558582'),('6km9gs5h7hyu19qsozy5bml47vqj31p5','OWZlODQ5MmVhYmUyOWQzZTExMTE3NjRjYTI1M2U5MGVjYjFhNmMzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4S0dtZFZGWGJXZVdON2dmTEVyMExCaXNjZmRDZHk1MklBOUdySWx4OTZfRUsyT3k3LTJZN0RhZjJLTkRkaDlnVG5GdGlUU0ZrZGtwNWFyUnBtYzZRUEJlUTU5aXVpajBtYUVqUGx2aGE3eWFid3JSNS11WFBHRzFrRUJueURRIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1MTowOS4zODcyOTIifX0=','2020-02-26 06:51:10.388547'),('6l55mty915stvka92kk9ijbqdlc81vks','ZjE4MGM2OTA3N2YyZjJiYmYyYWJmMjZiMjRjNzQwYmRmYzFjZWQ5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5bkxRTUsxNUNyU202anNiZlNoeTZuWkxQQkVLUXgwb0g0dzluRXZHR3JhN2FWQW9DVXY0Ylo4QUhhWnJYODRYUXpHZy1qSG5VSWRPNVdUZ2w5RHI0REJIdUh1QmxaMTRKZDB0dnpIaDFhYU5tYUFIVGlBSXktT0ZwZ3VtWVUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI5OjU0LjE0MDg4NSJ9fQ==','2020-02-06 11:29:55.144268'),('6omx75b9xl3yk6w4k1ao9gsiw86kuoka','MjQzZmViYTlkOWZlMDI3MWQ0OTc3ODA3Mzg1ZGFhM2MzZjVjMmUzYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwVGtHZ1BwRzN1c3pXa1FxV2cwTUlJdHU2OGZIRi1VTGdpSXJ4N2tjbkFZQ1MtUWl0ZVBBS0NvUW01SE5xelhaRzQ4VzRGQjdIWDhoRGM0dGtFUzVwWEswLVVZVmx0bUF1UjFJNEdxaFpqdURBamVnMHlKbGs1QnVBNWxFaVUiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjAxLjE0MDM0NSJ9fQ==','2020-02-10 08:10:02.143903'),('6p5c8z0iv98sfdqk9x6ivd1mv9c0abmk','MzU1MzJkNGU4YTQ2MGE3NTZiNDk5M2FhZDljNGIwZjliZjIyNjZmMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzY1N0RC0yaU50aENwMXNhWEtwT1hWVDN0bE1KT3gtY2FPNlpMRkh1c3pxVWgwZkF2dEJleElLOGN3OUhfaEhBaGV6a19HXzVPQ2tZSWFiT1k5cFU3TmNvNkdYWU9ZLWFldHZ3QUxhV0lZRlpTd1h1d0xrajAza3Zsclg5QVkiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjU3LjQ4OTg3OSJ9fQ==','2020-02-03 06:17:58.493563'),('6qfpyjk5oys94c15g5n24hfv0o3o59yp','YzJhNWRmN2UyZDQ3NDVkZGE2YjNlZTdiY2FiYzllNzAyNzRlMjYwNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3NVlyVksxT20ybFlhNUNSMWFEV0ItTWl6QmNBdFYwUDNTUnlVM3N2cVhRM0g3NGc5cTBLNkRsU0VUNDlDRW9JaWVBYmMxbmtpMk9MY2RLUXJ6Vk50WVNOZkltWENTdklHbldHWVJ5UVRZMUxIZEx4MlRvMWp2OG04STZXcVUiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjU3LjI5NjgwNyJ9fQ==','2020-02-02 06:01:58.297873'),('6ql48pmaw02cig13olyv29xo566ffo9k','NjhhNzg4YzE4M2FjMDQ1NTYwZWNhNDUxODBiNmRmYTJiYzVkNTUyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxX09YVnAtWnlkOXQzSG9Ba1RPVkpWLWYtalNDd3FrZnBEUWJlc2x3bnVmX0k1SkJaY29ZQlEtdE9sSE5BWXpoN3FKYm9FX0RjSTVUenRkcGtFOUFadkw2NHlJVjRJdm9DbHVwVmpCSkJ0WU96V0FmZm05OHp5RDhRMUlxczQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjM4LjMyMDkyNCJ9fQ==','2020-02-06 11:47:39.324419'),('6s8ptzmc6zzg8dsxky1d3w2ew8expf1t','Njk5NWQ4NzNjMmFjYTI0OWRlMTFkMzAyZGFiMDQ1MjVjZjAyNDgxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMxNjQ2Vk1qUERxbnppS3BDUk1CcUJ4SHBmNVNnUk5KaWliQzBVaHNYTnBpTjFHbEw2cWVkSWN3X0p4X0dpZDByaG91bHY4THJKb0FDWWpQTXdvS1JRRE9SOGNhV1FiMU1yUTlkVFptWnJpcVRQMkFWODZPMzNHQ3hSalVubmNaVU9LZ3Q2LUhJaWU3VVAwdDAwWDZhZndxRWhyb0ZpUUNBIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNDo0NS43MjE5NzIifX0=','2020-04-21 07:04:46.725367'),('6tos5j6wm3mc6uek03q1t4yyqpue76y4','OTkwNjExYTJkYjllMTg5OTA5ZjYyNzU1Zjg3MjcxYmNmZDljYTYwMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5XzZQRGFBZVZIS1o0dnEzRFlDR1pIVU8wM3YzUS1HRVFoVXgzeExLblhaRG5ybVN5clZLcU1fMjhXUXNCWTYwSUVQdDFyb01ZYm9sUVdEcnJiUDh1OVRkYWVXaFNKaFZCcTBkbVR5WmVwS29ISm92a2c5SXAwVGdZeERIS28iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjE2LjAzNDU2NyJ9fQ==','2020-02-13 07:50:17.035793'),('6var1l6p10yl4hj5mbxl3lxxkpoaww3t','ZTA1NjA4OTUyMzFmMjMyZjQ4YzE4ZjQzNWJiZWYwMzQwYzk3NGM0NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwOXVHNDh0MUJxdkM3RHNpa1B5eVduNl84N0VUOHd3VE5mTS1Lem1vYXhMU1ZnTld2aXJHazJoSnl5eTZfbzAyREltWll3N2cwWnNoZk95ckNSRHV2X1c3MU15ejZpOHh4S2NCdEc3ZWcxVEh3V0tUelBwaGtPZjJQUmk0dzgiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjUzLjY5MDEwMSJ9fQ==','2020-02-13 07:50:54.691159'),('6ve2vhn6du7xjjf2c38tupsn1y5snxel','ZGFhZTY4ODMxZTkwNDllYzEwMDEwZjI3NTEyOWVmMDNiYWRjMjkxNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2eXNXdm9oQlVRS1NWaEZ0aGE5alplNHRaLUlsZ2k5YTlmZGhJSjgzTERsR1NEUW5MZ2R0eHFJZnNzYjRNSy1GYzJPd1gxQ0VQWHNVbExreUlSLWNBLWZYQlR1SzhDZms5ZGtYY3pXNDV3cjVEWk8yVzlHZDBzMExCV1VOSGsiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjM3Ljk1OTI0NyJ9fQ==','2020-02-16 03:59:38.962780'),('6vl9h9k03wi1gmhe1t19iokpwbf2wvez','Y2Y2Y2MyN2UwN2U4MzFhYzFjMmE2ODA4YzYwMWQyY2M2MDdiODFkZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxcERIUGEycE9JRDd1YTAtaXMyc0dSUEoyb0FCUXZNb3ZTamZlMGFBWUs5b1VtYmx4TTZ1TzQxQnY1Yk9mN2dGbUc3T3FGWTgxMDk2RlBYNHBNb18wVTVEb0tKRTVFbkphMHlaZFFXOWRGTkt1blhRZGFyZW5Hb05LZzhrczl0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODoyMjo0OC45NjUxMTEifX0=','2020-02-27 07:22:49.966219'),('6wdctv60gtdqaz5mt487hobtahv56n9d','MzkzNjg4N2YxZTU2MmVlZWFkOWMxNmJlMjhjMTMzNGNlZGRmNjdkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1T05HSGVBVl82M3VPR0dubVdXTmxLb1p4M1A1OXJuWUEzM3hPQUxjbEs3MC1DMkV0SFFGZ01aRnBVSHpjVVpCNE1KUU5lejl5RGtJN2dUUXdCRkxGdC1VeURqOEF2a1VXNTVaWVBYbnh5YmZOcml4MmN2R2pMYUFoaFpNc1kxIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMDoyNi4yMTIwODcifX0=','2020-02-23 07:00:27.215665'),('6xvawesdpqqif5s3sp32s47ieq41qkcp','ZTU1YTI2ODc3Y2E5MDNiODU1M2Y3ZDY1YjM5YWFmNjcyYjQxZTE1ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ5ODJaOXI3Z3RCYTh1VldONm5zLUlyLXFQUlByQm1VR3d0aTlSbjFYSFk1XzBzeWVLUXpjOThSdk1kMHpZXzdMY1pIODk3dWJOS3RSd2ZEMXZBdVJQR29ISlNCbDNlejVDMFpjUVdUOVpVTDE4MGtYa0Z3SDZNZklXYzA5dkkiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjM1OjExLjEwMDM1NCJ9fQ==','2020-01-20 09:35:11.102026'),('6y52tzgmf3g7axs97x7h4ti1any0trk8','YjIyNjAzMTg4NDdjNTZhMmZiMjJlMDM0NWU5Njk4NjE3MGViMDE5Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5cGtwMFZzV2kxQTJPTHY5d2FJTWNyZlE1UlNTMmtTSUxfZXd0anpZUXRiS20zWFJGTTF6NUJyS0lfWEMyeENKcDdpTllndE5SYU83Z0ZMb25GeV9KV2pjeURCV05Bd2VNM1VTSk9XZUhXanJLdWJZb0pqaTJIR0daU3dlb1ktIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NDo1Ni4xNDQ4NzkifX0=','2020-03-05 10:54:57.148326'),('6zr89wx8wuywipznmau4vwg7ic87krw9','M2YyMWUxMzdmZmUxMGNlNDMwNzBmZTQxOWJkNmE1MmUzZTA0ZWMyZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzc0dEZnM0T3c0TEFYRTQxbm1vRWdhSXRRYnk2QXJYNXduc3NZOWktYncwYlNjaEpZZ1BuWTZueEhlSVNFT0s0RjdrZTJBbHZaTW5iUFRmWXhyNm9LVVZGYlVmTGZaT0JrMzBrQlc3dFRyTnRkbU1NcU9DQU5MMmpXc3RRc0hzIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0NDoyMi45MDMxODEifX0=','2020-02-24 05:44:23.906736'),('6zsysnzvsz3hpb73erlna84o0ti18kmy','NjM4ZDMyMTEwM2JlN2FlYTk1ZmRiMDkxM2YzNTY0MmQ1ZjM1NzAyYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI4UGxIai04akh3dUh5aFR5Nm1qckRYZmhIS1JLYnlRbWsway1aRjNKNDV3MndVbk9lSDZfRDRHNGpoaUIwYmFjemp5b2NlTWlneHZRUVVZZHoyekFLLUFaVDZUOHFyNEdLRmRxVUFRakU3UnpIVjg4eVZRVGxkZHI3cENXRVkiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjM0LjQzNDIwNCJ9fQ==','2020-01-30 06:08:35.437538'),('70dx677m1xoirb1quq9dnphxz4bjwghr','MjUyNDRiNmI4NDYyYmIzNjQ1MTcyZmM4MWU5NDM4YmFhNGExZjU4Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwNGdWQ1ozNEk3eElHaUx3VUR0Z3hEbG1tU3pST1Z0SXFrLTBHVDhBSUZBNktmU2lZOG9OaXFGTDFydUxmd25CejFIVU95Q3UyNG5yQ09HM09fRlBIZkd1bDJCYy1JRFlYeUM3R0dYcWtHdGJ6MVpzWkY3NnVZbjVhYjQ0UjQiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjI3LjMyNDE2NyJ9fQ==','2020-02-19 05:34:28.327676'),('70zbz95523hnf797omz60ahtnjtx22yt','OTE1NTQ3NjM1MzM2ZjEyMWIwNjIxODMzZjJhZmUzOTE3ZGQ5MGRlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItdHhNSTB4MllWak5xT1RvOXJBNzFvamNyb2gtb0ZxVTZYYS1ralRhSG85eFhjTnMwRndrSG00LVBnRGhxV3Vtanh1VmV2aW9wMXJjcGU4ZUhZYU1Vbk1WdFlDVDl5WlU5SWJaVXZMZkdQR0REZk84MDVCRFNLdHJIdFotODgiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE2OjQ4LjMyMjc0NSJ9fQ==','2020-02-03 06:16:49.326105'),('711n951v650aelf9ko4vy8tpv9lqwa56','YWQyMTcxZGMyNzIxNzFjZmY2ZGZmMjhmNjUxZTUwODA3OGM4M2QxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4dHFfSHFDWlh6d2pqY3pZLWtYU3JYOVZOcW1CYVNybjBxckRoMTk1Ull2MXA4ZlI5ckZ2UmVxcU5aVElGVXg5ZVBnUkRkRlpLVkxMSVZacWs2cTVXenpOR1R6V1RKczE0TVlORnZlQXNHUzRjVm44SUw2OV9KVzNJT2VDc1lsIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NDoyMC4yNzk0NDIifX0=','2020-02-26 06:54:21.282955'),('712tqasu8xyq49h3mqte5ctxgtnbr38f','ZGQ0NGUzMjkyMmRmZDU5ZjZkOGI0YTdhOGExOGQ5YzgzM2YwOGQ2Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzSThxMDNLX1lnSTVsVmtHOU1fTFRWdnl0S2VhQjRrRXhac21XNkVoVHlmZTBtbXZNb3VBVXpFNE9IWGRjU20wb01DVUxfdkVSMHpfMDJ1QjhTRHpyUmF2el84WWFRVURUaS1BbVoyT0lGeFdlU21mZEJJTlFIM1dWNTRNenMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjQwLjAzNjkwNCJ9fQ==','2020-02-06 11:23:41.038786'),('71j4fcok9jtvuaiieaohox2ccnoclufq','YzRjNGYzZGNmY2M4MTk2YTM1ZWNkNmFlYzVhNGY1M2FkNTQyODAxNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUJfWmRWZUNsSjI4VnRQRGVMaW1RU0o5UUxDZzdRaDNubWw4ZUZrcEdyeHlFV2p2Vm5ZMGtuMTRMRi1jZUltaWVncVcwVnlXZVp5d2Y4dVFpUDhJVldzRVYxS3FqbHlCbVFRWDBsU3pLU18yaGkwOXd2LTdGOG00MmhrUzhGZyIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6NDAuNDMxOTQ0In19','2020-01-29 06:18:41.435320'),('72nqhmd4cuc30i2uwtxaq46nzzxpeuje','NDIyNTQzMDgyNTc2MmU3YzA0MTk1NjY4ZjVhMTgxMDc2OGQyYzZlMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItTnZvaWxSZXk0YkhTQUZLTUJGamIzbEwzMUp6V3EwRFl6cWQxVjVNaElsYVNqM3pKc0ZkMFlxVWtleWRmY1Q4Sm5aeVI2MjF4TFNPUFlEa1VrbEc4QUFXdDdUU0ZyaWVpM0VUa3g1RDhNYTBxU2tjM3l3NUg0SHNGV3VCWlUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjUwLjgxNjA4MiJ9fQ==','2020-02-17 12:20:51.819527'),('72yrconjvgbs2pozl7ywy1os3zb6z0x1','MDQ0YTBhZTEyMjQ2ODg2MzAzYjg4YzQ5ZTIwNjY2MDdjNTcwNjBjMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ4Z0gtWXc0d0FCQ1dLYjg2ZUt4ME5mTWFlOUxrWE5EcVYtbG9QN3VEY21yekk4aU9HWl80NjI2M0FDTjZUODVrUEZ5V0hYU2E1OGVGTXNpN09oRnJwNTFtWXVwZ2NHYTIxUWI2ZFJpMi1WM1hrVnktN3lPYzluMlJhNEEtSjQiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjA5LjQyMjk5MyJ9fQ==','2020-01-26 05:47:09.426697'),('73iy09m18gfcp7m7nngxnmjoavu9osjr','ZDJmYTFiOTE3NzljZjAxYjE3ZTdmNjc3YTgyMzdhMTEwNGUwNmI4MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfVkNCc0NOYmFWREQ1NHd2TGFmaDBJbVRiSW9fYUhqYzUzNENVVlRTUkt5SDI0emZNSU9oeUdNVTQtbF93MmM0X25hS2FWczd4QVRtcFVYUHpvZmp1dUN2UHJuckRZSVdlOWlhdUZDS2htV2J4a2FVZE84TjZNbm1QOXVnMTJ4IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1MzowNy4wMTYyNDkifX0=','2020-02-27 07:53:08.019341'),('74m01hkrl8h40xcpzgswe4vs42v0qgm8','NzljZDI0MmI4MGM5NGU4YWU3NmI5OTM1OWQwODliZjNmN2VjMzZiNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0IyMm5MekZvS2Yta21fRGRzS1lsTDNBQW5mVkVxaWVyT00tMFNtLUk3MU1vT0hOTXVCUWo4N3Y3SFZVbTJMRHMxcjVPLVkxdzRHcXV6SGR0bGV4RnlkNkFIOVlzZElLdEJMWTVkWnJaNnhRZ2VlXzRXR21LazdMSEU5Z0c5cUhIIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzoyNC4zMzgzMzIifX0=','2020-03-11 10:33:25.341841'),('75a77hzpmr19orj6o36x8j8lk7mn9a7l','OGZkYzljNWNkYjQ0MzgyMTM4YzZlNDZhYzMzYmE3N2ZkNDM5NzZlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5M0sta2dfQVB4Q3lqTDV5aTl1V2x5cGduUHpDVjB4RlB5ZEhrOFhxZFdrQXpKMFBaaE9ReVFXWUNOUzRxeF91OHh3UVFRY2pDcGxuaHh2MWdVempMTU14bUZpcUwxc18tMk1wSmlDODlLNkFleXBmLXJLeE51V2M5UjBFZ0xJIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzowNC4yNDkwMDQifX0=','2020-02-27 05:43:05.255418'),('7732t8918h51s0csawp7uh4lpe8ogkrz','YWQxZjAzYThmYjRjZmNkODE1YWY1ZGNjOTc0NmQzYmMwNjA3NmZkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVTi04NkNmMTZpUmIxRTh5MnFWN2JKZkJOdTFMMERLUE8yS0tsTjZUazJPWkhVRGFMVHN4Y2w3TGJ1LTVVYndQdFVsLUxRcXZwQ2RscDFVZy14OUplcVFhVl9WaEM5NGd4ZWUtaVR0aWpCZ0JZaDNXaWJ3QzJTcnB5SDFhcHVXeEMtWG5KWFVtOFFDZlVTNWVpOU1xcktfbjI4SU5jRFZBIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowMDowMS4wODMyNDgifX0=','2020-02-26 07:00:02.086713'),('77k8jarnrmz7gp35sei5m8nfgnsylltv','NTkwMDc0NjA5MzBhOWM3YjY0OTBmOTY5YjJlZWNiYTU1M2UyYmMwMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3eXVRT3l2TFJWdlhhUmlzZTFFcXp2aXhvNFIybk9ybmM5Si11SUFQWEdzazFILXI4NVJiWUJ6TnNVZUZJMzUtZUxnTEFfcU1VbnZVSlVWRk5ldU1UOGg3MjVQNHNqNWY3QnFGMmNicExncERBN01odnF0ZU5hYXBoTXFhYUkiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjU5LjI5Njk4MyJ9fQ==','2020-02-18 05:40:00.298825'),('77ynzfmi0yj4o8ygwttte9nvwmte9g9c','NmMxM2QwNWE1ZDEzYTM3NzI5MDgzZmExOTJhYmYzOWNiMDg1NGJlODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfbjk2QWRoTk44Nmt4N2xnSWtSSWhwVFZITWtNczVhVjdYUGRhbWdFQmVjdEpjRDYxQno3ajE5UklzRFhvb3dKTHpLLVBRODRFUmJOLVBqaUZTU2ViYnEyTXR0T0lIN0lZMFBWVFg5dkxucDZPRHkwdFZZdG1xQnRlUU9JemMiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjAxLjY1MDAxNiJ9fQ==','2020-02-19 05:34:02.656165'),('78eaoqwk6v5wbduopm7uikis9i4es9gr','NjcyMjAxN2NhNzdhMjBjODdhZDhjM2VlMjU2ZmQzOWNhNDU4MjViYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxUHZjaG53Q3g5X0prQ3E2WTFfcnA2cm5acktzTFI1dGxoam9EUHREYjV2aGRPbk81ZU9MZnZsQVU5SEF1TGZLSzRPWXh6czVacVBaT1FDZGNueWZ1U1hGWWFMNHItMzB1a2dybmlmbkpDNVBMTlNPMnlMVkNKZnNmTUVKdXciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjMzLjU2MjkwOSJ9fQ==','2020-02-10 08:20:34.566403'),('78yvmvq17g9wyuukflt97hixw2ulegdk','NGY3MTUzNjhiYmVjMWE3Y2JkMGQ0OGU2ZjNjYzA0MGM4NDMzZmYzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1ZUN4dUstYjZUZndfakNNa1RPNi1LWWh2Tm9DdlRteXF5VFdUTGZ5bXQwY1BwZm00emhvWXprdFQtRmMxMFJDUzNkeTBEYzZzR21MaVdEWjJyMlRQNmpQZjZqeDMzTkFmMUxpQmpnZjF1RjIzWVV2ZDdJc3c5MEUtMlBidEUiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjMxLjIzNTg2NiJ9fQ==','2020-02-03 06:17:32.239254'),('79hri5uarajagnp58dh3z97kjbu033e6','OWJlOWQyMzZlODEzNTI3YmE5ZDI4NGE2OGNhZjI1NWNkMmMxNjk4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxSWdSc1l5R1pLVzVMbFJwZUJHYl9DRlZjOWJVS0U1Q2t1WTJldHJoZDMzNFFGc3pSci1uRl9nMHV0dEU0TjBQQnEzbkJ2VEQydERJUDZIajJBaWhWZWhxWHBPSXBaWEs5VUdTNDFnVElrbVpDTXpWdlJmUHFIeURuMEk0LWsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjA2Ljk0ODczNiJ9fQ==','2020-02-06 11:48:07.952143'),('79ix8d4xh05armkxubfkiqj00x50ndhn','M2Q1MDRkZDhiOGU5YTNjNGViYjU1OTNmNjQ4NTc2Mjg0YzI5YjIzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3dExWWGRMNUlZekxwUWZhbVVOalR0WUZkelEtSFZ0WTVLdkoyQmlkZzBkbEVjeTRDeU1PeG1sWDlEWnh0MU5ublhPcmZDU1JLNEZzbVNRbXBzaXoxZHRKdm5FWTV0cW5qYzlqV3dkdTBLVUxrMG5NTXlLNWx1eU5UT0NoY2MiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjAxLjU3OTAwNCJ9fQ==','2020-02-17 12:00:02.580130'),('7a7f7vwsr869slsfcjifop2g84eqldp8','YzI3OWIzYTQ0YWM1Y2U0MDZjNzNmYzY5M2Q3ZTc1YjA4ZDkwMTA1Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOUItLVhxVTVDbFA2OHJrbVdtMW5taHBYNzFyZGxjeW9PUlNWNmdfLW5YTnlxcVZCWmVhYWZxTm5XcFI0b05yeGt6RkhuT1hnekQ1NFYzU1poV0JaSWhtemx4SHM0THJrYzJZaGNhMVZSQmVoaEUtQ3RGZlJNOU5fNXpmQ3JublEiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA3OjAwOjA3LjQ0OTk4MSJ9fQ==','2020-02-20 06:00:08.451520'),('7bo59i7j2vwl64xf5d0ubapjzx9099cv','MDJiYTRjN2U5ZjA3YmM2YTIyYTkwMjZhN2IwMjY4ZTBkZTA3YzlhNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6eF9SMDdlRmd2ZjgyZ3NvWjZaZjcyQlNZVF8tVWxVdjRUcF9hTEVuN1IyUHlfVEVLQkhWTkpTY1MxbTBvODR2M1BoOVdLSjYtbERPOHRRb2FYMzk3dmF1QTFOalBxRVh4VWEzOHIyMFdTeWJjTE83NzQ2WG5PcHhrdWgtcDAiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjIyLjA4NzAzMiJ9fQ==','2020-02-10 07:50:23.090501'),('7bq4peumzvu68xec8lm24icpayru6c10','NDg0ODBhNjdjZDJmZjliNzYzNzQyOTlmOWVhNDBkODViYTg1MzA2YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2aVRvTEtaTmdHT3ZlRkF4b09GZ0ZsRm5wT1FySG1ZVXplWnY1cjVFcWhIRVF0cXpPdTdnY2tsZVZwYkF1YnVPUVIyNnp0Z1ZRNjBJeXYxRG92dFJuQzRWTVNVSlcwS3Ewc29qb0ZXNmlkVF9jaUJSWnFiM0g5ck56aWVhNE0iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjA0LjY0Nzk0MCJ9fQ==','2020-02-17 11:40:05.649127'),('7dc214fwoxb7fgasw4rg9ajf23wr4chh','ZmE1MGU4MTUyYjMwYTgwNTUzNGE3MTY2YjBjNDEwMjIzNTRkZjgxNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYemJ2UXY2Z2cwdXhqdFpZZmRCUU5CQWZDRndIcTdEczVtMGhSZWFVSFZSWUs5YTFJeTl4QTExMDBjTFNtWHl2NWVsSGZJTlBVRVpuYUVDNXZFTXM3cFFEakNBZjlIZUxWcHFBTDR6bmszbjBFSnI3U1lUT3BHMmlCdVRoalluNG9XSW9WVzh0YmR6WkM2R1BEZDBrUm9SbDVRLWI4VzhBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDowMjo1My42ODA0MjcifX0=','2020-03-29 07:02:54.684367'),('7dpytazclcpaixzsuzhleldkl92059hm','MTRkNjZmNWJmMTlkMjgyOWJlYmU0ZDQ5ZDQ5MGQwYmFhMTNlMzdjYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxcDBKRGRsUjZVS0Qzb2wwQ3FaVGtSYmtfQXdHaWl6QlhMWHppRmtIalZaVHVoeDM3ZDlVWWlTNDB2VXdkZmtQZjFnQ1hzSTIzc1FHdkVVcWxFanhTWk1lN2NHSnVLdlFscmhZUm5KU2ZOM0VFUUJ4bC1PalNlTV9JaWdNMmtTIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1MzoxOC4wMTYzOTMifX0=','2020-02-27 07:53:19.019784'),('7dqijtwzdsrpv1pfhvjcbsbg7bwm0fp1','YjU4ODI0ZmQxYjk1YzI4YWJlMmYzYjg0ZmM1MTRhNDU2YjlkNmFkOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItcFBQTWxvYnBFS3BRY0J1UEQ2UUg2WjlxSUJ0MDVWWTlTOXZ1ZjU3TTQ0U1BIbzhaVFF0MHpzYXdpMGlQQ3B0cnFLMTlyS2FOZzRxT2NhOUY4QWZVZEl4RXhXUHBJMzNUR1dPTXNWZVFBY1NvTnkwdTV6TDE1REw5WEpkOFotIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjozNjo0MC41MjQ0ODEifX0=','2020-02-24 05:36:41.526460'),('7eck0116vw7k5lddz3r991ygqwcxf4k0','NGE0ZTlmZjA3NDIzY2NiZmFhNjIwNjk4NTU1OWVhNjY4NTAwNWY3Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVanN2TFQzS05ZdmxzMjQydnkzZWk2WEtFU3lhazlHQXhIU1VoZlVQX25tWWt4S25GelVfTnNOazZuOTdvcVQySDV1M2VBd1R6QTltQWVIN3JhZXNtSW9pOXlnNnd5NzluZThqX3NKWWxLUlA3YUF1SXlFOE9MMWJZb0UtLXdsTjdZaUpwd2hqRHhMZktmc2RiWjRwSmtibGhEdTRWeUpRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1MjoyOS45NTM1ODcifX0=','2020-03-29 06:52:30.954995'),('7euk1niflipupu27mz4o5znth4uf0zg4','OTRhNDYzYTgwYjcyZmQyMGQxOTM4YTU3YzBmNzc5ZDFhMDZhOWVlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3RWQ0bkJKR2dzZHNDTHJVMUZkNzRCelRQczBUTmhWakJWdEh2US00aVJsVVEwc1M4WWFkQVBtTVVFcEZ2YnM3b2tYZkVfYXcybjNiR0FyU3d4Rklkd3R0WnZLelp1a21VS1JhRDFqTUFqQmRXa3FiRTNLVFFOVTlmTndWWXciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjExLjc5MTIzOSJ9fQ==','2020-02-17 11:00:12.794758'),('7gtgn6ho7ezke9ug89eqsccfsamw7yym','MjM4ZTU2ZDc1M2Q1Y2IxZDVkNTFkZDJjNmFjYjM3Nzg4NzZiN2VlNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzWVdFRlZ1MzRUN1F3T2xfWkM0YklpOS0yYlpqQXFMNjVuZjl4MXB2OF8tNDZ5SnFSY0ZtejFPWjg2em02Q2tUZk9GQ2FtSlR1SHg5WVNIQ1BkakhZQXVCcHQ3Y0ZmektWQnZReUluN1JqRHROY0NjSm5tdGpYSXJpUUtaWTR5IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0NjozOS42Nzg3MjkifX0=','2020-02-24 05:46:40.679948'),('7hcqbjeegmkuedivg7lncyl97piqtdbq','MmZmZTU5YzY3NGE1MjNjZjBlYmZhNDA4ODI4ODM1NmUxNDZjZjZjMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyUlZxZk5OOGZsbFBlY1hZS0FraFVaRVNuQXNjVlN1WXRTTjlnRmYyWlB4UmxhcXRCenN3OUNpYTB5RVJ3MW1sQWZnVERaNmhhdmNTME82ekQyQlhDWGkzYXJELWtmSW9WUHl1UG1xWE9Sbzk5LWY5ckRJMzA4Slh0UWNsRG1qIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDoyMS4wNTQ2MDUifX0=','2020-02-23 06:00:22.060937'),('7hx0b148i54k20xookdwmm73zs12qw8z','NjlkNWUyYjczOWM2MjU0MTE0Zjk2NGY3NTE0YTY0MzE4MDFmMjMwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5cjhIOUw0Ymd1dzc1OXVBTkdrQ3JQVzZTT3VKTjlLYVU2dUdnQllXUDFWT19iUHVGcW1CQlhMaXBXbGZhaXp0TnRCRUhERzQtTnAzRjNtTDlGR3N2M3dVOE1NaW5kbmkzWjJ3Y2xLcTFUT0lUVzdDcVJiSlRpX2toSlh2UHB0IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxODowNS45OTc0MjYifX0=','2020-02-23 07:18:08.001262'),('7igq54jx6z67qpjus81z07oym8n4zwol','MDRmY2MwMjJmN2EwYjliZWQwZWNjOTJjNjNjZmUxY2YyZDE0OGZlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4VG5hNlpod01McEFpaGo4UVhCQUpoRUpnZ1RQT2pTczFUY3hueERJMjB2ckpIRGpraDl2VXJRMFAxX29xcFBzVXNxbk54SHpBeGtyMWJXaXdKZEtIMmw0QVF6Vkt2bUdkZ1J1NUNuNFVLYzc2S1k4SEJ3Tng1TW1Ccm9lR3cyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDowMS40MTI1NzEifX0=','2020-02-26 05:00:02.416366'),('7izhssmjmn3oe32bjncx67ttpkg2zvql','Njc5MTVjZTk0ZGVmNjRiMGQxNGI3M2ViZDBhNjc4NjhhYTgyZWZmYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVcVNsVlphamZFVndyemZIclBwWG5UT2pKQk1MNHhneTVrRWVlMERfaTVNbkFNNjNFODAxbm0zSVhGQVp6TDlDMFkyLVhaN0pYMThfWmpORUZMTHJ0bl9RMHBIbkRSb1RhQjg0Y3FuVDlQanBBcHhmQVVRcVY5WDVLY184RXhGcFNmeWpySDJJN28tUkQ2cUgtSkR2aTJ5MHlIM3BUX0d3IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMzowOS45NzA2NzUifX0=','2020-02-23 06:03:10.974034'),('7jkdfs2z98mp6cyofjbltdkh42ds9u36','ODUyZmNmMDAyN2RjNWM0YTI0M2IxOGFjOGNhYzZlODBhZTQzMzc4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxZTM2WGZVckxxY2FlSnNqdjJHNnhiOVBPcVZyS3RQaW5IcHQ1bTJ6RUhfUHlhLTdEUFhZOV9pU1NhUGdWMVZUZEI5STZ2RjNSNGhzLUJhUDB2Yk9KLXFRR0hsYXo2bVItZWFVMjlFN05veVRPQnlRY1NYSXpQY09DVFJjQ2ciLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEzOjI0LjM5MzI1NyJ9fQ==','2020-01-22 06:13:24.396699'),('7kelg0ib62e0fpcu60ximzzrsjahc6bu','MmJmNWY0ZGI4ODI4YzY4N2UwZGU3ZTY4M2NhZTRjNGFkOTQ2OTRhMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5Q2VlQ0R3MlRucjVKTUpvSktuZGtmeE5WdTZIRFcwYVNTNVBMNGVCUFRSRWF0Z0dPTGZUcFZtMHZzS2g3WTZ2bEpmVTNWc1pnZFpfNHF1VnZnOWFwdGtiVWZQNVloUmxCSVdvOW5VUXYwUU1SUkhBRV9CVTg0blZwbHFMZlEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjIwLjA1ODA1OCJ9fQ==','2020-02-10 08:00:21.061540'),('7knzd724f42zmyw73bldd6o3x2qc3eco','ZDAzNzM2ZDY5NjdiMzFmYmFmOGFlZmI5MGY1YjU5MzljMjA1ZWNjMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1U1VHbUFDT2N1LXp4WjRaa1JZSk12cFFWNWUxZ1NhRUJ1Y3daY3NELTkyalhQT3BrM2lhMWZzSlVDWlF4UExQb2xxTDNBbGxPZElqMEM2UmVwd1JpSGp4WFlaLTB5VG11cTdabDdWV2YtMWt2UVZCSzJjSmN4T0NUNDV4YjAiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjU0LjA0Mzc3NSJ9fQ==','2020-02-02 06:01:55.044958'),('7lvpkqdow5i2secriddw5g3y10qpyzh6','OWJkNDBiOWE0NTU0ODFjZjY1MmM3ZGE3ZWYxNzU3OWZmODYyMTE4MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwVVB1cENZVVJDcktIQ2l1NzRkV19ieHZRZ3l6ZUdJTkZOZ0NhakM4d01CSG5iczh0ZllIekk1NExTS3p0SWxVSGd5Tk91QlBMU0doUUU1NUhGcVhZRkFiTUsxWXgwX1dQeHFLeTlNYTNkS2tiSzJBeHpKSzVYUGV2amduZ2siLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjE1LjkyMzk5MiJ9fQ==','2020-02-10 07:40:16.927356'),('7m6yd61zcecu6gzm2qrjkv5o1uqlcup0','YTAyNTdkODEzMTYzMWQ3OGRkYWNlZWRkMmE5ODBiMTlmZDRiYmU5ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfQUs2VnhWZzZrSFRPZXJKT2otbzhUV2pTdkUtX3lZUXQ4TTMwNXhrTExZUGpFcE1oYldjWUtCMWROSlctN0ZuY0pXRjNLQkVGeHBlSHpyaU1MVEJ5ZHl1TDU5OHJWY3dYZVFVMTluOGhUOTFEdjEtbFMxVU9tc3BFaWltYmciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjU0LjczNTg0MiJ9fQ==','2020-02-13 08:10:55.739259'),('7mvwcls3ac7lg2zi3f9yd9yh42bmbw7d','MzQ4YmIxOTE2M2FhNTcwNTkyYjhkN2Y3MmZjYWUwNTNmNmNjZTcwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyOGlEN09PaGYxRVEtNVE2T2RnQ0RiMHVsejJJcUx3Vk0wbmV3aml4aWJlVThNT0R6YTMzRjlUZDFQeXFudkZSR1lVeU1tSDVJdjhkMUFrbzhFZFc0TnVoSlhCMVA0SFpNMkpHUzQzLU1ZRVc5MXBfeHZKS0FETy1meEJTSG8iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjI5LjU4NjY2MSJ9fQ==','2020-02-13 08:00:30.588199'),('7ohil8uixatuhtygzckwip5mbztcsvvg','YjM0YjhkMzE1YTljYjg1Y2U2M2U3YjA2MWFlNjZjNzYzYzI4NGVmNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyNTQ1SFIxYkJKTXFSU0ZweHRMa0UyQzN3V19BcFpwN0xLVUc0cEs0TGVuRjgyVXJydElZSzJxZ0VHX05ucHZrb0ZtTG04RGJHWXNyblZoQmxkVi1FZFREcWhKUDRodGpHYUIycjIxZ2J4YWRURGwtX3BxYVZqd0ZuYjVHVlEiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQzOjE4Ljg1NTUxOSJ9fQ==','2020-02-18 05:43:19.858994'),('7p2dpz4199e9s5mrp706nnysx91d7xu4','MWQ4NzRhOGU5MDhlYWFhMzU1NjY5NjQzYmU2ODU2NTZhN2U3NDEwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5SUpITG9iSFBpVlNxOG0xN2lQLTc2Y1R3ZHR4Mkk4NVVDb0gxLXVFeTN0dHJnOGRLYWhxcVZXS3BqdHM4Vk5KdWlPV2RnSjdLVFVMYlJ4ZmRqREFmNWdaenh4SUJjU1ZhNGdtN0hFWFJrWDB0MEZjaVE2QXpkSVFveGxkVEkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjE5LjQ3NTQwNCJ9fQ==','2020-02-17 12:00:20.478853'),('7pb1fxjacykyoyjq1f7iz2tjf46ao431','ZGI4NjZhOTE5ODI0OTMyMmQ2ZjU1MzdhOTkxOGE5MjNiYzRkOGM4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4Y3FWckU0bzJBWFBWeHJTenlEcXFpZ1E0OGJ0MGhGeUZiV3k0eU9ia1F0eWlDQmo4aFVkcFNNVGE1UUtGb0JBd1NkMGVwSHpXVXMySGFEaUMzajRQZXY2VndGYzNqa2tueGx4S2VweUlOb0JRNkx2Y2FQNzgtSXNBNGNrTVUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjAwLjk3MjYzNyJ9fQ==','2020-02-17 10:50:01.976308'),('7q2k7hqwgczj0m8v466n4osjedc84z3p','NjIyZDVmNDk3ZGQ2ZmU2N2UzYjYyMWZkYzk3Y2EyZTE2NDdlMzQ5ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI2MHJ0N0xnQkhGYTFHSHNVMFdmNnlVWVRKTENCYzJIemJIbkQ1VTB3UWRpVWxrVWIzY3ZRaTI4Y0w2Nk9ISVZZS0JHM0d1TDhSTFdYMVY3SmpSeTBBMUJVUkxoWWQwNVNvbzhxX3BNX2NiTmhEdGktcENqdnBJaFUzd1FldzgiLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUwOjE3LjE2MjYyNyJ9fQ==','2020-01-21 05:50:17.166042'),('7r4htncvjqdvvwkkwa43bwetviyi4hkk','OGE5NDBjMjQ1YzdlNDIwZWM1N2Q0NjA5NWZhYWIzYmYzMTY3OWYwYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI0Z3lydEpKdFYxazhJLW9LQkJMZmN2S1BLQnQ1Q3NaSDljSm1vV3VzZWp6WjRuMVk4Mm55b1JrX3NmaGhVVDhRU2J3Yl9yd0VlbElyZE1NVHFSMFBsZFlJcF9sNWJjNmVONG5ZWngyd2IzeVlVR29pY0J0UnhGeFlmUzREeDAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI5OjU3LjM5NjgzOCJ9fQ==','2020-02-06 11:29:58.397983'),('7s7ggcwqhf20ts8q5x6arw7ol8t9wmm8','NmQ4ZjNlMjIzZTk3MWMyZGI0ODY0MmYyNWE2ZmE0ZDQ4ZDAxNWU5ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVQVZ2d05ORHV4cnAwYVZLOW5CVC1ZMWp1eXlvc25OU3MxRGtmdGpHM1NidlFrdFNJTDdNbk9LaEVMaXJMaWFYMEppeEJ4NjhvaFRUNWtRdTFVQWhvanotSTJ1T0xSZVN1aEJ3SWYtQU4yUjQtTS02Y3FyRWJHY2QzT3M1dWxqMGlSeTRqSUxpR3FVb3BFelJTWWhFaGwzZGNfbmY5TmlRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzoyNDo0MC4yOTg4NDAifX0=','2020-03-29 06:24:41.300600'),('7s9a6ggvwpowk71g1rp6h1cov1vhtkzk','NzcxMmJjYzg0ZGY4ZTc4YjIyNGI4ZDBlZmJhZDdlMDcxYWQxMDZlZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3OFNJVDJQZFRib1d6dUd6VjItTXFSYmk5YVR3MnRCRkpvYVF2ZzRSa1pmbUlYLTc0SmlvdDQta3hzSjVqTFhDWEVqWGZQNWU3UkN1Nmw4Z0htT0tWS0xzVGFKbDlrX1Z4TWo2R2dPN1c3elUyT294R1A1QmFRWDI1ZVE4ai04IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1NjoxNi41MTQzNjUifX0=','2020-02-23 06:56:17.515536'),('7skte8k6z0v82zu9slol92gncjoh4bm2','YjFmMGZkNWI1MmU5MjU0ODE2MjJmYWRlOWZhZDFmZjk0NmE5MTU2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyMGgzbUkzQWJPZzlKTlVvWTEtNjIxYk5kSS0xTjJGMmVzTUljYlRSTWgwbDV4V25KUFYtdW50UDhJN0xCSzExZS1yY05MVmptM0d5dFozUTVBVVZmd1plVmV3dy05eGIydjBWZTdodDBpV003bnRta0xhb3pHUXJkbkFlWnQtd0VsbElfdF9pRzFQNEg0djJjUzFDdWE2SVJjcjRxWjdRIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MzoxOC4yMTM1NDIifX0=','2020-05-18 06:43:19.216980'),('7srcibliph2h4gdlhgx067z6jie5aanv','NzM4NWVjNDU2MmVhNTJjMzMzOTExMzc4MDA2YTY4NWFjZTI1YTc1NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWdkpvNjJkdEZSdmptU3JKXzZIZm9vLVRZTWNRNnhRUU01N3h5aFJ1QTZXSV9MTVFfQmZzNTFMNFlpRHV0NDVRV0R0MlZaRzY5UU0zNTRha1Q5Sm9jVGVHMFRTS1BGWTF4VzMzZTdwWHFHUWprbTFiUFdxNURkeUcwUlpHQUlqcTZpNi1oT19wcFZLdkhoYm1fMnlzekdDcVFZYlB1V2lRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNTowMjoxMy40NDY5MjEifX0=','2020-03-29 08:02:14.448046'),('7u443kceq3kl6ql81tc802waqn8w2b4k','ZGUwZjdlMzAzYmZiYTU0Yzk2MGQyZjFhMjMyYzAwZTQ3M2ZkNTY0Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4bHBIdU5sblYwaDBOeGhqUkNlRGtVWUZ1SC1QbHREUEpvNWYtdjdTU1dFUGtzZ29QUE9JdlpkOUZDS1JZQlNrMWJESVlFLTRQczZfODMxallhR2VYX3VZZjhUa05tcHZROHdtbjBvZmZKUXliLVVBRHU5WDVtWUg3THVqbHciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE3OjM2LjUxNTg4MyJ9fQ==','2020-02-20 07:17:37.516924'),('7vwgnzpyp3wl8bekzvluropeo7e0avpb','NTc5ZTBlZTdmOTY5ZWQ5ZDdkYjNjZTExZDExNWVlODBiMzRhMmYzYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6UFZnazlRU2VYX1BGTTY5dV9ublB1NUhQMEVxU0xQWnlBQmhwSS0zWklDRW1SRVczSHVmeGp4dWJ0Rlpxd0JCeFNfR2JrY3BNT3lBRl9lM2NRVXNOY3QtSV8xVGlnOXBCNndobmVTX2tadmxhNnBLcWFUTGUyUUhxOEZOUWciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjMwLjI4NjY1NCJ9fQ==','2020-02-10 07:50:31.290409'),('7vzm9khfgrb3ywl64b2hylpe64fd0w8s','MTY3YjA4OGM4NDQ3MzFjZmU3MjIwMjE4ZDU0MjMyMjIyYjc0NDAwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2WXpJMy1xbHZoSzlrNTFuRlJ3eFZlUWpRQUdJUmprc3Rmb1NTZ2lrc3NGaGc0eDZ0SXM0aTlXRC1oVWRJMEsxSjlERzJoa3gzZUZaeDZ4dWd3d1Y2d1NCMkozeGp0SmROZnZIaXVRaFE4U3JjLTZpYXd3bkJGX2pKUVphU2ciLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjI2LjMyNjE3MSJ9fQ==','2020-02-02 06:01:27.327337'),('7w7x0le6uu9sevt16cztjj7jdigpg2ze','Mzg3YzE2OGNiNDdmNzBiYjdkOTcwMTAwYThiZDA5MjRlN2MwMWViNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4bXdWLTZkUWlfbFRfZ3ZTd1B6Yl85d1hxRW92eU1Ub2p1UUhVTDJBT2lxdVpNd0JfWGhZSTkwX3lBTk9lTnpra2JVQXc0WGRwTHcxYk84Y0FFT3pFRjZ3VVNsUFFLMEN1NWd1YWw0YmxKdnYxWS1STVYxdzZpNVlWYnQ2RGsiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjMwLjA4MzM5MCJ9fQ==','2020-02-13 08:10:31.089322'),('7ww1hk5z4zudwfvvqrk0gt6yfuiyu5b1','ZjQyYzVlZWIwNGYzZjA5Mjk0NGFlOGVkYzU4OGIxMDU4OGYzNzUxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2bmkxbXlCVVF5UjlkZXQxTU5zWmo1aEE0aFhYaDJBVXBYNjB0cjlxb0dKeVJKSE81enpMTTAxTmtOM2VKMjFJMjR1RVFLZS04X0FndEt4c1ctajUyV01CeDhOMm9ZZkRTNHJpVmxpRnhYQ0pkaFNYcHhCRG0wMFVEbWtONDQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjA3LjA5ODIyNyJ9fQ==','2020-02-17 12:20:08.101656'),('7zdy443rwlptuk1v8ve540yzccs1ld30','NWQxOGVkOGRmZTEyYWRkZjFmNGQ0OTkzZGYzMjlmMzdkYTNkOGFhYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3VHZpZlVOTWEtMHNVZ1gxZnVlTFMyN2NENUNFQ3diSkhaaHpDclpzdVA5ZjZYWmptMlpTTFlpd3ZtOGZ4V01tN0JiUXZTakVuYU1XbnhVLTlsVGdOX19tTDJzam1KN2xzOTFEU0w5ZkVibUtRZHFfWEExMmp3MHVQQlZmaFEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjQyLjk2NzgxNCJ9fQ==','2020-02-17 12:30:43.971250'),('81nkgfy3tj607yywrq9k8hpijs4uheir','Njk2MDNmZmNhMDA0MmUyNWFlMDQ3MTBkNGE1NzQ0MjBlMmIxM2NiZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfS3Awc0VKY2Z0NlBRS0d0SlFYS3d1RUV0dXVhUGlUNHpibS1VWWFIY3dvVFpYd3NzWTNmcHA0dS1FTzc1T05hTjdMY2JlcHBzLXdfRGlRRVZLX1RmRlVOR3d3R3VsMmdyR0czWG44UGpjTWExRUxEM3BvZVFrYmQ5OFNtN3g0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozOTo1Ny44ODg5MzQifX0=','2020-02-27 07:39:58.892093'),('81p5avrpt83b6w5lpvppjbz357bi2ics','ZjYxMGM3MGNmZGFkNmVlNmVhODcyODE1NTViNGFkNjI1ZDY5YzcxNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxRS1MX3Blbzl3WktwVV92SXc5Ym45RVYyY3ppdEJ3Z3lHTDEtYmplcTVhWmhzV0h4N1VPSTVObVIyQTdqd2NzVkFaN0ZwRVo0ckxRd2RJN2NJVkYtTTA4bGx4VU9MN2R1aExXNXNJSDVGWnlzSjVMS3dVY0JELTNuQTA4clk3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MzoxMy41NjI0MzIifX0=','2020-02-27 07:43:14.564097'),('83b86qsfjbd19fhx147qwsrvo4gsat4a','ZDVjOGRjMzllMzcwMDdmNmM5YWRkNGY0MDIxNDkwNGYwNmE3Y2IxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5dWQxLUFBa2RteDV5VHpXYkFOOGwtbUlpNVRHdzVuWnBDa0JDTFpNNjhVeU5IMTdVdXotSEhOc2hOdlppdTc5TVNQRl91bXpvX1lRbWlGc2Z6VUU2d1hka1Y1ZWhQbUZFdHotcWNraEU5T1JmME0zZ3hIN0U5UlU2eUhLaG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjE0LjQzNTI4MSJ9fQ==','2020-02-17 10:50:15.437920'),('840opt1uz93qn09417b0van4cwtketf3','YmNjNjlkYjVlNjRiNDk1YjVkMTYxM2ZlMTczNmUyYmQyMTMxYTgzMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Jfdkx6QTJmbVAwVGxJZ2g0Skp5WDBlRENLWDJOUkZ5V1M5VUxWMFJ2azlVdG9WYU5FaVk3aUF5T0J2TVFOanFFckw3Y3U2UHQ4WVc3QjZmTUNKczhYNkZUYVRJMlhxZzVoalRkMkhXSGUzaGR0VTNFZm96UXpWX2VCMEw3MVUiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjI3LjYyMjcxMSJ9fQ==','2020-02-09 06:17:28.625984'),('846fglgymuo6wvrszyxedug9lrvx64ne','Y2ZhYTczNTZkNmIzZjk1MDk4OTZhNDM1YzFlYWNjOWUwNTc5YTA0Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1VzNRdEVJLWw1NzFXZVFfNTF6WUcwMXhBcHdtQkJfdzQ1R3JTWmZReUFMc04ydHVQV0RNaWtuUXBaNUh3Z1FNQmdpSmNSWGxjTjc3Z0dVVFduUS1rdTg5MkJEN2hWaTM0SVoyNzVLTlNiNkt5SEE4OXU0ZHhFUkRHT2pEN3VmIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNjowMC42ODQxOTMifX0=','2020-02-23 07:06:01.687803'),('85ko7zqj67ka19vdnkolqtkanveqmxsu','MjM2ZDM5NThkYjhkMGNiZmZjNGFkYTY2ODU3ZDBhYWQ5N2U3MDQ4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfQWdqc3VxY3FYWm1BdzFOamF0RXlZWXA1WGRmb0FwZmo2T2h5UVFwY3ZQU05HZUlJSWFXTzlWbU1jSmhiZmFFRW92NGZldW9feDhoSWNhcmdMRkdTbU1xLUFlYlRWNGVHNlBVbzJWSU94WWxRWVFBQmtNRzdpYTRTNE9lTTAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjQ2LjA2MjIyMSJ9fQ==','2020-02-17 11:00:47.065886'),('86oahk1w2pvdwkgjckud2bw7e36srccs','NzljODliOWQ5NWRiMjU5NDU2MjRjOGRjZmVkNTM5ZmQyOGI0MGI4Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzb1E2X2VFdUc1REI4S2tzczVKWWNUTmhpSFlYZVM2c01nd01RWGV2eVY5aG5pc21ZaG5aVHl3cmUtbmZNcDFSUnV2VUk4QmVqYzNxdTRqbDBqUDV4VlNMUkl4Ykt5YkV6YWtYUUVrSlkwR0xzY1hJNi1LbU5iWldNaElScTNDIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MDo0OS4yNDUzMDYifX0=','2020-02-24 05:40:50.248765'),('88px7sk3ct8e7m236doqosovtro6j4xo','NDVlZDE2NTI2MWUwMzAxN2MzMTU5ZWRiMjc5MTkwNjM2YmMwNTc3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxTThRcWYtbkl1LW9Mc0k2N1U2S0p2SGpRcG1NbEthREgxRm1scC01RWlyOE1UZ284SDZiSUZSSzlpVllsUFdLWmtGaEFMN09CVVBZajhiU2tGaEVfeUJIMDhNNWxzaEZwQTgxOEdSQU1nc2duMWVDd3BMcWRiOWZ1OFhZTnMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjM5LjAwNzIwNCJ9fQ==','2020-02-17 11:50:40.008779'),('88r656fppnl90okfgk80rb2lyvmevcvj','NDFkNTNiYWJkMDE1M2MxZDIyNTg3ZGM4ZWE0OWUzM2M1YTk1MTIwZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyU0VMcDlzZkhxTTNnQ0VnYVpqelkyejN3eV9ER3ZJZGFWTmp0X2sxNWVCLS1DR0Y1MTgwV3B0MDBkbDhDbHJEdGZ6YURCZ0VtUFNabHA1aFR4SmV0Wks0eks4anNXSHBVXzFfTTdLUzZBN000MTNJWWtsUkVyT0hqcGU3TG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjQ3LjkxMDQyMyJ9fQ==','2020-02-17 11:20:48.913803'),('88s45uhhmj47imcwhkxw5ic7j63ix6db','MTgzZjRkOTBkODY3ZTI3YzNmM2ExMzE4ZjhhZDNlZWYxMzI1ZWY1ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4ZUdSdTZFSWctelV0NkJUVXE1aGViTHV6TVl6MWJBMUU1TmdNWEdFUGdPZ3J0WGtQRXZoX1p0dFFCM0xjLVNzWVFnTXJYMUdnc3FxQlNKOXNPLXdNU1JySFhlLXh2emNZU1paQ1lGeHFZQWZlT2lybTNRaVZtcHU3YXp3X3ciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjQ2Ljc3ODEwNyJ9fQ==','2020-02-17 11:30:47.781668'),('89ea0cunb5ffdh8xxtm8c1g641i3w3tw','NTI5Mzk5OTM2MGFhNjc1OTE5M2YyMGM2ZjY4YWUwYzRkOTkwZTkzMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2eFZ0VVFVTWJIeTl6MzF2anJBZFcya0lHemVsVUVrVWNIOE81NF9WTHpoZjkwNkJkWUxtbHRWMEQzZFQwVVRFUTMwU3dVLUk2UzlhZnE1a1doMmsxcU5qbFpPbmdCOVhTbmlmb191R0c2WkxKcE5feUdZc0IyTWJFYV9ycFVWIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1OTozNC44Mzc2MDAifX0=','2020-02-26 06:59:35.841000'),('89iuxn5yh2hpb40t9ar5w1qm6w93jysz','Y2RiNTU1OGNiMDEyMzZhOTNjYTlhZTFjY2FiNTRiMDg4YzNkY2YzYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0ek5md2xrdW9kWTA0TW5VbXN4bENiNWlYc0JET01zVDhfOUlWMzI5WmhqMUNEd1UtUTRLWlBuQzZxT2NBdVRNZDEteGVfLVVsR2ExSWpUWHhvT1FiY1FKZ3JpalpEY3o3LVhhWTJiVjBLRUJSVEtzZ2E1dEx6RHBhZ09adk0iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjIyLjk1MjQyMyJ9fQ==','2020-01-23 07:15:22.955702'),('8aj7pkth4i76zybk0ivszluvwqsd6h96','Mzk0MjFhNWQ1NGI1ODBlZTg0MDY1M2I2NTU0YWI4MzFkN2IyYmMyNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6OTBoTVFhYnFEeDlqUjk4RmpHa1FYTzVCenEwVDBjN2g1cDBXUC1aZzZtSzdzMlJqamZXelRlaVlSdEpNaTd2cGVFUE1zbVNReWxyNHRBV3ZNb1BtWlY2SkVyaGhhbm11WGpCUlhxNDRHaWVKb0JmZU9qRWxrd3JCUUxFYndZIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1Njo0Ny43NTkwMDkifX0=','2020-02-26 06:56:48.760214'),('8aml4i3g3x7b1o3wbt5bg8ah0jd2m0u5','NDFiMDk3MjhkNTAxMzc5MDYyZTQ0ZGRlMjJlY2I1ZjE2MTFkOTRkMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfbXhqM1dsQ0FGcnJnOUV4UXA4SkZxY240QXB0Ukg3Y3I1VmNvajlyN1B1ZThsMGlMRG9TdnZZdGVfWTVjXzlPTXdjeUM5YklGXzlNbHhVenBDSTVVWXg4NlJaa3pGTG5PRWZtR1lpdFRHZ3FhbWpPQWRjSWFENmVHUHFwRGMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjU0LjkyMDUxMiJ9fQ==','2020-02-06 12:19:55.924199'),('8bsrs60f7431shy8od29qbw791kf9pro','ZWE4NjIzNzc3NGY1MGVkOWQ3YTBiZTJjNTc3NzQ2NDg2NjlkMmI1OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI4TkJ1Mm9UVW5Wdjk3UjB4S1BvTXY1cjA0b3BRNlJMREYxR1I1U2pNVU5WU1l5Znk0THNKbU9pcjVLa1Ztbk9YNkRZckVCNEhSalVXamxqTmVMTkp0eVBPZ2tDYjFJNkp2cm14N0pGcDhBN0dBOFVVYWp0V1RTTHJsMHR0bnMiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjU1Ljk4NzM0NSJ9fQ==','2020-01-23 07:11:55.990730'),('8bti3v9wvaqlxopzx5h47q9jm5y99bx1','YTUwMjllY2JiNzViNjE4YWU2OTFiZWNmNmEwMzRjYzA1ZGU2MGE0MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4YTA1OHFTYTc3VU5EVzNrSnlIX1lyVC1ieXA1N1ZJSXJ0YnZzYnpPcm9rZU4xVE9iUWE1YmxpdFFhRklEOWhaQWM5bUY3NDhKRk12TDA0OFBycWF2LWhodHJXT1c1aXhuVHp6UDc1Z3V1MkliUHgzNzdTMFRmLVdveExYRnp2IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxOTowMS40MzM2NzQifX0=','2020-02-23 07:19:02.437153'),('8c3fuul4usxaljdit8nzlw2wth9gfwbg','ZmE1ZmFjMzUxOTQ0NGEwMzdhN2M1ZjI4MjZjOTExN2ZkOTlmNDgyNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUIyNUdhRjd4STRCSkFyTFJ2VlFtRTZCVkRPa0wtT2lYN2s4cmIyaTB5dTJjQjNzVWh5SFdjMXlyRXpscEQ1SVpEOEZDQldQck12QWFGWU12T0k1aWtESjBPRFVvUEhqU2NQbzNMTkZJTUVJbWtJYjdyRy1SS184UVdWVWdldyIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MjAuNjgzNzI1In19','2020-01-29 06:18:21.687307'),('8d1fqkbm13zgqatglqb0s0mu3730modw','ZDM5YTc1YTZlOGM5OTc4M2M3MTYyYjYxYWEwNTlhOWNhN2E2YmQ1MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5VWFqbjNyVGgzQ2gyc1BVVWRwU0gzZTZUZ3JMT2ZyVmdBcHdJeHY5OG5yNlRHc0F4Z2NnRVdUd3lUZ1dsS21oYU84VUhPeW92N3VOdXE0cXB5TWJjdzlVWkpScXQ3Z2N2SFVMQ24xTkxqYURWYS1VOUtneml1YU1pa1Q2dDhhIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxODoxOS42NTQ5NTEifX0=','2020-02-23 07:18:20.658566'),('8g3dslsii7ns6w467z76b7wk8j1qc9dq','Njc5Yjc4ZTI0NTA2NmQ5MDM1MjViYTNhNTY3NmMyZTcxYzQ5MTliZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyTkg5anpDVDk3QjBnZzE3LUlkcVRMYWFsZmFadHVUWUdtd0trMWRfamZhUVVoM2tpdGhiTnEyOEpkeklINmNxeWYyamUxTGg2VG1sbTN4RnFPdDh6NkpTTHhzZUNYNXdTSmZDMmhLZHRCVWdSM3VhYmdJelRqcjYzVkJram8iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjQ1Ljk0NTM0MSJ9fQ==','2020-02-06 12:19:46.948811'),('8i45ixdey9uswx9768jc1y6k6bfwlr9r','ZjhhOTk2NGNlMTk2OWNmN2IwMGUwYmM0MjMwMzc4NWZjYWRhODE5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2UmtKb0dVX3V1Sm1ZbHJLcWhobjdta1pfZ0piYzVGeEtVaDRucmhZQS03V1hKbUtyZDlKWU01d2lTUXJWU0h1RDdpQ2dhTVVPTjVvbC02R0NFXzA0Z1RHaWlVQ2J4bVI1ZmVYRjI2UGdpNFdZWV9OWXJqQ1Y3RmZvcExXejgiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjM0LjM3OTE2NyJ9fQ==','2020-02-17 12:30:35.384006'),('8itwsgnr4gw4hn5be549yz7e647s3eij','MWIwZWMxM2M4OGUxMDMwMTVjZGNjOTE2ZjEzNDcyMjcxMDdkNjBkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI5LUVPQ1ItMFR1VEx0ZTZhOUUzclRFRXo1SlhMeEU2amJiMDExcVB0dG1mYy1IdlVGT1F2dDl1VFBiWGYwME1DNUtDWUZNT0l4NGJBS2JZR2J5TFFUZzBpYUtrbmVWbFluWldtM0hRWDA1ZlEzN1dpczNveVI4Sjh2VzY3WlUiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA5OjAwLjI2MzU3OCJ9fQ==','2020-01-30 06:09:01.267095'),('8js0clzi36dzrwb0z6i4p786u5a4o4ms','NTM1ZmFkYWY1OTNiYjdiMWI1ZGJiZTZlNWQzZGE3ODZkYzg1YmQyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUJ4em5VX1lDUlN1eVdVZmhpRW82UUx2M2paQUF1VzRZVWtkVU9IcGt0aUI3Q3JlTmpqY1ladEVlZVRaSTFIY1NXWGE3UEI3eFMzc3dVU0w5ZDdTSVFHNDFSUXJVMTZGWGdHN3lJSklSa2hUN1V1ekpEUGdDUjVmLXhmNXdtQSIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MzYuOTc5NzE0In19','2020-01-29 06:18:37.983137'),('8k4a7rkj2m2s2r69c338czla66jbl4bf','MzA1MTZmN2NhMmE1MDU4OGU1NmZmY2RiNTI1MzMzMGQzZTVmMGU0ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxbExibHQ1Q2lqa2JveFY0bzdZaWllckJMUkI0cmZsUWtzdG0yV2FSLVdYRXFUeUgxYzIwUnNNYVdieWdBNXdUb0NqcUNqVE1MZFZTYjYyeTJ3dHZVdU5TTlVTOG5VbjZ6NW9SeWg0VXB5RXBYbmp2dW42NXVXU0dfbUNYSWsiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjM4Ljg0Nzk5MiJ9fQ==','2020-02-09 06:17:39.851493'),('8l1bep9xlwvl9cwzxe0wk4vjroo0g7v7','MzE1NTJhM2I4NjFkMDg5NWZiZjQ3NTRkZjNjOWJiNzEyZDI3NDJhOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzUE1vQTBOVlVMNEVwSkxrZTdLU193ZlNFSUFWX29sV3puQzJzS3ZwLXR3T1dGRWN1UE13Qnpmbkl1Vkk0YndkWkxhR0VlTkFkQzlqZ1pQOTZYTWRHZVhkSUZzRVNMTkoxTzlpNnZSOEU5amxVU2hMUE5yajJLWmIyYUhFTUUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDA5OjUwOjMxLjU1OTExMiJ9fQ==','2020-02-06 08:50:32.562593'),('8l3plfw6j32jxkyejct1mzh1w6oadeo2','M2RhZDg4NDZjMmFkNjdhMDZkOWJlY2JkZjFiYzNhNzk0NjIyZmU4MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Ixa1dWSU1MSW1XOXFVUUxmVUgyaTQ4a0JoSTdXRlgzbjBWNWhnUV9Vc3pZOG9WRXVEbUlteFBoOFFxa3lKTnY5TXVHbnE3XzZRemF0U2lySHd3ck1PTEtQMWd2WjJxXzFNLThjZC0wYWhXdEZHVmZpczFzRndzN0FmSnF1NHMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjI3LjAwNjgzNCJ9fQ==','2020-02-10 07:50:28.010480'),('8l53fkg0nzsng18azvbq9mfjneesjrqj','MmE1YTRiN2RhYzBjODY5MmFmNDkxNzU1YzkwOWE2NmZhY2U5YjAxNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4cVhUZEs3eVk0VV8wSTZGeVk0aG5FNUxIcVczSnFmWThwUm5BVjdLM2NKZHlLb184T1NHUG04dVpnZ0w0VWhVQUdXN2Z2U1ZtdVd3QWdyOVhhbDd3c1RhcjFHU0hRa21uRDJseVMwY1NoandtWWVJVzZRcDBaOTAyZW1KdVUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjQ3LjYxNzQ1NSJ9fQ==','2020-02-17 10:50:48.620914'),('8n1ah31jf397zwysxmb55u5pwqrnayqu','Nzk3MmIyZmQ0MjI2OTlhOWZhZWU1YzZjMGQ0YTIzZGVmYjM4ZGFiNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ5MGtvZ3lxdXExdVlWSVkxZmwyMTY5dFRvQXJySTk5NG5zMksybnIxbGFrQUtabFhLaXZRZW90SU1KcWpDbEtFY1ZKOF90bXgyVmxlSlU1LXZ1c2hPQUVMRk9uS1pibkNiaGhqczI2VlNxM001T3lwWDU1VmVnXzBjY0o3ZkEiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjQyLjU3MjcyMSJ9fQ==','2020-01-27 10:58:42.576200'),('8obrr77tilt67tesjkzvi0smlr4w4swp','NzFmZDcwODZkYzIzODRkMGQ3MjM5MTFlMTM3MGVjNTllMzJmNjI0Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzeWJvQ2hoSWZVTmw0eDNFX1E4YlhnZ2VMOUxtcnpCZ2EtUkRVQW9CcTJCdzFkN3NzbjZybDh5NUY1YzI0N2JydHlsSW9RM0p4R1I2aGJZVXVWOVA4VGpYcDhucGJKTWx2MFkzb1psWnVuX1VKaS1IOER4YUwwbVZsbVlBVzgzIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMTowMy4wNzc0MDQifX0=','2020-02-23 06:01:04.081046'),('8piratp48jq3jfbx6t5ufar70wkthzjx','ZDdjNGQ0ZTU0NTU1NmJmYWRhNzhlYTk3ZGQ0MzAzNmUxNTQ4M2ViNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfSzF0Sng4MVVnNGUxd2pya3B4ckt1ZmZwSGFCVkUycU8xWDhWMXRYV3dXNU5oZ1paUTVXSm01bVU1bm5rbnFIVmhWWlRHTWp4c01Tbm9sYVU0OWFpRW8tNEo0b0hfWTRzajJiRFdDRVhKSm9SQWNUTHJTZTg1Y1hkOGZoVzgiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA5OjAzLjM5OTY2MyJ9fQ==','2020-01-30 06:09:04.403024'),('8poduggg81vccu17l78h2wlkawxcn9ov','MmNjYjE3YWRhZDg2NjkzNDY5Yjg3ZTI0MzkzMjk1MWJiOTk2YTUxNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItS2xHOW8wZDMxRXBsZWZqTHY0SjBVYXRPTXloRDVUcFI3cDN3RXJaN3hWamtVRVktN3k5eUk2TjQxZ2syamhJQlRkZXlER3UtTzh3enltdlF6NWJtelpRTUNSUEFLcmViZ1MwTDQzMHR3MDhiM0g4RFkxUDRXVGNhRk0ySFEiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjQwLjIxNTU0NSJ9fQ==','2020-01-27 10:58:40.219018'),('8qlfdia68xt1k8izi04dh39y3yf5oker','MjBjYTM5OGVjNDEyOWQzODk1MWIzN2ZkYzg0YjkzYzEwMmJiYzEwMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6UUtrNm9UT0hheXZDSDB6QW9EbzVUenJfWm9jWGZtNlMtN09uU2EwRkxQa1ZSbXhsZVRIckN0X2VNcThEaHFZT0d3U3VWOEEzZ25MZHZ0dUdNYXNRNEpBb3dXa3pINlVIekVJUHZnWlZfYXdQRVFtRlhGdjkwbTNqU2xiMmsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjE5LjI1NDEwOSJ9fQ==','2020-02-06 11:48:20.257629'),('8r2t87n6gi6g80jrti34suuyedruaxw6','MjY4MGU0Zjc0ZDI2YWFhMDE0N2YwOThlYzY1ZGE0Y2EwYmM1NTdmMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3SnFkbmxQS0wyb1EwX0ZJdnUtODcxOXBPVUdJbWpMT21NVUJXMFptdXBGQnUxU0RBUkV1ajZ6UzZuTW94NG9ORnlnZXZPakxVUjVmV2NQQnBnVlNnQnJwaXNhYWZTeHZvUFB6azdwMVNOdFlEeXBkeE14QllhcDJtVk1DeEUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjE5Ljk5NjMyMCJ9fQ==','2020-02-17 11:00:20.999023'),('8rj3qfo5ot94e8dehvfokw41fcz4qbnp','YzIxM2M4ZjQ1YzljYjVmOGQzNWY2ZDU1MWE5Y2UwMTFlNDkzYzE3Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I4c205R0NiR0ZTMVBNVzBSV2pobDgyd080amVFOXlkMVE2M1l3MWhBczdNVzM5Q0xFMHZIdXJWdjdJRjY2ZDBrdU1BVm1ncnQwaWNuZDB1c1dScGpUMzhRZVVfSi04dHFnSjBoNDBXMEo1ejNhcVY3V0hXUUtSemJhYnRLUG8iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjEzLjMyNjgzMCJ9fQ==','2020-02-13 08:00:14.330090'),('8sfh6wtgmvlij5b9c6y9c5rl0k7cjdsk','MDE5Y2JiZDU2N2QzNDZjYTdmZTYyYWNmMjJmNWQwZGExZWQ5NTNmNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3czFZeVdYMlNkdk9NOFlCRUNJOGVvSm8tX0xvNDBmZXFJQ3EyWWw5X2lncXVvWEtfdi1SY1I5V2hramJJN19KZnM0d1JJb2JYeHExakhZazlhOWd3b3Y3Q3ZBaUgyeWFaWG15X0Y5d1FNWUpSaWgxZ2UtV2RsaXh0TEppelVfIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyNDo0Ny4xMTk5NTAifX0=','2020-02-23 07:24:48.123544'),('8shxg6a0567bay8e4mydfum5q71iqgrd','MGI5YWI1ZDcxOTFiNWRjZWE0MDFlZWExOTg0Y2NhYTM2YjI1NWQ4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItSVFjcHAxOFZmQnlVdy04bkRGS2lvQ2Y5bGJUbHJXWVZncmFUSTlSeTMwZ2xzbmVSUVRIbUd2ZWI4RmtXQlVDa3Q3MlEtRU8wMUw1YkFDWlYtRFlOOTRmU2UwNHJrYUNLYmh4ZEZZeFdUblJHbG5JR3Rpdm41U21fbDcxOUgxIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowOTozMy42NTM1NDgifX0=','2020-02-23 07:09:34.654692'),('8up4fup3i5ksr9702xharbylq7oudfav','NjhiY2FiOTI5MDU5MjY4ZTBkNGJhYTFkOTQ3ZjhhM2U2M2ZkNWM4ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUIzMi1mU3FkQ3B0SGpfazlyUlVFN2gtVmlDWEJEZ0VHS0NCN2FoZ2pqVktfSzhhc0ltSHpFajIwUHFrWUhCM0hxdHN0Qi1NU0dpLWNvem1Gc0RnVDEzQTREb0VndkJwZWJ1SGM0Skl5Ry1jQVhrUVhsYnh6ZmNQcWZtQXRqUSIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6NDcuMjM4ODc4In19','2020-01-29 06:18:48.242466'),('8w3tywbszvrcjgkv7es90duzc0i7zofy','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-06-28 09:45:05.661093'),('8wy6pio0p9hv13h94aw5515p2qd4pwpt','ZDUyNjQ0NjVmNjljZWE5ODUzYzhkY2ZlMTQxZDY0N2VhNzZhYWRhZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1TERjYk1wNXpFZDRrQTU3MG1EV0oxM2hkOWxCelVLZWFFTDk2QUQ4Ykt1MWp0eHU0ZG90enhqS3JQUjBLZE9aa2dvRmprWGxrMXVtZ296WHVMdG5rbjZ3NVBWd2hvMjFPeXM5U2FfMk9JRk01ejJfVHFEaWZuNDZWRW1vTFkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjUxLjgwMjg0OCJ9fQ==','2020-02-06 12:19:52.806230'),('8xunkp1kewop7vua1ec7hpmdse4bfhc5','ZDg5MjIxZjAyM2FjNDExMWVmNDlkMjU5YWUzNzBiNjFmMjZjMzUwMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIzTlEwWFpVYVR6cEc1elhFWi1XSjdXYktuRDBoZEZMRlVqdmtXYVFHczhrQ3Z2WHFoS3VCV3lTX0k4U2R3M2ZnR0ZkblR2Q3NmT0tTNFlxN0VoakN5SVpfUUhORzVpY3k2X3pMZnE1ZC1FSnZKclhzWllDZnVWQmFnNm1mQU0iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjQ0LjAxMzIxNyJ9fQ==','2020-01-23 05:26:44.016727'),('8yo4yskp7k8sog25brmdeg6x35092kq5','ZWVkZTAxZmRkZmFmNzcxMzNiODVlNTc3ODA2ZmE2NGY4Y2U1YjA4NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwOWZGOV9qOWJ3eFlXNEtqZGhvRzkwTi1VOUNSRmNUcGxsTWJyVEMxLW9iSnc2N1hwOVJ6ZTQ1MXVpT0I2WDJHNXJIUGhPQzVUdXUyQnB3QVZOcFVQdnZ1aEJfQ3FoQ3FxSWdxeWZFQmY2eWYxUzlzTVk4Y3RnVUFic2xma01oIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNDo0MS45NDQzMzgifX0=','2020-02-23 07:04:43.947760'),('905wabzgibef9r9tib5ri8zq99j81ck8','ZDA2NThkOWJiNTRkMDlkZmQyZjVhYmRjZDNjZjgyN2ZjMmRjYzMxNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3YUpSNDJJQWNsREF1WHhVYVRFUjRkSXhaREYxN1ZwSU95SHFXRnFiZnZkdm1qa3dKcGliMVdnWG9qSU42bTc2MjE5SzU0ekQ1Wk9DcHlocjJvWGtCcFhWdlQxb0VQQTNaVG1UcUplN3pRdXNmWV9iWDl1N2J3UzVHcTVPcE0iLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjE5LjE5ODYwOSJ9fQ==','2020-02-10 08:20:20.201826'),('90wwgjkmlxhu9bzejroyhns8qlnf5f08','MzM1ZjljOTViZDU1MmY5MzM3NzY3ZGZmZmVmOTdiMWQ1NDk1ZWY0Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWN0JzaGdJMnNWSkNzYWJOQlJCbDVqLUtzYURMLXlrc2R4Z0VkTElpcmJGMjczcm1PMzNNZVVBOVlJSHRzcjBqZjk4TnNhMXRwWXlQR2V2djVHSWczeEMxWmVER3V5OXlVZjh1dmV1X0QtVWJFZXdCbG5aQjZzeHZkcmhob2ttajhLc1oyX253ZkJjbUJEalNrVEpub2ttb21qcUdEV0hnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDozODoyMi4yODExNTEifX0=','2020-03-29 07:38:23.284816'),('91xli4xnaxee7ovx5fxuyc7hn9bnsrqd','NTgzZTFmYmVkZWVkYTMyZTdjMjY2NjNjYTQ5ZjY2ZWEyNGJjNDZkMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwejV0UTNwbExOdGJWRjQ5ejU3dmJFclU0M25vMUZscVZveGN5NUppMTVTSm5sVWVuTEI2TWZpRWRydjV4cEhoQlFSa0lZZHRVcjJKRzdjakdTWldvMmVaV1daVmRtM01MUy1tQnl6cm1YOG9zcGNtVE9rcTF3Z0U2ck5UNEEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUxOjA4LjEzMDA3NiJ9fQ==','2020-02-17 10:51:09.133484'),('92f4iw1k9kjye5m0ae1mt7sgz5jlw8b9','MDAxYTg1YTZlMmY2MGM0NmZhZGM0ZWUyNDBjNmY4NzIzZmZlMTIxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyVDgtRWRkZUJiR3NDNk0zZUhGVGh1QUNBNlZ3Q1FkQlVRN2UxdDZtWm0wVTZfSlpVd0tOSzYxMi11THhtYWVTM3U0ZUhjdlhSZ25mdmJlZklrbG1EM2dFWlRzSnoydXV5U2Ztb2l3dGdNbUxmMVJacGlXOFotUmtmU1hvaFpJIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMjo0NS45MTgxODEifX0=','2020-02-23 07:22:46.921755'),('93jf32zzsb9vne7hwktgtn4trwabfd3f','NmRjMDA4OGEyZTBmNTM4NDE5YWE1N2E1YTQ2YjM1MWYxYjA2OTlkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItODhtcUZQLUZFNThXVm42aWw1Y1cyRGNmRHN5cndXVjVlSl9xcTZnWElFQnRyX1duNUNfSkExZGJGMWpZTHAtWC1tSzQ1ZVcyRW5RS3Q4aEVmRzNGaGRqY3JST1pBVVJobUhBVXJYRzkySWhqWU5GZ2x4M24zeTZiYm12M0EiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjMyLjk3OTA2NiJ9fQ==','2020-02-17 11:50:33.982575'),('93lhd2lzlavm9g3yo8ahfifxotezpug1','N2E5MTM4NDVhMDJiNTQ2MjMzYjViYjg4ZDQ0MTMyZmM0OTg3Yjg3MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyeHJqc01aZk0wSXhxWE1ITGg4OTFxb2twd2dpUmVmZEl0YjdoTXlSUUdSVm8zcU02UkJqTTFlRjlSVm5qRWZMb1FPQlpVSFRBNUxSREhFWVlmYjR4cmtPa2FLc0V0OERLT2h0NzFHNHM2alQ4WXdGNk9pZFpwQVBYbWxkQ0E4TW0wLTFldERzeVhkU3luaG5NOUhiS2xjSjZ2Ym15eTdnIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowODowMy4yMDQyMDQifX0=','2020-04-21 07:08:04.207506'),('93xirul6v9mjx1ja69nfqrzd0oodm4re','NjRiZWQ4NjcyZTg4ZTNiZjgwMGE0NGYwOGE3N2VhYzE2NGU2YjlhYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ4YU13MnZaR3luNUdfbkhlbUZVWURmMHB4QkUxUnlYckZCRFR0VGxqVnNRZUdudUpoVkNPU0pueW9yTVdrbTFlc056NzkyWUlYUVZyVUdPX2wyTm13MDAtT1VWaGk4U0w3ZjhDcjhEWUxTNmlWMnBpa3pGOVZRUWdXMnVtVGciLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjQxOjQ1LjIxMzM4OSJ9fQ==','2020-01-20 09:41:45.216800'),('9402od6s03jrvv4n2g8gl3o95f8gj1m5','YjJhNTY4MzIyNjM0NDQ1ZDkxOGYxMGQ2YjJjZTBiOGY2Y2E1ZjVmMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6d2d1aUVkeEJPOTI1czZXY0h4cDk3UzVYbTJRRlhOWW9QdnN0bkh5S3g4NGxsUEFPbUEtSXlGMThWZlo5V1h1dXdSRlBCS3prNkFFTlVPSFBKZElqNjZLR294b2lPb0s4amJ6RDdpWlhFMW1fNENIZnU3YWdDUllwcW95dG5yIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOTo0Mi4yNzY5MTUifX0=','2020-02-26 04:39:43.280373'),('94h3uv4nkysborasfsu4fhyi3mfbmgt4','M2U5MWYwM2FlMTBiMWRjYjBkZTg2YzlhMzJlMThhZDQ2ZWIwMTkxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIwbDh6dXVVZEN5N0RKdkY0ZGhScXZmTHZqN0xCZnZQU0d4TVh0ek9YaFRVQUVXWE5nT3VBdkp0X0FBX2RONDYtU0RMd1B6UHVjTFd0cWsxYjJpSkg1S25MT21nMVdPX0dKRkJHZjkyTV9nazJ2aHB0aUpGZmlZVE9NT0l1VG8iLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjMyLjY1Njc1MiJ9fQ==','2020-01-27 05:46:32.660113'),('9564g94v2eu8mvmbypx977ctjk4hcfjq','ZjU0MmY2NDMwZGU2Yzc2ZjFkZGM2MzM4YWYwNjQ2ZWFjOWJiZTMzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfanpTOC1tQUptTW1teXZITFF1bVJHUDkzZkQxcndzVnFSSVZtbFItemYxT2wzcVM5ZDZPS19pWTRYTzhoRnhsT21CZ3ZTaUdITDc5SDBHa1NodzVEelI1MUN3cjh4d2VzUGRXeDhPZzJHQ3ZuaGxEMkR1VE9ZWU9nT0VITFkiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQwOjExLjM5OTU4NyJ9fQ==','2020-02-18 05:40:12.403049'),('95efpwq5jayj2u7yx3m655qib22r4ym3','ODc3YTEyMjQ2ODJlNjlhYzRhNzg2ZjYyNDY3YWZmNmU5NmIxZDZmOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ6eHlqd2h1WHlKeTM2Zy1iZ3liLWtTTnJBbC1ITmF5aUQ3WHFvWU5DeWtZeUNobFY5NkQwX0VObnhkbDRIZWp4Q3Bkc3FvQnRxQmVYRHlOZklaSkhzYnlBdjlYb29ha21ocGpkc2xsUjB6Zm5ZMHNrdS1MZmtCVG1OdHlfTEkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjQ4LjU1OTU2OSJ9fQ==','2020-01-23 07:07:48.560810'),('95uzo8otyfgp5iwm4fk4nn4a8hrt4380','Y2VjNDUxNTJkMzMxZTBlMTJiZTlmN2M4YTU4MzM1ZjAxZjEwYzRkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5azNJTWZyVFlZWmFYbmgtVHhCbmdPUXZWb296dER0OHdDcDFzbUtrSjVvcXFPaDJMUnZFQVRNQ2Nxb2FBUHA0NUxKRFY5WW9tTHltYktkRGJVWmNpTVlYQ0pqT2lzUk96ZW5mYjhBNUZXWndmQ08tYjM1Z0dldHlNbHVrSjZCIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0OTo1My44NDcwNDQifX0=','2020-02-24 05:49:54.850600'),('95xtd8luh0ig58indqfmi4vdrix58loa','NDAzMzcwZjdjYzJhM2Q0YmU0MzJiMjBiMWEwYzhmNjRjNDllMzk2Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIycWN3UGlkYWtMcDZrd3I1UWJ4eExSMFh3blhudlJuOUY0bTVvTC1jZm1jeUUwVDBMaWtTWW5TdHUtYjh4bDFsNGJQMjBfTXNlV1B2emZGaC10RlNVZ0JGSjZYYjFtVGxLdGl2NlFkMzBsOExySUJSNEl0Smt3Yk1ibWYyVE0iLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjMzOjA4LjU2NTA0OCJ9fQ==','2020-01-20 09:33:08.566171'),('96bemf9qomzkht6dk78s5yk9umwdvcg9','OTQ0N2U3YWRkNDQyNmNkMzNkODNlZjUzODc3MzhmNWM3N2EzNjViOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5WEtUaXJZS0wtaHctZjRiYUdHWEctLWRZVExRVERvNW9QU052Q3lDMFB5d3NmYmtLenFxT190QkphbktMTThBRGU3UllFR1A0V2JCZHhFQ3c4anlOa0oyR0JhY3l2eDZvcWVhajl6X2JtbkJ5VmVQR3hvX0gwRzZCWmlaOEkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjI4LjI3MjA2OCJ9fQ==','2020-02-17 11:20:29.275666'),('96fsu76sh11vdzj4yfrxwe304nq9ao9z','YzJiODBhNzUzMjA1OTlmODE4YjEyMThmM2FmNTUxNWM3ZmNjMDU5MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2WHBhLXdCWTJMbm9BUzhJbTdaeVlWSTMyVXk5MV9YVjRqRDF2VWdQWVFqbTRvWG9zRDdacXEzR2p3VXQyLUUzeHB5ZzBtOEVlMldIV2l0UHQxREtmRUpDa1o5QU9kZm96c3BuMWJVeDhzNWJCNTFVM1dHU3hrVDZpX2lJSjgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjIxLjk3Mzg0MyJ9fQ==','2020-02-06 10:57:22.977411'),('96psz0x6ynwd9i2gr7kdmekq9n0tmj04','YmViODlmZmI3M2FhOGE3MTc3MWMxMjhlMzkxODI4MGJhOGMwMjZiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I1ZW45LVJRWDFPODFCS2ZjaXpZUVNneWhaRk9VVTcwbC1EWGI3YlIwTFIxT0FqaEZwUXJUNzhJRHg3SHZ3MEhCSDZnZ1MyWnlkRDc2T0s0VXE3aFFlS2lmWXA0am9VanhQSUZjS1dYT0EyMXVoZnZEVGRnUEQ0WWJDMmcxZ1kiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjIxLjM3NzQ0OSJ9fQ==','2020-02-13 07:41:22.381056'),('9awyxnviexktqk5edbaeqq1fmyazlaos','MTNiYzdjOWE2MTljYTI0Mjc1MzI0ZTFiMzVhYzE1OGQ3YjcxYTU4Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4SU5lNllOVmY3VFFUMlpoTDhyVlk3MW9MNTI3VXAteEFtY0d3ZWR4RFFVNWdkOHBVX0NEeVFJdjdwSDZJTDNOa3gxR2w1dmN0S3RZMzZ3UG02anREbnYxMGpEY3d2VnZ2OEZKQkVUQjFtanlKOW16LVQzVk8za3R0RW1xSmMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI1OjU1LjgzNzY1OSJ9fQ==','2020-02-06 11:25:56.840947'),('9dja2bl0d0oy8bvp7cxlzll1sz79w6dh','MzMwOGM3MjE2OTVjMGU0ODFhMTg3NzkwNjA4NGZlMGU0ZmQwNWQ4Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2TkZkRnlNZ3ExRTNxQ3VrSzNsd0IzazZhZ2M4N0VqdTJpcVlSZEEzbFptNHN2RUJSQ3NqUjNIRkhMTlVsUkd0MVRmYmZzd2R5MWR0NldIZUNuWUtTUXdPTWs4Z1F0aXMwdnlERXEtM2hodzRScVJDX3BncjhjQnI4bW03ZGMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjM1Ljg4MTM1MCJ9fQ==','2020-02-06 11:23:36.884744'),('9g5zzvrmwldt6hypx490v3fiwwswcryu','ZDQ3MmIyNmM4NWY3OTU2ZDIzZmE0YzRkNGQ0YTRlMWU3YTRmNjdkODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4NndOWUNJQVhlRXNaNUlMZWUzZm9BTHduOEROS3hfaVhDNzNRYWZVV3c2ZmdVMW5MZGlTRW9URi1ONTR2a2dHMldKQnFMY2VpalNHRlBQQmFIRHFhWFE4YmsxQ0RUSXNYSnNJaVEwai1WeEU2aWoycU9ENzJSZkRmVTZ6QVkiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjI0LjE2MDk3NCJ9fQ==','2020-02-13 07:41:25.164413'),('9gzuiubzan5ut3t0prgybd2sp1q3qpq2','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-06-28 08:56:34.382353'),('9hn8sj9941xnae6z6vccmz7vr13mvu6z','NmRiNGMxMmM5MTcxODY4MWIwYzg1ODljZDJiNzQyMjI3OWY0YWJmYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6NTlYRXU1cjhpdzNia1dPakw1NXNNYmFVMkJSV0tIQWZEblVveThHN0I2V1RaOEFOWEpBbGtSSUZzako5RjN4cFM4YlM2SHg0c2pLMFVCWEhFLUtUMXpIR1JtcW1rTzNOWF9JT0pULXBSZGdMcWZyNncwMkQ3NDJWU3NMQmdZIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxNzoyNS42MTc2MjQifX0=','2020-02-23 07:17:26.619085'),('9ij2a44kvuukj9qqhz3azpotrmb9dgm1','MmU2Zjk1NmUzMjNkMGU0OGNmYTlmYTIwZTUzN2Q0YTgwZGRhMjJmMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3RHpwLXhUbWZOSm5ia2lDVHp1YjItcGRZNkZvV3g5RjJiM25aWkNRa09TOGdrcHNBVEg0NW5QR1dzTnVfTE1ISWpZcGNNcVZuM3AyWTZnd1JhQkZyVzRhS3BkWG1WUEtidjdZN3NjZkcwY0JWNGppU00ydkQ5SzNFQXFLdTgiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjE4LjU4MjkzOSJ9fQ==','2020-02-13 08:10:19.586413'),('9ivz9fir1x0utg7ya25yt7qk13ndd0dr','MzllYWQ4MzJiNmYyN2U2YzY4Y2VhNjIxZDVjZmRmMDM0YmE5MTY5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxR0xvcEZ2bHhxNUpCRXpUNkpPcWNzWjU0dFFjeUI3S2toNEdSSUhId3RmbjdxaUR6M2Y1b2xzVTVXUFNYNVZDNDhCRGVHdHVualI2cENVdDhGaklQZU5oWEVpM0hkQllOVllKcEMtZmVlRWRjQWR6bUJFSFRzdWk2TUtPNm8iLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE2OjUyLjk1NjcyMCJ9fQ==','2020-02-03 06:16:53.957870'),('9j8xstbpl3i97o7rp2yq1xmvq3af7akz','YjM5ZTE5MWI4ZTljZjEwNDBjOTgzYzZjZTcxZDMzY2UyNDIxYjQ0Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUIwVzE1QnlkeGVPT1VOZENySEk4NndEcGxSTzd3NlUwbHpDRnZKTHJkbFRmclBadDhKblhwbmZ2bE00eUNLMHUzOXlQekszSmp2QXE0eWExdUJnYTFnT2hLemdrQ0tJMVVDVlV1OXRKenBVZHVySC1ZMm9GUkNIN0w1dUI0ZyIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6NDMuODc4NzQzIn19','2020-01-29 06:18:44.882152'),('9kos848f7g2gasfd98ht2m9ll4453zvi','M2NkNTdiNzQxY2U5YjJkNGNhNDZmYjFkODM1NjUzM2ViZGY3MWUwNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxVHZvWFpBNVpSTk41UkpkY2RNOEtZbmJOS2ZjdExZbENMN01NNTJMd2R0UlM2dzd1Vks1OGxGSU1Ybi1WVUxTNkx1MGFMdWxGMHNsT3Z1SFhuMXhJMmNvX1JsWmtKSXlVX19Ua3hnLVJKdGJPUW5IcEFqVW53eDdWRDVxcnciLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUwOjUwLjgyMDA4MCJ9fQ==','2020-01-21 05:50:50.823531'),('9lh4wots9gogud8yyn4hwfygav4gxmip','ZTBhZmJlZjM2ZTBkMWNmMmM5NDRjNmJiZTNhMGM5N2VjMGIxNjI2NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5RnJQblRQQ19QNFNJR01EVXhpdzg4VFlXN3QyQXRzcUMxTTFKQ1JmUjNydTUwVzNOaXZUU2w0NGR0YUhmSXZrT1RpcDB6amxwaDc3dHVNVndQRW4tQTUxUlYtS2xoNnFLQXdKMTB4QUFmeWJfV2ItX1dZSmJ5VE9vdmVKQVRjIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1MzowNC42OTg1MjgifX0=','2020-02-27 07:53:05.702444'),('9lhlpi51ocn1l5o0a63c6a6f76eo07la','ODE3MDgxOGJhY2I0N2QyNDhjNWNiNTA0Y2MyNmNlMTc5ZmMzZDNjYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0UXFHMGlUWVNwZC1lVHBLRW8tTDRqYThnSjA5d085MHlOc0VMOEZpaGc2SHJIQXJidkhlaktyZXFCT3NUbGdWQjhNa19jOXB4LTZNZUp4MnBsRXNGaEJJcXJBcHZ6QnJja0NrTkFIbFlZMTRJcGZIaXZISnRvWm5JcktrZ2MiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjMzLjU1OTcwNCJ9fQ==','2020-02-10 07:50:34.563177'),('9ln45ju9us4z9fvbn6h85je876flabx1','M2RhNTZmNWZmMTk5OTY4MGUwNmRkNDYxNzA1MmIzMWIyN2QwMjNlMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwS1NGamFfUU9lT2M3WkVDRThUSkhSTy1DN0JLbFZSc3kyRVJpbkRSTlZYZnpCVFBPVXBOelBzeVprTC1oUTdjVWotaTdsX0pIbER0NnVCa25fN3lBX1VnSzBlQnMwcWR6ZUI2Qi1qekVONXJOWEFUbEhMdWJhZS1yaE1rTFUiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA1OjAwOjA1LjYyNzM0OCJ9fQ==','2020-02-16 04:00:06.628462'),('9m6w31wgzv2gnf867mtzfk4ctj4i9q0t','ZTE2Njc5ODAyYjQ0M2VlZTA1NWVjZjc2ZTY1YTVjMjg0NzQwODdmMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4WTNuSE81M3VNVGRSSnNYVEItREV5V21PUXhIbVhGLUp4VG5vTXJOdXBjTXg0czRZX3luZi13bGU2VnB5SWMyOTYzWWdtT1ZGd282VzVUU3dLZUJwcG5jRUdfbVM5ZWlkMjFDcG96VDNWTXljOHpnN0pEaFRDUVRfdTVMNkEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjM0LjgxMjI1NCJ9fQ==','2020-02-10 08:00:35.815787'),('9mth3lzeg3ykvyng01d81al7uk9bm85f','OTk1OTk0NWExZWRiYjlmNGZkOGM0MzQxZDE3MzdkM2RhNTc4MDdjMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0I0bUZRQUdURmtCMDBNb0FneXJWY2NPNlBfUnJ0azByNUo0cEFPYTQ0NTdvU0puZG5udFBJOEZnT1pRWlRoZWh4ZVpPZUJ4YmZkdER5TVJKdGxpVXJjUk5vcW83S1JLSGs2MnpucGRlQ3RDYk8wVnhqQmJBWnQtdDNMd2dEcV84IiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzoxOC4xMzY1NzAifX0=','2020-03-11 10:33:19.140335'),('9mytnmnvcdw4pi4au5bzoaefjioveisx','NmRmODU4MzFlYjQ3NTg4MjQ0YmIyNThhMDk3OWUzNjM1YzdiZGVkOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYU3pTaVJnTnRCNENTVkpTUTloWHc2RGZFcWxRRWFTM3ZZbERmdlludE9JMWZmNE1rclJ3QUkyYm04WHlPc0U4ZHpmX3NQdktlaDNzMHVBQzJPNmJSWlBsQnloZ1ozcEczUnYtX1FERzNXOGxFU1h4OWlHbzVoTUduS09aaDFJWmw0QzNlQkU5ODZ6OXFiZ0tSRFBZbnJjU0VHNGkxUUFBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1NjozNC44OTk3OTUifX0=','2020-03-29 06:56:35.903306'),('9n1y24tmxpxncc2l6057zdm0vlb5207y','OTNhYjBkMmI5ZjU3YzE5Yjk1MzI2MjQyOWZhY2Y0ZDYxNTA2ZjhjOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5Nkp0M2dZaXdicEhGQzBaQ19xWVdNYVQzMUxTOGpXS3hGZERhQWpISkVKdnBhQ3Fwb25tVTEzTXBuY1k4YWxzbTlHRFpUVXBaVGNwbHFlUmwzbWwxX18xdXUwTmJlbmNGdTgtQmlGYi16VENPV01TQm5Pb3JMRVp5QW0zVFUiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjU0OjMzLjM3NDI0MCJ9fQ==','2020-02-09 06:54:34.377814'),('9nptxjjgkdwpf1x7sbi6xh338b5ce1nj','ZDhhYjViOGJhZjFkNzFmZDEwZDBiOWVhN2E4NjFjNTdmMTQwYTQyMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3M1JrVmFUUThSSnFmb1YzaVBHV1E2Y3lDVFlaM2tza2FFQmsyTEFSQ0w3Ml9tUmFEcE96NWRTX0taUW92ci1zSkpTNTl0VzJVS0FLaG56RWx5bl9jZ0tNTXIzZUo2cGlNVTRueHRDNUUweFo4VVVZNTROSl91dW15MEhHdEUiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjA4OjAzLjkzNzAyMCJ9fQ==','2020-02-20 07:08:04.938221'),('9o11x5un7m4zyuiimf0fsveme82aeiha','MjFhMTBmNDU0OGNhMjM2M2UwMTBhYzFhMTQ3MjZmMzFmNTNhOTM4NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5SllFRlljMUFaYWp0eW13LVdJSlhTMENZSnFEOEZWS3pfMGMtb3lzRlE5WWk4aFozMVlvSUc5ZU1IUnlLVXJieWNjQzlHaURwRU1vV19TZExuWGdMOXhPNWhVRWFmaXJQRHhiUFU5UjFDQ25ydUY1NXMzb3VmU0dJSzVZZGsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjAzLjE4NzUzNSJ9fQ==','2020-02-06 11:30:04.191073'),('9pypcw7b0y9nfpolvnskytrhww5lucvz','NzQ2NzcwNDI1ZGQzMmE2NmEzMDE2MGRhZjRhNjA2YjY4N2I1M2RiOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6eDNPR3FNdmpGY094QklEejZLV1Vhb2l4Sk5xTDlJRGtzbnZlVmViZk9BRGVwb0l0OVJ4ZE9makFXSUlsQ1ZFQUFiWktwc0U3V2lFSDhyczl6OWRKX0dHNGpRdHF4QmdkdEV4UzVYWFVHem9vVzVDckI1c0J5UUNPX3N0WVZhIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMTo1Mi42MzEwNzQifX0=','2020-02-23 07:21:53.634564'),('9rahoyjbcr154rzr78q0w647l4zw1331','NDViM2YxZDQ1ZjIzOTcwNDA2YTE4MjZmNGVhZjljOTE1NTQwNTMxZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4c0VHcGRwNU4xYkJzdmFxNi1MQ1FrUC1CWjU5V2VZS1I2SUxLZGNmeGZOQVdibnJ5NHBRemNXSV9HdzNOMFdTUHFaRVBJU01Vc05zWDY2Slpvb3lpYkVwaTdpYmphSDYyMTlJcGZnM2puaTl5UXZRdGY1ZGFiR1dkTVlaZEpXIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MTowMy4xNzg1NTYifX0=','2020-02-24 05:41:04.182043'),('9rehjmwsvh5889wjrin8bu7thihklz1l','MmQyYTk1YjliZTE1NWRjYjI0MThkMTFhYzQyMzZiY2U5MWRjYzExZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWYi1VTlpteG5HN3V6dW5XQmFhYVBGN1VNemF2bnFGSjZnR1RrY014Yk9ienhSU18wRjR2bnlwZFBlSEcxUXIxME9KMUk0cldBSFdLUUVtOFFjZ0FnVUFnaEpRcDhMYnZPblJBUU9kajd5ejFIQXJSLV9pcTVnSWxOZ0FrY0xocGtkRGdiNnpoQzhURzUyS3FmTlpyeGdoVW51MEVhODdBIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0Njo1My42NjczOTUifX0=','2020-03-16 07:46:54.670921'),('9rffcgbhbp5spqan8n6yccvhawl4rl84','Mjk0ODBiMjRjNmQzZjc0M2Q2MDA5OTYxMmVmMzRkNWVmN2E0MmU2MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIwMHFtcHIzUjZWVDRtUFJVVGJSM044YnBtZG45Mk5PS25sSzdMSm9nb3V4dDhDeVVxUlBsYWxIcUV5a1Y3UndaTWphSzR3M01sdGp0eVVIWWc5S2ZxTzhGRk5LYkFNc01YMUxJSk9RWXJPUktUaEtMTDRUck5Ldy1rT0huTmMiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjQwLjE2NzkzMiJ9fQ==','2020-01-23 06:50:40.171107'),('9sfvcw62tcvcawzw0lill6isjsr8if7d','YjBkMTY4ZmMwODZkNWVjZjVkY2IzMjIxYjQzY2Q1Yzc4YzVlYzdiZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2RGZkUXdaUkV3R1VSQ0pScy1fa2hua3ZZSURYOXIwOWZKZXNzUTFRZ200a1ZXenFLdjh6OS0tWThTX0NVVzU5T0FvbjVRTXYtVUFxUW9zRUZld3V2Tms1d01pbXNPc2tpblByMW5DWkRhd3ZaY19FQzBoWGstdm5nYzRRd0NGIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1MzoyNS40MDk5NTYifX0=','2020-02-26 06:53:26.413496'),('9t68ia3h396dmyyovo2suaiq0nnhya3o','NTJjOWE1ZWYxM2I4ZDg5ZDBiMGRmODBhYzVhZDY3NDFhNTQyOTkyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMxa3ZGU2gwVE43MnJ6Njllc08zQUM5RFNsbmxJZWdRdkNhOUpDdGZmNnZmYTB5OGZRYm1weU9OWDkwUkU1czBmazhPRGtaLTJqbExqbnA5VWJsTks1NmxGbHZseXd5YVVWYWdKQUtkbndPSERIUEFxcWlpREFveFlIYUsxNTUzX0QtLUJTendyamZzNVdBVF8xV2RZSnlGb2k3OFZvdzZ3IiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MjowMi43NDQ1MDcifX0=','2020-05-18 06:42:03.747981'),('9u2y0s52bjensvv0r3xkbku2iu8ndrxd','NGVmMDMwMDMzYTdjMjMwMWJiZDRjMTM4NTcxZjA3N2Q1NTkxYWExODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3eDlROXhQSEZCQURDV0VtZ2E2am90OFAyTmlodFpWOGJGWWd6bGtTX0QxLWc3REt3VXNaUjBsX1lrQmtLX1dzcUhMek9KR0ladktNbExuc3dSeWZael91VEdKWHpOSkM0Um40Uy0zbng2VEotQmpsTHJxRmNJRk5mckdmWjVCIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMzoyNy43MDQ5OTYifX0=','2020-02-23 07:23:28.708471'),('9ubt78gxvgh7c1lsfvrrotxys9pd6mlh','ODNhOGMyNmY2YmY4MDk1ZjVkMzc3NTA2NDk3YzYyNWMzYTJiNDI5MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3M2E4QUpOZkJpT2R0aUFFVWxWNEpHRHZxbjJHWUU2WnJnNjdkbFV4ZEJZQ2ZmXzl2akZpRmVrVEVUclh4WnpnaVpGLVVHUG9FbDhfNXlveWVNWVA3ckRfSzh5WGVoTHo2MzZZMFdadWFFSlFGVHlSa0tfYVg5ZnBWX25Dc00iLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA1OjAwOjE4LjY3MjIyOSJ9fQ==','2020-02-16 04:00:19.675777'),('9v3yhmhx0q6jz9su9l2m6xrxa07dbb63','MWRmM2Q4YWM3NzIyYzlmN2VlODk1N2ExNjRlNDY4Y2YyMjkwNzUzMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxMzd2dDdIc1ZpcVY5V3ZyRGhZUURxUzJqQ2JYMFptajF2TDFkUU9CTDd2LVZnLXJ4S0N4LXlYdHJIWWIyWlFQM2M0Y3R0YWtmNnhKTU51VFVreVlrVFpMMlJfV0loTTBlemJGNzRlQXBVRi1FLVZFVGlSNUpqUlVMQWJwLURGIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1NDozOS44NTI4NDUifX0=','2020-02-23 06:54:40.856277'),('9vckikpnrkpzikpvr4q9187hc8erx1no','ZWJjZjBmYTg2NzAzYjAwNTNiOGYxMGUyZmY5YzMzYzY2MzFlNDEwODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfaVlIeXJfTjRXTTRzc1E3ZkF4SUt3dGNwR0dfcEktUnIwQUtkS3VLbUVLNFJPbjRqSEJVdHdoQlIxRnI5dk1YNkN3UHlpMXI1eV9PZFQ5RHFCTmpreHFXaXRYcVJaTkU0aTBhMkJ4Yk9UMG9vNTd2cGJqTVlqR1QzeG1NTkkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjM2LjI1ODk0NSJ9fQ==','2020-02-17 12:20:37.262576'),('9w23mjiej43y7qe4ol34wqgaz14ktoxb','OGZkYzZkYTA1NTUzY2U4NjBjYmI5NjBmNDFkYTE3NTM4ZWQ1ZTljYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIweUR1RU5iU0trWjBWWEJDZEl5bUN2VGJUZVM4amNIeHN5Rk5JUXE0cXVQTUM5OXdIR0ZIOWZQTW4tSUpiTmFwcmt2enpXTF9uaDFYcE9UUFVCNHFDa21yVFZvSlVpOFo4QzEwOEVTbGFzcGprMGpBOENyT2lkQnpOZ3ZhQmsiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjIxLjEzMDMyMyJ9fQ==','2020-02-19 05:34:22.145154'),('9wnw5l8oqdeoe1obhomj31t2ssb7kw4k','YjlkODMzZDU1YTI2NGVjNjI2ODRkNWYxZmUyZDU5YmUwYjA5YzU2Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI5ODBnMGxFM0tOb0hXT2hITFhNQmlabFlPQktLUHNTQ0Z0SjFFQlRjQ2tMb1pzazIzLXVmMlFqaXNQeFBEQ252T3pyc2E0RVotdEhUN2VMS0twbUVSdnJ2ZmdUcEk5ZnAyYjd4aHktTXVmVXB0TEtVUXNBYUQ1MzhlNERYUE0iLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjE5OjI1LjMwMjgxMCJ9fQ==','2020-01-20 09:19:25.306097'),('9ymjrtg8sceo3z2yekthjexw8qqbic7o','NjJlNTk2NDg5ZGFlYmJjYmNlYTU2ZTY3ZTY2YmMwNzZiOTNmM2M3Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3RVRkc3g2Y2FpRUNCbEx2cjZONEFWMTU0dkVWUXlRSW85MGFsZTF1S3l6OW9pRi1ZUS0wNVk5LTR5ZFpBSXg2blhTVEEzLXhYQVl4Nks4MzZES05kc2lEd1M2ZVR1amI5TVcxY3U1dFpmNXcxY1lfRkViOXB0X01qTmdxR2siLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjU0LjYxNDQ0MSJ9fQ==','2020-02-06 11:23:55.617989'),('9z0u24ur1u8xzclcg0g169xs32x7kww6','MzcwYmU1MzllNTc2OTBlMDZjZDgyNzU4OTdhN2IzOGNlMjU1NzcwNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1REl2RGY3NG5EN0hGRzlaOXBZVGtwUlJoeDNldmU1SUJTUjJWb3VpbnBWaDFieDdfdWw0WjZSbVBHdTVYOFk4UmhET1JWdm12TGhZbUdyRHVCWlp3cHdYdGZZQW1KOUo5N3UwYkR0Q2dFNkNFS2hfVFJFMmlRenFja3RaaUs4IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1MDoyNC4yODY4MDgifX0=','2020-02-23 06:50:25.290137'),('9zhj4tkw9lr3myp6e9g6tmaysikv2dlc','ZDE2MmZkZmQ5ZmU1NjhmN2UyMjgzYTM1ODQ0OGQ1MWFhZDQ4ZWViMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyelNxNGtPMldZOVZJLXU4bGt2XzdRQW92a3VRNU9NbFBDSDRHeUFtTFNMOWQ0SHNRMEhwcWRTWjBwejNzLWp2S01HYzZXT09nR2lKZUpvTGhuR0lCYS14aWVaVDEyb1psVjVyM1N1bnBWQzVnOC05blVjc1RORGRPOFRxdXciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjA5OjA1Ljk3NzUxNSJ9fQ==','2020-02-20 07:09:06.981055'),('a0itk8b4gsom3mfxgj19enelm5xslj0n','ZjJlM2ViN2JmYTcyMGNkODU4MTlmMDZlYzdjMGQ2NThlZDQyY2Y2OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3TTFWWmstbWN6cFdHODdHT1ViNWo3cTNybUJValpJU0lTeW5Rdm9oVlg2SHpFUnYyNy1xTHJSemxtT3RuUzVwbzNualdKUHJsVUxramswN1JVSGVXd3cyUmlnY0VWT3FMNG1GQ0F3X0Q5ZkpGNzNNaG9nUlRyN3dkN25hazRwIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMzowNi41OTQ3NzEifX0=','2020-02-25 07:13:07.598214'),('a0xjipnj3u594qrd4y6nm1nrijccps36','YTNjNGRjNWZhOWE0NGMzN2FkZGFjZGFiMDU4ODk1ODEwY2E3ZmRlZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxTXJzM0otR0lULXMyanVZT3RGVW5ZZWtUM3BrQ2JyVTh3MVdtVkR2U3dOYXJvYWhXNWVkaEY0YmR1M2o3REI1alNqSnMtY2VFYkZJb0thNk1LT3RkOFJnRHhva2RVNGMzTW1XUjZGU3ZHT01mNURhcTA0VTdhei1JbmRxWmsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjM5LjEwNTI0NSJ9fQ==','2020-02-06 12:05:40.106337'),('a1jzg69rnn8f9gmgcin4xxl5znub86y8','NzMyOTkxNDRiODAyZjJkYTQyNjdmZGJkMTNlNDFhODdhMjRiZTI5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1eWw0Y1V3ejl0QlRpYlhtbVpmb29JeUJzNzU4MW9uV2RGTzEzYlZ6d0lxU012TnVBN1lPY3h2OGNvWklrdS1EU3lkMms3ajhlQVdVTlZMLW1ZNUJ4dFJKX0plRGVPNHY3eVl0dlRvazFDYndNU2xtWnl0OTcySnJOb3JId2ciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjQzLjE4OTQ4NCJ9fQ==','2020-02-20 05:59:44.190494'),('a1svi63gqi5gqwtnxj06mfc4h88kksrq','ZGY1NGRlMTA2YjFiNDZmY2RjMjUzMzI1Y2RmNDU5MTU4MzY2OWNkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5ODV6MW5yelA5aTBZX3dydlN0dzQ2T1R1UnZ3SDRPYnZCcElLaUdSaWNnclZQMm13TEdHMkZBQ0cwVGxRR2RFVmd0ZS1PenVxTVljYnFiVVF3alJYMWJTdDY4cl9yTFlYaEVJSmlpQXEyTmFSS0Y4NFR1Q194Z3duSWhrRW8iLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjE1LjU0MTQyNyJ9fQ==','2020-02-10 07:50:16.545078'),('a3uc5rypepga4dvjkb1ee78oos37pzsf','MDMyNDZmMThlZGM4YTM0NDYzNDYwMzU0YjYzMDJlNzBjMjU3MDBhZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItTXFRRjhSclBzYWJiMzZkdWFkSXlxdkdBdk4yS2JzYlU1bVRmSlBDSXJKQ1lxRE5RcnBJUVFDV3NxaVRpeHhsSklhaTN2U0VHVG1MYlU4NFBDLXlmaDVqbi16cEhfNDlHdjZESUFrS1RLV085bmplOGdUeUpmM0dXNW9GNzVqIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDoyOS4xNDkxOTIifX0=','2020-02-26 05:00:30.152858'),('a4m401h3vvizq8phqvkt63v3gg1pwhrf','MjBiMjIxNTNlNTJlZmQ5OTJiNjUwOWEzNzIyZWZhNTE4YWZmYTc5NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3YVFEZWpGVEw4VjdDVWZnM3hTUWxROUNCYXhHRXMxMldvV1c3ejdQWXRqUUhMUERPS0J0ckw1SUJyYXlCNE5mcGRob3pvVDNRck9xZkNyX2dNRlc1NG85VElEaFByNHN6WXRfSmppc1l5eTNZUm5oY1B1c0ZmZERUNWhFdm95IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDoxOS41NTY1NDIifX0=','2020-02-26 07:30:20.560280'),('a4ou1s2s3ugb78nu3i6mofjkw9o59pqi','ZjcwOWY1NmI0MDJmMGYxNzMyOTRjNjE0OGY0YmZiMGI3MGEyYzJmZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyRGVMZml1OXhDUFRPdHZORVRERVBpRVNpOW1ZMHJrc00xRTdBdjNHaG1aWE1LUUlWVFFTVXVOVXBMZy02S28zaW9vdUFWQVQzY2NLY1RXbFlSV2Q1aktMa0RxeXhPdmRLM3Q0RWEwNEcwdk9CS2tVTHZadWVnQWY4LU9LeTQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjUxLjIxODkyMiJ9fQ==','2020-02-17 11:20:52.222433'),('a5wqjuf152iisw304wqwvys17avvregp','YjcwOTQ3NDk5NmUyYTM3NDllNDc0ZDBmMzQxNjNmOWQ5NjA1M2JhZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXY2VTNGlWOENNeGJDNGh2d3A3Z2RnTHg3WDltb1lhaWo0VWtLRHREV1J3NjZkUUVOcXo5V2h5dy1VRHBJTUhlMF9EYjYtWWVRekRYT0lPb3NuelpEY2doYmtTZ0ppVWZ1Z1c3RGpESTJyYWxBd1BRRmxyZHdUdmVqSUUxSTBPT3hZRFdrOUFyUXBUWXMyOVNhRXYzV3pHY3BrLXZjY2d3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoxMDoyMi4wMTczNjYifX0=','2020-03-29 07:10:23.018786'),('a61070xi1sdpri06qhsksc9f018x2own','ZmVmOTIwNTA1Mzc0ZmE5M2JhNmI4MDY1MDk2MTU4OWZkYmM3OTM1Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzX1pqRkk5aWVwLXhmU0x5aWwtX3E5allka1Y0VjIxOFNPWURWYm9oaF82aEcwU3FFc3dIWWM4bWU5RXQtZW1sVzRVT05HNVJBQ1o1MldQcEpVdDY0NUNQczE5MDdKVHdRMHFPa0ZmcjdUU0VvZHpObWFGY2NPWGtYRVcxejQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjMzLjMwOTU0NiJ9fQ==','2020-02-17 12:00:34.313149'),('a6cxexwbe9zded6g3680gkzunky292aa','YzMxZGZmMWUwZmViMzViOTU5NjQxMTFlNmU5MmUwYzQwOTIxY2QyZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYS1R2TjZkbHgxSDBCNjJhbTk4TW9RU280WklacF93Zm5rWnJZYV9Wa1N5WDVRUWl2UU1uVTJUWFBoWm1MMk5VQk8tRW1YTFNhWFRHOFhUY2V5eF9pWUZ2aEk4ODNJdjdjM3NtUnVVUS1odXhiRzZVcUo4N25sTEZGSGZKQVZUNGR3SFNHR01oN0dnYnRaZDQ2VThIYnVqLXRGeDMyRFh3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzowMTozNi45MzU0NDQifX0=','2020-03-29 06:01:37.937723'),('a6tlieyw2f5248f8s9rv2cigjlq1afgx','YjM3MzUxMjQ1NzhhNjE1ZTIxYjkyYWE5MDhmZTE5ODIzOTM2M2UyMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2LXdzbmdqeEZNb05Hc2ttVlA3WjFNVVIzWGZydjN1cnZ1emMwcmMxeFJWcVU3Ung2X3BEbXJCcWZCT2o3NEFoMG5mSGpVUmpMc0lsalR0UENFdlpHRXVad3JyYUdNSVZDMzFKdzdZNEhQNk5RRGVyS04zSTlFckZNSjU3S3MiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUxOjMxLjgwODY4NyJ9fQ==','2020-02-13 07:51:32.809796'),('aayy1zv2r454v32zm2m7k4fe4xyo8tas','MzdkNTdhN2ZlMmJlNzY5MWVhZDE1ZDVhZGY3ZWNjYWNkYzE0ODNjNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3X2tfUWw0eVRiNGJoQUJNWmRSaGdHV0hSRm5KOEpmYXNudWZObjJVRHQ3dlF1UFU3RTVTYS1iWUszbWVNYTZGODAwTjZtRWVjM3drcnFKRzB3d0Q2TFhKSzlXTjFKOXQ0R0xXRzIzR2VqQnIzcUc4THV1Vi1qWG4yeW5WVnMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjEzLjgwMDE1OSJ9fQ==','2020-02-06 11:30:14.802667'),('abbsl4724e82o6k8erc2dluxn3rarmnk','NDA2MzkwOGFlYjFkZDg2N2MzYzFkMDZlZGQ1MDk2MTFmODcyOGI3OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfXzhycXVaZ2llSnZWamlDRy1oN0paMEg3MzNmaHRWOFdzTm1Qc1J3YW1IU2pwRzBncUdyZVVyZWZpTHFYUkxIYUttM1hYaDVYZHh1NTc2ZklfbTNQdThQN3ZFVkVuY0FxYWpqTjBtN3c3S290d2VpQmVuSDlyY09GV2lmajQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjU3Ljk5MjIzMSJ9fQ==','2020-02-06 11:47:58.995603'),('ac4mwfq8j1jzjpnxwfd9y7ua9mawd3ig','ZmM5MWM5NWRlMTYxMTdkYTAxNTkyNzFiNjNlZWQyOGU4NTVkZWM3ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVTUpubWlUUC16ZkFCdTktb09mT2JQX2VIVWJNUktDa2FiaVVqeUtVVWppQmVGOU54ZUdFMHVsemRSeVIxZnVrRmJKRXR1ekQ0YXd2dTlubUNPRHZDZ2hjR01IOF9iNDUwVzgxQ0NDNlJ3czIxLUN1TGFkSE5peUE4NzBuS3JScjRnS01SWXl6UGpGdjYzRTBSZnU5UW4tellha3hQS293IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzoyNS43ODYyNTkifX0=','2020-03-29 05:37:26.789669'),('acgwbdlwnc5i2cv9b49p92tvlx8iraqg','NzJkZmI5Mjk4ZjkzZmE1MWI1NDc5NjM1N2Q4OTYzNDI1NzAzNjMxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIyRzBwQlZ1dlpnWEhPUjRjREM3STYyMXU2YnVKcHRSc1g2ZlJBbGV3ZklpeFB1aV80c0F2TzZZUkNWUms1YTRrYVBCQ2FVLUtJSWgzSFliRVpGeW5SbVJYNjgtblpuSkc4eVdiRi1TZTJJZ21HZ2VXQTRfWV9jNDZqbTNCSU0iLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ3OjE3LjQ2MjY1OCJ9fQ==','2020-01-27 05:47:17.466062'),('adw2sfnh2klwkf51wqyc2lhgzi1vaxc9','NTNiZmMwYWJkNDU3MjBiNDU5OTdiNzVkM2RlMzIwMjdlZWQ0YjlmYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItajU5cEtYdXhTUEZQUUVOSjNiemR6OXpXWFVNNzdkeVhoTE5Ubmo2bVpoNHB4VWcwTzRqY0NVT080OVFTbHZfQlRfOWFkREc1Z0wyR1dEMmZCcm4tcU52clA3blRaNUx0WG9SX3gwekl1bzlaNE1VcXNqdHh5amFQX29ydERGIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowOToxNi41MTQzMDgifX0=','2020-02-23 07:09:17.517819'),('ae8zezn3fj43to437obtxp3adjhb2qie','NGRhMTkwZDRhMjkzZWFlYjVlMzA0MWMwODUzMDFiNWY4NDJjNTRkOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyOGFqM2tvSUNVMGdmdXYybHNGV2gyWGI4UVFzUkhpQ3doZktBQWo4V2s3UHJoQ085dnVsY1BsTlJKVFZUdDVaNGRSUUtoZ0FKWUwyTThvYUdnRUFwZ0ZYLXpDLVdseXlKWkM2VHJ3MU1FbnRxSUJSVUFPWWdsV1ZaNlFLY0kiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjI3LjEyNzc4OCJ9fQ==','2020-02-13 08:00:28.128911'),('aebbuzh9yoeeztm5at7wmnchcizmn3qm','ODhiYWZmMjYxOGVmMWY0NDA4ZjNiNzk2N2YxZWYxMzVjMmZkOWRlOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItME10OUhaOFJaTS1jYVRLcUpuaVFNaEgzdUxkcld5X1poODJtVVFuRUF3X3Z6U0pxdllWR2JyajBRb3VKSk90U1VRYmZXY29MWjdBeHA1MmlLWGN3dkdLcXRodURtYmFpY29KX3dxak1sMjZVdTlaOEhCa3ZYdlozWE9CMk1LIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NTo0Ni4xMTc3MjMifX0=','2020-03-05 10:55:47.121644'),('aeu0ukufbntog5eqdlpg7enzkoowj12v','Y2MyN2ZmMzZiOTdkMjM0NzEyYzA0ZjMyMTFiODkyYzk2NmYwNjI0ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2RXZzZW5sV1B2czZBUFlkNndsWkRjY3JwLVRlOW9TTGk1TVRrV29DUmh6cmtGT0UxQUUtUEQ4elQtanZZQWpOR3g4OHZSRndTZEtNWVhvM1VPZlhPMm93d0Zac3U3UkIzWEI3dE9NZ0FKb2NjX0dnSGViTUhLdWFQY19aMzgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjM1Ljg1NjMxMCJ9fQ==','2020-02-06 10:57:36.859969'),('agmhcloy0o8rpwaiui7fi8v19h708fm3','ZjgwNWQ2ODQ1NDNkNTc2YTkxY2U1ZDk1NDBiZTY1MDlmMDM0ZGE3Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyNnBKVXM4cE1ndXFueTdMV2pXRFc3bkVCX1p0TVNaS25namx3Z2g5Sm95UkFCXy1IZ3JYNGdMRjdKdFdoV0VjQUpSbVZvSmJwa29fWEZwN0tqbmVHRGtGVFFaOWJNU2JGS0VfejUzd19FT2VZU3NzbUNKR1dMTmhFY3h1SXciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjExLjc1NjQ0OSJ9fQ==','2020-02-17 11:30:12.760200'),('ago2w95sxcrkjpa82l5b3jfwtddwd4b6','NTIzMmI2MzkxOTIzNWIxOTZkZGI0ZDA4NTFjNjNhOGE4ZGUzZGUwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIycUJmWnFRZkduRkpoYUlJaGZOTjZrZUVPMVBjRXVvTmM1UThXZTlvS3RjcnQxajE5cXZJNy1HMjVZblNrTnpOUTlKdEtWNXktUzBuRUV1dmZ0OTcwM19lbkpYc3hqTjladVYycFk1UlFiNmFxMGY5eFFYcnh1TkxJbUE2UlkiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjQyLjQ5Mjg4MyJ9fQ==','2020-02-18 05:39:43.496271'),('aid5yphanheo8k6y7uwqgatgiosdsvxa','OWNiMmU1ZDUzNDI0NTZhOTRiZjQ3NWZiZWY1OWNhYmVkNjYzNTc5ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfUndpSW9GV0FRMHhYUXM0OFJuakxXOS13VUl5UUVKVWJWMjZLbVp3OXlPODNtdmpRODZsaTdUSWdCXzRZekxaLS1DNFZDQnRjeWNvb0RDT1B5WjVYaHBKekpDYmljanF1bVRFQjNVNll5VlpZai1sZjktblRobUp3Z0VZMVkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjEwLjg0MDY3MSJ9fQ==','2020-02-17 11:10:11.844145'),('ajzr2zp7uitdd7lezgsehapdoklo30hy','NTMwZTIzOGQ2NTYyZDUyOGI2MWJiN2RlYzc5NzZlMjNjNWY5YWJmOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3SU9PWm5ic01pTnRRT050NGRjbkl1MElTTl8yVFNTd25KS3FwTmE1T2xFbjR4Y2hYajRyWmJwSmxDeHZiVzRpYVJnU1B4Q3ZLQkx2QnZlRDhvVC1lLXF0aElNaEM5bnpKSHlvSHpMTUl6QkM3Z2w1QmEzdDBCMFdUcS1hbnciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjQwLjg3MTIyMiJ9fQ==','2020-02-13 08:10:41.874764'),('ak3dk36z6tbquuskngqu1wjchic9kwyp','NDQzZjMzYTVlNmNlZDA4MGJlNTZkNmI5ZTE3MmM3NTQ0NGMyYWMwYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxVjF4cFdVOU92OWhrREJHamhZcmN5NTBPaUpwdUhxOHFGNmpCRWdoRWpTR1NVZ0Nmb1phd3NLSFp2ZzZPRHFMbS1waTNnX3lBbGVKdDZ3Q3FqUGNveVFaZ0ZTeUJFc3JTamM4OU1NNXNKdFdIUXFINjVQbVdnYkQ4OVoxa0UiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjM2Ljk3NTk4NSJ9fQ==','2020-02-18 05:39:37.979480'),('alvi50o65ctp1q6zkjvfi0eunppihm1e','MjY1OTYzZDc2Njg5MDZhZTI0YmY5ODBkOGJhYzI4ZDNjY2ZhNGFkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2YUpUNHB2Zk1VaUZyNHBLU00tSUFDM0lDbENlTEJHRlJrbFRXeGlzc3hQSC15VzN0MDJtSmRJRFJkeFVTUmVzemhuVVRVUkQzTkp0X21rVFNidWlNTzE1MEhZVnVydmdhZzdwdVM5ZTAtLXhyZ295SU9PallPcDJ6VjJwUHciLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjE0Ljk2NzEyOSJ9fQ==','2020-02-19 05:34:15.978478'),('ambzoghevtj5sfpzaxub9uem17e2i7ij','NDM1YWM2MzBmYzY3ZWM1ZjBlOTJkNjQ3MDM4YTRmMWU2Y2E5NWVkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I1bGdveUN0RmctcFRLaktaeTdmd1hqUUxzdHJqdXRxZk5HYzJjcS1URFdiSmxqM1NwU2tWVW81V3l5SFh2S1A4b3dPLUp0dHQ1bnNSdXlyMGd6NUZWSlVUSmZQRzJMMDB4Rjl5aXQxN2dIZ2hlalptNUZsZGNGUEFzLUxJNHciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjEzLjU4MzgxMiJ9fQ==','2020-02-13 07:40:14.587095'),('amv1rq0wr6a2nrqai6zu59couyuarp13','ZDk0YTBkOTJmMDhhMGNiMGYxNjU1MDQwMzcxNjk4ZWM1MTg2MTEzYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItNE9uRWZzdm9wUzN5bDBIMGxVUXNNdFJHRzRSY3VSRTFtSXZYVTZEbWN4ZE1UWGpXTUN1bjBUWl8zeGlKMXVjQWlCQUZaYWpkZElwNk9qWllvcER5Ql83bVRycjdQV1RUTkc0S2MzSTVOcUJGY2h1UnJ1S1Naa2V6NWxyZjgiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjE5LjE1OTgwMSJ9fQ==','2020-02-03 06:17:20.163227'),('ao37ultykzsswq0vf13837ik077gv7a3','YmEwYTBiM2ZkMDA5OTNkNDA2MTlmZTU2OTcwMzYyN2JiYmEwODUxNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI5VEM4aWkySFdWOXdzNllNaHZZc3hRbkVCQnk0ZXpkZVNnQTNsLTV5RXlISWx0ZEhXQTNBNHJjOEs5UGZpeVpXNGpJOTJTY1piS1BDQ3RTQW5TS2tHNjl3VDdYWi02SFdYUkw1QnNvQnBEMjI5by0tbnJ1QlFOMVU1QTZ1ZzAiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjI4Ljk2ODY1MyJ9fQ==','2020-01-23 07:15:28.972097'),('ao3k8gxjz8sazeegawajijspr5oxxaqy','ZjA0Mjg4YzllZGJmODM2ZGQ4NmZhYWUyOGE1OWU1MzIwNDdkNGE1Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1TzRsMHA0RFRTbzJFTG00RzZRSUk3S2ZiWm1GbU9EWnp1Q3RKQTIwSW1HakxEUmZ1cllVMUllMmFuZUZUNFVtUXc2QUlKMzVvTHZQY1hONVJmcmUxX21kZ1l0eVl3cjRKcmVNeXlCRjdqUjBZQS1ldUZXQVNtc3MwVk1PNHZzIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MDo1OS4wMTc1MzUifX0=','2020-02-24 05:41:00.020827'),('ap355rk1ijfpe4q1vnjn60l3z0ifsnek','NmJkYzQ1ODY2ODAyMjRmMGNjZDUyOTJhNGFkYzEzMmMzZGM0NWU1MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2eFBHNlg2QUp1bVl5OGUxNVBYWEFpWklOMGFYLTNPdXlLQXh0SDFOZVlRWTFnQS1zQ1poMXZ5enZoQWFqNFg0ZHN6bkpFdjBhLXZGUW9NNjRhWXhZWXBPQl9FaFd0b3hodFdYNWl5NE9aZ015cE4zaEtyUE9yb0o0SnQtQ3dIIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo0ODo1OC4yNzUzOTgifX0=','2020-02-23 06:48:59.277819'),('apdttw9ip8rgnhuqrndctrpnf8vkr8pe','NWNiNTA2OWFhMGFlNGIxNWFmNTJhODA1MjkxZjhkMWQ5YmI4YjQ3ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2b0JkZlA5SVJfbXdSYjV5MUJDTWlPWUhWTHRLS3lIMXE5elp5MEUwai0zSFpidTljellCeXJobHNFVkd4SjlKTDlUZWVyTktuZjJ2cFdPVS0zbEFRWU5sYVJOcXJ5QmFkaXpqZDZKSHNiLW1KQkllSGhteVRWR1l2aUJFdDBBIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMzowMy44NDM2NzIifX0=','2020-02-25 07:13:04.845785'),('aqj1tb8dds3wgrrjt8f2ads9p4zgojgq','ZTI0OGU4YjFlMWFjNmRjYmU4MmQwZThhMjUxMDlmZjQwYzM1NzUxYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzRzl6M3VWZXpSdDM0aXNjQUF0dUlMSk5OeEhxbEFabXJjSG1wSDAwMzNrZW1SdTQxRElMaXZRZkNvWDhieDVGdWVQVzQxZF9LVEJoMzlHS0xDSThDamhVRUFTMlhMTlM5elM4WTZrN3kxd0wxQld2Z0Z6eE1OeGVkbWJwSE0iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjAxLjUwNDQ3NyJ9fQ==','2020-02-17 11:30:02.508076'),('aqnncip4loe4bo13xpp9pd22fgvuwzww','NmNmNTk0NGIzNjEwNGRjZmYyYWNlYmU4YzM3YmNkOGNjODI2YjkwZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI0R1NoQm9tTklxZEE2cThSY3RwdDh5Z1VUMzFwMVhRbTlJdlVHbURnMm5YRktzTXhPcm1kSWtFRGpMNXoyUkJNSUJGeEJVVHQybl81UUZSdG5MajVzVDA3bnZVNmpGYlREZF9feFZnRDUzWTNFeHVYUWYxcFR1bHpvOEdMRjAiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjIzLjAxMjY5OSJ9fQ==','2020-01-27 10:58:23.016316'),('ar05z8p70nki7968elgo6pay2lo56mcr','ODBhMjIxNmRhYWQxZWY0NTI3MzdmZjM0OGFmMTk1M2NlNzU0NzExNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyNExRSlladVlqUTRLUzFTcjRvZzZ4Q0k2UGRxcFhqR3B5bWlISHBOcC1oVWNsMkpLUEpGV21RQ01JU1BTeUVpZ09GRmVzNkFJbE1sTDY3QnBjYk9kcEpBNjNScEt2SWZ6dG9qNUNKak1CcjdicF85aTBLc05YSThma0tYd084WlU3bkhNcWlzM19HNkhJRFBhNDZuUzNtc2JkU2p1VE13IiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0NDoxMS4wMzk5MjMifX0=','2020-05-18 06:44:13.041142'),('atlpcqf9nen5qw8armzqgzk3nmffr2ws','NmM2ODUzMDU3NjI1MWI0YzFiZTEzZjhlOTJkMGUxNjU0NDkyNDc1ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6dThTdmdjampuY0Y0ay1PWlpxUWpCeWhjSVdjdEkzZHQ3eDBGTDhDQkFGX1l3N01FTEVqRDJrRlhmMlVRb3V1QWdncmsxSW8xSTdtd2luZTlwME4zMERFa29RYjFpaC1yeUhENUFVNXpNQy1oZkt1N0trOWNCN2NoSDlBem8iLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ3OjU1LjQ1NTY5NyJ9fQ==','2020-02-18 05:47:56.459184'),('atowiqv1cp91034hb4ej7i2x3k53yj2r','MjU4YjAxZDNiMjRjMjFiZTNlOTIxNmMyNzE5NWQxNDJkMTdkYzhkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2TTIyeTVkRi1DVzl0ZGlDZTZWQy03M3ZqSHd6TW1fUlFwMHZCQ216OHFnVlI4SW1RUXVrNUdsY0gybUgtTE1vUVRGWGdzN09TYlh5ZVlaLUs4Xzd3c1VMRXd2b3Q4NW56NkJXOHdqMVBYbjVwUDhITVVrdDIzRE9FM2F6dTdsIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1Njo1Mi41MTMyMzAifX0=','2020-02-23 06:56:53.516633'),('atybkc5o2o03gxe8g3gchtsfk8c0qf5j','YjA4N2IwYzZjMmRkOTJiNDcxYjg5Mjk5ZDcwOGQyOGUxMzFiMTZkMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIwck04enpIZFEtdEZUNmhJNmpkUUVPNk5NZ2xUMTVORmZsbVBsU3NRalNyZmVqNWVQa3NxZk1SX0pBa1haOW5GRHNXcTkxLTZUMzNaQ2UtWmtsSkRubEdKZFJYRUJ1dkJ1d0UxLW04alNkZHJQU2h2RzdMWjNRRG5UZXR2bUkiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjE0OjAyLjkxNTg2MyJ9fQ==','2020-01-22 06:14:02.919339'),('av00rg9t803rmwelh6bpg5wflt2uu9pp','M2I3NzVkMDlmZDUyNGJjY2NiZWIzMTBjOTQ4ZjVlZWE4NjI2NDQzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItSEZYb3M1RFY4LTlmSEdPV1Q1a3pYMTlUR1hvR0w4NEQ5WkpzUnJiSEE3SWgtalQ4TG03bnBQeFMzRkVIWDJsalNVTExYTUR1alBhSUZKVlpzU3EzcVFENFZUSHI5NFoyQ1V5VXpnUm9KR1JheFh0cFNLLXdmV1hNbjlJR0kiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjAyLjM4MDI4NSJ9fQ==','2020-02-06 11:26:03.382027'),('avbuhy0idvw2b33swr0ytz6a4l03ff6v','MWYyZGQ5ZGNmZjc4Yzk0N2YzM2YzYTViNTRlZTc2Y2M0NmEyMTIxODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4SmN5bkJYamV2RTdMQ2FkLUVUZDY3OE5mc3B0UUxnRlFCUDFtckV4TkJZOXdJcXBCazdGSzJleVZEY0lPeGFlOEpHSlhqX29ocHpLcVpqSFNCY0JMTjlBb1dfWUFLREJCOTFjeTBvRFBxbjQtVWZabzEyT2h6QnlmZkQ1SjgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjIyLjA1MzEzMSJ9fQ==','2020-02-10 08:20:23.054261'),('awnrydvgo6g8hskth2wlivvsplcn2ro5','Nzk3YzJlYmRjYzU5NTczOGVjZmUxNDE4NjI2ZTJiNzYwNjM0ODkyOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzUTU3d2hCNUZ2Q1ZPYzROWnFQVmhyUWJ0Zl9BbF9fN21VdnZvR3JaY3hiSGd6S294QTR2VU81SjluRUZWYmU5Y251Y2NuNGVNTk0wUzl6Y1RhYVUySVRDOGY4QjZmYkVDWVVuMFVxU2ZhOWNZUHF5a0pxOVVtNWZKTGh5OTQiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjM5Ljk0NjkwNSJ9fQ==','2020-02-10 08:20:40.950326'),('awptjzsbr6mgd3qperwuk8mgk21n9gdx','MDU0YWYzYTE4NTMyYWMwZDI1YzE1YTFjMDhjOWU1ZDAwNDVhNmVhYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfZ1dueWk0U3EzeWxpXzRYMHM4R0pVSGQ1R1JKR3RGaXlnd0FpbThtWXAycHd2UHN1Mlo5d3JLdkE4cnJsM1lNUlFySS1MTTlwVU83anRzMmE5UU1Nc29ScWhvUHFrbTVoRy1zdk9rdXRaQzdOM3h0c1EtWVpUd29OUjB1WEUiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjM0LjEwNzMzNCJ9fQ==','2020-02-16 03:59:35.108402'),('awvtgc2w78dwv8d4brac7kzfbtpjqfnn','MjQ5Zjc1ZjMyYTQ0YmUxNTJjMGVlZjE2MDI1OGQ1NTc1NjkzNzAyMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I4LVVqSHkyQVp2VDNzb1hlTm9MOHpEeUMwSXFSdUg3U0J6Z0xpUC04ZW1rYUVJZEswQlRzMU9ZZVZXaWNGUEI3SHJzZjJpMTRDTGlaVVM0WjlKWkd5Qms2LU9LN01lVlMxdnZZaE1KWTVTTzJUYTY4bTBoVkthN0U5MDN4RUkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjQ4LjcxMTI2NyJ9fQ==','2020-02-10 08:00:49.714666'),('ay14zcglcvfkt1z6ia4687ytg2o4tj52','N2Y1MmRjNGY3NmFmOGQ0NGJiOTg5MjY4OTc5YmJlOTgzNzNlYjY2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwRVc0NDFPNEcwYnpRdGJVaVdfbWNNdFJNWmVPV2R6YkRGNUM2RXhRa0hPblgxRUpaYVZqSVVDZ2tnMzF1YzNleFh4MWFITUtsb3BsdS1kcGE1VktLN1N3Z05xbENpcVdQeWFrUXlDWDNGZHFMbXduWTFkWi0zSkZhSFZrZ2tpIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NzozNi4wNzQzODMifX0=','2020-02-26 06:57:37.077781'),('ay5qyrfn2as6utucquho295x0ze0wxxj','M2NiYjAzZTNkMzVjYTBiNDU1ZGU3YTgxNjc2MmM4ZDMxZjUzNGI0OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUJ4UjNrOXczS1RsU0R0ZVhMWlpiTUVra3ZSUzdyQ2VYWUVueXBjaVVUT0lQb2RuQWFudUZxYmJuTHd5Y0s4TUFOMm9RRThhM2FZTlN3djR4QXBPMDlLWVhlVzBYVDFwYUlBRWhNMGNYaFhoX3lqZzRZR2FPaWlwVXpzeEt6QSIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6NTMuOTExNDM1In19','2020-01-29 06:18:54.914673'),('azisw4ean6h4gin9u6oivh4gityoc37g','NDE4N2UyOGY1MDhlZGRiY2EyZTk4YTQ5YTY5YzU4YjNlMmUxOTYzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3OTdGbFlWRVpZVUtpa2NpYU04ZDRVYkFkWEtlS2xEV2Y4T0JXbkpHZTRLUUR2dXdfRE9oQk9vM09DMDBiZl9EaWJkc3NPTDdUNS05R0p4SF81ckh1WGNWczdobUdsRmxkU2ZaRjR6N29HWEhiOWl1b2E2dkVudTRpOVZYNlEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjMwLjU1NjQxNyJ9fQ==','2020-02-17 12:20:31.557626'),('azw9v01ydj6w5aecvvyv2pc5soouqgy5','MWIwMGQxYjM2ZDRiN2JjYmM0MTljZmEwYTkzOThkNmJmMGJkZWY4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3UnBWM0dYZTlxaEtmZXhaXzhzdFZLTUZDTWlvSnpOM0R4UFdlUHdDTV9UbXdRRlFtX3JGazhrTTc0QVkwRlVwNl9qWXF2bzdRYVhxNjM3NDZOLXFKckU0aF9zSFhnVXhHbDlJVi0yMllvTlpya2JVTnhJUkp2NW1XZDJxYU9xIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNToxOC45MzU3NDkifX0=','2020-02-23 07:05:19.936771'),('b129s72a07rlgnu2fzq76s7wfsglrip2','MWFlZmViNmYxM2IxMzEzODIwOWIyZjk4NGJkODY4YTdmODkyOWUyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxa2Q0LWdFV2YxYVl5TW1wOUdiMVN3STVTS3owYUFndmRqYVdrdUgxSDJIQ3JBdGVWV0N1Wm1ta1Q4NjdNcXUwQmNaeWpqY1hiQWxsYU5pMUt1djd6MkhGUkpvVlJJbXpTTFdKTU93X0RESDNyUS1EOHhEOWN2MlZEYmhtZmMiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEyOjI5LjEwNDA2NiJ9fQ==','2020-01-22 06:12:29.107555'),('b1pc67hm1cwmrlfqp2ymayzefovpu56m','MjBhY2JmOGUwNzA0YmI3MmJmODczMTEzZTBhNTlhNGEzYTc3NDIzYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxdENVZlluQ2tocWVaam5VaHREYXQ2eVpoeF9CTUM2MGdmOWN1aEhQTVdKdEZFWTVGWlJhVm8zN1dEcVRPeVZlajBoaF95ck5hZTBkTnZ4QTZkcFBBRGdQU1dZYmotY1BoMktCTGkyd0RNdXMxRmNVWXhicElYN2MxLVdUUkEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjU1LjQwMTYxNyJ9fQ==','2020-02-13 07:50:56.405188'),('b1v1gyxwoworw4i6xpv8up9iytw0a1vw','ZTNhMWU4MzkxYjdhMmIzYmUxOTI1ZDliMjljYzg4YjE5ZTU0OGFjYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4RFNwbEpwX2hzTXZjSU9jaWR0aUQwYmw4TzZNRkJfMmNQV3ZST2phVGFiTGp6WVFVTlhyYmtDX0FZNDBHNUo2b3VCRXRWVG41Zl9zYWg1cnFYOFhUOXZUdmJZMjAxdUJ5NU4tMi1wQnpNSmF0Q2lxaXFRZGN3alA1ejAzU2MiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjA5LjYwNjIxMCJ9fQ==','2020-02-02 06:01:10.607400'),('b3e55gm3qci64oq3yvwcrntzvbgzpc7e','M2QyZWU5ZDBhMTFhZDVhNTZlNjFiOThjNDMxMDMzNmJiZjE0YzM2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXX2N5QVhDOXg4MHZmRU1wSG1vaURkZUx3cTBHYkVUTjBabFVVR3ZwTVdxMC1ONXY1U3F0dnVkZEI5a2ZqdEl5X2kxaXRyOUNXV3Q4cU1ETTRQTWRnV3dJVy1DTFQ3OWNndjN2eGpuWUdNSmpES25MbFNCLWFVRjBHVGEwT2lHWVl4M0ViUXJkNGx3eTdxQ1NFb3pfRVNPWUp0V3Nyd2J3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzoxMDoyOC4yNjMxNDQifX0=','2020-03-29 06:10:29.266727'),('b3ilemoes5rsed1cfcm37doh5u7uvyzx','OTc1NDBlYWNiM2U1MDMxZTIzYzFmYTdhMzRmNmY4ZjJiZjY1OTZiYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0MGpSTTFBNFJPekExak5jbFZlbE9FdmxiR2ExYWZXMTFwSVBGUlh1Z0Z0YjdwdVUzVzJ3a2FOVFhBenQwX21OTV9xZ3liVGZDRVp2dkNVNThKeWJERmsxdHROTkFwVHQ3X3F3OWhSREpvaDVHZXd6NVFyN1pPOTA4WlMtamtPIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MTowNy4zODk3MjIifX0=','2020-02-27 07:41:08.393229'),('b4yi603sn5afdln1k3lk9jto0eevcypj','NGQyZTQ4ZGQwMWUzNjZhZDU2YTQxNDU0OGQ2ZDYxMmE4ZWJkNGViYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4Z2ZySjdmcDhEeVdWa3ZsOEhKa204SGwyR1lrQklCNGFQV3hFR0dzOHdmLUxGYXpPZ0Z2ZFp2NC1XYUtfTlFaZGdGVk5WXzdxZ0JWYWxsZ19nZEV3T2JPV1paSThXMFR1V0Z1ZTdNeG1MLWs1UGZkYTBIV2xiOWJyN1R5a0EiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjA5LjQ4NzExMiJ9fQ==','2020-02-17 10:50:10.490650'),('b9evoadb0btwsu5bsbsu7lj4087vkduk','NWQzNmZiYWEyOGM2OWI4ZDE5NzQxMGRlZjExNmY0YWEyM2Y0NzQzODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5NVBQOHh6RkU1ajZ4aEJoTjhBN3JsQWhpZzJPMHo5aS1xV0hBUUVTeE9EUVp0V0RKRUg0bktBSnlFeUVzZmN6cGZmUzlXNHlzQ3lyRDY2LU4xeUNBUWhWZGdzblVWWnMzYWtZaE1ucUhReWFDQ2RWaGItTkZGUlhuVGNPd1hCIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyNToxMy4zODAxNjEifX0=','2020-02-23 07:25:14.381517'),('b9qk9svor8fhiikkxy8n5itsvmcealp2','OWJhMDQ2YWUzMDA0ZGI5ZWZhZjExN2E2ZDBlN2MxNDcyMTM1Yjc5YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6RzVoWmdZUVFkZWZ1NXdWRmNOendSbHZvMWFXbXQxYTNRREtNR2VHQ2kwdXhGT2oyU2FHSEN5ZFloWUNLX0pzQVhwUWpZRktZREJCMktWbmxvSGdmLXJscmF3VF91bmtqc3U4UkJNMVhmMi1tekJNUVZ4VjZNTk93dXYtbEx4IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDozNS4xNjUwNTcifX0=','2020-02-26 07:30:36.169009'),('bazkz7upsaerl81g1wkp5dzhfbyiij11','ZTAwNWE5MzBjYWJhOTY2MGI3MDMyYTZhYWZlMWE2YTE5MTlmZmNjYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6LXd6OTFhd0x0Nm90Zm1wS2pkVWZNdGVPUl9xS0tKNkRKdGlhNENsX0swbG1qRzdrUUlPSDBsMlJncmc0R2dyUWtGVXNIclZRcGdrWENOZmQta19ZbGl4MTlfYi1NQk0zX1VyMjluYW13YWJNUEtJbjI5OFgtbmJKU0lOeEEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjM2LjMzNTE4MCJ9fQ==','2020-02-17 11:00:37.338538'),('bccxdepi6yp7kaiei274a77pz1avkhou','ODE1OTdmMWE0YTk0MDhiN2Q5NjJhNzEzOWE3MmQ2MDU5MzliMDJlNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3Y1cyb1MzdnU2MXBZY08xeVZiMkZ3bWhFQ2RGQkJRQjJhN3JKaktWR1pmRE9JaVFJczFGd3V5Wkd2TmdZUmpIOHdLbjU3U3JPOFRnd2ZNRTRrYVUzejVJV29yNXIyaUdpT0k3bVhic0NfZHNkZDU1ZUhFMHdnMWF2ZkhfT01vIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0NzoxNy4zNTk1ODQifX0=','2020-02-24 05:47:18.363120'),('beghxwxmzfhch2rnhy8sy2rztzmkzudg','MzdkZjM0MTAyNTIxYTRhY2FmYmM3ZDRlMjlmOWVhZTViNzU0MTYxMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3UDhuakRUV3hqWDBCOTE4U1BNQ3hYU194ZzVPZ2YwTllTdTdkMWhuRF9MQ3VabHIyVHVWZENXYllCWnFvTDhDb3J4VUl1Njdhd3REVlozbmpUZVo1dzY3and5a0wyV0hWakhTaHR2OXRnc3FvNEdfUkFhMVF6UThBcy1nS3MiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjIyLjc2NjAxOSJ9fQ==','2020-02-06 12:20:23.767111'),('bfqb8htwtfmgcujdhkb2ph360c53ufjr','MGMzMmYwZTA4MzljNDNmZTM4NWFiZjkzZmMyMzY5MWQ0MzQwODU1ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyM1JMcWRlUnZWR2JLMjZoZHgwcjlDOVdRSlRvbHlhSTZHb1NlRlRoUmJEOFNzdlA4ekZvZXBCZXh3TkJNUHVYZUthcDN1U1dGeTcwQ19nZmlHLW5IdFdoWjNjRERIT1h4UlRkTzEyUWJlMWtlVWppYUNFYW5Fb0llZWJxVmsiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjA2Ljg2NzQ3OCJ9fQ==','2020-02-17 12:10:07.871074'),('bggx4bf6dqkmb035yt1fvfssen3ock10','ZGNjMTc1OThlODY2NWYwN2U3NjM0OTA1NGJjZDQ2ZDIwOTFkY2ZlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItLUQxVHRTUVFEbzNjTnFqVTlUbllnNjJkMmFHejd4ZGl1emxGOW83ejdqX0ZBbzRWbGRmcjZiZkJyLXkxWkZsUXlzRVRTQkIxeVlmUUEteUZsRGxqMjFUaW91TnF1YlZYbjRtVk5tR2N4NlozVFQ2LUdqTzdkMTZMYlhWVmciLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjQ1LjcyNDc0MiJ9fQ==','2020-02-03 06:17:46.728307'),('bgojltmctrhxmydkqitisg6vdqycszfb','ZDAzODgyYTY1NzI4ZjUwMDkyMDNhYmI5OTViZjgzYzE5YmE0NTBmYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6UHRlVWo4UU9HYmFLMkhSeVN3eXVLY2l1TXJ6Y05MUXpxOGZPZWhrRnZ4MUhkY1FMOTh3YjVhVmQ1ZGFGSlJLelNSOEVyYVZJNEhiRzZGQ0lpYTl0SGdtS2VHZmt1T2JnWm82QlEzNTJSZTA4S2VtbUl6MXdSZW9hSFNlTUUiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjI4LjExMzMwMiJ9fQ==','2020-02-10 08:10:29.117525'),('bhetpzx9fp9q2umxgy8ntvoaysc33cyt','ODhlZjkwYjEwYTg4MWM5Mzg1NTMzNWEzNDg5OWVhYWUyNDdiZmM3Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6SFJqM0k0enNqZnV3VzRtWVgyeVp0RzB2SUFGemNIVWdLQzh5Rk01UHVQYkZPMHZtTW52eG56NWo1c1dYS3hOMmZ5SFRoWTF1N1ppM1o2Y3pIYkZYcHJNeld0NlhaLUJvWEV2YmhueHh6a3pSd1RIVzBIeUhyeTdLeGdTU1BQIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDoxMS40MTAzODgifX0=','2020-02-26 07:30:12.413717'),('bhg2iqst0rckzmb3zijirrtr2wuf80f8','ZTljODNkMjA4OWZjYmUxNDBiZDEwNWMyNDc4OGQ0MWY4MWFjZjE2MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2MGM3V2xocC1WeTJ6YTA1SW51WktFU3A0aWQ2TlBwQlUzOEVYZk5lV3FHTEIzZ3A2XzBLcG1tN3IxRXFQSVU1VWV2UlRycTBUWDlqY0txSFN4SEkyd2NMekt5ODFzVk54UzZKdXpvWFBLQzllSTdqdENwRW5ybUw3TER6ek0iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA3OjUwLjE0Mjk2NiJ9fQ==','2020-02-06 12:07:51.144365'),('bi3p9qk9kqxcebjxi6diwqdq611ayyl8','ZTRhNWQwNjlmNDgwOTJlNGJhNjBmZWNmNjU0MTM0MjljYmNlZDc0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyRVJDZVRTc1hQck4tS3NSWVpQVmVwUEVkMGgxVVAyWDdZLVBrX2NBNkNIQVlZOURfTmRsdkt6cW5FRVkxS3VxakpCMFZLNFo2MmRmOGhCampTd3o3TEo0QXhQQ01FVnhGTXVjaEhmT0Ntb0JSNzNqRXk1ckVyZEYyWWt3bDgiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjU3OjU1LjkyNDE4NCJ9fQ==','2020-02-18 05:57:56.927701'),('bishqgaly948a64bl3pkq055eozjfnkk','ZmNmYjZiYjc1MmU2YmEzNWE3ZjUzODlhN2Q0NWNhNWRhY2NmOTFmMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwNTRLM1VNQmlEcGlydjlxWFZOR0hSVDlSWlpEOHEtUzFQQVQtSWNZYmFTQWl2bVhTbEloRFhJcGJPSzJ3M0V6dUZXOW9XcnhBZGRHcW1rRGZzTWFodUllV2Nwc1h3LU1JTlNTNGFNZlJJUmJhZ09MbElodzZldGJkdWlUdlNYIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MDoxMS45Mjc5ODIifX0=','2020-02-27 07:40:12.931505'),('bj3v62bkmedhpdpkdmr00q9osie2om8x','NjA5NjYxNWU4NmQxMTczNjFkZWNlOTBmMjZiMjc1Zjc2MjlmZGNjZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6QUNaR3FIT2xuaGZaWjBuV2NqRVEyZDI3Q1ZGbXRvbUUzRzNRMk52TTFjc20yXzR0V3RkNDQydVZMd3lYclVRcTNVX0ZNZWhRZnFoYmxoTUtlX1VPZlIxSlVaWVdqV28yLVFCZE4xLVRJRDg2SlhrZmstdU5wVEdiQXFQLXMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjM1LjA1NjIzMiJ9fQ==','2020-02-06 11:47:36.059399'),('bjemywvlfbcbvwywjpgd6pz73uot9o1b','MjgwMDA2ZmE0MmI4YmVkNWVhZGExODIzOTlmMzk4MjAyNGIyN2MxNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6eFRoUUdfc2dQVWlmRjVGMGR3SS11U2xIUEJXdnNpNlpNOFFvZk9CRU5xV3JNX2ZIdnlIM2p0cGJTN2xNR2hMZ0FmTVhqMVAyUW9UaE9MOFIxeUw5WUZkVTZiOE5mc1FPWUlCd1p3U1pDMGhYQUZQUkdYSmphaTc5dXI0TDAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjMwLjMxNDU1OCJ9fQ==','2020-02-06 11:30:31.317921'),('bjvblf6aysfv4gt4598ebfridi16umqx','YzgyNDhiOTg5OTFkZDVlMzE2ZTA2MDA4ODQ3NjdlNTA0N2I2ODBmZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6WHo3RkFkSXRBQ3c5MXphcUcxc3VlZWQ0UXZTeEdzMXoyME9zUC1xS0FSeXhSMFBZS1NIMEdBakZMVWdVRlg5SDFCX2ZqVDAwb1IwWGgyRlNVT1A2WEVQOEZFcXRHMFBjZzdIaFNRYVdDeWFwTUY1d3dhOWVReFZkY0V2TmciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI0OjAwLjg1NTgxNCJ9fQ==','2020-02-06 11:24:01.859401'),('bkh7iti58n5mnrnfp57hlhta03yptu5f','MDQwOTE1NjE3YWU3YjUyNmMzNDBlMDY5NzViNWE2YjY3OTAyZDA3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3T0dZQmM4ZlY2MWxPVGZYUEFGbE05Qk14WUY5dHNsOU91bk9uNEt3MDQ1b3BDMks4bFo4T0NtNUd2S0IyMVdPM3ZFaUdDdEtOeFBlTVZyQlZ5VU5IRl9BNHlINWJPb1VlS0tIQU5NVGljeGktZVJaOHdIYksweHlHM0dvTFJkIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOTozMS41MzA3NTQifX0=','2020-02-26 04:39:32.534221'),('bmppqbm1ffy5opojtbywm1rdqvvf6ifa','Mjk4ZTNhYzYwYmRiYzVlMWM1MTk1MTcyNzA2ZDRmMTNjM2MyMmQxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1VU1GUUNmNVA2dXN1V0NuRnAza1BPcjdxNG5RQUFOcGRxM2haZXlsWTctSWI4M0FhbE1ybUo2YU1iQkhid1dVd3lQUlBnYWdkczVDdzdIdzdsZS1CVWt3N3h3ZlBkb3RfOGFESldUV3ExMUUya1pCbVVYVkxsaEhMUWg4ZEUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjE0LjQwMDU0NSJ9fQ==','2020-02-17 12:30:15.404139'),('bnakaj45wn07gv0y3fqxllhg46g0bngi','ZDEzYzMzNTc2MTNkOTZmM2E3ODk3NWIzMmUyMmZjNTYyNGZkMTMzNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6all4MEdhZmJzdmNkVWtoZFNRRkF1UmdnNzMyMEdJTGFZald2YlZ0TmEtc2loejRXNG9NNThaZjBIU2wxZ1lyeWxTQS16QlBBbGktRkV4d2ZCazlPZkdIMExZd092cUcwZGlWX0FtVHFWUVIwZzVKeGFJamRya09sbl9icDgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU4OjEzLjY2MDIzOSJ9fQ==','2020-02-06 10:58:14.663736'),('boaahgflmt1yli6rkwkwj839plka1xja','NWQyODgzYzllZGYxYjM4YTZmODcwM2ZiYjQyZWUzYzJkYTQ4NGYyODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4d3o3UUVxcTA4d2ZhSG0zTmJVczRxSlNTUlVPd05YYjB6cFNhRHNERmJjbkFhaGtvcXNKc1pKNE9JSzZxQ0VkdEVkTTZLdEhNSTRJMWUzMmJoc3RXNmo5QnlHR2xFR2YxTE5LckhwX29ZTlVVN3pPaEpFdGFxN3BHSGwzdUhhIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1Mjo1OC4wOTM5NTUifX0=','2020-02-27 07:52:59.097344'),('bod9xtcemgwlkwugb5gj0ew2u6mk53zr','YjAwYzZhNzdmZDRlZWNiNDMxYWFjN2U2YWMwMmM2MzU4ZTEwZGU3Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYSVdqQzVNMllpQ0VzUFBjaVVGNzd5VkoxSzI4LUozSTI1UWJXamRWcFdGc2FGbDN0ajRBcVRWNUtGcG93dEo0Qk9PYmYzMHRmVjJWVk45NFJ0UEgxTjJkSTdtX1N2THN4NHhTN3lyMUJXc3ZjdFVGVmpJNVFablRiUEU0dEdzNUhIVUZzY2toa2EwSTRRbkR4SDkwSVZXbG9xQVMwdEpnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzoyNjozOC4zNTM3OTYifX0=','2020-03-29 06:26:39.355833'),('bqju0pb5mmjbtkzwk1ge4yu7wzxqi5n6','NzdiYzUyYjc1YjllYWZlNTdlZTM5YjY2ZWI3NzY1MDMyOGI1MWM3ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXOS1JdzZCOENLUktoa1l1UDBoeWh6YVNBQzdHOTlKZWUxWGNRbm1rSTQ3U1RjX2wzY2Y0a0V5Z3MwU3Y2cVJ6RmlOcjhSbnRZQlF4YVNUOGMwVFRDeTVoTzRLbW9RQkJEd0hpMGxHWVZhcXU1SE9lWDQ2ME9KNlFJV3o0aEpXUmFaWmpQaFo4RjRCdlhHNUZqRmdyMlhNQy16UTg5OW93IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzowNjoxOS45NDE3NjIifX0=','2020-03-29 06:06:20.946028'),('bt0429j6y8yw3d9ll5awu8kgjx9d3dv0','ZDc2OWI5MDdkODU2YzY2OWJmYTc4OTc2ZTdkNzRiZjQ3NmU4MDJlOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXOVo2WnUwQjhXSnhpWlg1ckVyY0k3QXZreEc1TjFyWXN4WXlIX1c5dkZMaUwwU09nWWQ4MFhMblRCZFl3UUwxR3Q3UWF6ZW9aakd2X2NzR2FseGlUN0NrUThjR3lRTzhVQ0VVTEZ5NTQ3OEJob2RKdTl5ZWhiNnBicHFEZGdPaUZFMDlBZmsyQmxMUDJYUnhSdExNMjFCSzBGcGhDc0t3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzowNTowMC42MTk0NjYifX0=','2020-03-29 06:05:01.621553'),('bt44bsqik2w7c4qc4rtr7o71qzgwv41p','NTQxNDA3ZjI1YmYwZjc1OGQ5NjEzODhkMDBhZDEzNzEwYWUzYzQ1NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5UWo5TmFIZ25BNjZaMmFHX2lNeTRvWnhoMEZuV2x2U091VURzUWk5blg3N1hhWjY3WEo3MnhES3hPLVp5LUlQZ0pMVktaSVlZZVRBdUhqamVzVm53bTY0T3J3b05ac21YSGdaeUJSV05WS3pSNDZubXZtM2JEVWMxRmRmdEkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjI5LjMzMzM5NiJ9fQ==','2020-02-06 11:26:30.336856'),('bua7bnnfm52rk9ys3l815rdo4uxzctip','NmJhODBjMzJmYmY5NTQzZWE3Y2E5M2Y0ZjhkZDkxZWEzNDUwZDdiODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfYkVnS0ZBMDVfSWhkVTlxLTE1emprRHl0a0Z5SzhoQzE5THZDS3M4OXBNYl9UX1FvX3k1UVAteTFzN0N3aDAyYXhUNWkxRm9vTEFQNU11N0xWUHRFLWtVNzlUcVc4WjVqaFJuSWdvSGRiQzlkd3hnd3k1Z1dKa2RZT044QkxaIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxNDo0MC45MTUwOTIifX0=','2020-02-23 07:14:41.917805'),('bufz45ii4jbmhut44dqyirav8sbjgbg8','NTI0N2Q4NGNkZThhM2VmM2QzM2Y0ZDBmMTgzYTgzY2RjMjM0ZTU1ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIyT2pZYmpMQUl5Tzd4OXZOZ3hUWjROZWZuUVE3T0VwMi1YcFdDdERRcFhvSzhUYW9POHJSeHNDMEFzcEZ2X0hvVF94c1VkeFNXeHhfT01kV0pxeVJ1MVByWml6S1pmWk8waUJxeW9CYkJGNHBLU3BwOWt3eVpRU2daMHVYWGsiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjE5Ljk0MTA5MSJ9fQ==','2020-01-28 05:38:20.944789'),('bvmirnyrlb56becfuw4lfme65glsikfd','NjU0OGYyYzZjZjRlYTc5ODljODJiNWUxYzY0MTcxOWUxYTlhZjQzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMwTzBTa016NUZNZlVFbWZLQ29fTkNFUWw3RDFSSDhZMGdqRWtPdFFyeDcxYnBQb2lYT0t1NVB4cHV6bEhRWnpjZlVqTWctWHdrQTloU2ZQdHVheHJEZTJpOGMyY1VSNTVwOFo3WFlSXzJjeUJRajhpRXpFTkphNzNBOUkwWmJOdDFmNTlqNy0tVkpVd1R6cW5vMjZzQ1pHejZ1U3BORlJRIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNTowMi43NTMwMjcifX0=','2020-04-21 07:05:03.758334'),('bw7punnnbkgxweaz11etfxyaocawzjeo','M2JkYjdmMjY0OGY3YzUyNjY1NzAyYjQzYmUzODM0NzNlZDBkYjlkODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0IxckJsNWY3NWJad04zdVZ0SEs2aXFPZWJlclE4M1ZjbTZMa1RSeV9kM0hzV2JnMWhqemlhY3gwN28xN25hUGNIUTVaVHZIUVRGb2VVUzRURXhzWjdXQWVhYXU0Z25CLUQtTkZwWDhHanFiR0FOZk5sSVVTSDhQTzJvMG5CamhNIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzo0OC4xNzcxODQifX0=','2020-03-11 10:33:49.180737'),('bwliif0yin1dez4y80u2q8xtw3uvni8q','N2E1NzljZTdiNThhNjkwZmJhY2U2ZWM5ZjQxYzIzYWE2MTZhYTc2ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItSHVCdTZzbW1yUzFqaTRObF8yZ2RWMExZUG5KcENIOV9RZ18yc3Y1TG50RENVa0hra01jUEhfTGdqUmhmQXFSdnd4OE5ENmRGdlNDRmpKNjhQVFhzV2Nsenp5WXVTcm9MQzVRaUJtNmtSXzk0SElnYUdkMjZ6Vi1aRVVoOFkiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjE0LjgxNTkzNSJ9fQ==','2020-02-03 06:17:15.819442'),('bwmyvgc0zounrlvcwtlcqo3x7f341y9e','M2NhNmU3ODBhYjgzMTY2NzQ5NDIxMDJkNTRjZmI1YzRmNDEyMWU2Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3b1VrZEZpN2YwVENqOFRhbjlDQ09TcmpkQTNfeHlCODh3MlBRU1dNcVZfeWtMb3RpXy11bG5uSkY4TklWeDZJaFZDdnFPdDIxOUFmbl8yeUZaYk9taFdFQWRFWnp2eGc3YlREczQ3NEctUW4zTnJ4NlVHWjQ5RXJWZnlYRHlJIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMzozNy45NDYyNzgifX0=','2020-02-23 07:03:39.949790'),('bzagn3ntfgjg4l4nqk5nzhkuxelnxz0e','MjU1ODFlN2VlMzljZDI5Y2MwN2FkNWFhNzBjOGJjMTkzNmJjZmM5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4UU9HaDJudzMzWlk2UmY2SVlLYXlZR1dUcHJCV0F0bHgyWDZrcE9mZVVlYTl3UGtfRWpESkRGYzRmb2JpcFRGaTBITmZiOGVMY1VpVTIwYlF0ZVg0Sm9nV3psaXpYQ1FDWkVmVXpCZDVUb080cFBCcHJLZ1NWTVlTU24yYkEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjE4LjgwMzM3MyJ9fQ==','2020-02-10 07:50:19.807005'),('bztq4g3rtpne88mb0y6tyb8vyson075n','NDVmYjBhYzk4MjUwYWE1ZjUxOTIxODVjOGQ1MGQzOTJlZGRjMjExNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2c1Q0S29UQWc2S3lXR0dzWGpRRWI3U2RuQjZhalh2THFpVFRnNkdIb3hCSjZrRGl3dVlrUjFmR2w1RDNPWWtWb05NYnFTOVJsbmVodE1QYkpLc0tvQ09pM1M2bGVORV9oR0YzMm1uM3RKcDlWTFltd1FWdDhOLWlHQWRLTFEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjIzLjYzMDEzMyJ9fQ==','2020-02-17 11:50:24.632277'),('c0j6mnhw4lo40i56vdeogmbzvhqwxa4l','YWU0ODQzZTU0YjA4NjFhOWI5N2E0NTczNzUxNzIzMTgyNDhhZDRiZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIySDJKVUZxenc2QVJ6M3M5TnBTd3V1RkFJZkNRM1JoV2VmUUF1VmZTTXZPZGhXeVNoOUZ4bGRYNWRJLXdvSldOUjZWNlE1MmZ1ZDVsWDFQalY0TVVaeXdILWZZemZWZG1oMEEzVzN0Wk5GcHAyMXlENHlHSVE1V0JJMHMxRmg1IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDoyNS45Mzk4OTcifX0=','2020-02-24 06:00:26.941058'),('c0wx0018onlag95eq22lzwt0ofh7vm77','ZTFiMzgzZWMyZmI4ZWYyM2E0ZGRhZGYxOGI0ZWI3MTFiMzUxNDdhNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3RFhRb3NYYUZXVm5vRjdKcnV3OVBJT0h3V1lsSjB5MkdWb2MweERUTm1sM1BySDBCQmFfNEMzVHFyeU5nRjJyd2NsaElTT2VYbkJDSU5Pc0FWdGNMY0N6Zjg2RHI0c2tFQzZCcVg0ZFNocTVtUUI4c08ydUx1YXkycmlGcmciLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA1OjAwOjE1Ljk1MzM3MCJ9fQ==','2020-02-16 04:00:16.956710'),('c1cu5irfg6mwstgnus1t3ou7ivanks7h','ODM5Yzk4N2YxMmZkYmFiOTJhMzkwYzI2ZDJkNTczNDY0NDQzNTUxZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4Z0kzaDM0RjhWb01BR1RYc1ZBN1pZMGJGWGcyUmVxRGRkT2FiQ0pxbW5Ka2lhVWt2WkRnOTdFaEd6TDkweFlyYUpZTVJ3elFUMTZiOG0tNnF0RUREQmZyQ1pCTWhkcERHaVNXaldhZjFEbkw2aHdCQjZwd2hoWDVJT2ZwLVVGIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMzo1NS44NjQ3ODEifX0=','2020-02-23 07:13:56.868313'),('c1tc8vt7r645o8yk1t4e5v64fjmsvovd','NDk4NTRhMTk2YWU5ZGVjY2FjMmQzMjM0NDZmMGFmMDEyNjMxMzcwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3U28yY3RLMVJWY20wU3RKMVNQSEhPMjBCT043djhJQW9rUVM1QXN6N2ZORlFYUlozc1E0bGtEUnM4Y0JHVl8zcWpfM2tEck9RUkFtenNlRG5SclgzT0pid3ltWUxYdXJ5a3puSmFvZURfT0s5UjhIVUh5b2FwTmRWRmhEQkEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjQxLjM2NzcwNyJ9fQ==','2020-02-10 07:40:42.368854'),('c26rd493fu7xyd2bwdsjig577kricu2b','N2VhYjA2YzE1MGJhMThlNzk1NmU2NWQxYzU3ZDVjZDE4OTA4NjJhNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEItQnBkQjdvLWtSY0lTOVotX0hBZG9laVdEY3gwa0F4OERhUS1JNnhaMTYzUWxYMlBCSWVBVXBzaEpGZGc1WmpkWjEzWTFfQks0eUg5OUpWQWdzWVBwWUV3blpsSVZOZThCZnBwODk0eEdCWDI2RUpzS3VtYm1vNmlQWXpLbG8iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjE0LjgxNzU0OCJ9fQ==','2020-01-23 06:50:14.821044'),('c2nf72fb2y7nyt3kovz9p9fqxh9us3g9','ZTVjYWQ1OGQ3NjgzYzRhM2E2YTNiN2Y5MzU2YWQ1NjhhOWYyN2NiNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5TmExaXVNSXh3RExHT3NCN0xubHVNUklXUmVZVERKdjNRYWM1c1lJcXNzRlpSeHdGVmRla0hVRzlCMlJ0WUJFSU5YM2swRGRxV1lSUFFLb0psbkdzX0w3MGxRUTI0cFN6Q1hleUV0SE13b0FlMnplX0w4QXBWVnVmdTA2UmsiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjMzLjY1OTkwNSJ9fQ==','2020-02-17 11:30:34.663398'),('c2nxu0x43gntiow0pi9hfrequq1op0yp','ZDE3YTEzMjE2MDQ0ZGIyMjk1MzFlNDNkZDM2MTRkNGFjYzYzNzdlMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3dHJDM1dnWmh5WE1XNlZGbllJbml3LUYtSVFvVXpyT0N5WktDb1I2cFJZcWppSmRBb0Zjdk5HdnhNWjhnQ1IyUFdyNXd5SWJLcXZsVkpzejlIazJDWVlUUWotY2MxNnZ5ZzRhaXFILWFWOENDRmotN3JyaWUzNzNDMkJTTnciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjA5LjM5MTYxMyJ9fQ==','2020-02-10 08:00:10.395106'),('c4e34imvc6u10g9ojsbgnrhn1d13sp0p','ZGY0NzEzMzBjOGE5NWM2OGRhMmRmMTdjY2VmN2VjZGJiYmQ3MjBhOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4UG11cU9DRmdIdERmSE45MWZWcy1GQlNTRGxUNTN6ZEE4YUZESzRvUzBZYlBKdWVfUDgzNXlIVW9vZUZUZWtrTWZuZ3ZqcXplbVV5V2xQb0VYU1F6VldIcy1nZUpGWUZNODdFeGFRbG1oVExDNUpXMnNpYUxOUEN1VmRSR2ciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjA4LjA2NjQ2OCJ9fQ==','2020-02-06 11:30:09.069851'),('c4i2vjhogolnx7j16xtuf7r34kp2dbok','OTUyMWFmOGExNDBmYTVmZjEyZTI0NzQ0NGJhZmYyY2IxMDRlMGE4OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5RkFZQUNES1F3SW5CbGJjMGJtdnplQThpcmFxd04wSHNXdnpUQ2NZWVdOcW5Va3dJOFhJRVdmTDNDTVJxQmk2b0lzcWRKc05wWl9Qai1NX1p1OFNHX1VXZE9RN0NvNlRqcXp3WUpGYzZuTTlNa1NZa3dOYnE4ck9EenFnQ1RsIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOToyNi43OTEzNTkifX0=','2020-02-26 04:39:27.795239'),('c4o40bhcnnbj2b5izxrk2md2aw95vgze','ZTQxOWUyYTEzMzI5ZDk3YzhmYzQwNTM2NTJlMzhiZjJkMTkzODQ5MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItbW9KRXpBZWNJRkh1M1JlYWFNUzNHcVh0QW9NYk9HMms3ZmpXcG1WdlE1U19KMUxLQm4ybEhSTzZGVFhBX2xEdjJxTk9saDhVSk81MzlQQWY3RHdSVENxUmRYVHYwU2puVXYyLVI3ekFnUXlWV1prcVY0QVBEQmthM1lTRTQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjA0LjUxNDEwOSJ9fQ==','2020-02-17 11:20:05.517680'),('c5qow2a51ms2nfpombectz5f9a9dh2nm','NTM1YTU3MzRhN2M3Y2U4YmE2OTg3YTJiNzI1YmVkMzhhYjg0OTYxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJfOXl5ZFlpWFdJajBCbmJKWEVGREJJa2Q4ZWNWQlV6VHRkbXNUVEI1ejVXZHlHSllzZmJ2VWxZalJVdGdPUDkwSlVuR3FTNHJoNzhIdWFEdEV2dkRRM1Z5aVBoVGRZZVZuVFRMOExweEdUOEJ6Qk1ZSmQ2UGZzRXRZQzJHbGMiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjQxLjQ3OTIzNSJ9fQ==','2020-01-23 05:26:41.482701'),('c7jtf2zx19dal2bgftvznmeu8e0j2hnm','MWU3Zjk2YTA5NzE1NDQ1YzJkYTFlODdmYjFkYTIwYmU5NWNmY2Q4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItVUNTckhHODNKRFkwb2Y1NjAzMXZ3bHljcTc4WGdPX2NvMDk2ZUhlVGw0MVgwTWhQNmdhZXpORklPRVZ0OS00dEtQZDN4a09OVEM2dDBqQjEzNFI0cG1LZGdIVVduSHluZ1JsbnNHN0VOUkhVbVAyT255TDRjdHlXc3dZWjU0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDozOC4yMTUzNTkifX0=','2020-02-26 05:00:39.219365'),('c9fcbczts3n1ewwctgprcp01escawimf','ZmM4MWRhNTBjMTliOTY0MTUzM2IxODZlOTZiNzFlMmJhZmE2NDk0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzQVBmaWVNQWRpakJxeFczMlRqZzdhbm91SVVkeHJ2V3c4WVV6MFhuR1R5QjMzMXpwei05WHk4U1FlTmZvTVlzWEJwZGdoSk0zSzVHdGVaWkNxQlMyNDFZTURuOWE1djVaT2RTWVN6YUlhMWdxa2l3SkJrWTl3dm9LTGZ6TDAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjUwLjg4NTk1MyJ9fQ==','2020-02-06 11:50:51.891663'),('c9rigtegszi3pv9dx60cfpgcnwrwbvn2','Mzk5ZTUzYjAyZTAxYWQ3YWZmZjAyYjQ0MDczY2IzYmEzYWU0NGY2Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3NGdvczhWdHpwQkdCQXdxNlFjN0k3VmZ6SjMxRWk5bnRSa3V2YTN5c256ekNHZ0k0bEN2TlAyV0tmQTNnWEU2X3VBMVhDUjU0NzNseXFjSFVDVHRTbVAzcU1ENVBaZkd2ZnNQa1JDbFlJUTJCT21JN2Q5N0x3OWU3WGJJX0RXIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowMToyNi4yODc2NzcifX0=','2020-02-26 07:01:27.291141'),('cadamdevh5hd50iz7cflcu5ku5zn9att','N2ZkNDFiMjFlMzAwOWEzYzdjYWNjY2YwMmU0N2RlMjg4MDJmYmY2MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItVHBnc2gxTWpIODNYMHM0eDRzaGtlZ25PN3JzRlZPRG9SNFlYbHMtaHVhRENTbndmNGhOY3l3bEpNNmc1X3lKRFpkLXdoUXBZcUpfR1RhU25pS3plRzNiWUR1bXFSY3NtaGl2a1hjZkVhVGtuMGg0WEdsMzZEZndKSHM4OW8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjA4LjM0MDY5NSJ9fQ==','2020-02-17 12:00:09.344209'),('cc1vaslnpzzmvos6dqc8s0kr73qorfcw','N2YwODY1ZWYwZDgyMTJkMWQ2YjEwNzIxNjc4ZjE5MjQ1OTYyZjFiZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6THVLdm5QNHlqd1BLR2VsWWluNDBZOGxVU2o1WFRMNmZWRFE0LU1tQWNENFoyRU15RTVzUmNaZUh0blo0V0NWN3JNdFB2MktrMzJ3NXVLZ2pKQmZmUEJsQVRmVHBDQlJmMXlHTk0wVFotX0cwTmN5UklkNF92R1VySTlTU0FRIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MzowMi44ODE3MDcifX0=','2020-02-27 07:43:03.885126'),('cf2zlt0uyg2hy4jzeazaem54841xl4c4','ZTQzYmI5OWY0NDY1OThkNzg4OWNmMTVkODA0MTM2ZjQ1ZmYzNmY1ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItWnBsbkdkc19TbHBJV2l6Vy1aNDdfa0t0ckQ2VmlrTUEwQVJqc1QyYk9WZTZVLUNqQlJxNzQ1VV9YMXIzSmZCUHhzM2xMM0NfNXRBeXppUXdFTEV3Y3NrZGt6ZXhiZzBxQ3Ayak1LN2d2UFFmRFlDWTZ3RndBcWlFQWRHNUEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjQxLjA0MTg5MiJ9fQ==','2020-02-06 11:50:42.045382'),('ch6pofe5akrxlxcjwsbal97878agaikh','MWVmYTAzZGM1YjE3MWE0ZmQ3OTYyZThiZTE3MWI2NDA1Njc0ZmRjYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItLXI0SWVMY1hFOTJlRzBqLVFWOFlQSTZoVmJ4cHZIbVNTOERWY1RPamx2M1dGTWRUa2tEaVU4UHh6R0FjUmNpR1RoUUkxcDluYk5rZnBsVzJmVEFtUWlwZ3ltR0JodFFsR08wNGMxNF9pcnRTdlBJMU9iUHRQejMzWlhEUTQiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjI3LjcxODkzNCJ9fQ==','2020-02-20 05:59:28.722574'),('cjptmshi0ggdhw49m6vtsx0irfnlpizr','YWI0Yzk2MDhmM2EyY2Q0NDM4ZjU2MWIxMWRhM2FlNjJkZGM2YTJlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXVkVFemE4bmVNR0I3amRNbURDaXE4Q245N3JBQndnVmV1SFZwMlY0R194V09zeVVjaS1OT3NtcDMwMm9CYTF4SGtMQWgxVk1lT0kyMlpPSUVkNUN5d1B0X0lHVG9lU2lBQkF1QzZBYjQwRTBXTXNlMU9tRVRiQkR4TTBQRFJVaVVlbnhpdGZlTlFWUEtRV1hQZ3RQblpGeElWR1hlVmpBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMzo1MS4zMDUwMTMifX0=','2020-03-10 06:13:52.308549'),('cktpy45iajgovrzbg8yn7lmj8u8s48hj','ZTZhOTRiMjViNDkyMDc0Y2Q5YWRiZWQ2YjMzNTBhMzE3MjM2Nzk4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ3bXNYUFhwZEhpQ3dJLVRKdEg1Z3FUN01TZTJhMkhDeFBIWDdSRVdKcU5KRzUwN1lKRy05RWFNZHJ0RVVZZ1FJcUFaa01KN3JDUVVtWDdTVjNvSE5KcHYtSmtPU3VyNmlaQ0oxZmZIblFlSkltM1VZMW9vVW9HUDZtVV9XUEkiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEyOjQ2Ljc1Njg1OCJ9fQ==','2020-01-22 06:12:46.760489'),('cmipfbp1ktdx5twxbn6i2dx7ry1o2sk0','ZTI5NmIwYjY3OGFiYjUzM2QzNmI2N2IzZDQ1Nzc3M2QxYzRmZmZhOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0anlUSVhxMkZDMHBiQ3VTNWo5T05MaWdUekN6MlN0MHVzRE1wTjN2SUlXSE54RkdBTkxUSFZac2JORkFnWm00Q2RtN1ZQanRsVExUQWlwdGJwVUlHVk9vTnZaWWRNbjRJdDFqUkJDUVk3MmIxcS1ydmxEc21QMTBDNndYSm8iLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjQyLjIxNDg2MSJ9fQ==','2020-02-10 08:00:43.218340'),('cmmyoe5wpjthq4pvwx27w9dmp5g0tnc5','NGQ0ODRkOWUyNGIwODQ1MjViMWUzYWJhMDg2MDZkMWVjYTQ3NjQ4Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0LTZzLUg1aElraTZPemJLaWctOWNLa1NKZlJ2Zm56V1pjbjk1NTBZbU1iRmZKVjRJRWxvT2h2cHZmVTRqU0FwbmJyaGR6RW9pcUNkUmpZSWxMX3R6MW51QjIwUVhNSlZaWktMVFNtZ2V1WWVxTG1GMnZQNkZ3bFlWdDRkWjgiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjM1LjI0MjQ3NCJ9fQ==','2020-01-23 06:50:35.243933'),('cn4xhj22iyppwojb0oavftqwd7w9t8su','YzI0YWM4YjlkYmViOTU2MDM5MWUwMDg5MWJlZTg2OTJjZjc2YWRjMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3elNYMzgtMWtVdXcwRno5WjhnSVBPMHNmQ3pEVFBnb05RSEVkM1NUaV9wcW42WURBWlRZV2Q2WFdmMFBlXy1CWkcwVVNIakFnVG9lY1QtLVFtYmx5Zkg3b1cwMFpCcUtyei1rdUZNdGJBMlNRLV9WX3Z4RE9JYmI3S1JXWjgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjUwLjUyMTA1NiJ9fQ==','2020-02-06 11:23:51.524312'),('co67h0194vs8l7q8lil9qmm9p8brljpb','Yzc4MmUyMjJmNDBhZjFiMjcyNjE0MjY3YmJjZDNkZWEwOGY0YzU5MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyc2xkMWRuY1dlMDFnRElYSUR0MjFPNEh5UGRNTmxjZzU2UTVRR0NzQ3hqcU1fX0JOWTBGTXFMbnNzTG5BTWdnZ3cwYk81MkJ6VnRtLUtkY281RVFWYkt5NWp5SnlOWlAwWGxna0I2SEVtMVNsemQyeXE0dXdxazRBWkxMclkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjQwLjE5NjA1OCJ9fQ==','2020-02-17 12:30:41.199624'),('cqttwnj3lmsq8fonxb85xtgce53vg43i','YzY2MTQzNWJhMTg2MjNmMTM0NDNmZWUwNWRjNGY5NWU0OTNjODNiYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6YzFabEZnMHlqTEdieFBlZEZqSjlwbEtOTm01NHprbmkydnUwd181dXRNTE9XSlZmRDRFVmV5ZERhZ2dlakpxWl9tTjBrUmQ1SlhZTDBfSUNxbk1JM0VpdUw2Wk42d3l2amttS1l2d2d1djBENXp1YksyVW5oMmZYMnZwTzgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA2OjQ0LjM0NDAwMiJ9fQ==','2020-02-06 12:06:45.351637'),('cqu7bj0denm84n3mk71zz0ijzpf44e4x','NzQwN2Y0YjdkNTI0MzQ3NTc0NzU4ZjAwOTdiMmY4YzliMGU0ZjQxMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwOXI1M25idnJIZG1UQlZITnQxdUZjdFNyY2FWVk9YTzJ4eUNfNTMzdXBpWFNvT1psRkthaldYd2tCdFYxTGFEY0NTOFFfNGc1UmE0N2JHd2pHdW5KY055aWZoUEQycTJRSnRlRmRPNkkzRHFwX0dYSTJwMnNYazlSckU3bFUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjMzLjE1MDg3MCJ9fQ==','2020-02-06 12:05:34.154242'),('crz2zxx99j2loa5ilw1dclnt9he03x9v','M2MyOWY3NmYxMGY5ZjgxZTQ2Yzc1MzllODBjZjUwODI4OTVhYWFjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItdXlQcjdSdzFXbjFTMTBEZWJQWElya2FmOS1ha0Y5dExjOEJ6dloyRmZWXy0zNzVtUm9KLWY0eVEwV0ViV1hFU1JoM0dlbFV0UDB1Wmk4Ukl2UEdpQVdvRmNKN3NzU1c3M0JxUnJLX3BmSS03cThYSDNtblowNHB0dXRHQVkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjQ4LjgxMzY4OCJ9fQ==','2020-02-17 12:30:49.817137'),('csnu5p5xzlrfzowlj6ws5kmanh8aagdi','NmRkOGZhMjNjZTM5Mzg2MDczY2ExOTBlYzFmODcyYmM4NTU3ZWNkZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2TG1Ib0I0THJWWTB3QkJUbDl6NVFvVzA3NjVIa2kxNC11a2tkLXJtWGhTdENEbHJmaExGWlZMRldjV1Nwb2VTZHBnRHlDcWlnU3BXT0xFaC05NVpXdENRNGNRekxNWXpNZFU2RFZkQm9TTkpUN2dJVHJXOHBpV3MtTkdsZHMiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjQ2LjAxMjU3NyJ9fQ==','2020-01-27 05:46:46.015946'),('ctz3dl4etgge1yx6xzn399w71f7cc57p','ZjJmNzliMTg5OTkyZWVlNmFmNjNiNTJhZWQ0OWMxOGRlNTk4ZGVlOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Iwb0Y1SDQ3bTIxdjZVckIyUGR1OFZLU0JKWURmVlR5TGxhV19iS0dTS1BRZVFFNW92bFkyeDloeTZuSWMtOHNRYjN2SmlxQnF2ci1pTEgyVXozUFVXUWtoSXlhWWFjTHdXTmhhLVBBNXNyMXRQTE1feElfYnE3T1plMWl1OFkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjA4LjE1NjEzNSJ9fQ==','2020-02-10 07:50:09.159521'),('cvwwnfypp1rifu33ao3w97a3uy974gds','MGQ3MzI3MDE4ZGM0ZWJmNDE2NDEwNGY5OTc2N2RlMDQ0OGVmNWQ0ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyTEx2OHhrZTBhbFlMRUJHei1pdWdLNTRWN0dsRnU3Z2Q5SEtDQktHV0o5U0hjUm5LTGZYWVhpUXFfY1ljNmRsTjlOalh3dkdHanJnV3VzTWhrcC0zSEJDZ0lNUjNkaWxmb05uNHdiMTJtYkhTcXVERURtWEk2RlFucEMzWTQiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjQ5LjU4ODkzMyJ9fQ==','2020-02-13 07:40:50.592518'),('cwjlsk91mo13m05zyun1pz1f428k08md','ZWI1MGQ0MGM5YjFlN2EwZDExNjU0ODU5NmVlNzg0YmI3Nzc5ZmQ3NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxZEtyVmc5LXpKOWFEM0ZWYTdlOWVHTWloNzAzWnZOUDBXcnJMWFpJREw0N3N4aGg0WDdRb0RrRDZnLVEzNXR1UmY5NmlKbnVlYXdVYkdyWlBqR3pZalBuellGVGl5azdJVXVmUURMTEExbWdqcGYySy1qQXMzSnBTTzI3b0EiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjEyOjIwLjk2NzIxMSJ9fQ==','2020-02-06 12:12:21.970833'),('cwxl13o89qvcxoy46bghf5zg7dnzt2yt','ZTRmYzlmMGYzMzMzOTg3M2Q2Zjk4ZTJkM2E0YmJhMTRiZmNiNzFlZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOUI1WXY2X2t5V0hlRnRXU0V1MUxvUzE1Q1dKWEZtS3dMSUNSQm9CUmZLM21ydnhoQmxOQzQ0T1BONFNKalBJYmJ5d2VEWjJ6TFBxRDdoNXhrTXk4Qmx5OWtrc3hNYjlmUlFJWXBaSjYyYVpaMmhNektDaXk4dU5ZMmVEc1B2NW8iLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjMwOjA5LjQxNzk0NCJ9fQ==','2020-02-20 07:30:10.421375'),('cyq85r3d6mnuld45kjo8ipz2dzui9l2b','ZjE5NjM3YmU0NzcwOWFjMjI4OGFlYjcwMDc5OTc1N2UzMTU4MWU5NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0R0FHdGNNZmpiOWlxa1VuWkNraDZPTHdlTDVYZWtNMFM5SzAzekd0Zmc5WTNqSmpUUUhzd1hfU3RaM2FLS3A1aDdSWFpobmhnSWs4Q2JMS0NjUTVXOHZGcFZDWDhHN3F6LVU2b2dIaUxiUTRKOVNYLUYzMXg5R1JYQkh3Z1kiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjA4LjgyMzg2MyJ9fQ==','2020-02-13 07:41:09.827525'),('d0xclrim5pu21sqi9g69kko80umzp2kr','Zjg3MzExZDQ1MmViMzM5NmYzYzRhMzQzOTBjNWIyZDI0NWVmMTFiYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2VUZIcGJ0cllYOVZBazF0SFN0Z3I4aG0xcmlpTEI1YmdqU1JzUnl3aFBydkFkOUk3Sm1Tc3dEaXhzcTJjeVVpYWdrdlBsampmWXVPbzRYMjdtT2pPd3RzMnB6dVhrZTkxVElBeW1Va3h5aW1HU1hiVm9nWHQ0YWpqVWhQdmE3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxNzoxNi4xNjAyODEifX0=','2020-02-25 07:17:17.163892'),('d1lm74s3dk2slhf92wb0z2yukb1pw954','YzU1MTlkYTczZWVlNWM1M2I5YWI2NjcxYWQ2M2E1YzQyYWQwZDAwMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5Mi1aSlRLQWJPMzRTVEI3eXpXLS01Mi1wam11YjlMUUlsdGdhRlBfb3dyWjlhV1E3eElWQks0N21Jcjd6R0FhRXZzQUJUcC01dV83dFR6b3k2YlpUMWFpcm5aVVk4WVI0ekRyYnp5STAwVHlQWU9UXzNHRjE5bXlWWFl4aVUiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjE0LjE0MTg5MiJ9fQ==','2020-02-10 08:10:15.145436'),('d1t7awt2u2au12q51iwgluwhwat97kur','YWJmOGIxMWYxYTZhNGU1YzE1OTBmMzEwMzI4NDYwMzJhMjRiNmNkNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0RV9ZYm9rSGVOM2hPa1EyZnppamN5TEQxSnE0bTFmRkhvdkx0b3MzTGRZRm9jVmNXRk5EN0RQdXV5VkVsYUJ3d2ZFMHVGVmxYVGZIQ0twSDNJWUw5MmQtX2M5N3YwX21nNFAzbW4zSmxrWFZBT2xfRi1mVmg5dWRpdEVnSzAiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA3OjAwOjAxLjIwODIzMSJ9fQ==','2020-02-20 06:00:02.211831'),('d2xbexoz95y8mogllg2qbxnuqqx222bh','NDVjYzk3OGQzOWI0YmM3OTkzYzRmNDBkNzZiN2FkZTgzYTQ5NmQ3ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5V1lCMjB2VDFYa2kzWmtUdHRyQUg5OEZzZ0hob2JVUkFsZERzMzUtQ3ZZRGNPVEhzZnZFUDVXZkNpUGxGYm1icEJmMk5kM3dzZm5ZVHpTVTRkMFdyLTVndHlyZjdoRkphTlZlaTlfMUl0UnlaNGRXeEo0RHdfU01NYllZbmMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjE4LjYxNDU5MSJ9fQ==','2020-02-06 11:23:19.615917'),('d3q9ku5hfep420v1ly25x60fh9my3vss','ZTY0OWNmZmI2N2VhM2ZlOGYzOGZlYzA2NzQ5OTUzMzUwYjliMDcwYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3di1sR2hqTWhzMWk3QlRrOE1EeGhob2ZrRXMyQUMydGlQLV9MTmI3RFJ5OVhPM1Vna3BOeGlHU1pUeWZZNUJKSFVEY0NDUzhyendlSHFJSWdIc1VsVkZqYTZEZ3hhLW95UFp0dVNkRHJTT2kwNDhrVjZqWjdjTUxCeVh0aTAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjI3LjU2MjA2OSJ9fQ==','2020-02-17 11:40:28.563787'),('d4ggv52rb2g250kkum2vi044aqp6ffra','OTE3YTRlZDliNjI1NzI3OTFmZjNmMWIyY2ZhNmI4ODhlNjdjYTI5ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVbkpxeldoQ0Y0Q2FVNDAyblBETkdQQUdxU1loTHlsUmlKbVR3bkVLR2Fva19nOUVqM3EtVFF1bEgwdEFvRzJpYkxaY2I1eTlZMW9oaHptbHZ2UWs1aW5PLTNnOTVnejdrRzVTQ2Vnd3AyVFJYWDlhRk9DNjBkSmQwSFF6Y0VNVkptQTltSmZFVWFUeFgwVG9DUkl1SXQ4Q1dkcmFnWkdRIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NjozOC4zMzQyNzEifX0=','2020-03-16 07:46:39.337436'),('d4gzvuol1xlf31cph0d0uns01q2ih5qh','ZWEyNWQxOTNmMGYwODNhOTEzMWU3MTU3Zjk5ZGZmMzVjMTgzZWMyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfRVJWTzMzdVI2UXBLZFpXLUxGVjRoZFFMd1lTWjFGcE9WLURLUThzaEV1NTBPOUpIZFFxWUtGUlgtNUJIbWNhQ0RZYWZWTkVYYmljajVCNUYtenhaSWM2TndOMkcyQmNYQnhvd3RjYmo2WTlybWlnQmNsc0tnUXJiTzBveWpwIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMDoxNS40NzM3ODYifX0=','2020-02-23 07:10:16.477303'),('d6l6yxhl10t3787kut1yn3o7rafc9qnd','Y2MxNDQyZWU2ZDBiNTMyN2VhNjI1MTUyODY0ODljNTUxMjZiNGY0ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Itd2VRT0lveW1lUWN4a1liTVM4TjNDb3A3ZGxJTVc3WVZlOXdvODNHeVdYSF95ZUhYQXRLSWNqbXNnZzlmTTRSZ0EwLUlpSHJyTUFhSy1BWS1fOGNBa3ZMUnJjSXpESV9DZHJkdmwwa01ZQ3A3aUlnbVQ4eDVibUhmdXpWa0kiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjQyLjA2NzA1OSJ9fQ==','2020-02-09 06:17:43.070514'),('d6ru2pp3gv01mu9xnuxrxtxvwffwj4uy','NWI2ZjZmNzg3NTAxNjgzY2I0NjYxYWQzZjU0ZWFjYjQ5YmJlOGE5Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3WktwQnFRYnlaZklIR294ZVRqb1RncmliY0s0N0VCTXN3OERnTG9rWnQzQTJMdktyUEFjdTU2VndTU3gwYWY0TW9udGZSUkFIMHJoS01vNEk1S2RYNVpzMTYxN2loZUNQei1fVG9EaDRnTE5Lb0hsTFpwU1o4b1U3TDZTVjAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjIxLjI3MjgwOCJ9fQ==','2020-02-17 12:00:22.274019'),('d78649p5xhih726zr0w81gei81xi6az4','MDQ2NDFkZWYyZmRmZDhkZTgzMzgzYWU2NTM3ZmIzNTk4NWEyMjc2MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1UDY4YVhfU0xHYWM1aDBTQmw5NXA3QTlVaVBIZTZMcGFpUW4wSHUyMGlVWFlrT1Y4c3dJZ1NYelBmbVozRkllc05Ub2tKS3ljRzdCc01RMGRzejdnQXF5OUtoRFV0aDJyWFVKZnZkaGpDcXMwUFpWNXAtdWVIclF5ZTFFakkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjM5Ljc1MjU2MiJ9fQ==','2020-02-06 12:20:40.755991'),('d7iwvmgokp9z443evf8hlwm5n650aq16','M2U1MTA5ZTIzNmMxZWY1OWJiN2YxNzUyMmJmNTA4MzYzZmYxODk2YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyRWhLbThIWXNwNVFBN0x1Vjd5NWR2MEZVZGxjdFVJWWV1R2tEYWdLYjRwbE5FVjRLbU50cm9obWNXcmk5VTZ0aHpkX2pUcUo1Tm1HUmlTM2s3N0ptQkc4TF9RQ2FxWm04aDNXaXJTdl9nZUU0YXhFSTJLLWhVMmpRZjlXc0kiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQwOjA4LjY5Njk1OSJ9fQ==','2020-02-18 05:40:09.700874'),('d8rvit2nl0v8cvoh9hk3t2j02qx0jp9q','N2Q4Y2ZjYmIyMTM2Y2Q3MWIyYTk0OTMwNzFmNzNmZDhlMTFiNDI1NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUI0d3ZPTXRPT3VkaVlGekJfcHhJa05tNnplb054MUN0WnBIb09LdFd0QzFmZS1JTG8wMUNPSS1fbnNZc283dGl4aUU4ejVOMFlNWmdXb2VwTDZpdnlTQ08xdGQwZzhPTjdtUGJyRG1udFZ1UE44Z1BLaWtTSERXQU1xcUlXdyIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MjcuNzA1OTY0In19','2020-01-29 06:18:28.709467'),('d9yonfin6d7ov6vc3uejvrsnsaqtxqdh','Yzc0YmU2NTIwMjY5NDM0MTY4YTEwMjg3NjliYTg2ZGU0ZmY1NDMxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItWXdjTGpWRGNJbjhSM0w1bzRLNl8zOXNhbTB1cnItaWFkenBwM08zMWJpMFoydU1raDFTRmNWN0J2YmE5NG1tYUhfRTlGOGNIVGF5SENXbUR0RHpwYzlqaHFBR0d5b05Cd3g4bmwzaVJvN28xb3dIelZ4Z2F3REVydlVIZHlrIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0NToyNi45ODQ3MzAifX0=','2020-02-24 05:45:27.988306'),('daley0m20uxc3w04u7v4t1omvadeottx','NjA0NTBjZGM5MTAyZWJhMGM2NjlmMzZlZDdhNmU0MTE1ZjY3NzNjZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfY3prbkRwSkQxaGp5blZoRDVBUEFqOUYyQUVYRXA3VGhCaldhamNCQXFFSGhPMG13OGRGdG9DOVlucmctcERURUxFNzQ1M0VIZnBmY1ZPdW9abkhEZ01QdENLdUd6VVBwZ0lvNG9hLThrUHdQa2pwdXhZcHJVYTdIT2NmNDAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjQyLjQ3NzE0OSJ9fQ==','2020-02-17 12:20:43.480516'),('dbawpwevkzqhbytn0ocb0cw1x9c4dmei','MjU3YzhjZGMzZDdkNzZmNWI2YWUyMDU0MWRkNjBlZTkyZDM2NWZjYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzZ25yUHQ5b0xMM1FNU1JuLVRnRGhoYTVHa3pzbnNLWG8wWXcySzVhNkhmU2pmVkozaGZTRnVqNXBVRXJKYzNmT3NsUmZBZl91YzkxMm1ZN0dFbjRTZFNtUGx1SndVcGtWRlQ5RUhHVTJoV2JZS0tfREhNeEtCRDU2bnpGU0JhIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjo0Mi42NzAyNDEifX0=','2020-02-25 07:12:43.674180'),('dbld654aqxyjl740viwcfpthhj1iia2d','ODcxYzQyMGQ0ZWEwY2EyOGM2N2M3OWU1YmYzNDRkYjEwNmIzYzhiMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWQVF0cWdjVzl6UFFsTmN1bS1OdWJWWW1tWnZ0X1luZXlyUkZzbUdfZmh2OHh5aTJFQzlNTGRvUGQ3OU5GVUZFUmRwTFhWRy05SVJQVGJLRDNpQm5scVdTVURtVFhlUFlEcHJ2M1Jlb3JOLWRJbHY3QW5zSEgtTFNkbGpVV2l5dzNzdFNaNmg4bTQ0WllLODRYSDhRQjhoNHRESzJwd2pBIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDozNi45ODgzNDIifX0=','2020-02-23 06:00:37.991794'),('dck8pij68oott8ncwr2i5nii9105nd7s','YjdlOThmOGQ0Y2YxYzk1OTQ3ZTE4Yjk3YzA4MjE0OGRhYTEwNWNhOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYYlQwMVZ2N01BaDd1REdrWmdYMndYTDRLZER3a2wtWF9xMDNBdjhjSWlqWXlETTN3RGtoODFHZnRWOGN0ZnRQMS1NdWRFVDJRVFItMUE1cVFjTXJ5ekpwQWJ6eVA4cFJGNHlHd09Oci1PNmt6bXdtaUF2MkNPWERMUEp2MmRLMEU3dGF3NnEwQklpbmtSeUFudm42ZkdCVHpLcDhSeFJRIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NjoxNS41NTI1ODgifX0=','2020-03-16 07:46:16.556231'),('dd6nzlbrdbvbjl81lbrqg5sf30f75u9c','ZmRiNzM2YjMxNzYzZDY4MWU1YmVhY2NiZjE4ODJmNDZlMTA1MDg4Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5UUUwb2JXNXRQeVFSNkpfZmdvb2VaSUdlYWhLdGxhSGVBSXQ0dDlURVFSbXZ5WlhJeVVDaE93dllZTVVTVmtfMTNyNXpHUkZUQ29SZ2hFVEM2X3hvbDNOYnZtMmd4alhyeWFhWXRQOHpMR0pyM0ZHb0dDdXFsWE9saXZGaFdyIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMToxMS40ODM1NjgifX0=','2020-02-23 07:01:12.487159'),('ddgaurkgvhng1u4y9ao1iwbsb2y6ng67','NWYyZWQ1YjY5ZTUzNjAwNTVjZDk2MDJlZTc0M2Q4NTgzZGQwYTg1Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwUzNWVk02SHBhdGVnQjFkV3dmVUY5R24tNFRYakkyWnN3NGpjZ3Brbng5S3hQeEt5aEk2ZmpzMVlLenh6WEg5Q0ZtSFRQa3RPM0hrNHNDdmVjd29hVHlmcWxENHRSZDRFbVZKaTNsN0dqMW5IWmRuY3VCQWFBOW94ZjlVT0J2IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1Mjo0OS42NDUxMzcifX0=','2020-02-27 07:52:50.650133'),('degtmfo5h6iew9mbzcca56dqn8jzdpy7','YWIxZTg3NTcxMzQ3N2E1YzU3MDRhMzZhMzAwYjY1NmQ4NTBhOWFmZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4d3lDYUFoWERnMFdETjd1RG1HUVBnci1mZE1pY0xZdlZuWWtNeU8wc19zUFRSbnFMX1NqUG1RcXpyWTdmdktzUHc3aHRIVmMxd2JGam1LVG1BNzd5Vnc4S1hVbjNNUnVRWjFhWTY2MlUtXzhCazBETzkwNWp4cDBuTG9MSnRjIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MDo1NC4xMjkzODMifX0=','2020-02-24 05:40:55.132862'),('dglxzun8c1ag0jdemycn68p388s2ltm9','MTIyZWVmMjczZTNmNDFjZDZiMmI2MDM5NjZiOGFlNzAxZTE0MzM3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4UTB3cGczSHp0VXJicWNLWFpOelBlSllLSFlqb2VadGU1NGs4by1tdm9wUmxJelkwR0dCeFlxQlZ1bHlFbTFicmZuUlFDelJpc0hLbzhWUHJMZ0trdlBQMjh0d1VVYWUwVzJZT3laSnY5SFFIQ0xlMmxRcXhnMGgxV24tWkVjIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMzo0MS42MDQwNzkifX0=','2020-02-23 07:23:42.607818'),('dgur7esnm6uclke7qq08obe6zz6gxyux','MjY1YTFhNGUwYjhkNTNkYTY0ZGQ0YWQ2YWU5YWZjMDc2OWIxYmEwNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IySC1Fek13aHRRaW9EeC1BbG9Gc3owTmFvSmFaRmxMUURucEdHMHNzZWtFZ0dxWlFQRHBzLTFCbnZ5X1FuSFRubUJ1TDdVSUNqTWlHa1FNWWd5V3drTi05emxYc05VN0FjRWRRUUR0WUdCb2Q3MVA2a3EzbElSYU92RnhvOGMiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjIxLjAxNjMyMyJ9fQ==','2020-02-13 08:10:22.019795'),('dhmgitpt2bjyv77ass4vixnz8n9o58vo','YmVjYWNmZjZkMzY3M2U1NjBkYzY0Y2FhNjBiMTBjNzY4ZTg1MzgwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I1V3JZSVlZZ1BvZjZTZktiWDV4NzBnVGE1OFJMWFRfM3dsYjlMUEtMM2wwM21QNE03M0l2NjBySDU5ZU9ycTRKeWJlRkVNLTdSQWkxZnMwYzRiV2VueFhvdE9majY5V3FFZXNNXzlVUms2WnBGU1pleS0yZTd6dnY0OWphYmMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjA2LjAxODk2MCJ9fQ==','2020-02-10 07:40:07.022525'),('dhsyj8d6sg36ehu3oh0t4ev5vgnp1cnw','ZGU3ZDQyYjQ3NTg0MGQ3ODA4OTY5NTMyZTgyNjRhM2VlYTRkZGRhMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxNVplQnpKem1Zd1pBM09iQktRcTVNV0QzOGdoRFZ1VE9SdWVQeVBmbUNzNkRlcl9lU19ybUEzWUktLXYzQnVfdTB2NDBKLVlaLWZnd1d2U01ieVFxUDRsNVFsWGVsQ0RvbWsxYUpMYTZFRldOcjVDbWNMb1FCdEZUSTNFSzAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjAzLjU1ODQxNyJ9fQ==','2020-02-17 12:00:04.561806'),('disee8uz3bgxpphj97ftuq7okszaciia','YzcwOTIyNWNmYmZmZTNkNmUxMzBjMjMyZTliZTIxM2NlY2NjMzEwZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3R1RETy02TGI1N3liQ2NUVGZSWl9mZVZDS204T1BrUHJTX0NHUFJ1Q3c2YlVYT1EtbHNlMnR4bGs3cmdhQ05aV3ZSTW02dFJqSzFYMnpHMDY5dE9FMlV0bWhHWmZBTVdYN3JoSWRKVGpBcmdYc3Bnbmx3RjZ5ZHJneUgxTU0iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjQxLjA0MTQ1OCJ9fQ==','2020-02-13 08:00:42.047210'),('djdtal77q9vihb9ztnbawh9z0409dwd0','ZGJlYzJjNDQ5YWVlMmJmYjFmNGNmYjhjNjg2MzliYmMyYzJhYzNmODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ6WEphRHZId3V5TDdPeHhUQ2VNSDJaNWlNdElLODJ3T2p1ZkQydGF3cl80U0VIdWVYZE9kVENRek5fR2ZaakZDRHVUaEdocDJhcXMxRDVVUGdVTVJlSlJrT05zcFVtOUhHemRIRXMwZDZRUEpfNWdObnpFSmoyYkJJYlBlRFEiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjAzLjQ2ODYzNSJ9fQ==','2020-01-28 05:38:04.471951'),('dk1to3oyadjofgsbvjddztregelz705z','Nzg3MDA3OTM3ZDg5MWY3ODg2NmVmNzI2MzgyOWJhY2YyYjA3YTdiNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI3alJ3SUNaUE9RVWhhb3J6dktMdWZXdEFDcHN5NUJIdFo4YUJwbXJ3SWljRWtualVNallfR0ViNVhzVDdjTWFTR2ZyV19ONUZnVFJ1eTNFN1docHhZSEI4VHp5ZDVKdGlhazRrRVl4TW9UcHFNb1NNUDROck5RYlZoRXZBOWciLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjM2LjAzNjE1NSJ9fQ==','2020-01-26 05:47:36.040469'),('dkgg9973k5g16sd7c0c1j9upiueedj6f','ZDNkODViN2Q5NWZjZGE0ZmViMDIyMGJlZDFiOWJlNGQxNzAxN2I4Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3VHl6MWUtMHVKZjFHcUVkZWUtY0xjcmtWa1NLM3NNRUlucDNuTmdVbG40bTRUN3NVdWw1OUN5aXFXS3d6U3hlYUo1Z1FZOHdWWnFXYk9ueHVWX011OXBtMGRmTFZjTFBrWnNtel9ab0pScTBFRzhBQmU1Y2FGbnd6NXhPd00iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjE4Ljg5MzcyMiJ9fQ==','2020-02-17 12:20:19.897448'),('dohl2ismv6evm6swggffilttzcaw8i6r','OGQ4MDU3MmYxYjZlYzMzNWQ1ZjM0NDY5ZjRkMzExMTRlYzNmNWQyYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0SGZNTmJqR3NmMXdWck9GbTdaYUNTQ2tVb1FBQjF4R29GLWFEbFhvM3RvQUpWdzJOdVh4WFVXZmM0MlVYVS0xR2tMTlY0Ny1WNjFCLVBrODVwLVFoc21xSGkxamNObmI0T3E2WHQxdmxlbjU3d2FQMC1JR2ZuMEZpWWVLYkUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjAxLjM5NDI5OSJ9fQ==','2020-02-17 12:10:02.398223'),('dolcbpk34p561tt8qthuydwfjj0x2xlj','ZWU5ZTMyM2YyNDY0NTc4NmIwMGVjOWIyYWFiMTc1NjljMjViNDIxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyalVfa1otQzkzMXM4dWlVa2hpWWVieWNoRjJIVEZOeFlBd0JWd0lZbUtSd2h4aV9zOGtGbG4tTHNsanhldzRtcjBJTDY4azRCTFFEVnp4TkpiSUd5NGxuSWJYNlZ0el9VSWJWdTlfaDB4MkxOTjdpS3RvNUtpck1HX091cUIxb0xZWFRFZkRIQlcwa005RUNuWVR3NUxoQ0cwXy1CbXh3IiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0Mjo1Ny42NjYyOTEifX0=','2020-05-18 06:42:58.669631'),('dq5rv9adfuipt1f8r751s4tqrpvgq55c','ZjJlMWI4MTZjYmRlNjMxMThmNGNlMTliYjhkMDkzYTI1ZWE3MzMxNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxcjFGOG1LUGItcnVnWGZyVEw2ZldYdUVoeGxQbGprY1FIaTZUWkEwaU5nVlNyTldEazBUQlczbHBuWDE0Tk1hWEQyZlZuSlA2VlBtY21IWHlXRS1vek9WMVZ5dEhucE82Q3JBY19kcWlDS2lOLVBsZGh2WGlUdlRrSzVIWTAiLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjQ5OjU0LjA1NjI2MiJ9fQ==','2020-01-21 05:49:54.061252'),('dt9hj825vox7ylki8y2rkpc0cvcxttvo','MzVhNDM5YTE5YjMxMDNhY2EzN2MxNjYyNWMwNjBmZjgwNDAxMjE3MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1b1pBWjJZLUJ2YmZBV0hYRTFMZUFHUHJVQnotU1dRTzF6dkJJQy1PR1hlQlZsY0t2S0JDUUxXa29Id2ZjNlBHYUYtc3ptUkk2bXAxbHF3Rnd6Ti1Zdnp3aFk2SHVQdmhzS3A0cXJEUkNsTFJ2VnM0ZWFoc3k0ZFJNQVR5OXMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjQ0LjgwMDk0NiJ9fQ==','2020-02-06 12:20:45.804455'),('dthbw1uzfhj1qty0ngc0ud4q1gkmgyna','ZTZlMTM1OWE4OTZhOThhNmRjOGJkZDQwOGMzOWQxZDQxZmQ0MTczNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IySmJLTXp0VEU3VjBjSUxrNi02SkFuMDQwZWpiR3B3MGRMTWpUX3VMbmNMRTdPSUZSZ24yN29VZFd5UXoyT0dsR18wa014cm40NkxjSDhFZ2xvd3Z3bXRWTGg1MlNfcVJFOHpqZms5a2p5YVUwUzRpdXYyUDlGOHJxNGxjd0EiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjIxLjM5NDQ3OCJ9fQ==','2020-02-13 08:00:22.397891'),('duexo8p4hyh71bxoxw9b1i6bzzo23sly','NWRiZGYyYzU1MmEzNjI2ZmU4MmFiOWQzNDFlOTk5MzQ0MjJmMDUxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0a21IQmZaaGdHcTlBdVJZdV9xbEZoV3VKRUkzb3JkMDdfMHI4R0R1ZElWZ2F0cE4ySWlWemVNSGpINTVJMWdxQ1ZnZDRQWW5JT2taN01tVnRud2UwTWhNVTBEUW5sU1hMNllPZDdLb0tPR1htRzNWclVSNG43T2doT1ZXYmMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjA0LjE5Mzg3MiJ9fQ==','2020-02-17 12:10:05.197452'),('duz2ko29vsuu1uzc6hk95dpiomvj5su9','ZjkwMDRhMzAxOGQ3ZjUxZWE2YTdiZmI3YTIxNDQ5YjU3MzU2NzBkODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItVHNTZnhCalJ5Z1JmQ010LWZSN2lYNmNNX2c3YVJNcjNNRVQwcVBEamEtTjZZSm1qM3YwMk41MU8wSGRvQUJNWGVPZl9ESXBkd1RXTk5DYThVLTAtMmhvUnB0aTRMXzNkdEIxeFluMGdGWi1qcGlsdnBpajJLelA0a2NEYXMiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjQyLjAzMDE1MCJ9fQ==','2020-02-03 06:17:43.031818'),('dv2l2kqc9xe06mhv590jk009za2dkkal','OWM1NGU4ZTQyZGY1YzQ5OGIxMjEzZjdiZWUzZDgyNWRlZmRhNWNiNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIwZnQ3Z2ZmeEhvT2RrdkJLenJQWUY5RHVxd1FpNjhsazJmM2luNFFtb0lkN3lLaWE4SERsSWZfdldWc3RJUnVlX2ZfZ0pjR0gtVHZveXZKakR4N3hpX0F2OE55elBVOUdIWk5rWmdZVENJLTdPeXp2SmJYTHR5U0dZQ0J6alEiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjM2Ljk2MjMwOSJ9fQ==','2020-01-27 05:46:36.965849'),('dvuewjcomm3hasrykm5a6iv3vefllub1','MTIzN2Y3ZDI4MGE4MmYzZGIxMGFkOTI2MWVlYjZkYzA2NjViMjM5Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYbnB3SXpzTXNMZTdQOFlUdVdWTjA1d2Vqb3NNdmJaaXNMbXJ1aEdnTWZYT0FFV2ZZUE1VekM4bXhiTG5jbmRCQ3ZDRl9aaTFTbWVoSm13SnVocDVTUEhVRDJtZi1jNEtsX1dJd1MtUU45d1dUTnExeGY2YU1IS3JzYUEzOUpSSUFKYWs4RDJjZnR1QzdMR1V2dmdLU0l3UV9MalgwMDBRIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzozOC41ODkwNTUifX0=','2020-03-11 10:33:39.593035'),('dx28nizpiiehiwwv19zt12k1h7unuy2a','Yzc5YjNhOTQ5N2JiYjlhZDdkNGY2YzJmYTM5NDU4NDQwZGQ4MTcwYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ3NjBkbTYzNHc4dkRNOGl4aEFJbnl0dUN0T3RvX1p5Tms5ckprT2ljcS1mWVUzLVQ3aFFHN2RWMUxMOEhESGpHLVNpUjNEQUNra0dzSW1aR3UwN3RUS0JLWmtVZ3dCeVZmTDRjWWxKVEk5am9FY0RmX3F3d09nRm82VlpweVUiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA4OjEwLjIwNTY4MCJ9fQ==','2020-01-23 07:08:10.212755'),('dxjjsfz0tafdut77kog9m0es7a9ichj5','NTE5ZjY2M2JhMzM0ODQxOTU1NTg5MzRiYjE4NWIwMmY1YzRiYmYyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3UmFSTUY2VTZnZXE5TFBmS3ItbnBjWFlId3QtaDNLWWRXY0NhWHJpREhFWi1WR3NLSUFKUVhFd0wxMG84am9Ccnl5Z2JBN3c5V0gzcFZEX3VhbDN5UzhJM3BqVm1XRWs2cThSYkFSTm1EOGRKNjNZeGRYV3cweng2VU5nX0UiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ3OjMzLjMzODczMCJ9fQ==','2020-02-18 05:47:34.342358'),('dxwr48zdkx5f6ekreejf7tm38rdkpbnw','N2NiNzQzYTY2ODExNWJmNjU3NGQzOWNmNzNhM2JiYzA3NGE0NzllYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItck1QUHJxSTZDY05RM1l4LWd5NEN1OThmUjFjcXVQSHNyNVJ3M3hGV1ZISG1Fc1NXZkd0X2Z3QktyTUNoTEZROTVaWXJGT051cGhCR093X2FEU0stS3JTSEVhcHZPeXE1dXltM3c0dlNNamJZbHpGZmRCaml6NmZHdEE1ODAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjUyLjUyODA0NiJ9fQ==','2020-02-06 11:23:53.531664'),('dznctxnaz5a4c8bmn0cxhmcwytw7l5ch','NGYxZjJiOTgyNTQ4ZWZmNmI4YTkyMWMwNmJhMjhlMTRhODEwOTg2NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0J4bHpPMFdoalIxVmhiQzRBNGc0R2pBRy1tTms1LUFOQVg2alZuS0x5OWhtSmFIYlBxdU9TUG1lU3ktR2FZV3hLX3hxdFVvNVE4anljVnZ3d3NSSklBMTE5bWVwR1dxcTcwd3VlcE1Rd2RaX2tvWHRhZFQyVFR4N2taU0RXeFAzIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMzoyNC41ODkzNDUifX0=','2020-03-10 06:13:25.591017'),('e157bw79jce3hekpf065b2nhfulo6lh6','MWUwMDkyNTY2NGY3Yzg2NDNhYTE1ODY4NDljMzc2N2ZkNTM2NjljZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ6dmQtV25abGtaV2NyUDRjR1FlNHE5anBjdDRkck9JX25raEFBRU9MNUtYeUNlOWQ4dmJ1Z3BlNlNueVZEbEdnRjhHWFg0QjR1bkhWWjF5dTJKbkl1UnM2OFRGUlBlWkNNWXJMc0lwQnFDMkZqWnhkczE5b1U3ckFWdHd1SEkiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjM4OjUwLjA1NjU0NCJ9fQ==','2020-01-20 09:38:50.060103'),('e4880eqcx2717rg5fqtej4j4ucen0coi','MGQ2N2E1ZTg5Y2E5MGQ3ZmRlMmYyMzZmOWVkNTE4YTllMzI4YzBkMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1QlVSYkFlMlhacjJOTXhFU0pSQ09iSm14d2ZQdTJ2dE9sWDhMeGxBN0xWa2NIUHBGZXZLZ3o3WVMzTkZNVEJpenA0VGpLNXgzM1FuVGZCUUFjZkRxSXZKZE1iWHN3UC0yeFhIcm5WV3NhWEhLa05jVHlvVHZtdXNfcXQtaG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjQ2LjU1ODI5NiJ9fQ==','2020-02-17 12:10:47.561771'),('e6f3x0l88tro55c3b4topmywv1asw0h1','MWY2NTlmNjVmMmFiYzEyZmUzNDA2MWQ0MjgyNGNjZTQzNzY3OGM3Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6VHREcml0QkZ6ZnoxZHpqLWZXbFdtYThId1dPVmNLbXh1cmZOTUtLY0RZcm41NzVNRkw0eDZZNHZ4NXJab1d3YXVhYTZLSjc0aWcwbWFwRDhoWHRINnBsTW5GbDFQNVhXakdTcF83cG9zYVpxU1g2U3JoczJmaU01Zkd0dFUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA0OjU2LjY0Njk2MyJ9fQ==','2020-02-06 12:04:57.650591'),('e6fnwfe904b688fsd9ucgey8vcuikipu','YTg0ZjUxOGQ0YjRiMmUyZWRiYTU4NzYzMDU0MjRjNzI1NzcyYzU4Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3X2dUY1R5UHVlb01jcjhkOHp6VG1IQ1hWQzlvSXo5elA0Y2o5ajBsMnpNZXNMZ3BiRUtPajB2V01YLTFyT0dzOXNCb2RjaEQtX3VVMVB6angtajE4dkdXR1ZUaTdsRXNhcGZBWENjUmJqU3BXM0Fic1FSaTg2dUl1MFp0czgiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjMwLjM2MzM2OCJ9fQ==','2020-02-17 11:30:31.366807'),('e8id8nvswqdtz52q5s3yjncq2l6k43iu','ZWZlZGNkODIyYjI2MDY5NzY1NmFjZmIxYmY2YTVhYmExZjIyN2Q5ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ4YjNGcUNRaDVhUDVCVGJyMDhGT2ktTlE3NGROVmJXRk1mcVFqbEhfUGNsRnZYamhUbmlETndobHIxSlA1RmlsQU5QVXViaV9YajRueUxwX3g2UmN3NDNxT0pGWjdHeGpnMlpTWWlDSk9jWl94WUtZUXVhWmtHZ29NZzVyMWciLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjE0OjE1LjIxNTY2OCJ9fQ==','2020-01-22 06:14:15.219101'),('ea638as58vkslnvgisub93gsjplpsxms','OTUyZWNlMTUxMDJmM2E5YjM0YTE2MjRiYjE0ZDBlZGRiZTFlZTUyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxTERJOUlFYUVmTmhOVlB4X1FpN0xqXzVCdUtIUGFmMVE1M0swbW5zcW5lMmhzUmR5bndJeWR3bEdUMjEwckhsN3BJRkVMOVhzZ0doRmZTUzUxMXFGZjJfZVF3SEdPOEhaYzBxakRKZ0dRSktLU2txckF3OG82TDFsMTRQblNFIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNDoxMC45MTMwNjUifX0=','2020-02-23 07:04:11.914164'),('eb9pz8z0wbcotign0eljgs5m4dd6tos8','YzRmNDBhYmQ3MmRjMGM1NDFlMDkzZTJhODc3OGU1Nzk3MzM3ZTg0OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItOS1VdFlVcXkxSE9TQ1lmNnpwWjAwNFpXVzVYU0NyM0owRWVHdGF1eWlNUjJQZFZFY0dsWDlFUldiZ25tcGNNc1BiYktBd3VJNTYyZzNFYUtUVmZoeEM3WkZjQTFGWFl5cmJFWXY0aklsbzhEVU1UYmoycUY5OTVnMm5iUlEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjMxLjg1NzcwMyJ9fQ==','2020-02-17 11:10:32.861379'),('ebeuxe8n1oqah42ekwo6z0kkzv0ccxo8','YzRjOTdiMjY5YWYwOGRkMmEyNWVlOWQzZmExNjM0NzY0OTc2NWVlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxa01MYlp0WUZDaC1oeHJLVC14WXFpZzB6aE12cjU2SXJBZTBMblcwbkwyallWQ0NtektlVDIwYmNvcEdid3JmYVpkNVdoWmZCUWZVejdmVFBOWWFZNzFuXzJMcHRNOVFfc1NjelJwd3F3N3cwN3ZydzhoclNqNVBLa01ZbUEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjAxLjQ0MzIwNCJ9fQ==','2020-02-06 12:05:02.447543'),('ecczvboptrxsjo6k81sxgdhtlhvv08fl','N2I2NzJkOGY2MjM3NTM5OTJhMmZiODg3MWNiZGRlZDE0NjNhOWRhZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxNk8tRElfaXJ6MHhNVjUwSFN2RVA5aHNxUlBkZE16SzRzdXBaYmY5OXg5amNmdi03OGRJV3o0eGVsYS1BQldMajl3VWVGTlVKZDV2SkVEbEE0U1RYc2tGTS1yUGp0SldPSTMwcXJHN1ZXMHNwVVozRzlYNEtQbVhOa3ZmYUkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjI3LjA4NDMxOCJ9fQ==','2020-02-17 12:00:28.085574'),('ed0sfqbk8q6yyi7cqusgvkznvio96r0r','NGI5MjJkN2Q2NGMwMDk5M2EyMjkxOWUzZDc5MzMwMjFhMWRlNmQ2Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItYzBkYUxTdGhwcGU1aGV2Y0NSWXJsQ3RQNEg4MGk1YWhobDlLWGhVdm5SRHhMZFJkR2lKM0pHZjRlYUZ2Ym8zUFhQekRyOEFxVDQ0aUN5S0kwZHplRGNITTZZSVhpU2hKa3hmZjNNSmlGYjEyY1Q0Z1Znai1oVEFkSWFmSk0iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjMxLjQwNzgwMyJ9fQ==','2020-02-17 11:00:32.411357'),('eea3huas206sy5bzspp04dg2mfu3gejp','ZDQ5MWNkOTk2ZWYwOTYwMWViZGNjOWY1ZmUzNjQxYjlmOWFmZDQ0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0I1UUNhQ196NEw2RWxOaXdRU0VyOXRmVVpzQTRzUEtzbVRRLXM4VGlsV1N5NTVsdFBVemtGUVlXZUZwaWppWUtBRmx6ZkxIdmZSbHF6dzNqTkpzRE8wSjdVOU1rSF9WYi04bE5rOXVmUm1yd1lScndIZnFYbkNxRzhmbzQzRVVSIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxNDoxMi4xODAxMzYifX0=','2020-03-10 06:14:13.182266'),('eeeipt4txf2bpqwfen8g2hocqlnobdsj','OTk3NmIwNzJhZTRlZGUwYmYzMjI2MDBlOGViMGUyNmY2NmNhNzEzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyZmtUeG1YNmgtdEhteFhaaEdMUGVmcmMzX0ZlSlRGTkF1MUdveTZxS1VacjZDMXpEdk5kY2ZJOU9XM0RINjVNWEhTSUxRZjc3dGlXYW16TFltR1VDSUx0OWpKWDhDY25IcEY2TW1UOEJCbzZTQlVOXy1fUXFUcWV0SHNacUUiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjA4OjQxLjY4MTkwMSJ9fQ==','2020-02-20 07:08:42.683315'),('efcd94lx8loc00911uxe7wusa88kceyi','ZDUzOTQwYmYxZDRmZmZjNzQzOWMzZjQ2NDljNGQ5ZTk3ODg3NTg4Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXODQxN0daUnZhcUQwVlAtZ2xSYnlHT3RhRVBQWkZ3ODk2ZTA3MTRoMlY2ck5zQUgzNkFFSmpxSnE3cV9QbFNVaEowaTVRWjJWTWpZcFpTWTNacVVWamlPU2pFbHJDWlU2ZzZWbjNiM1VPXzl5bFpvb1NTY3paY2pVWFdFVUZ6eWg2ZTZDOXpibVM2UG5QQm1rODZKWk5BQmo3OFFvbjF3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDowMToxMC45ODM0MTIifX0=','2020-03-29 07:01:11.985586'),('ehca4fava0jequz8rfb2ajjxy67a75k3','ODdlNTczZjQ4ZTY0MGEyMGYxMTQ5ZmRhNTI3MzM5YWQ1MTk3ZDNmMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5anlzWk1uVjNydDBHUURKUi1WM1lZTTN2R0RtVFEyUEx4ejNEbDZXRW10RXQ4c2xzRFFNQklPbzNxamVscHdoOUZudHZBbFl3cndTR3FiSGhqTXVsT2RwbDhrd1I5ZF8tWWl0cW5uMlB6LXhwamFwdkhMVENoc2xVbWQzekEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjQ5LjI0ODk1MCJ9fQ==','2020-02-13 08:00:50.252425'),('ehjm42dirmfygpqxga8ohppg0ebyjq5c','OGExM2FhYmYzZDQ4YTMwNmNlNzEyODAyMWE4YjZhZTQ2YTkyNDYwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwUnNvdmlTV2dNZ3JmZTBfV2VoRWNIcDlsaFllRGdSOUkxMU1yRlJ4UDlGcG5HM1Nxb1JRYkFPWmhaYlFHdHB5QU1rNHVvejZibE5KUUtzU0Zvb3JHOFlFNWlDZmNfYTctcEhBRy1yakROSXI3N3BmSlh4UWY3Qk5tdHB0MjAwIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MDoyNS42MTQ0ODUifX0=','2020-02-27 07:40:26.615913'),('ehkx6dlm9f3jgm6a4dw700n6o2ss9rlq','ZWVmZGRlZjRlOTk3ZTgwMDA0N2QyYWU3MjRkMTg4MDExNWFmN2NhMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0R1lrX3ZCV3FRbXhjQ19CX3M4bFlTVEtNaUJvekIxRXZLSGxiYnBwQnJHbkx3c1lqWVJ4UExUNUVnUmNPeml1V0FHcWQ0N01XdXBnTWNyay13QzFnTjR0SjFVTnBhdERFemxUMTZzZWU1UE9tNUk5bHVwYkZJUWdMNjBqdlJVIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1MzoxNC4wMjU2MjEifX0=','2020-02-27 07:53:16.029187'),('eiy716bov9ukiphmq29irpysowwjzm00','NjMyNmM5NjViOTFlZTU4OTliYjU4Yjg2NDI0ZWMwOWM5YzJhOThjNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4c1pfZ3pFV1pxbEk4VnNDQzVtdlVqbzFleklVUDlBMzNXMjRDY3ZQZTMzcU5yT043VEdfZk9EUV91a3F1T0FYT3VadjRBbDN5ZVNSM1pveVEtczR3U3FNbXdRZXZ2MFE1aWtrUTNaTndZY2pmMUltRmtQelJ4UjNiUzZaQndrIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0Mjo0OS41NDU4MTIifX0=','2020-02-27 05:42:50.550042'),('ejguxwwrq6xslcqdyajcr0m79xt2b9gr','ZDBjOGRhM2FkOTUyNTFhMmI4Nzk0ZmYyMzEyNzFiMGFkYmRmNzY4Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3MnBXaDZReHpKY3Bab1hqaGZVa0dod211RFNQZlZOcDdoQVUxT204aS1yOC1jOFE0SGt2YnJPRC1ON3pjdDBvdXN2TTBGRTMzZUxJTEZ4TV9PQUhGRWdmM0JGclhibjBkOUdpX0RlaG5CQTVDNF8tVG91TWV1c0swaml2aWMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjEzLjg0NjE5NiJ9fQ==','2020-02-10 07:40:14.849085'),('ek3oi3hk9slxo76fc1rnqskd49fl200x','NDE4MzZlZmQxYWM4MTAyNWU0OGUxNmY0ZDM5ZDI3ZDM3ZjM0YjFlMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3QnZQbmxEclVRcE5DY080d3FpcTFlbDJPOFZjR1kzb0xzeklOMGZHSkY4cmhKdmo0Ny1yeVJRTmF3Y3JFbTlnSmZ4OXE5WldWMnkxSUtvN05NQ0hwRFFEd0ZvMmU3UG1Xb0gteHdBVnFQNlgzd3JYMl9Wd2Y4cFQ4dDI5eENzIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxNzoxMy45MTIxNDYifX0=','2020-02-25 07:17:14.913594'),('ekeflj46vlxyd4nttse5zwca68b6ak2s','Y2I3NThmY2Y0NjkyNzljMjQwODE5ZWFlNTRiNmMwMzRhODM2ZTE4NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWRDVZSElHcnZrYkxwRkhvMXl0N2ZycHJHZkkwbmQ5LTI5VWMwc0xTX19SMkhFblpORER6TEFhY2lWUzJMenN1a2xCSUYzc0gwYXdGTmhfQWlKZENyUklaenctYlE1MHBCWHQ4YXFvWmlEMUFPX240SWZtOEZrVzE1alEtN0tWc2RxdTg0YnJ6QWhfYjZpd1d2cjNuT1ZDc0pOeWRmblFnIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMzoyMy44OTkyMzgifX0=','2020-02-23 06:03:24.902723'),('ekmmj9fna11wxzz1e6ar503oxcg5qiba','OTJmNDFlZjJlZTc2YjlhYmJlMTY4MzAwMjI4NTQ5MTRhOTlhNzU4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3R04ySFJhWmpBM01qd2d1Q0lFU2tfVVpSUlcwTEozRllZS1pFd21sNWo4Y1NvLW5HT1BzQzZuT2dVSjE3NjMzMTZ5NWQ3Qkptd3ZlU3dkT3ZraTVGVy1KY1dHRFN0dmYzRmYwWUJQVjF5V2E1bGdVaXlZaUhBRXQ2V2tUYW9sIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOToyMS4xMDQzMzQifX0=','2020-02-26 04:39:22.110596'),('ekz7vmh5t5hr1dg2r3ymkl66k2eeepvc','MDgxZWYyOGE1ZDMxMTg5NzFhOWUwZDFhNWFmYTM2NTBiNGU3Yzc4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzMUplcjd1ZWtobXdzbExtaFR3VHB3THhsbUZDVTNFdlR5ZDIwSll4SnFOZ1cxMHpjM2ZMbEJPU1ZDUGYxTW5mWWZXYVJ5czZEOVNyb05JTFcySEJoM2NCV3dZSlUxQk5CTHlSbGIzd1d5cG01RGRWWUVsT0NXLUVwalcwaHMiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjQ2LjEzNTk4MSJ9fQ==','2020-01-23 07:11:46.139646'),('el47ewiproz315scmllmim0cxbhv0fgw','ZTliYzY1YWNlYjQwYzJlZjk5NDFhMTFhZmIyNzg5YTM1MzI1ZjY2YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ4S20zT2NsMno4YXp1Znc0R1dvcVBOeHlSQUJ0dU9pWDVjbE00LTJVSUlKY2ZibDZrYTJIOGliNUExWWVhczQyMnI1UUlmekhjS3Zlc0RRcHVQb1U5NmZMTTFQNzdtdGkzQ2NBYTFoTk13MzVmOUhndWVzS2c5MDlJRzlVaGsiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ3OjE0Ljc3NzE1OSJ9fQ==','2020-01-27 05:47:14.780580'),('elz164fibhl2bc5yo4my8jpg84irw58n','NmVlZDVmOTViMjE1OGYxZjRlZjNjYmRkYWVmYmVlODQxNzdlYjZjYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6ZDQ3X0lHOU5mQjJFekFiN3JId0Jodi1ybjRFX1JBZ2R5WU1UWnhGVUdsTk9OZkpNNmE0SnJUNkVOUkJSVVZTMkFyQjZ6bTRVaGhfRXJ0TEItcUVfWWRSMEhXVXBVVWg1S0Rzck0yVTJoSmhOVkk5WmN3OE02MnFNeFkwYkEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjI4LjYxMDQ3NSJ9fQ==','2020-02-17 11:10:29.613700'),('enh4wqoxp83xsnemnvatqk6dt2t1dmy1','NDU3Mjg2YWYwZjkxN2MwNWViMDRjNzI4ZGYwNTBhMWEwNWVlYTllMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6ai1iRGhOeHROQWplQjBud0Q2a0JNX2xVRWM3ZGJicURNQ0Ixa0NUMXVEaVlGMG44UHVndjJEV1M0dG82clFrSXgxdG9COW1PYXZvRXg4MUdJT3BTNFREbGliWUVRdXdFdWhGQzFMeERlR05jYU9fN1lOUk85a0tpRTJvVDgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjAyLjgxOTM4NSJ9fQ==','2020-02-10 08:20:03.823450'),('epafge09t9548d2z6q6pkcim1ijtyuuj','NDc5ODc2YzhhNjU4MTA4ZTZjNTRiMDkwNDE4NjUxM2U5MjEyNGY4NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfRW9NUDVpY2tBQnpKODQ0dTA2azVzc184LWQtRG9VVFJxOXhSRUJzZGFxSzliMERscVl5ZUFaa2ltOVV0dnFzbEo0dGE0SWI5QVAwTU8tVWpXaTMxX3RPN2NKNFZrWmc0RnlEZk1MNmtNQTlzNWVMNmNyZVNwb1diSzg5NzgiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjIxLjg2NzY5OSJ9fQ==','2020-02-17 11:40:22.871239'),('epc22g2iuc808g8gwgmq67iqfze1brvc','MjI3M2I4MTkwNTRmNjljZGJlZDZlMmQxZGJlYjg3MjNmNmNjMmJhMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1dXVrY1F1YnJvNGdnZEwxLXpzR1hBbVg4VVQydl9ZVnFSS095TTlmZW1MdFRjYjh4TnBDRFc3VjFOZUY0X1JtWjFPSTNyWFhUUnlta0VWLUx2b29UcWpJQUpBeUxpdmtOM1pTZ0FDQlV6Wjc0YkNaLWszSzZIZkNPRzNsLThkIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0ODo1OS43NTIyMTcifX0=','2020-02-24 05:49:00.755741'),('eprvejzvzlnlnavj8lbuuyc4wa7xcyzg','NjRjMTZjZGJlZTAxMjJmNjg0MDc4MDMwZTliZmEwYjkzNWYxZjhmZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUJfM3Y0MzNCODQ1cDJrSDk2VjNMRHRqTDNMZnNNRFZBMmlJbHlNTGdOTFJWYUlwb3BlY3RQSWRVTTFwVTh0MXpVMDN2Z1Mzcll3OWtraHBqZDhnWWZjRi1TWnhEMnZPR3IwYUFtUlNLNl9ocm0wTExrVHhOVWpyWkI3c2k3USIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTc6NTYuNTQ4NjQ1In19','2020-01-29 06:17:57.549897'),('eptij5hemi3cmb43w32rtga8jxzli277','YTRlNzg4ZDk1ZTMxZTZhOGQyZGU5OGRmYTFkZmM1YjE2YzFhNzg5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMwSE8yQnk5cS1mbXpaSUlpOTBrUmNoS3JRYU9Fcm03NEdvYURSSGo2WWZVd3JQb2pmQTEyamFhbjhVV1hwZ3E0UGJsMGk3MDlITEhXV0dPRXlhVmFNa3FpY2hiY0RQMGZJbEdlbEJwcVYwUjk0YjRoSlpMdGtBRXVrVDFwdTlOU3BvLVpwT3ptQTA3ZmV4bTlJcHZZdy1yYnp3SDNuT1B3IiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MjoyMC41Mjc1MDAifX0=','2020-05-18 06:42:21.530958'),('eq09iwoq5i87binauyg2vmaijl8rblcb','YmM4ZGVmYTU2M2Q2MmQxYmEwNjFmMDFkMWI4NWU3N2I1YmY2NzUwYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4WWNZWnRoLXgxTXlQRGNWeDN1TVFWVHFJeTB0WVRicDVscEYwOFgyLUljMWdKc0lHTVJZaEplTGJodW9EdGtMZDJXLWlENGdYUWE4U3NCaTZGdGp0YlhDX1pTNHhpQ0s2VnVJTlRRaENxcW5BX3VWdDduRHJ5ZEpvaVB1VFBKIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1Mjo1Ni4zNDIwNDQifX0=','2020-02-27 07:52:57.345397'),('erf2l2rff5cxx39be0mzcxjm9v8s0e3g','MzU4OWQ4OWU1ODg3OWUwZDk2NjI1MTU1MzA3NDdmNDIxYWMzZGU2NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3a3BhUF90MWVRRHpvX0JmWWtpTExESlN3U0llZ3hzZ1ZxSXExS3VwZmt2TUNvVWFveEJxQ0I5S1ZOZ1pFZ1N3Um9nYXlKeTA3MFZPa0xxcHNBU2REWmpPUGVJUGRDVTJhQ3dHclhvaFhtMWxDRlpQZWVzY0xnd0tNRlpMWkpoIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDo1Ni43Nzc3MjAifX0=','2020-02-23 06:00:57.778916'),('es62k3e5awvucox4j1ri4nuvicl0yway','MGVlZTUwYzBiMzk2MzQ3MjAwNmM3MTUyMTU1ZDIxOTI0ODZmMGFhZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6YWd3MkNsRFdfSHZFdGxEVC1WTVdiR2dnSmN5ZldZVkM5TlZFQmV1UExWY3BDdkJZQ1R4Q3ptZnhIUnhHdjNLMF9WUXJidE5RZU1RdUpQXzQ0ZVA3cUZYV1pQR1BzTDF0SWdpWFFNSXZUX2lqdXBxUjRfRlZISjdBTTJSblUyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MjoxMS4yOTM4MTYifX0=','2020-02-27 07:42:12.295586'),('et9japaguwkh86qglkt2ovos5e98ocv0','YWZmOWE4ZDM5Mjc0NTJkYTEwNjkxYWQxYWI1YTQ2YTQyZWU4Njc4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4aHRubEY1Z2MzSUg5Wi1DUDZkUkctZnpkVmpCTndNaVBfNWZEV0dkSVZ1aU5WXzNCVGNuUjVjZHdBWUdvS1lKZnVyRW9hRE9rVnNLLTZOeEZwUnJ1aGp6Ym1TNHR3VFo1bTM2RnpxTDM4Mjlxc2taSllkUU9tRHk4MExkSDgiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE5OjMyLjg3NzIzMyJ9fQ==','2020-02-20 07:19:33.880762'),('etawthtu5vsu9ig4q680168644cftcf7','ZGYzZjYyZDUzNzViMTRhYTQ3YmQ0NjJmZGI2YWY5Zjc3YWRlYmNjNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxQ294RnBkYUdWTmxPVkhHaF92YnBhTjZjYlFkMl84Q2xreGZXaktqOFl5RjR6TndqZ1B0NS0xanBBRmFuS2t1WUtsSVVTMW5QWWZBNHIwajNaSFVTN0JwazJJeGN1YVJEY0h4QUFMRjhYcEdsdVFEQ3UzcnpZUGlyRlozZGsiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjE3Ljc3MDI3NCJ9fQ==','2020-01-23 06:50:17.773653'),('etw4lc2uk8ij88b51uyg5x0y6ky4s966','NTY1MzM1NzZlOThmYWZkMWU1NDEyNjA1N2ZlNTdkZDhjM2Q3OWI2MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyLTBwM0w5ak0xVk9PQWw4dEp1S0tFZWM2RjBiMWtRcTNidjloSTN1dTBVNENYbzJhOFdNUXhqRGpaRWJXZlZYMHZCZ1JwS3cxMW1keHhsSGdmc2szSUVDdUVycDNjMHN2QVpHUTZTZDBBZEVPb3VRRWtKS0Z6bXVYT1hCRnMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjQwLjMyMzc1NSJ9fQ==','2020-02-17 10:50:41.327236'),('eur4blas5hbhmfgva2r54levoek6ah0b','MjY1NzAzOGQ5OTY2NDQ2M2M5Y2I1MjU0MWQyMDYyY2VjYjg3NGQ1OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItQmJiMENJNVg4UnprS296T0NMMUU5a3VGLW9GUF9CT05kR2FFUGlsbjFETlk1RC1ZemNwQXRhTlpJSUlSZDlLNFNXUzlrUlloc3lYamJNQTViRldsLVRmRGVhMDBnLTF1RThDRzNTV2F3OVRmR2YtZjhRWjRJLUJ0MENMN1UiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjA3LjM3NjYwMiJ9fQ==','2020-02-06 11:26:08.380020'),('ev10cv7xzkzo028j89ironr7xyto05td','ZWRhNzZhMmU2MzhkNjUzNDYxMGVhZGFkMWUxNjU5NGZjODM5NThiODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzY3hHc0F5TTZ1VHdyODM0MnRkRXZabnRZMm9wZVE0N2J1WUJWT1ZKLWxBVGlvbHlMTGdTb3B2ZXVsOXJVaWwyR1JEQ3RPM2NWai1LN2dpLVdfd244VWo3SlZwYXpDWWNzamZCQ3RDNFVIanFscTRpUFc1VmVqeVRlU0VwSDgiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjAxLjUwOTg0NyJ9fQ==','2020-01-23 07:15:01.513474'),('ewlld3m5a2se7ofisydzc11rgzth0n1j','YTNkYzliYzJjMTc3MTFjMWZjMjMyZWU2YWYxYmM2Y2I3ZmQ4YmE3Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyMm56a3ZHcHdqNXZya2JTc3lqQldwVEJ2VHV3V05jeS1RR2hhU0s5TnpxWUlwZE8xTlRmTHFERnBNQXBHWGgwcDNlY25WamhWR0RnSk9aTzlqU0lPdlQtdGdrOTdZajUyaEtSNGZSOEZVc0VXU0dQVHFQMUN2aEdFVElRdm8iLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjEyLjU3MjA0MyJ9fQ==','2020-02-10 07:50:13.575592'),('ewmf2g8o5w8hzmhtsolm4oc3h4wzrxa8','ZjhiNGVmNmIyZGQ4MmI1YzQ5NzY5NDg3MTczZDIzM2Q0YjkxN2Q3ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxYXlHb0pZem1NdUJBNEpraTZ2LVhBaFA3TEFuVlFFbDVfaFVvc0JVaExGN1ktaEFwelN0V3BucmV2WWtWdEQzdW4xaFVvTllXTzUtc2x0RUZrSGU3R0Vwd3pMSENWTEtUdjNIQ0NKU2dPdW85NXRJQnZVQVkxSTFXaDY5V1UiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjQ0LjMwMDc3MiJ9fQ==','2020-02-06 11:50:45.304262'),('ewq1qwrqs00vfri3k720pe0yw72skz2j','N2ZiZjlkYjdhZmIwMjRlNzE2YjlhNTY4MTA3ZmZlMDViOTI0OTZjNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwQjBYZFRkcWtycVM2ZWd1U09wTm5tcnN5N2RrU3ZUeWlPRDQ4YWQ1MVlQbUJFdi02TkxFQk1ZSW1fU3l4UVl2UnlJekNCYVkzQ2wydU5MdS1YVGNDYUZJemg3MzJnLVZJOC02cWYyaXZGZEd0dC05czkyOEhJTWItU1F0QnFyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDowOC4zNTY2NjcifX0=','2020-02-26 07:30:09.360133'),('ex2ppskci21lfaecsdsxgqlqj5whlll4','Yjk5NzhjNzk0MjVkZDkyN2Y2OTE5YzFhN2NkOTZmNjM4NjJlMTYxNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxYjBwc0M2VW0ybURnQllMb2VQcEFseGhkaUY1YWtuTFJENXpPaU1FRy1Da0dNd2luYVlyTHZnM2xLLUQxSGpVUXBYQUNDZWo3Vk5TQ1ZPTlBOYTZ3XzZRX1ZtNEhHeTBlTDc5Zm01TDN3azJFTmNRa0NSSnlPaVdqWVVlWDAiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjQ2LjgxNjI0OCJ9fQ==','2020-02-20 05:59:47.817501'),('eyfji4ls0apskipz915agfuatu029p4i','N2JiNzM2MDE4NzYwZDI5ODkxMDcwNWFmZjgwODQzMWY2MGUzOTlkZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfNTBpSUY5d3NXaWhqSXMxWHN0Z0tmQkRZVVBRV2w5TnB6YUg3SER5cGxzcGVvY0JzZDBKVFozbmUyU24zdUVsY3A0YW9MLUNuMnFyZ2QtY3dyclVQd3huZ2ZxTGo5NmxndTR4bWt3TVQ3TjBRX283SldkMEJVOGZUSDBYNHRoIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzowNi4zNzUyMzcifX0=','2020-02-27 05:43:07.376652'),('eyhyrl29glahbj5f541o5vgqp79b1d0f','NDY0YjNlNTNiZWFjNzhjMjY5OTA2ZDFkNmFiYzkyOTc2OTE1ODkzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI5a2VnYzRWTjVPY1JBS0hHX1hZZ09maVRvMzZ0dlVRZkxEQzZTSjgzZXB2UjR3TEgwcmhvbC1RaWZOYnNlTldzN3liSXR3Q2JFZmVCR01oVjZWZ2ltTHoyMWxhUXczeFJ3bmlYbHhHNzJ4WC1PX0Z2UHBIaWZVQi04NFprUlEiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA5OjA2Ljk3MjIwNCJ9fQ==','2020-01-30 06:09:07.974019'),('eyq2570llw82fgfxy1zr0bc3omih82jj','NzA0ZDgxZWY3OWEwMjY5MjgzZjIyYjYzOTI2ZWJmYWE1OWQwNzRmZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2NXdHdDE4eTVXWENSYXN5X0xfRzY0WUhVbVNUSnlER3V3THRscGVNZE5jaWNRVExqeUVybklqMm81MkFCTHRTWWpmX3pYT0doUUNJRllvVkJhS0FoQ1FZei03X3VoUXdWN2VDVzJrQ1Z6MklnYmFJRDV1TVp5U3pQck53NGciLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjU3LjE2ODUwOSJ9fQ==','2020-01-30 06:08:58.171953'),('ezk3y0e83dwr87gjjvsz3jj4utpjowwr','NDA1MTcxM2ZlODYyOGFhMzcxOTY0N2MxMWM5MDdmNzVlOTZmYTBmMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0eWRBN19Fb2pXVThKWVlfa3lDVGNtNldVbmF6cWlzVXVQeDNoX09pZ24xcG9wR241WV91OXNQa1BxX1o4akRIVXFPdzVEaXlUS3VmcVV3YTB2cHd4YzU4WG4zS3BubkRCX0F5dVZncnZDbzRnZkw4R3hIaUF5blpqeGMtbTQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjMyLjQ0ODUyNSJ9fQ==','2020-02-17 12:30:33.452037'),('ezm2g9ytrwvz6zd7ze1v36b3ajzd7uxj','ZTFlNTBiMjk2NjQ0ZGY5ODc3OWViNGUwZmUwZGM0Yjc3OGE0MGY4NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I4aUpyT1JGY2xLUk4tZXVqUGZPM2VwNUpxWG1rd3pxc2RTUFFwbGw0eHNtYUJGZFRHazd1Sm9TQ2ZUV1FBaS1GZDROMzJ3TThuZHVqQlpqeUYzcU1WSWhUQ1dOemxBWnFvMGZWLWRnZGZaY0UwSEN2OUdVdC1vY3dKaDM2MVEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjA5LjA4OTAyMiJ9fQ==','2020-02-10 07:40:10.092691'),('f0q3owhr9d7wfzq759qhsbnln83zpzi6','NGUzYjZjMTIzODg4NTY5OWZlMzM2ZjU4MjQ0MjlkMWNlZTZkMmEwMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYa05pQ1pCMUZnWXRtSXczNW1QR2piMUp5Q09fWXh4NnoxOFlQczVjanlhUFBra05lVk1WY0R3UGpYUGNtLVZ2NldJWWNVVTNabkVFLXlmcXlxcVlmSWRpTTRfYUtYQkRhNmFGb1V3cXRKekRMN2NBUmFjaUdnWVdFM0tfSzBHeWdNeUVLLVAxYlJUNlh4eGtXSFJ6LVlxbjVhSmpGbm1RIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxNzo1NC4zNTMzODYifX0=','2020-02-25 08:17:55.359438'),('f18mphajzgn7kcqlo0fd20xwaw1vomm6','M2E3ZDhmMDkxMmFhMWZhODg0ZDQ5MzNlMWRhNDFjZjRmODI1YTUyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxenZsd2gzREZBV2V4OHo4VGJfOVVCYzEzQXFjNUpUS3hycklPQVhXVE5ZaUhZQWtsZ2xFb0tLWmFHYkhXdkZ4Y2I5UGdaTkgyd2MyaUY3YTNOYlFIbzZfV0JVWThqaFQyV2doT3hxeS1HY2hXNEczN2JMdlJvREwwMlUyQlkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjM1LjA1ODQ1NiJ9fQ==','2020-02-06 11:26:36.061897'),('f1etp5z4i7brll7j8jnd4aislp2r9pqo','ZDdmNDdlZDFhZjI4YjRiN2U5Mzk5YTc2MDIwYWY2ZjI5YWNmMDRjMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2SkZxWTBnRWlpUkpVcGNWeWRNZ1dnS1JRX0Z0SWlXczlPRWcwbUJrV2NRZGpBQ0FNd1B0eDMtY1g4cU5HQXR2b3hWQi1wMXJFMGtEVjRlZ0V4OF9jTlI3eHJscnpTM1RqeGwwUVRRRXV6SzI4MHpLT3ZVUjZlaU96TS1HdkEiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDEwOjAwOjQyLjUzNDU4MyJ9fQ==','2020-02-20 09:00:43.537925'),('f22mfrl4ahh8gb0pl4pa6b9s0z6in44v','Zjk3MDRjMDY0MTgxYTg5Y2MxN2NlMjA3OGNhODBmYmIyZGI1YzVjZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVU1NTdHpzdHRZcE9uUG5SYjU5OXh2VGZWbUJsMkx3dEJITkptT2NZT0R6NTZCSHAybklET0trYWNtcmlHUEZfdTlyMlg5REFjdU9uQ1BGWDRLMDd1dE1hYnFwSi1lMEFGQV9adVhQR0FpcWlTakVsTnJjZnBPQjZ1MHJ1QkJuYjNmdVRBOXl3eTVqOGJPUkNBN1hDQjRqRzIzdUpVS0V3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoxMTo0My44NjE1MjYifX0=','2020-03-29 07:11:44.865143'),('f35uvgbkp8mlpvfsgsms5xvnygs0p6k4','MWViZTI5YmY5MTBkMWVkNWFmMTg5ZTMwNmZmNTViMzJiMjY1OTg5Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItWEJkUWV0NlFSRkJxOWZCT1FMZjVSbDBNNG5obks4eDg4TkdOTnB3R3pGZ3VHTDcyZzQ0aTVCX0JVNmJtLVdWelJkMXlLeTRVdlZQMVQ3aVNHNHdQT21PUThYc3F5eHUyVGxTQ1BxM2xtNlU3cjdXZU9SWlJNT1FZWG5kYTZtIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMDo0MS4xNzk0NzQifX0=','2020-02-23 07:00:42.182882'),('f3gxfppx50d292bq6eyj8y5hldv2wk8r','NjEwNWFlMWM0NTAyMzc4NTE0OWRkZDMxMWIwOTQxMjZlZDQ0OTdhNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4cEVVNFNnNHotdS1zQ2VhVXhWZ3JSbUFKcl9aaWhILW5mNEtWLWlLLVdXZUFTNk1oWUY5aUFwX2JPMU51ekF2WC04MWlfVV9MQUJNdHVqTTd0SWFaLUtOZDBlREV0cjdFSXZUdWpxQmZSYVhMNlBRWGtER1BuNExsOC1FZDQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjUxLjM5NTExOSJ9fQ==','2020-02-06 11:47:52.396245'),('f47vf83ebmk2uszlytmgk3fyqcdv6613','Y2VhMTAyODZlNGNkMGFkYjEwNmMyNzM3Yjc1NjFlNzYzNjk4YzE3MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzWE15LVl4ekJMZXAwWDlFcXd5ZnlORTY1TEpCanFVMG81Zy1MdkVwWTlZYzUwNXVTUGZyUkFDQmtsNjZIZ3Jwc0p4Rmszc29iUktVOWpoVGF5Q2FTRVBfTWdwQTVEMjV4Y3lFdWFXSGZNTWZoM3VEQTdTV1JyNWVDVUU0RFF5IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowNDoxNi42OTIzOTMifX0=','2020-02-26 07:04:17.693590'),('f4u0vgbgx79v1ynnr5ul0akoxyrgehmx','OGY4NDMzM2VkMjBlZDM5NjAyMzE4YmNiNjZlNTYwYmNmZjg3ZjE5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4cEVnQ3JmTFZBWFlSVFlQNGtQeFRJZXdiZEc3clh5cU1PeE85UjM4bVNxdy1xbjFlaXBjdnlqNkZ3cFlzcTBtOTFaY0VxSXBTd1g4RFFPTEtrX3pSRlJ6WV9PODJrLVhuX0hMNXd2cER3SWI4Nkhad0hIQkxWb3R1QjNxbVUiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjE4LjAzMTYxNSJ9fQ==','2020-02-19 05:34:19.103937'),('f5131w78ugb4jsv1ng9ve8t417eearyj','Mzg3YzY0YjBiMjUxOGNjNmJhMWUxZjEwNDMwZGNkNjE5MGMzNWVkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6cVJYOVN6eWdnZVFqUEN4VW92ZzBDbklneG03ZGszSnB0MVFTNXdQY0lvOGhmLTloQmw2TlNodlBoNTh0VVFkV0o5M3hPZjVpTmd3Unh3a2QtdHlwUjlUdkhvMUtnenowdHNIU2R3dUtnZFZreFYwN2ItMGF3RTh2SmpTUXdMIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjo1NS43NDEwNTEifX0=','2020-02-25 07:12:56.744660'),('f596y5199xdxmlz3bisgypmbupqdu4a6','NDg0NGMzYzllYjcyMGZhOTI3YTU3YWRhOTlhMDhjNDljMGE0ZDFiNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4OS1GYlhaSHdvenltTGRxMEhQQk1paGZ6OUh1bk5aaDlaQmxsdUVtMVg3eUd1NmlVZEpRS0lYWUlPQjkxQlFtZ0JhOXpNeDVYX2pVaTJ2c1NlVjhVTnBWRkluWTdGaUZYOUFQMG9qaEZwUzB3Nzd5ZjFxOW5abU55ZzQwc0kiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA1OjQ5OjU1Ljg2MDA5MyJ9fQ==','2020-02-16 04:49:56.863954'),('f6ydbm8vqx9img0kieycca5otkmunw88','MTQyZDRkMzg4Y2EzMDQ2NzY3ZDI3NjI3N2VjMGNiYjc2Nzg0MjRhODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwQnE5eERVTzdLSmpJbEswY3NHaTNqTVVjN2VOaE5MV2JtQ2xuVVZrckdGbWVjVkpLVGc0RzBLOU5YZnN4OXBRNXB4OUgyLV9zQkxsUk9uajk3Q2ZaMVgtVDF6aDZpdkJNY1pMaVFFM1VFY3JJTElQeV82NnBRRW9jYnZpZ2siLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjQ3LjU5MjY5OCJ9fQ==','2020-02-06 11:50:48.596133'),('f73gw7mc69hnialq8inanl9uz9d1a4q5','NDZiMTViZThiMjExMWQ4MTg1MTUwNmVmMGE3Y2IwOTI4ZDhiMjNiYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxd25iek1FeU1QS2VpcWtuREFQSy02QnZwZWlwVkhfdXhnUFpQcU1NUHFQeXNGc3JjODhOY1E3SXZTUTJ0Z1ZhWDhRV0p2TXpyUXFHQ3hSNTg3d3hVTHctczhJVEViRERiNk9fbnNoRk93dGlGaUt5b1MxSjhyUDJybHc1Qy13IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowMzoxOC40ODYyODAifX0=','2020-02-26 07:03:19.489678'),('f823xy7dqbsutiu3ms2bzolr9jq767gh','MDY1ODkzNjIyYmRkNDUzNzBkOTJjYTQxYWE0MzRkNTdiYWE3NzhmZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0I4ZVFBWmhJNnNCN0JUc3RlZnB2VVhCcGhnVmRrNWwxQVlfMFJubW5pQmFNdmd0M1Y3dlVQLWxIWF93MTFYa0QwR20tZXB6b3A0QWZ4amlnUzk0QVRkbmxLOGVET2pwZFJXQklkUV9UNkRvWEFrZVdqdHRPZ0ZwTUxuSnhpWEdRIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMzozNC41NDkzNTYifX0=','2020-03-10 06:13:35.552888'),('f83bv8jts8f997s2yaid7nvlq6bru2m4','MTQ5MDdlMDMzZGFhODBjNTg5YTMwMTZkMTU5MTgwYjg2YjQ3NTIyYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5VFVtY0RMV2NBV3kwTWs1RFIxX1JJeTk0NmtrSHdxbUFSTldiYTZnelhnaE1LRzk1V3ZSUm5mZkN5Mld0bkdDdmxXV2hZOUdpUXVzMnNMRkNjVFdSOVZNUEtzck5IUzNBZDg3LV9nQ2VoRVJ2dklvcml2RnU4TVdXM3dzXzBNIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjo1Ny44NDI1MzcifX0=','2020-02-25 07:12:58.846056'),('f8v1a43dndfff5ny335otmkk7524ftaj','MzQyMjU1NGVmOTA2YzI5ZmFmZWE3MWJkMjcwNDNkNWM0OTE0MjAyZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfQlJmVzh0U2FCQ1FCRkVNTmZKSWlwcDd5MGJ4SGJjR0xpUGpVR1pPNnNYRG1Kdng4Z3QwTklFdHUteHBMc0kxWEZBVk1PSVQxUWNjMy1HekFpZFVXeFNzeFdOQl9JdjZETkRYSWhQRlFmQUM0WUc5WU1ZWG9CblFuMTdfX3ciLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjI0LjU4MTIyOSJ9fQ==','2020-02-19 05:34:25.584636'),('f97kwqlso9w09l6bujkuhj36v58ri085','MTE4OTZmOTdjMWI0YzRjMDNjMjRjN2EzMDBjNzliNzRlZDk1MzQ4ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3b2hIUlEwa1VSNW9VZzFMbFc4QzFFd0RwQVpaNWVSRHVERWE5Mm5pT1RDTm5wV3Q0N0dTLUJSRnhzR1pzOUZ4WGFkNVFWRUwzZnBVSFZkODJPcjZNNHJRN0F2RXZWcTAxVG5FNGNubFQwRl9ZTzlacU00anVFWHk3NFhpYm8iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjI5LjUzOTA2MSJ9fQ==','2020-02-06 12:05:30.542737'),('f9cdmrtg1o9ylworqxwp13nowoookl83','M2IwMGQzMWNmOGI0Y2VmYTAyZWFhNWE1ODVhNTQ0YzdhZDNjZTFiMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWSjlmM1ZaWWJia1VWbEF1N0UxemZCYUZjaUtORXlIblhBc05zMWhfVXBzY1p4ZGRLV2xtbjVGbmFSMUZSMzBTQVYwYVl6c3pqcFA3SDdTcUR3ekQ4NElEYWJiUmFhOWxuSnpFZGRqNVoxMjRBYkFhQTlJbjZyVHFla0dPYVpFWTJoVkJyQmxXZzg5MlNwVXpkNlk3eENrbUg0VHVGOUtBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjo0OS4xODY0NDEifX0=','2020-03-29 05:32:50.189945'),('fbyexkgbysfx92kkla5rokwzwetmugs8','ZTI0Yzc1ZDY3NTE4NzIyZTczNjExOTcyMTExN2MwMTg0NzRlOTMwNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVX0pBc2RtVUtadUdwOGkzNHBsUEZuTDc2cGdqaTktZXVObGZvenlGOU5oWGJXQ3RuVEJ0MGxudTdDU0kxQUl6dFQxam5Yd3hnLTVpOEpPS3l3U09LS0xCdmJOdmQ1bUJCb05JMUsyX0lieTlSLUZqOWNZV3F2WnlpcDJBSHU3SlV1TEZaQ2lMdExaMmNyY1JYMHZSRmczcDdGcmQtTFBBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjowNS44NDI4MDYifX0=','2020-03-29 05:32:06.846359'),('fc14z0yquvhvto9qjkd9wmpfv9jyvprn','MDA2OWFkYWUwYjgyOGZhZWEyNjZlZTdhYzhlOGI1YmJjZGJlNTk3Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3dE1EdEFLZlcyM3VocF9jQ3lveEpMQ01IVDkzMTAyUkNqcFY3QzRGOEFsb2xLa0NobS1WS3dfdmtBa3BtX3h4YmR5djhfaFV0QmZ4eW51cDhzOUpsSURkTlVvM3Z0WkJTREltTG1mVTlvRjhOdjJtRU5DajZDYWxGekZVUWsiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDEwOjAwOjMzLjc4MzUxNiJ9fQ==','2020-02-20 09:00:34.787058'),('fc5bh6d8kacvno4466jyvhe39edmox3u','ZGMxYWFjOTFkNmM0MTU4MWY1NTQzNTYwMjYwMTA0MjcxNzc2NTM4NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJfVDRSRVZfYlA5QlJyN3VpY0tFaEVsZG0ybkY4WVVKdHFBb1JnQTdXdk5rdGVfemtpdE0yaHRQcFlpU25pTWl4Q2hmVjkyUC1BZWVJZ2xaMXFkaWlLMmp3U2MyLS1SOE9SXzVXTVBGdFRLV2VWLTl1NUNpQUJzeGdTWE1OTTQiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjE2OjQxLjc2MzEyNyJ9fQ==','2020-01-20 09:16:41.764708'),('fd24ofjg9w5uxruhgy2i6ycu4lcs2mvk','OGE4MmRhYjg0ZDNlNjdkYTRlZGY0ZGEwMjYxZGMxMzg1MjZjOTBkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItNWVWYmZIS2tYdnhocXpFSXBiWERfVk5RTjlDR0owbUdyd1FvVEV4eXcwdlZyT0VRNTNudXhNNW1pdW95cHJyOHN3ZEFxamFRUGNXckJRZG1wdFZWMGpDbzNZeFVZS2M2dS1Rc1lVWm9MYXB1NFowTHBVS2t0WUNuUEs3QmsiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjI0LjE0OTY3NyJ9fQ==','2020-01-27 05:46:24.153265'),('fd8nksncbyw849okwc5xy9m4h2p4gm2m','YzAyOWM2MmJiODg1ZTBlZGMyMDVkMmQyYWIzYTUzYzNjOWIxMDRmMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwYkJzbUVCQ3BPYkpqUUdwcy1Yb0J5Mm1sZngwMVVnTW9QdUpOTVNLVXN3ekJYM1pnUGNrenc3dVAzMVJ6Sy04eldNQmE3Ym5YTE1qY3RLTEJUYmJ5T0pHY3J5dlUzbDY2YUVFd2hOOWVZMU42QVlSd2ctNE5SOTdLeDBqcG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjIwLjU0OTUxNyJ9fQ==','2020-02-17 11:30:21.553024'),('fdkiqbt10gcle9exe0nl904smc3dl3sj','NGE4Y2NjNzE4OWQzOWIzZGIxOTFkNTJjMGQ3ZDViZmRlNGI0NTE3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6SlREZW5ld1FKTXpBYlgyQklXNmR1S3FMNnhORTNwWjQzSGlJVnM5dTBIdFFKNVpvNzVoWFFDZGM4NFJubGtONnJzdTZ1WVdwWFgxNVhYOVJzcWEtSThhU19Mc2pTeVNCZE4tT04tSTJxQ1EtZG5ueU1HdlFYb2hjbDRHeFkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjIwLjU5NTk4NyJ9fQ==','2020-02-06 12:05:21.599426'),('fdphg3xax9mc1zw6e1vnwhzt9kn1lm2e','Y2FmZTgyODFhZTJlNzAzMjI2OTFmZGY1YmI0NTU5ZGUyNzZjM2QyOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6SWVOOWg4cVFvVUtVc0xPTjdoQmpZdDlJaW1adjQwWS1xTEhhdjVlN0l1SWxpZFpSZW9DYWw0X0NUdnNJTnNGT0toMWkySFJRYTFTTTEzNWtzLU5Sbm1kd2JhNHpIMEswNUlmMVpwUF9ETGxWNlZCMmZxdzA5cE96VjhUdVU2IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1MToyOS44NDQ5ODIifX0=','2020-02-26 06:51:30.848502'),('fe2tlans9d55mjsv6ep5501df0fr1rcl','Zjc1OGI4OGJhOGExYWFjOTc2N2ExODdiZDg2NWJlZWE2MzcwZmVmOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxc2dpbnd6QzBYN0J0T2p2UGY4bV9OeF9TTGtmYVdCampkR1NzekQ2VjFCV3ZrakVBMEtDaHAxNmdlaUxrMW5URkFTOUFkeHBiT1VmajZLcmNLRjkyb0xLMWx6aUtmOUwtbC1qV0hsOVJsTUkxb1A2QnAweW1oQi1zNndyQzAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjAwOjAwLjk2MDkxMCJ9fQ==','2020-02-06 12:00:01.964303'),('feqsd9inza3ksw0irrgm3b3nqfdoao29','OWNkZTgxOTQ0NzcyYTc4OWE1NWYzNjllMmU4OWE1NWI0YTg2M2VmYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5MWxIRHdfRmt3TzlHSG0tMm9VYXJNNFZYXzQ1UTZNT3JyeGh4QW56WTJzenA1N0xpRTJLb0VoeDJFOFk2RFVHM1drSmMxOXB5c2NaYkRMTGVaM3JfSHFsdUFZQVE3bVBMYVpXQkZoNklveU5DakhjZ2gzWHZQSXBRQlJPQi1DIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDo0OC41OTExMDAifX0=','2020-02-24 06:00:49.594401'),('ffgk6lnwbigljq8onpbsry03yyb2sm42','ZTQxYjA3NTg1MmM5YmNiMDNmNGQyNDY3MDhkZjFkMTk1YTEwODRhNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Iza09QT0FGTnFCNTd1VzZCSUZ3anpCenpWb1JkTkxSWUVCV203akhWWmk5R2dCQk44YTh6LUotRF9WTTI1OUJvd0xHT1pXazF2RmtVdG5fNnlMQkJVT3R4Ulk4S0pybzZQT3RsV3RNc3NaUW9kUVhyOVJITWJ6OXJNbWs5M1kiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjExLjE3NjM3MCJ9fQ==','2020-02-09 06:17:12.179733'),('ffwjzfq8ogjv82y436h54mv02av9s218','MWFhZTUyMzVkYmE0YTNkYTdmYzc1OWVmMzg1ZjdlMmU4MTg0NTNiMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfRmVlUThhcmwyNXc4TlFGeXJvZnpkcEhjdkRJQXVhdGc0OEN4NkFqOGJIRDJvcndYWVUySzM1UjR0WC0yRnI4b3NlQmcyZHo5TWVJcldJeTUwaFBMNmRGOXZIY0M5c2JGNFYzSHcyMWN1QXBWYjZaa0dxZVhaTi1fbVI3WXMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjU4LjAxMDExOCJ9fQ==','2020-02-06 11:23:59.013625'),('fhl9kvxjp2236yfb2rqq1afm3ierl4dd','Y2JhZWExMTg2NzIwMWE4NjlmMjY5OTg0MzhhNTVhMzUwY2U4YjE4OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXY1daNjFlR2pRRlNQN0NmX3ROZ0NTYy1LRmtoOTBndEU4NXlVTGN0czktYTY3dG53YWozSFRqa0haUDVsUzZ5cTRfNFhqSFc1RVYzTkV4MWF1Qy14YTFXbWlaUDlnTDBwX3o2RG5naWk1MFllZTZyZ2pwWDQ2RUJQRndmUXJpSGhIWDhhS1plX2NoRkR5ekxBLWt5ZlFCYTF0TWxwQjh3IiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0Njo0OC4zODc4MjYifX0=','2020-03-16 07:46:49.391557'),('fiae6ywtn3uyrqbb0lq0auqst2jnzj9i','MmViNTBlNWMxOGNmYzBjMzhhMDQ4NzU0MmQ3ZmYyMjJhYzNlMjZkNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYWEJXbER0VkJDMXZvOERYeHNhTFZnZkNHclY4SkZCVzRYX0dsME5US25GUFQxWGJjeGktZENPZ2h4NFZZQmQxSGhOTk1GRTFDb2wzVzR0MnVZYUpCOURMeTVpSVNidEJnY0tmTG1zTjlLOEN5amhINS1kb2hNbFhuOW1FN0lHSWJhMEpsTXlFRFFPLUtZelFqVVFsUjNHUTZBWV9zdld3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoyMjowMy4yNDc2NzUifX0=','2020-03-29 07:22:04.250995'),('fjufa4o7nppyryh1t0dfm7a05ybjh4y3','MjM0MTAwOTM2MzRkOTA5NmExZTFlOGUxMWY5MzU4YzFiMWViYzBlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5RUFxYjQyWW90elpmU0NnaTZBcVBLVGV4elRMWENCQ1kyNkRUN0Z2eTUwdlJDclVMZ2VsUERKRGtaNU9FbHdKWlJQWWF5SEYzZTZQc0tDbWVvWkk0d0JjX2NkUVBjYUlyd01hZHJNaUZUT3BCOXBKSWQ2OXJkNGlOWWotR2MyIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMDoxMi4wNTI1OTEifX0=','2020-02-23 07:20:13.055561'),('fjv374salzang2b1goriqrz8lgp87wv8','OGE0NzE5ZTY4MTY0MjJjYTU4NTZiNDc0MWFlZmRlODQ3OWM5MzdmZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3d2owWDFTSjVBcGQ5c0ljNUNvWms4STBaS0xESy16c2FBZGJMOS1NWGhUeWhUb2VVaTE3c1QwMGhWQU05NzZUU3ItTHRINXZ6djhzRXlNaDgxWVE1Ylg1NjljZlRUeXVBM0lhMnNMSnp2THBBM2FEWGVPQWNrVDlTQXJUTzBjIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDoyNy43Mzc1ODUifX0=','2020-02-26 07:30:28.740935'),('flvtczgwwiwix4tarsazt45jajoxgzs0','NjRhMzE1NTQzNGFlMzNkYzMzYWEyMDQyOGRlMjQ5OTIyNTU4ZDk5Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyX2F5MnhwZkFKai14LWlmX0pvYXVUb1JrREpocVVFUG1iN2EzdlhGdERFeDFHTEd4Zm8wcFZtSElWS2l5bjNfR2JpTW01TXpaSTJ1TUl3OHY1QWhzZmNwbTR3OTU1TkRuR1pHNHBtY3ZIUm4yM3BYQmpjRG1BZHVJR1VzLXciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjUwLjUzODQ0MiJ9fQ==','2020-02-17 11:40:51.541887'),('fn37atmrxxx5ne8cp19beg1khhw13n1k','NmQ0MTRiMTUxNmMxNmIyM2NkMDg0ZWI2MGI2YTE5ZDNlYTZlM2U4Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4d3o3eHo5NGUwLUhQZDUzZGoyS0Vjc3F4UGdwUzJSZlZpLTFGaGUwZFRQblNzM29IZ3c5ZmhjQmNtSEdpYUpEb1p1RGhTQmlOTmh6WXJSdl84ZjktcFRoUHpPRWl4Z2RWcGlCQWd0V3Z5YWVLMVltcU1JcVZwOXRBTkRCeWciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjU4LjU3ODIyMCJ9fQ==','2020-02-20 05:59:59.581742'),('fnv2j3lg0xtg99vj1f87veupg6m7v25f','ODhjMTM3ZmNhMTRlMDRkMTMwOTcxMTM5NjdjYTc0M2NlNzBlN2E4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6eHNsSkQ1WG1ub0hVdjlzZy1wcDRLRWloYk9sb2RNX25NTWFORzRfcE01aEh5ZVdFSGZ0bXZtOG83aHlCekhOM1hKNW5FTlJDRy1haG81RzdmZVZsaF9RRTd3VV9mT1hrMVBMN212dGo0QVU5c2EwTTc1YmZSTkM4ekRfWjFLIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOTozOS43NTA1MjcifX0=','2020-02-26 04:39:40.753917'),('fo70vv5ic2hcubn5bczkxf5u5r49fo9d','MTAyNDNkZjk2ZGI5NDMzMTczMmQ3OGFlMDZiMWJkZWUzNTAxMDgyZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1cXRzVl9CbUVVSmVORnNUVXJlaV9MS1dTaXF1eThlazRxWWJ1UTItSFp6cjVrR1JkNFJZblNVMnZjMC1VT1F6S2hrUEVIdHNGYm5XUENzYWNhVzJBWlJsQ3dCN2NTelVReDBJdjZmM215ckYxYlRkTS1Kd1h4TWtWZU9PekkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjE1Ljk3NjM2NCJ9fQ==','2020-02-06 11:48:16.979740'),('fq6k79cgryon19ooncv87dx29vexmccg','OTc3YjA5NGRlNTBlMTA2NWUyYjE0ZGJkN2I3MGYyM2Q0ODJlZDYxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5NGIzVktZOXRvRmE5VTdRUUZwSUVCVzgxY3NVeUdEbmhTNmVtNVVBQ1B1bC1BbGhkVVpWUVlWOV9GQ0JtNUpKSTZIQnU2QWl6Y0dPZlMyaU5MZjZXSDNkYjBvUTgteXVRMk85OVNaOUpCZWdWbms1alNrMGx6UnZOYkowLWciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI0OjE1LjgwNDYzNiJ9fQ==','2020-02-06 11:24:16.808502'),('fqvxelsuolz60b4jrzs3yszzw3ts8gbf','MzE3MWRlN2IyNzliMTQ1NWYyNjVkZTdhZTY5MmE3NDYzNjIzZTY2ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0U2dVeFhaVXkya3U0cnZBdUV4RzdyTXg4emQzRnNuaVktcWp0bmFQTFhCazFNMWdQRDlhbjlLc3NqNmpvaHFGQzV6MF9VcVo3V1ptdGl5V0NsaE5NOVVQNmV4RUd1Y3UwbzctYWlGYUlQRUxFSzBQbGZzQV9OXzVycjhFWUEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjQxLjI4ODU3NSJ9fQ==','2020-02-17 12:10:42.292189'),('frjtfp2c2dmflms4ebuwkqplxip15r5c','ZDQxZDM2NDNiOTYyNGQzODgzMWRkYjA3YmNiMDE3OWRlNTU2MDkzYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5Z0FKYUNldWotTHhFQ1hySFc4TjVPT3ltZUk5T0NablhscDBKeUZVWExvXzg2WHo1a0t3ZGNPVUJyNjVic1NvWFBjOVR5NnphM3JZTTFfMnV1SlFNcWJpUFNrbmdYdFVBZWx3Y3ZiUTFRZnRvS2RWQ0FiVTVQeEE1T1p6RTQiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjI3LjY4NzcyMSJ9fQ==','2020-02-18 05:39:28.691304'),('fupeqkh7bck3d33y5bia4zf6bf0oaoqr','NGJmODRiNzViMGY0NjU1MDkyZGM4OGNlZTBmODA4OGViM2Y5OWM3Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWM1FWeG15LUJILXRCdTdQY0x6ME54R2FRQlVIcHBGdkJuN2g5UTNKcWNZNFoyTC1UWWxNVV9kUUZBYkR0QzdsVlhyRjFnLS1xU3NjWVFUd2o0Tlp5V2dHcHE0ZnJnanU0d0dCLXIzTWJVY2pueUkwcjVES3Ywc3dLdHNTZGJmMERMTko2TUJZR1NreHQzYXlQZjlWU3dnbWExVktFSWVnIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzo1NS45MzQ4OTkifX0=','2020-03-11 10:33:56.938498'),('fvodrbbz4ubcxvoi3lik0t1qhisy1xoa','NWYxMGI3YWM1YWUwODQ5NDhjOTg0MWMwNmRmZDcxMzRmNjNlZDVhMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3SFplaEFIZjFqQml2STNRVGpVOVVPWjJPbHVveDc0QUg0VWxHRkt2S2FteUlkV19pVFBaZWY2b3dId3NRZ0N4S1dHdHo4ZmpPdzlER3F1eW5wSVhJWDNBeGpRUDhPcGx2c0Q2MkFRa3RlMjN4U2EyUjljVUVGcnE3VUVXMEtPIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1NDoyOC4zODUzMjcifX0=','2020-02-23 06:54:29.388691'),('fvty69339nyapnh6q3misdivqodbit0r','MTE0YmUwMmY4YjdlNDExMTViZmViMTIzNTk2YmVmYTQ3ZjZhOWQ3Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2UVZPUGQtcEF6dVF0MzEtbHJMNjJlU1JWLTZOdjBFTFp1WGJreUptUHMwTElhZWFkQVVqY2VYaXhUaEdreDQtcGdWbDhPNExhSUtOazUtY0lCS2M4eVZtX2F4eFdBNzBlNHk4TXhsU3k1bkFDQUxvNGc5bGV0Tzc1NW1mMkUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjA3LjQwNjE4NiJ9fQ==','2020-02-06 11:23:08.417657'),('fvwfiij7oel6is634mj7dhzthdsrqvoy','MmI1ZGIxZGQ3NmZiNGIxOWU0ZDk3YWZiMDViOGY3NTBjNWE5YmVmMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXZVE1UTJDdDVyOEFnSFNkTjRLby11QklTRjM1YmgyczFaUGJtRkVhRFE2MklySDFCTzFycG5Ra09IaWZEYXBtcnNJRTZKcm5jcHJmanhPZFNuLVBDR2l2UmZzVXZXQVFPcHhMTlhKak9TUVc4OUwyaVJNdWRzZkNHS3Z2NUZPNi0xUzl2MlZUYlRodXJYbEh4R1FmQTFuekFTeV9oaXJBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo0NTo0Mi41OTI4NDEifX0=','2020-03-29 06:45:43.596227'),('fxrjviauepvh90qyvr4dk5j8zdz1k9cf','MmRkZDEwZjE0OGIzN2Y3ZTRiNjFkNjZjYjM0NDIzYjA0NDgwNzQzMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4c3RtLW1wQ0R2LTMzOUx1YVlyOWlPSTI0QjRQUWhqTEFaU3plZXZ5MHBaeFZxbDlraHRQbjBNZlRXOFBKbFJMMC0wOHNFTmJsb3pzaWlLRVVYR2ZwRzZJRWdhMldwLWQ3MGRSMXplbWNCYjRyRTlib0h3NGd4cDlBTFJPRXMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjA5Ljc0MjU1NyJ9fQ==','2020-02-06 11:26:10.745842'),('fy4ifoej7zdvlj3r0lp8q0jdpl455u5o','YjJlNzFhYTY4MWZhYWMyMTg1YjYwNmI3NjRmNDJkZjFhOTQ4ZThiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItUVVWQ2o5MDRaQnliYTR4MHNiWk14SFZldlU3dFlrb1h2VFA3MTF4STYyVVE1MmZkQ0F6WFY3NkZOZzdRZzR0d0pKOXR4dzFfLVFJYWlTcWhnSVBxNExxbHRESzRTanN5cnNUVzVGdkdBSkJmZ2Ryb25TemtJWUJOOEZySXFyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOToyMy41MzY0ODYifX0=','2020-02-26 04:39:24.539886'),('fzr2eg83f2gdcv54k3ptqm4isz39n97g','NGNhNWJmMWI3NjY2NjdhZDViNTQ4OGI5ODAwNTgzZDgwZDkxMzAxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJfaXh1VlJrMjJWcTM3LVNrcmpNWXZYMnp3UXRSV0E4RklXY3plMjRvR3JFSkp0TXFnTDdjUjQ2dkdxWV9JMzVKaDR4RXlzTDNQV3NOZ3RSVElsZDhpZUhRYlp4YlZkS2k3TWU1X3UtR2d0QjFTRXlwMklnNzFGVG5CdHVFVW8iLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjQwLjk5MTAwOCJ9fQ==','2020-01-27 05:46:40.994475'),('fzzmm919pe3x5lg9ak3v7ag82urus6sa','ZmI1NzMwZjFiYjE3MDZjNGQyN2VmNTNmNThlN2M3YzcwNWMwNTFkOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5ZDViQ0JEOEFqWk8wVWwzenE1TlUwYzg3cEhKaVJ5QVVXT3M2ZzNQMXNGLXFuSTc0WkJTdElNVWw4V2hhdVlxUlVPa0t4cy1uYUl0U0ZQOF9ENXVvMHlZNjA4OUMyMmlhQlpOV1JzVktsNWxadExNT240S251c3czTGdDUXRiIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMToyNC4yMjYwMDYifX0=','2020-02-23 07:21:25.229081'),('g0mm2oolayi6e88648qzcnpiti0gcugo','M2U1OGY5NDM4Y2I2NjU2OGU0ZWVhNjM2YTAxNzc5ZTBiYWJlNWE5ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI0YTBNM21Vd1Y2aElNNjlDN1dlbnBuZFlxQWU0ZUNVV3ZsWkttdnhvQjBveWdJRWpwTVFBRHJRaksyOXdlWTRmckdESHIzT2w3YVBxX2NpZV9aSmhNb2tLZmpVeUpXNzJ3SGRJTFY0VmZMamlVUHZPXzhIOWkxd2ZiNUFxSDgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjM3LjUwOTE5MCJ9fQ==','2020-02-06 11:30:38.511392'),('g1dtshibbdqzjptf9ggio5jb8gpaslcd','NzViOTc1ODRmYmFkNDQwOTA4NDU2NjMwN2ZjMTEzOGM1NjUzZTgxMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUI1WTctRm5xbVRBMDVNLWM0Vm9pVU4tR2llYUFZRzI4ckthQURSNWZ6NVM4TlVHSzlNMzRnLUI4UFF3ZDRLY1ZBSlVOSE4zSHhTYmpRMnlKNXUyRE42X3RuYXRVdDliVHhqSXlnV2M2QnNqUWpCYW9Nd3FXUnJVSThuZjZWQSIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MTMuNjY2ODk3In19','2020-01-29 06:18:14.670665'),('g1lbx28utciroqnlerv3v63rpwt3fijx','MWM5YTAxZDg0YTg2ZDBlMzMwMGVlZjExZTNlMmJmNzczMzZjMTA4MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItbHZsM2F2bHpvUWlBV0dpbUtYUXhMVWVoZ3otTVZ4MjZQazVlOVl1RjZiM2F2V2ctZ2hmQUJQQW5tSXFfWUFpUk5UZm9KMG9SbE9sbFhqcHpOU0hER1h5R2ZrNmlpdDdPdjlWQ19ZMlh1ZXhTVjNfVUV0UFV2RjJaTmtKdEUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjA3LjU4Mjg0OCJ9fQ==','2020-02-06 12:20:08.586332'),('g3u2ielymv6wsacw1tl5h54z5evyczn5','OGU1NmI0ZTA0YzRkMjIyN2FmNTgwYmNmZjgxZjJhMjdhNzExY2I3OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItU2xybWJ4X0NKdk4yeGwwZ2NsdXZ2MkdGTHA3Sm45WGVsVUZDRVFOYlNQamlVS2REUGhRSVd5Yk11bFZKQkhzVFJLMHdrRVIyWE1weEhBWnJJUmMtVm1XZVNERXh4bFU5R1Z4MEhaS21ReF9VdGNBWnhEb29sYXBZOG5TbDgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjI1LjQ1MTkzMyJ9fQ==','2020-02-06 12:20:26.455320'),('g4gxhtkvji4f76g6jf1pjy1wzddd61cj','M2IxNWU5MjUzNzkyNmMyYWI5MzgzZDZiOTMxZGRhNTBjNWU3OWNiYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVdDQyZFA1XzdJX1FkZmRrbk42MHNZVDRaa1M0TUhscm9UUUVteVRsY1ZSSjAtYy1KMnFlRUJUV2ZJLU94OWd2UG01bmhudUYxQVV4VWdpMlBBT2RxenVMeTFyS3RFeFdaT291cWNuT3Q2OTJFcF9zMkszdjQxR3RwSF9JQzkwa19SU2F0MHpMSk01LXpPdDZUMmV3blVSblBKN2NfQ0Z3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoyMDowMC41NDE3ODYifX0=','2020-03-29 07:20:01.545454'),('g5w9ns9f47kmajuaodgsobecozerqrld','NTUxN2JjYmRhZjgzNzUzNGVhM2ZmZjk3ZGQxNTBiNTg5Y2RkZTAyNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I1b1ZrZTFDUHZvVlh2TjVHTkJfNHNpdkdjdlhYWF9tZkotQXA1b3ZQY3FZSjZjV2NIWi1INllzaUQ2NlNEbHVxZklrZHJfZFZWcEtLR1NaWVJhdHlCeUt4WE1nWl9oTUV1SXBmaGhvZ0hhMGc5YkFkaVB1VURZdVVpdUJSN1UiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjM1LjQzNTM3MyJ9fQ==','2020-02-09 06:17:36.438862'),('g72bzrbi1z07c4kyq707bmbf3dxs73qw','ODQwODE0YmM3OWNmOGI0ODI0ZTYyNzI3MzA0Y2M1MzZlZDE3YzNhNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3MUdPUkN5UmZpZ0lzLVZRNUJZZkFKb3NaS1Ntb3BidHhkclp1dl9wYUJDbGVfblNhTmJKVGZEcnJyZ19id1pLUFNZeDcySFVQeGk0LVdOZ0szM0d6Ymt4dW1WZW5IOWQ4MDQ5M2dsYkl0M0tYbHcyTmkxbnNkN2ZsMElqQUEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjQxLjY3MzQ0OCJ9fQ==','2020-02-10 07:50:42.676797'),('g7sdzdgcaz2naiv50afrdewohr9m4k7e','MWM2NTBhMDVhMDYxNTc1NDFiNWMxNDhlOWRiOTEzYjg5YTRmODQ0NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3SHJXcjZ4WHFna1NCdVVPYUl0ZFlSY3JMYlJnQVI2Mk9NTUF4ZnhPSVRWVEFlZjdxYVpxYV9fOHdHLVEtV0NrQTdHcDZBcV9hRDBuUXlDTHRYM2I5S3lvMGtnS3V1Q09qNkxnVUIwc2RFLXlTNlRDOXgyUzl6VWQ5UUpRNTQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI1OjU0LjExOTM3OSJ9fQ==','2020-02-06 11:25:55.122703'),('g860wwfsl904g6qklh1kra4pqppm2dvr','ZTYxZDY1NDUxNGNkYmZiM2Q4NWVkNjc5ZmZlNjAxMDgyYmI0MjA0NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4VDQzOExWbWdXbHBMcmcwTjRpVkZTZ2xNYmtiMU9NTmhFbk9tM0hEemFBODMtRjU4NHZYby1WX1AyUHRQQ2RTdXlidS1KTGxESWpzUWlzUzE1ZDFMZ3RxMDgwT0dLVEtleXcxSnZ1aTlXSWN4cHQzQmMxV1EwZHVOcmgtZFRCIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDozMy40ODM1MTkifX0=','2020-02-26 07:30:34.487034'),('g8f67od624l3hbwpf7o7rex40w18zfec','M2VhODgzNTdmMzQ2ZDkyMjQ5YzVmMTlkYTYzYjFmNWMwMDlhMTNkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5VW5kdU5Nc0RlZTRYUnVJTGZQdnB3bjREZFlCNVBfdVo3NlZnY2FUVnRkSjR2ZEdMZk5QdXFSRjNGZzJBVzQ0YmQ5R0pMSmpDdzlVR0Z6RjlQVF8tX0ZXY09Zd3BvYkt4TzJZN3h1djBTX1IybmZaeVpRSWRkamxfVTQtQmVsIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo0ODo0MC4yODk2NzIifX0=','2020-02-23 06:48:41.291241'),('g8hus0txyuzb9skgk1egvb211f6shg5s','MDY0MjY5ZmU1NDQ5YTU2ZDJhNTNlMzdiZjNiMzc3NWQ0ZDc5NTZlNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5VTJZYmpyRU1SN1Q1al9fY3RRUEhqOWY1N3JQZVA0Vi1WbjBxeGRoSGxpM3B4bmlEcUlabTJrTU9NS05uV0xfOEhrNzh4c2VhTnJ1VGdjaFRKSng3RkRTdmNCc0FpTGZoY3FZcGhjNGJQQ3BVUWg4N25ZTHp0V1pMTXNxLWMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjM0LjQ1OTc4NiJ9fQ==','2020-02-06 11:50:35.462994'),('g8k15o4hxk7dlh7dubg3gl016arqmz0n','NTkxNWVkZTE4NzQ5NzY1YmFkZTgxNTU5ZDNjNmZmYTg4YjJiNDVkNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfVmhCMkRUbm1rSGR0MlBLbDhScW9FeENCNWVjeVVKckVXQWxJRW9CZDdfdXMwOTZQQk5KQ1MyMTkyQTg0Mm82Z2RXWWppQjZDS1ZIMkdCWlh0ekVLWWNibHJMTlpzbGEyVjk2RVBKZW1VM1VhYXhMTFF5VUtwcVpmV18yNU0iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjM1LjE1NzcyMCJ9fQ==','2020-02-17 11:10:36.161090'),('gad4u4y3wndjwsf5jds9rkdjhp0trr4q','MDFjZDJmOTIwZTcxNGVhNmFlNDFkY2U0YjgyMDhiOTQ2MDYxYWVhMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWOVcybDFncU56NWtSVFRlNW95OGVCVEtiVTBaM3ZldmtkejZiYmMzV3VFanRJckVRTVdvaVFpX1RDMk11cmhVZWNib3NtSm1VYUl1Y0tsT0Z4UFRaOXA4MVRDX2FYT1ZPNWh5dU1ydUwxYUQyWU5meUM0eXFvNTI1ZW5NRGQ2dFFIU0haeE9sMVNrRExORGRzcVY1YU1xdFdRUzdRYUhRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1Mjo1Ni44MjIzOTcifX0=','2020-03-29 06:52:57.825844'),('gaeu8y5jy3oytmzzgay263m5gaqi7y0b','YjdlNGE1YTE5NjViYjEwYWQwZGY0ZmE2M2M5ZDhhZTlmOTRjY2EyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4b0RuUDBOVndnQkhYM1pLRnZQTW9Db1U1d3ZnbjF0SXhWX3JON0RPZHlLcTdfRVEyMFE5dzlpaGJTaHVCbHBtX1lVZFY2V3lhZDh3aUpBR2tUdWE5ek5IUTZINkJMUEtoZDVaMkU2Vmg4RnFrMHJyR09NMTNWaDR1OGJ2aGtnIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDozMy4yMzQzMjEifX0=','2020-02-23 06:00:34.237750'),('gchxzv9jo8lptthhyxfro5bi73vgknoy','Y2NiNGZlZjc5Mjc5Zjk5NGZhMDZmZGYwNjk1ZWJiOTFlYzRiMzNkZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0bG05TkxmR21ZQ2J1Szc0Ym5RVV92YjN5ekNGdmZCSnF4MGlDTmhBVHZuQ19iVFhLbVc0YzdCOVRLQlFURmwtcUgyZWJVRm1WRTEyWlBiV291a0d4SzRPblJralJrelJkTHJ2a1VNVnVObDYzU0FTLUl2VC1NSGp6cmZQZ2MiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjIyLjU1NDI4NiJ9fQ==','2020-02-10 08:00:23.557678'),('gcpbocd43hae25u64pb1qfjdzrrx5r7h','MjI3N2RlYmVhOTFkNTkyYTVmZDc3YWJkOTQyNjkwM2FhZDM4OTE3Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6QWNfejZnbmJ6T1JJMW5rUXkwQ2Z5R19odzI2NkkyVm1ITHMzMlZJSU4zQkZkR216Nmo5WjM0TWwxZzV2WEd5cS15cHo1WHoxRlZZQ3ljTlNCMFRtODl2dnJrbk8zckh0RWt3WDdIQ25QU2Rya1l6a1ZYY0cwS2FYcXVXZ1EiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjQxLjY5OTYwNiJ9fQ==','2020-02-17 11:10:42.702943'),('gd7aarivb73nhfbr98pbyrsilqm4r517','NDg2ZmM1ZDJlYmM5NjFhODUxOTM0MDE1OTdlZDNkYmQzMGJmY2ZiYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0I5X0JwUkNTVFczYkFqdHlyaUtPVnVkOGVlWnBUNFRKdUpSUEtXM2xpWU9zaldLTDIxeWFVRzZra2JrVFFlR1NLZ0pCMU8xX2RWS0RtZnkyTVZYanFMUUUxSUVlaDVrcHVRV0lGczJ3UnV3VDNGYS1IVThldUlkcUdEZVBnRUlNIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzoxNC4zMTk2NTgifX0=','2020-03-11 10:33:15.320856'),('gilvada8v059zw14q96p8r68c5h815fi','NTYwZGNhMGZiNDIyNDc4MjU5ODgwMzY5YzE3N2NiOTg4MGFlNmFkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwWDdYdDNqRXJBVjE3aHpIbXNaeDBwNG84cEdqR1pGaV9iYjFtLW5TNFJkYm1PZVpaZWtOcXdERzdoSUxybHZURU1uc280NHRXSXlCSmJBRlN6Zm9uV0N6NlRlREczV0dYZF9FWDBpeVFlc3VJMVF2Vk1ESlhXRkpic3F0VE0iLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjI1LjM2NjU1MSJ9fQ==','2020-02-16 03:59:26.370129'),('giukbn54v74spf1s6ua337qg0an640mk','OGIwOGI0ZDc4MGI0MzMwZjVkNjNmZTBmMTBlNDMzM2EzNDI2ZmM4Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwb1VlazBQQUdqSU5veXMxa21wVXlNdTk0QV9yaTlaaVZFa2tkOXl6S205Nk42bktXODlSMDViVWtrV3FtT3ZfN1ItUnVjVGZaT3JYaDRuQVRGSE00TGc4d0F4Vk9RVVR5NlhpR1ZJX0ZRTnJPSEdNRGZtcTZLaUdQdmF0WmciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjAxLjcyOTc3NyJ9fQ==','2020-02-17 11:10:02.733447'),('gkqqb43alfmpki3f7t04m2i1li501zfh','MWE3NzkwZDg0MGM4OGVhNzMwZGY3OTUyZTlhZDk2MTJiZThmOTVjNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3clRac3A5dUVLX0QyNlM3Z2kycnFuMXVtQk5SY0pQNmV0X3dITlg0RVpObnAyUF9jTnJPVDJiRzFpQjJCOHZoNnpyVzdCT201QkFfWDJVdXBnOGlCX2J4dDl5Q1BaMDYyVk1kY1U2N0xlUkJIbUtLc1FjS1FpMUxuMkY0c3NSIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMzoxMi41MDU2MzkifX0=','2020-02-23 06:03:13.509141'),('gljtv8lmvigoy8lpmoyz4gz3qnc7z1y5','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-09-06 10:06:28.595094'),('gm8znr4d6ts1iuwjryf80gtv7dek1xdj','ZTQ0ODVkMmJmMDRiNDY4ZDk4MjE1ZWY3NzlmZWNlZWYwMWQzMTFmNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNkJfcVFCQXlMVmYwUllob0h0RDVpdTFqVnlabkMxWmtwNkp1NFV1RFlhYmFxUHdqMTZKUS1sUXB0bmJNbGtsdWJuWjN5YWE0eDdNTDJmUThrNVEycG9neHBWX0MxcmdCb2pvaDBfN1lkeGpxVmx5OVZHeHJoT19kaHVOYlJ0QSIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MTcuMTg3MDE2In19','2020-01-29 06:18:18.190468'),('gmbpz2fj9vsisduyh1bxwrbr141121nq','NDY5MGY1ZTFiNDlhODg4NmJmOGM5ZTYzZDRkNDViNmY5ZTQ4YjVlZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzVjhTMm5FaVBpZWpUdjI5ems4OWFPRHktUmhxYkpNTVhOQWRlbDlwRTkwQVJxSjltNmJrR3ZXSGZGUkwxTzlnS1lkd2I4VTZxbzlDM0gxdjM5X3pjY0FaZDdLLTYwU1ZOb3RuanluNHN3OHBRMzRESVNtMEVpcXBQSHVHUmsiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjMwLjYwNTI5MiJ9fQ==','2020-02-19 05:34:31.618288'),('gmec22d3ocwpcv0olv4zkt68ugmw2c9i','NmQ2ZTk4MDA4NWFkNTVkYmQzM2QzOGZkMGM0MDljMWFhODUxNzA2Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1ZW9wSU1QYmdFUFktY1VmMW50YTIzNlRnMDE3VUpWWVhRalJ5SnJXS3l6MTdxZGtqWGRVRlNsLVdYNE43TEQ4MmdObWlsT19nMFFicmpoaE9Icl8xVlFrNmdRUFMwMURxZi1GME05d2ZHbGhWaTNwa2ZsSHlGU3BwaDVFVHciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjExLjY5NDY4MSJ9fQ==','2020-02-17 11:50:12.698243'),('gmptpcnnm6mp2uhqiy8fbidg32kxvflx','NDc0ODNjYjg2YjFmNGMyZDJjNGQ0YWJiYmZiYzIxNDNmZWM1MTRmNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3VTJWTkY0WFZSS2VQVkJ2UUw0WmJlWkotU0QxS3JWeFRNZk9tVWhGbUZCeTh3SUR0b0xwc0xQMUlxdGRPcmNDaktUXzlPSkF5LU45UVIxWld6YWpDcGpDUnRyTmdjdGhUT0JYazZIbXd4cHl3emZtdTA5dWRMUXJQYmdpQkkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjA0Ljk1OTY5OSJ9fQ==','2020-02-17 11:30:05.963248'),('gmwtimt48k9ve0xq719zqh0i03tfq897','YjA2NmU2NjdjNzQ4ZjM1OWRjNTcxYzE2MjliOWM1NTdlYzQxNjBhNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4dlgzOG1wUk9QNXF6OWVDWmQtTTZUR0RoSmVqTEl1Vm43aUJlYmNzTGxSZGJoUFpKeEwzRmwyVVhsU21MYmhMLUlyQkdiRGRCQ0RMaE1fbVU3VzhVVUV0eTUzTGhhNm8tTDNGQ2luNnRGc0tjNEdTcFlUSXE1N3dNV2NieXAyIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMToyNC45NzY0MDgifX0=','2020-02-23 07:11:26.979239'),('gndd3eepmy5zkcmdz1fci2yf6imx7axm','MTgwZmFjMGNlMzY1ZjI4NmM3NGYyZjQwZDQyNjk3Nzc2YTJhZTMyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfcGl5MmRYR0NtY28wZGFVbzBDZVlybmF0ZVcxMjZEZVR6RDN4aGl4anN6WGx6N2NKOWV0RFQyeno5bVFNY0RQR2NXV2tFeDM3Z1FMS3ZMdmwtNzc5Q0I1YS1VUllRYzhvTVhJWkE3MndPQTZ2YkdVOXB2SEZ5R1doYUs2aVJzIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToyMDozOC4wOTcxNDUifX0=','2020-02-25 08:20:39.098573'),('gne010zg7bdr5xgwbymy0oms9woenw9p','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-01-26 13:27:32.054782'),('go9lp6qflg5xqix1plsq864afzxfj8l5','ZjVhMjcwMTYwMTQ4ZmIwMzlmZDgzYjhhNmMyYTNjOWMzMGE3NTc2Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4MWlYV1NJU1pTLUNkOE8yNUJ3Tm9jX0JndjB2UVFaVHJNUzk4Vk9fUkxKM29DZjdzYUs4Q1FLM2p1TlJ2R0VodkpMOV85REdjX29kdTU3d3FYdXlBOHAtLVc3bUhaT2tocHNKM3cwQ3dTM0hYT3FaR0llYl8wbFVPUVJLekkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjA5LjY1MDU0NyJ9fQ==','2020-02-17 12:10:10.654133'),('goqrpixug6hkejwoswqwqwlq1653p3xc','N2QwYzRmMGZmNmE3OTBmNDAwYWFhZWVjMWEwOWMyZWQxMThmYmE1MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyYzEyUlUzUnFudmllMWxudklZSXpWUmQ2YUxOYUk5Zkt3VkhBVnZNM3FMNWhYZ08zU1RiNngwNmRiaExYTEczS3pWdHo4bVpSRXI2ckpndWoySzQ5ZUVJQ1JYM05nMFFXMDhhY3BGVld1ZjRxSnlfR2VtekhNakVqT0RZRFdFIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozNDozOC41NTM2NDUifX0=','2020-02-27 07:34:39.557051'),('gpeyyhqty74y72f715qesl4eek78dy4x','YWFmNGQwZjU2ZDhmODYzY2Y4NjUyYzA3ODczZjQ1Zjk5NzZkOTU1NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVQnVfWU9rLVFQbWVtNkNSS1k5RHpaMWZGb1BWb1pyY3dXdlNkclkwN2lDVDhLb3FPRzNzZm04cXEtYXM0S0ZiWmxyU0tJNVJVQzRyMTQtU2NQMFRfeXNiYTNLVi04cFpndkZUNzkwNmNTNURTQ1NsbXJEQlRUX1ZabGZLR2V0VE1TaDNFZDVaUFV5MnJDUXB0MlZiQzVJVUs4ai1VVnRBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxNDowNS4xMzI3OTcifX0=','2020-03-10 06:14:06.136376'),('gpfto2ynbz19ukvnrq89vlryzh5whxvb','ZTI2ZDZhYjVhYWE1OGZhNWNkNTg0ZDc4OGI2Yjk5OTQzZGQzZDNiMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3bnh4eWltbEpfcTZXMkdHZ3dfSVZCc3l0d0M0VXhnTGVmaV9xMVo5SGJQNGJ0b3J5Y3NYZk5qWWZsWjFGTTIwdVhacXNFb0FuemliZnp5bDNwQU84TFdmMDVuOXpuWnBxU3lfS1VYNVhjWEtuZ0hfWDMteUZKNnliaGNxaGFfIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMzoxOC4yMzg2OTkifX0=','2020-02-23 06:03:19.242141'),('gpxhlozr8b13kchppdpjuadm8u6ebeet','MTcwMzM3OWU2YjYxMWIwNWQyMTQ5MjI2NGJjOTIyMGU0NTFkZGVhNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYbnpJeGVFeGhTVHpDaDB0bjNJY1dVamJQVGhBSDYxTFBGX2NtWExLajVSWlFkR0RwSmh1MUM2SWtnVFZieXRQQW9MNlpSRmFUNTdGS09fYU1LTE9jTGpYd21XTTlET0FRQmJ6Um9SWkxVcDVady1JWnMxNkozM3JaVkN3SmNLbnI3Z3BXZ0ZtVko0ZTdsWThPSzhfZE9YYXd0QTM1YnlBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMjo1NS40NjA3NTYifX0=','2020-03-10 06:12:56.464417'),('gq759fto4anek797l8itadlm8k42qznq','MmIxZmM0MzNiYmUyODU3ODQzODBiNWIzNzAzMzA1M2Y4YTg0ZTUzMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzT1k0Q1h3WTI1RzhsSERLWHloSm9USUQ5TXlNc0VoQWZaR2NhdWdrNzhMS050dldxTmw3MmJyTFA2THhZWkdmOTdyS3BKTEtCeno1aXEzaTd2WnE2TUcyTTNaM1YtVlN3eWlaM1F1dTBQREg3cEM4aHluU1pHT21HcVNVMlEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjM5LjMwODQ4NiJ9fQ==','2020-01-23 07:07:39.311910'),('gqj52t0h5k9jcuqgccfeyzh7td7p7ay9','MDVhMTkwYjQ4NDVjNTNjNjZkOGFmMDE0MDc1YTk1NTU1Zjk4MGE2NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyeVpFenZsZnpIOTAybG8wQjNKQ3pNQUdBX0lwRWFZRFRMX3hpTng0WnA0RXhhcGs0U3JubUQ2NUhTMVRlY2o2N3I1S1Y0b0ZZNHE5QmdoSTJDUjVDQUp2Z3ZFRmVWY09WSEphaVZBVWFwNmN2LTdhNkFzMkNHeTBFVS02UFEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjM2LjQxMTg2MCJ9fQ==','2020-02-17 10:50:37.415360'),('gqk9a8ksvkw8dncqytq7cxq38jnzfruz','ODJkMTBmMGNmYmUzNGFkNTk4OWM1MzM4ZjE1ODY1OTc4NDc3MmMwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4ZWItbnliWXpGLW03cmxSSEFFdUtPU0NXcm9VSFNuQkhlYV9NT0RLek8xQnNnSEZHSkRadTBrWXVCU3NkSkVHWldnMHpTMVpDVVpxTVFCbGJWMEdpbFdGUDIyejByUnVmbTQ5LUE0WkVmb0ktczNzZk9aRVR0aVJqaFhMVnciLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjA4LjM4MTQyNyJ9fQ==','2020-02-03 06:17:09.384730'),('grrwqcsjjjnfwmh40mnu7cj0mxcy2v68','NzAzNzZmNDZmZTk1OWE1MzM4ZmNkOTdmYjA4NzgyYzAxNDcwOThlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyNjNhZEVsUWFWUGxleDJmNjBfNE1wdzMyWDg2SWc2ZEM4TjZSWkxOSWx6RFFlZUxvbG1NUmk0RkJzTmtQZzAyTG5NVnhfU1FRcEw1ZWtwMGhHY0VBT3FSWk5MQTVQQ0ZWcF8zT1Qtbmc5V1JXU2kzUDBmWU83VUlIS1RDaEEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjM3LjgxMjY1NiJ9fQ==','2020-02-10 08:10:38.816200'),('gs031wn911ukue4d9hseet0afnu380ic','N2E2NThhMDBhMWM4YjMwYzljNGU2ZmJlMThjNzU0OGJkNWQ0ZDkxYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfZ0J0Z2pBcEVnbW92QnN6MVJTSkNUTDFTRE1tTVBXYUZWdWxrM2NtNkNxZUV5N2lvQTZZX2JQWnR1eHRIMV9pN1RIdG1CSTJhOVJ2VXAxai1hWndBdEZTdEZjNkhIYTZMUGoySGJjZXpWeW8zdGl2RG9YYzhua2FXejFoTG8wIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzoxOS43MjI3NTMifX0=','2020-02-27 05:43:20.726183'),('gses438atjkllq71pncwdkzzabf3uk2v','MTBlMzcwMjAyNWY0YWU4MDVhNGVhNzlmNmZmZWEyMzg3YTEzYWRmNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6OVE4ekkzRnFQY3A4SFRzVWlMRE8yN2JWUGRyYXctZFhwRjVUMC1kTEp4SDRrd3oxak9RMFlNU3VCZG1TUEJPWEVjY2oxcERXaUdJal91WHBlN2hiSDFhbXdoLUlIOG52aTRPcHYySkc4aERhQ1dJQWJoLVZVY0lxOHYzYzJ2IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozMzo0OS40NTczNTMifX0=','2020-02-27 07:33:50.459887'),('gsip0kxuiuio4schzmek6q3qgvq86sqx','ZGM3OWU2ZTgxMjAwZTRiY2M0ZDU1MTdmYmRkMjM5ZWQzMTkxMTRkODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3Ml9tOU1hSnRCZ2ZLaTA5MHpUdWZPWkR3QXNHajZrZVp6Z29Hc3N6NEJlZ0pldGswZW9QV0k2cFc4THd6NVFHcjdKbzktVTQtcDk2cDdjcmVkOUdVMG5GNEM2enBCUERHYWJiZ3pEcmFyU2FycXZEWHk3TzNfNUczcUItYUEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjMxLjkzMTkzNyJ9fQ==','2020-02-06 11:26:32.935249'),('gt2wu58f80c7vlql1gveaqoqg5myoe6v','YTUyODVkZGM1Njc4NjRiNGZiM2VhMDI2NmZlODI2ZDBiODUxZmZhODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwc3k1cUV0MGtNbncxMUtxVzBMVnNqelNJaU45dFVFX3lDS0Z5eGY0eldmeXQ1T2hlR0k1VEFXYkZSd1NMYzZxN0EyVVhuN1JVd1JVYVZXQzJKWWc0VmoyQ3l3Qjh0c3pwekk2b3RjcFJ5bjBMTmNpZVlXR3AtMEJoM192WVFWIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODoyMjoyMC4yNDU4MjUifX0=','2020-02-27 07:22:21.249428'),('gteneukjb69ui8r3yd8ambhcyqt86j2e','YTk3MjU5ODc5YWRlNzEzNjM3MWI1ZTRkZjg5MDk2NzdiZTgwZTQ0Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYNDVEMEllSHN5WjNCTTBSTkgzTUxRVkdBMFFETEpMYm9HeS00SkdHY1VXeWlkMGhLN1NTR2toNFE2MXA1SmUwTzZYakQ3c25ISnlEUGExZFFRaUlKYUNQSGJVUmJrSlA0clBDVzd4UVQ4dUdyRjNEZHItUFd2N0h3N3NZeUx3aThxLTdGRW1kNzV6cTJTWmt5cFlpbWQzMXB5Z0NJOFR3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MToyMi4xNzg5NzIifX0=','2020-02-27 07:41:23.182526'),('gu7sa1msdlanas5a5tczrne66mc4hswb','Y2JkZWRkNDA2NzA3MWE1MmEzN2RkOGIyZGMwMTIzMzk4NTdkMmE0ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I4RmtfZk9QUUJCbTcwLVNSTXE3VnVaUUZOT3BfYjY1MTlxOHdiTmZMYi1RZUhqSjYwNU1ObWZzekRGWlRUcjNyZHNwdzRvZTdXUUtSTUx0cXU1Q09vMk1JSkcwUGpoUUVfeXdrN0d1WGNXb3ZYLVJyZHl5eHZaV0MyeFJlODgiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjMyLjQ2MTkyNCJ9fQ==','2020-02-13 07:50:33.465218'),('gueu70f8s8oqstucglz8gzl4jxfy2hnu','YzJlNDk2MzYzZjVjZTA5ZDNhYTRiM2I2NzliYzM3ODZmNGYxYmE4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUJfSnA0TzRJRk43Zk9fbWlzZkRjekoyekh4MmJXWDhYLUdiYm4zNmM4aWY5WDR3UEdOcUNpelloOEtfekE0MjhqbDdCeHJhWVFPRmV2d2p3alEydkxVNnNKQUF6bENfaDI3YlRlNjdvOE5ZLWExbVRKN3BLV0lYTjZwUkhHUSIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6NTAuOTI1MDM2In19','2020-01-29 06:18:51.926158'),('guq99v86sfdjs0jrmrf2ni403vo6fblt','M2FjZDY0NGQwOTJiNWYxY2U2M2ZhNGNjZjZmY2E2MDU5ODQyZWY5ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4UFBRaVlvVl93TFk3Sm5DaE1GR0hmVHY5X294enljZWI0YkRaQnNaTVN5RmI0RV9zTllha2tpSzhyYlF0U2QwU2Q5d1VzRERBblNoRXNKNHR0TlRsdlRIdHRVTzVKV0FiQko0dkxydjVzS2dPMDRwVS1rWWhNcUl3bTZmemciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjAzLjcxMjU4NiJ9fQ==','2020-02-06 11:48:04.716140'),('gxabqq6twak4hnrtncop9u3l96exwglx','OWEwNGQxMjQyN2FjZTgzNDAxMGUwMmI3MDIxNDc4YjBhMzkzOTI1Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXWFdhc0RtYWw0dFh1WjBTU3ZsYnUyMjYtNmdnbnhaclV3ZWhoYzBWeFBWYVlCNDZFNDFWU29feGxJRndLUC1QMjhNY2NITWlCb0RzWnUteXVQOHo2YkdKTEItLXhZYWFYNzJtdGFxVmx2aGd5TE0zQWhYaEFkdXc0T2xNVW1RRmRWYzNVNXBUVHN3WVRCSEE0NzZUM3Q0VTR5MDRDMzdRIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NToxMC4xMDA2MTkifX0=','2020-03-05 10:55:11.104278'),('gxas1lur6a99a68uqycxl885zjaswyeq','MjdkYjU1YmEwYzQxNjk3NzhkZTAwYTY0MDcxOGY1ZDRhMTM3YjZiYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXazd6ZVlhTkNWX2k5Qzl0VllJNF9FNEtiVmJqRXRWUG9BOFZSckpkV3UwZkxXN3VxeUVnSklHOGhpZ1ZSdEstVXQyajVreUE3dEFSWVRlcmJaVkM5SEpMM2JwMXp4UmVUVFNvY0lEanV0dHFaZlMzaWJjcTVLVUVtb2lvT0E2cVdyQWY1UFZ3Z0xsUEZ3dnQ2ajVCWGd0ZG4wX0NLT1hBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzozNS4xODk3MDUifX0=','2020-03-11 10:33:36.193139'),('gxfjqt1ezvwectuoz3rws3xhu6w89nk8','NDJiN2NlMTgzZTk0NTE3ZGNhMWU0ODdiNTFkNDMxYTczNTAxNzJhODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3Mm8yTVVTSm44cEZfVzlsaWN6TWdMRVdvM1NfX0lxNmRSU2RKMDg1WHhuZ21wWDZRVGhvM19na0ZPVldpYll0QW9NbFNseUZSc0NxR1NFYWdQLTlkRnFmMGpsbGw2eHo1anBSM1dWYzNRNXE2MU92cThrRWtzQ3Q3ZmJDYld0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1MzowMC4yNjk4MTEifX0=','2020-02-27 07:53:01.273127'),('gyw29va087do2zojgdxski9vq2b4wy1r','MTA3NWE5NGU1YmM0MTE3ZWI2OGNmZTMyMjY5MTUxN2M4YjA1YTgyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI0YUxFYkRWeDVRejBLdXoybmhWVDFCRHZiQXVkTzQzNF9MMVV1blhRcHhnZktwMkczMHNrMHZKV0R6STBRbkIxU1V4OFR2WVlOWG9Na2xnUk5yeG5UQk9wN3p3VmlzdUdZNUxWQXh3bG00ejlmbTdPZldPdkxrVnJlNUdQamsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjI4Ljg5MTc1NyJ9fQ==','2020-02-06 10:57:29.895381'),('gyxbru8f3ommzivo200pqllu1d68adtx','NjNmYjMxYWVmZGVjOGZiMjFlMDZhYjM4MGE0MTJkMGMxZWY5NTU5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIwV3lEcm9GSl9RMVpJSWRSVTN2Q2N3M000R2pBUDdGWlh0b2RPMkJyNkVYdEo3ZGF4VVJfZU1YSkNPTVN4SGdXVVNXLUtJQlJaM1NnVVBFTk81NEk0ZEdYVnVBbTN5NFNzX2NxdVA0VzVLX0RxR2tCMW0wXzB4RERVRDMzYTAiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjIxLjE1MzExNSJ9fQ==','2020-01-23 07:15:21.156872'),('gz4aavdf74ifeg2c2j2z72cmney361sw','YzE2MGY4OTBiMWFhNGJlYTllNDk2MmY4NmQ5NWFhN2JjMDRiYTA5NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItMm94UkJOWHlZX252X3NGR2R1WWZuTXYtWV9Qalo0cS1YQk9mTWY1NEI0ZmMtMUtXQWlMSUVZaG5KWXV0MlYxRU01R203amxyLXRjcG85NEJsZjNVd283ZmxfZTRucW4yVXEwQ05ERjY2TFd0ZTZPM2poUjYybWxLdG9QODAiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjI4LjE3MzI1NiJ9fQ==','2020-01-28 05:38:29.176743'),('h0vaue3qa78bmni53lee4mjk9rsdzibs','ZDhiYjc5MjIwMjJiNWI5OGJiOWJkOGUzMWQwYjA1ZDQ2ZjJlYzIxMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxSGptWkh4Rk9EOHh3c2J5RjlVOFdON3Q3U1ljOGlfd2F5ODR4cmRYLUNLdlZQYlRBenUwVDQxc0Q1Zno4NU9fbUYybmhUZ1dLVGNIUVFzU3Q5UE83X2RQRnNPQ0xEamZvaG91dW9fOVk0TkxReGZMdjhMZzM4V0RvZDdTNGVRIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOTowNTowMC43NjM2MzAifX0=','2020-02-25 08:05:01.766983'),('h1wucb65ypnm0tolif9efy97jndsfxhv','ZjQ2Yzg4OTMzNTZhMDcwZGVhZWMwMTZkZDdjYTliODQ4Mzk4NjJhNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ4V0QydlhVUVFOanl6cG1NTnVuWFYycndLLUxveTJDc0o1X0JCbW9zQWVnMGFfa1RsWV8tbncyRHdwM2dnek52YnNaOElnYVVTTkJFb3hkOTFiOTU1THhPOWF2MWpPdjNJRm1wTEJMME5vNjNqZnRMc0JNZHlTalk1WkVkSW8iLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjIzLjE1NDg4NyJ9fQ==','2020-01-30 06:08:24.159382'),('h26o0c1b88gkyyaliqbtxviwiy49nrfa','MDY0MDk5N2FlMzdhYTNjYTc1NjA0YzE1OGNhNmU5YzcyYTdmOTAxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ5ZHlqZ0NHVFpUU3lrdXNoSXBxQ2FCY215Rkl2Y3hfUGFMN0RzNGdRUlI3Wm5pcHlLT2M0dFV3aHNTbUJoS2o3MXhDU2h1S2JQTXpXS1FySFc1ZHlWd2F3MGU2c1V6YnROa0NYWm54RVRvSktGVEpCYkNacHU0SEZ3dG9XYWsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjU1LjgxMDY2NiJ9fQ==','2020-02-06 10:57:56.814053'),('h3eqpe7k03slcyevc8918pqupg5ltb0g','YWE0MmIwMGU4YWM4NmZiMzIxOWZhNDZkNjU1MTRkMTMzMTMwZTU3ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3Y3FsVDZXa1Zpcko0YVVZamNkS05JeTMwdk95cnJsMFlZTXFKaHFNM2FrZlZaUzNFRXdhWjdmWjEweWtKOWVkbGtXb2xKYXdkM3RDQU9oakdCa1hUeXl5ODlZYnhTRlloRGUyX0xKOWNSR1pWVzA3YlRTcVZXTWNEUjZHMWF6IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxODo0MS4wNDkyNzkifX0=','2020-02-23 07:18:42.052781'),('h3vli8ug1ehrrtqvepcuibkzmhzg94gq','YTI3NzQyNmJkZDlkOWU0ZDhkZDEzNGQ3MmVjMDY3OGYzM2JiNTdjYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4UFNCN0NnX2dKWjVtSzA2Um9FTEVtMGVfNFd6aGR1aUFhZ0JJRnFHNElhbHZhaHFFelRqcjBqajBiSmN3OFVUQjYzVTZDeXpuZlhfalFhV3ZQY0QxbUdFMXRqU2NETm5JY0ozYTR3WnFWeHRzLU8xMFFkcXBEVno4TzA2Y3MiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjMzLjg5MTEyMCJ9fQ==','2020-02-17 11:00:34.894643'),('h3xdcbqdhe873surgc9b2igr19pvhwvk','NjZmMmI0MzdiNGFhM2QxODM5Y2Q4MWM3ZWI1ZDRkOWM0YjY3MDBjMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5ZnpvWl9fQWUyRXBrWjdJNDZrNFhkTnJaTXZtSUhlMmQ3XzYwZlhzazZvcUlONTcxU01HeVo3bnJKWGFRRUk2ejFNN3BuT1J6NGZaSzNNU3Bxc0VYYXpYS1RQdDdXSDVnd2RCcXR2MmNUd1pWcjNfVTNSakNZV0lla291ZzRHIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MTowNS43OTIzNzQifX0=','2020-02-24 05:41:06.793401'),('h4w23rgvvr6bib4ds8cjh4lbs0wj4t05','N2UzYWVjNjQ5MjI4ZTAxMjkzMzZkYTQyYjU5MTZhMzc0NTQxZGY5Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWQ1VwREhrTmxDc0hpdGNSWTYtY0ZseFMyM0hwOGdveTJja0JITExyaVlPVnk0bTVoRnVSV3pVNW9ldUtlNThyTC1WUllMLWlUbmx0YllhV0Y4c0VOZXJfOFFnNHpqaDZZeVNDR2Fyb3ZkOFdDZzhmanRjQzFfNlNvWFVHTzVMS3UtMV8tOC1OVWkxSnhVQklVLUVhci0yaHN5azlnVjd3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoxMDo1Mi4yODgzOTAifX0=','2020-03-29 07:10:53.291862'),('h50qi3f3wu5opj3otuset8pd6pbfldtu','MmYxOTdkMTQ4ODkyOGU0YmNjNTI2NzQ5MTRkZTNiZjJjNjUzMjY4NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzMWk5eHFYdE5oU0NtRUg5M3g1Vkstb01Nak9zZk5zT1hpMC1XbTd2Q0pyQ1A5TGNQaWVuSGp0LWNCNXBKeDBjYV9sMHBpaFlRVlFRbmlONEpLa2Y5TVRwUFN2c0JQQTVleXZCalpKR3RkYzhHa3R1Y1A3NW1NXy1XQlR3YVUiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjUwOjMwLjMwNDcwNSJ9fQ==','2020-02-18 05:50:31.308179'),('h54n0lvb80uunwwo01ts3e64penvzinl','ODBkMWJlY2E2YTlmMGZiNmQwOTkzZjEyYzY1YWRlMDY5NWE5YjgwZTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIiwiY3JlZGVudGlhbHMiOnsiYWNjZXNzX3Rva2VuIjoieWEyOS5hMEFkdzF4ZVVoeHQ1ajRzdTBobGlQRy1fb3VvdFNobXdtdENIWWtHUk0tbTJmVW5WTHBBNVdFVHVvcURMeE1tT1VsZEIxUUJKUXlfclA5U0xCbm1XUVpzZk83d1hoRUM4YzY0Sk9HSGpUR3BSSF9RUGk0LURUTmNHX1FBWnJ6a2h0Qm5fenZZU3JqQWlSOGtrTC0xRmwzdUpIVFNUMks2eFI1YkY3OWciLCJleHBpcnkiOiIyMDIwLTAzLTA5IDE3OjMzOjExLjcyODYyMyJ9fQ==','2020-03-23 10:33:12.729174'),('h5dtls7cck56c4aoqyl42fa22x985o9v','ODRmYzEzZTllN2Y2ZmEwNjJhMDc1NGM1NjMyZDI4NDUzMGFiYmViMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIydFBwMExHQ0pGbTkwRWc3WFZUVUlDVHc0RXlqb2VfazVmZDdJN2VXcHg5RnhiSWlRVUZjWWhlWkVQZXhqLTFGTGp3VHBMTS1CWkNRRXRrcXBjRXB4U0Itb29aM21ISHYyQlo0VWh3TVdFeG84UjlhRkpiaGRsYmN1b19fMG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjI3LjcwMTU4OCJ9fQ==','2020-02-17 12:20:28.705059'),('h6iw5rxuopt3fgcxfro0593jahhqfg8a','N2M3NDQ0YzQ4NWMzNGI5YjQ1YzIxZDFhZjM3YWU4M2RjZDc1ODAwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJfY1NvT2xlZFZPcGk4VWdSUlZ2Z1N6Z1MzU1Ffd2poUjFBbk5ONUl0VDJVZS1Ya2dNVDM2N093YlFvXy0waGJySFE3UGZ0cGEyTkNMZkpHaHlxamlEMThmb3RPZnB6RzE4RFZwMjduWU53V3c0eXhYaUNKTUN3X04zM3h1TFkiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjA5OjQ0Ljk4NjIzMyJ9fQ==','2020-01-20 09:09:44.987508'),('h72pub7no8yan04b5xood0mkjeo78f3e','MWZlZjQyNGMxMDMwMmFjODc2ODBmY2FlZDhiNmVjYmVkNTI4ZDc4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5TTRzVnJwaEJfbzdLdnhQSEltVWQtaG0tMktOeV9nbWs5VVJJOXBhaFREYUVLZjM1UHZCX0lCN2ZfRUtRRDRqWTV2bGR0WUV5ZEFpMlBGdHktcFF3RGJWRnF3NmhiTWRpTXZ6MjFZQXF4czNSS1U2VVB1eGpaUEpLVkFBX00iLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjM4LjcwNDkwNCJ9fQ==','2020-02-10 07:50:39.708242'),('h8wefthkuhtj4ugq5tp8hfpe1opcc4i9','ZTBkYzVhZjcwYWUyY2ViNWI3NmUxNDU2NGYwMzM0NTM4MzQ0ZWUwNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0Nzl5bDE0YTVqRkdta3VNRnVmLVJiUkVkMmRFczNTQzdUamZ0QXd6TUZfcnRjdEhacjhfR0xqRXhLZWRKMUtjekxFZjFWZFJjSmtyRlBuX1FUT1prQ24tamVYRVo0YkcxS3FkVnA1bHZzbWNiU1JaZnBZWUZoQnpxdzByYXciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjE2LjUxMDg4NCJ9fQ==','2020-02-13 08:00:17.514377'),('h9crrqkzu2l8wyj1qgyekvjllbg7xh2p','MDA4NTVlM2ZmMmU5MWE3ZmZjNmYyN2MxMjgwNzBmZWMwMmU1YzM5Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6QWFIaEt4eFVxQ1V2SDdvbUxNeGhQbXhmV0F1R0hYbko4b1g1NVo3aWVVNDVYSmp4MmNzMFlQX3UtdzJrOFNDMmlZNkc4N2s1RTFRM2ZXVGV2bUc2ZENqNFEwTGlBSnhDYkYxVkJ6cUpXUFFvT0hadnhEdzNuT2pYcnJLVWciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjQ4LjEwMTI3NyJ9fQ==','2020-02-06 11:47:49.103478'),('h9pmnyksaamn6snpuwjd4l0ej0ripwap','ZjE0MmEwMjI4ZjgwMzgxMDJmYjgxNTA1YmIzOTVkYzczMDZkOWRlMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ6LTc3dG1uYzB5cVhrTjFkUE12UV9kdkVUT0pzSWpXSzY4ZDcxeUp1eE9sbXZKQ0lZbnp4MU1FTXotanJyLXo0S2RfbVB2QW5TREwwZTJHYU12ZENDMjF4SHU2RXY1Z1h0eDRTWUVsYU1XMmlCRzdJT2JnX2RIWXljenl0SjQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjI3LjAzMzIyMCJ9fQ==','2020-01-23 07:12:27.036682'),('h9vheizjec2rc34bumn3c9vsxhyfw6n7','YjZhNGUxMzIwYzY2MjUyYWZkYWU4NWM1MDlmOGMyYThjZDAxMmE1NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6Ujd5SVFYN2hDNVRNR2pjVVdRU3VhZE5tQV9lVVZhWW1vTnFLZllvV3Ywbk9JTjVMWm0tSUh4SkVYY1p3dl81N01tOERjVlZLanZTVlhKQ00tM3dPSUZPUmNla3g5c1ZMZ1R4cU5Eam1qU1I5RkNab2lCSGU0NVRNbXJiamciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjA0LjIzOTE1NyJ9fQ==','2020-02-17 12:20:05.241187'),('ha6s7ilclyv22dye6p5am5gt5h8b2d1w','ODA4NjZlZGI3MTU5YjE2YTYzMTZhNWE0MzNiNjk2NDUxOGQ4OWEwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwWUhtQUtpLXQ4VVFTbEJ5TUN0N1NxbnkxN0E4ODRheXd3VEgyWkZMV0VvRV9LdjR0dTRnMGE5ODVIYWxZTktUZ21tek9LNXk2bFV2R0RzVlNUMHJYdGsyOWJhaEdxWE44MVBOX1otU1F6NUtUVk5yYmdJOVI2VEtJY0gtUVkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjM4LjA1MzI1OSJ9fQ==','2020-02-06 11:23:39.054403'),('hbnrd7l5n4uba62kvap55ajqplmtadau','ODk4YzZiNTliYzk5NDQ5YzBlNWQ0MmM2MGJiMTY2YzQxMTJiZmNhYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwdDE4UlpMa2JLRUNiTmFPeF9DeEtrOHhnSWhwY3R2NnBLTl9lRFhoZDAwVG1MVnZ1S3dmX1FTMnZqLU1MVkhQWFhleER5dU9NbzdVRi1BaUNqcnh0TEV4RGl5aTV0MDVWdUlIbjRha0FXUjdZQkxPNmVVSXo5Wk8xdjR0dTgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjQ0LjQxMjIyMiJ9fQ==','2020-02-10 08:10:45.415643'),('hc0srmsmhn3cpuwct6rztcz91dbltqch','NDk2ZmQwYzdhNjUzOTZkMmNkNGNkOTdlM2RmNzQ2NWU3ZGNhZDljNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUJ5clUtNnpGMzFKQk5KQTdVUkwyX1g0aXE2N0FvY1hiXzNMcDBDbUJSWkpobHUtN25WUkF5UHItRmZzVVNqNDljQTJnNHMzRHF5UkFaM0NSVXV0REcwZy01S2NqU0NaVkpqS2tSZzkySzI4UE51LS0tR2xZNmgyeHU1TkRyUSIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MTAuNTczOTM4In19','2020-01-29 06:18:11.577423'),('hc2orgf5itlnhisnx6iy3ttpn2iufwfs','MWU3MWU3MWYzNDZhOTVlZjYyNzI1MmQxY2YzM2Y5ZTczODEwYzQ0Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyXzEyNURUVUxaS3o1YlBIZTN4SlZTN2NFSklkZE11YWpzWUJZRFczdXduUlB5X3pNX2VHbi1GUWE1N05ucjNVVi14UV9FZEZhaXBVaTJEXzNwLTM4ZlIxSWNZaUhUMmVtRFJDT0tUYkFQREVsbkF0c1JPc0RxQzZja2o3V2RuT3huTG12NTJaa09NNjRwVjBIQU5TUWNYNDMyX3BzMlFRIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0NDoyOS42ODc5MDQifX0=','2020-05-18 06:44:30.691241'),('hcjt6ut7d5ydblu8znholpebaj1u54cg','NjFiOWVjNjIyY2NhNDhhNTI1ZGM3ZWI5ZTg4ZTljYzkxOTY1ODY4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5bTBmeHYxQ2VTV1N5b1g4NUp2ZFpOR0ZKVE12WmdMcnJQZGdVZ2JJLUlIem1GT3ppLTFUX0Rra1NTNE5xd2tIemViSDV6akFzNXEtaXdqa0hfSkMybVlBZXN4eVRpWUZzT3kzOGhYY0RMa01ISFoxc3lxSlhYcWZFdUNWQk1IIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MTozNi4zOTEzMjEifX0=','2020-02-27 07:41:37.392435'),('hclrj41wxry0ols9bggvqixjsoxlfnw6','ZTAzYmJhZTJhZTA2MTU2MTRjOTg4ZjU3ODZhYjFlNGE4N2U1NzNiNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0X3pjY1U5V1VXTGxiRnUwM0Rib2hjcHMzaXg5UngxY3hwaXVrTnRvcU55MHUyT1pFVnpJLWQyNFF0MmdJcWlTNG1TeEt4ZWFWRFdVUXFpbm9YSmQzT0lfMjc1WlVhUENnVUlyaUpkQmlQcWJvTkVZdTQ2NURaQWRXRXl3a00iLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjMyOjE4Ljc5MjY3OSJ9fQ==','2020-02-20 07:32:19.796092'),('hdywgli7bplfjt0ob5huaeujvkd6e2np','ZGMxODYxODY4OThmYjVkZTJlMWVmNGU5ZWFmMzk4Zjc0NDViOWQ1Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2WjE4ZlMwVmZuYm9KTVlNVXZnXzRTblBJbHVKTDRJN3Y4WUJ1UlRRNWZXYWZDRkNiSm9QR3BqYlBMQWp5dFc3bEdfaC1lZVV0V0pnakhCbjczX2pUX0J4ZXFMYU5EbFRFUElNRFoxNTBub1V1SXZmSWp4T3R6bXRLWXU5M0kiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjI5LjAxMDI4OCJ9fQ==','2020-02-16 03:59:30.013985'),('heeag6i6jwri8vy4591l8bdp2nxxaweo','NTkzYTc2ZDdhYTFmZTY2MzY0MDcwODM4MjliYWE0YzkzMzQ0MDIyZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwb2VLRmdQeEdLNHBzclhpYTdiT3dobHJab3ZKVklkWTNuTDdUNFJjLUdWN3ltMjlQT0J2eVJCN0FlcjJyVmdJSzk5NnVDcW91bnplYmszTVphZHp6TTRSLWQ5eUY5R0lUaGlDQ3Y2MzBaTm51ME5STnhfU21rYkxjNXlIbXotIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMzowNC42Njk5NDgifX0=','2020-02-23 07:23:05.673571'),('het5kes6f7iqotp40ycybav9xwr07yg0','ODFkNWI2NTZjYjVlOWNjYzhkYzg5NzU3NjdhMTE0YjNlNmFlZGVkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMwbVczQWctT2xXWFR3TnFsOTdrVTRjUlVvM01veHJNU2dYY3ZackVSXzMtWTVoRDdPT1g5eEtWMTZoX0dFbDdnNkZXMExFNC1uTmxFNlRKb1RVUUJ3T1JUNV90czZEYjFaaERrSUNYTXRvMWo5QXV3Q2NxRy1INUk5NGpNcnpyMmFEM1ZZUlJ5blNKUXlMREZobEY3RFRHczVxb01lcll3IiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0NDo0OS4wNDE3NzYifX0=','2020-05-18 06:44:50.042958'),('hf65nibtbtsf1fqe0m5dqznfluojf926','NWU3YjMwMWY4Yjk2Y2QxMGI4YjJkZWU4YTk0YTM4ZDNmOWYwN2YxODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzNDI2bXZnNVFjenZCaW5Cdng4OTlDVHFISjlLbmhRSHpTS1NCZHhMYm4yOWxBeldoVTdVTS1rZERsX2V1X043YjA4bktTNERmb3kwU3NmaTVVdGl6bmRsWGxubmpEX280cjU2OGNoSlF6c3BuVDUxWkpEdTNnWjJUcmpvU1RwZHpIc0RsTTFHX3kwYTl2SXhxRmZ1QkVQMkpfcXk5QklnIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0Mzo1NC4xMTAwMzUifX0=','2020-05-18 06:43:55.113474'),('hi4j8wgb5shhia1li178i2syt4w4p71y','NzZiNzNjNjkwYTJjOTBiYTIwMmJkMmU5ZTVlMmU0M2M3ZmNiNDcyNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6N2t6X0lMZmV0VmZiVWpCeDhWM3NkWnZsV0xNZFZaNkJTM0xObW5tbG8tYWRZYm1uYTRYaGxMQVR2b3JiV2dvRUh2MzRSSkpJTzc4SzRJeDcxR2VxYlJkRV9RQ0Z0VWplc2tJUVlHREZEX0NET2tnSEViVHdYV1Q5QkxQRkkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjI0LjgzNzY5NyJ9fQ==','2020-02-10 07:50:25.840984'),('hj2hex1mdv1ygdpp67sv9j7j3ymrnf00','MzVhOGQyMTJjYTRkYjI3ZjI4ODcyYzhlNTExMGU2ZTExYzQ5MDAyNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4ZFhsVklxUXA5RUl4amJTRThkTS1XQXFBTHI1eUxsUUdFeEZyNHlHMHBORm1VM3B1SDFJOFVqQWl0T0ZpeFhYRVhVaWM1QjRCak9fanY1UnlWODJmRmhqVkthOTRXcGZsY3R6d1k4OWYzWU1GRkppNWFDQVNUbFBIakptT2FCIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1MTo1NS41NTQyOTIifX0=','2020-02-26 06:51:56.555285'),('hmea0f1l19iss7qrq8q13yd2lgvmy8fr','N2JlNGRmMjQxZGY3NDg1ZTg1ZWJhMWVhNWM3YmY2MTAyZTM4MDNjYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ5NHdNVGdrc1RHRndwbE5HenZNVlRxUF9FcmRHaVZYUjBiNGZCZjNiMkFoVE9Sd1cwaTFGU1pqVlFQbVZRTFJ5aDdwcnNmRjRPV201ZW5mbi1Ic3B4Mks2OHYzaEVnbWpHSFRxZ1kxRTBpdzFUbTNDQVBMZ3JmMk1fbDNfMmciLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjIwLjUwODU0MCJ9fQ==','2020-01-27 05:46:20.510784'),('hmh8hlimmicv9z9pl7kdaurldnzjbb70','MDc1ZDMyMGY2NDZmY2E5MGU4MjVjYzA0MmQ1ZDhlYTg5ODRiYWYyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxUkpQMmhUREh0MDlnN0tseFdPa2tNZUZNWmVJaU9DYmJHOGVZZTktMncteWYxTjZRNHlLeVoyeExMUi1XQzhTWGoxVms3T3lpN2F1NEFvYy05YTdrRnJYZnNFY3JoQmxqaVgxdDQtMTZyUDQ1R191Yk95MnhKSENlWGxRcUkiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjUyLjE0ODUwOCJ9fQ==','2020-02-13 08:10:53.149585'),('hnbv2x31mcql54yaw3zll0p6troye2qo','NDFkNmExZGUzY2Q2NzUyODNhYWVkYjI1MzRhMTRmMWY4ZDllN2JhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0cEpQUVJXUUJWUS1ESG03amYtQklmWnU4VU8wN3dKZzNqR1pDQUVOOWMycGIwM2lBeWVfX1NyVXFhcU42MXpGa1hPNUZLS2tiRkZ3YzJ4b1FjQ09RaFo4el9QRE1lZGN5NEgwN1N4YkpsZ1VtSjNFUkhXTDBhNllLZEZkSndmIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozMjoyMC40NTc1MDIifX0=','2020-02-27 07:32:21.459048'),('hnwqohji5twq3pt0x1exntw6499d1rys','ODE1NmQ0MWM5OWRlYzZhYzA4OWMwYTVjNmJlYTlkOTA1ODc4NjY1MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxN1ByYWJPSkdqZFNxa1FibS1ra0NvQ3JBSl9kQ2hmeUNPWmhaQThyb1pndWFwTlBXV1pLSEJDVmRReUJWX0xGOWQyVF9WWVk5YTRrdnMycmF3RTNHblRVOVRweEFiR01EdUZwMXNVUmRoSXlQNXh2RUxRMUl4T0VEU0w4cmhLIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NTo1MC4zNzc4MTAifX0=','2020-03-05 10:55:51.381520'),('hovdl2n1lmved2f1m2etlilvh8mj70w6','Yjc1MDM3YWY5YWExOGEwY2QzOWQ0ODgwYWI1MTYwOWNkODYwYjRiZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4SmExMmxKUVdmN0c1bmVGbFFJMmdmNFJkUUlWRktHcUlYZGhwSE9oNzFhWkc1RHB0ZUw3MmxjNjRKQ0Vtb0VwdVNiTnBob2lvbUd1OENwaTVjeEhweFRsaGRNT202Y1ZhbGdod0piam9LUnlSRTdCQlZGWDhoal9vV0FlLVUiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjIyLjczOTEwMSJ9fQ==','2020-02-03 06:17:23.742456'),('hqysv9intvudu6grsntjj3084jrmgszt','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-02-18 05:59:52.400868'),('hs1pdcj3etmtk3ii76mh4qy3ixm1erqv','OTM5NDZmNGIxZGI2NTEyMzAwYTdmODM3YjQ4MWE4YzkxMjAwZTgyOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfTlNOTnVnaU53aFBaUjZrOWJKdjg0SnIxOWJoUkdiQ2QzTzhTQnpsSW5rcTN1dzQ3aGNNdEVHelYtRl9CQnZIbHllc0pjNGtobDFSVWh1ZC0zdEdmenQ4Nlgzb0RDUHhBWVZFbnpjSllPc0t2YWNGVFpiTWVTZWtXV2pqY3A5IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyNDoyMS43NzA0OTkifX0=','2020-02-23 07:24:22.771871'),('htgcha1jea8i4byl0gblmdi0xxag2k0i','OTdhNjA0Y2QwNmNkYWRmN2UxZWRlZmM0NTIzNjEwMjJhZDA3NzZkOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5UV9sREoxRlFBTkY3dWpRY3lQeEtPUS1Qb3UxLTBFZWV1bHFyeklCV01PTTZRSnlOX09hX0FZTThZbHVfMExPZmVPMndfWkd2VktvbnJweVdDTVlMSHdubEp1bHB6cnpKankyWFQ4bEdEVjkyYUdNVGlvajVtWm5tcWxMeGJMIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMTozOS44NDg5OTkifX0=','2020-02-23 07:11:40.852357'),('hv0rvfpxaihc50j4lva2noyif1wqhf5k','NjRkMzAyNmZjNmFlNzQzNmQ2N2Y2YmNjM2Y2MjdhYzQ0NjcxOWFiZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ5TnpwZWZSVHdMbUNXZXRmQjhhWnhDSXNjeHUtbDRPOW53Q0hMLU52clRRelM0ZVVGbDVFNlIta05CMk9YV0F0c0N2WFNqcmU5ZW5hTkNpa1I4bnFpcDU5aDYyUmRRaUdrTkRIQm1DQ05KMmdwU0h0Mld3TklMY1BqS2FmZ1kiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjEyLjQzNjQ4NyJ9fQ==','2020-01-30 06:08:13.440001'),('hw4ezbrb68jmcmi3omw5vujxj33dn168','NGEzNzM3YWE2ZmRhMWMyMzlhYTY5MDNhZTBlNDgzYzY2MWVmOWNmYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0S29mdHNoUlBVQ21MWG5JVjgwbnRPeEJvR2tvbXczMjJ3alFPdGhSX1lLMUtWS0JTcTlaWUZXblBUVDJ3RFlxOHFZREpDSVkzamU3WkhMRlhWTFNEMnA2djFUXzh4RG5ISjB0c2lPUmQzR1IyUmdwYno3cnBWWlRYQ1YwMHMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjE3LjQ3MTMxMyJ9fQ==','2020-02-17 11:00:18.474824'),('hwwkpsw53dl1elu51ep6n5kj7aby5d2g','MmYyNjc4MjI2MmI5OWM2YmZlYzgwNjA4NmMzM2Q4NzA5YWQyZjliNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItUjFzbmFxZlgyMGJSX1diekdLTzkxdjRwMmFBRk9YTUtTZkNvbXJtVzNZTFZHeUhrREJ5b0xTZ084blBaOE5IOUlFSVUzelFXUlpBcEs4QUZ5S3pLZmZYWGhxcWJDMTVSWUR0dWt1RXJYWHR0V2gxM1lQTVBEekJsZWJLYjRNIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDo1MC45NTU0OTgifX0=','2020-02-23 06:00:51.958911'),('hx3hfh7s9odi8zovy4ja8m8j80iutnnw','NWFlNGE2ZjNlMGY3MGE4MmJjZGE5MWMzNjUzNThlODgzNDA4MjgyMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1aUZjWkNiemluSnl4b2swemdIZXplNG02VE51ekd6eGVNMkRkQlR1M0U5Mk1fNU5VX1ZFNDRFdlRabWhPalJ0S1BGQ3VpTUtxS3Z6NHZncU9mOEFzYnB0dC1wN1lPVGZHb0xRRnBlMUlPVUhWQVFHSERsWGxJWjZnQk5HYzQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjE3LjA5NTY0NSJ9fQ==','2020-02-06 11:30:18.099202'),('hy10v13x90pk5131fcajrctxexq8hi50','YzJkZWVkMmFhM2YwOWNiOWYzZmM5MWExYjRkYzQ3YWI2YWQ4Yzg2Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5WW5tcTFUUmdIYjMzVGVoLUtsay1QMXRjTm5JdlIyQ1ZfUzk3WlF1aEZkNlpwUW1LcHJ5TTB0clhMR0RFdlB3b1daSzU0WWN0MEZnZHJ3ajdHTE1uTXZqVFo5TlBhbEUyZ2k4bGxXNFE2eTI3T2xNcXB6TWpGb0ctU0hyNldnIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMTo1MS42MzQyOTAifX0=','2020-02-23 07:01:52.637753'),('hzwn38g6h81nfx182yionuabquaoh99l','OThjZjkzYzEzOWU2OTkyZDBlNWNlMDc5MGEzNWFkZTI3ZTA3MGZlZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ3TzFsV1cyWWlkQTRSenFPQXg4NnI0UGwyc2ozSEFpZmUtWngzaUY1c1JHcnduc1oxTWJockVSWHN0UTIzNVcwbVVicU1qNXYyLURXQktWNkJ0V0FZUDRDdnJyUldBUGhYemozRU5Lamk4SUZROGo3Y2pXOE9hREVYOFVublkiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEyOjA1LjMyNDU0MiJ9fQ==','2020-01-22 06:12:05.325737'),('i02bdf4ia9xv5huxmdppj0xz0m4fggzp','OThlMGM1NTgwYTljMDk2M2MwMDM3ZDc5YzYyYmVkY2RjMTJhNWZlNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzRXF5eFBId3NpSWZkTnVSWDA3ZjdWNW85dW4xaXNDUmpuRU44VjRYYjlob1pYcWU5dGJYcGxwaGptWmJkNkxlaVRrUFdnY1A4bUVZNWs3blgtWXdrc3oteEZ1SE1BMUtRZlpBRFdONnl2RnlqUDZiT0p5dVJ1OFFjbHZXMWciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjQ0LjE2OTk5NyJ9fQ==','2020-01-23 06:50:44.173422'),('i0j9t7i6rjf899mj1bwcbpnkso85kwzw','ODg1MWU4YzdiOTc4OGM3YzU0ZmFhZGJlOTI0MDU5NjU0ZGM0MjNjMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4THRiVy1fNkFKZjEtUHFxMmE5a281eXVjR3dObGhsSU5TSzFyUE1jVmJSS09ucFN4c2ROR3V3SV80a3VXY0tBRlRVeEpxbFEzQS1UTXZZTmwzT0dnT3k1WE5kbWpIbTZsQWZQcmo5YlRnUXJXMDNZazY3U25WU0lzNkVIc05SIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNDo1Ni43OTE2ODIifX0=','2020-02-23 07:04:57.793119'),('i1pqlc5yvm8178v6t6mdskjj2bxrl91r','OTE5YjA0NjVhZjg4MzVlYjE4MTI2NDA4ZDUzOWFkNjU0ZjI1Y2M1Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxV19DMW9wQnNWR3lObXF6cmQ5Y2wwNEE1dmhzbGpwdm5iRHo4UkVMZ3VleEhWSE94cWRIQ3ZxYWdBdENiVk41bmI1SVBkaWdUUlFvV211NVlfWngyUmVYTFFLaWNRbWxUbTZqZ0paZVo0WEQzS25yTjI0UTlRZzBGTlBIRFEiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjI5OjI1LjIwMjI0OCJ9fQ==','2020-01-20 09:29:25.205724'),('i2dzzv58ty2nf9qt4ytj12ew671slpn6','ZjEzOTYwYmUyMGJkMWJkNDFjN2M3MTYwNmY2ZDhlMzAxNWJkYzg1ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0UmdIRTBNalFoY0VaeE44cDY4WXdGNDFYRjRWSkhEelUzVl9ELXRnSy0wVXR0eW1yWUxzWXo0MVYtOWg5NFBLSmhiNUctTC14LVRRcEpjUmRYR2pPeGwxN09LOXkzTzJlcklBdC1ULUtXVnRST2lQQjVpY3pRRkFBOXc1ZFkiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjM5LjY4OTUxMCJ9fQ==','2020-02-13 07:41:40.692817'),('i2hip4nq7i30vatsfqkv3686mwh34ts6','YTUwYzY0ZTg5MGMwNmM1ZTIxMTU2YWUzOWQwNTFjNmM1MTYyZDgxNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3ZEs5aW8xR0dsSTFmUXZpbEZoZFRxNXFVNzVwSWhJdk54M0dESDN3U2R4c1VTZ2ZJVDU0YUdLZ0c3QVZpWktMWXVkYWFhNHo1dmVOejRxQXJHNGVwRXI4Uk1WMTNGTTVMQm1BT05XT3c0YnI0aVJYSjM5TDJLaXRXdm1mX0gyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxNjo1OC45NzgyNjEifX0=','2020-02-25 08:16:59.981773'),('i32p68qw8jvqj7uxa2v9k8g8g6l181nm','Y2Y2ZWVkM2ZkYjllNGVlZmEzZTU0OTIxNmJmMzVhNmZmMDI5NWIwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyOFVpM1l0c2lZVHBuekpOTW1uUERxdG95SlFGQlhFaExsZjB2ajl3MXBMUGFTeGd2bDBmbWwtMHFGY1dnUDBWYXNJMmJPS0pEVmxVR3RTWTI5cTZVOG4yZVdzZ3A5c0k0azhvY0RuVEY2LXVFVjRFTjdfd1RBLTRQUk9CREp2IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowMzoyOS4xNjIyNjgifX0=','2020-02-26 07:03:30.165838'),('i3gn27stqudd43u52vpza96i7uw86tbq','OTQ2OGU2MzU1NmE4OTZlMTU0MTg2MzZiOWQ0MzFiYWZhMjUzZWE4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4REplbVNpY19QYU04U3ZkSHk3ZUlSM2tMX203MTZMNDBsQkswZ1lXdHJxWHpPZXZOT0lVQ0JkOS0xYkc1eG12WTVIMXpBaGp4UFd2S1Fqal9iUTJiR1JMVUVzOFl0VFZxNHA0M0swVG5PdXZuRFN1dWZHM0ZxLWZSRThFVTgiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjQ4Ljg4MDM2NiJ9fQ==','2020-02-13 08:10:49.881444'),('i3mmg7iwhlm6d5lwyff712q0i68c0u4n','OWM3MjgzMWQ0YmExN2YxNGI4ZGYwYWQxNjE3MmNhYTRhNzQzMTEyMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVOHkwWmlDZ2RPNG5ySUVSM1JEMTdoV0ZXSm9yZWhCVlZQM25oZXZhOWRweHZrS1gxVFFpR3JlbXk2bTdfeEVBR3hIaF9WcGtpWE85cm9Ta2JOakJ6blFSei1ZSWFVS3hqWTlRXzFuNmZoUmJjSkEwTU5hN2gyckw3YkZoV0VLTUFEenM1cjlIb0xhUXV0ZmdOX0tmZTF2WGxSZEJRZ1B3IiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzo1OS4xODA0NjEifX0=','2020-03-11 10:34:00.183999'),('i4xiiniekucf6tyjkmi1i7akas30z4g9','OTg1MjYzODUxYzU0OTUyMzM4ZWVkZGI5YjMzMmYxMDkzMmIwYjdlZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwVE8yNDFfVWl6X1kyMGc4SmtuZmRkaC1CdElaeXlSTnBnM3ZDc0NJaHp4TE44SDZpcXhVbTNIRml5MTN6ekVtMXpQeXMxYmlLdWQwRmp6SktETW5TNHZfOS1MYmdBRktkZVJOaGNpNTF6dVVNMHdtMk5McWVvaWxoakdKUFhfIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0NzozMi45MTk2MTcifX0=','2020-02-24 05:47:33.922976'),('i7zanj905m44vnst98l8cr9juuh8phlv','MjBkNjExYjdiNmZlNWRhYTM5MjNmYzRmMWQ4YjEyNWZiY2VmNDBlODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYbHJ1OGJ6cXh5blVzTGQxNlhTZTRZOVFkb2c0SG1CQmJnYTNWTTdGNEd0WmZYbVFpWlhrVHQzTnhNTXI1cUxjMW1VWmlSeTdaR2xyRXZsYnhWeUVLZHJyOUFjZHdoZTJENTNZckVnRHd0Mkg0X2IzdEtlc0RFZGRhTjVFWDYwWXUybTVYejBaaUZEM1k4M2hpd3JoaURkb3NVNmZRSzd3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzowODoxOS42OTMzNzAifX0=','2020-03-29 06:08:20.697141'),('i81pp74o3zdvlg9a1ptyzmz4sqw8kz4g','YzhkMTYwZDc1ZDU5NmEwYmYxZWViMWE4Y2FhZTlmNDFmZGNlODljMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWRnJSVC1WUUJJQUJqYzZYUjlMbUJwdUkxR0R0X3lteDNPRlA1MnJBa2t3UFhJXzh1VmRxdmhVN1JHNWRucUs5M0k5Rll2eXVpQ3VhMnZKVDFnMWhOd0tENEVnTVhETzZiMkxqM1NlM1NjbzV1QU1yazJuNDUwRy1iZWtwY3U0MTJGNlR4MUhITGhtR0FWRlFyQXFXZHhtRC14TE1hXyIsImV4cGlyeSI6IjIwMjAtMDItMDYgMDg6MzI6MDYuNDA5NzE5In19','2020-02-20 07:32:07.413286'),('i8ek9wy3ljqjq914ywqnj69je30xji0i','NGI3OTU1YWQzYjQ5NmU4NWE3ZDVjZDVhNDU4M2Q1N2RmOTNmNDgzYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6YzFkRUQzaG5pQ2FMM0U4MXFGMGZrQWhCQ2hsZld6Y0laNWo0X1lGd1VLMFNwdkpMMlctbDBxN0NmbnJZVGszWV9PVWlUN0RjX1dNWnNVRVNHTTVnSl9EcXlNQ3pCVzI2V1JHNnhES0ZjLUpkMnR3bWlMZTYxUFRYeE1SbGciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjQzLjQ5NTA1OSJ9fQ==','2020-02-17 11:30:44.498547'),('i8k9wcp0mnav00mxjy9pzpbtkog5o7f3','MzAxOTU1MWFjOThlMjcwYjMxMTY2OWNhZWYzOTI5ZTA0NTI3ZjFjMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI1MW9jUjZiajBFbnNHVnlqaVpack9Hc2pLTW5fZng1amxfUENDTjNOQTludWgzbW85am1maHZpRFpnQWFYSWlIX0lma3l1V1hDSUxHYVZGRnFNSktfbDNBa1pLd1FfNUVYN2lBd0dTYkpXbnBDVEdPS1pvR1picHVkZ2d0eEUiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjI4Ljk3MjMxOSJ9fQ==','2020-01-26 05:47:29.976209'),('i99px7fq2lpcx8xfw1y6sdk9pilw1n6r','M2M3YjdlZDllYmMyMWE1MDAwOTcwODAyMmQ5ZDZiMWNiMDNlNDFiMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2QlFuT3VzLVpDUFhGVC1ZUURicmhMTzgwakIzZlVRbVdYT3JIQlBIT0VXT2tyWjRNUS1PZ0xMQ3lRVlRNN1RnY3N3QUNFWDRmNnBfWGprT1N3b3BFZWlXVkdQVUxESGphblBHWXJYejFYUDNVWG1YSmRNajVydlIzbmhXeE0iLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEzOjA3LjMzNjM1MSJ9fQ==','2020-01-22 06:13:07.340011'),('i9cnfw8qvhwzjqzlgh8ezlii3zfrznbu','ZjZkNTU1MWU0ZWEwNGZmNWY0ZmQ2NzVhZWE4N2U2YTFjMzk5M2NkNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5OEd5bkRNSU15TW9sY2tNblU0OFNoWUtPSFhHWlhvMGh4OFgwOG42TDhWbWY5eURKY3piM0lsVEJGME5RWngyOFBqUmpnN244ZG5NOUMzak1LU05xOWFOS0dzLTBwNzE1RlJlYWYwVWprSUIxV2lmUXhoV2R0OFdjMVY5bFEiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjQzLjU5MTk3NyJ9fQ==','2020-02-19 05:34:44.595496'),('i9ffslzts9d488m90dri98p30r3el2rq','MTZlMDcwMTZlNzdiZmM0NGQyNTFiZjViMWMxNWMyMzIzYjNlYjlkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3TUNwc3RhUGZTR25CUlRQVzBKNllfWWdPbFMwRnFGdEhSdDlOc3hrSWRmVGhsSGNPTUdMRndzMDBSU1lPd0xfWHBTZWp4SFBqRUdXdUhleEM0MXdBZU4xRGJ6amVGZVlJVWRYY1RQTlByYVNEd1g0bDhlQUowd2x5TkUyV00iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjE1LjMwMTIxMCJ9fQ==','2020-02-17 11:40:16.304762'),('i9y14ycl4k4uc2hyl68vlbxlzjeembbz','MzExMzQ1MTY2YzlmYWE4MTY5Yzc1NzQwNWY5MmFkMjY0ZTNhYTZkMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2dHlWNTRUSURsaFprQW5XdWF4Rk1IVXc2clVxWlBIWmliVWNXX1pfeS1zaWNzMzNUZG92czBCLXBhUW41UWxONTFTRHVSYkJyUHAzSEtoay1qM01UZ0ZpRGpnRkIzalFtLUdtSXNXN2dzZDRCSVhXbHpFTGszQ3NMUUtmZEUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA0OjQzLjExNTYyMSJ9fQ==','2020-02-06 12:04:44.119162'),('iaq347v18heu8jv18acf6iqavubpcttz','NjQzZGY2M2Y5OGNhY2ZlMmUxYjY1MmQwMGFkZmE0ZmQyYTVmNDVkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVN3E5NHZTMm9ya1JtUllFSVlVd0d4QmUyb3R1QWZnelgtalI3RzlCdG1MSUxhd3dQb1Z5Qlo3QnZNb3BFZFFfSGVsLXc4Y2ZqRG5BLWY3dVplWEZ2LXYzN3hTRjFkUzlKY1EtOFNUUmZGbEN0cGQ2UlJhSXJtQnNtd0lPSEVib2pqWDFUcEU5ZW5nQnlQZTd6WXctVHpjR2UwOWhrMEhnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjoyMi4wMjY0NjQifX0=','2020-03-29 05:32:23.027893'),('iavlg42iiqa1qiw3gxcrs03ff9q13xmx','OGRmY2FmMmVjMjJlOTU3Yzc4ZWQ0YWQ1ZGM0ZTAxNTczYTk3NGFhMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWWFRpdVBHY0pnRDhRUFRSU3FQWTJBZm12WmphTmlTYVk3bXN2ajUybzBnak9HQzlBaExNNWJKcnc4QjR0ZDNud1NMbnNZekFUcjNDcXRNbTdBMkhubVpLQUZsNi16VmNoUm03SjgxNE9zcUdCWVd3TmJhY0RKdnNqYW9KQ3lMdXBqQ0FRSENmNk5NVThqRHlyZzI2Y25VQmI2dDJLUHFnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzoyMy4zMzI1MzkifX0=','2020-03-29 05:37:24.336088'),('ibqcsvs7fj9rqda1wlcrum2a9z4u15gj','OTkzYmY0YjkxODQxNjg5NTIxNTAzOTRjNWU2MTdlNTM1N2RmMWIzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6LXBtYXVTa0hQTUJMZFVTSFZYajFSeDBUeEY0b3kxcHRCLU9Jb1paQVVVLTRrek9iaWp4M19uMDA4NlJxRVRQQjZlNl8tcl9uUm9faUZtem1HNENibl9JTHN2eFUybENVYVRRTWptQWxsYlU1Q3NwWUNpaXNkcTdVWTctZ2lKIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxNDo1Ni41MDAwODkifX0=','2020-02-23 07:14:57.503532'),('ibs0bozqs0ar9sdxefngalmut3ll6r8v','MTY4MzlkNTA1ZmI0MWFiOTU1NmI5NDYyYjBkZmQxZDQzMmZhOTE5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4QzhCb1dDYWEzdkEyN3lqenlYaE1POFVoTkJUU0VVbk1vcUdEa0Z3b25jMjA5SlRLTTdpZDYxcDNpQVFQOGo1OUFGeWhCMzVVWm5pYmF2WnpuU2hYV2d5X0RoOWdrblcyb1JaZXFNNmtzQ1QzdG1td0luZzFKNjRzT0FiSWciLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjQxLjY2MTQwMiJ9fQ==','2020-02-02 06:01:42.662421'),('idb01gmdo01wslznskmsl493kdguzmvp','ZWQyYzk1YTRiODNmNjlhMzJkNGQ3ZGQxYWM2ZDZhNTdkM2M5YThkZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0I5WWJjU0dzUVhPNnRDcl9ydHUwalJsUnRDUDE0ZFN2WURuUDVwMlA5Q1g5b3dST1ZhZFItZEpkZ0xuOUZHY3RQVnY5Q2tzcFJBT3M2RDlZcmRqSlZrVHhfZ2RvR3J4UG1OVS1ERFM4bUNhTEFOMWp1bkNkZ1VuaS1IVzhsUjgxIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzowNy4zNzMwMTAifX0=','2020-03-11 10:33:08.376775'),('idhv9oy78xwz61wub82ro1yhft3wflsh','ZDVhZjVlOWI3ZjliMmQzNTY3YjkzYTQ5ZGU5NGQ5NmZhYTgyOGFjMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzOFFVVGNwVVI2OU1TSV85NEF4Ql90d2E4di1Xa2NWeUhGQVdoLVphSHZOT1NPS2V2UG5pN0ZkZDZFVEJSMmF4d09QNzM3bEtSY1VDS3ExQV96WWVaWTRESUdHZ19YV3NqYlY1Vm9GUHVKS3RzRzczZ0FnQk5LTVhXQ05pSFdpUi1RaDNrWDJhTmRPU1RwejFJcGYzTHVsUXhHQ2tYQkNRIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MDozMi43MTYzMzMifX0=','2020-05-18 06:40:33.719787'),('ie5b0wcqri3prme733ukvp3k6cu7jhly','OWVjNWI5YWYwZjQ3NDRlMzVlNjY1OTZiYTEyOTUxNjQ3MWU1YjJkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5emp4dlFIeG1HOWdGYmlEMDl1cV91UGZwUHl1d2ZnUFBKc09DaFg1WWVHUWRyMnBXRkFzZGdMTFNLNGNXYXFUOUd3VkI1ZjJxRWRpNEZkMXpSd3NTSy1hRXB2R25TYVB3TmFVWVhWWkVfUG1uOTZvam95V3lWU3pldzJEOWc0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOToxMy43NzE4MDkifX0=','2020-02-26 04:39:14.778211'),('iezpnogoc8cp6wh3xwfcwplm8ptpiulu','MmRjZTgxYjYzMzAxMzNlZjNjZWI4Mzg4NTg0MTEyMTc4YWE2Zjg5ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXajZ1a2Z4a1NvS2gxMWVxUkhhVmFGR2E0S1p2blhxUHk5ZnFpcDlXQk5LQ2huaFVTcEQwN0tOOWV0Mi1PVDl5cURBWGVxQVBoMkp0bWVsWHk2VkJOeS1RXzZ0dV9QTTdVRmtZMkFqQ2ZmU2JjdWJJYlFRVHRkN1hJVGxYMHNqRDFrZU9xd2lVNkkzYldCNlVZVFQyWTFSLURYUU5ROCIsImV4cGlyeSI6IjIwMjAtMDItMDYgMTA6MDA6MzcuNjA0MTQ0In19','2020-02-20 09:00:38.607462'),('ifs9bdeq3rzfwdo5wgrykqbgqqf1gejp','MDQ1OTI0MmEzMTM1MmEwMmMxYjg5N2MwNGM0Yjg5NDgzOWY4NTg5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyQkZVNEZZNW14alc3Tm5VX0R1YjNtU0ZMcW1ubXF6bFNIczJ6a2JNVURmU25laGY3UlRYRmV6dWtQMHA2RW9sY0gwS093UnJ1YmZUaFo5QWlOVWhTUjJHNVEtRHIxU1pWeEJMNXJmeVJ1UHpRbk5NVjRmc21EdnhDSW5PVGpZb3ZvNVRveHFZdlpjbXZlU0hFVjk3a25kRElFQWtRUWtBIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNjoxNC4zMjU1ODIifX0=','2020-04-21 07:06:15.328979'),('ifvq5aqplw31dux4h9a3vw1wmpi2w68x','ZjhmYzc2OThhOTllMzQ2ZDdiOTU2OTNlYzQ2ZTU0YjcwM2VhNjdhYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXTE9rVS1XblFYOXM1WUlPbU4xcEJGWWswaFgyM0ppaXZxbGtMVURnRzFCNmdMcWdTbi1vdmZLc0VEU2RZSGFYSG93cVhTUjR1cnBNa2NwRkhHN2VEM09qSENiR1FLWEVlX3VlanQzYnRLWkMySEtPRU1oblFzeWZ5aDV3bk1aR3JXbk5Fcm9Vc2dBWHBYNGNTemJJSEtac00xNzZocWRRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDo1ODoyMi40NzY5MzYifX0=','2020-03-29 07:58:23.480414'),('ifz3c44wpsy44a69i9hpgpghz3m45843','NjMxY2Q3N2E1OTg1MGI3YWIwZjE3ZTk3NzE5ZmFmYjRiNjFmYTA4ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6SWVJZ0JoN0pHbURMMDZIZ1NOT1dMVTNJV2RFYmpvRFlBWFg5cUFaNGFYVU9HMGdWWTR2aWZXbWhDZTJ1b01EQzAxRnhFSVV2M1p6ZzI5dU1Xa1Y0al9pRzhOdjNvaVRsdXh4blYzQ0J0QUhVNTQ1MmtEUV9jUS16Q1ZRcWsiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjIyOjM0Ljc2Mjc1MCJ9fQ==','2020-02-20 07:22:35.766225'),('ihs72z1z9gofn4qebz5g1ceghtzrhlpa','MjZkOGY4N2JiZTY2ZjQ2YTViMWU2NjY1MmZmNmIzMjc0ZDEzZmEwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5UHgzelFralpIc0VWeDhibl9pQk12RU1UeEt2ZTZpOWRQLWxJNVJRTkxPMmhMTlF1Tjl2U2JRVzBXYUo5Z05HZ2VQUmpVM3FvLUpST05IODI5anJoYnZ6Wkp3NF9ESThmV05RbGNZR3lTR3JfdUswZHRKcHZpRDBaSGZOWkkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjI4LjU0MjM1OSJ9fQ==','2020-02-06 12:20:29.545783'),('ij3nbsnk3sysp6psdv2pimk6yactuvvr','ZmYxOTAxYWQyMzBkMDYwZmQ0MDMzYmRiMGYyNGIxZDZmNjM3NmRiYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI1YkdYNzEzVUtOZDJJN0JFZnFLM2RWaTVvdDlhMXJwOXUwMHY3NnoyY2hyX2c2Wi1mdXlGeG9yY21nLTNaaFpYU2xBVTFVOFpKT0Y3MzJZSzFvZWh0WDFnRFUwTC1tU3ZqYjI5QWhDY2JRMl9MOFJfT0FDLUtjYnNNWlE2V2siLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjU0LjIxOTk0NCJ9fQ==','2020-01-30 06:08:55.221710'),('im57fj753htj11aduprv5e2y8fxnfhx2','NDYyOWVhMThmMTg2YWNkNGUwYTBmOThjYmYyOTdhZjcxZTQxYTllNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2QmNsdTFZVU9qRmNCRmZwUENuR013bUlDem5YNW1ia3pIMFZTWjRMMkFrTm02YVNjcnVGZUY3OXlMNWhHRzZ3bEhZOXhGVEo4UHFYY0FrR2hBeHhXUURnY1NFYTAyR3BYQkNoYnE1RnB2TzdRNzFKcjEtTmlkS3Q5VFYtZGsiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjU4OjE2LjQ5NTA3MSJ9fQ==','2020-02-18 05:58:17.497055'),('inf2beex1oiiy5ghzj30i86zv72v8woo','MTAzZDg2NDFmYTVjMjhiNjkzM2JiN2JiMzUzMmZlYjUwODQxNjkxYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3UGE0SkZwVGw3d1pIN2ptRUZkMVdacUZJNFVzUExTVmR0TzJzTDRvMGVYNFppSm5fYS1heG1sU3F6eFB4Vk83aElIaUhnY2NYUTNVcnpwUmRiWHQxWlJvTkotRTZwcEQtNXMyZ2FHanlNYUJYQTRlNTVQUUtFUVQ2T2NHc1EiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjE0OjE3LjAxODgyMyJ9fQ==','2020-01-22 06:14:17.020067'),('io162ri6qdx0jjks41hv3uhowoxbnjd2','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-08-11 09:16:37.435894'),('ioyxqviut1084v2mkvznra99y0yv5rvp','ZDkwYmZlNTdiNjY4NDVhNGYyYmY1NWVhNDk2ZjNjZTdmYWQwN2M1YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYa2NRbzc4RFBUOXJfcHZ3NmlvTTVhSnc3ZTBqc2YwNnR1dFJCQXR3NjRqZURyZHo3NXJoODI0SGRYY0QwUGhMM2NnbGdSNWhaVkVFSXRKeHJuNENSZlEzeW01M1F1cWdTc29Mb0RZcWdBNzdpZXpOcTh0LUJNZGs1VV9XMFhFbFdRejJpbkdoWFUzLUFZTzZ6dm50R3hZNVNJWjV6a0pnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo0NjowNC41OTg5NDYifX0=','2020-03-29 06:46:05.603099'),('ipd23jx5mm08n0mrngapuekn3r7cyeg7','N2RkYTdhMzYxOTBkNzhkOGY1MTE5OTFjOTM2YTdjNTRhZGY1NWRhMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItUWhJWVpkVkI0QV9pamRRUUx6MVR2bmhYZE8wZU9BUWI3QlpudmZFODVwQkota2lFcWRWWnRzT1gzVkRWVmtBWkkyVUJCOXNOUWdoX1VOUU5WUHBfYzczMjZyS1pqTkxtbW1lRDNPVVhybzhxSF9mQUdVeEpaOWtWbzNWU0UiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjA0LjU5Mzk0OSJ9fQ==','2020-02-17 12:30:05.597510'),('ipra6zj8uksyoq3wq2afyozxy4x1ogyz','NzJmMjk3NDY0ODU1NjhhOWE2NDczNDY0NDRjMmNhNDYwYTU4YzlkNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEItTWpnQ0hPUVlMV1BrVVRlNEVPazlFSEhJSEZYSXduYWFkZHJTSFhYTjFGeEQzOHJYT18zcndCczVfbDUxSmhKZlJ6ZFJ4ZmpONHpYUjFqbXdtUUZ4MXJycVlkeHEwRkhEelNIQU5GUFEzYnZuMW5oMXRNUkFLbC13RE1ydXMiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjA0LjExODc1NiJ9fQ==','2020-01-23 06:50:04.122137'),('irevg9amknpevowm9fly9agrkxb5rnat','NThlMjJlYzIwZjg2YzNkZTRiMmJiNTBhNzQxMWIwMDU3ZmEwYmM2ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWMVFMNDN6aGV3SVVYMlpaUTdieDFZZ3dwcEdlMkRlTWRHcjg3Ql9kbGh6d3NfUEFQLTl2R1A3MlZyN191YVV4UC1fV1BkWEFJMlRqWjBMc003Z0pyMTVHZ3lCRXE5Q2lmV1VNMnk3SXNxbkJqSTNxM0gzaHFRd3ZNcHVFZXRjQ01kZlZnSXFoV2ZaNG9iajNKbWxoMmVORlRkSnp2YVZBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNTowNDo1OC4zMDYzNTkifX0=','2020-03-29 08:04:59.309930'),('it9fxfbm2cm9brjxzqdaanzub2rn0nbq','MDc3OTAwNjZkMTI2ZTg2ZDNhNzNiODNlOTk5YWU1MmQ3NWIzYjk5ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwSUZySWxaSFlKSXEyN1ZKMzl5RHlEMkU3STFQaURqc3RKYnRVMzA5cFVfU0c4SWZXWlN1STlocEc2UHprMmlYZ05UX25oa0tmR2lMUzF4RTRBXzZYNm5ObXJwOW1ROWFiTUQtelgxckNPMkFval9fMFlybGp4NndzaEgxUG03IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowMDoxMS43MTkyNjQifX0=','2020-02-26 07:00:12.721996'),('iuk6e2jbmpevmx4lijcixtdica7vcixc','ZWQ4ZjA5OTU0ZTAyMGYwNTAyNDgwMjhhMjA0NzY1ZjhkOTBkZGUzMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3V0RCTWJpcDBTeXV5MU0xbWpXemVCcVdyOGl2VzRRWUNGZjdsUUFjLTdoVGJlazNxUXVDN3NSd1M0QzRpRWxydWtvSWk5anVCdFJoemNWeFdRRW1WU1VQSHNaQ0J2Q0NRNWlTSUJGbDN6bGhRcHc4S1VIMGtnMWE3QTJ4ekEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjIyLjAzODE4OSJ9fQ==','2020-02-13 07:40:23.042153'),('iuokbqym1wovduva5xr94nq4nuliag24','NmM5NzY1MDRjOWZjMTZjZjYxMzljZWE0YWM4NGI2ODQxYmVhMjcxZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4Y0tKTzViZk1ucFJYajE4bDU2enlYTTVHN1pQRDhybjB5ZUd0cHpjMVlMWjREakJtYlZnZjlPSFpuaEtuTzZiOW5vZVI2cjlxbHMyZF94ZDEzY3R5WTRwdjJQUFQtU0lpdmlQRHdiQ2s1UWRxNzBLd2w4cG5BOGdrRnNfQ3pNIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0NToyMy4wMDQwNDQifX0=','2020-02-24 05:45:24.005345'),('iv2a31yge9jsf305lhbatbofxz8xoc1a','ZGZhNDdhY2IwNTZhNTY0ZjY5NTQ3OWI0ZTUxM2M5OGY3Yzc0MmU0ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6SkNYc2E3NF9Id3htbmswXzZoaTVjVlY5SmpDdGZIMU03MWQ3b0ZjY1RrM3NGOTM5R21pSFpMYVFCQ181Y1VIZkJ6MDgwYkp4a3d3SlFTVkxpT19KeEcwbkxlSXViV01GMmh4YmN2OHN2amtwMFo1WHhIci0yaVc0Undrb0VxIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NzoyMS4zMzQzNzAifX0=','2020-02-26 06:57:22.336309'),('iv4p8jv2tj4sdp6kcxgvoa3cxkjl5r48','YzY2NjkzZjMwZmMwMjY4NTA3YWQwMGI3NDU1N2Y0ZDFlY2YyZjgyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6U1RRQlRxTGN6SEhzWTd2dHkyZlZuTFJzMFdnQWo1MGlpZUdiLWhPeXA2YlZyVXEwQXNMWkprZGNqZUxQRVB2YXJKTHNUMHN4THVxMXFQT1FGX2tsbFY1c3lRRk4wQnVnQ3N6dlhha21DU1Fya3hsT1gybHQ2ZnhjeWtzRWMiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjI5LjA4MzIyMSJ9fQ==','2020-02-09 06:50:30.086592'),('ixbmbin642nl8295sxsuh75riigx8fpl','NWJkNGQyN2NlZjI3NmY5MmFlY2U3MmU5OTE0ZDM5NDk4MTE5NWFiMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4SzZGNU5wZ1AwOEQxRklfenNRR1pHdFM5SzdTMDk3a2h4S1Rna2RHRXdld1h3UVpZY1JiaGFMVzZaOGpZRWFqV0RucGJsREFlVkRXSUp3ZEFld2dFcFYzc2RCQ2xXTWtGX0hFOW1HaVZncllCRFhKSFhtQ2oxMXNMcGpuV1kiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjAxLjA5OTA4MiJ9fQ==','2020-02-17 12:20:02.102439'),('iy0kbixd75uu12o15cb2ek1x1scftnr2','Njc3ZGYwYTdhYTM0YzEyMjRmMDEwZGI4YTQ1OWM2Njk4ODgwMjQ2Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxNHo2cms0ZUFZX0VpdmNTX0hvRWlqYU9KQVRfTjFkNC03WDlFM3NhZzVrQzFEVC00R3RHVk15NVp4RTdKbk54eVVfUjRrbnJtSWZJY3J2VVNGbENWd2pLRDNXNjZLRDVUM0lVYVYzYjZ2UU9NYWVXbllfX0N4cTJzNFZ4WEEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjU4LjUzOTM5MCJ9fQ==','2020-02-13 07:50:59.542891'),('iyleybm02zuvisyf5dy0hb7xjso1pkdw','YTMyMDVmZDBhM2Q5MmIwNTA5OTI3ZjJhNDE5YzJkY2RkNDhkMjJiZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3MUlVWnBtSnBIckd6OF80MHJtT3RLZnlycERGaVR2LTJwRnQ4eFNTWm9GYTVqQkhEUHRJeDlJZXg4WHhvU2cxbDNQbjFkTjVTelJyZWlRUHB0OWVicDV5LTdNTHFwaFY3cmNDU3AzMHhONWJ2eXJ3OUNQblFKamlnUzJ1TzQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjE0LjA0MDgzOCJ9fQ==','2020-01-23 05:26:14.044220'),('izcgny7ld0q5woje74hk9bn4ccyfd3ek','MTFkZmZhYjEwYjQyMmNjMjIzNTc3MGIzZmU1MTYwMTU0MjQ1OTMxNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzSjEzVVQ0NnBfM3I0RWs3SWdoLXhheWVnWEF4OGdTY3dZR0c4cE5sOEw0MHZKZWdyVDBVWlB3UUpfbmxnUGpRdzRDbUVtWEVxQldLZUIyZU05Z2pIWjFuY1dwN2YwUHI5WGNzb1ZuajkxOVhjeVNXUUkzRk9UeFhnSVBZbUEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjAxLjU2NTUyMSJ9fQ==','2020-02-17 11:40:02.567687'),('izvfzt66lylp0b6hozesfg8sozlxxj2u','YTQxMWU0MjAzMzE0MjY3MzQ4ZDc2MjgxYWQ2NjgyM2UzOWI5MjA4Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXaHZJTnUxVFBob2NHZWpjUkUtOG9POUlEaGF1SGpEUWhBX2dPYzBiRkJJQUM2eGtPVVJESVFnenRVeUQtVlhkYk1MdmdkWXNURnZOa1VldDFYRzhuZ2l2U2RsSGpSUFpuZi1oSVV6b1hSV2RRUnh4b19CV3dVd1BUQmwxaXRZbmRmTzZveHV3N0ZoN2F2VWNUdEoxd0Y5STNFcnJIY3NnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDowMDoyMy4yNjM4MjIifX0=','2020-03-29 07:00:24.267198'),('j0bff6xtw0vsqsa62ncp41jr3oakeyt8','YzY1YzI1ZDg2NWUyYjA2MDFjMTE5NTI5ZWJkZTU1N2RiYTcwODYwMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXNnFEeTFueDhJMzVvRC0tVVc1d2h0WkRHZVE3SGJhTmhPdmRxb3E4UlFDcjZCTUwwZkxtNk5ESmlaOXc2Y0doWkU3S01tQncyQ1lrcWZBX2p3ZFQxc090YW80LUZqU3FiRVcyRmJxLUlkM1I5a2JLZHFzTzZ0em9aenVvdVhCN1NCbXI4RTVYX2F1TGxqVHpjRXBOYUhtUS1uSmFVY2V3IiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NDo1MS40MDY3MjgifX0=','2020-03-05 10:54:52.408033'),('j0ek0i9065nsbhqy74b6h59q4tbzkjbi','MGFhMGRhMzNiODM0ZGE0Y2YzODVhMGNkZjU4ZjIyYWViYjc4YTYzMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfUEFLdEUxU1ZDVVpnS3JYeTZValVQTkJoZXNEMTBuZ3NwTGpCWDRuYTNnWC1oTkd6OC0zX0JlY3FWWFpYNUFOSXc2QkU0bU1WVFctY25lVzYxSzdSN2RaNk8teVlNY1h5NFJNODR1WFNDQ2FSTWRYUjNsenVGZFZtYlBVd1I0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0Mjo1OS4xNDM0MjYifX0=','2020-02-27 05:43:00.147146'),('j0gwrea5zgduhnic09znro1mxoh0stxj','ZTgwZTUyMTQ3ZTU0ZmVlODc1MTliMmI3MDA0YjBjMWMxMWE4NmIwMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxOGxSZ3FqSHJrRGo2T0VHR1lyNTVlN1l1NXB3NTlCWE5mWi1ISGJQQ29qdG9wMHJMVEdJQkM2cndENG9uSXpwRWpYQWNzNzBPUldpRXE4NU45YTFUZ0lVYkxjdmtPUDNkbERkSk04VUlzMlA0YlB6ZGd1S2NCR29GbGxRSmciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjUyLjkxODMxMiJ9fQ==','2020-02-17 11:40:53.921678'),('j0ouymjlwqu6v30um6kyc1yprb0domph','NmUyNDg3ODE0MDIxNThmOGQ5ZDAwYzNmMjA5MDlmYTBkZjY0ZTE0ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5ZzE1T0JaYXBzYmoyY2R4ZTJNUC1qdUNLUjZ4UGhTeHVWOTNYei1TSXB3ZlRqQ19IVThHQUV6bnNTdDQzY3lHUTdmN2p1dlBfVERQdG1qelNETkEtaXdwYTZ1ekkyT3lvN0ZtZV9ad2RkN29iMUVBZnE0TnI5YXlWM0tlNTQiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjM1OjM3Ljg2NTc4MCJ9fQ==','2020-02-20 07:35:38.869045'),('j2u9idnuvqq0tr3e9qhc7bskht03ai9t','ZGU1NTVhN2IwMDYxMGMwYWJiMDVkMWI5OTE2MzMwOTJkZDA2ZGJjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXaGlUcmtOcjdyUGxjeXAzR3hlUlMxdXduQVl3Y2JPRUJkUkRTMm10cjcyVW84a1daVDB1Z2tWZlZza0NvalNGWDNHTHhSZXF1dDYwc2s5c1YwMTdxa0UxUmNuZXd5MTktcEJYcGJOVGNsMThiMGpFUE9pNnBwRnRNdURYWVE4RmlGVXVzM1NIQm1naXc5WjdhZ1dLeXh0Q1VsUFBLeWJ3IiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NTowMC44OTY4ODYifX0=','2020-03-05 10:55:01.900353'),('j56eolroi3jf5fxcj6jmau8cznwoiy4l','ZGMyNGRmNWQ4YjFlYzExN2JiMmM2YzRjOGJiZGJjMTU0NzIzZTlmODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItaW9RN1JzeEtBMk9OSUl2emk5cGhvTHRLUXlxc0p6NDBQSkUzbUp4bnUteVpkeXNtTURQWTZxdEJ1bGpva0xxSTlfVFhmc2VMMlNXZl96TERnNDR1YlV1SkJNb3M3RHk5OWcxbkhhUEpWSVNiZU9zVDlGNWg5aTktZlBuQXMiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjQzLjg4MDA3NCJ9fQ==','2020-02-13 07:50:44.884384'),('j5cnxqesqq61td6nywwqm00ph2ed21ln','ZjliYWZkOTNhY2E5NTQwM2ZmYThlMzg3YWJmNDA2ZGYxNjkyZGZlMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxaE5sOWZYWHZDdE1aRXVYejEzTFI5VUQxelRqWUNPR3VIa3drQUlDUHhiSWpYUG5lMlJVVEtzZ05uMW1OeThpdDJkWi1pQ0lweTNTRzRzdWRIblpBWUN0OFU0VzIwQ3hnLThnRHkzLUQ5b1BmbzNFVVVIVWRPLVlxb1RvMG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjQwLjY3MDU0NCJ9fQ==','2020-02-17 11:40:41.674006'),('j690tstdxb50ns8e04ww8ndrseqx0kna','Yjg3MjM0NzE3ODEzNDNlOWY4OTNkMzYzZmRhOWMxMjgzYjk2MmFlYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIwLVJHX0lzZmtaTzd2dzZqaGNLbEw0aDRhYXBCTU5COU83Y29mXzd1enhoc0gwWVZ5dGUzSUJKRHo1LTZfaXd3cGtsbHNkRHd6MXRMRnRJY0h2WnllTjlMbmZmQjJyM21MWWhFRmRoMVY0SnV1RlZSX3QzVHVQekVPYzZiNG8iLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjIwLjMwODIyNyJ9fQ==','2020-01-27 10:58:20.311503'),('j74tol2debral7boot44yobytv5lakxl','NmY4YTNhMDk4NmYxZmRjOTQ0YTM2MGRjZGMwZjJhMTQyNzBmZWZhNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4YW5lbnBsY3B4d3ltSkd3eV9mSHk3QkdFWU5KZUNKS1lwNEs3c25OWVpuaGZuNm0zV1QtOXkwREJuaWcyeGpBN0wxMUk4a3AyU0NxOWtZNGRvV3UzYVFZVlR0YVZQWEp5YTdsQ0VwVVBWbGhmeUR1NEtLakYwSDhycTlCOUEiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjE1LjI0OTgyNCJ9fQ==','2020-02-09 06:50:16.253338'),('j7c3p6rqxzarxzscr39qawutlryld4md','ZGNkNDQ1MDYzY2NhNTQ5ZDZkYmEyOWQyODUzNzMzMjQyOGNlM2I3ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Iwek4tX3RuVkk3M1hmM2xkVkNPRXNxWXVTMDBxMGJ5WVY3TVB3aVRsZEpqZWlOVWczdXNad0dKOGJzZDBYc2pfUmw1TlJ0Z0F5Z1RldXNjbDRYS2FULW5CUWR2QnVMZ1FyQTlwRkplNnRRYWlJZVFfMHVGN0wtRzNxSUt1VlkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjQ0LjE1Mzc3NyJ9fQ==','2020-02-10 07:50:45.156943'),('j9goau8f21mwuabob5a4il92wfv2pc9x','Y2ZhYTgzYzJiMGNlYWVjMjgzZTUxNWU2M2UzNzA0ZGQxNmYxMGNiNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3LUVJVDBKLVcyN2t5Vlg1Nk1wWGF0M3ZEUllXTWF4QWJsMlBtTnM5NDdLT095LTJXbHF5cGVRcEN5RjlrdHFBOGI5TkNRMXRkTi1qRnY5QmE4djV6VC1XZkZDVElyNTRTam1icTlaOFlhNVJ1VXJJTXhlZTBWZ3NiaWZzSG8iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA0OjUwLjU4NTU5OSJ9fQ==','2020-02-06 12:04:51.589131'),('ja5t4v2s0sde2vud6yggx6u6f4jsjiun','NDNhM2ZhZTg5NmMyYTJlN2E5NTBmODE2ZTZjZjc1NjNkYTgzZTcxNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUIwdVlPQ25nb0xFZXRGQktvMUNnRzZYckdCQXkyYVJJdkh2WjJMVjBBRTA3ZUVDemNoMDI4WmpRaTBZcFlHOUozZmFoU2haSXA1ZkVlUFNwRGhWTkZsOWczM05ZRVBrdVBNZlllLWZDUkphdlhJQlljalZDMHFzV29pNWdYQSIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6Mjg6MDguODg0NjYwIn19','2020-01-29 06:28:09.888374'),('jccm39szzj1pow1ew3wctk5lmp3gd55h','OWQwNzI3NTk5MTYwOTM0NTA5MDhmOGQyMzljNTgzMGEyN2Q4NTY2Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWQ20tcXdsc0pkMkRBMW5kVkRfR0Vnb0V3Y0RBVlppYmU2WjlSTEsyX3ljM2ZWS0haanpJV3dpTnNEaTZKbEYyODBKdHl6QlAyNWtrb2pkOWQzb3VtdmhTU2hzUVNpN3ZfNGZkUDVQMXNyYXAwNm1oMVVUeXpWLWl6ZzlxRkRTTUt4M0ZCY3VBbHU4VmdsUV9faDJfUENDN180Rmp4eXVBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDowMTo0Mi43NjE5NTAifX0=','2020-03-29 07:01:43.765396'),('jcgkv1eycaiqdvez68k2zm1leyou5vky','YjNlY2E5YjllYmMxMmVmZmY5NDY0NWIxYTgzZGM2NjM3NDE2YjIzNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4MGVRU0RacWh3YkdaUUFaMEdBOUJOR1VTWE9kV0RvbjQ3VUkyOHBXZlliNUJzNzZXRmFGMVFramw5Q3I3cGVzUlJpbkU3THZmdUhYTzhSNjhuTEgtX25oNGZkOXM0Tkh4U0ZLOGJKUVNFTkJuT01KSU1GVTFBYlF4Wk9mV28iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjQ4LjczNjkwMCJ9fQ==','2020-02-06 12:19:49.740252'),('jciabo8q3tyg55dtu18o5p6rwcjjtd9r','MWIzNmNhNGMyY2QxNDJmNzg3OWI5ZTNmOGQ4MWNlNGMyMjdjOTM2ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI0NHJFc0l1YjZSaWZFdm5QeFpEdnpNMUZMSHMtWkpjRy1uVTlLUUFjQzlUdlNHMmZfdXJLU0NySmE1cWdYX0ZSaGVfazhqLXF6VWQzdWtlSExFNVNFMmhnMDJxN241UllOTERQUDVnQzRmUlZoMWVWbWYzZWh5Y1VjSUczdWsiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjExLjM0ODc1MyJ9fQ==','2020-01-27 05:46:11.352230'),('jcyi5gvmtttbai6blmdtwjw4jy5jyptz','NTcyNTJlY2YzNzFmNTk1MWQ1YTcwYmU3M2MwNTgzYWE3MWZmYWIxMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIiwic3RhdGUiOiJsVU5BWUVlUG5kWGNYdXZleXpQQlFIWGVoRk5rY20iLCJjcmVkZW50aWFscyI6eyJhY2Nlc3NfdG9rZW4iOiJ5YTI5LklsLTVCN0hzN014QXREX0ZxeFo3UWROckFqcVVuYkdCQVlyMzRrdzYwa0wzSTBFWjNPVlhGVkZrRk1pZFZZM3NiRC1EWHdhXzVaUWZBMU5vU0JvNENmWHFaOHB2MEZZbkk5TTlyQlgwQlVvT3BkT3hmOUFNbkFsVW0xNjVBbXJzQ2ciLCJleHBpcnkiOiIyMDIwLTAxLTE1IDA3OjE2OjM1LjI1OTY2MCJ9fQ==','2020-01-29 06:16:36.260306'),('je62qc53wd5vxbd531waq3v86h022woa','MzA4YmQzZTcyYTI5NDVjYzNkNTkzZDYzZmExZTM5M2Q1MTdiMjFlZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2TTVhTi0yY0lwLU9WWDhNSEgxQ1BVM09Bc3EyRnVDN2FGMDN3Ykc0RVRpdjVqVW9RejNLdTJqYkhLUGk2a3hjSUhEZnZILVFNU25tY1A3V3VtV3dmVzZmUDA0cW9jMkhoTmpZNlhiSEloa19rUHpDMF9JREdWOTFEWVNpYXciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjQ1LjIzMDY2NiJ9fQ==','2020-02-13 08:00:46.232369'),('jerqa72rjif3kp06m9l02r0j7hzhkc5g','MTMyNDllYTMwOTAwYzQ4YTEwYTFmZGYyNjAyNTc0ZDM2OWRiOGY2Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5WlB1NnhSNTZUZ0NzbGQwZkZtWVJubVR6OTVYbkU5V0hKc3VLQnFPOFZwSjVMMTJXbzdaNDZvNk9rQ2dkT2lLc0Y5cHBoLWtkQjM2Rlhxbm9wR3lBdVhjbFJ5c2JIbUowN1dEbHZXVXNzM2JvQy1oREZvNkctaHNFY2p2N3VUIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0NToyOS42ODQxNDgifX0=','2020-02-27 05:45:30.687698'),('jfpz8bic1eclyb9fmh86eb40sap1b47v','ZTk2ZWIzNjNlNTBjNDQ3MzNhNjU2YjBjYzY3NWU0ZmRhYzlhYzgyZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3UEJwY3VDRXdPVnNnbzBRUmxna1NZVEZ4UnhGellpdTY3c3FsbjhPTlZhZ3JmeWJlUDBSQTVoWkE1aEVfOE1ubkZ4MU9uZHBpRHdUa2RZYjZZbU90dmxFejFTclVqbTI5OFVZaHRBaWRZbTRCVHVqVEd1UjhJdXNNMVB3c1NGIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxODowOS41MDYyNzMifX0=','2020-02-25 08:18:10.509754'),('jho5j3h00n9lbf78lhmv8w5xtrk7sz4b','MzdlMmYxN2RjYzM4ZmUwNWY1ZDI3ZTNiMDk0ZTNhZDc4Y2E1NzI5MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUIwRUtRRU1yaXRHRGwtc2ZVSDZCeW9NZXRsd3luQUVJYk54VXk5TlJkcEoxU1RRWkJGbUFma05fRHNFN2cyS1ZDQXNSLXppTUhzcXVXRnhuUjJUVDVRSXY0bVVjU1p4a0k2aHo0eVpPdXlOb1J2R2ZOWlR2Y2JnZS1kXzRQdyIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MDAuNTUzNDEzIn19','2020-01-29 06:18:01.555193'),('ji2korjv4sh6t9kgs8nqlzjwdcadow6f','ZTViNzk0Nzc5ZTVhMDU5YzYyYWFiMjZmODEwNWI4NjgxZTFjMDg2MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5TzZ5WGh3dHNmMmFaQ014enBxcFFoY3dYeDBZd2dJdmtOWWVzXzRjX0phM21RQ3FtdFgyOTJvR2tQVTU3TEhKcGpJVU9MaHZxOS1QLWU5TzBoVnoyTHZjNEJaa0RZQThSbXRPdC1IcnluYmZWZmw3WkxueFpGLVpoSzA0YWMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjExLjY1NjI0MCJ9fQ==','2020-02-10 08:10:12.659747'),('jkc70yl4ebxg29pxxp1k6hg7zv8poobx','NDdiNGRmYjFjYzk4NjA0MzMzNTczZmY4ZDdlNGY0OWJhZTA5NDE5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI2Uy1nNjNJQUdKM3pKZXlUamRBeTJ1ZC00c1htRXFYdGlfamROcGFnMlpocWxNVmxnV2NBUWRSTS05V0YzZm1vSFpkOEN5cWcxbWZWalBmZHBhTWR6ZmhCVl9YVUZBd2ZvU0puY1NLaktNYU1LRmFmeEl2NDdTXzNtNzFzZVEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjUwLjE5MDM0NyJ9fQ==','2020-01-23 07:15:50.193981'),('jkjw8y2l2if29vvndqkowliqm6181z79','YmI2NzAzNmY5ZDRmMjQwNjhjY2Y0NjMxN2Q2ZWNiZWM5ODc5ODVhMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzT0JKTGs0M0haaFlvSFk5ZXdCay0zdDRrS05mZkw1VTFQa3FaQWZYTmFoaXBnSkpkNjVKUHdTX0dicUpmWWdMNFJyVHF5TDJPMWxHQVE1TndMbkl2MVJtSjhwNGlBRFE3bm03bE1rUFllaDBvdTFJV3g1T3ZNMV9MTHJZNmciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjA2LjgzNTI3MCJ9fQ==','2020-02-17 11:50:07.838790'),('jkoy6y1b7plgeaqxlc5l9u6zeajddxoa','NDk2YjkzNjdiNWExZTA0ZTM0NDQ1MjUxYjNmMzJkNTg5NjkxNTViYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWTUdQTnQyY3Vxb2V0V0JDSWNxam81VW1TTEdyMGlHVFBrV0RDcmJ4elQ2ci1OT3J2VG1BdERTQ1hxYlJKc0MxeHUydkM2XzU5eEhsVkVoYk4wbXlLM0xkaXZtalhnOFJDcnJpMU5aMVV2RmRaQkljU0NZYVRaeVVqTnZBNGowU0c3RmMyRzVpQ01BUXhlNi1YNmZ1SEo2cXBJbEthaTNRIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1NDo1Mi4xMjI5MjYifX0=','2020-02-23 06:54:53.126438'),('jmuuq4zvddq4fp75m748bgn78twhbyzv','ODQxYzk5ZmYxYTY4YTE3Y2MyZDg3OTUyZTdmNzI0NmQyYWFjNDM4MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0TlJQUVRqUDY1TU1YNFI1SlRJTGZsbnQ5N05mVTl0Vko5RjJoeGJQVTlkNlpTVzhCZlNmdHlrWkFwVnQwMHo5NUdXTGJ4TEZMWURfdnlycjVXeEFrVF95ZWM5Vk8yc1JPblh3bTlPT0dfUV8tM3NoQ2VqZmtrQVFHMUxxWkxuIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NTozOS41NjkxNTUifX0=','2020-03-05 10:55:40.572943'),('jnzllk80rh3943223v2kbv7kk8c8l4di','ZjgwYmE4MzUwY2JmZjQyNmEwNmNmYTRjZjMyNmUwNmRmZTgxZTQwNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Iwa0VGZ3hHNi1jY1JXeWJXQjVoaTJBZk9DU1V3UXBJT0tuOVRnVm5JR2I4NjBOZEdNdnA2VFZFUm9mbDRjYklCa3F2cjFGYWRtQ1Y0OVRJb1hvX0FxSzV2TmxjOUprUUllOFVJVW1hV0VmSlowUzNkUXN0WW9kZHI5Q3MzSFEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjM4LjEzNTUwMSJ9fQ==','2020-02-13 07:50:39.137462'),('jpg5wcuc5t6altnce7vgjcjmzr9t6d6x','ZWZkZTQzYmQ5MmJlMDY5NWM5YmM2NzRmMmEyNjAxMzExZjY5ZmM1NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIydmwxQkszcEp3MWgzVDgzUTc4TGRoR3FfRlFZQ2JfX2ExRlpSRXU3VXIwc00wWjZBVjF5bGJZY2xxb056MWhqVkx2MHg3c0hsMU5BQktCOVBZeTdQWGRab1p5OVlIamlOdURFazcyOThYUllfdTNSTXVkaWZLcmVETGVsNVEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjI4LjgyMzc2MyJ9fQ==','2020-02-17 10:50:29.827226'),('jqqt52jwchm19z4wsaapmjrcb33t53bz','NGY3MTU3NjEyNTA4MWQ2ZWMxY2Y0YzRlNWUxMDdjOGFjYmU0MDZiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6bkd5MVg1S012LS1PMFdqQkFDdFlnMW92TVNySHNuYU5JazVCeWNxRTA2ajBNTDdwZExvalFDWlpKYnZFbnc2WFE4d0pXLVpUUmN6aG1GczdCQ2ZvbHVFaU5OR1g2QnNnYWFXS1JJd25qRVpEUjdKRnZBZFBYd0tLbnprM3MiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjE5LjQyMzgzMCJ9fQ==','2020-02-02 06:01:20.424875'),('jqrygosbfbjhnf0rnc7rrmry3oqlsia8','YTk3ODJhNWNkMDUxOTYzZGViNzYwYTY4ZmMzMDU1OWZjMDUzMWQxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3aDJvRHp1bkxHb0o3ZDRuMmp5dUh0UGRfUkw3RjNQdk1PdWFhM1RZVjdfRW8xRFExaFdLbndsYzgzSmc3SExIZmpfWVFnVC1JT3M5MnFfS2NTS2Q1MEc1bnFWWDI3ODdfeUNyeUJYNF9VVlZoR2I5dVpvWlY4RVg2Z3VReVkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjE2LjkxNzg2OSJ9fQ==','2020-02-06 12:05:17.921356'),('jrhsbbws2twbuuad2n565ethwfmpg07n','OTM5NmY5NzE4MjNjMjBhZTM0YjMwZDQ4MTkwNGE4NTMwNDYyNzkzMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5NGVyUHVLSDNpbjRVVVhTRTJnYzZWRjllWjdmMzhzeFg2SllLWXVEblpuMUNHQ3VjYU5fc3ZHWHRuMUpEb09FdFNKdmJmVy0yR2xQZVpHZ2Q5Tjd6bHRCNXJza2xQT1VqMDE0RlJaaDdsaU80MlFDY2VFQzhzZE1xOWQ1NjQiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjQ2LjM2NDkwNyJ9fQ==','2020-02-10 07:40:47.368481'),('jsrglx1e3ewxz8s7ghto5xt58e3sk5mx','N2ZhNmZiMzMzNmI1NTc0MzI1N2YyMmI2N2U1M2FhODUxZTcwYzQ0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4enJiRktGVkZ1YTdNSkU4aTFCbTFtVW1tekoxSG9ScFh2b0J5RXM3c0c2aFR2YTI3NHdrT1dSVFZPTm80cHFUc19DN2Z0d3hDYTRsZ3ZnR1pRUHpfbm5GX1pwV1JaeE1kQ2pQc1UwWGxQd0dlWHg0SmFwOVhhY2V5UHI5YUEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjA1LjU5NjEyNSJ9fQ==','2020-02-06 11:30:06.599470'),('jv6yi9wyjikn026xqtugel9zng4fjj6v','ODc1MjI5ZTJkOWVkNjAxNDdkNDgxOThhNTA5NmQ5OGM3NjQzYzM5YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3WldhMV9ON1pEc1dFVEZ4SWtNWXQwUDkxLWt5M2F5RnhUUmFlanFoaUlhZnNucVVqdmhWNmlRSTVYWDYwMjV3aTRiM1dsUGdoOWQ1RTJNSjVJVXNPeDRxYm1WM2x2M1hJMG9ZV3lRZFJXdEZYTi1IVGpvWHRSWldVRjVseTQiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjQwLjE3NTk2NyJ9fQ==','2020-02-18 05:39:41.179475'),('jvic8b7naxa7p3cwg9blksmspxs2gng7','ZmYyZWU2MDI4YmU2OGM1YmQ1MTU1MGE0YTdmOTBiMWMxYjcyYzlmMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ3bEdEQjRuY2FyNWlMVVBudlNBSUY1Y010Q3JDcEREWkJFYTJvUjl4eU1TTFlKUXhraDJQR1RCMDZHOHpPZ3p2VUpxb2hXNlhRQi1Ld2dSQm5id3FwNzMtMGk2Zk1sR1NzVmVkcGFkZUdkUHl0YkNrdy1uOTJscE1BdHJiYWciLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjUwLjc3NzA2MyJ9fQ==','2020-01-27 10:58:50.780506'),('jvuf0lqt16mlu5v83ozd823j9aj2dt2c','MGU0OTdkNTdmYWQ1ZDYwYWIwNGQyZTVjNzc5YTAxYmMwYmMyNTM0Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5aS1pQjBFLW5DaTBrQ2pBckVEaEpOeHFZdlZGZlJZaHU2b2pVVDRZRjZDdU5SbWpMSWt1WlB1T0MxSEFra1ZyQmc3aWlvdmE5d3NKOE5KbmFaTURYQndpaDRsLU9EMjJFeG9hYkJ4SEdvaWdKYWUxUHZ4WFZyNlpCbHkzWTQiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjI0Ljg2MjE2NCJ9fQ==','2020-02-10 07:40:25.863695'),('jwwhtxmugmf0r7jx0ppstqfa6fzabxs6','NTk3MjQwOTBhZTNjYzVhMDQwNjFhYzAwNzE1OGEyNTA3YzRkN2NkYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3RGo2RjQtNzlMRTg1MHRJdWhzXzhRMEhua1FFemlCTmw2bjBrMDFUaEItRFJmdXY5amtURlpNMzZVZkVaYjY1Unp4VUt0QlBOS21zd0dJckcwTEZySWxrRFhiYklRUVlYbHFQWUZCbkJZYUVwTzhRV214cHVQaVBBVmVxMG14IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDowMC45MDQwNzkifX0=','2020-02-26 07:30:01.907605'),('jxfprsvp7nigwk9gs3iubk3101rqs8kb','NjU1MDU3YjI3NmJlZGIyMThlNmRiZWU1MGVjYWQwZjYzYjFlNTExYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIydUNjSVZ1dlJ4dmhEeWpiYjZEUHd0UDV2amhNbGtGbmxlakEwYnhIV1dVWF8yZ0s1UXRYRTFmR2NxeXNoRlcteDlnaWpnZTlJbENGMVgxdE8zSGNCYkM1YVB5VmVMNkRsRDZiWUIyaFVycWxTNk5mblV5elozQklIZERrVVEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjAwLjY0MjkyNyJ9fQ==','2020-01-23 06:50:00.646443'),('jy5br7bxmedvrgxke2tgpug31xk7vmbg','M2FiYmQyNmQ2YjY5NDZjNzg3YTRjMmUyZTc4ODVhNGI5MTZhZTU5ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3Q3lNckxDTFU0QUNGdU16QTFjSmVPSXZUWkg4cWdxdGFEei1PQjRQZEo5U2pwU2g5UVhJZ0FnVkpSM19TUE1zNG5PUGZrT2x6d2w5cjJqWW15NjdaYTNzQXU0Rm10Mm0yRjVpSHpCa0FKSW5LZ3NsanV3aUNJeHBQS0pFZ2ciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjQ2LjEzNDcwOCJ9fQ==','2020-01-23 07:07:46.138212'),('jyvc80w98vs7gpx1jhovcqf1lgfch3vt','YjJlNTA0OWFhY2FiOTJkYjUzNGI3ZGFlNjJmNDIxNjVlNmZjODRjODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5WXJqVWk3dUlkMkt0dDUyMGNjOUM2UU4yRWozckJ6Mm93a3VMaEY4Rlo0NkhvdGVYcWt5N0l4VzMwdGdCcUJOc1YtWlBLRFBxcmhTTDhRbURUTjBjWkdHdmlsbjNaSGUtWHY5b28zVlN1UUpPa1BTbi1YWm1LUjhreUZ1ZW8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjA5LjA3NDYxNSJ9fQ==','2020-02-17 11:30:10.078062'),('jznfyaotopxe2k8aobnm7h6qk87r6f1p','ODY3MGU2Y2ExNmZkYjAxMDlmNzVmNjBmOTE3ZTEwZDMxZGNjNzZlMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5Q2VBMjA1YTAxSkFxdGxpTzVyNDRIa01rUHhEM0liYVdXZTJQR2FhQUd6RTBmQ0ZlbUkzVzNfdXExUUN6dmdMWmFNTHBkdlhUcFZ3Zm0tcHVReUhneUJCTjVhem1icmhXdWkxSkE0SkxzdnpRLVRURktfbEtjb1RRNkFYSE0iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjE1LjMwNDMxMCJ9fQ==','2020-02-13 08:10:16.307893'),('jzxnbza02q71jrvi6ka61c4lzfcyyfff','ZjM4OWI2ZjBmMDI0OWVmZWI0ZDFmNmE1NzQ3NjhiYzY4OTUzMDA0MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3Ukh5c2c4ZlE2N3duVlJqeW5oLXFhdHZRVHg4Q2YtcU1GV0FMUDhJTEJlam9WOFJSWUZDdWNQMGo2TVV6ZHFLMnc4WnlCRW1tQ2VBdW9SOVh5cmh2MjhBc0RLdWR6Uk9QYndqaUREZDlkdWV3V3o4bzBTc0lXMG5WUVlGZ0kiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI5OjUxLjA5MzU5OSJ9fQ==','2020-02-06 11:29:52.096929'),('k045l0gx14ko35lty2lh7x1e6l4e3bpv','YjE0OGJiMTQwOWYyZGUzODdiMGYzZjFjYzRkNjExMzcwMGE0NzYxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwZXlZS3RmR0JoYmNNdFE2dHJONnRfZHZnZWJJYTlvclNjM2Z6VEkzQXZsUy13R1hEdXhadENPZFpyVHNjMzVMdkdmcmxnNGtGX24yOGJ0elQ4MTdFVUljLUl6MklEVW9KNW0wNTdjd0lURHBYUHI1azZ5SDh0MGFQal9Ma0kiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjM3LjQ5MjU3MSJ9fQ==','2020-02-17 11:50:38.499633'),('k0hh6wqb6kbi32i2t901kk0x2s7hbjd2','MTU5MTc4MDAzMzFiYTk5NjA3YjdkNmE0NDE1N2JmY2E1NmVkYmIxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1WnRUS3FiZHU5V1cwX1lXclZUemlhUXotOXpPaEZpdU43eWg0TklyVkQ4eXRmdkxHWERGaVhUYzhpNW5RMGtHWmlnTjdQLXN4aVA2VTF5T1pDREw3UFVMM1liTzItdW1CSnNuRGtxVTQxTlFWYlprTDRhVmJ6LXFJNlAxZlkzIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1Nzo1NC4wOTQ4NzQifX0=','2020-02-26 06:57:55.098227'),('k1nxmnneingbrjeca7gkd8d7d4j49yvy','YzcxZWI2MDU5ZWY1ZTA2MzM2ZWRhOWQxY2VmZjQyMDNiZTdmZGU0Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4LVZ3RU1qV3RVQ3BrMUJnSzQxRllNT1Q3MVB0b1lKb2NNaS1yUEozWU54SmhHNXJveklMeUhoaFFtOVJMb3FwTW5TVFo0RzdYLU9VdXp6dkJkT0N1UEJIaWxzV0dicU53ZHNHbHhzX0JKb0JZeGpzSHNsYmJtaTdNUUpuaGMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjM4LjQxNDYyNyJ9fQ==','2020-02-17 11:10:39.418071'),('k1peuxsc0w2u4uc7pip47511hh9cggz4','ZmJkOTRiMDg3N2ZmMzVmMzA4YjhlNTg2N2ZiM2JmMmVlNTJjZGNiYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVLVlUaC1LMUhYb0F4WHJWRy0zNDBrMFhKd3dkTGRBT094UDRVRGdIYmE2a19aRnZZUlR2YjQtZ2ZIMHk5Uko4ekMyWExidDV4SkF3TFZBQmNfQlBpUEx1ZU5DSmJtendyRk9NZnRpODE1UkdQV1F1amZMeTkyTEFqb0ZzS0NzS1A1c1BmLTNnbnNpQUh3Z3p2WEJTSEs4NnlLZnBIV3p3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoyNDoxNi4xNDc0NDcifX0=','2020-03-29 07:24:17.150954'),('k3fir3q56j28cx6otwjtqcgm4ko41y8k','OGI0ZTYyNmU0OTFjNjU4NzEyNDMwMjFjYjg4OTY5NDAxOGI4OGFiZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwaXhXd3lMd2tGaEoxQjdCdWswUDEzcTdTYlNUY0l4UWttTDVmUHdYTkg5STlMNHY5d240d1Ewc08yVVE5Sk82RXljSFVkQ2YxWDBwdzlrbUhtZjNzWVpTdlo4R2F4S3RaUlo3a0tjV05DRURYVVExV3A4bnNmRE1VeFVDTUUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA2OjQxLjkzNDY0MiJ9fQ==','2020-02-06 12:06:42.938038'),('k3hndyftxvgdw536aj4o6ncxpblv61fm','OTU0ODZlYzIwZjI3MzBlYzVhM2VjODk5NjNhZmI2MzNhZmYzNjc5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI4SnhTbURmNkNNelU0QUoxR0ZfLXFlald0S2JWSlp3Skg5YkNlYzZ3OWZMXy0taTdPTzZmUnlKb09jWE1vZnV6a2tNNl8yMzlSLU4xTHlyRWdLMUt6MzhMVVpPSThHZFNicHpMNjBEQjNHcHFhcmRYNDhURVNWZW1GWTdtWXMiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjI3LjA2NTUzOCJ9fQ==','2020-01-26 05:47:27.068922'),('k3vga3ckp9b3azhwmey83s37appyz3ld','ZjA2YjQzNjczMTFkY2RkNjBjY2Y0ZTgzY2ZlM2QyNzliODA2YjEzZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4RUk3a3NmV2tZNGs5RWZ4SXlPNl9DOUtZVlNocTdVcmlhWGZnZ0tMUHBYV3NZclZ2TjFnV3BKNlJQM1FEOUFtQkN5elhsWEVqYUVaVEV2OWJSRzhxRTdBT2g5a2FhMDVITDVUT25lV1I4TjVOSzkyT2NBbDJJMXJoajA5eUV5IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MToxOC4xMzA2MjIifX0=','2020-02-24 05:41:19.134122'),('k46m9112fs7628lp8mo8hh2z5990hy8n','OGU0ZGRiZmZlMTFjN2ZjZTQ3OWZiOTYyZDMxYTk5MzFmOWU3NzBlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4WE1pWlFZV2J1am14bVdiQ2dNNGxPbWdWTzFKVlh6dHhqekxJaC02NTRtbzFyaVAyOEFmQ0w3NU05RzkzeWlpNzZ2Y2FZQ1ZHTENwQzE5Vk1RVGJxSWQ2eFFqZDBaVEFDdldnNUtQV1RHNFBZZ0JjWGpOemdORGltN1duVmNaIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDo0MC44NzcxNzgifX0=','2020-02-23 06:00:41.880634'),('k5a25v2y0lie6rsw8sogfq32pcuv56zy','ZjRhYjg4Yzg5YzM5OWIxZTI0YjA5ODI1YTVjNGNjNGY3OTNjYTBiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxLTNKeU1ZbnJLZkk5MUlzc3ZmLU1BeS1EZFJsZnJoQ09SSFk0RXJicmNfazdWeUJ0SFMxZ29tQlNfcWV6OGZDVTFZU29hNHJHNDNuajB2VERKUU1Md1FNc1lERmxfV3ZHRU1NMFdMRzU0LUoxclFQUkRHNVNsdGFrUFB5RmsiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjE0Ljk1Mjk4NyJ9fQ==','2020-01-23 07:12:14.956455'),('k5b1e7gcbkmcvoooudo4vuy2v04dsd05','ZDBkMTIwMWQ1MmMzNmNlY2FkMjA0YzdiNzI1MmM0YjFhY2Q0M2U4Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5UGl3emlQSUUtTktyNUN2dXpWRW5OWFp6dFhMTDRUTGFaeWpTc0V1emZlUTZ6M1Q2VDVFN1Y0TTdoN3ZuZnlVa0RpZkQ5ejZHSzhZVENrVktpdlpQNGw4R3hkaGUtNi13N3NBTGNkOVFrWUF1WmJ2NEpMV2hhbTNBTFlCOEk3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MTowMS4wODA3ODYifX0=','2020-02-24 05:41:02.081937'),('k68f18u8smef58j0vosk0xavh87xqn78','NTcwMmRmYjQxZTk1OGNlMjljYzVjNzgxZjM5YmNjNzA5OGJmNjMxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyQ1ZZRmlVenRlSWJNWmFSTmFTWUZrNGZoUXp2Tk95MjhXVlNJUXNZSlUyUy1jU2FTd3U3Ml94S0xDTTFjalpvb0xiWS1zalRPSVFxOTR5MV9SeERaQ2luaG1keDJNN1FxLTRUT0xzVlFfMVU2RmZVVDRfcDNvV3NQaWluMzdPIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDoyMC45NDI2MTQifX0=','2020-02-26 05:00:21.945970'),('k6g36i9d6328x35aqd981vduhr5mdno7','NjVhZTgxZmI2Y2MxZTcxYzdkMzJlMjJmZmI0ZmY5NjYxYzRlYzBhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0N2JFTXdIZ29wSG4wTS1sOHUydWxIdUdKdEtINmxub0s0YVlIRXIxS01sSmU3dzlBTjhvUDdDaWFNUVozWkg1Q0c1RC1nMGhGWHE0LWFZNWNKa1dJbFBId2pvNXJFVXJqTk1hWDFULTBTMDRDRW82RUE3ckdGY3JzcFRyRkUiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjAxLjM5NTcxOCJ9fQ==','2020-02-10 07:40:02.400064'),('k6laak3cn2iqzafwdi1deuioknsc7kzt','NzAzN2I3MmRiZDVmYzQ0M2RhMTg1ZDg0NjE4NWUwMjEwNDc3YTE3ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI5ME5pcHdGbW1yQWRuQ1JxUFl6cGFJSnpNeFVFZFhDajNieXV6cHh4bVd6Unc5dHhVOHl1OUxFeEhIZldtVEt0R25XTmZESWlEZmxqV1RmNFhYaFIyLU9rSUttTXQwT1VYQXpnYkNMUWdYMEoxT0lZUFhfNEZNNkplQ3F0YU0iLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUwOjQzLjQ2MDcxNiJ9fQ==','2020-01-21 05:50:43.463102'),('k6wfq88dj3i35279et8vpp3ru19ogmrh','ZjA2N2NhMjg5YmFmNzZiMDBiMWJmNTAxODY0MDk4MzZlNGM1ZTNlNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYYjRYNnRkNHRJWlFhQTBfaVJIbkN4bmtiY29uOWNTODRGUkdLcjFPWVJRZDlkREtqeC1NVTBNQW9tOUVDelFDMWlNZnJ0NWVGWVRXdE1rVklrTm9aaEhKWDEzYlQ2cDJ4M0laT1Zmb1NueUpUYURFOVNSSkJnSHFoeWJ2Wks0dnBhNTFOalRDUVlKRWZaeEZYMkM5UlNyN1ZuVmdVejZBIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjo1MC41Nzc4NzgifX0=','2020-02-25 07:12:51.580823'),('k83yztyis6hthxtt0tarbaphfvdhyhzj','Yzc3NGUwZTA2ZDYyNTZhYWY1Yzc5Zjg1OTg0MDA5ODY1MWMxMDM4Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWU2FidGlfWm5xc1o1TlM4a1FJYnVxTlVpMThyRnZLdWJOeWxtdmdqUncycUpNOGhsSG03X3p0ZnVjdEF4UHU3ZXRpTDVnU05pSjI5alYzNTdjaEU2NnlXRHhmR0VpWlIwNWIwWlJhNDVkSUhOelhwTlNFYUpsUkpxYlJHNTJjWkNLVTVMY09wQlZrWmVWNXJSall5UE91b2cyS3BmbEhnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1MzoyNS4xNjc3NTIifX0=','2020-03-29 06:53:26.168905'),('k9rkjcjd2je465ubayl3oau3uhcwb2ym','YWUyYTgyYzEwYmQ5NGUyY2EwZjBlZDQxMmU0Njc2Y2QzZWUzYzJjMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwZUJjVVF0b1ZyXzB3LTNWQnVZZGxPUm9TLWhQR0ExbE9pZUZWT2lVazRJc2JvVnRSOVN2QzRDS3pjdHZGeU1TUnFyZ04wb3lFOXJyVWhKMkVqVEdxa2dDS21wN21pZzJ1cDBzTm1FU2ZqTHd6UzBvYkM5M2JpLVRtdVJpekUiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjQ5Ljg0MjU3OSJ9fQ==','2020-02-10 07:50:50.846023'),('ka91or9em6q6qljv2vc8j6rvi7nm0mvp','M2U2YzY5NzdiN2JiNTNlMjg0YmUyOGNkNjAyMDU4ZWZkN2VhNjBhYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2SHZqYVZjT0pub0lfOGhlVXROcnE5ZG9lSUkyYTNld1U4dVU1OVB6SVJpbzBJeWd6dGR2bzV2eWhRRnN1eVRZQTFjYklWTE5hVkE1X0ZuUHptTk9XMm5ucWhsMWd1VlVHVGVRVTVoaWJBZ2Rnc3FGcFZUV1ZMRUpTeHhKcE1jIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDo1MC44MjgzNTMifX0=','2020-02-24 06:00:51.831627'),('kaknaszagrnebl05c6gv2onxuzbeh1xg','ZjNiOTdiNDIwYWRjMGMzZGZhOGQwYzI4NjAyYzI2MTc4NzU2ZDQ5MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfTlBuWVNhSGJQbE5EWFlfNGt0QW9rR2lFLTBxR0szQ2FmclhaNHMzaG1Fa242NFpKdzQwT2dET0pnX3VuNGltbWpYTnJLNHJGaWt0OVliZ3l0UDd0X0p1YnhERjA0dmZObS1QNVppTkRjRFl0SUZjZGgtMWozalRzTW1LNEEiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjQ2LjI4MjA2OSJ9fQ==','2020-02-09 06:17:47.286138'),('kaujd0jsrpgrfpnz0k5e06qxcwgplfe2','NzdjNGYyYzM4Njg5OTBkOTdhNDU4MDAyNjcxZTg4YzEyYjZhOWVhYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzd2pJMW1CNXZOYmp6d2QtV1NiTU1uQjdMaTRRbzdZT3VqUVRJaUNDcFFwNzdYb2pWVV9oTUZvRFBCU3lOMm5hTTQ5ZVk2ZWZtc1dGQWp3UTR3SzJRQ3FuUkNOeWNlUnNZSFBvWjJ6d3VHV2NubGE4bTVQRFgwOEljQjFVZTQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjM2LjI1NDYxOCJ9fQ==','2020-01-23 07:07:36.258128'),('kbmwruqy40fcyllk610bwlkx7kny6xwp','ODk3MGVlZjUyMjgyZmFmYjZhODU4YzI5YTY0NTllMGY5MDZmOTY1Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5eGpVZDloV1BkRFc4M2RzUGhqMkE5OGU2X25MekkyZ2xsaHVNMVBnaEpSbExsbmhiRW5ocDZqbE9zNUZjUHljYkVqYkEyVjN2WVExN3BRbnpuNE9qY1VPVU1XdUc4WnM2cHZ4bE9yNnNOZURHV2s5UnFnVU9LektKY0x0cWVCIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxODozMS44NDA2NDMifX0=','2020-02-25 08:18:32.844204'),('kcc7cxonqlcojptk5t183wscesm7f23f','M2IzMDVkYjhmNjEwNGU3MGVhOTUyYzY5ZTMwMzM1ZjRiNDk4NGZkNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6M0dPdFlnZjVtV0tra1cyY3dKVDdTRExSYlNveldnNDRiWmpnVlVfdjRPTGlaUFdUZTFlOFZjeXpqWjI1d3ZOdW9MdkNXZ1VOeWZpdnB5UHptaUExOWIwZ1FDN1JaeGN3eG1XSnNEa0sycmpWMi1DTU1GQmoxQnRWMUpjR3ciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjI0Ljk5MDQ1NyJ9fQ==','2020-02-10 08:00:25.993742'),('kd63pfeyt1r4d890b3pyocqury1kvkvp','ZTI3MDNlMjdmMTNhM2NjOTVjOWNlMmNkZDA2YjhlYzVlODlmOGE5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1UWhjSV85ekYzaFBmXzRCcDFacHVqVTVzNEpiZVVabGc0dVJTbFBNVm9JTDdIMEYtRFFFc3pZeEM4bFFmUk5jb193dW41dVNUd1FUVVhQd3ZTZHN2WTlXNW91NW5lTnRPNXJfcmkzRm4tU3YwLU1EZEZ5Q21KTDVZd1ZpdVUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjQzLjI3NTQzMSJ9fQ==','2020-02-06 11:23:44.276663'),('kd84gz4ifhgkf5mfsiy1eo0xqt92fcg7','ZjZjNmE2YzQ1NDU5NGRiYmU3YjRmNDZiMGIwMzhkOWFjZTgyYTcyMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxWWFVX1cwNWhjeVhEX3BORzEzakR1ZnVmSGxwQ1czcExBblhWYXBQcjhvT0Z5cnJBX2EzUG9Cbk9wMmlqYkhUT0hxSmg0ZHFYNGZKVllpTTNxcEN0SGpuTTB0QVQxY1FqRUNpQWtjTi10M2JJazBxLXZEcWdiX2FYUjkzMVkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjAxLjA2MTE4MiJ9fQ==','2020-01-23 07:12:02.064571'),('kdrpdfea4ru3d0a2ouweyvx713rnfq28','Y2U3OWQ2M2MzN2I3MjM1OTQyMTJhODJhMTRiZjlkY2JiZjYwN2VkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfYXFDZGpiYVZXM3VXazRtSEdjNlp0amR0VVVHMUNzUU1MUzRPUnhMWGlpUDhZU3J1UVpjUHpiSllUUTNNV3ZKTjFpMUlkekdCbERrM0RjSVE4QkZVMFdneThZMUNyS05LdUFSaWpWRWlvMzA2enhDVTI2cl9xaFI1T3hHNnMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjAxLjMyNzgyNiJ9fQ==','2020-02-17 11:20:02.331297'),('keawt8j54fqdcj2h3xhpo4ni74uk83sd','MzZiNTZkMWZmMTBiYWIwNGIzOWUzNzQ2ZTJmMDE1OGJmYTYzMTQ5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2TEVwcGxYYkFIZkJEQ2U5WXB6c2N6R0NoR0RHY2gweFBhZGFScVhNelo3bDRhSUh6SkIxVFhUbDVpQkd6YmpWM2FqLWMwMXdIaG81MTlxT0xnOFVhdkZ4RW9TR1RXTWEwVk01b3AwREdlc3dwUDBGTDlTd3I5WlhyNzRDQUkiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ2OjIzLjc3OTgyMyJ9fQ==','2020-02-18 05:46:24.783377'),('kfrchsj3usa52g2klqi3d73bkdbx2xfd','Y2U2ODQwNmI2MTE0NDRiYzNkYWU2NDk4OTY2MTBiMzRlOGIyMjQxZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IycXg1TFM1UXFRWWptcG9ETFNOamFHYnBSTlRXcVdlQ1R3ZnZuTEdIZEtzNnRJb1ZXREpTNG5fZUFoM1haYjcwU1hUMk02Q0o5Z0NsQU90elR0R0hVZnlEa2JqYlE4ZUk1Y1pxZjVzaGJoQnY5WmIxeVZCcTVnTGVxWTJrTmsiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjE4LjkyMzgzMyJ9fQ==','2020-02-13 08:00:19.927389'),('kfskjiy85k5bqdphe5szdqbq59gxkgma','ZjRhNWM5MzViMzJiZjIzZDhhNDI2YWYwMzUzNGUzODc4MzljYWRjNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxV2F2QmZhTjkybHhrVWVBS1lfVmQ2a2JIUy12RTU3M1JEdzZKdEp1bkdGYzVfVTM3Q2pXN20zc0tvcFJfZkNWUmxDRF80OTI4dmdwVjNMeHBNNWJTczBvbWpKSU52M3B1aWM4clVtemdPWkJWVV8tQnE2Q0c3aS1jU05EbVUiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjQ0OjQzLjcyMzc5MiJ9fQ==','2020-01-20 09:44:43.727306'),('kgl3ie9c6uyd8am6teu24ue9rhgr655g','ZGZkMmM1MTY0MDM3MDNjN2NlYzBkOTI4Mzk2NWI4N2EwYTEyYjc3Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfWDBCUUE4b0JCd05md2V3ZWV0MkZDT3VselFTSFBDOGNGWHFDYzlYWVlDQ1NoM0ZtNVNtQjJndVNuSGlwOWhmYm5kSEltMXliNzdNMjZ3RUpEbktaTWZaaWNlaXhLd094UGlCS21vTVdha2loSl9DNTBSUlNKbnNyWm80X0RUIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0Mjo1NC4yMTYwMjkifX0=','2020-02-27 05:42:55.219437'),('kh59cizdam631d24c2f8x8t2y5ktmwja','Njg5YmJiMDA2MzQwNzVkMTgxODMzMjlkMjdjOWE1YWQ0MjEzZmU2ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzR3djd0R2dzYwTUp5NmQ3X0pEbmNEbUNyTjZaSDMydGJZTExnaXdUWnNDdUFhNnJQdlVRVEdFNndFV2tZcldqZzd4QVpvMUJmZFJaam1jMUhtVXBVaTRRODV3UTBQay02M21JcVhHZ0hOakdnNjlpUkE0NlhpVTUwSWxKQ28iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA5OjI3LjAxNzQzOSJ9fQ==','2020-02-06 12:09:28.020748'),('khmql0z5q60ruqn7r8f36v2n2ub8vv4p','OWJlOTAzY2E2ZTYzNjQ0NzVkZTBhOTZmNjZjNTAzZGYwZWQyYmZiNzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIiwiY3JlZGVudGlhbHMiOnsiYWNjZXNzX3Rva2VuIjoieWEyOS5JbUc5Qng0LWZ2Nm9xMWhJRHU1Z1doa3N4cnRjcVM1dWs0Qmc1RDNFc1daMzRrOV9raVdGQmFMZkFTcG5GRk11Y2dBQ293bkpmdkFxMC1XVUZXS1kzVFoxN1lDOW43TXI2djl4WS1vSXhHNEFkME1yTl9Za3hhZ1loVFpSVG1ncGhvUlMiLCJleHBpcnkiOiIyMDIwLTAyLTE2IDEzOjExOjE0LjgzMTU4MyJ9fQ==','2020-03-01 12:11:15.832228'),('kiaa00r08ppo5bg1nb05c76iyswv0zr0','NDljMDJjNjYyNTc2MDRlYTllZDBlOWNkYzIwMzI1N2I3ZmRlYmYwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzTjB6cEhaaDhBbW1QWHFfZERsQzVYZ0t1SHBxNlFNanNqM2VhOEtVM2ZtRDVXY19vZ054eThYMjl6UjBuMFNROWpDM0ZEQnUzR1BNaU5CcHhrMEFnNzRhT2ZsVFZlLVpLamRKNEdRY1RNWVRoaTFjZXpXYzFSS2tBUWRjTmdvIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0ODozNi4wNDEzMTQifX0=','2020-02-24 05:48:37.044908'),('kieo1b40m8uzpw99pf3lr4yofw3uy07a','ZTlhZTZiMTgyN2QzMGQ3MWI2NDY2ODQ5YTQ5M2U2OGUxZDc4NzJkYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyZ0pkV3ZCOVR0VTlmLTdqRmxFZ25OMno1eUNqM0lWTlhieENuVExQbmt1NjdkZVZ0RmpSQnZLWXhOc0hQNWd2YXlOMXRKN0VrV1k4dVIwTFpsV0pNcUkxWVdrVlNxdGhjajltTXo2VFA4QS1ZWU14S0ttRkZqREtVNUFIeHhHIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MjoyNC4zODkzMjYifX0=','2020-02-27 07:42:25.392867'),('kjayolctygbdfiw4nedv5mddz0ineuoa','ZDlkYjIyYmM0MGVmZjg2NjA2YjI5YWUzNWYzMTMwMWU4ZWUxYzY4Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5RkhPb2RJVnhZbzRQTm1pX1p5Y043TVVZLXp4ZXloTVFMMlpYOEVQTzVyaGd3anFpZzF1ZmNkQ1htOHhSWEFpeVNHSUFTNTNYNEQzaW9aTGVnNm1jVm9jdm83TGRzQ2pVX3pONnJXenA4RWJURjBCOWhXek1OUGkxN1plQWMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjA2LjQzMDAyMSJ9fQ==','2020-02-17 12:00:07.433895'),('kkypom66m4cdi91n0s8aql6yxn2txbyy','YzY1MmQ0OGZiOWExOGI2YmUxNmI3NGVjMDllODdlNTRkZTUwODgzZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ6cmV4NU5pWjE1c1dHRDBNRTdjcFZGcGVfd185RGFUdU1DZkJ6RTRJd2hlal92VlpndnI3a05NMTROMmRvNkxLZ2hQOFRhaG9TWTgwdDloOW53Mm80VTA1YW5PX2RCaHB4eGdiS2Uzb1NPRnA0WHVMSV96TWZFQUo2TEx1NzQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjQ0LjQ3NzE2NiJ9fQ==','2020-01-23 07:15:44.480742'),('knn5yu0vjgt2d77gosjlvi3x5lm9g8yl','ZDYxMzIyZDdkMzUwYWZhZGFkMDY0YTBkZGRmMjM2OTVlNDMyNzkxYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWaUFLb2wwTkR1WFpKSTh2OTg1a1Y1MHgtZkRLelQ5b2t6TmdheWU3dWU1dDhzMXQyMU1tZ3o0OGVRcGsyVXVJTFRLa3pZYlRoNGlOcXNpU3MwdGV6WjFrQkpITWw2MlNRalBVYmw3YnEtcW5ZU0lmUmVaX3RVVXVVVEdBLUk1ZDVyM3gwbjV4NmlEMTllR3lHcVN5bXBxaTFQcmpfVkNRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjo1My41NTQ4NTYifX0=','2020-03-29 05:32:54.558318'),('knyaxkfa6fi2l7okkl0jsk2d3x9rlik0','OWMzY2RhMzczZTliMGQ1OTJiYWU5NzkxYTIzOThjNWI0MzUwNzFlNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYeWdMNlNjc0t1Yl9mcmRRUl9JaXBjaW82ajZxdHp0ek1QN05ZX1Bod08zREZfOC16eTMwUWRxdmxsQmIyRGlrUmpPQlF3U0NzdVpseVZ1Qi05VVJLQ1BkNjYxRWc1eDVmRGJLUVlGZ2w5aHVSNEpVUkY3WkRYelQyU01BRG1ETFBNajRYTTVDNW5pUkxNTnBMRlp1ZUNwc1RpOEkxR0ZBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNTowMDo1My45NjkzMTcifX0=','2020-03-29 08:00:54.972888'),('kr954lc3okmxevpfhyuxdssonre87gr8','OWQ3NDRjMzJmODY0NjlmNGJkNWM2ODQ3N2Q0Zjk2ODVmZjg3NzM4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyWGdxSU1qdDJrYlBHMzdhWE1Qc210bFhXMlpuT0FPWnVzMHdmUXJCUTIwc2RQM0pvS0ZFem8weGJ1NENXY2VTeGhKQVZ0OXR3bE5pVHZJWHYxX0R6WTljYlJMbjVjREJQaTNmZ0NncTFVNmZaZHJudF9fX2dXU2tjYkhnTjY0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDoxOS44NTE2NDIifX0=','2020-02-24 06:00:20.855212'),('krazhj3mor0cael5sw492dmwvmyg9hqn','NjEzMDBkNDlhNTU5ZDU0OGVkN2Y5NWExMjI1MjI3YTBhNzQ2OWY0MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0SWFJSXVNT1gtNFBtMUU0WGFpLVRyeEJJMm5OSmc2MDd5V2dyMGJUUWJ1UWtKVWlzOFdhMmJlRkVEaHQ3eVM3czQ5aXhuUmpUY2lwV1R2Y0VEcDRnbTkwQlluX1RpZnRSSnN3RXZwNTZBOEdYSXl0Wlh5NTlZaHBHWk92MnMiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjEzLjY3MzA1MSJ9fQ==','2020-02-13 07:50:14.676234'),('krmmgjquv9uhnpcz1xblt8ccc53hh28w','YjkwMjEwOTRiNThlYTY4YzU3NWIzNzg5MTNmMGY5YzhmNTEzMzI4Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4RkpCQ3RFbVk2T2VoMGR5RklidHBzR0R2YmoyZmR1SVdkbXlCR3YzcEpmMzJoQkpGOTBDQzV3My1hU280X3FrWXBiNWxUNmRhTGNtejlxaFd5ZHJybS1NdDdvcTFBNU92MVgzX1MwTmgtSTE1akRqSG5ENURuV1cyb296MDAiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE5OjA5LjEzNDY0OCJ9fQ==','2020-02-20 07:19:10.138208'),('krnj2iis3ryj84zjzztbu77v7bo38hwo','Zjc2ZDI2MmY3OWI5ODYwNGVjMTljNzdkMGZjYjczMmY4ZDI2Yjg0YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWUGNiOEdmOC1UUDRSd2U5bmRCUlpzejFBdnhkZm02TFZ6djFoQjRrYUtXVkZhVHEydmZnUFB3aXo0dTRsdWp6cUQ3S3JvMnNqLUZqX2lNUFBzeHJPeUh4N0cxcWRzXzdZTktTNHB2T3l1ZVRrM0c5QUNkVWNzcnMtSGRSZFQ3Tnh1RlU2dWJVa0FkUUk0VWJqWjlIZmxEY1A0d0h2NXhRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzoyMDo0Mi43MDEwNDkifX0=','2020-03-29 06:20:43.704473'),('ks6umxx3hzunr9g3qjnd8cumm1mnga23','MGZlYjI0MTI4OWIyZjk1ZGJhYTU3YzFhNmUzZjU3NGQzMjUzOTg2Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwMEViRGdvS3BCcnoxU1ZaMTMtWjVWTzJ0TkdJNC1MbEllUzc5MFE0WlZPaTd2RGJNY2Jzb3RMRjd4RURPMGJad2pFWVBUWFVFZlJSTWMwNWptT0dvNjB4clRaSlZMTXBnR0dtWHpWdnJjVDlQaDBvOWcxMmk5bFBXU29RZ2siLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA3OjAwOjEyLjk0NTI3NSJ9fQ==','2020-02-20 06:00:13.949157'),('ksa5umdezjpfmafzm3uqatt2arm41nhb','ZDQyNTllN2ZhZWI3NzFjMGU1YmQ3ZDQ5MTMwODY5Yjc5YWMwZjAwMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfbnlkUmdNMVJWaldISkVtSHJyQWwyZlFoLXVpV2Z5OHZneWtVMWZPbWVkLV9UYUh2Z3NGa1o2eFkzV0ZKc3BZRkd0cV9zMUFvNHJYbl9zR295SjlVN0JEdkxKVXgwSzNBMmRHdEJTR3FqWkZ0YTc0d1o5U1JqRk02SVNjSXciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjAyLjQwNzQ3MyJ9fQ==','2020-02-13 07:41:03.410716'),('kt9knvku8cllwjx7b7ad3qc9fg722qfb','NDZjYjRjZjdkOTg2ZDZlM2YzYWIzOWE0YzNkY2RmN2RmZjBkYmY0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyVUo0bXFQenNSLWVHTmxRVmhnOWhYU3pVeDdFRlAzZWhlSE5zeUgtUWhlajRRcHVlSGtmNnZadFBnY1pGYjRqZlBld2FzMTZSUS13dDJHNjZEdk1iNnpQc29KblZDQmJ6eE05bS1mbTdyY1V4X3EwS2h3VXJ2UlBwOHZQUG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjIwLjkyODQ5MSJ9fQ==','2020-02-17 12:30:21.931909'),('ku1cq3k9y0nhwfl3l8w540j0ynflpy4n','YmMwYTkzZGY0ZDFlZWY0ZWM4ZjgxNmIyZjA0YWRmZWQ3NzgwZDIwMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5alh3WExGbHBmT2NOb1oyYklTWGVvWGlQQ2Eyd0dINXc1eE5IRFZFQ0J3SC15cWxUeTI3NjkwRlNyR0x0emMwV0tNS1VLQ2MtdFZrODNFRWs2bTY4RVBqMWVKN1dsRTJlamFxOG5FbDhEaWlobVAwLW50WUdmZGxKN2FtcDAiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjExLjE5NDkyNyJ9fQ==','2020-02-10 07:40:12.198082'),('kvas1t9baawyijxxygoap2jyf0l8jtoa','NDRlM2Q5Y2UyMmQ0MjBhZjlkYmNhYTBmZWE0NmI5YzcxMDcwN2QxYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3RnktMHQtV05VVzFNVTJ3RW04WkxmM0p4TFlpc0NKbU9FTVlOYVVaQ2dEeG12V2RuTG84emdqMFdEcXFsTnczYm13SjhVd2x3Um5DOVA5T0U0bFZtcDNqZ3NobGtzMjVJRmhhZEVtVDR1N2QxR3drRGdvZVdRNm1jYk5nNWMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjQ4LjA5MTc4MCJ9fQ==','2020-02-10 08:20:49.095290'),('kwntp20v3erk700gbe2u3qi3a9uxhe9b','YTQ1YTMwODA2YzM5MjM2M2YzZTIwZTlhZTYyYjkyM2NlY2U5ZjY5ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxRHNzWUxoU05GWmdhSy1NdXoySnRydDJSNFljWHkwV1prd1oxY2dhSldGQktiV0xuaDk1d2VybmtvelhZV2hnYWh3ZkxnUG1HcW8tVEtYaTFFaXVWU2xqbUNCRk5QLUtDSjBMOHVkVTI3dmZZd1pMdm8zeG9mQVBVRERmU0ZjIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0Mjo1MS43MzAxNTAifX0=','2020-02-27 05:42:52.731910'),('kwpjws0axziep2hvcykyrdanwx0hp19d','OGJhMTJhNzFhZjgwMGFjYzQ5NjcxOGQwN2U4NDNkZWUwYThjNDU1Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0U21EUDBPYnJNTU5FeWlHMjk0RE50R2xVdkhZT3hDZklrNGpqSHV0eGwtRnJUN2h4RHAtM0JVVHRqX3pDblJuSk50SWIxSGZ0NE51aGppb3ZZZDZpNnlKTHpiTFRRZ1FPMV81TjgtU2pOSEQ2d0tUeFpyc1pXaVRYX0JfRnk2IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMDoxMy4yNzgyNTgifX0=','2020-02-23 07:00:14.281731'),('kxywvp95ocuxg1r5lgo5yqcdysdbrok6','ZDE1YTQwYjYxZjc3YmM2NDIyMTcyMzY3ZWFhMDA5YzZkZmY1MGYyYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1UFhOeks2cnp6NlRocjFtRWRnM19id0tMNklPTGE3aUxrQUR0UGQxLXc5NGxncEJ6TjEycEpHNlU3YVBSS2xnMG9xcDBqbjA5WEhYSjhPRER0VVVfU1FsXy0wejhDeGRDbjQ2SGtKSWQ0XzhyVTA4QS1TMXRBTms1MUxtdjQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjA0LjMzNDIyMyJ9fQ==','2020-01-23 07:15:04.335934'),('kydaxm25m40zok1knwk1fwlqzy9zutz8','NmM0NjM4YzBiOTZkNWJlYmFiYjc4Nzk1M2E5NmViODVlYTFmYTNkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfdjBiajZnOUl0TE94TmF4QUs5ZTRkMWJsSmJlMW5tRXlRajBzUGIwdm01ZW1uRjBMY2FaVVg3ZVMwV1Y0LTQzdGFCcU9faTV3ejZzOE9lNzFYZ1F6b1NwRElJaXFqQmc0UU5lVEhQYWdpc3h4MmVMQm1nTV9Uc3J4ME1STlUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjUyLjI4NDI0MiJ9fQ==','2020-02-17 11:10:53.287710'),('kyffsck1zcqg2zqf8m8yrilcr32dmzo7','MDYzMjNiZTg2ODk4YTVkNTU2ZWFkNjhiOWIxYWFjYjg4ZDY2NjljMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxdC02eS1rV2RlRWppbk5sVnZqM1AzcXZ4NURhT3VkWFBHcTFVcnJMQ0ZxeTQ3WjR6akRLV09BVlFWaDgwQUVicFFsZEhnN3JkS0dCT0NENTFWVXB3NXFwem8yd3FTZVoxSmpjelJyME42Q2xvR0Z1Qlg3dzI1V0NwVmd1LTAiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjAwLjcwNTk0NyJ9fQ==','2020-02-10 08:20:01.709540'),('kz28v5xzbunh5kd86hggz2m99p9oma0n','MWFjZDBhZmU2YjIyMDBkYWUyNGY0MmQxMzBiMDYwZGIxNTM3NDBkNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4d25WSU42Yi0wQjA1MXFnSUNWZjUxRjREdk5YUU5pR29SNU5fRGRWLVlDVDFGZXJON0R1TzVpd3NTcE5MYUl3NExqekVWWURwSmNxZzc5VWkycHVLbUlrSGNCU1VCalM5Z1A2Qi1DQWVLUm1WUUprV3gyUEoxNmJnR3hYYUctIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1OTozNC44MDMxNjQifX0=','2020-02-23 06:59:35.806822'),('kzc93mynt4iry6rjxes02grwmdz6e49h','YjA0NzI1ZDBjZTE2ZmU4MmE5NGUwMTQxZDEzYjAwOTM1OWYxODU5MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzWUh2cVJIWURyeWZ1SXZIZHNHTVBBcldiM3lLc1JCaFN0YW9IazZsUjZoNmtGOEdhRTg3eXppbXJDT2ljeFc1NThWRTFCQWU1NzFtdWdnWmUydk1HTVVvZy0tS2M3Um5iZ1VqNGdmbm1TblJJVWxjWnU4cVRxWVBXX1ptMm8iLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjI2LjQ5Mjc0NyJ9fQ==','2020-02-09 06:50:27.496268'),('kzf748xh5e2m5kf1boyqfgkyuxm3r4ij','OTE3ODg0YTk5ZGI1ZDU3NjNmZDBjNTE5ZTA4ZGNmODVmZTdhODZiYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfTDFmTHZwb3JkSFBmcEdGYkk3TElVNjZZLUdaOFdWREdLOHd2NlRqYVczaTRCRWtwcWc5aWt4U3B2dmQ0TzFndkNKZ3ZuT3EzMXBaQjZkd3NfQzVxU2xIaDdkZmhuUWI3WjF1V0xEQ0VBR3RKdjJCMUVvbXFVYnlfZmVjWWsiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjEzLjgwNjQ0MyJ9fQ==','2020-02-10 08:20:14.810103'),('l0b4vj4mzxrge0zbn1csw20bfhxn63hy','ZTI4OGVkYjc3MmEyMGFkMjVmOWI0ZGNmMDZmMGQ2YWRhMGRjYWI0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEItVXh0UGFMWDZGdmh6Y3BScHgtNm1VeHFDd2JJV0FuLVByR3UwVjhrWU8yMDM2al91X0p2SFlxaWowQkdkdXdFcHpkV0NTWm1EdDRBNnY1MDNTUDdrNGw3OG9zQlhmWUVvRXQ1QnFsZ3R5SmZGbWtZU0ZybExRSkdGQlMxVzgiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjI4LjUwNTYxNyJ9fQ==','2020-01-23 05:26:28.506939'),('l10678azm11gcf02a8vt2g0i89dmt0sd','ODRiYjI0ZGM0YTExN2M5MGRiNGExYmI2MjMxZWFmNDY4ZWNiYmU1ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItNklLbGZZV2xGTC1fVUd3dU0zakg3RWxQdU0tMzY3NFBIVmh0YUZacFBMei1SekRMMWQ4UHJrZWhhN1kxSUExREh1NzBTYVUtaUY4TkdOT1JDNHZWOGJCc3RFdFVLUTlwaURQeVNpSUlFcVJ0VUtQYzNab0FhaFRvR2FqZzVaIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MTowOC4xODQyNjUifX0=','2020-02-24 05:41:09.187754'),('l1kvqbr5uup8f1glooxh2w4pod9d57qt','N2JjMTkxMmMwMDY2MTQ0YmUzNzYyNzIyYWFjZWRjZTFiODRlOGIzNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3OFkyNlVDVEptTS1nMHJQVHBBTnlWMDFxV3JNSGN1SDE3dHBvNFZmZUZFajQzdzR0REJwYlpVcy01QmtLUHlRWEN6cDN4NVltZlFjbjZhU1FHcVcwZ2FicmVwSGN3S0ZnTV9kcGltZHhPSmprLXpLTmJoOExwSXppT0lnQU0iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjIwLjcyNTM3OSJ9fQ==','2020-01-23 06:50:20.728835'),('l1wnnqrg6jzezs3pl50df8cfh40z5rfm','YWIxZWMzODA5N2I5NDFiMThkOWI0MWRmMDFjMWFiNDFjMzlkNGZhNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwaWJhZTRRckF3NFVkUXB0Wk56amlTSTBzS3JxOWZIMXpPWDJsN3ZWVDdrTjhsdlc2MmJoczk1MkVoSy1scUxjVjZBTkZYbnJjUXEzUWpQcnA5Z2x0WERqTDEybVY4bGJEMTVXUXNUZ0xCbzZVaUpPWll2UTRVVE9QWlc4UXAtIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MjozNi42ODMxMjIifX0=','2020-02-27 07:42:37.686533'),('l3ruga2w5jtovz7vihxhpy5mitpjva7i','YjUyZWEzZDQwZmJhODAzYmI0ZWU1N2NmZTczYjcyZjlmM2ViNzk1MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5dEhrMW9UU0tkdlBrRWNoLWtHczRET2hPUld3b1RNcGZuVXd4a1hWQU4zcjhVUFpQcXBrNDVZQTZfMzg3emJUUUVxWDFDVG9tZlRCaEtyR0xyNTQ1NlVVcENoZEFCaXB3UGt5UHVXbzRVV0V1M3QtNDVfcEVTQ0F2a2MxbTdHIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowMjo1OS42Nzg1NDIifX0=','2020-02-26 07:03:00.682063'),('l4bf5fq4v41xx0hceu4znzyhukd05s0c','OTVjYThiMzViZGMxMjI5YTgyMTI0YzQ3NTNkNTVjNzU0MTgzOWQ4NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYQzBrT2wybUNhTlUtZnZzOEtfOEQ5M1JlTmI0d2tMdVVwN0pMSHNxaVdDUEZsQVBEU1o4ZW9sT3BkLV9UNFA1S1MtanRFdEgtRnJQYU82Yk5SRzcwWThnWWZOa1NiWHNjU0dub29ZcmxETDZ4Si1PMEhubERvcW1rVWQ5UXRPNUVGSVZkNUtOQ1BQWko0TXI5RVZpM0lmSmxrUlkyUGVRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1MToxMy41ODM4NDIifX0=','2020-03-29 06:51:14.587194'),('l4ki1rh4hvh91abxu875hqf7su7ns3kh','NTIzMzMyODI2NmU5MmEyZmUyMmJjOTllZGE2MGE0OTZiMzYzYTE0NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5SGd2RDZLSFNiU0N2dHlFbmxjM2ViM1J6bVFyYzNKTHNBWVdzVUFBQzJkWlB5ekFmaVV5TzVjSW5OUnMtZG80YVRFX3Jza0ZDVWpRMHI2enBGTElma1pob1paUzBIdEFMUThfc1BITDBVXzVuNm5rYXFjQkVIVFJ2aFJsd0EiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjIwLjMwOTg0MyJ9fQ==','2020-02-16 03:59:21.311455'),('l4nem9b8qo70iy9r6agswe5cmtaqjrkn','NWU2YzY5MGJjOTM3NmIyNTgzNTFhZDNhY2E5YjE5ZTVmOTM2NDRjNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1ZXZFa2REay1YLVFJUHZzWVJNbDhUZ0pTTTZVa0dXV0NUZzBlRjdwRjVzLTAwU0M3LWpKd2dHd2p6LWIweE5YQWJxVnZndnc0MDd0Nnd0bThTY1NKTm9XMk5ORlNpYjJybjI2RDlCa1NJbWJiZjhHR3pYVV9teG5JZHJSZlEiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjExOjM5LjQ4MTYzNiJ9fQ==','2020-01-22 06:11:39.483417'),('l64pbdnge1v2imaz8lyagqc2ybuoxg0c','NzZmNDUzM2E3YjUxZGI5YzU3YWE4OTEyZTZlYTNmNGY2NjU3OTlhNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzUnB5Q2RDemVUWEk1Y2JQTHhudlEyM2tmeUhubTdYeFRWajdTRml2S1ltejB1eGtvSUR0QTBrNHczWnF4SnJMbXdXTURqb3AzNWZEVTE5eERwTllDOGN1Z0N0T2dJcjZETWVsZldvSHRhV3o3WVhKTURqSzhBSzdjTlVBXzZvIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDozMy41NDcxNDcifX0=','2020-02-26 05:00:34.548671'),('l682nog4uv7v5vrhsa7euv08cnag8eff','NjQzMTU5Yjk2NDExYTljMWI0YTljZjkzZjczM2RmNTMyYjNlNjlmYjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIiwic3RhdGUiOiJ0c2kyd1FPdXg2Y2FQMHJlbUZqbkxSVDkzTEtNZjgiLCJjcmVkZW50aWFscyI6eyJhY2Nlc3NfdG9rZW4iOiJ5YTI5LkltQzVCd2p2a3FmUzh2dS1sLWlPdF9Ed2c4T3ZxTDMxYWU1MXl4WGk2a2NZUTFLZko2eFRRNi1SZGI1T0ZoZGJXRnpuZXJrSEJsNHk3dUdkakFOVldCX2xSTGdYbEUzcUNTSS0zSlFlVm1DU2NOMDAzNWtmSWlBVHdnTnRyQU1manJ3IiwiZXhwaXJ5IjoiMjAyMC0wMS0xNSAwNjoxNDowOC40MDE1ODkifX0=','2020-01-29 06:14:08.402742'),('l6zz1hna4yt8bqdsv6m9va5szczx71t3','MDZlZTU4NDFkYTE1YzA2ZWUzOWVhYzgwY2FmMDM1ZTczZDFjYjJlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6SFdEZGxYekNVa0RDVnJCb1Ffdy1vaEFSa2N6Ulh6VFUzcWNmSndpVWEzOV9WQmszVzJvTnR3TE9PZEY4a3B5STVUR0t4N3NGcWppUjVVak1iMjUtelRvZlVCdXdZTU5yLWxxY19jMGVRU2FmZ1JodElOVENNS1piaVNYSG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjM3LjQwNTg0NiJ9fQ==','2020-02-17 11:40:38.409226'),('l75xgytss02d1v2vgfcgugib7uzbk610','ZjE5OWZkZDM4MjJjMzBjOTE0YzlmOTcwNTQ5NDk1MDMyZTBkNTgyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5VjlUV2VkM1Jua2k4WVpPR3BvN3dZZnExZHpsU1Z2anpKY24wVjYyaDBaSWlZWXpOMi1jU1F1MW5KdUFYY2ZlWC05UEpaMlFxYkR2THZGSG9fSU50N2NWT2FHMWh0SXZQdExOcVdSbE1kY3FJektwSWRmZGd6ZXpILUNYbHciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjI4LjMyMDMxNCJ9fQ==','2020-02-17 11:50:29.323815'),('l9dwllhnw68tlsmwa8yu225yksbilt4g','MDFkNzY2ZDc0NDg0YWQ4NWJhZmIyZGJkNGNmZWE5OWQyMjViZTQwNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEItTmRzWFBrbGlQd2J2ZjNNZ2V3SERKUDllTVd6RTc4TXZxVGx4QVQ0ZTF5V2xTSkhrMUQ1d0tCdWQ1RThSMjJoZ3diSDIwcGNzS2Y2TWtHTFRVaDdvbC10cld3OGtyRUx2aW1ZV24xR1dkR3VrOWt0dDRRRW5NSi1FdHNmeTAiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjA2LjE4MzkyMCJ9fQ==','2020-01-23 06:50:06.187353'),('lauqwyt2acq0gwjzscyj08fijjgvdumm','OWU0ZTlmNjZlODYwNDA4N2EwNjNhYTFlMzMxMjRmMzhiMWMwNjc0MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5d2VhVU9nZTVGVEVLM2F3ZmNUREpnMG9MN1ZlYXplSEs1RWYycE1qMjh3NWRIUEtYMXdod2hTSy11MzNUNEg1REV1YmNSWHFaWUdqcEJ0ZDctUXdxcl9DYWU1dzFtbGNsOVptVmtxRTRaMnp5M0U0QnJQbEZSeTFidU9fYTAiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjEzLjE2NDQ0NCJ9fQ==','2020-02-13 08:10:14.167814'),('lbzcpuhrdwk48adx5zhqjjrozqewd6aj','ODA3NDFmNjE3NmM4MGNlNjE1ODZmZjM4ZjdjMjZkYzIxYjdmYzA2Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2QkxHa2h6ckM3ekRJOWZxdWlPSmQ1a0x0YkVqTVZkVG9IRGpBZGlVUWNIOENkcWR4Qmpkam1pZThPX3JRNEQxb2pTaXI0YTlUVGFubHFERWU3VWVNQ193czg1TGotVk5WUlBOUDlnTERhLVo1WUY5Xzcyay1xMkVnYnJCS0kiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjM4LjczNjQ1OSJ9fQ==','2020-02-13 08:00:39.740045'),('lceubwxa6c1tk12woy8scrker38x2uff','M2M0NDUxYzkyZDgwOGNkNTQ4YzBkZGU2MWQ2MWI2YzM0ZmY4NjUzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1cE03VHhQWUFXbzFxRm9fVk5xQl9XU2VERTJrM1FFSnIxTFFEbng4ZG5DSE1iajJ1ZXFXM3pfVl9BeG5iaDh4Qm1KSXZ5NjVFQlpkYmF1bW9DWk5Ua09JeUlQNmJuNGhfSXJTcWxJdDhXRHpPeFJfd3RMNjBndGRkWVlHLTQiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjUwLjc4MDI4NSJ9fQ==','2020-02-20 05:59:51.783755'),('lczi5pgq5hmnriqfelitpi0mzg5cn69a','Zjk1ODI2Y2YxYmMyYmU2NjhjNmQ5YjVkMGRiMWZkMGQyZjg2OTVlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3NzdUUGFXNVppa3NJdTNITE1aU3hBYWxHR3dnV3VlNkkwRW93MlFnQTd5VEM2SmFpTnNyVnZwWDRncFQwUjllOE53bGt6aWdMMURnbDhKOW5FdkpIRXBOdG50YUozQktobUlFQkdtUTh4dkV3M1A1RjhYeVdJQ0liOUFNMjAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjE5LjI3NTc0NSJ9fQ==','2020-02-17 11:20:20.279108'),('ldis28c47zlx5l43j0ib7o7yewrkpm0f','ZjM1YWYxMDMzNmYyYWNiNmEwNjE1YjhmY2I3ZTNkZmE1ZGY2MjVhMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxODZqSTdVODB2QkNPWEVMdzEzOFZwTWJ1dy1vbE1kMldYdHQzM1VRdlp1dEZlRmdBYWJ4WWhkSERoWlJKTmV5VU9nZ1J0cmRjeUFabWs1bVVtZmdQZlJfakxuUGhLSnJlREpXbDJBNW1LYUYtM3V1cVBzS0IxQUVITmlzblJQIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NTozNC44NTIzMjIifX0=','2020-02-26 06:55:35.855775'),('ldqozlj2yynfm3ffwkr8xz8ao7lyybxm','N2Y5ZmI4ZDQ5MmM2Y2ZkMjkwMmYzNmJkNTk3NWIwNjlkM2E2MzdhMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5YndxVzBpZmtxMFJyVlphREs5NmwxQ2NYUzl6aUp2dEktOTJyTzJXcmhfZkY4VXFsS0czcFF6RGxPQ3NUT0MxM3M3X1M4RW81TkxKQi1udDNNeXJhWi0wZmJIVkt0YXJfTDJoVjdveE1lYzBIeUxhOGFlSGhVY2JVc2hKcE9OIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjozNi42NTYzMTQifX0=','2020-02-25 07:12:37.659797'),('lere03juidpvf40ecpl16e1kmrkm6ul1','YmIyYjAwYWRhMjQ2YTMyODllODIyMzNjOGQ0ZWRjZjczNzU1ZDQ1OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0OGlJWjd0UERBSVBFMlVhTGFUQk5mRDBpelhjNGhSQUozUFY2WlYyYV8ycDZFVE9XNVhnOTUzQmFTckpLMl81bU41dDhRYVZkU0ViQ1ZDbjJQa0ZDVms1enpMcmhHdFB6X0ZtX1ZTS3BJMmFuYWp0RlVOUjFOZi01SWtfR2ciLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEzOjQwLjg1NDQ4OSJ9fQ==','2020-01-22 06:13:40.858082'),('lf5owjph28dda5zh28b6noep6xu15ldw','NGI4ZGQyMDkwYTQ4NmJmZjc1NTVlOTZjMmU4MzM2ZmJhZTdkNDZmNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2a0tVeHlaRGRIY2Y3QlpGTFl2VnhaU2VBRjdMZnhaM2k5NG9yVmNCWlhpNmJjQmV1WHB1RGc1bzFiU09nX1RQb1VTX1lFS1ctUW96VjZPRnJlOXFrNHBteEZiU0ZIUmRTeDlzTHpySlMtT0NYSGZCbGxCSVQ5TEkyU1VKZ1EzIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1Mjo1My43NDU1NjYifX0=','2020-02-27 07:52:54.746635'),('lfh7rkqwdhxkr2j1l4jsh31ndk7nk9fv','ZDE3MDM4NGE4MmIzOTY1M2U5NDBiYzBjMmVmZWIzZWEzMTliNmQ5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2dDhobzFFTEpjSjVucFRaQUsxS3lpY0JFVUphQjBpLUJ6VVNMMjVwd011TUs1Q1pOVjdZaG5BemVfbVl5WEJqYW50YXdDYk5lM3hNMWhYZVBDMnpta1dtc3dZZTZYQ21vSmN6bmhneHdUalhIUjBUanhuVkJlSHlUN2EyRDV5IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMTozMi43NjczNzAifX0=','2020-02-23 07:01:33.770708'),('lfiv1ij5cgqx65kvqz22xefj226574w0','OTRhNmEzNDk0NTI1NzljYTg0OTM5M2E2YWFlMTQyY2MyYmJiYzUwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwVHlrSmFicTFzRWxqWEVjNHhEb2g2T1FSUTAwbHUzQ3d0M0J6X1JOeVZBOHpBUWs4c3BFNUN2U2tVMEczWU10Y05HQUVLZndCVXFNYTFoYmxMTlBaR2pRUzBrcmxPQkoySmVxc1U3ZkZvLWxQVE1FdE1wVHN5REI5YUVKeWciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjAzLjk2ODY1NSJ9fQ==','2020-02-10 08:10:04.972006'),('lgx119n2q2cyeoaqa5i8n3zfx2iye2f6','NTU3ZjZkZmU3NDk2MDMxNDgxOWE3NTM1MjM4NWVlZDVjNmE4OWQ0Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3RlpPTzFDQlJYOC1MTUlaVldrbzZIc1plcTYwWnVKZVV2VEFzcks0WFBhOEVVMjI0U29JeVZReGV6dzJqS09SVDBZeklHcmtaVzlkWmtTMDctVzlrUFMxZHRCLUo2QWktYXZxMWNNblFjQVR0VHlPM09WUlpVS2o2dk1xLUUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjI1LjI3OTY0OCJ9fQ==','2020-02-06 11:30:26.286816'),('lifamabj4u0vjau2xzm7tr4onjjngv2r','MmU3OWY1NWVkODE4MDA1NzliNjFkZDk4YzEwN2U2MzM2Zjc2YzdlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwTk5ENjF6NzRuQ3Z6MVJQN2FGSjNZTFJNMUtKVFlCSVRMTGlKU1QweDA1SGtqRWl3WWJwV3ZMMmNTQ1JNeFo0STZQN3JDVFpOa2JWaWo2Z1l3TUJCZVNmSE40SUtZMS1ramwyYmMyTV9ydDE0OVlfNjN6b1M1dmdXMkVaaVl6IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOTowNDo0My41ODkzMjcifX0=','2020-02-25 08:04:44.595185'),('lj1ubpgbikr2x8v300uo0rn7orrx381v','OTNmNzg5NjNhNTk0MWUzNDBhYTNmY2I0ZmQzYzM0ZDk5ZTcwNTUyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5VDFnY1l0SVNHMXNqZEQ1MW1NQUJROS1RaEZGejJ4SGVvUXV5MVFiLXljdG9nNXVkVjQyUjRYQnFTWU1FMHBtU09HSTlHand0NVlBcE55RmFYVDNBbXM3bjdtdTFrN1hRNHBIc0dldlp2YzhjWnNKaWtsdlBpTW54SGMzWGciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjE1LjAwODc0OCJ9fQ==','2020-02-17 11:50:16.012160'),('ljdblwzi060b8t5kb0q4mhzlhf1rv8sq','MWZiNzkzNzAyM2FlMDFjN2Y0MDNmMDI5ZWZmOTgxZDU2MDgxZmVjMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVYjA5OFoyWi1yNGNmTE9LX29VN0x5THFtNVI5aktydjNQV2hsdXpnZGlUeXNvbF84QWVIYndDdDdOVTFfWjBxdDRybGhwR1NrVU93NGZ5Vkp3anRFV240VGpxQW5DWkJBYXVZai1SY2l6djZhQ2Fsc2owS0NrNW1CcURXMFo4dGctZWdRSUMtbldraTd4WDBySmtMa1p6ZU9pZTZ5WTZ3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoyMzo0OS42Mzk5MTgifX0=','2020-03-29 07:23:50.643144'),('ljdesnz8y5hqfujd1zoda7zvny7c2898','ZjM1M2VlYTVlYmVkOWFmNmM3Mzc1OTU2NjJmZGQ0ZjNiYjgxNDEyMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxSU1rVEQzNi1oVVJqWWpwUHkwbXpRb1FkbVNvZVNhRXFONjdyVHJrOEtpdlJLRkJzTThrbjh1OHVtXzVoZ3FIQWp6VkRoRnVsbDBlLTRmdTBkRWpyUkpXWHhZS3RNSXU1SWhHZHQ2OGlJM3M5ZHpRY3ZaQjNGZlhtZVhpdTQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjUyLjQ3NzI3NCJ9fQ==','2020-02-06 10:57:53.480554'),('ljqirkahz14wjxezaqjdcvguvdt9o4qs','ZWE1NGYyNmU0OWJhNjYzM2I1MjRiOGJjZmFkYjI3ZDJkNThhZjUzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyenc0ZkpjLS1RLWd6UjZ5dllRV1J3dXY5NWsyWHFOWHkyRHd4NlcwbkNZeWlTVWxNUEJ1Yk9UWERiZnJXZXRXb3dEMnZxZDdjcWtLVkZlaHA2WkliaFNjRGZEelA4UnhPY3FBUGdpLXlfZzlxNllzV2tWTF9SSDZJSmRMNklnSEJ4bmRZSEJpbi1NN1JlQll4bGJJMVRJYThZeDRGOUxBIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MToyNS40MzE5NzQifX0=','2020-05-18 06:41:26.435316'),('lju39077v6q2ykeyojxl2my96hijpnm7','NmU3NTcyNGI0NDhkYWZjZDQ5MTkwMzU1MWNkMTViYWRmMDE2Njc3Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5anpiYXFDRFFBYzJHaFZiQXIyRExSYmFGQkZ6MVVmT2I2OUUxXzJTQUN1SVktM3hUU21IRzVCajcwcHJRUkE4MVZTSjU2QWxWa3hselUza2lLMmVNWmwzQ1Itb3dONkxSNE5tWlhoSE5OamRJREJ2T2loakFzQWUtWlAwRjgiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjIyLjg0ODUyOSJ9fQ==','2020-02-17 11:10:23.852095'),('lk2id3xo7ez31eq4nttfqbdhhfkqd1lw','NDM2YjVhYmE2NTEyMmUxNzEyNjAzYzFmNDUwYjZlNzI0Mzk4ZGJhYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4UG5sOTllTi02SWtsS1R4UFpJQWUyTUJVRmlRRFk5Y0FkbE1aRVRPZEQ3NWo4cFNaYlhGUWFneGVjMVFuUWwxVnVzUmdUOFJmWUQ5THpMbVdKSVR6eFdBdWUxUUdwVHh6ODhQOVN5cmFvanR6TEpQSmxYMnlWdHpxbE42RDFNIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDoxNC4xNzY2ODkifX0=','2020-02-23 06:00:15.180677'),('lkcxr0adymvhf8557xkgcjuvz5740mst','Y2JkN2FjZTRkODE0MzExYzk0NjM2MzU2YjQ5MjIwY2JiNWE0MTAxNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3eDR2SVRUbUxENk5sM1ZqamdKczJRZl9rMzlrbWpBTmVPZWhSbU1FeFJxeVZBUFc3ZUxLQ3BhUHl6VGZ4UGxPZVVQN0RaalE0N3dyb1RabEllcHlEMTZkMXprenl6dlJtcV9kSVdIMlY5Q1RMTlkybW9pb0RwTWtjQ2l0bEhoIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1Mjo1MS44MDIxMjQifX0=','2020-02-26 06:52:52.805548'),('lkmbjmyyvl75cvvihgddeny4lud6qfb1','NjNhMjgyN2Q2Y2MxMzY4MWZjZDBhODE1NzNkZGI3ZGQ2MWQ1ZDRiMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYT3pEd3pSVzVUN3hSY0pFYmRmcnViQ3dSVmpGRGZXZDctYVdzRnUzd2VxODRGcXJkZ193ZjkwWGFKTVd4cXI1ZDhVeHMtTkJTWGFrUHJrN2U5M3dFQXVqZlRyN2I1dGZucnNoOC1RbVJITUVJMmU5a3p2TWN2c2VLVjZ2S202dDcya05PaGtlLUVkZ3BOc3Z4MzFHdklyLXloYWYtOWZRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzoxOC4xOTA5MDQifX0=','2020-03-29 05:37:19.194533'),('lmnsh36wgqfmj3u92bbnsd82s4suzkzs','YzNiNjg2NDNjYTAxMmQ1MTcxMDU0MjEzMjdlY2NjMTRlZjNkODQ2Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6a3I0bDVsY1N5c0I4QWd2MWdneXBDMGpPVW9UQ2ZOVm1fbnhrbmtma1lqQjNyUGV2LUoxalRjOGJoa2xuRjZDUUx1SGo2dS1kY0YtZnZoS202NUl5bUV0ZmJUdmlybmRjVjJmS1ZDTHFlSkxYbHJKdUE4MkItWVE0eWZlZzgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjExLjI5MDU4MyJ9fQ==','2020-02-10 08:20:12.294000'),('lofe3kop917oq8io3j1qihv05zkwq4wq','YTk5NGFjNDg0ZjJlMDBiZWE4Njc0YWVkZmZjNWRmMjMyNmY1YTc1MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4eFdhUUJuNTF6bGRXcC01aHhfb1lVRFVSQlpMeHZyMldCVHFZMWN1YXhvMEVJMVYwYVNvVlhMekppYXNEbm9zaXBzZmlBMGxNSUdzUlFsNUNHdzZuT2FwT0xXR1RGUlNRUDZUREdwa1htVVdSQzlRODdvek5PR2lpeENtWEUiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjI4LjI2NTU1NCJ9fQ==','2020-02-10 08:00:29.269066'),('lpl2kuy9a8uxrdt59qcvmjcr4zbcm0d8','OTI2ODU5ZjcwOGEyNTlhMDcxNzQ4YTIwMTQ2ZjdiYWMxMWRmNjIxMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfZ0FBQTh4MzJySjNHcXRTWWkwaU1idGhqMTJYTUdUXzdBTzVnYjlIaUcxNER3R3hzUjMyenZiRjJoTVY0cGN5QWhXWG8zVlctRW1idkJ3YXhQVUZ6Nng2RVQ1UUFtUFdfczJrMm0zcnkxc3JneUFVOTZIbGpnUlRhbGdtSVRCIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDo0MC4wNjkwOTMifX0=','2020-02-26 07:30:41.072511'),('lr04jfwx7htij1zpr2jh8i2xkovnkx2q','MTViNzdjNzRlNTg3YmVkZTA3YjBmYTBmZTdlOWZlZTBhOGYyYTY5Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5Q3Zya3VpSEd2dFJJam5NOXMwZHFqdjVQRkJLQ3FmRTladDJLVFkzTE1NSW1jVXFaWXBCVFQ0ZkJtZElqdDBNaDNJOUJzZUk4RTdWdElBWnNWa1FZMTBHUHV3cWVWSG5nSGxWb1ZyQ25qTWpaZHMtVGx6VUVjZzhTQWxJMTQiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjQ2LjA1OTcwNCJ9fQ==','2020-02-19 05:34:47.060837'),('lr0uesj5eamjnjvhr988ik80u3v8t5t7','ZTQ1YzlhOGIyMDIwMjc5ODI1MmUzMWI4YmJiZjEwMjE4ZDg1NDQzZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfcDRiWXptU1h6aDhScG9WSWxXM1BaMkM5cmxFYVl5M2ZVQVpnNlNJcXNtaXdVaHB3SldQSE5Ic3h5UlAtYV9hcmhvTEpxaDltajlwVDhZWHgxVldNdU1KczdVVEx4bWJHRTNuMXAyNDZxWkd6c1Rac3Q2M19KbmY5QW12djQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjM1Ljk3MDUyNiJ9fQ==','2020-02-06 12:05:36.971743'),('lrw1x5jkk0pye1rxoforhvhz4snkrozk','ODRhZDdhMjkxNjcwOTEzYmY3ZmNjYjBkOGI0MTE3M2FlYjdkMjlkNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2NmQ5R1FDR1oyTHBjMDZna1hoN0JVdDFRU0RnV3lyVTFBNlZ2RHM4QmZvS3o4M1dTX3pHRy1IU1hLdlhKd2pvYlN4TWRjM2VaYWpVakU1cUVGaWZySnJ0RkVyRng5cVNZOFZOLWJoRHBJYmVCd2FPR0JaNGJkTE1hdXNPQ1kiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjU2OjE0LjMzODAyMCJ9fQ==','2020-02-18 05:56:15.341593'),('lskrwf0aolxpexjfh148p8wzg2c9h0wl','MzY1MThmMzA3ZWNkNWMzODhkYWNhZGZhNTY1NWE4MDljOGZjN2I2Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2MUxUSTNvWHU1a2o3d3NlT1AtM3FOTHZfd1c2Q2J4a2h0S1BOTHBDcW1zYlR4MVAxN0x3aEQwT0trejhOdERaNTFoN1pXcVpPZVRvZXZtanZpWHA3X2VzaXFfRDF6NmFiNEVuSWtRdmNIOWJvZjZPVy1IdTgzWkZMc3Q5eEkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjE5LjYwMjczMiJ9fQ==','2020-02-17 11:10:20.606279'),('lv2pes1hwr2j294nyu0ttewnogq9pcb4','MjlkMDgzYjE2MzhjYWYyOTkxMGMyYmQ4ZDFkNDM5MjQ4NjIyNTc4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5LUFPaHFGdkJjX3ZwaGdBMUdlOVV1Zk1qdWNXWnl6dG5Ud0pucVFXZDNPWVhtcWdxZkYwZW5ndVJBQzdhTHdBOEhzQ0NYWHJpTG1IcjV0andZbFFUYWhMZjZEYVZjajNLSGc5aVlQWlJaYUhQRTU4dm5qelRmUk5tNjg2ZDQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjI1LjU2OTY3NyJ9fQ==','2020-02-17 12:10:26.573179'),('lx4rhhh65opfi1b0ztq69o9dhh1u3x4h','NTEwYmFmN2YwYmNiM2VkMDkyMmNhNWY0MGVlMjhkZGVhNjdlMDM2Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzUzRKOVJsMXJUeWl5VXVKeHFOSU1tNTVEOVZsNno4bTlkd1JsMUo2MVdwQlRVMmdkQU9uMGVreEN3MXVNU3ZrMG1YSHp4SHNhZ0VnUHBscE5KTjVkd2luVXVDWDYwZ2hXQ3ZjQW1mbUVUWlIyXzZ6aDJ2bEZDTUE0ejB4T0poIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxNzoxNy45MTcwMzkifX0=','2020-02-25 07:17:18.920185'),('m0cgbokzekwfi53b47q66sfdq42ujeb5','ZDlhODA5YjcyZGZhZmRiZTZkODZlZmY4OGZkNDVmNGFmYTIxN2M0Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI2ckp1UlQ2SWJaai1LMExvY21nNTFoZlJNbnd4aElpOHJkNlZPT2YtV2tJX2dhYm5HbUlSSjB3SDhpWkdCM1BuVWVnMC1vRHU4WWM0N25GWUZVQ0lsNEhHYzIycUhZQ2E3Qi1Lc2xFMnRzYXRCWDNjX2hCREVsSEZ5b01ObkEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjU2LjgwOTc1MCJ9fQ==','2020-01-23 07:07:56.813285'),('m12iyog9ajxn7ytcpuqdqdm7hyqsfn28','ZmEyYTg1Y2JkM2Q0MzZlNWE1NDY0ZGIxMThiMmQ1OWQ4NDgyNTM0ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJfSHhJakxTdTFYZjNla0FLTU9ET2pDdTZXY1ktaHBoQ3B0bVhCdkdWRHhhdFdmaWdMMVg0MVpXS2pFUEJsSU9sc1k1SmU0SmZhaUNST3gyUnRtRXVRSl9xeVF4T3lYUjQ5Z2h1UktPX1JQRVlVNnVXQUdJa3RUWGFIZTA3M00iLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjA3LjcwOTI4MCJ9fQ==','2020-01-28 05:38:08.712748'),('m1wgdf49nx6ooffsrnjj1haj4341otze','YmVmYzZiYjAwMDJkMGMyYmIxZmEzZDEzYzc5M2M2OWIzNDc2NDllNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMybkdUMGZtVmlkdENwZEU2YWJfTjFhTEJOTy1oRm9GVUJTWDVRUlY4V1RHUFBudDdZemJoeGVwdXI3N1dTOG10emJwdEQ0d2ZwZHh3Tk01YnNLNjUtbmhiOE1EdC1uZnNoLVdKb01NNEdoenFLQXpuY3dZblNfa05zNFc1QWE4bTloYmZhSDlCWlFrODZqaGE0VVJyQTZhWkw3Rm5FV0V3IiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowODo0MC40MjQ4MjUifX0=','2020-04-21 07:08:41.426206'),('m3oi22pi4y71w4vx2h9cmmo7e3n52jqw','N2NmMGFmOTM4NjU4MTU5MGI5YjY5NzBkYmIyMzA4M2ZkNGRmNzUxNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVdmF2X093cjFhMjRjZVZkcjJobzR4cDI3LWVlQ0dGbVozWl95Rnljd3J4T2NIT3V3cjBTZlU0dEowd0JMWVYwUVdfVGRRWjBES2hQWUktdWJ5WUsyTXV1amo2dlZYUlpneHZOWGtGZmxXSXNyUm84LWxQYm1sSlJpa0hiaDloeVlUdnE5X0JFaEJsUjkyOHdiMHBhQlVjVm0yRGcxTDB3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzowOTozMC45NjY4OTIifX0=','2020-03-29 06:09:31.970890'),('m5aumb7grwh9zi5p30nxm5qzl11ziajo','NGQ5OWY1YjIwN2RhODY2MjI4YTAxZTg4ZmVkYmQ2ZDgxOGMwZjQ4Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ6SlM2dGdMbnVmbmxFMVBOeG9vSDlMLXhJbWllWmtVaGx6V3lEdzRmbkUxYTlGRGdVaWRKbE9fVHVRb1lROTMyZVc5RC1xVmRHTkkyRXlsT29ReTVjWDFCVU1IdWI3VFh3RE4yTmRXRXJTMFF3MW1yREJ1bmRCWm9Wak1CUFkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjM2LjMyNDY1MiJ9fQ==','2020-01-23 07:11:36.328168'),('m5pd0480u4wyos1dt4egvc1to160hlui','MGNiOTFhNTdjODU3NWNkNTMwODRmZDBmZTc4MjkxYTg2ODQ2NjE3NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3c244eTlmUW1YYWdaZUZneGNQMldoQ180YjVUb2VmOXcwWWJuQ1phRDluTEVCUnljSndmQkJFcjgxMkxsSFBlcWRQNGFMN25HUHh3dFdxOWo0WlgwTjhISjZmZHNWd0sxUzBqSVQ1MUJ2eWlsdjRfR3ZMb3dXNXI2MWlnZ0UiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA4OjEzLjE1MTYyMCJ9fQ==','2020-01-23 07:08:13.155178'),('m5w48oljczcskn84qehox9q9yzz8py68','ZGFkMDUwYjA5OGY3NjhmNGVlODlmZjcxY2FhY2I4MWIyNTlkYjg1YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6M194dkxtWEFMdFp3SURQNUIyVnpGaFlvVEpsekJmY3NzdFlyOTF5WVFXTHJsMnVTemVXbERwaUdkZDUyUklSNURLTnh3M2Y4WWMwUG5OZjJqTzVFcUFCNUpUQVBBZGhYR09kZ21UeGgxalZYcHIxLUd2cFB3Vm1TenZrLVUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjQxLjM2NzY0MiJ9fQ==','2020-02-17 11:20:42.368762'),('m60lvfibedbv58dw3pghzx0qpfmsnt6a','ZTM2YTdhYmY4OTA2NGJhYzQyNTFhZmM0ZTU2NTIwNjQ0ZGJlOWM2Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfOFVObC1ITWlkWDhfVTQxcko4UzFnWXdXTWc3Vk9JTVlvOUhJRzlEekk4QkNOZ3lxWGR0ajZDU3BERjIzMmNmZVNNbG9qN1FBUVYySW9UelhTQy11NU9EaVExNUxmTEJkYUtXWjBvd1E4d1haWk01akpKSXh5RmZvdE1LeVBrIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMzoxNC41ODAyODQifX0=','2020-02-23 07:23:15.583771'),('m65nfsjl9vcdvcnv3ukvtkh6o7nvvp8w','OWEyNTI5ZTZlZWU4MjBhODQ3MzVkNGY3YzljZjRiYjhmNzYxZWNmOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0cGVYZUktTmxMM2NwNGVERVJlN09FZ0EyeXZ2djRGWjZFVmx3ZXVKV2pMblBmMzg4UmUwUXg1R0E1NDlTZ2M1U3JYTEFDbEU3OHo0ZE9RZHFWQkhkdEEtdkhicmk1VktnSzdTMFI4dWVKc1l3U01jcmItV2xPbTNVWjI0Zl9hIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NToxNi4zODk2MjIifX0=','2020-03-05 10:55:17.393244'),('m6ej2xdtk64w2oyydqxgbagv21qhgr97','OGY5M2U5NDcwOTM5MTJkOTExYjQyMzViN2VlOTdmOGM2MDc3YjZmOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5aV9YcnV5bjdQYlRMdjd0VlFEYWdqYkdJVEFLSjExQnFYeUJqSVJIMDFQV0h5YmxoZU9KSHp1LXp4RjJ2NDI2NDdLZmZoNWdvR0hEZDBzQVNlNFJfc3F6SHBsb2FyWTZNLWpLUGM5dG9GMmM4OVM1R1F4RFE4aDl5ZlNEUE0iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjEyLjEzMTE4MiJ9fQ==','2020-02-06 12:20:13.134624'),('m6q2b9k56qxehdxi8zwiijw2e1qhn5w6','MTQ0ZjUyYjQ3ZjFlNDk2ZDk3Y2Y0NGNjMmVkZjI1Y2MyNjQ4ZDEzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ4MWhES196dTlOdFdRQkhsVl9PVjA3QWh0QklvOVFMeVBXcFU0T1pRaGY4UXFIeVA1Z1NmckhXclctY0o2dllvRVpqeGR4Yjl1cHBkVlY4cVVuamtWT1BSbEVuYzloRVM4eFdsTXVqOWhhN2RXcTVQZEVUWE1YWjNzWUpyT3MiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM3OjUxLjQ4ODY4OSJ9fQ==','2020-01-28 05:37:52.489899'),('m7ok7i8jbwam89z5qgkt19rd7vrtlrit','NmUwODQ4ODIxNDNhYjUyODQ5MjVlMmU3ZTVmYzQwODhiYjQyMTIzNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3ZTZGSnRwOEF3dURZSlF1amhoZnJWZHJYamxaLVlHNnpTTnZPdXdwRzA5dlRSM2VkTVVuLTJCSnRpOFZQS1NIVElaaDVZRERBdHU5ZlZ0UFZyM3N5VzlPRVBJRVBueDVkcmZmYnp3THc1NE9uQ2RxZldLNFE2S2w1NjR1b2siLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjExLjI3ODI5MCJ9fQ==','2020-02-06 12:20:12.281856'),('m7zl5yjnxm2gjhs1vtn8hj2qs4p9buk8','NTA5MDc2YmZiMmJmNjkyYTY0ODQxY2E3OGE5M2NmNjk1NmIzMTNhOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6M1Z1SkVGSjNxUXd0YXFlYUlLSFhnSkltQ1JfQ2lMMnVvY0loUkM2LVRVblE5eG5FWmtLSnhBMWRVZW5PMjlCSTI2X192MWZiYW5wMFgzQUVvVHZiYnJXWVNkMGMwTzFxZnFWbjdKTkUxODRPdXR3NjdZZnN3bG56ZDM2b2siLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjAxLjcwOTA0MyJ9fQ==','2020-02-17 11:00:02.712499'),('m8el8168e6at8g5giodhyzevhh1inp5e','OTBmOTE3MWNhOGNlZGJkOGE3Mzk2ZTkxNjRlMDE2NmM0YjIzOTAwNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVRWpJLTVSWDY0OFk1UTkya3h5TjdzX2ZYQmdlS1ZtRWliYXppOGtUT0NBZ1FSYnBaVlZWdVJuTjllTExCMU5LTlAxZEVVd0VETUd0TTFWVDJjVDFMNWY1MlMtTWpsQlZkcDJhNDBxS1l1XzJmNmdWc0xpdmdyTVM1TDVtYnAwRm1KSjE3bENWcDF2STU5d1ZNOW9Kd3N5ZExxTzlXc3ZnIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDoxNi42MDMyNDEifX0=','2020-02-26 07:30:17.606747'),('majaocs3mnio7j17r4u805723bpubtmo','ZDk1MzYxOTM0ODExMGZiMjQ2YTEzYWE0OGRhYmFjY2E2ZDZlOTY4Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyMFpvNjJXdG13N3R3YmZYTUY1cGQ4WEZJbC1xY2lCdlRBdDVUT3BXYm9DTlM1MUdzcXR3a0tRN2FUelhpZkhjZDduRnJwWEZnSlR2UE03cHhqaUc1MzBkZ3c5MUlldnN6aXlLRGp4b1ZDRVJVaGQycVpidFo3Y1FJVUJFLTQiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjQ2LjM0OTIyOSJ9fQ==','2020-02-09 06:50:47.352559'),('mb3t58fwtiqrqbr0qpkzfb5gdvb23q5f','ZTg3MzQyN2JjNWRiNWFiYzQyNzFhYzJkYzA2OGI2MTUzOTc1ODQyNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3Q3hwVlpMb2pZVExQeWdxbVdMa0pOcUJhdmg1RW55cFlzX0R1eGpBOGdDTzdhSkExcG1PalIwRDF1ZmV6ZndHbnZEZF85MEFtdFQxenUxUHZzcUZWX3VvaXJXR1pOaVdfbk5RX250N0FHRXZNZVI0VzUwV1hXT0FqRGhVcVUiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjMyLjcwNjIxNiJ9fQ==','2020-02-02 06:01:33.707361'),('mbuxaycbyw87jkqtq727fz10wn758n0i','MzQ5OWMxZjE0OTcyODE5OGYzYTQ3YTRhYjhkN2JkNDM1MDRjZmJmYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3OHFvYWJEWjdSNmxMYjdhYjk4S2tEMExDaEFrSG1hMXVSaXZtV0EwcUs1bVF4dU0tWk9fZUJOWlYtZlU4dWwxYXRBX2d1Zlc5aU0tRGpoM0Mxb09aNkFqM1J2TEd3UzVfcERQeGZ3eFZka1EwVHNCSnp0TXBndVIxMGt3ODAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjIyLjUxMTk5NSJ9fQ==','2020-02-06 11:48:23.515101'),('mdleknh1el3imasoy10epykps7hs76ya','MmNmYzhjZTY0OTViODJlY2JlOWYxYzNhZjUwOTZhMDQxNDE5NTQzNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3QWdDbHJrTXBieWU4LXVkWUJ1cVNLUjZMd2k2cnlUWmVKd1N0NVdnYzNNLXBvQUxhaWg2dFVmMXlSbm0zWWdiczZVeWpvV2ZQdGJUQUxXMTIxZ0FSaXNVU1cyeldUZnp2R2s1OGVlREl0ZVZvbENVU3ZXSGh3My1tVlgtREUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjIyLjM5NzM0MCJ9fQ==','2020-02-06 11:30:23.398372'),('mdo4in1ti8dwfi41apchcydklk7zwzu6','ZDA5Mjk1NGQ5OGYwZTNiYTc1MWI5NDdjOWY0YzM5OGNmNDQzYTNjZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxS0pPSV9ieHlCdnRkaFU3M1RlWUN5c3NOak1jalFhelNTR1Q3SEQ2ZTl6OGcteVZJTmwxLVdVVmZWWFZxbk1qZU9tSWU1dWhyalNybG1YcVN6ekoyOG1LSWRTdWRhVkxZcVNnR01KMkpHSHpZamtBUlhGSTAwTENVQ1lkNmciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjEyLjY5NDE2MSJ9fQ==','2020-02-10 08:00:13.695702'),('meaps0rbpnmlsgie7tn4ujtd4udfw279','ZTJlMThhODI5ZDJlMzEzMzY1MGI5MjU5MDM2NTY1Njg4NTE1NDI4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2SzhGREZEZDlERWF3Wk1yU25sMlgtc2pySVhES2dnR3R1TlNFXzZRM04tWmxqSWZyajNyUHNsNS1CeDYtQ0EtRUYtUHFrc3MtUHNzMDJJcUdDc21VWWEzaVkyWjBJTHhCTUw0MHN4S2owSDdMQkNlSDhvYW5sUWlHelh4NTNoIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDozMi45NjM2NjkifX0=','2020-02-24 06:00:33.967111'),('mf66440ity7xvzfupmkaw4iktvzr9jts','ODg3Yzk5ODEzMDVlN2U5ODY1NGJhYzBmMzNiZjMyMmViNmZhZDgxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYdm1ELW8tXzZRX2dIdl9sUU4xLWpKZ1N4OXk1STJWRjVyM2ctM2Z2VnJsVkFFQkhBYXBleGkyVE9OWF9ydU5JdmRCbVFYWlRzYl9WUi0tSjJSZVV5SkRmX3MtNlhFUHIxTkxhTHFLWGtuak1wUkVuRVFjb0t4cWFOQ3R5bC1UVWl0LTVUdlFKT0RQdVBXMmR4Wk9qcGNtcVVHSTJERk13IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDoxNy43NjE2MTgifX0=','2020-02-26 05:00:18.764852'),('mf6s0ve51l5glxpdfeoy0mdvfasasq3i','MTQxZWRkMDdiMmMyNTI1NWU1YjU4ZTkzZjQzMDEyYWFjZmExNWRkMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2czNwazIzUElDcExRcVFmbEgxN1R1aEc2QTJOWGs5Tm5HUnJ3YWlxc1JKb3JSZXRBUVVqSkw5cllucjhsVXRrdG1IdXM5UG1nSmNsUE1DV01Xb0JiWi1PemZrMVUwcUZrZkw5eFlWSDl5LVhRUUtaSXQ2XzRQZndyVjJ3czg4IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzoxMi40MTkyNzUifX0=','2020-02-27 05:43:13.422705'),('mgfbb9b0oiojzo7amyxc1hbzut537tli','ZTJkZmE3NDZkM2Q5ZjZlMGQ0NDI4YTZhMGI5MDNmMGY3NGYxNGM2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5Q2dkeEVTS2NBUzNmX2xtcWFzV2RLbGJINjdPaEU0X1NiNHNOdDg2aEhDWUtERW9SS1FBbnZnTDlMdmQzTDk1MExwQ1hobm1IaVlZN3V1THcwYVg1UjcyVkZyUWNvS05BR0trQm9wMFpIMlZlcnNLLW1lSGFuVVJWdk45dFEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjMzLjQ0NjU1NyJ9fQ==','2020-02-17 12:20:34.452095'),('mgj5qord0pj6bues2q0q0f59d3vzbqxn','NTBlOTVkOTg5NGE2M2QyMGNhZTNmYWRlOGIyZjc3MjYwNzVmMjc0ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2SWFHZ0ZsalBoOENMTmdTRXl4VkVlSHBacXZXdUYwUnBUaVZ5S2pBbnA5UWZ0elRTVTFQU1J1aWVqVEY4blotZWtHbEZSeGJqaG1KT1JmVTF1MWxLc1RxLVdaeGFxUHBkdUFQdTU2THd3SjJJNDF0TGVETWd0Ym8tWVZ6MGJ2IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjozNjo1MS4xMTcxMTQifX0=','2020-02-24 05:36:52.120479'),('mhb99dv1uk4odzswtwh2z9in8mc04tr9','ZjZjNTUzMjQ3YzcyNmJmNjZjNzMzMmY0NjE5MWZhYjM4NTk3NDRlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5Wmx0WE1EMVFCajdoWnFiT2NnNU5RVDBPbmg2UW1tU1JjckRrc1Q4VU9iNDVWWGFhZ0hwV19yRkIxeDk5cGt1ejk1Mm5XdVFxd1dwRVo0VGhLandndWNWR2hmaUp0N0JuRWhGdGhwNGZFRkdmWDZXZk9ZWEVqTkd4b3c4NVUiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjQzLjQ4NTI4NyJ9fQ==','2020-02-13 08:00:44.488836'),('mhklm88xcvvl67e44kbbtu93p61khaq1','ZGFjNWM3YTI3Zjk1ODhkYWMyN2QzMDlhNGM0MWE0ZWVhN2JjNTlhNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4dGxtSE4tRXk4R2VUVmlCbDNTZHg3b0lCZ2pTTW0tc0tWQTZZVWM5WGFfVDdKNmNXck9HbXN2Smw0MzZ1RUZRQUk5MFZxWk50dUkzWlNOZlVPX0l5TWZpZ2gwejc4MEpHWHpHVl9La1hPOG1vc3JVbHQxM0trOElBRkxIb1RoIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMDoyMC45NzU2NTUifX0=','2020-02-23 07:20:21.976801'),('mj43mxut60xjykihw8hdprxq1hcwx25w','MzExMmUwNmFlYTY2MDRhM2JmNWM3ZGI4Mzg0NDk3ZmZlYjZlZmU1ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3SDBvdExTdnhZWVJ3d2VDUW1GZEtSY2k2TWRGU2JxNDJNcVZDWkI0LTJvQV85NjV3RWs4RVNxX2t5Z1lGLTVKakVGb21LVHJsY1ZyekNaajNTMXgxenBLUU43UjBLRXBaME15MTlwZ1VPTjJtUlhhMGNfV1ljN0lfNGVnSUlGIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1ODozOS4wNTE4NTcifX0=','2020-02-23 06:58:40.055359'),('mjkuzspyvw0bpxr101g0dmuusvpqa27o','MTdhYzExY2I0NjI2NTRiM2Q2M2RkMjVkMTA3ZDVmNjQ1ODI4ZDliMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5SE9LMnozZ0hHZlBmckFLalN2TVowZ3BmeUdtb1R5U1dkTVhMVHB5Y1FsOUdyVjNndVZCVGYzR0EzX01PUU1vOWFQOEN1amdzWGNNNUJWUjljelNqOHRTbldjWVhBOGt5Z2Fva3VoN2pqOWZJTEJWMllXX1pYd3NOWFJ1WDgiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjMzLjcyNjA2MSJ9fQ==','2020-02-18 05:39:34.729535'),('mkppek9cto8jp19hix2x4y32m7n1b0z8','ZGZhMDAzYjM5MzVmNmMwN2ZlOTlhZDgwZjdhODViNjViNjlmNWZlYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfQU9lNVBJMkI4amMwYUkyUGF6bWtoM1R0N0FFc01QX0NMa1V5bEJHMl9SdmZ3YlRTSElaQndzRHBKQnNmN1pSSTB1eWtpS1gzY1Z1d240ZVBjQVlUZlVGbXdfUml1NW44YUlHZDY1VVdQTXkwTjJsaUp1TFRHTXIzbUxlT0paIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDozNy44MTg1MjgifX0=','2020-02-26 07:30:38.821755'),('mkunr008wbz3kb2tbx0os9j7yz38qou3','ODEyMmIyODYyN2I4YmE0NzRkNjg5ODE3MDcwMDMzZTZiOTZhNTk3Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6dkp1dXFlQVdrSTZUb1VFMk1LSGNBenZWWUlyaE1DSEVUcU1WM2dTSC1BTnJpdlJNeHFwMmF5UTF2eWsxVS1WMWhwYlJ4VENtUWJzOEJuNlZiQ0xfRmpaUTVSS0JvRXJ2dklqWkkxOEJ3VEhhdnlHN2QxWXNTUzVkN1U1RVUiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDEwOjAwOjM1LjYyNzY2OCJ9fQ==','2020-02-20 09:00:36.629939'),('ml3x4wmj36c8vhplugbidf7yomdaz7bl','OWQ0Y2QzOTc3YThhZDg5ZTE5M2JjYTcyYWIwZDNmZmRiY2RmMGQwMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyZm9WZ2xLNU1RSHBkbUVzTkVfQWxhTHFybXJxb2RjWjJUOFZBX0k2cHBldUNvX0FpcS1HanBzNlVmWnA5RnpuOU5DbjZTMVQ1dzg5d3NJNUQwZERwbVAwb3F6NEd5SVlmX3dNaGVsN3VSUlA1WUNBMHFHN1FxTEZoYlZpLW8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjI1LjEyNTM1NCJ9fQ==','2020-02-17 11:00:26.128849'),('ml5ew3v60cj8c8r6bz37cj1pcge4kwgz','N2RlOWZiZWFjMjZmZTFhYWJhMjEzMDc3N2EzN2FhOTVjZjUxODYxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5XzFDdmF3b1djaGJMMUV0ZkpPOGx2bGUtMjB4cDJ5OHFRRElYNGNiN0JaRnhTTkluMWFIT0pwZ2VZUlJsRGNoV3lWNy1qVi10Uk13U095bjM3ckUtSUlfYkJvMjZZMndUdU1DR212dURVWTMxMTNJdUY1V3VLS09NQmQzZUUiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjA4LjEzODI2OSJ9fQ==','2020-02-09 06:17:09.139396'),('ml96sz2tvovesb1bz5fcnv3wpc4cr9k3','Yzg4Njk5YjJhYjk2Y2Q4ZWMyMWJjZTk2MTk4N2ZhOWI5ZGUwMTdmYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2V3FMelNMb21QYWVHb2x6MEttY1NOUWVMZlJSc0t5Z2tiVGhaR0F2SG5zdE42aU54MTJwUmdtM2hKZGNZMEU4QWJfYWtkTndoVm9DeDVreGdNWmd3NEhWY3ZRdVNuUUl0cmJjM2dwR3RHRzBkTU12M0lOR0Y1QndRWlZQalllIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDo1NC4zMzU2NzMifX0=','2020-02-23 06:00:55.338878'),('mlapw0bcnb9wnlrrsblvxc20jae5atz7','N2JjOWI1MzIzMzcwMDQ2MWFlMDk3NTRjZjNjMjlhNmZlN2NmZGYxODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ4TDFOOVd5Z3V6WTRxY2lkQkpGNmNXMmRndVlrVlhjWHBHRnZ0NzBNS2Q4VEltODZlbVpvQ0tBN2RPZGh4Rkx6RkdnX2FsU2E4Sm84Z292ZjNGbkpRSjlnZmt6WHVJQ0I1a0dJMlZnTUs3NGtERnQwX1RrMzc3T0lrN2ZCc0kiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjI1LjQ0NzI3MSJ9fQ==','2020-01-23 06:50:25.453184'),('mlgyskh7l3jx47xrk0gwr9jt7fkk30h7','ZTg2N2M4ZjVmYzRjOTVjNDkxYzkwNDQyMzk2OGNhY2ZlYWI1ZTgwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0Y2tldFJhaE9NOW1yWHBwY0ZIcUY2YkZlNGZPbUVIR3RwQ0M0ZUZKRjBRWWlyZkloZFVqZVU0a0p6bWJsOTFfUG5JMm03alNsNzVnU3JyMG96dTgzV202U0Zad2FEbjhlZnl6Z3NmQ3o3Q0RmRGF4LTRCS3A5ZWFsWE54UEUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjM2LjcwNTA1OSJ9fQ==','2020-02-17 12:10:37.708589'),('mmly36auaja950h79ib3lmr880nf818y','OTk5YmUxMTA3NGMyM2JmNGI1ZGEwM2Y1ZDU3Y2VhNTVlODJjMTAwNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4LUphMVk2ZWpNZXcxcW9pUGRicHpLTEM2cDNHVWhYR1k1WXFCUzlwcWtuNmkyWFlkNkxMOUhwYWIwX0xrYXprcno5a3piZTJMamE4cUNIWTRZSThfZkphNjV4YmdpblRBUmlNUFpLcGpyV0lZZnhqQVJ4emRJeXk2S3FibmsiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjQ0LjU0NDc4NCJ9fQ==','2020-02-16 03:59:45.548149'),('mmuhfice1xiuo3r2m3y0s9j1mlsg4nei','MGU2NzFkZjUyYjExMjUzMDFkNDhlMjk4ZTU0MWZlZWY4ODhiNGZkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2VUZlY25HcFN6UVhXdzh4dDM1QTBNSl9ETmgwZ0c5ckZTYV9fcFZKaFNwcExqbGhHd3B4elVMdFdFOTJiUWpiT0MyY3pNZU5FTEZ0SWx5QktWNjdERzZSZW5DUGxvZ0VtWmFPWGFMeG5TWi02NTd4a0VyZTdaS0lCbndFQ3ciLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQwOjAyLjI2Mjg2OCJ9fQ==','2020-02-18 05:40:03.266493'),('mnjd3gb2dt51q76i2kdiw1x6s5hg2k8e','NzJkN2NjOTc3YTdkYzQ1ZjRiNjJlYzRhZjg0ZjA2ZWQ2Nzg0ZjEyOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5S0RkM0ppbFRaUEk2UXhlenFhcDZHZ2xaUXpFRHhTMEtXWm45LXhqT1NEM296czJtUjBvOXlKakZmWDN4YVFRX2lLWEpsUnRNWk9LQ1NUVGxTek5HMmV2UU8zTjZCRVdVX1B2VzZLTmxYcFNtNHVuTzhFcHZaZ0RaWjlsb0UiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjE2LjI1ODM0MCJ9fQ==','2020-02-10 08:20:17.261845'),('mo3hpeu6yih7qha5q9544i9otecdsph5','YTk5NGI3Mzk5NjllM2MxNzlmYWYyN2JkNGZkYjhiZjIzNGMzNmQ0Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0MFhDWWVJUjNjY1BLQVphSC1zU3cybXl5Ty1zaXh2WF9uY3RUeHBCa3J6Sk8zY2tNelFxazFyUGFlTFNHanhWYTRMMEhOYzdWcEJxRDJYcG5PTl9PWUt5cFUySnBrME05VUFQbFc5OEM4azB6ZzN3TEdPcnJoZ0R2ZVhsbzAiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjI4LjM0NzE5MyJ9fQ==','2020-02-10 07:40:29.350444'),('moj9vca00oqo3djmnqvp4iyvirlm4ylv','MDQ4NDMwYTNlZDM0ZTMxMWU2MmFjZmM0NDdiM2FiYjgxYjQyMGQxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfc0gtbzl5alY5WkVHYWlGcndGNkR5cGkwei13YlgtZXBjSHhXUF94Wm5tdEFWWml2TzU1R1VKZFNTV2sxdmVsN2pvdTNhMnRNZmhTQUNRaDRJOTNIdnpGLXRObU9DS25QVmRrVzVYOGJNamdpNWZmZlVjZXFUc2E2WTFFYXMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjMyLjA0OTM4MSJ9fQ==','2020-02-06 11:30:33.052842'),('mp1dvg2046or666utwj1akb2d9zswc8z','NWUxNmY4OGZjN2VjNzFmNGJmYTAwYjY5MzFiMzhjOTcxMWRjOWIwZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIyNTVDMjVBaTMzVHpGekk4Njhhc25FaWVPZkdKMjZtQ3RHem1vblc1MXNRazJNbWFlRnlad0dJSHJORGMtbUs4OHBCeDNFWV9mejQ0UTlybmVQa1dZNzZDUUxEU0xSS19pR3pYRXR6SWR2ZjBfbm5HZG5Mc2NkckJUbllfVkkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjMzLjYzNjMxMCJ9fQ==','2020-01-23 07:07:33.639543'),('mqfqjcxa5g74py9khxmz6828uvqv43lh','ZWI3ZTIyYjNmOWZlOWNmNThjNThiMzNhNDFiMzJiMGRkYzRlNjFlMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzWFlaa0ROVVpidFhYb08yYWdFZTVsR2h5RVhkYm1yTXU3ZGtCcFA5c1BDUy1UbUN1X2V6d3B0NWpXOHoyRGVfeV8tcUFDR0hTRVBsVHAyamRzdzhranJpbTViMVRfQlFXX1BVR01UWVZsOUUtamtIbm81Nll3NHZfOEU0SlE3Y2F5Sy0wdmlrTjlMRG9mOWtNOFRzSTFRZ1lUdVFwQU9BIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MTowNi44MjY5NDIifX0=','2020-05-18 06:41:07.830331'),('mqmdm6v80qgilu15ok67igunqv08duet','MjRiOTc4NWQ0MmM4ZDhhMDIzMWQ2NTkxMGM4NmQ4OWZlNjQ2NThjZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYai1JTXo2NVVFeDRueERQR3hPX1VtZGdERXNlVHJmcjkwbVpkbHVTQThncXJuWEpWWmF3UmNQMnFCaGdQbGNySVRQT2FQZlk1WmRpS0N2T29BZVIwVVl1NEpYYllYLTBtVVhnTTc5a3BmVjlHUGkyYzcybURyWUpmbjZpUlVCZXpuUWhRRmdtR25jcUNmaEoxV2dFSUxvcDYtQUl2d1FBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NjowMS44NTY1NjYifX0=','2020-03-05 10:56:02.860645'),('mqvj98vh2n166zf7qn2gkur9uaknt9rj','YjI5Mzc5NWIyNWZlODQ4NjFjZjU1MDRlYzJkOGQyNGMwMDY4YmVmMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI4emg4Z1NpYVhFQ3AwemM1Vm1pb05rWmM2dGxxV0s4U3RORHo0aXNlTVJiOHdvVVczQmFZTFhUSnJpWjFkMWpEV3llYVdCZDYtM1c1TDhfUDBHRzk0RGVpY3BNeWJPNW5KY25MS2N6QnBGVkRsdTM3bWhiYkEyaGpJWkd3dDQiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjIzLjk4MDk1MyJ9fQ==','2020-01-26 05:47:23.984454'),('mqvq8u3suvpa1jjb4o0bhg5nn7s4f6cc','MDY4YWY4YWZlYmQxZGJkMDJlMDdhYWY5OGJhYzg0MmMxOGUyYzdlZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1SW9QWnZiSUszbWFrci1zZUVzMTNiNkNDNU1WRzJxdDNLbW16akZLU0IyYURtN2dVOUdVcExXaHlRTHh5R084QlNYM0hVMjY3VFU1S0Z2c28wNGtaU0FxeGJCZ3BZNDBTVktHd1pzbFMzQ1VSUjh6TmpxTDh5eVJBalhnWGMiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjExOjMxLjA3NTY1NyJ9fQ==','2020-01-22 06:11:31.077195'),('mqwad4qcf3ejrsxm4nebz49mxw8cb17r','NDUwNzI5MmFkNmM5NjQzZTUzYjkyNWM3NzgxNjZkMmQwMGI5MDBjMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4Umd6NS1IUDdvQU9md0JIdkFlUzhWOV9LcFNrSzlreUVwemlHTW9fb3U0NFQ5bU03bmQtTXhDdHF3d1YzelhkVHRMZ3FYazNFdFR4ajNUMUs2NEVFaTVSd1lLZmVMTm5ZOE1hWGk3R2lBRFdSWFkxbl82UXFPaXM4S2RCYUVrIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMToxNC4wOTQwNzYifX0=','2020-02-23 07:21:15.095468'),('mr3jrf7wq3bptdmgnnjkhk9r1t7kjw8b','N2ViNTE2ODkzOWEzMzBjY2FmMTJlZTVlZjkyZGJiNDliYTUxYjdkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1SU1mY1ItZWxNeFhVa0hOUWM4QV9rdllmVjVjVkdXSlhNR0lrOE8wTU9vZmtLYUZPdzdxaTk2SWM5akxIUHQweFBXM0dyajg4VGtRSWVvVy1xUHA2dGRLQ3dhOGswVHVGZGZHWjRDY3dPdzZUUkEzcDRlTW53bXYtRko1OUItIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxNzoxOS4xNzg2ODkifX0=','2020-02-25 08:17:20.181412'),('mso9siqvssx95qat5dx7rn02grp0necb','N2I4YmI1M2Y0ZWZmZmQwOGFlMTNjMzNlZjlmMDgwMjNlNjk1NzVlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4ZW5zSC15eHVzSGE5SUFFbmlkOEVuZUpEeC02TEUxSHFLeGdlX3k2MnNDWGRiUnFVdU9Mcy1scTIzRnMtd21fWUMxNkR5QXRicWVYNExSYV9nSXdoVkxqWHRmcDFkZFRiWmNGSVF4V3EtUUoyWnhQenNBTmRfektmQUZlb2ciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjEwLjM2OTA4OCJ9fQ==','2020-02-17 11:40:11.372550'),('mtpm5qznrbfldrldr59dzd6bluo33zd4','MDhmNjEyNGEzNjcxZGJhOTg0NTVjYTRhZDk0ZDNhZTg0MmZlNjM2ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxVUk1ZDVZMnc2ZVpkNVNVekEycXFiN2wxLVJFOGpoSThhZUhDckNuVDI0ODFlZHV3RXNuWDF6c2hvWEVSX1FqOGhOcFZpNWpGMTFObWJkWG5TZDQ3VUcwMUxhRVFFTG04QlJ4UHFUaWc0cEV1X0pGTEM1OTRJa1JZWE5IREkiLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjIyLjY5MjczNiJ9fQ==','2020-01-21 05:51:22.696275'),('mu0gz4hpdqcwm0z8h01wb9e6syqjx4md','MjM2ZDAyYWVhZGQwNGMxMjE4MzIyZmNhZGY0NTE1MGUzOWVhN2NjMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyX1YtS1dOWl9rcUN4R0Y0b1JJVVdwWkVueURpUGV6RGgybjZJWFBreHNORnMyb1JMT2VRcS1oMjVERUE3ZUxhOTV6bGljM3dyYlFOVzJURWVna0NDa1NtT0lvbFN2c1REVEpIaXdQQzRZaTVmcGtJSUgxS1MtdGlRNEZJd1hZIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDozNS42MjkyMTAifX0=','2020-02-26 05:00:36.635154'),('mv6gjo7ehc6ds2lokjuzo5m3n8oscvvx','NTdkM2E1YjI1N2I3NTI3MmFmZWE3MDI3YTc4ZTFhOGYyYWE2ZjkwMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4U0hBREY4bFM1Y2F6bXdVcUpvQ2l4VklUMURMTnZTQnhZSGlKcXZQdl8ybkU4Vk15ZlBraDJvcWdQZU5qbzU2TF9nX3Q1ZGFwdkhFbDgxd1JGcF9ZZ2tUcWtpTDlaSzM4VkJwYkJndHdXVFhwZEt0SUhPdW9fM2dwSEJYd2MiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjM0LjkyMjY4OCJ9fQ==','2020-02-17 12:00:35.926272'),('mvduvmdgpr7i7k0s75i102slpl6530fc','OTE1MmZmZTJmMWJiYmQ0NWVmNGJlMmY0NzAxYjlkZDQ0YjdjNGJjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIteGJuSTJUa1lMU0VCaVlWelhid0VmMHNmdE5NdE9rSFIwRjRCLXdDeXMtWFlma1BmemhnWWs5UkxzMEhvV1c1d1QtbTQ4amE0SjZfajdIQWZEQjlvbHZMUkViZlEwWVg4N1lMZEZrRnY3TnNmREFycm9yYXdyd1RpZ19oTWxOIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDoxOC4xMzIzMTAifX0=','2020-02-23 06:00:19.135673'),('mvg92svo8ldod1ixnrgrlhowqhwbgnw7','YzcyYTI1MDg1OTk0MDAyMjBkYjFhNzkyNTdjNzA5MjM5MGI0N2Y1OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4d18ydnpraHZ4WllqdS1aVkFvVHJ2eFM5eHdKeTNhYWVLWGtXeERNbXcyM256QWFXdWpkQWFScVZBWU1wWVBfMkhiWWRZVU92ak4ySndlR3R0dVVwRll0YzFMcWhSN0sxMm9pZ3o5QjJ1dUVNQnl6REdPcHB3RVppVUJTM1kiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjQ0LjAyNDk0MSJ9fQ==','2020-02-17 12:10:45.028372'),('mvyyyls5inb1drazk2zci4i87xcxa5ge','OTgwOWRjNDhiOTY2MDlhOTBiNzA0NmNiNDAxMzhlODU1NDY3NjU2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6RmFtS3kwa2x0UFRnRjJiSUJyczV2aDRrYU4yV3B4eTFpZjg0R0tXSngyQWQzWUFvZWxIZ2pqY3BsaUYwM2pvWXRuZ19YUFB4cTd2dnotZklBZDMwU1o3QkpqZk5JRW4wWDNyWUl3ODdBdzhWQTB0X05nRmVRQTRBc0ZONE0iLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjA1OjU3LjA0MzAxNSJ9fQ==','2020-02-20 07:05:58.045025'),('mw5ra60fayfq2z7afmorgjzxjdljjwop','N2UyNjM4ZWQ3MTAxNTE5MGU3ZjgyZDAyOGUxYmI2MzlmODc0NzkzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyQmIwNVlCZ1ZKR2Y4QzJYMWV2akZfV2o2RmZoSURvUDlCMzcwUmpyZ19tLUE2Sk9NRjJib2hkLWxjVXhFRkMzZDI4SHVCbEVycERaUnE1T2JpM2ZwdkVtOVJtR2IxMmVLaGl0eVoyNVlxZy1GWGxPckJTWUJmTjd4MmVYM1kiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjI0LjM1NDc2MCJ9fQ==','2020-02-13 08:10:25.358213'),('mx4v17fe5th65j9v6a39mm4e8lwbxz3p','N2Q4ZjRkMjc0NDlhNzkzZDA5OGZhZTE3OWYxNzM3NGJhZDhlZDJlYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1bnFnVzdTZG5xNmsxQmt1enpwUzZkOEU0ZkJPWnpSQVlaY2JWUVFFaGp0ZllvMzEwWXZsQWNYS3MxV0tpeE1zZ2pCdGFZS3Ewc3dKSFdHZlFDOV9WdWFRMkk0enFxNi1wMVdsUVNCeTdXWkZwT0ZpNnF5UDdQWnlhbHNKSGJPIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NDo1OC43ODg3MDMifX0=','2020-02-26 06:54:59.792177'),('mxqbnkl0lr4kwavpt60ejh9rv56ygwqh','YzA3OWE2MDJhZGJlODBhOGUxNGE2MjgxNjgwYzQ3ZTg5NWViNzdhZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4akZrREMzQW5HUlNJTTFuMzQyVGFnWG9RYm5pYXc0TnRHYUc5V3Rta183LVBNVXpfTC0xRGhwdFlCMXBpZnB0Ul9iUGpEZnlaZFZXSWRCTDhCNEJIMnE5RFBwSEdWXzIzU3FMZGFieVJJY3BLMUZBdlZJN3BPeG5qbEhWRXk0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozMjozMS44NDc0ODEifX0=','2020-02-27 07:32:32.851538'),('mzymejpolrzg3j94k5motw3e5tkwf3z2','NjljMjlhNWNiYTk4OTY3MDFlMGI1MjI5MGVjMGRhZjZjMWZhYTM3Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6Q0dvaVNzYTFFaXZpNDBWOHZMa1RXUFdIdHNGcV94NGNDUVVleWpyUmxhN25mNDcwNmFxM3B2d2ZyYWxoY1d3Y2l3WnRDV0dmUnlaVmYtY1pJTTJySk5JaXRiRnZMTVpMM3p6NmgybEtMOXVNUUVvVUpWLVA2NVE5WHJRaGsiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjA4LjE4MzQwOCJ9fQ==','2020-02-17 11:10:09.187025'),('n0eh9nz9zps207hxkhm6daulxoqpu8g5','MThjOGVmN2JlYTE5NTBlZGYyMTRkNDVkNWM0NWY4OGE2Yzk4Nzc1YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI0T3JNMWtMNFJFc0s4SnlrMzE4R3FabDhJYXFIaGh1a0RTTjFVZXprZWxVcTR3M3J2dGZXWHhhekI4enVmX3lybWJ2MG9WUVVSLWsxTV83TVVaNTllajYzX1JXN0RfV3ZCcHQ0SDF1aHZYWnBKTDN2ajAwRVhvd3UybkhJSkUiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjAxLjIzMTkwNiJ9fQ==','2020-01-28 05:38:02.235227'),('n182c3cv9uf11v884ff3pp8egpj88usv','ZDk4NzkzNjAwNTA0MGU1ZGI4NmFmMDU1ZTdlZWRlZmEwYjEyM2ZiNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2R3R4UkxGczlHVlpDbDRrZGhqMV9GdFYwdl9kV1MyRmlPT205dmdCMk5ZNUhNd09RWkZjX2xvUzd2S2VoVE01MWdTREtvTjZOSHdvQ3Zib3l2LTE4RHFjOGlieF9mVG5FUHJ6UTBZTHFBRGdFRW1HT2R6YWlpQUUtaE0yVGMiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjIyLjU3MjE1NSJ9fQ==','2020-02-02 06:01:23.574022'),('n1kfbofu9m80x5zwa1f1gv48e496uue1','NDdiNmYxNjVmMDVhMDFkMGQ5ZDQyMDg3M2U0NmZkODRhMmRlZjUyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI0ZzlrX2JFT3FNVVBDRzRDYTc3ajFmX0dLNzZPSkhMaUN1WUZjLU9xWFRNZjJxTWxuNElZeFIxV3p6SkN4enJyZzlGZFN3T1B6VUxudDRpd3k2ejNHb2JaWXpvdTVDRHBuRjVFYzJHRkxVeUVtNjJLUVJLU1FValVzRXdQTDAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjM1OjIyLjYzODgyOCJ9fQ==','2020-02-06 10:35:23.642449'),('n1t0359fmuv5suba11axjpiemtef0u3q','NGMzNDlmOTg1MDgzN2Y0NTYxYmE3ODRiMWIxYTYzNGQzY2Y3ZjYyZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItM29veU5COW55b2Fpc0JDMWVrX0VnNk1ZZUh6Z01nZU5adlRzdGxMYlFiWllzYTNDREZxc0d4QVRuUVpaU2M5NFI4OE9uTl9vT2ptTFFUVFVIbURpLVdET0RRcXY2R3dGeVprS1Y5TmxZVlpyRTZLZ0hWc2ZQVDFJY3RSREkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjI1LjQxMzY5NCJ9fQ==','2020-02-10 08:10:26.415535'),('n24e7otwfybkzzearmatbedw8oq0h96f','YTUxZDM2ZWI5YWE0NTliMTM0MDkxYjNmMTgzNjFlY2ZhNjUyMDJlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfdUFGMGg2cnBRbGppdEE3RFYzSGVJVW56UkpEanVUazBkLVdXa0EzNWkzN0RxbmRiZnNwSEJ1eXJwX2ZKcWRoUDR0V0ZlTHo4S1psdE5meXhYZUpyY1dNS2dYeWFSTXFNSkEwb1NqT1VpeDNxbUpJTmFrdXN4V254RHd5RWFyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MToxNS41OTU0NTAifX0=','2020-02-24 05:41:16.598992'),('n42ri3uop82qauuz4wgpsk2hj79twl87','MDRlMDU5ZGQ3NjkwMjMyMTk0ZjVkZDdkNTBmOTFkNGU1YmNjNTM4MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIwYWptR0RmcnJZSC1SN1puOUJidGt5RVlkcUJEeG5HMXo0WFpUdmZ6eTBPUjdFcHBfdlNxb1NDeWFDRkV4ajQ3Zm02aGpjWVhRemRhbmtRZFBpbS1seHNNcmh6Z0h5cDJ0aEl4anlPQmVlcDZiVzJpT1hhOUt5S2JmMWtmZ0UiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEzOjU3LjE4NTE5OCJ9fQ==','2020-01-22 06:13:57.188660'),('n496m77g4zmal2acgeq2gk9hjwduo7e5','NGRhZDQ2MzdkNjUwODg5ZmE3NDQxNWJjZjE0MzRjMTc3MzVlMDJmNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYOTdEYTN4OExRRTJjRzFTM1V2SnpxV1hKYmdHQkJ3c2p3Z1I5ejE3dGZrYlRSZzIwRFpmNF9FRXNYN0REOXk1b2FMQXh1VGJDR3FOYVdrbnMtanRzN3FSLWx4SXVNSTVsdlZsRjkyZ3dndHBfU2dVR3ZBQ2ZxSnV2U2lLa3pzWEk4M0pxcTlxNHdsRHl1dDdSQUFjVXIxYW13RTNiMyIsImV4cGlyeSI6IjIwMjAtMDItMDUgMDY6MzQ6NDAuMzMwMTA3In19','2020-02-19 05:34:41.345270'),('n4a1umyyv8qemf7kpwy3ay9icdg11tf0','MDE3ODkzMzhlODRiOGI4ZTdiYzNmNDRmZTRlYmQzN2RmZDBiNDBkYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3WUlySkhEVGhfenNycUR6UmNtU2w0bDJrZWt1clZrekVwT0JLUVpVd0tCelNOTW05bWVOaG40dU41UVBKWDFWTFd4RUhRYnN2Q2l5T2VITlgzUl9NRjM1SXJqRm55VFdjSnJjMnVxY2RnbDlMQnZNdzJTV2Y4OWdWSXFUdmsiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjQ4LjYxOTMzNCJ9fQ==','2020-02-09 06:50:49.622898'),('n4vlw9klcthwz02wxpc1bp1gd2j51up0','YjQ0Njg0ZWQ2NmQ3NDZjZjNlNDhlZTVlYzcwMTE0YjA2OWVjMzYyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2ODF6d29wZXlEVUJGdVZybEFiQzNGTHp5SzB5N0NDN2RNZm9UZXZ1NGNqMTVMQ3h3TDB5aDJReUZTdGh0cl9DbVQxa2tEN24xWHVKaDIyOFh2Y01ZZHZEcWhQd1hkNVVGUWo1Z1EzcGpTcVNmbmpkZjd2a05xNlRCLS0xZDQiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU5OjA3LjcyMzI2OCJ9fQ==','2020-01-27 10:59:07.726632'),('n56q1mwzqla5t1weyvn0ckkz2np257jo','YmQ2NDc5NmFkM2ViZTAyOGJkNjk2YzliZGY3NjY1ZWQ2NGJlOTk1OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1d1VtSllLVWdXNE12a3BqaTNSU2pSMVNQQnNSeWp2VVhrYk9NTmpEQ2pTMGhkV1ZYbjA2Y2NRQlJUN1k4UEx4N3ljSGVycU9xOExSaUNHU0t6UDYxUTlINUZwbXNlWmd5N295WV9XVFNneWJnRkJmemdyU2ROeHNvUGVzdVkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjAxLjMwMjg3OCJ9fQ==','2020-02-06 11:50:02.306385'),('n5bnw34ot63noa3bzlu82p7nb9ti2fa5','NWQyNTc5MDhjYzc2YTViZmRhOGEwN2I1NWI0MjMwZGY3NTcwOGMwZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3NmgxWnMtTENQb1ktelg3a0FkMTloeUxtR1V5ODFJRHlFdlhyclBmaHh0T2xzdnUtUzVzZWVWTnBKMDJaWWgzVHpHNlU0NVFSekhnTkpWZGJsazF6bXIwdzJXeHMzQ2lNNmo1SEJKaWZ3eE9qM2kzZEJGZ0thQkFNLWtlNWMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjMwLjk3MzEyMiJ9fQ==','2020-02-10 08:20:31.976720'),('n66q8psx0o7bkq0klto5ykn37ubwmx8m','NmJjODJjZTQ4Nzk1ODQ2MWNkOWIzNDFiNDgwMDhlZTdiMWFjNTc1YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2V0ZuSm5ia1lCSHNWbkVYak9JNW9KSHBtQndFMlg4MVc0Y2stRW01UTFnU3VYWW4ybGRBV0praHdjb2luMWFoX0hiMFFSUlBEOUEybjhtemRFWXIyd2tnS2EtLXhNY3lFWXA4N211STlySHRYQWZkaVNWWmliVFRLZ0NoUTAiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA1OjAwOjA4LjU4MzczMCJ9fQ==','2020-02-16 04:00:09.587746'),('n677ajyjn846keqree280dhicns0a59t','M2VhYjhmM2UzZjM4YjUzNTJkZTNiNTdjOTE3OTExYjQ3ZjRkOGMyNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ5YVE2NUNPWE5CUHNUSThtTjcwOFVrOHBQMzItUDF4WG9rNXNvM3ZadEx6cEh1ZFpsMUhLd05md2QwUnFVeThXSkFDbmJseGxMem1QTS10YXRXcmJaTTBNWGpKM01uRFUwQkFuM2doQ3BPVlBjMENTMl9KY0QwY000YXNPTEkiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjQ1LjY3MDM5MCJ9fQ==','2020-01-27 10:58:45.673912'),('n67e5qwkyuvwy9ppfsqy4rbiwygivn9l','ZjFhMDYwY2E5NmE5NGFjNGQyOGJjYjBkMWFhN2U0Y2UwOWJlYzcyNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ5QzJzc2txSktVWnNjdXhtLXg0bHhqMDFiZDJraGRUaWtCallFNEpBMU16cjRVT1E1djEzcHlGLUNpS0xsQThONXlHQjNQZkVsS3RuVHNxVHNWb1puN01XbjRFam8zWmtZUjlzRGZSMlJOdk43eFI2Q0tNS1FDdDUweHBxUW8iLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM3OjUzLjg3MzgxMCJ9fQ==','2020-01-28 05:37:54.877238'),('n6alra3qbqwuop0ljktgaskibruznqb7','ODM4ZjUyYmE0OWJlMTU2MDU0NjVjYzFiNzQ1MGE1NTFkMjFkMGNkZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0UFpveUhPektsZEJlZW8tOHd5aG5TZ1ZjcWJvXzdyaWRsNDRyc0tpNWI3VzFQeDY3UWJnOV9fbU41ZG1RWUREaFhBa0ZXNUZzcXh3SEo5TkxiMUdUbVk4WXBNRFZOeGlyMFR3TTQ2WmZMYU1ScmRrcHpWVjJuUEVCX1ZkZTJIIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyNDozMy44MDcwMzUifX0=','2020-02-23 07:24:34.810637'),('n6dk5z233pphedy8txp7r3zvl0effo35','NTk0OTNlODBlYWI0ZTAxM2U3YTc3NzM2ZjhiODdjOWRhYjMwMjY3Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4dlg2S2poeUJ0RlNKT01KLTBidDBqMUZ3MjlnV0RHdHRrd3BPWXEtX3pkODVSMEVOX3R0TzFZeDlPRF8tRGIxc3NMYVpNLTBZRFdhWUNVbGN4N25xUVZmTTBMUjZObUJlbGdZTjJlMmZjbmoyTEZPTmxrXzkwcm5TR1VtdDFTIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMjowMC4zNTg4MjUifX0=','2020-02-23 07:12:01.359888'),('n782q7eqdsbb0kq1s3j3fd1vo8nsbbgy','YmI4ODk4YjBiMDE5YjUzYzk4MTA2MGYxNDNjOWJkNWJmZGQ0ZDkxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1Y2g1QU9hbmcyZ1FlelFZSXRqYzdPYTYtUm9QOENmT3l3NkhYRF81eHhFYldTNi1FU2RKVWJiSi1ydldTeTZsSDA5LVdpdVMtZzlwd2JQZTN0NTZxbEJidU5HTGxTRkoyRTNDU1RsXzlTSF9RZ0RmbGRsdFJSQkZsdTVtU2siLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjMxLjE0ODE5NCJ9fQ==','2020-02-17 12:00:32.149360'),('n7cpazlliesy3ridhkcwtgvsu9fkjm50','MWEyZWU4YjMxNTA3ODE4N2YzZjBmOTAxNGY5ZDUzMTY2NTUzOGQ5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxeXJ4ODBoQlY5RVNUQXVZVkJGTXhEWnEydEEwbk1xaWMxOEJCRGd1b1ZMempNV3FRMzlrQkpRX3RveXRCclQzZ21iSDdSMkNKel9hM1BXTDFqV2dnLUhHajl1UWFMMHo0ajVTUUdFSDhBU0VIcl9rNUpORzJDclRzZjZCcUkiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjQzOjM1LjU5ODU5NyJ9fQ==','2020-01-20 09:43:35.602018'),('n7rnpyovvryp27yoy7ro9qzt9hqq0kaj','YTdiMDQ0NThiOTY4Mjc1OTQ1YzUzMmRmYmMwMDBhOTEyZjllNmJkMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfcDVwVWZPSlBEN0NvYXAzMWVfUTRVUFBBM29qQ0lSLWVzUFljY21yLVIxRDRYQ1lWdWhMZE5CNzd3Y0IzN0NPY3JYVHdHdGxCNDdhZElaelVxaWFmZnR6T3RpTzQwVjI4ZG5RcmxBcmNtV3FaYTNGSmtZdHdGZUtBRUs5SWciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjI5LjMwOTE2NSJ9fQ==','2020-02-17 12:30:30.312585'),('n7ssl8gqs1vt2srll17zeo2fqxmvgcrs','YmIzNjM5MDBhZTZlMmQ1ZjMxOWUwY2ZiNmQ3NzkxMjZiYzdjYTM4Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI1VjBoU1V2Wi1FMjg2dVZMWVpaRzRBeEIzZ1AxeXhMdjhmYktEM0E3YWVPaVhZclBycVZtVWpkeUcxcExpemFsUExyeDBnUzQ1cVVHWkJjRTI5cTQwNXhCNVROeVlPajJ1REFHQ0NMbVdEQjBjY1ZIbC14b0EyR0ZvemF3TXciLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjA1LjUyMzM0MiJ9fQ==','2020-01-28 05:38:06.526845'),('n84ajrlwp8fr3gy61vd9rejzagvaafsf','NmViMzIwNTBhMzk4ZGMzYTlhYjA0YjMyMGE1N2Q3OWM0ZTgxYzZiNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3cVJ2dFNnbGFER08tZU00Z3h0WjF5M0xaVFVDdGRyb3phZkFCXzA3bnpEazZNeG53QzJWbzFPWEdJM2hVLTg5cnAyY1pyckRLUndrTXJ2ZDdrVTVkTGxxMW9PdnpLbVV4OHA1M3BMYXVVYXdnN2FPTEpRRU9HdUswQWM3VEkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI1OjUxLjc3MTY4OCJ9fQ==','2020-02-06 11:25:52.775220'),('n95paobgcf8acxzkw6m5m93jr29gb2aq','OGEwYjFjYWIxOGVjYjkyYjMyMTA0Yjk5ZDVkZTdjYmI1YjYzZDk4Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4SUNHaHZiT05mYUVySGJGR1FEOS1ULUZ3OFdGYXFYV1lfWjlZQzdETFFIZGN6R0JWV2JDRUlyMzZaREEwV0JTY3FmelBBeXZYV0tTWWpkelMzbW9FeUZFYno5TkpoWlZDRWFsMkZQVkx4TDhKTE9WeFFhLUJIWkphMHQ5cE5xIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMTozNy4wODU4MjcifX0=','2020-02-23 07:21:38.089259'),('n99ijbwqtf5i3sickd2mehlmwbmik8m1','YmI3ZWQwMjgxYWYwNjA1ZGVjYjRkZjBlMWI0NGVlZmMyNjJlMjYxMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItVlRyYzFsWU9sUUFEQllDOTJFdkRQR3Jub1cxM0FucHVDWnpEbHdGX0NST2JLd0w5Ujgza3BpZDRQTG1nak5MZnpEeTdBaGxLMkpkWFM3Nm12UzBaQlJ0ZnpDeWU0T2V4QXR2cnVjYkUxUzZXcHdJWlJyaWtSZWxaRTFWN28iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjU0LjY4NzE0MiJ9fQ==','2020-02-06 11:47:55.690500'),('nat0hwdfo7ho0cjpb1ch4ahmqc9jbut7','ZmEwZmI3MGFlZTMxZDRiZjA2MDA5ODIxMzE2Nzg2NDQ0YWEyMmQ5Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWQ2F5LVVPcGFrZHQzak0tY2tyaGxPWGdwQ083b1h5Rm0tUnZOYUFDc2lENFhyQXoxaGphaWF1Qi1CZ0ZZc2RvSGdXYlA2enloM3NqWjlwdmRHVFR1YnlwWW9mSUhmcTJJY3Y0alRobUpGT2FPRk9fbldpWmtTUzMxZ0ZRVkxVYWR6T1BYOFRFNnktZTkxOV9PX2dvZi10d1R4UEhpYWNBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNTowNDoxOC44ODc2MzYifX0=','2020-03-29 08:04:19.891154'),('nc1i2q67qqf4s7wodbu1lx055pttj823','ZWJmNjEzNDg4MjliNjA1NDJmNDhiOGM5NWI3NmE1MmNlYzZjMGVlMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwRjFFb3V6TXhFaFJkcWkxbjBueFhwYVZQZU9zUUFSaF9BdW5TcXZCb3ZPMUJscWQyZTFfUzRqZDdWUFk2NDVlODVodHAtNjQyalZWVHRMMFZQM0hnMm5lZVB5UTBoOVZkSXJ6cFprTkJEdUpRNlVxeS1ZZGZyRTBPMUdfbWMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjUzLjI0NzE4NCJ9fQ==','2020-02-06 11:50:54.250726'),('ncr618a3zcroagqd968ufij45zr48yu9','MmU3MmNlYjU4ZGVhYWZmZmQ1NDcwYTU2OTczNDA3MWI3ZTg2NDE2MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfX0JzLXhTd1FyVC0zOFh4SERFSkhHTHhNZkRZeTRnN3Z2YVlMTkxORTN0SmFqNGhuUkZKR2VFRkJQOUJZS2UtNUtSY0pTT0d6SWthdWJLZkVMZW40UkhHM1VRZHB6UXhIeTJfX2g0ZXh6Y2dmMlVhZU10YndHbHRmd2VNRGtEIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNjoyOS4zOTU4NzIifX0=','2020-02-23 07:06:30.399317'),('ndewt94qfraklb5z9j7sywba3rvcasg0','MmNiYmMwMTVlODEzMTkxYWJmM2VjYjgxN2E1OTc5ZGZkMWIyNWQyZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI2R3pmNXRhdXAtdkVkWDc4Q0tIOEVyQk95MlZYYlJfbkVudElnekV4bTZpeFhMTFFUWDdNWEpsdkhHaHdsVXV2cmEyaFhkWmV5aG9sNFNRWEZ0b2ROdDBvWktQQzVBaWszZGRhX29TT0FpVTVrNzFwY2RJOXVueWN1WnBHMFkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjMwLjU2MDAyMSJ9fQ==','2020-01-23 07:07:30.563469'),('nf800c90k6emsms16k4upequq32u5kdw','N2Y1ZDY4NGUwZDgxYmY4YTZhNTg3ODEzNzkyOWRkODUzMTEwNzJlMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfZHVXbzlHYUswaXlkVXNneks1SUxwTFFtVGhtUzBJX0hmSVYyYloxN2JGV2hZN3NBQWFCLWdtbkZndzNia1BKUzZzVWN4aGN2VEZCTnJsZks0c3JqbG1UMFdteWRpdjUya051cHZTUHUyaElCU05XWkt0aFNZVTNlYWI5OEkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjIzLjgxNjU3NSJ9fQ==','2020-02-17 11:30:24.820061'),('nga7jj0w3o8qz7fh1pqha7kbhrzbu2vz','YmY5NjI3Zjk0NzgwNjRiOGI0NDgyZTdmM2E4ZjQzMDk2YTM0ZDlhOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5NWVPMmhxc1lIc3NDeXlpZ1hJczN3RW83UFNidG45Z1o3aDZlQng3eURscDd2WVgwZkRESDVqT0hkM0w3bnBMVnhSRmdQWC1iVEswaW0zUm1EcThjcFRSM1ZSRFJjaGFnekx3bHY3RUg3ek9HYm9hVlpxWXU1c2NKRHhkamsiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjA1Ljk4NzA0MCJ9fQ==','2020-02-13 07:41:06.990532'),('ngu0mdaigevln970alowqlpneqrukf8j','ZTQxYzkwNzAxZjNjZWFkMzZmZTY1NWU0ZGZiODEzNTc1MmNlODU4Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3c2dVQ25vejZDSVloMU1Ibm9ndzFELUxCTFFPYUFVa2lfaThqeGRSRGx1ODJlYVVvUi1Lb29fdVo1a0ZwWmVZbVZZeEk3VnBFdTJwd1lLcThLX2otSEp0dnlLd0JqQlZ1RnJjXzU3bDZiNEhPTnI5MUFLeDVtX29kSkhEczUyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzoxNy4zNTc3MzEifX0=','2020-02-27 05:43:18.361181'),('nhqvwe7p3tzn8xz9apa7negt2tvkz5cc','MjAyNzk0NjYxYzUxYmE3NTZhMzRlNTA2NDNkNGFmNTQ0ZTlhNDUyODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0J3c1Vwd0JGdFdYblVIV2tWaXZ6Y2NnV0JsSXpFMC1fcGZsdUdEb1Rvd0d5SW9hMlNObnBIMERnTnN1d1FqbmNmOE43alpKMDF4ZGVNSTl4U2hxYWU5U01tQkdzaExuQk1ZbjYtcC1nTzdTV0c1Y1RTQ2FKOEhVNmF5dkU5SXRvIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMjo0My4yNTk3MDIifX0=','2020-03-10 06:12:44.262947'),('nioyqjxriukw9303mtgfr3hhplrdgyol','YzBmZTc5NDMyODc2Y2EyMDdiMTcwZjlkY2I2MjFjZmFlMTkzM2U3ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfeDJDWVVxSVpsa2ttTmxIbE00MkJjVWFaTzJFdnI3RHQxdEF2YTV6U0dxSkdWaTl6UWJTS004cXNLUVRfQnJnUVhLTm1IQm9wVEJMR0ZfS3NTcE1xZ0Iyc0YzTGo2Z0NtZXd1QVNtdE1NQkNQOUJYOUlVeXVsam9JQXNzZmlBIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDowMy43MjQ1MjcifX0=','2020-02-26 05:00:04.728211'),('nkdjv1959bl9q535zw5az7q4axh4mth3','MTg2MDBjZmE3Mzc0NTk3ODM1NmFiNGYwMmFhNmJhYTE1OWVhZTRmYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVampBdk5SR2RnejBfSllQOGtsYjQyQndxcl84ZnhfUTFqT2plQ3FxbDhpWUF4RE5NNWY5dWNNR2Zhczd3M053RGhyS2xqSzR3T2VNeVJOSDFkalllem1QeEx6MWdiUy1DZ0lpMDJ0RzBPMVBxZlduS091cldjVjQ0ZERqMFdjM1lZUE43eFNiX0xzWEEwcmFqV1Y1THlfSExHaVRMQ0pnIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDowNi42NjM1ODgifX0=','2020-02-26 05:00:07.666977'),('nm58hyqzwhiif30orwkdbnsb4tu2vkjp','MTExMjI1ZDA1ODIzNWQwYjMwNzIxMWI3MjZiZGQxZWViNmJlNmE3Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ3VWVtdFBXZWlHWlU1Wlp5YXIwN0RKVVhzZEpwNTMxUXNyaXFLOWFUMVhxSENQM3NJR1VySURYcUFLdGwxRHpuT25WSWxQSWhPRlIzdF9xakI1Smo5NzlCZ1hneXhnSEJXaHhnS05rM2EwemNwVGozdlRKZHZpcm9fTzQtZnMiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjE1LjA0ODIyNiJ9fQ==','2020-01-28 05:38:16.049300'),('nmeq5rvpzr5lkgaqgha010pndjy6ypp9','NDcxZTdkNWVkOTljMzM2MWUxODA3MzQ2ZGE3NmQyOTFjYTE4MmZiMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXM0NZUlRCUlRhTzlFMkRqWU5RZmR5bWU1S3JfVHpCR0ljU25Hcm8yTjRDWFhhMjctdnNyNlNHY0lzUjdUcURDcWxZc1BfbVpxNU1XMXYxaUxnRVJ0aWZDbFVuRVFaSXd2M3BxVVJMSFZGZEdQS0lQQk5LN0gxV1dOSHd5ZXcwLVQ4Wnp0SVZvc0tGWFo4bUtLNVo4bzNoOWtKZzUzUnRnIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDowMy40NTgzOTYifX0=','2020-02-26 07:30:04.461856'),('nmmje0lgi17itev80uuzgyoxnou2ay6o','MTgyY2E5MDZlNGQzZTdmZWQ2MTA1ZGFjMWUxMGM0M2U1NTc2YjgzYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6NUFkX2FSY0l6LVpzWlFkMXNMUmsyTkVaRFRPV2V4N3dqcXBzbkpOLW1QMHhveTlqWnVxWWJOSjF3NjNSUEdzSGFTcVR4SXVKRnpqWERobkpwYWJ0R19oeXI5RmhSRGd5WFVBWWx5amxmU1kwcTJkZERkWFJfSHR3bWtBTDAiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA3OjAwOjEwLjM2MDQ3OSJ9fQ==','2020-02-20 06:00:11.364055'),('npez985yi5antlb3zftzm5td8jfhmg1i','ZjkzYzM5Mzc3OGRjODZlNDk0YTQ1OWEyOTg3ZmQwYzBmNDkzNGQ4NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4R1lHNVZENWh4anBBbW9VbU5OY09YbXUxUnhWaUh3LW1IYnFoc1ExdmlRc1FGU0wyWnBwbXRRSnFCaDNDczJUeHFUaGN3RERUUFQ1SG5BMU9zSEw1UGVqcDByU1RiVUJmOTVZdVZ6VWFRUHZpbGJoTEpPVzB3SkRuVDdrOHMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjIzLjU4OTY2OSJ9fQ==','2020-02-06 11:26:24.593216'),('npjq16ij4w63h32gzj13sdmyaowxusls','M2U1NjE3ZWFlOGEwODc2ZjMxOWQ2YWQwNmQ5ZTgzNzg0NjNjNTI4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIySTExcDNTQTZ5Z1plTXI1c1hsVzhYQmtGRnNkUlNleG51NF9weGd0eGlPdWdSamdfbnRKdmduaXhSUUtybmFsZm9LTlR1azJXWUdndHRJX012SU9TMlRGQ3JJdk9Gb0c0ZE81ZW9TN3pOeFlLVzJfenVOMWgxWFhiQnA0V1UiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAwOjU3LjI3NzYyNCJ9fQ==','2020-02-02 06:00:58.278632'),('nqi6pg5s96gxn9mrf32duy3urfdt132z','OTA3ZjViZjJlZWFlZTRkNDFiYjgyMmM2MGI1YzZjMjczMTExZGUyOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfd1ZXRzJ2S1FKZUdhSHNtcVgxV1UwZmhKOTBpMV83cTRoUUExTVhQX2xzdF96VGpJVzlwVXQxM1F3Nnoya2RXay0yT0pXS2syc3FyZlUwRlVUeFRXazVnSkJGeC1lQ3h0OTc4aVhKTWdqQXh5VnpPOHhnZXZEZDduQnZSN3ciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU4OjA3LjI1NjQwNSJ9fQ==','2020-02-06 10:58:08.260110'),('nqub7rfvfn3k0mcjpcthqivhe1kqkcbz','N2M0ZmE5YmFkNWYyZjVjYTkzN2YzZWM3NzMzZDUwNmI0NzdmMDVlNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxSklZUkFheEJlZXpIdXFRNTRDeHpzU3VWb3V4bGRzZ1g1WWk4NXlDQVBqZDB4Y2F5dUk4N3JEQVBzOW5TMGZGTHVSd2pxZ3o4WEF0N3FZOVZSczA1ZlNhbkE4LWdvNk9BcjZ6elpmM2xqRXZuc3VhUGZicE0wT09XUUtwaTgiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjQyLjkzMTQwMiJ9fQ==','2020-01-23 07:11:42.934743'),('nrjyg3cvhtce8ambz8yeur8slhj4munx','MjIyY2FiNWNmOWQwMDExYjZmNmFjYTFlY2JiODRkODgxNmFlOTlkMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIta0JwdkhnMlMwOGZhTnVnYTF0SnBHZmUxRDJsWnpzMFVvRkFrRHNaLVJiRHZRY3dsT3lybmdPRE5LMm1mUnAxdUYxZ2tMT2ZBT3Y3b2ROYUdWRDVrZU15RURlVDlHZmlDOGRHb2UzeU9mY1FqaWoxZ085MVQxbFhkWkpocW8iLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjMwLjI3NzI2NyJ9fQ==','2020-01-30 06:08:31.283937'),('ns5ambh1344ct3omup2tgy48owx9xfan','NmY2MTkxYTlkNmQyNGM5MzIyNTNmYzk0ZWY1NjcyNzFhYzg1Y2E4NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5dEprRnQxWUpvRU9fZElFVTliQ0RQV1VSaUE5RU5xTjNIOU1JQTNuWmU2Y1FDRVFwdHVqQVBtZW90RnByS2h5d0pkei0zeERDdGc5UV9XQWJwNzJEcGFLZjdBLUwzM2pROTdlTXNmWVJmXzBxcTB5X1ZKX25pcl9XdVVZUjBvIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxNjo0OS4wNTU2MzIifX0=','2020-02-25 08:16:50.059057'),('nshstuo79kv630ifuwq9nbgrei6myvmv','YjBmNzdjODBkNTU5MTljZjBmNmFlNzc2NmRlYTlkZmZjOGMyOTMzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5SGRSYkx5cTdIaVpVMXJmVkw2VXdVUi1ENHM0Zm1RU2VERUhDeWxYUnNHakt5b182Ri1JaDRRTWpaTVh6b3VNMTdvaEtFNFlyWG5GNmVZYmdWY3pYOUNRcDkyNWFMNDVWZk0ydFlZZXpWODlaWVM4OGpXVHFpVlJaNEdlX3JlIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDo0MC4zNDA1MzQifX0=','2020-02-24 06:00:41.342086'),('nt5prjiedyor6zzfm0k0g8xcmbut5e1d','YjczOWIyYzdjNTdkNWM1ZTlmNjQ4OWM1NjNlNzgzZWYxY2I3OTU5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2YzR2bG5rOXlnTHBxRFJpSFotenBYZFN4TW9YZktIMWRzY2ljamdBWEIwTk94a191MlgySXdGOHVPZElQOElVXzBNUlMwUWNVNXpDSkhoUERZS21meG54cFg2RUMtbHpyRHVLWHAwZDhXelNHT00tdUtWZFRLbU1TaUhpRGsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA5OjQzLjEyOTI5OCJ9fQ==','2020-02-06 12:09:44.132607'),('nvncdh83z7rjpv3wsluhi6ms5hat7dbq','OWQ1NGM1NDIwN2E1ZjU4NzQ3YzkyNjNmNTgzNmE0ZDE0ZDYzODI2Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzZ1hCR0k2MFc0dGpNQ1JVNDRzTjR5TTBFTTZmV3J1YlJFREJfMy1NNk1zc2wtWmk2Nk9sYUFPRG55N1hBd0gzVl9WelVLM2k1M0RadzZQSktDNG42RkNMcjN0c2JfMnp5UDlzSE11YXZraWxrbVVGcXZRZ28yTUFuNlVXN3ciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjEyLjAyODY2OSJ9fQ==','2020-02-17 12:00:13.032230'),('nvv9y4zwqglqomdv44d8m89w37vezs1h','NjU2MjNmYzZmZmRmNjU5MWNkZmQ2OWM4ZmUxZTI0Njg0N2VhYWMwMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2eDRIYXdoMGNELW4ybnU0MHF0bnN5dW5va3JxMHZjbFJQdkV6bGJnYWdwLUJmMzREanZGbkxPdjJkdHN1Sk1SODdTbk5FMXN5VUpST0ZhTWEzdElDcGFqRXczSGNrby1peXZLWWxVZ3M0WUZTSFBKc2xUMExra2pUQlhaeXVVIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NToyMS41NzEzNDAifX0=','2020-03-05 10:55:22.574906'),('nxwunpz75wtreiv638gjrhaox5zg0ucl','MmY3Yzc3MDdiOGRmODc4YzA2MGZlZjQzODQ4NmQ0NDUyN2IzODZkYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4Y094bUZ3aHhtLWhVd1NuVndTVWV0c0tsM2lPUlh4a3pSWGR4a0VXc0ZIXy1vc1pnUGFueDZXLXpQVDYxUGxEeVZnMGtKSmduUFNIWEVLNkp1TUFOQmJtdm5JWFdZNG00YnIyM1FvdmwyUXRtbzl3akRBWjdycERkZzVZNVh2IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1NTo1Ny42NzU0NjgifX0=','2020-02-23 06:55:58.678884'),('ny1h3l75xsl9wj2so2o2lfkoqd7ilb3g','Mjk4NTRmYTM2ZTE3NTU3OWUxOGMzZmZiNGViZjMxN2E2ZTAzNjQyZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5eXZQZjU4TVBNTXhtVHFCdEgwVGtlZ1N6eHp1ZVMybmlQcGJnNGZuTVFGYWtSS0hjNUhjQU1PSHFISGo3MWdUVklyVWhqcE14SzNTWk9oQ1FTTmJEWG85cGlKQUFhQWJsSlJQTXExS2t6NUFFNWxnZmZnclNMZU5wWkhLSTAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjI4LjE2MDAwNCJ9fQ==','2020-02-17 11:00:29.163218'),('nz1dbkf5t059zuq7vcx9j8uv5v70fyrs','NTk2NzBiNmIxMGNlYzE2NmQ1ZjcxY2E0Y2RmNzU3ZDVlNzhhNDg4Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxTTZlS0hYRkRFY2x4Vk9aZG9hQkhmSEg3RXgzSnRteUc3eEplSmYtdmZaSjE4dFBhQzE2eDljbmN5RnNwWkpJODZKYzM3VmFRblc3QmVZeTJjOXEyLXBhUXNvSUc5T0plRERObGxmMzdlSzdoZEVvUDRKd25MSmQ2Rk1nNWciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjI0LjE4OTU1OCJ9fQ==','2020-02-06 11:23:25.193165'),('o0kwhbtauo0s7ysp3l0adbn9zldz30o2','ZGZkNjE0ZDI1ODY5ZDA4NWU2ZDdhNTg4NTQzZjc2OTQwNGYwMzE5MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1QU1QbklBNG1VZGgwX1FvNFBZZEVOOEJoMDdDOGFmc1FDQlpKVVlFRUlkdElrLTZqUzlwbWZ4NjNhR3RzTmZBUXAwc2lNYWF3LWo1eE5XRmpzMll1OFBldHZDQTNJMTFrVi1teWdZV0FYbkVmbjZHTzRSSVNHOHpTTzlHWG8iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjEzLjcwNTgxNyJ9fQ==','2020-01-23 07:15:13.712239'),('o3aj6p3r38xytrigjvra64p3zim3sivr','ZThhYmJmZjY4M2NiODdlODY0Nzk3OWEyNTljMTYyMjViMzhiZGZjYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIycFRDeENvSkVtMDlDNDJiUDhXQzlKOUg2X28wa2YzaVpyeVpiOFZPTl90bGxUQl9tU2h6RVNlR2hxX2FTVThfLUdfX2lKdnJuS0hCV3d5WmRVZm8walVBNDVFdnJ4VUJnOEZ5ZnN6MktRMy1IQi01SDg3dFBhcWcxcVBUdjdmIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjoyNS44NTc5MjQifX0=','2020-02-25 07:12:26.880317'),('o4bvms5tu7mzhjy63xyqmfk9appsdqn1','MzY5YTIwOTVlNzRlODc0MDZkNDNhNzU4ZGY4NjI4MGJkZDEyMTBmZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5LUJiWFpsSXRTRkVPV3MwV0h5cGhhNFBoZXlmdEhHY21sZHI2UlJPQzNfSTliWTBUbE1pRXpEZGdGY1M4VktodWNHWjhEVzlIQ0psLU01bFZRZkt5cFFSMFRENWRyUWJXc2lObzh6RmE3cVU1QzhabVdoSDJ5Mk5KS00wYzQiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjAwLjYyOTcyOSJ9fQ==','2020-02-10 08:00:01.633271'),('o5669mgos0z7g5ysh4qnln36kesm77ls','ZDQ4YTg5ZGNkYWJiNDI1NmVmMDU0MjY1OGNkNGIzZjdhMTMyYjYwZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4aFBrWGJ3dWNiMVR1bkVSR25SRmdPVm1TNmlTOC1nNXRwZEY2blhtUjU2WFdxbW90ak44WUlxUU9pa3dqWFpBLUNzTHpBYzRxWDNTNVRnSW4tS1R5YkpYMEVTazVxVzdOaEFGVnl1LU4wem5sZVUydzEtUVI3eW1pQmFxVEEiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ5OjQ1LjI1NDM3OSJ9fQ==','2020-02-18 05:49:46.257831'),('o5khnax6rp28ke0yia2d2bo6hw6nnsdf','ZjdmNzA1MmNkMWEzM2Y4ZWI5MDYzNjYxY2M5MTgwOTk3OTMxOGUzYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI5ZEhtdE1TYmppUkZfel8wVFd4ZTlJWFd2ZGhqeWM4a0V1RGp4aHpNOGs5RDFBQjBTSnk5MHZ4Sml4aU5USWxfX3lkQk50eHZvckVYUnUzRE00OXdrVGJrcEM0dnV2N2RrMkJ2VGJmWmNfbU9Zb09lTEJkTGFKNEdGREZsdEUiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjE2LjM4MzUwMSJ9fQ==','2020-01-23 07:15:16.386987'),('o67u499t36tqjk1x9s9kpmffptd9rh2d','NDM0ZjhhZDQxNTUzODhmNGU4OGZjMjczYTM5OWVkZDU5NmE3NDFlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIwSUYzRGh6QXg2VzVwZWEwY0UzLXBMWWdIOVVoWkpjMnowNngxSWs5MHdXWEFVdFhiN2JZWGtWc2UwRnIyTkZ3VURSazdxSkFCZE82TWlKb0RmV21MM28wdHM5Szk2d2h4b0xYeHVCcXpaSzBmYm1IdkRHOUE0X3p0X1djMGciLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ2OjU5LjM5OTE5OCJ9fQ==','2020-01-26 05:46:59.402635'),('o7tiwz84ziaak0l0305pma3a7tl1a9u1','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-06-28 10:33:59.648389'),('o7xd2sqnl2na8790aju0u9nrjti9zyf1','NWFjMTViZjQ0OTI1YjMzMjM0MDQwYTQ5ZjRhMGM2Y2Y2MDcwZGU1MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5UE12RTJxMjI3a2ludHBYd1k2RDJrd2lIelhqei13ZnhNdmNmYkJhdUxtNkNuamxyS1VPeFBxTlY2dUpza19NRDlQaEZSU1MxbHl0N2hrNTdsZEw1Q0tGMHo3ODRnU1YxM2RPY2NCbWhXNi0wSHRaQnVnclRySGtnbmJTWm8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjIxLjkwNDgwNSJ9fQ==','2020-02-17 12:20:22.910556'),('o90mguc7dz157pe9a6c8xctq997cfmfa','OGE1ZDFkOTkyYWU0N2UzNjhkZjA5NTQ5ODJlNjFlYjgyMTJhYmMwNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0M3REMmNOMGxtbWc4cktTTFZVQmlLTlpVWC02cTMzSUJrZGM4Z0JMand2WUtBZ05ZYjZSTjRjaFczVUNiWmh0OEgtWUdpRjlUV0NhU3ZVVjJxNXhfR3IzRnZtcXFWdVhMYXNxUGZiS1VjWkZKV0NsODJWbkxzaVk3SDRGZ2MiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjM1LjUwMTU5MyJ9fQ==','2020-01-23 07:15:35.505229'),('o9sc581ocpv0vcvz3ctcxn5u0spassv0','NzdlYTA3YmIwY2Y0NzZhNGYzYzUwYjA4ZjUxYmRiMDk0MWY3MmZlNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3aTMyMm55eTlteVRQQ3BLbU5RS2tOX0paN0dhd2FObERhQzFiMkYtc3VTMlJLWVFOZ2RRblJPWWZoM3NjRl91WHNHNXBVMDBWVm9sWWw3aFpzMGljWTVNVzNZUVBlWER0WVJtQkRmSGJscUx4WXdXLWc1eERIOUlhQ3ZTdFUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjAzLjUyOTY5OCJ9fQ==','2020-02-06 12:20:04.533171'),('ocifqgmu3hnywed3j90o8e38sv723v4v','ZmM5NzEzMTZmMzhiMTcxMzdhN2IxODgyM2VkY2UyNTMyYWQyODY0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0J6cFpzdGZpWmNiNE1kRS1jaU9TWlRicld5YWJtN3ozY3Q2eUQ0RFVmdEhxSjY0WWNMWVg4ZEJidjk4TU5qTk05S1JtMnQxbkhWUC1nam1lbEt0VG8yWHlnZGFWMkVRVElVa0JnenJ5RkRxRXg3cGstZGp1NENkZ1RPbjRCSzZBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzozMS44NTQ5NjMifX0=','2020-03-11 10:33:32.856252'),('odvz08ad8dm9s3syif1ohssnzeis1g5v','ZDcxYjNjMWY0YmNjNmY4Mjk2NmE5OTIxZjE5YjU2M2Q5YjE1OWY0NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1RHRuaHV6bXMyMi1yZTRGb1N1cG1lQndNZ0ljeGRjU3VXS1BzVUFaN3ZuU3pBSXhiRXZjZzRiN0RGZGEwS0ZWNHhWVlNkbDFOM2syMGNhbU1WcmlFVnYtdmFVZU9BY2VkTy1vS25DLVlpbTJpeFEzeFNMdHpmUnJicFdmWWciLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUwOjAwLjA1MTMwNCJ9fQ==','2020-01-21 05:50:00.054747'),('oev0hegg9q0poeyhq66vqtstd429l02l','ZTBkMTk0OTNiNzAzMGM3ZDQ3YzAyNWRjMzg3ODE2MWIyY2ExMDlhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItcW83cThPV1pKQUpuTjhaUThaeE5jc21yaFAwaFpyUU1jMGlmR1VmVV9SV0NScHhiYlFrTnppUlZCUWxZMDlmZ0NZQmhrekJieHE5TjNZNWROenpYRTBPd21JWmVkc3lMLUFzMVdvLUg2QnZlc0E4VzUteTFnY1lvckZRZmFSIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOTozMy45NTU0NjQifX0=','2020-02-26 04:39:34.958852'),('ofjynycleen2zms0yh9xtbamx9dxtkd2','NTlmNTFlOGQwMmIxNzljNTI5OWYwNDQ1MWRjYWNkNDYxMmUwOWRlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUJ4MmREcXpDRW1GbzlERHgyb3gtRUdybFo2cE1UazJCem82aDR1VU16V0Z4SEJYS2NOcnNueXk0b0NKYzkyb0ZHRzc3R3dZUi0wNl91aDU4b3hDRWNQOW9nd2tadFdmSlpSUTFLQVdoYlBIdml4V2JjM3NBSTJmMXZrRWVXZyIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MDMuOTc0OTgyIn19','2020-01-29 06:18:04.978613'),('oh9a0o18yz8yyfju3ig7hg1lvsmxtglq','YzI2NmQ1MjNkNzVmNjdjOWI4ODgzOWZjNmI5N2JjMDZjY2MxOTgwMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI5Wk1FejdOa3pOU040X2p2QnNLX05odDBPbV9QNW9iZ3d4d1c0aGxPclpWUWNBTF9XVTBXdlQxbEVyYnc0VnpOMUdnNmM3NzdaSVdidnFRSVdvNERRdGZobUV2b3dMZ2Jha0pweDhjVHl6UEJSNHV0NmpVeTZqSWUzZjVoYnciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjMzLjI0NDQ0NSJ9fQ==','2020-01-23 07:11:33.247895'),('oipxjtpqyr1gpcyy2m0nqk7zjlht1mnq','M2Y5NzAzNjlhZmExNGZmYjhiNDI3NzkwN2QwNzUzMGY1OTMxM2FkODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzbUZ1aW8yMkw4V1FNYmVsb0hOVkdXaFJLUVdnM1E4NmJlZ3h4T3FON3ZsSTJJQWZ2MDFSXzY1QlUxRDdoT0d2VV9wbUo1dER2NXpvSENiQzF3Q3lBU2luSXlESF95YUctRDJJaEl2TVlCZkZfUFE3ZzNzaXdJV21hQTNmYTgiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjU3Ljg3NDc4NiJ9fQ==','2020-02-13 08:10:58.878279'),('oknbnxvr1bn4r1tt4qvoa8eb6l0jsasa','NmJmYmU5OWIxOGY1NzU5MDk5Zjk1MmJmODZiNDk3MDlkNTUwZTQ4Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzRXRNZkNEeURNak1YYTBMRDJKeGpydEdOTlNHcEhtbUJmUjg2WVB4c1JyLXFTVGFqU2lsR01NT3B5dmVpbXNLTVBDdEZXNEVCT215MV9MaExzRFREWmtnRTJBVUNlcWEyT3o1Yy05NkFVa3ppRDF0QzdVOXhUaGhKMW1iNk1GIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMDozMi45MDY3ODQifX0=','2020-02-23 07:20:33.910015'),('om14yybdha7ata6se5i7tplexohvhp1e','MzE5MTgwNWY2NGE4ZTIyYmRlYWRhNTJmYzM0ZDU2YWU3MTVmOGFjNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I1RXJUZngzQTB5VHJrUVZ2dTk1MWM1blhGWXFMMHVyeXlZQlp4WXk4TE90RTdHWlFWZ2piMzg0UUdBZzI5aVUzTnF1NjFqOHVTdE41YU4xVzBQTWVfWVEwRTcxS0k5dEpLUnhURk5laWZmODlVU1Fka1VWSUt1TmVZaWQxYUEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjAzLjY5ODgzNSJ9fQ==','2020-02-10 08:00:04.702259'),('omcq0h3676td3kvhqzcg7lxgl5luagpa','ZTY3ZmM5YTJlZWQwNWMzMDlkMzJhMjcyOTY1MjhlNjg0YjQwNTVlNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWbTRaT3plcnZYT2ZEbDUtTDIwWWg2MnozTzZCWmEySERjUnI0cHlGQ2pIenRidEJMVzN4Q19Oa0tHYkh5b3dGVGM5ZTFqQjJEWlV3Ykxrd1JNWDRlQkk5SkRKZjJOZHQ4Ymd1VGNZenlrYkwxTms2ZTBXWFkxUUltYi04b0Z1TDJScVV3M2xlcGtfdG1hamVvLWlGdTV1cUZ6NlRNU1JnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1MTo0NS40Nzg2MTQifX0=','2020-03-29 06:51:46.481906'),('on02ltrpe1hw23rxg5i6edt2vo1ww1nf','ODk2OTdjNDZjOWE2YWU1MzQxMmZiNzkwNGRiYmQ0YzNlZWQwMGZhODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXS2ZoNFphMFd1TF9WQ3pseVF4Z0xFUy1rT2twV3RkQm5CUkVJT2NOdWxfRU9tNmoyMHRnczA3YnJYWFZEc2ZibjY0TVphaW9QZ0FLNUVsand6N2c0MFlIRk9MUUZPN21lMDBlTURMeWt2MkhfeDNjVHJwMmhzQnlJbFJxbHdOU0VHMk1TTndkc1lPeG5XcURQT0NFcGt5c203Qmpfd1dnIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMzowOS4yNTI4NjcifX0=','2020-02-25 07:13:10.256473'),('oo21jsbn5l6ru9ii1s1kt3afaq1mtyk8','NmE2Y2YzN2Q3ZDQzMGQ5NjY1MjA3OWFlZTVlZGZjMDMzNWViY2VjOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzcno4ckljY3dTYTFWakExLVNDRUhOcmtDVVZ5VUZlVlhsTVplclM5TkxyWVNsSmlYUTBDX3JTS083X3FkM1BsUUlfcG1mZzNFT2lURXdqT0Vua1UzbzdfR1hrZmJXYkpsTWQzMkF4RmJPMXVaMHYtcFMxOUduUWJybTdHWjAiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjM5LjU3Mzc4NCJ9fQ==','2020-01-23 07:11:39.577154'),('oopoyhh09ribqa2nqfgfaynjykypwfr6','MGFhMzJkYzk3N2VhNWI1NjA1MzAxN2JlMTcxNjlmMjQyMGE1ZmMwMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3V19FNHREelRodUJwcjV3SktBSkVDQkZ5WGZwRFNGU2lYWG9DWjZjeFhrZllyRG1lNjV5RnNhR1FWWmpZeGluTGJ6YXJFUnhOR2sxcDBSZlYyRnF4b3UyRDBDZXJTRzV2Nm5MVGt2MWNzRnZFWWFXTGFjTFFDZk9jMnRtbXZqIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMzoyMy4zOTkyODMifX0=','2020-02-23 07:03:24.402824'),('or2f8ri9iioy6vwxg95fbb1aitlvuerj','ODEwNTc3ODEzMTM0MmMwMzA0ZDc5OTlhZTMwZTFhZWFmMjhjYjNhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMyWTRUYlR1MWR2N0lvdEgwaXpNSUFCdWZndnM3emozdGt6c3dMLWVDcENfazd4dk1XZkNpZE1hakxOdjJ3THJ5SkE4WERRdHRjMWVab0YyQ3FVTkJLWkxrbnJrVGQ3NUszVGk5RERXWHM3VmJ1X21EWFRwWUxrT1VBNENMbWFQOGFYeG9PU3ZXcWwzYjZvd0VBYW5ZQzB4ZmZGVVZ0ZDdRIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNzo0NS4xMjQzNzQifX0=','2020-04-21 07:07:46.127829'),('ortg4n9xzvfisvbzeaprzxy5paf2oezs','ZTYzMzcxMzYyMjlhZjE2MGYwODVlZGZjMTg3YThkMzdjYWY1MTVkZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5VmJtTHNRSE0tbTdtMTZSSmJmYV9VMTNySUJvcnFLTFVXVEhLN0ozNkVVX1lFZ1ZiY2xlSnJ6cFhVMElSajNQNTZhVzl1dXZJdnhPN3ZBNHdVSGZidzI0ZzRpQXp3dEhiSEp6RU5NRHpZY1VNSWZuLVN2THBIbllHcXFsVE9BIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNDowMC4yNDcxNDAifX0=','2020-02-23 07:04:01.250660'),('ot8qiwtah39ftx669s3wjyhr0r4lbiex','MmYyNDhkOTIwYzI3MjZhMGFiODIwMzZiOGU2NzYwMDgyNWJjYjdiMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItOFQ4emFtcTNrYmZ6c3BtaHNTUjIzNGstMVF6ZDBfdmZlZV9VSXdzcEQ1b1V3eEE4WTFDTWZlTWs2RDZQZFdmaV9pbTdKNWIxZEJDdEdJMkhncGhGWjU3T2pRZG1rbUtDTURGbTB1aVJCN2Z6b090TXJ3eFBwcjc0Q3NCVWsiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA5OjEwLjA4MjY1MyJ9fQ==','2020-01-30 06:09:11.086039'),('otwaqsmpsnb4ic0ke1e0e2ez58y24cgw','ZThhN2E5ZWI0MGZlY2FmNTFiNmI2ZTIwNTRkZjVkMDJjMGZmNWNmNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4QThxV0RLZFNxeTRNTGlGRUFXcEhjbGpXbmNIbFp2blVlUmsta0RpczNsNzJKX0RvOWR2Z1lmSHVITmFXdTRkRWpseDd3bkpSay1rV3hDZlhYQVNVWU9fM2k3MW81d25FS05ZV1MzNWZkLXJvRmh1U29hNEhSUHNrclIxSVUiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjQxLjI1OTMwMSJ9fQ==','2020-02-16 03:59:42.261436'),('ouw25n42i73du35ngtfg6j1poq9ae0l6','OTE2NjE5YTMyYzM3MTg0N2Y1NmZkM2RiZDk1ZGMxOTdlMTcwNjU5OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfSDNXeENnTFJMZ1RIR3Y0QWVKa2xDWU9uOUQ2ZlQwV09ITTVpNVVjeU54dnA5NjJ0M3R4U3BqRTFXWkQzVGRqcUtBdW55bXZTV3ZtbWhtTV96MmgtbVIwUmxRcGtKWk02OTVjdXMxMlkyRGtaUGdYb0tFbDMwS1IxREdFdDAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU4OjA5Ljg4NjAxNyJ9fQ==','2020-02-06 10:58:10.887755'),('ouxyrbnfseau2zl799ypoah864a6n6dr','NWI2YjUzMDA5ZWQwOGEwY2M2MjYwMjA4NTk5ZTQ5YTQzZDhiYzZlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1VzlNd2l2RXdQNHBoOXhCdHd5LWhfenRhV0o3QUpwUng2N0tYcjgyOHFHS1V6Z3FBWVpQYUh2NlRkVHZCRmRuWHpVN0xzZDhwWERsYXVXdklhRHlnNXNLN1lFRTloWFBxcXM1Z1ltM09idllYRnZxQlRwTXpBazl0Y1BOXzQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjEzLjU3MzQyMSJ9fQ==','2020-02-06 11:48:14.576862'),('ov21yj85y44q8jtiqjj941fdt8i6jubw','OGVkZWRlOWVkOWU5N2FiYzdlMjcxNzU0YTZkOTI0MDhlNjQ4MGRhMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3NDN0Ujd5WExnaFNtRzRZallScHp5U3RfWk55N3UyVl95TXc2cEg1ZkJpVmJ5Z0ctX0s5VkZyQnB0eXdvc2piRVFaalpueEhqcVQ0aGVzMFlRT2d4MEhHMF94aTBVVDVHX0VzbkxDdURJa2lZZlFlakI5ZFdySW4yRndkdHciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjM4LjQ2MzM1MyJ9fQ==','2020-02-17 12:10:39.467049'),('ov9elvrby92yhr75t89e0pmhbtqrelic','MjcyZjYwOTg5Y2FmMjJkMDYwOWI2YTVlMmIyYWFhYTY0YjI2MDQ5Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxOVYwYXNEdjBmT01ZTE5sZ3hzUjdFeUdDYkt6S2tBUzFvRkxucld0SEVNY3VYaHRTZVZmaUtVUnE0WG92TnIybmFJUTV1aDNHQW44RnZZcm1uVWFGVVp2RTJTd3MwZURua1lYWG1kallNdUF3clpXaWNCcEtMMXhJWWpMeXciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjIzLjczNTUwMyJ9fQ==','2020-02-17 12:10:24.738943'),('ovr4syaa3vg4crzibxinkjp7moucs4ze','ODVhYTg0NTRhZGQ2Y2RhNzZmZDVhYjJkY2ZlOTAwN2Y1MDE2ZGMwYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0U2wzdnJVQ3RtWG5yNERNM2txa0NZc0xOck53SXZrM1ozMDQ1WHAxUDFvZHNYUG1fNTA2dXBfay16V0M2LU5VQnhMeWtuOXZhbEpzVTZDY2VLOEZjMFZmZnRuRmtHMHpqWGRKTUhQVkxuNVRnbEszbjZOcTM4NkdaVkJoek5KIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozMjo1NC4zOTgwMDAifX0=','2020-02-27 07:32:55.399108'),('ox380698gxo7deewm73caexb6m2y63xj','MDNhY2Y5NGI5YTdlNDc2YjA2OGNhZWFkNTZjN2ExNjJhZTc5M2IyNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3YUlXNmhHU0xYbVNEMXEyQUtpTUZERk9vdjhEbUZoQ1ZiY08wUXdJVldJeS14amxUbGlzdVpSOU15UkFYV1Rhc2ZwY1hLYXlzVjVIakIxUzcwaUM3OVlpX0haMFRocmFmMmNnRkNSX0luZW13cWg4ZVJyZXNuN0EyMXJKeFVnIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo0OToxMy44ODA5MjgifX0=','2020-02-23 06:49:14.884436'),('oz1iuw3ymuvcwq99ulpbe558xh4heiyn','MmY1OGUwMjM2OWM2YWU3ZWNkOTE4OTFkMTg1MTY4NWQwN2ZmZmRiMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1TkFCQzh2c0xIZHZqUEJaclVGa2ZzWEpOSWgzQVJPUEFSRVFZRTZKSDUxMjBSRExCYUpobmtJd29lSDVydGw2NWp3U1BrOF9hYnMtNlpETHlpWElBY3M0UDQxZWIyZEd3TmlkMHJhU21fOGxkZjZfX0JKN2JOMDVQNjRMcGsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjU4LjE4NjE1NyJ9fQ==','2020-02-06 12:19:59.189761'),('oz5oxjye2p9johvvygbcnd79yvv3f090','NTA2M2M0NGU3OWYzMmM3M2ViZDQ5Yjc0ODgyNjQzYTA5N2VjMjAzNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXOXBLWFRUU3VDSU9CT1RkdGRCbE9ibkdYT2EtTlhqdkJFMWlhTW5mYmNVNVEwLVp3UzJZZXNTQXRsajVQOWFUNE8tU18wT3dhMHhTQXN2TmdOTWlBQ0Jwb29aOTRVUGFWUW5LQ0FyV3UzVVRadWdWbENFQ0hBU0pGSDdrZUpIT3N4aG1EMTlWXzFTbi05Nlo4VGNRTkNXZFpTSXVsald3IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1NzowOS43NTA3NTAifX0=','2020-02-23 06:57:10.754209'),('ozn1c88nh5c1hrxanji48o9uef2vhxrp','ZDA3OTI0NGUzYTU3Yzc4ODYxY2YxYTE4MzcxZDExN2U3NWY2YTYyNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzZWlZVld4SzZLMmdzNDNDb1B2dkdybjN3eHBjY3pCaVViaGNSUmZWdVdwR3ViWURzeWo2UHZ2TWJNRjJGUDFESThyc2tNUHNnZGo3U05mbHJJWUFReG43UG1FelFSVkk4MzNaR3hiaC12WWh1TzNEd1NXcFNMZW9nMV9mLW9FIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MDozNy4wNzg1NzgifX0=','2020-02-27 07:40:38.081893'),('ozx8xujelgw4k2rppa2b6t4lvbkj2nvj','MzFjZDQ5M2JiYWQ3Nzg5NjRlOWJkZWI4YzVlODQxZWNmY2Y4ZjkyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1THBlM1FHOXdFN3ljTmhpamJUQjB1MzVoRVRBcmVrZW1xX1NLaWFhbHdRZl90YmFwUkZfajBUSU9WT3FqXy1RMUtXZWV1YlZqNE44QWJMTlBzTzVkTkd6SlBHdFM3Wjlyb0E5SW53SmtmWVpOd0wtZ1VKSm9hS1Y1eVZCR2JEIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjozNjo0NS44NjMxNzAifX0=','2020-02-24 05:36:46.866684'),('p0o9gc9k3r6v686ep85a1r2wj1t5hhkx','MWFiNDZkYjVlNGI2YWUxMzkyNjcwODkwNzIwYTYxOTFmNThiOGNlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0N2hTSUJ3UGZweUp0Z2NwUTVjSkJId016M3FJblppSXpIcWlEbF9rMUh5VC1EcnZRcEpSZlpUZHVGeV9DVk5nWHlobjFLTUFGb0tZaGZITFRMV29qRGFtN2ROOG84QVdBbE1RaVV5OGtpa0ZtbnhmcXhQREkxeUhUcUZDNUpkIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDozMC44Mjg2ODMifX0=','2020-02-26 05:00:31.830583'),('p0ut0ne30xq6m4gqfzc3zdati04pqigd','ZjU3ODllZDNhMjdhZDdiMGNkMThjM2I5OGY5ZDYwOGUzY2EwYzVjMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6YWZsNnpiUzJ4V284NmMwNDE3c2VGSTlvYzlXTmUyLV92ZDdRdldZeTgtODFKLWVZbmJIZGRySGNpYzVxOTh6U1V4UVh6TnUwRHpEMnB1NkZ3aTlPWUJyMzB0UFcwVDlqS25yTTc2cUVQa2xxS2lwMnpORzJ4NzVWOWtJX0EiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ5OjEwLjgyNDk1MiJ9fQ==','2020-02-18 05:49:11.827352'),('p1g7uop9s7uwj6xhlfg08160vz30aij7','NGY3MmI3ZjEwOTY2NzNlMTY5ODgzYjgzN2ZlOTBjYmVjZDQ5YzY3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYMWV4NVQ2d21UMjhSREl2YVNVQl9LeURNZWNWNXZQUGtEQVlnd3VvazI0cnY5M2M2d0dNTXd4MVBsOHpvcmRnWmxkTzUtbmpuQWcwaWNMUGxuT2k3czh0VWx0cG56bGh1enI1S0ZUeHp3UHJRbTdrTzk2ZlRkTzBSeDNTZnoxdGNLQ3ZyNnhZSTJkZy1EYzFUdUx3dWszVHJ2SFFHNF9BIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzo1MS45NzU1MzkifX0=','2020-03-11 10:33:52.979148'),('p1s3mhjy9h80h72yciqoioso9g63ux5d','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-02-24 05:39:07.246350'),('p259nvtgaoryjil1z408s8hfcu19cbc4','MDAzOTdmYjcwNDRkOWFkODliNTZhNGViZGY3NGFmZjgxMDFiNjZmMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYUHZvdkkwYXhJdXZwODhzaEpFcUVOSDktaVNPZTA4MjBnY29uRnlsZm02RVZQMGxmbGp6TGdWdjFHX2ZJa1dpb2x1YzlsaTdmVUFiakM4NWpDOHRmNXBxdWpzbWlQd2FTVktiYVctNzhnRkFFRmtjaVRoallGSlFWZVpmM2g3MW9tN2FRQWEtbi1QYTNpN1ZMQWhuSzVVZHVLSnU0bFF3IiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzoxMS4yNjIwMjMifX0=','2020-03-11 10:33:12.263700'),('p34hhmx5rgygdapiu3aof5i4pd1pjl9i','M2JmYzhhYThiM2FhZDM2YjcyMDEyZmFkNzc3OWI5OWZjY2NhYWQ1MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1Z21vSHRxUHdYZW5rbFI4cVZpX1l1R3kwWmxKNTdaX2xybndpTXp1Tk5VOGd1d2Z5cVBzdHgzSXRYY3ptVWoyZkx2dWl2YnBCbFgwakxyYVBLX3BHY3hkUmlmZFVEalQ3Si1WdmZPMFM5eDZUX0ZVMmJMd2JjQmZiRTFQMjQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjA0Ljk5OTQwNCJ9fQ==','2020-02-06 12:05:06.002987'),('p3tpca02a4h51cf7gjttms8kushevnf7','MWQ5OWI1MDlkMzAxNGRmNzQwMmFmNzk3Njc0YjkxM2IxZTA2NGI3Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6b1Via2hra3pEZDVDTjE1V0ViWFpmZGhqMFE4emJTUF9jZ25pQXBxa1ZSN0pheTAzTjRUb09mY2pMM0VvVmFyTFNOWVpFMW5YTU0yQkt2VmtUSXNWSjNVSDc3Um02eDI1dk1FTk1FVUVpU0VQTHlfdVlVdWlmX2lXSFpYZzBEIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0Nzo1Mi40MzMxMTQifX0=','2020-02-24 05:47:53.436672'),('p4d3g4powb9yhnrrjxu8xlkuwfekqo5c','NzI4ZTRkMTAzZWU1Zjk5N2NjY2YyYTcyOTc1MDVhNTNiMDU5ZDNlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0alRxdkRvRE1hSVNFa2thQnBwc3k1MC13dVFwNmtnRGRaT2E1ZVEzSm9rbUtEM1ctaFFXOWtXQjcya2VEV1pnOU80YlB6LVk0d1hnOURWM2ljOHhrOEJvMXNfYVN2NjJiaVhrUk90ZHZDOFpKcG1TNnhuTUlPU1hkTHZnS0UiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjE4LjE4MTAzNSJ9fQ==','2020-02-17 10:50:19.184554'),('p4dkis0j8acwjo6ociu6axd275y7yrcd','N2IzZGU5NGMzYjU5Y2RkMGVjZmM2MjZlODEzYjdlMTNlMzExMzNmMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzUS1YSEJ1WWdna1NKQXc0WW9acks4YXc5SlEwSWdsNEVWUmcySkRiZTh2Yl9DMHk4ZlZoV2F2TDZaUWNBUWJsU3l3RUcxTFJjeWF5Um9SZy1KVEVtSkllbHFtMFRvaGk1RFFld1paN2l2QlJHeDFWSnZwVDZGRGJmZFhDOUkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjE2LjUwMzE3MyJ9fQ==','2020-02-06 11:50:17.504724'),('p4ovgrhkbfhubbtnorahl52lli6lvu5y','YTZjOThmNGJjMzlmYmNhZjg3MjNmNzUwNTZkZTg2MDdjOTE4MGI2NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5c1czWWo1YmdhOThXWnFWVklNbDJwZDJ4Q1hqWXpTWXhINXRxRkpMWWl6TDRmcncxb2xGWVZneXUyemFHdFJIZ0NVNVpHRkhXOTdKdEJNaXhKTnd0MHg1Um44T08yMzhVQ2JtNGdPVXJ2NXZuRUVSTy01NXMzM1NiTEpIRU0iLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjU3OjM1LjQzNzY5NyJ9fQ==','2020-02-18 05:57:36.439638'),('p4th8fmragayfja7lzowz5lctc66lrq1','MThhZTY3YmViMmIwNTk4Zjg2ODBhOTZhMjEwYzM1NjQyNjFiNjc4Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4c2IwdGd1WjVjME11Z2loZHRDbS1ZSjA3ZzgtbXVoQXVFVk5sMTBWbmczbjdFZVlFY2lUaXJMVXdKWFlOR2g2REVIb01pY2FEWlEyeVpObm83aGZST2RaV2tkRkNraXo0N29ha2FVWHR2aTRUZ0dRNklEbk1QNm9ETTIyZmciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDEwOjAwOjQ0LjIxNzM2MSJ9fQ==','2020-02-20 09:00:45.225242'),('p5tmnc9vk5eua1u5jyzxi3p6eg4mmrja','MjRhM2I1YmRiNmQ1YWE4ZmUyY2I2MWI0ZTc1OTM0YjFjYzljMDgwNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2SjA4MHpZNXdldU03c3ZhWldWWVZLUTFFWWQ0dUc3UF9PU1U4M2V0MkZyQ1BxMS1ySHVZQ3gwRW5nUFVZdGJYZ1AzcDNURmZLVTNtNjVSa1AzWHFpWDIwSjNxRkhxZ0MzS0pUVlNKQlhSUWdtV0VqTlN1RlVYcmVmUERMTk5EIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOToxNi4wNjkxNDgifX0=','2020-02-26 04:39:17.074474'),('p6hlrhb76dbv1isy3y51vn8tnr5iczk7','YmMwNjYyMmRmN2ZjZWJmZTE1Yjg4Yjg3ZDU1MTJkNDY3MmJjYTYwNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0NVc4OHlKRTk2VFJfaHpHWnFHZ2Y5VkthN29rU2wyeTRKeWVBZWhVZlF6b1NJY2NPSllaQmhqZWdyYkVCY3pzbElSRlpWMksyaktCQmg0Mkw1a1UzZzRHd3YxS1hHRlJVblA0YUNIcjZGcG50WEFsU1prTWJ0bURsSFhhTF9IIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDozMC4zNjU3OTAifX0=','2020-02-24 06:00:31.368934'),('p7evheu77ws5p2nlst7ts8413r0uyvin','OGRhYWU1N2RiYmRhYWVhMmM3MmJkNWFmNmM4OTVhMmY3YTRlNDk0YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3QXBfZnBjTVB1TFJkU2hiX0prbEtBa0lVeEE2cVlWZ2hSUWJRWEJmTWFTYlVNcHB6bDRPX0RIV1NZYk1naTJTdXZpWGdlbkJrLUZOTHZaSnhkUjFia1lBX2c2UGh0Q2R4aDZETVhVQ3BIQXdxQnRCaHUyMUNWVTVQVjhvTmsiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ1OjI4LjAzMzY2MCJ9fQ==','2020-02-18 05:45:29.035188'),('pbekmtaypj0xwtni0giscv570896mzmr','ZTVjZDVlNmE4M2RjYWJiZGVhYmJmNTBhOWM1ZWEyYzk0MDFjZjNkMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2NGx4VkFFTEQ0U0M2clItNG96S0ttWFUtOHlJVmV6OHFGZWFhUVlfbUowVjBhQTVNdVR2eTd6RUhZaHVKUFBHUHVWYngwRlRacnJkbWVNNnMtdXRVaUJZMlZza0w1dEJUQWFUNlhvSG1vcUNHMlBFSkFuREhjdUZJRUF6dWMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjEyLjM1NTk1MSJ9fQ==','2020-02-06 12:05:13.359376'),('pcoa7ah592ad4kx4iqp86u3yjeolu7sb','MzNmOTlhMDgzY2EzMzgyMjdiNmJjY2RiNzJlOTJiNTgwNjI3ODZkNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwQXloTUZLRFRRcmlIWldiQUloTzZXQVoyU2gtWnBQakxReUIwanc4a2dHSUt6WVpoTzRkXzM4eG41ODExUlRZZWN4OGFTYlNWRVFmSGh6Q09RUUN5LUJBcGxsTC1uMjZGcDVxdVpFdmJOOHIzeTBOeFgzWTBlck9rMTZ0MGgzIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjoyOS4yODI5NDYifX0=','2020-02-25 07:12:30.286114'),('pfoujii0fv8xsghkc639y5p7jwpdf9tx','YjVhMjUwNzEzYjI3ODYyZmQ4NTY3ODNlYjM0Yjg2ODRjNTBjNGY3OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5X0NZVlp2WWlqVUhtUU56Tzh4S2xNU3Q2VV9EUEpmZ3VRREdVR283ZC1oVjZwOUpucnVVWDZGcHZNY2dpckxBMWc4eW50TWdpODd1Q2lkYVdMQjJxeHAxMWFqVEdFVEpXT19aYm9qXzlfVWw2ZERCdnRIQ1d6WUhFcjlPWGciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjEyLjE3MTA0OSJ9fQ==','2020-02-17 11:40:13.174548'),('pge49mc91enmf3xn1mg6g2q9ghxqls9s','YjQ0Njg3NGIwOWYwZTM0YmI0OGFmYTY0MDAyYmI0ZjBmMWU2ZDQ1YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0T0JtYTR2Z1EtVDM4VmdTcmZ1R2Z1c1YtMXFDb01YRnhFaldWWkE1QXROOHJZdjg1YXF1WDItcTR6dGpzSmFNaWR3Q1Vic096ZDFBdXJCRlRqc1djR21zbWotSDBydHZTTEhES1ZoZEEybUUtNXJTbVVCUklCdVRucG1fR0hrIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDoyOC4xMTA2MzMifX0=','2020-02-24 06:00:29.112196'),('pgehcoxz99incmq9a1wdm9ly11dyqxkv','ZDAwMjA2ZGNlZmM2YWZkMjM3ODRkNjg0Y2RmY2I3ZTI5Yzc1MjQ4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5ZVZEZTZhUXhVNjhVbmNULVJ4ZmdZRi1iTTEzLUpWanRPMUNMcXdOb1dORkp2SW9XbXc0c3BrQzZqWVE1T050TjROcVQxU3ExbHZCN2pIRGJpT2E0c2M5NG9waHp4Uy1iVWhOcmFsOFl3WEg0bkxOcEFUVzZYbG9WQm1HeGsiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjU3OjE4LjIyMjA2MiJ9fQ==','2020-02-18 05:57:19.225664'),('pgml4kiqb2ha4qzl4b1i32imriyi194e','ODA1ODdiMzJkMGZmNWQ4NTJjYWUwYzAxOTVhYWQ2MGU1ZDM4NmE5ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0N1lSUm9KU1AwTVJvMzdSZ3QtOTJkZW92c2F5SzVJSi1hNThtNkNaNWIxQnRpbXN6X3B2d3h3RjhRemxTb29FOFV0UE4xMHBYSHE2LVZFRGdfalVfazJfVXMzT3huZF82YUI5cEdsUVlGRWRvbjFZTmpELWgzNWxBUmk0MEptIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NToyOC42MDYxMTYifX0=','2020-03-05 10:55:29.609754'),('pgwms72jfhwj5q9ukeowphm2ucdkpw4d','MGFhZDkwZGQ4ZjY1NmI1NTRhOTRkMDkxMjczNGU1YzhmNmRiMzQyZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItX05uT2Q0N2JnYnJMU1NDb3JKQWFERGJJT3c0QmJuNER6czRaT2pJVjVJNkV0c19xSmRXeXF6ME9hOVg3a0hVbEpLa25LZGZZVXd1UE9uUVhGWDJkVXljQnVSc2dVZF9VQ3VHaFplU2hUd1VnRXBKX0YzczhFd3FhOVhqblRYIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzowMS44Nzc2NjUifX0=','2020-02-27 05:43:02.881039'),('ph8qps0xdl700cy0xf9zw94szhyuf46g','OWZiMmYxMWExM2JiZmY1Y2M0NzQxMTA2MTE4MmFkNjU1NWExZTZlNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5eWlPXzF0SWNhY2x4aGdZYktUSFdnOUQ4YWFQYjhEVVVqdnBJZGw3cnBYUlo4TjhUNWN6Nmo2MEhHVjZ2UlU5a29VNklCWWNFeDRXZnpvMTYzQ1hERm40cWNabWNuTUxfRWctd3pnSWFKWVFUUmFaNWkwV0haV2xZMHRzMlUiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjQwLjg1NjQ2NiJ9fQ==','2020-02-09 06:50:41.859893'),('phbhn0vcyxnk3e8choccta93dw8vjj75','N2JiOTAyNGM5OWYzMzU0MTg0N2I1Y2MwNzE0YTEyNDcwYzg3ODgxYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3QWdGSG03WS1MUEN1anYwWFMzbGZpb21FZTlxYjRubkNlMW9CejdOQ1NVa3dtbUpFTmlfMWR0VTVSQlVuWkh1SS1URnlCZjctZkJSNUxUSUhISTdSV1VYTlRlc0ZyejQyR0dKT2ZYU016MUJBWUlxcUVVazRoVGFRU212MmciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjQzLjk2MzQwNSJ9fQ==','2020-02-17 11:40:44.966875'),('pk8blnx2msmcv9sv7jdqp6nhx1ytb7iy','ZDRmMGE0OWQ1OGM5YmQ5Mjc0MTBhMTU2MDQ2OTdjNWNkZGE3NmFjMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIyb1JEeG5QUk1PR19YdEkyc3lRSUVib1ZkVDRWejVnSm5yWTUwZ0Fwei1pU3RwbllvdFRpcUZTRW5ZRkJjU05tNW1NWHByVnhGZjBuT2dvMGxVOUxoRWZndzNDSEdrWFBqNmxGV09MVnRJRjg4aU5hRVZFRi1KMHB6ai10S0kiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjU5LjI3ODEyOCJ9fQ==','2020-01-23 07:11:59.279846'),('pk9tqhv1tdp59y44gnza334v8q071p1q','YjhjMDdkZTliZTYwYTg4N2RlZmI1Y2Q4NGE1ODA5MDJmOGY2MjYxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ5TXhqZHZUdDJDNlNUczVvWVR6ckUzVG01ejdNMVJ3VGplWkh2TDNoMmZ6WnpLTWo4T252RWlqc0pKNzBCck9NTFVweXNLTVlIb3ZiZEtfdE0tU1FMSEJBNElhdGMzWjhFLXJCUUhDQXlFUmtDTlBFVVBsT3g0TldQWFVReWciLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjM4LjMyNzU5MCJ9fQ==','2020-01-30 06:08:39.331127'),('pkcyu8pcpve81id5uq4c661ayu1xt9v6','ZTdiYjUwNzM2MTkyYmE5Y2FiMTUzOGMzOWZiZjUzODQyZGQwY2E4Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzNHJNTXBhcmJndVUweWo4ZXNXZG10RzVwWTBQVU9lclBURnp4TnJ6a3JSbTlQVDAxVWczaFFVNHk2ekNNeWw1Qm94RXVxRnIwcGVoeEM3WHFmc2ZxWGxHQVZvcWJNWk85aDNFQnlWcl9mUmdyOHh1ZlhkSU9mZFRnejZqN1BOIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxNzoyMC4yMjY1ODUifX0=','2020-02-25 07:17:21.243464'),('pkf2q0kuavup0glt8yo44nt3sm5p2c7h','YzAyNjFjZjY2ZGQxNzcyMWYxNGYxZWVhOGRjODM4Mjc5YmM4MTI5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI4aEFzYXZLaHNyajN0RlBzNGstQUc4VzdNa0VRX3RhYVRKc1NBc3J3Q25uWmNhVEU4S2dmblpuNjlHQmdCNTZNdllGaVlMeERYYnoxdTE2ckpoSjFoc1JkdzYwN29qTU9pMU15NHJEcW5GeHdOZGtkLUVSS3BpZmh1eV9PVnciLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ2OjQ2LjY4ODQ4NiJ9fQ==','2020-01-26 05:46:46.691889'),('pl695llbbz5q57o2ytn0dretk4zxvs1b','M2RmNmMyZjBjNmZhODQ0NTQ1OWQzMDY5NzBhYTcwYjg0MDg2ZGRlNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVTE9DcjFZeHFpcnJ0TjBBT3dSQzNaZ2NsblNwLXZ3a0lBQjJaSTAzTTUyWm1JaG5USEI2eTVOcGR0V3pVZEcxbmV5dWhTUVJUdDU0bm1PRGIxaVVlOTk0UUFQd0U2SGpocVpPUk1YeHV0MUFDX2FJR3FITG5BVk9uQ1FRTXQ0WlNRbEtfU2RSOGlmbG1NNm9Ld0lrUWk4dW5QbjVnRkNRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1NzoyMy44NjM0NjUifX0=','2020-03-29 06:57:24.866936'),('plso3ql1yszw2thiivwondbucwsg4pqk','NmQ0NDExYzk3NTNjMWIxYzM0NjEwZWNhM2Q2NjQzZDAyZDk3MjA4Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxX19JQ1haOEplSEQxNTlYZzdlNlhUYm91dEVMT0dBUnh4eXRMb1h2VHlhcFpNSE95bm1JSFRjV2pjQnI4VFNPYzdXYkNVMHlYSjZNMXBkX0hhYlNsVlRPN2JQVmlYOGgtX1BPMW5uS1M0eUxGZWFoR3phRzNpbTl0S3N0b3MiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjEzOjU1LjA4MzUwOSJ9fQ==','2020-02-20 07:13:56.087063'),('plxe1rf51scrr7wefbjanyaqxywqaq6u','YTBlZTBmOTAzYmI5ZmE0NjM5NDE1YjQwNjA3M2E1NzFmMmUxOTJlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYQjJTa0pSNFhYeGZsOGthblA1cU9Yb1lQMUYyc2xNeFA5QnkwdUlzMmJxd2h3UG95cFRDcV9KbmJEbWV6SzdTa0xKYS1pMS1FU3pILXBEamFFN3lmckxsQm9POXNtTmE2ZER4clNsbXN2a0JqTVN0NHlBZUMwb3NHcU5JVXZ6SDJZQWpBVU5NN0hyZGl2bmRrZEs5Wlh3MEtGcllxMUJ3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozNzoxNS4xODY1NzEifX0=','2020-03-29 05:37:16.190023'),('pmgv9k3irg4gjvyfjo02meae8t6krsn2','ZTgyNjUyN2E0MTM2ZWE2YzQzMzZjYjgyNWI2ODlkY2QwYjQzY2ZhMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5SFZsSlptQzZlZThRbFd4RzVvZ2otVzdpaXB1TTFTNXFCd0w5YTc4YWJZODVSMlZMRDVDcUZxQVB2VmY3XzNLRGJra0JEanY0a0pXZFRMekU2M3dNS3FUWncyTmtCVV9WS2k4U2V3dkcwSVRnLUlSNGl6a1Ytd0VJM2RFWHRXIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOTozNy4zNTI1NTIifX0=','2020-02-26 04:39:38.355933'),('pospl6fcw9l6eo88suk5xs7uqy21fu5g','NzViYjM3YzE3ZjIyOTkxNTViMmYzZDZkOTQyNWM2YzhjYjMwYzcxYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItbXRKakVvR19TZVZIN0puamRrRzFHMVhQNW0xQThUeER5Wm12V01pdkJZQ3BCeHpCYkxYZWpiN2JZZUliVUtaZndtVmxBcTc4Q3RXRlpCS0paaW9DOFVmRm9nUkFrY3JyQXVyaTJJcTdscm5SRzFJaDhfZUZNUm5rTGVrTHMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjQ0LjUwOTA0MCJ9fQ==','2020-02-17 11:00:45.512425'),('pq7rrpt2jbbr5ioavzyybfellwrqyzjk','ODE5ZGEzZTJkZDk1ODVjY2FlMmU5MjUxNmExMmQxMGIxMmYzNWQzMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVQWNPVFZsNzV6b3I2ZFJ4SHlDem91TkpxYjRlN2J5MVRhNkYwUW42SzVZd1A1RkJRVER6dVhHWXJFM29CVDBNdHJoMXZIWlBUM2E4dlFCd0hUR1BUMVhjVUJZN1BUNkdGTmNFTmVkeWRVMVk2eXk0c0VQUVV6TU5CLVQtM2JzV09ZdW5VaUxfTDVsTmZnVUF2a0JIMEZhTlNmQkwycFpRIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMjozNS42NTA1MjAifX0=','2020-03-10 06:12:36.654184'),('pr2zz3uduivd792iqiqjvzzwn39mzcka','YjYxZWMwNzIwMjk5MTQ2NzlkM2E5NzY1NTg5NjI1ZTJmMGQyMDEzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2d0NDc0t1LTNJbHB1cTVWLURSSzJ2OEk4cHBhVUszMFZ6X2pNbUhKcDhNUGxFai1jXzd5dzNyNC15SXdXeEF5eXBUYllqS25tOVM3RUpNcEN5YmFoVFFnMHhRT3hTeFh2ZnpVUG16MlZXR096SDVYallvTWlGdFlrMGdZa2xkIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzoyNi4zMDk4MDMifX0=','2020-02-27 05:43:27.312324'),('ptauz58jtzedeqrer6x2x1z2tz6a6jmv','YzE2MGVkODdhM2M0Yzg3OTYwNmVmODQ0NjY3N2E5YjYxNmEyYjllMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5ZC1zOHpZb0tQdmZEYzN6M1IweW13NVFJUEIzeGNBU0VMZEIzYUhKdWM0ZmNxSFRjay1NUmhTeXNIc3IxQW01ZlBjeVRhRnRESkdob21tbjBMTWx3RWhyc24waXZIMlBzTktpdVpBRmpSWUxpWk1vdG1yalZjbG04OVJ4V3MiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjI4LjI4OTg5MyJ9fQ==','2020-02-17 12:10:29.293341'),('ptfpffliue8eulz7iy44fet7px8e6isa','OTRkYzIwODg0ZGQ3OGUwMDNhOGMxZmYxODJhY2FmODgyMzcyNmRlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0eTQyVUM1UllVQnhLaWdMeXZtRzZBUzBDSVduNFB3WTNrQUhaaW0xb01EMVRRMFhRQU9zUmxud1I3cTJteGhMWFROV3FCanNOWVNCd19wY0JIbUxOZVJGRkJEdHQ5cUpWRHBEVHBlQTNPeFJsQjlYcWMydlN0QXl2eXVhbEEiLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjUwLjYzMzMzMiJ9fQ==','2020-01-21 05:51:50.636963'),('ptpiwc2x2f6puedye141n3deqvvqe58p','MGYyOTVkMmFjNGQ0ODc4NjNlODE1YjNlNzg4MTkwYTM4ZjkxZDhlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWS1FUUjFaaEFNdkM2WS1faWlWTDBUdlZqUlQ1Y2xiUnRUVlJBQ1V3QUxLUWQycGpTVVJyYTUyZnp4NGRKeVFGdjUwYmtfMDE0anRZVHVzVmNJZHBJUl9QWF9VbGFocFNGbFJjZ1FVbHc1SnRCM1JKOFJFN3R2RUFta3UyRUJFLUFWcFl0ZTFhUTlUa1ppWWJyUHlyNnI5bE1EUGpRdy1RIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjozNy41NDM4NDYifX0=','2020-03-29 05:32:38.544957'),('ptz502l1ljuf2m43viu2ucktnq9jdzdo','M2EyYjBiMTQwY2UwNDkxYWJkMDY2N2Y4NWE2NDI4OTg2YTE1ZDIxZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3Nm94bFlnTTFXd2Rva2ZBZ0xmUGFxUVhPdUMwRzNuTWZ2czJBbmtERzNEdVE1QTBaVTZTVVN2RHFMcUstZlV1WXN1b2lvNVVnY2FnYTdTT2kydEVKVFB4Y05WeTg5X2VMN2R0WFRnM0c4MjN5VkFjc2VtQVB0VzkwdXlsUlUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjEyLjc1MDE2MCJ9fQ==','2020-02-17 11:20:13.753747'),('putt4qk3enq0xad89a9wcjh2vz5nfhyp','MjVjYzgzYmY2YzM4MjY1ZWE0NmYxZjIwZWY2NThiZTE1ZWRmYTM5Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5Z2xqRExMa3lqemR3X3FzY3pDdlRDdWg4eE5BZk9PbDB4Mm1nSVRoZjFzQUpEeGlPRXA2N3h4bFNMcWlla2hDeFZ2bnZxWTMyYjYzU0Fld0dlZFQ4WXlUU0c1blRNN3BkQzNUdGZ2dEhKN2xVamdRcnE1b0Q3M0FTSF9Bc1kiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA4OjMzLjAzNTgyOCJ9fQ==','2020-02-06 12:08:34.039451'),('pvq2bpak4r6hzwr3qyxbynjbvy9yvzt6','ZDIyMWNhMDY4ZTJmMmJhMGRhYzYyOGU4MzBlNGZkYjM3ZGRlYzE3NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0dGhsanNUdVZoUjBLdVVwSjBMdF9BMFdQdnJPbjVUbVJGMWgtRlBiMmwtUkF2YjBvRmJFNm9MV3dGUWpwb1pkY2hGak1CNFJmYTFKR1QwS3B6SFAwZVRqM0laUG5pRTF4a1Jqb2w1VHFBTWJrV3dBZkRYM2k3RFdpbEVRR3puIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1MDozNy4wMDU2ODEifX0=','2020-02-23 06:50:38.009214'),('pxeqf0tj14wxe97pnqaocqhimt3terj8','Y2Q4MzRjM2MxYTU1NzBlODNhYjQ5MTZlOTNjNWY3ZTY2NTE1M2VjMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2NHA4dGtfT1FrWkZlemRmZlREeG1ES1RnZmwydDhMT1pnaXB1VkdvMm9MeGpPZjJfa1hsVWJISUZOaFBVckZBSU9UaENEY3VkY0RDQTBMQWYwNzlWaTJzSWZQMWhNZzVMS1RQaWg2STUycjFIV1U3ZFJjNGJMekNSQTVpOVEiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjIzOjQxLjkzMjMxMCJ9fQ==','2020-02-20 07:23:42.935647'),('pxna7w3bdl7ktft3z1pf7b6ijnz7b3sv','ZWI2ZjAzMzUwNGFjMjM4OTc2OTA2OTUxMWFjNjYyOTViNjc4ZTgxMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItblpJUEEyU1VUMThmcTRGNjd0djVTZkRRVzN6eF82N0pGTHpXSmFyeUdKa09rekdjYUlvYUd2aXMtb2pweHNqanI2Z0wtU1FZekFCbzhlMUdqUDkzTEJQbXdTcUpieVcweFdIaWpBTWM1MW1UdFp5am5nWjhhamN2VGotRVkiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU5OjA0Ljg2Njg5OCJ9fQ==','2020-01-27 10:59:04.868198'),('pxz438zviv0mgnrlgnkqb8hmrslwcx66','YjQxNTRkYjg0ZjM4YWU4ZjkzNjMwZWE4OGI0ZmViNzRjNWVjOTVlOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3Q3RMYVhwZTF3NjZNMXhBU05TeTdWN1FxcVBLdGgyc3RZY3QxZ2Rucl84amFySGVpRzFqNEs2X2Z1eGhET202V2RkeVpHV3YxN0syNHkwZW04QmN4NzhyYmJTUkdMZzR5elg0U3lrRFpLWl9OWjdUU1pSMVhNanBLSmxzVnlYIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMToxNi4xMTQzODcifX0=','2020-02-23 07:11:17.118050'),('pyabck8shzau9wqri23v88kfohykbizo','MzhmZDQ5OTA4ZDI0NmY2ZjcyZDVmNjI5OWYzYjc1NGFmMmUzYzgwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Izdlo2SGxtQnVCckxpVnVKYWUtWWdwcHp6a1YzUTlpYjlHX0hJdzVpZXNoUGMyNGRaT2doVDkxYjE3b1Fiak83UzY2c3lDN1ZBMGd6MnF2RzVEUDRLb1FXMFpxc0VEUVA5V3Y2R2x4UmFzTWEwaGROeTRnYmNPMXUwVnM0aXciLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjMyLjY4MDA0OCJ9fQ==','2020-02-09 06:17:33.683742'),('q1dxettgstd0iw6kzr5v62zlcq8sqylu','NzI0MTRiNDcyZjJiMDg4MGYyMTFmY2ZlNDIxNmJjMWRhNjIwOWM4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0Q2Jna1NrSDRhblU1VWhDNEFJc0xKT0YtdVdCaHA3cjlCUXpZNFVHMjVWdXNvVGhxNk1JSFNGWXRfWDlfSUtDSXM2Mndtb01SVzlscXBoOEtMM0U5VDJsdW5mY1JqaEVfY0piU3F6Nlg2YUZkZ2gtN3BNb1BfdlA4cklMZEE3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozMTowNS40MDg0NDEifX0=','2020-02-27 07:31:06.409441'),('q244963ckc3s38ox8n07vu1mu3v4is3p','MzQwOTA5YzQxZTZmNDk2NTA0MGU2M2ExMGI4YzJkY2U5NDliNDUxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ6WWc1MWxaSzg0eWJvUmxsRXl3c09uVTNaTGtsaFlkSkFNRE1ZUFFfeVdveVIxUDIyWU1BdnFBeTRjVFpCTl9sQ0FCTWdGcThrOHROSjF4S0piTkFMUlFnY2tfMVdjZEtGR2tzcVY1T1VJcTFrSGhSU09GRDkxZWZNVFo3eEkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjM4LjMxODcxMyJ9fQ==','2020-01-23 05:26:38.322195'),('q2786gei1cujtcp9y0v78bhl7mmzdchm','YTQyOGU0NjZkMzA4ZWNmZDg5MjViZjZjNjMwOWZlNzVjMTBkZWJiZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2VnNPT1liWmRWeW83TFNka0xSdW0taFNzUnJWSy1rcGY2bS1wNTl3Z1IyLXBjN2tCTmxPV1dFSzdyMlBpVm4ycEN2U3ozRUFVcXVUR21nbFAzNzRBUkJNX3h0VlpNQXhnTUNpWGRoWlRQaUs0NkpFRFRFTFFlZ0d0NlphUHciLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE2OjU3LjgxMjQxMiJ9fQ==','2020-02-03 06:16:58.815869'),('q3yxnp9tq6swe7agq2idgsmaejfypr3v','ZjA4MTQ3ZGI5NzFjY2I4YWI3NTE2OWJlNzcwMjE3ZDE1MzM4ZmRkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwTGFPLTNwT2NOQnRvai0xZldhTEhDeG41R3JNODROcWVDTVBFcjd6Y3BvamZLVUtLM3dENmpjWktJalh4QlZCUEtZRzJocERnMk9kdVhIdEZOVFF3amtKYVlKWHQyRW1aOWFDUTZmbXE0Y1VzUEl3Z2VrSmNRUmNUYzJ3Y1EiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjQ4LjY0NjI1NyJ9fQ==','2020-02-03 06:17:49.649691'),('q4eg8tuymlbozn9r3vloli8v7012jkqe','MWFiZGFmMDgzN2Y4MTJiYWRhNGIzN2Q4ZTU3ZDU4YWU2N2QyYWEyYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItbzgwcDFQZXNKX1VkOTBlU0VZUmVEa3ZXV1IzdW9rN2w3a0p6N29DNU5LMWkxM3BIWXFtR3hLQ0tsT1FxcVR1T3ppVUlaejB4VC1wQU8wcnJ0Ukg0S2J0MHZUTkhfZnVjVl80SEFWYXFaY0FzTWxra0xtcWZhR0JMckVreDAiLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA4OjU2OjIyLjk0MTY4MCJ9fQ==','2020-02-19 07:56:23.945510'),('q5cqbph6vxbngjipvs7vbz80uu3n2tsw','YTM5ZTUyNTI4ZGY1MzVlYmM4NDhiZjhhODljYWQwOTE1NjA3NmQ5Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5WmQ0dkYxQXJXaDNPWnpFejdLTGZTMDhKLVhiQkxITUxfcFFKSmlIeHNxOTlweUs2bU84aWtpYVNFRWhaZm40Mnhfa2d3YzZ2ZEowTFhfb0RuczNwVmpNc2E1MlZBOENlYl9jUnlrbWp1RklGcDNoX3NVc2xBLXdUVzBzREkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjM2LjgwODkyNSJ9fQ==','2020-02-10 07:50:37.812532'),('q68pjj6g6s62u742gldezl3ysmtnubw8','NzM5NmIxZTNkMDZlOWNkNmYyZTc0M2IzMTI3OGQzNDI5YmZkZDEyZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzZ2haSlJxNkJuWmg2ZmtubnhPUkFfcjBxRWRGSWNRN25jeHA2MVFtUXlLMVBMWjNaeUtwalpoWWJwY0l0YUd1WlVWTFdpbVFkbVZVUFF6aEd1d004VWFMaHpGX25xWmZDcHJPc091VlBqbzhjTkR2Qm5UTU9xQ3RQM3VXQXFGIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1MTo1MS45MTgwMDQifX0=','2020-02-23 06:51:52.921756'),('q7bl8r3pd5x6j85yivyrnpm8379xffvp','NTE4NWI5ZTRlOGNiOTQ5ZDY5ZTM0MzkzMDA4MDcwOTkwODkwNjZjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYUVQ5Y1dwdlQ0SmdvcXhfTk1FYVpxQ1ByWnNZSVpXdXRWb3QxSjNZWTh0MGFsSlU5bWR6Q1loNXM1M0d2VE5SOUUydHNhQzk4dXZRQm01ZXJvVkF6bkFNeWc3ZEEzb3ZJSy0tSUFwZDRoaDNBcG5xZFkzS2JzOXFWOEN2bm9razRhMnoxRkw2YmRCOFpGazY2U3Zob3FrTGN5NGZBVkFRIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDowNS41ODc1NjQifX0=','2020-02-26 07:30:06.590979'),('q7qkaoy47v78fd467u9bzceryi1o79hi','ZDFlNjkyNDRlMDFmYTExMTFiZGZkMjAzZTVlYzkzMmFiM2FhNmQ2Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3aXFDSjdNR1ZGVkxUZ2hTSlJtOU5CTHhuY1FvNkVaeEc2M2hWY0JES1ZVcW9RUHJSYWtmVVU3dUU5Y1ZMNmhGWk05NzR3ajQxaE9MNEV2ZTFSYTE2Zno1V1hTWHRaSkhSa2pFV3hfVVY1Z1p3ZzBDUjJDb1lJNzZJNXZSSGMiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE4OjM0LjcyNzYxMCJ9fQ==','2020-02-20 07:18:35.731047'),('q920xtd6818733hostgt3yha2e4mmgqc','NWI2MjBiM2VkN2Y2YmI1YjlhMmY1Njg0YjEyNzFjOWMxNjQ2ZDgwMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1dkJaaUxSdVNaTU91Qi0zVks5VEhFQjdIczNQME5tY3dZQ1g3NW5SYmExUHJXclNiYVZaeW1qb3lOZ2NSVHMyUl9XV2dDdDZaZmlKei1FTzBVUFQ3b2MyLUYwM2RKMmN5Z3FwM2VoTHVDc2dIblN0MEw5R0pvZ0lFVEJmcVUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjQyLjQ3MTczMiJ9fQ==','2020-02-06 12:20:43.475291'),('q9apvy0isxhyx07nxr6uvz3v3zncxn2d','Zjg1ZjNkMTkxZGU2NDFiMzMzZDA1ZTIzMTg0YmQ1ZTJmOWQ2Yjg1NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6SlVRYkF0U1JmQ0pCZlRKdEx1dmdnTDBEeGFSSkxxM05kblkzeWlHSmxoNGlaN3owLUFJWE9sTFpzM3dvUTlJWWZvUi1fR3BZXzN5UUl5SWlicFIzblJjUnEyaVJySGJmbXJpd1dlVVVYWEluZTF0dVJDUl9DX1J4OFVyTFUiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjU1LjA2OTU2OSJ9fQ==','2020-02-03 06:17:56.072988'),('q9enh3ezjev14stox6l68i6krcfwd5x7','MDU5MDUxZDdmZjdkNGU1Yzk3YjZmZDk2NjYyZmIwODUwMjQzNTIyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXUWU0d1Rkdkh6dlJNdFFQQWZyb3BuVHF6TlU0LTdOVHBfMGZNTk94WWlPSFFBelV1aGs4VE0tS3IzYU9WQXE4MnIzeWdydkZrM2l1U0ZjM0swaFNTQnMyMGdPYWVBMUFEeFZkMnRlQU5DeDh3YnBXTThfWW9qWVVVNDNaMUtTUzZjbURSWWV1Vkg0U0puRWN5amlYbnlnYjg0TzMwc3pnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMTo0My43NTgwMDYifX0=','2020-03-29 05:31:44.761535'),('q9sgf4lcs89kvpv7r0t91u39pdhn4v62','MmQwMzk0NjI4NjY5ODk4NGM3Njk0NGEyYmU4OWEzYmFjNDQ4YmE0Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4NUNvQjNoYmxUYWhpdkY5eERZMnk1QWRqS3kyMDNnMEwtRjY4RXdacXBSNzVTU0NWU1d2ckJPcDdjcTdqX05iTm1fQnp0bmx1Nk9BVzNJampSQlVkZkFpS21TallyZDg4VThmT0EtQ0NwZzI5dm5IcE10TS0weDJDMkZxTzQiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjAwLjQyNzExNSJ9fQ==','2020-02-06 11:48:01.430592'),('qa6v27hfyvn30id6wxyuv9tjlsyl4f5l','YmJlZDQwNGIxZWZhNWU0MzcwMmMzOWMxNzQxMGQzMDA0ZGI1YTlkZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0amIzbFhDbkoya1QtRWhvMmlqLVpoM2t4WTlOc0c3b3dGQ1k4cjctOVhhdm55ODUwbnNtNVgyQnJfSVp4TGs2ZzItVElKT1NHM1Q5UG9vSHJjOExxWU9LNjRYYXcxTGJpR212LVVKdjF6Y0VUTXlFc3cyUV9QVTJnNTdrbzAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjIzLjY5MTIzNSJ9fQ==','2020-02-17 10:50:24.694831'),('qagluim0xvpw8niwqvh6xm9vqx313mp5','ZjgyN2Y0NjE3YjYwMTFmYTE5YjdkMGMyZTcwMGI0NzZiMDMyMTExYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3NzNMUERvcDJNdWh2UWliSmFfV1Rtek5yUFhRUDduRUNCYnRaLXdxQnhJRFdsMXhpcDJoX21uUGp3XzhNYjdEWEltQU5TNEE2NEFPWjYzbXctczlWYUJTZ3NJSDNhV01jc3VIb2ZQbFVnbmF0LXprekI1MGhWVGNQdkVBcWMiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE0OjIxLjE4MTg4NSJ9fQ==','2020-02-20 07:14:22.183085'),('qazs6v53k9451ux72kdo4r5l1lm0wd5s','Y2JhNzMxZTRiOTg3ZjRmY2Y5ZGZmNTRmMGVjNTdmMThhYTViM2Y1ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4V3N4LW4taU1xOG9pT1d0QmNTWnVsNlJoek81X2VpdkhVbmt5UkdPZDhRVEhEOS1qOXI5SHdCaHZWOUlNMFlRMFhRanlNbWxWTGUzSENCZ216TnZFLXREa1ZEb0pSSmZVWVBzX0QwcVY0Qm43dkQ5Mm1KM0ZRZW9sRW5jMGciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjMxLjAyMTY4MCJ9fQ==','2020-02-20 05:59:32.025170'),('qbvggpbrz6tkklefc8xsi12ihrbh4iw9','M2MzMDA5MDJlMjJlOGQ0MjM3NmUwNDNhODAzNzg1YTE3Yjc1ZWQ2ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUI4STA4dFZ5YTk4OXplNmlfcHlBX1FtSk1kcnJyMlRReGgxb1dPSHdQOEFYZW5oalhoNjZzc3l0SDEwZkliN0Rxcm1fdXdBUDZkWUtOa3paUVJCdGVFWkdEa0RSNWZ0aEZyZXZJQVNIOE1yNFRLRl9RWFhiTlRsTXhpclNqNDl1IiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NjoxOC4zNzg5MDUifX0=','2020-03-16 07:46:19.382471'),('qgcoeqy6nafuqot0evh6ntf9ge3x71eq','ZjRhZjU4ZTUzNjg5ODYxMzQ0Mzc0Y2M0YzcxNDBjNTk5NDhlYWJhNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5Rm5oZUVfRVBja2c2M3E3cWVtZ092ekt5dkY2bE4za20telV4ME9RbVlCcWhzUFgxUG5Ha2hwYVN5cFJOUUNIQUFCejFXU24zU19yMWNhSE9ubkxSQjczU1d6c1ZCNGpwMHFmV0t2ZHUwM2FuZlJRc3kxVVltUlp4ZlZiZEUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjA3LjYwMjMxMSJ9fQ==','2020-02-17 12:30:08.606045'),('qh966rw4ao9h7h41zpdp0wnfvflr21ib','NTFmOTNiOTBmNjIyMzVhNzY1NzhhNzk3MzJjYzcwODY4YWViYTZkZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfaXQwUUs0WDFYNlJRLThGRFhrTGkybE1YZlROOFpmVUVEaGRIcmViR2NhOEVSN0k3Wm83TExpUUt4WV8xZ1JJNG9UUzlXTGVzNkFybUZFczlWc0Z5VnVuQWxmMm93TmZlTjE5b2lTdlBHY3VGSmJOY0wyTTdXQkJGRE5wY1kiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjU1OjI2LjAyMzQxNCJ9fQ==','2020-02-18 05:55:27.024535'),('qhbm8yzi1nfbhw40nq39kwfz4eqxjbp2','YjRmMTAwZWRiYzQ1NDJlYTkxZjZlY2E2MmJiMDE3MGFiOGY4ZDgzYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2eENYbkx2VUlpZ3ZYSXBTMDVuTjk1WlgwZl80czMwU1QtRzhHbTNLWUpUWkNYbzVQeFNMSWNlUFEzSDhBd2J0OEdIMG42a1FwS1NWa3Z3VDBXZV9XM2cwLTFiOFBqSl9lTDNSV3J0bFoxZkJlTmpNT3AyYnBZZzFheThQbFRJIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDozMC44MTU2NTUifX0=','2020-02-23 06:00:31.819103'),('qi69h1wqfb1s0kavd156nethh4c9rb9f','MzEzNDc2ODUzN2M4ZWY0OGE1YjJjN2U5N2JkY2Q1OTllNzY4M2QxMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4eVNoX2JmbXVFOHhJbHlQOG1mV20tY3NGLXQxazVfNHhFVWZiSHJzeGxUMkVmNWFucDRFbTYxU0pwMURJTVQ5OEp1VUhXa1RZWFZKVzlwNUxVYmVtYXE4c2FkTXptVVdjWkMxYWEtWGdkMjMzSWpMeFA4WXA0ZXl1eU1qVHMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjE4LjU2OTkxOCJ9fQ==','2020-02-17 11:40:19.573402'),('ql6hwrzr7qn36fyzrgkb034yapaqu32e','YjdjNjQ2MTZiYWQ0ZWM0ZDIxMjkwZTFjNGQ1ODJlMjMyMjU2ZGI2YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1Z1lIYkJSY1ZQTnU5Z01Ud1l4REV0UXNsSlBPc3h0R2E5cmQza3pSb2FyRUJUcmUxTGtaMzRoaWdVZ0RZOXRJTVVoVG9iZkZfWjl3S083OUE0VXJxRTU4SHV1VXZFanJxWV9jb09fcGlFNFFCeDhqV1FNTVJlNmcyWjVjcWMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjA1LjU0Nzk2NyJ9fQ==','2020-02-06 12:20:06.551464'),('qm2ewxo0hqq5bh3ucz9fad57jfzsg8ui','NGFhOTY5YzM4MGNhMTcxNDNmYzBhY2E1M2Q3ZTljNTJmZWQ1YzNjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxaDg2SDhlMWUzcEJ6RmdYRFlQLU1yTS1vZlNKN1lPNndfX1FQRUhJZXVPMGxBM0hXd1ZRZE9HVDhjbWFNX1AyN0NGS045YThkOElVUHhPcGtSZVRiSjF4Z3FVc3JBS1RSUERQaTU5dzZmb2Z0eUtrdlVXS0tmRXZsVGE0MmMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjQ3LjI1NjMwMiJ9fQ==','2020-02-06 11:23:48.259471'),('qm3nilp91ew05ycld31jdswq08jfjmg5','NWM0NWJlY2Q4NTdjZjUxZTBjMmFkYTFjYzZjMTU2YWJmNDhmNDg3Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI5MVZWdjFNUDNFWnF2N29sYXR3MGIyaHRiLV84STkxa0FEYnpENnRsa0NtT19lY2JqNzlVWTRreUdSWEw3by1DaEg0bVdDMnhLYThvU3R1UVpSTV9VaXFhTnRfZ2N5T2NOWEtLUDRLSVByNlJQNXNOVGRWOFV5RExhTWR5RVEiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEyOjU1LjI4MzcxNiJ9fQ==','2020-01-22 06:12:55.287330'),('qmu6e5hds6dd34b2e5u9mj63fpz48ffu','MjI2NmNlOWM4OWZhZjE0MTEyYzgwZWRjOWQzZjA3M2ZiZmNmNDU2NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1aTJEZnBnclNIWFlYWHRHRmM4SDR5QkViUWsyRkczTlhQWDNidmRGV2xGb3MzYmhLWUo5VHRETWdBMzZhd3FkcUVLVDNxaE1iVGkySmM3VTRhY2lVNlNSUWhKNHZCbXRPMFhFWmNjX0pnRkpId1RjNlJGSV9uZzB4WFE2UHMiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ2OjUwLjc5MDg5NSJ9fQ==','2020-02-18 05:46:51.794361'),('qmx6ks6z1i0ot8wgyi9viipv7ousx20k','MDUxNDM3MDhhNmY2ZDhmMjhiZTU1ZTk3ZGIxMmEwNDZlZWNkY2NiYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2SG96QkRXcVkyaHUxRHRKLU9la283SUkwbDUtUmVsYkVlVzZ2OXNveVZWZ1NBdjMyeE5WekdXeGo5TUhCQmgxX2xEZDc5dkw5RzQzdlRnSEt4YUN1UUFKM3BfTjJxMGl0RDYycklxQzUycndrWjRvMjdqcGVmblZTemQzN1UiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM3OjU5LjEwNzU5NSJ9fQ==','2020-01-28 05:38:00.111054'),('qn1xgkmj494x2qhcqn8ck9enrm1y20e7','ODA2ZjI5MDA1YjJhZTYwOWM1ZDFmYzc4OGYyMTBiMWUwNDA5NzhjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxQmtWaUY5bW9vSGktbEQ4dHF0ZHpmYzVpRzRGSDRfMmYxYXVvRVZ0aVpwcV8zRXVpQXdpSWZubndNRlkxNS13UHl4V2w0QzNJMWloRnZJaVFzNWQwZE5QYklQTXNSZnNzaThXOFNPMlV1cE1CM0NMdDNzbEMxQkluamd4WTdYIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMDozNC4zMDc1ODgifX0=','2020-02-23 07:10:35.310993'),('qnco0sqku802sdzy7imldm3bhvkele3q','ODBmODk3YWE5ZDQ1YWZlMzk2ZjNmYmQ4MWQxZTQ4YjM2MGQ3NGY4YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1eUpfNmpTVThzTmZNRFRQLXEyNW55bE9qYmZ0NmR1MlRvSGlIWHA0aVIxUlpHTUJ6OVFpdHVXandGM3lMUkxTME1QOXpwNF80VnJ3dHUzMU5ET2VEdmFhTnBYMjNsck9USF9aYlBoSF9zOE8taHJiaFpkZVlYOVUtNW0xcU9WIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDozNi4yOTM0MzcifX0=','2020-02-24 06:00:37.297006'),('qnfroi0jtf241ex6q4mau1a2ov8gntq7','YmQxYTUxYzc2YTBiYzMzNmFjZWEwMmUxYzA2NTM0OGQyZTIxNDMyMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIzQWJ0OFVhUmVWT0pzNVN1cld5am9KVDdlM1Itek5NWEE3cmpyTmhoZWFlQkc0ZU1PNGVHQ2RFMUFGRVY3djFFTXljZlVmalY5LU5XNTI5RW9FdXRyMENQOXRDNlJmSm4zbWFmNHk4R0MyZlh1WjZ3OGRxSjcxeG1VSHRyd28iLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjI5Ljc5MDQ1MCJ9fQ==','2020-01-27 10:58:29.793870'),('qnmgddmm5m4wgy6qg941u0kxcneij620','YWQ3ZjgyZjE0YWI1MDkxMjEzN2ZkMjQ0NTYyYjUzZWYxYzc1MTBlNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNkI4czJCOGRJUC1zSTVTTzhEM3VGTVE0c1ozV2N0TjBGbXloMUZyenk2LWFZbE92QWNLRF8wSERLY0RIWk1zSE8waVVfOEExMDRYOGxTMlhfWG1DendwQ3c4QXBUZWN2QmdnTzdJV1pEekFyUE9ZbWlTeFRwMTVZVnFsQVQ0USIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MDcuMzQ3ODc2In19','2020-01-29 06:18:08.351374'),('qnth1my0h76tc15dj0sxhxew2vvz9m7u','YjUxOWQ0YjhmZTdhZTY1MjM3NjQ4NjFmZWQ5MTRjN2JiMDZhN2M3NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxRHNUWkFxbUc2ZkRpeG5reWlpRkliZkp1dFFWZ2VhQVUxQ1VPM19PWHBXN1NsMl84a2xVcVZvdWFxenY3WkNURk1vV29YZWoxdkU0Tkx1WS1nXzgwTlJzZ1dockZiamV3c0s2Z1FIeHhsMk4zOEZqVlRaOEw0eWpFMnJXV0kiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjI3LjUzNzg1OCJ9fQ==','2020-02-13 07:50:28.538960'),('qokcdch7io2lsokh2lczao00ff83gz12','MjQyMWQ3YjdmOTEyYzU1NWM1OWIxMWVkYWI0N2VmMDUyNWEwNWIzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzTjdFZHJtZDJZbndUUlNxTXNXNThIaGotWE8xZ2J2dlViYWZMWWlPUXdST3RvNHZCcVZjd0pxZl9mbjJZSjRwWlpwSjJlSEhSb2lwREFpSi0zZzdfeE9oYTNWZ0RuTmVJUjFSaHRoWU5xMmFEXzFGQTU0WkdTV2NoYmZEaFR2OU1UYzZSN3dtTjJaQV9HSnZOSjJWUjBJWnpFZkpUQWd3IiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNjozMS41MTIyMzIifX0=','2020-04-21 07:06:32.513343'),('qop3wb72y3gt7d6c3jeldjq1w4sqxxw6','MDg0NGNmYjNmMzdhOWNlZDE5MGIzYWIzMWJjMjI3NzdjNTUwMGM1Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I1VkdCWXVnMk8tNWFvN2F0QVBsYm9JZEhrSWRodkhacFVkNGU5bWdCZXRsaWpWaXVnWlFIZ3RSN3FZQnVsWGIzQnRuNmFEdEZ3S2NiY0U0YXpwaXpiWDhQVWNibXNGNldWdXhBaUhLNy1YN1N5SGc3MzFZWFBNWWlNOURNdU0iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjM3LjcxNjQ1MCJ9fQ==','2020-02-06 11:50:38.718462'),('qovwaa9pagy3rwj6znr71gu81g4wj8ep','YTEwOTZjMGVjMDQzYmY0NjdlZDdjNWY4NWQ4Y2YxZjNiYTY2NWJjMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzNlJMSWFYaTdjV3NZUkZ5QWF0TnJpMnZKcDAzTmZQYmRwaEZFSGUtVlJxVG1GN3MtVUNzM1NqeUItdzluVlREdjU0NE9PMzV4aTRKdzRJZFFncS1GNXprV2NqMGVXbl8xdzdMNUl2aW1PbWNmbmhqeDlyX1VHczFncjBwSjQiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjQ5LjAxMDA5NCJ9fQ==','2020-02-18 05:39:50.011955'),('qptvl4r7gbycb53sh87302zp08up0983','Y2VlYTRkMTg2NTY1ZDUyNzRiY2Y3ZGJiMGMyMmI5MTg4YTk4MzA2Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ6M0VWVFRlbWhfZzFNMjVDRXEzWGNEZDJtTzlvblozN3R6c2pBMEJyenloemJzRGhHelZmbW9QNE5XVG1pM0pSSWItNDlvbkRRWUlldjVXNHg3bFJCaUYxWWt5dmw0NDBMenNHdWtvby1QejNGRTFoTkZSUU1tUGVfUVVkQ1kiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjE4LjI2MzI1MiJ9fQ==','2020-01-23 07:15:18.266657'),('qrm51t5thgerh64povisoiolpwtjvpl3','ZWUwOTIyNjg4ZWMxZDI1NjJlZDJhZjEzMGUxNTExNzg0NmEwYTJmMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0YVFTbkJ4Sk44bEh5ZC1ySlEwbzVUX2FtZ0R3R0REdVRaUnpJSDNjNWY0MGNITXVHd2xPMXlKVV94U0pBUEUtanFEQ2lMeVR3T0Y0M2Z3VTJIQVQ3ekx1SW9YV19hUnVVTmY2emVfUko1RHNDOXA5aGpXMlZCQzAzMEczWUUiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjMzLjM2NDU1OSJ9fQ==','2020-02-13 08:10:34.365653'),('qtaz5wkrh4ubon44anagyqg09lvorli6','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-08-03 17:58:32.006732'),('qui9d4z8bicedqt74xp92xbeyik6n50k','ZGQyOTY5OTExODc4YzdkMzYwZmRhZjI4ZDY5MDNhNzExOTI4NDlmNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyUHNFSFkta1hud2phN3pyRkJzSWxQSmkxcU9PeXZwSmtFYUE2OVhsemVQd2pSWDVVS1ltSDRnMXN4TURlS1FfenN0VDhZX0ZUMXZXOXk1Q2dXWEFWWXh6alNxSzFKLTlzLVpzS0tzVi1PbnlxWXBrT2k2ZURWSlVydUJoRS1uIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToyMDoyNi4wNjQyMTAifX0=','2020-02-25 08:20:27.065595'),('qvvuqfnyzv6189djiqwierwepr383jon','YjIxMjM5YTQxNjRkM2U4MjIwMGRiZDRiYzBmNWFlNWIxOTlmMzI5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4RVdiaENIT1QyMnZWbmhrSUZEU0dzSUttaGJ6aVBaMkNES0dKckRobkZHX2k2bkhjOVhFc1pzMDRlTUJ5TThQcmxGWmx0dkhVU0VWR09rMFg3NGNtOUFEOGxxcmlnRkxtUVhlWjRHdWI2T1VDQmxJTU9Ia0pKWlBVT0g3TDQiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjUyLjM2NDMxNSJ9fQ==','2020-02-16 03:59:53.368098'),('qxa0d3aa22ocwczck8dszj0hjlu1he65','NWRlMDBkMzQ2ZGNjMDA1Yjc0YmEyM2U3OTJmMjkzMjVlMmRjYmEwNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxMk1BUkZHaDZLaHowTHBua0FBZXhjMGliVnpMYWNHUFJ4dFJVenJ4Z2Y4Wnh1NzFEblFlOHNpMVF1YkpocEF2ZHVmbnE1TF9kcUtxM2RlcThLUnJvbTdIU1gzMGZJUVIyVW9meWlRVUNUMG1lZ0Z3dXo1cEF1YTQ1eXBCcGciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjU0LjkwNDQ0NyJ9fQ==','2020-02-17 11:30:55.908129'),('qxf2cs7c3rrbkm8gnmszfzns3li4kwn1','NjA0ODU2YzI4ZDFiOGQ2Mzk1ZTExYTU2YTc3MzUwNzVhNTFjODI4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I4ekY3ZWhTcjRkSU1WQzI4UWpOOWoxRE1mX0VxV2dWamFYeEZ2NG4tOUN2WlBkdnhJaUpFcnY3blpteTM2N0NZVVEtZnN3T09MM1JRUUJFUXpGd0xKRHpXdU5vMXZodEZMN0xPQ0g4R203U1pyem85eHk5S21ZaTdncjF1NXMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjI0LjM4Nzg5MyJ9fQ==','2020-02-10 08:20:25.391477'),('r05h0s5km8v62w7x0zbwbyeyxec27fsr','Y2M5ZjUxMGNiNjZlOWI4ZWExNjc2NmI1NjU4OWQ4OGE1MGIxNTBjYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0Zm83Q2NmTkVseGNFTXhLNXZsRldyQldQX191eXNXVnc5RWVnSGZOcXd3UVBFdGVISVcyamdaY1VhSEYzZTNlVlNxTlZkelh4dm5DTHpfNTdHeDFjYWkxRElQa1BUajl5b09VTTYwU0dqc01zcnRGR0JraXFXb1BfclJ3OVkiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjMwOjUzLjU0MTMxMyJ9fQ==','2020-01-20 09:30:53.543107'),('r16vpnewl4mk7v0x0ds85oiuhyn0ak1o','MWNkZGMyZGQ5YzA1ZTc4YjNjOTI1MjIzODllZDY1ODVmYjBhYWMzNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1VzBPWWRNWTdQQ1Z4Uk5rMkI0ZU41MmJzSE9SN2M2QVFPR1ZGZ09yU1FnZDFsR0pvcmxEWjhQc3dmQjl5YkticGlaUl81R0N3RHhad0ZjOWctNXhOM09BUmlBOGFuZVR3ajVRcTVrWHJvSHdnMW1NWTFraWlJNzE2eXFWRzAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjE5LjcwODY5MCJ9fQ==','2020-02-06 11:50:20.709828'),('r1secq15bs9c2x686pdi9pm0yfe0lgni','YTI2YzNkZjVkMjMwZGRiMmM3NWEyMDU5M2M3Yzc2ODgyY2IzNDM2ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwMVA5OWNUaG5GcW1lM2R5aE1pSnp3WjFuUGMzN2FfWENucTBVbHIweDQ5TVhjWFA1MVVBT0RwYkxrTXBCZWYwYV9vOUpDT3lrWmVibm1JbHpxZDRqX1NLQkxVQzFaek5WSnFSSDZ5bG5BWXYwOE9tTDJSRWo5UzVMSXlkZ1RVIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1Mzo0MS43OTQ1ODMifX0=','2020-02-26 06:53:42.795778'),('r250dw2412ig1okfm0l8mn8f2vt4xq3g','MmE0Y2YwNjk2NzJkYTJiMGZiMDc5OWI1MTg5MDVmNjNhYjhlMzc0Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI0WDd6NFd4Z2NMYkdjX3lKSHV5ZGNGNWpvVS1IQ1NPV3NZeDlsWFlBMDM1Uk81RGRsMWRBdUk2R3lxVWgwR0lBUlRtOUpaYThzN3otNzFMNHdNVWVOWGdaMkRZa3lpRW1wWkNsNDdCZmplZFl2czhTVHZOakJRZFNlSXRRT1kiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjI2LjE0ODIyMyJ9fQ==','2020-01-27 10:58:26.151940'),('r3gx6z84clyilfnaomb4cvfhxxp70plg','ZTRhMDhjZmVlMDU0Njk0YTFiYjViZGI1MjYzODNlNmRkZGEwMWQzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0UU94WXFXVTdTNnFFMkluX1pPeHZJbkVQZ0dxUXdscTRQMHhpUGFWMDQ2aElmTy1uWkVEQ2wwT0kwRk9USW4ybWtyNE5qUFo2SF92Vm9HWFUyakV6ZGVWSlR3alVLMTdTU0VzZUp0b01NcVhCM216bFdsdXNwM2Rtc0hsejAiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjM4LjgzMTg1NyJ9fQ==','2020-02-20 05:59:39.835210'),('r49d6bydttne945pa20c85l6c8d8cbpy','NmQyODZjODc2ZmE4ZTFhOTdkYzJkYWYwYWYyNDg0Nzk0MDE0OWNlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I0S1JEY3hWbWktNF9GZlU1RGlGZGRtMmJoVkhyUGtsRFJBbTEzVmNaR3JKblI3djhRNTVZSkcxX1pwbUx4eElnajlZZmtlc3c5cFJXWnpNbW53Szc4M3R0VmxXRjJLb213VU51RmdnRFFHdzNnQVhEQi1tVjhqVEoxbWtqOHciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjM2LjczNDE5OSJ9fQ==','2020-02-10 08:20:37.737533'),('r6vsldbuw20fm7ae61ho2v7wjglgscl0','YWM3OTlkZDk0YzRmNDYyZWYzYmZmY2Y3YzY0Yjg0OTM3M2M0NDcxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI2dTB1M01BTWxiaklmMWREdzc2QVRDMy13ME1STzNxdHdQdnlPRXhYMHBKekRXTGNEdDVCem8zSElwQ0RlMzFad1NpdG9WbF9KR2tKZ0NDRG5RNUZyQWhMa1JOS0JKTzlWTWZfOFppUjBXODBQaXZLeWFyWEVGUWpIVUpTdFkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjEwLjkxNDg3MCJ9fQ==','2020-01-23 07:15:10.918259'),('r737lahhcaxkkty8wo08ai53joyv4dhh','MzZhNjkyMWEzYWQ0NWFlNTkwNDRkZDk5MDA4OTFmMTQ1NmEzYzQxMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6V2U4amJMaE44RWNESDBQWm9iZ0xCcGJnS1NJcDY2VlBFcFh3eUlHMUl4RzZ0QjRULTdSSTBSb3E1T3JITGo0Y2E2SzlLdm1lejMwalBYd0ZVQ3dxa1d3YTY1dWpVVTVvSzZGX0t3dlJ5amJrQzhyS1dUUEh0ZUNUdnpWSUUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjA0Ljg3Njg3NSJ9fQ==','2020-02-17 11:10:05.880249'),('r7uuu3mzvac2nndg6ohvywqvegqt2w68','YmUwNDE5MTZkMGM3MmQ3YjMzMDY1NzJmNGI0MDVkZjlkNzZlMzk0Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVOUxIR2EySkg2dkJVaU9xVGRjZDRPV0dycnQ1OU9UeGFQZ1lIN1oydGF2MVMzSklBci1qSjVnMHZEa3NzUk8zQi1YdFFndW1naWdxV2ZBNnFwZWpqWmxYYlRtS1RQcnJ0bEdxcXVfXzdxWWcwWjJwdjR4T2dHeEdmdVZzdWFtYmFxcTR2T2hHdnFWejZ3WTNkVE5aLW42RHVyMUxrVTZBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjoxMC41ODc0MzgifX0=','2020-03-29 05:32:11.590938'),('r80w8mbwp1vs2gi18elp88vo7kx4x2bs','ZGYyMjM5MzdhNjQ0ZDhhMzY4MzZmYWNiMzI2YjllYzA2ZmU4MjViNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzQkkxSm9LZWQzc0U2dndFd05rQi1XYVdyVk9uU3BrcFc3aTZ0MHhaTGVwOEQ2QW5RNW01VTZDNUptTzctdzhtWThqeDFLOXlXcUk5cWxDSHlhUEE2VXptWUhhTmlzZ1BaTjNuR3pVOFlfbmhkbFhXTXBONEhselpuMmRnZGMiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjExOjQ4LjU0NTM5MiJ9fQ==','2020-01-22 06:11:48.548878'),('r8s5kb6lm62ioufotqjveb9cv3vyxin2','YThkYjFlMDdmMDQ4MWM0NTM0OGJhZDdhZGE1ZWU0OTBkYjBlNTEyZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0LVdkaUpMNFNlal90eFJrYjZneFhMVHJ0NzR0cFJRLUx4ZXRmektMUmJMOHNjamJNVWJYZGY0X2c5WGd6WjRRWlNadkI4dXhoRW12YWpZaUhzRjY2YjRveUZxNUR6S2ZHcy1PeUpCTWt6bk01S19jTEpLUWU0eGxxeFNnM0EiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjQxLjM1NjcxNSJ9fQ==','2020-01-23 07:15:41.360421'),('ra8szhs01czqxh4rpm872u9okbjm6418','NTA3OWRjMDc4YzZlOTc5NDk5ODY2MTdkMTUwN2I1ZDU2MjFjNzEzYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwdV9JRk9fV0p6WElnaUtzZGJFNDRBNFhrVGpHbkJYSHFhLTlkRFJVUjV5Q0RmN25aZWJ6SG5Yc0ZNTHFVOTdidXVpZTdNOWlHMU9sM1B1NTFVR3lYelhmYXlYYUNZU3NFMERlaWpKYWR2Szd0bXpROXlOeEV0elZuY2oxX1kiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUxOjA0LjQ3ODI0NSJ9fQ==','2020-02-17 10:51:05.481729'),('rd07myt06rh6d3wuw6snhcusqw91ockd','ZjA2MGIzOTBmZGNhM2FmM2VjZjRiODYzN2Y3MzdmYWVlNzFmMDBlZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4cU5jUWFwQ0RjY0NYUEZHSnFGXzlhRlViYVlHRXR1dkR6QVNKanotUng5Sng3RUdkUGRZX0N0N29VZW5KSFEyUjlRblpydnQ2UGN1OEZZbTFjVzNxMkh1U1pURUZMcm1YZDdvZVFlN3J5QTBzTDctYlNfMW05TXR4SnROU3MiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjE1LjI2ODUyOCJ9fQ==','2020-02-16 03:59:16.272065'),('rd1z5gal03sgxpaauruvjmwjugtb41c3','NjU2MWE1Zjk5MjMxOWUyNmE2YjZlZmQwOGRhM2Y4MWFhM2M4NTg5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3RGx5MVgyNmxqOFBQZVR0MjNZa20xeDk5cWxaUTBFLTdRVVpTWW9EUmMtWDJ3czNTNzhnYmxoZHdGMGY3XzU2bmxzQjBvWHhSMmdqRXFOV2g5NHJHbEVvSThJRURybHNzT1FiemQ0bGstblRmVXo4aHRCUWNyT01aX3VhODk3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MDo1MS44MTc0NDAifX0=','2020-02-24 05:40:52.820926'),('rexywanz5mdr5vxtry207gcfe1dzaddr','ZDQ1OTNkMjY4OWY3ZWI5YWM0NzgzOWY0NjIyYzc1OWY5YjA3ZDJmYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5X19WZUpVTHRVM1RvQVFIQmFjYTU0YVk2bUZBdHJubWx6LWI0LVpFMmdlYjNaQkE2RlY1ckNldko3QmoyeEV4enZEU3FpNVFsRU1Vci00TTVIcTNUSDZSanFsWlBnOUVpZTV2UXpseTdEMW5EWnNkSmpqOXR0ZFlweU5mR0ZZIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1MzoxMC4xMjg1MzMifX0=','2020-02-27 07:53:11.131869'),('rg2583fzwpjvzbxc7ukjyg28hcnhwxtg','YWU0YmE1MGZhODFjMmQxMWQ2NDM2YjU3NmRkM2ZjMjViYmEwM2JlZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4bVdaQWpuVXlUSVdLZzM2YXNJeWZRaHlFXzE4YXV5OWdFcnN5cFBSai1QOUQxbk9hT2ItRkJMNkE2RExqcGlyV1VOX3RUUnByTnZ0SkpxUXFWd2NYV3BNa0tHeHoxQkNuM245cTJqWmQySzJkRGFZelR4TFRXeTlNNDc3ZGotIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowODowMy42MTg1ODYifX0=','2020-02-23 07:08:04.622014'),('rgyr7ye2fol5a6j14a9ga3yx31e1oqcw','NmExMGJlMmNkNjM1YmQ4YzJlYmY1ZDIwMTk5ZDAzNjQ5YjU0MGQzMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYUXlKTDlMcUpRWUNmSEpNMlY2NTBld0dYRTIwMEhrMVRkbjByMVdqMTRKS0FBbWV6RUVxbEx4TkNCZk5uS0pjM3JrY2pKNG9TRWtYSWJCMDc4UDF4MGUwamRzVmJXMFBNYndhd3l6M0FkaG5pVlhtT0Z5ZDFGRGZWaEc5Mk5zUkM2MTFNckVoQzRwa0lqeTRUd19VUEFzYzVSTzdJNU5nIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1NDozNy42NzI1MDEifX0=','2020-03-29 06:54:38.675897'),('ri2ew1miawve18dh30p2lqzkp30r5b37','N2NmNWMxNzVjN2YyNjBkZTE0NzM5NmM5MDUwYTIwYjU0NDViMTI3ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3UUphT2NTU0VSbnFtaFBnQ3dyRTNQVV9xdVh4WFg2YlJ4OTJwZTRXNXZkbDFlMFpOR1pFWmI0UmN2MW9HdHZ4RGgydHNfenFpS0l5ZHBLNE9SdDByQjFoOGVFNm9CRndWUDkyb2J3aXdlQUFaSTl2eC1CdjNfLVR1TWtGclEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjI0LjIzMzUxNSJ9fQ==','2020-02-13 07:50:25.236928'),('rj3ccuv736y08436vwzma2djiokphya7','ZjM5Mjk0NWI2ZTI1MDM5MzA1NDdlNzNiMjBlOWZmNzUyNzMxYzQxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2RkN4NVlscFNNUE5tUXVfb0ozX29ZT0poZG9nMEt6cUxlN3VBSzZVNnF3MV85b3Vqempaejc5eW90WnNhNnhuZi1JUEFveng3WWVvcnhhUHpUTXM5NjFsRDFYb3ZxN1NuNjRHRzZ0ZjdMVmc1T2dHdXYxT1ZCa0R0ZVNJWDgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjQ1Ljk1ODU3NyJ9fQ==','2020-02-10 08:10:46.960185'),('rj9jmhf6j2lh27tx82odts5hlrflspy4','MmExZTcyY2M0OGRmZGFjMTg4ZGIzYWJmODM5ZjkwMDc5YzYxZTY3OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0N1FHZGN3dFJscnRyUnU5ZVRlX1FxVEVJZld1Z0xTeE9UWm0wdEEtajlwMW5QejEybVJ1dGhPbHJaM2JNLVFzMGM3aTRVOEpFMjhiMEVYbEpxNzNDeTE1X0JNaU1Cb19XR2RnLUdqaHhoQm5KWWM5NGx5QXBWZ3ZtNy1uYkVHIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDowOS41MTc1NTYifX0=','2020-02-26 05:00:10.521243'),('rje30yv09a9qmlxo5zyc8u7ffoxrq299','ZGI2ZmQ2MzBlOGJmNzU1MGM0NTJiM2VhNWM3ZTUxZjgyY2EzYjk5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4VGxCaGdZMGx1a0pDVHk4b1lRYkR6U2V5Um5BRHpkYXkxV0E2cldYUFpXd3l5bTZ1aFcwX1RwMUt3Ym1wTEdKY2ZoOTlkWFk1RXRIa2N6d0w0MWlRTGQ1dnhPVDlNNjlPNkctRDVqeGM4UFRLUGhhVmdoUnZSN1kwZHhIR0s0IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjozNjo0My42NDgzNDEifX0=','2020-02-24 05:36:44.649581'),('rjvw8p2phri0bs5xi5pb5462oza63z67','MzNkMjAzYTc5ZTAyZGFhMzBiNDc1MGUyOTU4MmRmZjUxZjE1MTc3NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4U256VXh3amZuMEdsLXYzX0RYSUtNeDJpMVptYjBpOS1nVERkMDBfdlQxbFVEV3FNX1dEYmhPRko0RXQwa3o3ZXktWTVXeUxySzZMQUZOZzdpTG1nZXdLOXoxbUUzeUMyY3AtQVUyMDZWekVEQmhjaTI3T3BidkxsVmlZaU0iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjE0LjE1MTkyMCJ9fQ==','2020-02-17 11:00:15.155211'),('rl0olc7wqjvcz8ug59wattisidu006ps','YzRkOTQ5ZDA3ODAwMDA2N2E5OTBiOWUyZjRmZDkxOGIyMjAwOTljMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIweG14OEZOaVVSeTJpV01SZUhudm1ZOWpFWjRFLTNHUE1VRExyY1VSZjVISnAydXB6R2lQSEd5WHJPdWZBWGpKWEM1SS1tN1d3b0tPREZCRU9OdGtJOVQwdnc0bThXV1V6TFN4emZZUkRiQjJYZ20zRWpweTBuRGZNVzVmTWciLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjE2LjA3NjQxMCJ9fQ==','2020-01-30 06:08:17.079101'),('rmnjcup1twh61mqstw80yenq7i5ccc2h','MjU0ZGI4NGYwZTMwNmM3NmRiY2IzM2NlZDMwYjZmN2Y0NmVkZWJjYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfQ2FFQUQwYW9MdFg1eVlrNWlDRVRGcEdxdHB6dGlUbVVVckFTTFYzTVRiNnh3amQtZ0lEdkF3aXFCV3dQenZyZFZJM0FERzdRVWlrbW9BMHlSbXdsb3FpMzdOUkh2Nm9ZcklTYU9RVUVLMjhEYS1uTXpVQ095ckh5NXE1eWsiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjMyLjkyOTgxOCJ9fQ==','2020-02-10 08:10:33.933637'),('rntokw6zt5ppsc6me476zwn3hji7xneq','OWNkNGVjNmM4MmJhMzZhMTFlNjE4ZjQ2YmZmNzI3YzVlZjE3OWJlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ5N2E4WTRwbEZKcjdOdmNNNVlOX3U2b3hqYS1Ya0FrV0FwejNvenFKZk95NjhLaEpxeEM4bG1iNjZOc3BrZktGMXQ4RnhadmpSZVpESENuVGwzZXhNSmp1RFFQOWNsbmNzVjVRWUlrTG1DTnFzYjhyQ204cHZzU25mTVVWbnciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjA5Ljg3MDExNiJ9fQ==','2020-02-06 11:50:10.873467'),('rny4qq2us4t2pa7k8l0scu0bsvo5q6dj','MDAzNWEzZDE0ZWVjY2I2YWZmYjVmNTM1ZmU1NTc3ZTRhNDU0Mzc5OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ4N3RzbW8wMkRPXzUtQU5helF2S2M0bkwwUUFnZnF5b1lZR0dTQ1FqNWFaSHROdUFYLU9IcE1SOVdzclBZVkRYTzZpRl9VX3k5ak5sN1hYNDBYU1Q2SFVPTjNjSFNGWHN4NXo5R3dYLWxVZDVWOUhDeDlVQUwwWlNCY2o4T1EiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjI1LjIyOTY2OSJ9fQ==','2020-01-23 05:26:25.230897'),('rog0jqy0uhy4q92u8u9uflvcvacvpv9b','MzJmMzExYmZlYTI1ZTAxNGFlOGEwNjZhYWEwNjE2NWFmNDkzYWMzNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIyX1FRYkZmcEhCUmtjMmo1STFTQzNCNjFuTVpjQkpqOHA1RklLc1VuTVlOOGEzZF9NR1BKX2ZUdGJuUlVIQjdmN243c1ZtMF9RbW5NbEtIUDhxN242cFpQUW1xdXV1MEpqNXpFcmpsVFpYUURaazI2bDlDS0g3bHdEVUxvZjgiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjA3LjU4OTA1NiJ9fQ==','2020-01-23 07:15:07.592564'),('rpih7tl5ls99m4072li6syfq5qbdnwqt','MGM1NmEyMTY5ZDZhMjc1Y2JmZjg1NDk3MTRhOTc0MzA4ODJjMTZhZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1Ykk0ei1waUFvSWJmSDdSczByMkJFR2lTbjBVOG1VX3BlSnpmMHMybkpOVHJxcGNsZWxEdVZrenljSGFhd3FBQm1WeE9hMEswLUFEa0xUdGo1VnJiX0NoNDNaYkVtdDROMjhOZ3JETHFpVm1ack1TbU9fNjdHTmw3YkwtbGMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjM4LjEyNDk1NiJ9fQ==','2020-02-17 11:20:39.130921'),('rr1vsngdlx15a63l7fdruatcg65zbpms','MmNmZTRjYmFhZTk2YjIyZmQ2NzE0ZGM5MjBmMTVjZTBmNDRiZmNiNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwLWp3OG5ydkV0akNQa2J0Vm1JZGVxM1RIV0VudV9jUGpFbW1rbjlONVluX2o1cVliRVJWVjJIUHAtV1J2eHVtLXpHRVdpdnM5QVVuRVFZOWhYU3RYOHUtQV90Q1FXSUJQbWJ6bHdEam9NRW5obndfLTB0MlQ1ckxteHJtUTgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjM1Ljg4MTY2NiJ9fQ==','2020-02-10 07:40:36.885199'),('rs4recjwkb37t2fkyttnyc1acn1ww4kk','MDFmYjVhOTEzY2NmZDk5MTk1YWY5ZjA1YTQxZmNlOThkNmY3ZTA4Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyUVcxU3RCUDh6OUFwR2p4QVdWdnJOOS1KdUlxdURKS1RkMDVmaFlrUGRNaF9RUVlzYS1MVkpxV1pGNFBDZ3VEMVctNXR6RnlrZUtBcEdVY0tTSTlkcjNiR1d1NVd4TEZfUl9xblVjTVRnV2hfV1JndDA4ZG1ycW13NEFyQXYxIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyNDoxMC4xNzgwNDQifX0=','2020-02-23 07:24:11.181736'),('rte3q50dki19rq2yd967l0j7uafmcc03','YTc0ZjY2MDI1N2ZmMmZkZmEzNmJhZmUxMWZhNDY1ZWViYzEyNTZhZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6QzRLN1ZybHJmNl9reUpRLWl2SFNVR01WV0ktTll3V29TbU15aEJ5MURqSDg2NTZWTklFS1ZadXk3dG9SWGdZMEZXQWlFY2VtajJvamZYNFhrZ0FnU1R3dnZqZUJua0paWFdaQ3FBejhLVnZfbDR5OVRIV25CUTU2NGNkck0iLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE2OjQxLjYyMzg3NiJ9fQ==','2020-02-03 06:16:42.627497'),('rvdayuhs10g44zpo1dg9jkkz2cegqftq','MmZjMjQwMjRmMmMwYWRiZjEzNWMxYzFkZGM4ODY5NGUyNDBhOGVmYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6bmRDX09hckJHMmJKWjhhVlUtNzhWSmdLTlJIRTlEbHUwZV9RcnBFT2Jfbm9oeVhkUExURnM2VzR5cXhJUXRacmNIRkJUN1gwVndxTXhoRF9SX0hrZWdXZFVROEdHcDZxTl85alFUVFpEQWs4Yld0d3lsMTF2TE1BWWZBLTgiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjUzLjI3MDc0MCJ9fQ==','2020-02-13 08:00:54.274310'),('rzkovtxghvzwdackhr711skfp4oi3258','ZjViMjQxN2VjMzg4OGY3NzBiNDI1MDMzYzEzM2RhMWZjMTM4ZjUwYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwM0JuY0diSGNMWC1IcWltaUVFc2M2YkVHRXgwUEJoVTE5bGcwX2VucUNRSkpJZ1NTU2dXU1VkbF9YNmJVdUZqc0ZsYm0tSy11T0NKeFY0T1VfQVBVMzBCTWtmcGpGSGdXQXJyS2M2enVLTEpieU0zNTk0WEtnaWpMX3JxWWo3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NjozNi4yODQzNDUifX0=','2020-02-26 06:56:37.286162'),('rzphfxefbo2abskqu139ky335pczmh55','YTYzNDI2NjEzMTU4MDA3ZmEwMTRiZTFhMzE4MjcwODBhYzA1NzI1Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4dTQyd3JIay1oNjRjNGg3V0lGNjM4X0lob1NWOW9MLUs4ZUpEM3NjWHBCMnQ2WWJsMXpucU01ZGw3VF93dzNRX3JxWGZPN19qQ0JFWXFMRFhHdHQ0bGp0aFdjUUNBVHQ3dnRBQVVTX2RReEJYbVlmLVFYNU5pdElTZ0VDdDAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjA5LjI1MTcxNCJ9fQ==','2020-02-06 12:05:10.255252'),('rztwxtstobaljjdbjnqit4vm3nl6iih6','ODMwYzMyNzcxZjc1NWYwZGE2MDgxMjQ4OTY0N2MzZWUzZmE4YTk0MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1SWZ3bEpMcnJQckcwNU5mdmkwYUFkNDFiSEt6bFFxNUlmd01hcmEyQnFMMl9xN2NDSjNPTFNQaDVJRDFsOGw2RWUwUlVWc0tuNTJlbjd6Q3JINlVGLVdXOUVNRUlDWVJ5MTlhWkFIMmFIMEdFNWdRT05Tak0zT0Z4emNxTzZQIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo1MDoyNC4xNzI4NTEifX0=','2020-02-24 05:50:25.173993'),('s06ccugub5x99ohf9793rd05krewa8t1','M2VjYTYzNWU0NmUyZWVmOGE0NTMxMDZiNjQxYjJmYzBiMjNjMWNhYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5WUdUTkZybEhvUkRTLTd6bkxmeFozTmh0dXd5RVdSbDQ1Wk5sTkJPVW80Vm1lRF9WY2ZrSVlCck4xRXpzbGR1YVpNNVdyR0FlbFFWdjlhMHVyZkVySnZMSDVUTkZ5c2tRMTRWNzhxODRaUi01WGt2UFdXZEV0MlExMGZvNzQiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjQ3LjQ0NDk3MSJ9fQ==','2020-02-10 07:50:48.446457'),('s0sgky4ungqd9kwyayi5zgqir2t8iprf','MzE3YzQ2ZDBkOGMxMGMyOTU5YTM4YmM2Y2M4NGIxOTY1ZjFjMTIzZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxOTNKQWRYUW1aZE9VTURiQUctT095dk1lYjdSNjAwU1VJa1haemdKdW1mUlRSZDlFTDZGQkViZnZFd0VtR3pxWkRwM2tBd2ZJUkF5LUhQUmhkMmRncVRHUkZWMnRSM2Y4UExXTnBrR3BHNzdJUzMzTTJ0TFJCRFlURDRQM1kiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA4OjE5LjY0OTA1NCJ9fQ==','2020-01-23 07:08:19.652492'),('s1n6zfdumo7wh4dpebjgj8xapx16rbd5','YjNiNmYxZTlhM2E5ZGFiZDExYzViN2Q1MTE4ZDNjN2MyYzk4Zjg0MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5eHJHaFRBdlJ3SjNULW5SUE5nSHFFN2p0WFBwZ0E3MGdmUzE4V0hsem1MSUxEZDZSam44b0NOUXE4bVdSaHBLZ2tlMFpKS09hSWs1bGYyQWNMRWEyOVNXYkRWTUplRDhFRnRSeGVvZTdTTm4wekdJdXNBMHMtMEtHdjM4OGsiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjU5LjQ2MTExNCJ9fQ==','2020-02-13 08:11:00.464780'),('s5excn80kam2571bjpcaiucjrvyk00ae','ZWVlYjM4NmJmYmE3NDIyZDA0OWEzYjRhOTc2MWI3ZTY0NGI5MTBlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2UWpkWDFqNk91NUpVcVFyd1FncndQczU5RGV2UWp1OFRjb29JNzVacVZZeEFITk52cU9wYi1SQ0NlT093N2p3ZndNbG1jal9UQTJHejZhMWNVS0R6MHNTTzN5QTBOU1V1d3UwSXRtakpCaF9kbWJyMDJQQzhKVWtqMU9yb296IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MToxMi45MTE1ODYifX0=','2020-02-24 05:41:13.914980'),('s5o5u6si3xojurkf42qhnashpea98amy','NzU0ZjBiYmJlNTBhM2MxYmIxNGQyNzNjYWRjMTg2Y2RlM2E4ZDY4ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxVm4yUTJVTE5xanBxSlQ5OGFKM0xveEU1RDJLcjZMeXFEQWh2bHVJdHRybnBWcUhzV09kNVF4UEZTNjVJWHBrOE1rUjZhYmZFc3ZncC04OG5qNW5MS2NNRDNVdGM2bjZXTVFIdVdWYk5ONVBNSU5hVzBpZXZYM3VqRFBqSFkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjA3LjI4NjIzNCJ9fQ==','2020-02-17 11:40:08.289748'),('s5qqornyezvvka945dbel3hoxvoya6ib','ODJjZmIxMGFkMTNlMmNmZGY3YWMwNWRiYWJjMGU5ZDAwNjA3YTNhYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3dXJ4Zi1kZ0dkLWlvcWNQTXJIVGpONkt5NVI5bG1vSzZfbDFtN1BvMmFEUVVIOXhuYmdzTG5wY2pMbTVrYzlTQUtHRWJpZmRpdHpXMlA4TFBnR1JGTXVleFdjdFBSSW9PbGJHSXNxYndvQmxHQjZPblEwNzVReHFjZnhhRWsiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjUzLjg4NzcyNyJ9fQ==','2020-01-23 05:26:53.891192'),('s61eu8q15b2xley1ynua21ae5yinelwk','YWVlZWM1NTBjN2VjMTM0NjQwM2U4ODYyNThjMjFhZTNhODYyMmE3Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2NXlVSWM1RGRQZkk3ejY0Sjg1dzRxMG5iTncxbldWZzAxX09MWjJTMXVvWmJKalZTS3E2WG13ZFYzeWp1TWZqbFRFQWJ6U2FrR01hdTVXSFZTRjBvWjczRGJmTVNScHY0TXdhTTRRR1BHVUNVWlk4QTBLQmJRUTNvX3Zvb3ciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjA5LjMzMzczMCJ9fQ==','2020-02-17 11:00:10.337973'),('s9zs74tzmi25cskltoelw4pssmqfpg8y','MjY2ODhlZGI4Yjg4Mzk1YTNkYTk5MDYwNzMzMDU2N2U3ZDEwYzYxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVV284Nmd1c0hwTkJKWUJlaHk0SEdtN2hlZVRvVzBLeHhXeTFlUGxOWFNMSUVKOG9mTkZBS0JsaFNjcFhOVGlsaGx2QTQ3cU9zdzZhYUhaSHZRdEU5WHVUZmlUd2FhRXBuMmhORnp0YjJJX1BvcGc3Wk05emRLUnpic2x6Vnp3NG9ZRmhmME85UnhiWGN6a3U5RjdKMnVCSW1yYmJIVFJnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMjozMi4zMTAyMTIifX0=','2020-03-29 05:32:33.312084'),('sar7eh2pimne25wnqi01am1ss3vjroqq','ZGRlMTU2ODE5ZWI5OGNiMDU4MWRhMDMzYjEwOTcwOTQ1YzUzNGM0Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0YTh0UEd5MUppVGw3N2d4NzktUEJDU2cxS0hvMy1KY3pyV01VeXFMVi15UFZUN1ZaQnR6UVU2MjFLUUpXdE1WRUttS0ZCV3pjMmNlLXZ0UzlSZzhNdjBtRmdUR0EteHZmUGlDNGV0MHpYRXBVVVVJdWYwRnpSMXF0ZFE3amsiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjE3LjI4NjA0NyJ9fQ==','2020-02-17 11:30:18.289825'),('sbcgab6p6zqsxybaec0o8al72bl9lqoi','OThkZTg5NGFhMWE3MDFjMjQ2ZTMzMzNjMGQ3YThiMzczMGJjZTM1NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxRGNCdExwNVJPUXRneVlsbUFLV0xzV1JqWmNOWGwxRG9yejE1dzBTSF9GVFdnS01wS05BRW1BRmV5WTdscjV0QnQ0OVhQZExneGhhaXZPQlBYMHNFcEdSRWRBcTRkMm9PcFYxZmpETTlUWjZZM1ZUNDRDd0ZMaGNobUhLRGsiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjEwOjM4LjI3NDA5MiJ9fQ==','2020-02-13 08:10:39.277526'),('scgcc03an37belfzupc6rxeyp1fcq0u8','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-03-24 07:30:15.846009'),('scomil037m40o44oxuyalh1l5eyrg0kr','NzAyZTM3YmIxMjhlNDMyMzIzMzFmOTExMmY1ODk5MWY5YzgzNTRhMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5ZWhMUGo4MWIxTUhBWEhuVEx4cFY1NUlKNWNBaVFNQXpPNFNRUmhVU2ptTXJ1U2hGMHFvSkJndXVzYWhlUGlOWEhId0ozUHBjR2JQLWlLMm55alNFcXJrcjhxLWJlOVI4N1kyWWpocHlwTDhiUXVrT2lCQXBXVzJleVhiUVZ3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0Nzo0Mi43NjA1NTMifX0=','2020-02-24 05:47:43.761848'),('scqco00payaz62v4t1ekahtuuro0wt4u','ODdkZjQ5MjJjY2Y4YmNmNzU4M2Q1Njg1NTU0ZmI4ZDdiYmViY2EwNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzTHRyNF9EODBVZzRYWXdEcDhUMjBCMFhocVdHUzdyUlhKV0tmV3VNbUVSQ2ZDcVo5Ull6UVNIaHpzV0RnOWJoazdEVXRPVC0zR0hscUhEbm14M2tNazNWSUNsaFF3UEwwcWtKMVc5UVNYaE5xZklzelBFbUVraGpZMExXZUoxIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1OTo1OC41MTEwNjAifX0=','2020-02-23 06:59:59.512250'),('scqyurhj0bj1wolt3av8mt73mql94l07','ZDY5MmQ2MWEwNTJmZDVlNzM1MjA3YzEzNjA2NGIwNTVkMGQ1YTQ0Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxVUNYMFFPRDVPVDVZRTZpSlQ5cmJnNHNqcTdpY0Z0ZWRNQngtR3JTNHE5anNPVUd5X3BiWU8xdjRDSXNvU0ZUV2xBSTl0QmwwTkhSaTJHRl85d1BzWkRHcGMxUEw3YW9QU2x3U1k0dUJDbnNfRDctTllNV2k1TV9Xc2Utb3MiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQzOjUwLjU3MTk5NiJ9fQ==','2020-02-18 05:43:51.573582'),('screo2hu03ve4dlmx1u942eyfv20ylse','ZTNlMzI0Y2Y1YzY2YTdiOTJiZjA5NTY2Y2FjYWNjZTEzYTEyZWE5Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXT0FZazdXMEVXeW13THlXTGxKVHVmRlowQXhPWkNyOS1PMl9jZUdvMXY5TEtCaTg0X1RPQklRNkpoNXJNWkwtUlFoWGQ5V29KZkNQdmgtYkdDajZwZGEyVE5iajBFb3dtRzBfdWZ0VWtJVkNpNFlwVXFZeDlLY29nem1KRGdPRzJHRTJEcy1NOWhDSFI3SkkwMWtyeGdfTHA2YlVGckZ3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoxMjozOC4xMDk5OTMifX0=','2020-03-29 07:12:39.113545'),('scriy0yn5v4ph68yppongr076u5uwzd8','YzI5MmFhZjA4MTY0YWZjMTU2NzMxNWFmZTBkZWRiNzkzYjk4MTM0NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ5eHVVYWtBUFZlQkp2LUFpTTB4VHVOQkxEQW11YlVBbUlmUkNHaEJ1cFBpMWhEeVpsbWRkOW5OWG1mMy1xVjBSeXhsb1lEMENTVXhrNktjUTNwbU5NWjQyX19tMzdZWUpTTXNEVnRmQldYc3JFTFNPRzN3Rzl1RDJDaERfc2siLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjA5LjM2NzY0NiJ9fQ==','2020-02-06 12:20:10.371086'),('sd6gq69yzqpmtyncs9bgfq7fbhp7zxaz','NTBhMjg3YWU4YmQ5NGNlMzNhNjgxMTE2YmNhMTI2MDgyYTkyNTZlMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJfcFprME5oZ2hzeW5HeVNqUGpIa3pYZTBBd2JJU1dYM2FQLXhRWUFJbnhfaDkta0NpbDdud2lOcU85MlNzMHpXT05GaHcwTUZYSG5HRVdUNE1EUmFSMGpHNWdRMEpOS2pJX0lkbmdoSEM0ZDdXT090U2c4d3VrQmhxUGJzSDAiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjI1OjU2Ljg0NzE1NyJ9fQ==','2020-01-20 09:25:56.849931'),('seg48bvspzldttr21bhv200kbypbv0ga','YmVkMDA1ZGI4NWIwMjVmOTMwYWI4NzVkYmZmMDMyMmVmMDkzZGE3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6TTc5UXJlT0JQMlRSbHcxaDEtTGV3ZVpvb0d3MzNCNlFfWnd1UFR6WEJfSl91czlqZjJaR0JZREt1VkFsTnlUS3I3UTZkY2JFcnVlRDdZblJlbnR1OHJRUXdFZjhqYXJlXzdUMkxRdG9iSDY3SElmTkJYWUk0d0xCWWxLUEEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjQxLjIwNTQ4NiJ9fQ==','2020-02-17 11:00:42.209162'),('sfa2b62858vvzsn7khq0z18i194ci0ud','YjBiMjAyYTlhNTVlN2VhZGU5NDcyM2E3NTBhMzExNjZhZDU4Mzk5Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5UkVBc0RUdDZhRF9qbl9uX1BNNnRHaXAyWEdKY3E0M2h1b01KelpsR0JESHFlcS1DSDRtZzRoNV8zckU0OEdBY0thYzQydl8wWDBDYkpuUk1CSGwxaVNLcmttaDk5SHdyd2NSVXRYOFpURW13eWFkSVR4ZW1yZjZ6YUVhWnMiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjQ4LjcxNzMwOCJ9fQ==','2020-02-09 06:17:49.728235'),('sfinpkslih8koad23tglngigfdw1eehy','OGI4ODY5NDM5OGJhYzY4NTJmN2EyNzUxNGQzODI1NmQzYzJiNDVhYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzckZ1dy15YVV2bVhDeU40cWxCX3RQSGk0cHprTEo4WEZmYmo0U1JFMWxCQkpUQkNoRy11YlYtVlQ0N3lDT2VOZGZIZVg4UHk0Q0Vfd296YXM1emNfTktYTlpKbmxCQkhJcGZUVU1VVHgzYlJfSGtzUThxUGtrQmpHMVRmakkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjA2Ljg0NTA1NyJ9fQ==','2020-02-17 11:00:07.848578'),('sgcyjb877qer0n3c0m3pq85f32fc8faz','ZGQ4ZmFjNDI5YjM2ZDRiNmUyNjA4N2JlNTA1YTQ3M2QxMjBmOGU4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJfdFgzZTVVUXM2SThrRnFqYWs1OE44NF8tSjIyVWpUSnBLbTVlNnQ5MzdxSWUtQWlyZmM0WHJpaWhJVXNISHFRNGhFUGl2TjU3Y2tkRUxhYUhZUzJTSmptdnlWMTh6UWpHREZvSW9zc1VYREFrcWF2THN6ell4eV9ZNlp2eU0iLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjU2LjgxMDc1OCJ9fQ==','2020-01-27 05:46:56.814090'),('shawirp106id8tpphg0s90mb952969lf','ZmQxOWI4OWMyYTZiY2MyY2U2OTAzZDQ4YmExZmQzNTFjMGIzZjNmZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2b2s5SWpTdVlXZkh6Nm0zY1Y4SU00NWlieUhLTVY4U2dWcUJ6NV95Zzk2WmVUczBqU2ZSaDdBMGxzN2JmOVc1cWFFb2VaajVDdkF5dk1QOVVYa0pvZlNoMjg3SjdRaVRDZi0zaW1xQXpQdi1kdDJoYkpGamhjaE02cVlzQzdyIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzoyMy42MDA2ODEifX0=','2020-02-27 05:43:24.604517'),('sje9lvp5qk929cqmfa3az9ssacuu57u3','ODcyYTIzZDVlMTg2Y2IwM2U2ZTc3N2Q3MDA3ZWVjMGVhMTk0MmM3MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ4cFhBUGpQT3RqRTlIVVpqYVNLd2JCS2l0d0s4YkQwQTZNQnczYmRiNjNPUkl1eVlSUENtWUdPMVJyQlhHUGRIaE04aXRlYkxhNGRpNXkxN0xTUDVhZ1lTbllCc1RNZXlleE5JaUhWWmxETEFVTkRrU1VlYzZRcFIxcWs0Y2MiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjUwLjQ5NTg1MSJ9fQ==','2020-01-23 05:26:50.499211'),('sknant4d030eekjwoxzw79sb99owl9tb','NjlkZjljZTkyMGE3NGRiNTI4NjE2NTA2NzI3NWY2ODU3YTE5YzZmMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ6N2tmdVFjamNvYmJ6YzlVS1RZYV9RWDNuWllLSGg0bHZJTl9vd2dMaDFlWW9jdXlwclZXSVVFM1NNNFpkY0FnZzNrdXBGbkowMzVRLU1NRUtUdnluRGRmVmZ4bVdvU29DMnlVYVRFN3dzemt1MWlPVVM4T2Zva2JieE4weWMiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjUwLjUxMjM5NSJ9fQ==','2020-01-30 06:08:51.515676'),('sko8d1yy6db41o3c4j1qmywtnpn90e01','MzhlYjczODM3NzFmMTU5YWJjNTIzN2MyNjQwN2JjMjgwZjgzOGI4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IwX0JsZktET0pUMWFXTnFmRDlGRWR3cVp0a0hHeWJyT1ZyQ2RQcWJ0ZEdrRnVnZ1plNllSSFpPTFR3NXFNd3BTNHZIMk5oYktiTW5YM2FxU2dJYWk5WWhSbE5vUUt1Y2NLN3VqaUdHRkd0ZEcwMWxIX1NWYThoRFFyMWZUdFUiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjM3Ljk3ODM4NSJ9fQ==','2020-02-10 07:40:38.981975'),('sm5uko1tyfbpmyoh2dyyiyxdovtutg6n','ODI2NWUyYTE5NTViNWRmMjVmN2I4ZGM3OGU1MDVjY2VhMmJhZDhkZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4SzUtZFoyZEh2bUVKX2RlMkRqYmxaOEQxZGotTWVvaVpRMll3NEdZWnZxRzlFbTJyVmYzLVFXVTl1S2FudlVQWTFCWkVoa0FreV9sMFk3b1JyTlhoNVZFUlJKcE9NR3ZLeUtMSG5kTHBFR19NeXd6cHUyY0NUTzkzLTBMc3puIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0ODoyNS4zNTUwMjIifX0=','2020-02-24 05:48:26.358395'),('sms2q8cv2mcj38xn7fs2obl5arp72806','MzEzZjRjZjBmM2UyODc5MzIyZTgzM2M4YTZiYWYxNTc1ZTI1MmQyOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyelJoZHVrWlRSeTd5Z2FRTjVNZzRYeTVqTC1scW5PbzlZOGk4UWh0a3Z2UU5QZEhJTGpqX2Q5OVY3RzJiQUF5NmoxOWtuVUc5d3lKUW0yUWVNb0R0Vmlfdmw0VUlTS3ZRX1NEaTg2SVZzLUZheWJsSm5DOEV3TUJ6YXV4ZEVvIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1NzoyNi4xNTAyNDgifX0=','2020-02-23 06:57:27.151849'),('smszrow1d0mmggt2c4y4kt4d0iyvz47q','MzhmZTFmMDE4ZGZjMmY5NWYyZjY2MDRjOGY5OWIzYjI4ODkyODQ3Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxTnN3UzRJSUM2aHpXaThTOGpZXzBfdkRUeFRjWDBiRzltMkY4a2FsVjBiZ2xDUF9qLWFiU1hMVmpzUmxjVVh4akthWUhwTkZYSmY1N0V2WGF1Z0daTTRlMWJMQWQ0aXNXUGpOTlZ5M29ERlVQcmpTN0ctTnR2ZWdHRThkejFmIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDoyMi4xMjU3MzUifX0=','2020-02-24 06:00:23.129181'),('snfbfb6nf0bslmpmu6s23bo6q53lo1xl','M2ViMzc5OTNkNTM5ZGVkMGZjZTBhNjg1NTI4NWJkZDkwYjRiOGNmMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzcGhFX2NuQWJ2UjBmeHFyWl93aHYwUktyN0ZRTUNMa3BmU3NFenB6cTNmUjV4ZF9fVWNWVm9iVnpEWnUxVUROOUdPXzdLa1U1MmlCWnFJN1JoSEEzYzF2NC1WYXduOVdLaWttaUtOOUhxX3N3UnljVmwwUFNmdno5aEhROHAtIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMzoxMS4xMjI1MzEifX0=','2020-02-23 07:03:12.125988'),('snwl7hr8dzangrhd7fiy73df9p6ifpnw','MTgwNDE3OWMyYTI1NGYwZDgwYTUzZGZjZDc0ZWZmOWM0M2M0ODE1Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXdGlETWFRWE0wUkZDR0dKZVkwMmVINTFKRnQ2TjFwMzRuUnJIa2gxZElYQUUyQWlQSUp1RFY1VmR4X2stV0k2SnpSdUZWbjRfeTJ6VzhuYXctOGl3ekRMNWJUMDloU09uenI4c3RXcEpQdHBBVzIyeHlFVjJSbDFfUXBCTTJpQk14M0JjdlI5Vm1TNnRCOFBRTzh4emJJa1FHZ3MzbDZnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDozNDoyNy4zNzM4NzEifX0=','2020-03-29 07:34:28.377576'),('so6njnz0ycqq6ta094hln9tu7yuouk54','NzkxOWVhZDI0ODFkNDNhZDQwMzFjOWMwZGNkNzZhNTVhY2NjZWY1Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxWndJQXdMa0lScGIybVh3SlJwZWpTZmk2TndXT1c3X0hHREVKTFpPNTlqREVuQnJEVzcwU1J5eWR6UU5Vdk95Ny1qZC1pQ2JMN21NdC1na0N3MkZSQVJXdFFrcEJSQmpXQUVRVXpUUEdnbVdTNFlXT2h1dUxzbzFDbndOMk0iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjI1LjQ1ODU0MCJ9fQ==','2020-02-17 11:50:26.462024'),('sp8om921l0io1crmljeds4p2fzhibhey','MmZkZjk1NjYxYThmNGYxYmIzMzA3OGNjNDIxNjQ3MGUyNTlkNDJmYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI5eWpHQ080dEpzZDhRU1RiNlI2OVBEMEljQjAtUjdpLWJmZ0lzT0JYTE9pbmhQWUNabmRFR1JXbXd4Q2ZWdFFONnJHVG1SdXNoSzAySlNsdXNLTldIUEJiN1JDY25MZ05OMDJ5a2FmX05PelBXWHVMd05oRjhMdUVPTnlFLTAiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM3OjQ1LjQ5ODY1NiJ9fQ==','2020-01-28 05:37:46.503046'),('spwnfgss2dhxlxn2oyl1aqxllwatzm92','MzNhN2JiYzU2YmFmZmExNzQ2MDMzNWE1MTA1OWQxZTVkNGE2ZmU1MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUJ4NTlSYVNIUC1HVWpXWXQ1OGdqcWszVURRZ2R3MmR3X0RnZ3FmaTNPYmhLLXNPQXk2M0Q5bUdDekRDdUFxRFVjUGJzRXdzVkl3UGoyYnFoV3dtcjlTblVIU0c2NkxjdmVxZ1ZxbFlUQ044ejU3VW1HQ2oyaExqRnVPS1J4d3VZIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NjoyNS40ODM5MjIifX0=','2020-03-16 07:46:26.485122'),('sqejek5nygz8bgtf5g49tbggn3ua5w4z','NWJlOTY3NzM1MThkYjRmYTUyN2U1ZmI5NzcwODkzNTJmN2E0ZGViZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxVmJRcWtsVnZCRU1mdFdIdml0c2VJdDN4ZWZxWDBIdk9XTlZvTURPUi0wSTVVTHk5RUtKalNnSG9oNEwwT0VIQzNRRXhCT3lwazZOdW1ZUzhkWHZaMzFJem5WZEtkczVrcE5pOTVFSmlpbVAyRzVIVm15WUthLXZjdHFjQkEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjIzLjAwMDQ2NCJ9fQ==','2020-01-23 06:50:23.004053'),('sqvzz80udmw2dk7bdumvmytytf67q9t4','ZWE5MzI0YzQ3NDJlMjNhMzIyMDI2NTFlMWI3YzFlOTNmMzA0NGJjMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfbkE5YVpqTjZQaHdjWGtobzZOUDlXSGtfajVUUTVRZkZ4LUJxQ3ZOei1BYkJoeFJiNTg3ZlNzR3VWM3FqYS1NY0pVaTNhSjFQeWZvQ1EwU1NCZk1Cd1lLRTVWZ3UySW56alNQclREOWlhcTlBRDVfbm9PcVFiWkk4MmplZUFuIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MDo1Ni45NjcxNjgifX0=','2020-02-24 05:40:57.970848'),('ss3v49fwuw5sha3w28v5u3eet483ldyl','NzJiZjZiN2NjM2E5YzdjYWE1ZDQ4MWRmYWYwNmEzNWM3OGJmNDlhMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwdm1yZ0U4c3JhMnppeDNoNy1reDl2Um9ZbUozU28zb0czZWF5M1k5WHg2UlE0Y3NTSHcwcGJMMlpCLWtNbk84YWlRVUx6RXZpaHVDcjRjanpleWR6TkZ0U0Z3Q29FR1JIYURET3Z6OFYzZFlCcXAtbkRVdExZYWktOFc0WEUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjUzLjc1MjA5OCJ9fQ==','2020-02-17 10:50:54.753802'),('ssrtfks5kt9zf249ac1wccv7xhw3l01w','ZjExMGFiZjY5YWZjNTA0Yzg2OWIwOTYwYWE5N2I3OWYzYWUwYjhkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyWkp1MVpTSmFfOGYwRXQyeEFlTUF0Y2UyV25aUS03UEl0N0V1anJwT05tZXBvWmdhZzlBRWF2YnhYS2tDMlRmUFFKWmJuZFlhcDkwV09qRDUxMnRfRnVQVkhOTkkyR0JhVnprWmN5aXpuancwaHNIa2cyYWFqSUNpYVN5MVEiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjEwOjQ3LjgyNDMyOSJ9fQ==','2020-02-20 07:10:48.827802'),('ssswkr2chcju1m2u7eld6vj28jj6pmgj','YzI2MThiMjI2MTUzMmFjZGY2MmIxMWJmZWJhYjdjM2I2ZWYyOGNlZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxUHRTdFVtVTRNVlgwQmttQ2hHaVFvaDM5LUpaQjR6SS1SQmMyM3l6R2tVQlF3S0E0a0N3QlBPd1BYeWFpSnZ4UEdncUROdi02RVc1c1V4YVlOdktDTGl4RERHbkhUckNpSlByeUE4UlE3djliRlBQSG1FbVNlcTdsQ2JNdGciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjIzLjg1OTA2MyJ9fQ==','2020-01-23 07:12:23.862548'),('ssw4d4fpn8h57svh329705xi7zcurftl','NTRjYjE1ZjlmNmNlZGMyYzNhZTIzMmU1YjBiMDdlMGEzZjk0OTAxYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwdzJYdFczSDFPX1BXRTA5dGNPQkpxY0ZieHNzMTdKUmpxQmN1T3VDdDB1UWFZTVIxcTBLWjRIcGpKd3dranF2MmFMRTZaSGJpRFpkeWhQSlhWWURWa2JENGd4Q1NJSnpWQzVTekItdXh3QXZ5U1VpbU9tOEMxdEJEM19DN2MiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjE2LjYxMTAxMSJ9fQ==','2020-02-17 11:10:17.614516'),('sszfu5oy0iwst4a3cjlnkvcdrweowysh','MTY5Y2RhYjIyMzM3MjQ0NmVmZWE4MDAzNWFjODhlMjRlZGIxZTJlMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfSDFIVHZZZTVHaFphU0t5UGtUSWFTOEFyb3Zhd0ZKc0NZdTFDTjd4UjdEVTU4WUlIdVFFNjIyeDl4UVJWdktwY0MxbjFDSHRnU3ZCcDhuY2duNk1LTkJ0aUFMLUpDT1NmUTltZmxTNFh4Rkw0LTdPblhFMkJUQ3FPOUVzdGMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjI0LjM0OTI5OCJ9fQ==','2020-02-17 11:40:25.352744'),('su1myyfuljdsaiexfvl6uc2rx7a5vxuh','NjM1YWU2ZWU2NWRiYjYzMWUwMjRjN2EwOTBjMjc3M2EyMmIzZWZhYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5N1N1MndpR0tOeVVHR3BrUzRBUHZrWTExamRRZVZlR3IySUNEbkpxajFxQmc4YXJDY1BtZE41cWxvWDBLSjFwX01LVXBubVdnUnAyTE9yd1Nfd3pmR3IyeG9BV0pQNlVxNnJTelBJSWYzd280OUZaUzJoVkYxdmVYcVNOeWciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjE3Ljk4ODQ3NCJ9fQ==','2020-02-13 07:50:19.992005'),('sz5plob2nlajs94271qjpwaux1youuw9','MjViM2ExYzdhMzcwNzhhODU3MTU3Y2ZjNzVlM2UwNDY3OGU3NWY2ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5WVlhRUNZRTRrcmd1bGh2UjNmWUJ3cm1QY0pmODRieTdBUjZLRWIyOTN0RnQ3UDZDV3dzU1pWdi11TllNVVcza1BVdkNJdXVUZ3VZdERjaUhLN19FbHpPWkI2OHprY1NHTEVlYWNCNmd4NFFuRTktV2dFTkNRcVJmb3JxZ2JZIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDozOC4xNTQyNjIifX0=','2020-02-24 06:00:39.155365'),('t10t55a7p9tv4o7eqqyutwq2vsym7bgp','NzA5M2QxNzU0OTY0MjU0M2QxN2VmNmQ4ZTRiNWVjYzFlNDgwYjRiMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ5R1djbEhVOVEzT3B2eFNOWW9uN3AxdnJ4RzNsTlNNVDIzdGhlUGQwQTJMLVJST3RIQ1I5eU9tT01sSWpRQWlRUklRblFacm0xMzVtalFJdlY3UW82SzRxdmpZang1MVpTUlBHd0lwb3BiVnNBTm5ZeFN6MGVwMHRUM0pPWWsiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM3OjU2LjI3MjA0OCJ9fQ==','2020-01-28 05:37:57.275483'),('t1nd2an5jancx8mrjgxer0crccsk5owy','N2NlMmEzNDYxNDQ3NjQyM2Y4MTQ4YjlhZjlkZjVjYTk5ZjhmNzM1ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3WFhtR0d2LXEzbFZuRDZOU3dWdUZxRWtkZzhkVHN1S3Z2ZWNhcEVja3NUdmVrZTBGLU1XSlBFdVhua0JsY1c5djRqTUZWRHpuODZmVDVDWW9SMDYyS09OVVpJRS1GUk9ZZVBzcmd1d3pMNnRPZldQdlByY2RmVThySDhjUW8iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjQ5LjQ0NjA5OCJ9fQ==','2020-01-23 07:11:49.449537'),('t2w7pewogbpzysgbl6u7u7roppg3b8jd','ZWNkYzBlNWJmMTcxODBlY2U5NTM2NzhiNDE1YWEwNTgzZTE4N2UzMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIweXp6NHdNRVJFWklDSnYzcUcyMWdFNjZid0Y3ZlVIRU9BRHZ4N1pubjV0QTE5T3hyOFJxLWFyY1R5Sk5VMnVvMm5XbDBJdmtxbHd4dXFNdXRjaTA5SFM2MDg3NURLbFluS3Frd3ZoUkNNSzM2cGhmTVZBbEpKY1FVaTdrZjQiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjI3LjgzMjc4OSJ9fQ==','2020-02-03 06:17:28.836261'),('t3bqvqf9iafj0itgmq23hmh9g2i8g77b','YjJmOWNjMDJlZjk1Yzc4YjQ2NDBjZjgwOGExMjQxNTkyOTY0MjRlODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfVFZ1QVJ5cGFES0szQ0kwUkpfQUFZQmh4ZTRtZ0FIbVFGOHhvNVZjeGs2YzlJVm5PS0NZNGQ3Mk5oU2tMYV9IQ1dMRnRzZ05ia3QyRF9VbnlVNm1uUy05Si1PbkZiUmxyYjJKWWV5ZmVzUVpnd0NUZWpVeDhZcVJEVVhYUkUiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjA0OjI0LjQzNzM4NyJ9fQ==','2020-02-20 07:04:25.440912'),('t45rdlfk8k959wmkhz6q0mkv5f8qyrtg','MjRhODNlYWQxMzBlY2ZlNzc0ZTM4ODNjNTUzMzg0M2U2NGI1YjRmYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5d04xb1N1QWYxX01XZTFiQmZXYzFvRTdaZy1Od29pWTRCMm1wV0xJaWh4NDBqTEQybVd6LXQtM01MVUNjSmhQQW1XalhPUG5EaUtLR1cxZGRndVEtTjdSMGh0cjhWRmxpS0RsdzQwbU5EUFFtSV9KVHAtdl84T3FSTmNhazJrIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxOTowNS4yMDU3OTAifX0=','2020-02-25 08:19:06.209253'),('t4ioo4nk89plc5ifwj0r7va8sgx121u4','MTExOWFiODYyN2U1NTExNTRjNjRhYzQzM2YzODIxNjc1ODY1NDVmMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXRGNUa3JLQ25yekYzY3Q3SHJSSl8yYk5kZ3FtY285bE1xMjI5aEtDd2NQRHRaM1BFbjVTbU05NGJYSk1STzZKU3duSnNuTTNoS0tTZ2VIOHJPaHNscWRaY2xmak9jT2xIR0dPY0ZwMkIzcXdxQV9SalNHanY5U2VCcmRtMW05dmR2SU5pOWVjbEo0eXEtSVd5NjNsUXRLNGgzVVlOTkhnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoxODo1Mi41Njc4MjEifX0=','2020-03-29 07:18:53.569396'),('t4pm9kaz56pbd8vbyhu8ow2aa7rg8goe','N2JlNGEyYjY1MmYzMjYwNTQ4MTg3NGQ1NTA4MzYxZjVkNTE4MTcwZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0I0aTdQWEMxRU9LQ1FGdG92QXVGTFg1cG42Y2xIaTdrOFNkTFVlcHlyLXg0Q3NaTHpVaTZ4cG5uZ0FHQXplakVLYWNQRGRMSEliSDI1UTk2b1lNdW02RVBwanN2RUUxN2syaVF4TDJoRm14M29tTzF2aG9qWllBOXp2b3Raa2pXIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxNDowMC44MjY2ODgifX0=','2020-03-10 06:14:01.830160'),('t6pqpi6hxjbknthywujxn0fjxjyfxlqs','MDRiOTFiODcxMzk3N2UzZDA2NGFkMzc3Y2RjNzg2NTZkNDVlNTdlMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItWGF1aTV5c0NMZ3Z5ZHU3SHFJWVZ0TC1xUUwyT09hNFZNUk1MTTBJUFlHX1otVEwxak5aZThGNExBVTFKcEF2LWg3eDlsOGU5XzluOFc1WkVBVFB3dlFRQTVQa1pCbkhubmZZRm05enU1aGpVeWd5czNSMGdWRUU0QnNwSmciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjUxLjY4OTg2NyJ9fQ==','2020-02-13 08:00:52.693276'),('t7vh0emjx4uqjd8ncxotezl41l66iro7','ZTBjMGVkNWVmM2I2OGVjMzVlMzEyMTdjNTIwNjg1NjJhODY0MDY3ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2cU9lVVQxNzNqeVNQdC00TlJTRndsRnV4UHM3d0pXcmMwQmFwbHh2VF9yNzVmbXVJU25hbkhtQ3AyeGFudkFuRHo5RFBWazJUMFh0SzdyOXplUmlzdm9qbi1pb2JIWTFZbXQ0RDRhTXpndmQyWFhhWll1eGdpeW5uNm9nQ1kiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUxOjAxLjQ0NDU4MCJ9fQ==','2020-02-17 10:51:02.448045'),('t8xa6fp7ye3tsjamv6m8nzgryp7mdytc','MTY3ZDk4YmUzOTVmM2ZhZTQxOThjOGQyNmE2MzE2NTk1YjIyZjljMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ6c3hLUWhvaVNrU002X2dIb1JpMzFaU2VLb0VLT0tyRWFsaFl2YVQ2RWlsQ2QtLXdCUVpzZmU5aDI2a3lGUUx0RkJONjQ3YTlyeG1KUjRmUmtPOTFieVVzSDgzRzlRNndQUmFsMkk5blJTcWxMY1hyakd6TWRkSFFkcFJDSnpQIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOTo0OS42OTI5MDcifX0=','2020-02-26 04:39:50.696338'),('t95htvo4jkata0p322sdsrcrgtn2ioob','ZjRhNjY0MjVhMDllNjVkNGM3M2UzN2VmZTE0Njk0OTA4MDkwNmJlMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzMkJRYUJrUWpHTm83RklIYl9Wc3RUdWV5ZFRkRUZ3QnczMnRZeC1ibjhlVzZDejVadXBla2ZiamZmbkdkTGo0bTJURkw4NVNHOXNLcEJPVllQbWExZWlWSmFyRG4zc0F2Ym94MURjN0NKZ18yODZHR01YeHpSOTdhR3ozQlkiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjExLjU1OTQwNyJ9fQ==','2020-01-23 06:50:11.562814'),('ta5x12k2p7tuh1qn7wt3nlvra2fjp3yo','ZGY3MDMyOGY0YzY5MDRlZDAwMTAwZDA0ZDI5MDQxZWIwMTAzYmFkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6Y2cwckxyZGNhbS02MjlMY0NMd29vUkRLd2FvUkZ1LXNPZGdLVlVBMjVNOGZlUi05TE9sMFU4V09LLWM3ZEh6aTdQcHFYYmR4RlRmN3RHdV96R3AyTDh0MnlBNmtNaEd5SWhJd0c0amQySkctcmdOZTFKcUljZWpxRE81MmMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjEzLjIwMDQwNyJ9fQ==','2020-02-17 12:20:14.203963'),('tdlu42lwsjbt6lh5qc20zgb2b7ig8u6k','ODc4OWJlNTBiNGZhMWY4MTM2NjE4NGUzMGFmMGQ0Nzg2OTJjNjRkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfSkVBME91aVJTTnRidTZGQXhVQkhEQl9nbFkxc2ZSby1EY2x2aWRsUWgyR0NpYmJLb1lScF92WDI1UFFYa2tNSzBNVjZVNGJ6d251TUVPUmFFUWl1UFB2NERGZUFHdDhSR0lFeUt3SWVja3J5SHJ6Z0F0RlBtMERHVXdnUjdQIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MToyMC4zMDcyNDQifX0=','2020-02-24 05:41:21.308785'),('tdwnf7mkx6raudhe210qgo3l4f6dttv4','ZWRhZjA5Y2M2ZmY1YmFmYTExZWY1MjU4ODZkMTEzNzkwZDQzMzNmZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0TU9JZzV4cjQyZ2FpTkRjdVh2LU1uQW9QOGNuOEEwZUJfQkJGMmNBODdxUWYtZnFySW1YclhrZkEzS01xbEYyVWxHYTVuUC1oM2tYa21MMFN5X1R5bXdFOEJQTFJTUFRqNEFHSnNzRlFYQkJOOWgtM0ZIRVdEcFlLY1MwUWppIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTo0Mjo1Mi45ODUzNzMifX0=','2020-02-26 04:42:53.988430'),('teln2mgsd6q9s8dq9jc1d050koxxrqmx','NWJjYWQwYTNlZDUyM2JlNzlhZWNlYmMyZGFmMjNkOGIwZTJhNzZiZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1Y0I4aS14bTNjeFFvb1l3dHdYZEV0ZFZreTBTTDZWRUxpTHRSNlRTRHM3TmhEdFpvVE5acnBSWWdlQkVRX19CX1NjM0FYMjI0eFd0S1dJVUxIbFdYR1FuMDduUC1wNVo2ZFd2c3lfWGtxcU1Na3B4NFdHZjVRN1dGLWNUZ00iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjQ3LjIzMjgxNyJ9fQ==','2020-02-17 11:40:48.234013'),('tfsaw79puwl093mwxpptnh6kbwhjkqof','M2NiMzUzNzQ5MjdkMjc3ZmFhY2JlZGM4NWIwYjFmMjBhNmNhMzNiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyM3R2Q3dVTEw2UDlvTDRrU0hSQWhHQXpXTHZ1OE5QTVNrSkhBTmRVV2VQR18yN3FTU2dxNXNTUG1oczM3c2w1OVhpdjFzTEZJZmNERkxTdm5LdUpPQ0xPR25ITUluTlByd055bHdTeFdHTWxQM3RnQklyLWdncjNRaTNRd0kiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjMwLjg0MTIxNCJ9fQ==','2020-02-17 11:40:31.844621'),('tfx9l24cqp9e0q90tn6sben6ddxi8q9f','NmEzNWRmZGEyM2FhN2NhOWMxZWJhOWJmMjQyOGUyMzRhZDk4YmYwMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI3TXJuN042RVA3UFpfUkJBNUo5RkF5ZlpBeGZYdGRZY0NwX080Mm9pUXFxaUFzbXh2QmtPRFMwQWFwNU53cUptcmM4QllqZl8yeV9BQ3ZKbjJsZC1RSkFOZlpCQll3WVpvSVJtRzhMdy02Z241S19tWTIwdzFjMHNVZWk4UzgiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjEyLjY4MjA5NSJ9fQ==','2020-01-28 05:38:13.685427'),('tg72dvuzo4ibpxaog38smcp3k9d6f4wf','NjU4OTgwNjljYzE1MDY2NDk1YWQxZmVlMTg2Y2Q4MzFkNDRjMGViYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4THhxYkFuT0RDcF85YktwaFdobGd1NGVQMlY5M2V6SDJhamw1T3F6ak8xRVF0YTN1TklvcmljOUtNNnIzUGlrZ0Y0anhSQllWeGVLOTRubmRTc3VHRjYySTRLUjBUWFR4OVcxMDhZcXg5U3M2VXZJVXM0YlpjZG9NYTI3M1kiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjM3Ljg1NTIyMiJ9fQ==','2020-02-06 12:20:38.856665'),('tgh29dxt5xt9ciupr7gmp2cj1o3nqajo','M2M3M2ZlMmQ1NDNjNWZkZjgyNjIzMzVlYjJkYTgzNmVmNWRlNzhkNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyUXpReDJFTmlLaGlPOG9na2N2d1VQRUZzdzhja3h4emg5VHNMT3lXczY1QzhhSWNmNmVnOU5GLXJNUjgxZkhMX0M0VjBhVzVXX19SRFVkNV9QRFVKZHlDcWJNYVlUckNQUW9RSXJITVVWaDVzRmtPMFhTaGJNOF9CYkM5T3ciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjAwLjYyOTgyOSJ9fQ==','2020-02-06 12:20:01.630880'),('tgsatx8nl7hkhqe2o2ok0l6om5bzu1ny','Y2RmOTVmNWUzZmI4Njg4OGVlMTQyYWFjMDQ1ZjYyOGY0YjcxMmU3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4LXEwelJ4WldKYUhfdzFQUXhwUUhDekZ0QkZ3TGdyZDJBcXdHR0t5RVNXQndNZUJhM2h2QU5BaGJIaFpqenJ6MFk2aEtQYW9DYUI3QjZwWFg4QzM4cnBpV2hlc3JmaGQ0ZUhKeEdLQzFjUGptbGpfb3FBbmZuNTFDZ1VNcVkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjQxLjcwODc0MiJ9fQ==','2020-02-06 12:05:42.712252'),('tgsn4yv8pgzrhsylhcnkthivq0j0b7ou','NWM2NWI5OTlhY2E3NzQ4ZGVkYWNjMzc3YzJkNjk3OGY0ZTkzZDdmYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzZ3V1ZHBJSHhqMUV6THBOSmRMUlBpMk5VMEpnQmxKX2FnVWttdjdrVndueUl6aFJ2aVpOMC1aeFRRSUJCdHZLRDRWN3FqWGxyeDZ0VXRGNkJBRTFXdjl5cDdlak9TMHFXYlRvb2VXWkJqeWd3RUYyeldTc0x6bVVwMUNjRUkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjQwOjM0LjEzMjU0OSJ9fQ==','2020-02-17 11:40:35.135924'),('tgt6pz13gicqydwlv5b965yhnqesdeqz','ZjUzMDA2ODkzZDAxNTYxMmUzNzQwMmZiYTMwZTIyMzc0NjA5ZWNlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1S3F5eHF4akF5YzQ0VVo5QllyMklkSW80OWl6Yll4VkEwc1dydGNxeE5UWGxwclhqa045U1d5SV82TGZ6ZmRCSUF5Q0lqNlZqME95V1RCd09xczIxNUk3NXdiYUpUdl81bUxOQVU5RmR1YlNDemFGcmlpY1BKZnBsTHh4UE0iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjM1LjEwMDQ4NSJ9fQ==','2020-02-06 12:20:36.103852'),('thbhnb3k9g99t4o58yb1eeynsutnm0l8','ODYyNDMyNzA1YmY2YjY2NGJlMTQ5ODZmOTY1OTI4OTQ5NTllZmNhMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0ItOG5Sa0dlU0wyazM0SjVORzB0TDdERE1GYlZCN2FXNDZmcmhPbVVvSThXdEJCUk1jOTJ2S0k4Q3Q4QUlfbTAzZXBnQWRHMmllNGF5ellBdlp1ekxKbFB5NzhBcWkxQzVxendRRlZLS2tyOGgxSDE1YnN3X0VJN1p4Q2diYU94IiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzoyMS4zNTk3NDkifX0=','2020-03-11 10:33:22.363419'),('thd247ulc1a59z6reg4imwhlbnfjh1v0','MjQxMWU1NjY2N2NlZTJmNTg1ZWJhNTc0NTg4NDUzZTRiODlkMmJjYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0SVhJQU9RZUt4ZVBUa2hEa0dTOWh3ZzVZV1htUlJHbFNGSkQtWGhCTkVWRDVPRG05SjRvUDBUb2lMc0p2ZDhMcjVScmkzYnpvTjZYWEl4b3Q4dm9BYm43YUZPdnRLRW9kRzlqeU1kOWhtT1FCTTVoY1lmbUxVRGNQUjg5dUEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjQ2LjU5MzYyMCJ9fQ==','2020-02-17 11:10:47.596873'),('tigx71v2whtezrpbcvr3ryy7etqf43j6','OTk4ZDkyOTE5ZmRjOGVhNDcwMjBlZTU1YzA3YzUzMmE4MDc5Yjk1NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxVUdjOUZMUUhKbjVVdlBFS1Q5U3A0R0lyS3JvNTdoZ2RVbUo5UWRyNV9BSmhJWElPeS1NcGw5UFpPOGhSdHU0c2o2cGtNTDFoWUNyS2xnYmVnSjFJMmNqdTlieThVSkcyN3dqRkZvZlNrWEd0ZUUzYzYyVENLWTNlMWdtSlkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjE5LjAyODg1NCJ9fQ==','2020-02-10 08:10:20.032771'),('tjrr3u0eqs86e0x13e1e6zjs92300r0x','NDBjZDQxMjJhZTA3ZDc2YWIyYmJkNTM3YjhkNGY2MGRhNDVjZTMyYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IycDJrZGpPVGFXclNXbk9XX1ZTOHRIRjU1U3RCOERTRzk0NVBxdmFLdGxFRm5YN3ZaaTBHS2RFd09FbGNrblpIV1lQRWhEQXhSWnREcF9XeFFKdlhmQnpSd3JzUjc0M0dlX01sR05TeVRoSk4yZ3FfRlJHbjdFRlBxOUM5a3ciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjEwLjc4Mzk4OSJ9fQ==','2020-02-10 07:50:11.785183'),('tknnv2cb3kqvlc0d1ejus7z7oj5dli29','MjhmNmFiNjJiN2NmMWQwMTMwOWFlN2ZlZDNhOGMwNDczNjZmM2Y5ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxQ1ZYNUY5SG9UX3VqMGhYWWFMWkRzVVM0VThEMF9oZ2xaRVhBT05HRUdzOGpTeDJOV0YwbS12cXFqc3NPbE5uMUJ6WDNsVmQzUFlObW8xc1dTamFhSE1MWFhZRnpNcFdEN20zUE5lTGFicE9kdk12NkgtVDd0TEN4TGJXLWsiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA2OjU5OjIzLjA1NDY2OSJ9fQ==','2020-02-20 05:59:24.105013'),('tl5y4tizr4eh09k99m5mmris9lpbp4rx','OTk5NzIyMzk0MWFmMTg1OWVhNWNkMWM5NzlkNWM2ZGUwZjhlNDZjZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5bVNfRzh5cEEzOGpHbHJxekZ3Wm1xckpnMGR4T0ZISHFLR1NyaTJMLWNlSVVSUlVGV0JCcTN2b2VTRWZtUHRneEFhRWpPeGJSaWR6aklwRXlsbEx5cWZ2TldCSm83d2libTBDYl9iTFpTUnNBN19wd183RHlSMUk5ZnAyZVUiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjU4OjM2LjA0MjcxOSJ9fQ==','2020-02-18 05:58:37.046180'),('tlk1uk7e4md0z05uumgp3v4mg5tqsbrj','ODk1ZjkwMTcwYzE3ZmMwYmZjZjIxNTE2NGM5MDMzYzZiNjc1Mjk3ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI3clJ3QTdtZVp5WkVTalllNV9ENWtjMnpFdGVaV29HRnE0R1VUcUtMcmw2ZnA1TlhKLXA2cnpHUG95RV9zSlFUeGFkcnU5YU1oS3ZEZi1lVlZNRUtHUDdMRTdmUjJRTUt4RHVRaTFuT0lhOUpUQ2RSR3pIb1JVam9ZSkUzS3MiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM3OjQ4LjM1ODUzOSJ9fQ==','2020-01-28 05:37:49.359680'),('tlszmm4b0ls1b3gqvnnh6m5rj3c91cow','ZGZlMjFhMjAyOTY5MGE0NWVlZmY1OTM5NzkxMDg5Y2U2MGZlM2FiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItZzgyNVlhQVVEQ21ENFhDNGhwRmNISF9ob1dKdkd5aVhYci1WcHJ5a3hETWtvdkw2OGFocldjWWxxM2RHZm1RX2xZZlpNLTZEcWJablYwZ010ZzRLRnAzclJrSm1ZNmVhbzhuMnRPeVZXbUxLTGRIclJ6N0JYV1ZvU21rdXciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjE0LjU2NTY2OCJ9fQ==','2020-02-06 12:20:15.566772'),('tmbmq5krfcb5dlxr1bas2d9mf9j37w38','NDRjYjgyODc4NjczNmI2MWUwN2YwNGJlNDc5ZThkZjBlMWExNDJhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6UGxaZzhFU2lXU2t2OW5rWmZQRmlZSm5fUnVoc0xnY1dpN1RBWDdyYXZ6TEE5N21iOU9vWjZ4eG8zNDNTaVR6RV9WMnJZOEZmako0eVJoWWtRNV9NdHo4eFFpLWxaN3NIZHAwMVItNmR4M3VIZkhBZjFhSWx0WkoxX0tILXMiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjQzLjYzMjgxNCJ9fQ==','2020-02-09 06:50:44.636304'),('tomvac5u9qelc9aj0ds5wfa8xiq411vy','NDM3NDRhNjBmMzRlZmU2NWIwMjkxNDM4MjhhNGQxNGQ0OGM3ZTBmMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzZUJWc25qMXpGYXNtWEJzd1U1QV9zVmFZZ3RKS3hwVFBuZHVUYnFNU2cyaWVkODEta3AxQjg3cERWX0J2YXBzWlpURGI5WmlHRk5QZ0RILV9OSExnMDFNVjV1clUtV3UzWU1kdUpkbVNQUWd3N0lqLXh4a1RnWThOVzUyaVEiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjQ0LjQ3NjEzMiJ9fQ==','2020-02-02 06:01:45.477245'),('toxm3e8e9950m9p9pxh6e7h6scfh0ho4','Y2NiZGJjOWRhMjgzNGY3MGM1Nzc5OTRiNjI4YzFiMjNlNDkyZmE3Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1V2xkSEV4YjRNSGZGLVdCZzFwbWtwMlNSZTBlLUFjWnMzR2xmMDdZNXItbnBZcllMTTVXZkJMN1k3WlZ5cmZqVUVZNS1HeUE3cEhfNG9GQWxsYmJ3WmN0UG9QSHNweXRQOVU2TkRaUUFOZkN1NXNHLThpZDB1WXJkRUpkZHciLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjIzOjM1LjU0MTk4OSJ9fQ==','2020-01-20 09:23:35.545481'),('tp180i4sx23q11n1up7gvupph0f9d7wl','MzMyZDc1Nzc4NDIxMzNkZTA5NDc5NDU2Y2Q5MzQ0NTU4YmE4YjAxODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfOE1GWDM4QlBDMkFiZ3VoWmxSdjVEczdXdnpkQ1p5alJjT2RzNE9aTWI5cXFLaUFrdHJySUllR3hiS3NSOUNHZ3NTOVR0UWxQY0tYdFF3V2JfNHBETVVVRUI5NFNJaElxblhLb1ppRHIxeEdDcTBjOEZNUjFjcWJ5UHZQbjgiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjMwLjI3Mjg4NSJ9fQ==','2020-02-18 05:39:31.276772'),('tpw98eth044ra5rbq9uuvuyhz5y0is35','OTUxMTZjNTY0ZTBlMjdjMWZiZTEyMTcwYTU0NzAxOTc2NGZhNGIzNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ5LUtOSGU2bDF5RU1ZLV81cWludFlDeTROTDRzZHF6bGI4SnQweW16NWZJTWZaNV9UbDc4N3B6UUtpYXEwVzM3ckZsZGg4RTJaT2ZfV0dIRTIxSFNOcWx1Z0VhNUM5OFJIblg0VlJQYjVyM3pXUlNGcVJhVF84ZUJ5dlF4Z0kiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjMyLjk4MDA4NiJ9fQ==','2020-01-26 05:47:32.983632'),('tqbs4hmwdrxc0sairz3jjlx2a4wr3w9x','YzhjMGU1NGU2NzU2ZDEwMzAzMDBiOGE4NDZmN2ZjNTIxZmNjN2FlYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3cC1SblIyM2VQXzloa1RSRHRkWkZFVTlnOFVpbm8yWVg1UnJTemxlbUJpYTFiclh6SjM2T3NZa19Kak1OMmd3QTdPenpiQ2djb2pyR05kTWY1YVVCdUdEVjRpSG5xUzZMZFBEUWoxZGJ4b1BZQ240blBnLWFwcE9zYWZsODAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjE3Ljg5NDYwNSJ9fQ==','2020-02-06 11:26:18.897848'),('tqqrp9n8gtawtyln88eo8u7o15crjb50','ODcyZjZhMDE3NDI0ZmE1MGUxZjA5NzNkN2I1MmMxZmYxNjVlODE2NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5SmFRM0xPTnFEMHh4d2tJZHBLQi1qS3RUbEx0VlRZMF9UWjF4VUVyY3Z0c2FYYUhKN2E3Wl9SVklOZ3JYTzdPZWk5TTJaeEJOV2lUWHp3dWVOZE5WRGlSbF9DR0pYMDNKOE9ia0NSQVhLN2t0Ykt1S0pXT2dhbEVPWkE1YnMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjIyLjM5MjEwMSJ9fQ==','2020-02-17 11:00:23.393520'),('tr7pu1wppaicoo8aqeq2yf6ll9mirpep','NmFlZGMyZWFlNjU4YzM0MzQyY2ZjN2YxZWIwYjVkMjQ2ZDM0YTU5Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI4a3lQU2h1aXRhODl4V0JmSEJ5a1VuTE9nZ2hTLW1MbGxCcW1ROVM4Ql9fV2R5bUhXOWl5T1FjVWtzbWVJZVRYdkxsZ3JJZ1NvekN2MjZDMzh5VlhuMHhUOS04dTN0UXBFd3NZdFBkLVRkRXpTRGg0dG05U0g1SUQtNzNSM2ciLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjQ0OjMwLjIyMzg0OCJ9fQ==','2020-01-20 09:44:30.227347'),('tr9hjbyjzx5d6hnwqb1p7e3q3k4u0z2q','ODhkNjM1MWQ1ZjM2ZDg5ZTA1ODI3YjYxZTQ0NTI2YjczNDdkZDUxNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXR05uUTdwaUwtOF9CMlhkOHFoZnQzME5CZWd2dWhZMmRQX1pmbDZyTlF1Y2VLUTFJR1U1ZWdzYTVnQ3R1ZWtNVUFBclpVdFU3MFJ4ZEJmeXN1WDlzS3Rmc1Y4U1dJTXFPaDFBbmlab19nN1pEUlZoamtEdG4tYWxENDNEN0kxYjBFTkQ4RFBWTC1DMFFxck11d2V3NVp1V3JydU11SDFRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNTowNDowMC4zMjQ4MTIifX0=','2020-03-29 08:04:01.328176'),('trhz5xs5p6kwwkciocz0zqx53b1kgush','ZWFkZTIxMWJhYmZiZGU5Y2RmODZiNjc1N2VkYWFkODVmZGEzZTk3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI0eXJESTg3Zlh3N2YyRExEQU93Wkdzc2FtU0RVU3BYS3YyWFRrbk1wcEVraWNEZ0JHU05HRE5paVBFWjlZZERkMnNHOGhKMEhzZlUwVVh2SHU5amZwNDMwNkRLMVRrVDlTUTlDaGppV1FsejhlcU9qZm1Ga1dDZzU3S0RkblUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjEzLjIwNDAzMiJ9fQ==','2020-02-06 11:50:14.207490'),('ts2vwa98hogijbj9a0hwf8bkyb224e7u','NmUzMDZkYTkzOTFlMTdkNzEzOWM5ZGUwNWQ2MTMwZDE0NTY0ODM3OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ3Tl9HZmpxOG0xUEFnNFRWTjN6N0RYZHVrN2dDa2VFeEJwOFN2UmVjRVkxeE8yVUNVWDhzSFpVeUxnZFhxSkc3QTFSU21MbUw1TzBOc3RKV29FM3NJNENKZ2FDT1VITTV4NkE3RmFaTEl0ZXdMRElmR0dwOVFuWV80ZFVMbmciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjQ3Ljc2OTI1MSJ9fQ==','2020-01-23 07:15:47.772753'),('tsagp8ev43stip93l5ua5f14mll8xo9g','MzNkMmJmNmYxZWVlNTliY2YxYTFlNjY1NjE2NTBhMDY2YzcwYzg0OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2NXB5ZjdFY0R5Y1U2bEQyczFMck5icTZtV2ZTMUxzNGlxWnFpUTAxMmlMQTBKdTNJTzZhdFRObWJFMnJ3UDE2Vk9tcnVfcUdKTXZGd0hzQkVVNW5mYXR3QzRNX3lnYmQzMnlzYXcwMzZFazdGdXRUcnRLQXBHNE1ucGczTTAiLCJleHBpcnkiOiIyMDIwLTAxLTE0IDA2OjM4OjI1LjAzMTIxOSJ9fQ==','2020-01-28 05:38:26.034825'),('tse88dflko22mj7je0ekszzgnbb0ru5b','YTJmZWQwNTBlM2JkOTIxNzk5ZjRjOWEyNjI4NDAzNDczZWQ2M2QxYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI5LTk2d0IwSEVrMlBsUzI1dGhyRjNVb0JvOGlvNF9hTVJfR3FmbzA2MDhhcG1mWVhLaG5qdmg1MW5xVGVaVGFOa0pLeXBMNVVZb0Q5dUJkYnNtQ2tfdXhrRjk2bjJmZFdmYnduZUJGaXN6SVBtSjNfaFAzWmtWYlVwM3NGcGciLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjUzLjMxNjgwNyJ9fQ==','2020-01-27 10:58:53.322723'),('tsr0pjchr2kvbplsexs4thoow21t9eeq','YmJhOGI5OTczN2JiNGE3ZmYxMGI2ZmE5NDc0NDM3ZWExOWMwNjMyNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwWVBKMHY0d2ROYTdvbG5weHItYkJKR3J3b1lXc1BDcVVtbDI3ekUyNF9ENzBlT3lTck9LNEFfU0R4TXVUX3huMGhIdHAtUmVMVGEtbHZGUjVwMDZQU001OUF3MDd1SldQa2N1N2pQVU9RRzNJYUtsaEQ4R1MzcFhkTWNnVm8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjMxLjE3NDI4NiJ9fQ==','2020-02-17 11:50:32.177855'),('tu5dmwyspoo8hr3qp1h2p3hd6ha46ols','MjhhYjNlYTg4MDI4N2QxYzk1MmYzYmIwY2YwMDUwMTNmYjUwNTcxMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5Rng1Mm1laGVrTjFqSWRuWFd0UEhnVFFYTXotZGhNd21wRW8wcXJGVkpkY3U5SGkxVlVLTXQ2bXQtcjI5QTBIRUlxa19TOVBZS283ZV95ZWM0WEZkSTRMMl84MG01MHlnRjlEVlRfTzhLcUUtZTFobmdXa2EzZlViR3RQQTRNIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMDo0Ni42MDk0NjYifX0=','2020-02-23 07:10:47.613030'),('tvd79b6y6zu10mx8hmclr8kllgf4zi4d','MjgyMzk1YTZiNzQzMDBmYjA5MGE2ODYwMGFhOGVjZDA0ZTQ3ZmQyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3ejNWU3lNN2pEWTFvTFdkX0tRV2RLM2htVnBVU1k5N1NQNW9vNTF2R21zY2tjQ3RhWUFGVDFnME9aRjJPTTNObXU4cVhXMHFvVHg3ODlVWGttNHp1aWx2Z18zUmZNclJaMkYwSVRzWFVEc2xFS1phOV9GbGxCeXFicExQNWMiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjA4Ljg4MzE4NSJ9fQ==','2020-02-09 06:50:09.886648'),('tvimnziekdbgyx0jcrfilvfs3o14vfjf','MWQwOWJiNDc2YmM4ZTk1MGJlNGU3MDRiNWJhMTE2Y2E5NGE5NmRkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4eVpHN2llQVEyX0F3Wl9zVXNDR25sNHJHT1Nab01IYnhwbGszTUxtcHRKMUxWSWExY1FVQXN4MFd6U3pXaDJ5NFNjMW1GRTVrTko1VlhwT09GaFZRU0FaNXRZeXZjNC1feXpBWVdFemdZNjU4YXRGZERrSkxpVlZIbG95NU0iLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjQ4LjM4MzY4OSJ9fQ==','2020-02-16 03:59:49.389365'),('txrx824ylzxs8vq4irxdc1uv28vxyeyl','NTgxMWFlYzBhYjQ2YzZlMzYzMzNiYTMxMDFkYzFjODQwNzBiZTIyMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyRjdGNWNZYWRqVVRzOGM4QmJTZkZaWjNhZkxJNFVDdmRHSmk2WndZeFFUcXJQQXcxdGZtVERDaFBVTkI0R1NudFZoSUFwdm11b0ctN2RsbHpWQnJuOTI5UXV3SGFIRU9IaFVXMjFXRXdwXzdkSEs2TXVwMUNTbU5PN1daazUtIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMjo1NC40MjMxMTUifX0=','2020-02-23 07:12:55.426634'),('txxwh8doab4ks6ehhs7irzrdzttaq7ma','MjFkZDYyYTliOGJkZTQwYmI2ZTE0YzZmOWMzYjY2ODc4ZjBkMDFmZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwLUs4VDdjVWptcDdKVzR6XzQ4VFFqMU1MakNmbWVhalZyaTZ5YmpGV1VCQ0pIMGNpdVpBeVpGMEZlcmNRY2htb0lWdFdVX0twUVFfMDJUS25XUXZBTF8xeGVGLUVOR1drLUt3SUZhdWpiVDN4MDJvcVhGN1JVeVFRUzVwMmsiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQ4OjU4LjU2OTUwMyJ9fQ==','2020-02-18 05:48:59.573025'),('ty1udt3c3a4mhu1bttk3ie4zp5hvhjac','MjE5NjUzZjAyYzAyZGQ3ZTRiMjQ3YTc0MTM4ZWJjNTQ5MGQ1Yjg0NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzc1NSd2pBZEg0b1lHbHAxd0VRWExESjZQdVVNd21aNk1hU09SdzJtTm4wM2Nfd1dOV3lkZU1wMnJRcnl4c3Yyc0pjM2d6RHQxZFE0dm9EcFZnQWJaUjkxODZnRERmV25ONjVnNG4zTlhZaFZMY2ZIM0FzNGxCRmtVa3JQUWJCIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1ODoyNC4yODEzNzMifX0=','2020-02-23 06:58:25.284666'),('tyzwjok78uprljcr3kwikytkvwv9q2j5','NmYwOWUwOGI0MzEwZjViNjQwYzRhYjM3NDU4N2VhODg2ZjY0ZGM5Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyTkNBRTFMc084Y3VPc0JQdndKRDByaWlEenBtdW9sTkdZRzZyRlpqcHRDRVhZNFBBTjdxcDRuZTNmSXFfUGRKU3RsWkhMMnlFNHVkN2pBVThNZGU4WGp1bUVITGI2bHY4UGM1ajBzajdXb095RU41dDFEU0lseXM2bVJfeEEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjI1LjI0NDI4NCJ9fQ==','2020-02-17 11:20:26.247779'),('tzehma3n0dsv7q1cnclsmjgfj1xbjzdj','MjkzNmFkMWM2NDE2M2I3ZGE0YTM3OGZkOTQ4NTY4YzhhNmM3OTE5NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0azNncnVOekdEMjF2MGVJdVpYeFRLVXZKMGZMeEZ4V3phel82d1BkYkRWS0FxQUlNcHFVakNiYWcwZDRybHI3NE9Hd2ZoRE02LXZKNGFlUEJKNFh2a0M0RlNNVE1od3JKZHM1ZVM4MnJRd3VoWVl4bVFkX1N5OGFpNzFGclEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjE4LjgwNzk2OSJ9fQ==','2020-02-17 11:50:19.810213'),('u13tyji4udidlyqnm8u2z9yv5oeyds8k','NWMzZGY4YmJkYjNkMjAwZTg1NjA5YzlmMzhjZTdmYjg5MWQyM2M2Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5Nm1OZzVRVEYxc250bE9ncmpycUNVMlZRZGV0LWlCTzVCNlBiUkZmOW1VVGQ5SEJtY2tVUk5ObEhJdHVBTG5pMVhmU2ZtdUZScEkxakFiakNxMUF2eno0RTdiN2hDMHVOcmQzTnJ2ZzVoT1ZEYzA4STVuN2xORnFVMlF4a2RiIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1MzowMi43NzI2NjgifX0=','2020-02-27 07:53:03.776033'),('u14eyriwlw7q7bqrdmvj0dur8p7p6uon','MTczMGMzYTY4NDI0YmUzMzI2ZGEzNzhjYjk0OGQyNmViYTdkMGEzMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzbnFxNkgwZmVlRWI2cTI5dzg2RVVsSmNEUkQyci1nR0FSQS0ySW5jalJYeXp3NnR0STVFcm9MdGhaX1lmS1l2VzUwV0xTRVJYMUhBZ24ta2UwREJNaFk2aVNOcU4yN2N6ZWtKNEgyZ1V2VlVrQmgtb3ZJNUpwQUQ3MDdIQnMiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEzOjE5LjUzOTI2NCJ9fQ==','2020-01-22 06:13:19.542713'),('u241jead0kpubdjjw4b4bixm3eoehm89','OGIyZGQwZTg0YjEyN2NlNzNjNTZmNDU0MGU1YTQ3NzFmMzQxMmZlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3TVZKY0FhVG1HRHIwTXpmOFgzbFh2SWZ2UG1TbDRhby02WGJJcW1BMGgwdUFJbDRXZ3dBT2ZJZDNEa2NrenlOX0VfSXhYOXpWNGpVYnViS2NIeTg1R3BTTkl4aVh3MkNQekJWSE1OM0FIVm44RzdzUzJ1MUZGVWxaN2tCOEkiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjQ1LjQ1MjUwOSJ9fQ==','2020-02-10 08:00:46.458494'),('u249gkskymj2qkg33n2iecq31u8um9h5','NGQ5ZDA0M2JlYzU3MDE5MzM0ZmNjMzIxZDUwOTg1MTk2NjM1N2U5NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3Y052VGY4MGVlbGlUd3duaFZlaEEwd1JXZkxvaElLUWlzME1aSkRBalBqYmZZOWJWdkxmS1lRQkJQUGcwWERvVUdYZHJTX0Zmemw1ZkFUNTdhWnBUNWdOMklKbVdFYUZUYzV3eDl0T2g0bFAxWTN1bVlIMnl6OVpjM0pLbGsiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjAzLjUyODU2MCJ9fQ==','2020-02-17 11:00:04.532034'),('u2n5kibcp2vt8simgl2mewzdjfl924ep','NWIwZTljYzMxNjVlOTM3ODU3NzIxOTlhODdjYjQ0YzMwNjg1N2U2Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3QXIxVkM5SnZUeTRkeEV3X0dmWmNCNENxTmpVWERieTFZVnlxNXhmNExpMzM1ckk4V2wwQUdEYkdvT1Vlb1gyOGRZeTNYbE5qTlBUdDljdUlORzBOQW9kSEMxbTJCekEySHFMU2k0ZkFGMmNIWlF4VFJQQlhwSnFBbWR5Q1BVIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo0MTo1OC4zNzE5MjMifX0=','2020-02-27 07:41:59.375484'),('u2rzov5li3mix0f6gb4pybhwhq6qnge9','ZTFkMTFlZjg5ZjEzYWI0ODBkYWU5MGNlZGE0YzVjMzlhMzllZDI4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3czByR05RU003d203LTA2SWRuUHYxdVRkNEVyUDV5SmFYX1RrcllTZHgzemlqMXlUVGIwT0gwV2hyV1V2dElrVXpaNTB1XzJ6cGY4TXpPLUptNmZ5dVlBWlN2TmI5MFZuQlQ3eVBEMExGOFVzSklOeWlhc1JvN3MtNDdkWGsiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjIzLjQxNzY3NyJ9fQ==','2020-02-09 06:50:24.421231'),('u4xjnuyv5bleddop06latcd464rrh8pv','MTIyMzQxOTBjYjY4ZTY1ZDRmMWVhYzk1Y2VmM2VjN2Y0NWY4OWM4NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2MVFIXzBCVXNEdUs0V21RUS02ZTBrN29HOUw3TkRDbzVwdVlYdzUzUHA5RVVfQmxKVVFUQi1aMnJIZlN3QXhnanYxZXpxYjhHaFJDZmVJZ2xiZHNoWklNdlRKYlVLR1BQMlp6c0hOM0RqOTN4emJFY3lnY1M5S21yaWN4cnciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE1OjIzLjg5MjQ3MyJ9fQ==','2020-02-20 07:15:24.895953'),('u5ezfzz5r1x2bhvkj236rwlen1paifl3','Njc5MzA3YjVkNTM2OTQyY2M4Y2I1MzM0OGQ2NzA0MGNjOWM0ZTg1ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI0OHNXdXVZalFhMmlaZFVJU0gtaXI0dkRjM01CYjhHSUpGVmJvMTR3V1hMRlNicGNkTFNvUkxnLXVNdjhrWERtazhiZ3BDb3FGcmo5MjdTUi1PMjJ6d1ZoNVMzYlJVY0NPTzRYVkpZc3NJOHV6MTg0RG5qWDZnSm9id2pheDAiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA4OjAzLjUzMTU3MCJ9fQ==','2020-01-23 07:08:03.534969'),('u5zk9hnxlt6ffqap5nocvh08ba6xqap2','OGMxOTdlZWM1NWVjZTJkM2EzZDA2MGMyNDA2OWI1ZDJlMjg1MjAzNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3dERsUmo5OE5PSXp0X0JQaGcyWHNlSXZlNzVTVFhIUHp3d2pDeGo1ZDJLOF9CWDRhZzh2M3ZLdFc2dV9SODJBV1hVRjR6WGRfQmxJY2sybnUyUlZKS21EUVpQUlloMHJFbUl1MWNmWEtrZ3ZCTHd4VE1wVndjbk5ETlVSa2siLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjQxLjQxOTA2NSJ9fQ==','2020-02-13 07:50:42.422665'),('u63lxboe95mcy8jqw00qrrvukabft2pl','ODkyZjY0ZDM5ZTE0N2RhMTk5NjVmOGZlZTZhZWQ4ODc4MTNkZWQ3Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVeVpvRzZGOHctenFOWTlfVW9YbHpsQjRvSTVGSk1lZ1JOWEtJYWwtTUZDVnhXSHZNWUJLLUdoX09tUHBDQ0lKT0twU0doTXczRnR2c0FtRW9GdEZfZ3BwWFRxUzNseTY2OXQ4dGJIWTFQdFpVYWRadnRwNG10bTlQZXB2cUlUQVNRRGVkQ2t1LXFZMmZ6SkNDSU5IRzhaVVlhSk5CV0h3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMTozNy4yNDEwMzQifX0=','2020-03-29 05:31:38.245536'),('u7on531mgd7gh0gdsdptml2rnh2uj17r','NzhmOTQyZWJlYzc3NjcwMGI4MmJmMzFhYWRkNGVkYjMwNDZjYWEzYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ6N0p2WFB3R0pfQUNIOUEwOWpVT3Zub2JqLWlhT21Za2MtWkJPeENtcUdWTWNoanU2cE9LZVphTTFXdVhYUjcwc3pqbW5XNlFUNWtwVFRld1oxOXhKdGlWU0dEZlBUeGgxd3RNRFdHa09KYmhIUFRGY2ctLS1qbldiOVdkNG8iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjE3Ljg0NDIxOCJ9fQ==','2020-02-06 12:20:18.847734'),('u8d62bman5lzd7fky1il3f6wit43uugm','ZTVmN2QyN2E4MmM3YjlhZDc2NTc3MDg4ODdlZWFiODVjOWVkMjQ4Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfM1hGZUlibjR2MC1fTkdWWXUya3EwSHJwOFkyUDNsNzNMaWZ6Q0sybjFtM296MVFKTGhBUTdPeG1WbGY3aFBNRnpPVWtyNVpOdXUxSnhEMGtBVkVVTXBHNUQ1bDJPN1JPMUJSU3F0RkNEb1pVekoxX1psSnAyV3YycElfbGsiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjQxLjEzNTc2MCJ9fQ==','2020-02-10 08:10:42.139342'),('u9o32uib71s7u2kwc8kpveo5w7ij8v7j','MTk3Yjk2NWQ1ZWNhMzFlZDE1YTI3ZjQ4YTc3Mzk4YmE4NTJlMDEwNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0IzekYyU0hwMGdmb2UtR3NpdHRMVHdMdUdXMnVvc0E5T2FuZVZ3SG9YdHZNYzBEM3U4cFBwYlYwc3FnNGhEa3ZNR1hfMUZCSGRYZFYzbE96bXFtMXZ1U1dwcm9KckJROFJkSHJuUFRmUmQwMFJvSUUwTnFPY1ZVV3NYckI0V0xJIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NTowNi4xNTQ5NDYifX0=','2020-03-05 10:55:07.158532'),('uaikjsdohfyrp9bhq2lnkbzgwrntoo2z','MzEyZWVkZjhlMmMxYzNlNTc3NTg2M2ViODQ1YTNlNTNkYjE3MDEyMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0Vl9wNmtNZURDUE4xRWFWZFItOFE2NEFvaTlvU0JpTDkzdFUzSWh4X3o2WDFCS2Qza1U3c0VSUlVtU0cyNWJIMFR2MTRKWEpuR3NzanMzRlpBYVp6YWdTQVhxMkdHT05KZHNBSVB0VVhicEZMM2RENWVzLU5GdXBUV2Q5WHRiIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1Mjo0Ny4yMDM3MjgifX0=','2020-02-27 07:52:48.207120'),('uc6627v2dt1cxzzxfee2an9ak3eommvt','OWNkOGIxODRlZTM5YzQ1YjBhOWZlZWMzYmVlNGRkYzY3Njc3ZmVlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0X0M4S2RlazlTQXctRlBpSGhmV2YxZ04xVjdfMmRpODg4a2ZzVHkwbzBiLVZwQkJJOGVZcFR0YU5FUGE1SmRXR18tcjhpTGl3NXA2blRfVjdMc01yaFdhczQ1dXlWMFZYVnV3ZUhxUWg4Q0FvWWZkbUQydXVFZlFQTlFlQ2JHIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo0OTozNS45NDE5ODEifX0=','2020-02-23 06:49:36.945466'),('uc7d1ecwa1geb0oq0mxucd8zqsrq5ryg','YjBjYjc0YmIyMjY3NDI5MzE5ODU3ZjhiN2I3Yzg3NTBmYTkwNTQ1NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0TDlPcndTd3hSeXQxbHoxS1BlMnJrX1JOX3Z1XzRtRlEzOXdBdHpWb0dfUi1vSXFJUmNQR1dCZjd5R2F3UDgxcWhNN3dYYmlYeHFkUUtzeW9fR1NZRkt2c083NVJYcUE1YTA0cm9SVFZKV2RHbU8xWHZzQlRLTk5BVkVucVEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjQ5LjU5NDM0MSJ9fQ==','2020-02-17 11:10:50.597886'),('uc9ieffh76wq7goonfb71qjhtk473ed2','ZWRjYTNjMzU2ZWZmY2Y3MWY0YTM1MzkwODQ2ZGEyNDk5ZWI3MzExMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3aDI1dWRmQjBjY0NZd0cxNHBuMEgxbEhOa3JpMFF4WkFDMF8xemczaTZJVkh3MzJsY3puWnV4NWVEQ05NNDhfenBxRURJU1l0Qk1WTGxoZDg3LXp5MldLRngzR2hHZlVYd3ZRUmxlOEUtem9GWFVFbG1IbHB6eEVGQmZvT3FUIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODoyMDozNy42NjM4ODIifX0=','2020-02-27 07:20:38.667324'),('ucxkskgvawhz3mvjq277w6gbb64wjaa3','ZjQyNTM3N2JmNWQ4YTkwZDU5NzU3OWI0MzMyODdiMjg2MDE4NjUzZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfbzFIWXlIcUV0SnY3T2VHTzhKcVJvbkpjd1lPQ29iNkRMTlZoemRmZEtxM1o0RkpTVVpzOU04SWNfUGxYTmtPbTNLcnk1OFdiRHA1MnR2cm5mQUdPMmV2aFhVS3lkd1RYLWZvUUxJaWs2eEZQUXVMZUt0NjFLa08wTXd2ZUEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjE3Ljg3NzE1MyJ9fQ==','2020-02-06 12:20:18.880556'),('ud72m6pup8o473wd9nhyx0mxn7mtjyuq','MTVhMmM5ZDgwNDYyYTBiYzk0MzhjZTE1YjQ1NzVjMjc3ODA1Y2Q4MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItWkNLX00tbERLa3d2aGdCWUVqYl9IalM1NkNQMDduXzRFcVVPYU82cFN4b29taEMyZzhjRW5JYU0zLXhsbmY1anZWd0JuZGpFOEJWcGc4TWY3WlF3M2J6N294MnNGdFdPOFJYV2F4RnRZaUw4eFJrQlJIbTRXazZWdEs0NVkiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjQwLjY4MTUzMiJ9fQ==','2020-01-30 06:08:41.684975'),('uddizovkabi20phb2nkon53rxv7uq8so','OWVlOTg4NGVhODJiZjAxNDlmZTYxM2RlMGRhMzM3NzQwODg5OWFjODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJfN3l0ZXl3UkFyLXJvaW04LXdqUFIwMGt4VWY3d0I2eGQ0Ti1leklCNjd6ellRQU94eFRLOFVYVnpZX09WaEliVngzenZHQ014Tkhaay1MX3ZDNElkT1pqTWhGOWxUVUtxbEJSeWdocEVFRWxwdXhpOUJLZk9xU01iNFZ0SHMiLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjM5LjE3OTAxMCJ9fQ==','2020-01-21 05:51:39.182462'),('ueb9ixg2zxg39k6s05zj0g8n9ije32cl','YmU5OGExZTUwODYyZGE1NzcyY2MzMGFmZGI1MGM2ZTZmMjFlMzE2NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I5UElCa1JoQ1ZGUWhINmlSYm5lMDA5dWlpblZRbnlyQTZXVW5hdG1XblVhNk5pMEdJZ3BXcjRaVEQ4MDUtSTI1bHJycDB5dlYwQ29nMW1ha0FMQjVYY3VzQVFQa1ZZVHQzZ1Q1NDU0b0dORWlnYkprX2Voa3hlQzdDaXBFMVEiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjAyLjEyNzQ3MSJ9fQ==','2020-02-09 06:17:03.130901'),('uenu849ofr3sgyy4q6goh872nbkmulf7','OWUwNmNjMmIwNTc1YTlkYjhhZjEzMzZjMjQ2YWE5ZmU4MWUwNDFkNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyWUxDWnpoUEdRMVdmYVRrbURFaW1zanZVZ2lSMW1DVVNkNnQzRldtU2JXbWFOM2JMM1QtYkNucHRFVnR6Y0lyTllGc1gzM1Fnd3NZUFpqcjdrUVMxT3ZPTTFvS3Y4d2lZcDhqcm9xVnFmd0dnanVPTHFsdVZaOTZBdFJ3UXMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjE2LjAxNDMwMCJ9fQ==','2020-02-10 08:00:17.017816'),('uf0urunqipcqbprn0f15jtl755csthpn','ZmE5OGM4ZmJmNmMzMzk4MGM1ZmQ5ODU0NjAwMjA5NDg3ZDJhYzZiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Ita2FXakhIa2xXZFRxQWVIdTJicXFqSGhOdDhIRU11MkxrQ25NbmRPM0NmeXM0TzU1UWp6MzV0QWV6alNXbWdBNXZyQXlJV2FoUjVoci1menBIZEZvbU1leFA1ZE8wTVhEazRXcFhCM0ZaMVNSbm5aOGp0RGZLc0F3Q0ZWQnciLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjMzLjI0Nzk1MCJ9fQ==','2020-02-10 07:40:34.251336'),('uf5hrfz73x7hyd6ouegy7mqo1lumfahf','MDg1NTJiMDYxNzVjZTlmZTA0YmFjYzU4YjM0OWRlYzRlYTYzYTc4Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI2N3h4cnJoa3dkTVcyckFMNUlJcnA4Yzg5UVVibFBEU1RXR3FzTUtXNEZSZ1FubmtzVUtKdHJkU2J4SUhvQjNnUmZNXzBQSC1oS0ZmUHQtdE1kelN1NFg2LXNHalVDSTMwZWdseDg2UmY3T0NBOVdKYm1LRzRLMEdoMnZKVzgiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjQ4LjUwNDYzNyJ9fQ==','2020-01-27 10:58:48.508181'),('uhf365rq4bx4b8s5ut6nv3euy3vu41ns','M2MzMmViY2Q1NmVjN2JkYzcyZjIxNjFjZTc5NzRkNzhiYTBkZTQ1ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0VE9MNWdPNGNfYzctVVhkNW9mMTZ6Q3NDdnZwOFA0TFJVYXNOQTdqeEYtazRsYVBhZ3Eya3Y2MnJxZEx0UXFsRTFTNW8wZE5SV2VIM3RQcnI4cTlwWG1mMTNDZThqSXFpZE56Q0NBWTlIcl84WmllQ21xenh2Q1dLelhVbnktIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NTozNC42NjI3NjkifX0=','2020-03-05 10:55:35.663913'),('uhnxgcrfs9f2ssnq6lzzdqyfk0ec75mg','ZTM3ZDg0ZDM0MGI4NTgxZjA2YjZjNzAyYTdmNzE0YjExYWExMWRhMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1cjUzX19GMkN4b3E2OVUxTk5zbVQyS3pVV2tzOHd5N0xwbUxDdFM0bzQzZTZXS1lCalR1Z3JmRzhPZTlSNjFkQnFyaUlyLTRhVEVLd1hlMEI0NkNwLW5zdE1VamtWT0NkQ1JIaUhEX3J2M0ZnTHhBa2ZkNzNaaDl5UHg0QTQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjA0Ljk5Mzk4OSJ9fQ==','2020-01-23 07:12:04.997558'),('uie78ftaf35gokrvqsrq5kvenxjfce55','N2Q0MjkzOWUzMTc5NGMwYThkNmVhNWU3NTY5NDE3YTg0NjZlZmE4ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzUkZQU1I3Q0N4VUJEMWhOdm9vaUxkS2RQclRLVVktZzRZN1kweWtqMEpyZmtWMlpTMlJtbWk4TUtlRklYZmM5N0ctOVgzN0s1M01ZTHdFby1fTEtDQU5rZ3k3bU1ibkt1RlB2UE9Ya0FFaUpZbmhIMy1IX0NUdG14YnpXTk0iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQxOjE2LjUyNTM0NCJ9fQ==','2020-02-13 07:41:17.528755'),('uja16157f3x9mtbxrpks0amgvw90hhvd','NWNhZWNkNjNiNDljNjJmMDE1NWZjNWI2YWIyNzMwYTNmNTY3YjY2Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwazk3Y1ZCMVo1TnNpS1dZUUJpMTQ1aUQ0dzY2NWdRWGg1UW9pTkhoZ1hKY0tkc2dhMHFwMDVvYXR3WURlZVdiQldRREVGakQydGF6ZFY3MU9WVDI4aDhUOXY2R3MyQ21BMWstQnIwYXNBT1MzUnNYSkUwM29TTW5vSFhDNUEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjEwOjQzLjQ3MDA5NSJ9fQ==','2020-02-17 11:10:44.473766'),('um49c38yyn072ejrimwon4so4zlk6a7g','M2NkNzUxY2RlY2ZjODFmNGIzOTAwOTBjOGQ0ZDdmYjQ4OWRlZWMzNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfdmdEOTl1RlFLSHJBUi0ycDlwZ2pBNW81RlRPdkdpVnlxdVpiYmpTRy1fdERINFBIU2dKOWJ5R0w0Q2dHM2VFSVNaeW1NcVhIQ3hlYjVQS3ZpYjgyY3J3S1pqNG1QR3lVMHF3RnZOeGo1SjY5WmNOVjZIYXJGRlAzWnBUazdRIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDoxNi42MDA5ODIifX0=','2020-02-24 06:00:17.602108'),('umfk8ai1udacqsgdtn5kctk69c3wa3e8','NTlmMmQ1MTA3NzhlMjk4ODYwOWJhYzAxNWZmOTM3NTc0ZWFmNzJkOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEItRlBaTW1OVWh1a0NLYjZsNEVQTDlmeG5pRXl4VzdpWVJQQWd2dWs4anpmdHQ0bTJSQ2Q1UXJUY3JvZm5Zb3dvM0RiRk1hNGdlUGVhcENOSTR4QlZMU0hTY0tuT3VTQzVDYW4xYnpOQmJ2S2dYOXhBOC1LZFExb0dYY3hQeXMiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjUxLjk4OTQ3NCJ9fQ==','2020-01-23 07:07:51.992898'),('un8ziuwr51wyu7ihsviow6sls5hbtwdd','NGE2NTZjOWQ0Njg3YjQ4NDVhM2Y3ODcwYWU4Zjg0OWQzYmQwNWIwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5aXl5OGpSamF5NTVsMVJKR0RiXzZ0TEgtNDF5ZHpyT1JsU0hEdm8zMzlweGVnWC0zOS1PekE4c29NTUNmTFBvU3cybDNYTTljbERDNVYtSno0bE1sV1lkQXNiVC1zVDFZdHlaRzdGcldmWDJzSG5XRG9xRFhlLVJBWllPT1Y3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODowMzo1OC41OTQwMDMifX0=','2020-02-26 07:03:59.597486'),('uoic28n8nwi2f4pubirrku9in9pw8hzl','NWJkZGQ1NjM5YmM4OTAxZmQwYTFjYTE0ZWFhNjBkMjIzM2U3OGFlZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyX204S3VJTm1NaUYydWRQSFZfbWRaX2UtWU8wd1NnQ3lQdU94S2FZNW9sNURhUGxyR055MlpEZUhOYVhLWkY3ckZnclZWZ3l3dXdkT3I4bzdvZE5BeExIaHI2ZkRveVljZmpUdUdvSVFMdUprSXNEN2R4cFFMNDAyYmVPUkUiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjM2OjQxLjcyOTQ0MyJ9fQ==','2020-02-20 07:36:42.730576'),('up886rff4lqithp4s72zw2wxrr1f9vm7','OTIzNWZiMmUxZWFlOTMwMzQyYWJiMzk4NGY2YmQ1NzI5NWQ5Njg0MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI4c0cwaFBZQms0N3FTU1FvTjM3dEhNTkhQbUh5UWNmWWswWVZVZzQtcjhsQUpJVjU2aXE4ODJNZ1RpQzdXYVZNWEJxUWgwenVjdW11UUU4QzVGOWlvRzdSUDVfYUpkbm5qc3M3SEdLU3ZScXlleWNOdWl1Y0xRdmROWldfTzgiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjMxLjk3NzU5NiJ9fQ==','2020-01-23 05:26:31.980964'),('up89da9guaymh5lkkeoxltu51gukogd0','ZDk3MjczNTY1MjU5NjI0NmNiMDFlNjM0MmJjYTU4Y2M4OGQ4MDQ1YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzdkhGMlJ5VEpKbE5nZlhoZG43bVp2RUxjajFOZlI0QW92UWhQX2stR0M1V2ZPWXp4TnU0LUlscjRCcmdqRnA2ZUctNTJkRUVwVW4wMUw0TndqZ2VOV0U5WXRtY05YR1RlczdLUHp3NV9sb29FdmptRHNnR2w4OHNfaGNwT0UiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjIxLjU4NTk5MiJ9fQ==','2020-02-10 07:40:22.587116'),('upfyt1vrrpo57naz034zoqfs40us22rt','ZDU5YTE2OGMwMDkxNmE3ZmNlZjUwNTRkMzExNWQ1NTE3ZGU5YjgyMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J6dzBzMHlmT1FwSmVObUZxVUdCbG80czJmUW0wTXNNQ3dmYlNPZmh6ZFFaMmswSVVoU0VDOHF2TWUwbEY0U21NNWlqZmhFckRHYkxVOG5qNmNldDdJS1BuXzY1VXFYM0s2QWt6UC11OHBwbkt5TVd2YVh4Um5tWXdZdWppUW8iLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjUxLjUwMDk5NSJ9fQ==','2020-02-09 06:50:52.504503'),('uqajp8srbjmfeh0sksq1hor8hlqnzxdj','NzI2ZWEyYzNiNTUyNGFhMDBjZTg4MWNjZWI3MTU0OWU2OGEzNzk2MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI1cGlCY3BrVjBUZ1lBck50N0JtSG4zMVQ0blNtYWV6enRqWmNBYWZzaWRNX2lkTWFRel9xX2R6UDZkaXJOS3lBOExKZVNXREhzM05ydEdKWDNXM2VfSDBwX0c2Vi15cDBHV1Rad3c1Vm1vRVAxdjFCWHNwa2RVMGpTcTNLYWMiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU5OjAyLjIzMjEzNCJ9fQ==','2020-01-27 10:59:02.233532'),('urruiop2dxkfixv3i2mps48vqzcsc374','ZWMxNTY1OTJkZmQ3NzgzNzI1M2M2OTFkOTRiODEzNWZlMGZjZmFjNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYWHV4WWNDTFB2Tm9xNmxDcHlCSEVieVF3WlNrUS1YMHFhVFlSdDNXeVhaWGZvTHpaQ3NLS3JLUTJpSmM2dGZQNTlVcmpXaXpncVI1aTNNNjlOdnFQWGZpeGp6Vkszd0JvWXZNenZPaHFLNW1ISEdNendnUjA4Uzh0aEZhTndWOXdlZkg4TzlrcVBfQXR1eDc3blBJdUFpN21YVWxYWDV3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzoxMjo0Mi42MDUzNzAifX0=','2020-03-29 06:12:43.609048'),('usz9uo5m0idmihqfn4fsm1pqx61w0q7m','OTA3ZTRiYTQ4NDY3YzI2ZDkzOWQ0YmI1ZTFlNjFlNTc5NzY4NGIzYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyNnc4Rm9lalUwQnRIQUs4WHg2ZXRtUGg1dl9ZYVVNbFZJX1pXa3lreFVWMXNZMEFBa1pFeXVSa3E1aFZYOVpzM2QzRVR0Yk0xRVBLYTFOY2ZhenZvelgxT0U4THlZSXJfUnoya24yeFdNMldMWDhWV21yLWxLUndtalhiNDgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjMyLjc4NDQ1MSJ9fQ==','2020-02-06 12:19:33.787877'),('ut5urdsfcm5z86f16bs0egnrptb09rep','NWIyYmYzYWJjM2VmZmNjOGYxZTJmNDljY2IzM2UzZmJlMzA4NjY2Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ5TlkzeV9kWmJHMmc2YThRQTRKakFOTXo2X1hJdXRVUDV1ekZiZWw4dzEzLXpMa1RkbUF2M0hNQmlxQjZWWFF0dllEMVBvMUhvNlBjTWRoUEsyemx5TnF6UlE1LWQweFhhME13c1V4M3phZHEtaUJkRUI2M3prM0x6OHE1ZFUiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjExLjU1OTkyMSJ9fQ==','2020-01-23 07:12:11.563521'),('uu84w637fd9g1hvp9lyjmumvjc7hyno1','MDZiMDFhMmI4YjEzNmMyNDEyM2Y2YTU4NjE2N2EzNDZmZjM5YjI1Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItWktRV2VLdG9IU0NGdmtPRkFETlYtT2RWRHNqenlZaVNwbzc4UXRYTHd1enNLUHRzd0JBYlFXRkluREljeXNSaXNfMlU1SDFqa3FjUFZGVFNzNmlvMVVBTHpEbmZxTm9PSGh4NlI2bmhmaGJ4QjllcHh0Ml9TV0p6eDR3NWciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjExLjA1MjkzNSJ9fQ==','2020-02-17 12:30:12.055801'),('uvubwfs93xnjmgo8vwmvye23ndpb7kwb','OWFkYzM2ZWU2ZDBiYjc0YzI5MWUyMjhhYzdiZWNkN2QzY2UzNDI3NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0dG15M1hkVFVaaWZ3blZuSXNCZW5BbXk3S2JLZ0RQS1VWV0llSHp0SW1ZeHBBX3FCZW4zM0FCUGk4QjE0S3dPcVQzZDBOc2kyR3NWQmYxSEgxOVZHcUpRd2RwM0M3VE1wRmZJVHk1YzlOOVQtQ3VULWFqcjVveFlrLXdfaXMiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDEwOjAwOjQwLjcwMzMzMiJ9fQ==','2020-02-20 09:00:41.706796'),('uvz8ffymmrtpfswbthcgm2o71564cmry','MTUzZjMzMmM4M2JkN2Q2OWQxNzlhYmUzNjBjYzJjMDkxYjM5OWRkNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYWm5zOXFHSnpEV3lZQjRDelFhNlJvLTJKaklPWkx5U2x3MXUwUzk0TktMVjg4VDljeTRpMG8zX2tBcUd0ZFMwRGpGdi1iR2VwY1U2RVhLdkN5N1Y4T0hWbGo1c21WV2dKUDdBOXJuak1ycVJyQXp4dU9vVlZUVUpuNzJpckFPaVBTWlFWSm10blZCTXV5Z3kyTFJlRjRXMmwwQVBSTDdBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDoxNDowMy4xNjgwNTgifX0=','2020-03-29 07:14:04.171507'),('uw0ms8gn0hddm4tr14wtrm3osvmem9zw','ZGEzNzU1NGNkOGI1MjBiYWZkODg4OGM1ZjlhMDUwYjk4ZTIxMTkyYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4NWhIcF9tTTEyNGhaVDlGNFhJVVRNQm5JSzMyZUNRazJMVHR6Zkw3eXc2SnBNRE1xRUswVE5WMXk0dGZ5Z1FZWEdCaFlBMFJZazA5bm9YREFFdkJiQTJPZFpMcjFXV2ZBTXNJc212bWQ4YkZiS1BzNXR3U3FXYVN4REd5SGxhIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyNDo1OS4yNDE4MDkifX0=','2020-02-23 07:25:00.245281'),('uwxiiav2a8qu34fqyeh3ck2pnvp7md6w','YWQ2NzJhMzc5OTkyZTk5NTlhNGFiMTQ4OTNmOWMwODBlNGNiYzNkMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ5bFl6N1psX0ZzUi1mdHdlSG1sakdadmItN0Qwc095eHg5TEVidFNibUVlM2w2a2tyajZXX0N1SjFEci1LNEV2WEh6T1IyTFM3dmFBZi1ERVB2eVIwZGFoZWdhNHVoS1cwdmhEa0RNN2FNSmR6bkhROVV1LVYwV1VaOFA4NmsiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjE4LjI3NjAxNiJ9fQ==','2020-01-23 05:26:18.277333'),('uxakuics2x4l41ck9zx741juova8g248','MjcwMzAzZjE0ZDM3MjE4ZWJhMGU2Njk4Yzc4OWU3MjMzMDA4OThiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5QzBnYlpRY1BpdU5WaWFiVXU3STI0NFdRMFhfNFJVMndHaUFQUFBFQnFSR0pYa1J2R3JETW5Ec2JRRG1xOGNBdkNHM05SYUVfQ19TcGtmOWRrRVg1bFhCbEFrSXYyanhYOHVUMzMtOWhPaE9sTFU2Wk1MY3BabmwwZDNvbmFKIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0NTozMi4wOTcxMDkifX0=','2020-02-27 05:45:33.098237'),('uxdwyfo1dhattcs0hhx78vappxo9uchi','MmNjZWU3ZTNiMzE2M2Q0YWY5NDkyZmIzM2RiZWMzNDQyMWY5NDM5Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI0dUJWNWNnWXc0NENyQlg4czJ4ekJyZGt2VlF1Qy01VGV1ODQ5Vlk4MS1BRmJIM05IWG1YS04xUkI5WmNqemVqTkQzLTV1WmRfXzFkREV6WFpZSE92VmVhMzFWbWlkendUUlRDcVZ0RDA1R2ptQ1AxSlNXZzhfcTJzeW1oOU0iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjEwLjcyMDQyMyJ9fQ==','2020-02-06 11:23:11.721877'),('uye4lce23wj25xhepwfi2oxkkft2a3nz','MGZiMzY2MmZlZjUxNDZhMTZlMDI1ODUzMDA1OWE3NTQzNDFjOWZjNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5Tzg5NFh4YWg5cHZSb1ZHX3RUTEtER2hmMktvWU16dm83UmV4R0ZZUGdsNlV6YmZoSHdFc19IQlJaN1BlWlNUUXYwZ2UxZElraTg1eExUd3hSRWtuRmM0cFRjUHg4S0d5bTNOUHpRMkNRVGdITnFONnpma3RJOHFiX2tmd2x3IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDo1OS45NTM3NjMifX0=','2020-02-23 06:01:00.957231'),('uzvy5worzbj9xuj2sihoyn2ehddek3gp','Yjc1NTQwYzM2M2QyOWQxMWMzNzA2YWJkN2ViMGUxY2MzZmRjNzhkOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3NnBJanNzRlY1UHF3UHRrRmpkdDc2NEFHaTVVR295VkFwQzktblhHS0J3SjNCVTdKbkRlenliUDM3NGF1RGQybU9vUmZiYVJvY1lkSm8zS2MyaVphdXcwamczRVNmZUNLMW1OTE91bk9RZk5oZ3NEUFY2V1BocUhQRGRldDQiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjE4LjczNTM3NiJ9fQ==','2020-02-13 07:40:19.736793'),('v06188avh8ymmyscirhks3cihfny96jt','YmMzNTE1MDQ5NjA1MDg5NmRlYmZiMmRkMTFkMWM3Zjc3ZmYzOWJiMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ5MkpWQ3p4OVJQLVZ3T2g2bFRRek41VjVmR0JLNGt1dzNCQWwxbkNySTd0SlhIZkhMTkhNTTIxY3cxUG1INHllc1hHbFhiZGtzenF2Nl9PQmFfTUZSTDFMRlg0c3U1OVg3NG01QTRQRlVRbFFHa2hWUXNGb0ZEdy1ud2NHWkkiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjQ2LjYyNTExNSJ9fQ==','2020-02-02 06:01:47.626239'),('v07r0nt15rbs50jj68qr7j4pxezgc9i0','ZDVjMGUyZmE1MDY2N2JjZDUyZjE3ZDdjZTA0MTQxZTFhZDk1NTZiNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3UFFTTGRna3JXOEQzLUNQVl9uSWZSWUFVNzc3cXdKOW94M25nM2RRcVE0SWRDY00yMU9JVXVoM0tHQ05YYnpkZFE0bkFpZjBJdWRtY0ZUQVpjZEJzVExDZTFXTWlqYmhreHZ1TlI2TU4taVdVTWdZRTBKbFMtdm5aVG5JTDAiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjM2LjA2MTczNyJ9fQ==','2020-02-06 12:19:37.063368'),('v0bye623e4rhjfnt5tsv3x6ima7pcdwy','NTQ3NGZhNjQzMzIxZTg0ODQ2NGRmY2RhZjU2NGNmYzdjMjc4ZjViNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItQWJVMlE5M2FzZXZHVVota3hoalZJT2pjOHZzcXZsLTdrTFJ6Z3Q5UGtvNXlJQ0VOckRZVUlKYlBBcGVwbWl4T05fSmxidEpPSkV3aWNxSG5yTmYwZTVrUl91VDZlRTdVS1JqOUhjVXhFc3RtWl9SbHRfQXJ5YW1NQzVoT3MiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjI3LjgzNTI1NiJ9fQ==','2020-01-27 05:46:27.837084'),('v2bidgbhb63rfszajxjcjwv41ifxg3xj','NTRmN2QwYTYzMDQ3MTc2NGVhMDNlYmFmZjg5MTM2NDVkYWE4NzdkMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3dDhQMUdaUWNjM1UxME5ERXFyU0VVeVB6V3F5NDltblNIZFpvNDVpZ0tnR2xQTlp0RXhYbmxQQ1EtQ20zS2dvRDhmbkVsRVJSTmh3SWFMMDNHemZtM1V4OGk3REIzekdxZUJ5VHZhc1VNdExTWXJqQzA3eXRuc3g5QjFQbFJNIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1Nzo0OS4wNjgyMzEifX0=','2020-02-23 06:57:50.069770'),('v2j1gc5nkwx0x9k1stx4pl32i1w4jyx5','NzY4NGQ1YTQ2NjRhMjNiYmE5NDUyNTEzZjNmOGI0ODBiZGVjYjYyNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4cVQwbjNvNjVNNU9OdUFUc0txWUZrVTlhdGV0elQxYjZFUG42b1RuNUtUdktTdVNJYVB3ZXhiTjlPUVEzeW1TRjFOZjZFODhjYjVidjYxYlpCcXJwTTRTZmtuZk0wbWI3U0hPUGpObXRjMEptNG9maVl3YkU0SFNlSS0wY00iLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjI5LjkwMTg3NSJ9fQ==','2020-02-09 06:17:30.906779'),('v33ung5x8bojydnyvl2he3b47k9cyrhg','MDJmNjUyN2ZkNDhmMWE1YjNiZDNlMjY0ZDM1ZWFhNGM0ZDUxYjFkMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYWHRPYkFsVDg3VDdJa2l0VlVkaFozN0I3WVJFYlozNHNqTVR0LWJ5SnlLa1E1SHFPQjVabVV5Um5XN01CeFRTRmxtTnltd08xQnFlWnYzTXJOQnlkSE12OFhEWHRQZGlTSFE0ajN5YVVDS3E0QmlnMHZ3eTcxbjJPVGNVWlgzSGpuNlhOSTRBZlg5NjFpTXZjTTNERXg1bm1CMmhKQUVRIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzoyMTo0NC45OTkzNjQifX0=','2020-03-29 06:21:46.002948'),('v3fdin4enge9gsk0hdq7z1bjprncuheq','Njg4NThkODAyYzY3OGE1OTZlY2FhMmU5OTk4YjM3YzBiYjRmNTJkNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2dFN2ang1Z1pCZldnakJpcGN6bm51WkQwS2pUU2NjelY2cFFNLXEyTkROUkxTalM3MzlqRFFOdmllRURDVjI1anltM3J0djhJSHI5LWFaSnhkbVp2WG82Tkdvc25qWW51UGRtTUNxc2hOeDJWXzl5YjVETi1BU21lVW5JdFEiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjAxLjI0NjM4NSJ9fQ==','2020-02-09 06:50:02.249821'),('v430svgn8tl4cgrnas6xmgmesfjh6s1a','NTIwMDg5MjZkNjE3YzkzZDQyZmQyM2NiODAwMjU1NjljYzBkY2M3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVbjM5Z0dDQ0Y2ZEdoa0MwN1Q0VUp5eUVBOVctcHA3ZHQzaHB0RDI2aUlPc2JYN29xZHI4M19JVGtSaWhZNm5UQXpnY0V1X3VjSUgwR2NDaEY5Sm5KZEFXYzI4ZmlwQ2oyQ2FKajRXbEdGelFjbXNLcUw5MnFsVWZuUkR6Z1AzRHlrYmZzcVIxOC1LbzM5a0x3dEtOVzhHbGoyTDFxTk5nIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1NDowNi4xNjgxMzUifX0=','2020-03-29 06:54:07.170201'),('v4f4hm9tnzvo60gf5jtbc3imhrgwud7p','MDY1YWE4NDQwZDM3ZmFkOTRhMzVmZGUyNWVhOWQ3N2ZhNTYwMjUwYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxX2hzYzByWmdkWXFDZ0hjY01ScjFpNW9IODE0c1NXaDNIeTBCYmRPaGlSUENoN1dVMHVaWkZpTm81b1h3MGVyS3ZPUFJpd2xISVFYRXdERm9jVU9YM1ZkMUxvalNoSURzTXNvNFhoQUlMd0hSSjVJeW4zM3JmQkVtdEZWYWM3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMzowMC40MTMzODgifX0=','2020-02-25 07:13:01.416917'),('v4v2z1pvj3pan5rysars3emfr9xitwqf','ZWZjOTAwMTNmNWZjOTEwMWM2YzFmYWQwZDg3YjRiZWFmMzY1YTk2MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3Y2E4dldSU2dCZ0FyNE9rY1JRS3ZHeERCSEdDcWZfeng5bjBPMEdPbWo3TmEzZk1XX3FDZ19IMU9nQ1ZuQVNQa1NFRWV4ekYxbGw5ZDZJbzdEUmFPWURtOFNhQzE0MEpYVnRYVWNOd25UM2xmRlQwS0w1enBqOU9rWEprakEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjQ5LjA0NjQ2OCJ9fQ==','2020-02-13 07:50:50.049558'),('v4ztcqg4pahr9m4eoovuaqg12kfx7m3c','ODZlNTk3OTc0Y2NmNzViMzQ3NmU1OWI2MjM1NThiMzhjNWRmZWE1YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfekpMcC1pYzVwcVE0MzBZbm52cjBzZFFiOS1yR0x6aFJKX3lPYjFWSlJRbU9HM013ODRPcGpOS3R1eE9Dc0VkQ01HbzdvYzlJQ05reGEzNks1MzcyZUpTLUZDSFJ3TS1EeWk3a05qeENtWWw1Y015ZTNySGxXV180Y0xOR1JaIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMjo1NC4wOTc1ODMifX0=','2020-02-23 07:22:55.098692'),('v63ep770r3ecnw30z2wnk4ax4xispb1y','ZmRiYjVhZWNhYjIwODQ5NzAxOTk0Yjc1ODI3NGUwM2JjMWNkMDllMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItaFgwWTFhX3NyaGxxM0NBaHc0VU80NmxTNXg5UEhNcnlPMk9Xdm9iRTVIa2tJejlmUG4tOU1ZYlJuX0JKUFg2Q19zRDBGbkYwQTZsRHZwWUZkS2Z2eG40blppRmVIa1NqZkhONHVYWEVpS0FCZkR2TzJxMXlYLVBrdHpXdlkiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjAwLjY5OTM2NCJ9fQ==','2020-02-06 11:30:01.702940'),('v6ssh2irbjsg96011maj4lrzi2sjr4wx','OTgwZjIyNWMwODg1MDUzMDRkZDRhMjg3NWY0N2EzMDhiZmI0ODVhMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIybVFnT3VDYkJ3QU5wZ3hROXRvbHUtSTFpOVB6TlRvWFdVQTNNNEJQYVlybl9PLW5lbm9maER1YW1fS05TRnN5U0hGRDhCbkYwY3ZLRnNYX2tVaWhITno5X3VTUFpCVklxTUdWQ05CN0ZtS2pqNkZXMndtaW40bTNoVFI5UTA2IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMzo0OS42MjI4ODkifX0=','2020-02-23 07:03:50.625696'),('v99c8gspxhbkvbfssl065o6ghugqvvqa','OTczMTJiOWM5OTNkZjIyMjg4OTdiZDA0MTQ3MmU3MjlhNGQ5Y2Q1Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4QVhjY3B0V3JwdkxpRmZzaHZjUnliMWcxWmJJZ3FfaUR0TjA5X1lxdFdGTTM3YXgwb1F6V1N4dWNvWXY0M254SmlXT1Q5SXRoYjlSTDBaZG5sTjhVZk8tQ0xaM3RJaVdWSmJtei1VNldZbnVvaklmbEJ3dVZPbU5PWHNtRi13IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMzo1Ni45NTc1NzMifX0=','2020-02-23 07:23:57.960981'),('v9mx3x3tszo2u59c1fj48kubhrzzo3lq','ZmU2ZjBjMzM0ZTE3NmQ4ZmM2NmM4ZjA0MmEwZTI5MTRlYTZiNmM2NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItREhndmhJUWlSQm8zYTZsX29WcDdIVVhBdnh2VGVmQndRZjVDWEw1Ymo2YzBrMzJreDEyckZfZTE5d01vSDVPWlYtakxfR0YyckRuSUEtSHdPYlpreDNjcmV0dU1zVC1VZ1VKMExQaTNlNlVhdkxyRUhMLTdGQ0N0bDNSbnREIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1MzoxMi41Mzk2MTgifX0=','2020-02-27 07:53:13.543110'),('vaf3fricckcv7d3fjc1u25h805wdngvb','ZjdmYTk0YWE4N2I1MDVlNzI3OTgyOTg2NjBkYzY2MGM3ODU5YzBiZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzUGJoRmxxWkhiUmVoMlhSZkpzYUJXZThhRFBGYl96dl9YNy12VFpZYmF4X0o1aUpfOWswOTRXYUdscGtWM0hKNWs1VzV1b1NnOEl4RjhZTmt4MGM4dDVrbm9qVWNnODdpVzZYLWNQUXNGc1JRQXpPQk90bEJzb3JTR0RkMkEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA2OjI2OjA0Ljk2MzQwNSJ9fQ==','2020-01-23 05:26:04.966936'),('vblz61cez0ct9ddazzsb27hh2gug0hzb','YWFhODEwNWI3NTk3MDhhODc5YWJiZDZmZWNhNDkwNThiMjNkMzE1Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5YnhQdFlXRURtMXAtNVcyQmNsTlExRTVpc0ctaUNUZG5qUktTTlhHZ1FESlpvUUtNMTl2QlptNkloNW9QMFFBcWVPTzJCazE3clMyakdCSHdibXpITzBQMW1Da2I0dERqbS0xSUZCZXZadEQ2ZE1yUm56WnBMeXRtX3RXZ0UiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjUxLjcxNTIzNyJ9fQ==','2020-02-17 11:30:52.718506'),('vcaq4fcciuz56kl3kre1z6u7c08e43n0','MTQ2YWQzMmM5YTc5OGI4ZTg1YzEzMTIxNjgwNjA4MDZmNDVlOGQ2OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSWwtNUI0WmlNTXRDZHBsb3hneFFRZW5SQzRrYlVFQThpNm9wQ2p2RVZweVpJRklKQi1FTUFxZmVWQVpsby1tSjNoSXROQ0tlN3g4cEdMajgzc1Vfd1hoSWRwUHNyUWtlNTdncnBfX1FGVHRZYkVKaVFyRGw1VGM0V0tvQmR2Mk1rZyIsImV4cGlyeSI6IjIwMjAtMDEtMTUgMDc6MTg6MzQuNDk2NjUyIn19','2020-01-29 06:18:35.500038'),('vcvf9sjp8wqm3287n2vuinx1v7xcy1ct','ZjEwMmMzODk4MTdiMmIxOGEzMzA3MjgzNjEzMmIzYzY5MjZlMDdhOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5NHVtTmQ2Q2ZBeUlNQ2hqUFRqOE92ZFg4cFpwTzM2NGFrSkhSQy1OWjRud3E0WnIyWnlHZWRNVjczZHdYVnM1eUhvTFVtXzVOTTZkeGlvQTZ5dzV6WVNWeXpDM01PdjdwdHl3d3lwUVk4M2pnb01Xa2VUYjVueXNueVJOVGsiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjI1LjQyOTQ3OSJ9fQ==','2020-02-18 05:39:26.433030'),('vf3b2u33x990m7lg6ii304f84b5b3k0o','NmE1YzJiNDVmZDhjMTY1OGEyNzc3YjBlMGJlOTJiYTgyMmM4ZGYzZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2TGg1RF9DTlZVSEJ4NmhNc0hYWU8xY01pZDFzY1FVanZUa1d0WEJVT1JJMFFtcF9xdFZnMjQ5NjNhaTFBaEdKYkRZaHlKZkY2aDFlMzFfSElfRjBJWV9kSU9kamM1MXB0R2NET0FFUVFFMW4zcVdiRVZfNWVuOFV0bjNHX0NLIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToxNzozOC43OTI1ODQifX0=','2020-02-25 08:17:39.796113'),('vf8xnn6pldvg33ov2oowx8zl1prpsfgb','NDJhZDRiZjljNTIyZGNiYjVmY2JjMWY5ZjIxMzJkZmU5ZmJmNjZlNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIxZVZOOUlfLVIyb09QMTlkWXUwbjRsLXpxVDE5TzNNYXhRX0Nkd09pOXRRLXlCQnVVWXc1TnIzWm1Ec1ZVQ3ZHZ1VoR3BucWlRa3BlellLZ2VBUTlaemxTUnEyQ0NwenFvR1ZyQTVpSG1EelpiY2NBT3R5bF9YaDdxWHZ2SGMiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjQ5LjY2ODI3MiJ9fQ==','2020-01-27 05:46:49.671699'),('vfmhalkdc6j8hts4lrsdatdg5tnm4dyg','OTRlMDZjMzA4YzQ1N2ViNTc5ODkwMjVlN2EwMWI5MWE3YTY5OTJjNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I1a2ktaFFvSXRlN3pSc0JzSEF0dWk0SHRocHZpcW5NdXA4MjhJSEgteE5ldGNUUEswSWRuMlN6ckRwd1N5RWg3aGRfOS1KMkd0NXRNVkkzNEY3RFZVLW1TTks4cTV3YUZxdmgtc24zUVBoa0J2TDgwS25VU3JHeU5DMHhrSWciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjUxLjI0NjUwOSJ9fQ==','2020-02-13 07:50:52.249926'),('vgyddnsg2yc7ohyqeom81l700ih17af6','OTk0MGMzZjIwZGZhZTZkM2RhNDMwMWJmNzVmMWVlYmVhOGFlNjc0OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwaG12Z3dRdWNOaU1rQ2xOdGg3QXpuN3JPTnZoeDBHRmtrb01uMk51MzIxLU15MzVleWtWUmdETk5YanFrZnFhRnVVTERMbmRkZGtPUlcwLWR0b0N5c19xQ0J4c3IzcDJnMlV4aFJKUkxWOEhzd0Y4Rll0OWd0cXZ4dmVNejgiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjM5OjQ1Ljg1Njc0MSJ9fQ==','2020-02-18 05:39:46.860111'),('vh7dgudaf25qmbk17lrtguhspli16ywm','Nzg0MTljNzcxMDYyYzU3N2M1NDkwZjM1MTJhZWY2OWFmNzhlMDRjODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4dlA3eThJcFFLNUZvakZmMUd5RkRQMUlWWUxZeHRhUGNDNk9GSGpocTRnTGZFZTN5aXFMOElFS2JSNWR5WmRYQUkzUEx5YUJRY2xhdUVHWjdnc1VhVFVMSHdyRzdZRWJoNjlRLTZuRjJUYWc3eFRod2NXSENhd2VFVjZHVmMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjAwLjg2MzI1OCJ9fQ==','2020-02-17 11:50:01.868922'),('vicqp23g6nopn7l4pmeleid0a96xrorl','ZjZkZWYwNWFkZDQyZWRkZjdkMmU4NWIzZmUyOGE1NWY4Njg5MWJjNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVYzJnZ3dFYWhrZDJCaUxkSG5TVEcwS0FPTk5GMGl6b0oxRVRiZXFuYlVObnE1ZS1lMnMzNENqajZYWGMtaTFkLUg2LURRQ1dScjZ1eElhUk1VaEtXWVF1aTBIcW11Y2VYMHFSR3N2NGx0QXZaZWpjaVUySzlqRFlOX3NlS281U3otbFJLSGRCWGdzaUJUVmlYU1IzVWR1aHozU012QklnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1NDo1NC44MDMxOTIifX0=','2020-03-29 06:54:55.804912'),('vifm14hxt9drdh4xr07x79n8mo8094oa','OGI1NmU0OGQ4MmFjNTc1YzVhZGI1ZjllYjI0MDFjZTdhNzMwMzcyYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIwZzg3ekZRVlhoTVN3b1oyXzQ5X1FtYjFLMnFJb1JSdnpKbXpPaTJMR2FSQi1QQ2podnRqUGZmXzRqeEdGNmZSS3pmME1DVTlpTmtyNFFSSVlaa2lmMlFEZGhxNFN2Wk53dHYxWEI2WmNGOVlyOUtRQXRGVzFORmw1dVNWamciLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ3OjA0Ljk5NDU5NCJ9fQ==','2020-01-27 05:47:04.996055'),('vj0z5nlpinnwcp0f3mso6turyyjyslr1','MTViMmNjOTVlZmYyMGJmNGMwMWFiMzk3OTg2Nzg0MmViOTQ1NjY2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIwS2E4OWhhYzZqYzQtZnE1S0E3N3J5RGd5eTd0SEphcDBCZ0RqNEsyaDFCdVpTN0NLM1dEMXVuZ05ReG9ON05WVmJWTmFGLWxpZ3VkTmdBQWp5WEhVQXJRN3BiaV9VaHVyNldMVE5CTlpGV19aODBCMmJmaVQyR24wS3NOX1EiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjM0Ljc5NzI3OSJ9fQ==','2020-02-17 11:20:35.800468'),('vj8907zjrkzguadjsj8vj6z9u302o26l','ZjYzMTU1NTk2ZGQwNDFhYzI2OGU4NTRlMGJiMzI2MDY3ZjdlYTFiOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4bXhVZ1VYdUdzQ3Z2cE5zdDcxYmpVdzM0NTBVRkFWcHVReVNNVGVoamU3SGlrZWVhcUVxMV8wSVpFV19PSnlsdjBZS0J0aUxZaFIycUNVYTdFSGNfT19Yd0hGTC1xZVlrcERiaTVqbFpMT25JX0FZQ1NNZ185UHZUTC1BNWMiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjI5LjI3MTM4NSJ9fQ==','2020-02-17 12:00:30.274976'),('vk8617dxcct7v3mmkmmjmg9m0mw8mabm','YWE0YjhhNjk1YTBmYjEwNTVmZTM4NDE2N2IzNzlhNzJhNzM5MWZjNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMwTHE1RkxvaUhmbTFOcVplUl9JWnVxQVNyOWQyN0Uzc1EyNnlRaVFYWkRJM0pTMFhfQVAzSjM1Tng3Y2hJYnowSWJKcjh2SWJBSDRodkpGWlpOT2UzNFB6TDNzSFkyZi1DRmVNN2dGdUlmZnMxMjJZMkVpMDcyRk40ck1UcWhJM3JFb2NvaTZQal82Q3hxZTdhVFM3QUNwcjdZd1h3WEhRIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNzowNy43MTk4MDAifX0=','2020-04-21 07:07:08.723261'),('vkcv3xkfget9v0fgxu4bw9qid8e4mbj6','ZDM2NDhhNmEyMWRjNGRiYWU5Y2Y3NzhlNTQwNTc5ZmY0OGU1NGEyYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyMm5Sb2xwaWc0Z2pjVVR3ZzlZWk5DdGFaVzVubW41TFB4MUQ3OVpQaWpleGZaVnhuY3B2R0RURGNmSTFXMHZUbERJWXQ1dkV4UEZMVUUtM2pDSzhRSTNvU0Z4Q25ETEpUbXJpQ1J2ODFYVkFqNnpocVpBeWJNYjZ6X0VVQ3ciLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjI1OjQ2LjQyNTQ0OCJ9fQ==','2020-02-20 07:25:47.427566'),('vlf9d4i4unfc2kb3aokzsbzmmyfrora8','Y2IzYmQ1NzIwNDM0OWJmODRhMjkyOGFlMTVhYjgzZGYxNzZjNTI5Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2Zjdib2NRZE9IaWxqV2U3WWFPSXJQWTU5aGZMMUxIc2JXMGw1RnJmZjkyN01CSTYyNWpNbjRtdXRRaXJHNFc1V0FCYVZ4ZU5SMXM4LUdMaGpuZjVRTEVWTEdNOGtwWXNLTGZodHA0SHhDYmFJTW42RW9FMzVaOEQwbGdLdXZ3IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo0OTo1Mi4wMTkwOTUifX0=','2020-02-23 06:49:53.020207'),('vntzn6be88pilm7i6ggt88foh5pnkn4h','YzlkMjYyYjQ1MjgyMjRmMWE1MWUzMWU5ODg4ZDQ4Yjg3YzM3ODczMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzRTFxWlkzaE5ERjZYUER5WGxpQ0xQcXlnRUJrUEI0OFFyb2c4bmlzb2NOcERmNlR3bm9Lc19MOVpaYnpOWGs0NU1ITEVRQ0pCYU5SbFJyM0laR0hoSGVPcm9hZXRWWUc2c0UxQ3VyZUtKbnR3QXlON0dRaS1OSEExekNjZzJVIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1MjozNS40MjUzODgifX0=','2020-02-26 06:52:36.428969'),('vo4tyage8qgt2e1httklraqxbo4qo7q2','YWY4YzllZGY5YjUwNjcxNWZmOTZlNTQyNjM4OTUyZjIzZWJmMjFjZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWcVl3SkVMdktMZmhmemE4aGhSRzlBZ1RRWWxjRmlwTVVPWFhpbzBDRDRVNjdqcWlzT3NPVF93WXRtTDV2dTAzVFZlOUs1YzlVQnJxU1NmOXlYdnlCd243UEdpSmFEc2k4cUZDa1ZUekllOWwzekRyRlc3QV9jemswS1FfSlkzQzRBS1JaRHdacjhsN1hwd3JTOVNBTWlpdi11Zks0dFBBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMTo1Ni44NTk2ODcifX0=','2020-03-29 05:31:57.866855'),('vor98vk8l2op24x6uq1cfnixdvf58y1i','NjczYWQyZjIxZjlhOGExODcyYzJlNWQ1YjdmZGM5Mjk1M2RlZDgxZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyY3IzSXUzVFRJN3RKYUphWWMtTnl5ZHZGdUwtckRJLU9IM2JfcmE3eFN5NzJNRkJ6R0ZNeVBMeHB6OHlSRTdBcWt2OU1GanZ2bTA5REpQdm1jZVJLWnpzNnRjalBCYjkxMGk5blljWlV2WTNwSUlYSUhuZ25admxGT3I3QzgiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjUwOjA1LjQzMzgzMyJ9fQ==','2020-02-09 06:50:06.437311'),('vp4znxhhzmdw4b5d820mlmph9mhyjd15','Y2Y3NmFiYzhjZmJkMzE0NmJmOTFmMTU5MDBmNTFkMjAwYjE2M2RkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4eTQxZzY3QU1JUjBFTlB6UlZXdGt3LTl3WnBnS1ZYeC01ZzRFLV9TZld0U0NPWXkxVURWMDlzYk5qczBHaWNMbVNHbjFqcTNuOXpHY2IydXJKT3Z2RFQwNTNQWjBmXzhGdDE3d05vUVBYWHBxQWl4bkpwSExxTU96QlQ4RnNqIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNjo0MDo0NC40MjA2MjcifX0=','2020-02-24 05:40:45.423809'),('vpa6gyxlxlxcgvypmsbfrqtvz66rnxdx','YTM2NDJiZmY4MDY4NmFiYjdiZTg5OGI3M2E3Y2FlMTg2MGM0ZTc0OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyVmlmMXJVd3hwd19ONERiRUdBUno1NnFKcjh6TkFod3dveC1sRVk2ZGlMcUMxV0NJVG1xWVo0U0JSdkM2NjZraGw1UlVUdE1HaG9LT29nZkRvT2REbEJsU2E1bldHVlZLeWVRdmR2SFhSRXB1dXQxZTRhTmU3LVAxZXpGMmsiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjM2Ljk5MjcyMCJ9fQ==','2020-02-13 08:00:37.996407'),('vpjabzidgvy68ajxxppqws63qwvimjfe','MmRiMWZhMWE3ZTFmMGJkMjU3YTIxMDA2MWI3MzQyOWU0M2I2NTBmYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyLURvenJ6RnlsdVJwSXJEaDlpUWVTU0VWaTRET28xUUtRSHk5cW9rRm5vSWo2YUsyend3eXpLZVdKZWEwLWttbDBlTmlXeWVqZjlFZ2VfY3ZMbGtDQlZieUdVbHhwMlYyVnZOQUZVa3M0Z1EwbXRTbkducFE2VGswcG9sZk0iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjMxLjEzNDI5NCJ9fQ==','2020-02-17 12:10:32.137792'),('vpnddtj16mvcuk6w54fapkafzbwlw91n','OGM4N2ZkMTlmZGVkNjc0YjBmZDA1OGNhYjg5YjJlOTM3N2RkNWQ2Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0cU5qdkFhVGlwRUZwNGFsV1gzZVcwM0NuUGZBdW10X1YzYW1mVWJzZ1JMOHRYX2dGcVY5UWZCaFdZWjRHd2hWYlhJS09GUE9RMjVKMHhRR3AydmIwbk9YWDZDakxISlR5TjVfenRmTmo0QjQtcDI4RkhrR3BkV2RZMXk3a0ZUIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMjoyNS4yNTk3MTYifX0=','2020-02-23 07:02:26.261483'),('vs2ghu8qo19f0nh9io3z9uqtc0bpo9qh','NjMwYzcyZDIwOTYzZWFiMmFmMDZlZTllNjZlMDBhMzY0OTNiNjI4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzeGRIV0lydDhsUlJnWDBkbGp6ZEgtODZJWEZfNjZhVkp3N3FIWEd0ZWs5UnhQM0kzZUJRN3JVTjNvQjlaSWx3c3h2NTJLdTg3MzM0YzgzVDl5WldmZ0RIZ3UzSy11c3JtdUlITERwZnZFTUtyUDZkdUFLTU1fSG9sV3lqT3MiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjAwOjI1LjI4MjA0NyJ9fQ==','2020-02-17 12:00:26.285524'),('vsu68q17wvsr2qaxzxszd6trkzvzl1ym','NGJmNTllNDE0NTVlYTZkYzVjMjc3MTBlOTJjYmNhZWNjNjczNWM1Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItZngyRDhVZDlhX0dKcXFsZHh6ZGVmUjVnNVhiR2xVb0dMLVMwcWVxMXhheXNiQTBZVEFYOThac1RsbGlocUVnT3gxQlhzOWh3XzQyQjdmdjBEbGlJR3FxeXI1WkpVdjJNM1RqOTV0ak1scVR6ZWg1a1NKMWMzcEJGT1RYcUUiLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjUwOjEwLjYzMDczNCJ9fQ==','2020-02-18 05:50:11.634197'),('vtzlhuzwtpgwamsu6pvf5d9aumel9agm','N2EwMWQwZTk2ZDIzNTgzMjQ2ZDNkMjY4ZGEyZGZjYzZmMjQ2ODM0MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzTE92eElZVWNzRkVreU91ZUd4MG45ZVpwNXpVMU9hN3lvemFXTVI3VmhrekJRQ00xeUNtM0dQektKQlZ2SjdmN3NOLXNQTHhObUllR0NqT1RWcW0zdkpPT2pCUnl3Rk40WUNPQ1lGYjBmMHRzRGxMU0daSkpmVjVsTjhhaHciLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE2OjU4LjE0NjIyOSJ9fQ==','2020-02-09 06:16:59.149839'),('vux7cg4jqylhfyzxwp1t5ntkn04y5x6x','NjEyMTQwYzA1NjYwMTJmMjBmYTY1OGU1OTExYjhkOTkwZTY4NGUwZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIxQXlHM3lKQzZFZUVHVHQ3QkowRTAtR2Jpek9LbGVQY20zZDVoSDJsQ0pCdUJEZmE5blFHcWMyeEdBZFVvU0t3T3Z2MDd2bEZMR0hxY0ZxTVBZb0JJNmZ3X3Fibjl0X3VwNlZDR29KeUwxU25ELVZzYlN2N0FkQ19tWmlDUkEiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ3OjEwLjcwMTc4OCJ9fQ==','2020-01-27 05:47:10.705084'),('vwbqb665ot51ud7bltyhrehhl58o6n3t','OWI0MTRlYzVkZGVhODNmODg5ZWJhN2ZkYzZlOTFlNjU3MTRjMzViOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXeEk3cU5tZjI3T2t2dnpsWGQ4ekZ3eDEwMG9TeXplRDlINTlqMjM5THpZMkRzcjRaclVUaFFaaUZ2MjUzSjVnTFctYUZpMERpRlJQMER1MnV1VDhBQmtJOXU2OWMwRDk3cmk1XzFtU1NtWkowNzZmVmI2TU1OWjBvOF8yaFlCS0Q4cGdKNkxyRTBPdDUyWEwwdnNsbGtFSExOZk9ySlB3IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToyMTowNy4yNzIxODYifX0=','2020-02-25 08:21:08.275634'),('vy21ozr225nr1x85uqokcpb80bazodbd','MDZkOWM2MjgxMTIxMjg2MmI0N2VjMzc2ODcxYTkxZTFlM2E3NzBhNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1dXM1eG05cnhHLUI1U3VnWDR5UXRYalpGYllBa2VhZlJieDh0RHlFLTBXNU9NNERCNUpUWEZaWlljWHJoMVNPcE9wWWYyLWRwRVQ3VnAwYV8zcUF2eWdERFVBLU5zS29HTEFWLWNHc24tVGdEd0FtRmZ0azA3Tjc5aWZybnciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUwOjMzLjA2Mjk5MyJ9fQ==','2020-02-17 10:50:34.066331'),('vyolexe10rglf92262rzgx80obkto2fx','N2U0MmNmZDllZjg1NTA1ZWY3MDAxOGU5ZmFmNDQ3MDBlZGE1MWQ2OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3ZnBNS2U5RmROVzZCUTBzZmJPYkxPOWN4eG95R1JiWGMwb1p5ZXhQNUlRempqMzF2QnNLR055T2VNODZlSDN4TDBMeHdjNUVBX045cUdnVHlaMHBxQnhmWUp5cnRJMktvOV82U0UzcDZVcEFBaXkyTkNVcWdYdnFBTFFfYW44IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NjoxOS44NjgwNTQifX0=','2020-02-26 06:56:20.871557'),('vzjcwez03eqgi27611xg746nf99quaj0','Njc3MWQzN2UzZTJkNDZiYTdkYjNiZDc3ZTJlZDc0YzM5NGExYzU1OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2VjJ2cmJpUE4yc2ZSTU83cWpISmNISXc0ZmJFb3ZUSWhtZEhsSzlhOTVmZG9ZYms0dEhfUUdXRmVDUl8wZ2ZyT2lkVW1DSEVNQk1ERFUzZnNBck5UMzZSaS1MOHVCeXdhdnZfenZ0LTFQcUhscmFveWYzc0ZWajNjeDdVOUJ6IiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1MzowOS4wMzIxMjQifX0=','2020-02-26 06:53:10.035794'),('w1mebw0yq49j628knguu3s87tm9te5hx','MjU3MDA2NTBjNWIyOTE4NDFjNTJjMzJhMjdmNzQ3YWY0NDNhNDlhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfUmR2bHlxalZZZE1nUV9wUXpocUdhY3RrTU9aeVFDS21GOEMwWkRMUXU1QlVoemR3cWVjYmlNUHFHMEJGYUZlVlFTVDVpTjV2OWkxMWJtakhkZ25qa2g2bVBoMlREcDllY25yVi1LWFlidXBZa2NSejVsV3RFdkktaWFrejgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjQ1LjExMzMyMyJ9fQ==','2020-02-06 12:05:46.116865'),('w25hjkhq2n5ta973gtqwyte07hsxdw5f','YjI4ZDYyMjJmZGUxMjNlOTgxNzljOGE4MTQ2YzcwYTBmNTNjNWMyMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2R0o3aUZGekh2S2JwTHdKdS1fdHRYM1I3S2xiaHNCRll1WTRwQkd3Z05xZDBWZnN0MXNsVlBUN3N2bktoWUJpWDBOb0V3S1A0M3NNY3dqeWpvOUVWVnRIR19uejRiRXBkSzJzOS00OGhHdTNNZFV2dHhTTlU1aG5yZHBQRWsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjIwLjY2MzQxNyJ9fQ==','2020-02-06 11:23:21.666886'),('w2hyremah2xw98dyuu25pohba1h86i48','YzY2MDY1YmEzMTEzNWU1YzVmYmVhNGZjMGQ2NjE0YTA4NTNmYjIyOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwTWJqdVo3SHZ3dVVucVVxTHYzN1ZudlFoRzMwTzk5N2czeGdFRldocTEyX2NpWHN5SUZIRU5LUHRSMWVNNXZrNXM2YTU5eXRaNDRMTks5Z2F6UU5SRWRfQlRpS0ZXbGRvR3ZhbDFVd05EWVBsVkE2UjJ5V283SlNzM0pKbFF0IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowNDoyOC45MTcwMDQifX0=','2020-02-23 07:04:29.920310'),('w2lsxsr4bv6ft70fbmq5ib0fmnejxm1z','ODczOWYxMzk1YzM1N2MwOWM0ODgwZjI3YmJiZDczYjlmNzNkNGM1NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwMWh6UEZXanF3OGtxSXpIZDRlQTRoQVE1R282VmNzc2Q5V21mSENvVWFaRUxUdWJseE5jbUhET3RfVVRpTUdfc0xEbVI4YTQ0OW0ydW11RHdxYUtiUWZDZ3FWMlJmMnlHbk1ZVmRnVXV2bEJHTFRsTUItNHc4US1NOFN5NE9iIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NToxNC4zNTExNTQifX0=','2020-02-26 06:55:15.353194'),('w2phs2hkh5oav2mmjbbhaocxsm13ookj','NmY3Yjk2OGRmODk2YmUzYmY1NDk0ZjFkMTliZDhlYzZlYzYzMmI1Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyRjZ4RlVDWTh3YWpBNzV2WDdIdzlCcDEzZXRmZm1sQWhMYjRfMXBCX1YxNXJadUJTWmVRLTM5N1BudURwSUo3S3R5b0lRdWRWWEhFM1h6cTE0SjY1a0p6M1JoeE9HY0o0QnE5UzFuR2gteEFNTjFfR0dEVGNfYlhRSzdRdGciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjIwLjg2MjMyMiJ9fQ==','2020-02-17 12:10:21.865866'),('w4ee40w2sokhrsxqq31gaqxccaimhir2','MzI0NDY4MDU0NzBhOGVlODAwNTdlYThkZGUxZGFkZTFmYjQ5MGJlMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzd3NCZi1aaGZnV0hHY21teXJYMjBZT2R4OE1iNjFoSXJnZDlCZzRzSVg2QmJYSnZ5NjltLWtGekxjcU1kendvc01acTRCZmhLalpHT1J1LWlhdmk5QWQ4R3RfZjMzeGNGTXBxRHlVWV8tT0V5bDFGQWxvb0EzVHRhU201SUEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjEwLjEwMjIzNyJ9fQ==','2020-02-17 12:20:11.105650'),('w4k8l2xvqszujr0p65w60sqc78n6ftro','MmI5YTZiNzFmNzliZGM5ZmJkMmI2NDRjNzhkMjZkNmIzYzFiZmQyZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ4cVphd0w4ZzhtQ3RSaU1jRi1fREZOVy1GdU9pTVFCNEJRaWFIb1NKQkNOM1hySG93WFp0UkNKVE1NaWJTc01vZDlqekhfRmliUjJkRDNqcFN3ZnZ4LWRnQkdldTRUMHRQREJkY1ZsckJKTWY3YlZqWnVYa3lPRVNOR0NsZDgiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjI4LjkyMjU0MSJ9fQ==','2020-02-06 11:23:29.925936'),('w4we2w9w0b301rh5zn88irzllqxz2qa0','NGRjZTZiZWFmNmZmM2VmNzVlYjFmNWI4NDYyNjRiY2FiYTNiMzBmMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkItU2ljTl9JX2ZVZVhEODI0dG5ULWpXd0Mycy1ZeWR3cGZ5WlFLNWF5a0FseXN5WTgwQjRhTmhCZ3loNWZQeFVqT0w3WDdtTmhseEM0TW9RY3gyWjZTbVNwSmxTbnNsZERNenhpZklFYlBoSG84cnNONlVvMEVBQjV5UUowYkEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjEwLjU2MDY2NCJ9fQ==','2020-02-06 11:30:11.564033'),('w5289jrq2097iailm7yb6lef5wtd4z04','ZWQ3Mjg0N2E3OTAwYmE0ODQ4ODJjMGY0ZDNmYjQ3NTE1MmU5MDZmOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItNnp5dm4yUFhKMVJiQXljZk1MeDl1U18zR0hsbHh3MmszcWpBNE1Ob2FxRlJ3QkZtTmtmRVFBUW9rc3RNM3dOQ2VQbEdjZTZaeXVsZGRvTGc2RnQ0MXFOOVJiY1hhMkdxRmRGQThTVURRaG1qN3MyaVdlZzNTZmZ1YXZYdmciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjA0LjE0ODcxNyJ9fQ==','2020-02-06 11:50:05.152116'),('w59ex7w6cfy7oz6nmn8iaii47es9yd7l','MThjYWVkZGU2YmZkMjk2MzZkNGFjMWRiMjA4YjNlZmI4NDEzMzNjMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfQU52T2ZpQ01fRV9KLXFXN0NMeTJreGNGc2k5WHJPRm55S2NjaGN3OUxDRVF5Vl94d0p4d3VtZTNrZGU1cC1OaDMzZWpteE5qZnNuWkxoMTFJVjJVRWFfMXhuUFMzOTB1ZlN5VW5Pb0dicHRPZ1lvNXI1YXlhOWhsbE1wd3MiLCJleHBpcnkiOiIyMDIwLTAyLTAyIDA0OjU5OjExLjI1NjA1NyJ9fQ==','2020-02-16 03:59:12.259390'),('w6eb5njommu110njqwaibz4f7mm0r0hx','Y2JhZDZiZWU1MWQyMDk1YWE2MTIzYzNkMTMzOTU3MGY0MDI3MTExYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2ZmZkNkk2NzlHVUJVcXZIWFA5Q3IwYjFlRWdhWmw1cE54bEMzM2U1cDAtdzB5TC1iSVJXOFpReVZBeXFsRGZJekhEUkVjMF8yQXFSdmtGNkpxVnRwalJGQlotckxYMWZOLVhTZUo4T2RrdVF0V2o2WEVUUE9RUm9oX0hMX0kiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjI3LjcwNjU0MCJ9fQ==','2020-02-10 08:20:28.710169'),('w6j03s87lt2wgjlbeizcn6pny9vk3y2g','MDU0ZTBhZjRkOTdiOTc3NWZjNTA5NTNlNjg1ZTAzZTE3MDY1ODU3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxQ3ZJSHNVaU5HSFdWY2NzTGI5MlpmTnhYTHBRREk5bGNJZFZhOXJwZXRzUS1mXzlxRFVXajhZckZ3akRHMHhpUzdibVRZdXRIQXJtU2pRMS1tS3NBUlcxeXdmLUF2OUtTd1lQdHNMTUVRb0dYTEVwSUwzNHNJY2dmN2dKRFkiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjUwLjY1NTc0NyJ9fQ==','2020-02-03 06:17:51.656940'),('w6tkc7x1dmd3a8ci6ca22kyc2wuumh8t','ZmVlYTZmZTlhNmJiZmViM2Q0MTJiOTY1NDIxN2JkYTI3M2U1ZTJlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXbU1wME5sZDBYMmdoQkZ5d0NERENmcEpKMG5RQ2VEMk43UEFGb0dMLVNPTkJ4RGZZNnpnT2ZjNUhVWVNqNmZKM0l4Qk1GZWVYQjViYlpMTnhLTlU5QXYxQlFoSDFLN0FSc2txdVNjOHpBZURDOU1sRldVdDZJdndrekpoeGhTc0l5NVdHQm1pSXFGRi1Bd1NLVDhkWEJVaHg5MU40N2RBIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzowOS43MDA0NzQifX0=','2020-02-27 05:43:10.703805'),('w6y1akpepr8tfr5a1wb582nle3z86fsr','ZDU3YjY2NGI5YWYyNDMwYWExYWQwNDdhMzczNmQ4MDIxMTE1ODY3Yzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IxMWVjcGNURWlXQkdTU3gxeUFDSHowb2VSZ0F0UzBlN3ptbVg5a1I2Vm5zSHlqV09aQkRaejVOcXFfUmREMU9FT09xTGhEZ2draGE2ME1Bblp4OUoxVGlBNTY1b2FTdGloUTBudUhaNXRJM1A2MDF4aHVnYzd2LTFBZ1YydzgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjQyLjY1MDM0NyJ9fQ==','2020-02-10 08:20:43.653739'),('w79bnb3k768k07v0amu2d88femir1jb6','ZDg3MzI3OWViZTdjNzgyMDU3YmQwNTAwZTc5ODFlOWM1ZTU3Y2FmODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxZ1RkWkRCc1hNT2VzVEhfSGhRVVZrVGtZVkNqczZQUk9DXzlIR2lYYW9TQTk0UDdJS0xjQmplUEY0UHU3Z3E1QmlsbFBBOEVtdU1zQUVUSXFBc3NNZUhnZ1R0SjAyeVAtSUlYQml4S1RiNS1iN2JKV3JGUS0wZ3VkOXlBcjAiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjQ1LjI5NTIwMiJ9fQ==','2020-02-17 12:20:46.298808'),('w8a0t6vurtul9opd421d6oh7qj8hzl26','MDg1NmU4Nzg5NWNkNTNlZWNhNmRiZTcwZDJmOTc4NTVkODcwMDlkZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4cEpwRGVLRzlzTUI3cDU5NC16REo4YzJQRVExUmdEcmdLdHBrRElhVUVTNTRSd0NnZlZoNUgyQU5LNnNVdkFGQ3QxS2lXWUF0Q2ZMN2dsQkxwbjdiaUg0Rjd1dkZCSW11bVkyRkhmMXZ2UHFGY3VxWWZkeHE3UlRvb2x3SWVVIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOToxMC40NjI0NTMifX0=','2020-02-26 04:39:11.466798'),('w8dfr9p9690b63pjuoekz1yipmvll32g','YzE4NDU2MmQ5ODY5NzQ0NTQzYWFmNDBmNmM5NzY2YjFiNzFhMzM2OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0VFZYQUFBQkplUkJCZnZkNVB0Q3pscHVXaFFObEZydnJpUGs1VUp1cVI5dUt0UGtkWDcwVGNneTRWVEl2d2JjUjhOTkxkMDAzdlQtWlV2MXZwN25BeVZuakNuZER4N3F1SElfUTczSWJxd29FRGJ1anBCN3JMd0tkWTJZWG1IIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowOTo0Ni44MTUyMDkifX0=','2020-02-23 07:09:47.818819'),('waj580vbsr8597rz7mcpsnmbcdqz4ek2','MGQ4NzZlZWEyMTkwZjYyODYyYTRmZGI5NWRiOWMxZDc1Y2IwODNlOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyUXpReDJFTmlLaGlPOG9na2N2d1VQRUZzdzhja3h4emg5VHNMT3lXczY1QzhhSWNmNmVnOU5GLXJNUjgxZkhMX0M0VjBhVzVXX19SRFVkNV9QRFVKZHlDcWJNYVlUckNQUW9RSXJITVVWaDVzRmtPMFhTaGJNOF9CYkM5T3ciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjAwLjkwMzE3NiJ9fQ==','2020-02-06 12:20:01.906677'),('wax8ne8flg5we8ncakzih3zeh0xjinz0','ZDY3ZThlMmQ3ODAxNThiMWIyOGEwMWQ3MjI5MDI0ZDM4N2JhNjI0Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXSUtLRTRVd2FDNm05QVBoTUpFMW9WU0pHT0l0SkV0dm1US05maE1kNUV2QzNvWERQNHFYS2x4dEIxRVFQeURvZzltb2FaZC1DTjVFTy1CRTlmRFJpNGUwOXZ0bGNaemhiNHRRMkFiOGY1bkxFNVZJd25VUllMRGdwbUFmbVVyWGFLUklETWdBM3ItYS1aaGZWT0xaTzdycHJ4aDZtOVl3IiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0Njo0NS41MDk1ODYifX0=','2020-03-16 07:46:46.513515'),('wc1no61ktaqw5mb5679w6urdkb9qcsji','ZWQ5MGZhNDhkZDkwM2JkYzhhZWVhNzM2ZTIyNWRjMjUyMWRjNzhhNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4WHhSTDFFVHFmbm9ZdXZVcW5UNjY1eGV4MmhCaWh1UXE1eVZhREhONVJPeV9YdE5vWWNDYTEtYndEWEF5cGRZVGF0bkItRi1vQU1aUVROUDZEM0pVTmtMNkZJc2V1U1doRnZfTm5tcS1pT3IyS1ZlOUYyVU8yTERPTEZpckJtIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToyMjowNy45MzMwNzQifX0=','2020-02-25 08:22:08.937211'),('wc7w4cv9gfbqt615pnt1ghismtfq3pcc','ODQ1M2Q2NmE4NjVkYzU1MzkzMzg1ZmFkYTExZGE1YjdmOTM4MDZlYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ4bTJoTW1TVzZ5ekdlemtyaDV0eW5oYnA0REpEaWtZdEtBMmx1LWhZaHlVU0pGMUFfVG5tdlEtejhic1ZUZ1hCSzZla3FSek82bExUZ1VxZldjc19nbHNOT2FTcUdlQzBGZFM1UGllQldaMm43Rm9vSWZGTUJ1M0tGQTZweUEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjMxLjU0MzczMCJ9fQ==','2020-02-17 11:20:32.547233'),('wcy8uc86o0uael704gnv926p7aqho4bj','NzMyNmY5ZmVhZjYxYjRjYThlM2MzMTYxZjg0MjkzZWY4ZjVmNGMxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1IQUI1X0VCbkw5dUtnbjB0QzZncVFZVHNEa0c0QTQzRmtjY3RwQ1pYNExQVmtWX2JqY2JqY3JlR0oxMGJ1VzZWMVVScC14cW92UnlZcGlUR1RsSnQ2Slh1d2dHM2JhU01fcHFQTEpmaDQ1Z0llcWZNYWdsRlpYNFptbF9Od2w0aXd5IiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NzowMy42Njc4MTYifX0=','2020-03-16 07:47:04.671712'),('wd7ffnrys07okr21mfo45hejn3re2u5k','YTRhZWJjMDU1NGYyZTExNDA1MDAzZTY0N2I2MjY4ZTQ2MzUzOTkxMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxZl9XX2hoTHFkSEx6SEV3c29YZm0tY0Q0TEtXNXctOVptRWpQWXByN09kY3E2X3NMQXdKVldXdkZsV0c1ZEQ0MmlVcFB6X3ZwamN1WlVUMTF6NGZFNHRSSWZJNFctNlZVSldRNlFTWkhOLW1KTEVyUHBzWUJpbXhsTWtoYmMiLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjEzLjY4MzQ1OCJ9fQ==','2020-01-21 05:51:13.686919'),('weqmi0b9ew4m95xdfwugkzrv4u35j4ry','OGMxYmZhZDYyNWIxMjczM2I2NDQxZWEzYmY1MjJmOTJkMGEwYWJlOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXWUc5T3VMSnZWT2FlZV9wVVk3OUI0N0lGUVd4dkZJV2l5UzhiT1YwZ0g2M0VRdjdlb2ZmQmZManhHaDhjT3AyLVhGX19fTTRBa1V4NmN2Q2lnQTM3bFNMM1JDdHB5UnhFUWNsR1VGNGRRV240QW5GdV8xZzFUTTRNbGJ3eUtxcG5oaS1tcDd6STA4VmwzWUxTbzFqeHlqSzI1NUtTZUd3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDozOTowMS42NTAyMjUifX0=','2020-03-29 07:39:02.651385'),('wfixubwgfmi5ml12vmktcaqtu9tii5z6','ZjhiZmE3MDhlNDk5ZTI4NjExNTQ5ODgwOWIwNWM1MjkzNTVlMzk3ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1c3prZmRsMlpLUjZqcmdiOWZNUTJOd2xudzhJYTVya0tSSkcxZ05WNWhfckJOZVdJNVdjeEY4OWF5R1pZbURveEhOMzY4WFhIUWFqSkVjamdEVk5oLTE2Ni1zaHNEZWtPYXZlckl0TmtiVFhSWlZ3X2FMYXVCOUl5c3RoQjgiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjM5LjEzNjU3OCJ9fQ==','2020-02-17 12:20:40.139875'),('wgb3yxilyq620rio32jvvcd98uz3wz2a','M2MzMmIzMDU0YzY3ZjUzMzdmYzNmYTdkZjQ5YzYzOTM3NjFiOGQ1Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J3Q0VXT0lSbVYtdGt1d3NfWkRGLUV4Y3NjbWhiMnMyWEN3bWZGZlJmU0ZaMXZhRjdndjlpVE9mLWs1WGx6WEJKYm5LYlV1U1A4dmJVUXZGQXZCeW1EdThsdkhUdHZNak5YdXRueC1HX0FxTnZNZ0RkNVR3RUgwTUhkWjg0aTgiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjE5LjU5NjI4MSJ9fQ==','2020-02-09 06:17:20.601439'),('wghg8cg9yhny2i9ctoblgtfwryd9c0lz','MTk1Y2NiNDc0YTBjZTk5OWI1ODkwOTU3YTA3ZGE3MzVjMDFiNjgzNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI2ZUtuZDB1RjQybld3dFg2UVlwOFBaNy1tS1huNkJDRHVxOUxodlU1QzlleVI4SG5UM1RhMWZkTUVIbm5sQm51QTlhYUstZUd0ME90YVRsWVJHOURlSGVkalNoMDRvSmtSZlRLNENzdS1xYi1uWExNblZSOU9pOFFKN3ZtdmsiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjE0LjgzOTg2NCJ9fQ==','2020-02-17 11:30:15.843507'),('wh37oubljygp1wmrdm0aak5b5c595obb','ZGZkMjQ2NDg5YmQzYTc4MjY5OWUzOWRiZWFkYjUzMjQ0OTM4M2Y5Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzNHdpR2xLeURyWmlfdWtjaXp1UEF3em5yNURXU2xZQVU2VHBXUVZNMzhNd1kyQmxXNmw1NEZ0LWt4V0xpTkFZWEt2UUlXMlN5Um80N2M2Z3lhbUhrT1lUZTVzN2JfWEpuWXpiY0hhZ3Q5NDE0ZXVQNGhmd3czbU91Z0RRRGdZUWJNV0s1WVRqQ2EtZWxMSVhVaWlXWFVxSUhNN2dzZm9nIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0Mjo0MS4yOTUwNzYifX0=','2020-05-18 06:42:42.298315'),('wijbo4jyr7ctx9uctz0zici0485ru03u','ZDNlOTViNzBlZmNmMzFiZmI3ZTc1OGJlOWNiNDFlMjNiMmI4NTFjODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMzd09sak1ZZEl2TUYtU3JFN2ZqdTM5Yzd4cHA3eTJ3eGNkaGhTbEpLZDEzYXBHelRDd2t5N3dPRXRkcVpYMkFPWTlpa3ZVcDZoSXRHLU1lRDJVY0IwTnNFc1NUWmF5X3lKTU5FWUlXWmZZcnpmSkJxa1pmUEswVFdjQmI2NGx4eGVNM19jZTVFdTQ5UUdhNURqNzZmeUxDalFTclFjNElBIiwiZXhwaXJ5IjoiMjAyMC0wNS0wNCAxMzo0MTo0My4yNjYxNDcifX0=','2020-05-18 06:41:44.267373'),('wiw908h6daq2m9pwh8i7u80kwfpnhh6j','OGM3OTAxYTMxZGUzNTVhYzVmZjU2YjhhNTQzYmQ1MDFlYTU3MGEzMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWWEZtLWxXYlFPN0xFanZ1aWZpT1lDU0FWWTJNVW1hVTJxV2FUZjQyQXpVc0JxVzV0LVMzMmVYV0dhc1Q0RWNWTGVjTUJjUFdody1rZVNfUFBNb0JpcXUtUmJoNlVBUUdMVzNWellMZ1VnSzVqVG9RTFc3OUlEZHp0RkxoVnJaWEV6THJCb0xpTUZLLW55WmlqU2ZaN3NVNnNLMUtMYzlnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDowOToyMi45MjM5MTkifX0=','2020-03-29 07:09:23.927759'),('wixu07qc27vl6qt9r3oy2np55l6hrs6h','ZWM1OWQ0ZThjNzYwN2Y2MGQ1OThhY2I4YzcyMjRiNGI0NGJmMTQ0ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYQmNYeGVlM0E0R3JKV3IzUEQ5all2UjQ0bWtwYk5Hd3o0aXhrQ2ptUzg1RGpVdFFFVmx4VVg2N3c0c0RSVGpnOE9mZGQ2TmI4ckg2R0hMa3JrSVh3bnR1WVJrSFJwYmVZN3hFeTVJREtzNF9YM1YyaEdwdGxDYTRVRE44aElPeG83OEFMTW84YU92dGZPc2RTNGtSTlRYMGlseFFLT2pRIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1MTowMi43OTM3MDkifX0=','2020-02-23 06:51:03.797252'),('wk0q7imjbacmqa1e0u2amz2xmo75pu34','NDBhNzM0ZWZlMmRlNGE4YTEwZWM3YzEzMTc3MDQ2NzI3YWU5MDM5NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYNEdTSFVqZFpZbzd5c0w1ZFlRakFlenMzUkpqZ01DZFhlOFExWGZiY0lYYlhOMm1DMjlsTjFXaTU0OHdwQ0VWa2ZnYk5kME0tVEc4YS1wQ0RqTWp4Tnd0anY1WjlrSVJvQl9GVmc1bm81cHJqR3F1MGFXNWdILUFuQXZHUEdOSVU0X3oyRTFGMTFicFdfVUJacW5FVUdILVZBejEwNlNBIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOTo0NC41OTE5MTMifX0=','2020-02-26 04:39:45.593153'),('wk8niuxdh0i1i5rwzgvlpe3lflx9zg6a','MWQ1NzM0ODAxYjVmZjI2YWJhZDM4NjU2MGVmMjU1NzRlMzNkZjhmZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJfeUs1OXJoQzh3R1AwR1otNnZISVZZRmM2c0U0YXlmMlJQa1pDSGk5NFFqclN2Mzl0U1dOSW9Xc3lBbEM3VXExTGN3OUZHV3BNemJOUXhOYzQ3SUFYQmlyc2wyTExhdzBwMEtLcHJyV3hRMnd6bk5EaVJEbkZZc0tWc3Atd28iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjMxLjY5NzM1NCJ9fQ==','2020-02-06 12:20:32.700927'),('wluud7fke6k18vpicgizb3hp3fkc523w','ZDJhM2YxZjdmMjY0ZmE2NzY0NmY5MDcwNDI3ODkwZjQ3Njc4MWEzMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3LXBxRGw5V25XV3o4Tmlwa1gzdW1PZDN4UFdrOGJPNTVVQkhIUlR6eWxGQWNlZFNOWV9tVXRyR1N4YURfbERlaGNwaTN6ZnBQVW5HRW40VnhhSDE0eXJMZFo0Z0FnemRUSUZGTlJkbXJlSnd6R0lYOFRZNi1vajdDTjZsUU9GIiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NToyNi4wMjU4MDMifX0=','2020-03-05 10:55:27.030064'),('wm8sipffzokey3oul8hpo1i7mhb2gsk9','YmY5Y2VkOTk4N2MzZmYzZDVmNDVlNzk0OWM2Njg5OWIyOWFlZmYwODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5azlLSnpMdjVBYU10TWlpMnJwOHlHakdIMUQydmtfTGF0UDNaaFpKR1JHNEhmXzdQNHpnYzZlTTlGUlkyZGZlSFRGOWdnbXAtT3lyYzRVQkFzd1lTMTl1SWVVZV9tY2daVjhCTHE4ZlNJWS1INlNJMGEwNFhmMHVVNU1zd1EiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjQ4LjA4OTQ0NCJ9fQ==','2020-02-17 12:20:49.092896'),('wmdoak0o0xa55weyfmk2hmu59o7dfh29','MGE4M2UzYzAzOGExN2IyODA4NjlmMjViNDg4OGU0YzNiOWY3MDdkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI3WHBKaFNndjhSOXRGSF9uU1JIZmNVc09EYTdTS0owQW5HRE91bWVrYURCMWRDVnNUbmNFb2hxRGVjY0J0SGVXajdURFptdTNBOHdyVmZvSmYyZGpYN2lQdHdOOGNZa3R2eHhPOF9pc1VTbGlRS1JySG5VVlJYcDdBZkJYVjQiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjI2LjY5NTQ5NiJ9fQ==','2020-01-30 06:08:27.699265'),('wq9uu8ha8zbekollbz9hb769x42pu2zm','NmE5ZTQyZmQ3NjVlYTkzNjMxNzg2NTI2YjVjYzFjMDZhOTQwMDUyODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3RE5VdWdBZ3BEVjVKV0Rvenp5SFdveE9ka0VqUGp5ck9kVGNjMVdwaHNhbWE2Z2NDVjVjeHBVUkdCaWpycU52Nk93ZkJPOUJlVlJTbzBacTgyQV9RR0hVQmVIWHlnTldvOHk5RzF6VkxwVzFSMGdoVnZiQ0VVNmJ0UHdOUWpDIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzoyMS41NTMzMDAifX0=','2020-02-27 05:43:22.556704'),('wrjc2ckbi83rt6zzlk7k1gh5lca7k58a','YWQ1NzEzNjQ5Y2EzZGJkNjczYTdiZTgwMGFmYTE1NTlmMTAyZmZhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfanpGMm94eVJzeHVfZ0tXeEgxb3pqRVZUcmtLVFR2Z0l4N29DZ1FIdUlQYnhwcXM0TGlObmJYOG5VbjRSUk9FRGFFcVNMengyWlJ0WjJ1eDlibV8zZzl2SDJQMjhHa0RqVjNiek1PVmhDMExqYlZxdktoQ0liR2FRSUFFb28iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjQ3LjU3OTIyMyJ9fQ==','2020-02-13 08:00:48.582722'),('wrra3hdl6i0yvxge8cl7dkdgxuait6ar','ZmUwNzRhYWE0OWRiZjE3MzU2OTM1ZTMxOWIwZGYzMDYzMDZlN2VjYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4c0xMbG94MjVrRFBVSHhaX201S3hfSlQtdVB3WVFtWHZXMHlDdmZPN1o2U2ZoNXRPUTQ4aEV2Yk0zTkl5cnlCeTV2MVRSSkRKdEc5Q2xZeDNkcE1Dc19McEJFaG56bkFsSklYSWYySWxyZnVKcGFyR0Jza2JXeGRuWTBUdFEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjMyLjEwNjM1NCJ9fQ==','2020-02-06 10:57:33.109902'),('wsuice4yv5odsb2hwpsj9do7npt6tub9','YjczYmExZTAyMTQ0NmUyYTYwZTY5MThlZTcxZDk4OWU1YTVjOTliNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ3Tml4MEs2bHpwc3I0WnRPLTRUWFUxLXV2elo3NzRvNXIwMkp3Zm1tWmZhcG9sLWg3aFFORDZFV1AtQ1lMZ1JlcGZBemh3U3FWTDJ6RS1MdEJRLWlHTkNyck5MWTFyV3NFZ19oMV82eHNUTHZCdFdnX2hXR2tGLUJhNVAwSWciLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjIzLjc2MDQ1NiJ9fQ==','2020-02-17 12:30:24.764051'),('wterf4dvfek3hl8d6mj165qupljycs91','MGFlNDU2ZGQ5YjdiMzk5ZDcxNDI2MzA0ODQyYjM1ODljNGRkODlmYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5WTR4X0h5OGE1c2Q0TksyekhWR0JkcGx0NldpY3dqdVhRT0tnQjVEaENDcXVXSWRzNUNESXBsbWlUSTh3VlFZZmgwNlF2dGRMX1FfRTJYS0k2dWItTzl2eDV2c04yX0hwVDVPak5LazBOalNIRWJtQlhXOHNQYU5xNjBsU28iLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjE2OjEzLjAwOTY1OCJ9fQ==','2020-02-20 07:16:14.013212'),('wtw0q7cuncezxhkxep2wxml8vlgbkzlb','NzhlZjc2ZmMxNjEwNjlkYjllZjA3MWEzYjI0ZGUwMjNmZTIwNGRjYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzb2w1V1p6dTVwU0JEZXNUczVMeFFQM1NqWjMxZmFtakhkMlR3RnZTYjc3Tk9pc0JEZEwwaVd5azNVdDVLbnFEZ3RVc2dqOGNONU9uQWJLY1AyenFTRFRzeXZNYlByMVJmSnM4VnppNl9yeF9DVG11dTdoS2xIVFlyR1paQkUiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjA5LjAzNDkyNSJ9fQ==','2020-01-23 06:50:09.038282'),('wu6av2ha9l818wcsa1ejid8mfze74h9f','YTllZDg2OTFlZmI1YWE2MjM0ZTgyMjQ2MzZkYjM5YTI1OTMzZmUzOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1Z1lIYkJSY1ZQTnU5Z01Ud1l4REV0UXNsSlBPc3h0R2E5cmQza3pSb2FyRUJUcmUxTGtaMzRoaWdVZ0RZOXRJTVVoVG9iZkZfWjl3S083OUE0VXJxRTU4SHV1VXZFanJxWV9jb09fcGlFNFFCeDhqV1FNTVJlNmcyWjVjcWMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjA1LjU3MjYxOSJ9fQ==','2020-02-06 12:20:06.576008'),('wuru2243yhejoh06bpdfwrlcrodt5m9d','YmE1ZWJlN2QxNGFiOTYxY2RmYjVkYWJjNjc3ZDQ1YTcxZGExZjFjMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I3WkV4YUlnYWlGOVFJaWkwOVB3R1lhTGRwdDNJWW80YXZwVWJqc3ZKQWFLb0tMMEUzbE95S1FaTE1tTk5xVGZ1WWIwRmxMNFZCQ2pKaG0yY1FMWXJvLXBXQmVyYmdQbDlhU3RxSVFsY2M5LVhCUVVtMUhHUTB4dHJ5SDR2ZjQiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjQwOjMwLjgwODQ3NyJ9fQ==','2020-02-10 07:40:31.812001'),('wvxpaocqrruqkumvvv25xl5mlmd3yzv9','ZDNlNmMwM2IwN2U3NDBmN2M1MmNmODhmNmFlOTQzMTJjYjhiM2RlNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0bUdkNVluaG44Vy1qR2VzODFrSXlSR1JVNXd1Z2J4Z3IxWnZObUFocVBYYmZCOVJjSkh5TUtBWDkzczBCSUdjbmFteTVnT01KY2lBdE5EbE90bEhkbFVQSUVLZWJHSlFNYk1tQ194X2RDY1Y4bXRwdlRJY3hvQ1hvaF84c1JfIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODozNDowOC4wMTQzODUifX0=','2020-02-27 07:34:09.015631'),('wwewm4q0af1aigt4s8kb6u1kl52sq876','NTlkYzhiZDQ0ZjVjODM5MDBhYmQyYTkzZGE1ZDBlYTM0NjQ1NGU2Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVcEpzdFZvQlRCU0k0eWZEbWtwcjRoTENaZ3VYR2E5WWNaV0NfVUpmVE9TLUhxdjhKaUNldTUxZ2F4dGtLNDJ3aGxEMnZMZVBWNDVmS2VQRGh1ZXNaXzh3bVNXSEowZGZFU29kZ3NLcmxpbTdLdlRLcUlyTlFBUExqMWJNeXNlTjdFWFZXOVFJUHNXdnhPVFFWQ1A1dTdLR2NxMmV1MUV3IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzo1MDowMy44NDU0MjMifX0=','2020-03-29 06:50:04.848882'),('wwoy9zrbzrim4sk8idegs0j8r6nnfj05','ZmMxMTc0OWU0MDc2MDY0ZmI4YWU5OTAxODQ3MzM3M2UxNzk1MjA4Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzZmYwTC1KVWpOUHMyYm1hUFF0NG9tdlEzX0MzX1E0WjRVN1BGbERkTTh6V3QwN21LN29HRFJFWm43a1ZWcF9vSFBuNUswUHQ5ejJybnlOeFFHWkpZZ1BUYS1sYzU4VTZfbjJnMk5uc1RpUWxvaHgxWWV5SF9lS2t3SUEyemRUIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjo0Ny41MjkxNTcifX0=','2020-02-25 07:12:48.532548'),('wwsjrle1jfpp1wol20g6ljo1ru9ulshs','MmVlOTM2ODRmMjFjYmQ0ZjUxMTQ4NjI1YTFiNGJhODNjYTk2MzhiODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0bVVpNkxyeDhqQWZmZXl3QWdTVDdNTkxhS3dCcGFZRExsV3lJc29PR1E4WTVvS3Z1VEJGOGFqNFFhV2VMcE1BenpwTEVrcFNCUHd2dEdQa2o3aUFodUJWaVptMkY3c0V0Ui1aTG9HZHRjOGJveVRhU2xVYmNUOXVVNTRKQkUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjM2LjkzODE1NiJ9fQ==','2020-02-17 11:30:37.940518'),('wx4x6j3s47q0tund9xjpsp4mzxyxxjli','YzZjMDI4MTdiZTg4NWM5NWYwYjA3N2E5YjdmYWU3MmZhNzlhOWUzMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ5Tmk3NjRDRFRzYzEySWVrQWlzbjVJakpjbEd0UzRoNmZBQkJhWUcxT25pSWoydEo2QnZQUGFMUkxtQ080Tm45b1BBNEE3cWwxUThFUzRnN3Fad3JkNzkxeXJLd0w2SHMzZkhYV0VvTVl6V2VUQWJDLWdjcmZXZkNwSEF5Q0kiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjM0LjMzNzEwNCJ9fQ==','2020-01-27 10:58:34.340612'),('wxxv0mc68is1ikr3exf75p5f1mk2eoxx','OGNiMGRiNzIyYTI3YWJjNjZiY2QwYmYxYzUzOTI3NWYyOGM4OWM0YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxYmFLMlh6NUwzQ2RHWGRxYzh1dExIU0RTeDFwWkVTcU5kZHVxQzZsRVRQQkRVcjl1d0FXNEdpZ3BiM2Y3dV9HR3V6NFVXNU9EVkNveXdOXzYxNUdHTTFKUkpCM2djZkh6T2UtQi1UQlNEa2tzZEN2MXNKZDJLbVBzcnhMclEiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjI0LjQ5ODc3NiJ9fQ==','2020-02-06 11:48:25.502333'),('wy6phao19ex8x7yvmjfnuwroj4hke4px','MmRjOWZmOGQ5ODE3NjMwNjk1MzJkMWY5YmMxMzUyMGRhOTI5YzhmNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3eDUxTXEtblB1UHJYSkNtcTk4dHlMRkxKc3pReWoxU3dCMWFtQk9VOTlUNFVvcVVDMnQwMDJWQ3dXTTkxclZhVC1MVFpaendYNk5acktkLTVIbWhyVkNiZGZWTkFiTmhUdEFud0IxRlhzaGNyVi1mTGJRLS0zdEdtRlZwM3JUIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDoxNC42NTA3MDMifX0=','2020-02-26 07:30:15.654254'),('wywuk3gs4p3k26593xtfr2vazxle60u2','NjllNDkxMDIxNWFiYzRjMjQyNzI0MTc4M2UyMjQ4NTU3OWIxZGJiZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1N2I1QmlEMnAyLVZvWUxad3RrWmlnS0RjUFVKclo5STdUbEo2bU0tQnFia2ZNRXJ1QkJwTmlhMjVtdzViZi1zTnRWTm5CY0ZzbW1uc2ZrUkI2aHNuWmhLLXlhMXpFRTFyUENPOEpsalUxbVJyNnFkUGNfNmpuS0tGOWQxcUkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjE3LjYxOTI1MyJ9fQ==','2020-02-17 12:30:18.622853'),('wzhchdkc613j1ght0bwplxefo7vzotjz','MDRhNmQ0NTI4M2Q0NDM1NTA5NDU2NTExMDY4NzhlODg4MjJiZDUyYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ6bkVCcXFxZUFwQ0hUMnJtaWNad0RRYTFBVFhJTU1kanoyemNwcF9IcnJNSGJ4NHFUWTRLZFhzbGs1MlZRamE4QUowU2EyNGJjWTZ5U1pMdWZTajRMbnFrV2E5dGpiblRZY0V3WDBTRVFvaVRPTmhZVzdvYUo0YVBRZjVXWlkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjMwOjI3LjEwMTkzOSJ9fQ==','2020-02-17 11:30:28.105433'),('wzl6ykj1t1dd2qfd5z8p1n6uxfn4apot','OWJhOTI5ZWRmYzA3ZTRiODc5ZDdhZDIzYTBmYWU3OTdlYTViYWFmNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0Jfdkd5VUxVazZqMFRPY05LdGlLRXBMTVpoaWhCeXkyZWUtNWhjTFBWd0VEUEJyVlFrWV9panVaRGsza0paNWNCYzI1VXVXeHNVM2kycDhXQWNsZXpnS3Nac2RrTWlSWjV5TVJCbkRNMFdGdU9qOW5GX002X2JKQnF0aUhySVhuIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMzoxOS41NTMyODIifX0=','2020-03-10 06:13:20.556771'),('x03c9ahgxf1hnowqiz3rykb16z4k815s','NTgzYWQ5ZGM4Mjg2YTZmMzI4OTk5M2I1ZjEwMjkyZjY5NmFkMzdjZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3V3ZGb2ItdnJETURwY1lBS1NvSEJuX3NodjY5NE1KcXdyaXBVNlZLN2RjRW5hR2V5bzJjZXJXUlMxR2FSbmtlUWczWEZhaTYwUXV6amhOeXNVcjh3QndFc0FlT0lVWkowd0RLLWltcjcxZkxuUDUyckttUVliNFRjaXRsQmsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ4OjEwLjI4MDg1NiJ9fQ==','2020-02-06 11:48:11.283937'),('x0gsku2wvvyf09b0c04z0n1f6mwxkfkn','Y2I0MDkwYzgyMGVmYTdhZTQ5ZmQ5NzkyYWNiNTg3ZjQ4YjNiZmU0YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ3a3dxN25MaWFUTmJmc3JPYlNiZkJwWm83UVB4SE15eFVZanBVdmF4alBQVW95WU95NEZBSXRxYThHdWdodkczQ0pGa0pGTWx6R25vc181NE1LbW5pcEV4UlU2Mkk1aTFoUHZCUm5tbktBaHlHMkIzc2FTeHpaYkpTY25YYWF4IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxNToxMi44ODkwMTQifX0=','2020-02-23 07:15:13.890321'),('x17j1ryz1fyfkhkohgy1i5oos11t8o40','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-02-27 07:57:15.844109'),('x3gtzprhvjvjpzkzsre5u40wd966idue','YmE5ZDkwNWY0MzRlNzlmNmVjZjEyZjNiM2MwYzA4MTcxMmM0YWQ4Njp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2Y0MxNWJUTTlLQ3dXNU90Y3RnN2JmeDdLS0FMV01ROEJibEMyZ2FsaUdLSGthS1gyNkYwU2dlYzBIUmQ0OGxORFlDc25acnFIN1ItSGRlUmNTb3N1X2diYUV5SlZEYnAwek9XYlFaaDh2LXZ6OS1TNUQzU3BCOHR1UmJhLW5TIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNTozOToxOC43NjIzNjkifX0=','2020-02-26 04:39:19.765717'),('x42jfwt1yeoqs385wyoogl4w6v6l3vvn','OTc3ZTI4YzUwNzA1YmRjMTdlNjBmZmE4NjA1MWUyM2U4MzQ0ODhiZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3QzJwQXl2eWRYbFRKeEZqV3ptTndBcjQ3QXJHS18zWnhaUmlkTngzNVZjNHpSTXRNeV9Jbko4RzZyaVh2SEJpNWJoMFA5Y0JmLWhRRUhzck9seGR6N3FJNThVVV80aklkMF9rTjIwWEVTMWF6dVk2MlFRODhDN0t0NjRnUG8iLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjA3OjI3Ljk3MjIyNSJ9fQ==','2020-02-20 07:07:28.975780'),('x4epzr7w6ov75gsssbficcpc9p1tbkug','OGZmMmQ1NWI2ZTY4ZWY0Mzg5NTFlMzQ2NzhjYzEyNjJjYjM5N2NmNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxQ1lYQ1laLVlQc1B4M0daYllMaE5CTnN2d1VKVERNZVdQVDh1SC1mRVlYdHJ4Tmh0UGxvWGJuS1lqNWtSM2VrQ180LWtGUGxQQ2I5Y2lFZHQ1eEQxd0RVU0hzNEk0bU03SDBvSngyOEoxRHVqSC1qZ1c4cDFZaHlpWDNURE0iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjA4LjIzODMzMCJ9fQ==','2020-02-06 12:20:09.240348'),('x4hdzkwegoqayd97333dngg6v0gc0wy5','NDUxNmZmZDgxNGRmMzQ1YmE0ZTM4YmYyNTNlNGE2ZjIyNzIwM2JmNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3enIwOUQzSWNlcXU3VVpncGtmMWxWNE1BTUJxTC1TWFBjTW5KbzJvd2NaWlBONHVvRzVhQUhnQ1kzWEdNcFBBam4wZ29pRmdXczlWVnhwMVBZeElHZFVVTE14UmtwOTVjSVR3aVdaeWZXS01IMEFaUHIycGdkU01UNlcycTgiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjI5LjQxNjI3NCJ9fQ==','2020-02-02 06:01:30.417308'),('x4v8vp3os0a12vixppha0wfr3ed06x7v','N2VjNTRlM2EyM2EzYzAxZjk0MjA2M2U2OWU0MzliNThiOTUzZGYzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0ItdzRWZHU2N2xmXzB1M1BTNUdURHYybWxkamhWR3haRnpLNmN3V1VEekl1OU9TZ2dTa1ZuWE9PY3hNa3JBTzNuV1otSW1oQ21SWlltSFdkOTI5ZEFqQWg2aEVKMFhOWngzaGJkc2IzdWd1Q3NsbHZYSjVZWlFYMXZaYWgtRkkiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjI1LjQ0MTc2OCJ9fQ==','2020-02-09 06:17:26.442887'),('x5qgiokp6sbiw4o28ltqtg4p4ytr9m8x','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-07-01 09:45:48.303398'),('x74wkogedx01vbtizimmx30idmyznyvs','MzgxODEzNjAyYjcyMzBhZDRmNTFhYTRhYWEzODBkZjE2OTk1ZjNlMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J5TFB5WHRIbmRZckRCWjY4RlcyOEM3ckdselJUZ055V3JFYUxObE1MQU9BdUpPQXU1LXVORmp1STdCR3F4MTliTjhmZEc4eUJ0bEhLaDZrQ0NxZVpfdjFDOUJHNk0ycklFRVMwb0l5WThFUmpkTEZ1OWVxQWp2cHJTTjhfak0iLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjA3LjAzMzQyMCJ9fQ==','2020-02-10 08:20:09.034680'),('x7il2xky99703tbkyu2qmp3xd7xdvp61','MmFkM2JkNTQ2MTA4ZWJlMzgxODdkNzQ4NTk0ZjUyNGMzZGFmOGVkNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5REdjdTliSGhFSzVoY2lXYlFWN0ZlRll3anBNRVdvQTIzYWtGaHAtN3A1VGRYOEp3RTJNdjdXTTU1c094a25EMG8xS3RqMDNEUVNtTTdVYXhkZTVsdUoyaGdwaXhfU08zRzFRbEF4MjRZdDNlTFZHdTEwTEZoek5tWnFqdHZSIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1ODoxMS4yNDEyOTMifX0=','2020-02-23 06:58:12.244674'),('x7t1oofk6a5jovw6p3i9du3e3yy9qszm','YTc4NWU1YjRiYjAxNzAyZDdkYTY3ZGVhNzUzMjRmOWUwODA3YjZlMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4cVpPZE5ycjlwa3VYNllUZFJaMVUtcHp3US1oSmFxbHUydXJTUHkzRzM2dTFGWG5mczU4S0E0Ri1hSWk5Q29EYnlBRlM3Sng1ZEItOWl3djZyNXRWWmRhSTY1VEF5TkhjTGZuLVpXaF9iUldCWGhRT2t2ampDNkx0YzZidmt0IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1Njo0MC4yNzg3OTAifX0=','2020-02-23 06:56:41.282388'),('xbjsryb2gpbgqf9kz7nem5myglmfi0bx','OTE5M2Y0NzkzMTM1MzgzNzhmMTI1MzE0MDhmNDA4ZjQxNTNkN2Q2ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIyNGJUMGt4VXJ3Rk5DLTRWSHZkeVdfaEJLTEEtRnB6QXBOV2pnbzFHaHdIbU1iYldrelVmanh1RV9tdEYwOGtsNlpuOVpnZHNYM1hham01SDZxSl95SC11UW1ldTFFLW1ETTdNaW9kZ0NnVXMzeDBKcVdWUENfdWpuZmMtRG8iLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjE5Ljg3MzgzMCJ9fQ==','2020-01-26 05:47:19.877260'),('xddai77dmxs85o5znl6ry8jell99iic0','NzBiNjYxYjY3NmJiYmE2NDJmNzhhODM4YjEwMmY1NjZjMDY2ZjZmOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI1dDc2R21GTjQ2V29SWmZmd0RDZ0ZMV0w5cWk4c3N5bHJ3ZVIyeE9HSi0tQlNrYlJyX0ttNU1oUTZkRTFIRkNuZ0hvSVBwRUltSkJxUEozekR5WExudnNuX3VKRlpVM2dYSmFYVHExMml2MUdzdm05QWlpd2NQVWZuVW5qcG9wIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMCAwNzowMDo0Mi44NDc5NzQifX0=','2020-02-24 06:00:43.851350'),('xdit4uwd92kbd2w4o4emjwllvlrtyq2d','MTJlMTUwNmUyMmQzNGI5MmI4NWMyNjllOGNhZTFhMzg1YTViN2U1MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3aTMyMm55eTlteVRQQ3BLbU5RS2tOX0paN0dhd2FObERhQzFiMkYtc3VTMlJLWVFOZ2RRblJPWWZoM3NjRl91WHNHNXBVMDBWVm9sWWw3aFpzMGljWTVNVzNZUVBlWER0WVJtQkRmSGJscUx4WXdXLWc1eERIOUlhQ3ZTdFUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjAzLjI0MjQ3MiJ9fQ==','2020-02-06 12:20:04.245920'),('xdlr3w81ebszay5xl7yuuw4u069g1ok4','ZDZjMTI3YmQ2YWM0ZjFhNjU1MDdkYjcxZWEzYWMxN2RkYzE2NzIwNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2b3dQQi1DTk1UeC1heXNnZ0JzYlhGOVo2c1pVclROUXdfTXNDemQ1MEQ3a1pGdUJLYnkwRjJiS2ZoZU9tWFhhRUppd015am5UYi1NazluRXVETnpQemQ0enQtTHMtQlFjLXNia1JNZG55R1lUdDZrYllGSE10WS1vTENwRVEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA5OjAwOjM0LjU2MDg3NCJ9fQ==','2020-02-13 08:00:35.564334'),('xe0e0tylti13huusva8huo8dryy6j75i','YzllYmRlODE5YjE4MTMyMjE5MjQ0MTEwZWI3ZDlmYTcyODBkY2ZmMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfWmM0ZlYwQkhrMlRFb2hmb0pfWTFTQ09JNU00NWlWbDJiRk1xWmxsTy16dXJiYzhqMmM3OWNtUEY2N3NpODBvTzhxdzN0bnJJakRIZElVdmtKbV90Qm1PR1VvVi1iNFFqN3IwSERyS2ozUlpmU19tTzBsOW1sZ2lEMVRweVUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjE1Ljk2MDA4NCJ9fQ==','2020-02-17 11:20:16.963622'),('xediip4w4pmq2woz85b8inkpl3mhgcnc','YmVjZjE2MDU3ZDM1YzI3ZWU2MzU4NWZjNzEzNTFlOTZkOWYxZDNjMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4ZmIyYzRiMTEzZTQyMjE1NGY1ZjUyMGU5YjdlZjU0OWFmZjk3YjdmIn0=','2020-07-12 11:10:19.928922'),('xeg3bt3gzsw0k3qgc3dfximm0js7zd9v','YTUyOWFhNWNmNDdhNzk4ZWMzMWU2M2Q3MTE2MDYwOTk1MmE3ZmY3Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI0ejZSaTRrb09IZDdHQ0dkdDJOdnNGQ2VqakhFYThkMWhnMHVRU0xxWnRkeVpKemlScy1kaGpVcmJodUViSHBmekg5SlFHbmFNRi1mdTdxbGJPYm5lcno5ZHNFYWtqUjU4V0V4TkJJQ3JidmdIei1Lc1lNdTNpaVMyYmllY00iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjIwLjMzMzcxNSJ9fQ==','2020-02-06 11:30:21.337139'),('xfyvsan8qgc7ayo1c2zi94yfidwfpaf0','YWE4Njk3OTgzMTFkN2RkNmU0YzFiZTliNjQyOGEwZjdjMDQyNDY0ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXeERrOHNPQWRkMHRZdWdMdUIyLU1QZnlMNHR1RXhvRVRubHlkclJ1aDlDX3BVUktiSHVhbXcxT180MUtKeF9KbVl0WkZfU2YxcHpKOG1NQ0JoNHV2NU9HejM1SW9ReVd5emxHYjkteVdtdk1YUU1uX21IaVYyU0VTSERkaVNXWHBrTmlnc1l1UTNlUk5saUd6NVphdm5Cam01cG9uaXJnIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwNjo0MzoxNC41NTY5MjcifX0=','2020-02-27 05:43:15.560297'),('xgup9vf1c8ebvnxfj8vde6659gqfyi8q','MWMwOWRiZmYxOWY0YTA1MTJlMTc2YjRkYjVhOWQyZDdkZmNlMGEyMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0Jfb3RZMGEwbkVxNG9Qek9mdlE2UFVUel9MMEFsaWVlWG5hR0FJMnFtNVVvbzhfeTEtVFVvVWlmTG1ISFVuekJBQ2lCekItMHRxWU42WFdwZVRUdVlnR3htSE9ELVNzZV9qd3dFLVhzQmtHempXX1hTR05FQjNCcXRWUmpNZWciLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjU4LjQ2OTQxMSJ9fQ==','2020-02-13 07:40:59.472826'),('xhunoiv462ks548ay7liirzbmd8cayxy','ZmMxYTdmOGE4YTRkZTcwMDFkZWMyOWRjMjYyNzY5ZGIxMDYzYTBhMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWVE85bUk4NkNKTjQ5WU5uS0Q2bDM5M0t4cC1jMVVBTXN5cDh2Y2tEWUYwMTI3LVF1cTNfQnhvZnV2LTJKZk1OVW96bDV3ZlNtdHFMWkRSdGxQOXlvTkQtVGNwbVYxWlE3WEVvYmoycFFsZzdmVkVQLTcxQ2JwYTB1YXdLeEx1VUJfWjFfZjQtUDBGNEpfanN5UG5NY1hVV3I4V2FGTUtBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDozMzoyNS4wNDY2NTIifX0=','2020-03-29 07:33:26.049232'),('xj3uwu5yutlmyczrf7c0x7qgbdlo7v85','Yzk3MzAxNjEzZWJhZmI4MDA3ZjA4YjIxZWM4MDU2OWJhMGVjMzAyMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIwdUVBYnlucmZjZzl0LUw4OUJmQ1RYZUF6UFlMU2NqZ3lsQ2l4alo1VkRRUlhYem5mX3QtWUpUUUg3aUhDam4yXzVUQUhpeUFhMS1qZmI3d1c4c0Y1SG9sRDBYaGw2cDBMc1Y1bUNNVlgwcVhSbWt4dDdDZ3FJRXZ4VzZxS2ciLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjUxOjUzLjEwMjU0OCJ9fQ==','2020-01-21 05:51:53.105969'),('xjihsq2wvariasvglvy65j7k531x2nsy','NWI1Y2E3NWJmZjQzNjljYWVhY2FiZmQxZjNjYTlmMTQ0YzJkMWI5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyMkxMdklxcGpVQkZmNV9MODFDZjE2T3l5MkpZc1F2MC1iaWdnSW5vN0xSZFFXS1g5c21kTTJuZ0YxLTVRazE5RUxNc3U1TE1UcVVOYTlFcE9XeW8wTEJKVmFGVVU4ZkwwMEdrXzlPODg0dk90Q1h6VVpScmxRVFQ4OHlFRGMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjMxLjU5NjgzNiJ9fQ==','2020-02-10 08:00:32.600116'),('xkujuyedgvl2msoi0arh83zpswbswjv3','MDVkMTU0NDI5M2RmMjNiMDMwOGUwZWY1MzJlZTM4NWM0YjMzYWFjNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyNGdoRjctNm9HbVNKekw4UEJzVU9RTERRTGlyUTZPR0hhaDNyTlVJSkhlVXk0WDZncjVna3NvQVFidzQxclppSnZMMmx5UWZHR3ZSaVBMeFZ6TGVaMTAyVnU1QnFZVVlaTzVSMk9GVWlIOHRHNVIxRmRmNFN3U3RIRUhEN2ciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU4OjAyLjI4ODM1NCJ9fQ==','2020-02-06 10:58:03.291821'),('xl1cap5o6jmomw10wtyuqu02hptmf6cz','MDkzNjMzMTkzMTY4MDYyZjIyN2M2MGNhMDk0MDlhMDI0ODZjOTMxNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3c05YbTdjYzNqdDJmbXpBcHhmR0o1azNEaEVYWXZPd1BaaERxVjh3YWVZT1hORzV3SDVmSjl2UGZDNE4yVTJKNWR1NjIyRnpKN2prakhqUm1PQ1dUVDJhRnBDMDIyTDBCU1hlZVpoWVpnUjBjenJocFozTE9qRDFBaEpEVVkiLCJleHBpcnkiOiIyMDIwLTAxLTA2IDEwOjIyOjE0Ljg4MTc2NSJ9fQ==','2020-01-20 09:22:14.885239'),('xmale6jye1b8xudsap82t733zjnf0eb7','YmJlMzllM2QyZmU2MjNjMmRmZGFkZWJjMTQxM2NkY2E3YTI1MzU2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYRVF5Um03MmkyUzgzNjRmWFVUQ1RiU3dYVEJTTzJ6MDF0T00xM3poZzVISlJqc3FyZHJnU3hnY2hKN1Y4Y3RkWTdNc1dGWUw4OEotZWxheldvMG4tQzItaklMc0R0aGV1M0NJSm5TZ1lOQnRDXzZFYVNzNnRacGlxaWN5S3pSeGVzTUdscjMwQVNURVFxUG5EUWZ6MjZFZDczRlJCb2hnIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMjozMTo0OC42OTgwMDIifX0=','2020-03-29 05:31:49.701612'),('xmvfzs4m1t4w4tc5obhei5236dpp2sw8','ZDk1MTRjNmQ2NTU1ZDgzNmE3MDgzN2M1YzNhNGYxZmJhZjNhZTBjNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJfUDMydlcwWmI1VW12YjYxbDl6dkxKN1FrVGlDNTNHNURKMUFuZHJFZlZjY2diUTRFTVBtWWw2LTEyMWs3NHhXVjYwQzRXckduRkNBTk1iem5NdkppNnA4ZGliZW5USnh4T3NQOVpYMWZFWm5WM01YZDBiWDFUWWpDcVlsaUEiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjQzLjg5MzczNCJ9fQ==','2020-01-30 06:08:44.894842'),('xnmp2ryekqmyu90430ajhrzo8i0ll97q','NjIwYmRjMGJiNGMxYjdkNjBmYjNmNjVkMDQ5NTE3NDZhMjQ0ZjQzNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI2VUhfd2E0UHJ3b3ZnWW9yQ0k1TWtfdWkyM0hibU9INkZTQVhYU1JrcDFYYnV3dTAySXloUm5hZDBHNkxfd1pMczhwQjVjclJITmR6NnVpNGNabFhTbmNFQ0F3ZmJEWEY3SlExNGo2ek1ZWlNJU3RqcW45M3VOMDA2MllTZ1UiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjM3LjcxOTA0OCJ9fQ==','2020-01-23 06:50:37.722827'),('xnsxvwwulv8gqahg89si2y0hdw8b0t60','NWYwOGEwNjBjYzFlN2NhNjJhZTM1MjMzZGMxZTU0ZjFiODVhMWJlZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyOTV0MmhUN2VwV3VQeGZwMGh6bFVqZTVYMlkweFBHMGppejI0cmJJakFxcXgzOVlRdkFQUEd0S1IxUHA5TmQ3ekNmTGdUb0dYUVp2U0EzZzFtNUhtRV9UcG1sd3FBQUtYOTVyQXBZaGJMS1BEWVgyX0NyLU5zRVYta3dpM3NjIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMzowNy43MzQ3NzUifX0=','2020-02-23 06:03:08.737595'),('xon1dlso8w1d28m6wszm01q8llsi50df','YzZkMjU3YzMyMTllODgwMDU5MGM5YmIzMDM1OTQ3NDhlZThkNDc2Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWb3IybjgxTGlqbmU2MGc4eC1SN0xBdFZZQXdkT3V6dzFvNmFtMTdBOENHWGppNndhZTQxb3VjZGp4SnVaaTRQUjV6WGVUYUJWTUJzQVVIbU1wNlM4b3lUMGo1Yk1ka3pqRVlEai1qMFFpeWFNUF9lYi1mQmhOeDBKSmdNWHRQRjBQd1JTcEN6X3d5YzRZR3ZzNWdCSFZ4MnpVZ1U1MGF3IiwiZXhwaXJ5IjoiMjAyMC0wMi0yMCAxMTo1NTo1OC43MzcwMTUifX0=','2020-03-05 10:55:59.740654'),('xpqc29w0co44v72uy9c9qjwnq0bu2zpd','YTk2YTZmYTQxNWZiMTMyMTkxYzc4Yjg4YWRkMDM0YjAyNTFiMDM1ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ3MThpY1ZFN0hybVVDR1dQSjlib3k3eUxyTFRxS25RczZNbDlyVmY2dGhTUEgwdXcyY0JqTTRYVkZiNlZ1eVZhaWs0WFZXaVhKWEp0ZjJ3dVgwRVotcUU0cFU2QnUtRDdHN1Rpd19XNVktNG5TcEo1NFBuNm1vZ01zZVN2VlUiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ2OjU2LjAyMjEyNSJ9fQ==','2020-01-26 05:46:56.025529'),('xsecwz1co68mjh4hjv796kpqzpi72ufa','ZTIyYWMzNDhjYTViNDYxODc5NDAxYTE5YzMyY2QxYzBiNWViNWY4NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0IwemUxdkJwWC1Cd3RLRUxoaG5sNzdaX1laSFJpWVRKeUVZOFRkcUlXSmllUC1mVTlnNU41QTdWcVdnQWdXdFh0Q0t5aU16eG40aE5ZMEZ1bEhLX1U2bnJ2amN3Q3lGTzRMQllnU2ZfLTBVdFpiVmdZanVWWUhQblZYVXliemhIIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNiAxMTozMzoyNy43OTg1MTQifX0=','2020-03-11 10:33:28.800909'),('xsgtc9wqhv0l2vl73009upzho7z66qcm','Y2Y0YjA0ODE5YjMxODJkY2Q4NTc1NjRlMDRhNTY1NjVjYjE4M2I0Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI5Q00zS1lNbjRkQlM5dkRTd0dfM0ZWeF9SRVJaTFRieHhYdWxOZkFJOHJuSlFnOENRdWg2Y1pRMml4c1d5aHV0clVtVjFWbC1ZTDdZbU9mVkQybmxSVnBmanJHWmxBYmJfSUZDbV81OUFSUU9FRXBsckRuVVVUeHZWbktlNldrIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1Mzo0MC4xMTc3MDgifX0=','2020-02-26 06:53:41.119874'),('xtekgnbmcrf54mevvxykgk983vzcsx1s','ZjlhZTE3NzAxNGNkODhhZDBkNzE0MjEzNzMxM2NlNjY2YmY2NjhjNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMweC1tbDk2dWZxQk1id0lCRjlVRWhhMER2dVJRY2pQU0cyVFo4R2dEMWVLUEozbG5MeUpENUY0ZFBNNkRYbUdzd1VmVWVGS191Z2cyWWVfU0JZelZUVV9aSTFMSkFmNzh1QWJ4R1p6RVQ1bFdhNjVLbjl1YXNsM1VBOW1FNWFYYVpyNXh5NkFuQ1E4T1ZUeUQ3MDNPenRVdXhmNmZBWlFnIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowNTozOS40MzE0NTQifX0=','2020-04-21 07:05:40.434846'),('xve8jnu1bezqaaxu8uonkrfgzbeiml2h','ZjY4NjE3N2E0Y2M4NjkzNmRhMTcxZDY1ZDg0MTg2ODk5Y2FkOTAyYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxaFN3NE1YalllS3lrNUFaT3htcmROVXY0U3A2V3o5WmJneWVJNGdqTnFoVTUtRnhDU0J5cms3ZHMyUktoQm4tUW9aSlZEeVNFc3BhdFlaeWh2a1d1TVUwNGNaeC16ZjJBU3ZCekJ0SXF4dHQ2VHhKa0VvQVZHaENBTVBzcEJDIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxMzowNi45MzMwOTMifX0=','2020-02-23 07:13:07.934234'),('xvg0ii5qcp1026pl64b51xv8io6hnx34','OGY3OGIyOTlkZjBiOWVkODcxMTc2MTcyZDhjZGE2ZmEzMDQ4MzYxOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzTDZfUXdMMGZDVlBlbGdHVmdlYmlGUlRzMmxfaUhHY1k1OEFtaHNBVjRRT0FoaC1GUndnTnlILW9IdU5jY3hUWHVzeE15ektMZkNIeXZHcXoxRzB0cW56Z3BVdDFrbmprZzJOazlJdlU0eldacEl0a1Y0NW11NjNTdXJkMVkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjEwOjE1LjI4MDIxMCJ9fQ==','2020-02-17 12:10:16.283650'),('xvgytsvqtyhr9fz0thg9k9xwzzbber4f','ZDQ4NzBlYjUxMTNmMGVmZTk4OTViMWZlZjZjNTkyMDQ0Y2IwNjQ3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVX1ZYeG94eUl4ZU1ZT25CcnJ5S1JYTHJXal9kb0lDWjhBR0NNaGtnXzNvZUpsVU1zMXVURXRyNFNXV2FxQk13bVh2ZC15QXhIV2VVTVhoeHgzSXhaazNzRWNSYmM4ZFlUbUFCYnVEd21ZOE84TTF5ZVVmQTVrZUlyclNKMWdMUnlaczFEX3VjSDRxdXFZM0dzYlc4eUg3c3I0dDROSVdBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDowODozNC43NzA0ODIifX0=','2020-03-29 07:08:35.774906'),('xvx2ivgkwcofnd53myb04rm2fu03qgas','MTkxNjFhNWU0NjM2MWRiYTFlMzE0NTQwNjVhMTM1YTJhZDVjNTgxZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0SzNtMDZxd2RqNnoyMG5uT0RhQlVKeElWdTUyLVNXenVlejM5OW5tZmtzR3ZBazBuUTR2dG1SX1ZkQ0VCdHNPVVV2a21rbm9kd3c2emdTY2JMTUtfX0dWU3d0NEV5akdJaExpWkxoM3FyeVZGZGlaal9MUjBpQ3VTLTNlU3l2IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMzoyMS40MTc2MzEifX0=','2020-02-23 06:03:22.420990'),('xwev8ybz2q3ix53bfnxn0eeqmicy5co0','ZmE3MWQ1MjQ4OGQxZGE3YmYxNGRjYjY5YjY2MTcyODI4OTMwOTRkMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ3dHhvaks3YzNOcEg0VDVzVjVESDBjY01fdmFFNkdaci1odEFQTDdQdGdjYzJCSWdUdm5aZ2VPdGpxVDBYaXFDWUxuV0VZNGIwb2V0MTZZT3lfbmtxb2pNb055NHp3QXhSMHN5Yk5kRDlvYnhwNHAtWnRJcVQyaDJ5eTJuX3MiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA1OjI0LjUwODQyMiJ9fQ==','2020-02-06 12:05:25.509596'),('xxa06vqennwgnifes2v9s1siwb3wdj0t','ZmRhNWE3MTdkMzQ0ZDA3NWQ2YmQzZDQ4MDRkNDFlNjMyZjY1ODNmNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIzV29MaFMzdmE5Z0R0SjZENmlFZHVPNjh5OWpkcTE1YmJQZHo3QUVNc1VEalRaZG5Xcjd6RU9yYWloNmdLLTVCM0lQMnA3UjBUcnN1cmZUMjN5cHRaXzlCS3ZTcktDanhtMkRKWm9GZG9JVHZsY1U0MEpxWjRzQTlOdHNpNHgzIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMzoxNS43MDQwOTgifX0=','2020-02-23 06:03:16.707594'),('xxsy12b05ffl5rwpdinb0kv5po3ufv5r','OTM5ODM2ZTc4MTBmOTU4MGNkZDFhNzY4MTNhMDQ2MDM3NTRlNzcwMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5YVdKUGNBZzFjamZHNUFFQ1RBMzVfWl83R243eWpVWDBrcUpLaDhJQUtDcGhhQlg0dFBxdUpTU0ZjbjduV21QUGI1WFBoaUJBMU9GWVlLZWhEQy1KbUNEcExQNi12ak9xLTd0NV80bUE3a0RTNXdSeHBBNGtRMTZUYXRQcnVjIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzo1MToyOS4wMTAyMTEifX0=','2020-02-23 06:51:30.014304'),('xxxmuhi3jzptpzo6nmmr23hciygp0i1g','Yjk5NjJmYzFkMmExMjE5OGFjM2QxMGRjMWU3ZDQzYmM2NDg5YzI3Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI4MUFPdGZwYkpGZlRaZnNhVVhFUi1MTFpUQ2NybFNRbVdZR1c4THp5VlN0dFdsQnNNWjNMeUd4eS1MdGJSWVdpOFhtVWwzc0VQYXRKZmQtLW8tdEh3ZTd6MTJjbldfYmd3cGFtTTV1WGUwRzVYeXZDbmNHb0duSzIzUnp6NFkiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjAxOjM2LjU5MTg3OSJ9fQ==','2020-02-02 06:01:37.592907'),('xy27h630n4pceqbfuci8pydkq07fis2h','ZmJhYmNlM2JkMjM3NGYxZDZiN2ZkZTVlMDRmOTQ4ZmU5NmQyMGNkZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1X3BMc21sRXVwa3VoMkJlZlphSlZMWVFJMDBaSzROYm15Z0gwUnl0R2RIOWZ4SGNiZkpLMldCYXJHQmVDQ1hxWEpYTUl0bzhsTlJlS3JyTU04UFVDVm5pa0hSR3Y1aE9Md1VlRno0SGFvZkFZanFRdnJ0c3ZVcG45bkd3aEkiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjA2OjQyLjg5NjIzOCJ9fQ==','2020-02-20 07:06:43.898077'),('xyctk5rolebjsgcoatu2y8q1exi9lp3z','ZjVmMGVkM2FhMjA4M2ZhYmUwNWM2MWQ1MWZlMWNjODI1OGY2NjU3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZTRsdkMxX0NxcG9wRmplUnJTQ0xCR1MwODNlaGFCcmtCT2NvWDNuZl9SNC1mLWsza1FkUUIydTN2QnpJT2sydkRLRzNDMG52RlRfNGhaUDhnX3lrN3NnaVJEUWtHYldablFWV0NJYkNRX09UVEtodDFCUEphaTNmaXFpNUR2b3hjb1cyeVBCT21jUWVLRDR4ZFd4bC1JSUViNUVLZmctS2ttaWJBIiwiZXhwaXJ5IjoiMjAyMC0wNC0wNyAxNDowODoyMi42OTIwMjQifX0=','2020-04-21 07:08:23.695569'),('xz8l6srvet1apmeq0icnbq1v170b0qzv','YTMzODg3NGU1NzEzMjQzNWRiMWE3NTgyY2IzZjNiNzkwZjMwYjUwMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0JfSW9qTXdkQ0l5bzViMGtyTnVwTy1OTEdoMFVDeW5XeDBRX3lzWTlZMVl3NEZweVdZdF91R0trZG1HMnE0X0VCakNsN3NSdjEyeG1xODBUV01ES29yV1o1SmE2MVR5dUlsaFBJRlFUMzQxQmVUYzF3RXhFVG1yVk9zYzM3UFEiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjM0Ljk5ODQwOSJ9fQ==','2020-02-13 07:40:36.001770'),('xzn0luas1vh2xr9wqzir1m2gl7884b8v','YjFjYzE1M2E1NmFmY2UyN2YwOTQwZjhjZDM1NDliNzI2OWI0NThlZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzaGhmLW9sY2pUcXR1TGR3WHFIUi16N2YycUN2Q0tMcG5IU1BZaUIyeEZZaG42UlJ2aDdHSjdkWXZuWE5WWk5QTEZKajFRcFhIdjY0QzZjeWR3ZkllWGR3MGpHa3lkNW5nQWd6dzhGdFV3MFlGMWxqZHhULXhVMXZDalFFX00iLCJleHBpcnkiOiIyMDIwLTAyLTA1IDA2OjM0OjM3LjA2NjQ5NyJ9fQ==','2020-02-19 05:34:38.108886'),('xzsscdin9ikdggq1hwsgctohr4cj24d8','ZjdhYmYyMDlkMzhiM2MyYjYwYmJhNGY5NzQ4OGExN2UzYjQwMmY3NTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIzZnZ5ay1hdlROMlVjQl84TlotZHowM0RWLWNTMzRYZkJQV3k4N0ZiTzFlTmR0QzN5VHlyUGNVazlDbnNJMmpva1dqejJLdmVGUkRLZjVIZWtBZDNuVElXWjItcDRBejRSbUJrcU1lcWMydTN3dklCLS1kZWJseUFuSG1zSkEiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjE0LjYxODYzNyJ9fQ==','2020-01-26 05:47:14.622628'),('y0mjgskrad8jt3pef9p7g7fsp4d2rhdr','MmYwN2MzZjBkZjFjYzcyYzBiNWMzNDFiYTc4NWFmNDA3NDUwMjllYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIzQjZpdXNGWWptbWNaNjNaemN0TlNMVDRDeE9LT2tGYzN4dnRHZ1padFZERDlON05Wa2lVWkhaT2thd2UyQkczXzcwaEVURUprTkp3UENKM0lsMmVTelBTUkM3TTJJQnhuRDNKLXdOQU1SSl9ScUpfbW15enA1QU9uUi1PUnciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjExOjUyLjY3NTcxMCJ9fQ==','2020-01-23 07:11:52.679077'),('y1wjnl3k6xarnzf0c5rgj2yojsc3d6xo','MzE5NGEwY2NhNDM2ZDE3MmQ4ODE1ODAxZjMyYzlkMjhjZDg2YjM2Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIyQWY2ZFRQUDFva3kxWGYtc0JUMlctb2hHMWphRXhFYmQwSWtOU0JpR1dpLXRKMUViNFdKenk0QWhRLWxBNnVZVERTT1lGM2J2cXo2MnprRzFINTZWVTYyakJqZ0ZlZHZUb1JFMUVERlkwU0dFbXRMVF9jSFo0eXJWcEVkTlkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDExOjUxOjExLjAwNjY4OSJ9fQ==','2020-02-17 10:51:12.010250'),('y2y68cln629k835y5ukq1n3is3bmx8k7','MzY3YTMzZjU2MGI3ODA1MjdiZTNmZGIyMDdjYzFkYjY0NjBiODM2NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HX0I4NFZXZWxRTTZIUVNKa0U4OXg4U1FoME05RnVidmdLUThYUXF1V3k3Q0x4QUpNd3ZBSU40bzlmaExZR3RjYnF2dHlpbG5wdDFxNmdpalZrcG9pWnhaTEdyMmV1Y053aXJSUVE4Y19yUkZzMk1waDBrYkYzQWtnTVN3OVJ5UERaIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMjo1MC42MDM5MzYifX0=','2020-03-10 06:12:51.605076'),('y33pggme961bp91h3mss76r1ql6xoe99','OTcxMjY2MDllNzc0MmIzNDNjZWRhNjVjZDA3YjdmOWJkNDM1Y2UzYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwRlBmTG1LWl9yZ2w1TF9JaVFBNmxyaUdtMW91MzN4MWM5UFdXb3hvbFFiMmhjU2liaUhpMk1ZeVpjdUxvNVRGUDBsQzlNdGtEc0IyaGktWWJNRFFxZDdUYlNrZ3F4WlFlQzZ6MkM4QlJ3cVI4ZTNVMGlKZnJqenFGcXVDUmciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjQzLjg0OTU5NCJ9fQ==','2020-02-06 10:57:44.853393'),('y34pq0k40t3udz3l467rfqelrr73irwo','YzQ5OGEzYTc5NDA4NjMzZWEzMzcxNzY1NWY0NGI4NDIzNTBmMDE4ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyVnljR1R2WkhKdXZMcWdMVmU5TUhoRUcwWS1ESkwwNlBTVnAxR0JpVE1jZTJkTDZ5X3pTX25ELXZXal8zc2ZJOFFleUp6RldRaVFGUmFrdTJrWVdrRDhMNHVxSnJLWU1sZUY3NUtpZjVxS2ZDcFhGcnNreWtMQ0d0VjJfYWsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjMwOjM1LjA5NjI2NiJ9fQ==','2020-02-06 11:30:36.099697'),('y5q8b1qaol2i34fo41if0nug29j9exmg','NTY1NDQ0OGJkMjExMTk3YTlmNGFiMWRiNTY3NjE4OGQyNDQ3NGM2Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVVUDRvM19VMTBkeWROYUgxWFFxY3dHekhnT0VFd3gxZE1OaTBFTEpySzVoSkVPZmFVb3JiM0JwUDRhdldlNUZ5VFcwb19nOXFfYWwxQ0ZwMUljZG12SlpoRnYySjM3aUxVdzlqc1NHNzRITTRSM0FOb1U0ZVNzQ1hLV2s5REIxTVVZZk9vTXdjeFYtcTZ1UGFkZm5QcndBd3pUZUJEZFpBIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDoyMi4wNTExNDkifX0=','2020-02-26 07:30:23.054618'),('y65dq2an8c1ecmgbpyhx3seczrcetimh','ZWZjYjhmMDJkMmMwYmZjODcwZGVkZTQ4NWRjM2RlMzA3MDUwMzlhYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI3dG4yQTBiSkNSSHBOeVNxclZLa0xkRDhuc0xVZkplR3NxUzgzYUhTRERmQW1Tdmw5LWlLWG1NRlVEM2JNNnpZbVRJdG5TWk05RjlqcVJqcnRXSi1YTDZTRzNnVUItQTdUZ21ycmxWQTFhSEhLQVVDdkVybGw3LURrckNkSHpPIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMTowMi44ODI5NDUifX0=','2020-02-23 07:21:03.886446'),('y6gjdlk4aq4e4trji8bdphtw0qt1s6nr','NGVmY2RlZGIwOGRhN2NjZDhkM2MyZTQ4YWU5MTRmMzgyNDYxMWVjYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfRV9hNnhaTWJQVTVuSVhiX2JpNmlkUngyTm1jejdfbnFxU0VIMVBRbXZZUjZVNlFDOEM1TEh2ZW5lRkNkc1pTeFlfX2Z2aThrdUxXMV92bF9iTVRnREhfWlM2WnpydmFYRFl6SFF0XzkwREZZSmhUM3B2TjR3aWxsbXhQMk1YIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1NDowMy44ODMyNjEifX0=','2020-02-26 06:54:04.886723'),('y6t3zpksxrr6vsqsuu4cwcdu7vy2gnua','YjM2YTliMTA0NjUzN2E2Zjg1MTUzOTI2MWZlZWFjMDE0ODRiN2YwNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIwWW8wLTVxWnlzRnA1VGRKVTYzV1dBN2NhdTF3d05nZFVZYlppMk5lZmhQZk43M2tQMHFMMXo1dXpMQzZYRGloMEkwLXRPaGdTdEFpZlVaY0pMeUNGZ0hHLU5oaVdFTjRQTEhfVTk2Y2tTeVpKZW5DT29lZW8xV1hKdXNaanMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjM1OjI1LjU5MTM4NiJ9fQ==','2020-02-06 10:35:26.594897'),('y7622zmne43vhpgbi0v6cztsknfxnkqh','MWU0ZDM0ZGVmYWFkOTYxYmRmZDM5YTMyYzJmZjA4NDUwYjA1ZjhhZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ5cmRoR3BVTDVJYk9TMElLeTRKVG5POGpOOE9YQU92UHU4dXlXZmNEWGRET1ZJMkNWck53akN0cWMxNGttZXNweTk0eGcwVDc3TXZwOTh3cHc2c09qZlRMSG9uLVlVeWpSaHRBTFFpQzhvNUwzRWtHM2RpWUxYeUFtMHF5bDVqIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwNzowMDoyNC40MDg2NDkifX0=','2020-02-23 06:00:25.412160'),('y77w2tifc6tvkcvd5up22nbmnh62tzxj','ZTkwNjc4OThiYjk4Yjk5MjZjNGJkMjFiYjRjNjgyY2YyNGEzODExZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIzMWFsNXg5elVrTGRFSjd4M085X2s0TEVMSUYzLVNBXzQ2QzdKc0pWZkZoZXZGampyVkZRajc4aWVDdUVvalJ5SWtJUzUxTDhVZnByLWhSaXdVNUJ5WnhOU2FkcjIyclhYYWd0QUhqazRRVWtMbl9ITElfQzRDR3o1QmRJejQiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjI2LjgwNjc1NCJ9fQ==','2020-02-17 12:30:27.807958'),('y7ge1azl00g7n332zubnwo5bdrbv38vs','YTMyMGFiZjFkOWJmMjkzYzlhNTY5NTRmYWQ1ZTcyYTUwNWFkZjNjNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzOTlyZUdXdU8tWThrVFdMRGpFMEZQc0NtbzdUTGxDWEd2OHlkS1ZWbXRjbkJ2TTFFZGk1Um1NUmdnNmM3cmpDRlJ6VGQtSFpkT0pid2hJOXFhSV9BNEFOeWJfVXRtQ3ZtekZYbjFUdnpLeGhncjUxN0NBVEVJS0RUWXdfMnciLCJleHBpcnkiOiIyMDIwLTAxLTIzIDExOjU3OjE5LjczNTQ1NiJ9fQ==','2020-02-06 10:57:20.739106'),('y83sduuzq84as5mzo1e7w3vymtskljkp','NGZmMWQ2OWQyZTkwMWE3MDFmNDA4N2Q5YzczMDQ3YzQxMzc0ZjQ0Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI0cUUxRVhMMWpILTZSOVF0ZUJ5bWszbUR5RVdQbE9hWTNadDJfMGdaV2dXZU02Vi1tcG1SamhDTVZNUHM3bnN0RTRXenZncEFRQXdvN1BNbkFJenBTYlRfYUNoREFOMHc2UmhSc0JOYW1vOGN2VGF4VldYUFpzR0xQZkRNaFUiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ2OjUyLjkzODc0NSJ9fQ==','2020-01-27 05:46:52.942248'),('y8moyg4a81eg9fb2fr36iuekqb0wb9zj','NGViMzczZGFiMzZmN2FlODJhNWI0ZDdiNmU1MDg5ZDk4YTE3MDQ0ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4cVdleXc1TVpmU1dDNlVYNXpmWmgzSUpCSWw2ekZoT0txektVSExvdFlzS2dfSUUzTmdXZjBETS1Jb2ZIOXpqejdsbUZqY1lPSTMtMmF3dk9HTldDR0JxSXNoXzhZYU1wMmNTakRBd3d6ak45MDgtYldDSjdfVDdaa3h3b0EiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjQ0LjY0MDEyMCJ9fQ==','2020-02-17 11:20:45.643858'),('y8xie8qozjvehjyl1tshghbfrlhjver4','NjBmOTk2MDVhYjU5YjIwNDYwZTMzNWQ2OWVhZGYwMzFlNzJjMjRkMTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzM1ZJQkNsVVhjeTdfbVNjX1FxM01PR01DQXh0TFlYR0xUNnBNQ2hoQ3BKb3lXODdGRFRXZ0EzcGxXTUg5eXVYS1NpQWZNaFFnRjlNUXNsRWhNS2xBN1o1bFY3QlN0cWtWMUR2djBBYTd3QW4xdG50RjNaMEQxRDJkaENiVkUiLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjQwOjU0LjEzNTAwOSJ9fQ==','2020-02-13 07:40:55.138553'),('y8zl8ws1d33n5pm1el7sd8x8ld33schh','ZTRlMTUyMzcwNDcwZTM2YmM4OTkxNGI4MmE1ZGM0NDlkMTk3ZDUyNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyeUg5bEJQQnI0N0N5eFE2WlRuNlkzdkpDZkdTckN2c0E3cFdNc2tYNTdtZkxQU3R0T2t0SFRsb3JSWkFrZUxxbmltRUZBc1FhWm9fZVREUDlQbHE2VGZnSm51Tlh3S1c2aVBQV3B2Q1NZbTR1NlRoQnp6UHN1dFFyNV9HbE0iLCJleHBpcnkiOiIyMDIwLTAxLTMwIDA4OjUwOjQ3LjE4OTg1OCJ9fQ==','2020-02-13 07:50:48.193339'),('yeei77x9no5309ewei8r1skxus0vn6ts','OWQyMzRmNzNlNDRhMTlkNjAxYzhhOTFhM2UyMzc5YWM5NWRmYTM2Yjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWOGxJLWRlbzRyYTEwT3VLQXgtcXhJNm8zU0NXV196YnJhdWg3OWg5SUgzMl9mSVVCV21zczE0TXljbDJaS0NWaUlqdUhrRW5ScnJlNnV4ZjZsZVBFRUhmbFVGZzVuTFdFOVhrRk4xUVNjSG9JVndTWDVBVGxPbjhrUTdPVGtBUVl6amt1OEdwcnNPc0dlZE51NXdtc0YwVndwdEpibmlBIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxNDozOToyMC4zNzg5NTkifX0=','2020-03-29 07:39:21.382016'),('yf07wmg1zq48065oxna3h15hebjthlkb','MGZjNmI1YmI3ODA2ODEyNGI3NDdkNmQxYjI2YTViZWUwMmQxY2M0MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEIxMlJ0OEt0U3A5Nk5DRWluMDdRZVF0QWFiRUdqUDRBYXREQXNWTlNsX2lPdF9xWkd6SExORXg1cEhOR1o2NTh6OERLLVZDWGx6RmJRbDk0aFZqd1pNZ3dyWXRQdmh6TDY5bk5lSnBuQVVXVVp0U3lTVjl1Z1lWY1l3OXgwSlUiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjMwOjM3LjM1NzI4OCJ9fQ==','2020-02-17 12:30:38.360805'),('yg3pp0f9m6w8s981eah25vue9a2q19f2','M2FmMzkzM2U1YTYyMmE4MzA5MmM4NDdkMGMyNjRiYmE3YzgzMDAzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ3X1FzSWN4eXRtWUltWUVsRjdDMnpQZTcxTHdlaS1OeDZZcnhPV3diOVdLb3c0c3NsMTAySDlTUHNvbFc5TFBrX1NKNFNjYlNPRllPZ3djbVNta2tKQWthVy1KRElHMEJyQ1pvVW54N2pCNUljV2ItUWVpdV9EMkFtelJYLUUiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjMxLjg5MTU3NCJ9fQ==','2020-01-27 10:58:31.895025'),('yhb7q4onvlkf3mja3z473p5wvjbvoscs','MTQ4OTkxZTU1ZTg2NjlmNjU4YmIwNDdiZGEzNzZkYzdkMmYwMzkwNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI5WVFWZFRkNzZkVFN3ZDQ5bFhmTHRJNlpzcm5rcnNtb0NpYkJsbHhDRl9pYm1NajAwMXA3T25VRncwb2tkX2V4ejlTUmlCVHAyWGctQTdZWUVHcEM4Tlg3dnh3QjZiUll1Z0NIYVVoZFdpSVc5MXF3MFRpWnYtSklVcmFsSWsiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjQ3OjQ0Ljg1ODI4MiJ9fQ==','2020-02-06 11:47:45.861774'),('yin1es5hbnyhbolea1m0lbpjlsqmj2rc','OWQzNmYxZjYyZmMyN2ViZjZlNDlkOTczZWEzZmU3OGI5ZWJlNGFiMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1NVRSMDZFM1hPM3BHU3ZNNjhwb1NRazFyOFVDSGZCZUhYRERaelE5TFVsOVMxTWVSakctMFp6RWxYeFI5UFd1eDM4Ul9EbUJ4a29VNzZKRG1jRlBxWEZWcmtCWTA4ZDJ5R2pycmZvVkNzb1JucWlpdDEzS3htckNMN3JaWW8iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjE5OjQyLjU5NTY3OSJ9fQ==','2020-02-06 12:19:43.599132'),('yiozaacfzgsgrdxrte1d3nno0jvyzcfc','MTJiZTU1NzBlNDIzOWE0ZjEwZjIxMWUxZjE4OGZlZjI1ZWVhNmUxZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIzSkFGOFpvMXJyd2JvRXNoREtiWmZ2emhPczRlYkJUWFpGN1hCWkJUNGxwLWIzckhnNHltYXhzMTZucDNiQUg2OTY2Wm9ZdVdSVUx5UFNQVndZUjVsTndrOXJybnlBOU9wUHpLb2tBY0p4ZFlhc1JOc05yWkkxT2xWMGtqbFUiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjIwOjIwLjU3Mjc2NSJ9fQ==','2020-02-06 12:20:21.576214'),('yjhij50s1i65tqmstd5h6jqxnzuuk9q4','NmNhNmExZDYyY2E1Y2Y4YjMwNDE2MzVmMjZhN2YzODI1ZmZmMTJhYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyaG9SUHp6RFF6RkM5SDlQZURVdUdSR3RzZ2Exb0YwdFdLME10b2VtUDRvM3g0VUdHY3pyQl9MX2V6YTNrbm1uWldSeDVPWm5NeUJYOURmcEY5YUV3MWN1MkhfbUxBRHJ1RjdpbWV6RVNQVmVGOE90MGlaV1pEOGlHRmdHMGMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjM1LjYzMTI0MSJ9fQ==','2020-02-10 08:10:36.636457'),('yk6uxpvd2vk4gxa99gord5y2vtjsz0h5','ZGY2ZjJiN2Q3ODQ3OTVhMWZlZDBkMDI5OTM4NDdhODA0ZWZlY2FiNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIwcnFLN2VZU2NXaWw1VXJoZE5ETVRNSkFfbmdhQ29BUDg3QjZyRUxNRTVKQl93ZFM5cnBkSzFzX2VCSEx3Q1VFUkdhWmhFNEFfek5jbWFGNnJjaUdsSjk1MnJZamJqN2plS0VQSENsSGktZDFUWUtveGRlUGVMLURqZXhuc0hwIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMToyMy43NTYyMzkifX0=','2020-02-23 07:01:24.759648'),('ylwzikdglfax6tbrxke0pquxna6gc4bb','OWJjYjU2YzVlYzkxZTU1ZWU2MmRmNjg3YWFmNDRhNTgyZDQxZDYyNzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyVUVhUUItQ2F0UkpGZXUxM0NEUVAtMUNUV05PTzZMUmRzNm5JZ2pVcFlBMVBLWDVVOWZrYXdXb252MlV0bnBnTTVkZEpSZ1BrNGdHSUxnWmR3Z21WbFgwWHplekMxOWxEX2F2N3BUbnlySFZKTmJPbXBRM2ZjZzhCT2tCT3MwIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwODozMDoyNC40OTgyNjgifX0=','2020-02-26 07:30:25.502019'),('ymgbsheg3tbvczxzt5klozqkem5f7qlr','M2YwYjliN2ZiMDllOGZmZmZiOTg3M2JlMzA0NGZiZmY0M2FmMTZjNDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJ5VDhaZGtuWE5mSktlRWFOX0tTQVU5blpsUkdhT2NMczN6dHFoaWZ2SFBBWmROTVRYaWhpMXJIajlpNEllQ09IdmRFZjROdDVUQWNZQmpZODNudkwwX2dTZHFaelNYbnFYU25zQ0V0dVJxM2lXX0pJLW42aklVaWNUdk9TNjgiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjExOjA1LjczMzAyNCJ9fQ==','2020-02-20 07:11:06.734104'),('ynjr1tvw037v8bkgq34koj2qr8tt96ka','MmQ4YTg1MmNmZTIwYTRmZDM5N2E4ZGNlYzFjZDkzMGJmNmU4MjFiYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5X0R1eEZLZlZya0U3NlVYbldtTWRPZ3ZIclRCUi1fUXZMckthblNUN2hVaDV6ZEpSNl9LNktrbU9vVkZfbkxBT2J6LTlfeFJHVGp3MHBpTHNDb0ZyYVc2MkFoOFZtSldmNjlHTFZmTkVBejI3TFQ1TzMtMTBiX0NoTWloMkkiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjMwOjM5LjYyOTE0MCJ9fQ==','2020-02-20 07:30:40.630277'),('yowewogw9gcj01pokjcdd8hw53dwyynv','YzVhYjE3OWIyMmVlZmQ2YzJmMjg0MGM2YzQ4MDM1NWI4YzE2NjQ2Mzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0J4V2cwUVh2NEo0TGhJc3YwckdDeGU2dEg5MWtGT3FfdlIxam5JakptOGtaMGRjb3pyaDUtR1J0cmNPMkM1WjJyMW9XY00zbDYtbW4zMHdoc1p4bGR3OVZMTHdGR1E1QzU3cmkwU1FVZzdSWkhoWG5WOXZySjZrc3JJdHdYcjgiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjIwOjQ1LjcyODY3MSJ9fQ==','2020-02-10 08:20:46.732052'),('yquygfuxc7otgxqwheg7sirp5w92eznb','YjcyZmJmMmVmZDBhOWI3MGM4MzY4MDE0NzgzYzk1ZGVkMjk0NzIzZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYY2hyRmVWbGJ2UDZCbTJqZ01KME5IYzhaVFVqR0d3cVVwczhQSERnV24xai0tcmJDWDRSMzllRmEzSURROW5fWk12VDIzbHNfY1V2V1JEMFFLQkZoQV9Ld1ZYSXNjdUR6Q3poLVluZWdJVDdxVWdIYjItQTh2NzlSeXZaWm1mRUF1M0YzZUpfVmVfWXB4UjhJclpjWnE5Y09vTGVUVG13IiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzoxNTozMy4xNTkzOTcifX0=','2020-03-29 06:15:34.163162'),('yr2wtwhzo6rnjj9x0ymxxcvjlikwqw12','MjE5MzgwYWE0NGQyZTNjYjViNzcwMWE0ZmIzYzExMTI1OGRjOGZmYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI5WEwxbklTUnppaEl3QnVzZkxmanRaVk1RT1p1Z1RzYmhjM3RNQmJXZUFqWUpnRW54Wjc0S21SYVJSd19ZYi11TU5JN1h4MWduWnNzcjB0bFI2aUlGdnNaVVpLQjV4SjdrX0N2OXh5X045SFJNMXphbjZiRkljMHFqVVZQSDgiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjA2LjkzNzQ4NyJ9fQ==','2020-02-17 11:20:07.938627'),('yrudeuvtpo088mn5yabbotydqjgqkktn','ZTI1YzIyN2M3YWE3NzVjNzY1OWIyZGRhZmRlNDdlYTExMzExNWIxYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIxbmtzamg0Y3RoUkhKeXIzemx4RXBxcjVacWQ0NFdCNXZBcTFoV0FmcVR6Q3NHS3pTc0JWbHI4bmtqU0hZQ1NZZFd4YjJPeU5UWmgxOTlTY1BEakR1UGd3VzRzNXBsanNWT3BURER2NEc4cVVyS2FFTndUQmQ2TFRTZV9lOXdUIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNzo1ODo0MC4xNTYyODMifX0=','2020-02-26 06:58:41.160145'),('ysphlt33fwmj4rxkj1j7mcgvroyqy9l8','ZjIyZDgyYTQ0MDc1MzNiZjA2NjhmOWY4Mzk1ZjYyNDMzOGZhOTM4ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3cjB4N2tuY3o3dTg0bS1TaEpEUUZ6c3pZYmxSbXdrcVRZYy1NS2o2N2hUZC0tV28xUVdzTjRERVZsWFYyOGNiR1A3TnVncGhwQjZNSDZPYzZYTTl1YU9sNTlnVmpjcGVWNTg4dHRhWnVpdkRCWG9EWjFvTno4c19TdkMxY00iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEzOjA5OjEzLjUzMDEwMCJ9fQ==','2020-02-06 12:09:14.533604'),('yspiqidq4ado526xev9ivky8flle7kic','NWUxMjIzOWQ5ODRmOGRjYzhjOTNiNmFhMjcyYThmZGMzY2UwZDg0Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUItVGxBUWZtNDhJczdIblU2eWh5enlyX1pvR0Z0aVRrUEJPMHJ0cXl1bDRuOVlEMGlobkg5a1dGTmNhejRhXzFQN25rbTF6VTVfdjJ5eklyVE9HbmFDOTEwdHBQWFVmaVJaWXlUdFpHZzFCeXN2S2dxLWlMc0t2a3JRbDUxVEUiLCJleHBpcnkiOiIyMDIwLTAxLTE2IDA3OjA4OjQ3LjExMzU5NSJ9fQ==','2020-01-30 06:08:48.117286'),('ytjmxrrgri9fyxi3h5d4rbiq9nddauli','YjZhZGY2Zjk1YjM5ZmQyNzFjNzc1MTNiMDU1MTVkNmE5NjU4NjI4MTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIwVTBfSFh0M21TRE5YQWtrN09NdXRPakh4QzhuaHluYWkwX1Z4RHdiRzVSUHM2OURNVFhmZHI5bGU3bi1mSU43UWlCYTlITEJOZDdMZ2NTZUZUdW4ya3o3RUItUWRkYU8xODZVOHJrWkdxZ0cyQndGaUYxX05rVWJWcHVfaEEiLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjE0OjA5LjQ4MzE4NyJ9fQ==','2020-01-22 06:14:09.486651'),('yvsa334btbbysei89h14omjjr3faqtfj','ZmE3MDY0MjI2ZTczMjQ3YmFjYjhkMWY2NDk3M2U0NzYwZmI2M2UxYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I2WS1uekNqY1RGNkNkdlJSWFJHSEt0U0l3WjI1dXJsOFR4VjVZU0JEY2FoSXpEQ25rdEZuMGhOSG9FUUdyQXRNaU5jLThqUkNsRWdRdXR6UGFVVE4wdWhDc1NzN1NoOFF6a2NmSDJ0ajIzOFZoVUJ1RGhMRFV5R0VTY1dQN0kiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjUxLjEyNDIyMyJ9fQ==','2020-02-10 08:00:52.127702'),('ywdoi5sfrsrtbzc6cx4x2iiordfy50iu','MDQzOWM1MDg4ZjhiOTcwNGQxZGJhMGQyYjAwYTAyYjAzZTFiNzgwODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1a2tCMlBRMENQWG9CSi1zWlZmX3JUYVpZZzVxaXNhQmY1d0dpblJzOVhOc2ZDTG9oNWptazlSajlFMW5XcnVOMGU0aEJTd3J6RlN5c0NLYW9vYmI1X0tsRlF6OFk4Z0NRMEJoQ1FuOTI4aEZQME9kV1hrWXczdHl3NDFuV2MiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA4OjEyOjExLjM2MDUxMyJ9fQ==','2020-02-20 07:12:12.362234'),('ywhra6nz8zwnrd8225sickggxwk1bi5h','ZGIzZmJiNWJlZjUxMjIyODBjNjA4NjUwM2VmNjhjMWNkNjg0MDQ1MDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEItX0d1cnlmSENOeGlmOHk1LTBTM2JVQXdWTFlWSDg2WkFuQkZpai1RS1hxTUF6bk55Z04wa3RXMU0waVN1UzlQY2lSUHlSYmk1NkRiSDFjMnhob01JSEUzT1dfUEhCNzBiaEVYNTVuTm9xaWY4bTBOQUJMckN2bVdTOWZDd0EiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEzOjIwOjI0LjgyNTQzMSJ9fQ==','2020-02-17 12:20:25.828743'),('yx8svs934ffg6smo910kqx0exbown3jb','OGY0OWFkZTQ2OGRmNWU2MTVkMjlkY2M2NGMzNzI4NTVmM2IwM2Q2ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyQ1pCcENxX1pJdlhGa2lob1BTWGZWczZoLVVfTHZzSzBwN2xwMnNvWmlvQWMxZ2tzM3JFNWg4amtTVmxuVEF3SHFPM1QxMlhTQ0tHU2RZNnh0TlRxdWRjYl9qUjRVMWNmcW4yQ3MxVVhZbll1RUdoWkpKcDRFRVJOTHk4bDQiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjEwOjE2Ljc5MzY4NSJ9fQ==','2020-02-10 08:10:17.797025'),('yxreybc2fmdwi9wtlqocym2zml1ilvh2','MTdkNDg1OGU3OTMyYTM1NDMxN2FlMDdkYWIxMmJlNDgwYWZhOTMyYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIwOEg1M0Y2ZjVKUVAwbzZLMThtbHN6SFNHYXZ0ajZFRm1BdjUtd0dyLTgzdlNWcjlGOVFpTnVSZS0zbjBBRWViMkJ5RzlsNE1Hdy1yakN3YTRpZm1QTFppWEdiTktZaDQxUURMbGdGbDFSRUZxVzU4b3RianhQeUdCOGRRQTgiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDExOjU4OjU2LjM1MTcyNyJ9fQ==','2020-01-27 10:58:56.355221'),('yyhgqll6sv35lfd71i9nd9qzjiwtzvv6','Mjc0OTFmMjM4NDU5YjRhM2QzZDE2NWY0MWRhMTQyZjZiNGUzNzNjZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXVXktVTNzVFNLQUJGQlpqZzRKR0xOSDFhaUJZTEVFX2h0WU9YMnVjX3FwTlRnN19XYjhZaDJSV1FCa0VHQUpwbDJBVjl4V1BOVmZ0S3JDLWQtdDVZdFlySlZzWUNxcURUMGtsZU41X09vSWkyenhtVUVkLU1pX0wwTWliMXR5Q0pBMDhFRHdHdkM0MHZaaVlGeFc1MmhiX0FmdlVQbkdRIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMzo0MS45MDEwMzEifX0=','2020-03-10 06:13:42.904255'),('yysadrvu72gjjqci82ofpxxa2qz8qsw0','YTU0OWU0ZGFkNGRiYmExOTgxOGI5YWM2OTM2MTc4ZWIxZDUzNDY3YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI2TnFYVnhzZWxuZGtnLURsNlJCeDU4V0NoODR1QzA2S0NONFY1ZDN2X1A0V2RFQ0N2aFUwUWxQSE1ZRFdyUkFyUWpjUTlGLUV1TE1LbzFOWW5aU3hmZDZ4NDJ5Q3lPX3JKOUJ6OWd5MzRKaDdDNVFkamNoNHYzNHg2QWc2NlBtIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwOToyMDowOS4wNzEyMTcifX0=','2020-02-25 08:20:10.074720'),('yztxbfz94yn3wlha06h450rzl7wmjc2i','NTE1YmMyODQxZWYyYjYzMDMwMjBlZDVlYTAwYmVkY2JhNTBjMGMxODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUIyalc1Wms2cVFEdVZGNEZjbkhIUlFIcUdwdzVSRi1oOGhZRzg5NE9WYWxELV9VcHVtanlMMEdBc2MwSV9UMlNWYzJhdWNtUXZkUHBaa09vM0pNd2JRdzZMc0hKdUU2UEdhZncxTFFHZ2NtYXhSQXJ0YXJDS0pvOGh2MmpiM043IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODowMjo1My4xMDU5MzkifX0=','2020-02-23 07:02:54.107084'),('z0fm7jy5zxoqa6iwn7x7zrs2z5qljmf8','NjQwYzI4ODM5MTg1MDc2ZWQyNmExMzQ5ZmJiNGYzYzBhNGU5NjE3NDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWV29VWk16eEN5cGZJbG5ob1B2ZnozUTk0T3diT3JIdXhxd2Z6d05scG1wUUREZmZLcGQ4d0xxUTlnZGVoTnZWRHRSbmJmZjU5bkdhQzVEemU3OXVwX3hOaGRSMTNSTUlsOGZlZGdWOUpKeTJFMUhiZTZ3VVhQbWNQMUstNm5jTjhySE1RUllJUXVJNzZpcWw3akpCcmdESkRHTjlkbiIsImV4cGlyeSI6IjIwMjAtMDItMDYgMDg6MTI6MzcuNjA5NDg2In19','2020-02-20 07:12:38.610738'),('z0grpc7hbhzt12bokvepquek2rl04vue','Nzk3MzhmMjk5MGMwZDZmYzVjOTNkOWJkNzI1ODlkMTJiNGI1MjY5OTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWSE5WQWJLMld4XzBwVHdaTmZzUEc2NWkyTVZOeEFZbkFSYXNDMjN6UTA0S0Y5Qk9hWldSQnZKbEVuQllkRUpjc1J1OHlITC1PXzY3Q3dsWjl1Q0JtTnF2cHpQM1lDTUNUNTZtakJ1U3dCZjNkNGoyVWJjNnJlSy1mWFN3NEUxMTl2VzBqcS0wdTVzdnpSVm94b1c0VEtTQ0dfa29JT2pBIiwiZXhwaXJ5IjoiMjAyMC0wMi0yNSAxMzoxMzo0Ni44MzA0MDkifX0=','2020-03-10 06:13:47.834362'),('z1sc9lf0j67fvwfeahq9uy399rmvb767','ZDRmNTk0ZjdkY2ExY2ViNjFhNDBmYmRkNDdlZGQ5Y2FiNTdjOTc5ODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4OExQQjBsNnU2MTRhcVZOUDhRS1pBdjB6RnZkcTdrSTVybTdIREFPM1I1TUxJUDNBbTRrei0tWm5MLUVEb3hhM1U4WlBDUlNCd3NNNldDZ3EzU29NSnpCR2p5aTBDdXZBXzQ2eGRuaDJKZ1JmbzdmNkxNZm9namtRdV9sNG8iLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjAzLjE5MzQ2MyJ9fQ==','2020-02-17 11:50:04.195232'),('z26gb94bizyr56hlbx8sya6fxwt1j7fv','MDhjNTU1NWRhYzAzY2U2NTI1N2Q5YWRkMzdmMjQ2ODQyMjU3NDEzZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUI5dVBjU0ZSYUdZbG1naWl1U0tJcDNLVGpQU3BURENSNU1VUTV5cm13a1ZoTjB3em1jMzdHRWhWanRWeDBKMFRvWjhhS1JUTDF6WUVZNnlPVWtfN0t4UWU4cTY4V0FEc1JFWXphMDZhbERSSFBYUFlHWVBCb080WmRpOThKSjQiLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ2OjQzLjI3MTE3OSJ9fQ==','2020-01-26 05:46:43.272283'),('z3jlci67r7qrinj5fdh00m10xhax0nwy','ZjgwMjUwZDE5ZmNkY2JmZDRkMzExNzI3OTAzNGUzZDQ4MDljMWE5Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IyTHAxdWlTdDdpbkFlRVFmSXhaZWZBSnQ1dDQxLUZ5TnAzWEpFV1hGV3pHYnU5RVBXV0MtbU1LVkZqZTNqbzFPUWVVVkFGWk5qZGVtNS1UaHNaSzNGTWE4cGlBLTlfeFN0YUotdEVlV2xNQkNPUGlCcFVVRm12Yi1uemc0Q3MiLCJleHBpcnkiOiIyMDIwLTAxLTI2IDA3OjE3OjE2LjkwNzM1NCJ9fQ==','2020-02-09 06:17:17.910867'),('z41in97f99syfq1lpg7fuw02u3e18pgy','ZmUzZGViNmZhOGEzZDIwODgyMWJiYTAyNDc2NTI5NTMzYzNlMzM0YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI3VkRxenRaeUpKN25FR0VnbUM3VFYwTl9GSWVQdDhyZUZkYm13dVFHV2hWY3hGaG1Ndnh5LVNiX0haVVRsaERkZmpRY0dPVllYblRldzFQdUVFcjNZa09RYVp5TkpqS1lKbXp2UUpEUWszeFctblpWWS1wSDByX21sZERuUFEiLCJleHBpcnkiOiIyMDIwLTAxLTIwIDA3OjE3OjAxLjUxMDcyOSJ9fQ==','2020-02-03 06:17:02.512450'),('z4hhfyz0h3h1rbe334ion5btz4rgte2e','MGNlODE0MDMyY2IxZTVkNzZiMmE2OTU3MzZmODY1YTg5N2E1NmViNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI0SjZDZWJaUHQ1QjVZTmZVd2tVRE5nQTFUbERzalM2bXJBUnZnSzJjMEczU2ljcldqYk5xZkpYaDZWU3UySjNxSmMzSnlkczktajJ5bjQ2YVlJQ0RMQ3FrV19iOC15QlpxM0dMaEIyUUxvT1lqT0N2TjFBZHZ3SFhfczJmOFEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjAwOjM4Ljc3NTc0NyJ9fQ==','2020-02-17 11:00:39.779350'),('z4iuaarushh8ob51ygx9xw7josvcns0w','NWJiNDMwOTdmMDMyZDlhZWZjMmE4ZjJhY2I1ZGY3YjJmMjg2MWQwOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3cFdMUFdjdk5lemlyd0EwaWVvMTJwMlhLREx6d21SQlJvempmdGRKY3c0MnBTRzFva2pLNmJNSGg1cWl6MVhjd0RaOC03TEpoM0tsXzdEZ3cxd2h2OTE4YTVZQ1BYTjBMaUFMUExzeUpQSmlsRjNJVEt2NDM0TEFTd2MzNkEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjE1OjMyLjIwNzMxNCJ9fQ==','2020-01-23 07:15:32.210739'),('z5i3o36bxelv21mn19c61pkz24dfk0yq','YTNiMmE5ODA3MGE1ZjgyNGZjZjU5N2QwNGQxOTA0N2Q5NDQ0M2Q1YTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUItQTFwbU1TLXVwZllSTDJ5cjJYNFplQWQ2QXBfQnVYSzlLRU5PckxVNWpIbDM2Uk42bU1qZ2lweEwwWFZLcUVuTlA4LURiYkE0aWx3bnNxLWxfTkcyNGgwS2RmM1FCTFFMOUZRaDVaZGc3UnRqdTJaUUdUYWpaVFpYeVZsOVVlIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxOTo1OS42NDE3MzEifX0=','2020-02-23 07:20:00.646645'),('z6mmknvmngoefx5xev2xa1miloa0y3w7','MzE4MjkzNjBhNmM4YjFhMjE1ODkyODcwZTAwMGU0MWFlNDg0YTEwNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzVXZOLTJYUDN6OUw2Nk56OHVEV3hwODAxUnhCaHdmME0zTFpQcU85UGtaaTlMTnpBbkpoUlVwM2xWNlJhWGZYb01Oa19WNUxQdWYxVmV1N0tWYmFvbWJER3ZpUm43cGVPdXg5amNvMDN0N1k1dEE5Z2RFN2ttVE44ajBJTVEiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA5OjAwOjQwLjUzNTE1NSJ9fQ==','2020-02-10 08:00:41.538654'),('z6v8f23nuwxdgz073z5ziclv6z69d5c8','Nzg1MDIxNWQyYTg1NWI1NzQzOGU1MWQ3Yzc3MzljOTQyMTgzMWMyZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkJ5czdlVGEtQzR4VnZ5ZmhObFEtanBQUGJqM05fWXVlbFBMZnBRRmxZMU9neW5BQ3Vqam5yU3VCUlJpc3pzRFd4RlA1VDlsd0Jvb1ktSUFMWGd2QTRfSUxnNE9Tc3dOdWZYLThtNW45NC0tdHhJSF9kci1IZkpDSVpWS095T1UiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjI2OjA1LjU5MzkyOSJ9fQ==','2020-02-06 11:26:06.595259'),('z7j4dgwgo46s03mqvp4mko6uo46km5mz','Y2EwN2I3YzZlY2Q2M2RlYjFhZmFhOTMyODM2ZThlNTQxNTU4MWFiZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3MFZsSGZJMGQzQWEyWDVGOXJuc1ZwUERSeDc0WHZMNG4tZ1VXa2F5Ym1DaWR2N001MjVoLUF3XzJ2UVQ1dHIyNnplZUtUWm9aZ0tDb2tLamg2MG14VU5Ea1JiVXloUkFXbm5JWFZOallhaVUxalBoX05wQ21ILWl2enk1Z28iLCJleHBpcnkiOiIyMDIwLTAxLTA4IDA3OjEzOjM1Ljg0NjMwNyJ9fQ==','2020-01-22 06:13:35.849770'),('z8j3j13mvihjhqfr1f31iie8biq6nobe','NTA3YWIxZjI3YmI5YWExZDc2MzFkMDNmNzI3MDk1YjAzZDE0MGUzMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0IzX1ZYRkJldXlJQ1lJVDNFNnM5VHppYVRTU1B1VHRMemtRSHM1QW0yY2tacFFSeXFWS3dwZDc0aGZ2M05PYVhuRkFlUHFKNkVHdkk2dWFOYW83YW9zdXhMZEZwdm5UMkljc1ZWMkRuX2Zhbzd3WFgxWVlyZ0k5TmJ5SWJ4N28iLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjAxLjIwNDM4OCJ9fQ==','2020-02-10 07:50:02.205984'),('zanmkpz0w4lwp5y8fvzw6si7w5gee0uy','ZDYyMDE0NTQ5NGZkMDEyMjRlOTA0NDI5NDcwZGRjZDNhY2ZlMTkzYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEItYm12YWhrUTF6ZEdPWDNTcUpMdTcwQlNkek1VRE9OcGItQzU5OG1Kc2NDal9fYkxEaU1VSi04dk1HMGRqcG9SbmtRRTlWYWFlMHFyMm1UX0Nxd3U4M0NVZ2sxNktPU19rcV92bUZGTVpMRVNGbXFxSzRVR3BPX0t6QmFRSW8iLCJleHBpcnkiOiIyMDIwLTAxLTA3IDA2OjQ5OjQ4LjEyNDAyNSJ9fQ==','2020-01-21 05:49:48.127662'),('zb8w7vu0ofiwwsrc98dw0fwrdmhovumv','OTU1Yzc4MjViMDQzOGUzYmY4MDEwNzliNGFjMDFmOTJkZmIwNWVmMzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJfc0NTZFVCaThETjJ0S2dOclBTMDR0YkpaMjB4NTFJd1pHc1FoeHQ5U1RIUUgyb0lqWXJUa2RQZ1JoUUxVYWZFdy1vMXNqOGpacWJBNEhsbXlnc3RBd201Mm9BNWZPRi1GTmF6RXRSNmVPMXpZejd4YXZIQlhuVV9LXzBYQlpJIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMiAwNjowMDoyNC4xODM4MTAifX0=','2020-02-26 05:00:25.188274'),('zbf9kk3segpprswg4rwyvktfaam5xzmq','NjUwOGI1NzM5MDcxNzUyY2Q4YzhmMzYwZDdhYTI2ZTU1NGM2ZDMzNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI4MDZqbjhEQ2lwd1hJcGxVOXljVTN3TGZ5TVZEY2c0amR4UlYwTzg4dWVvZm1nc3oyZlJUSEpvMEttdFVYVVhNOGFPZU9HcW5kcFU1R3VUWjFiM01xcXFOdTlFcWQzeHZ2X2xxVTgydGd4SkZ0eEoxV29GNnpNNnJtTUpOLUEiLCJleHBpcnkiOiIyMDIwLTAyLTA2IDA3OjAwOjE2Ljk2Mjc2NiJ9fQ==','2020-02-20 06:00:17.964323'),('zey6kg5n4600067ew9drcjl8bjo212l0','MmMyMTcwYTkyMjY0OWE3ODY3NGQ5OTdmYzIwNmM4ODJiNDRmMmFhZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEIxQmwzTFdnT05pMm5idkt1eFV6WDRGSHBSUmI4NEtCTXJiZWhtenVtNnUxR2pfekVwYzFDbmtyWTM2VDNzbHpSVlUzbGM3Z0h0eDUxbHpOSGVBTTB4R1dNOG55YUJMZGduT3cycmcwOEQ5OTZFZEszcDA5SVhvUThKMTdSUzAiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjE3LjI2NDM5MiJ9fQ==','2020-01-23 07:12:17.267914'),('zf4v2ad7cf2doll57tlzs7giujrm23xf','YTNhNjNhNWM1N2Q1MTc2OTBmYmE1NDdlZmViYWQzMTRkOGQ2OTI1ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI2aThsOEF3c0tnR05vTEdTZ05oNDJjVU44T1Q1SzkzUllsOGJwWTEySktqNENFX2ExRnJCbFM1UVc2dU1vLVlJak1nT0lHS1htYXVkcjhDcW1sNGFmUlJMRVlwLTV5dFBtc0syczA0S3BQYzNwT3ZlaWJBa1Ixd05QSUFTQWMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjA2Ljg0MTgxMCJ9fQ==','2020-02-06 11:50:07.843651'),('zfou7en6e0zz3zh8sznrt6coivlamsbo','OTg2MGNmMThlNDdiYTUxYjAwMGJlNTM4MTgyMTI5YTIwNTM0MzViOTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEJfekl5SGlVNjJqQUR2MHZPOVVJRzN1LVpQWEUtLTNTRktQUDBkaG5SVXI5NzczSjRId3dfT3lXNWlCNTB2dDZtMjl2cDFRNV9EMmVOdXpFVDNsOXp0QXdmRW5wMmw4NkpnZkZWclhNQ0d0d1JVY2dzM2x2S3FzRmM2QnFxZkkiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjUwOjM0LjY5NzU5OCJ9fQ==','2020-02-17 11:50:35.701115'),('zi334n7hb0dxps5vpk5facylvirnhi9i','NzY1OTg5NjVkMGY2OTI4NGYxYjZiNGJlZTc2NDQ0MmQzNmNiZTU0ZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DN0I1d2lhbFc5ZmRVVUIwYkx1ZGhLelMtTnpqRW5wQzktTk93V2hsSUFxRHhnQzQ4MnZOSTdYd05HekctcFo4LVV6MUNtUVVVQUZTdU9aV1R0cUdtQ1UyMDg5UUIxcTl0Qm1MdTNySDdMQldkQ3lQUUZvOGxZMGJyS2lZTlZ4aWMiLCJleHBpcnkiOiIyMDIwLTAxLTI3IDA4OjUwOjA0Ljc1NTEwMSJ9fQ==','2020-02-10 07:50:05.758553'),('zj6egj8alz3f3w7iwl3rshw49vy8g2ij','ODIwMDY2NjEyZGU0YzM0ZTRlZjQwZGUxMDhiYmVkN2U0N2VhNGZkYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI0Ny1tYkp6R0h0djZTNmF2OVRreVVNT3hHYVE2bUlaTUQ1WGR1TS1vbzJPWV9lWkJVdlEzWmY4dk9zS2RqT196UGZXdWNBZnd3OENLUWFzTUhvSnVJTjNHalFsVF9US09nbGVSS1dyTzFzbHdCOUs4dWNHa2UtR3MtMk81cnNPIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMyAwODo1Mjo0Mi4wNTUyMTQifX0=','2020-02-27 07:52:43.056328'),('zkb9qtsozpntnag5cmssvw0grakm89ct','ZDg3M2I3ZTg2ZGVlZDRmMjNjN2QwYzE0ZjJjYWNjNWM1NmI0N2QyZTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIxZU9iMEs4b0NTZWY1OXE5QTY4NnROTlNVbHNIaXFCcmVacXJUMHY2T01tRDBya3NxdmNaWmdVLVVFUDNYODVfZjhpcVVNd0s4NXlHZkI3aXdRVWo4YkhOdDlCdnZDeTRFUmMwZnVLYXdINUdiWVN4djB3b3dBN0syellYcDQiLCJleHBpcnkiOiIyMDIwLTAxLTE5IDA3OjE0OjA5LjI4NDAwMyJ9fQ==','2020-02-02 06:14:10.287463'),('zlsies3qma0t1lbds2zkgob3eguxn18y','MDk3MDI1Mjg5NGRhMTE0NTM0MzVkOWM3NGE2MmJkOThkNDcyMjFlMDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUJ4ckFRQ1NHX2hJcGxpdER6c2pvc2xsWnc4SzhWdmdUdnhvdk9EV2RYTXRvNUVvMUgxT0hKdDYwcU5CUFV6TGhZRllyUkwzNW15cV9NeURWcTRvZWpndzRWaTZrb0pYY1VKNDk3TTJFTTlLVXhERjdzVnRKdU1GTkpsYUtwX1lhIiwiZXhwaXJ5IjoiMjAyMC0wMi0xMSAwODoxMjozOS4xMTUwODIifX0=','2020-02-25 07:12:40.118432'),('zmxwimqwxxdphc14lfulerrn84yu7njk','MzFhMmNhNGI5ZmI0NDgxOWIwNDA2MmRlNTk4NmJiYjQ1M2FlYjM5Mjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkIyclhGSVZuUFN3UjIxaHFWWEZhMXFBajVyVGxvTmVyTjN1aUtBb3gza3VEVTR2M2lrNTBkMW1UMThLLXlwSU1SNFFYS2w1dWZPbTVDMGNTZTdQT1hrcW1RR1VBdGNGWnNCcjczRjl1MW1qcWdid19kek5oempwakNBbERkVU0iLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjIzOjMzLjEyODgwMCJ9fQ==','2020-02-06 11:23:34.132257'),('zmzmvgik9tskgddkt8gngrck7rn85y4t','NDE3MmVlNjIyOTI4OWNjNThiNzczZThkYzA4NTc2MTRjNzg3N2Y5Zjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI4QzlSdVRUa2dZLUlrOV9xcVhfV2JGSkhiVmVXWVYyWFRFVWpvdVQ3UUlRUlZjRTFjUzFmQjhLay0yZ041UHZxbENlRnlvR2dXMXR2bExvTDdpLTZjdWtDRU1iaGdmRHR5Vlo0LVMxcXNPQ1J1dThRV3EzZ0lIamJZcTA4eFEiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA4OjA2LjcwNzQ1MCJ9fQ==','2020-01-23 07:08:06.710878'),('zp1sicrqf8qjr2zd7xdnb4p7fjlxkuz0','YmNkODg5ZTVmYzM0YTFmNmEyYTJhYWU3OWQ2MDA1YzY0MTk2YzYyZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI1eGZiSnMwWGY0MS1kZDhGR09mRXJvNXNyV1dYbVZuczlaRGF6RzBmS1lSc3dFVDRCNlR5Q3hIeGN0b1JJeVVZOVVuWDVObjlVck5OQjJWS3ExbUVDR1Q3aVJtc2JSWm1mc3lmRTdKOUVBX0tuU3NJYURBTUtCRkZ3SDhoSU0iLCJleHBpcnkiOiIyMDIwLTAyLTA0IDA2OjQwOjE0LjQ5Mzc5OCJ9fQ==','2020-02-18 05:40:15.497413'),('zpr9x6w9596rhacscbekqmrywnh72630','ZDhkMzIxOTAwNzJlNzAxZjVjNmM1ZjAxMWEzZDVjN2MxYmVkZDJkYTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNkI1YkdfRDVLc0VvVWcwdF9pU05hZjdfNkdtWlpVM0VmWHpTbEUyQkViTGlWVTVlN2s0LUE2NFNUV080ZDFocWNOanZqZ1lwOW9OaHkwU1ZINmJEcWU4NDQtcjl4WC01Vk1pd0lCeE5pNzJhZ3hrOWEzbTZLTUJoVlo3TjljYXMiLCJleHBpcnkiOiIyMDIwLTAxLTIzIDEyOjUwOjIxLjYwMTM0NSJ9fQ==','2020-02-06 11:50:22.604162'),('zqlpjiub2fws1e1m46ej9rdajskwbyxa','MWQwODYxMjE4YTczM2I3ODgyYjFjMWIzNTljZGU2MzhmZGQ1NDgwZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI3emxHdE1SNGdFZ3A5OGRMRDM3cEkxb1VxaFNjRkFtQUJEZUljc1loeGNsQ0xuNi1vRWlibWhsQ0pFRWVHM3BEbkpOaDFoRGM3UFh3UlJrVXFVR2Rjck1BZFREMzcwS3ZXN01GVERLM2tMWlAxRW5FSEJJdmMza2N0OHloM2ciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjMwLjM0OTAwNyJ9fQ==','2020-01-23 06:50:30.352511'),('zsaqcwugcb3vwy0l3kapwguwhuybzod9','MzY3ZDU3YjBmODUzYzQ4MDk5NDQ5YzhlODZhZjc4MTU1Y2Q0OTViODp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1cU1JRzhqUk95dTJDbHVfZDBpNkxwcHJuMXZTWGltYnl0Y1JENG9TeGVQd0ZiVjJfWXZTNnJaLU9oSlRYaU1ZVzVlamthaDJNc2wxNjdoc2RGVXFLemtvMnpKeGlHdzVVRGk1eGpOWGl6WFNEdTBqdHh6d242OTFKM3BIeG8iLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjI3Ljg2NzQ2NyJ9fQ==','2020-01-23 06:50:27.870913'),('zsliwqidw2ed0p3115xtxbh5tq4apf37','Zjc4ZDVlNDY5MzVlNDc2ZDhiMDFiZGYxNmExYzY4YzE2ZDkyZWExYjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVWVXFNc1pnY091ODZtVXF4N3lac00wcmZpNWl0d1RtUWc4eTZGc3J4aG1ySWU2bDR1UXFkbVJDaFFyRXRJZ1hmcDdGRHRLLUp5NjJXZWp6V3pYWUhhaWxMa2VZTUdObUswN2N0Y3BaTEttSUtRWE42ZDAySzRPMk5LS20xLXJQRXp1aFNiREQ3bk1adG9icFhpeVFtQndPdVBwdzdWbzNnIiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoxODozMS45Mjk5MjgifX0=','2020-02-23 07:18:32.931176'),('zugh6rbz5lt9flxdx4yhvp6pot61eryl','OTFhNTM1OWE1NjVjOTMxYWFmY2FkZmQxOGU3OGRiNWZlODlhNTgzMjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEI1Q1BGbVpBdU1MdUhzbzZiSHlIT1hlRk0zZzVnSm1IMUt5WldORzJJd3oyZHN3RFBkeWE3V0V3RkQ4NFRzVjVVaTRtVDBVQ3ZuV3VQTElQUmFqMHZNLXZSdDlma19NYnp1Z002bzBWcEJEWmV1ZHNlVHJCYjBya3hBc09kbjQiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjA3OjQyLjk0ODI1NyJ9fQ==','2020-01-23 07:07:42.951703'),('zv52fq5z6mzrnpov5qh206ujapoeo9xy','YmIxZTc1ZmVjN2ZmZTRjMzc1NDQ5ZGVmMGFiNzBhZmM2ZDM2M2QzZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ4TllodGQ4QWhJa3lSNkZ3RFZXaEVSWDFmcW5rcnJMeUQzeFBrT0ZIUjhodUk0c0tRMDh4bFJzdU1DcldvcmtlY3l5OFJlNm5PX2UyMDIzdnNnNVctQXgwcjRMYkVvUVlFa1ZzUEpnRU0zVzdET09va21YSE96ZWh6SnZkV1EiLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA3OjUwOjMyLjg2MzE3OCJ9fQ==','2020-01-23 06:50:32.864337'),('zv5kbh0ll6x5cyvbnuiy6pvbgksncabq','NjNhNmZiOWNlZjM2Y2MxN2JmMzU4Y2MxMjE0YWJkMDBhY2IwM2M1ZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUIwZWJHV0p1bW5DQnRkUnFYeE8yUGYxTFdfaTZXTlBtQVZDdWhCam1uQ2U4OFc2WGxDNWVrUTZwWDNpTmpHLTc3VUdRSG11Yk1VSkdsVWJoWUU1X21waG5ncWtHMGNCWXJXZXBpTUxxUDNtTklPbi00V1dYZkpzd3hZc2Qwa0kiLCJleHBpcnkiOiIyMDIwLTAxLTEzIDA2OjQ3OjA3Ljc0ODQxMyJ9fQ==','2020-01-27 05:47:07.751856'),('zvgeu5vo2n892576229f1v6t8jwguhk3','M2IxYjg3NjY2YWM1MTk4YTE4NzZmZTRhMzhiMWM1ZTMwODc2NDgzZDp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1HOUI4WlVGV3J4RmNLVS1PUnM5a3REYUVBYWdXdy1YTEdKTC1VeW5sVWVtYklWTmZucm45d3NuUjZDWGdWMklTQU5HUC1CMkhVR1kxYmdidHRVZm5LY2tYOGhELW9ENnRQeWNFYmxkM255c0c5aUpxUVVJeXNCSDNGQ2wtN1VvcTA4IiwiZXhwaXJ5IjoiMjAyMC0wMi0wOSAwODoyMDo1MC40MzM2OTgifX0=','2020-02-23 07:20:51.437741'),('zvzd949bjob0vybukxhp38vm9ckld3qe','MWYyNmZiM2NkZDg4YWNhZDU5ZTc5OTI5ZTMwMDk3NmRlNGVmNzllNjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVXZ3JDVk9peEN4V0lkWGlZd2hQWndsdWJYNzltcjZvRWJfcVBWNG1IUkVQS3RXY3V0Nkp0WE9PcTZBWWEwdEotaXFkeGhiWjdHdVh6dERlVzlpYTFRUjk5S05XbzBhVkc1bld1VVY0OG1NbGg1V3NpNy0wVlJnaW5kQllZZE0xa2RRQ0x6dlJ3VU8tMXZHdndGQllsZ0JVeVZNOWlkVC1RIiwiZXhwaXJ5IjoiMjAyMC0wMy0xNSAxMzoxMjowOS44OTM1ODUifX0=','2020-03-29 06:12:10.897084'),('zwer11yv27esmmfydu0h7ximhtji8q3i','N2IwODFjMGY0Y2IzMzMyMWY3NzIxM2IxNThiZWNiOWM2NTg1ZjZkYzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuYTBBZHcxeGVYM1hTZUNCQy1qcVd4WlNOUzBSMFVVdkF4MUJza0FRTlRKTktEdk1IUWxBNXgwZFk3UDJHbmticU1jNW1CVU9Hc21LZi1sV0xEY1dFR1UwQWM5QUJlandxVVp1SzRMb3RCcjh6Q3dOM3MwNzdSMXlBQU03TWhxT1FLbWExejd2N0RqQmhQNHdmZE9odHFHc0dpZ3NnbWNQeDNsM0cyV3VRIiwiZXhwaXJ5IjoiMjAyMC0wMy0wMiAwODo0NjoyMi45NDEzODIifX0=','2020-03-16 07:46:23.944848'),('zx4n1grln1ftyfcqw83tdljc5cdxuhfz','MjcyOTAyNzc1NDA2NDY0Y2Q1Y2IwN2VjZDg5ZDg3ODc3YjkyYzc5Nzp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNUJ3b0ozTjdjbEwyS3RqT2RhOUJBVEx5OEYtTzRuWEZjRG9vWEs1ZVlIaWlhYlRKOEkzc3cxUmF1TFhmV2l4S2ZHMjY0RWdiTENHdFVfMVpwNE54dEVPNFlDeTZmQkRvVEZGcVktTXNLZ2F3TktFbFFEVlo2RmlwcVAyY21MVk0iLCJleHBpcnkiOiIyMDIwLTAxLTEyIDA2OjQ3OjE3LjQyMjE0OSJ9fQ==','2020-01-26 05:47:17.423376'),('zyl6jy9sam5cwlz4e8bhl34iay2s2qow','MjhkMDU5ZTgyZWU4MjdlMGQzMmFhN2NiMDFjYTAzMjA2NDE1NDIzNTp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DNEJ5VC1iN2ZxWllLOFBBTDdhbjQ1bmtVelJnZnFUTUFYdzJrdFZTaWRqazZ1MHBHY3FMOHd5UmNxT1hHMVdWanFaaWIzS09tVzFpT2hEeDZ0ZGZYRGY2RHcyenkxNFpoN1ROVFViLTdxNFNyd1Y4N0hqRlVXQU43RTZqdFlPSnciLCJleHBpcnkiOiIyMDIwLTAxLTA5IDA4OjEyOjA4LjI4MzA3NyJ9fQ==','2020-01-23 07:12:08.286606'),('zzfx2w3w0svgidzw961scsx7weuj2ogo','ZDgzMTRhNTMyNzlmOTkzODgwZTQ4NTFjZTU4YTM0ZjAwNDM0NWRmZjp7ImNyZWRlbnRpYWxzIjp7ImFjY2Vzc190b2tlbiI6InlhMjkuSW1DOEI3SC1CSlBON2otZE9YcHJDZEhmdW1WRTF1XzJlWTlGbnZDWEppNm1EcGdXSmp4bk5kV25iZHJwc2djMzNyX1VUSU51LVQ4RjBmajR1Tmhrc1kwWm0zYllGMlU0VjFhQlFBMmhGUDhvc2RJRllRVzdqZGtJMnFZUzY3d2txakEiLCJleHBpcnkiOiIyMDIwLTAyLTAzIDEyOjIwOjUzLjcwNTE3NCJ9fQ==','2020-02-17 11:20:54.708452'); /*!40000 ALTER TABLE `django_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `facebook_app_facebookpage` -- DROP TABLE IF EXISTS `facebook_app_facebookpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `facebook_app_facebookpage` ( `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `location_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `location_id` (`location_id`), CONSTRAINT `facebook_app_faceboo_location_id_3648b12f_fk_gauth_loc` FOREIGN KEY (`location_id`) REFERENCES `gauth_location` (`location_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `facebook_app_facebookpage` -- LOCK TABLES `facebook_app_facebookpage` WRITE; /*!40000 ALTER TABLE `facebook_app_facebookpage` DISABLE KEYS */; INSERT INTO `facebook_app_facebookpage` VALUES ('104213804456471','SignatureCare Emergency Center - Lewisville','EAAmiE8MkZARMBAFcBggqP43M4fZCEXjzCawfJEPD1UP7YhuhZCqyPLPCqgYKuEojIvBa0saUukFyTEqPs80YSZAovjOe89u3eoQxK3BklDp3KZCS3aKaYfRoDNJ1NZB7GMZBG4KfTr6FKvf0uNBSh8NKP6emybDadnbJylZAhQTRwbHZC8VfiltL9rHaZABMS7ojoZD','14748677429039074158'),('105589317817643','SignatureCare Emergency Center - Pflugerville','EAAmiE8MkZARMBAKU6L40GwZBT7OFmuphipnR3s98ZBFzgeDEOZAMcltMcFQ4av2Bs7rrTZBj4EnR4sfZAJRyGQKnoYwkqovdFvaVZBMOm0l3xuYvhcHpapXU2b2fQx61H9YxBlWQnYc5NXkBx4NVcC0pUPC10FRKFy1EzMb7uA8S5dZBuZCrOLugzAhPPgZCjR6ncZD','2077061009497551125'),('1608991329419166','SignatureCare Emergency Center - Montrose','EAAmiE8MkZARMBAN3E8AGCzaygqnQMtLDjxNJK9GGz38m1Jl4r091KHDoRftGLBRZAJbjbLOobafbh802d9SsKVNDcp9gvoNkrDsCaFBtFMVcxBi7WG9zEuwXcx1dU9zgM6FPAvy4WWWkco8ZBZCnKHXuQ9U0bzJnTQ7y2uve1ZAjkbZAdvx3PqprKD97h39MwZD','3511292162159714121'),('1609539722669429','SignatureCare Emergency Center - The Heights','EAAmiE8MkZARMBAJEEZAeZCcbrcltlzwcFFKQwaaTbZC6wcUAKH5aZBfGiPYttzs81JlyVfTCZCa9ZBqdMi5Dmqz6qfr79OLxzU5h3F5pNnr20C1ZAZAgMvGGi79eOzngmTSPdXpOBrnbIZAvZBTooLaC3kFaI4azYaDA2MHosxrPT4CkOZC5XdRsQpKaoCcbaujC5ZBYZD','14567670160750071148'),('1648645701907657','SignatureCare Emergency Center - Bellaire','EAAmiE8MkZARMBAHdd1wJZCE0pO7w4ivgyp6GFKJHG3m0DooRoi5FAPwOb0mDr75FZBpQPZBJsZAkB5PXThAQ4XY4gQ06lYfIbm2URJuyYZBEEQqYytBgNQ71wQ58R0BP4ZAoiUOkvd4MJNZClAqAXiZC5YiDyauM8OPTF1aUIP03uFJ1mNisZCm4kdZCk6JZAZC1J0FEZD','8679688254631342173'),('167959367441528','SignatureCare Emergency Center - Cypress/1960','EAAmiE8MkZARMBAOwLBRbpqd4pzxj8aTD3b9KgagInGJgwUqPLGNXBB4d5CMXiK9eN199LihPttBaGuM5WKcno4QyOcG7J65E4yLEZAFo2Sr6Mr7Jf6kfebBG5QY7xqV7SCakcuA6FhWZC3gFvzZBiE2inQLx1wbSwaMd9ZAKrIJmF49GiCvhbCnHc78ZCE1ZA0ZD','16389487648212004696'),('1698192877146046','SignatureCare Emergency Center- South Austin','EAAmiE8MkZARMBAGuJrDVlwAwFsHZBZC6ro9ZBhlIaxhTduXrdbJKVSALBXHkWWL4zuqNlehZBQtmvoIlzrslrFqGAsk5dvimxiIIXkSIhtaZA6YqenoB5UNZA5B0UZBgKUG6VEODmwV6QMM4dwNHLHYUsTkO10xZA6v5V9H4LUlUh7nemcBAyngnNj9g8gDZBS8ZBcZD','16891069708558046635'),('1765121397101399','SignatureCare Emergency Center- Memorial City','EAAmiE8MkZARMBAFaEZAMbl9wCj2rM0mdSzh4NcZA3ao06Ma3LaLXzLW0UVyrZCV5XBp1NflaeRY5XyKoi1k5CzLdMMxQCFxxzQ1DLpHpgbTPAh0fnhonu1hd8fnRZA37yqm09JvL9AgwNuUOTXc6wUBS4kAwu5ktBZAXSulGZC25XursJ1xRwPfG3Aqx4cu5Q8ZD','14904078213800803294'),('1787364321589026','SignatureCare Emergency Center - Stafford','EAAmiE8MkZARMBAKtsNAta8zcC2vmxBCVPIg7PiX2eZCqcgHSScgFfsQsZAg9NFOLVBsX4TvQZATJUCUX43Ry55cPgxvzUffEWfv8WYTjHPZCz9tqrk8cQZCW8TuZAYsZAgTTP12hvqDsjp5FAr0r6qlaBozDhaLSOd1YEuCo2qEL6HLfHZByE8NIG1DbGQXHM2CMZD','8918455867446117794'),('235046800697531','SignatureCare Emergency Center - Texarkana','EAAmiE8MkZARMBACkkbSfsepcs7ZCrmG65p4bytKk6ey8urlBc66UEXZC1bo7D7mUyl3IDhHIVUlmK2cC1XWRY87ueT2ZARwNks4thSJan4bz2VDzxH9PybguWfk64NIFk27dHu8uVl7vRoVYaGDrk23ZBo7St5OhM0W2QajKaC4ZBmvaqaRy3M833MHJjNwS8ZD','3272657195432704501'),('237100240304186','SignatureCare Emergency Center - Odessa','EAAmiE8MkZARMBAPoQJdwtTINY2Xt4wuCFBDJc2WulIHX1BtB2vEMvvGURJ5iAUPEqeg6m2mZCSqhEu9IoWTZAEHaMmZCQnqo8sIIt0SRJDaRs4fvNresSRphmZCAkE0pEetUkAIiCjPSFHHeYQWNTI1Fc7b2i8UcRuWrUoFQVzx4EpdTNvP6Qw6ZAVfaM4Wf8ZD','6521947413723274945'),('251751275488925','SignatureCare Emergency Center - Killeen','EAAmiE8MkZARMBAKg23OOWj8B3oB6DnlxPy3yZA16tm3TnWLVgCVkkntNZBAiTZA1UXglDgJuPwIf5kkvsEk2aRJXRCpZAZCjhjjvEsXBDYjw8eswZBoqdOtj31hQD2VZAOY13pnONjQFsRXQDAftbk3YJ8u4PxeAZAEoiLXJ2UjGJZBNEftnhA2xCRSFzmyYHZBXH8ZD','2694018788013845459'),('299216637560955','SignatureCare Emergency Center - Paris','EAAmiE8MkZARMBAAMns0NsYFote005nW6IVpsX8Rs8GZBo2zDZAhjV8u2sEZBZCKs0x3mmTRmAoh6g1G9jSGdpi9iplq852pfvIWh1ZBzZCoBR0SZClTfen1eZCPdw5DKW4R0ZCo0yqG5jc4lcN1iPxO3RdhXQifq9aqY1HMVn57kNbKZBDZBpcWerE6zhD30KxGlTIMZD','8626688543755174284'),('326347177710316','SignatureCare Emergency Center- College Station/Bryan','EAAmiE8MkZARMBAJfDWGUTh4sISkYFmObxu2MnGGlxBaDlsZBrI6omid4GMgs4rOsZBAiOyUXGgZCaPaU3RxeCLJzDv5ewi4UD5DD1PfBnUN7uZCuun9mDAuhocYGF2q8KC02bnR2GrXtZAsJSEXqWEV9rOhSZAeqQrIUkDqZArjMM3t9kT9GJI8TsnHDAWx7JJMZD','16590124370714063921'),('461782867645453','SignatureCare Emergency Center - Copperfield','EAAmiE8MkZARMBAIqTcBZCMCSseMRy0egKBIE4kN6Ve5743DDA2dFqvHgi9kutjg3zQp1ZAqzZBdneHNCD5kZA7BdykIeqPf6bPymJBNZBizqL7FS10VVKFc1V32D4zqf73oqwVEZCfNFdWE4xpYJAY50l5fbwOdt346QZCix2ZCSXzpmm2OkQPEZAe9VAQ8ex6ZAy4ZD','17898197009688164559'),('544778295636544','SignatureCare Emergency Center','EAAmiE8MkZARMBABSUAmrfAO14Xw1z69ZA8WrgLYfeGaKZAk9sjeo47WNZADh4pJIpuAiQXpzYl2QX3blAGqtd1FWmd7pWKMQA697OYZAkZB0MQQFECSdKBNsEcO3ZC2LJB7PuWBzClaeV9jcFrbMZAPks7ZCxKFMpfYuzdCJ2XS84ewq1y1Q7ZBzKYMVqZBV0B0NPwZD','17394740196501090048'),('596022027480375','SignatureCare Emergency Center - Midland','EAAmiE8MkZARMBAA2GV4IlMOGJEv2br8c1nkw5IZAkMmnrsSZCteKcgP4SniPAMsVdIM3R0IxaZCuLBr10xTOYaKUMAt2B5K2PFf8eugsygT07b722oTCZCoylcRwL9zfhut5MROy8ZBFWDuFwMolsR9GXXvaW4Dp7Lc7xGcCwFs9bZATZAcyULeZAZBtwdxWsAXl4ZD','13486358490203335051'),('829264323932850','SignatureCare Emergency Center - Westchase','EAAmiE8MkZARMBAKaSO9L85ZAxKNjV4tyh3JZBOMHYxgvueG7f2ZCQoZB5XWiIc7y5ZBb6T7094eRY6lHM5sNd2A2KL8bvhZBngeyK3OeXsYIb9QdU4BTVZA8eaRZBEjyZCQGU4iTVCZA1X51bRmVDOhWeltLtJdZCLmEgeQl4yFhg14X0Lxca1vSWS5Q9VcLwU9bIZAkZD','12541597562633926366'); /*!40000 ALTER TABLE `facebook_app_facebookpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `facebook_app_facebookreview` -- DROP TABLE IF EXISTS `facebook_app_facebookreview`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `facebook_app_facebookreview` ( `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `recommendation_type` tinyint(1) NOT NULL, `review_text` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_time` datetime(6) NOT NULL, `page_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `facebook_app_faceboo_page_id_3548574c_fk_facebook_` (`page_id`), CONSTRAINT `facebook_app_faceboo_page_id_3548574c_fk_facebook_` FOREIGN KEY (`page_id`) REFERENCES `facebook_app_facebookpage` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `facebook_app_facebookreview` -- LOCK TABLES `facebook_app_facebookreview` WRITE; /*!40000 ALTER TABLE `facebook_app_facebookreview` DISABLE KEYS */; INSERT INTO `facebook_app_facebookreview` VALUES ('1001399793371973',1,'Attentive service, knowledgable staff, great facility!','2018-09-01 18:37:38.000000','1787364321589026'),('1003350140050362',1,'Doctor Nguyen, C DO was an amazing doctor who was super nice and was able to find answers i was looking for. \nRadio Technologist: Fatima, B. Was also an amazing person who was super nice and friendly. \nI just want to say Thank you SignatureCare Emergency for taking care of my wife.','2019-12-08 04:33:33.000000','461782867645453'),('1004014649954863',1,'Great experience!! Excellent care for my daughter. Thank you so much to Regina and Joseph for all that you do. 5 ⭐️ service','2019-12-23 17:22:07.000000','1609539722669429'),('1004357643064942',1,'Wait time was low and the staff was friendly and super attentive!','2017-07-02 18:41:50.000000','544778295636544'),('1006947493107130',1,'Great place, very friendly and caring people. They took care of me very well, and I highly recommend them!😀','2020-06-19 23:19:27.000000','251751275488925'),('1009435536094999',1,'I was in and out within an hour, the doctor saw me right away, less than five minutes. They were very caring and nonjudgmental. Patricia, who worked the front desk did a great job explaining everything. Alvean the nurse was fantastic, and the X-ray tech, Traevis was also equally fantastic. Highly recommend this place!','2020-02-27 18:43:52.000000','167959367441528'),('10100117734940631',1,'I brought my almost 2 yr old son in. Everyone was great from the front desk to the nurse, X-ray woman and doctor. We were in and out quick and everyone was knowledgeable and friendly, thank you!','2018-11-18 02:44:13.000000','235046800697531'),('10100149097414767',1,'My 4 yo stepped on a huge wooden peg (like the kind you put on a chair to help it slide) and this was close so we came here. The staff was excellent and quick. They were thorough without going overboard and honestly very affordable! We will definitely be coming back here as needed! Totally recommend them!!','2019-04-16 20:04:30.000000','1698192877146046'),('10100196486202619',1,'very friendly staff. I was offered a warm blanket. i highly recommend.','2019-04-13 23:39:49.000000','1608991329419166'),('10100229739961866',1,'Thank you for taking care of my family! We appreciate the hospitality. \n\nThis location has a super compassionate and knowledgeable staff.\n\nThank you again Adam, Linda, Aileen, and Dr.Jones.','2020-02-03 01:38:33.000000','1698192877146046'),('10100234866437950',1,'We have had great experiences at Signature Care. We have been here for flu, strep, and a few other various things that always manage to pop up after hours. The nurses and doctors are friendly, caring, and knowledgeable and we usually get taken care of fairly quickly. You can tell they care!','2020-02-17 04:06:13.000000','596022027480375'),('10100259194973827',1,'It was quick to see someone, nice employees and super awesome place','2019-05-07 04:48:42.000000','1698192877146046'),('10100303386817929',1,'I love going here!!! I\'m always treated like the rockstar I am!','2020-06-05 14:55:02.000000','105589317817643'),('10100305981992179',0,'Horrible experience. Worst ER or Urgent Care experience I have ever had. Go here only if you want to die alone in a waiting room. You will not be seen by a doctor. \n\nWe have been here almost 5 hours and have only “seen” the front desk lady, who is incredibly rude and condescending. Go somewhere else. We came here for the “rapid” covid test....5 hours later, this has been anything but “rapid”. Horrific experience sitting outside in the Houston heat of summer. \n\nDo not come here for medical needs. Do not come here for covid tests. This place is awful. The people are awful.','2020-06-15 01:51:09.000000','1787364321589026'),('10100357455039853',1,'Friendly staff, warm blankets and quality care. Two visits to SignatureCare Montrose, for different reasons, and equally excellent care each time.','2019-07-18 15:07:10.000000','1608991329419166'),('10100361217804832',1,'Great service! Hayleigh was a great receptionist and the staff was very attentive and made sure I was taken care of in a timely manner','2018-08-01 04:57:49.000000','1609539722669429'),('10100416484095016',1,'I received excellent care here for the second time! Christina was a super nurse. The staff works together seamlessly and there is virtually no wait time. I will be a repeat patient here whenever the need arises (though hopefully not soon!).','2019-06-14 23:58:50.000000','1698192877146046'),('10100435689602362',1,'The facility is clean and bright. Staff is welcoming and friendly.','2020-01-24 16:40:49.000000','1648645701907657'),('10100445964447298',1,'I highly recommend this emergency facility. The staff was very professional. Dr. O\'Malley was also very thorough! ****Update ***** I’m back for a different issue 7 months later. The quality of this place is still the same. Dr. Mauldin was awesome very thorough. The nurse, Alvean, was very personable and kind! Patricia up front was very kind and professional!','2019-06-18 20:25:23.000000','167959367441528'),('10100515337687768',1,'Dr. Castaneda, the bregistered nurse Katrina the radiology tech Cheney and the registar therisa was so friendly helpful got me in and out and made me very comfortable definelty reccomend you visit here if you are I\'ll and need any emergency medical attention.','2020-01-03 08:04:57.000000','1648645701907657'),('10100616241524601',1,'I went on a Tuesday night and the sign in process was easy (not a ton of paperwork like some places), the waiting room was comfortable and clean and the staff was friendly and efficient. I waited for maybe 10 minutes before I was taken back and the nurses and doctor were great. Overall an excellent experience.','2017-11-03 18:34:33.000000','1609539722669429'),('10100630135570639',1,'I love this place! They are so helpful in an emergency situation that I wouldn\'t go anywhere else. The doctor\'s are extremely friendly and the hospital staff rocks!','2018-12-22 16:26:28.000000','1698192877146046'),('10100645342430640',1,'Came here for the first time today. Overall impressed with the facility. Dr. Patel was very informative and answered all our questions. The staff was kind and welcoming. Initial wait time for seeing the doctor was quick. Nurse Kristina and Sarah were also very accomodating and hospitable. \nThe facility was also stocked with snacks and water for us which was very convenient.','2020-02-05 01:13:55.000000','544778295636544'),('10100648466905687',1,'They are very helpful and really care. This is where my family come.','2020-02-28 22:11:04.000000','235046800697531'),('10100648514679947',1,'Beautiful facility. Very courteous and attentive staff. I was cared for very quickly and thoroughly, compared to other ERs I’ve visited. Highly recommend','2020-02-29 00:19:11.000000','235046800697531'),('10100749326831599',1,NULL,'2018-05-15 01:20:11.000000','544778295636544'),('10100753829117754',1,'Dr. Boester and Leslie were amazing when I went in for sever dehydration and nausea. Within 10 minutes I was feeling much better. They treated me with kindness and great bedside manner. I even got warm blankets while I had my IV! This staff is top-notch!','2019-06-04 16:58:54.000000','544778295636544'),('10100877565434210',1,'everyone was so awesome. Denise greeted us with a smile. Amanda and Theresa was amazing and so sweet to my son. The experience was great and Dr. Weston was knowledgeable and kind.','2020-03-29 16:15:27.000000','104213804456471'),('10100968094249345',1,'A huge thank you to Dr. Pham, Robert H., Joshua, Melissa and Sean for taking GREAT care of me today after my accident. Everyone was patient, kind and very personable. I truly appreciate you all for turning a bad day into a great experience! Thank you very much!','2019-07-27 00:57:49.000000','167959367441528'),('10101122290678465',1,'Great experience from Alvean, Marcus and Patricia. They really made our visit easy. No stress, no hassle and we were seen immediately! I can appreciate great service.','2020-03-03 19:45:53.000000','167959367441528'),('10101150763148780',1,'Great staff! Very friendly! Welcoming and fast service!','2019-07-12 01:10:11.000000','1787364321589026'),('10101165394308445',1,'David, Tyler, Nancy, James and Neil were awesome! Thank you all so much for helping me today! I highly recommend this location! Everyone was so friendly and got me out quickly.','2020-04-20 19:39:03.000000','461782867645453'),('10101177731179630',1,'I was checked I very quickly, the front office staff was polite, fast and efficient. The nurses regularly checked in on me and made sure I had everything I needed and the doctor was very polite and explained everything clearly. I’m thankful I was so well taken care of!','2019-08-19 13:17:39.000000','829264323932850'),('10101196537776047',1,'Chelsea was super sweet at the front. All staff were great and attentive!','2017-06-30 10:58:41.000000','1609539722669429'),('10101197899397790',1,'Mrs. Pam was awesome!!! I would definitely recommend this place. I felt welcomed and was taken care of in less than 30mins. Two thumbs up 😄','2017-12-18 23:07:24.000000','544778295636544'),('1010120865998425',1,'Thanks for the great coffee Tanishia and the great hospitality','2019-10-23 02:43:19.000000','461782867645453'),('10101258907730815',1,'Very professional and efficient! So glad I came here. Staff is amazing thankful for Lisa, Allison and Daniel/Lean. Highly recommend coming to SignatureCare Emergency Center.','2019-12-11 04:21:13.000000','596022027480375'),('10101297633818780',1,'Very professional, fast and Friendly staff with Dr. Omalley, Alvean, and Marcus.','2020-01-21 21:43:44.000000','167959367441528'),('10101312175586648',1,'Excellent facility! I went in for a foot fracture. The facility was clean and efficient. Every member of the staff was compassionate and incredible. They made me feel comfortable and even made me laugh. Highly recommend this facility.','2017-03-11 01:11:49.000000','544778295636544'),('10101349503237260',1,'Lisa V was an awesome nurse!! Front desk was amazing and so friendly! Lucky to have them in our neighborhood ❤️','2019-06-05 01:38:02.000000','596022027480375'),('10101451715912030',1,NULL,'2017-09-24 17:48:29.000000','1787364321589026'),('10101492310241883',1,'Awesome visit. Friendly staff, short wait even snacks while waiting. Nurse Richie was awesome, doctor Peter as well and yes my fave Xray tech Jackie was amazing! Thanks Josyln, front desk for your patience.','2017-09-19 22:11:58.000000','544778295636544'),('10101503794905956',1,'The best ER in Texarkana!! The staff is absolutely amazing and the service is top notch. I was even impressed that I received a call from them the very next day after my visit to make sure that i was doing ok. ☺','2020-04-09 23:26:06.000000','235046800697531'),('10101549187428317',1,'Churiah, Dawn, Elizabeth T, Leslie, Joey, Dr. Dang and Dr. Yusuf were all wonderful! Very thorough!','2019-12-09 14:07:33.000000','1608991329419166'),('10101557915636689',1,'We had to come on thanksgiving and Elle at the front desk was super friendly and helpful and we really appreciated the great customer service!','2019-11-28 22:46:57.000000','251751275488925'),('10101584838009267',1,'No wait time, staff are super friendly. Drs are very thorough.','2020-01-24 16:20:56.000000','1787364321589026'),('10101612124452017',1,'Great staff, super friendly!','2020-02-25 13:18:24.000000','104213804456471'),('10101774203594302',1,'The staff here was amazing! I went to a different hospital days before and they didn’t even compare to the compassion and professionalism this office gave. Erica at the front desk was prompt with service and I wasn’t sitting around long before being seen. Kanyon was my tech and she was so sweet! Debriel and dr bodgie was super prompt when seeing me. I will recommend this facility to anyone in the area. Thank you!!!!','2020-05-01 16:23:37.000000','104213804456471'),('10101833322800204',1,'Great place! everyone is super nice and they listen to your opinion about what maybe wrong.\nI always come here and I tell others also!','2020-02-10 04:48:00.000000','1608991329419166'),('10101842652019153',1,'Awesome , patient care . I will definitely recommend','2019-07-15 00:03:56.000000','167959367441528'),('10101851083223174',1,'Nice staff. I was taken back quickly and was out within an hour! I would definitely come back! \n\nAngel was nice and Susan was also sweet. Tanishia was also nice sweet and full of energy at 1AM! Lol','2020-03-04 07:08:09.000000','461782867645453'),('10102083514642256',1,'I really appreciate the time, care and urgency they give every patient. I appreciate it. I do want to give a special thank you to Kimberly. She is very courteous and empathetic to people.','2020-08-11 03:17:43.000000','251751275488925'),('10102315681498008',1,'Brenda R. Clearly helped me know how to check in, helping me to feel calm and not rushed! Thank you','2019-05-12 15:00:19.000000','1608991329419166'),('10102570513687494',1,'Always provides excellent care! Thank you Henderson, Angel, Susan, Laura, Tanishia.','2020-02-19 02:22:35.000000','461782867645453'),('10102651742764980',1,'Excellent customer service from Dr. R Smith and I came with my wife and all our answers were answered.','2019-10-24 00:34:59.000000','1787364321589026'),('1010313899338296',1,'The nurses and the doctor took care of me right away and treated me with respect. They got me “IN AND OUT” I appreciate everything they did for me so s/o to RN- Lucas, Kim Domanski- Registration, Kim Davidson- Radiology Tech. and Doctor Ashbrooks... HANDS DOWN ‘ Best Emergency Hospital in Texarkana!!!!','2020-01-21 13:34:23.000000','235046800697531'),('10103188163696619',1,'Kim and Rebecca was excellent! They provided great Exceptional Service. I felt extremely welcomed! I will definitely refer SignatureCare to family and friends❤️','2019-06-23 18:43:35.000000','829264323932850'),('10103427120405141',1,'I had a wonderful experience at Signature Care Emergency Center Montrose. My son was having trouble breathing due to a virus and I got a little nervous so we took him in late night. The staff was friendly and we were seen right away. We saw Dr. Akunyili who was amazing. He was attentive listened to our concerns. He was great with my 3 year old. He even respected my wishes to only give medicine if absolutely necessary. I appreciated his honesty, experience and openness to my views. The facility is clean and a security guard escorts you out, which is nice being at it was 3am. We are cash pay and the price was very reasonable. Hopefully we never have to go again, but if we do need urgent care this is our place!','2018-09-07 15:58:45.000000','544778295636544'),('10103633049841270',1,'Amazing care! Fast, friendly...had 2 sick kiddos with the flu. This beats waiting in a hospital ER any day. Thank you Signature Care!!','2019-02-06 20:59:36.000000','1698192877146046'),('10103646840818946',1,'The team (Dr. Leavitt, Alvean, Traevis, Amy, Keith) we’re all great. Very professional, courteous, caring, and polite. The wait time was nonexistent, we were seen within 8-10min of arriving. The facility was very clean and cozy. I can’t stress enough how great of an experience I’ve had considering my situation.','2019-11-17 18:54:19.000000','167959367441528'),('10104052537614207',1,'awesome. great service fast. super fast','2019-06-13 20:17:02.000000','596022027480375'),('10104216348261468',1,'Selina the nurse was amazing and very sweet. She brought me a warm blanket and provided as much info as possible.','2020-02-26 18:44:42.000000','544778295636544'),('10104330149872017',1,'Brought my mom here in an emergency. This place was fantastic. The staff was friendly and very informative. We were helped right away. DR. O’ Mally, Alvean, kelly and jocelyn were wonderful.','2019-11-27 16:14:08.000000','167959367441528'),('10104709294682980',1,'Beautiful facility and super friendly staff! You can stay in your car and have the rapid Covid test, the doctor comes right out to your car. Such a wonderful service. Thank you, SignatureCare!!','2020-06-10 00:37:31.000000','105589317817643'),('10104769893592051',1,'I went here for a minor procedure and was seen in a prompt manner on Sunday by Dr. Zheng. Today, I had my follow up with Dr. Smith where he answered all of my questions. I highly recommend and will come again when needed! Thank you for all the friendly and smiling faces!','2019-10-24 00:30:53.000000','1787364321589026'),('10104794258918556',1,'Great experience- thank you Dr Vaagnese and Niki!!!','2019-11-10 02:55:06.000000','1609539722669429'),('10104833680098475',1,'Best medical staff I’ve ever encountered.','2019-06-11 06:45:18.000000','461782867645453'),('10105033299674058',1,'I’ve had random kidney stone problems prompting various ER trips and by far my best experience to date has been this signature care. Highly recommend if you need any time of emergency services - Aaron Carissa and Aubrey were awesome along with Dr Smith. Please tell them thank you again','2018-07-31 16:57:50.000000','1765121397101399'),('10105062926781316',1,'I\'ve had two emergencies in the past year and have been well taken care of at this location. The entire staff (from the front desk to the treatment room) was very knowledgeable and friendly. I was given snacks before the medicine so that my stomach wouldn\'t hurt and a warm blanket while being treated. This location is highly recommended.','2017-02-20 15:15:49.000000','544778295636544'),('10105097804471146',1,'Between my husband and myself we have been here 4 times. Each time being better than that last. We are always seen immediately and the care is exceptional and thorough! I could not recommend this place more! On our most recent visit we were seen by Dr. Torre and nurse Kim - they were both great! Thank you!!','2018-08-20 15:37:19.000000','1765121397101399'),('10105239925664015',1,'The staff here was all very kind and competent. They treated my 2 year old very sweetly and kept asking us if we needed anything for ourselves. The wait room had lots of amenities and comfortable seating. Although we didn’t have to wait long to be seen at all. Definitely will come back here if we need to.','2019-11-25 04:41:42.000000','1698192877146046'),('10105453401771275',1,'Kendra, Jacob, and Dr. Vakey were all amazing. I was treated with the utmost respect and kindness, I was taken care of and treated promptly, and I was referred to a physical therapist for continued care. Overall, this was the best clinic visit I’ve ever had, and I’m very grateful!','2020-02-15 23:43:32.000000','326347177710316'),('10105475493993033',1,'This was literally the best ER experience I have ever had. I was greeted with smiling faces and a sense of calm when I was feeling absolutely terrible. From the lovely receptionist (I cannot remember her name--I\'m sorry!), to my nurse Marty, director Adam, ER tech Andrew, Dr. Leung, and Rad tech Christina I was treated with compassion and controlled urgency. I left within an hour of my arrival time, feeling worlds better. Thank you Signature Care!!','2019-11-05 19:39:30.000000','1698192877146046'),('10105689274864705',1,'The staff was very kind and welcoming. Dr Patel really listened to my concerns and even sat down to talk to me!','2020-04-27 01:18:05.000000','461782867645453'),('10105746817972841',1,'Awesome service. Dr. Ybarra was amazing! Fast service. And the staff was nice and friendly.','2019-10-30 02:27:02.000000','461782867645453'),('10106095766761716',1,'Great atmosphere! Thanks Dr. O\'Malley, Tricia B, Jose P, and Patricia.','2019-11-29 20:11:27.000000','167959367441528'),('10106274149236806',1,'Amazing Experience as always. The area is clean and registration is easy and fast by Elida. The nurses and radiation and er tech s Ekaterini, Marcus and Joann were cery friendly with my son on the spectrum and nice. they made him feel comfortable and secure. Despite taking xrays and performing injections to numb his fingers Doctor William was fast and very professional. I have visited this place many times and cannot believe how amazing the experience is everytime. they really care about us the custumers. Never going to any other place than SignatureCare Emergency center at Cypress creek.','2020-02-04 20:38:57.000000','167959367441528'),('10106293219574696',1,'The staff were friendly and professional and provided prompt service','2020-02-12 05:37:47.000000','1609539722669429'),('10106406385623954',1,'This was my first visit to Signature Care and I would absolutely recommend this facility to everyone in the area. Scott and Laura were very kind and accommodating and Dr. Patel is so sweet and made my daughter feel very comfortable. This is exactly where you want to go if in need of emergency care!','2020-01-08 15:21:00.000000','829264323932850'),('10106441380743184',0,'We called ahead, and were told by “Bill” that they accept our insurance, could work with us on our copay, and would let the team know we’d be on our way.\n\nWhen we arrived, they had no idea who “Bill” was, were not expecting us, and would not take our insurance.\n\nClearly whoever we talked to ahead of time was in a call center telling us whatever we needed to hear to get in the door - really sleazy.','2019-02-07 04:17:32.000000','1698192877146046'),('10106895716815188',1,'I came in with low expectations, but this facility was fantastic. They have a CT scan in house which is very impressive. I was seen immediately, and by an MD, which is not always the case. They did a thorough check of my symptoms and even helped make the appropriate referrals to specialists. I highly recommend it!','2017-01-19 20:54:38.000000','544778295636544'),('10106936051778739',1,'Great location for wait time, cleanliness, comfort care, and treatment start to finish! Very satisfied. Montrose team, Ke’Aire, Norma, Eve, Churiah, and Dr. Dang thank you.','2019-11-01 14:41:25.000000','1608991329419166'),('10107528327273830',1,'I was a patient at this ER last week and all i could say is that i received the best care and service. The front receptionist, the technicians, nurse and Dr. Faig were amazing! The service was really prompt and I got reassurance that my illness was not serious after my evaluation. Thank-you!!','2018-06-27 16:33:49.000000','1765121397101399'),('1010787679115184',1,'I want to thank Ashley Burton for the Welcome she made me feel and fast service no waiting!!','2019-02-18 02:05:42.000000','299216637560955'),('10107914431028621',1,'Been here twice in the last month! Once for bronchitis, I know... ain’t nobody got time for that! The other was for exercise related injury. They were super friendly and got me taken care of fairly fast . They also called the next day to see if I had any questions and how I was feeling. No body likes to go to the ER but at least they make it comfortable. I hope this is the future of emergency rooms.','2018-05-02 16:37:01.000000','1698192877146046'),('10108035605868460',1,'They were very quick and very kind. They were so sweet to me and helped me out so much. Definitely went above and beyond. And a shout out to Shelly (I hope I spelled that right) She was my nurse and I am really grateful for her and all of the staff. Thanks again for taking care of me!','2019-01-05 01:14:39.000000','1698192877146046'),('10108564346792410',1,'Quick friendly experience! Maria, Jose,Corey, and Dr. Jones attended to us with the best of care. Super helpful every step of the way. Will definitely return','2019-06-07 08:11:23.000000','596022027480375'),('10108632964921058',1,'The staff was friendly and efficient. Krystal went above and beyond to make sure I was well-taken care of and comfortable during my visit.','2020-01-22 15:50:35.000000','596022027480375'),('10108738175872363',1,'Took my 3 y/o son here after he had a bench fall on his foot to make sure it wasn\'t broken. The staff and service we received were world class. Aileen had us checked in swiftly and explained all of the necessary forms for our insurance, Marty and Linda took amazing and compassionate care of my son, who is usually leery of new people (I\'m still stunned at how great they were and how quickly he seemed to trust them), Dr Tran was confident and knowledgeable in her diagnosis and treatment which put us at ease, and Adam make sure the whole thing ran like clockwork. I think we were in and out in <1 hr with x-rays, forms, treatment, and everything in between. We will certainly be back here should we need expert, quick, efficient, and most importantly compassionate care in the future.','2019-12-10 18:28:41.000000','1698192877146046'),('10109072403577468',1,'Definitely recommend!! Took great care of my daughter when she fell! We were blessed to be taken care of by Maria & Kelsey at the “front desk” tent, Nurse Kelly, Radio Tech Patty, ER Tech Leah and Dr. Huerta!!! Hated to be here today, but I’m so glad we landed in the best hands! God bless you all!','2020-04-26 18:44:36.000000','596022027480375'),('10109321171270084',1,'They were so nice and helpful and very professional great staff!!\nMackenzie (ertech)\nKatrina (nurse)\nDr. Dendy (doctor)\nThersa (reg)\nShane ( raid tech)','2020-03-31 00:28:18.000000','1648645701907657'),('10109332008098000',1,'As we arrived Registration tech Evelyn greeted and helped us immediately. My child Magnus was seen today for sinus infection. Our primary was full and they are a life saver. Service was prompt and precise. My children were made comfortable and helped to feel better. Nurse Tami was very helpful and kind. Made sure all questions were answered. Dr H Garcia was awesome and helpful. Gave appropriate test and questions we had we also made clear and helpful. Great facility and drs.','2019-12-23 16:44:58.000000','461782867645453'),('10109373197379350',1,'Staff is extremely friendly and knowledgeable. I had a very pleasant visit with Sarah G. and Dr. Henderson. Quick service!','2020-01-02 05:05:09.000000','461782867645453'),('10109467227586988',1,'We had a great experience. Manny Guerrero was the most comforting nurse we have every experienced. It was so nice to feel safe once Manny stepped in. Thank you Thank You Thank you!','2020-07-25 04:17:22.000000','237100240304186'),('10111857320272155',1,'Amazing team. Made my son feel so good and comfortable. Thank you Dr. Patel and the team','2020-01-25 18:42:49.000000','829264323932850'),('10111970610547380',1,'This place was awesome. Thanks for taking care of me.','2016-07-14 14:55:33.000000','1608991329419166'),('10112364371846735',1,'Dr. Faig, Fahme, Kristina, Quyen, and Scott are wonderful. Will come back whenever I need them again.','2020-04-14 22:53:09.000000','829264323932850'),('10112395259537445',1,'FAST, clean facility, friendly staff. In and out in less than an hour. Mercy and the entire team were great. I\'m in healthcare so I\'m picky, I\'ll def go back.','2017-01-19 23:31:35.000000','544778295636544'),('10112905106460235',1,'Yesterday I went there as a walk in for a Covid test. I was there for several hours since I didn’t have an appointment, BUT I had a great experience. They have excellent safety protocols in place. The staff was super friendly despite how busy they were. I found myself getting impatient waiting that long, but immediately felt guilty once I got called back. YALL! They were so slammed. There is no way the staff had time to eat, break, much less sit for a minute because it just never slowed down. The nurse was so super sweet and personable. Anyway, it made me appreciate our healthcare workers even more yesterday! They have a tough job, especially not knowing what they’re coming in contact with. Thank you to your amazing staff!','2020-07-06 13:52:25.000000','104213804456471'),('10113609372036220',1,'This was the fastest emergency service I’ve ever experienced!!!! Amy serviced me as soon as my husband and I came in. Rollie gave me immediate care and was patient with me as I struggled to describe what was wrong. Dr. Patel was to the point and very kind and eager to answer question I had. Natalia took my vitals and helped make me comfortable. I’m so grateful.','2019-07-03 09:17:07.000000','1648645701907657'),('10113717593519473',1,'With 3 kids under the age of 5 late night and off hour doctor visits are inevitable. We are so happy to have this place down the street from our house. Their service is wonderful and they strive to be personable and efficient. They have saved us many trips and hours across town to Dell Children’s. I have been to Dell Children’s before, and you don’t want to be there unless you absolutely need to be there.','2019-06-12 00:11:48.000000','1698192877146046'),('10114684861082554',1,'Dr. Elsbecker is THE BEST! Incredibly thorough and best bedside manner. 5 stars all across the board.','2019-03-01 00:39:19.000000','1698192877146046'),('10114816655255974',1,'Very good urgent care facility. Amy in registration was very helpful in getting me the insurance information and discharge items necessary; Both Dr. Boester and RN Kelly were fast, but efficient. Having the flu isn’t fun at all. But should you need to stop in quick when you can’t make it to your primary physician, I strongly recommend this facility.','2019-03-24 23:30:54.000000','1608991329419166'),('10116016126545890',1,'Came around 7am in the morning to get a rapid results Covid test as I traveled recently internationally. Check in process was seamless, the ladies in the front office were very friendly, paperwork took only a few minutes to fill out. I didn’t have an appointment but they were able to fit me in and I was seen within 10-15 minutes of waiting. Very fast testing process. Facility is very clean (& cold, bring a jacket). I came to this location when it was under a different name 7 years ago and I can tell the difference with the patient care and facility. Will visit again if needed.','2020-08-05 12:37:17.000000','1765121397101399'),('10117006271148174',0,'The facility is nice and the staff was nice, but I spent $150 and was not cared for. I went on Sunday night with a terrible earache and Dr. Jose Lim saw me. He recommended that I continue the ear drops I had already been using for 2 days despite looking in my ear and stating that it was so swollen that he could barely see my ear drum. He did not prescribe any oral antibiotics or steroids. I have had earaches my whole life and have never walked away from a doctor without an oral antibiotic for it. This doctor said that oral antibiotics wouldn’t reach the ear 🤔🙄. He did give me Advil and hydrocodone, after the Advil didn’t help, despite me already telling him that I already tried those for pain. I was in excruciating pain for 18 more hours before I was able to see my regular ENT. My ENT was shocked at the lack of compassion or care and could not believe that with such a bad infection that they didn’t start me on an oral antibiotic immediately. To their credit the facility was nice and clean and they offered drinks so there’s that, but I regret not going to another ER. They also bribed us for good reviews with Starbucks cards, so I wish I knew that before I believed the 4.5 star rating.','2020-02-12 05:51:30.000000','1609539722669429'),('10117054350701364',1,'Came here after 13 days of varied illness and still not sure what I had... flu, then respiratory problems, then something else...\n\nThey were quick to get to me and identify what was wrong. They were open and explained the options I had had available.\n\nThanks to Dr. Grinblatas, Veronica, DawN, Gina, Norma, and Jaqueline','2020-02-18 23:30:22.000000','1608991329419166'),('10117105612422464',1,'Great location! They got us in quickly, even though we showed up at shift change. They answered all our questions and explained what was going on very clearly. You never want to need a place like this, but I’m glad it’s available and close by.','2020-02-26 13:51:12.000000','1648645701907657'),('1012518695600991',1,'Had a great experience the Dr.Kotey was very nice and helpful the nurses Rachel and Bryan were also super helpful the whole team at this facility it great and welcoming. I came into the Er in pain and I’m leaving feeling much better','2019-02-10 03:55:03.000000','544778295636544'),('1013006915745957',1,'I loved my doctor and nurse AT care','2020-02-25 20:12:57.000000','251751275488925'),('101342431471781',1,'I have 100% taking good care of with in a short period of time. Thank you Alvean, Thuy An & Patricia.','2020-02-23 15:08:34.000000','167959367441528'),('1013922022127460',1,'This is the best place to come for all emergency needs. The staff is always very friendly and knowledgeable. Thank you Olivia, Eve, Hamzah, Leslie and Dr. Wren for taking great care of our son on his latest stop to the emergency room.','2018-11-03 17:33:34.000000','1608991329419166'),('10155311493616222',1,'I slammed my finger in the door and cut it down to the bone and tendon! I bandaged it enough to be able to drive to the Montrose location, where I was taken in less than 5 minutes. I was treated like a queen, with great respect and courtesy. Everything was carefully explained to me as my wound was treated--nine stitches and two injections later, I was ready to go home. Thank you to the entire staff, and especially to Dr. Patel, who stitched me up. The staff was superlative, the premises were spotless, and Dr. Patel was amazing. Thank you!','2018-02-23 13:47:09.000000','544778295636544'),('10155340912201805',1,'SignatureCare Emergency was SO nice. Evelyn at the front counter was so nice and got me taken back in just a couple minutes. Dr. Boester and his staff were so nice and helpful, very professional. I was there for less than an hour, even had x-rays and blood work! I definitely recommend them should you ever need emergency care!','2018-07-14 22:35:44.000000','1609539722669429'),('10155365595806493',1,'Great Staff and state-of-the-art facilities......','2018-07-01 17:12:41.000000','829264323932850'),('10155372628437047',1,'I went to this place two week ago. The service was great, I just wated few minutes before i was taking care of. Everybody was very friendly. I recomend this place!','2017-10-11 21:41:51.000000','1787364321589026'),('10155455560066951',1,'This place is so off the scale, the rating doesn\'t come close to this place really is. If I get I\'ll again, this where I\'m headed. \nThe staff is awesome, helpful and so heart welcoming. They really treat you as if you are family . Thank you all for displaying so much love...','2017-02-17 06:47:25.000000','1608991329419166'),('10155582628494364',1,'Staff was easy to talk with.','2019-05-21 15:44:17.000000','251751275488925'),('10155691194529013',1,NULL,'2017-08-25 01:30:00.000000','544778295636544'),('1015586378809946',1,'This is a place i would recomend to anyone needing care. Everyone was fast and peofessional. Thanks to Tanishia and Sarah.','2019-11-01 04:22:04.000000','461782867645453'),('10155898185984217',1,'it was fantastic! great staff, no wait waiting. Great!','2017-12-27 01:50:45.000000','1765121397101399'),('10155904838406297',1,'Great people from the moment I walked in I felt very welcomed. I was in a room within 2 minutes and was asked if I needed anything they offered a warm blanket and told me if I needed anything to let them know. Definitely a great staff Dr. Yost, Lucas RN, Kim front desk, and Gunnar RAD tech. Thank u all for your kindness and hospitality I will return!','2019-01-23 22:19:38.000000','235046800697531'),('10155926814567553',1,'Came in in the middle of the night having difficulty breathing. They attended to me right away and didn\'t waste anytime getting me set up with a breathing machine and steroids. Everyone was super friendly and genuinely concerned about my well being. \nThey have free snacks and beverages in the lobby for whoever is stuck there waiting on you. That\'s going above and beyond when it comes to customer service in my opinion.','2019-04-29 20:54:23.000000','1698192877146046'),('10155953933876976',1,'Dr. Chukwu and his staff Churiah and Amy were super helpful and friendly!','2019-03-10 04:22:24.000000','1608991329419166'),('10155968749741486',1,'Excellent service! Brenda helped us out a lot! ❣️','2019-06-16 19:44:35.000000','1608991329419166'),('10155980877091415',1,'so grateful for the kindness of the Dr.\'s, nurses, and staff. I would recommend this place to anyone. They gave my daughter a teddy bear because they felt bad she is so sick and crying.','2019-06-14 04:07:35.000000','237100240304186'),('10156009277221193',1,'My husband and I have lived many different places over the past few years because of his job. Going to the doctor was always so hard and I used to avoid it at all measures. I have been in Austin for over a year now and this SignatureCare center is hands down the best facility I have ever encountered. Every time I go I am seen within minutes, everything is always very clean and super friendly staff that get me what I need quickly. Adam P is a staff member there that has always gone above and beyond to make things easier. If you\'re looking for a clean, welcoming place to take yourself or your family for care, look no further. THIS PLACE IS THE BEST!','2019-06-21 17:42:49.000000','1698192877146046'),('10156009698752001',1,'Great service, they make me feel so comfortable great doctor sourman all the staff Leslie, churia, Agnes and the lovely receptionist Amy 👌🏻','2019-06-15 23:19:28.000000','1608991329419166'),('10156026029072016',1,'Quality care with no long wait time. Amazing, friendly staff who really care bout their patients. Thank you Cindy, Rolly, Lisa and Dr Edwards!','2019-06-26 10:39:49.000000','544778295636544'),('10156056255444608',1,'Went in late on a Saturday. Wow, what an experience! The facility is spotless, the office and medical support staff are competent, efficient, and friendly (it IS possible to be all 3!). I was shown to a room in less than 5 minutes. In mere moments I had had my vitals checked and had been seen by a nurse. Dr. Miller was in the room less than 5 minutes. Dr. Miller is that rare combination of confident, gifted physician, who treats you with kind compassionate care. She immediately put us all at ease and she never once talked down to us. She was thorough in her explanations, and she listened with genuine interest and concern. I can not say enough about Dr. Miller or the staff at SignatureCare! I would head there over our local hospital ER in a more serious emergency without hesitation.','2018-04-08 17:00:22.000000','1698192877146046'),('10156061136212385',1,'Amy, Norma, Agnes and Dr. Souman were great. Very hospitable, quick and clearly explained my conditions.','2019-05-04 22:18:59.000000','1608991329419166'),('10156074690013008',1,'I was admitted to Signature Care ER with severe stomach pain, they quickly moved me into a room and started testing. I was diagnosed within a couple hours and was very pleased with the level of professionalism and expertise from both Dr. Boester and RN\'s Laura and Gina. I would definitely recommend Signature Care to anyone in need of emergency health care!','2019-01-15 22:26:34.000000','1608991329419166'),('10156085457206106',1,'Robin (Front desk), Billy (Nurse) and Courtney (Tech) were all friendly and provided great services! I will be back and will send others','2019-07-16 04:42:58.000000','299216637560955'),('10156098275916865',0,'Their service was second to none. I had Acute Pancreatitis and was in extreme pain.\n\nMost ER\'s keep you waiting for hours. These folks had me in a bed and fixed up in less than ten minutes. They even filled out the paperwork and just had me sign a few pages. I was in no shape to do paperwork and would have probably tossed it across the room.\n\nThey were checking up on me almost every 30 min. I honestly can say it was the beat experience I\'ve had considering the pain. \n\nThey had to ship me to St. Luke\'s and that place sucks.','2016-11-08 22:02:32.000000','544778295636544'),('10156162995095936',1,'Took my daughter in for her first set of stitches and she was very well taken care of here! Will be using this Emergency Center if needed in the future.','2019-03-28 00:56:55.000000','1698192877146046'),('10156179760747484',1,'AMAZING staff really quick service!','2019-08-05 00:55:10.000000','596022027480375'),('10156185947972554',1,'The staff was very friendly and got us seen quickly. Lisa our nurse was awesome!! she did a great job checking on us and making sure everything was good','2019-06-18 17:22:01.000000','596022027480375'),('10156269685896811',1,'Dr. Iheme\nAmy-Registration\njani- RN\nTricia - Rad tech \nSean - ER tech\nAll great staff','2019-07-19 22:55:41.000000','544778295636544'),('10156270407436437',1,'Feel like a new man! Lorena checked me in right away. Jacob, Natalie, Victoria and Anthony took great care of me. Dr Jaber made sure I wasn’t dying while at the same time taking care of the symptoms.','2019-08-10 20:37:35.000000','326347177710316'),('10156271522948339',1,'Dr. Ding and the wonderful staff including Chris and Amy at the front desk helped us yet again for another visit. We are always so happy with not only their care but their follow up. Thank you for all the special care and attention they show their clients.','2019-04-27 13:06:45.000000','1609539722669429'),('10156319603075180',1,'Great place to go ! Clean, efficient and quick!','2017-04-08 15:54:01.000000','1609539722669429'),('10156329891935563',1,'I brought my teenage son here on a Friday night to be seen and everyone was excellent. They made my son feel comfortable and put him at ease. I had to bring him back for a follow up and again the staff (Fatima, Tanishia, Nurse Lynn and Dr. Dunn) were excellent. We were in and out in less than an hour. I definitely recommend this ER to everyone.','2019-11-11 02:44:43.000000','461782867645453'),('10156334763631570',1,'I was in and out within 15 minutes and the staff was amazing especially Kat, never again will I fear the doctors office, thank you guys!','2019-05-21 06:51:00.000000','251751275488925'),('10156350643641047',1,'Just met Jeff and the crew at Montrose Emergency Center and this place and people are amazing. We appreciate them showing us around.','2018-08-11 18:17:44.000000','1608991329419166'),('10156357820832643',1,'Good staff, very friend. From Maria G Leo L Manny G to Delpha N and DR Osiecki. Wonderful people','2019-06-08 16:00:31.000000','237100240304186'),('10156361319971910',1,'This place was great far better than any emergency room that I’ve ever experienced. From when we arrived Sindy was supper helpful and efficient. Reginna our nurse was very knowledgeable, and Dr. Golla was very kind and humored us since we were so nervous. I definitely recommend and will come back here.','2019-12-27 17:07:58.000000','1609539722669429'),('10156381682573257',1,'Aerial was so nice 😊... caring staff !','2018-07-25 03:11:29.000000','829264323932850'),('10156411553782987',1,'We had a very positive experience with Signature Care. They were friendly and very service oriented. The facility is very clean and comfortable.','2019-03-26 12:05:21.000000','544778295636544'),('10156414826346267',1,'Amy is an excellent receptionist. Dr. Wren and I became real close real fast. There were smiles and tears had. Though the tears were mine. 😅','2019-04-21 05:45:17.000000','1608991329419166'),('10156452839353476',1,NULL,'2017-04-26 03:01:44.000000','1698192877146046'),('10156453061241325',1,'Took us in right away, keera was very helpful, and nurses jesse and selena were caring and helpful .','2019-05-30 21:13:42.000000','544778295636544'),('10156472105666266',1,'I would like to thank all the staff at Signature Care for helping me out after my car accident. I would to thank Dr Henderson, Nurse Susan, Angel and especially Tanishia! They made a a crappy experience more pleasant!! Thanks guys!!','2020-02-19 07:25:40.000000','461782867645453'),('10156476178986065',1,'great team, clean place. They took care of me. Dr Nguyen was great, also the nurse Kristina, the rad tech Tino, the ER tech Nelson, and the registration nurse Maya. All great. Thanks!','2020-02-22 23:33:24.000000','829264323932850'),('10156482741234227',1,'Jennifer D was amazing. The whole staff was so very helpful. I am so very thankful for their attention to detail and the way they really treated us like people and not just a number.','2019-03-29 21:38:46.000000','299216637560955'),('10156514733335426',1,'The staff and doctor were fantastic! Taneisha and Dr. Do were so welcoming and made me feel safe after a horrible car accident. Dr. Do was warm, caring, and thorough, answering all my needs and ensuring I was prepared for what was to come. Taneisha was a smiling face both going in and out.','2019-12-18 05:45:22.000000','461782867645453'),('10156535894157676',1,'Awesome service Staff - diligent, kind, efficient and caring! I will go here every time if an ER visit is needed!','2019-12-23 15:08:04.000000','1698192877146046'),('10156538004106027',1,'I went there FridAy and ended up having to stay over night. The place is very clean and nice. The people are amazing!!! They took such good care of me and I’m so happy this is where I went.','2019-10-14 19:40:37.000000','299216637560955'),('10156547583614075',1,'They were very welcoming and provided immediate and great care!!','2019-06-06 02:00:21.000000','1609539722669429'),('10156550522961426',1,'This is a great place to visit if u ever have an emergence . The service is way better compare to a regular hospital ER . The Doctors and staff are they best they are caring and makes your stay comfortable . After my visit I was feeling better, I will definitely come back if need be in the future . Thanks to DR O’ Malley (great Irish doctor👍🏼) nurse Alvean , Robert Rad Tech ,Jocelyn from registration . DR Nguyen , nurse Nanci , ER tech Jordan and Jasmine from registration . Expect to meet these people when u visit .','2019-12-12 23:41:59.000000','167959367441528'),('10156551640726378',1,'The best ER I\'ve been too! Very friendly staff and always so professional. Have taken my son there twice now and have absolutely nothing but great things to say about this ER and it\'s staff!!!','2019-05-21 02:23:32.000000','237100240304186'),('10156577320075418',1,'Very fast & polite very professional knew what they where doing','2019-09-17 18:05:35.000000','251751275488925'),('10156612080453286',1,'Great team and comfort.','2018-10-08 13:35:06.000000','544778295636544'),('10156624269349613',1,'wow, this is what medical care is meant to be!','2019-06-25 02:09:21.000000','235046800697531'),('10156630327206527',1,'Brittany Allison & Corey treated me very well as long as the rest of the staff with quick and great service!','2019-09-14 03:40:43.000000','596022027480375'),('10156633088282541',1,'Every one is extremely nice. Fatima the rad Tech quickly helped us. Thanks to Sarah and Tanishia.','2019-11-13 02:44:03.000000','461782867645453'),('10156641612196249',1,'ms Brittney was very helpful and she was truly concerned with my well-being!','2020-02-28 21:55:55.000000','251751275488925'),('10156641898547394',1,'The place is absolutely beautiful and clean. The staff is so comforting and kind. I will definitely return if needed.','2018-10-02 22:16:23.000000','544778295636544'),('10156661703186962',1,'Super fast, efficient and really nice. Highly recommend them! And they are 24 HRS which was very convenient and close to the freeway.','2020-02-15 05:22:46.000000','1765121397101399'),('10156665580482767',1,'Team at Signature Emergency is nothing short of amazing! Ms. Brenda R. created a very warm and welcoming environment as soon a I walked in! As I went to the back Mr. Hamzah made sure that I was taken care of from start to finish! I would recommend this facility at any time! This I my new go to place! \nGood job!','2018-09-02 19:41:19.000000','1608991329419166'),('10156668378513552',1,'The staff here is so courteous. I suffer with migraines and this is one of the best ER visits that I have had. They are fast, efficient and don\'t make me feel like just a number. If I get sick again I will definitely be returning here!','2018-03-11 03:44:45.000000','1787364321589026'),('10156682294498993',1,NULL,'2017-01-11 10:48:50.000000','544778295636544'),('10156694545173157',1,'Best urgent care in Odessa. Everyone here especially Jessica S. is always so nice and friendly.','2019-10-21 23:50:05.000000','237100240304186'),('10156694811315067',1,'Staff was amazing !!! Thanks for taking care of my baby!!','2019-03-03 12:47:32.000000','461782867645453'),('10156703469127883',1,'staff here were awesome. I went in with severe lower back pain. Doctor gave me an iv with some good pain meds that let me walk around.','2019-10-10 22:01:43.000000','596022027480375'),('10156710418986795',1,'Big thanks to Stephanie, Rollie, and Natalia for helping me with my allergic reaction! Service was great!!','2019-07-13 04:13:02.000000','1648645701907657'),('10156710770355395',1,'The whole team did an amazing job! Loved Dr. Singla! If you have a kiddo that needs medical attention, this is the place to bring them to. Thank You all ❤️','2019-02-04 17:27:10.000000','1609539722669429'),('10156715135372805',1,'One of the best ER experience we had. The staff was friendly and very knowledgeable. Thanks to Dr Garcia, Victoria, Maya, John, and Ricardo.','2019-12-19 16:01:33.000000','829264323932850'),('10156731037441210',1,'Signature Care has been by far the best er visit for us. They doctors and nurses are amazing! No long wait as with other ers.','2019-03-09 06:05:24.000000','235046800697531'),('10156736881575675',1,'I am surprised Cindy is not in lleadership.She d NJ old be the one to train the front desk staff. She is really nice. Dr.Edwards and the nurse staff was also excellent. That is why I came here.','2018-11-27 03:36:15.000000','544778295636544'),('10156741580326820',1,'Went in with my mom after she got into a wreck. The staff was all so friendly and pleasant! Dr. Thomas, Jeff, tanishia, and Fatima were awesome and provided quick service. \n\nThank so much for the amazing service!','2020-02-12 04:36:57.000000','461782867645453'),('10156754248241021',1,'I visited SignatureCare last night. From the moment I walked in the door, the staff was extremely pleasant, proficient, and kind. They were busy, so it took a little while, but each staff member apologized profusely when they came in. They gave me a shot and two prescriptions, and today I feel like a new woman. Thank you! Best of all, as a teacher, I paid nothing.','2020-02-21 01:30:16.000000','235046800697531'),('10156770392646550',1,'I recommend everything about signaturecare! The facility is beautiful, I was quickly seen upon arriving and given the best care I\'ve ever received from any medical staff. My nurse was named Pam, who was very kind and attentive. She explained everything going on and was very patient with me, (I am a BIG baby) Staci brought me a warm blanket which was awesome and unexpected, but even better than that, she was so gently and quick when she took blood. For some reason my veins are so difficult and it’s always a painful process, but NOT this time! My Doctor was Dr. Hehman, who was also very kind and took the time to make sure I got what I needed to get better. I really appreciated everyone I met, and thank you all so much for helping me.','2018-11-09 20:01:54.000000','1787364321589026'),('10156770930426166',1,'Best. ER. Ever. Full ER services with the relaxed (and friendlier) care of my primary care physician\'s office.Excellent staff from the front desk to the nurse and doc. They don\'t accept Medicare, but the price was so reasonable and the care so good that I would chose it over a trip to my primary care physician. Seriously.\n\nI took Mom there last February, and was amazed at the care and attention she received from all.\n\nWe are so fortunate to have them in our neighborhood!','2019-01-29 22:16:30.000000','1698192877146046'),('10156781853780933',1,'We were seen as soon as we walked in. No wait time, and staff was excellent. Doctor was with my daughter within five minutes, created a treatment plan, and treated her right away. They checked on us regularly & were just absolutely wonderful','2019-12-20 08:43:40.000000','251751275488925'),('10156784850021437',1,'Calli was a great nurse. the rooms are clean. n staff are quick n wonderful.','2020-03-03 23:15:52.000000','251751275488925'),('10156797359938743',1,'Ashley up front was awesome about calling my ins co for me and just very sweet. Then my nurse, Sussie, made sure I was comfortable and when Matt came in to put the iv line in, he was personable and so gentle that I barely noticed! Very caring, kind people. 👍🏻👍🏻','2019-07-02 22:37:24.000000','299216637560955'),('10156806520586033',1,'I loved Dr. PATEL, Nurse Sarah G. and Tanisha. They all did a great job tonight with my mom. Very professional and kind.','2019-11-08 05:33:23.000000','461782867645453'),('10156821872476421',1,'Beautiful and fast! Come and visit!','2019-03-03 01:53:00.000000','251751275488925'),('10156835290710380',1,'This place is amazing! Always friendly and helpful and helped put my little girls\' mind at ease with getting stitches. Our go to place for any medical emergency!','2019-03-25 15:08:15.000000','1698192877146046'),('10156853534829753',1,'My experience was great! Dr. Patel and Lisa V. Took exceptional care of me and my heath issues. They were very attentive and fast! I high recommend Signature Care! Thank you to the entire staff!','2019-07-27 03:52:44.000000','596022027480375'),('10156853682368017',1,'dedicated caring professional doctors and nurses','2020-01-16 16:49:00.000000','1609539722669429'),('10156854123614887',1,'I have been in the worst pain in my life for a nerve in my back. Only the second time in my life having something like this, however this was the worst! I didn\'t want to go to other emergency care facilities or even wait all day in ben taub hospital. I wanted someone who would care and take the tome to truly find out the best solution for this nerve racking pain! Not only were they fast and effeciamt in gwtting me in, they were direct asking all the right questions seeing to my comfort imediatly running all test which the result xame back with 30 mins. I was never left in the dark!! Prayerfully I won\'t get sick again, but if I do am am voming here first!','2017-12-18 15:22:36.000000','1787364321589026'),('10156854779630945',1,'Thanks you so much for your care today. Thanks to the front office staff Tanishia for your help with everything. I can’t wait to come back. You guys were hilarious! ;)','2019-10-25 03:22:11.000000','461782867645453'),('10156874206738733',1,'I was in and out in 20 minutes. They were very helpful and very professional. I was given meds and felt so much better the next day and was able to enjoy Christmas with my family! I highly recommend SignatureCare','2019-12-26 18:07:40.000000','1765121397101399'),('10156902013197345',1,'Everyone here is on top of their game! I couldn’t even finish filling out my paperwork before I was called to the back! I was able to be seen by the receptionist, multiple nurses, the doctor, the X-ray technician and out of there all within 2 hours. I would definitely recommend coming here as opposed to a regular hospital ER!','2017-10-08 15:46:38.000000','544778295636544'),('10156902654317631',1,'Great ,Fast service. Everything is fine and Kim, Andrew,David, Lisa, and Alisha, took freat xare of JoshHargrove. Got dehydrated at work and wasn\'t feeling well. Glad it was mothing serious.','2019-06-29 05:40:43.000000','596022027480375'),('10156918456817723',1,'personal is very professional \nregistration and front desk ladies Amy M, Valinceia P, Julesia H & Dalia R. very professional and nice','2020-07-22 20:42:57.000000','1787364321589026'),('10156920923562723',1,'Very good service, the staff was amazing!','2020-07-23 21:00:59.000000','544778295636544'),('10156927784998434',1,'Staff was amazing they were able to get us in and out and let us know what was wrong , everyone was very friendly','2020-01-01 21:31:02.000000','544778295636544'),('10156931716170009',1,'Everyone is so friendly. From Brittney Haynes to Dr. Ashbrooks. They all made sure my son was comfortable and even made him giggle. They are 5 stars in my book!!','2020-03-26 17:39:34.000000','235046800697531'),('10156942050422196',1,'Great staff! Amazing care. Dr. General, nurse Nikki and Shaunda at the front desk were all amazing and efficient. Thank you all for your care!','2020-02-17 21:19:53.000000','251751275488925'),('10156946407567150',1,'The front desk staff, the nurses, and the doctor were excellent and the trip was cheaper than I expected.','2018-09-15 05:44:26.000000','1609539722669429'),('10156950081191099',1,'Dr. Lingan, Christina R., Christine A., and Shaunda H. went above and beyond to make sure I was taken care of. Not to mention the facility is beautiful and very clean. Thank you so much!','2020-03-07 03:25:48.000000','1698192877146046'),('10156953322680893',1,'Great, fast and friendly staff. Explains everything being done during visit.','2020-01-26 16:47:51.000000','829264323932850'),('10156954607103046',1,'quick to the point professional care right in my hood! with follow up if needed and they waived the copay','2019-04-24 07:41:52.000000','1698192877146046'),('10156957891713553',1,'Dr. Henderson, Sarah G, Laura H or Elaine M and Briseda M were all professional, caring, thoughtful, insightful and listened.. I’m not fond of hospitals but this was a pleasant experience. Thanks to all of you. \n\nClean, fast, informative.','2020-01-02 02:04:21.000000','461782867645453'),('10156960258983963',1,'Who helped us: Dr. Patel, Nurse Kayla B., Jessica Nguyen, Norma T. and Jessica Rojas.\nService was incredible and their selection of drinks is phenomenal with Capri Suns at the ready for big girls like me.','2020-02-22 15:17:38.000000','461782867645453'),('10156969260873733',1,'This place is great Maya, Nurse Yasmin, and Dr. Chiang were amazing at making my daughter feel better. she was smiling and involved in the whole process which is something money just cannot buy. oh and btw the bill wasn\'t bad either.','2020-01-30 21:52:27.000000','829264323932850'),('10156980508967134',1,'The staff were very organized and helpful! I signed up for an appointment via the drive thru line and they were very quick to take my vitals and give me the test. I definitely recommend this location!','2020-07-23 17:29:06.000000','1609539722669429'),('10156983854931094',1,'the doctors and nurses are very caring and take the time to listen to you and explain everything in a way you can understand. They even call to check on me periodically. I found out from another urgent care place that I have a very large herniated disc in my neck that\'s pressing on major nerves causing me a lot of pain and loss of strength and feeling on one side. that clinic referred me to signature Care because toradol stopped working and I\'m so glad they did! they have been really understanding and I\'ve already been there three times with uncontrollable pain. they all took very good care of me and explained everything the other clinic did not. they are very compassionate and have helped me immediately every time I come through that door, without passing judgment in any way at all. Dr Yost even got me an appointment with Marc Smith in only a few days when it usually takes weeks to get in to see him. Signature Care Staff, thank you all so much for the compassion you all have shown me and for the excellent care. Not once did you make me feel like another number in your invoice book like a lot of other places do. Not once has his place rushed me out of there either. In fact they have always asked me if I was ready to go home before discharging me. I recommend this emergency center over any other ER/Urgent care place around. yes They only take private insurance but it\'s not their fault... they are not recognized as an emergency room like at a hospital and they are not allowed to take Medicare/Medicaid. even if you have to pay out of pocket, it\'s going to be worth every time if you ever give them a shot. for urgent/emergency care I\'ll never go anywhere else again.','2019-12-14 21:47:18.000000','235046800697531'),('10157009914721733',1,'Great service nice people \nI recommend this place quick','2019-12-29 23:09:44.000000','544778295636544'),('10157018136512641',1,'I love this ER they are the best!!!!','2019-03-11 21:48:57.000000','544778295636544'),('10157018326379727',1,'Excellent care! From Dr. Yost, Luke, Kim, Regis and Sherri thank you for taking care of my son!','2019-01-19 03:18:12.000000','235046800697531'),('10157031409428803',1,'This is my second visit and both times have been great! The staff is attentive and well-informed. Highly recommend!','2020-03-04 13:35:37.000000','544778295636544'),('10157035180722716',1,'Wonderful visit to Santa!! Super Recommend ❤️ Marry Christmas 🎄','2018-12-21 20:09:47.000000','1698192877146046'),('10157035383902809',1,'Great place.. Dr. Cavazos, Rollie, Natalia, Stephanie and Yasmina were awesome.','2019-12-14 02:39:34.000000','1648645701907657'),('10157046783472068',1,'Professional, friendly doctors and no wait time! Dr. Curtis, Lucas, Sherri and Kelly were amazing and helpful. Very thorough and thoughtful 👍🏼 🤒','2019-03-31 22:17:51.000000','235046800697531'),('10157047766551724',1,'Selina, Jesse, and Janet were extremely nice. Fast and great service.','2020-02-27 17:08:29.000000','544778295636544'),('10157061369962713',1,'Natasha was the best. Super informative and nice. Fast service.','2019-07-28 21:30:47.000000','251751275488925'),('10157065273118743',1,'Great and friendly staff! Highly recommend! Got us in and out!','2019-10-19 02:14:19.000000','237100240304186'),('10157067377101773',1,'Everyone was very courteous, understanding and knowledgeable. Their willingness to answer every questions and overall patience was outstanding. With our situation, they definitely went above and beyond anything we could\'ve ask for. I just want to recognized and give a great big thank you to Nurse: Sarah A G and Front Desk: Tanishia W. for going out of their way to help us.','2019-10-25 00:13:39.000000','461782867645453'),('10157098082675734',1,'Nice place. Great staff. Quick attention.','2019-07-03 11:39:55.000000','251751275488925'),('10157098232708055',1,'This staff has been so amazing to my mom and I. If ever I need emergency care- bring me here!','2019-02-15 05:28:18.000000','251751275488925'),('10157105568252906',1,'Nurse Manny was attentive and caring and was willing to make us laugh. Service was fast and effective !!','2019-06-08 18:56:14.000000','237100240304186'),('10157108974527096',1,'Given how busy they are with all the Covid testing, everyone is always friendly and kind.','2020-07-08 18:45:30.000000','251751275488925'),('10157111840391667',1,'Our daughter was driven here by a friend and promptly seen within 5 minutes. I arrived from San Antonio and found this location easily. This entire visit has been made the best I have experienced at any medical facility. From receptionist to nurses to doctors, all have been prompt, courteous, friendly, and happy, cheerful, encouraging and thoughtful as they have tended to our daughter AND me!! I feel like I have received genuine care at this facility. I wish we had them in San Antonio!!!','2019-03-28 14:26:49.000000','1698192877146046'),('10157138117248346',1,'Thank you Dr Simmons, Austin, John, Kanyon and Jennifer D! I received awesome care from all staff!','2019-06-11 02:25:21.000000','299216637560955'),('10157139143358520',1,'I was taken very good care of by Manny, Lisa P, Tabitha and Dr. Plante. Everyone was informative and answered all my questions. The emergency center is super fast and clean. Manny called me the next day to check on me. I appreciate the fast, friendly and compassionate service from the front desk with Eliza to the nurses and doctor. I highly recommend SignatureCare.','2019-12-15 15:03:40.000000','237100240304186'),('10157139469556433',1,'Eliza, Rachel and Manny were awesome! \nIt was quick a painless and a great experience!','2020-07-23 21:04:48.000000','237100240304186'),('10157142331441131',1,'I’m a very discerning person who is often not impressed by anything and I could not praise Dr. Jaber and his team more. Troy, Jessica, and Melissa were all amazing. Registration was a breeze and i was seen within 2 minutes. Dr. Jaber was there with to provide excellent care with great bedside manner and a sincere interest in making sure I felt taken care of and satisfied with my visit. I’m very glad I visited and want to thank the team again.','2019-08-13 07:28:09.000000','167959367441528'),('10157144246729932',1,'We will never go anywhere else for urgent care. From the person at the front desk to the nurses and doctors, you always get the very best care. We LOVE THIS PLACE and everyone in it.','2019-05-08 20:28:34.000000','1698192877146046'),('10157168914217226',1,'Great care and Wow! - what a beautiful facility!','2019-06-18 13:58:43.000000','596022027480375'),('10157176287278624',1,'Friendly, caring staff . . . .and very fast!','2019-03-23 10:49:29.000000','544778295636544'),('10157180969538544',1,'Absolutely recommend Signature Care ER to anyone that is looking for quick, compassionate and quality care! Went in for a severe sinus infection and walked out 30 minutes later with the best care I could ask for. From the receptionist to the nurses and Doctor they all treated me so good. Robin, Courtney, John and Dr. Simmons took care of ever need and took the time to talk, explain my treatment. The facility was top notch and I will definitely be taking my family for any care we may need in the future.','2019-04-24 04:56:18.000000','299216637560955'),('10157200632708462',1,'The Dr. was very nice and courteous.','2019-12-08 22:45:50.000000','251751275488925'),('10157210793404387',1,'Amazing staff, clean facility, and fast service. This is one of the best medical facilities I have been to. I would highly recommend to anyone. From the moment I walked into the door with my sick child I received quality care.','2020-01-27 15:28:25.000000','251751275488925'),('10157217253506832',1,'Excellen service from Kat, Dr. Zajac, Quintessa and Nino','2019-07-11 02:14:05.000000','251751275488925'),('10157227367486843',1,'I really enjoyed the experience here. It was fast and efficient. I want to give special thanks to Dr. Faig, nurse Jennifer,er tech Elaine and most of all Tanishia. You all are the best. Thanks for rocking out with me.','2019-12-20 08:11:40.000000','461782867645453'),('10157228253219820',1,'very friendly staff. everyone is so caring and welcoming. I come here first .....highly recommended. there is never a wait time.','2019-05-25 22:30:43.000000','461782867645453'),('10157233081082199',1,'super friendly easy process and wasnt there all day. everything theyneeded was on site. \nDr. Golla awesome\nNURSE Melissa great\nFront Desk: sindy was fast','2019-09-18 12:27:18.000000','1609539722669429'),('10157237002902877',1,'Great nurses and staff! Highly recommend!','2020-04-03 20:30:19.000000','596022027480375'),('10157251158108319',1,'Friendly quick and professional. After injuring my hand I was able to get an x-ray and diagnoses quickly. The nurses were very helpful and the doctor was great at explaining exactly what happened and what I would need to do next.','2019-03-13 15:19:22.000000','544778295636544'),('10157252685373229',1,'yall are pretty awesome and GREAT bedside manner!','2020-01-13 03:15:22.000000','596022027480375'),('10157261999011911',1,'Went to get tested and the staff were nice and caring. Jessica Sanchez was very nice and helpful during the process.','2020-07-21 15:34:47.000000','104213804456471'),('10157289591959055',1,'Great experience!! All the staff and doctor were completely wonderful! Would recommend anyone to come here to this place.','2020-02-02 04:00:48.000000','596022027480375'),('10157290419687087',1,'This is the best ER in town! I have visited this ER twice (once with a friend and the second time with my daughter). I will not go anywhere else. Immediately after walking through the door we were greeted with a smile and quick service by Aileen. We were given the option to grab a snack or a drink because they \"understood she had just come from school and kids are always hungry after school\". We waited about 5 minutes to be called to the back for the nurse (Christina) assessment. The doctor (Lingan) came in about 2 minutes after the nurse left the room. My daughter needed x-rays (Christina K) and those were quickly taken, processed and read by the doctor within 20 minutes. Thank you to the staff for being friendly and keeping your facility clean and inviting. I will recommend to anyone I see. \n\nDid I mention they give first responders a HUGE discount. I just happen to be wearing a station t-shirt that day and the Aileen picked up on that right away. Thank you!!','2020-02-28 08:38:59.000000','1698192877146046'),('10157293105318695',1,'Robin in registration was very fast and friendly, the nurse Jennifer was very nice and helpful and informative and the tech Brooke was very friendly and you could tell they all loved their jobs and what they do for everyone that comes in 💙','2019-05-31 03:37:02.000000','299216637560955'),('10157299099176301',1,'I had to go in for a very sensitive problem I was having and due to Covid-19 my husband was unable to go in with me. I have horrible anxiety when it comes to needles and doctor’s offices in general and had already worked myself up pretty good by the time I arrived. Nurse Adrian Ramirez walked me back to the room and listened attentively and showed great empathy for me. Nurse Rebecca Miller was truly heaven sent during my visit she was caring, thoughtful, supportive and attentive. She held my hand and walked me through the entire procedure went above and beyond with her care for me. I am forever grateful to them both. The physician and all other staff were amazing as well. A great clean clinic who is run very efficiently. I would highly recommend them over any other emergency room in town.','2020-06-28 11:41:14.000000','237100240304186'),('10157306827656339',1,'Fast and sufficient! Will be back if we need to','2020-01-07 01:49:04.000000','596022027480375'),('10157311138272872',1,'Great staff and welcomes us ready to tackle the situation!','2020-02-28 22:40:14.000000','299216637560955'),('10157314528868955',1,'So thankful to have this facility in this neighborhood! Had an emergency in the middle of the night, and they took great care of me, there was no wait time to get in, and it was so easy and convenient. Emergencies are never fun, but glad to have this place so close by!','2019-09-05 13:39:33.000000','1698192877146046'),('10157319038710189',1,'It’s never fun to be sick on a holiday. However it turned out that I was in need of medical care. Pain and I couldn’t take the cough and sinus pain any more. I was greeted with a warm welcome and a smile. I apologized to come in as I know they are there with out complaint but... I know they wanted to be with family. I was in the exam room in minutes. I was screened by Amy and she was so kind and listened intently. Never judged me being there. She took my vitals and my information. Doctor came in and I gave my symptoms and he examined me. Gave me a plan and I agreed. One injection and oral med later I was asked how I was doing and she had my discharge papers ready. Not only will I express my gratitude and thanks but will make sure that I will share how amazing my care was. Thank you to the nurses and doctors who work today. As a nurse I know holidays are not fun to work and I hope you did have a great holiday tonight.','2019-11-29 01:17:26.000000','251751275488925'),('10157319262853736',1,'I was in and out. Very friendly & helpful staff. Nurse rondy was super informative and doctor Lim was very tentative. I highly recommend this emergency room','2020-01-10 03:44:14.000000','1609539722669429'),('10157330435546979',1,'Very great service and great care would highly recommend.dr ding,Amy and Chris were just awesome thank you so much for caring for my husbands needs','2019-04-27 16:19:12.000000','1609539722669429'),('10157331403745520',1,'Facility was immaculate and fast. Dr. Appiah, Jani W, Tricia B, and Elida Jasmine were extremely helpful','2019-10-17 22:54:01.000000','167959367441528'),('10157338171322201',1,'I really appreciated the service at Signature Care Emergency Center. They are really professional and attentive to your needs while at their facility. They also call afterwards to see how are you are feeling. I appreciate them and will recommend them to friends and family.','2020-04-21 14:12:48.000000','104213804456471'),('10157354009196914',1,'Lauren and Dr. Elsbecker were great - tested positive!','2020-06-09 20:53:54.000000','1698192877146046'),('10157357127580407',1,'great staff and attentive','2019-04-24 18:11:07.000000','829264323932850'),('10157365950240852',1,'Quick and excellent service! Lisa V., Leah, and Dr. Huerta were very nice and empathetic. Would definitely recommend!','2020-04-30 14:31:20.000000','596022027480375'),('10157368015184919',1,'it was very nice service. this people are very efficient at all times.','2019-07-04 06:01:57.000000','1787364321589026'),('10157368662800791',1,'This is my first time here. The facility is clean, comfortable, and very modern. The staff is friendly, courteous, and very professional. The wait time was minutes from the time I walked in the door. The bedside manner of the nurses and doctor who treated my daughter was absolutely amazing. I would highly recommend SignatureCare Emergency Center- Killeen to anyone who’s looking for great care quickly! Five star hands down! I will be back for any future emergency/acute services!','2019-11-05 23:46:43.000000','251751275488925'),('10157372280464717',1,'The lobby is so clean and well maintained. I couldn\'t believe how friendly the staff is.\nEven snacks and drinks while I waited.','2019-06-14 20:01:06.000000','1698192877146046'),('10157379987828926',1,'I recently brought my husband to this ER and was blown away by the phenomenal medical care he received...it surpassed all my expectations! We were greeted immediately by the registration clerk Lizzie and placed in a room within MINUTES! That was impressive in itself as this is an emergency room. Nurse Dawn & Nurse Agnes were both highly skilled, compassionate and personable. I was worried about my husband and both ladies took the time to acknowledge my input and answered all my questions. The ER tech Olivia and radiology technologist Eve were both attentive and kind. They made sure that my husband and I were comfortable. It’s clearly apparent that these ladies work well as a team! Dr. Faig was thorough and took the time to explain the diagnosis. Thank you Signature Care Montrose, you guys are amazing!','2019-07-09 19:25:33.000000','1608991329419166'),('10157384288039694',1,'Very clean and nice environment','2019-07-25 16:51:34.000000','544778295636544'),('10157386994472606',1,'It was a wonderful visit. They are very helpful and timely. Thanks Dr Daniel and Nurse Leslie and Secretary’ Tanishia','2020-03-25 02:09:45.000000','461782867645453'),('10157404598113023',1,'Excellent experience with signaturecare emergency center, very recommend to anyone','2019-05-17 14:11:19.000000','461782867645453'),('10157410626811995',1,'I broke my ankle. Everyone was not just helpful, but seemed care and actually love their job. They were proactive, informative and open to my needs as well as my opinions about my care. I rarely do recommendations, but I had to. If only they could handle all my medical care!','2019-04-22 00:24:41.000000','1698192877146046'),('10157411117694082',1,'The staff was amazing. The doctor was very informative and helpful. I have no complaints at all.. They have set the bar extremely high for stand alone Emergency Rooms!','2019-06-23 12:46:34.000000','167959367441528'),('10157420912178017',1,'Staff was nice. We made an appointment but had to wait 1.5 hours still. If there was a way to determine how long the current wait time is, that would be helpful.','2020-07-28 04:41:35.000000','104213804456471'),('10157432241087930',1,'This was a great find while on a trip to a city where we didn\'t know where anything was. The staff was professional, personable, knowledgeable and hospitable. Amy, and Maureen were thorough and efficient. Dr. Daniels explained diagnosis and aftercare very succinctly and Dion the Radiologist made us welcome and comfortable. The building and treatment rooms were very clean. Highly recommended.','2019-07-07 02:42:19.000000','1608991329419166'),('10157443147293587',1,'In and out without any issues. All of the staff were polite and helpful. Very pleasant experience.','2020-07-30 13:35:29.000000','1787364321589026'),('10157448107136620',1,'Thank you for team that helped us today! Dr starr Leo Kristina Aaron Delpha and Lisa H! They got us in, in no time! My son had to so blood work and that were so patient and helpful with him since he was scared! Thanks again :)','2019-12-16 16:11:04.000000','596022027480375'),('10157462688335490',1,'As I entered I was immediately greeted. I had a great experience here with the er tech James , Nurse Tammy and Dr on staff.. Staff was friendly and helpful!!! Great facility that was fast and gave care into the check up. Did not rush me out but ran appropriate test to verify issue. Over great experience and will continue to use Signature Care copperfield!','2019-11-17 13:32:59.000000','461782867645453'),('10157465380131915',1,'Professional, caring, clean, efficient facility with a nice staff.','2020-07-17 13:15:02.000000','1648645701907657'),('10157467471455860',1,'So awesome quick and easy. Maya and Kristina were so helpful and made us feel at ease.','2020-01-05 18:23:18.000000','829264323932850'),('10157482114238420',1,'awsome staff helped us after our accident\nthank you manny so much.','2019-06-08 18:55:55.000000','237100240304186'),('10157496872884193',1,'My experience here was great, although I was not treated my brother was taken care with love. We were helped by Tanishia which transitioned throughout the experience we the nurse Jennifer, Fatima the tech and Dr. Faig.','2019-12-20 08:15:58.000000','461782867645453'),('10157499947459156',0,'Extremely irresponsible model for delivery of health care. Front desk tells everyone they \"accept insurance,\" which means nothing since they\'re out of network, balance bill, and make themselves out to look like urgent care. Laws are changing to protect unknowing consumers.','2019-10-26 21:21:08.000000','544778295636544'),('10157511548083117',1,'The staff was very helpful and quick!','2019-06-17 20:10:48.000000','596022027480375'),('10157515066775662',1,'All of the staff really listened to my concerns. I didn\'t wait for hours before being seen. I appreciated being able to walk in and being treated.','2020-06-13 22:58:57.000000','235046800697531'),('10157559552516598',1,'Had a amazing experience for my girlfriend. The doctor got us in and out in a hurry. The nurse was very friendly as well. Great place for quick emergencies!','2019-08-22 02:15:50.000000','544778295636544'),('10157559561362469',1,'I came here for my Covid testing. The nurse was very nice, funny, talkative, and made me feel comfortable. Peggy and the physician Brian was great. Brian came in and made us feel comfortable with conversation he isnt a snooty Doctor lol','2020-07-29 16:46:43.000000','105589317817643'),('10157566003447593',1,'I would definitely recommend Signature Care Er Copperfield, the staff was awesome in caring for my grandchild. Registration Tanishia was informative and very helpful, the Dr and nurses showed us how much they care for pt.','2019-11-15 08:35:57.000000','461782867645453'),('10157567620965731',1,'Very nice staff and fast service.','2020-01-03 16:32:26.000000','251751275488925'),('10157588130929802',1,'Excellent staff! Every single person was helpful and kind. Wouldn’t go anywhere else!!','2019-06-30 19:48:26.000000','596022027480375'),('10157594796952850',1,'Doctors Thomas and Nguyen and their staff were friendly and helpful in seeing to my needs.','2019-12-04 03:58:10.000000','461782867645453'),('10157601681368278',1,'My sister was sick got her in and out quickly','2019-07-22 00:07:11.000000','251751275488925'),('10157618163184395',1,'Staff: Registration - Lisa P, Nurse -Manny, Twch - Eliza, Dr. Osiechi all very professional and treated my son with kindness and compassion.','2019-10-20 22:25:59.000000','237100240304186'),('10157632445318329',1,'Great staff. My husband got called back before even being done with paperwork. The doctor makes sure the patient is taken care of!','2019-12-06 02:05:50.000000','251751275488925'),('10157637159583136',1,'This is the best Emergency Room I have ever been to. It is never good to be sick or have to be seen at a hospital, but they really take care of you at Signature. The team members truly are concerned for your comfort and wait time. I have been here two times and I recommend it to anyone I know that needs to be seen in an emergency situation. No more long wait times and impatient staff for me! Dr. Garcia was genuinely concerned for my health and a pleasure to be treated by. Ray was one of the best nurses I have had the pleasure of meeting. He was thoughtful and helped me to feel at ease. Gustavo had a beautiful smile and was very helpful. Jessica was sweet and took care of me quickly and efficiently. My wait time was short and when I went to check out, she took excellent care of me. This is not your ordinary hospital. If you want long waits and irritated staff... this is not the place for you. If you want fast, efficient, thorough care... come here. I will again if needed!','2017-12-07 02:57:53.000000','1787364321589026'),('10157656287321329',0,'DR. QUANG HENDERSON at Signature Care on 1960 and Wunderlich is tryna bill me $500 for a \"Procedure\". There was NO procedure done. No stitches was required, no NOTHING but cleaning with soap, water and neosporin applied and wrapped. I asked what war the \"procedure\" he performed acmbd that\'s what he said!!! I will be fighting it with the Billing dept. LISTEN PEOPLE some doctors are now tryna PRICE GAUGE because of everything going on they aren\'t seeing as many patients as they normally would which AFFECTS their pockets. How cruel to try and take advantage during this crisis. #SignatureCare Emergency Center - Cypress/1960','2020-03-23 20:29:38.000000','167959367441528'),('10157674217308672',1,'Fantastic care team. I will be coming here from now on.','2020-01-01 00:45:13.000000','461782867645453'),('10157675419418206',1,'Clean facility, awesome staff, and quick and convenient! Special thanks to, Jeff, Dr Yusuf, Nick, Leslie, and Dee!','2018-08-11 18:13:13.000000','1608991329419166'),('10157677733137801',1,'Tanishia was awesome! Nurse Sarah was great and Doctor Thomas was very helpful\nVery clean urgent care','2019-11-20 07:00:25.000000','461782867645453'),('10157678869686757',1,'Highly recommend, came late night. Fast and very nice','2019-08-20 06:07:49.000000','1698192877146046'),('10157685062289958',1,'Dr. Angela is absolutely phenomenal. She was not only thorough and compassionate, she did it with a great sense of humor and the most infectious (pardon the pun) smile.','2020-07-28 01:52:58.000000','104213804456471'),('10157689228721390',1,'Very friendly staff, I wasn’t feeling too well. Came here and Dr. Henderson and Nurse Kristina gave me the steps to get me back 100%. \n\nIf you want a quick and friendly experience at the ER I was suggest this location.','2019-12-14 15:33:53.000000','829264323932850'),('10157696948499065',1,'They where very professional and do a great job.','2020-07-17 17:03:25.000000','1787364321589026'),('10157704327623251',0,'On today’s Click2 Houston website article regarding your location and the absolute insane charges to insurance companies for Covid 19 testing. This practice should be criminal. I live close by but after reading this I will never come to your emergency care nor will I recommend it. Honestly I cannot believe what you are doing. Shame on all involved making these decisions.','2020-08-04 17:06:40.000000','1609539722669429'),('10157707880343057',1,'Great experience, very nice staff, they took well care of my husband! Thank you nurse Kim 🙂','2019-08-31 02:06:43.000000','596022027480375'),('10157712243689725',1,'Jocelyn, tanishia, Sarah and dr Thomas are all so professional, took their time and fully explained everything. I’m a repeat customer!','2019-11-20 02:27:26.000000','461782867645453'),('10157722727529719',1,'Awesome place Rollie, Natalia, Stephanie and Yasmina. Dr. Cavazos was amazing.','2019-12-14 02:45:42.000000','1648645701907657'),('10157724255623874',1,'I Strongly recommend anyone to visit Signature Carrie are in Paris the staff is extremely professional, caring and nice! The doctors are professional, accurate and caring don’t sit in the emergency room go to signature hair if you want to get in and out quickly with the best care possible in Paris Texas! The registration nurse Ashley my nurse Erica and attack Ashley was extremely helpful and informative,caring and took wonderful care of me! Thank you guys so much for your excellent customer service and care!','2019-10-17 14:10:00.000000','299216637560955'),('10157728256314665',1,'Great customer care they did a great job. Very nice and clean facility','2019-06-13 03:49:48.000000','1609539722669429'),('10157731485986259',1,'I have been to this location twice. And each time I am in and out quickly and everyone is really nice and informative. I would drive 15 mins from my house to come here because I feel like they care. My nurse Alvean is very nice and professional and Jocelyn who works up front is fast and efficient.','2020-02-06 00:03:16.000000','167959367441528'),('10157733035512870',1,'When I visited SignatureCare I received es hell from McKenna, Susie, and Ashley K. They were all very kind. They make the process from start to finish easy and pleasant.','2020-02-07 15:41:08.000000','299216637560955'),('10157738953279255',0,'The entire staff was amazing. Everyone was extremely nice from the register all the way down to the doctor. They were extremely patient with me. Thank you all Ms. Natasha, Ms. Rose and Ms. Amy.','2019-08-10 21:51:46.000000','251751275488925'),('10157744096772389',1,'Just knowing that there’s a health care close by is great. The staff was on point and friendly.','2019-11-18 01:45:23.000000','1609539722669429'),('10157759035934185',1,'Patricia is very accommodating.','2019-12-30 20:00:15.000000','167959367441528'),('10157769460566308',1,'Nicole G needs a raise. Everyone was fantastic. Nicole G, rondy, Dustin, Ricardo, Dr Henderson were all amazing.','2020-01-09 05:31:53.000000','1609539722669429'),('10157769921259834',1,'Really happy I came here. Dr. Henderson is close and his team is great. Kristina is amazing with kids and made my shot bearable. Olivia and Nicole did great testing also.','2019-12-14 22:50:42.000000','829264323932850'),('10157772734516514',1,'Very helpful and super quick! Very happy with everyone there!','2019-10-02 16:30:21.000000','596022027480375'),('10157780041503569',1,'Amazing care. Shout out to Dolores, Nancy, Dr. Golla, Dr Jasmine, Aubrey, and Aaron for that warm blanket though😆👍','2017-06-01 00:06:26.000000','1765121397101399'),('10157788867240152',1,'The entire staff is lovely, and I\'m not someone who likes hospitals, is recommended to anyone in South Austin.','2019-10-21 22:55:56.000000','1698192877146046'),('10157793394271142',1,'This is my second time coming for myself, and I brought my daughter here before too. The service is the quickest I have ever experienced. I’m always taken back to a room in less Han 5 minutes. Highly recommended.','2020-02-13 16:57:14.000000','829264323932850'),('10157806337237141',1,'Dr. Thomas \nNurse Sarah\nTechnician Elaine\nand Registration Tenishia \n\nThey all were very helpful and great!','2020-01-31 01:35:25.000000','461782867645453'),('10157817870423750',1,'Great service and fast service. They are all just extremely nice and caring. They even call and check to see how you are doing the day after you went to the ER center. LOVE THEM','2019-11-09 11:47:31.000000','326347177710316'),('10157837285174923',1,'This place is phenomenal. We were in and out super quickly. Snacks and drinks for the wait. Tanisha, Daniel, Dr. Dang, and Lynn were absolutely amazing. I’ve been to lots of doctors and ERs & emergency care services - this takes the cake for all of them. I just moved to the area & know I have peace of mind on where I’ll go if needed.','2019-11-18 03:11:23.000000','461782867645453'),('10157842388865729',1,'I had great, quick, efficient service today from Dr. Edwards, Gary, Gunnar, Jaylon, Tracy, Kim, & Courtney!','2020-02-19 16:19:36.000000','235046800697531'),('10157846503134770',1,'SignatureCare Emergency Center\'s Bellaire Emergency Room (ER) is open 24 hours to treat most medical emergencies. We treat infants, children and adults in our state-of-the-art freestanding emergency room (ER). Our Bellaire Emergency Center is located right off HW 59. Our Bellaire ER has a board-certified doctor available 24/7. Our ER is equipped with in-house lab, X-ray machines and CT scan, and we can provide ambulance services. We function like major hospital emergency rooms. With little to no wait time, most emergency room and urgent care patients are seen by our doctor within minutes of arrival. Our Bellaire ER has an observation room for patients who need to be monitored overnight and we bill for most major health insurance plans.\"','2020-01-11 13:44:07.000000','1648645701907657'),('10157848182048351',1,'I had a really good experience at this location with Kristina and Dr Zhen! I felt comfortable and confident after my visit.','2019-12-28 14:43:15.000000','829264323932850'),('10157857725444707',1,'As a mom of 3 boys we visit these places more often then I’d like to admit! This time was for me! I’m very clumsy! This was by far the BEST ER I’ve been too ever! Receptionist were sweet and friendly! Kat the nurse was fantastic! Very kind and hospitable! Dr Jones was caring and had great bedside manner! This place was great. Hoping I won’t return anytime soon but if I do we’ll definitely be coming back here!!','2020-02-05 03:54:44.000000','251751275488925'),('10157872217849128',1,'My visit went well! Keera, Jeri and Stephanie were a major help ! Thank you :)','2018-11-16 06:51:14.000000','326347177710316'),('10157889972757098',1,'I would highly recommend SignatureCare. The staff was outstanding. Each one that we visited with and attended to us were as professional as you would ever want. This is for certain a top notch facility. Thank you SignatureCare!','2020-06-15 15:28:41.000000','235046800697531'),('10157897572773120',1,'Quick, efficient and friendly service. Glad to see Tricare is now being accepted. Despite being here for not feeling well, the treatment starting from check in is great. Thanks for making me feel better.','2019-10-28 03:18:15.000000','251751275488925'),('10157899894742398',1,'Absolutely would recommend this Emergency Center. Extremely nice, clean, fast, etc..took care of my friend, and had her feeling better in an hour!','2020-02-18 05:01:27.000000','251751275488925'),('10157912605337268',1,'Great experience would recommend to anyone!! Great friendly staff from the front desk to nurses to the doctors!!','2019-10-27 01:17:33.000000','596022027480375'),('10157913013537994',1,'thank Lucas Kim Sherri','2019-08-15 19:50:37.000000','235046800697531'),('10157924406081738',1,'This emergency center is amazing. Everyone was very helpful and went out of their ways to give me information about everything, from registration with Tanisha W, to ER tech Daniel B, to Doctor Thomas, MD. \nIt is a very comforting and cozy place.','2019-11-20 05:01:07.000000','461782867645453'),('10157943887386704',1,'They are very friendly and helpful will us them again','2020-03-02 16:06:01.000000','237100240304186'),('10157946645678555',1,'This place helped me feel good after i got hurt. They are close to the house and gave me fast help. Thank you to Melissa E, Jose P, Jennifer T, David B, Sean H, and Dr O\'Malley!','2020-01-28 02:08:25.000000','167959367441528'),('10157948808288608',1,'attentive kind caring no wait time good doctors and nurses','2020-03-17 00:29:07.000000','104213804456471'),('10157950957298769',1,'They were quick and so friendly. Ashley Burton and Nurse Holly were awesome! I would recommend Signature to all my friends and family!','2019-12-09 12:45:29.000000','299216637560955'),('10157954934206276',1,'Amazing service. Attentive, knowledgeable and friendly staff. Dr. Henderson Answered all my questions. Nurse Susan made me feel comfortable. Technician Angel was helpful. Tanishia at the front was welcoming. I recommend this place 1000%!','2020-02-19 03:43:11.000000','461782867645453'),('10157963584542863',1,'the staff is friendly and very attentive. facility is very clean.','2020-02-06 15:46:52.000000','1787364321589026'),('10157964224053376',1,'The staff at SignatureCare ER Center is very thorough. We will be back when the need arises. Thank you to all at SignatureCare for your kindness, understanding and professionalism.','2020-04-15 00:01:26.000000','235046800697531'),('10157964994261838',1,'The entire staff was very welcoming and respectful.\nA beautiful group of people.\nTons of blessings for them as they blessed me with their care','2020-03-04 18:50:15.000000','1787364321589026'),('10157973155522938',1,'These guys are awesome! Dr. Yost, Tobie, and the manager Brandi were incredible! Thanks for taking care of me!','2020-01-15 01:34:27.000000','235046800697531'),('10157977885711192',1,'I HIGHLY RECOMMEND SignatureCare Emergency Center!! They are very professional, intelligent, very caring! Extremely fast and very thorough . I literally only waited 5 minutes to go back to a room. The doctor was in awhile 10 minutes! The facility is Very clean, up to date. They offer snacks, drinks, anything to help you. I will definitely come back here for any other emergency services that I need for my family! Thank you for your wonderful help! UPDATE: I ended up getting admitted, and I literally am speechless at the service!!! The loving, caring staff, making sure we had what we needed, private room with a huge private bathroom with shower! A Robe, the cutest beauty bag for all your needs. A good size mini refrigerator, big flat screen tv, water bottles that are for you take home, and they even ordered us dinner on them, had it delivered and brought it to our room!!!! I literally felt like I was at a hotel, not a hospital!!! Thank you for such an amazing experience. If you want want amazing, fast, and very professional medical staff you need to come here!!!!','2020-02-15 06:17:52.000000','251751275488925'),('10157984237424651',1,'The staff at signature care is great, Amy, Robert Diem, and Dr. Dang Amelia','2020-04-13 00:32:41.000000','544778295636544'),('10157985715316264',1,'the staff here is absolutely amazing!! they truly care about you as a patient!! thank you for a great experience during a time I needed it most!!','2019-09-25 13:33:45.000000','1787364321589026'),('10157989753874742',1,'Nice and clean friendly staff listen to my concerns explained everything/results in a way for me to understand. Made me feel Comfortable . \nThanks \nDr. Cavazos\nTech: Natalia\nReceptionist Stephanie \nNurse: Rollie','2019-12-16 04:02:27.000000','1648645701907657'),('10157990243434099',1,'Excellent service, my girlfriend was sick and they got her in fast. Now she is feeling better thank you Kristina, Victoria, An, Laura, Maya, and Dr. Miller. Your service was greatly appreciated.','2020-02-01 02:31:39.000000','829264323932850'),('10157995825976336',1,'I would definitely recommend this facility. It’s friendly personnel and fast service is one of the best I’ve had in this area. Facility is very, VERY clean. Will definitely be coming back here for sure!! Dr. Rose, Kat (our nurse), Brittany (receptionist), and Frank (X-ray technician)....y’all did an awesome job taking care of my daughter...even fitted her with her newest accessory....her fancy 👢. Blessings y’all!!','2019-04-13 01:19:50.000000','251751275488925'),('10158003986624038',1,'Super fast and very helpful!','2020-02-29 21:33:25.000000','326347177710316'),('10158008875047743',1,'great service by alyssa p','2019-12-05 23:04:38.000000','1787364321589026'),('10158014112650839',1,'I just received the absolute BEST care... I don\'t do flu shots.. I don\'t typically take any medications I try to make good choices with my eating and wash my hands frequently and get good rest and take care of myself so that I dont have to visit doctors. Sometimes however you need to just go.. my boyfriend kinda made me go because I was not feeling well. There was no wait time, the front staff was amazing and so helpful! I was taken back quickly and the paperwork wasn\'t to intense either. They did the initial evaluation which does not cost anything unless you need to be treated which I love because some places charge you just to be seen. I am also uninsured so before moving forward with anything they are sure to show you prices and let you know so that you aren\'t surprised by the end. So now to the actual visit part the nurse was so kind and the doctor came in after He was amazing they both were so chill and relaxed and it made me that much more relaxed and comfortable. My vitals were all great and they gave me the different options. I actually felt like for once I had a little bit of say so in my care and what would/could be done. They were so informative and ultimately we made the decision to have a Chest X-Ray done. I am thankful that I was even given the option because I went in for something a little different and ended up finding out more. I have been having trouble breathing for awhile and It turns out via the X-ray I do have Bronchial thickening.. that might be the wrong wording lol but I was given a couple of prescriptions that will help me to breathe better finally! I am thankful that my other symptoms brought me in and I found out this! Being able to breathe properly will be life changing for me! \n\nThank you so much to everyone who cared for me today! ❤🙌','2019-06-12 21:42:50.000000','237100240304186'),('10158019140977971',1,'The one on Wirt & i10 is highly recommended. Queen Cynthia and her staff, Teresa, Holly, Ryan & Dr Zheng where super attentive. Highly recommend this place for your emergencies. Thank you for everything','2019-09-22 12:55:38.000000','544778295636544'),('10158025030633142',1,'They are quick, friendly, courteous, and were very attentive to patient\'s needs.','2020-02-01 18:22:42.000000','544778295636544'),('10158030447360864',1,'Had a visit tonight for my twin granddaughters. It was a great atmosphere. The building is nice and new. The staff was great and very accommodating. The best part was there was no wait.','2019-10-10 01:44:17.000000','251751275488925'),('10158046625902154',1,'We had to stop on a family road trip for our 3 yr old son who came down with pink eye. They were so fast & so helpful & nice. Ashley Burton got us quickly checked in and our nurse Jamie M. took us to a cute Mickey Mouse exam room. The Dr. did a quick check and gave him drops that we could take with us which was a lifesaver! They also gave us goodie bags for the kids!! Was a fantastic experience- they will be our road trip Dr. of choice!! Thank you SignatureCare for saving our family vacation!:)','2020-02-15 00:07:58.000000','299216637560955'),('10158049766199694',1,'Very fast . Very friendly . Michele , Calli , Alexa , Alia & Jessica were the best ! I went another time and it was unprofessional my door was open and Nurse Kay or Cat was gossiping about me .','2020-03-19 16:36:51.000000','251751275488925'),('10158057349721281',1,'I have been here a couple of times with myself or my kids... staff is always wonderful and accommodating to our questions or needs.','2020-07-23 21:13:53.000000','237100240304186'),('10158064269730676',1,'Lisa at the front desk was very friendly and courteous. Krystal was my son’s nurse and made him feel at ease. The doctor was great and we were in and out in no time!! Highly recommend!!','2019-09-28 18:18:08.000000','596022027480375'),('10158075189052431',1,'People make the experience. Customer service is alive and well here. Jennifer and Shonda greeted us kindly and got things rolling. Christina K put us in a room and made sure my son had all the comforts they had to offer. In minutes, Dr Goodman took a look and made a plan to place some stitches in my son’s chin. The team was kind and gentle, yet firm and assertive when they needed to be. I can’t imagine the pressure of placing injections around a wound on the chin of a frightened five year old! Dr Goodwin made it look easy and got the job done quickly. Shelly got us discharged and my son was given a teddy bear for being brave. This team made our first set of stitches a positive experience and we are thankful. We could not have asked for better care.','2020-02-08 18:14:38.000000','1698192877146046'),('10158075715694831',1,'My experience in this emergency center was absolutely wonderful and very clean. The nurse Tyler and Rachel were amazing. The ER Tech was helpful and made me feel comfortable. Dr.Cavazos keep me informed on the process of my lab results. I would definitely recommend this emergency center over any Hospital ER .','2020-04-06 16:10:05.000000','461782867645453'),('10158077923302318',1,'Friendly staff, quick visit, efficient care! This will definitely be our go to place for illness and injuries. ♥️♥️','2020-01-23 00:59:44.000000','251751275488925'),('10158109904534450',1,'Came in to get checked out, with some non covid symptoms. Was a great experience. With everything going on with the covid, I felt very safe during the whole process. It was very clean and the whole staff was in protective gear the whole time.','2020-04-04 17:33:41.000000','167959367441528'),('10158116606667771',1,'Nice people, great service and beautiful facility','2020-07-19 22:47:33.000000','104213804456471'),('10158119088175708',1,'Great place, staff is amazing.','2020-06-10 22:31:44.000000','1698192877146046'),('10158125938895879',1,'Awesome service from Maya at the front desk and the nurse called patients in quickly!','2020-02-11 22:54:38.000000','829264323932850'),('10158145954281882',1,'After our primary care provider turned us away we opted to try Signature Care. They were quick, kind and made us feel very comfortable. We will definitely think of them first the next time we need care. As a mother, knowing these guys are here for us gives me some much needed peace of mind.','2020-02-08 17:25:20.000000','596022027480375'),('10158155170092018',1,'Excelente atencion y lo mejor que esta abierto en dias festivos, gracias al Dr. Goodman, la enfermera Shelli y al equipo medico Christina, Linda y Chelsey 😍','2019-12-25 20:01:22.000000','1698192877146046'),('10158161298569784',1,'they was really nice and caring!!! \nthanks for asking 😊🤗','2020-04-14 18:14:58.000000','104213804456471'),('10158171291681522',1,'The Signature care heights facility were great and Nicole was super helpful with my sister. She got seen right away and got her the help she needed! Thank you!','2020-01-09 03:29:40.000000','1609539722669429'),('10158173213617318',1,'Great services since we got to the center. The security guy was very nice and helpful as the receptionist, Tanishia. The doctor and nurses were so nice with me, wife and child. We are so thankful to be here! Nice job 👍🏼','2020-02-21 06:59:29.000000','461782867645453'),('10158173284199429',1,'All the staff were very nice. 😊','2020-02-19 22:32:06.000000','1787364321589026'),('10158179498919742',1,'Very friendly and quick to attend. Place is always clean and my 11 years old loves that they offer a blanket. Seen by Nurse Johnny, ER tech Teresa, RAD tech Brain Registration Natalie & DR Noor','2020-02-18 17:14:11.000000','1765121397101399'),('10158196610391474',1,'Very nice facility. Staff are very friendly and helpful. I highly recommend!','2020-01-31 16:56:23.000000','235046800697531'),('10158208788986928',1,'my husband was tested for covid here a few weeks back and said they were very gentle with the swabs test! I chose this location for my test for the same reason! and very friendly staff and customer service!','2020-08-11 23:54:02.000000','105589317817643'),('10158228469124684',1,'This is my 2nd visit. The staff and Doctors are awesome! courteous and professional. staring from the front desk to nurses and Doctors. They act quick and make you feel like you are and good hands. I strongly recommend this location.\nThank you Dr. Miller and Nurses Joseph & Reginna for making me feel welcome. Happy New years!','2020-01-01 03:45:49.000000','1609539722669429'),('10158252678221609',1,'The real answer is MAYBE! I had my appointment there today, the front desk employees were all nice and polite. My only concern is that we have a pandemic problem and I noticed the staff that took my temperature did not even clean the thermometer after and they have the one that touch the forehead. My point is, with what is going on they have to clean it after each patient use. The nurse just placed thermometer in the counter and left. Also the blood pressure cuff was not cleaned or wiped with disinfectant. I was the one to remove it from my arm. My only suggestion is this place is performing Covid testing and they are not showing any wiping or cleaning your qpparatus. I hope that they won\'t expose anybody because of no proper disinfecting. just sayin!','2020-07-28 06:42:43.000000','167959367441528'),('10158259102058516',1,'Had a wonderful experience with Ryan and Dr. Yost! quick and efficient and very friendly!','2020-06-16 16:15:21.000000','544778295636544'),('10158271524775680',1,'Samantha \nJames & Rondi\nBryan D. \nBrandon W\nDr. Patel','2020-02-25 06:04:57.000000','1609539722669429'),('10158274794708939',1,'My experience was great they were fast and so nice clean and organized! Maya the receptionist was so welcoming and quick to check me in!','2020-02-07 15:48:23.000000','829264323932850'),('10158278950644653',1,'I had a great experience at SignatureCare Emergency Center, it didn’t take long to be diagnosed and treated, my son got the x-ray done very quickly and we were out in 1 hour. Excellent service received from Dr. Cavazos, Nurse Sarah, the X-Ray tech Grace, the ER tech Elaine and Tanishia from registration who was super friendly! Great place for pediatric patients! I loved it!👌🏻','2020-01-24 04:18:11.000000','461782867645453'),('10158287292230799',1,'I was so nervous coming into the er care with my brother. He was in a car accident. However, I pulled up and our nerves were put at ease from the very beginning. Mackenzie and the security guard were so kind and brought out a wheelchair to assist my brother since he could barely walk. Once we came in, Stephanie kindly greeted us and assisted with paperwork and getting us quickly seen. Her smile helped to comfort us even more. Nurse Rollie began ice packs and pain meds to help my brother feel better which made us feel relieved. And a few minutes later he met Dr. Ybarra who had a very good bedside manner, was very kind, and assessed my brother. He ordered a cat scan and exam which Natalia, the Radiation Tech quickly took and brought him back from. Over all, under the circumstances, the staff helped to make a bad situation become much better and really cared for my love one and quickly resolved the health issues which resulted from the accident. I will always come here and refer my friends and family.','2020-02-22 03:23:04.000000','1648645701907657'),('10158312427153766',1,'Went here yesterday for a 6am appointment. They were very organized and got our test within 30 minutes. Everyone was helpful and nice.','2020-07-11 11:36:59.000000','1608991329419166'),('10158314968931259',1,'There were a few kinks while waiting but once in the back, we were well taken care of and the process was seamless. Kudos to the providers and nurses!','2020-07-28 04:43:58.000000','104213804456471'),('10158326886644424',1,'They went way above and beyond to help me. Highly recommended. Thank you','2020-07-11 12:56:14.000000','251751275488925'),('10158372136472474',1,'Very professional and kind people. The space is large, modern and well equipped. Would recommend for anyone in need of emergency care.','2020-03-04 19:08:22.000000','1787364321589026'),('10158392292968690',1,'Totally satisfied! Great experience everytime !','2020-01-02 19:46:56.000000','596022027480375'),('10158393440664246',1,'The customer care provided at Signature Care ER in STAFFORD is outstanding. After experiencing several other urgent cares this one ranks at the top. Staff was exceptionally nice and caring. In and out very quick. Located right around the corner from my house. I will be recommending to everyone. Go here before you head to a hospital especially during this time!!!!','2020-07-22 17:41:46.000000','1787364321589026'),('10158398555369202',1,'We had a sick child at 8:30 on Saturday evening. We came here and were seen immediately. Everyone was super nice and they have an extremely clean and nice waiting area with snacks and drinks. I Highly recommend SignatureCare Emergency Center-South Austin if you have the sick bugs ❤️','2019-03-17 01:28:41.000000','1698192877146046'),('10158415145964560',1,'We are from out of town and needed to take our 2 year old in for croup. SignatureCare took GREAT care of us! They got us right in, listened to our concerns, and gave us the medicine our son needed. If we’re ever in Paris again and need medical help we’ll definitely be coming to SignatureCare!','2020-03-06 10:05:07.000000','299216637560955'),('10158435901053718',0,'I DO NOT RECOMMEND anyone going to this facility for Covid testing. My daughter was tested on JUNE 27 and to this date, NO RESULTS HAVE BEEN PROVIDED. She has driven back to the clinic twice, has made numerous phone calls and sent the \'contact us\' form and has received ZERO help or cooperation...NO ONE CARES OR IS WILLING TO HELP.','2020-07-21 22:07:18.000000','1648645701907657'),('10158478383757241',1,'Thank you to the awesome staff at signature care emergency center of Midland! Jose and Vanessa were incredible. Dr. Huerta, Dr. Mauldin and Dr. Diaz were so patient and informative. You really made me feel at ease in a tough situation. Delpha, Daniel, Julie, David, Jeremy and Maria were all amazing and friendly. This experience certainly met all of my expectations and accommodated my family and our needs. Thank you again and may God continue to bless this faculty!','2019-12-02 03:09:32.000000','596022027480375'),('10158485320905681',1,'I was involved in a car accident and came to this place to get checked out because I was experiencing some pain. The moment I walked in Amy made my registration process very fast and professional. Before I knew it I was getting checked out by nurse Alvean and Keith. They were very nice professional and concern about the amount of pain I was experiencing. Soon after I saw Dr. Leavitt and she was very nice as well. The wait time was barely 5 mins and Dr. Leavitt asked me concerning questions about how I was feeling and the amount pain. My overall experience was great and I was completely satisfied with the staff. I would recommend this place to anyone.','2019-11-17 19:01:21.000000','167959367441528'),('10158507745044896',1,'I went in yesterday evening and staff was very friendly, caring, and helpful! Thank you!','2018-12-30 14:19:19.000000','829264323932850'),('10158527443845628',1,'They were very friendly and the check in and care were both exceptional. Thank you Jocelyn A for being so helpful!','2020-01-18 23:21:38.000000','167959367441528'),('10158533292194467',1,'My experience here was great. The nurses and doctors were patient, answered my questions and ensured that I was comfortable during my visit. They offered me a blanket while I was being seen. Dr. Dendy, Delicia, Duke, and Seble were very professional and pleasant.','2020-02-26 13:48:28.000000','1648645701907657'),('10158538799651494',1,'Great customer service and kind representatives. The staff are organized and happy to meet new clients. I really enjoyed my experience with them today. The ladies at the front desk made my visit great!','2020-08-05 16:56:04.000000','1765121397101399'),('10158550902744084',1,'Staff is very friendly. They truly seem to care about what is going on with you. They showed me great compassion and took great care of me and all my need.','2020-08-01 13:27:01.000000','251751275488925'),('10158577133536800',1,'Tanishia was very welcoming! Chantel and Dr. Faig were knowledgeable and willing to answer all the questions I had. Will definitely recommend and come back here in the future','2020-03-23 02:59:21.000000','461782867645453'),('10158583355559312',1,'The whole staff was so kind and helpful. They all were working so hard in the 104 temps but had a smile on there face and willing to help with everyone. Never skipped a beat! There true hero’s in today’s world! Thank you staff for your wonderful care I received','2020-07-01 02:18:40.000000','596022027480375'),('10158606813922275',1,'The staff was wonderfully amazing and I left there with proper care. They were attentive and very compassionate. I highly recommend them.','2020-03-15 12:49:32.000000','235046800697531'),('10158611938319783',1,'Very friendly and accommodating staff','2020-05-16 16:49:51.000000','104213804456471'),('10158653294616419',0,'I know it’s a hard time with COVID numbers rising but I have been trying to get an appointment here for days. I finally got through on their phone and waited for 50 mins only for the call to be dropped while being transferred. It’s frustrating as a healthcare provider that I cannot get an appointment even though I had severe symptoms and need to be cleared before I return to work.','2020-06-29 18:29:57.000000','596022027480375'),('10158668020518047',1,'had to bring my boyfriend to get seen and the speed at which he was registered by Alicia was awesome. the speed and quality service from nurse Erica and tech Kenyon was awesome as well. we will use signature care from now on.','2019-07-20 17:35:24.000000','299216637560955'),('10158693492531303',1,'I had to have a group of employees tested and they were super fast and super friendly. Wonderful service. \n\nThank you Peggy, Brian, Dana, and Cody!!!! You are truly heroes!!!!','2020-07-29 16:46:05.000000','105589317817643'),('10158701343832996',1,'Excellent staff. Dr. Straface was super helpful and pretty funny!','2020-07-21 02:01:36.000000','104213804456471'),('10158748932349284',1,'It was a very, quick easy process for my covid test, they are very organized.','2020-07-05 04:38:01.000000','1787364321589026'),('10158777978140579',1,'Thanks for the excellent care. I have no complaints. I hate coming to hospitals and this one is pleasant. Thanks Dr Wang and Tanishia. The staff was great.','2020-02-28 05:08:06.000000','461782867645453'),('10158812132279918',1,'I was blown away by the service! I was seen in by a nurse and doctor within 5 of being there. Everything is so clean, nice, and professional looking. The staff, Dr.pham, nurse alvean, radiologist Marcus,ER tech Keith and vanessa at registration were so kind, welcoming, and helpful. They made sure I was informed of everything I needed to know, gave a nice warm blanket, and made sure I was comfortable and not in pain the whole time.','2019-11-19 20:31:00.000000','167959367441528'),('10158824780602646',1,'No wait, clean, better than any other urgent care or er in killeen as long as these doors are open we will continue to support the staff from the front counter to doctor was WONDERFUL','2019-10-15 02:01:00.000000','251751275488925'),('10158831640659256',1,'The care is top notch! I had great and timely care by Mollie, Sergio, Eric and Dr. Henderson. Thanks again!!!','2019-10-23 03:29:56.000000','235046800697531'),('10158837995233357',1,'super nice and can do everything a hospital can do without the super long waits.','2020-02-06 20:59:57.000000','461782867645453'),('10158855468736521',1,'Noone wants to come to the ER, but from the time I walked in Stephanie, explained the difference between urgent care and this ER because I was confused, but she made me feel so comfortable that I stayed. Then I met w/ Rollie, the RN who was thorough, Dr. Ybarra came in and allowed me to explain what I was feeling and had been feeling before he began asking questions and I appreciated that, a doctor that truly cares. and Natalia, the Rad Tech was so kind and explanatory w/ me as I asked so many questions, in addition to helping me in so many ways. And she brought me some snax :). Dr. Ybarra came in and thoroughly explained everything and I was actually smiling at the end of my ER visit. This ER team was awesome and absolutely rocks!','2019-10-22 02:22:01.000000','1648645701907657'),('10158868289008203',1,'Good experience fast service if you get there early.','2020-06-15 14:35:04.000000','1698192877146046'),('10158882722929396',1,'The staff was awesome an nurse Charlotte took good care of me','2020-08-12 08:23:53.000000','461782867645453'),('10159032185628782',1,'Extremely friendly and knowledgeable staff. Took care of me really quick with accuracy.','2019-09-27 18:00:27.000000','326347177710316'),('10159051529567004',1,'always great! friendly and fast','2019-12-23 01:23:46.000000','596022027480375'),('10159055188431336',1,'very quick and friendly.','2020-02-20 17:13:45.000000','299216637560955'),('10159094673494505',1,'No waiting time. Amy was friendly at check-in and hand sanitizer and soap readily available. Social distancing observed with all staff. Professional and attentive From ER tech Brian to Nurse Mina. Thank you for your help.','2020-08-03 15:37:56.000000','1608991329419166'),('10159117942237079',1,'they made me feel at ease as soon as I came in. Dr. O\'Mally and his team\nAlvean, Marcus and Jordan. took very good care of me in my embarrassing situation\n up most professionalism. you guys are life savers.\n\nthank you.','2020-04-08 21:08:33.000000','167959367441528'),('10159134526834617',1,'Muy buen servicio y muy profesionales!\n\nGreat service and very professional!','2020-07-23 20:44:38.000000','1787364321589026'),('10159210795928219',1,'Always have a wonderful experience here! My little one unfortunately has asthmatic episodes from time to time. We’ve had to come a few times because of that. They always get us back to a room quickly and we never have to wait long for the doctor to come and assess the situation. You guys are amazing for making us feel at home when we have to stay for overnight observation. Shoutout to Anne,John, Matt, Ashley and Dr. Veloso for making the situation easier on us!','2020-02-09 14:58:53.000000','299216637560955'),('10159251948868782',1,'Great experience Dr Patel and Sarah were so nice and informative. Tanishia was also helpful in the front reception area. Our son left feeling much better!','2019-11-27 08:36:24.000000','461782867645453'),('10159274785026562',1,'I had a very positive experience at SignatureCare off Slaughter Lane from the moment we arrived. All of the medical practitioners were personable, communicative and positive. Dr. Leong offered excellent patient education and went the extra mile to make sure that I understood his diagnosis. I would highly recommend this facility.','2019-12-23 23:29:50.000000','1698192877146046'),('10159289811104778',1,'Friendliest medical staff I have ever met. Dr. Ashbrooks, Kara, Courtney, and Gunnar treat you like a VIP. Helped me out a ton when 3 other places couldn’t.','2019-12-16 22:46:29.000000','235046800697531'),('10159320634948009',1,'Very pleased with my experience here. Was in & out in under an hour. Lorena at the front desk was very welcoming. Nurse Brad. & Dr. Akunyili made me very comfortable.','2020-01-12 17:48:42.000000','326347177710316'),('10159380177321978',1,'Excellent care and service','2020-03-04 05:59:19.000000','235046800697531'),('10159413559006258',1,'this place is very helpful and quick','2020-02-12 22:31:09.000000','544778295636544'),('10159471038675558',1,'Service and staff were amazing! Thanks Angel and Tanishia.','2020-03-18 01:17:00.000000','461782867645453'),('10159507216573902',1,'I was very happy with the service I received Dr.Daniels. Rollie Natalia and Stephanie','2020-01-25 06:17:18.000000','1648645701907657'),('10159512907449546',1,'I wanted to take a moment to shout huge praise to SignatureCare Emergency Center- South Austin. I took my 18 month old in this morning to get an x-ray to confirm he didn’t swallow something he shouldn’t have. From top to bottom these guys were so professional, efficient and kind. When they confirmed he had swallowed the dangerous thing, they quickly, empathetically and without judgement got me set up to transfer to Dell Children’s. I was really impressed with the entire experience. \n\nSpecial thanks to the nurse and manager Adam, Dr. Goodman, Radiologist Linda, and the woman at the front desk, Aileen. I want to come back and hang out with you all without the scary incident.','2020-01-20 05:04:35.000000','1698192877146046'),('10159548486132222',1,'The people were all so nice and the wait time was nothing!','2020-03-05 14:11:17.000000','1608991329419166'),('10159581463453066',1,'Great place Tammy was awesome very attentive!\nCourtney was very kind and patient during the X-rays and Tiffany explained the paper work throughly! Dr Curtis explained every thing very well, enough to make sure my stubborn butt does as the Dr orders so not to end up having surgery!','2020-02-08 01:19:43.000000','299216637560955'),('10159702770518312',1,'Everyone here is absolutely wonderful and made the experience incredibly relaxing. Highly skilled professionals here and customer service is top notch! Thank you Dr Thomas, nurse Lynn, Daniel B and the sweetest Tanishia holding down the front! I highly recommend this location to everyone!','2020-01-06 06:25:25.000000','461782867645453'),('10159827695172468',1,'This hospital is excellent great team Amy is kind and quick .. The nurse Dana was very fast and also kind we talked about our pets and Dr Harjai was very imformative.. Thanks to all others I will be using this ER in the future.','2020-03-20 17:07:08.000000','167959367441528'),('10159844130749196',1,'Great facility, Great care, Great people 💚','2020-04-06 00:58:11.000000','167959367441528'),('10159934799849937',1,'The staff are so kind, friendly and helpful! I would highly recommend SignatureCare to all my friends and family!','2020-06-12 17:44:35.000000','1698192877146046'),('10160036516593647',1,'The staff here was amazing I rather come here then any other place else 🤗','2019-07-25 18:27:18.000000','1765121397101399'),('10160036518303647',1,'Staff here is amazing 🤗 I’ll come here then any other place','2019-07-25 18:27:57.000000','544778295636544'),('10160128055141258',1,'Leah was great! Very nice and informative','2020-08-01 17:02:38.000000','596022027480375'),('10160216724614498',1,'The staff, nurses and doctors are amazing!!!!','2020-08-05 16:06:35.000000','829264323932850'),('10160701959145252',1,'Husband needed to have his calf muscle pain further evaluated. Came here and was swiftly seen by Dr. Singla. Their team is awesome, starting off with Jessica at the front desk. Not to mention the rest - Gus, Becca, Tati and Chastity, who were very friendly and accommodating. The facility is clean and literally a walking distance from our subdivision. Will definitely recommend SignatureCare ER. They truly care!','2017-06-10 03:36:47.000000','1787364321589026'),('10160720590575585',1,'Always very nice and super fast. The only ER I will use!','2018-09-03 21:47:24.000000','326347177710316'),('10160875849645537',1,'My daughter and I went in because she had been having nose bleeds. The office was very clean and the staff was efficient and expedient.','2018-09-24 13:47:32.000000','544778295636544'),('10160937040210187',1,'Everyone was wonderful! I took in my child for a sprained ankle. At the moment we walked in, we were greeted by Malissa. The nurse, Nichole, asked my child all the necessary questions and listened attentively as my child rattled on about everything that happened. She also offered us a drink, which I thought was nice. We were then moved to the \"Moana Room.\" It was nice to see they have a decorated for kids! Dr. Ken Frausto came in and looked over my child\'s ankle, while having a conversation rather than just drumming off a serious of questions. An x-ray was ordered and the radiology tech, Laura, was fantastic as she calmed my child\'s nerves.\nAside from the wonderful care, friendliness, (... and great snacks!), what I appreciated most was everyone\'s demeanor with my child. From our experience, it is obvious they care about everyone who walks in!','2018-10-04 15:05:40.000000','829264323932850'),('10161050953495317',1,'I was so impressed by the level of customer service and patient care during my recent visit. Everyone from Cindy at the front desk to Wendy, Selina, Eda, Coraly and Dr. Ding made me feel important and that they genuinely cared about my well-being. 100% will return in the future to get quality, efficient care.','2018-12-01 00:23:30.000000','544778295636544'),('10161158074550597',1,'We were able to see Dr Yost for a swollen foot issue as our PCP was concerned with blood clot. Fantastic experience with Dr Yost, Kim the receptionist, Lucas the RN, and Sherri, tech. Thank you all for the excellent care.','2018-11-23 20:32:48.000000','235046800697531'),('10161294918315453',1,'Staff is great! Friendly, courteous, efficient and listens to you very carefully with their full attention. \n\nThe best part was the warm blanket, Gatorade, and animal crackers while watching tv in my private room. 😁\n\nI really wish I could remember all the names of those who helped me today. They were all awesome. I even got a post op call to see how I’m doing.\n\nDr: SYLVESTER, MD, CRAIG F \nNurse: Joseph Ryan B deserves 5 stars!','2019-01-20 01:35:03.000000','1609539722669429'),('10161308594035182',1,'my kiddo has been sick for some week now and when we came in erica made sure we were brought back pretty quick and eberyone from the nursing staff to dr Smith were simply amazing with her. couldnt ask for better service','2019-01-11 19:42:05.000000','1765121397101399'),('10161316297605451',1,'ABSOLUTELY AMAZING! \nThe fastest care I’ve ever gotten! Lovely and friendly staff, beautiful facilities and thorough care! \nI would recommend this place to everyone!','2019-01-03 21:15:26.000000','326347177710316'),('10161345465395164',1,'The whole experience definitely went above and beyond what you\'d expect from a health care visit. Even from the initial phone call, I was treated warmly and with care. \n\nThe check-in process was quick and I hardly waited to get called in. The nurse Shelli was so friendly, personable, and funny. And the warm blanket was such a nice touch. :) The physician, Dr. De Waal was also very friendly, funny, and thorough when explaining my options. \n\nI got a follow-up phone call the next day, and a hand-written letter a few days after. Definitely recommend this place for any emergency or not so urgent visits! The comfort and care will exceed your expectations.','2019-01-25 02:53:39.000000','1698192877146046'),('10161356488015035',1,'Dr elsbecker is such an incredible doctor along with his incredible staff; Freddy, Linda, Shelli, Natasha, everyone provide such exceptional service and has a smile on their face and has ability to make you feel loved, welcomed and comfortable! The best service in town!','2019-01-23 23:34:56.000000','1698192877146046'),('10161517522585112',1,'They took such good care of my son when he was having chronic ear infections. He had an uncontrollable fever on the weekend and they fixed him up until I could get in to his doctor. Highly recommended!','2018-10-13 19:12:08.000000','1698192877146046'),('10161585403170182',1,'the mission bend staff is amazing!!! Cindy and Dr Soli as well as nurse joy were soo good to me','2019-03-30 01:20:27.000000','544778295636544'),('10161588329070276',1,'Lorena, Dr. Harjai, and nirse Jacob O were amazing!!! I recommend signature care 100%!!!','2019-06-07 04:40:51.000000','326347177710316'),('10161610716240074',1,'I had to come here while on my vacation, the staff was fast, very friendly, and extremely helpfull. Highly reccomend this location!','2019-03-07 17:16:50.000000','1698192877146046'),('10161642432495626',1,'Thanks to Kelly, Jackie, Brittney and Dr Boester. I wouldn\'t want to go anywhere else.','2019-03-25 00:45:08.000000','1608991329419166'),('10161682068745531',1,'From the moment that I walked into the front door of the facility, until I left, it was “5 star” service. The empathy that was shown as well as the quality of care that was provided by the entire staff was stellar. I would recommend SignatureCare Emergency Center located in Stafford, TX to anyone.','2019-03-18 13:19:43.000000','1787364321589026'),('10161703697855171',1,'I brought my mother to this facility for chest pains and the staff was quick and very attentive. They took her minutes before her appointment time. Chasity did her IV and was extremely careful. The nurse James and Dr.Lindsay were extremely informative and listened to all of my mother\'s concerns. I would highly recommend this location.','2019-03-12 01:42:05.000000','1609539722669429'),('10161809129915243',1,'We took our 15year old in when he went into SVT, Austin and Erica, Dr. Jorden and the entire Signature Care staff provided excellent care! If we should ever need anything again we will for sure go back!','2019-06-07 18:51:19.000000','299216637560955'),('10161887268905254',1,'Took my son in and he was immediately cared for and in such a wonderful environment of nurses and doctors! Erin did an excellent job of ensuring we were in and out quickly.','2019-06-23 21:48:15.000000','596022027480375'),('10161889187090262',1,'Night owl shift is holding it down! Nurse Kat, Barbara at the front, and Dr. Jones are phenomenal... the Dream Team!','2019-07-10 09:27:11.000000','251751275488925'),('10162059648160371',1,'fire ant bites my husband and he had a bad Allergy reaction. so I take him here. there was no watiting list. the staff were great and doctor Do was awesome .. highly Recommend here to anyone','2019-08-13 16:03:16.000000','1787364321589026'),('10162144771335370',1,'Love coming here. They’ve always been kind and caring to my kids and today, to me. Shanna, Manny, Beatrice, and Dr. Mauldin made sure I was comfortable and were very caring.','2019-07-22 15:21:57.000000','237100240304186'),('10162163470365142',1,'Excellent service, everyone ver sweet and helpful.\n Thank you to doctor B. Thomas \nNurse : Tammy W.\nRad Tech: Nanci B. \nand special special thank you to Ashley S. we was very sweet with us and made mommy feel much better with in stress. Super sweet with baby Joey thank Ashley S.','2019-08-28 12:44:46.000000','461782867645453'),('10162384566830347',1,'Came in today for bad chest pain. Dr Young, Lucas, Kim, and Sherri have taken great care of me. I came in and they automatically went to testing to find out what’s going on. Extremely thorough and friendly. I won’t go anywhere else!','2019-01-22 16:12:30.000000','235046800697531'),('10162460253325201',1,'We came tonight because my son felt bad, but the staff were very helpful and welcoming, thank you Raymond Samantha and Doctor Hethman for all the care and for letting my son feel better.','2019-10-21 05:04:37.000000','1787364321589026'),('10162597316220313',1,'Great facility to be treated at. Tricia took great care of me.','2019-11-22 02:30:13.000000','167959367441528'),('10162652777750106',1,'First visit here and the staff Very friendly and helpful staff, very little wait time. The entire staff was very professional!! Would highly recommend!','2019-10-14 00:16:03.000000','596022027480375'),('10162674712465019',1,'Wonderful staff. Very attentive and caring.','2019-09-01 11:53:12.000000','544778295636544'),('10162685661605262',1,'Nurses Irving and Dr. Zheng were great with my 6 year old. They saw us very quickly and gave us a diagnosis within minutes. I would definitely recommend this location.','2019-12-31 02:14:59.000000','829264323932850'),('10162705747900647',1,'Everybody was so helpful and nice!!! Especially Tanisha & Sarah!!!! Carazos, James, & Laura were great too! Sarah and Tanisha were awesome with my 4 year old daughter!','2019-09-25 01:57:00.000000','461782867645453'),('10162767004985241',1,'This place is amazing, they have always been so kind when I have had to come in for my issues. Today I came in feeling super sick. Delicia, Karen, Son Le, and De. Alloju made me feel comfortable and as if I was the only only patient at the time. They are caring, understanding, and personal. Will always come here for any further Emergency.','2019-12-14 14:28:13.000000','1648645701907657'),('10162796062025010',1,'Great experience! Fast and great staff. A lot of fun all things considered haha. Thanks again Kristina, Leah, & Dr Thomas! Y’all made getting stitches fun!','2019-12-19 02:10:50.000000','596022027480375'),('10162810267995177',1,'The staff is so kind! A much more enjoyable experience than waiting hours on end in a waiting room of a hospital ER.','2020-01-26 06:07:28.000000','251751275488925'),('10162819932640214',1,'Dr.Elsbecker, and Gabriel took wonderful care of my husband after a random allergic reaction. Everyone here is always efficient, friendly, and ready to help you feel better asap. I cannot recommend them enough!','2020-02-19 17:55:07.000000','1698192877146046'),('10162856696065244',1,'Quick, easy, and always very nice','2020-02-18 19:20:46.000000','1608991329419166'),('10162877113456337',1,'I highly recommend SignatureCare. They are quick, professional, caring and follow through. Dr. Golla Pradeep (MD), Kristina (nurse), Laura (radiology) and Angela (front desk) treated by child with kindness and made sure both she and I understood the diagnosis. here was NO wait and we were on our way as soon as the diagnosis was completed.','2019-11-21 07:29:34.000000','829264323932850'),('10162878941935224',1,'I’ve been here a couple of times and the service is amazing! Front desk staff always friendly and kind when you most needed it. They have bunch of goodies meanwhile you are waiting for the doctor and the service is always really fast! I highly recommend this ER!','2019-12-24 22:35:10.000000','1698192877146046'),('10162905957655451',1,'I cannot begin to express my satisfaction with the staff and services at the Signature Care I visited. From the front desk, to the nurses, and the doctor. Each and every one of them was courteous, professional, and made my visit as comfortable as they possibly could. My wait time in both the waiting room and the exam room was short . Dr. G & the cardiologist on call put me at ease and explained everything. \n\nThanks!!','2020-01-17 11:08:43.000000','1609539722669429'),('10162926333225063',1,'Great care! The staff was friendly, quick and very knowledgeable.','2020-03-06 03:49:02.000000','1698192877146046'),('10162939286060694',1,'They provide excellent and fast service! Dr. Wang and Nurse Kristina provided excellent care.','2019-12-20 20:03:54.000000','544778295636544'),('10162944367820062',1,'Love this emergency care staff always very professionals and make you feel better .highly recommend this clinic','2020-03-14 23:11:15.000000','251751275488925'),('10162953471895471',1,'Omg! I just found my go to spot for getting sick. When I tell you these people are Amazing! I just took a coworker to get her leg checked out from a fall. They treated both of us like Royalty. Maya was so friendly when I walked in. I needed a wheelchair to help her get in. Scott came to assist with getting her out of the car with a smile. Then we had Kristina come in to get more information and she was very kind too. Dr. Ortiz was so Caring and nice. I am totally loVing this place. If any of my family gets sick and we can’t get in to our primary care doctors we will be coming here.','2020-01-17 15:01:34.000000','829264323932850'),('10162967027725371',1,'they were very helpful and very caring with my daughter and her feelings','2020-02-19 17:03:14.000000','299216637560955'),('10163027836510293',1,'I have been here 3 times in the past 3 months for strep related issues. Every single time I have been treated so well and taken care of in such a professional and timely manner. So thankful for signature care to help get me through my sickness each time. McKenna in registration was so kind and helpful. Nurses Debbie, Jenci, & Susie were so kind and caring. Ashley K, the radiology tech, was so patient with me helping me through getting a CT scan. I would highly recommend signature care to all of my friends and family!','2020-01-31 21:18:43.000000','299216637560955'),('10163075945850165',1,'Excellent service!! Thankyou!\nDr. Henderson\nNurse Sarah\nEr tech Angel \nRegistration Tanishia \n\nYou guys were awsome!!! \n\nIn and out super fast!','2020-02-14 01:36:02.000000','544778295636544'),('10163181960500472',1,'Dr Jaber, Joseph,Lonnie, shaylene, and Alyssa were superb','2020-02-08 15:29:31.000000','1787364321589026'),('10163217272755227',1,'Fast, friendly service. Clean and quiet facility. Convenient location- highly recommend','2020-01-26 20:51:59.000000','829264323932850'),('10163244090575402',1,'I was quickly checked in and taken to a room. The entire staff was very attentive, kind, and helpful. The facility was nice and clean.','2020-04-05 13:53:46.000000','299216637560955'),('10163269742015006',1,'Jenci, Valerie, Tiffany, and Dr. Jordan were all wonderful. They made me feel like I was their only patient. Thanks for all you do, especially during these trying times! I recommend this place to everyone!','2020-04-13 20:35:45.000000','299216637560955'),('10163327579435284',1,'Very quick and efficient care. The receptionist Patricia, the nurse Jose and Dr. Souman were all amazing. Everyone was nice and professional, one of the cleanest facilities I have visited.','2020-02-09 18:37:59.000000','167959367441528'),('10163373658840324',1,'I WISH I COULD GIVE 100 STARS! This place is clean and sanitary. the service is quick and thorough! Jocelyn at front desk explained my paperwork in a way where I could understand each part. Chris and Alvean were amazing and great with my daughter!! 100 thumbs up! the only urgent care I will use in the future!','2020-04-18 15:00:32.000000','167959367441528'),('10163393430130624',1,'This emergency facility was very quick and got me in and out. Tanishia was very friendly and very efficient with getting me in immediately. Dr. Erica Daniels was a wonderful doctor and answered all my concerns. Would definitely recommend this place to anyone!','2020-03-02 05:40:40.000000','461782867645453'),('10163419130490010',1,'Fast and great staff. Very happy! I was taken care or by Sita, Vanessa, Lisa V., Carolyn and Pate','2020-04-13 00:37:50.000000','596022027480375'),('10163488073535425',1,'Great and fast service. Staff is nice and patient. The Doctor is so professional and did a great job stitching my son\'s forehead.','2020-05-28 01:40:36.000000','829264323932850'),('10163728247565511',1,'Ryan and the other staff members were friendly and it was easy to get an appointment.','2020-06-16 16:16:15.000000','235046800697531'),('10163831764495367',0,'This place on Wirt is just a waste of time! They tell you to come back the next day at a certain time and then when you get there they tell you to come back the next day but earlier because other people showed up before you. I wasn’t there for free, I was going to pay to get tested and this is how you treat people. Y’all are ridiculous!!!','2020-06-29 14:51:40.000000','1765121397101399'),('10164014585770416',1,'I got my second covid- 19 test at this location. It was midnight and we were probably there till about 1ish. All of the staff, Receptionist, Nurses and Doctors were all extremely polite and kind. I know it is a chaotic time in all Hospitals / ER centers but not once did they seem frustrated or impatient. I highly recommend this place. Thank you to the staff of Signature Care - Montrose for all that you all do! So extremely grateful to have had an exceptional experience here.','2020-07-11 01:19:29.000000','1608991329419166'),('10164169505440494',1,'I had a great experience here getting swift and professional care. They are the only place in town offering rapid COVID tests and with the backlog in normal testing methods, this is the only way to get results without having to wait for weeks. Rebecca V and Amanda C were great at the front desk and Dr. Mauldin was kind and professional. Nina the ER tech was very nice as well. The facility is also very clean and state of the art. Overall, I thought the service was great.','2020-07-30 19:53:32.000000','326347177710316'),('10164252189410624',1,'The nurses had a long day, yet they were pleasant, patient, and informative. The process they had in place to keep folks socially distant was commendable for a clinical setting. I was pleased by their proficiency and professionalism.','2020-07-21 21:56:30.000000','829264323932850'),('10200407928933918',1,'Very patient . Fast service . Warming and caring. From the receptionist Carly . And Dr.Wang were all great','2020-02-27 03:43:16.000000','829264323932850'),('10202601787582139',1,'Kat, Marty, Dr. Rose, Linda, and Aileen were all super helpful while we were doing our rapid COVID test that only took 15 minutes. I’m very thankful for them putting in so many hours over the past weeks and months and making this process as smooth as possible. Dr. Rose, the physician on duty, was even passing out paperwork for people in the drive through—I love that servant leadership and no job too small mentality. Thank you!','2020-06-15 14:22:44.000000','1698192877146046'),('10204578822506700',1,'Last night was my first time and they were very professional, friendly and kind. They treated my son with care and I thank them for that. A great experience there. I definitely would recommend this center.','2016-10-02 15:53:49.000000','1609539722669429'),('10204607340659409',1,'Excellent service and the time spent in there was less than two hours total. We got in before we could even finish the paper work. I work in the field so that is awesome. Staff was great. Nice and very clean facility. I would go back if needed anytime.','2016-10-04 22:56:04.000000','544778295636544'),('10204692874398767',1,'very good experience. the staff was nice and courteous . Dr Yost didnt beat around the bush. thanks to Dr Yost, Terri, Lucas and Sherri.','2018-11-23 18:37:44.000000','235046800697531'),('10204833565797070',1,NULL,'2016-10-25 02:51:15.000000','1609539722669429'),('10204941277167618',1,'Dr Yost is very thorough and does a great job explaining diagnosis and treatment.\nNurse Jennifer provided exceptional care, and Kelly and Austin in registration made the paperwork process very simple.','2018-12-21 04:39:29.000000','235046800697531'),('10204951787350712',1,NULL,'2017-02-28 05:29:02.000000','1608991329419166'),('10205024015596781',1,'Excellent customer service they got me in and out! Love the fact they have the advanced technology for testing with out having to go to the actual emergency room!','2016-03-08 10:08:54.000000','544778295636544'),('10205033648837963',1,'I was a patient at this emergency center Sunday November 4th around 3 pm. The staff on duty was Amazing! from the receptionist to the ambulance workers. Never have I ever had an emergency experience as this.','2018-11-08 21:56:28.000000','1787364321589026'),('10205042045247817',1,'Best place to come when you have a real emergency. Everyone was very friendly and took care of me so fast. My wait was less than 5 minutes. This place made me feel so welcomed and took care of me.','2018-08-28 05:00:48.000000','1765121397101399'),('10205386938868380',1,'The staff was very helpful and informative. They took very good care of our daughter. Especially the RN’s Anthony, Jeri and Jacob and the Tech’s Natalie and Kirsten. Thank y’all!!','2019-02-13 00:36:14.000000','326347177710316'),('10205393586875710',1,'We had such a great experience— awesome, caring staff (Dr Henderson, Angela, Michelle and Frank) and a beautiful facility. We were treated like family. Thanks again! Will definitely recommend!!','2019-03-23 02:47:32.000000','251751275488925'),('10205446945130463',1,'Wonderful service!! Amazing nurses and doctors!!','2019-01-14 03:53:09.000000','1765121397101399'),('10205564845196954',1,'Dr. Souman, Amy of registration, and Agnes the RN were very nice and helpful today. Would highly recommend to anyone!','2019-05-04 23:35:51.000000','1608991329419166'),('10205652536989822',1,'They are fast, consistent and friendly! Thanks for the experience Brad, Jacob, Dyveliz!','2018-10-26 14:26:26.000000','326347177710316'),('10205692624431700',1,'Dr. Spangler, Duke-nurse, Amy-registration and Waldo- rad tech we’re very friendly and helpful. They made us very comfortable. From check in to check out the service was great.','2019-06-12 13:03:48.000000','1648645701907657'),('10205832622450863',1,'Although it was no fun to visit the emergency room, I loved my experience here. Everyone from Dr. Zhen, Nurse Lynn, Laura H, Matthew C, and Tanishia W. all treated me like family and made every effort possible to make me feel comfortable and well taken care of. I will use there services as needed in the future and refer them to everyone I know.','2019-06-17 14:40:39.000000','461782867645453'),('10205887240658185',1,'I came in feeling pretty bad. Keo got my paperwork started and sent me right into the room with Kara. She was very friendly as she took my vitals. Dr.Yost was very informative and made sure I understood everything that was about to happen. he explained the test and our next course of action. Gunner was great. He did a fantastic job with my blood work and is super cool. Definitely a 5 star experience and I will only be coming here when I\'m sick','2019-06-03 17:39:25.000000','235046800697531'),('10205935792351790',1,'great staff! fast & friendly \nHighly recommend','2019-06-16 17:46:56.000000','596022027480375'),('10205982707004933',1,'A great place kind and very thoughtful to take care all your needs! Dr. Vakey, Morgan xrays Anthony, RN very kind, Natalie- Texh thoughtful! Highly recommend','2019-03-18 21:32:36.000000','326347177710316'),('10206051505923654',1,'the excellent service helpful and caring staff Kimberly p Joseph Kathern L. and also doctor Boester were so extremely helpful and detailed.','2019-10-12 19:49:20.000000','1609539722669429'),('10206051562246074',1,'Went here has nirse Nicki and Dr Dawaal they are very nice and good at what they do','2019-05-15 18:52:35.000000','251751275488925'),('10206077596815156',1,'I visited the Westchase ER location in the midst of a crisis. The entire staff from the front door to the radiology room were absolutely amazing. Thank you all for the service and the warm welcome of my large family as they came to visit. I appreciate the professionalism from Victoria, John, Dr.Jolly,Leslie, Holly,Irving,Sherwin and Dr.Singla...and last but but least Brenda.\nYou guys are amazing. Thank you','2019-08-15 04:26:23.000000','829264323932850'),('10206129697236843',1,'Thank you for the care provided, for being open. caring staff, and very attentive\nwonderful staff Maria,Manny,Magali,Pete','2019-05-28 16:35:34.000000','237100240304186'),('10206188064217286',1,'When you need ER services but dont want the wait... this is where you need to go! Dr. Yost is an amazing doctor and very through. Tonight we had Amber and Gunnar and they were also amazing. A huge thank you also to Tobie who got us in a room quickly!','2019-07-18 04:27:53.000000','235046800697531'),('10206447461101305',1,'With my past experience, this ER is quite pleasant and very friendly. The staff I encountered the time I was here were extremely friendly and comforting. I would always recommend this location. I can’t single who was better than the other. Tanishia, Fatima, Sarah, Daniel and Patel are amazing! Thank you for your care!','2019-11-27 05:24:26.000000','461782867645453'),('10206450721183718',1,'Came here for the first time and I truly recommend! They are very kind people and very fast care! Mr. Smith and Anthony were very helpful and took good care of me! I definitely recommend coming here!','2019-08-12 21:48:26.000000','326347177710316'),('10206458412574433',1,'I was made to feel mportant and like my concerns mattered. Dr. Hall, Lynn and Courtney were all very accommodating, professional and thorough.','2019-12-27 19:56:40.000000','167959367441528'),('10206510360154754',1,'Great staff. \nDr. Ding\nNurse Alvean\nStacy, Airianna and Julia . \nThanks for taking great care of me.','2019-02-06 14:25:52.000000','1787364321589026'),('10206586232330836',1,'I had a wonderful experience! Very fast and excellent care! Robin, John and Courtney made sure I had everything I needed! Highly recommended!!','2019-04-29 23:59:52.000000','299216637560955'),('10206606831166111',1,'I want to thank Leo rn , Carolyn rad tech, savannah rn , Courtney rn and Daniel tech for taking good care of me. They all did a great job.','2019-10-10 09:16:02.000000','596022027480375'),('10206639122692685',1,'I would definitely recommend Signature Care ER. Great experience with great staff.','2020-02-24 15:37:39.000000','299216637560955'),('10206652460905908',1,'everyone here is super friendly and very helpful from time I can in I would Highly recommend coming in for your emergency needs.','2019-11-14 13:48:05.000000','251751275488925'),('10206714514058752',1,'Awesome Service, Dr.Nylund Nurse Sarra Tech Christian and Mr. Sherwin did an Awesome ok me job and made us feel like we were at home \nfast pace','2020-02-04 03:38:09.000000','829264323932850'),('10206754193168766',1,'Dr. Faig, Amy, Irving, and Holly were the coolest! Very down to earth people, I trusted them all with my life!','2019-09-13 02:40:37.000000','829264323932850'),('10206836033655039',1,'I have never loved an emergency center so much! The staff was lovely & kind to my 2yr old they even assured him that the visit was for mommy. Er Tech Nichole was just the best so sweet & Rad. Tech Lonnie too was just very patient in assisting me with my little one while gettin x-rays. Dr. Herman was also kind and very professional not at all dismissive he listened & just the whole process was quick & great definitely coming back if we ever need to!','2020-02-06 17:08:48.000000','1787364321589026'),('10206848322682317',1,'The staff was prompt and friendly. They took great care of my son and put a smile on his face.','2020-04-18 19:33:44.000000','104213804456471'),('10206884640791031',1,'Absolutely love this place. Woke up with excruciating pain and came in early in the morning. There was no wait and the entire staff could see the pain i was in, and right away got to it and made me comfortable. Dr. Patel was spot on & all the nurses have been beyond helpful. Highly recommend this place and so thankful for Dr. Patel, Tammi, Nanci, Norma, & Vy for caring for me so well.','2020-02-23 22:55:44.000000','461782867645453'),('10206932059855945',1,'We had a great visit with Dr. Appiah. The registration, Tanishia, was very pleasant and quick getting us registered. The nurse Chantel was super sweet and saw us really fast','2020-02-24 01:32:12.000000','544778295636544'),('10206943462901183',1,'I love this place staff friendly an ms Krishna was awesome','2020-02-18 21:01:38.000000','544778295636544'),('10206952592969257',1,'Everyone was super professional, but yet personable. They were very prompt in admittance and care. Highly recommend them. Hopefully I won\'t have to go back anytime soon, but if the need arises I will for sure go back to them for my care. Thank you all for such good care!','2020-02-04 01:46:39.000000','299216637560955'),('10206989010360699',1,'Unbelievable care , best er visit we have ever had !! Facility was very clean and nice decor! Jennifer at the front desk was very welcoming and nice ! Christina R was our nurse , she was Very attentive and seemed to really care ! ( which other er hospitals seem to treat people like a number —- NEXT!!! ) Chelsey took hubby’s vital signs , offered warm blankets and pillows, all with a smile and bubbly personality. Even the X-ray tech Christina was nice and very professional. Dr Elsbecker was amazing , listening to our concerns he was very knowledgeable and understanding! Overall I would give 10 stars if I could !!! And definitely would recommend to family and friends!','2020-02-21 20:25:14.000000','1698192877146046'),('10207256048515573',1,'First time here and they provided me with excellent service. Okarys in the front was very professional and also attractive. She did everything in a timely manner and the wait wasn’t long at all. Joy and Fanny made sure I was comfortable and continued to check on me to make sure everything was good. Ralph the ER Tech walked me through everything that he was doing which was really helpful. Dr. Wang the physician was very knowledgeable about what was going on with me and gave great tips on how to better my situation. Overall, I would recommend SignatureCare Emergency Center (Mission Bend) to any and everybody. Thank you for your awesome service.','2020-02-19 13:36:10.000000','544778295636544'),('10207465287385988',1,'I brought my nephew in with chest pains. He was taken right back. The doctor kept me informed with all testing being done. Very satisfied with the experience.','2020-02-01 18:59:26.000000','544778295636544'),('10207556880917646',1,'Mederedith, Alvean, Tricia, Dr. Wang and Amy were wonderful. They treated me well! Very attentive and love that.','2020-03-26 22:35:05.000000','167959367441528'),('10207599446699593',1,'when we arrived, Donna the reception helped us right away, got me back to an exam room so that Dr. Das could exam me. staff was very friendly and took care of me as though I was family. highly recommend','2020-05-17 06:23:39.000000','104213804456471'),('10207647168133469',1,'Friendly staff and clean facility, overall great service!','2020-07-29 03:21:30.000000','105589317817643'),('10207723850850111',1,'Excelente customer service.','2020-07-13 01:48:20.000000','829264323932850'),('10207780072855110',1,'Vanessa, Dr. Dang, nurse denise, and others were all very nice and took care of me. they gave me the correct prescription after other doctors didnt.','2020-04-29 09:26:27.000000','167959367441528'),('10207847329337476',1,'Cody and Kelsey took great care of us as we got tested. It was very fast and efficient. Overall a great experience as getting tested could be.','2020-08-03 21:33:27.000000','105589317817643'),('10207847640866757',1,'Went to the memorial location, on a Friday past 10pm. The staff was friendly, fast, And we were in and out pretty quick.The doctor was very professional and we were there for a tooth issue, which worked out perfect, because there was nobody open for tooth problems. I will definitely be using them again.','2016-10-10 02:14:36.000000','1765121397101399'),('10207911721386165',1,'Highly recommend. The staff was amazing and friendly from registration, Donna M to the my nurse Keylee K and the Rad tech Martha H and my physician Dr. Weston. They took amazing care of me and explained everything to me and made me feel welcomed.','2020-03-30 02:31:28.000000','104213804456471'),('10208052940278644',1,'This place is wonderful! They helped me with a broken glass that was stuck in my leg. They were so kind, professional. All of the staff was very friendly! I highly recommend this ER! Thank you for taking care of me and making me feel so comfortable and relaxed in a highly stressful situation 🙏','2020-08-01 21:21:44.000000','1698192877146046'),('10208256152398966',1,'Manny, Ector & Casey at Signature Care Odessa \nAre professional really friendly made testing easy and fast','2020-08-04 21:50:30.000000','237100240304186'),('10209652573350465',1,'I went to Signature Care as a follow up to a visit the day before. A horrible headache lingered with a pain scale of a 9. Wiyhin 30 minutes of arrival they had confirmed nothing was happening but a migraine. With the correct medicine administered it was better quickly. Thank you Brad and Morgan. Along with the doctor yall were wonderful.','2018-09-06 18:03:39.000000','326347177710316'),('10210203284838189',1,'As always the service is prompt and awesome. Staff is always great. Would recommend this place to any and everybody!!! Keep doing a great job!!!','2019-04-15 20:09:54.000000','1608991329419166'),('10210273798641113',1,'We love this clinic. We won’t go anywhere else.','2018-12-23 04:03:52.000000','235046800697531'),('10210414806006516',1,'They provided excellent care!','2018-11-14 12:47:39.000000','544778295636544'),('10210463228735564',1,'Had a great experience here, super fast and helpful! Thanks Robin Bratcher and staff!','2019-02-19 23:37:46.000000','299216637560955'),('10210550639520582',1,'Rolled my ankle and came in for a screening.','2019-03-29 03:03:56.000000','251751275488925'),('10210620476828505',1,'Everyone was so wonderful!! Helped with my issues as soon as possible!!','2018-11-20 22:54:34.000000','299216637560955'),('10210824873492610',1,'Jennifer D., Nurse: Billy, and Dr. Curtis were Great. They were very nice and professional!!','2018-11-24 04:54:56.000000','299216637560955'),('10210923115828106',1,'Very nice staff! Made me feel welcomed. Keera was great :)','2018-11-08 06:26:31.000000','326347177710316'),('10210948976599786',1,'Thank You Austin, Ashley, Erica, and Tiffany for caring for the youngest of my family. SignatureCare of Paris is top notch! Fast clean and super Professional! Thank you','2019-06-07 20:44:26.000000','299216637560955'),('10210957446052735',1,'Brought granddaughter in and she was well taken care and I would highly recommend this ER. Jennifer Diggs was very professional and she was very caring and very passionate about helping others.','2019-02-15 23:32:32.000000','299216637560955'),('10211007469342649',1,'awesome staff, very fast in getting you into see someone, clean and good smelling building','2019-03-02 03:06:52.000000','326347177710316'),('10211077751260130',1,'Jereyia, Amy, Kerry, and Dr. Hasegawa were all amazing!','2019-04-19 18:09:00.000000','251751275488925'),('10211096149319897',1,'The whole staff was extremely nice and attentive. Jesus the registrar was extremely welcoming. My 3 year old felt comfortable enough to let Dr. Cavazos and Nurse Dana aid him back to good health. I couldn’t have asked for a better experience. Thanks everyone 😘','2019-06-14 15:58:39.000000','167959367441528'),('10211161315669226',1,'I received excellent care here. I recommend family and friends to this location. DR.Estevez,. Nurse Niki and Xray Tech..Sheresa..the staff is very friendly.','2019-03-12 00:31:01.000000','1609539722669429'),('10211163251115971',1,'Dr. Simmons was very friendly and sweet. Very fast check in and seen very quickly. In and out in less than 30 minutes. Will for sure be back.','2019-06-05 14:25:18.000000','299216637560955'),('10211239224375906',1,'Excellent, friendly staff! Wait time was short and they made sure I was comfortable the entire visit. Highly recommend!','2019-02-19 16:37:19.000000','299216637560955'),('10211306541298591',1,'Signature care is one of the best if not the BEST hospital! I’m always treated with care and great hospitality! Love it here','2019-06-18 17:23:12.000000','251751275488925'),('10211311883671241',1,'This location was fast very clean and Dr. Chukwuma Nurse Alvean Marcus radiology and jocelyn were professional and did a great job.','2019-06-05 21:08:50.000000','167959367441528'),('10211522548454139',1,'Wonderful experience today. They took great care of me and my son for our bad coughs. Everyone was so friendly. This will definitely be my emergency care place from now on!','2019-05-04 03:09:44.000000','596022027480375'),('10211543153196321',1,'5 STARS\n\nMy daughter, who lives in canyon Lake tx came to college station and had to be rushed to the clinic due to severe abdominal pain. Ct scan was done along with several other tests. Thank goodness it was not appendicitis. After only being there for about 31/2 hrs, she was released with medicines.\nI spoke to Alexis and she provided me with the info I needed. \nI recommend this facility to anyone who ever needs their service if they’re in college station. Of course I haven’t gotten bill yet, so I might feel differently when I receive it, LOL!!!\nMy daughter also just told me that everyone there is so 👍 nice','2018-04-21 05:12:09.000000','326347177710316'),('10211603780088665',1,'Our experience at Signature Care were very professional and all the staff member were amazing! Love the way they take care of their patients! Thank you','2019-06-20 00:11:54.000000','237100240304186'),('10211606873605846',1,'This is the very best Emergency Center that I have ever been. So, very fast and through. Awesome customer service and excellent health care experience. They were so kind and considerate with giving much needed meds for the night and go pickup the rest in the morning. Brand new place, clean and update medical Rooms.','2019-08-25 02:00:53.000000','251751275488925'),('10211756977079670',1,'Everyone is very friendly and attentive. Manny made sure I was comfortable the whole time and Dr. Nguyen was great at making sure I understood everything test and the diagnosis.','2019-07-23 16:07:37.000000','237100240304186'),('10211787388760647',1,'Lisa V, Andrew, David, and Dr. Osiecki attended to our daughter when she was ill. They were the most professional urgent care group I’ve seen in West Texas. They’re the best!','2019-07-29 00:43:04.000000','596022027480375'),('10211824317803000',1,'Awesome service as always. Karen, Delicia, Dr. Ybarra , Sedrick and Rick were very welcoming and pleasant','2020-01-31 23:09:11.000000','1648645701907657'),('10211834715423015',1,'There was no waiting time. You are immediately helped, the staff is concerned about your needs. Dr. Garcia is thorough in his examine and explains your condition in a way that you will understand.','2019-09-27 12:01:58.000000','1787364321589026'),('10211856360243174',1,'Best Urgent Care in Odessa. Fast and friendly. Jessica S is so sweet!','2019-10-21 23:54:39.000000','237100240304186'),('10212074792185604',1,'We had a great experience. Wonderful staff and care.','2019-10-30 09:02:47.000000','299216637560955'),('10212152548489269',1,'Patricia and Alvean A. and Marcus, helped me out to get in and out very quickly to see the doctor about my eye. Very friendly staff. Very helpful.','2020-01-15 19:08:59.000000','167959367441528'),('10212154313568192',1,'Best ER clinic in town!!! Lisa V, Andrew and Lisa H are great. Awesome staff Doctor explained everything!!!!!','2019-07-02 18:22:16.000000','596022027480375'),('10212199815447347',1,'The staff was great! Took care of me immediately and even offered warm blankets! Please use this facility as they are all so friendly and welcoming.','2016-08-01 18:11:06.000000','1608991329419166'),('10212214163703782',1,'Dr. Henderson was good to me and Karen my nurse has amazing bedside manner and Amy treated me right and checked me out quickly! I highly recommend this ER!','2019-03-20 05:38:08.000000','544778295636544'),('10212227624726170',1,'I was immediately seen after check-in. Nurse Nicole G and Dr. Estevez were very attentive and informative. I highly recommend SignatureCare in The Heights!','2020-01-12 01:58:48.000000','1609539722669429'),('10212301014679929',1,'Katrina, Shane and Dr. Ding are very professional and fast. I always have a great experience when I come here. This is the only ER I go to.','2019-09-18 02:00:30.000000','1648645701907657'),('10212311521295241',1,'This is the BEST and only place to go! Excellent care by Dr. Simmons and the nurse Erica Westbrooks. The front desk staff, Robin Bratcher, was so friendly and caring. I’m thankful for SigatureCare ER, they were so thorough, yet quickly got me to a room and back home! Thanks for all that you do and I am thankful you are in our community!','2019-01-02 22:10:03.000000','299216637560955'),('10212316235420178',1,'Excellent care,very nice professional people, From nurses to doctors, the X-ray lady Tabitha, took real good care of my nephew, did the X-ray quick, highly recommend Singnaturecare Emergency center.','2019-11-22 00:24:54.000000','237100240304186'),('10212334729878174',1,'I took my husband in while out of town in Austin! Gabriel & Dr. Jolly took great care of him! I am so thankful for the amazing care that they provided! Such amazing staff from the registration staff member, whose name I did not get, to the rad tech to Gabriel the nurse and Dr Jolly! I highly recommend signature care to anyone!','2019-10-06 06:06:57.000000','1698192877146046'),('10212335198893406',1,'Big thanks to Earl, Katie, and Dr. Goodman for taking such great care of my little boy today!! You all went above and beyond and our family is so thankful to have good honest folks like y’all in the industry 😊😊😊😊','2019-10-21 01:07:32.000000','1698192877146046'),('10212338952508659',1,'Kimberly P & Cecilia Z along with Dr. Miller, basically the entire staff will forever be stars in my book! They totally rock!!!!','2020-01-16 00:45:46.000000','1609539722669429'),('10212478497997632',1,'They were very prompt, professional, and kind. They took great care of me. Highly recommended!','2020-01-07 13:32:01.000000','235046800697531'),('10212503838590674',1,'I love this place and its staff. The best attention . I love it and I recommend it.','2020-02-05 14:23:27.000000','251751275488925'),('10212512973339048',1,'Great experience. Very clean and inviting. This has been the best E.R that I have been to. My daughter was comfortable throughout our visit. She loved it. Tanishia handled our check in very quickly. Sarah did a great job taking care of my daughter. Fatima and Elaine were amazing throughout our time here. Dr. Henderson was amazing and explained everything to us. We will definitely reccomend those that we know.','2019-11-22 05:44:58.000000','461782867645453'),('10212546547898346',1,'received amazing care from this awesome team. Cristina and Laura are awesome','2020-02-18 20:45:05.000000','1608991329419166'),('10212571542364015',1,'excellent service! Ayesha..Vivian..Aaron..Ryann..Tony and Dr. Soli were amqzing From the front desk to the trenches.. puld not have asked for better service!','2019-08-22 00:33:45.000000','1765121397101399'),('10212579027389974',1,'Great staff, very friendly and helpful. Fast service and very good with kids!','2020-01-06 14:33:15.000000','461782867645453'),('10212589095642387',1,'amazing staff , quick and friendly service ! thank you !','2020-01-13 23:59:57.000000','251751275488925'),('10212647649457526',1,'Signature care is amazing. The staff and doctors are very caring and knowledgeable and are very responsive!','2019-04-05 05:59:46.000000','326347177710316'),('10212744257431284',1,'I fractured my finger late at night and they took great care of me. My orthopedic doctor was very impressed with the stitches I got there!','2019-04-27 18:06:24.000000','326347177710316'),('10212748988518933',1,'Came in and was seen promptly. The staff is friendly and the doctor is very informative.','2020-03-12 23:57:23.000000','544778295636544'),('10212752228667267',1,'I came in feeling so sick, but everyone was all extremely nice to me even though I had a lot of trouble with anxiety around needles during my stay. Everyone was very helpful and kind and actually listened to me. There was a shift change while I was there so there are a lot of people to thank, but I believe Dr. Faig and Agnes were there when I came in, then later Dr. Soumen and Jeff and Lisa were the ones taking care of me for the rest of my time. Mercy is the receptionist who checked me out and she was very nice as well. Thank you all so much! It was about as comfortable as going to an urgent care place could ever be.','2017-04-10 18:19:38.000000','1608991329419166'),('10212787012590187',1,'I went to this location yesterday. As soon as I walked in I was greeted by Veronica. She was so sweet and was quick to help. That’s very important when someone comes into an ER. I was quickly given paper work and taken to the back. The nurse Kristina came in and asked questions and the other techs began to take vitals. Shortly after Dr. Faig came in. All of the happened prob within 15min!!! I was freaking out but they were all so calm and helpful and didn’t make me feel like I was overreacting. They made sure I was comfortable and answered all my questions. I am forever grateful for this ER. If I ever have another emergency- God forbid. This place and location will be my first choice. Thank y’all sooo much! \n\nThey also contact you the next day to check on you.','2020-02-14 18:35:23.000000','829264323932850'),('10212790055888563',1,'Signature - The Heights took great care of me. The nurses/ doctors were amazing and Hayleigh welcomed me in with Open Arms. I will definitely refer others.','2018-09-05 00:42:53.000000','1609539722669429'),('10212861356847940',1,'Extremely helpful and kind. Ready to serve my son and us. The staff was amazingly professional and were grateful for the care they had with my little guy. Thank you!!','2020-02-08 04:24:55.000000','237100240304186'),('10212865318935672',1,'These people are amazing \nMy Dr was Boester nurse Lant, and Merideth that’s\nRad Bryan everyone is phenomenal!!!!!','2018-09-28 02:23:41.000000','544778295636544'),('10212871610105291',1,'They took care of my wife in a timely manner, it\'s the second time I\'m here, and they are always sharp and attentive. Receptionists are ready to help, and have a great personality. Thank you, Dr. Pham, Susan, Angel, Tanishia, And Evelyn.','2020-03-04 01:49:25.000000','461782867645453'),('10212884669032037',1,'First time experience and it was very pleasant. There was no wait and the service is great. Seen by Dr Thomas, Sarah, Laura, and Tanishia. Highly recommend this location.','2020-01-31 05:00:11.000000','461782867645453'),('10212896943000065',1,'Brought my daughter in this morning she she fell and landed on her knee. Literally in and out, with stays, in 30 minutes. Jerry, Mathew, and Dr Golla were amazing with her and made her feel comfortable.','2017-10-14 22:21:07.000000','544778295636544'),('10212897560504391',1,'Brought my 11 year old here to get X Rays on his wrist. Everyone is very friendly and extremely knowledgeable. Shelli, Christina, Jessie, Dr. Elsbecker and Adam all made us feel welcomed and comfortable. I highly recommend this office over any other.','2019-02-05 23:23:29.000000','1698192877146046'),('10212919828428769',1,'Dr. Edwards, Katy, Sara, and Carla are GREAT! Thanks for taking such good care of me!! Love y’all!','2020-02-20 21:44:05.000000','235046800697531'),('10212948382664875',1,'Dr. Mauldin was amazing an got me in and out quickly and the nurse Alvean A. Was very sweet an helped just as much as well as their registration Patricia C.!! All around great experience this morning and wonderful staff!!!','2020-01-25 13:58:13.000000','167959367441528'),('10212977666171421',1,'There now with my daughter \nClean modern facility & the staff is friendly & accommodating','2019-03-02 20:34:35.000000','1698192877146046'),('10212981487611463',1,'Great customer service. From sign in with Donna who was really friendly and helpful. To the nurse Lucas who was also very friendly. The doctor was very helpful as well. Thank you all for your care and service.','2020-03-22 02:26:43.000000','104213804456471'),('10212992006222193',1,'great staff ...very good patients','2018-09-19 04:01:49.000000','829264323932850'),('10213025180210434',1,'Quick and streamlined. Great care from the moment I walked in. Thank you so much, I feel better already. Great location in the center of Montrose. Highly recommended.','2016-07-25 18:52:17.000000','1608991329419166'),('10213061896774154',1,'Amazing customer service!','2019-02-22 03:54:33.000000','1787364321589026'),('10213075083385196',1,'We found the entire medical team to be knowledgeable, thorough and kind. We appreciate the entire medical team Dr. Zheng, Dr.Boester, Trsha, Pam. Shay, Marcin, Jessica, Sibienne and everyone for their service and care.','2020-02-16 05:07:11.000000','1787364321589026'),('10213080952728841',1,'Ms. Sibienne was extremely caring and compassionate and made me feel right at home. The superior level of care and the overall quality was amazing. All my friends and family visit this ER since its the friendliest ER in the Stafford/Missouri City/Sugarland area.\n\nThank you again, Ms. Sibienne. You were truly kind and considerate. God bless.','2019-02-06 10:48:00.000000','1787364321589026'),('10213085816131575',1,'I would like to recommend this place. I went in for chest pain and was seen right away. Everyone was very professional and friendly and helpful. From the from desk receptionist to the doctors were amazing! I am so great-full I came here!','2019-07-08 01:02:49.000000','237100240304186'),('10213092751453575',1,'OMG, for the minute I walked in scared and not feeling well the receptionist made me feel relaxed and safe. I am an ICU nurse and the care I received by Dr Souman and the staff was exceptional! I never write reviews because I feel like they are biased, but I had to give them 2 thumbs up! They were not judgmental and Dr Souman was thorough with my diagnosis. Due too such professionalism and knowledge, I could not tell who was my tech, radiology tech, or my nurse without looking at their badges. THANK YOU SignatureCare.🥰','2019-01-04 19:01:34.000000','1787364321589026'),('10213131464075768',1,'Thumbs up! Everything was great and everyone was polite! Dr. Leaving, Keith, Amy, Traevis has loving hands!','2019-11-17 23:54:01.000000','167959367441528'),('10213136905817672',1,'No wait time, very nice staff. Everything you need in one place👍','2020-04-05 21:07:51.000000','461782867645453'),('10213158123702724',1,'The staff is very nice, attentive, they make you feel relax throughout the hall stay.','2019-12-10 02:15:45.000000','251751275488925'),('10213211564033762',0,'SignatureCare misdiagnosed my toddler’s strep throat. Called it a cold. She had had a 102+ degree fever and several other symptoms that you do not get with a cold. On day 5, after another physician diagnosed her correctly, we were told that there is no way with the shape she was in today it wouldn’t have been obvious when SignatureCare saw her and that even if there was a negative test it was an inconsistent swab. Will never go back.','2018-12-10 02:26:49.000000','596022027480375'),('10213223543257844',1,'great car and staff. They actually listen to you.','2020-01-02 12:03:24.000000','829264323932850'),('10213235054389191',1,'The staff is amazing!! Elizabeth, Josh, Noorin, Joey, and Dr. Souman made my visit a pleasant one!','2020-01-26 06:45:27.000000','544778295636544'),('10213319876791182',1,'Super nice staff. Very thorough service and no wait.','2020-01-21 16:21:39.000000','299216637560955'),('10213320943162988',1,'I love the staff and I never have to wait they are always so friendly and eager to help it\'s the only place I will go when sick','2016-07-07 14:51:44.000000','544778295636544'),('10213331573714769',1,'No wait times! Staff was so friendly and great! Made everything so smooth. Proper exams were done. Results in a timely manner. We were very very happy! The night staff was amazing!','2019-08-01 15:57:15.000000','544778295636544'),('10213339241754901',1,'Sita in registration was welcoming and quick. I was taken straight back to a room. Nurse Heather and nurse Candi had great teamwork, quick and were super nice! Carolyn was great and informative when doing my CT scan. Dr. Daniels was a great listener, friendly and thorough. I left feeling back to my normal self. Highly recommend this emergency center!','2020-04-29 08:37:40.000000','596022027480375'),('10213344239271724',1,'I walked in with the most excruciating pain from a tooth and came out a whole new person. I actually cried like a baby after getting the nerve block to my tooth, it was immediate pain relief and I actually felt like a human being again. Thank you Dr. Jones and all the nurses there. You made my experience great. I definitely will be back.','2019-05-19 14:37:03.000000','299216637560955'),('10213352573791716',1,'We had an amazing experience. We were in and out in less than an hour, and all of our girls were treated like princesses! Ashley B got us right in!','2018-11-30 00:12:53.000000','299216637560955'),('10213359451215835',1,'Brought my daughter in early in the morning and the faculty has far exceeded my expectations, from start to finish they have been extremely attentive, helpful, and professional. Doctor Patel and nurses Tammi and Charlotte have been thorough and caring. Nanci, Norma, and Vy were also a part of our experience. Thank you to all of the staff that have taken care of my daughter.','2020-02-23 23:17:09.000000','461782867645453'),('10213377361827892',1,'tina, kathryn, dr lingan and ricardo were wonderful!!! defining recommend','2020-06-10 21:46:04.000000','1698192877146046'),('10213468730426561',1,'Got checked right away as soon as we walked in. Alvean, Jordan, and Jocelyn were very helpful. \nWould recommend.','2020-03-02 18:42:59.000000','167959367441528'),('10213474195568836',1,'Scheduled a 9PM COVID-19 test and got attention immediately during this slow time. They are an emergency center so expect them to prioritize according to emergency.','2020-07-18 02:45:13.000000','167959367441528'),('10213492554901496',1,'The fastest doctors we have ever been too! They were taking us back while I was still getting the paperwork to sign! Everyone has been very understanding and nice. Not that I hope to be back, but if we need ER services again, this is where we will be back.','2019-11-30 20:32:47.000000','251751275488925'),('10213496684355790',1,'We had a great experience yesterday with my daughter! When got there the front desk clerk Robyn was great! She was very helpful. The doctor, nurses and staff were very nice and caring. I highly recommend going there.','2019-01-27 23:21:04.000000','299216637560955'),('10213512607239949',1,'I went into SignatureCareER for a non emergency and they treated me like I was their only patient. My nurse Kim took excellent care of me and addressed my needs. Dr. Huerta handled my issue with professionalism. All the professionals at the ER were very friendly and my issue was fully resolved.','2019-04-12 00:31:09.000000','596022027480375'),('10213559064170328',1,'Awesome experience with such a caring and kind hearted staff. Dr. Daniels, Rollie, Stephanie P and Natalia','2020-08-12 05:20:04.000000','1648645701907657'),('10213579465146418',1,'I have never had quicker and more precise care for my little one than I received at Signature. Chasity was very welcoming from the moment I walked in. As a nurse it is always nerve wracking when your little one gets sick. Dr. Huerta was wonderful, quick and precise with his care and diagnosis. He explained everything perfectly and kept me posted throughout the stay. \n\nAaron Ortega & Krystal Marquez were the absolute best!!! They were quick to get him back and triaged, and take care of all of his personal needs and medical needs! They also kept me updated throughout the stay on what was going on. I appreciate their top of the line care. During his stay we felt we were in a hotel suite it was so welcoming and comfortable. Thank you again Aaron, Krystal, & Dr. Huerta. If my family ever needs anything at all, I will be returning to SignatureCare.','2019-01-31 16:05:35.000000','596022027480375'),('10213598107026877',1,'Luisa /Alvean/Jessica A great team of doctors and nurses outstanding services as always','2020-04-17 17:42:06.000000','1608991329419166'),('10213635242186378',1,'The staff is Very friendly. I felt very comfortable. The wait was practically non existent. They worked with me with my insurance. I would recommend them to everyone. Just a great experience even though I was not feeling well. Dr. Dewaal , Frank and Kat and Angela were absolutely wonderful!!!! Love them!!💙💙','2019-04-30 01:48:02.000000','251751275488925'),('10213651762646837',1,'I love Signature in Paris. The staff members are always nice, professional and go out of their way to help. Caitlin Pettit in registration is friendly and helps anyway she can. The facility is clean and rooms are nice. I highly recommend Signature Care Emergency Center.','2020-07-24 00:38:58.000000','299216637560955'),('10213703974067987',1,'Fast and great bedside care.','2020-02-15 07:11:40.000000','235046800697531'),('10213726311792452',1,'Getting tested was super easy. You just drive thru and stay in your car while they do all the testing. Lorena, Gracie, Brancroft, and Theresa were super nice and helpful.','2020-07-26 16:39:24.000000','237100240304186'),('10213728093347898',1,'First class treatment and very friendly staff! Love they always have a doctor on call and not just a PA! #blessed #nevergivingup #healing #Pneumonia','2019-05-27 13:40:46.000000','237100240304186'),('10213742370823904',1,'Dr. Maudlin and ekaterini s and Marvin and Melissa are awesome and they provide snacks!! Thank you','2019-06-30 09:10:09.000000','167959367441528'),('10213752036106266',1,'this was by far the BEST experience I have had I brought my daughter in barley breathing and they rushed her back and got her seen so fast!! I was so impressed at the friendliness and care they put into my baby!!! I\'m so pleased!!','2019-09-17 03:23:04.000000','251751275488925'),('10213787360551881',1,'Fast,friendly and professional.','2020-03-03 03:44:34.000000','596022027480375'),('10213814562732901',1,'So grateful for the staff and Dr. Sylvester at Montrose Signature Care. After a hard fall during a run, the clean, attractive no-waiting room was welcoming. I was a mess and in pain. They helped make me comfortable and quickly cared for my knee sprain and bloody chin, needing 6 stitches. Personal and generous attention, thanks gang!','2016-11-13 21:52:39.000000','544778295636544'),('10213835590829642',1,'i have been at this location before and the staff is very kind, considerate and very efficient getting patients back and treating them. Keera at the front desk was also very helpful at getting my friend with chest pains checked in quickly.','2019-02-08 01:23:27.000000','326347177710316'),('10213835836210688',1,'Really friendly staff. Got treated quickly. I highly recommend coming here. They’re also really clean\nRegistration:Amy was super sweet \nTechs: jaslyn and jazz great team \nRn: friendly and caring \nDr. Rodriguez: straight to the point which I appreciate','2020-08-01 12:42:12.000000','1648645701907657'),('10213846515460089',1,'Dr Garcia, Ms Brenda and Chris took such good care of me. This place was so clean, caring and very\nKnowledgeable about what they were doing. I can’t express enough\nHow great they were. If I ever need you again i will be back THANK YOU','2019-03-10 09:39:51.000000','1787364321589026'),('10213868343771846',1,'My experience was excellent was seen in about 10mins of waiting,answered all and any questions I had . The attending staff was top notch! ... Dr Wang. Lynn,Jennifer,Christopher,and Tanisha I give 10⭐️s','2019-06-10 03:00:25.000000','461782867645453'),('10213880501268052',1,'Short wait time, friendly staff and great medical care!','2019-04-21 02:48:38.000000','1765121397101399'),('10213882450363531',1,'Nice folks, Fast, and thorough...','2019-06-10 00:30:38.000000','596022027480375'),('10213937515383847',1,'Hands down; THE best experience I’ve ever had In an ER. \nDR. Dang - incredibly professional and kind, complimentary \nNurse Lynn - great conversationalist, made me feel at home\nDaniel-Er tech- very handsome, and incredibly kind, and knowledgeable!! \nTanisha- was able to bring get me to smile, even considering the scary day I had.','2019-11-18 03:14:58.000000','461782867645453'),('10213970425335120',1,'Nice people here no hassle what so ever #Magali','2020-08-01 15:47:04.000000','237100240304186'),('10213974055287199',1,'From the front to the back. everything amazing! Brenda and Kelsey were great with my son! Super clean facility and everyone goes out of their way to help.','2019-01-07 16:00:48.000000','1787364321589026'),('10214001468131288',1,'The staff is very professional and they treat you the you would love to be cared for. It’s good to go somewhere that your health is the main concern. I will definitely be using this care service again. Thank God for allowing me to come here. Dolores, Aaron, Tony, Zeke, and oh my Dr. Leavitt; all you guys feels like family now. Much love, thank you.','2019-07-10 18:32:21.000000','1765121397101399'),('10214021135083014',1,'fast and efficient service, amazing nurses! \nvery little wait time \nrapid results','2020-08-05 20:20:37.000000','299216637560955'),('10214036329820841',1,'Went in to get tested and it took them less than 45 minutes to get my results. If you do go I recommend Jessica S. She was very helpful. Awesome staff!','2020-07-21 14:29:39.000000','104213804456471'),('10214049864233347',1,'This is our second time coming to Signature Care. I am very impressed with the staff and doctors we have encountered. Savanna B. and Andrew C. were attentive, informative and very kind to my son. The facility is also very clean and there was zero wait time. I highly recommend SignatureCare.','2019-10-03 22:16:11.000000','596022027480375'),('10214050884300345',1,'They have THE best attitude you could ever imagine and their bedside manner was awesome. Kristina Scott and Maya provided great service!','2020-03-13 21:31:41.000000','829264323932850'),('10214056746361996',1,'All The employees were very nice and helpful','2019-06-13 20:30:20.000000','596022027480375'),('10214121982258416',1,'My experience absolutely wonderful. As soon as I got their it was less than 15 minutes they took me straight to the back to take care of me. The care of the doctors, nurses, and receptionist was great. I recommend anyone to go there for treatment. It did my heart good knowingone of the nurses went to Elsik with my son and recognized me from running the boys concession stand for the basketball team. You All ROCK !!!','2017-05-30 22:45:05.000000','544778295636544'),('10214124891092827',1,'Great attitudes with Sarah, Jerin, Elizabeth, Ortiz & Matt.','2019-07-21 20:54:55.000000','461782867645453'),('10214130303443922',1,'Great staff and great doctors best ER in town. NO WAITING fast and friendly.','2019-05-24 22:17:11.000000','251751275488925'),('10214131296746797',1,'In and out very clean and nice 😊','2019-10-24 00:52:25.000000','251751275488925'),('10214141912935801',1,'This is my FAVORITE place to go when I’m not feeling well! They ALWAYS CARE and ensure that I’ll be ok! Erica did a GREAT JOB TODAY!!\nThank you SignatureCare Emergency Center-1960','2020-03-09 15:51:18.000000','167959367441528'),('10214151890103310',1,'Great care!!! Loved it. Very clean. Friendly. Fast care. Loved Dr. Smith and Jesus Took great care of me! Will return!!','2019-06-27 19:13:56.000000','167959367441528'),('10214240309464389',1,'I have visited for care several times .. excellent care . Thank,you Ashley K . for your excellent assistance and the whole staff','2019-03-02 00:44:39.000000','299216637560955'),('10214241653335011',1,'Thumbs up all around! :-)','2019-01-22 19:36:21.000000','461782867645453'),('10214283705636767',1,'thanks Dr. Iheme, Alvean A, Marcus B, Jocelynn A, Brain W.. All of u did a wonderful job','2019-11-20 15:59:06.000000','167959367441528'),('10214285229349440',1,'I was treated with courtesy and professionalism as soon I entered the facility. Everyone involved in my unfortunate visit, made me feel comfortable. I would definitely recommend this facility to anyone needing emergency care. Thank you to Dr. T Lindsay. Nurse: Dawn S. Rad Tech: Nanci B. ER Tech: Bekka W. and Ashley S in Registration.','2019-04-22 20:37:34.000000','461782867645453'),('10214298948337571',1,'Very fast care, staff is really helpful. I was seen by dr dalta and RN Jesse, and Joy. Front desk receptionist Amy was extremely helpful! Thank you guys','2019-07-04 17:38:01.000000','1648645701907657'),('10214318827115656',1,'very friendly, quick and fast severice.. receptionist was friendly..Thank you Susan , Laura, Tanisha and Dr. Nguyen..','2019-12-04 05:12:56.000000','461782867645453'),('10214339815182456',1,'Absolutely amazing! Dr yost, along with all other staff, are hands down, the best around!','2018-11-28 15:37:16.000000','235046800697531'),('10214359435210147',1,'They were so helpful! \nLorena T, Dr. Wang, Cat, Remington, Bryan, and Natalie were so wonderful!\n\nHighly recommend!','2019-11-17 03:50:04.000000','326347177710316'),('10214373466770341',1,'My experience at Signature care was amazing. All of the staff was great. My nurses Kay and Fanny were exceptional!!! They were both supper efficient and professional.','2020-06-10 16:01:47.000000','1787364321589026'),('10214373853407712',1,'The nurse Lisa and Aaron were fabulous. Dr Huerta was very kind and explained everything to me.','2019-06-28 18:35:14.000000','596022027480375'),('10214407745456444',1,'Excellent care and professionalism!! Highly recommend!','2019-03-20 00:21:48.000000','235046800697531'),('10214424021108930',1,'did a very good job for my baby girl an Amy was the best','2020-03-24 04:10:17.000000','829264323932850'),('10214429801330314',1,'Great service every time I come here! Doctor Ortiz, Nurse Sarah G, Rad tech Fatima B, ER tech Daniel B, and Tanishia W. from registration attended to my visit and they were all nice and very helpful. I highly recommend this er location','2019-12-25 01:42:23.000000','461782867645453'),('10214440489946223',1,'Staff is friendly and professional. Dr. Jolly & crew did an amazing job. would highly recommend for the memorial city area.','2019-03-21 14:56:56.000000','1765121397101399'),('10214449851144396',1,'I have had a pleasant experience every time I have been there. The staff is friendly and informative. I recommend Signature Care to everyone.','2019-06-11 16:57:20.000000','237100240304186'),('10214473409529425',1,'awesome and fast service. Dr. O\'Malley was cool and informative. Joshua, Nicole, and Ekaterini were great and welcoming','2019-08-16 04:57:53.000000','167959367441528'),('10214479809063772',1,'I came in and Patricia checked me in right away, the nurse Alvean kept me updated during the wait to get my test results and made me comfortable while I was there. The service was thorough and I got the help I needed.','2020-02-27 20:58:29.000000','167959367441528'),('10214489596982374',1,'Very fast and friendly service ! \nPete and Tabitha were very nice ! 😊','2019-09-09 15:29:15.000000','237100240304186'),('10214560335990270',1,'Customer service here is one a kind, Dr Rose as well as Dr Craig took really good care of my Blood pressure issues. Wonderful clinic with a wonderful staff!! 5 thumbs up!!!','2019-04-13 22:47:09.000000','251751275488925'),('10214560992046153',1,'we had a great experience. Michelle, Kim, and Sherri were awesome.','2019-08-14 14:52:33.000000','235046800697531'),('10214563914360181',1,'Incredibly nice staff. Amazing care. Best medical facility I’ve been to in a very long time. Highly highly highly recommend!','2019-08-18 14:43:28.000000','544778295636544'),('10214564915468212',1,'THE DOCTORS & NURSES ARE VERY NICE AN FRIENDLY!! DR.O’MALLEY , PATRICIA C, ALVEAN A THERE AN AWESOME TEAM ! ITS VERY CLEAN THEY MAKE YOU FEEL VERY WELCOME AND COMFORTABLE ! THEY GET YOU IN AN OUT FAST ! I DEFINITELY RECOMMEND THIS EMERGENCY CENTER THERE THE BEST IN HOUSTON!!','2019-12-26 22:09:05.000000','167959367441528'),('10214567930020570',1,'You cannot use insurance to pay for your medical services so be prepared for a bill. Also, their staff need an alcohol test because I’m fairly certain both times I had blood drawn the two guys had been drinking. Alcohol has a very distinct smell and I don’t drink. Pretty sure that’s unsafe.','2019-08-19 04:08:26.000000','251751275488925'),('10214578796718968',1,'Wonderful experience! All staff was extremely caring, compassionate, and professional. Definitely the best experience I\'ve ever had in an emergency center. Thank you so much for taking Great care of my daughter.','2019-02-22 03:51:26.000000','1787364321589026'),('10214594813328485',1,'Thank you Jennifer Diggs, Susie Hicks, Matt Leonard and Dr Curtis for taking such great care of my husband at his visit today!! Everyone is always so very nice and caring!!','2019-06-02 21:21:04.000000','299216637560955'),('10214602853614040',1,'Staff is very attentive and polite. Met medical needs very professionally. Would definitely recommend.','2019-08-04 22:55:28.000000','326347177710316'),('10214608693081115',1,'Staff here is Great! No wait times Very tentative and aware of patients. Lisa V., Savanna are such great nurses. They went above and beyond to make sure I was comfortable. Facility is very clean and tidy. Staff all has smiles.','2019-07-15 22:10:37.000000','596022027480375'),('10214627896002341',1,'Quick efficient service I was here less than 30 minutes!','2020-01-01 17:09:23.000000','167959367441528'),('10214635532952243',1,'Came here on a Friday night since I wasn’t feeling well. Vanessa G at the front was very nice and helpful. Once I was in the patient room I was greeted by the nurse Nicole G. And rad tech Dustin. They were both very nice and accommodating. After a few questions, they left and I was seen by Dr. Patel. He was very thorough in asking questions and explaining what I may have. I would definitely recommend this urgent care! It’s very nice and clean. They have warm blankets! They also have some snacks and drinks in the lobby area.','2020-01-18 03:59:55.000000','1609539722669429'),('10214642684004396',1,'Ashley Burton at the front desk was wonderful at making a first impression of the facility. Very professional, friendly and helpful. I will definitely recommend family and friends to come to Signature Care Emergency.','2019-02-15 02:59:44.000000','299216637560955'),('10214649001080760',1,'This place is the ultimate BEST! They are human and they actually care! I waked in I was taken bank to a room in five minutes. The ER Doctor came in two minutes. I got a consultation by the nurse, saw the doctor, and got an X-ray within fifteen minutes! WOW! They asked me if I needed a blanket or water. The staff was absolutely AWSOME!','2019-08-27 23:53:25.000000','544778295636544'),('10214663931292280',1,'The entire staff was amazing!! Sarah was very friendly and funny!! Biseida was very sweet and helpful.. Dr. Henderson was very cool and knowledgeable.. William and Patrick were awesome.. Keep up the Amazing Work!!','2019-11-14 02:57:39.000000','461782867645453'),('10214700543606520',1,'Dr. Siddiqui, Leslie at the front desk, RNs Churiah and Gina, ER tech Olivia, and rad tech Jacqueline were incredibly nice, friendly, fast, and efficient. They helped my husband and I feel secure and confident in my husband’s health care team and that he was in great hands! Highly recommend this place to anyone!','2019-12-17 18:23:38.000000','1608991329419166'),('10214708347741813',1,'I’m impressed with how quickly they were able to get me in and out for my rapid covid test. All of the staff was incredibly helpful and easy to talk to. Thank you guys!!','2020-07-24 14:10:51.000000','105589317817643'),('10214708426496154',1,'Amazing Facility, Great service, helped me with what I needed and did efficiently and would recommend this facility to anyone! Thank you, Dr. Lu, Nurse Charlotte, Rad Tech: Fatima and are Tech: Elaine and Regristation: Bri!! You all are fantastic and made me feel comfortable!','2020-04-07 07:08:27.000000','544778295636544'),('10214733025855064',1,'Great care! Fast and friendly! ❤️ thank you, John and Kanyon!','2019-12-24 20:59:22.000000','299216637560955'),('10214749027144623',1,'Excellent care, very attentive by all staff! no complaints','2019-06-08 05:34:27.000000','299216637560955'),('10214765452426857',1,'They were fast, caring, and efficient. They seemed to care and have how a lot patience.\n\nThank you signaturcare staff♥️','2019-10-02 13:33:35.000000','544778295636544'),('10214811745230443',1,'Very fast and friendly! Will certainly come back!','2019-06-28 14:26:14.000000','299216637560955'),('10214811968163280',1,'Emergency care experiences are never easy but this place has definitely raised the bar. They were friendly from the moment we entered, got us into a room almost immediately and the staff were all super knowledgeable and helpful and kind on top of it all. We had to stay for over six hours so they gave us a more comfortable room which had plenty of amenities for whatever we needed from food (so many snacks) to phone chargers. They also gave us an iPad with Grubhub on it and told us to order food from anywhere, it’s on them. While being here isn’t how we hoped to spend our day, they made it so easy and relaxing given the situation. The Doctors and nurses all had great bedside manner as well and took good care of my husband. I hope we don’t need to come back but I wouldn’t think twice about bringing someone here when needed.','2019-11-12 22:26:02.000000','1698192877146046'),('10214817982395125',1,'The staff is very considerate and nice and do their best to help you feel better while they figure out and coordinate with your doctor. Or hospital if need be for one to have to be admitted. Definitely recommend them','2019-12-27 00:49:24.000000','1648645701907657'),('10214823499253177',1,'I went in for back pain. Jocelyn A. from registration was able to check me in right away, she could tell I was in pain. They called me to the back in less than 2 minutes. Jani W. the nurse was very friendly. The rad tech, Marcus B., was very funny. Even though I was in pain I he was able to help me laugh through it. Dr Amy Patel was very nice and was very informative. I would definitely recommend this ER to anyone who is in need of an ER, it is very clean and the staff is amazing. Much better than going to a regular hospital.','2019-09-25 01:42:49.000000','167959367441528'),('10214826252835467',1,'Maria at the front was amazing quick I didn’t wait long at all... \nKramer, Jose Erin \nAllison \nDr Mauldin\nEveryone was amazing great staff great teamwork I come here all the time everyone is amazing thank you guys for everything','2019-06-21 02:16:48.000000','596022027480375'),('10214829604926399',1,'Very personable people, they greet you at the door, very fast. Kara and Sarah are very friendly and Mrs. Linda came to check on me also. Highly recommend.','2020-02-01 01:39:58.000000','235046800697531'),('10214848374336048',1,'Very fast and very clean, awesome customer service!','2017-02-18 15:53:45.000000','544778295636544'),('10214873892355081',1,'Excellent care. Mark, Aaron, Aubrey and Dr. Wren were amazing! I cannot thank them enough!','2018-09-01 21:47:39.000000','1765121397101399'),('10214876787454225',1,'Thank you Sita Lisa Allison and Dr.Diaz for helping our son.','2019-08-07 00:57:08.000000','596022027480375'),('10214889458100710',1,'Dr.Datta was very friendly, Jesse our RN was helpful and friendly very attentive, Amy at the front desk was very helpful on the check in process. Over all the wait time plus the staff was amazing','2019-07-04 16:22:27.000000','1648645701907657'),('10214899665670078',1,'Good experience nice doctor and room','2019-07-11 20:01:00.000000','544778295636544'),('10214906710534120',1,'the staff were very friendly and we were in and out very fast','2019-11-23 05:02:11.000000','596022027480375'),('10214918984302225',1,'Awesome experience the staff is always friendly and the doctors are awesome. I come here almost every time I’m sick.','2019-12-23 01:39:34.000000','1609539722669429'),('10214923590384089',1,'Dr. Patel, Amy, Rollie and Natalia were amazing!!! Very friendly and fast service!','2019-07-03 04:51:19.000000','1648645701907657'),('10214954156840752',1,'Went to the ER for an injured rib, With the expectation of getting bad customer service, like any other ER. Little did I know that I would be walking out with the best customer experience ever! From the little wait time, to the nurse and Dr making my pain a little be better. Thank you to all the staff for making it a great experience, definitely recommend it.','2017-09-19 00:17:37.000000','544778295636544'),('10214961502979623',1,'This is the BEST ER I\'ve visited. There wasn\'t a long wait and everyone has a pleasant personality. Dr. Henderson, Jennifer, Gunner, and Courtney were all compassionate and extended the best care possible. Jennifer even called me the next day to check on me. I know where to go next time I\'m sick. Thank you everyone!!!!!','2019-09-21 02:59:32.000000','235046800697531'),('10214973931484895',1,'Came with a lymph node node block turned out to be an abscess. \n\nQuick in and out and I got some really needed pain meds.\n\nBrenda R the receptionist was totally sweet.','2019-07-23 12:26:14.000000','1608991329419166'),('10214988526202920',1,'We took our son to Signature Care ER after he was in an auto accident. Fast and friendly service. The establishment is clean, the entire staff is professional, and our son received excellent care. As an added bonus there is lots of parking, perks like snacks and drinks, and a very inviting atmosphere. If you have the unfortunate situation to need an ER, this place will at least comfort you in knowing you are receiving great care in a comfortable setting! A shout of to Lauren to told us about the locations and Adam who made us feel at home.','2019-11-22 18:26:55.000000','1698192877146046'),('10214995134023564',1,'Dr. Carlos, Duke and Delicia at the front were so accommodating and kind as they answered my questions and concerns. I would go back and recommend for any emergency needs.','2020-02-05 18:15:12.000000','1648645701907657'),('10214997385224998',1,'I was Amazed at the care I received at your ER here in Odessa. From the registration, until I left your facility. (Feeling better of course). Everyone was so attentive, nice and respectful. Especially Tabitha. She checked on me periodically during my stay and Made me feel at ease . Thank you ALL.','2019-06-18 18:38:08.000000','237100240304186'),('10215007286122661',1,'Dr. Plante, Cory, Vanessa, Megan, and Andrew were amazing. Bed side manor of these individuals was so calm and patient and understanding. would recommend this center to everyone!!!!!!','2019-10-31 02:25:08.000000','596022027480375'),('10215013317752207',1,'Wonderful staff-Kimberly P., Joseph B., and Katherin L. were very friendly I was seen immediately \nDr. Adam Boester is very kind and friendly \nI highly recommend this Emergency Center','2019-10-12 19:49:37.000000','1609539722669429'),('10215023960688132',1,'we had a wonderful day at the community event. Theresa and Casey were very friendly. Thanks','2019-07-27 23:51:47.000000','237100240304186'),('10215031959779105',1,'People were very friendly and u got right in \nI will go there again just hope I won’t need to','2019-10-15 10:43:06.000000','251751275488925'),('10215033324374263',1,'I’ve visited SignatureCare twice in the last week (because I am a walking disaster waiting to happen at all times 🤦🏻‍♀️) first for a sprained ankle and then for poison ivy. The nurses and doctors are all so sweet and thorough and literally just perfect. Angels, all of them! They made sure I was comfortable along with my kids, made follow up calls to check on me afterward, and I didn’t sit in a waiting room for hours. I would 110% recommend them over any other “Emergency” center or clinic.','2020-01-29 04:43:05.000000','235046800697531'),('10215082077538893',1,'The staff here are so welcoming! Second time here and they just amaze me how amazing they are. Always friendly and always go out of their way to help you!! \n\nAnd the greatest thing about coming here.... pretty much in and out, no 5 hours waiting in the waiting room at a ER!!!','2018-08-21 06:31:21.000000','1787364321589026'),('10215089848856754',1,'My twins have been sick the last month several times and thankfully I took them here. We were welcomed by the sweetest receptionist both day and night shift. They immediately put us in a room each visit (no waiting) and nurses were quick to take vitals etc. Doctor Henderson and Das were very compassionate and professional as well as staff. Someone always calls the next day to check on the twins which doesn’t happen often. This place is amazing and I highly recommend them!','2020-01-12 17:02:30.000000','235046800697531'),('10215093975976015',1,'Staff was more than helpful especially My nurse Mercy. She was very professional I would totally recommend This location!','2017-04-07 11:21:50.000000','1608991329419166'),('10215094499226383',1,'Had amazing service, was in and out there staff was really friendly especially Sunday and rashad also all the nurses were great','2020-02-07 02:23:55.000000','544778295636544'),('10215103134477416',1,'The staff is amazing at signature care. Nurse Danny and Allison the radiology tech are outstanding.','2019-05-04 23:59:21.000000','596022027480375'),('10215106381153522',1,'Signature Care Emergency Center on Summerhill Road is FABULOUS! If you are a first responder or immediate family member of one, your co-pay is waived. If you have to stay overnight, the nurse brings a luxurious bath robe and complete toiletry set. Also, you get to choose your food for supper, breakfast, etc. They order it via the Waitr app and bring to you! Too, I got to have a face-time conference with a Dr. Wang in Dallas from my comfy bed and, of course, I have been treated with the upmost respect! I won\'t go anywhere else!','2019-07-23 17:16:11.000000','235046800697531'),('10215119319769628',1,NULL,'2018-01-26 13:31:50.000000','544778295636544'),('10215137498942242',1,'From the time I walked in until we were released, the staff was SO welcoming, caring and professional. Courtney got us signed in quickly, and Jennifer listened intently as my son discussed his symptoms. Gunner was so good at comforting him when they had to swab his nose. Dr. Yost took time to listen and explain all questions we had. They made a yucky day a little brighter for my sick boy. We will definitely be back!','2020-01-27 21:34:00.000000','235046800697531'),('10215144784805257',0,'Modern, clean, caring and very professional.','2018-06-29 16:16:27.000000','829264323932850'),('10215149100342683',1,'Everything their service is excellent very care giving.','2019-07-12 02:31:21.000000','167959367441528'),('10215149706436658',1,'Good people very helpful \nRn Irving tech cristaian ct helly md do reg Ana everybody so helpful','2019-12-29 04:28:36.000000','829264323932850'),('10215160381225480',1,'I was very impressed by the service we received during our early morning visit (4am). My daughter had a high fever and Earl at the front desk got us checked in quickly so that nurse Gabriel could get my baby girl into a bed. Dr. Lingan had a great bedside manor and took his time to explain everything to us. In the kid friendly exam room there was plenty to keep my daughter\'s mind off of being sick. We had a T.V., coloring pages, stickers and even bubbles in our private room. Townsend the radiologist saw us quickly and was very friendly and patient while taking chest xrays. All of the tests were done quickly and we were on our way with the meds my daughter needed to get better. This ER will definitely be our go to place for urgent care needs!','2019-11-07 03:01:38.000000','1698192877146046'),('10215165076743536',1,'Similar to other positive reviews, very clean, very quick, pleasant staff, excellent care, and immediate relief of problems. Very good experience and would recommend the Heights location.','2019-02-09 09:07:57.000000','544778295636544'),('10215173562118791',1,'Anytime my family has any type of medical ailment I bring them here. It’s an amazing facility with amazing people. My husband was really ill and had to stay overnight here. They took great care of both he and I. I highly recommend Signature Care for your emergency medical needs.','2019-11-05 04:36:53.000000','544778295636544'),('10215186814042400',1,'Thank you for the wonderful service! :) We always choose to go to SC instead of the ER.','2017-03-28 13:06:46.000000','544778295636544'),('10215213045215659',1,'The first time being here on Friday; it’s clean and nice and Lisa was at the front desk. She was sweet and we were brought to the back quickly. Dr. Mauldin explained everything he was doing and walked us thru how to take care of the wound. He also called to follow up with us at home the following day. We came back on Sunday for a follow up and Shanna M was the nurse at the front desk. She made sure she knew what we needed and we were in and out in less than 30 minutes. I won’t ever go anywhere else!','2019-08-25 15:25:56.000000','237100240304186'),('10215234039824205',1,'These ladies (Rebecca V., Dr. Herbert, RN Jeri and Rad Tech Stephanie) were all soo nice even though its midnight','2020-01-03 06:57:41.000000','326347177710316'),('10215247832971285',1,'Lisa V, Allison, and Shania are all so wonderful and amazing vary helpful and caring. Oh hay they are super fast as well.','2019-08-16 23:50:35.000000','544778295636544'),('10215251268508510',1,'This was timely and efficient and professional. Minimal waiting and my results were brought out to me while I waited in vehicle. 5 stars!!','2020-07-09 21:41:02.000000','1787364321589026'),('10215293538640366',1,'Great experience. The visit was fast and efficient. Even had an x-ray. I was in and out in an hour. Thanks Jamie W, Tricia B. And Elida Jasmine for making this such a great experience.','2019-12-05 20:07:10.000000','167959367441528'),('10215317618354021',1,'I had to bring my daughter to the ER this evening for abdominal pain. The staff was very friendly and made sure she was taken care and also made sure I was comfortable. We were welcomed Veronica and she was friendly and got us seen fast. Her Doctor was Dr. Zhen answered all of our questions and made sure she checked everything, nurse Irving and Tech Thelma was great!! They were very attentive, her radiology tech Sherwin was knowledgeable and fast.','2020-03-03 07:28:39.000000','829264323932850'),('10215323338741045',1,'We had to bring our daughter in on a cold Friday night at 11pm. We were greeted in the lobby and taken immediately back to an examination room. While in a panic because of pain in her abdomen, our daughter was comforted by the entire staff including the nurse and a board-certified ER physician. Given the diagnostics capabilities of the facility, they were able to quickly diagnose the problem and reassure us that it was not something worse. That night, my daughter was given the most competent and compassionate care. For my followup regarding admin and billing questions, once again they were open, transparent and willing to go above and beyond to help. We are fortunate to have this facility and all its good people so close to home.','2020-01-22 21:52:31.000000','1698192877146046'),('10215325190075765',1,'Signature Care emergency Center provided care for my wife. There was excellent help from all the staff, Keera was amazing help during the process.','2018-11-02 05:22:02.000000','544778295636544'),('10215339542622795',1,'While treating my wife\'s hand cut. The staff was very helpful and fast. I highly recommend this location.','2019-09-05 01:57:22.000000','829264323932850'),('10215353416882088',1,'I had to check in to signaturecare in memorial city and it was a outstanding experience. Amy at the front desk helped us with all the check in process and then went to the back to get cared for. We then met mark, Teresa and ryan. They were an excellent team in helping me feel better and dr. Wren was also a great doc.!','2018-11-25 02:30:02.000000','1765121397101399'),('10215375119322063',1,'Dr. Faig, Kristina, and John were so sweet with making sure my daughter was seen so fast. They were so gentle and kind. My 2year old hates the doctors office but they made sure she was comfortable. Veronica made sure we were checked in fast and efficient! Laura was also so sweet!','2020-02-13 17:48:44.000000','829264323932850'),('10215375953565145',1,'Dr. Yost and the staff were awesome with our 5 month old! It was so clean and no wait. Best ER experience and will definitely be recommending it!','2018-11-19 13:31:16.000000','235046800697531'),('10215388980503838',1,'They were so nice and helpful! I felt so embarrassed about my injury, but Fatima, Sarah, Dr. Henderson and Daniel made me feel at ease and like it was no biggie! I’d for sure recommend this ER to all my family and friends!','2020-01-14 05:53:05.000000','544778295636544'),('10215433459889834',1,'Easy to get to, great customer service, everything was quick and they did a great job! And they take Tricare now!!','2019-08-16 22:20:37.000000','251751275488925'),('10215443961146290',1,'The staff was great and very understanding. I loved the fact that I did not have to wait to be seen and was treated immediately. Everyone worked together to make my time of illness as comfortable as possible.','2019-02-19 13:04:56.000000','251751275488925'),('10215444127920441',1,'This place was the most helpful and comfortable place in an uncomfortable situation. From Kimberly P. Who helped through paperwork all the way through the nurse Regina L and doctor John A. From helping with payment options and good experience recommendations this place helped outstandingly. Will recommend to others','2019-10-22 13:39:16.000000','1609539722669429'),('10215448484794658',1,'The staff at Signature (Kim, Lucas, and Eric) are very quick and knowledgeable. The site it self is very clean and welcoming. And our care here was fantastic. If you are feeling ill come here.','2020-02-28 20:24:51.000000','235046800697531'),('10215457647027271',1,'Great staff. Very attentive.','2018-11-28 06:22:17.000000','1787364321589026'),('10215466021469110',1,'Getting the attention needed for my work injury vs the other care in Terrell TX. Extremely overwhelmed by their caring and examination of my right ankle and fitting me with ankle boot, thank you so much. Highly recommend coming here for immediate attention.','2019-11-26 20:54:34.000000','251751275488925'),('10215468809383287',1,'Wonderful places and excellent services. Rollie, Natalia, and Stephanie are a great asset to your company','2020-01-27 01:51:11.000000','1648645701907657'),('10215472498667849',1,'Melissa greeted us as soon as we came in and jumped into action as we explained the situation. Jani and Jose then lead us into the back and asked us the appropriate questions and gave us the proper aftercare information. Dr. O\'Malley gave us proper treatment and was fast and efficient.','2020-01-13 03:35:42.000000','167959367441528'),('10215478405933873',1,'Brought my son for a visit and I the staff Dr. Nguyen Nurs Susan and Registar Tanishia W. Was very helpful and nice. I will be coming back.','2020-02-05 02:46:42.000000','461782867645453'),('10215493945354879',1,'great place very comfortable very fast great people Lisa ,Dr.Huerta,rebecca\'s and Jocelyn everything was explained very clear and I\'m very happy that I came here','2019-06-23 14:40:38.000000','596022027480375'),('10215497417604154',1,'Really great and fast service and Dr. Jolly was awesome !! Feels to have an emergency room so close by to where i live , that I count on !','2018-01-18 16:09:32.000000','1765121397101399'),('10215507387093937',1,'The staff is courteous and very helpful.','2019-11-01 23:18:42.000000','1609539722669429'),('10215509240957770',1,'Went Saturday morning 11/10 with severe cough, congestion, fever, chills. Outstanding experience. I was going to triage before I finished my paperwork. Staff very efficient. Had chest x Ray, breathing treatment and tested for the flu. Was diagnose with Acute Bronchitis. Dr Hehman took his time explained the results of he tests, negative, and wrote me 4 prescriptions. Highly recommend','2018-11-14 12:15:21.000000','1787364321589026'),('10215520938291203',1,'Excellent service short waiting time great staff kelseyJ.','2020-07-31 01:16:06.000000','1787364321589026'),('10215537526496916',1,'Always excellent, quick, friendly, service. there is no better place to go. Thank you Erica, Ashley K., and Jennifer!','2019-08-29 21:09:58.000000','299216637560955'),('10215542324323923',1,'Very friendly staff. Extremely clean facility. Awesome bedside manner by all. My husband had awesome care from the doctor, nurses and staff. Thank you Jennifer D, Ashley Kelley, and Erica!! You are all wonderful!!!','2019-03-01 01:56:27.000000','299216637560955'),('10215546083552517',1,'This place is fantastic! All of the staff, Alvean A., Kelly L, and Jocelyn took great care of me! They made me feel at ease right away. I was in and out quickly and was already feeling better as soon as I walked out! Go see them :)','2020-01-08 14:06:04.000000','167959367441528'),('10215566630900667',1,'I visited this location with my sister and everyone was very nice. They have 5 star Emergency Room Service.','2019-08-15 04:26:24.000000','829264323932850'),('10215580061966677',1,'Friendly and Professional staff, minimum wait time. Excellent team at the front desk and healthcare team. Alvean was my nurse. Her attitude was great! The doctor explained everything to me and he was quite informative.😀😀😀 Amazing staff and service. Thank you for making my difficult day a little easier guys','2020-02-21 21:14:19.000000','167959367441528'),('10215586210635283',1,'no wait time front desk was super nice Jessica S. did a great job!','2019-12-20 22:16:50.000000','596022027480375'),('10215619631870353',1,'SignatureCare is the best ER. I came in with some very serious concerns however the staff was amazingly friendly, helpful and I knowledgeable. Is started with the front line staff as Jasmine checked me in and offered quality client services. Nurse Tricia was amazing she was gentle, knowledgeable and hospitable. Nurse Robert was great and made sure that I was taken care of. I will definitely be back....they were amazing!!!!! If you’re in the 1960 area don’t waste your time going anywhere else','2019-11-21 22:49:32.000000','167959367441528'),('10215621526198022',1,'I brought Justin to SignatureCare Emergency Center this morning for flu symptoms and we received top notch care. We were taken back with no wait. The attention he received from Jennifer D at check-in was very friendly and right to the point. His tech - Matt - was nice and welcoming of Justin and his needs. His nurse - John Bell - was on his A game, even when he did the flu and strep test. Dr. Veloso explained everything he was checking for and was informative as to what to expect and what to look for if symptoms get worse or others appear. Bonus - if you are a Teacher - they waive your co-pay!!','2020-01-21 15:14:59.000000','299216637560955'),('10215626564554299',1,'5 minutes ago\n\nCame in feeling horrible & Thanks to nurse Norma i didn\'t feel my IV going in, Thank you nurse Tammy & Thank You very much Dr. Patel for explaining everything to me. Walked out feeling much better,Friendly all the way around','2020-02-23 20:58:57.000000','461782867645453'),('10215630036529972',1,'Very clean and great people!!','2019-12-12 03:44:38.000000','596022027480375'),('10215646928995149',1,'Dr.Garcia was awesome as always best place to come quick to admit , genesis was great ! the care unit is clean and the staff was very helpfull','2019-07-30 18:34:32.000000','1787364321589026'),('10215650181792864',1,'If you want Great care come to Signature Care. They staff are amazing. Thank you Jennifer, Linda, Ray and Shannon for the care you provided to me. Shout out to Dr Ashbrooks who is wonderful! Thank you','2020-02-15 06:51:38.000000','235046800697531'),('10215657733101150',1,'Dr. Want, Nurse Lynn, & Tanisha we’re very excellent they made this whole process go very smoothly and very helpful at every step of the process!','2020-03-30 04:02:26.000000','544778295636544'),('10215662968031897',1,'Really fast efficient service. Very friendly staff.','2019-09-25 21:53:37.000000','596022027480375'),('10215663291129611',1,NULL,'2017-07-16 21:57:58.000000','544778295636544'),('10215729270537470',1,'The staff was plesant, helpful and considerate. Dr Edwards was quick with diagnosis and with plan for my care. When you are in pain that is important. I appreciate them all','2020-06-10 14:27:01.000000','235046800697531'),('10215760727664451',1,'Excellent care, fast and wonderful staff: Thanks, Luke, Kim and Sherri!!','2019-05-27 18:29:54.000000','235046800697531'),('10215767296007471',1,'It’s always a pleasure to come to Signature Care, from the time I walked in Dee was very attentive. Agnes, Norma and Laura were attentive and patient. Dr. Singla was very helpful and took his time explaining everything and making sure that I received efficient care. Jacque thank you so much for your help as well.','2019-01-15 21:32:54.000000','1608991329419166'),('10215784859347104',1,'Dr. Souman was simple and direct! The remaining staff was exceptionally nice from Amy at registration to Ms.Agnes in nursing. Will definitely be back for any emergency in the future.','2019-05-04 23:38:39.000000','1608991329419166'),('10215805401798468',1,'Great emergency center!! The facility was top notch, I was admitted immediately and treated with great care. The staff was outstanding from the front desk to the, nurses, technicians and especially the doctor. Jackie, Nicole, Adam and Mary were wonderful!','2016-10-17 04:29:40.000000','544778295636544'),('10215835403611789',1,'All the staff, Dr Paul, Susie, Jennifer D., Ashley were so friendly, efficient and took wonderful care of my husband. Dr Paul explained everything. We were back in a room within 10 minutes which would not have happened anywhere else!! Great experience.','2019-04-26 17:10:15.000000','299216637560955'),('10215877238865707',1,'Sergio was very friendly and courteous as soon as we walked in. Mollie and Eric were both amazing with our 1 year old son. They made him feel real comfortable. Dr. Edwards was great and really took the time to explain everything clearly to us. Couldn’t ask for better service. Will definitely be back. If you haven’t been to SignatureCare to be seen for your emergency needs you are definitely missing out.','2019-09-10 14:41:31.000000','235046800697531'),('10215908098602672',1,'The facility is new and clean and the staff are all very kind and helpful. There was zero wait time, and the nurses and doctor were so caring. They took good care of my 7 month old daughter and helped put my mind at ease. We were in and out in about an hour! So glad they are in the neighborhood!','2017-03-20 13:21:07.000000','1609539722669429'),('10215909310583932',1,'Good, quick and professional service','2018-12-01 15:19:25.000000','1765121397101399'),('10215912847200795',1,'Friendly and great awesome care.','2020-02-20 00:55:12.000000','235046800697531'),('10215922245385439',0,'Horrible business. Don\'t go there. They absolutely don\'t care about the community they serve. And they lie. There are plenty of other emergency centers to use. No need to patronize one that couldn\'t care less about Spring Branch.','2019-11-17 22:34:32.000000','1765121397101399'),('10215922698842556',1,'The staff were really nice and friendly. Also very helpful and caring. quick and no wait.','2020-03-14 00:45:32.000000','104213804456471'),('10215971651824051',1,'Excellent team. Everyone was very professional and nice. I was seen by a Nurse and a Dr. within 10 minutes.','2019-12-30 20:53:51.000000','1765121397101399'),('10215984436913639',1,'They were great! Very friendly staff, quick service, they were extra careful during this COVID19 time and it was all in all a great experience for something as unpleasant as a health problem.','2020-05-18 17:15:12.000000','1609539722669429'),('10215998034565799',1,'Very Quick and treated me very kindly with legitimate concerns about my health and wellness.','2019-11-15 19:20:03.000000','544778295636544'),('10216002472506870',1,'I had to go to the ER yesterday and I can say honestly that they surpassed my expectations. Online they advertise a short wait time and man they weren\'t kidding. The front desk gave me the new patient paperwork and I sat down a good 45 seconds and the nurse called me to the back. Facility is very clean and the whole staff was great! I was in an out in about 2 hours. Fantastic Service! Lord forbid I need the ER again, but if I do I\'ll definitely be going back. It\'s way better than sitting in the hospital ER for 10 hours of your day. Thanks to Evelyn and Alexis at the front desk, thanks to my amazing Nurse Jennifer, thanks to Mike the Radiology tech, and thanks to Dr. Nyland for such care and fast service!!!','2019-02-28 15:50:08.000000','544778295636544'),('10216004562280970',1,'5 star service! Definitely recommend this ER location. Ashley S. Is super friendly and nice. The nurse Rachael and Rad tech, Can N were polite, friendly and well informed. And doctor Thomas was amazing. Definitely will be coming back, again. \nThank you!','2019-01-30 22:36:59.000000','461782867645453'),('10216006152282849',1,'they ease your mind on what is going on. and work with you if you dont have insurance. that\'s so awesome. I love this place already and we have not even seen the doctor yet.','2020-02-28 22:52:39.000000','235046800697531'),('10216012964264243',1,'I ended up at this facility last night after a reaction to a steroid shot earlier in the day. These people are over the top professional, kind and caring. They took great care of me and listened to my concerns, answered my questions and I left feeling so much better. My staff was Kristina, John, Nicole, Maya and Dr. Faig - they were the best! Thanks to all.','2020-03-07 16:01:30.000000','829264323932850'),('10216042804532823',1,'Signature Care is always a good experience! They are great listeners and always urgent to your care .I would like to thank the staff Cecilia ,Gina,JB ,and Dr Ding','2020-03-07 14:48:22.000000','1609539722669429'),('10216090184832757',1,'From the time we walked through the door, customer service was exceptional! I’ve never been into a place that was so welcoming and understanding. The staff here know their job and they do is so well!','2019-11-05 04:33:52.000000','251751275488925'),('10216105669860774',1,'Signature care takes great care of you.. 5 out of 5 stars and receptionist Val was very professional and helpful','2020-01-07 14:53:20.000000','1787364321589026'),('10216109162378366',1,'A quick and painless procedure performed on site! I was in and out in less than an hour. Wonderful and helpful team members! Couldn’t ask for a better experience.','2020-03-09 19:56:34.000000','1608991329419166'),('10216114218231727',1,'Why go to a hospital emergency room! Dr. Jaber, Nurse: Kristina, Radiology Tech: Hanh, Er Tech: John and Registration: Genesis are a great team. I sincerely appreciate you guys caring for me. I know its you\'ll job, but I take it personally because it is my health.......thank you all sincerely 💞','2020-01-19 14:51:45.000000','829264323932850'),('10216154063190152',1,'Amazing experience. Ryan, Katy, Mollie, Brandi, Eric, & Dr Ashbrooks were all exceptional in my quick & proficient care. Truly grateful!','2020-02-02 02:20:14.000000','235046800697531'),('10216198421498326',1,'Great service, friendly and knowledgeable staff, and fast care!','2019-11-19 16:35:37.000000','167959367441528'),('10216207531732024',0,'We scheduled an appointment for covid tests before upcoming travel. We were told appointments were required with those tests. We go in and they tell us they’re running behind about 30-40 minutes. There was about 10 people in the waiting area. All waiting on covid tests that they have appointments for because appointments are required. We waited and hour and a half. Finally taken back, swabbed and told it would be 15 minutes before our results were ready. Another hour goes by and they finally call us back and make us wait in another room just for our results. Three hours of our lives wasted. What was the point of having an appointment? Our time is valuable. We have kids and jobs and busy lives. We scheduled late at night thinking they wouldn’t be busy. Big mistake. We didn’t get home until after midnight. Will not be back. Do not recommend.','2020-08-01 13:48:10.000000','299216637560955'),('10216213304507852',1,'I had a wonderful experience of receiving care from Signature Care Emergency center in Montrose. I was taken to see a doctor immediately after I arrived,and all the stuff was very polite and helpful.','2016-12-23 02:35:33.000000','544778295636544'),('10216225112715683',1,'Dr. Faig was super informative and was able to re assure us that my daughter would be fine and to of course come back with any concerns. Kristina was amazing. No wait . Would definitely come back. This place is 24 hours and convenient to get to','2020-01-02 15:27:32.000000','544778295636544'),('10216246452092808',1,'super quick ,very friendly and had great advice to give','2019-07-12 22:20:42.000000','544778295636544'),('10216248957149048',1,'Staff was friendly, and fast. Did not have to wait at all to go back, dr was in the room within minutes, and taken care of. They were very hospitable and treated us as family.','2019-05-05 21:56:08.000000','251751275488925'),('10216270690782342',1,'Staff is amazing! They really listened to me and took my concerns seriously. Special thanks to Dr. Diaz, Andrew, Lisa V., and Julica. Y’all make a great team.','2019-12-07 00:37:11.000000','596022027480375'),('10216275101687001',1,'This is a wonderful facility. My husband went to the Westchase location with an emergency and was very quickly seen and diagnosed. The doctors and nurses took great care of him and now he\'s well on his way to recovery. Thanks to Sara, Kristina and all others who were very comforting and helpful!','2020-01-19 23:54:08.000000','829264323932850'),('10216292714175283',1,'I want everyone to know how well the staff here took care of me. I walked in and was immediately seen. Little to no wait time. The Dr and nurse listened to my concerns and I really recommend SignatureCar Emergency Center to my friend and family! Thank you for taking such good care of me..','2020-04-18 21:30:17.000000','544778295636544'),('10216295499251944',1,'Welcoming and everything was made great by Dr. Patel, Amy, Josh, Joey, and Jessica!','2019-05-06 06:00:37.000000','1608991329419166'),('10216299967749290',1,'This place is awesome. My son suffers from severe migrains and when he goes to a regular ER he has to wait hours in pain. Not only are they fast but soo very helpful and compassionate to the patient and family. The receptionist alyssa saw that my son was in a lot of pain and made sure the nurse knew. Our nurse jesse reed has a wonferful bedside manner and our doctor. Dr.Kimball was so very awesome !!','2016-06-10 11:11:32.000000','544778295636544'),('10216308721533356',1,'My Husband and I came here on Saturday morning due to my Husband having tightening of his chest. What we thought was an early sign of a heart attack. It ended up being pneumonia. He ended up staying one night, and I just can\'t thank the staff enough for taking care of him (us). You all are the nicest, most caring people, from the beginning at registration and Raven seeing how scared I was, to the best nurse (Brenda) trying her best to make me feel comfortable, to radiology, and the Dr. Thank you! Thank you!','2018-05-11 03:14:11.000000','1787364321589026'),('10216314605511678',1,'Laying here now with an abscessed tooth & very happy to be here. It’s very clean & comfortable. The doctor & nurses are so kind & have really good bedside manner. I had to stay 24 hr, overnight & happy it was here!!!','2019-08-07 11:50:06.000000','461782867645453'),('10216315522989275',1,'Maya the receptionist was so fun and welcoming! I’m always coming! Red recommend!','2020-02-26 21:13:41.000000','829264323932850'),('10216329870904343',1,'Wonderful super friendly staff. I highly recommend.','2019-12-16 23:14:59.000000','829264323932850'),('10216345897215714',1,'Very friendly staff! Attentive and no wait time! Highly recommend this place for your medical emergency needs!','2019-11-27 17:31:45.000000','596022027480375'),('10216375899771405',1,'great experience over at SignatureCare Emergency Center! Kendra, Brad, Valcey, and Morgan were great.','2020-02-11 15:49:22.000000','326347177710316'),('10216385067239454',1,'Best and quickest ER visit I have ever had! Staff was prompt and very friendly. Only recommendation is to start accepting Tricare! Other than that, absolutely no complaints.','2019-10-19 23:36:48.000000','235046800697531'),('10216425572212814',1,'I was very pleased with the prompt service I received. Everyone there was very nice and helpful. I highly recommend this location.','2020-02-21 04:27:03.000000','1609539722669429'),('10216426778576358',1,'Great experience and Jennifer D at the front get you in super fast','2019-03-28 17:29:03.000000','299216637560955'),('10216438930878330',1,'What a great place. I took my daughter in and had the best experience. All of the staff and the Doctor were very attentive and so kind. They even called us the bezt day to check in to see how my daughter was feeling. Thank you so much!','2019-02-20 01:38:42.000000','251751275488925'),('10216444492975524',1,'Went in thinking I had a bad upper respiratory. They tested for a few things and the doctor said she wanted a xray. good thing...I had pneumonia. Gave me IV meds and then out with 3 prescriptions. Started feeling better in a few days. Thaat was my 2 time there and pleased both time, with very little wait.','2018-04-29 01:55:58.000000','544778295636544'),('10216447903742031',1,'The staff was very courteous.\nThere was no wait . The Doctor explained everything and asked if we had any other questions. The facility was extremely clean and comfortable \nI am recommending \nSignatureCare Emergency Center \nThey are awesome \nThank you !!','2019-03-20 15:51:44.000000','251751275488925'),('10216464098172746',1,'The staff function as a team. No one person is more important than another. They are very knowledge, friendly and seem to enjoy the job','2019-04-06 07:32:38.000000','235046800697531'),('10216465649966590',1,'This place was awesome. I got in and was seen by the doctor very quickly. Everyone was extremely friendly and helpful. The establishment is sparkling clean. Not one negative thing to say about this place. I will definitely go again if needed and I highly recommend.','2019-06-22 17:41:41.000000','251751275488925'),('10216494278934070',1,'They got me in and tended to me quickly and made me feel comfortable despite all that is currently going on! I would definitely recommend this place. And my ER Tech daniel was the BEST!!! maya was so awesome!!!!','2020-03-20 18:40:26.000000','829264323932850'),('10216512149413412',1,'great staff! highly recommend','2019-01-08 04:59:33.000000','1698192877146046'),('10216532667322149',1,'Dr. O’Malley, Nurse Nikki, and our Ultrasound tech, Jessica were amazing! Our son was attended to immediately with expert care; attentive and conscientious...ready to do anything to ensure he did not wait unnecessarily...all options for care were prepped and ready for any eventuality while we waited for test results.\n\nI wish all care teams were like this. \n\nThank you!!!','2019-04-23 03:42:14.000000','167959367441528'),('10216553529924264',1,'Thank you to the amazing receptionist Maria and nursing staff savy, Corey, Aaron and Kim!','2019-05-16 23:54:14.000000','596022027480375'),('10216557251831993',1,'From the time I walked in, until the time I left, this place catered to evey need and even ones you didnt know you needed. Awesome staff, great physician. I highly recommend this place for all your emergency needs.','2020-01-23 15:57:28.000000','235046800697531'),('10216581526425528',1,'Excellent customer service!','2019-08-04 20:00:41.000000','326347177710316'),('10216596930543270',1,'Great place! Taylor was very helpful, And so was Jerry and Dr.David.','2017-01-25 04:19:25.000000','326347177710316'),('10216596966902224',1,'Very kind staff and very efficient. I was greeted and check in by Linda. Karen was my nurse who filled out paperwork for me. Sara took x-rays and was super nice. Dr.Curtis was in within a hour and listen to my concerns. The environment was very nice and extremely clean. Very nice place and quick service. Which is a plus when you don’t feel well and don’t really want to go to the doctor in the first place. I would definitely recommend in an emergency or non emergency situation.','2019-12-26 01:42:43.000000','235046800697531'),('10216610131760155',1,'We had such a great experience here. The staff were professional, friendly, and very efficient. Awesome care!','2019-07-05 17:08:24.000000','235046800697531'),('10216618275316523',1,'Very Friendly and quick to meet my medical needs. My nurse was Blake, he was very friendly. It was a tad bit hot though when I went to get my CT scan. Overall, great experience.','2019-03-09 12:50:58.000000','1648645701907657'),('10216621667515214',1,'They were on top of everything as soon as I walked in. Great service. Rick and Thuy An were very helpful and explained all very well. I would highly recommend this ER','2020-05-13 15:17:10.000000','167959367441528'),('10216629867369509',1,'No long waiting to be seen by nurses and doctors.','2020-02-15 07:17:58.000000','235046800697531'),('10216653247617357',1,'We brought our 6 yr old here on July 4th and I can’t say enough good things about them. Lizzie at the front desk is the absolute sweetest and so very knowledgeable. She was seen by Dr. Nylund who is amazing, Dawn & Norma are exceptional as well and the experience was unbelievable! They make you feel so comfortable and at ease. We will definitely use them in the future when needed. They are open 24-7 (including the holidays which is a HUGE plus). We were blessed to find this place, if you have an emergency do not hesitate to come see these amazing ppl ❤️','2019-07-04 16:43:08.000000','1608991329419166'),('10216663233835312',1,'I was treated very well. Was seen quickly and didn\'t have to over wait to know what\'s wrong and be treated for what I was going trough. I was happy to get the right help I needed.','2017-05-31 18:23:03.000000','1698192877146046'),('10216668260712531',1,'Everyone was super friendly and helpful! Best ER care I\'ve ever experienced! Very compassionate about the reason for my visit.','2019-11-04 16:46:30.000000','251751275488925'),('10216673386531933',1,'Every medical professional at this location is friendly and cares about the comfort of the patient! I have been to the Memorial City location twice with my daughter and both times have been great experiences. Thank you for your amazing “bedside manner.”','2018-05-06 23:38:14.000000','1765121397101399'),('10216674396746927',1,'My visit was great and everyone was so kind. Thank you Quintessa, Amy, Thai, Yolanda and Dr. Zajac. 😊','2019-06-27 14:55:53.000000','251751275488925'),('10216685456870927',1,'I have been here Twice now and have always been treated kindly and compassionately. Very nice staff who seem concerned about you and what you need. Highly recommend using them when you are in need of medical assistance.','2020-02-08 20:29:58.000000','251751275488925'),('10216701423438783',1,'Professional, courteous and genuinely concerned. Felt like I was the only patient there.','2018-05-14 22:51:48.000000','544778295636544'),('10216720483304473',1,'Very helpful doctors in this crazy time. I was able to schedule a same day appointment.','2020-07-21 04:37:10.000000','104213804456471'),('10216744379868731',1,'They are wonderful! Friendly and faster than the regular ER and wonderful for first responders and their family!','2020-02-28 13:47:21.000000','235046800697531'),('10216777455883331',1,'Jennifer D., Erica and Ashley K. were very friendly and knowledgeable the facility was clean and well kept. Were With no wait time I would definitely use signature again and recommend it to others.','2019-05-04 19:35:23.000000','299216637560955'),('10216796820984066',1,'Very good care. Very attentive. On the ball. Thank all. Feeling tons better. Dr Patel. Tammi. And Norma.','2020-02-23 17:48:52.000000','461782867645453'),('10216797299266523',1,'Dr Gilbratis was so kind... the only doctor that could be any nicer them my PCP!\nHe listened too my concerns, smiley the entire time and I was in and out in an hour, that included labs and a cat scan!!!!\n\nMy nurse Jessica was great and the front desk agent even went and found the remote for my father in law so he could watch Meet the Press in the waiting room.','2020-03-16 08:09:01.000000','1765121397101399'),('10216809073169517',1,'We love it!... Thanks for your service...','2018-09-02 23:56:19.000000','544778295636544'),('10216812433277020',1,'They took great care of my son... Staff was excellent will definitely come back instead of ER','2019-03-19 12:27:42.000000','251751275488925'),('10216834206392956',1,'Very friendly and fast service. The staff knows what they\'re doing, and they constantly asked how I was doing or what I needed. \nI highly suggest them if you need an ER','2017-01-21 07:28:43.000000','1608991329419166'),('10216841355328595',1,'Great place to take care of all of your emergency needs. High Tech equipment. Easy payments. Great friendly staff from the first phone call to my exit. The Receptionist, Jocelyn was very welcoming and polite. Dr O’Malley has great bed side manners and very entertaining. My nurses, Jose and Alvean, were a tag team sensation. Marcus and Jordan were extremely polite and upbeat. Highly recommend.','2020-03-02 21:54:47.000000','167959367441528'),('10216907895866072',1,'Super friendly and offer rapid covid testing, a bit of a wait but amazing staff. Shaunda, earl and Christina are great!','2020-06-12 17:45:28.000000','1698192877146046'),('10216911055351811',1,'We had a wonderful experience from the minute we hit the door. Ashley Burton made the check in so easy she was very polite and courteous. Ashley K got us situated in the room and made it very comfortable and offered her patient a warm hot blanket.. Erica and her fellow nurse man was absolutely wonderful and very professional. They assessed her and got the ball rolling quickly. I haven’t encountered a Dr. like Dr.Simmons in a while she was on it from the time she entered the room. Very good bedside manners and not afraid to interact ,touch or help with her patient. She was a breath of fresh air. She got the test and orders going quickly. The janitorial lady was very helpful and nice and showed us where the snacks and drinks were. I thank everyone from the bottom of my heart for being so sweet understanding and patient. This is the place to take your loved one if they are sick. They will get you in and treated in no time. BEST ER EXPERIENCE IVE HAD IN A WHILE','2020-01-25 19:00:09.000000','299216637560955'),('10216918872188896',1,'I highly recommend this place. I know and met with Lauren Mollard and was happy to know the great multitude of services they provide for their patients!','2018-08-13 23:00:54.000000','1698192877146046'),('10216923467308863',1,'Shout out to a great ER facility.\nMy team today gave the best care. Thank you!\nRaven, Dr. Wren, Nichole, Staci...','2018-07-15 16:55:15.000000','1787364321589026'),('10216927231916524',1,'This place was great! We were called back before we could finish the paperwork, which was amazing. Our nurse Sarah did a very fast and painless IV stick on the first try - which something that is always hard to do with thin veins. The whole staff was super attentive and friendly. Thanks to Fatima for making our first CT scan not so scary. And Tanishia at the registration is very welcoming.','2020-02-07 05:06:39.000000','461782867645453'),('10216931775836298',1,'I love the service here it is fast and quick and they are very friendly. Alyssa and Kelsey are very kind front desk ppl that ensured great customer service and made our visit here pleasant. They always have snacks and drinks for the guest and the wait time to see the Dr. is always very quick','2020-07-04 20:44:16.000000','1787364321589026'),('10216939929662746',1,'Dr. Soli, Amy, Regina, and Miguel took great care of me!','2019-10-05 20:24:01.000000','1609539722669429'),('10216948073479108',1,'Kimberly, Jacob and Nicholas were an amazing help to my husband today. Great quick service handled professionally and with a smile!','2017-03-14 14:24:18.000000','326347177710316'),('10216956306374341',1,'My Niece was treated by Dr Ding, our nurse was Joseph and Amy was at the front desk...We had an Awesome experience from the moment we walked in the door!... We were seen promptly and walked out very satisfied!!..I have told many people about this location, and about how professional everyone is, every time we’ve been here!','2019-04-27 21:49:31.000000','1609539722669429'),('10216980178571138',1,'Our services were great! Keera the receptionist was exceptional as well. Thank you !','2019-07-18 13:59:08.000000','1765121397101399'),('10216982925940098',1,'My brother, Derek Toliver received great care. Staff at the Signature Care ER Copperfield location, Dr Mauldin, Nurse Sarah, and registration station, Ms Tanishia W are first class!','2019-11-01 03:43:05.000000','544778295636544'),('10216982938020400',1,'My brother, Derek Toliver received great care. Staff at the Signature Care ER Copperfield location, Dr Mauldin, Nurse Sarah, and registration station, Ms Tanishia W are first class!','2019-11-01 03:44:57.000000','461782867645453'),('10216993569251917',1,'Awesome, caring & Amy, Mina and Dr. Lim and Brian & environment. 3rd time visiting this location, can always count on for getting assistance from an emergency to quick covid testing. Smooth & safe process all the way thru... Definitely recommend!','2020-08-03 13:48:00.000000','1608991329419166'),('10217003413252371',1,'This place is awesome! Payton broke his hand, and he was in and out in record time. Super friendly staff, too!\nKudos to Jolynn, Kim O, Lisa V, Cory, Allison, and Dr. Anders!!','2019-09-27 04:18:07.000000','596022027480375'),('10217004858183064',1,'Excellent prompt care! Everyone was professional and friendly. I was well taken care of.','2018-02-18 20:21:06.000000','544778295636544'),('10217010612953751',1,'The staff was amazing working w/my mother!!! Randi, Keira, Senaida and Dr Thomas went above and beyond!','2020-08-05 06:38:51.000000','237100240304186'),('10217018567878135',1,'The office staff and nurses here were amazing and Dr Haynes was through and explained everything with great bedside manner. Would recommend. There was no wait to be seen.','2020-05-23 19:29:08.000000','104213804456471'),('10217021532240510',1,'This place really is great. Hardly any waiting, no extensive paperwork, easy to deal with and they have a lab on-site. My family will go here for our medical needs.','2015-10-05 19:09:27.000000','544778295636544'),('10217031824770306',1,'It was quick and painless!','2020-02-25 01:30:21.000000','237100240304186'),('10217035004578874',1,'Great service! 1st time here and will definitely choose this again if ever needed.','2020-08-06 05:59:53.000000','105589317817643'),('10217035205892399',1,'Best ER experience ever! Check in was quick, less than 5 minutes and serviceand staff were great. \n\nHands down the cleanest, friendliest, and best ER experience I\'ve ever had.\n\nThanks Alvean and Patricia!!!\n\n','2020-02-09 16:57:05.000000','167959367441528'),('10217037200458163',0,'My experience with you was horrible, wait 6 hours to get tested and I told the receptionist that I felt bad and they didn’t nothing. VERY BAD SERVICE.','2020-07-07 14:17:45.000000','544778295636544'),('10217043395662552',1,'Highly recommended! Everyone was very helpful!','2020-03-08 04:34:00.000000','1648645701907657'),('10217046004756231',1,'Kim is the best! She was awesome!','2019-09-01 00:34:45.000000','596022027480375'),('10217047312728107',1,'Great experience. Great care. Jennifer, John, & Ashley were all very helpful another positive experience. Highly recommended!!','2019-06-29 18:51:01.000000','299216637560955'),('10217048921030472',1,'Comprehensive and Kind... a great experience','2020-03-21 03:10:03.000000','461782867645453'),('10217055716657130',1,'I just want to say that my experience was amazing. \nMy doctor made sure to do everything he needed to To get to the bottom. My nurses name was Kat so sorry I feel so comfortable. She was very cherry my mom was really cold and brought her a blanket. Joshua he was very nice boy x-rays of my CAT scan to make sure and let me know what was going to happen. Melissa is at the front super nice just seem really genuine she spoke English and Spanish. I will for sure be coming back because it was a lot easier than actually going to be emergency room and they are super super Henri you don’t feel like they’re going to take forever I got it and I got out few hours. Also my biggest David can you go to the doctor or you want to feel like they’re taking care of you and that’s how I felt so to me that’s very important my hope is very important to me and they did everything they needed to do.','2019-06-14 12:02:59.000000','167959367441528'),('10217056783511343',1,'My experience with the Heights Center was great. From the front desk to the back office it was a smooth transition. The team made me felt comfortable and at ease in my time of need.\nSamantha, Brandon, Juan, Bryan, Joann, and Dr.Singla excellent customer service.','2020-03-09 12:00:30.000000','1609539722669429'),('10217069778766827',1,'Came in to get stitches for a cut I got while cleaning a deer, then came back to get the stitches out. Jennifer, John, and Dr. Curtis were friendly and accommodating. they got me in and out quickly and I understood everything perfectly. couldn\'t have asked for a better experience!','2018-11-22 02:45:24.000000','299216637560955'),('10217084707494032',1,'Hayleigh and the team at this facility were super sweet to me andsensitive to my issues. I was treated properly and will come back if need be😊','2018-09-10 01:45:08.000000','1608991329419166'),('10217095746120260',1,'Very fast and friendly service.','2019-06-13 05:35:25.000000','596022027480375'),('10217117228463805',1,'Great fast friendly staff... Jacque v.... she knows how to get the paperwork done quick.... great job!!!!','2020-03-15 05:26:22.000000','237100240304186'),('10217122531324364',1,'The staff was so professional and attentive. I had been trying to find a Rapid testing place for 2 days in the area for Covid-19. Because I\'m over 65 I did not have to make an appointment. I tested negative but because I complained of chest pains they kept me overnight to monitor me.. The staff was own their toes and ran several tests before releasing me. I highly recommend Signature which is open 24/7. I give them a five ⭐⭐⭐⭐⭐👍😁','2020-07-12 00:23:24.000000','104213804456471'),('10217150833655740',1,'I had a great experience at Signature Care. Everyone was so welcoming. Upon entrance Ms. Brenda R was extremely nice and provided awesome customer service. I would highly recommend this location to anyone!','2019-05-25 20:40:28.000000','1608991329419166'),('10217153768709616',1,'Great experience! Sita, Kim, Allison, and Dr. Thomas were all so kind!','2019-09-17 03:44:24.000000','596022027480375'),('10217207969926133',1,'Excellent Care and fast reception, I was seen by Dr Patel, who explained everything about my CT scan and from the nurse to the Radiology, they took great care of me, when I was in so much pain!','2019-10-25 02:18:25.000000','251751275488925'),('10217208604078983',1,'Adrianna is so amazing thanks for taking care of me! Wonderful staff! Prompt and caring.','2019-06-16 20:29:38.000000','237100240304186'),('10217210313948751',1,'Fast, caring service. Would use them again.','2018-08-15 12:35:26.000000','1765121397101399'),('10217249555585411',1,'Dr. Smith, Kat, Laura, and Luisa made this a great experience! Never something I thought I’d say about an emergency room. Wait was no time at all, staff was friendly and informative, and they did a great job.','2019-05-25 01:01:30.000000','167959367441528'),('10217260029308288',1,'They were clean, thorough, and expedient. I left with peace.','2020-05-21 20:37:42.000000','104213804456471'),('10217290943450730',1,'Excellent experience. Cynthia was the first to greet us. The nurses and doctor were very professional and kind. I thank God he led my husband and I here.','2017-05-25 11:38:37.000000','1765121397101399'),('10217292332721671',0,'Dr. Jaber was the most unpleasant, dismissive, and arrogant doctor I have ever encountered. If you think your life is in danger, please proceed to the nearest elementary school nurse’s office for better quality care.','2018-09-17 00:55:03.000000','544778295636544'),('10217292369762597',0,'Dr. Jaber was the most unpleasant, dismissive, and arrogant doctor I have ever encountered. If you think your life is in danger, please proceed to the nearest elementary school nurse\'s office for better quality care.','2018-09-17 01:01:09.000000','326347177710316'),('10217297039400135',1,'Ashley B & the rest of the team was so wonderful & helpful assisting my mother thanks ❤️','2018-11-29 23:52:17.000000','299216637560955'),('10217348483491761',1,'excellent service and wonderful staff would definitely recommend to anyone who needs to be seen','2020-06-03 05:02:15.000000','251751275488925'),('10217358042280802',1,'The receptionist Dee was great check me right on in and got my baby boy check in and check out','2018-11-05 20:26:32.000000','1608991329419166'),('10217365134949904',1,'Best staff and Physicians ever! You’ll be glad you chose SignatureCare!','2018-12-06 03:54:43.000000','299216637560955'),('10217375776887275',1,'The staff here was amazing! They got me in so fast! I had a great team taking care of me! I just want to personally thank Alvean, Marcus, Thuy An, and Amy! Y’all are the absolute best! Thanks for the professionalism and just being so great!','2020-03-22 16:41:30.000000','167959367441528'),('10217377158045405',1,'They really do take amazing care of you here! Brenda and Norma are saints!','2018-08-15 00:32:10.000000','1787364321589026'),('10217380688642395',1,'Everyone here is completely amazing. Super informative and very helpful. Chris was my nurse here and he made me so comfortable.','2020-02-07 21:05:16.000000','1609539722669429'),('10217401820892466',1,'Awesome Service! I came in after having a sore throat. The staff is so friendly and attentive, I was taken to a room, with a warm blanket. My nurse Christina and Dr. Elbecker were amazing and took good care of me. Unfortunately, I tested positive for the flu. But I got medication and was in and out in less than an hour. I highly recommend this place!','2019-12-11 17:00:12.000000','1698192877146046'),('10217417199647906',1,'Awesome staff! Thank you Jocelyn, Alvean, Marcus, Jordan, and Dr. Dang! You all were very friendly and helpful. Great service.','2020-03-16 12:50:59.000000','167959367441528'),('10217448362627153',1,'Outstanding care. Appreciated all their professionalism and compassion. So thankful they were there for us. Loved all the doctors, nurses and all their staff. Amazing how they were able to take care of all our needs from the small and convenient location.','2018-11-04 01:30:18.000000','1765121397101399'),('10217449838380998',1,'Sita, Candi, Vanessa, David, and Dr Patel were fantastic. Walk in feeling like death. Walked out feeling human again. They are my heroes.','2020-04-21 07:23:56.000000','596022027480375'),('10217451513817927',1,'This place was so good tonight w my daughters tooth pain and infection! From the front desk, Jennifer, to the doctor and nurse Billy was exceptional! Nothing hurts worse than seeing your child in pain! They took her concerns very seriously and explained everything thoroughly!!','2018-11-24 03:23:19.000000','299216637560955'),('10217463799803411',1,'Dr. Sylvester and staff was great.','2019-04-07 20:44:28.000000','1787364321589026'),('10217535990332279',1,'They handled my covid test very safely and professional.','2020-07-08 14:33:16.000000','1787364321589026'),('10217549169660807',0,'They started out great. However the nurse girl came in my room 2x without her mask on. In this time that is not how you keep people safe! Very upsetting. I also didn\'t get any answers really and they didn\'t fully explain what my issue could have been, just to follow up with my heart doctor. So now for the next 14 days I will even more upset and paranoid that I was exposed to Covid-19 for no reason and since she took care of me 2x without a mask...I guess you\'ll all know where I get it if I do. They were all nice though and got to me asap. Only good thing.','2020-05-03 21:40:18.000000','596022027480375'),('10217585522044490',1,'Came to signature care and was seen right away, the staff was super friendly and knowledgeable. They answered all my questions and ensured i was taken care in a timely manner. Will definitely recommend this place! Thanks.','2019-10-24 00:40:09.000000','251751275488925'),('10217586033988479',1,'This was the BEST URGENT CARE!!! I came in really I\'ll and had no idea why. I felt like they took their time with me. EVEN THOUGH they were kinda busy I felt like the only one there. They finally figured put what was wrong they took they\'re time explaining what it was and how to treat it. The issue I had could of killed me and I truly believe they saved my life. I will recommend them to everyone I know!! THANK U TO ALL THE STAFF THAT WORKS THERE, U R ALL ANGELS!!!','2018-06-05 17:25:14.000000','1609539722669429'),('10217587536824591',1,'These folks were fantastic. Very professional. No wait. Hope to not need them again but they were great.','2018-09-11 17:28:39.000000','1787364321589026'),('10217618588409386',1,'I truly appreciated my visit here. The staff were nice and helpful! Dr. Faig helped me understand why I was sick! Amy she took me straight back to the room and was very sweet and helped me within a timely manner. Irving helped me as well! They all got me in and out! Thanks again SignatureCare!','2019-09-13 01:22:45.000000','829264323932850'),('10217634191753546',1,'I have had to bring my husband in 3 time in past month for severe pain. I bring him here instead of hospital emergency room as they immediately treat him and give him pain medication within minutes of arrival for his pain. We are so grateful for this service as hospital emergency room normally takes 3 hours or more to receive Anu treatment \nEveryone here at the heights signature care emergency center are very excellent and take care of you with kindness and empathy.','2018-09-30 01:14:20.000000','544778295636544'),('10217658126669477',1,'amazing service, very caring, Jessica was amazing','2018-10-27 03:27:26.000000','1787364321589026'),('10217670689389972',1,'Was seen quickly, questions and/or concerns answered, everyone was polite and friendly and made the visit much easier to deal with under the circumstances.','2020-07-31 03:42:07.000000','829264323932850'),('10217672625353384',1,'I was traveling on business and had a pain in the middle of the night. Went in to the Stafford location. Got fantastic care there. Turned out to be a pretty bad episode of diverticulitis. It was a good thing I didn\'t leave town as planned. \n\nEveryone at the facility took very good care of me. Doctors were super thorough and kept me over night on IV antibiotics before releasing me. I have to make sure I mention that Nurse Nichole kept making sure that I knew she was always at the ready with a warm blanket, should I need it. After many times of me saying I was fine, she brought it anyway. I have to admit, it was kind of nice!\n\nIf you have a medical emergency, and are near this facility, this is absolutely the place to go!','2018-11-13 22:20:16.000000','1787364321589026'),('10217682109190058',1,'I appreciate that they have someone outside checking you in..especially during these times. Jocelyn welcome us and checked us in quickly. within minutes we were in the back. Alvean and Meredith took care of my daughter with kindness and patience. I would highly recommend that if you you need to go to a urgent care...this is the place to go. They even gave my little girl a teddy bear to calm her fears.','2020-03-18 19:48:37.000000','167959367441528'),('10217701100611525',1,'Place is great! Easy going employees! Great service! Took care of my kid and me, with hardly any wait time!','2020-01-04 20:15:41.000000','299216637560955'),('10217710325768916',1,'Great staff, nurses and doctors. Came in with excruciating kidney stone pain and took care of me right away. Even got a check up call to see how I’m doing. Highly recommended much better than going to Hospital ER.','2018-11-17 16:40:51.000000','829264323932850'),('10217713425360981',1,'Edit: just came back for my sutures and Dr. Zhen had made it a very easy and quick procedure, the nurses Fahme and Daniel were very caring and helpful, lastly Tanisha was the best ever, she\'s very informative and fun to conversate with .','2019-11-30 09:44:27.000000','544778295636544'),('10217736395294093',1,'I had to take my little one on Saturday. Everyone was great. We were in and out quick. Luke, Kim,and Dr Yost were great. Totally recommend SignatureCare.','2019-10-28 23:26:33.000000','235046800697531'),('10217738362304346',1,'Great experience, all the staff was wonderful! Highly recommend for all your health care needs! DR. Henderson, Mollie RN, and Sergio Reg, Erica Rx!','2019-10-23 03:30:51.000000','235046800697531'),('10217748691003662',1,'Great staff!! We will be back!','2020-01-03 13:28:47.000000','829264323932850'),('10217752736677640',1,'I walked and Cindy the receptionist was very nice. Dr. Levaitt was great and super down to earth. I really love the attention and friendly nurses. highly recommend this place','2019-06-07 03:05:58.000000','544778295636544'),('10217765892159234',0,'We tried calling to get pricing since they don’t post any details of pricing. Had a 70 minute wait. 3 hours later we were the next caller and they disconnect the call. Most unprofessional business. I would not recommend going to this facility at all. If they can’t answer a call within 3 hours and then hang up good luck getting what you need. The calls are to get information that is intentionally left off their website of information.','2020-06-26 05:30:28.000000','104213804456471'),('10217781613878851',1,'This is a fantastic facility, clean and bright. But the staff are the best. Fast, friendly and very caring.','2018-09-01 17:31:49.000000','1787364321589026'),('10217785478004645',1,'Seriously the BEST ALL AROUND','2020-07-01 19:41:43.000000','1787364321589026'),('10217788324193405',1,'I just came back for my sutures and Dr. Zhen had made it a very easy and quick procedure, the nurses Fahme and Daniel were very caring and helpful, lastly Tanisha was the best ever, she\'s very informative and fun to conversate with .','2019-12-09 01:59:17.000000','461782867645453'),('10217797081905018',1,'excelente servicio y atencion','2020-07-25 23:47:32.000000','105589317817643'),('10217842791411110',1,'Very pleased with my visit at signature care! Jennifer D was very great at the front desk as well as all of the ladies who helped diagnose and treat my problem! Very Clean and very nice facility! Will recommend to friends and family!!','2019-01-03 16:19:36.000000','299216637560955'),('10217858298122894',1,'Always Service! Seen very quickly! Very understanding & thorough in explaining illness, injury, & procedures.','2019-08-28 17:55:05.000000','1609539722669429'),('10217893426241715',1,'Excellent staff! All the way from the front desk to all the nurses and doctors.Dr. Jolly was great! Very informative and great bed side manner. Nurses Gina and Regina took great care of my Dad. All the techs who performed the Echo gram, X-rays and CT Scan along with John , Natalie and the night crew are all awesome! Everyone had great and positive attitudes. Very helpful as well. I would highly recommend them to anyone who has any medical issue. beautiful clean place inside and out. Thank you guys for my experience!','2019-12-11 23:34:58.000000','1609539722669429'),('10217928530657966',1,'the staff were very helpful and great to work with. They sure helped calm this scared momma down!','2019-09-14 10:25:13.000000','235046800697531'),('10217944712583417',1,'Recently took my grandson in for bronchitis. They were wonderful!! Everyone was so caring and really took care of him. We were in and out of there in an hour (maybe hour and half). I also went myself for the free flu shot they’re doing for the community(until they run out) and all you have to do is show you ID. Very good experience both times!!','2019-11-14 16:01:43.000000','235046800697531'),('10217945186768963',1,'Great, fast and friendly service 😁','2019-03-15 04:08:51.000000','1787364321589026'),('10217955662274599',1,'The staff was great and I will definitely tell family and friends','2019-10-21 03:16:38.000000','1787364321589026'),('10217961117158003',1,'This visit was amazing, this is my second time coming here. Patricia was welcoming and very knowledgeable. I would definitely recommend this location.','2020-02-17 23:15:18.000000','167959367441528'),('10217964474641146',1,'I was in and out within an hour. Staff was extremely friendly and understanding. Definitely will go back if needed!','2019-08-20 18:14:50.000000','237100240304186'),('10217986657956230',1,'My mom came into Signature Care bellaire ER and received outstanding care. Dr. Ybarra came and literally sat and talked with her about her care and next steps. From the moment she walked in with Stephanie in registration, Rollie the nurse and Natalia the rad tech she felt so welcomed and cared for. Thank You signature Care!','2020-01-15 05:30:00.000000','1648645701907657'),('10218001570723887',1,'There is not enough good to be said for Signature. Absolutely wonderful care, very thorough, wonderful facility, and wonderful staff.','2020-01-06 03:44:20.000000','235046800697531'),('10218005224055282',1,'RN Tony/ ER Tech Brittany/ Dr. R Nguyen/ Rad Tech Ryan have been an amazing team. Pleasant and quick visit.','2020-03-08 20:19:13.000000','1765121397101399'),('10218021897039869',1,'Very nice and professional staff. I had bad dogs, but the staff put me at ease. The nurses claened up everything. The doctor took care of and explained everything he did, and explained every process that I will have to do to get 100% better. Again quick, easy, and overall great experience during a bad situation!','2019-02-11 02:17:34.000000','326347177710316'),('10218037515424253',1,'Visited for a free community CPR class. Staff was friendly and knowledgeable.','2020-01-24 01:39:13.000000','1608991329419166'),('10218042514126502',0,'My three year old had to use the restroom and I was in the car getting the baby out to go in. My daughter took her in the facility and they refused to let her use the restroom, before even asking if they were seeking treatment and the fact that we always come here and refer everyone we know. To all locations. I’m never coming here again. Neighbors just got my business','2019-11-16 18:52:02.000000','1648645701907657'),('10218053429672001',0,'Here for 17 hours after being sick all weekend. would not see us. do not come here if you are sick.','2020-06-30 05:18:23.000000','1608991329419166'),('10218087470392732',1,'It was good fast pace care.','2020-02-16 18:11:29.000000','829264323932850'),('10218107433551815',1,'I had an unfortunate medical misadventure, of all days, on Thanksgiving morning. I visited SignatureCare Emergency Center in South Austin and had the pleasure to be seen by Dr. Steven Elsbecker. I was very impressed with everyone on the care team, from the receptionist, the med tech, the nurse, of course Dr. Elsbecker, and the facility. I would highly recommend this medical facility to anyone needing medical care. Both my wife and I left highly impressed and very satisfied with the entire experience. Well done!!','2019-12-06 19:48:10.000000','1698192877146046'),('10218116106923607',1,'The service was excellent and it\'s a very nice and pleasant environment also. I always encourage all of my friends and coworkers to come here for any services Jennifer D., John Bell and Matt','2019-01-27 21:15:31.000000','299216637560955'),('10218126316969728',1,'Wanted to send a huge THANK YOU to Dr. Yusuf and his staff for giving our Browning Troop an impromptu tour today of the ER. The entire staff was so friendly and great with our girls and spent over an hour walking them through each room and showing them all about the kinds of equipment and tools they use every day. An exceptional experience. \nImmaculately clean and very well organized facility.','2018-11-10 20:04:40.000000','1608991329419166'),('10218162294861495',1,'Thank you for the excellent care! I did not have to wait, which was so nice. I was in and out within two hours. Super convenient!','2019-09-29 22:03:11.000000','1609539722669429'),('10218163040101027',1,'Good experience and good treatment and great stuff doctor:kotey ,md nurse :Lynn s. RS tech Fatima b , er tech , Daniel b. Registration . Tanisha w','2019-12-23 05:59:07.000000','461782867645453'),('10218166758744566',1,'fast and friendly. the staff is very nice, as well as professional.','2020-07-26 15:12:20.000000','237100240304186'),('10218171929603097',1,'My experience was great! Kind and friendly staff. Team Dr Henderson, Nurse Sarah, Radtec Laura, ER tech Daniel and Registration Tanishia. I would recommend this place.','2019-10-23 03:32:44.000000','544778295636544'),('10218199547371582',1,'Definitely recommend using them. We had excellent service by Tanisha, Angel, Sarah, and Henderson!','2020-02-14 06:19:32.000000','461782867645453'),('10218218694893054',1,'Getting my Ears cleaned. I can hear better\nthanks to Dr.pham, nurse Alvean,Elida Nd Aurora. Great Friendly caring Staff','2019-11-26 20:47:02.000000','167959367441528'),('10218222494538906',1,'I enjoyed the awesome service received from Jennifer, Kim, Sergio and Darrin Ashbrook!','2018-12-14 04:08:02.000000','235046800697531'),('10218233401855064',1,'Amazing and knowledgeable staff!!!','2018-12-08 16:35:08.000000','1787364321589026'),('10218277275593914',1,'Great overall experience! From entering the too leaving. Barbara was great getting me set up to go back to see Dr. Rose which was very friendly and easy to understand. Nurse Gabe was also friendly and very knowledgeable. I would defiantly go back with any further health issues. Top notch!','2019-01-28 02:13:49.000000','1698192877146046'),('10218292055475130',1,'Superior Service, Fast Quality Complete Care. Thank you!','2019-03-04 13:33:47.000000','829264323932850'),('10218295485686700',1,'kathryn, tina, ricardo did amazing with our free covid testing!!','2020-06-10 21:46:02.000000','1698192877146046'),('10218304747437562',1,'Kim is the best! Very helpful. In and out.','2019-09-01 00:34:31.000000','596022027480375'),('10218308232959342',1,'Absolutely the best hospital i ever been to. They took care of my every needs and tried to make me as comfortable as possible. Nurse Jessica was the absolute best she kept checking on me even after i was discharged. She called to make sure i was still doing ok and give me feedback on what i could do for the slight pain i was still having. I highly recommend this hospital!','2019-04-12 15:10:30.000000','1765121397101399'),('10218339613900636',1,'Best care and experience of any emergency center I have been to. The staff; Manny, Lisa, and Dr. Plante were not only quick with service but also caring and thorough. I will definitely recommend anyone going here they are awesome!','2019-12-15 18:59:56.000000','237100240304186'),('10218354762127349',1,'I did not have to wait at all! Every part of my time there was pleasant and so professional. Dr Jones was so kind and the staff Nurse Shelli, Linda the Radiologist, and registration was Christina C., do kind and made sure that I was well informed. relaxed and informed each step of the way. Thanks! Laura S.','2018-11-14 14:27:31.000000','1698192877146046'),('10218382001361988',1,'Friendly and efficient staff!','2020-07-29 00:59:11.000000','235046800697531'),('10218385897708215',1,'Everyone was super helpful and nice. It didn’t take long to see the doctor. Aaron took good care of me and made sure I was comfortable.','2019-02-15 16:36:55.000000','596022027480375'),('10218394888440029',1,'Very quick wait time and nurse Araceli was very friendly! Definitely our new clinic! & added bonus is they see fireman and families for free!','2019-06-11 15:36:50.000000','237100240304186'),('10218409612450815',1,'Thanks to Dr Thomas for being polite and answering all of my Questions. Jennifer was patient with my when she didn’t want to get weighed. Elaine she was great for recovering my daughters lost shoe. Tanishia was great was customer service and was so fast with my visit.','2020-02-12 01:47:20.000000','461782867645453'),('10218413552872043',1,'Came in tonight to get tested for COVID. The waiting room was very clean. The women working the front desk very helpful and courteous. The nurses and doctors made me feel at ease and were very professional. Overall, a great experience.','2020-07-29 02:14:52.000000','105589317817643'),('10218416316753263',1,'Excellent service and staff, Dr. Thomas M, Alvean A, Marcus B, Jocelyn A','2019-09-12 11:19:24.000000','167959367441528'),('10218420225638961',1,'Fast and reliable. Treated my daughter with kindness. Best snacks around. Trisha, Stephanie, John and Malissa were amazing!!!','2019-03-19 19:59:00.000000','829264323932850'),('10218433758688394',1,'This is a wonderful and caring facility. They are very friendly and kind. They are/ were truly concerned for our needs. We were in and out with little wait. I felt We were taken care of and all questions and concerns answered. Thank you signature care team! \nDiana Moradel, Thomas Curtts, Erica Westbrook, Ashley Kelley','2019-10-25 14:59:30.000000','299216637560955'),('10218464338459084',1,'Very caring and helpful place. Dr. Soli is the very best. Wonderful people here from front to back.','2018-11-19 19:03:59.000000','544778295636544'),('10218480319272738',1,'Awesome staff. The staff is super nice and efficient. Marty, Christine, Shaunda, Dr Gutfreund.','2019-11-20 19:50:44.000000','1698192877146046'),('10218491234688732',1,'I received excellent care here last year for bronchitis so I came back today with a large red bump on my eye. Everyone was very nice and helpful just as they were on my last visit. The Doctor on call said that it was not an infection and referred my to a dermatologist. I really appreciate her honesty and help to resolve the issues versus sending me away with a useless Rx. I will definitely be back the next time I need care.','2019-08-13 20:13:11.000000','1698192877146046'),('10218523795470075',1,'Dr. Jones and Lucas were awesome they explained everything to my son and myself, and Lucas was very patient with my son.','2019-01-08 17:30:19.000000','235046800697531'),('10218527747837904',1,'Kim, Gunner, Karen, and Dr Edwards were excellent! In and out and treated well by everyone there! Brandi, the manager even came around to check on us and make sure we didn’t need anything. Highly recommend!','2019-11-27 17:34:48.000000','235046800697531'),('10218530842234629',1,'fast, very friendly staff','2019-10-26 00:58:09.000000','596022027480375'),('10218530885680787',1,'I’ve been dealing with ear pain for a month and finally got fed up enough to stop in at SignatureCare, on July 4 no less. Alicia, Erica, and Ashley K. got me settled in quickly until the doctor came in. Everyone listened patiently, got me the medicine I needed, and sent me out the door quickly to be with my family again. Thank you for helping me feel better!','2019-07-04 16:27:46.000000','299216637560955'),('10218569381639605',1,'Great service and no wait, they took exceptional care of me and explained exactly what was going on, awesome staff, definitely would recommend, thank you!','2020-02-22 02:05:03.000000','167959367441528'),('10218569522892466',1,'Such a wonderful experience! My husband, daughter and I all had to get tested for Covid-19. The registration was was simple, the front office was quick and efficient. Once taken back, the clinical staff was super helpful, JD even offered to help my husband carry our diaper bag and belongings and was very tentative and sweet to our 14 month old. All staff members, JD, Amy and Kari we all so thorough and accommodating. Made the experience as quick, simple and painless as possible.','2020-07-30 22:56:36.000000','105589317817643'),('10218600736384204',1,'There was no wait time and they were able to get me back in a room right away which is wonderful. Fatima did great making sure I had everything I needed. Tanishia was a great receptionist and explained great. Daniel did great cleaning my wound. Dr Zhen is very nice and came to my room pretty quick to see what was wrong with me. Great team!','2019-12-09 06:11:59.000000','461782867645453'),('10218659902501915',1,'great service.. dr.lim, meredith, nicole, dustin, tim and vanessa were great. i was in and out in 30 min and could enjoy the reat of my night','2020-01-05 05:13:01.000000','1609539722669429'),('10218662467608757',1,'David and Savannah were very nice! \nDoc Huerta was also very nice. we didn\'t have to wait long at all before we were seen. The receptionist were also very friendly and helpful. The lobby was cute and clean.','2019-10-06 02:59:06.000000','596022027480375'),('10218678223697007',1,'All the staff was nice and treated me right.\nDr. Mauldin, Susan R., Laura H., Elaine M., and Tanishia W. were great!','2019-07-26 05:22:09.000000','461782867645453'),('10218682763038259',1,'Everyone was very kind from the time we walked in. Tanisha remembered that we had spoke on the phone. Lynn and Laura made me feel very comfortable once I was taken to the back.\n Dr. Henderson answered all my questions and was very thorough.','2019-12-30 05:03:09.000000','461782867645453'),('10218683362013650',1,'Doctor Huerta came in five times to speak with us during our hour and a half visit. Nurse Savanna took the time to explain everything she was doing and took great care of my boyfriend. We will definitely recommend this location to our family and friends.','2019-05-22 14:34:38.000000','596022027480375'),('10218686506824031',1,'I had a great experience. Came in with shortness of breath. They got me all check out, got me some meds and then I was on my way! The ER stafff was wonderful! Kim, Kristina, Matt and Dr. Huerta.\n Thank you all for taking care of me and getting me breathing again! 👍','2019-06-13 05:42:23.000000','596022027480375'),('10218692123627752',1,'Within 5 minutes of getting here, I was immediately put in a room and they started a pain treatment to help with my pain and started getting down to what was causing my pain. I would definitely recommend coming here if you need to be seen. Great experience!','2019-11-10 12:29:22.000000','251751275488925'),('10218708467215872',1,'My husband was experiencing severe back pain, so he decided to seek relief by visiting the closest medical facility. The staff upon arrival was empathetic, cheerful and expedient! Check in was fast and the wait for a doctor was extremely short. The physician was very personable, carefully listened to my husband\'s medical complaint and was quick to provide remedies. We enjoyed his bedside manner and sense of humor which put both my husband and me at ease. Check out was fast and friendly. I highly recommend Signature. What a phenomenal experience!','2019-11-18 13:02:36.000000','299216637560955'),('10218735953044201',1,'got me in quickly. friendly staff','2019-12-29 03:37:37.000000','251751275488925'),('10218738154661512',1,'My husband needed staples last week and we came to SignatureCare Emergency Center. They were so fast seeing my husband. They also have an amazing clean facility. Everyone was so helpful and nice. Ashley B and Ashley K were great as well! I would reccomend anybody to come here. The price was pretty reasonable too!','2019-09-20 12:36:59.000000','299216637560955'),('10218740041585989',1,'quick paced and super kind. my daughter got bit by a dog and they were super understanding of dealing with a 4 year old. special thanks to \nNurse Alvean, tech Thuy An, and Dr. Rodriguez for the awesome treatment.','2020-04-23 17:03:20.000000','167959367441528'),('10218740665897629',1,'i was checked in by a really nice lady her name was Cindy she greeted me right away and got me to the back quickly. all the nurses and the doctor were very efficient and thorough. superior service. love em .','2019-02-14 15:50:14.000000','544778295636544'),('10218742238048608',1,'Dr Straface gave us wonderful service, took the time to explain everything and was super professional about a very tough situation. We give her a 5 star rating ⭐️ ⭐️ ⭐️ ⭐️ ⭐️','2020-07-21 04:44:59.000000','104213804456471'),('10218742933237746',1,'The service was fast and friendly. I felt welcome the moment I walked in the door, and they treated me like I was an established patient. Dr. Lindsay was outstanding, and had a great bedside manner.','2020-01-27 19:17:33.000000','829264323932850'),('10218753342378582',1,'Great service in and out. Dr Patel nurse Sarah, tech Fatima and special thanks to Tanishia. I will recommend this place for emergency service.','2019-11-08 02:30:40.000000','461782867645453'),('10218754254185708',1,'Excellent Treatment! Irving the registered nurse, Holly did the chest xray, Nelson the technician & Dr. Nguyen were the best!','2020-01-13 02:39:40.000000','829264323932850'),('10218769754169675',1,'Excellent from beginning to end loved Chantel dr.henderson Laura Elaine tanishia','2019-12-30 04:08:26.000000','461782867645453'),('10218787231645522',1,'Very nice staff, quick and responsive with professional service. The treatment is exceptional and the overall facility, staff and operation makes you safe and confident. \nSpecial thanks to everyone that helped me with my medical needs from the first visit to the final follow-up.','2019-12-22 04:40:56.000000','461782867645453'),('10218799027061294',1,'it was fast no wait and fixed what was wrong with me. i would go back before the dr. office much nicer.','2019-11-24 17:05:48.000000','829264323932850'),('10218807497152944',1,'The prompt check in, as well as the the entire staff’s friendliness. Never had much of a wait getting in or out. The staff always listens to me even when it takes me a while ( migrations) to give them all my long health history. Today is the first time I’ve filled out the survey on line... Luke, Kim, Kim D. , Brandi, thank you all! Who took care of me.','2020-01-31 17:07:00.000000','235046800697531'),('10218822338783003',1,'Within 30 minutes, I found out I had a kidney stone. They gave me an IV and started me on pain medication I ended up staying all night. They gave me a bag with shampoo, and things I needed for hospital. A very nice robe , to take to hospital.They were so good to me.if your ever in pain they will help you right away.','2019-10-11 02:33:31.000000','237100240304186'),('10218823380708029',1,'The team is wonderful!! Patricia, Kat, Dr. Pham, and Robert...absolutely amazing. No long wait time. They were very friendly and kind. Patricia answered my questions. Kat was friendly and engaging. Dr. Pham is a sweet heart. Robert made me feel comfortable in an uncomfortable situation. The atmosphere is great!!!! Thank you guys.','2020-01-23 14:55:00.000000','167959367441528'),('10218854965477029',1,'Staff is best in town \nThanks for my crew that took such great care of me Lucas-RN; Kim -Regis; and Eric-RT!!!','2020-02-05 04:18:51.000000','235046800697531'),('10218927716877100',1,'I had a really great experience this evening. Very fast service. Dyveliz and Rayven were very respectful and helpful.','2020-02-12 03:38:56.000000','326347177710316'),('10218954830810199',1,'The staff was very helpful and nice and funny and made us feel so welcome. I loved going to this ER, and that’s not usually something you say when going to one!','2019-03-06 02:43:38.000000','461782867645453'),('10218966726852989',1,'I highly recommend it. I went in scared, given the current situation, and very sick and came out feeling better. Everyone was very cordial and help me bring my spirits up.\nThank you: \nDR. THOMAS, DO, JASMINE \nNurse: Irving M B \nRadiology Tech: Sherwin P B \nFront Desk: Carly E B','2020-04-08 15:51:17.000000','829264323932850'),('10219041968253340',1,'Everyone was great and very patient with my wild child! \nTiffany in registration was great at explaining things! \nAnne the nurse, and the radiology tech, and the other nurse that helped hold my son down when it was shot time was great!! \ndr Curtis was very thorough with the diagnosis we got! \nGreat calm, clean and friend facility!','2020-01-27 03:03:22.000000','299216637560955'),('10219045430872693',1,'Went there for my husband and everyone was very professional and helpful. The even called to check up on him after he was discharged.','2019-03-16 22:47:28.000000','251751275488925'),('10219061588000890',1,'I was at the Montrose location and Nurse Dawn was fabulous!','2019-07-08 18:14:02.000000','544778295636544'),('10219088732942599',1,'I would highly recommend SignatureCare. The staff was outstanding. Thank you SignatureCare!','2020-06-16 15:57:34.000000','235046800697531'),('10219094063095421',1,'Extremely friendly and attentive staff! Tanisha, Doctor Faig, and Nurse Jennifer were all amazing.','2019-12-20 08:24:06.000000','461782867645453'),('10219101756568450',1,'I would like to give a huge shout out to these guys here at the signature care here at Cypress. Dr. O\'Malley, Patricia and Alvean were amazing.\nThey are the Ritz Carleton of health care facilities. Ethan is heading home feeling much better.','2020-01-16 16:28:06.000000','167959367441528'),('10219121497333373',1,'the staff was amazing. smiling faces, fast service and was explained everything. From the registration to leaving I felt like I was a priority. if I could give them 6 stars I would. highly recommend coming here for all your emergency needs.','2019-03-01 22:27:07.000000','461782867645453'),('10219125809470963',1,'I’ve had stellar care. From checking in to diagnosis and treatment. The staff has been professional yet caring. Everything was done expeditiously. I’m very happy with the care I received.','2020-03-07 13:31:54.000000','544778295636544'),('10219201129848860',1,'Super fast and excellent care.','2019-08-07 01:38:06.000000','596022027480375'),('10219206494138368',1,'Kind and knowledge staff. Warm blankets are provided by super friendly professionals. I could not be more great full to be in such a wonderful clinic.','2019-07-08 16:12:27.000000','1608991329419166'),('10219215404232569',1,'Friendly staff and doctor','2019-10-16 20:20:54.000000','167959367441528'),('10219229387981395',1,'Great emergency room ..great staff and services!!! the receptionist sindy was very helpful!!','2019-09-20 16:09:54.000000','1609539722669429'),('10219234647450793',1,'great customer service! Lucas is very caring towards my 6 year old and made sure my wife and i was comfortable.','2020-01-30 15:00:52.000000','235046800697531'),('10219238714551519',1,'This Emergency room staff was bomb.com Ms. Maya made signing in fast and easy. The Nurse Yasmin came and got us quickly and made us comfortable. Dr. Chiang was sooo supportive and informative. I will always come back here','2020-01-30 21:49:25.000000','829264323932850'),('10219249913219419',1,'me encanto atienden demaciado rapido son muy atentas y aunq no hablamos ingles ellos ayudaron con un interprete para q pudieramos comunicarnos bien','2019-05-28 02:57:36.000000','251751275488925'),('10219254015002596',1,'Great staff very friendly and professional','2019-06-15 18:20:37.000000','167959367441528'),('10219264942028267',1,'Truly a first class Urgent Care experience! Dr. Yusuf, Dr. Lindsay, Nurse Cherish, Radiology Tech Jacque, and Steven the receptionist were on top of everything — kind, attentive, expert, and professional. 5 stars all day everyday!!!','2020-04-29 14:41:22.000000','1608991329419166'),('10219270983758648',1,'I did a walk-in due to I was feeling really ill. I was arrived at the time during shift change and I was help by a number of ppl who made me feel care about and looked after. They all had great attitudes and energy and I recommend if you are near and need some care go by there. Top ppl I meet doing my visit Aaron, Dr Smith, Dr Daniels, Ryan rad tech, Reg. Cynthia & Olivia also the Rn Leslie. Thank you all for I’ll feeling better also.','2019-12-13 19:50:58.000000','1765121397101399'),('10219286307181093',1,'Dr. Souman and Churiah made a scary situation much better and fast. We are so grateful for their care and attention. The clinic is immaculate and very comfortable. The entire staff was amazing! The ER techs Thuy and Eve were professional and friendly. Even if you don’t live in the neighborhood it’s worth the drive.','2020-02-27 17:42:38.000000','1608991329419166'),('10219287618491252',1,'SignatureCare is the best Emergency center. Everyone is helpful and makes sure you understand everything. They get you in a room and triaged quickly to get you feeling better. I highly recommend this place. Today the team that took care of me was Jolyn, Andrew, Kim, Allison and DR. Plante.','2019-05-10 00:00:41.000000','596022027480375'),('10219300676699433',1,'I have a family of 4 & all of us have been to Signature Care in Midland. We have 2 children under the age of 12 & whether we\'re bringing them in to be seen or it\'s for my husband & I, we always receive the best care. From the intake personnel, the nurses & the Dr\'s, they\'re always polite, caring & efficient. They don\'t dismiss your symptoms, they actually listen. I\'m very impressed with all of the staff.','2020-03-07 11:58:47.000000','596022027480375'),('10219312756834851',1,'Great service! DR. Jones did an amazing job. And the medical staff was outstanding in their care for me','2019-03-07 01:06:09.000000','251751275488925'),('10219312769783087',1,'They are always fast to care for anyone that comes in. I have never had such a friendly team of people take care of me. I went in feeling terrible and left feeling much better.','2020-03-04 15:47:01.000000','326347177710316'),('10219326078735316',1,'Kk\nThe staff was great! Joycelyn and nikaela was great at the front desk it was very fast and friendly service!!!','2020-01-18 23:05:30.000000','167959367441528'),('10219343782253331',1,'Staff is amazing! They were all kind and helpful! Dr. Plante was great and helped my husband with his back pain. I highly recommend this ER!','2019-05-10 15:34:37.000000','596022027480375'),('10219351005779487',1,'Awesome customer service from Brenda, Pam and Dr. Garcia! Super quick we went to the back in less than five minutes. Will definitely return!','2020-02-07 04:17:12.000000','544778295636544'),('10219368234175889',1,'Can’t say enough about these guys. We’ve been here off and on for various ailments for the last two years. Their service, efficiency and cheerful demeanor always puts us at ease. We often choose these guys over a GP to get right to the source, so to speak. Oh, and Christina is a fantastic nurse!!','2019-04-10 14:37:24.000000','1698192877146046'),('10219377005429304',1,'Quick and friendly, definitely recommend.','2020-04-19 03:36:28.000000','104213804456471'),('10219388600159038',1,'I brought my daughter here for a back injury and everyone was so great, attentive, and friendly. From Dr. Das making sure my daughter was ok with everything they were doing, to Jennifer our nurse was really awesome, protective and had great shoes, our X-ray tech Dion up from Houston helping making sure she was comfortable, to Anavel in registration that was very helpful and informative with our insurance. Everyone made sure both of us were comfortable and even offered snacks, water, and coffee.','2020-03-09 02:04:42.000000','104213804456471'),('10219389277658212',1,'Lindsay R., was an incredible receptionist. She squared me away, and made sure my knee was taken care of. It’s definitely an easier way to get treatment than going on post, I will visit again.','2019-09-09 22:20:08.000000','251751275488925'),('10219396577973849',1,'Thank you for quickly getting us in when my family needed you all!!! Thanks Lisa V, savanna, Jaime!!!','2019-06-18 23:28:58.000000','596022027480375'),('10219396728201794',1,'I came in with lots of pain consistent with a kidney stone (I’ve had one before). All of the staff here at SignatureCare Emergency Center - South Austin were really professional and really nice from the time I walked up to the doors. They helped me to feel so much better. All of the tests were super quick, and they confirmed my suspicion of a kidney stone. I’ll definitely come back here if I ever need minor emergency care. \n\nThank you Dr. Rose, Nurse Shelli T., Clay R. from Radiology, and Amanda U. from registration for helping me get in quickly and to feel better!\n\nAnd thank you for all that you’re doing to help people during this pandemic! God bless and stay safe and healthy!','2020-03-21 14:16:49.000000','1698192877146046'),('10219412413120585',1,'The staff at signature care was awesome! everyone there was super caring and nice with no wait time really. A big thank you to Barbara, Zeida, Amy, and Dr. Jolly were great!','2019-07-13 18:32:21.000000','251751275488925'),('10219425431051894',1,'Super fast; barely any wait time. The staff is friendly and very helpful. Especially the nurse Kat, she knows what she doing. Very friendly lady!! The place is clean and doesn\'t have that emergency room feel. I don\'t think I\'ll be going anywhere else for emergency care.','2019-04-16 00:51:50.000000','251751275488925'),('10219426014938568',1,'Friendly staff. Exceptional service. They always get me in & out very quickly.','2019-10-07 20:25:29.000000','251751275488925'),('10219454525340631',1,'Just got taken care off for my ears that were completely clogged up. I went to a regular house doctor and they wouldn’t try to take care of it. So i went to signature care ER. Brenda R. Checked me in very smoothly and the rest of the staff was extremely helpful and kind. 10/10','2019-05-17 18:56:50.000000','1608991329419166'),('10219455515971058',1,'From the time I came in Patricia, Jose and Tricia had everything taken care of. Quick fast care, so that I could get right back to work.','2020-03-12 21:01:35.000000','167959367441528'),('10219499050519590',1,'Efficiency, timeliness, knowledge and pain free Dr Daniel was great, the Staff was fantastic made you feel at home comfortable, Nurse Rollie, Tech Natalia and Sedrick and regist Stephanie i will recommend this ER to everyone actually i did recommend them before I went myself.','2020-03-08 05:30:47.000000','1648645701907657'),('10219513982013930',1,'Always thorough and quick! Lisa V is the best nurse!!','2020-01-28 17:33:45.000000','596022027480375'),('10219523625068890',1,'The staff was great and fast when attending to my son. Everyone was so nice snd caring!! I highly recommend this place','2019-10-17 03:00:10.000000','1787364321589026'),('10219556171485281',1,'Great atmosphere to be in. The service was quick and didn’t take all day like the hospital. My husband said the hospital needs to take notes from signaturecare because every place he sat down was comfortable and he could change to any network on the television. The staff took really good care of me from the doctor to the nurse and the other few people I encountered. At the times I cried and screamed Dr. Ashbrooks made sure I was ok and kept me laughing. I will most definitely be back.','2019-08-25 17:15:38.000000','235046800697531'),('10219558496947278',1,'I really cannot say enough good things about this facility and their staff. I’ve taken my daughter twice...she is naturally anxiety ridden and they put her little mind at ease and left her feeling reassured and smiling with both visits - their ability and willingness to take care of the patient has been proven consistent and GENUINE.','2020-05-01 15:20:09.000000','299216637560955'),('10219586462913438',1,'Care was above what we expected! Entire staff was courteous and very professional. Dr. Patel and his nurse Kim went out of their way to care for my husband...thank you so much!\n I highly recommend SignatureCare Center!','2019-07-24 01:58:18.000000','596022027480375'),('10219607883284216',1,'everyone was here at signature care were awesome as usual I would recommend anyone here I love dr jasmine Thomas, vivienne, erica ,natalie, Joseph, and travis','2020-02-03 17:38:37.000000','1609539722669429'),('10219612388525448',1,'Here with my grandson because we thought he has the case of chicken pox. My daughter originally took him to Seton ER and they told her to just put a mask on him and have a seat and that his issue isn’t urgent. They left and decided to come here and thank God we did! Staff is so nice and helpful and showed urgency. Because if you don’t know, it’s better to be safe than sorry. Thank you to front desk staff, the nurse (I didn’t get her name) and she was THE BEST. And to Dr Jones. Don’t ever change!!!','2019-07-08 02:19:02.000000','251751275488925'),('10219615424119596',1,'This by far has been the best experience I’ve had in midland the wait time is literally under 5 minutes. The staff is welcoming and very friendly. They actually care about your concerns during the visit an help assist the best way possible . It beats goin to midland memorial. Special thanks to Sita, Jose, Corey, Allison & Dr.Datta!','2019-06-10 02:18:13.000000','596022027480375'),('10219626965362289',1,'Called in and directed me to the memorial city center. We were greeted byGenesis and Jessica, discussed what was needed and within 5 mins we were seen. Dr. Grinblatas was professional and provided immediate help. Teresa and Lonnie are also attending us and provided guidance and assistance with Dr. \nwould recommend HIGHLY, Great service and professional bed side manner.','2019-09-14 18:04:55.000000','1765121397101399'),('10219628234711800',1,'He estado en este sitio en dos ocasiones y la atención es realmente fantástica, desde la persona que te recibe hasta el doctor, asistentes y absolutamente todo el personal es gentil y atento, lo recomiendo completamente.','2019-12-04 04:06:25.000000','544778295636544'),('10219641298530312',1,'I had a 5 star experience.the care team was efficient and knowledgeable from the front desk all the way to the back. Alvean .A and Jocelyn. A where absolutely great. And the Doctor was very efficient ..I love SignatureCare..','2020-01-08 16:11:24.000000','167959367441528'),('10219675057925677',1,'We had a fairly significant trauma and the entire team at Signature Care took amazing care of us. They were kind, professional, and compassionate.','2019-03-18 22:26:56.000000','1698192877146046'),('10219679758761223',1,'This place is AH-MAZE-ING!!! I can’t say enough good things about them! So attentive, friendly, and best of all QUICK! They ran all the tests we asked for and made sure we were good with the results. Never again will I go to any other ER!','2019-12-24 03:02:25.000000','251751275488925'),('10219682656239008',1,'Had an excellent experience, very attentive staff and efficient in getting testing and results.','2019-09-01 20:38:07.000000','1609539722669429'),('10219684573479426',1,'Big thanks to the entire team at SignatureCare Emergency Center! Dr. Grinblatas, Veronica , Dawn, Norma, and Jaqueline all made me feel very comfortable and well taken care of. A++','2020-02-18 18:11:40.000000','1608991329419166'),('10219704277690730',1,'Dr. Jorden is so good, he made me feel so at ease, and Courtney was great! I never even felt it when she drew my lab. I love this place!','2020-04-20 04:12:37.000000','299216637560955'),('10219705503728495',1,'The staffs a this place are amazing. This is my second time here and my experience has been awesome. No need to go to the hospital. In and out','2019-07-04 04:32:30.000000','544778295636544'),('10219706375143281',1,'Fast friendly service! We were seen right away and everyone was very sweet and made sure we were great at all times!!','2020-03-16 02:43:54.000000','251751275488925'),('10219727376122160',1,'Excellent staff! In and out in less than 1 hr','2020-02-22 16:45:20.000000','1787364321589026'),('10219727957502251',1,'wonderful quick care, very caring and explained everything. From Jacquie at registration to Trini, Marcus and Dr. Daniel\'s I was taken care of without hesitation. Highly recommend for all your emergency needs.','2020-02-22 05:44:30.000000','237100240304186'),('10219729815577510',0,'Not happy that I received a $4000.00 bill in the mail from over a year ago. I was informed when the facility first open and was given a “Thank you for all that you do” card which is shown to the receptionist When checking in to waive fees. I also sign papers stating I WILL NOT receive a bill and am told that I WILL NOT receive a bill at check in and here I am receiving a bill. And tacking on additional fees for a past due bill that I had knowledge of nor am I suppose to receive? This is ridiculous.','2019-06-06 22:23:20.000000','1787364321589026'),('10219738483877067',1,'The staff there is amazing! Dr. Miller saw and treated me she was amazing and answered all my questions. Her RN Shelli was great made my shot very painless and Eileen at the front desk was very helpful when it came to filling out paper work and where to sign. Adam the Nurse manager at the facility was so great they got me in and out when I had a flight to catch! I would use Signature care anywhere that I found one. These people are the greatest!','2019-07-09 23:09:42.000000','1698192877146046'),('10219743469230842',1,'Thanks Tanishia, Angel, Henderson, Susan, and Laura. You guys for great and spent a lot of time with me and were very patient.','2020-02-19 06:58:51.000000','461782867645453'),('10219753780056091',1,'Prompt service, \nWarm, caring staff\nCompetent care\nDr. Lingan, nurse Katie, registration desk Jennifer and tech Chris were all great.','2019-10-14 20:49:08.000000','1698192877146046'),('10219785103363117',1,'This place is AWESOME!! We came here due to a injury to our child. This ER is so CLEAN, absolutely spotless!! They have a coffee bar, along with sodas and juice for the children, TV and a charging station for your phone! Check in was smooth. Since it was child related they took him back into a room ASAP. The nurses were so sweet and made sure their patient was comfortable. We waited maybe a good 10 minutes for the doctor and he was very thorough and answered all of our questions. The whole visit was maybe 35-40 minutes long, check out was just as quick as the check in! Thank y’all so much for your service, if we ever have another oospie we will definitely come here!','2019-08-03 21:24:03.000000','461782867645453'),('10219824424428975',1,'Keaire, Olivia, Dawn, and Eve are great staff! They were professional and courteous! This place is clean and quiet. They were prompt and fast and I highly recommended this facility!! Thanks!','2019-08-30 16:17:39.000000','544778295636544'),('10219858811048363',1,'They did a great job and helping me get better with my breathing treatment and I’m highly impressed with how professional of the staff. They all welcomed me in with respect and care. They are fast pace and focused on helping me get better! \n\nI’m satisfied with all of the members: Karen, Mackenzie, Ricky, MaryAnn, and Ybarra! They all deserve raises, and awards for providing such an outstanding job!','2020-03-16 21:55:06.000000','1648645701907657'),('10219874087510150',1,'Great customer service thank you Alvean, Patricia, and An.','2020-02-06 15:34:44.000000','167959367441528'),('10219878702172146',1,'Excellent service staff was amazing, Gina was very accommodating, highly recommended','2020-02-04 21:07:57.000000','1609539722669429'),('10219893987601579',1,'Fast service, amazing staff. Doctor took the time to explain our situation and wasn’t quick to give unnecessary meds. I will return as needed','2019-09-23 19:54:19.000000','251751275488925'),('10219922864336039',1,'Over all I had a great experience and the staff was super friendly!','2020-04-22 19:44:12.000000','829264323932850'),('10219932314071979',1,'Dr Elsbecker and staff was amazingly helpful and kind.','2020-06-09 21:11:03.000000','1698192877146046'),('10219957828629589',1,'Fast acting effective treatment, attentiveness, clean upgraded facility, amazing care and concern from everyone!! White coat anxiety reduction at its best. Got that Sick VIP feeling😷 Thanks so much.','2020-01-22 22:35:19.000000','251751275488925'),('10219979615747800',1,'Every one was amazing!! Dr. Mauuldin, Manny, Magali and Shanna where all awesome thanks for helping my little girl!!','2019-07-08 18:37:19.000000','237100240304186'),('10219981655905959',1,'Friendly staff from the front desk to the tech, nurse and doctor. I was helped by Jocelyn, Jose and Thuy and they were all fabulous! I will recommend Signature Care Cypress to friends and family!!','2020-02-23 00:00:01.000000','167959367441528'),('10219992109103933',1,'Daniel, Sarah, and Dr. Patel were awesome. Provided great and quick service was pleasantly quick and Fatima was amazing with patients. All were friendly and understanding. Thank you guys so much . Thanks Tanisha for your warm welcome','2019-11-27 07:06:44.000000','461782867645453'),('10220027116648089',1,'The staff here is always so wonderful. This is our second trip to this location and they got us right in. Shout out to all of the staff because they were seriously the nicest, no snickers bar needed for anyone lol. Thank you Ashley, Dr. Cavasos, Shola,Nate, and Mate for taking such great care of my husband.','2019-04-05 23:23:53.000000','461782867645453'),('10220033797863656',1,'Great staff with awesome bedside manner. Was taken care of by Registration Sita, ER Tech Andrew, Nurse Kim, Rad. Tech David, and Dr. Huerta. Came in and was diagnosed within the hour. Very professional and a better choice to me than a hospital','2019-07-01 10:09:05.000000','596022027480375'),('10220033957347595',1,'Awesome experience. No wait. We were in and out in no time. Staff was Great!','2019-07-28 02:40:55.000000','251751275488925'),('10220097789145242',1,'LOVE THIS PLACE!! Kimberly P, Vanessa Z, Kelly, Miguel, and Dr. Miller were AWESOME!! Fed coming back if I get injured again!','2020-02-07 23:00:53.000000','1609539722669429'),('10220118559731872',1,'Thank you ER Tech Leah for your attentive and and patience today !','2020-08-01 18:44:33.000000','596022027480375'),('10220177959869858',1,'They got us back to a room quickly and were very attentive to our concerns. Lisa V. Was a great nurse and very helpful as well as our doctor.','2019-06-23 20:36:07.000000','596022027480375'),('10220180563884838',1,'Great service. staff was always nice and inviting. Doctor explained everything to me in laymen terms sonic could understand. All around Great!','2020-02-29 02:27:41.000000','829264323932850'),('10220198512893783',1,'Everything great attention!!! \nVery nice people, fast, don’t have to wait, seriously \nThis is the best place ever!!!\nSpecially Cindy!!!!!!','2019-11-14 05:57:31.000000','544778295636544'),('10220201235154882',1,'Alvean and Patricia were so great!! Personalized care! Fast, caring, and efficient!! All staff was great! Thank you!','2020-01-30 13:32:11.000000','167959367441528'),('10220205742828159',1,'Amazing care! In and out quickly. The staff (Denise M., Brian C., Sam L., and Dr. Chopra) were all amazing! Would recommend this place to everyone!','2020-03-15 20:15:29.000000','104213804456471'),('10220207161106965',1,'Went here today..service was great and fast. I was greeted with a smile by Patricia C. in registration. The staff was welcoming and attended to my needs. Would definitely come back again! Highly recommend!','2019-12-30 23:00:47.000000','167959367441528'),('10220256448095170',1,'I was so well taken care of from the time I entered the door, until the time I left. Which was about 30 minutes. Thank you SignatureCare!','2020-06-17 01:58:03.000000','235046800697531'),('10220257157686567',1,'Thanks Tanishia for your professionalism and quick check in. You explained everything. Thanks to Chantel the nurse, you were great. Explained everything. And got us in and out in an orderly fashion. The staff was great. Definitely will recommend to family and friends.','2020-03-02 05:03:19.000000','461782867645453'),('10220257876815598',1,'So glad I was recommended here. Everyone was helpful and answered all my questions. I highly recommend this place. Today the team that took care of me was Dr. Huerta, Lisa, Allison, Kim, Sita and Corey.','2019-08-21 03:28:05.000000','596022027480375'),('10220301901201559',1,'Nice facilities friendly staff','2019-11-06 20:19:35.000000','544778295636544'),('10220309563160434',1,'This place is so amazing and instant care litterly on the spot care and I mean I was seen in no more than 5 minutes of arrival.\nThank to all the most helpful Dr\'s, Nurse\'s and frontend staff was so amazing and fast.\nThank you Dr.Smith, Kayla & Rommel RN, Olivia Reg, Jonathan ER tech, Ryan rad tech. :)','2020-01-04 01:00:16.000000','1765121397101399'),('10220331379227947',1,'Absolutely one of the best facilities I\'ve been in and the staff was phenomenal and friendly!','2020-04-28 19:46:14.000000','299216637560955'),('10220365736670837',1,'The entire staff helped us out immediately. Know walt time and great service.','2020-01-08 18:39:59.000000','1609539722669429'),('10220398105966398',1,'Everyone was fantastic and super friendly! We were in and out in about an hour! My daughter had an ear infection and instead of waiting ALLLL day at the ER on post we spent an hour at SignatureCare and received the best care! Thank you to the staff for being super accommodating, professional and most of all caring!','2019-10-20 14:15:01.000000','544778295636544'),('10220415272514101',1,'I absolutely love the staff here they are always so kind and helpful.','2019-11-11 05:34:46.000000','251751275488925'),('10220432868641549',1,'Excelente servicio lo recomiendo 💯','2019-11-07 08:55:29.000000','251751275488925'),('10220474689034761',1,'Fast & Friendly\n❤ all the staff','2020-01-16 12:34:35.000000','326347177710316'),('10220480192782239',1,'Wonderful experience. Got right in and had wonderful care!!','2020-02-29 02:18:07.000000','461782867645453'),('10220511385873047',1,'This is a great place Lindsey Sarah Fatima tanisha took care of me very well','2019-12-06 04:55:23.000000','461782867645453'),('10220533494637760',1,'Today, I came for a visit for back pain. Didn\'t really wanna come because I was dreading the long process of being seen. Ironically when I came in, it wasn\'t a long process at all. The receptionist Tanishia W. was very helpful and polite. When I was finished signing my paperwork, Nurse Sarah G. was right out to get me. Took me to my room for the Doctor to see me. During my visit, radiology tech Fatima B came and introduced herself and took my blood pressure. She was very polite. Shortly after, Dr. Linsay came in to treat me. His care was outstanding. I don\'t wanna prolong. Overall, my experience was great and their facility is nice. Try them out. You won\'t be disappointed. -Ira','2019-12-06 07:33:09.000000','461782867645453'),('10220592108183444',1,'The staff and service here is AMAZING!! They are very pleasant and attentive to your needs!!','2019-10-28 15:28:21.000000','251751275488925'),('10220592201820404',1,'My little sister came in with stomach pain and even though she started to feel better they were still so kind and helpful l. They were even very kind to us offering us snacks and being very understanding','2019-10-13 17:44:48.000000','596022027480375'),('10220612296441827',1,'Such a wonderful and caring staff! Very clean and we never had to wait. I will definitely be recommending to family and friends!','2020-01-04 12:56:22.000000','237100240304186'),('10220624815757734',1,'Great service and friendly staff!','2020-03-16 15:22:54.000000','1608991329419166'),('10220656799755875',1,'Great with my son...very courteous and prompt...nice staff and well taken care of','2019-09-24 02:11:32.000000','237100240304186'),('10220726189373856',1,'No matter when or what I come in for the services are always great with signaturecare. thanks Dr Iheme listening to me needs. thank you so much to Alean A who always having a gentle touch when givine me shots and to. Marcus B , Jocelyn A and Olivia P with the rapid intake process. You guys are awesome.','2019-12-04 15:14:53.000000','167959367441528'),('10220734821533104',1,'i received excellent care by:\n\nDR. FAIG, MD, OFER Z\nNurse: Irving M B\nRadiology Tech: Holly E P\nFront Desk: Darnisha \n\nthanks so much','2020-06-18 22:55:31.000000','1608991329419166'),('10220758776735703',1,'they were awesome here. they took my daughter in immediately and gave her the care and what to follow up with after she is discharged. all staff was amazing with cleanliness','2020-03-16 23:07:39.000000','251751275488925'),('10220779305014026',1,'This was a wonderful experience and I will refer all of my friends and family here for urgent medical attention. Alyssa, Sherwin, and Sara were amazing and made this an enjoyable experience for me','2019-12-11 05:04:12.000000','829264323932850'),('10220788564378374',1,'Took plenty of safety precautions and got all three kids tested quickly! Highly recommend','2020-07-19 19:09:09.000000','104213804456471'),('10220807320438829',1,'Visiting from out of state and was in need of care. Came to SignatuteCare Emergency Center in Killeen. was very satisfied with my care. Very friendly, no waiting. I would recommend anyone to come here for care.','2019-06-13 17:08:15.000000','251751275488925'),('10220844924408885',1,'Front desk staff, Sindy and Rashad were very welcoming and attentive while visiting my sibling- very nice and gracious service! Dr. Wang was also efficient and attentive when attending my sibling with lab results.','2020-02-07 03:59:44.000000','544778295636544'),('10220863096703117',1,'Staff was very friendly during our 1am visit. My wife was very nervous and we were greeted by Tanisha at the door. We didn’t even have to sit down and wait while we filled out paperwork. They had us in a room and with a nurse in 10 min. Doctor Thomas was extremely thorough and explain everything a couple of different time to make sure we understood what was happening. I don’t remember an urgent care staff being this friendly from the ER Tech (Elaine) to the nurse Jennifer!','2020-02-12 10:45:20.000000','544778295636544'),('10220894590450064',1,'No wait! Great experience! Thank to the staff at Signature Care Emergency Center Alvean, Jordan, & Dr. Daniels for being so patient & helpful with everything! Yu guys are Great!','2020-02-26 17:00:42.000000','167959367441528'),('10220907915032722',1,'Great friendly service and a clean business. Thank you Kendra, Stephanie and Kimball for all of your help.','2019-11-23 08:40:30.000000','326347177710316'),('10220945103394834',1,'Dr. Wang, Susan R. , Laura H. , Geovanny and Tanishia W. Are wonderful people who treat you wonderful and are very helpful.\nI highly recommend this place when you need it.','2020-01-22 01:18:47.000000','461782867645453'),('10220956267326435',1,'jessica s was so kind and helpful I would recommend this place','2019-12-03 00:30:51.000000','237100240304186'),('10220971830915658',1,'fast and friendly service','2020-01-11 18:33:29.000000','299216637560955'),('10220988385837570',1,'Yes, I do great experience with Tanisha registrar assisted us quickly. \nNurse Alicia friendly kind and patient.\nDr Henderson assessment was great explained in all terms to us. Patient care was great to my grand daughter peds are very hard to keep calm and they all maintained it. \nThank you','2019-11-15 08:34:53.000000','544778295636544'),('10220988392917747',1,'Yes, I do great experience with Tanisha registrar assisted us quickly. \nNurse Alicia friendly kind and patient.\nDr Henderson assessment was great explained in all terms to us. Patient care was great to my grand daughter peds are very hard to keep calm and they all maintained it. \nThank you','2019-11-15 08:36:25.000000','461782867645453'),('10220996967904041',1,'Great experience, the staff was amazing & very helpful.','2019-12-29 01:59:02.000000','829264323932850'),('10220997753950464',1,'Patricia and vivian are really great. took very good care of me. dr dang is the truth. he actually cared.','2020-02-18 20:46:32.000000','167959367441528'),('10221008729865290',1,'The staff, Lucas & both Kim’s are amazing! Very friendly and attentive to my daughters needs. They got her right back and med’s administered very quick. We will definitely be using them for all emergent issues in the future.','2020-01-21 17:11:00.000000','235046800697531'),('10221013510748305',1,'My visit was very pleasant. Nurse Vivienne was so sweet & professional. Dr. Miller was very informative and make me feel very comfortable. I’d definitely recommend anyone to come here for treatment.','2020-01-13 19:59:26.000000','1609539722669429'),('10221055120702481',1,'Clean and fast. Everyone was super nice and I love the 15 minute results!','2020-07-27 00:32:21.000000','105589317817643'),('10221064343588112',1,'I had a very good experience at Signature Care. Courtney got me checked in quickly. My nurse, Jennifer, was kind and attentive. The doctor, Dr. Ashbrooks, was very thorough and got me meds and all I needed to be on my way. Thanks again!','2020-02-25 19:35:17.000000','235046800697531'),('10221066802240892',1,'Tanishia the registration lady was very nice and welcoming. Sarah the RN was very informative and helpful as well. Thomas the MD also was very informative and knowledgeable. I highly recommend this place!','2020-01-31 03:50:04.000000','461782867645453'),('10221082141938246',1,'Fantastic professional team here. Cody and Kelsey were great!','2020-08-03 18:50:02.000000','105589317817643'),('10221087394484391',1,'Love love love this place. Way better than the hospital!! Made sure the patient was okay as well as the family!! From the staff at the front desk to the nurses...to the doctors all are awesome!!!! \nFront Desk: Samantha\nNurses: Meredith S.,Brandon W.,&Brian H.\nRad Tech: Bryan D. \nEr Tech: Richardo G. \nDr. Estevez \n\nTHANK YOU!!!!','2020-02-11 00:54:59.000000','1609539722669429'),('10221111968926854',1,'I received the best care from Dr. Mauldin, Alvean, Patricia, and Brian. This is one of the best ER centers I have been too! Will come back for future! Everyone is so kind, personable, and helpful','2020-01-25 21:06:33.000000','167959367441528'),('10221132654619788',1,'Nurse Christina, nurse Katherine, chelsey, and Tina were awesome! Thanks for working around the clock during COVID.','2020-06-10 21:49:31.000000','1698192877146046'),('10221141402591068',1,'I had great care while I was there. My nurse Araceli went above and beyond, Dr. Nguyen addressed all my concerns and Ector started my IV and had great patient care!','2019-11-20 19:18:34.000000','237100240304186'),('10221145323971125',1,'The service was great! I was treated in a timeline fashion and the the professionalism was great!','2019-12-16 22:51:44.000000','829264323932850'),('10221151589518798',1,'I went in and was called to the back before i could even start my paperwork!! And to me that’s A++ Alvean was super sweet!!','2020-02-19 17:02:42.000000','167959367441528'),('10221164410806553',1,'Nurse Kim and Dr. Thomas did a fantastic job!','2019-09-17 03:41:45.000000','596022027480375'),('10221184250986262',1,'Came twice in 24 hours and both visits were amazing ‼️','2020-02-11 04:56:39.000000','251751275488925'),('10221202526522896',1,'Best care ever for teachers!\nFriendly staff and prompt!\nRegistration- McKenna \nNurse-John Bell\nTech- Matt L','2020-02-11 14:06:59.000000','299216637560955'),('10221220574290493',1,'Dr. Henderson, Luke, reg Kim and rad Kim were great and treated us like family. My kids were seen quickly and thoroughly. very thoughtful staff. I will always go there!','2019-11-12 16:09:14.000000','235046800697531'),('10221274830489985',1,'I love this place, Dr M Thomas and staff ( Nurses Lynn Shaw,Rad Tech Fatima Blakely, Er Tech Elaine, Registration Edgar Paz) super professional.','2020-02-23 16:07:40.000000','461782867645453'),('10221275340419380',1,'signature care is dedicated to quick and best care of the patient','2019-11-20 01:16:29.000000','544778295636544'),('10221292523321499',1,'Christmas Eve and the staff were amazing. No one was fussy about being there and they made the trip for my daughter so much more pleasant that it could have been, or would have been anywhere else. Lorena got us in within 4 minutes. Remington and Rebecca took awesome care of us and were super kind to the kiddo. Dr. Harjai didn\'t talk to me like I was an idiot. It was a great experience.','2020-01-04 15:03:39.000000','326347177710316'),('10221315589302333',1,'The treatment I received was professional and thorough. Dr Appia explained all the possibilities and was bery detailed. From the time I walked in Joycelyn A greeted me with a smile and Marcus and nurse Alvean were amazing and professional as well. They didnt leave a stone unturned and I could tell their number one priority was to make me comfortable. \n\nWould recommend','2020-01-15 15:35:58.000000','167959367441528'),('10221317636593317',1,'Went in today fearful with the Corona virus scare. Theresa, Denise, Kenyon, and Dr. Chopra were amazing. I felt so safe as the place was clean and everyone was very cautious. I spent almost the entire day here but they made things better. Thanks guys!','2020-03-28 22:25:08.000000','104213804456471'),('10221326444539672',1,'They’re amazing 🙌🏽 Always perfect','2019-12-28 05:00:33.000000','235046800697531'),('10221346472307267',1,'doctor Henderson, Q. M.D Nurse Sara Regustration Briseida ,Laura & Elaine were fantastic helping my husband with his pain found iur what cause his leg pain thanks guys awesome costumer service , I am a highly recommended this place','2019-12-31 06:18:57.000000','461782867645453'),('10221374170562219',1,'Quick, caring , and very knowledgeable. They were able to help me with pain and keep me very comfortable during the process. Also very FAST service.','2020-03-02 16:16:01.000000','1787364321589026'),('1022137764829888',1,'Highly recommended. Every time my family need some unexpected medical care we can always trust we will be treated great. The staff is amazing.!','2020-02-18 01:52:26.000000','251751275488925'),('10221395839299582',1,'Amazing Service, by Samantha, Bryan and Dr. Lim. Highly recommended super friendly staff, they got me in and out. Would def go back','2020-06-17 03:23:24.000000','1609539722669429'),('10221404255797038',1,'This place is AMAZING! The staff is very friendly. Amy the nurse was so sweet! The receptionist Quintessa was very understanding. Orlando was very gentle with my son and Dr. Hasegawa was awesome the fully explained everything that was going on! I’ll be going there from now on !','2020-03-11 14:37:07.000000','251751275488925'),('10221407361427801',1,'Easiest appointment I’ve ever went to. Everyone was super friendly and welcoming & they were very organized. Will definitely go back to this location if needed in the future.','2020-07-04 10:57:52.000000','1648645701907657'),('10221409040800653',1,'I love this place and all of their staff! They are awesome and very thorough! I have been here 5 times in the last 8 months and I highly recommend them!','2020-01-20 17:59:03.000000','235046800697531'),('10221416018886760',1,'The whole team from the doctor to the registrar Dr. Souman, Sarah G., Fatima B., & Tanishia W. were all so caring and welcoming! Will definitely refer my family and friends here...','2020-02-07 07:32:07.000000','461782867645453'),('10221440787669154',1,'Really great experience. Came in with terrible ear pain at 8:45 pm and was checked in, evaluated, and diagnosed in 20 min. They’ve got a calm, quiet, and clean waiting area. Nurse Chris and Dr. Patel got straight to the point with asking the necessary questions and evaluating my earache. Solid environment through and through, I’ll be back.','2020-01-23 03:14:00.000000','1609539722669429'),('10221446835058263',1,'The staff was all so sweet and made us feel right at home. My daughter said.. “mom, I like this place.” The doctor joked with her and just made her comfortable!! Thank you so much Signature Care!','2020-01-10 01:49:22.000000','326347177710316'),('10221455946774923',1,'My visit here was very pleasant and the staff took exceptional care of me. They were very knowledgeable about everything and it made my unfortunate visit all the more comfortable.\nAll the employees Samantha, Marcia, Raymond, Gustavo and Dr Hehman who assisted me gave top notch care.','2019-10-21 04:44:25.000000','1787364321589026'),('10221463273278352',1,'Friendly service by Jessica','2020-01-18 17:23:36.000000','544778295636544'),('10221469784356687',1,'The staff here is incredible. Super friendly, warm, and took care of my family right away.','2020-02-04 19:43:32.000000','1609539722669429'),('10221525356387451',1,'Hands down amazing service. I came in with terrible pain from a kidney stone. They took care of me on the spot and I felt relief in minutes. The whole staff are super hero’s. And if anything comes up again I’m going straight to them.','2019-12-13 12:24:36.000000','167959367441528'),('10221538879570818',1,'Great service and they were fast and helpful!','2020-02-28 00:04:53.000000','167959367441528'),('10221571170259679',1,'took my husband, Keno, last night and this place was amazing!!!!! thank you for being very professional and caring!!! wish you would open one in Hugo, OK!','2020-03-06 17:20:01.000000','299216637560955'),('10221598479212166',1,'Everyone was friendly and welcoming, especially Alvean and Marcus. Liked the fast response with results. Great atmosphere. Definitely will advise family and friend to stop here for ER care.','2020-03-02 20:47:57.000000','167959367441528'),('10221607021312454',1,'I have been here on 2 occasions. Once I saw Dr Yost & Nurse Luke, the other time I saw Dr Curtis. Clean facility, extra friendly & caring staff & patient care was top notch!! THANK YOU!!','2020-04-25 22:27:44.000000','235046800697531'),('10221621749634455',1,'I came here because I was having flu like symptoms. I was greeted very quickly by Patricia at the front desk followed by Tricia and Alvean helping me in the back with great patient care! I would highly recommend if you need medical care quickly.','2020-03-12 22:02:45.000000','167959367441528'),('10221633078885869',1,'Quick and very friendly. Took the time to give us the attention we needed.','2020-03-05 15:19:25.000000','237100240304186'),('10221693856121412',1,'Me and my wife had a great experience at this location it was fast and friendly','2020-03-28 10:12:59.000000','104213804456471'),('10221716535609751',1,'Great customer service.\nShort wait time','2019-11-30 20:40:02.000000','167959367441528'),('10221741532352813',1,'Was great! Dr. Jaber was very quick and professional. All the nurses where very personable and had good humor. ER is never fun, but the staff here made it better.','2020-04-02 18:57:31.000000','167959367441528'),('10221748221475006',1,'visited this facility December 9, 20219 and the staff was amazing. They took great care of me and the entire team was patient and caring. I’m back tonight bringing my finance and he had the same amazing experience. It was great to see familiar faces like Dr. Nyland and nurse Sarra who took amazing care of me like they did my fiancé tonight. Shoutout to the new reception Aerial she was friendly and patient as well. No long wait time each time I visited! Highly Recommended!!!!','2020-02-04 03:43:47.000000','829264323932850'),('10221757117894311',1,'This is a great place to go for treatment. Everyone is very friendly, professional and efficient.','2020-06-17 00:34:59.000000','235046800697531'),('10221776465270491',1,'I was a little hesitant about visiting an ER care center due to my past experiences with regular ERs. However, I must say I am thoroughly impressed. Everything was super fast. Those who assisted me, Jocelyn, Alvean, Jordan, Marcus & Dr. Davis[??] were all very professional & courteous. I would definitely recommend visiting here!!','2020-02-26 22:34:15.000000','167959367441528'),('10221777147724892',1,'wonderful experience, great bedside service and was seen before I filled out my paperwork. Definitely recommend this location, Alvean and Marcus were the best','2020-01-29 17:42:43.000000','167959367441528'),('10221808848957019',1,'They did an amazing job taking care of me! I was very pleased!','2019-12-10 00:01:39.000000','251751275488925'),('10221830384610707',1,'I have the flu 🤒. But everybody took good care of me. Dr. Ortiz was great and Irving & Kat were amazing too. Even Ana at the front was sweet. I feel better already.','2020-02-07 02:00:14.000000','829264323932850'),('10221853122583614',1,'Fast and efficient service with little wait time. Thanks to Dr Garcia, Maya, Victoria, John','2019-12-19 16:18:26.000000','829264323932850'),('10221872083416327',1,'Amazing service loved chantel and Henderson and fabulous help and directions from tanishia','2019-12-30 04:08:19.000000','461782867645453'),('10221892665801031',1,'Bretnie, Lindsey, and Tawnya were so compassionate and made my appointment go so smoothly! They took care of me in a timely manner and educated me as well on getting me back to normal. Thank you ladies for the amazing service!','2020-07-27 19:38:19.000000','326347177710316'),('10221912820275212',1,'Love the staff here, very fast and effective','2020-01-23 00:26:06.000000','251751275488925'),('10221931057055559',1,'I came in highly concerned about my overall wellbeing and instantly went for the urgent care near by. The staff here really helped to put me at ease. Delicia was warm and welcoming. \nDuke and Waldo were friendly and reassuring and made the Testing and X-ray portion go by with ease. Dr. Chukwuma was quite informative and put me to ease overall and helped with proper post-check medication, making sure I was all good to go.','2020-03-18 22:57:28.000000','1648645701907657'),('10221972743135821',1,'I had the opportunity to visit this wonderful facility on Friday and ended up needing to have my gallbladder removed so they put me in observation overnight before transferring for the surgery. This place has the absolute best care and best team! Dr. Elsbecker was quick to diagnose and treat my symptoms and get my pain under control. Nurse Shelli, Aileen in registration and techs Andrew and Carolyn were attentive to my needs and made sure I was comfortable and taken care of. I was even lucky enough to meet the night shift and nurse Gabe and X-ray tech Roderick were just as nice and caring as the rest of them. I thank you all for taking such great care of me. It’s never fun being a patient, but this place felt more like family taking care of me at home. I’m very grateful to know you all.','2020-01-05 15:10:50.000000','1698192877146046'),('10222018904290482',1,'Fast and friendly service','2020-02-17 14:06:39.000000','251751275488925'),('10222022696500955',1,'I checked in on Tuesday this week after having a bad case of the stomach bug. As soon as I walked in Lisa at Registration was so warm and welcoming and that made the start to my visit even better. From there Pete and Rebecca M were amazing handling my care and Dr. Chambers was so attentive and caring to made it so easy to explain to him what was going on. I would recommend anyone going to be seen here! Best staff and great facility.','2020-03-12 03:25:50.000000','237100240304186'),('10222027211486213',1,'Dr Harjai was amazing . Kind and thorough. \nPatricia greets you with a warm smile. All nurses were the best. Dana is truly a class act and amazing bed side manner. Highly recommend.','2020-02-14 13:03:03.000000','167959367441528'),('10222058090791502',1,'I was in and out! Marcus and Alvean were great!!!!!','2020-03-02 17:51:58.000000','167959367441528'),('10222058166140451',1,'They were amazing, friendly and efficient. One of the best experiences I have had. Every member of the staff made sure I had all that I needed. You can tell they have your best interest in mind every step of the way.','2020-04-27 12:32:33.000000','1698192877146046'),('10222090068030531',1,'This urgent care facility was hands down the best I’ve experienced. Sindy at the front desk welcomed my mom and I with warm regards as soon as we walked in. Definitely made my situation better! The doctors, and nurses were so genuine and knowledgeable.','2020-02-16 21:00:34.000000','544778295636544'),('10222104570746812',1,'Everyone was awesome. Patricia was so sweet','2020-02-14 16:22:44.000000','167959367441528'),('10222137129684033',1,'The folks here were super quick, friendly, and professional. We went here to get everything checked out after a fender bender. The facility is much more pleasant than a regular hospital ER. My X-ray tech, Chris, was super chill, which was great for me because I get nervous having X-Rays done. Patricia at the front desk made sure we got coffee and made the paperwork easy. Alvean, our nurse, kept everything running smoothly. And Dr. Mauldin was efficient and professional with our physical exams.','2020-01-25 19:48:22.000000','167959367441528'),('10222147286740985',1,'Service here is great Alvean A.& Patricia C. were great','2020-01-02 20:19:15.000000','167959367441528'),('10222181420554275',1,'my visits here are always so pleasant they took really great care of my son and put my worries to ease , Jocelyn and Alvean was so helpful and works really great with kids. I’m\nSuper glad they’re close to my home .','2020-02-19 18:36:11.000000','167959367441528'),('10222187975355850',1,'I found SignatureCare’s COVID-19 testing process to be very safe and efficient in all aspects, and the staff were all friendly and helpful.','2020-08-06 00:00:27.000000','829264323932850'),('10222202432394186',1,'Sindy and Rashad, as well as the medical staff were great. I\'m glad I came here, no waiting, speedy and comforting service.','2020-02-09 01:55:32.000000','544778295636544'),('10222286841304227',1,'Thanks to \nDr. Alcanter\nChanel P. Registration \nEkaterinburg S. Nurse\nMarcus B. Rad tech \nHeather M. ErTech\nMy Baby girl Walked out singing I feel better so much better at 2yrs old 😄','2020-02-05 01:40:19.000000','544778295636544'),('10222289235639605',1,'My best friend had to be seen and they made her feel safe and cared for. The building is absolutely beautiful and helps you feel like you\'re not in a hospital. 10/10 would recommend.','2020-02-25 20:16:01.000000','251751275488925'),('10222369595005408',1,'They got me in for a rapid Covid test same day. Lauren is amazing! I had my results 20 min after testing. Fast and efficient! Nice workflow that was very professional. It was a clean facility that I felt very safe. The doctor and nurses had great bedside manner that made me feel at ease.','2020-07-24 14:01:07.000000','105589317817643'),('10222371948551560',1,'This place is amazing! We were seen right away, the staff was quick and caring, and it’s way less expensive than the hospital ER. The facilities are clean and they have coffee and snacks. Highly recommend! Thank you to Rommel, Jonathan, Dr. Leavitt, Adolfo, and Rita!','2020-02-12 19:43:05.000000','1765121397101399'),('10222411331818664',1,'This is the best ER visit that I have experienced. Everyone was so sweet and had a lot of patience from Tatiana, Bre M, and Kelly. Most of all Brandon William\'s and Nicole G were amazing and caring through my night stay. Dr. Souman was very Knowledgeable and very nice. Thank you all so much.','2020-01-12 12:31:23.000000','1609539722669429'),('10222420030872935',1,'I\'m not a fan of emergency centers, but I must say this one is different. My sister was evaluated and admitted and the staff was great through the entire process. Nicole, Dustin, and Ricardo were amazing. All three made sure we were comfortable while we waited for her.','2020-02-06 02:29:38.000000','1608991329419166'),('10222423693524510',1,'Was referred to Signature Care Emergency by a dear friend Brandi and received stellar service. Jennifer and Kara, Both RNs, are two of the sweetest nurses I encountered there. I was in and out with a diagnosis in no time. Will definitely be back!!','2020-02-25 23:08:25.000000','235046800697531'),('10222495727127648',1,'Had a great experience start to finish! Very professional, timely, and caring. I was in & out in under an hour. I especially loved Dr. Chopra!','2020-03-28 21:35:58.000000','104213804456471'),('10222512872352918',1,'This is our second day here with the whole family, everyone that has treated us has been fantastic! We loved Dr. Kimball! And everyone else!','2020-03-02 02:19:19.000000','1698192877146046'),('10222514530718812',1,'We were seen and treated by Dr Ashbrooks, RN Ryan, Rad/Lab Eric and Reg Tobin. This staff provided great care. We felt at home and prioritized. Time of service was quick, efficient and diagnosis accurately/explained','2020-01-29 03:36:39.000000','235046800697531'),('10222521186639398',1,'kind and compassionate staff. Nurse Karen and Dr. Ibarra took me to a room straight away and calmed my nerves. I was in and out in less than an hour. Amazing. I will recommend this ER to my family and friends.','2020-05-31 05:32:38.000000','1648645701907657'),('10222537837221817',1,'Dana my IRN was so helpful and gracious. She’s a great listener. Dr. Henderson was charismatic and extremely knowledgeable. He made me feel so comfortable. I didn’t feel like he was rushing me out the door as he answered my every question. My radiologist, Diem, has a wonderful sense of humor and is gentle. I’d hate to leave out the amazing receptionist, Natalie, who has a calm demeanor as well as efficient. Thank you. Y’all ROCK!','2020-01-16 17:13:06.000000','1609539722669429'),('10222595328858864',1,'Susana Robertson and Emily from the front desk have gone above and beyond this week to help fit me in! They have been extremely helpful during a very busy week. Would definitely recommend!!!','2020-06-17 16:55:27.000000','105589317817643'),('10222628438009144',1,'wonderful staff, great service :)','2020-07-27 20:05:59.000000','105589317817643'),('10222658073070671',0,'I’ve been sitting in the drive through Covid testing line at the location on TC Jester for 3.5 hours. No one is moving. There’s been no explanation and zero communication regarding this delay. No one answers the phones either.','2020-06-14 16:35:33.000000','544778295636544'),('10222658919878849',1,'Covid testing! Amazing staff!','2020-06-12 18:04:07.000000','1698192877146046'),('10222672833915779',1,'Great care thanks to nurse Jennifer Tthuy An and Rdiolgy Maris','2020-03-31 20:06:52.000000','167959367441528'),('10222698901003817',1,'Got a rapid test and everyone was super friendly!!! Highly recommend, and hours are great for people with busy schedules since it’s 24 hours!','2020-07-28 06:18:44.000000','104213804456471'),('10222774059843913',1,'I love the care and the doctors if I can i will Recommend this everyone love it thanks for taking care off me 100% Satisfier','2020-06-07 05:34:38.000000','251751275488925'),('10222774124324152',1,'Front desk, nurses and Doctor Did a great Job. Thanks','2020-06-19 00:46:21.000000','251751275488925'),('10222784357944534',1,'I recommend this ERcare because of the staff, nurses, and Dr are very friendly and knowledgeable. I felt very comfortable taken care of. I will be back.','2020-03-14 00:46:35.000000','104213804456471'),('10222802622193077',1,'Great staff (Lucas,Dr.Curtis, Kim , & Eric). Thank you for everything you do.','2020-02-17 17:52:29.000000','235046800697531'),('10222886352811033',0,'Nurses are great, getting to them is a pain. Waited 3 hours, security guard was way too excited. I made an appointment & spent 3 hours waiting in my car. I would not go back. Testing is rapid, but the whole process was seriously annoying.','2020-07-10 22:40:21.000000','251751275488925'),('10222963584906186',1,'Was one of the only places I could find to get tested for Covid quickly. They handled it seamlessly and I felt safe the whole time. Staff was organized and responsive. Even though they were so busy, the Doctor (Straface) spent some time answering my questions thoroughly. She was actually very nice. I would recommend this place.','2020-07-06 00:59:37.000000','104213804456471'),('10223009231325432',1,'Friendly staff clean facility. Overall great experience','2020-02-20 17:49:07.000000','251751275488925'),('10223067214811241',1,'Thank you to Dr. Elsbecker, all the staff and City Ambulance for being so efficient and caring today!','2020-06-09 21:31:14.000000','1698192877146046'),('10223073131394893',1,'Came in yesterday for a COVID test . Very professional, well organized and I didn’t have to wait a long time. I was in and out','2020-07-03 19:01:26.000000','104213804456471'),('10223112943042343',1,'I brought my uncle to get tested for COVID and the nurses were so kind! The registration staff were super friendly and helped us with a couple of questions that we had. The facility is super clean and practiced social distancing at its best!','2020-07-17 03:23:15.000000','1609539722669429'),('10223147758064882',1,'This staff is amazing! Had the greatest experience. Thank you to these folks ... \nDR. YOST, MD, JASON \nNurse: Kara O \nRadiology Tech: Jaylon R S \nFront Desk: Linda S N\n\nDr Yost really listened. He followed up with a CT scan and found the problem. Thank you','2020-06-22 06:19:13.000000','235046800697531'),('10223208404228435',1,'I was skeptical about coming here after reading all the reviews BUT I’m glad I did. I found these guys over the internet and called to find out more info. The lady over the phone was extremely nice I mean this is THE BEST customer service I have received over the phone! HOWEVER, these reviews almost scared me away. Yes, the $10 charge to register is a bit much BUT they do this to make sure people don’t cancel. Otherwise those who really need the test won’t get it. I arrived and only my son (5) and I had appointments but I brought my other son (14) with me and husband just to see if there was any possible way they could be tested as well. There was no wait at all, were so nice AND were able to accommodate my family of 4 right then and there. I was so grateful as I’ve been sick and my nephew (who lives with us) tested positive this morning. I don’t know what my results are yet but I can tell you that I will be coming back to this facility for any ER related issues (let’s hope I don’t have many). \n\nThank you for all your help and support!! You made a very difficult time so easy and hassle free.','2020-07-18 03:16:24.000000','167959367441528'),('10223230045360493',1,'Awesome staff!! Very friendly and courteous!!\nNurse Nancy and Nurse Gabby were very nice and caring!! Registration staff Lorena, Hollie, and Jessica P were very helpful in answering my questions!!','2020-08-02 19:14:54.000000','237100240304186'),('10223288085015542',1,'I was treated by:\nDR. CAVAZOS, MD, JUAN L \nNurse: Charlotte Anne L \nRadiology Tech: Laura L H \nFront Desk: Tanishia W\n\nThey were AMAZING and helpful. Thank you! I will definitely visit again!!','2020-04-10 02:50:58.000000','544778295636544'),('10223294272935164',1,'Thank you for all the help and advice Manny.','2020-08-04 22:39:31.000000','237100240304186'),('10223309580357718',1,'SignatureCare Emergency Center is a wonderful health care facility the staff is exceptional and the treatment is marvelous. There are no long wait times, you are treated with care as soon as you walk in. There is no overcrowding. I would definitely recommend going to SignatureCare for your health care needs and for excellent service and treatment by an exceptional health care staff.','2020-08-04 20:28:13.000000','105589317817643'),('10223385180363524',1,'Front desk staff (Lorena and Victoria) were very helpful, friendly, supportive. The process for covid testing is very smooth, much improved from a month ago.','2020-07-31 16:40:51.000000','326347177710316'),('10223534729265724',1,'great place good service. Doctor took her time to answer all questions.','2020-07-05 01:18:38.000000','1787364321589026'),('10223557346347929',1,'The staff at the front desk, the nurse, and the doctor was incredibly nice and helpful. I went in to get my COVID testing. I highly recommend this clinic. It was easy to schedule an appointment online. The process to admit and see the doctor was quick and organize.Thxs Brandi/Shannon Dr. Healey...Nurse Leslie/Kelly...Rad Tech Chris...ER TECH Jonathan','2020-08-02 12:44:04.000000','1765121397101399'),('10223593615495435',0,'The staff is excellent here which is why I gave them 2 stars, but my problem stems from corporate offices... I got an antibody test done a week ago after being exposed to COVID-19 and was told my results would be back in \"2-5 days\" and to \"call if there\'s any problems.\" After day 4, I started to get a feeling that maybe my info wasn\'t put in correctly and my test results were just floating around in the system which is why I haven\'t heard anything via phone/email/labcorp portal, so I started to reach out. First I tried via phone. While I was there, the phone rang constantly with no one answering it, but I didn\'t think anything of it until now. I realize they just aren\'t answering phone calls at this time, but are still instructing patients to call? There isn\'t even an alternate phone number listed on any of the paperwork I received. I then tried email with no luck, so I started to reach out via social media. I hate being this person, butI I honestly feel like I have no choice. The social media manager was the only person I talked to who was understanding and tried to push me through to customer service who simply said \"I can\'t help you.\" Never had I asked for a HIPPA violation, but just some information on how I can get help with my problem. I hoped they could pass my info along, and the facility could contact me, but nope! I completely understand and sympathize with health care professionals during this pandemic, don\'t get me wrong, but how this situation has been handled is unprofessional. My suggestion would be for them to put in voicemail services and have a designated person answering triaged voicemails once an hour. I honestly believe my rapid test and antibody tests were scams at this point and have demanded a refund so I can go get my test done somewhere else. I\'ve heard of Spectracell giving results back in hours, so they will be who I end up going to as I should\'ve done in the first place. Do not come here for anything COVID-19 related.','2020-06-20 17:29:17.000000','1608991329419166'),('10223603243456123',1,'Staff was amazing 😉. Even though their busy they do take the time out to help you and to make sure you have all the info you need.','2020-07-21 03:17:22.000000','104213804456471'),('10223651832627765',1,'staff was very helpful to our large group and brought us all drinks while we waited. thank you Dr Yost, RN Jennifer, Courtney, Shanna, Rusty and Haley. yall are wonderful!','2020-06-16 21:34:53.000000','235046800697531'),('10223719519684109',1,'Staff was amazing! Donna M at check in was a kind and courteous lady. The nurse Keeley was super friendly and Dr. Straface was very sweet and gave me so much great information. I will definitely recommend this place to my friends and family!','2020-06-19 05:38:51.000000','104213804456471'),('10223755291293256',1,'Quick and easy. Diane was a great nurse. Highly recommended','2020-08-08 05:06:57.000000','1698192877146046'),('10223807570361764',1,'Staff was very helpful and patient with a such a large group at one time. \n#Tech Rusty\n#RN Jennifer\n#Britany\n#Haley','2020-06-16 21:32:05.000000','235046800697531'),('10223850218906018',1,'Jessica was wonderful! They were able to get me in and get tested! 😊','2020-07-16 17:49:00.000000','104213804456471'),('10223916381923361',1,'Trish was awesome!!! The staff was attentive and so friendly. I would recommend this facility to anyone. Great job !!!!','2020-07-19 22:15:13.000000','1787364321589026'),('10224505435930394',1,'I have visited this ER a couple of times and I love the staff and doctors. Dr Faig was on this last visit when I had intense pain. Nurses Irving and Marisa are so professional and friendly. Their compassion they show for their patients is above a five star. They make sure you have plenty of warm blankets to make you comfortable as possible. They are the best at at what they do. Dr Faig makes sure he finds out what is wrong and gives you the treatment needed if it can be done at home and always ask if you feel ok. Nice personality and easy to talk to. \nAshley is a great ER tech and the front registration Ana and Kandi are friendly and make you feel you came to the right place. When you are in pain and worried the drs and entire staff makes you feel better.','2020-08-07 08:12:21.000000','829264323932850'),('1023043031383468',1,'Patricia and Alvean helped me in my visit and they were very polite and helpful! really recommend it!','2020-02-08 21:30:53.000000','544778295636544'),('1026073597742929',1,'I’ve taken my whole family to this Emergency center, because the front desk staff and nurses as well Doctors are phenomenal!! They always treat us with the best care possible and always ask if we would like a warm blanket! \n\nI’d definitely recommend you come as well bring your family here for your next emergency!','2019-12-31 16:43:07.000000','251751275488925'),('1027781017400656',1,'Hello my name is Jason. I had to go to Signature Care in South Austin. I Needed help with a medical issue that was getting worse. They were courteous and professional. Taking care of my problem within a few hours. Even made it affordable for me. I highly recommend them to anyone. They did a wonderful job! If necessary I will definitely return.','2017-08-31 20:55:59.000000','1698192877146046'),('1028093347364420',1,'I love this place, it is awesome any time I need assistance with my health they are right on time for me . I\'m in and out and Jesse is a great nurse. \nAlso doctor Golla is a wonderful caring doctor.\nbest place ever on need of help when u are sick.','2018-09-05 20:37:07.000000','544778295636544'),('102842431287240',1,'They had very good customer service and was very helpful & wonderful i had a great time with nurse: Kristina & doctor:john','2020-02-02 19:21:24.000000','829264323932850'),('1030818427311632',1,'I come to the signature care ER in the heights all the time it’s near my house. They always take such good care of my family and I no matter How we’re feeling! they take great care of us, I would recommend them to everyone!!! It’s always so clean and everyone is so friendly.','2020-03-11 17:46:40.000000','1609539722669429'),('1032466200448565',1,'Kendra was very nice when I checked in and was fast. Jacob was nice as well and all the staff were friendly.great experience','2020-01-19 15:53:43.000000','326347177710316'),('1033078033566255',1,'Went there after a cycling incident and was treated immediately. Staff and doctor were very friendly and made me feel like I was there only patient. Fabulous experience!','2019-06-14 12:44:18.000000','1698192877146046'),('103415804553646',1,'Very welcoming and helpful people.Patricia C-registration; Alvean A-nurse.','2020-01-26 22:53:24.000000','167959367441528'),('1035617630123219',1,'This ER was the best one I’ve been to I loved how welcoming Tanishia was when I walked in and loved the nurse Susan and er tech Daniel Rad Tech Laura and most definitely the doctor Nguyen every one was very sweet and caring and I loved how the doctor took the time to sit there and answer all my questions and explained everything to me','2019-12-04 07:39:06.000000','461782867645453'),('1037096383328471',1,'The service was wonderful I would recommend signature care to anyone the staff was wonderful thanks to alvean,Patricia and Thuy an','2020-02-23 19:59:16.000000','167959367441528'),('1038551819861363',1,'Dr. Ortiz , Nurse Irving, Chanell, Holly & Thelma we’re all amazing staff! I came in here for a cold and the customer service was excellent! Thank you guys for all that you do I really appreciate you being open this late! \n\nI am totally a happy patient ❤️','2020-02-25 06:36:45.000000','829264323932850'),('1038784259639973',1,'👍🏻 we will be back! Thank you','2018-12-23 04:10:21.000000','235046800697531'),('1039146833085065',1,'This place is really amazing I would recommend it to everyone I know! Thankfully my friend is feeling better but it wouldn’t have been possible without the help of the outstanding memorial city team, Jordan, James, Mildred, Sylvester, and a special thanks to Olivia for making me feel so comfortable in a stressful situation! 10 out 10 all the way around!','2020-01-30 09:14:49.000000','1765121397101399'),('1039322263085006',1,'tanisha w Henderson \nSarah \nDaniel \nlaura \ngreat service','2019-12-02 04:25:12.000000','461782867645453'),('1041574412864073',1,'Dr. Miller, Vivienne N, Gina A, and Natalie are a great team! Thank you for making my little one feel comfortable! No wait time & treatment at Signaturecare is great!','2020-01-30 16:46:47.000000','1609539722669429'),('1044978649182380',1,'the visit was real good. dr. Pham, alvean, Tricia, elida was great \nthe hospitality was good.','2019-11-26 16:10:47.000000','167959367441528'),('1045871555619878',1,'The staff on duty tonight was excellent!!! Best er care I have ever received, the staff tonight was Dr Baker, Nurse Kim, Rad Tech Allison, ER Tech Andrew, Registration Maria, facility manager Erin, thank you all so much for going above and beyond and I really appreciate it!','2019-03-19 06:52:14.000000','596022027480375'),('1046350935754368',1,'the doctor and nurses were awesome, really fast admission, check up and treatment, every one at this clinic very caring about all of us, ofering warm blankets, drinks and snacks, very happy with the services here','2019-06-06 19:01:43.000000','237100240304186'),('1049070958806741',1,'Had a awesome visit to this awesome ER. Specifically Lucas,Eric and Kim where great and extremely helpful, this was our second time here in the last 2 days and they where so nice, helpful and very caring. Love this place and anytime me or my family need help we will be coming here for sure. Thank you.','2020-02-17 19:56:20.000000','235046800697531'),('1050354605342214',1,'I absolutely love SignatureCare Emergency Center! Lucas is a wonderful nurse and you can tell he truly loves his career! Carla, Jennifer, & Dr. Henderson are all just super sweet and caring! If I have to go so where, it will definitely be SignatureCare!','2020-02-29 16:30:16.000000','544778295636544'),('1052861924884534',1,'Rayven was very helpful and sweet. She made us feel like we were at home and offered us snacks and drinks while waiting.','2019-05-31 01:53:21.000000','326347177710316'),('1053473015016472',1,'The front desk clerks were very friendly and caring , the nurses and doctors we very nice towards me and made sure I was comfortable','2020-03-13 18:11:22.000000','1608991329419166'),('1054024148111130',1,'Went for knee pain and also took my 16 year old daughter for dizziness & fatigue. Robin at the front desk was very nice to us . Our nurse John was nice & offered us everything to ensure we was comfortable during no our visit . The tech , Valerie was extremely careful & compassionate while doing my daughters first IV & EKG test . The ex ray lady ( blonde hair ) super nice as well as the young lady who did the ultra sound on me . And last but not least , the Dr . Simmons , we absolutely LOVED . She was so sweet . The entire staff was incredible!!!! Thanks','2018-12-10 19:27:08.000000','299216637560955'),('1055363751315800',1,'My grandson was seen yesterday and Erica, Susie, Valerie and Ashley at the front desk was very helpful. Quick service.','2019-02-17 23:41:15.000000','299216637560955'),('1057912011221028',1,'I absolutely love this place!! This is the best place to be when you aren’t well they make you fell at home. When you walk in the set up is beautiful. The staff is very nice and they are great with kids. I will recommend this place to anybody. I’m so glad that I went here.They also have very fast service thank y’all so much for taking care of my baby.','2019-12-06 03:05:25.000000','596022027480375'),('1063421810488018',1,'Mercy Was Very Nice . Service Was Really Fast The Two Nurses And Doctor Was Also Nice','2017-04-08 22:51:36.000000','1608991329419166'),('1064208450577791',1,'Doctor Faig\nNurse Jennifer\nRad Tech Fatima \nEr Tech Elaine and Reg Tanishia awesome friendly professional staff. We got in and out within an hour. Warm friendly staff if you need care try Signature Care','2019-12-20 02:58:52.000000','461782867645453'),('1064464080565589',1,'Emily and Sindy were warm and welcoming, Donna and Fatima took me to back fast and Wendolline helped me feel safe. Dr Kotey is one of the sweetest doctors ive meet ans completely understood my issue with compassion ! I love this place','2020-02-20 01:41:11.000000','544778295636544'),('1064985523900205',1,'Amy\nAlvean\nLindsey\n\nVery nice people and great service','2020-03-26 21:56:30.000000','167959367441528'),('1065405073828726',1,'This was a super easy and great experience all the staff was very friendly Patricia in the front was amazing!','2020-01-30 17:56:34.000000','167959367441528'),('1065497047158673',1,'I finally had to come in. I\'ve been having chest pains and a bad headache for over a month now. I couldn\'t hardly drive this morning. when I made it, I was greeted with warm and kind faces ready to tend to my every need. thankful to have such a great ER in town.','2020-03-03 21:32:47.000000','299216637560955'),('1072305126434238',1,'Really excellent customer service. We appreciate all the help of Dr. Zengh and her staff Irving, Holly, Ellen and Thelma. Great team!. They were so nice and gentle with us, Thank you for everything you did!\nWe definitely recommend you 100%.','2019-12-31 06:07:43.000000','829264323932850'),('1072793283077452',1,'Definitely recommend this location! Was in and out within 15 minutes. Kimberly at the front desk was helpful and we talked about my upcoming trip. Dustin was very fast with my vitals! Nicole and Julie answered all of my questions and last but not least Dr. Lim!!! He immediately was able to identify my problem! Didn’t have to say much. Thank You again guys.','2020-02-15 00:58:47.000000','1609539722669429'),('1075526852779932',1,'Super nice people, made me feel comfortable and address my issues accordingly.','2020-03-11 07:27:11.000000','251751275488925'),('1076709289152292',1,'I had to come here on a Thursday night and had a great experience despite the fact I had to visit the ER. Taylor at the front desk was very friendly and helped me check in and check out quickly. Charles, Kelly, Stephanie, and Dr. Vaagere did an outstanding job addressing my concerns and attending to my needs. I will definitely come back if needed (although I hope I don\'t have to!). Thanks again!','2017-03-10 04:17:15.000000','1609539722669429'),('1081279705355166',1,'Kimberly, Jacob, and Techa did a great job! My visit was great!','2018-02-18 00:21:53.000000','326347177710316'),('1082257592118686',1,'They are fast in and out and they were very helpful','2020-01-13 01:07:09.000000','235046800697531'),('108346930788726',1,'Great service everyone very welcoming Nurse Alvean, Tricia & Patricia','2020-03-12 15:54:37.000000','167959367441528'),('1084899471858594',1,'The staff is very friendly and quick to service. Thank you alvean and Jordan for your great care , patients and kindness love it here','2020-03-04 19:16:22.000000','167959367441528'),('109283560350341',1,'To say this place is friendly is an understatement. They where not only professional they where concerned as much as me. I took my mom here because she could not hold food down for three day. I came inside in a panic because at this point she was throwing up. I was freaking out and despite my shortness and tears the receptionist was still a sweetheart. Jasmine again I am sorry for freaking out on u. Then we where meet by a Mr. Marcus. He was so great. At this point it was fighting back tears and unable to set still. He calmed me down and informed me the will do all they could to make sure my mom will be ok. He obviously loves his job because in the mist of my panic he remain calm and even managed to lighten my spirit. He was super attentive to my moms needs. Jani the nurse was really nice a super sweet. She keep on my mom regularly. Dr. O\'Malley was great he made sure to check everything. He even found a great surgical doctor to send her to. He let me know everything that was going on. This place really cares and I recommend them highly. Thanks for taking care of my mom.','2019-06-18 23:29:35.000000','167959367441528'),('1094636074207317',1,'This location was fantastic! Their receptionist Okarys was so sweet and I left feeling very well taken care of!','2020-02-27 04:50:26.000000','326347177710316'),('1095089017501464',1,'Great service, quick and pro active','2020-01-29 12:44:54.000000','544778295636544'),('1095737460596642',1,'Great staff- Dawn Shriver & Anges! ER Tech- Olivia. Rad Tech- Eve & Registration- Lizzie!\n\nKeep up the good work!','2019-07-08 22:45:00.000000','1608991329419166'),('1098431660498153',1,'Good experience friendly people','2020-03-15 18:03:23.000000','104213804456471'),('1100947903437915',1,'This was a great experience! I came in and within 20 minutes Dr. Vakey dealt with my pain. The staff were very friendly and made me feel comfortable while I waited. I was even given a warm blanket by my radiology tech, Laura! I received a shot and my nurse Jacob made it quick and easy, which is a big deal for me because I\'m a wimp about needles!','2019-09-28 14:53:15.000000','326347177710316'),('1102344660151578',1,'Dr.Elsbecker and staff are super attentive. Very Helpful with all concerning questions.','2020-06-09 21:14:09.000000','1698192877146046'),('1102640810069781',1,'Great Visit ! Very Helpful ! Thank you , Dr. O’Malley, Patricia, Ekaterini, Marcus & Thuy Anh for your help !','2020-03-13 19:22:47.000000','167959367441528'),('1103541863327157',1,'Love everything about Signature Care!!! Dr. Edwards was quick and informative.Lucas was very friendly, very informative. Eric was awesome in all of his testing. Carla was spot on with registration!!!','2020-03-01 16:44:18.000000','235046800697531'),('1105530473157447',1,'Amy, zinaida, Dr. Dang and Amelia was amazing with help me and my daughter I would recommend anyone to come here for treatments','2020-04-13 09:11:57.000000','544778295636544'),('110571353780110',1,'Signature care emergency is a great place to get urgent care help. The staff is friendly and Sindy is knowledgeable and nice. I have been coming to this location and will continue to come for future er visits Dr Boaster was very kind also. Great place to come','2019-12-21 17:53:30.000000','1609539722669429'),('1108623655959180',1,'This is the best health care in Houston thanks to Tatiana for being an amazing receptionist and helping us through our process','2018-07-13 04:59:23.000000','1609539722669429'),('1112235389108861',1,'Jocelyn\nalvean\nthuy\nexelente trato muy bien gracias','2020-02-22 20:49:36.000000','167959367441528'),('1112349709124331',1,'Amazing staff from the time walking in to time walking out. Quick, very friendly, and honest!','2020-03-30 14:57:08.000000','251751275488925'),('1113148585556223',1,'Very quick and easy they took care of my son. And they were extremely sweet I highly recommend them.','2019-10-07 16:10:13.000000','251751275488925'),('1114809792208879',1,'Always have the best experience. This is my go to place when I feel anything is wrong. The staff are very kind. The guy at the front Desk Rashaad, as well as Dr.Kotey and the rest of her staff, AlMaguer & Fomenko, the RN and Fatima the RAD. Thank you guys for always taking care of me!','2020-05-03 05:48:02.000000','544778295636544'),('1115234825354021',1,'Kat (my nurse) was amazing! I love this place!','2019-07-10 02:42:57.000000','251751275488925'),('1118088081722933',1,'Best in Town, pricing and staffing','2019-06-04 21:23:21.000000','235046800697531'),('1121245008081510',1,'Amazing care from the start, Amy the receptionist was very kind and walked me through everything . RN Gina was very sweet and attentive. Dr.Ngozi took very good care of me. I would highly recommend this place to everyone!','2019-04-09 02:42:56.000000','1608991329419166'),('1123968464636115',1,'The staff was very nice and friendly and had a short waiting time . The Dr was easy to talk to and answer all my questions was very helpful and not in a rush to get you out of there like some Dr or had a lot of patience and explain everything about my care','2020-05-24 16:30:51.000000','251751275488925'),('1124758474542697',1,'Staff is super friendly and nice, they took care of my daughter really fast!! Thanks Dr Daniels, Allison, Lisa U , Stephanie, Julica/Randy, you did an awesome job!!','2020-03-27 01:57:26.000000','596022027480375'),('1124881931223228',1,'I Recommend All Services Offered By SigCare!!! The Staff...From Check-In To Discharge Are All Courteous & Friendly!! IWait Time Is Minimal...You Don\'t Spend A Week Waiting To See A Dr. I Was A Little Nervous About A Procedure I\'d Never Had Done Before,Kat & Alia Were Great With Explaining Everything Being Done From Start To Finish!!! It Was Over In A Breeze!!! I Highly Recommend SigCare!!! One Of The Best Urgent Care Facilities In The Ft Hood/Killeen Area,Period!!!','2020-05-19 19:47:42.000000','251751275488925'),('1125402404274363',1,'Quick and great service!! Keera and Kim were super helpful! 👍🏼','2018-08-31 23:26:36.000000','326347177710316'),('1125458664296857',1,'My mom took me here cause I was sick and everyone was so nice and Dr. Ashbrooks is awesome I like him! I’m gonna tell anyone that’s sick to go here.','2018-12-02 21:14:17.000000','235046800697531'),('1128633960812390',1,'Dr. Patel and Ray (bsn rn) have been absolutely astounding during my stay here last night into this morning. Patel has thee best side manor i have ever experienced in my last 4 years of craziness health tornadoes. Ray has been a godsend from the beginning i walked into signature care ER & him and his staff are continuing to excel in excellence of medical care to patients like myself that need a little more tender love and care.','2020-02-17 12:06:39.000000','1648645701907657'),('112903153597152',1,'very fast and very responsive staff! I would recommend anyone','2020-01-30 02:27:45.000000','235046800697531'),('1131200800600508',1,'Professional staff n very organized','2020-07-07 01:18:38.000000','1787364321589026'),('1131459450560974',1,'the staff are so accommodating','2020-07-04 04:17:18.000000','1648645701907657'),('1133308143682401',1,'Thank you Amanda, Eric, Gabe and Dr. Rose for setting the bar so high for how things should be handled. Your amazing customer service and quick work was pretty amazing to experience. Thank you again for everything.','2020-02-14 07:14:31.000000','1698192877146046'),('1136839843331846',1,'The Care I received here was absolutely great. Everyone was friendly, made sure I was comfortable, explained procedures of test going to run and more. I have no complaints. Excellent staff and facility during this time of day with so much going on. Front the receptionist and Shoutouts to my nurse...Jennifer, Tech Thuy An, my doctor Harjai and Radiology Marcus. I greatly appreciate you all.','2020-03-31 21:25:25.000000','167959367441528'),('113783726497732',1,'The staff was very friendly as well as helpful. The wait time was fairly short. Kat, our nurse was the sweetest! Definitely recommend!','2019-05-06 23:55:44.000000','251751275488925'),('1142275919313448',1,'Super fast and easy. Manny and Pete were awesome. Highly recommend using this location!','2019-06-10 15:35:10.000000','237100240304186'),('114393206760433',1,'Exelente gracias Alvean y Patricia \nBendiciones','2020-01-17 18:07:03.000000','167959367441528'),('1144718472404344',1,'Very friendly and the dr was great....fast and professional service','2019-11-12 00:59:19.000000','1609539722669429'),('114714049668322',1,'The staff treated each patient with respect and warmth that we need when we get sick. They responded to emergency cases attentively. Provided the best care that every patient deserves. So we at Okey Dokey Locksmith highly recommends SignatureCare they treated their patients like how we treat our customers, with respect and provide them the security they need to their homes. Peace of mind is priceless.','2019-02-22 19:22:52.000000','544778295636544'),('1149806655366938',1,'I had a great experience at SignatureCare Emergency Center. I was in and out in 45 minutes. Dr Edwards was kind, listened to my concerns, and spent a lot of time with me. Duke, my nurse, was very caring and thorough with my discharge instructions. I would highly recommend this place. Top notch care without the wait.','2020-04-30 14:53:03.000000','1648645701907657'),('1153919648279839',1,'Kimberly at the front desk was so nice! Dr. Dang was very informative and great too! They got me in quick, had friendly staff, and office is clean!','2020-03-04 22:50:28.000000','1609539722669429'),('1159956444394807',1,'Had an AWESOME experience this morning at the SOUTH AUSTIN Signature Care location. Between Adam, Linda, Lisa, & Dr. Elsbecker I could have not asked for a more friendly, warm & courteous staff than what I experienced today..!!! Whether making sure I had a blanket to stay warm or offering me a host of snacks to keep me hydrated, as well as a fully stomach. They went above & beyond working with my insurance company where I has LESS OUT OF POCKET expenses than I had anticipated walking in the door earlier. So, NO FLU, NO STREP, & no more than my $100 deductible..I\'ll definitely be going back (*When there is a situation that calls for a return visit) & telling all my friends about how amazing the experience was @ the South Austin location.','2019-10-02 17:49:13.000000','1698192877146046'),('1164881357202619',1,'Rachel & Eliza are super friendly! very fast!','2020-07-23 20:27:44.000000','237100240304186'),('116592499584304',1,'The front NURSE cindy and all Dr.Lovett and the whole experience was great.','2019-06-07 03:16:46.000000','544778295636544'),('1168778140147363',1,'Hi this is a good center to go to','2020-07-25 16:16:33.000000','1648645701907657'),('1169643356580284',1,'I like how they treat patients','2019-11-16 03:01:27.000000','167959367441528'),('117027299858307',0,'I went in with a severe a sever headache, fever, body aches. They gave me a pain shot (did not work) tested me for flu(negative) and sent me on my way even after I told the dr I was still in pain and felt terrible he said “ could be strep” he never tested me just sent me on my way out the same way I came in .... terribly ill.','2020-02-06 14:03:51.000000','237100240304186'),('117490476102624',1,'I was not prepared today to have an accident but it happened. So I found SignatureCare ER using maps app and came in to get my wound fixed up. The staff especially Dr. Sylvester and nurses Laura and Amy made me feel at home and got me fixed up very quickly and professionally. I felt at home. I even got walked to my car :).','2019-04-13 20:31:15.000000','1608991329419166'),('1176975782481892',1,'Everyone here was fantastic! So much so, I wish they were my regular physician and care staff. They were quick, friendly, comforting, and thorough. I will definitely be back if I ever need to choose an ER again. Thank you Dr. Thomas, Manuel, Marcus, and another friendly RN but I cannot remember her name.','2019-08-02 02:56:35.000000','237100240304186'),('1177659665906522',1,'this emergency center is fantastic! it was super clean and everyone was incredibly kind. I was greeted immediately and was taken care of so fast that my patient paperwork didn\'t get finished until I was already done with an exam and CT scan\n I was taken care of by kayla, courtney, jessica, tyler and Dr. Faig. if I ever have to go again, I\'d want all the same people :)','2020-05-09 18:05:44.000000','461782867645453'),('1186920081698338',1,'Really enjoyed the humility and comfort provided. My wife came in and needed a full work up as it’s that’s season and out the gate Maya was courteous and inviting. Olivia was a sweetheart settling her into testing and Ms.Kristina just about adopted our son for the visit and made him feel at ease. Over all I give the experience 5 stars. Dr. Henderson got her out all healthy.','2019-12-14 22:39:45.000000','829264323932850'),('1189210914586863',1,'nurse manny was wonderful, very attentive to us and our needs, thank you','2019-06-08 19:01:00.000000','237100240304186'),('1190891827636',1,'best place to come get cares for. no waiting time. I was sen in les than 5 minutes. Dr was súper sweet. and the nurses were cool','2019-03-14 18:26:15.000000','1648645701907657'),('1194183177429396',1,'This was by far the best experience I have ever had at an emergency room. Would recommend 10/10. The staff was amicable, the facility was clean and organized, and my wife was diagnosed, treated and help within 2 hours.','2019-04-16 03:50:46.000000','251751275488925'),('119585916247499',1,'I had an amazing experience! Amazing bed side manner! And wonderful staff, Shania, Leah, Kristina, and Allison :) I was also a warm blanket.','2020-02-01 09:09:45.000000','596022027480375'),('1205874316428887',1,'Eliza Manny and Rachel were so nice and helpful really good experience !','2020-07-23 21:26:41.000000','237100240304186'),('1205882669584527',1,'Great staff!! from registration to physician! They took care of my granddaughter thank goodness it was only strep. I really want to say thank you to Maria G. (registration) my daughter had her hands full with bringing in 3 little girls while the littlest one was the sick one Maria G. helped out with the two older ones and getting them snacks coloring books and helping my daughter with the diaper bag. I did send an edible arrangement because the staff was so helpful and awesome! I hope yall enjoy it!','2019-06-15 18:05:08.000000','237100240304186'),('1206662296199991',1,'Fast\nCourteous service that was pleasant\nFrom Kendra\nNurse Jacob\nDr Vakey\nRad.Laura','2020-02-02 19:03:39.000000','326347177710316'),('1210785149117072',1,'Fast response time\nHad me in the back taking my vitals within 5 minutes of getting there\nDoctor nurse and front desk were all very friendly and knowledgeable \nWould recommend this ER to everyone who wants to be treated like family','2019-12-20 09:25:36.000000','237100240304186'),('1211661925648578',1,'Signature Care was great, they attended us very fast and Keera was of great service! She helped us get situated right away! Great job truly recommend!','2018-11-02 03:56:07.000000','326347177710316'),('1212311209105476',1,'I experienced fast and quality service! I got my rapid COVID results back within half an hour! I would definitely recommend to any friends!','2020-07-25 01:36:05.000000','105589317817643'),('1212342725618210',1,'they pretty good at their jobs and super fast','2019-11-26 13:16:51.000000','235046800697531'),('1212825938857652',1,'Evelyn was amazing! Great place well recommend to everybody','2018-04-13 20:05:41.000000','544778295636544'),('1212843052238978',1,'Amable personal y atienden rapido.','2020-02-02 04:06:19.000000','596022027480375'),('1217687781750336',1,'Very caring and receptionist was very helpful Jessica s','2019-12-01 21:40:10.000000','237100240304186'),('1220911308104201',1,'Excellent service from front lobby receptionist Patricia. Physicians are very caring and punctual as well.','2020-02-17 23:16:09.000000','167959367441528'),('1221128804918453',1,'i went to e jester i have the best experience...nice ,clean\nplace and the PEOPLE who works there ; they are very nice...for exemple Maria Lara ; she was. and very profesional.\nthank you singnaturecare','2020-08-03 22:39:33.000000','544778295636544'),('1224426417765199',1,'Need a ER use these folks on Grandview fast and cost is fair. Very caring people and fast !! Great Job','2019-10-04 16:09:49.000000','237100240304186'),('1224475391248932',1,'Lorena, Amanda, Jeri, Morgan, and Dr. Harjai were very helpful during my visit and made everything go smoothly.','2020-08-08 16:37:46.000000','326347177710316'),('122487329013282',1,'Excellent staff! Very welcoming and friendly. Jessica was very respectful, prompt & organized , at the front desk. Manny & Bethany made sure my every need was met . Very pleased with Signature Care - Odessa .','2019-07-17 02:15:59.000000','237100240304186'),('1228083857371108',1,'All of the staff were friendly and polite. Doctor Henderson was super fast and efficient and the nurses were all very nice and understanding. Lucas, Kim, and Sherri were great!','2019-08-05 16:27:39.000000','235046800697531'),('123114605893940',1,'Great service. Kind and caring staff. Appreciate all the help from the receptionist Tanishia and the nurse Sarah. Everyone was very helpful! I will be back and I will be recommending to my family and friends.','2020-02-07 06:51:58.000000','461782867645453'),('1231493120343213',1,'Friendly staff with quick response to your medical needs. I\'d definitely return','2019-02-26 14:22:55.000000','596022027480375'),('123444349216975',1,'very clean place. Staff was super polite\n Natasha was amazing','2020-02-21 01:57:00.000000','544778295636544'),('1234777290056222',1,'Everyone was so awesome, cheerful, upbeat & very nice to my Dad.\nThank you to Dr. Jones, Nurse Adam, ER Tech Chris.','2020-02-07 20:18:33.000000','1698192877146046'),('1234961106669598',1,'Jocelyn savanna Andrew agui are Awesome','2019-05-18 19:19:13.000000','596022027480375'),('1235324606617831',1,'Dr. Boester was amazing. so gentle with me and so kind when removing my stitches. Amy is super cool. shes so nice at the front desk. oh and Niki was super thorough when cleaning my stitches. they are all so nice here at the heights location. i definetly recommend coming here.','2019-03-11 23:44:33.000000','1609539722669429'),('123569685846513',1,'Meridith & Alvean were great','2020-02-05 19:14:53.000000','167959367441528'),('1236790126509308',1,'Every once was so nice! daniel was amazing and appiah was nice. fatima was so sweet and tanisha really helped!','2019-09-30 02:23:47.000000','461782867645453'),('1238038386405172',1,'Great experience Cindy at the front desk was very very nice and helpful. Nurse Gina got me In and out didn’t take much time at all. The doctor Singla did a thorough and quick exam. I was very pleased. They have snacks and good stuff on tv. Will be coming back if needed.','2020-01-24 16:17:50.000000','1609539722669429'),('1238726076309761',1,'Rebecca V. and Dyveliz gave us friendly service and gave us snacks while we waited for our friend :)','2019-08-30 02:00:21.000000','326347177710316'),('1241719826010036',1,'The staff was very attentive and helpful. Made sure I was taken care of and needed anything at all times . Clean work place !','2019-08-02 17:26:56.000000','544778295636544'),('1243168082503402',1,'Friendly staff, minimal wait, great experience overall.','2019-01-25 00:01:39.000000','596022027480375'),('1244215422455574',1,'They took such incredible care of me! Thank you Adrianna, Eliza, Magali, Jessica S and Dr Miller for the amazing care ♥️','2019-12-23 19:24:58.000000','237100240304186'),('1244289739099527',1,'The facility is very clean. The entire team there are very care and attentive to your needs.','2019-12-07 01:10:00.000000','1608991329419166'),('124433512418776',1,'good people very faster...','2020-02-06 20:50:11.000000','237100240304186'),('1246048238925885',1,'They are quick friendly and informative','2020-01-23 20:46:17.000000','1648645701907657'),('1246049872259055',1,'They are friendly Quick and informative !! In and out!!\nThe staff is great and quick to get you seen. \n\nDr Singla is a great doctor quick and informative \nMaya at the front desk is super bubbly \nStephanie was our nurse she was gentle Informative and helpful!!','2020-01-23 20:49:43.000000','829264323932850'),('1248004058743202',1,'Super fast and friendly service! Very clean facility! We\'ve come twice for various things and have been taken care of each time! Definitely our go to urgent care now!','2019-12-01 00:57:34.000000','251751275488925'),('1248503491975195',1,'the staff here is really nice no long wait time. Kat was my nurse and she is awesome😊😊😊','2019-06-04 02:47:07.000000','251751275488925'),('1249841445207076',0,'Kristina, John, hanh, génesis, Jaber. they were all amazing. Highly recommended.','2020-01-19 21:24:31.000000','829264323932850'),('1254499494730133',1,'Brenda was awesome and really helped me through the whole process!','2019-06-16 19:37:28.000000','1608991329419166'),('1256549767863374',1,'the friendliest staff I ever met in an er dr.jaber,noor,natalie,dana,aaron,Ryan they treated me good keep up the good work guys I would definitely be back and recommend them to all my family and friends','2020-01-09 16:12:37.000000','1609539722669429'),('1259707474207261',1,'Wow!!\nDr. Yabara, nurse Dawn, Ayesha and Dawn were amazing!!\nTotally felt confortable and made it through my visit! Thanks guys ☺️','2019-06-25 18:19:59.000000','461782867645453'),('1260397327496051',1,'Absolutely amazing service, friendly staff, very quick and so supportive! From the front desk with Alicia, to the nurse Erica and tech Ashley K. I was blown away by the support and knowledge of Dr. Jordan. He spoke to me like we had known each other for years and prayed with me after our check up! Amazing service all around','2019-09-05 21:34:26.000000','299216637560955'),('1263412793856633',1,'Had a great experience at westchase! It was my first time coming in and I don’t regret it! Amy was extremely sweet!','2020-03-24 01:23:56.000000','829264323932850'),('1265741280250428',1,'Theresa at signature care just took care of my little boy after he got bit by a dog. She keep he smiling so he wouldn’t be scared \nThank you Theresa','2019-05-21 03:16:40.000000','237100240304186'),('1268854736628334',1,'The care I received was great! Everyone was professional and they got me right in! I was impressed with my level of care.','2019-07-04 00:06:19.000000','596022027480375'),('1268923083281484',1,'The staff is always professional and they care about the patients. Special thanks to the young lady at the front desk Valinceia.','2020-03-23 15:00:20.000000','1787364321589026'),('1269234446615396',1,'Dr. Elsbecker, Lauren, City Ambulance, and the rest of the staff did a great job at providing services while waiting to get tested for COVID-19! I highly recommend them for excellent health care service!','2020-06-09 21:01:03.000000','1698192877146046'),('1270798613102158',1,'Excellent service. Professionals for sure. Thank you SignatureCare.','2019-09-17 00:45:54.000000','596022027480375'),('1272490873140545',1,'Jessica, Senaida, and Keira have been so friendly and helpful! The best care we have ever received.','2020-03-04 01:16:29.000000','237100240304186'),('127273208435280',1,'Was so cozy and everyone was super nice. Felt right at home like I had been there before and it was my first visit !!','2019-04-07 02:48:05.000000','251751275488925'),('1275381372622391',1,'Very fast and friendly service, very friendly staff!! Went to Seton and waited 2.5 hrs with no check up and when I came to SignatureCare it was pretty much instantaneous. Thank you!','2019-07-14 01:12:29.000000','544778295636544'),('1276346092539034',1,'Had to take my sister, we were greeted with great hospitality from Tanishia and my sister was met with care as soon as possible','2019-11-06 05:23:13.000000','461782867645453'),('1279849928874099',1,'Awesome customer service. Made my 9 year old feel right at home even while being sick. Definitely recommend. Nurse Manny, Dr. Plante, Tabitha the radiologist and the ER tech Pete r we’re all really friendly and attentive.','2019-12-16 21:10:34.000000','237100240304186'),('1285145758334581',1,'Kim, David & Maria were amazing, such a great job with me tonight!!!!','2019-07-03 08:21:55.000000','596022027480375'),('1288626304858553',1,'Came to get checked today. I was super worried and the staff all around was super helpful & caring. The registration, Dyveliz answered every question I had about paper work. Dr. Vakey and Remington were super helpful, and made me feel so much better.','2020-03-16 20:09:26.000000','326347177710316'),('129549991611608',1,'no more waiting in the lobby. fast and friendly people. great place to go for an emergency.','2019-07-24 01:49:35.000000','1608991329419166'),('129627275042489',1,'Great staff thanks to all that help my mother, registrations Sita,nurse Kim ,radiology tech Allison,and DR.Thomas','2019-09-18 03:14:02.000000','544778295636544'),('129720818255548',1,'Excellent service, professional staff, thanks Theresa , Marcus ,Nancy, randi and dr. Miller','2019-07-25 01:30:32.000000','237100240304186'),('1297970873739083',1,'My experience was absolutely a positive one. The staff was very professional and attentive from the moment I walked into the the center until my release from the center, they never missed a beat. At SignatureCare the doctor\'s divised a plan for my care and really took care of me and I couldn\'t be happier. Thank you all. I\'ll be sure to recommend my family and friends. \n\nTrevillian Bundara','2017-11-30 23:32:43.000000','544778295636544'),('1302279956569704',1,NULL,'2017-01-31 19:08:18.000000','544778295636544'),('1302461233223425',1,NULL,'2015-04-19 20:18:52.000000','544778295636544'),('130253368420940',1,'I had an amazing experience at signature care. Dr. Henserson was extremely helpful and Racheal and Amanda were very informative .','2019-11-29 00:30:16.000000','461782867645453'),('1305835802920475',1,'2nd time here. We had a warm welcome. The team Dr. Akunyili, nurse Kristina, Rad Tech Laura, ER Tech Scott and Checking in Maya had great customer service. My wait time was minimal. They ran test and ruled out and found my issue. I was well taken care of and I appreciate the time and hard work you put in to get me feeling better. Everything was expanding to me at discharge. I will be referring my residents and family, friends. Great staff!!! You guys are truly one band one sound!! \nJob well done!','2020-02-05 01:12:54.000000','829264323932850'),('1309621322509956',1,'Amazing staff, prompt, very friendly and clean environment!','2019-03-12 07:31:48.000000','544778295636544'),('1310374482458263',1,'Erica D. And Kimberly P. Were really good help with information and kind.','2019-09-09 19:04:45.000000','1609539722669429'),('1315600261950364',1,'Jessica S. In the front desk she was very friendly. She right away asked if she could put on some cartoons for my daughter and offered us some snacks and water while they checked my mom. \nThen I went too the back too keep her company \nGreat doctors, very nice answered each questions! \nRecommend SIGNATURE-CARE!','2019-07-13 09:04:31.000000','237100240304186'),('131839018046610',1,'They were very quick and welcoming!! Thanks guys !!','2019-07-26 02:51:25.000000','1787364321589026'),('1318727294929107',1,NULL,'2017-05-25 10:45:26.000000','544778295636544'),('1327841924092738',1,'The staff here are very nice and funny, they move quick and make sure your as comfortable as possible for now on will definitely come here if anything happens with my family!','2020-02-13 00:37:59.000000','251751275488925'),('1327931164021772',1,'excellent staff friendly n quick','2019-06-11 18:29:34.000000','1787364321589026'),('132810064660584',1,'Fast friendly service!! There was no wait and Mollie, Eric, Dr. Yost, and Sergio all were fantastic!!!','2019-08-28 00:49:20.000000','235046800697531'),('132853101822754',1,'amy, sala, brian and Dr. Lim were great','2020-08-03 16:19:08.000000','1608991329419166'),('1333325810103949',1,'I went in on 01/29/2018 with flu like symptoms. The receptionist was very welcoming and very quick. I love the little amount of paperwork I had to fill out. I did not even wait 5 minutes before I was taken back. The staff was great, very attentive and extremely thorough. Me being a nurse myself, am very picky about patient care and the staff was right there checking on me often. The Doctor was great and they did everything there vs trying to send me to the hospital. Absolutely loved the treatment from everyone on my team! Thank you all!!','2018-01-30 15:21:49.000000','326347177710316'),('1335430139938447',1,'2nd Time here, Dr Wang, Ms Lynn and Jennifer was awesome. Tanisha took care of me too. Thank y’all so much','2019-06-10 04:01:23.000000','544778295636544'),('1337731719698242',1,'This place is very excellent. Very friendly and warm welcome. The doctor and his team work fast and professionally. I\'m very appreciated. Brenda R. In registration was helpful.','2019-05-12 15:27:36.000000','1608991329419166'),('1343200409176219',1,'Before I start, I just want to say one of the best things that they offered me was quick service and also they have a great staff I felt very comfortable nothing was awkward they took really good care of me I recommend everyone to visit them.','2019-09-13 02:57:31.000000','596022027480375'),('1345274412310734',1,'I went into this facility with work related injury I literally only spent maybe 30 minutes here. Service was greatttttt very quick check In with Jocelyn A. Was amazing she was sooo kind and generous and she answered all of my questions and my nurse Alvean A. Was awesome she addressed all of my worries and concerns I had she was very friendly and kind to me. She made sure that I was well taken and she made sure I was comfortable the whole entire time I was here I definitely 100% recommended this facility. The doctor here was very nice and understanding 100% caring. You can tell he has a passion caring for people.','2020-01-11 16:40:28.000000','167959367441528'),('1346136798871862',1,'Jennifer D, Susie H, Matt and Dr Das did an outstanding job. I would like to thank them for their care.','2019-07-30 16:24:45.000000','299216637560955'),('1348372122034204',1,'Dr. Henderson and Mollie were nothing short of phenomenal in their care for me! It was a good experience and I 100% will recommend SignatureCare to my friends and family.','2020-08-12 01:02:44.000000','235046800697531'),('1351529684991088',1,'This emergency center is outstanding and clean. The staff is absolutely wonderful and kind, but most of all take good care of your medical needs. I am feeling so much better now that they have diagnosed my condition and on the way to a full recovery. Thanks SignatureCare for being there for me! Sandra Edwards','2016-09-23 22:10:48.000000','544778295636544'),('135471451266662',1,'The staff and doctor where great I will never go to a ER at a hospital again the staff here took the time to listen and try to get to the bottom of things .you are not just a number to the staff you are a person they care and do everything they can to make your time there awesome .as soon as we got there we were back to a room within 5 mins and there is no sitting there waiting around the staff are great.','2020-01-21 15:53:58.000000','251751275488925'),('1357691107706086',1,'This team is very effective in their treatment plan and how they handle everything , it’s been a blessing to have these guys open 24 hours so at five this morning when I came in they where able to help me he the treatment I needed. Doctor Jones was very understanding of everything helped me with the process of my recovery. The receptionist or registration staff Ms. Angela and Ms. jereyia helped with figuring out why my insurance was acting up, the nurses Ms Kat and Ms Konya helped me feel comfortable throughout the whole process including blood tests and with the IV drip , Britni and kelvin where able to get my radiographs in very quickly and all together this team came together to help me feel better ! This is a company willing to work with their patients . I’ve never had better care at an ER than this one , and I’m never normally at the doctor when I get sick ! I came in barely able to walk and now I’m feeling a thousand times better','2019-02-26 13:42:52.000000','251751275488925'),('1367285680117135',1,'they are always super nice and it\'s so clean','2019-12-13 19:31:57.000000','237100240304186'),('137049931149869',1,'Dr. O\'Malley was very attentive, and he also was very detailed about the at home treatment.','2020-03-10 01:18:39.000000','167959367441528'),('1371367273048646',1,'Highly recommend them, Erica, Kanyon, Debriel, and Dr. Bodgie took excellent care of me!','2020-05-01 15:48:05.000000','104213804456471'),('1371396929668912',1,'I couldn’t have asked for a friendlier staff or doctors. I was in a lot of pain, and they immediately got to the source of the problem and were kind and patient through the entire time I was here.','2019-02-06 13:50:45.000000','251751275488925'),('1372483169624919',1,'Treated you with concern and perfect care.','2020-02-01 23:21:07.000000','1787364321589026'),('1374145202757858',1,'Dr Pham, Jocelyn, Erika, Jordan and Ezequiel were great! Timing was great and definitely recommend!','2019-12-13 18:17:16.000000','167959367441528'),('1375139759360748',1,'Dr. Ashbrooks, Courtney, Luke and Kim we\'re all wonderful!!!','2019-11-25 23:20:41.000000','235046800697531'),('1379074382245910',1,'My experience was amazing and staff was so friendly!!! Will definitely come back and definitely recommend them !!','2019-10-07 17:00:34.000000','544778295636544'),('1380719412104822',1,'great service doctor and staff were great and service very good..','2019-08-23 13:09:10.000000','461782867645453'),('1381474242017319',1,'I am thoroughly pleased with the professional service and integrity of SignatureCare Emergency Center. Their staff is very helpful and friendly and I highly recommended them if anyone has an emergency that needs immediate attention.','2019-10-27 19:14:00.000000','251751275488925'),('1382089205328062',1,'The front desk receptionists, Garcia, Stacy, & Shawn were a big help! Everything was very clean and quick . Thank you guys .. If I need anything I will be returning to this location . From the care , treatment , & billing info !','2020-01-31 00:26:56.000000','1787364321589026'),('1383455681808456',1,'Very friendly with extra touches to make the visit more comfortable and pleasant. The nurse, Sarah, is great, but all the staff has been, too. My husband had a good experience with them earlier this year.','2019-07-25 18:48:16.000000','461782867645453'),('1384665275038806',1,'Great service! From Dr. Tran, Nurse Amy, Shaunda with Registration and Thai!! Everyone’s nice. The facilities are very clean.. 🤩','2020-02-10 19:53:45.000000','544778295636544'),('1385983191526865',1,'I just have to say this place is awesome! During a nasty storm, and them losing power, they still did everything possible to get us going & take care of my daughter!! They were so quick to help and thorough with advice!! Definitely recommend.','2019-05-13 22:43:10.000000','596022027480375'),('1387689634704851',1,'They were wonderful.fast Staff &Dr was super helpful. Thank you.','2019-07-23 13:30:28.000000','237100240304186'),('138887150573546',1,'Omg I can’t thank the staff enough at how amazing they are!!!! Super caring people super fast to get back and get looked at!!! Amazing!! Hands down the most amazing place to come!!! Came in due to tooth pain found out I have an ear infection they took care of that too. Very friendly staff make you feel very welcome. Thank you signature care!!','2019-04-28 01:57:06.000000','251751275488925'),('1389918501179892',1,'I came in for a sore throat and within an hour they addressed the pain and told me what was wrong! Thanks to Lorena, brad, Morgan, and dr kimball it was fast and effortless','2019-12-31 14:47:43.000000','544778295636544'),('139423050996399',1,'This staff was all amazing and I will forever come to this ER, the staff was all amazing and thank you for helping me get rid of my pain🖤🖤🖤','2020-05-19 02:23:49.000000','1698192877146046'),('139449707533072',1,'Thank you Ashley Burton & Ashley Keely for getting me the assistance I needed in a timely manner! You guys rock here at SignatureCare‼️','2020-02-08 21:11:57.000000','299216637560955'),('1397412697060883',1,'Great Dr. and staff. No waiting.','2018-09-27 21:52:45.000000','1787364321589026'),('1400746176776867',1,'We took my daughter there around 7:30 pm ( 12/02/2017) because of a headache. we did not wait much longer and the receptionist was very nice to us. she finished the paperwork really fast so we can get help. Dr. Hehman was such a caring man, he explained the diagnoses very well to us. Also, Jessica, John, kate, Tino every one was very helpful to us.','2017-12-04 04:10:52.000000','1787364321589026'),('140251053930734',1,'I brought my son here twice already and the staff here is wonderful, especially Tanishia! Always very fast to get you in a room and care starts immediately. I really love that they are fast and efficient. I highly recommend this place to anyone in need of care.','2019-10-21 02:59:55.000000','461782867645453'),('140419017208267',1,'they very nice got me in the back and since I walked in the door a very respectable place to go I will come here again if I need to','2019-09-06 22:22:50.000000','237100240304186'),('1414756648912661',1,'They were so helpful and nice!','2020-06-12 17:31:34.000000','1698192877146046'),('1417020258502584',1,'Adrianna and Magaly where kind and gentle they know what they were doing highly recommended these two women!','2020-07-22 15:47:25.000000','237100240304186'),('1417984775026632',1,'Love them great service in and out \nSingla Stephanie Carly Mercy','2019-12-16 21:52:11.000000','829264323932850'),('1419694171535544',1,'No words can describe how amazing the visit was! The registrar Okarys was so welcoming and warm. The nurse Jeri was very attentive and on point, straight perfection. Stephanie...goodness....so kind and VERY professional and lets give a huge shout out to Dr. Mauldin... BEST DOCTOR EVER! He was very informative and down to earth. I will def be returning. Thank you SignatureCare for being there. Thank you Ashley for referring me. (BEST MARKETER EVER!)','2020-02-27 01:38:55.000000','326347177710316'),('1423709221163353',1,'friendly staff. informative and very helpful. came very late at night but everyone was super kind and professional','2020-08-10 08:09:03.000000','104213804456471'),('1436649533150593',0,'the 1st visit i had last month was great. this time was horrible. i am passing a kidney stone. they wouldnt see me if i didnt pay 1300 up front. i called before hand to make sure because i didnt want to waste my time or anyone elses. i left having severe chest pain. and got no assistance','2019-12-27 00:02:06.000000','326347177710316'),('1440987739413105',1,'When it today and had the best service around thank you Jessica, Senaida and Keira for everything','2020-03-04 01:10:51.000000','544778295636544'),('1442765455932825',1,NULL,'2017-05-06 23:21:00.000000','544778295636544'),('1443307229174126',1,'Lorena and Victoria at the front desk were very kind and helped me with any questions I had! Overall great service','2020-07-26 15:17:19.000000','326347177710316'),('144337386745443',1,'Really nice and fast with the service. Very helpful and easy to talk to. Highly recommend thank you Kim and Allison','2019-06-23 13:09:34.000000','596022027480375'),('144951083853757',1,'This is really good location and Nuris and doctor is fast','2020-06-18 20:41:12.000000','829264323932850'),('1450209855165902',1,'Brenda was a very good. Everyobe was amazing i will definitely be back','2017-08-19 18:50:06.000000','1609539722669429'),('1450646715114250',1,'I\'ll start by saying I normally don\'t write reviews. But they were so nice and professional the entire time I felt this review is needed. I will try to be as descriptive as I can be with this review.\n\nI walked in on Memorial Day. I could Bailey talk, had difficulty breathing and swallowing. The receptionist was very curious and very patient with me. She was able to answer most of my questions with me limiting myself to gestures. Had to speak a few times but that was because I couldn\'t figure out how to gesture my question properly. Once I filled out the forms, she instructed us to please sit down and wait a short period, less than 7 minutes, until I would be called back.\n\n-waiting area description-\nThe waiting area was very nice, sadly i have been in a lot of ER\'s before so I am used to really old layouts or just uncomfortable seating. The seats were very comfortable for the short time I was waiting. The furniture was modern and in a practical layout; it showed, to me, that they care about their patients even before they are seen.\n-end-\n\nOnce a I was brought back all the nurses that were working greeted me. Granted it was just a simple welcome in, we will be right with you, but it meant a lot to even get that.\n\n-room description-\nThe room I was placed in was spacious and very nice. It had a large TV in case I was going to be there for awhile a nice comfortable hospital bed, like one of the ones long term patients get and three chairs in case I had people with me. Which was nice because it gave my partner somewhere to sit while I was back in the room.\n-end-\n\nI was in the room not even 5 minutes before two nurses walked in and greeted me. They started asking the general questions you\'re asked upon first arrival to a ER or UC center. My partner explained I was having difficulty speaking. I nodded and used a very soft whisper when needed to answer the questions. This lasted maybe 5-6 minutes and then they asked if I would like a warm blanket or to have the tv turned on. They said the doctor would be in shortly.\n\nThis is the most dreaded waiting time for anyone in a ER or UC center. Because there is no telling how long the way will be. I can happily report that my wait to see the doctor was maybe a little longer than 5 minutes, but I\'m guessing at time because I didn\'t check a clock during that time.\n\nThe doctor came into the room and talked to me for a little bit and asked for me to open my mouth so he could see my throat. Within a few seconds he said, wow you have a very server case of Strep Throat. He then checked my partner due to our close proximity all the time and he said my partner was displaying easy warning sings of a case but currently only shows the standard \"red inflammation\" look. He suggested that my partner get the test as well. \n\nHe then swapped us both and said he would come back in once the test results were completed. Which this starts the next anxious waiting game. Because lab results can take forever sometimes. Well 3 minutes later he walked in and confirmed what he thought I had and informed my partner that he tested negative. He said that as his personal recommendation my partner start a low dose treated, but as his professional opinion no treatment was needed and it was my partners choice. Then looked and me and said apologized and said I don\'t have a choice.\n\nHe explained what I was going to be getting and then he did ask if I would like a fluid bag. Because while examining my mouth he said I looked dehydrated, which I probably was since I could t drink anything for about 7 hours by this point.\n\nI said yes and he left to get the medications needed for treatment. This is when a third nurse entered the room. I will admit I had a slight freak out because the only thing I thought was oh great another nurse, will I have to explain myself again?\n\nShe greeted us both and asked who was who. She handed my partner his 1 pill. Then looked at me and asked if I was ready for my shots. I was envious of not being able to take the pills but I could t protest dude to the fact I couldn\'t swallow anything.\n\nShe gave me the shots and hooked up the IV bag. Then she said she would be back in 30 minutes to check on me. She offered a warm blanket and asked if we\'d like the TV turned on.\n\nWe thanked her and said no thank you. She left and the 30 minutes did what ER UC minutes do for patients, they drug on like normal. But true to her word she came back within 30 minutes. She gave me my last shot and explained the other medications the doctor has prescribed to me. She then asked if I had any questions and when I said no she said you\'re free to go. Then showed us our. On our way out the other staff members said they hope that I get better very quickly and that I don\'t have to come back anytime soon. \n\nAll in all, this was by far one of the best visions I\'ve had to a ER UC. They were very polite and it felt like they were tending to my every need.\n\nI would 100% recommend them to anyone.','2017-05-30 20:22:16.000000','544778295636544'),('1451510225029461',1,'highly recommended these guys! even though I couldn\'t go in to be with my man while he was here. shout out to the following people! \nthank you to Sita (Registration), Paige G (nurse), David (radiology), Delpha (blood work), and Dr. Patel!!! thanks you guys!','2020-05-05 02:44:02.000000','596022027480375'),('1452066441634151',1,'We went to Signature Care Emergency Center at Copperfield last night. \nVery Fast and Friendly Service. \nI\'m very happy with all the staffs over there. \nHighly recommended for those people who need any kind of service after hours','2019-12-26 19:09:14.000000','461782867645453'),('145351936805235',1,'I\'ve been here before and they were excellent to me so I brought my mom and got the same excellent treatment from Jennifer,Erica, and Ashley','2019-10-26 17:52:00.000000','299216637560955'),('1457378391104729',1,'Sergio was so welcoming and very helpful. Dr. Ashbrooks Mollie the RN Greg and Eric Were very welcoming took very good care of me!','2019-09-12 13:11:03.000000','235046800697531'),('1457615844413921',1,'Excellent care. Never had a bad experience.','2019-11-18 22:40:05.000000','1787364321589026'),('1461033477392436',1,'We were seen in less than 5 minutes of walking in the door! She staff was amazing with my 5 year old daughter:) I would highly recommend SignatureCare! Allison, Brittany and Dr. vaagenes were amazing.','2019-12-23 05:26:13.000000','596022027480375'),('1466386113521102',1,'Brought my 2 year old in at midnight. We were taken in In just a few mins. The staff was great. I would definitely recommend coming here. Thank you Audrey, Daniel P, Bancroft and Dr. Anders','2019-12-26 07:09:37.000000','596022027480375'),('147422250229142',1,'Jocelyn, alvean, thuy an were friendly and hospitable.','2020-06-03 15:57:43.000000','167959367441528'),('1476904109151770',1,'This is our second visit to Signature Care and we absolutely love it. We were greeted by Vanessa at the front desk. She made us feel welcomed and always had a smile on her face. Our nurse Nicole was caring and attentive. She listened to all of our concerns and explained everything well. By far our favorite was Brandon! Thanks for being gentle with our son and even turning on the tv for him! On our visit we saw Dr. Lim. He gave us outstanding care. We are so pleased with the service we received! Highly recommend it!!','2020-01-11 02:48:39.000000','1609539722669429'),('1479049852250501',1,'Took my Daughter there with no issue, staff was great and attentive. Dr Yost, was well informative, Kara and Gunner was great with her for tests and Courtney at registration made it painless. Recommend it definitely','2019-12-16 14:58:34.000000','235046800697531'),('1481436048703860',1,'Had abdominal pain and they were very thorough in testing. They found a problem and i was sent to the hospital for surgery. Grateful they were able to diagnose the problem. Staff and Drs were professional and helpful.','2016-04-05 21:11:32.000000','544778295636544'),('1481509482059968',1,NULL,'2017-03-06 14:01:00.000000','1608991329419166'),('1484070471775850',1,'I had an excellent experience at SignatureCare Emergency Center-Stafford. The doctor and nurses took great care of me as I had a Molar Split alongside a filling on Wednesday at 8:00pm in the evening and was in extreme pain. Thanks to my nephew, Logan and Brother in Law, Geoff for getting me there quickly and safely! Thank\'s again to you all for being there! Stephanie Tonini','2017-09-22 16:23:26.000000','1787364321589026'),('1484521068383117',1,'Wonderful staff, was in and out of there in an hour !!','2020-01-08 00:11:42.000000','251751275488925'),('148519749783690',1,'Signature care emergency center , it’s a very good place they help me out when I got a car accident .','2019-12-21 15:20:10.000000','544778295636544'),('1486463278195399',1,'It’s a good environment and nice staff and was really quick\nDr. Ybarra, Stephanie, Rollie, and Natalia awesome','2019-10-22 02:30:42.000000','1648645701907657'),('1486525241516278',1,'We had a great visit here. Highly recommended \nDr. Rose,\nNurse Brandon\nRadiologyst Clay\nRegistration Earl\nER Tech Chris M. \n\nThat’s the dream team!!!','2020-03-12 03:38:07.000000','104213804456471'),('1486526041516198',1,'We had a great visit here. Highly recommended \nDr. Rose,\nNurse Brandon\nRadiologyst Clay\nRegistration Earl\nER Tech Chris M. \n\nThat’s the dream team!!!','2020-03-12 03:39:40.000000','1698192877146046'),('1487521464761766',1,'In line for covid testing, employees super friendly!! :)','2020-06-12 17:47:04.000000','1698192877146046'),('1488403741335973',1,'Friendly staff and quick registration.','2020-03-25 03:00:48.000000','104213804456471'),('1489099177904875',1,'The staff here is amazing, Doctor Zhen, nurse Lynn, Fatima, Daniel and Ms Tanisha took care of us and you can tell they genuinely care. Thank you guys','2019-12-09 06:50:48.000000','461782867645453'),('1489266811207663',1,'A wonderful Emergency Center with fast and friendly staff.','2019-03-11 20:24:26.000000','235046800697531'),('148973336503543',1,'There very fast and nice. This is my second time here and they’ve taken excellent care of me ! I am really blessed to have such great people.','2019-10-29 18:35:59.000000','251751275488925'),('1491593277664775',1,'Great experience and I was very comfortable and everyone was very helpfully.\nDr. O’Malley, Alvean, Kelly, Jocelyn.','2019-11-27 23:53:07.000000','167959367441528'),('149368669678871',1,'I recommend you come here the nurses are very nice always made sure my mom had everything she needed and we didn’t even have to wait for a long time for them to take her back !','2019-11-15 01:40:08.000000','596022027480375'),('1496162360489021',1,'I have been to multiple ERs and Urgent Care centers, but this service was great. Everything from customer service to patient care was wonderful and it allowed me to calm down through a difficult time.','2018-04-30 16:27:43.000000','1698192877146046'),('1497042427134814',1,NULL,'2015-05-27 22:37:24.000000','544778295636544'),('1503477763172926',1,'Everyone was very courteous and friendly, even though they were extremely busy. Quick service considering the workload.','2020-07-09 18:53:54.000000','105589317817643'),('150359172669263',1,'Phenomenal service. In and out in 30 minutes. Dr. Wren took great care of us and made the process easy and enjoyable. Amy was very welcoming as soon as we walked in.','2019-04-21 05:30:57.000000','544778295636544'),('150948522656191',1,'Lucas Kim Sherri were great','2019-08-02 14:09:56.000000','235046800697531'),('1513585515483195',1,'Great and friendly staff! Treated my friend with the upmost care in a timely manner. The staff that were present were Dr. Amy Patel, Rebecca V, Jeri, Gabe, Patrick, and Stephanie.','2020-02-22 06:31:39.000000','326347177710316'),('1513789938778474',1,'Great experience ! Ashley K was excellent in radiology ! So convenient !','2019-03-01 16:28:07.000000','299216637560955'),('1513898888771756',1,'I came here because I was having a gout flare in my left foot and I recieved excellent care from Nurse Ekaterini, Tech Thuy An, and Radiology Rick. They made me feel welcomed with excellent care.','2020-04-16 15:16:35.000000','167959367441528'),('1516940448467773',1,'great care from registration to discharge.I highly recommend this ER for your care.\nTerra, Kara,Theresa were all great!','2020-02-25 21:33:43.000000','104213804456471'),('1516969995131485',1,'I was seen by Dr. Simmons she was amazing ! she sat down listened and took her time. Thank you Dr. Simmons!!!\nGreat experience from check in to discharge. Susie Hicks RN, Matt Leonard RT were awesome !\n\nSignature Care ER Paris, Texas you rock!\nThank you!','2020-02-25 22:34:38.000000','299216637560955'),('1522427141295921',1,'Cali was amazing i hate shots and she was great when administering it. my pain level was a 10 and left the hospital with zero pain. very clean plave and great staff.','2020-05-30 02:09:03.000000','251751275488925'),('1526757007498613',1,'So friendly and nice once you walk in. Jocelyn at the front desk made the paperwork process so easy and quick. Not even 10mins when we get called to be in a room. Alvean and Jose are kind and professional, makes you feel like family members.','2020-02-22 22:51:01.000000','167959367441528'),('1530299757115733',1,'I\'m not a big fan of urgent care facilities, but SignatureCare Emergency Center - Stafford was an EXCELLENT experience for me from the receptionist to the security in the parking lot. Everyone was friendly, caring and professional. I hope and pray you don\'t have to go to one, but if you do this facility is highly recommended by me and my daughter. Thanks everyone; especially Dr. Sylvester!','2018-10-01 14:28:06.000000','1787364321589026'),('1531744127008089',1,NULL,'2017-09-29 22:52:06.000000','1787364321589026'),('1533814746770080',1,'The greatest 24 hr care you can go to better than most hospitals..fast services, friendly staff, and clean. They have snacks for your convenience.','2019-12-09 11:54:02.000000','1609539722669429'),('1534451443365057',1,'Very pleased with my visit at signature care! Jennifer D was very great at the front desk as well as all of the staff who helped diagnose and treat my problem! Very Clean and very nice facility! Will recommend to friends and family!!\nDefinitely will come back in the future.','2019-01-06 22:19:05.000000','299216637560955'),('1534890233342134',1,'All of the staff is friendly and very informative. This is my second time here and each experience were the same. Exceptional','2020-05-20 23:25:10.000000','1787364321589026'),('1535450813325686',1,'everyone always nice and treats u fabulous','2020-04-23 01:21:40.000000','299216637560955'),('1535723429910225',1,'This place is has great employees such as Doctor Cavazos J, Nurse Sarah G, Registration Tanishia W. And Rad Tech Elaine & Geovanny. Every knowledgeable and we will be coming back for emergencies. They are right around the corner from us and we feel relief to have them here.','2020-01-24 02:12:50.000000','544778295636544'),('154172452352258',1,'Kim and Allison are great helped me right away','2019-09-01 06:51:51.000000','596022027480375'),('1544133922411316',1,'Me gusta mucho como me an atendido. Ya e venido en dos ocasiones y si los recomendaría. La enfermera Alvean y recepcionista Patricia muy amables.','2020-02-06 16:07:54.000000','167959367441528'),('1544471342372046',1,'Awesome facility, friendly staff, and quick care. Will visit again.','2020-02-22 16:59:45.000000','251751275488925'),('1544755062292151',1,'My friend broke her foot one night and needed a quick visit to see what happened. The staff was extremely nice and the facility is very clean. We were in and out in about an hour. Would recommend this clinic to anyone needing care in college station. We were served by Anthony, Kathleen, Rebecca & Dr. Anders all of which made our experience a good one. Will be back','2018-11-14 03:21:11.000000','326347177710316'),('1548832335286366',1,'Great and fast service, awesome staff, staff took really good care of me as I was in and out the building...⭐⭐⭐⭐⭐ and 👍\nFrom now on I\'ll return here if needed.','2020-05-20 22:48:28.000000','251751275488925'),('1550522168445053',1,'Jocelyn and Meredith were awesome!!','2020-03-18 17:48:44.000000','167959367441528'),('1551426238363808',1,'Great staff and excellent care given by Dr Tran and all the nurses.I highly recommend Signature Care Emergency Center if you find yourself in a medical situation.','2018-07-17 08:54:02.000000','544778295636544'),('1552933978220907',1,'I am very satisfied with my service today especially with the friendly, professional, very compassionate staff. Thank you to Emily, Sindy, Dr. Golla and Jubril for your wonderful service!!!!!!','2020-04-21 00:08:05.000000','544778295636544'),('155357922352369',1,'I recommend this ER a lot! I walked in with chest pains and they immediately got me in the back! Everyone was so sweet & professional! I felt safe even when I was scared! Thank you to everyone that helped me! \nDR. HENDNSEN\nNURSE- SARAH G\nRAD TECH- FATIMA \nER TECH- ELAINE\nREGISTRATION- TANISHIA W','2019-11-22 04:03:12.000000','461782867645453'),('155459106162518',1,'This is the best ER I have ever came to. They are all very welcoming, and care about your emergency situation. We are new to Houston, so we were a little concerned to come to a new place. We were greeted by a lovely soul named Delicia who quickly got us our paperwork. Blake then assisted in asking questions regarding what was going on, and was very comforting during the procedures. Dr. Omally, Sonle and Mary Ann are also amazing. Highly recommend coming here!!!','2020-08-10 12:57:38.000000','1648645701907657'),('155529095802732',1,'Brought my nephew here for strep throat. They were quick caring and made sure he was comfortable through out the whole visit thank you Dr. Patel, Ekaterini, jessica and luisa.','2019-11-27 01:56:23.000000','167959367441528'),('1557032677778028',1,'SINCE IVE BEEN IN HOUSTON IVE HAD THE WORSE EXPERIENCE WHEN IT COMES TO ER, TODAY I TRIED SIGNATURECARE CYPRESS LOCATION.. I WAS IN AND OUT IN 20 MIN THE WHOLE STAFF WAS AMAZING DR.IHEME, ALVEAN, MARCUS, JOCELYN, and OLIVIA... I WILL DEFINITELY BE BACK IF I HAVE ANY MEDICAL ISSUES THANKS GUYS','2019-12-04 15:01:40.000000','167959367441528'),('1557601984386754',1,'This is absolutely the fastest care center I ever been to. Everyone is super friendly and seem to genuinely care. If I have future emergency I would definitely rather come here rather than S&W or Metro.','2020-02-12 21:01:23.000000','251751275488925'),('1558771700946500',1,'This is the best ER in DFW HANDS DOWN!!! I’ve lived here 4 years, I hate ER visits and hate taking my son but this place went above and beyond to accommodate me and my son! Jessica Sanchez, Georgia Johnson and Dr. Gary were absolutely amazing and so nice with my son! Thank you for helping us feel comfortable!!','2020-07-16 18:14:09.000000','104213804456471'),('155968892195873',1,'They are super clean. Very organized. Doctors very professional. Rated likely concerned about the patients and/or health.','2019-07-04 19:10:48.000000','544778295636544'),('155969322195830',1,'They are very Sanitized. The doctors are friendly. Most concerned about patients needs and care.','2019-07-04 19:14:26.000000','1609539722669429'),('156126885543574',1,'I love this place Amy was so nice and helped me with the registration. Jani and Dr. Iheme let me know exactly what was wrong again i love this place.','2019-07-19 22:21:51.000000','167959367441528'),('1562678243891213',1,'The staff is amazing and was very helpful and informative Dr. Diaz was super nice!','2019-09-29 23:18:39.000000','596022027480375'),('1562794217215709',1,'Very helpful, friendly, clean, and informative! Dr Daniels and Tanishia were great. Everyone was great! Thanks again.','2020-03-02 02:26:27.000000','461782867645453'),('156366122500651',1,'I will recommend!! My advice is to know your symptoms and be able to explain that before you go. The first Doc was not helpful and he rushed. 2nd Doctor was great and more patient. The nurses were great!!','2020-03-29 04:47:01.000000','251751275488925'),('1564338570405151',1,'Half my face was swollen, I looked like something went terribly wrong on my face, my son was calling me Harvey dent(batman reference) I went to my primary doctor twice, and he basically gave me some Advil. The third day I decided to just Google emergency care, and went to the nearest one before my face felt off, so happened it was this one. The receptionist was amazing, nice lady indeed. To that point I felt welcome, not even 5 minutes later they were working on me and making me better, all of them probably worked at olive garden at some point because I felt I was among family, they made my 12 hour stay extremely comfortable and best of all I no longer look like a monster! I was very very impressed with how everyone treated me! If anyone ever feels like dying, this is the place to go.','2018-02-27 19:32:55.000000','1787364321589026'),('1575010149267055',1,'The nurse and doctors are great. Fast ,courtesy, clean,and made my sick day much better. Thanks Jinnifer Diggs, Jamie and Dr.Jorden...feeling much better.','2018-11-23 03:16:21.000000','299216637560955'),('1577384152420111',1,'Great service by Lorena T, Victoria P, Jeri D, Juan C, Akunyili','2020-07-31 15:30:15.000000','326347177710316'),('1580591452087434',1,'Everyone was very helpful when needed the most. Keera was welcoming at the door!','2018-11-02 04:31:57.000000','326347177710316'),('1580839408682278',1,'Amy Was A Good Help To Me And My Father Tonight She Made Sure Everything Went Good And Okay','2018-11-20 07:02:41.000000','544778295636544'),('1581672955318461',1,'This place is amazing Jessica, Senaida, and Keria went above and beyond for us as soon as we walked through the doors very helpful','2020-03-04 01:06:17.000000','237100240304186'),('1584526225029414',1,'Very fast I was in and out literally in 1 hour! And they helped me so much cuz my throat was killing me! Delicia is so sweet and has a great heart she was so sweet. Dr B Thomas was very informative about what was going on and Karen was as cute as a button all sweet heart special thanks to robbin the rad tech!','2020-02-27 16:05:05.000000','1648645701907657'),('1589249887875354',1,'I had the most pleasant experience here the receptionist Brenda was very warm and welcoming. I waited maybe 5 minutes before I was seen which was great being that I was attacked by a cat and needed to be seen immediately. Dr. Sylvester and Nurse Dawn and Amanda were amazing as well. I\'m a returning patient and I will continue to come to this location for my urgent care needs.','2019-06-19 16:15:46.000000','1608991329419166'),('1589707041170517',1,'This place is amazing. There was no wait time at all. They took very care of my mom & gave her everything she needed. The staff was very helpful. Dr. Ortiz, Nurse Dana, red tech Marcus, Jocelyn, and er tech Jordan made us feel welcomed and gave great information. Definitely will be coming back here.','2019-12-16 16:51:12.000000','167959367441528'),('159136155161138',1,'It was the beat experience I’ve received very nice and patient. Front desk was welcoming very nice. Drs and nurses were very nice as well i could totally come back','2019-09-27 19:00:56.000000','251751275488925'),('159441988971347',1,'I went with dental pain and the helped me I was in and out within an hour. The staff were very nice. Thank you!','2020-05-26 23:58:38.000000','237100240304186'),('1599539833543492',1,'Staff is knowledgeable and the visit was quick and easy which was awesome!! Calli Jones was amazing and made me feel comfortable during my visit!','2020-03-11 00:13:27.000000','251751275488925'),('1609706139161306',1,'Staff are amazing, no waiting time and very clean location. Dr Lindsay was very informative','2019-07-03 04:04:14.000000','167959367441528'),('161639478802392',1,'they\'re really Cain and professional and ready to work with a patient thank you signature Care for everything','2020-07-25 15:11:31.000000','1648645701907657'),('1616952151787462',1,'Really good service! Love the atmosphere, how it so cozy and comfortable. Big help from Kimberly, Jacob, and Joey! Awesome service!�','2017-03-12 17:40:28.000000','326347177710316'),('1617662005049814',1,NULL,'2017-06-04 20:27:46.000000','544778295636544'),('161883475195886',1,'The staff was very friendly and professional,\nDr. Iheme and Nurse Avean seen me very quickly. Jocelyn and Oliva made the registration & vital process easy and quick. I was finished within 20mins. It\'s the best emergency room experience I\'ve ever had.','2019-12-04 13:50:37.000000','167959367441528'),('1625206524277416',1,'fast and friendly and give out snacks which is my son\'s favorite part','2019-07-13 03:34:13.000000','461782867645453'),('1625210090943726',1,'fast friendly staff. manny,Jessica, and dr Nguyen','2019-07-13 03:42:26.000000','544778295636544'),('162982004998491',1,'We arrived at this location after a negative experience at another ER. The customer service is great and the staff makes you feel welcome. Our nurse Nichole took good care of our patient, and the tech Brandon was quick and efficient. Glad we decided to come here.','2020-01-25 17:12:39.000000','1609539722669429'),('163009708401617',1,'Just want to thank the staff from signature care for all the help to and especially Tanisha for the extremely quick and urgent attention to my needs. 👌🏾','2019-12-11 08:21:32.000000','461782867645453'),('1632142816952721',1,'Signature Care of Paris is exceptional...receptionist McKenna and Caitlin were very professional, helpful, and friendly,..the nurse and doctor were great also. I highly recommend Signature Care...you won’t be disappointed.','2020-07-24 03:21:00.000000','299216637560955'),('1632170316947530',1,'I found myself in need of stitches over the weekend. The entire team is amazing and super professional. Thanks to Dr Das, Icealia, Kanyon and Denise for helping relieve my stress and trauma.','2020-04-05 15:21:47.000000','104213804456471'),('1632323826923943',1,NULL,'2017-10-04 04:31:53.000000','326347177710316'),('1633151190144804',1,'Best choice I have made coming here! No wait, they are quick to find out the problem. Searching and finding out the problem in a quickly manner. Nurses and Doctors and staff Care for your health and are very nice.','2017-06-29 16:55:51.000000','1609539722669429'),('163381314706071',1,'Thank y’all so much for your help tonight! Shout out to Skyler, Brooke and Jennifer for making our visit pleasant!','2019-07-20 06:02:16.000000','299216637560955'),('163435261899743',1,'They are very nice and compassionate. They really care about their patients. I have been to other ers in the area that made me feel worse instead of better. I would recommend them. My only suggestion is that they need a call button for patients in the rooms.','2020-07-12 21:26:12.000000','104213804456471'),('1645446742217501',1,'This was a great facility. I was seen quickly and the staff and MD was very nice and professional. My needs were met and the staff went above and beyond to ensure you was comfortable.🤗😀','2018-05-14 21:31:22.000000','544778295636544'),('1650526498418673',1,'In quickly, and out quickly thanks to the nurses Norma, Amy, Dawn and Eve! Let’s not forget about Dr. Leavitt. They helped my friend out with her stuff, and now she’s out and feeling better.','2020-02-02 20:28:55.000000','1608991329419166'),('1652068254969355',1,'Great experience, fast service, highly recommended ⭐️⭐️⭐️⭐️⭐️','2016-06-23 22:53:46.000000','544778295636544'),('1653412728139978',1,'The entire staff made me feel as if I was being cared for by a family member. Im so glad they are in my neighborhood.','2018-02-02 13:14:57.000000','1787364321589026'),('165529757864282',1,'Thank you to Sarah and Tanishia for your help. Everyone was amazing! Thanks again.','2019-11-01 05:07:44.000000','461782867645453'),('1655505214600488',1,'Nice people and it’s quick and easy..','2020-07-24 16:24:46.000000','1787364321589026'),('1661394504002049',1,'Honestly one of the best experiences I’ve had in a very long time. In fact if offered I would totally make this my home doctor if those services were offered. Huge shout out to Thuy An and Alvean for taking care of me.','2020-04-05 17:38:43.000000','167959367441528'),('1664526973682974',1,'Nice place, friendly staff,\nBest physician Dr. Elsbecker\nNurse Christina\nRegistration-shaunda','2019-10-30 20:01:40.000000','1698192877146046'),('1666838536801225',1,'Went there after work about 3:40 fast friendly smiling faces easy forms I was called back before I finished my forms everything was explained well Big thanks to Ms. Melinda and the staff','2015-04-20 23:49:54.000000','544778295636544'),('1667309346731233',1,'Luv this location Cindy is awesome \nSalina was awesome and Dr. Golla is the best','2018-09-20 22:36:28.000000','544778295636544'),('1669006103204911',1,'Excellent care! Cat and Keera were the sweetest and super helpful! Definitely would recommend Signature Care to anyone in BCS area!','2018-11-02 02:27:32.000000','544778295636544'),('167409141082519',1,'It’s a vary clean & nice hospital the versus are very wonderful & it takes very fast for results to come in Everything was perfect & blessed thank you guys soo much god bless you guys Sarah Alex & Michael ❤️👍🏼','2019-09-05 06:53:41.000000','461782867645453'),('1674477372708813',1,'A great fast, kind experience that I can not say enough great things about. It was so good that I almost want to be sick again.','2017-10-01 13:11:52.000000','1765121397101399'),('168079274436152',0,'great care! Awesome team no wait time','2020-01-14 22:52:33.000000','829264323932850'),('1683111068485615',1,'My second time around coming here and again wonderful service everyone just so nice and attending to all my needs especially Mrs Audrey very sweet and kind, Dr Patal he was awesome listened to all my needs and took good care of me and yes the whole staff they were great, Thank you every one!!','2019-11-22 02:48:54.000000','596022027480375'),('1684861958283299',1,'This is an amazing Emergancy center. The staff is so helpful and nice they do an amazing job to make sure you are well taken care of. The doctors are great as well I will continue to come here for myself and my family','2019-04-11 00:14:36.000000','596022027480375'),('1687075514777797',1,'SignatureCare ER was extremely satisfying in my experience! They were quick, easy, & very nice!! My NP Sarah & nurse Jacob were extremely helpful & very thoughtful.','2020-07-25 16:10:31.000000','326347177710316'),('168746147651831',1,'Excellent work Sarah, Dr Thomas, Tanishia. You guys are a blessing. Thanks for helping my son.','2019-11-20 09:24:41.000000','461782867645453'),('1689209381203548',1,'Loved place so much , very fast and efficient. Very lovely people specially Radiologist Fatima and receptionist Bryanna. Definitely reccomend.','2019-12-08 06:19:46.000000','461782867645453'),('169501530890061',1,'Super friendly staff; very efficient check-in; quick to see us. Nothing bad to say about our entire experience! Way better than what you normally expect to find at an ER!','2019-09-17 13:35:44.000000','1765121397101399'),('169681551001376',1,'Best. Visit. Ever. \nI took my daughter here today & EVERYONE was delightful, even though she gave them a hard time they were wonderful throughout the entire time. I Loved the nurse Kristina, Dr.Zhen & Christian most. They gave us smiles & lots of goodies! Thanks for making my experience great.','2020-02-05 00:21:40.000000','829264323932850'),('1698942163591464',1,'Marty M\nCat\nKathryn \nDr. Rose\nChris\nLisa \nLauren ( thank you for the koozie!)','2020-06-12 18:01:28.000000','1698192877146046'),('1705200529597445',1,NULL,'2016-12-30 16:38:15.000000','544778295636544'),('1705790792895018',1,'I set an appointment online and I was in and out !! With great friendly services.','2020-07-31 17:11:00.000000','326347177710316'),('1710012382431222',1,NULL,'2017-08-21 15:09:24.000000','544778295636544'),('1710625145673455',1,'Raven and dr.boester were very helpful patient and considerate. They went above and beyond to make sure I was comfortable and well informed. Thank you so much.','2018-06-13 12:10:48.000000','1787364321589026'),('1711804455623119',1,'They made sure I had all the tests done that needed to be done. And they were extremely helpful.','2020-02-29 05:09:05.000000','251751275488925'),('171224063900941',1,'great service and a variety of snacks and drinks makes you feel at home i brought my buddy who was hurt and I wanted to fake a injury so they would show me the love they showed him','2019-06-17 18:40:23.000000','1698192877146046'),('1712622762120641',0,'I came here aug late aug and was told I had a miscarriage and lost my baby well today I was told I\'m 15 weeks pregnant and there was no possible way I could have had a miscarriage when y\'all told me I did and that it\'s the same baby worse place ever and never will I return I cried so hard because I was told I lost my child to find out it was a lie','2016-12-14 01:05:25.000000','1608991329419166'),('1713303958823802',1,'Awesome service . Staff was friendly and service was quick. Airianna was very sweet and professional!','2016-06-03 15:53:31.000000','544778295636544'),('1714393818709066',1,'Had a very good experience. Was very quick and excellent nurses and staff. Everybody there was very friendly.','2017-08-07 01:24:00.000000','1787364321589026'),('1714795051987937',1,'For them to help you when your hurt','2019-09-10 21:18:37.000000','235046800697531'),('171546447361187',1,'This place is amazing!!! so kind and friendly and were real quick to take action in helping me. They made me feel comfortable and I knew they knew what they were doing. I recommend coming here if anyone has any emergency concerns or needs a doctor. ms. tanisha W. was great with getting me in and out to see doctor and doctor Henderson was great with taking care of my eye and Daniel B. was great with checking me in the room and making sure I had everything I needed. love love LOVE this place!!! thanks yall for the great care!!! GOD bless yall!!!','2019-10-23 03:02:44.000000','461782867645453'),('1715975871870091',1,'I highly recommend this place to anyone in need of care! The staff here is so amazing at their jobs especially Tanishia, and make you feel right at home. I want to say a big thank you to everyone here for taking such good care of the patients here. Keep up the amazing work!! (-:','2019-10-21 02:55:12.000000','544778295636544'),('1718036048331843',1,'Very reliable! Only place open locally on New Year’s Day. Staff and Doctors are very friend and service was quick.','2020-01-02 01:16:29.000000','251751275488925'),('1721268351364943',1,'The doctor was wonderful and it was fast friendly service.','2020-07-21 05:32:49.000000','104213804456471'),('172681167099565',1,'Big Shout out to the Staff on call!!!\nDoctor: Chambers\nNurse: Lisa V\nTech: Andrew\nRegistration: Maria\n Thank you all for yalls care!!!! I came in and took good care of me. I were concerned and helped me out. Thank you all!!! God Bless Y’all!!!','2019-07-14 00:16:26.000000','544778295636544'),('172787957357910',1,'Wonderful experience every time we ha e been there!','2020-02-09 18:39:05.000000','299216637560955'),('1728916570491444',1,'My RN Jacob and reg Dyueliz were absolutely amazing!!','2017-10-01 17:26:48.000000','326347177710316'),('1729878823715455',1,'Awesome service medical staff took great care of me. Very pleased I will refer other patients to the facility.','2017-01-29 03:57:55.000000','1609539722669429'),('173104067237817',1,'my boyfriend came in with DVT scare. They calmed him and set his mind at ease. He was treated immediately and with care. Dr.Smith, Registration Ana, Nurse Irving, Radiology Tech Holly, Er Tech Nelson','2020-01-12 07:42:45.000000','829264323932850'),('1732537123595671',1,'The staff was very warm and the facility was really nice.','2017-01-17 17:31:29.000000','544778295636544'),('1735790136474619',1,'The service was amazing, from walking into the door the receptionist, Terra was kind and welcoming. Doctor Sylvester was professional and got me in and out promptly. I would definitely recommend coming here!','2016-06-24 19:29:06.000000','1608991329419166'),('175203596850772',1,'In and out good people and clean environment','2019-08-26 22:53:48.000000','544778295636544'),('175203690184096',0,'Good service and staff not to mention clean environment','2019-08-26 22:54:45.000000','1787364321589026'),('1753968454741673',1,'I took my husband to SignatureCare ER Lewisville on May 31st. Under the current conditions I thought it would be safer than the hospital emergency room and he would be seen quicker. When we arrived he was feeling faint and the staff took him back for evaluation immediately. The entire staff from the moment we entered the center was very caring and efficient. Dr. Chowdhury, nurse Teresa and tech Jorge were all excellent. All of our questions were answered and concerns addressed. I was amazed when they were able to get an IV inserted with one try and there was very little bruising when it was removed. (He is a very hard stick and normally requires several tries with ugly bruises.) \nDue to the recommendation of his own doctor he was kept for observation after several tests were run. Everyone made sure we were both comfortable and frequently asked if we needed anything. They used DoorDash to provide meals during our stay. \nAs the shift changed the next shift of doctor, nurse and tech were as attentive and caring.\nWhen we went to his doctor the next morning she was pleasantly surprised by the tests which were run while he was in the ER. She said she never gets one of the tests which gave her must needed information from other ER visits.\nI would recommend this SignatureCare ER in Lewisville to anyone who needs emergency treatment.\nWe were kept in private rooms and not exposed to other patients to risk infection during the entire stay.','2020-06-03 02:41:26.000000','104213804456471'),('1754133614636561',1,'I really enjoyed everything that 24 hour care center had to offer. They made me feel like family not only did they make sure I was okay physically they also checked emotionally too. I will definitely return if anything every happened again. Thank you so much to the staff','2018-07-16 16:17:52.000000','1787364321589026'),('1754252084728195',1,'Great Employees. They helped me out once again. From me pulling into a parking space to leaving out and getting home, I loved it. And they do provide blankets for you','2017-09-23 09:18:52.000000','544778295636544'),('1755850731177101',0,'It was a wonderful experience we felt so welcomed for my child to say she felt comfortable you know it was a great experience thank you for making it a great visit','2016-09-30 18:50:05.000000','544778295636544'),('175592606906290',1,'Everyone here is so attentive and genuine. From the moment I’ve entered, they have gone above and beyond to ensure not only that I am taken care of, but to make priority that my husband and three year old son (toddlers am I right 😂) were comfortable. I absolutely love this ER center and would send any and everyone I know here!!! ♥️\nTHANK YOU SO MUCH AGAIN SignatureCare Killeen!','2019-10-01 09:40:37.000000','251751275488925'),('1757285697740545',1,'everything was perfect when I arrived would always come here','2020-01-01 00:46:48.000000','461782867645453'),('1759435784092958',1,'Excelente atención rápida y efectiva.. Venimos aquí porque mi hija tenía fiebre alta por dos días y en texas childrens teníamos que esperar de 6 a 7 horas para que la atendieran 🤦‍♀️.. 100% recomendable','2018-01-27 16:21:46.000000','544778295636544'),('1760322514102991',1,'The team did great thanks for the great work! 🥰','2020-02-06 14:13:25.000000','167959367441528'),('1760551554049506',1,'I visited the Emergency Center for the first time. I had shoulder pain since Friday. I thought it was stress and it would just go away. Of course, it got progressively worse. From the registration to discharge...fast, friendly and extremely personable and professional service . Malissa at registration did an excellent job getting me checked in and out quickly. The nurse, Kristina, very sweet, I didn’t even feel the shots...that’s skill! The Rad Tech, Hahn and ER Tech, John... extremely nice and caring. Last but certainly not least, Dr. Grinblatas...he gets an A+++. He explained what I was experiencing thoroughly and the pain is now completely gone. I can completely raise my right arm. I slept like a baby today. Thank you to the entire staff at SignatureCare Emergency Center. I highly recommend this Emergency Center to anyone seeking medical care.','2019-01-21 02:38:01.000000','829264323932850'),('176327903648421',1,'thank everyone for yalls kindness and being so patient with my son. I will send my friends and family here. thank you Mckeena for being so kind and helpful.','2020-02-07 21:04:23.000000','299216637560955'),('1763296360374476',1,'Thank you doctor wren, nurse jerry and Raymond and registration sibienne for treating me tonight!','2018-04-30 02:50:19.000000','1787364321589026'),('176576963889372',1,'They are very timely and professional! No wait time and the doctors address your concerns and leave you with answers you are looking for!','2020-03-13 01:40:00.000000','1787364321589026'),('1768458746622546',1,'I recommend you go here instead of your local Hospital. Especially if you live in the Montrose area, these guys are quick and super caring. I haven’t met a nurse or doctor I haven’t cared for. I saw that they weren’t on my preferred providers list on insurance but they definitely are my personal preferred provider. We couldn’t ask for a better staff. Be sure to ask for Elizabeth Cheriah and Dr. Jaber Jacque on your visit.','2020-01-27 23:29:51.000000','1608991329419166'),('1774109055970930',1,'They all had great/fantastic customer service,building was very very clean and nice they was very fast/professional there was no long time wait thanks to Ms Evelyn had paper work ready when i was done.Thank y’all for the help and patience/did a wonderful Job😘','2017-11-11 00:21:56.000000','544778295636544'),('177527210173850',1,'Very detailed and attentive staff. I was a bit difficult especially with the nurses as I am scared to death of needles. They were all amazing from the Receptionist to the Doctor.The made me feel comfortable and adjusted how I was given meds so it didn\'t sting as described. They exceeded my expectations and I recommend this ER to anyone who is in need of care. They treated my pinched nerve like a heart attack. Very prompt and thorough.','2020-02-10 11:53:00.000000','829264323932850'),('1776797219127551',1,'Showed up here about midnight with a nice little cut on my wrist, they stitched it up for me and were fast and very nice for it being extremely late!!','2018-02-04 20:44:28.000000','326347177710316'),('1777771435591801',1,NULL,'2017-02-21 23:43:03.000000','544778295636544'),('1779974235470686',1,'Really helpful people from front desk to the back everyone is really nice and they diagnose my son with a lot of exams and good prices too. Dr. Henderson, Alvean, and Patricia thanks a lot.','2020-02-08 13:19:16.000000','167959367441528'),('177998576595759',1,'The registration :briseida m was very polite and helpful to be honest love the hospitality and very profecional i really recomed this place to everyone thank you so much :briseida m\nand sarah g and thomas m','2020-01-14 02:35:31.000000','461782867645453'),('1781460311970335',1,'Amro gave great customer service i will be back again!','2018-08-11 16:51:57.000000','1608991329419166'),('1782138865218517',1,'I went in last night and was helped right away, no long unnecessary waiting. Everyone was super helpful and told me exactly what was going on with me. My doctor was Adam Boester and he was extremely on point with timeliness and gave me all the right things to do in order to help what was going on with me. Also, the place was very calm and clean, you can defiantly tell that it was well taking care of and that’s the most important thing to me about hospitals/doctors offices. I would definitely chose going here than any other place.','2018-07-16 19:26:39.000000','1787364321589026'),('1783834994987628',1,'I had a very good experience while being treated at SignatureCare. Dr. Garcia knew what he was doing. The nurses Rolando and Raymund were very caring. I had a cat scan with Lonnie that went smoothly. And the registration process with Sibienne was quick. Keep up the good work.','2018-05-02 04:36:31.000000','1787364321589026'),('1786020368210866',1,'They have the best service and fast!','2019-07-17 17:45:25.000000','1698192877146046'),('1787185221317267',1,NULL,'2018-01-16 22:08:53.000000','326347177710316'),('1788430444611538',1,'Fast 💨 no wait time at all. Super friendly very aware. They were so caring . Will always recommend this place to everyone. \n\nThank you ☺️ \nMr. John “Morris Chestnut” lol 😍\nNurse: Harris,Robert J \nRadiology Tech: Brown,Lonnie \nFront Desk: Watkins,Sibienne Renne\n\nYou all were great 👍','2018-08-15 22:27:37.000000','1787364321589026'),('1793081687491203',1,'Great ER Center!! Very professional and very quick!! Highly recommend!!','2020-02-18 00:36:44.000000','1698192877146046'),('179351313099217',1,'Great experience, awesome people, they even prayed with me, Kim and Allison 👍👍','2019-08-21 03:26:37.000000','596022027480375'),('1794871817314363',1,'McKenna was fast and friendly. brooke and Ann were great as well. highly recommend to everyone','2020-03-05 02:19:43.000000','299216637560955'),('179547572979089',1,'Our visit to SignatureCare was great! Super fast service. We were in and out. Keera was very nice and the entire staff was so helpful!','2018-11-02 03:57:19.000000','829264323932850'),('1796563803758393',1,'Wasn’t feeling good at all. SignatureCare Emergency made me feel st home and better.','2017-12-24 20:33:00.000000','544778295636544'),('1799619223506713',1,'Thanks so much Tanishia for taking care of my son. You all were excellent.','2020-02-24 03:10:48.000000','461782867645453'),('1805289059519137',1,'Great service , they treated my mom very quick. Thanks Dyveliz, Jacob and JR!','2017-12-15 23:38:50.000000','326347177710316'),('1805827049523397',1,'such a nice place & amazing staff!! Highly recommend!','2018-12-24 03:49:46.000000','235046800697531'),('1809338082535735',1,'Melissa & Jasmine R\nJose& Christine\nDavid B\nSean \nVery quick and friendly','2020-03-10 01:19:49.000000','167959367441528'),('181080053035212',1,'quick and fast! \nTanishia was very sweet gooood personality! \nand Mrs. Lynn was very sweet too!','2019-11-18 05:55:12.000000','461782867645453'),('1812821105466591',1,'Been here twice now and the staff is friendly and helpful. Both doctors were precise and knowledgable. Best part is how quick you get in and out!','2016-10-03 03:01:58.000000','1765121397101399'),('1813600678699074',1,'No wait‼️ Nice Staff , very clean establishment and they also have 6 different Houston location... I would definitely recommend them for you health concerns and services ❤️','2018-07-13 19:19:08.000000','1609539722669429'),('1819818461435261',1,'They were efficient and effective. Thank goodness when you aren\'t feeling well','2017-01-26 19:34:52.000000','544778295636544'),('1819956818140204',1,'the place is so nice maya the receptionist was so nice','2020-03-07 20:52:17.000000','829264323932850'),('182105283074608',1,'Best care from the nurse kristina really good hospitality and was taking care of properly','2020-02-21 19:42:35.000000','1698192877146046'),('1822018994553206',1,'Great staff with very fast service recommended to all','2018-03-06 13:22:32.000000','544778295636544'),('1826347840838166',1,'great friendly staff fast and efficient','2020-07-22 22:50:29.000000','829264323932850'),('182649986259784',1,'staff was amazing cleaning facility and very fast service. Dr. Zheng was very helpful and explained everything in detail Maya amazing','2020-01-05 23:35:33.000000','829264323932850'),('1829276827109454',1,'Best ER ever. It is a full service ER NOT urgent care. Was seen immediately, kept informed,offered financing and even food delivery. I had to be transported to the hospital, but this will be our go to ER from now on. Great, kind staff from recepton to cardilogist. My copay is $500 regardless, so I will spend it here.','2017-06-24 00:28:38.000000','544778295636544'),('1831529746922922',1,'I received excellent care from the staff. They attended to my heart emergency rapidly and with the utmost attention to my situation! Highly recommend the CS Signature Care Center!','2017-11-28 16:02:00.000000','326347177710316'),('1832516996839858',1,'It was a great experience. Keera and Gabe were awesome and extremely nice.','2018-08-24 05:46:24.000000','326347177710316'),('1835849136561083',1,'exelent service buena atencion','2019-11-25 07:48:01.000000','596022027480375'),('1839598199467361',1,'The staff here is extremely friendly and caring. Meredith and Bryan will make you feel right at home and even laugh at your jokes. Thank you Dr. Boester for answering all my questions. I highly recommend this facility.','2018-07-20 07:59:37.000000','544778295636544'),('1841993375937221',1,'Love love our nurse navy was very helpful and our doctor was so great with our daughter ☺️','2020-02-23 04:32:35.000000','237100240304186'),('1846740798739478',1,'The staff was great, facility very clean. Everyone was very caring and professional.','2018-06-18 16:58:47.000000','1787364321589026'),('1848984005201373',1,'Recently visited here with my boyfriend to receive care and I honestly recommend this place to everyone now. The staff is absolutely lovely, especially the nurse, Kat! The process is extremely easy and they are very helpful through the whole thing','2019-05-21 06:45:15.000000','544778295636544'),('1851162204931006',1,'awesome staff they make you feel welcome all the nurses are so nice specially Melissa the doctor shows he cares so much Mr Vaagenes, julie was also nice walk me out tock the ivy out with out hurting and Nicole and Jasmine front desk was very helpful and polite','2018-08-13 00:30:05.000000','1609539722669429'),('185251185946633',1,'Absolutely great service and amazing staff!\nDoctor:Lindsay \nRN: Sarah\nReg: Tanishia W :)','2019-12-06 01:39:57.000000','461782867645453'),('185429276161631',1,'great place, my son was upset and they gave him stickers and a snacks. they are all super friendly and we where in and out.. I would highly recommend coming','2020-02-04 20:55:35.000000','251751275488925'),('185436079267375',1,'Wonderful place Kristina was great! Maya soon as we walked in was wonderful','2020-01-09 16:27:41.000000','829264323932850'),('185840482535248',1,'can’t began to tell you how caring professional and attentive everyone was during my visit. I checked out of memorial Herman and Beechnut due to the staffs rudeness and lack of care. I then came to visit signature care on Westheimer and experienced a total difference in the staff. Thank you Kristina a, queen, Scott, genesis, and dr king for saving me. You guys are awesome.','2020-01-14 15:39:27.000000','829264323932850'),('1859255710862127',1,'Hayleigh (the receptionist) and the rest of the medical staff took wonderful care of me! Was in and out within 30 minutes! �','2018-07-24 02:25:15.000000','544778295636544'),('185996602794769',1,'Just visited this Emergency Center, the service was super fast, and the receptionist Kimberly P. and Cecilia Z. were super nice, helpful, and friendly. Very satisfied with treatment, and service.','2020-01-19 01:17:52.000000','1609539722669429'),('1861071053950776',1,NULL,'2016-11-15 03:44:06.000000','544778295636544'),('1861560157239828',1,'Just wanted to give a big thank you to Brenda registration For all the help with my mom and to all the Staff to thanks from the mendoza family','2018-06-12 02:05:50.000000','1609539722669429'),('186405182520906',1,'Thank you Sarah, Fatima, Daniel, and Dr. Patel for the outstanding care for my wife. remarkable job!','2019-11-12 07:33:44.000000','461782867645453'),('1864591216923974',1,'Keera helped my roommate right away at the front, very nice. The experience was great and helped.','2018-09-24 05:23:49.000000','326347177710316'),('1866203473462856',1,'Dyveli, BBrad & Morgan are excellent, the service is fast and great!','2017-08-16 21:27:05.000000','326347177710316'),('1866333933389796',1,'This ER Center is great. From the time I walked into the door until the time I left the care from my nurses, doctors, technicians and front desk staff was exceptional. The nurses and doctors explained each procedure that was done. Dr. Warzanski was excellent. Nicole, Pam and Alex were excellent also. They even call you the day after your visit to check up on you. I highly recommend SignatureCare ER Center.','2018-02-13 20:02:14.000000','544778295636544'),('186772642574942',1,'This is now my second time going in. Both times the service was awesome. it is clean and the staff is great.','2020-02-14 19:52:13.000000','829264323932850'),('186831582655031',1,'Keira, Jackie, Meghan and Dr. V were amazing! Thank you so much for your excellent care and kindness.','2020-02-20 05:44:40.000000','237100240304186'),('187030786028492',1,'Great environment very helpful and nice people','2020-01-21 18:36:09.000000','167959367441528'),('187118512578070',1,'Everyone was so nice they take great care of patients','2020-02-26 02:08:54.000000','299216637560955'),('187178818942398',1,'These guys are great! Feeling better! Dr.Boester, Amy, and Bryan E., are the best!','2019-06-29 01:05:41.000000','1609539722669429'),('187236439380289',1,'Magali Loera was such great help. Took very good care of me','2020-03-02 20:50:23.000000','544778295636544'),('1873587069449525',1,'Very happy with their service, staff is awsome','2020-04-13 15:38:41.000000','544778295636544'),('1876145035864486',1,'The entire staff was very Caring and attentive.','2019-08-22 16:01:35.000000','1787364321589026'),('187662715687729',1,'Dr. O’Malley, was exceptional. He was very attentive, caring and compassionate. The care was awesome! Patricia,Jordan, Travis & Erika work as a great team. Everybody was excellent and terrific. My visit was reasonable and timely.','2019-12-27 22:35:04.000000','167959367441528'),('1877456712310050',1,'signature care was amazing the people were so nice and got my friend in very quickly. 10/10 recommend going to see them if you have an emergency.','2018-10-19 01:41:47.000000','326347177710316'),('188382195547482',1,'I highly recommend this emergency center because Of Alvean Marcus Jordan they immediately help me out with my emergencies.','2020-01-07 20:28:35.000000','167959367441528'),('1884385888329050',1,'Jocelyn was very helpful and nice. I got to talk to Dr.Ortiz he answered all my questions and concerns. Alvean the nurse also was very helpful, she gave me resources I could use concerning my issues. I recommend this location.','2019-06-22 20:31:23.000000','167959367441528'),('1885606498250608',1,'Great and quick service From Rayven & Dyveliz and the rest of the staff','2020-02-12 04:18:59.000000','326347177710316'),('1887480487956820',1,'Excellent place very fast professional staff got in and out','2017-01-02 05:12:59.000000','1609539722669429'),('1887752238021741',1,'They are fast and friendly I would definitely come back!','2019-12-22 03:41:42.000000','596022027480375'),('188869132285124',1,'kim Kramer and allison took really good care of us','2019-12-07 05:44:47.000000','596022027480375'),('1889173881224812',1,'Really good costumer care, friendly staff and fast service!!','2020-07-30 04:09:30.000000','105589317817643'),('1889453484441444',1,'Great CareI Wonderful staff Dr. Grinblatas, Olivia and Dee were wonderful! Made me feel special!!','2018-11-02 20:06:45.000000','544778295636544'),('189046819027516',1,'This place was beyond amazing! Dr Leung was extremely helpful and gave my husband some good tips. Amanda and Shaunda are by far the most nicest and professional ! Huge shout out to Shaunda for giving us additional information she’s such a sweetheart!! Definitely will be recommending to friends and family','2020-02-25 02:38:37.000000','1698192877146046'),('189106768768709',1,'Very fast and excellent staff kim','2019-08-31 02:08:19.000000','596022027480375'),('1892220034149581',1,'Anthony and Keera did an amazing job they helped me get in and get out fast process I wouldn’t go anywhere else !','2018-08-16 03:45:32.000000','326347177710316'),('1892666477443100',1,NULL,'2017-01-27 08:49:08.000000','544778295636544'),('190079738788162',1,'The care here is extraordinary from registration to everyone I seen was amazing .Dr.Faig, Ana, Sarra, Tino and Thelma got straight to work as soon as I stated my medical issue. I\'ve only visited this location but I\'m sure they all work the same I\'d recommend Signature Care Westchase any day.','2019-12-23 05:07:20.000000','829264323932850'),('1901063223326496',1,'love this place they are always amazing. the staff i had today we\'re ashley Burton, john bell, and Matt. they were so helpful, caring and made sure they continued to check on me and keep me updated!','2019-07-02 14:33:29.000000','299216637560955'),('1904860736356489',1,'Wow! Results were quick and easy. Checking in was a breeze , we got helped by Okarys who was able to translate for me! She was caring and showed interest in making sure I knew what to expect before getting seen. She was sweet and very patient with us!!! While there staff made sure to check up on us. Place was following guidelines and was clean.','2020-07-11 02:37:19.000000','1609539722669429'),('1905593712826087',1,'There was no wait!....and everyone was did an awesome job... thanks Jessica , Gus, Ray and can’t forget Dr.Hehman','2018-07-13 05:32:21.000000','1787364321589026'),('1905646042789987',1,NULL,'2017-04-11 02:44:35.000000','1608991329419166'),('1911391148991947',1,'There is little to.no wait and the ataff is great!','2020-02-06 21:33:01.000000','1609539722669429'),('1915903261803343',1,'excellent service\nhayleigh very nice and sweet','2018-08-29 04:04:57.000000','829264323932850'),('1919611858139961',1,'Very welcoming, extremely nice and professional!!! I would definitely recommend this urgent care! Thank you Maria Garcia\nManny G, Magali L., and Dr. Vaagenes!!!','2019-06-11 17:07:07.000000','237100240304186'),('192059948642828',1,'Jocelyn, Alvean , Dr Harjai muy bien Gracias!','2020-01-08 15:58:55.000000','167959367441528'),('1923597354441049',1,'The staff were very helpful and amazing.They were very helpful and welcoming.The doctor and nurses were amazing and I would choose them again.','2020-04-09 20:45:14.000000','104213804456471'),('192440621641452',1,'awesome nurses and doctors, I will never go anywhere else. They actually take parents opinions and thoughts into consideration and everyone is very polite. I love and most definitely recommend this place. Jennifer Diggs, John Bell, and Dr. Curtis and all there, y\'all are doing an awesome job.','2018-11-22 03:38:29.000000','299216637560955'),('1925786140886728',1,'The staff at this ER, are phenomenal! They tend to my care and make me feel safe. I really have to thank Meredith S., Ekaterini S., Jordan, Jocelyn A., Dr. Nylund, Tricia and Jasmine R.','2020-04-02 03:55:58.000000','167959367441528'),('1929773803788835',1,'Signature Care nurses and doctors were prompt and had amazing bedside manner! Definitely recommend coming here. Miss Keera up front was very nice to us as soon as we walked it.','2019-08-01 13:16:57.000000','544778295636544'),('1929881133778238',1,'The staff was great and friendly! Thank you Manny RN, \nDr. Osiecki, Ector and staff!','2019-07-11 22:33:16.000000','237100240304186'),('1930906267205590',1,'The facility was very clean. All staff members involved were courteous and caring. I was taken back before even completing the paper work. I must say I was impressed by my experience there on January 31, 2018','2018-02-01 20:26:27.000000','1787364321589026'),('1934937966606379',1,'This wonderful staff took great care of my son who got sick while moving. They have also taken care of my daughter for 2 years who has severe asthma. From Rayven in registration to the RNs Anthony and Gabe and Dr. Vakey; they leave this momma reassured that her kids have somewhere to go when they are sick and I can’t be there.','2019-08-07 00:00:37.000000','326347177710316'),('1935062163180521',1,'Awesome place! I have never had a better experience at ER. Got superior level of care for my 3 and 5 year olds. Now they want to go to this doctor every day 😀','2018-08-18 22:52:23.000000','1698192877146046'),('193593121641950',1,'My visit here is always always welcoming! The receptionist Keera, and my nurse Selina were ABSOLUTELY amazing help and extra caring of my situation. thank you. this place is absolutely the best. save your wait time and money and come here!!','2019-07-04 13:51:11.000000','544778295636544'),('1938045456253015',0,'Worst place ever!!!! The nurses are amazing but the dr. Based his diagnosis on last years visit...assumed i has gastritis, when my symptoms resemble nothing of the sort. The dr was not compassionate. Nor did it seemed he cared i have been in pain...nobody did nothing to figure out what was the root of my problem....\n\nNever come here!!! Waste of time and money!!!����','2018-04-11 14:24:59.000000','1609539722669429'),('1938749259522198',1,'The receptionist preethy was sweet when I was checking out....Doctors and Nurses were Very helpful and kind. I would recommend and come again.','2017-03-01 13:31:30.000000','544778295636544'),('193921928356871',1,'I have a very good experience everyone took care of me. My nurses where the best Gina,Natalie And Dr.Edwards, I loved it here I will be recommending this er to my family and friends 💖💖💖🥰','2020-02-12 21:34:40.000000','1609539722669429'),('194224241580148',1,'this place was an amazing experience and I definitely would recommend! The nursing staff and doctors are so nice and helped us a lot while explaining everything in a way that made since to us!! 100/10 would recommend!!','2019-10-13 17:42:55.000000','544778295636544'),('1943914855743716',1,'Lorena and amanda had some of the best customer service 10/10 would recommend everybody need to come here for all urgent care needs','2020-07-25 12:53:19.000000','326347177710316'),('194630298718906',1,'Really good Doctors and staff . They are awesome and take care of you','2020-05-13 06:32:27.000000','235046800697531'),('1948170148647869',1,'Dr. Daniels, Nurse Nicole G. & Ashoka S, ER Tech Ricardo & Vanessa G. treated my injury. They got me in and out in no time. All my questions were answered and well explained. I highly recommend this center.','2020-02-02 01:15:05.000000','1609539722669429'),('195263155054591',1,'Dr. Golla, Patricia\n\ni recommend this signatureCare emeergencycenter to be one the best place to come if really need help or sick.','2020-02-28 20:12:49.000000','167959367441528'),('1952721181693626',1,'Very helpful it was a in and out. NO waiting love it. Very nice staff. \nlaura Lozano.','2018-09-30 14:29:09.000000','1608991329419166'),('1955065487839151',1,'Staff was very professional and explained all procedures and follow up recommendations. I highly recommend them.','2018-07-05 21:42:09.000000','544778295636544'),('195518451703272',1,'Fast reception, took real good care of me and explained my problem, what I had and treated me kindly and patiently, highly recommend.\nDr.Nguyen was really helpfully \nMiss Patricia at registration and the nurse miss Ekaterini were also really kind and helpful \nOverall staff were on top of everything','2020-03-05 20:20:46.000000','167959367441528'),('1956227664483256',1,'Great staff, clean facility and reasonable timing','2019-06-07 16:33:22.000000','237100240304186'),('195685364788498',1,'I’ve been to the Copperfield location twice for my daughter and the staff is always professional. Dr. Henderson, Laura, and Sarah was very patient with my one year old.','2019-10-23 03:40:44.000000','461782867645453'),('1957050867765507',1,'I cannot say enough nice things about this place. I don\'t always have an emergency but when I do I will start using signature care from here on out. They\'re awesome!','2018-01-17 18:47:42.000000','326347177710316'),('1957530261205740',1,'Just visited for the 1st time, OMG service was awesome from the front desk to Dr.Patel,Mark&Aaron. If I’m ever in need of emergency care again this is the best place!','2018-08-08 22:29:17.000000','1765121397101399'),('195878965131431',1,'la atención es rápida ,te explican bien ,hablan muy bien español , ay varias personas o asistentes. que te hablan bien español te aceptan aseguranza','2020-02-06 18:25:10.000000','544778295636544'),('1963537353713396',1,NULL,'2017-02-03 05:24:28.000000','1609539722669429'),('196359074726799',1,'I am very grateful for Signature Care Emergency! The staff if very professional and kind! I want to thank my nurse Kelly she is great! Sibienne at the front desk was also very nice. Dr. Appiah had a great personality, he explained everything to me. This place is the best! I came in crying but I\'m leaving with a smile!','2019-06-19 03:20:37.000000','1787364321589026'),('196664427969620',1,'Good staff and service. Kat and Angela were very helpful.','2019-04-24 08:53:18.000000','251751275488925'),('196856844940828',1,'5 stars. Professionalism from beginning to end!','2020-03-18 05:22:22.000000','1787364321589026'),('1968834910087670',1,'The Signature ER Center is staffed with highly compassionate, efficient medical professionals and support personnel, and is very well equipped. I was attended to immediately and did not have to wait to fill out the paper work first before I was treated, which my daughter was allowed to do on my behalf. Their follow up the next day to see how I was doing and responding to the medication was deeply appreciated. I am privileged to have met a part of the Angels Contingent on planet earth. May they be richly blessed for their chosen career. Egene Baccus Latchman','2018-02-24 18:34:53.000000','544778295636544'),('197100054487080',1,'This is a great facility with friendly Staff! They served me immediately and I got out with what I needed.','2018-05-21 18:29:39.000000','1787364321589026'),('1972124439475682',1,'Love the Experience here and will always keep coming back. Amy and Tony are super amazing!','2018-09-17 03:19:56.000000','1609539722669429'),('1973063549422344',1,'The service was great. It was fast and everyone was very professional. Pretty was awesome.','2017-01-24 19:55:44.000000','544778295636544'),('1977905632231574',1,'Great facility with very helpful staff! Especially Keera!!','2018-09-01 04:31:02.000000','326347177710316'),('1978060408918538',0,'I hate the fact that SignatuteCare ER treats there employees so badly once they decide to move on to a better job. The employees give them 110% of them selves and their time while employed there, to be treated so badly. They do not pay for the vacation (PTO) time that the employee had worked hard for and had already earned. There is no paperwork signed stating that I would not receive these earnings. In my opinion they have become more money hungry over caring for others. And then they send the blame over to the HR department so they won\'t have to deal with it! Very Sad Former Employee!','2016-05-20 16:33:05.000000','544778295636544'),('1984113868286026',1,'This was our 2nd visit. First, for hubby with a spider bite several months ago and today for myself. The very Best team of professionals greeted and cared for us both times. Prompt, thorough, informitive, and oh so kind. Blessed to have them in our community.','2017-10-15 23:05:58.000000','326347177710316'),('1985831021528160',1,'Fast n friendly highly recommend coming here','2019-04-17 10:43:47.000000','544778295636544'),('1987296354626646',1,'The service was fast, friendly and professional! The doctor and the entire staff went out of their way to take care of me, not only physically, but also emotionally! I definitely recommend this establishment and will return myself with any future issues!','2018-11-13 00:21:51.000000','1608991329419166'),('1987564104614513',1,'Amazing experience. Everyone went above and beyond! From the moment I walked in.. From the Front Desk Rita, Radiology Tech Dion D S, Nurse Chih-Hsiang and Dr. Dendy. Thank you so much! I appreciate everything. I was from out of town and scared. They put me at ease!','2018-12-22 19:01:52.000000','1648645701907657'),('1988030601285655',1,'I just cannot thank this emergency room enough! The whole night staff is always I mean ALWAYS so friendly and I just wish I could show them just how appreciated I am of their service. Thank you so very much To Cindy and all the night workers. #ForeverGrateful','2018-12-27 02:53:47.000000','237100240304186'),('1989130144516275',1,'The staff was courteous, helpful and prompt. We were seen within 5 minutes and out within 2 hours for multiple services. The only downfall that my insurance wasn’t a provider.','2019-02-08 01:43:18.000000','1609539722669429'),('1989633981335683',1,'This place is awesome I would recommend it to anyone they are extremely nice and fast','2017-01-21 04:56:19.000000','326347177710316'),('1990917244341181',1,'In and out! No waiting for hours! Very polite Dr and Nurse.','2019-08-31 22:46:24.000000','544778295636544'),('1994932410518370',1,'Excellent experience. The staff worked quickly to help me with my elderly mom. Highly recommend SignatureCare.','2017-12-18 13:45:16.000000','1787364321589026'),('1995242190622124',1,'Very nice facility and super nice and attentive staff. Wait time was less than 10 minutes and the nurses Racheal and Charlptte are very responsive. Dr. Edwards was also great. We would definitely recommend this ER to anyone in the area.','2020-02-07 15:27:27.000000','461782867645453'),('1995832927220067',1,'Second time i’ve been there for covid testing. All of the staff works incredibly hard, and provides a safe and efficient environment to go get tested for covid 19. Although i like the ticket 🎫 method better, the online appointments work as well. Thank you guys for everything you do! including the security guard Dj!','2020-07-08 06:34:09.000000','167959367441528'),('1997056193681323',1,'Keera and Anthony were great help! My visit was awesome!!','2019-02-08 01:09:43.000000','326347177710316'),('1997893786900635',1,'The staff was friendly and caring the place was clean and neat. \n\nLas fermeras los doctores es muy amable gente a lugar muy limpio.','2018-10-04 00:55:46.000000','544778295636544'),('200390027776111',1,'Probably the best care my wife has received in Killeen. Caring staff and thorough explanations of treatment plans.','2020-01-30 16:34:27.000000','251751275488925'),('2007342119370884',1,'Tiffany was very helpful and very cheerful. Made the experience more bearable!!','2019-04-29 04:21:54.000000','299216637560955'),('2007821292607065',1,'This is a 5 star review facility. Absolutely phenomenal. Thank you ssoo much for your service.','2019-01-17 22:00:28.000000','1608991329419166'),('200816734468215',1,'Dr. Sylvester, Reg. Sindy, RN Ashlyn & Zinaida, RAD Ed, Tech Wendolline - u guys are amazing and highly efficient at giving the best of care! My wife and I were wowed when we came for ER!','2020-02-29 06:56:31.000000','544778295636544'),('2009256299093285',1,NULL,'2016-09-23 15:12:10.000000','544778295636544'),('2010201982390869',1,'Jennifer, Austin, and Dr. Simmons made a great team during my visit. They made sure I was taken care of. I highly recommend this ER their staff is awesome and get you in and out in a timely manner','2018-11-15 06:26:58.000000','299216637560955'),('2011273002260919',1,'I refuse to go anywhere else! Always take great care of me and my family!! Dr Yost is the best!! Luke is great too! Sherri did my IV really good! Kim is another amazing person and all 4 are a great team!! They make me feel like they truly care and are concerned and want to help make you better!!! Thank you all so much!! ❤️ also Dr Jones, Jamie RN, Gunner RT and Tobie in registration are amazing!!!','2019-01-18 17:33:57.000000','235046800697531'),('201345444404092',1,'The care staff were excellent! Professional. It is welcoming clean and great for kids needing care. My nurse Irving, Tech Thelma, and Holly the radiology tech were so amazing and kind. Dr. Ortiz was patient and attentive!','2020-02-25 05:20:43.000000','829264323932850'),('2013477615371555',1,'Thanks to Alyssa and Dr.Golla and Selina for a great experience every loving and made me feel much better ������','2018-09-05 18:31:46.000000','544778295636544'),('2013644725324468',1,'Went in for major pain from a toothache. The toothache is still bothering me some. And I am hoping to find a dentist who will take payments. Evelyn at the front desk was absolutely wonderful. The nurse and doctor were great. Considering I am terrified of doctors. He made me feel at ease. I\'m just waiting for the antibiotic to get in my system and start working. The pain medicine is so/so but it takes the edge off. I would recommend SignatureCare to family and friends. Wonderful staff and in and out. ( if only be would have went a head and pulled my tooth out LOL )','2017-06-04 12:34:03.000000','544778295636544'),('2014641338554149',1,'We had an INCREDIBLE experience at the Montrose location of SignatureCare Emergency Center. Went in with a freaky spider bite, and they were able to help us so quickly! The receptionist, nurse, and doctor were all exceptional. The care was speedy and sound. Incredible center!!!','2017-10-06 20:28:30.000000','544778295636544'),('2016601088363267',1,'The doctor and nurse that helped me out were very helpful. I came in with a back problem and they fixed me quick and easy. I would definitely recommend them to anyone.','2017-03-12 17:40:58.000000','326347177710316'),('2018238574873812',1,NULL,'2017-03-04 20:39:26.000000','544778295636544'),('2028748097149834',1,'Great first experience. Staff was super friendly and caring. Made me feel super comfortable and took care of me right away. Hayleigh was very helpful with checking out. Definitely recommend.','2018-07-21 14:05:52.000000','1787364321589026'),('202905907520634',1,'I was very welcomed here by the staff. I felt comfortable. They explained everything so well. Great atmosphere 👍 Marcus was very helpful.','2020-02-08 11:27:09.000000','237100240304186'),('2030650516947581',1,'Best ER ever! I went in with a spider bite, and was immediately brought to the back for tests. \nAll in all I was there for about an hour (all treatment time, no waiting).\nDr. Bansal was the best doctor I’ve seen in years, very professional with immaculate bed side manner.\nThe staff was great, Miss Melinda in the front office was extremely helpful and courteous.\nI recommend everyone to go here instead of to the dreaded hospital.\nThank you SignatureCare for being in my neighborhood.','2015-06-09 13:56:56.000000','544778295636544'),('2035519996492277',1,'Signaturecare is the best. From the moment I walked in and was greeted by Edward. Vanessa my nurse was knowledgeable and caring. Dr. Dewaal was fabulous! Adam the manager came in to see me and the DON came in to ask if I needed a warm blanket, but I already had one! I walked in with a painful condition and walked out pain free. This place is awesome! I will only go to Signaturecare!\n\nSent from Yahoo Mail for iPhone','2018-08-23 01:44:34.000000','1698192877146046'),('2036157396453507',1,'Nurse Nikaela and Amy were super sweet and Dr was very attentive to condition. Very pleased with this ER center','2019-03-11 09:37:21.000000','167959367441528'),('2036843539686625',1,'Great facility and staff. Ashley Burton at the front desk was great and extremely friendly. Also the nurse John Bell took fantastic care of me.','2019-01-02 02:24:47.000000','299216637560955'),('2039487626074738',1,'I had to go today to the one on hwy 6. It was a very pleasant experience and the whole staff was very nice. Was in and out in no time. I am glad to know it is so close in case I ever have to go again.','2018-11-17 03:44:33.000000','544778295636544'),('2039820356134803',1,'1.Little to no wait time.\n2. Friendly staff and doctors.\n3. Good and efficient care and treatment','2019-03-22 23:12:51.000000','829264323932850'),('204244760746270',1,'the service was excellent the facility was emaculint the staff helpful and very knowledgeable. Nurse Nicole G. and Tim M had compassion and great bedside manners. They worked efficiently and provided great care. Dr. Estevez is amazing. She inspired confidence and is very thorough. I always refer family and friends to go to a Signature facility especially the one in The Heights.','2020-01-19 03:29:55.000000','1609539722669429'),('2042544702726253',1,'My husband sliced his finger open prepping for our Thanksgiving feast. We arrived and were greeted with professional service with a smile. The longest part of our stay was filling out the paperwork. We were taken to a room where the nurses immediately prepped the wound and made us feel welcome. The doctor was in within 5 minutes and addressed the wound, answered our questions, and prescribed the appropriate medications. We were in and out in under 30 minutes. For the entire time of our visit, the entire staff was courteous, knowledgeable, and made us feel like something other than just a number. We highly recommend this establishment.','2017-11-22 23:17:20.000000','544778295636544'),('2042608869109471',1,'Excellent care thanks Jennifer Erica An Valerie','2019-01-03 20:13:44.000000','299216637560955'),('2044504769174797',1,'To be honest it was very enjoyable service was great fast and direct . I would tell anyone to seek treatment here. Preethy was really sweet and friendly','2017-02-21 16:37:10.000000','544778295636544'),('2047287628674010',1,'awesome! great staff! Great service','2019-01-16 06:11:59.000000','1609539722669429'),('2050645731667182',1,'When you have a emergency this is the place to go, the service is fast and the staff (Mercy and Olivia) are very friendly & nice, you will be satisfied!','2017-03-11 12:27:24.000000','1765121397101399'),('2053450354731287',1,'First time! Everyone was nice and helpful. Thank you for taking care of me. S/O Dyveliz, Morgan, and Brad','2019-03-03 18:28:22.000000','326347177710316'),('2054530964584094',1,'The receptionist was so friendly. Then when I went to the back the nurses and the x-Ray technician were excellent. They offered me a warm blanket and made me feel so comfortable. Dr. Edwards was very kind and gentle. She made sure I was feeling better when I left.\n\nI would definitely recommend SignatureCare\nEmergency Center','2019-02-17 04:47:34.000000','544778295636544'),('2056269454634417',1,'there great for everything very family like environment...','2018-08-08 01:59:05.000000','544778295636544'),('2056349557722181',1,'Mercy, Laura, Lisa and Selina were exceptional. I really liked them and they were really nice.','2017-04-26 21:09:23.000000','1608991329419166'),('2061492033872959',1,'Great service. Dr. Dang, Juan, Tammi, and Cindy were all very professional.','2018-09-22 18:44:23.000000','544778295636544'),('206165470589124',1,'Alvean, Jocelyn, Marcus I love the fast','2020-03-02 20:51:52.000000','167959367441528'),('206242090585643',1,'they are awesome!! they take good care of you and make you feel welcomed!! i recommend them to everyone.','2020-03-17 15:31:20.000000','299216637560955'),('2064040440328921',1,'Dr. Luis Ortiz took care of one of our family members. My name is Robert. I myself am a medical doctor so I had high expectations for our treatment, and knew what was going on. My relative had been given bad news and told to rush to an ER. The entire time he was with us, Dr. Ortiz had an aura of peace and calm and competence about him that reassured me and put the whole family at ease. He spoke to my family in terms a non-medical person could understand, but never talked down to us. He took a good, thorough history, and performed a good exam. He ran some lab tests and told us that the bad news we had been given was wrong, that everything was good with my family member. But mostly, he reassured us. His explanations were so lucid and he seemed so knowledgable that I thought he would be a good professor at my medical school. Thank you, Dr. Ortiz, for being a caring physician for my family.','2019-01-02 07:10:03.000000','544778295636544'),('2065032143619273',1,'Gina my friends nurse, Dr. Souman, Dion, and Amy all helped very nicely!','2019-04-20 02:04:57.000000','1608991329419166'),('2065405086855617',1,'Very friendly, great service!','2018-09-30 00:45:19.000000','326347177710316'),('2066093653441146',1,'I loved it!!! Cindy was awesome from start to finish. Selina was a blessing to meet. Dr. Dang has a wonderful and caring bedside manner. Juan was quick and efficient with my vitals. They always take care of me and treat me right. I feel much better already!!','2018-09-22 15:41:53.000000','544778295636544'),('2066993926780442',1,'Best hospitality and made me feel so much better when my pain was unbearable. Jonathan and AJ and the really did a great job.','2020-02-05 00:27:43.000000','1765121397101399'),('2069936156391635',1,'Mercy was wonderful and took care of us right away.','2017-01-12 12:29:10.000000','1765121397101399'),('2070097016415948',1,'The staff was friendly and helpful..,','2019-02-24 17:15:26.000000','251751275488925'),('2071121702988225',1,'Fast, friendly, and all around simply amazing care received here! I will NEVER go to a regular hospital ER again. This place is ran like a big Dallas hospital, in our small town! Thank you for everything!!','2019-08-13 13:06:59.000000','235046800697531'),('207122040362979',1,'Great service! Definitely attend to your needs in a timely matter!','2020-03-03 22:30:08.000000','237100240304186'),('2073314699444027',1,'Staff is always so caring and kind. Always feel very welcomed as soon as I step in. Very fast! So very thankful for SignatureCare Emergency Center in Odessa,TX','2019-05-22 15:32:03.000000','237100240304186'),('2076812945797921',1,'Lucas was a great RN. To be at an Er the experience was great. they really care and make u feel comfortable.','2020-01-21 19:56:32.000000','235046800697531'),('2078024628910495',1,'Good Job thank you for everything very helpful','2018-11-27 19:37:41.000000','1787364321589026'),('2079778635408733',1,'Great experience, staff and dr was exceptionally nice. Especially Jennifer D., Kanyon and John Bell. Would definitely recommend.','2019-03-11 21:43:22.000000','299216637560955'),('2081201145305970',1,'Was in severe pain, Ms.Robin at the front got me sent back right away. Nurse Austin and Dr.Dillon took care of me and made me feel so welcome and comfortable, will only go here from now on! Very sweet staff I couldn’t have asked for a better group of people to take care of me.','2019-01-03 06:58:48.000000','299216637560955'),('2085439871766167',1,'Definitely recommend!!! Everyone is so nice and informative, was in and out quick and friendly services!','2017-07-03 18:56:00.000000','1608991329419166'),('2085450461765108',1,'I brought my 1 year old to be seen at the Montrose location, everyone was so friendly and patient. Front Desk Mercy, was very welcoming and helpful. Nurse Agnes was so sweet made my son feel very comfortable and Dr. Yusuf was very informative and caring. Thank you SignatureCare staff!','2018-01-30 13:15:18.000000','544778295636544'),('2085924404863890',1,'It was great, very friendly and fast.','2019-06-08 18:39:18.000000','299216637560955'),('2086004751451831',1,'Great care, everyone was extremely nice. Front desk lady, Ashley Burton, was more then attentive. Great experience!','2019-01-02 01:03:26.000000','299216637560955'),('208872086930762',1,'Best care with kindness and compassion throughout the visit\nNo waiting\nTreated like favorite family members\nThanks for being available 24/7!!\nNurse John real pro with needle fears\nDr Curtis stayed light hearted with honest concerns to continue care\nRegistration is such an ease with Tiffnay greeting us\nThese professionals really seem to love their careers\nThanks again','2020-02-22 18:44:43.000000','299216637560955'),('2091623390893528',1,'They have great service. It’s very well maintained and clean. They Made my mother feel very comfortable. They even gave her a robe! I’d most definitely come here again.','2019-05-27 03:49:47.000000','1698192877146046'),('2094523220567977',1,'All of the staff treats you with courtesy and with a smile.','2017-04-19 16:17:36.000000','544778295636544'),('2095168530535859',1,'They took great care of me. Anthony was really friendly and a great RN','2018-08-26 20:23:27.000000','326347177710316'),('2095453047227268',1,'It was a very nice clean urgent care very informative I had Nurse cat she was completely amazing she made Sure I didn’t want for anything','2019-07-04 05:17:00.000000','544778295636544'),('2096471097067781',1,'Great experience overall. Ashley B was especially helpful and friendly! Can\'t recommend enough!','2019-03-13 13:49:50.000000','299216637560955'),('2097077937040435',1,'Register Jessica was very friendly and greeted us with a big smile when we walked in. Both Blake and Dr. Lindsey took care of my son when we were taken to\nThe back. Everyone here is very friendly and smiley. I will be coming back again and recommending to my friends.','2019-03-09 20:22:07.000000','1648645701907657'),('2098883346791617',1,'Was greatly impressed with the cleanliness of facility and friendliness of the staff. I was in an out in about hour and a half. Everyone I met was friendly and helpful from the front desk, to everyone in the back treating me. My new favorite ER!','2018-01-08 10:33:15.000000','544778295636544'),('2099020187038250',1,'I Loved the experience in spite of being ill. Dr. Boester was the Best. He treated my extremely well. Help me greatly in my time of need.','2018-07-14 12:28:00.000000','1609539722669429'),('2100800726623802',1,'my experience was great here I would definitely recommend them','2019-01-14 19:19:42.000000','1609539722669429'),('2101800393259407',1,'I was very pleased with the prompt service and exceptional care proved by Signature Care. Everyone was friendly and helpful from start to finish. My 10 year old even told me the next time he got sick he wanted me to take him back there!','2019-07-30 16:50:51.000000','235046800697531'),('2104379783200288',1,'Outstanding place and outstanding people! They take care and compassion to the next level. I would highly recommend them!','2019-08-23 19:46:42.000000','299216637560955'),('2105024039826470',1,'I love the way everyone made sure I was comfortable the entire time. Asked if I needed anything every 30minutes... I was in good hands! Thank you for your help!\nDR. FRAUSTO, MD, KENNETH A \nNurse: Nichole P \nRadiology Tech: Laura Imelda P \nFront Desk: Malissa M R','2018-09-28 20:01:02.000000','829264323932850'),('2107341952892392',1,'Friendly workers and a great variety of snacks in the lobby! They gave my boyfriend freaky fast care! If i get injured I will definitely be coming here!','2019-06-17 18:46:05.000000','1698192877146046'),('210864846960268',1,'I had the most amazing experience at this location. \nDR. GRINBLATAS, Joseph Ryan, Sharesa, and Erica were all fantastic!! 10 stars and I definitely recommend this facility!! Thank you to this amazing staff for taking such great care of me!','2020-03-02 15:38:19.000000','1609539722669429'),('2108715705836637',1,'Mercy and everyone else here were extremely kind and informative. I appreciate everything they did for me!','2017-03-03 19:26:35.000000','1608991329419166'),('2110360115662609',1,'I love coming here, the staff, nurses and doctor\'s are awesome they are very nice. You don\'t have to wait for ever here like you do at other emergency rooms.','2017-11-04 01:40:09.000000','544778295636544'),('2110587435718042',1,'Excellent service! The staff is very quick and professional. They answered all questions I had and were very helpful. My son went in with a very high fever and the nurses there were awesome with caring for him! Thanks a bunch to Manny, Ashley, Delpha, and the doctor on staff! I highly recommend this place to anyone needing quick care and excellent service!','2019-07-05 01:48:57.000000','237100240304186'),('2111362388919951',1,'This place is absolutely amazing. very clean , very fast , very polite. I will never ever go anywhere else. Jennifer Riggs an Billy Brooks were amazing. Dr. Cynthia Simmons was very open with us an explained every thing to us. I\'d go back a million times. This place is awesome.','2018-12-31 14:42:01.000000','299216637560955'),('211152080010329',1,'Had a great experience with dr.daniels, rn: trini, registration:Jackie, radiology: Marcus, tech:pete','2020-02-22 04:14:35.000000','237100240304186'),('2112268112187422',1,'I highly recommend SignatureCare Emergency Center. As soon as you walk in the door you\'re treated like a VIP. Jereyia, Amy, Kelvin and Dr Zajac, y\'all are the best! You turned what started out as a stressful/painful day into a pleasant experience. Thank you all!','2019-03-11 12:20:02.000000','251751275488925'),('2112534118781770',1,'Samantha at the front desk was a lovely lady. This emergency center is one of the best ones ive been too. As soon as I walked it Samantha greeted me and made me feel at ease.','2019-04-15 02:33:38.000000','1787364321589026'),('2112647882172703',1,'Hello Midland, new patient from the Lower part of Rio Grande Valley in South Texas. Kudos to a wonderful staff providing their wonderful services as I walked in and wait time unbeliveable less than 2 minutes all working with a sense of urgency. Thanks to Lisa, for quick admissions, Dr. Plante taking the time answering all my health questions, applause to Leo for his assistance and not to mention Savanna, Jaime and Andrea for their professional services.\n\nAgain Thank you and recognition to Dr. Plante, Leo, Savanna,Jaime,Andrea and Lisa..','2019-08-13 22:14:18.000000','596022027480375'),('2113519222016150',1,'I have NEVER been to a more professional emergency care facility. The staff was super attentive to all of my medical needs from the time I walked in. I wish I could thank each and every one of the by name but Melinda started my experience with a warm welcome! This will most definitely be my new spot when I cannot make it to my primary doctor...thanks and thanks again','2015-04-10 23:35:53.000000','544778295636544'),('2115101795178605',1,'A huge thank you to Ashley Burton, John Bell, Matt Leonard, Billy Brooks and Dr. Simmons. Everything was so nice, clean and the staff treated us like family. Each time we talked to somebody they asked if we needed anything. If I need to go somewhere this would be my choice and would definitely recommend to everybody!','2018-12-15 03:17:58.000000','299216637560955'),('211590729977087',1,'I came in and the staff took good care of me and helped me get over my stomach virus. I plan on using this place again','2020-02-20 00:42:22.000000','326347177710316'),('2116156455267581',1,NULL,'2016-10-31 13:20:03.000000','544778295636544'),('2120922774897717',1,'Excellent Service!','2018-07-08 18:39:19.000000','544778295636544'),('2121521781238074',1,'Excellent Emergency room service, from the moment we arrived at the ER we were greeted by Amy at the front desk. Very kind and helped make the check in process easier. All the staff was very kind and caring. Teresa was quick to take us back to a room, Dr. Wren and Mark was in our room within seconds aswell along with a warm blanket. Everyone was very helpful and they explained everything that was being done. Ryan was very kind and assisted with a wheelchair to the CT room. Very comfortable visit like if we were at home. Will definitely recommend this place to others.','2018-11-25 02:16:56.000000','1765121397101399'),('2122220211418374',1,'they are friendly and amazing staff very helpful','2019-09-12 05:23:12.000000','299216637560955'),('2125083417741306',1,'The staff at SignatureCare Emergency in Stafford, TX exemplified excellence in quality care from the time I walked in until I left! I have never in my 44 years of life experienced an emergency room where there was absolutely no waiting! A warm blanket; which accompanied friendly and genuinely attitudes of each staff member, made my condition less painful! I\'m referring all my friends and family to SignatureCare ER for their emergency healthcare needs!','2018-04-03 22:22:58.000000','1787364321589026'),('2126773704287551',1,'Very satisfied with everyone, thank you to Jose,Corey,Sita and dr Baker for being helpful and friendly, explain everything great','2019-06-26 07:34:04.000000','596022027480375'),('2131746493523002',1,'⭐️⭐️⭐️⭐️⭐️I spoke with a lady, I think her name was Bria, she was very patient & helpful. The time in & out as well as the care I received at the Weatchase location was AWESOME! The staff Melissa, Christina, Quyen, & Dr.Jones couldn’t ask for better care. These 5 people made my visit very comfortable & I will return there again! THANK YALL SO MUCH','2018-08-13 04:28:54.000000','829264323932850'),('2133404323397445',1,NULL,'2017-10-07 00:00:45.000000','1787364321589026'),('213369109689914',1,'Dr Henderson And Her Nurses Lucas And Jennifer Was Extremely Wonder Durning My Visit To Signature Care...','2020-01-19 01:01:51.000000','235046800697531'),('2134960150153739',1,'The staff at Signature Care Emergency Center were professional, courteous and prompt (in the diagnosis and treatment)!\n\nHiba, Tiffany, and Dr. Vakey, as a team, provided superior service - from the initial intake up to the moment I left the office. It was well worth the twenty-minute drive!\n\nTruly an unbeatable team!!!','2017-01-20 21:48:31.000000','1765121397101399'),('2136609529759314',1,'Great service, super fast!! Dyveliz, Kim, Anthony, Natalie, and Dr. Frausto rocked!! All of them were super sweet and welcoming. Definitely recommend.','2018-08-22 22:43:49.000000','326347177710316'),('2139157906207251',1,'I would recommend everyone who is sick to come here for the most convenient and fast service, professional and good customer service.\nThank you to the friendly receptionist Mercy','2019-07-16 14:12:27.000000','829264323932850'),('2141786472791443',1,'Amazing people. Natasha is wonderful and very helpful in my time of need. Very attentive.','2019-10-23 03:48:14.000000','544778295636544'),('2142896019183333',1,'Aside from the fact that SignatureCare Emergency doesn\'t take Medicare, I\'d have to say that the facility was very clean, professionally run and the staff was very friendly. I was tended to very fast and was on my way in a short period of time.','2016-06-08 14:05:48.000000','544778295636544'),('2142932125805774',1,'BEST FACILITY EVER. Welcomed at the front by Amy (with a smiling face of course). The team was phenomenal! Dr. Patel, Rommel, Joey, and Josh were excellent. I am highly pleased!','2019-05-07 05:15:46.000000','1608991329419166'),('2144467662281002',1,'Just left and some of the best service ever given!!! So thankful!!! They’re amazing!!! And shoutout to Tanishia for her awesome service at the front desk!!! Definitely recommend!!!','2018-11-30 07:27:12.000000','461782867645453'),('214577369715955',1,'It’s very caring, Fast & everyone is so polite!Kristina, John, Laura,Veronica, Faig was Awesome','2020-02-13 17:05:25.000000','829264323932850'),('2146786795340547',1,'This place was great ! Rayven was absolutely so helpful .. our roommate was treated super fast .. they had snacks , hot chocolate and everything ! Totally recommend','2018-10-21 01:09:41.000000','326347177710316'),('2147659461973673',1,'Amazing facility! Clean, modern, and very accommodating. Wait time was less than 10 minutes. This center had me in and comfortable within half an hour and emergency condition was treated and discharged within 3 hours. The nurses and doctors were very knowledgeable and listened to my every concern.\n Thanks to Doctor Akunyili for a quick procedure. Thanks to Doctors Leavitt and Boester for my follow up visits. I was able to return to work quickly with very little time loss.\nSignature care had a medical center feel without the hassle of a big hospital. Very personal care and I\'d recommend to anyone for medical needs.','2018-07-18 20:48:26.000000','1609539722669429'),('2148093481959613',1,'I would highly recommend this ER to anyone as they were all very friendly and kind and very attentive to my needs and I was taken care of by Debbie as my nurse and Jennifer D the one that checked me in and she was awesome The Doctor was very caring and won’t let you leave till he finds out what is wrong with you!','2020-01-21 21:56:39.000000','299216637560955'),('2148172361880381',1,'I have been on several occasions for myself and my child and it’s never a long wait.. and the staff is amazing','2018-11-14 21:06:15.000000','1787364321589026'),('2153637411565146',1,'Amazing and friendly staff. Answered all of my questions and everyone was very knowledgeable about my symptoms and condition. I highly recommend this place to any and everyone!','2017-12-27 05:29:35.000000','1698192877146046'),('2154777104779783',1,'Awesome ,quick,professional care!!','2018-08-10 03:20:48.000000','1608991329419166'),('2155191244778368',1,'The staff and nurses are very friendly and fast! Would definitely recommend this clinic to others with a 5 star rating.','2019-09-05 07:02:05.000000','251751275488925'),('2155541874459417',1,'I had a great experience! Excellent service, everyone was so friendly! The place is really nice and very clean!','2017-10-26 03:53:28.000000','1787364321589026'),('2158270557555664',1,'Dr. Zheng, Amy, and Nichole were very good!','2019-07-05 16:30:41.000000','544778295636544'),('2159090154119640',1,'Awesome job thanks for taking care of me. Very nice atmosphere. They get you in and out no time wasted. The doctors was right on point and explained and answer in detailed. I you guys rock','2017-04-27 21:03:48.000000','544778295636544'),('2159765834062098',1,'Highly recommend this 24hour urgent care it’s better then going to the hospital staffing is nice the over night registration AMY is very nice and bubbly greets with a smile very great personality!!','2019-03-08 05:39:02.000000','829264323932850'),('2160051104298313',1,'Quintessa is amazing! The whole hospital stuff is great. Hands down the best. They are quick and fast.','2019-11-14 20:44:55.000000','251751275488925'),('2161474380840965',1,'This place is very clean, nice & friendly. From Ms. Hayleigh in the front to the smiling doctors in the back, they work quickly and efficiently to find the root of your problems. They have nice heated blankets to keep you comfortable and overall just a great attitude.','2018-07-09 19:34:46.000000','1609539722669429'),('2162762230608003',1,'Outstanding professionals, attentiveness and quick to address my issues. Highly recommend!','2018-09-13 23:30:37.000000','1698192877146046'),('2164314110551531',1,'The great service receptionist Cynthia was very welcoming','2019-01-28 18:51:41.000000','1765121397101399'),('2167341200263058',1,'My nurse Kim was awesome! Tech Jair was caring, loved their understanding and care!! \n\nFront desk girls Maria and Sita were so kind and explained everything to me about my insurance... great service','2019-04-11 00:56:17.000000','596022027480375'),('216757766314877',1,'Erica\'s the best nurse ever!!❤','2020-04-06 22:31:13.000000','237100240304186'),('2169586456492943',1,'muy buena atención\ny rápido servicio','2019-06-13 03:58:56.000000','1609539722669429'),('2170163383074907',1,'Hands down one of the best ER clinics anywhere. Everyone that has helped us today has been nothing short of outstanding! We had no wait, we checked in and we’re called back before I could finish filling out the paperwork. I would recommend anyone to come here when they need professional medical care!! And thank you Cat for making my daughter feel comfortable.','2019-04-24 00:45:26.000000','251751275488925'),('2171892369593849',1,'The nurse Manny and all the staff there was great. Very attentive. Thank you.','2019-06-09 23:02:21.000000','237100240304186'),('217398372771515',1,'María G was Awesome! 💯🙌🏼 💙','2020-02-24 23:12:05.000000','237100240304186'),('2174852152555904',1,'Staff was friendly and competent. They took good care of me while I was there. I was kept well informed of what was occuring and what the next step was. Doctor took the time to listen to what I had to say. \n\nI will definitely go back if I ever have a need for their services again.','2017-06-24 18:47:30.000000','544778295636544'),('2175280119436447',1,'Great service and very good doctors that exam you quickly. They got me what I needed in record time! Highly recommended.','2019-06-27 18:01:54.000000','1648645701907657'),('2178835585499304',1,'Went for a work related injury and was treated VERY quick. Staff was super nice and accommodating. Thank you to Dr. Appiah, Kat, Jessica, Luisa!!!','2019-05-29 05:48:38.000000','167959367441528'),('217999795798736',1,'best ER in paris always fast friendly and most of all very thorough in diagnosing your medical problem','2019-01-02 15:47:15.000000','299216637560955'),('2182817358421587',1,'Wonderful fast and friendly from check in to checkout . Staff took great care of me they were so attentive they explained ever detail as they were working to help me feel better best ER experience ever in midland . Would definitely recommend this place to everyone! Thank you so much to Er tech -Cory , Nurse Jose, Cory ,Radiology Tech- Allison and Dr .Datta for the wonderful care!','2019-06-10 03:30:29.000000','596022027480375'),('2183367915025581',1,'Signature Urgent Care offers impeccable service to your medical needs. My recent visit was for my broken foot. Dr. Grimblatas, Eda, Rebecca and the receptionist were great. I did not spend 8 or 9 hours there like I possibly would have spent at a hospital facility. I highly recommend this facility for your medical emegencies. Thank you Signature Urgent Care.','2017-06-12 14:43:49.000000','544778295636544'),('218352442461072',1,'During stressful times it’s always great to wonderful staff members to help ease the situation... Jennifer Diggs has been awesome!!! Bout to go in the back and check in on the family member I’m here with now.','2019-07-14 21:37:40.000000','299216637560955'),('2183930204963628',1,'Excellent environment, friendly staff and wait time is very short!!','2019-02-27 15:05:50.000000','299216637560955'),('2184510001625437',1,'Amazing and super sweet staff. Got me in and out of there quick.','2019-03-13 21:50:23.000000','251751275488925'),('2185525535057747',1,'Yes I recommend signaturecare, the staff is nice and friendly you get in out no wait time, I would tell everyone to go there they are really a great emergency room!!!','2018-11-14 17:48:36.000000','299216637560955'),('2186878374702858',1,'Absolutely love this place! I have had to go more than once for either myself or my kids and everytime I have had the same experience. As soon as you walk through the door Ashley & Jennifer both are very welcoming & caring professionals! I highly recommend this facility!','2019-01-10 03:56:48.000000','299216637560955'),('2188271351220866',1,'Came into town for a wedding, ended up at SignatureCare for back pain. They took excellent care of me','2019-05-29 15:06:28.000000','251751275488925'),('2189781561349106',1,'Had to take my 5 year old in today for some stitches. Everyone was awesome. They took great care of him and made him feel so comfortable. Thank you for all you do.','2016-11-13 05:40:06.000000','1609539722669429'),('2190220521207290',1,'I\'ve been here a couple times each time the people are very professional very nice and courteous they make you feel at home and they do excellent care and there\'s not a lot of waiting thanks glory be to God peace','2018-07-18 18:56:41.000000','544778295636544'),('2191767000873889',1,'Keera is awesome and so nice. They helped my friend so fast when she was having chest pain, got her back before she even filled out her medical history. I have had several friends come here and all have had great experiences !','2019-02-08 01:23:29.000000','326347177710316'),('2192146101112652',1,'Today I went in to SignatureCare emergency and had the best staff. They attended to my problem quickly and kept me comfortable while I waited and when I was in the room too. Those hot blankets are awesome.. The best care I\'ve ever had..','2017-02-15 00:40:41.000000','544778295636544'),('2192758307652862',1,'Came in for my son\'s check up and we didn\'t have to wait in line. He was seen right away. All the staff are friendly and courteous.','2017-08-23 02:03:17.000000','544778295636544'),('2193349954295860',1,'The best ER I have honestly ever been to.','2019-10-28 14:43:33.000000','1698192877146046'),('2193704357618681',1,'It was the best care I ever had, they were very courteous professional and had a great bedside manners if we ever need care again that\'s the place we\'re going. Thank you Nurse Joseph, Nurse Leah and Dr. A....','2017-06-21 14:00:10.000000','1609539722669429'),('2194482927250285',1,'Thank you guys you were great .','2018-12-04 01:47:29.000000','235046800697531'),('2195910737337074',1,'We had a wonderful experience Dr Wang our doctor Rollie Natalia and Stephanie did an outstanding job. No waiting in line and we were able to see the doctor right away. Thank you so much','2019-03-25 02:15:49.000000','544778295636544'),('2196853117010122',1,'Fast and friendly great staff from front desk to doctor and nurses to check out made sure all questions were answered definitely recommended','2018-02-09 21:32:58.000000','544778295636544'),('2197168113933840',1,'I highly recommend everyone with emergency illness to be treated and seen at signatureCare Emergency center. Nurses and doctors showed great care and hospitality. I was very satisfied with my care.','2019-02-21 08:52:50.000000','251751275488925'),('2197430010495678',1,'Service is always quick and they always make me feel comfortable!! The registrar, Dalecia is so nice and friendly. Blake was my nurse and he made me feel comfortable as well. Overall my experience was great!!!','2018-11-16 17:45:50.000000','1648645701907657'),('2197948406940435',1,'It\'s the second time I come here for throat issues... and I love the they get me better before leaving... thanks to the staff Dr. Osiecki for getting me better!!!! And to the nurse Manny G. for all the helpful tips!!!!','2019-06-08 16:35:27.000000','237100240304186'),('2200813860228767',1,'Luisa was very friendly and welcoming, everyone made my son made feel very comfortable thank you so much, definitely recommend!!!','2019-04-03 03:28:04.000000','167959367441528'),('2201037686620369',1,'I had a wonderful experience! Natasha, Amy,Kelvin, and Dr.Paul were friendly and so welcoming. Definitely worth the drive from Georgetown. I will recommend you all to everyone.','2019-02-11 15:11:31.000000','251751275488925'),('2201104116636101',1,'Dr Paul ,Susie Ashley and Jennifer was very helpful and amazinG made my time there very comfortable. They all were so nice and explained everything very good. They made sure I was comfortable.','2019-04-26 21:31:34.000000','299216637560955'),('2202340543110058',1,'Was pretty fast. Everyone was really nice. Very informative and patient with me.','2018-11-25 02:32:47.000000','544778295636544'),('2206743039589065',1,'Very clean,very quick,pleasant staff,excellent care and very good','2019-02-11 01:47:48.000000','544778295636544'),('2207701612614082',1,'This is the first time I visited the signaturecare emergency and the staff was great. I came in and was taken to a room with in Minutes and seen the doctor. Everyone was so nice and helpful and the nurse Ian was very and made me feel comfortable.','2019-02-11 21:49:41.000000','326347177710316'),('2208441779388276',1,'Really did not even realize that this place existed until my son came home from college for Thanksgiving and I saw that his ear and side of his face was about to burst. I took him to Walgreen\'s clinic, but they were booked so I drop down Ella to find another Walgreen\'s clinic and stumbled upon this place. The best ER care my son could have ever had. Everyone from the Registration, to the Tech, to the Nurse, to the attending Doctor were very attentive care takers. My son\'s problem was diagnosed quickly and medication was administered for right away. My son required a CT scan of his face and because they have most of the equipment right there in their facility, that was taken care of right away. Thank you Signature Care for your attention to detail and excellent care of my son.','2017-11-26 17:57:17.000000','544778295636544'),('2208955965841528',1,'Today was my first visit. The service was excellent . From the great the administration to the doctor. Doctor Soli provided excellent service. I will definitely recommend this place','2016-07-12 03:58:15.000000','544778295636544'),('2209804135995385',1,'This clinic was quick, clean, and professional. They even had snacks! Dr. Siddiqui, Leslie, Churiah, Gina, Olivia, and Jaqueline all made this experience worthwhile. I will come back here for any emergency needs.','2019-12-17 18:23:20.000000','1608991329419166'),('2209944302454783',1,'Ashley B at the front desk is the best so friendly and quick!','2019-05-20 00:37:46.000000','299216637560955'),('2210999925588118',1,'Outstanding Service! No wait time, Knowledgeable Staff and Doctors, Very Clean! WOW','2019-02-23 04:15:21.000000','1787364321589026'),('2212505348763544',1,'Ellen R was so amazing thank you for caring for my mother and making her comfortable','2018-08-05 03:10:36.000000','544778295636544'),('2212821422113546',1,'Such sweet nurses and doctors. I had the pleasure of being seen by Dr. Katy, nurse Robert, the tech Ellen and the X-ray tech Fatima. I came in so terrified of why I was feeling so dizzy and short of breath. They helped keep me calm and answered every single one of my questions. I usually go to the one on tc jester but I had to be here since I was on this side of town. Signature care, no matter where you go takes such good care of there patients. Would recommend to everyone.','2019-01-13 08:38:32.000000','461782867645453'),('2218714598140961',1,'Excellent service with Kim & Jacob!','2018-11-29 20:33:44.000000','326347177710316'),('2219007418148068',1,'The staff was great and the service was prompt and thorough. Dr. Patel, Corey and Matt were great and patient while working on a very frustrated and scared two year old. They also took their time with two worried parents to explain and even re-explain our options. Glad we came to Signature Care tonight!','2019-06-11 04:38:51.000000','596022027480375'),('2219945694726232',1,'great customer service an greattt6ttt staff','2019-06-14 03:32:43.000000','167959367441528'),('2220120141341579',1,'Friendly and attentive to the patients need. Best place to go! Totally recommend!','2019-01-16 04:10:25.000000','544778295636544'),('2220505301606332',1,NULL,'2016-10-24 03:20:46.000000','1609539722669429'),('2220650868256444',1,'The Staff was very nice and i did not have to wait long at all to see the doctor. I stayed over night for observation and they made mw feel at home while doing the tests.','2019-01-09 15:51:52.000000','544778295636544'),('2222454011154641',1,'Listen, when I tell you I wanted to smash my face into a cement wall. That’s how excruciating my TOOTH pain was. I even told my friend to punch me to try and channel the pain from my tooth to the black eye I might have gotten. But of course he didn’t want to, coward. So he suggested to go to Signature Care. I had no other choice. And believe me when I say everyone I interacted with. From the front desk, Ms. Angela to my doctor, Doctor Henderson. And the LOVELYYYY nurse Ms. Kat. I was seen in no longer then 10 minutes, they assed the issue and proceeded in a timely manner thank you SignatureCare!!','2019-04-16 03:10:20.000000','251751275488925'),('2222692478039508',1,'The entire team was great! \nThanks Irving, sherwin, Thelma, Carly and Dr. Lim','2020-02-12 05:11:40.000000','829264323932850'),('2223639174394554',1,'This has been one of the best experiences I have had. The staff is all friendly and nice. The nurse and dr both listened to my concerns throughly and they explained everything in such a great way!','2019-06-05 23:08:34.000000','596022027480375'),('2223786067856049',1,'excellet service I recommend this place I took my son with his broken finger and my daughter with tonsillitis. Thank you','2016-10-26 03:37:26.000000','544778295636544'),('2224680634499340',1,'got here with so much pain they fixed me up qwick there service is awsome great people actually care manuel erica and marquez got down to bussiness aske for them but they are all good there i will definitely recommend and send and keep going there','2019-12-05 15:45:38.000000','237100240304186'),('2225987637434500',1,'Everyone was wonderful including the receptionist, the nurses- Austin and I did not get the other nurse’s name but she was wonderful, and physician-Dr. Jorden. We had zero wait time, signed in and were taken to a room immediately where the doctor and 2 nurses were waiting on us. My daughter received exceptional care. I highly recommend Signature Care.','2018-12-06 03:48:47.000000','299216637560955'),('2227338350664708',1,'what an amazing place! Dr Jones, Kat and Natasha is the nicest most courteous medical personnel we have ever dealt with.','2019-04-30 23:48:40.000000','251751275488925'),('2227601234052327',1,'Jessica Aaron Ryan and Cynthia and dr Smith were amazing','2020-01-16 15:29:51.000000','1765121397101399'),('2228687650736068',1,'Excellent service,kind, friendly and professional staff\nKat\nAaron\nSavanna\nAnd Miss Chastity\nMade it was all relaxing.fast, and fun great experience overall best Dr visit ever 👍👍👍👍','2019-01-17 13:51:51.000000','596022027480375'),('2229279480710724',1,'This facility is awesome. I received help within 5 minutes of arriving. Dr. cavazos and Alvean were really nice and were very attentive to my needs. Highly recommend!','2020-02-12 14:31:12.000000','167959367441528'),('2229524777084052',1,'The staff got me in so quickly and they were all so kind and caring. The staff included: Sita-registration, ER Tech- William, Nurses- Jose and Corey, Radiology Tech-Allison and Dr. Huerta.\nI appreciate the knowledge and efficiency of all the staff','2019-06-09 17:40:27.000000','596022027480375'),('2229611423759232',1,'We had a great experience with our visit at SignatureCare. Our nurse Lisa was so friendly thank you for your service','2019-06-06 03:19:36.000000','596022027480375'),('2230038853776823',1,'Amazing place to go wen in need of help Cindy super helpful and nice','2019-06-07 02:43:38.000000','544778295636544'),('2231601786933498',1,'The staff was very kind and generous, the nurse, Manny, was friendly and outgoing. He brought smiles to my face when i needed them the most. The physician was very thorough and well knowledgeable. I appreciated there helpful efforts in getting back to feeling myself again. Would DEFINITELY recommend. They are quick, responsive, through, kind, and very friendly. They made my stay feel warm and welcoming.','2019-05-13 20:57:43.000000','544778295636544'),('2233084526951199',1,'we had a very welcoming experience the staff was great . our whole visit was made as pleasant as possible . we were greeted as soon as we walked in the door by Robin who immediately helped us and had us with a nurse in no time.. Billy was very patient and understanding with our sons fesr of the dr and they were very kid friendly . Courtney also was very patient and sweet with dax during the chest xray. she did not try to rush through it and tried to make it as pleasant as possible.. the whole visit was veey satisfying . we will definantely be coming back for any future visits . !','2019-01-22 04:59:39.000000','299216637560955'),('2233358443386418',1,'Great ,Fast service. Everything is fine and Kim, Andrew,David, Lisa, and Alisha, took great care of Josh Hargrove. Got dehydrated at work and wasn\'t feeling well. Glad it was nothing serious. and thank you to Dr. Huerta','2019-06-29 05:32:32.000000','596022027480375'),('2235081420126310',1,'SERVICE HERE WAS GREAT I LOVE COMING.MY NURSE CHRIS C WAS AMAZING. I RECOMMEND THIS PLACE IF YOU WANT GREAT SERVICE.','2020-03-01 14:20:48.000000','1609539722669429'),('2236212743355875',1,'awesome care from all of the staff. \ndoctor very thorough and concern. manny the nurse was great, pate and shanna also😁','2019-07-08 21:30:50.000000','237100240304186'),('2236678756606094',1,'Everything was wonderful....receptionist preethy was very friendly....','2017-02-05 21:25:48.000000','544778295636544'),('2239822336066842',1,'best place to go great staff and very friendly vibes corey Allison and Jose took great care of me I will be back','2019-06-10 02:42:22.000000','596022027480375'),('2240873142867839',1,'I absolutely like this emergency room I never went to one that was so fast and friendly thanks Dr.Jones and his staff Linda,Kara and helen','2019-01-17 00:42:18.000000','235046800697531'),('2240902122671753',1,'Fantastic experience highly recommended!! Very comfortable and pleasant place with great friendly atmosphere Theresa RN, Dr.miler,Randi Radiology,Marcus Radiology, Manny RN, Pete tech. Has done a great job today helping me get myself back to 100%','2019-07-25 01:35:36.000000','544778295636544'),('2241661419205171',1,'Dr.Ding was a good doctor!!! Nurse Chris and Amy was at the front desk! Was a good stuff!','2019-04-27 15:49:25.000000','1609539722669429'),('2242511262691620',1,'Kim, Linda,Kara,Sherri, Christie,Luke, Dr Yost were the best in Texarkana that I’ve ever seen!!!!! Anyone would be crazy to go somewhere else! We will forever be patients of signature care!!!!','2019-01-09 21:04:51.000000','235046800697531'),('2245310998836052',1,'Thank you for all your help Keera.','2019-01-18 01:20:26.000000','326347177710316'),('224640498655651',1,'El senor Harjai la enfermera dana y Amy son incredible muchas gracias','2020-03-20 13:38:11.000000','167959367441528'),('2246429148946560',1,'SignatureCare was so quick go get me in for a cut that I couldn’t get to stop bleeding. They were so sweet and got me in and out very quickly.','2018-10-19 01:41:25.000000','326347177710316'),('2246776388670490',1,'I would give 6-stars if I could...\nI had to go to this place twice within the last week, once for my GF with a several case of dehydration (on a Sunday at 9:30 AM) and I for some acute pain in my left knee (last night around midnight).\n1) and foremost: NO WAIT. My GF has to wait less than 5 minutes before been installed in the exam room, I didn\'t even have time to complete the paperworks...\n2) The Doctor is the one who examines you. Sure, the Nurse take you vitals, hear you story, but the Doctor will be the one performing your examination, deciding (with you) the course of treatment and your options...\n3) They do not \"push\" for additional examination. We decided both with the Doctor of the relevance of an X-Ray in my case, which I agreed to have done, just for peace of mind.\n4) Within 30 minutes, in each case, we were admitted, examined, treatment decided and under way.\n5) Every Team member is smiling, extremely nice, joking with you if they feel it is something you will respond to.\n6) They keep asking you if you want a blanket, something to drink (Water, Coke, Gatorade, Coffee, Juice...) or a snack each time you are waiting a couple of minutes, during the whole process...\n7) They are open 24/7.\n8) The whole experience was comparable with a 5-stars hotel with a concierge service. Definitively the place I will be going back next time under similar circumstances.\n\nOne site note, though. They care considered as a \"hospital\" facility and therefore will charge your insurance Co-Pay for consultation in an Hospital Emergency Room (NOT an Urgent Care facility). But if you can afford it, it definitively worth the 4-hours wait at the Hospital ER...','2018-10-10 16:49:08.000000','1765121397101399'),('2247131262281485',1,'From the receptionist , to the nurses and doctor , the service was amazing ,efficient , and polite . I got in and got out and they made sure I was comfortable the entire time .','2019-05-02 17:12:26.000000','299216637560955'),('2247135948631083',1,'This place is awesome! The staff is very courteous and bedside manner is top notch. My husband and I agree that we\'ll be coming here for all future emergencies.','2017-06-13 10:26:48.000000','544778295636544'),('2247560088881221',1,'I had heard some not so good experience about minor emergency care from other people so was skeptical. \n\nI took a chance to use signature care because could not make it in to see my primary and the pain on my leg was unbearable. \n\nI was greeted upon arrival and my overall visit was comfortable with the intake process and a sincere concern for my health.\n\nDr Rose was exceptional in diagnosis and bed side manner. Christine, Linda, Earl and Chelsea were all tech savvy and friendly not to forget the follow up phone call was super.\n\nYou have exceeded my expectations and rate you 5 stars service. Thanks a bunch.','2020-01-29 18:32:51.000000','1698192877146046'),('2248546938732725',1,'Very kind answered all my question made sure I left with every information I needed I didnt have to wait long to see a dr. Great staff!','2016-10-30 16:01:53.000000','1765121397101399'),('2249145391837114',1,'I would highly recommend this place! Never a long wait, friendly staff, and good conversations. Anthony, RN is super sweet and Dr. Kimball is fantastic.','2019-05-10 04:10:28.000000','326347177710316'),('2249509608621238',1,'I have visited this emergency room and it was amazing! The facility was super clean and they tended to me with the best attitude. Thank you SignatureCare !','2018-08-02 20:44:56.000000','1608991329419166'),('2250743641852285',1,'My husband had such a great, fast visit here thanks to Robin Bratcher and staff. 😊','2019-02-18 02:26:58.000000','299216637560955'),('225414592231924',1,'Dr. Daniels, Gracie and Amy treated my girlfriend phenomenal and i will always return here','2020-04-23 00:47:15.000000','167959367441528'),('2255037734716748',1,'I myself had to use them twice with great results. Both my sons and my husband have had to use them as well. The quick service, friendly staff and over all experience has been great. If your self pay like my boys they give you the amounts up front. Would recommend them to everybody. Thanks Signature Care','2019-06-26 16:18:19.000000','596022027480375'),('2255947864522104',1,'I came in with a kidney infection. I was quickly in a room and being taken care of. I was admitted overnight for iv antibiotics. The staff and doctors were really friendly, this place is way better than going to the er','2019-06-20 12:45:33.000000','596022027480375'),('2257427671017601',1,'You guys I hate to wait for hours at a hospital I do but this place here was quick in n out the receptionist jasmine was very nice n Dr O , Malley was great thank you guys ...','2019-05-14 21:59:53.000000','167959367441528'),('2258062290981965',1,'Amazing service. From the time I went into the ER till the of getting discharged. Dr. Ding answered all my questions in detail. Almost no wait time. Would totally recommend!','2019-06-13 04:00:56.000000','1609539722669429'),('2258718844197873',1,'All the people that took care of me on my visit have been very nice and were making sure that I was okay or if I needed anything. They made me feel completely comfortable.','2019-07-28 00:29:41.000000','544778295636544'),('2258790537503141',1,'Very friendly and caring staff. Quickly attended as well.👍','2019-06-24 21:14:52.000000','326347177710316'),('2260683954233166',1,'Amy, y el Doctor Chum bien','2020-03-21 22:42:04.000000','167959367441528'),('2261160827338676',1,'My little boy had to go in tonight because he had a gash on his head from falling. I was immediately greeted and taken to a room. Gunner was very friendly and helped us to get settled. He checked on us several times throughout our visit. Dr. Yost was great. He was very personable and explained to me what was happening every step of the way. He did a great job of trying to make my little boy comfortable in an uncomfortable situation. His RN Lucas was fabulous, also. He was very kind and gentle to my little boy. He explained everything to me, without me asking— as I was on edge about my 2 year old having stitches. The entire staff was amazing, and you can tell they truly care about their patients. This is definitely our choice of emergency care.','2019-07-22 06:27:05.000000','235046800697531'),('2261819554035393',1,'wonderful service beautiful inside and staff i recommend','2019-06-14 19:24:29.000000','251751275488925'),('2264810083552874',1,'My visit here was great! Keera was a big help, thank you.','2019-01-18 01:19:29.000000','326347177710316'),('2265765490302802',1,'It was absolutely amazing, they offered me a warm blanket. I’ve never been to any place that does that. I’m coming back at least once a month.','2019-03-25 17:59:42.000000','299216637560955'),('2269993009678876',1,'Staff was amazing and very caring.','2018-12-04 17:08:15.000000','1787364321589026'),('2270540762988268',1,'I was a recent patient at this location. The whole staff Dr. Yusuf, Kristina, Quyen, and Mercy were all wonderful. I left feeling much better than when I arrived.','2018-10-22 19:01:28.000000','829264323932850'),('2271596969548754',1,'Excellent!! Anthony was Awesome!!','2018-09-12 01:17:57.000000','326347177710316'),('2271723179710433',1,'Just moved in the area and my daughter was feeling bad so I googled nearby emergency room and this popped up. The triage went smoothly and while we were placed in a room, the Dr came in real quick. They were very quick and professional and if I needed to do\nIt again I most definitely will. Also, the warm blankets are AMAZING!!!!! Thx team','2018-09-03 06:40:45.000000','1787364321589026'),('2272104056152449',1,'We are new to Houston and to satalite ERs. My husband being a terminal cancer patient we needed to find out how everything worked. On my way to work one day, I saw the ER on HWY 6 in Sugarland. I went on the Internet and investigated them. They work just like any attached ER. The insurance they take and don\'t take. I want the best for my husband. He often has problems that need immediate medical care. Well it happened on Wednesday night Thursday early morning. Very bad cramps in his leg. We thought he had a blood clot. Off we go to the ER. They came out and got him out of the car and brought him to the back. They check my insurance and had me fill out the forms. They did all kinds of tests ...Blood, cultures, Ultrasound, XRays. Leg was find. Just leg cramps. XRay showed pneumonia we didn\'t suspect. They took him to the Sugarland Methodist by ambulance. The only hiccups were his medicine wasn\'t put in correctly. Also neither the ER nor Sugarland Methodist are not connected to \"EPIC\" system. Which is part of MD Anderson and other Methodist DRs my husband uses. Hopefully it is in their near future.','2016-08-20 21:37:24.000000','544778295636544'),('2272595086089035',1,'I\'m a guy that hates going to the doctor and haven\'t been in years. I came down with the flu a few days ago and today my wife dragged me into SignatureCare and I can honestly say that my experience with amazing. Dr. Edwards, nurses Reed and Jesse, and the front desk reps Tiffany and Galmore made me feel comfortable from the moment I walked in and I really do appreciate that. They took top notch care of me and now have me on the right track to battling the flu in the best way possible as it runs its course. Thanks everyone, you are the real MVP\'S !!!','2017-04-20 07:06:43.000000','544778295636544'),('2275446782471259',1,'Great experience... we love that we walked in and were seen right away . \nEveryone was very nice \nDr Kotey\nNurse Monica\nNurse Rachel\nTech Ralph','2018-09-10 04:25:51.000000','544778295636544'),('2275857516076701',1,'this place is the best.little to know wait time friendly staff from the moment you walk in till you go. far faster than any place I\'ve seen and really care about ppl. this is the type of care that hospital ers should be providing but have fallen so dangerously far away from.','2019-07-17 06:13:42.000000','251751275488925'),('2279282485685396',1,'Everyone here was so friendly and helpful 10/10 recommend! :)','2018-12-03 11:28:09.000000','326347177710316'),('2279711822074952',1,'This place if great. Everyone was helpful','2019-05-20 10:55:42.000000','1765121397101399'),('228125925142753',1,'Doctor Yabarra took very good care of me and the sVery nice facility, nurse Katrina and ervice was quick. Also Ms. Therisa at the front desk was very helpful and nice as well.','2020-04-10 01:35:59.000000','1648645701907657'),('2281282282094471',1,'The visit here was amazing! The staff was perfect and helpful. The whole atmosphere was warm and welcoming. Personal thanks to nurse, Kat. 🤗','2019-05-07 02:57:38.000000','251751275488925'),('2282141395419564',1,'Dr harjai, Nurse Alvean, and technician ThuyAn provided me with the great services. They were very clean and gentle with my injury. I would highly recommend seeing them for fast help!','2020-04-09 19:34:56.000000','167959367441528'),('2282292228533122',1,'very satisfied with the services always made sure I was ok if I needed anything would highly recommend this place','2019-06-24 16:40:29.000000','237100240304186'),('2282722585095861',1,'The service today was amazing and the staff gets a 10+ from me','2019-01-28 13:24:49.000000','1787364321589026'),('2282941215136535',1,'Thank you so much for your wonderful care. My fall scared me and I was so nervous. As a person with a physical disability, I was so impressed with the personal treatment I received.','2019-08-25 17:44:44.000000','829264323932850'),('2283161641998154',1,'I always treated with a lot of respect and was taken care of in good hands if I ever get sick again I know where to come !','2019-06-21 09:56:44.000000','596022027480375'),('2284230691845130',1,'Best emergent care around.','2019-03-31 19:28:42.000000','235046800697531'),('2284327204988304',1,'I LOVED the genuine hospitality that all of the staff members of the hospital gave me. All of them made sure that I was okay and safe. Also, the service wasn’t long. The test were done quick and easy. ❤️','2019-05-22 07:31:51.000000','251751275488925'),('2285499228355983',1,'Very nice and clean place. Employees cared and interacted with me the whole time. Employees are very nice showed they cared about my wellbeing and always made sure I was comfortable. Very professional and fast service. Although I was in tremendous pain when I arrived, my experience with the Signature Care of Odessa was comforting and exceeded my expectations. \n\nAdded bonus: they have an excellent selection of snacks and drinks available to patients. \n\n10 stars! \n⭐️ ⭐️ ⭐️ ⭐️ ⭐️','2019-11-04 22:22:05.000000','237100240304186'),('2286310674730909',1,'Dr. Boester and his staff are a BLESSING!! highly recommend, they really take care of their community.','2018-09-25 00:09:37.000000','1609539722669429'),('2288883324536798',1,'Great place!! Allison, Jose, and Corey took good care of me','2019-06-10 03:28:20.000000','596022027480375'),('2288948464505020',1,'Dr.Patel, Amy in registration and Bryan E. RN \nGreat care and fast!','2019-05-04 06:42:08.000000','1609539722669429'),('2288978351348544',1,'Great service. Friendly & efficient. Thanks Jenniffer Diggs.','2019-02-18 15:00:46.000000','299216637560955'),('228952798374050',1,'great service and friendly staff','2020-04-28 16:50:37.000000','167959367441528'),('2290260261269888',1,'La atención es muy buena el precio es accesible , el personal en general son muy atentos','2020-02-07 16:16:01.000000','1609539722669429'),('2290330141085856',1,'when I\'m away from home and I feel sick I come here they are so friendly. Lisa v was my nurse today she was nice and explained everything. I remember Andrew from last time he has a very personable demeanor.','2019-07-28 19:48:28.000000','596022027480375'),('2291270167551341',1,'Great place! Very friendly\n\nDefinitely recommend if you can’t make it to the doctor in time!','2018-12-04 20:24:51.000000','1787364321589026'),('2291274774318297',1,'Excellent service, free snacks and drinks, no wait time. Dr. O\'Malley, Ekaterini, Joshua, Melissa and Sean were all amazing','2019-09-21 01:40:45.000000','167959367441528'),('2291833620858119',1,'I was in at 8:30pm and believe it or not I was sitting in my car again at 9:00pm. Amazing . The staff was great from the security guard to the doctor. I was wowed.','2017-08-22 16:14:24.000000','1765121397101399'),('2293033180908086',1,'I visited the SignatureCare in Stafford yesterday morning, Dr. Tran and her staff were very personal and concearned about my well being. Dr. tran explain everything to me so IN could understand my condition and wanted the best options for me to get well.\nIt makes any kind of business have an excellent service when they truly care about you.','2018-12-28 14:30:45.000000','1787364321589026'),('2293907444059321',1,'This facility is amazing! Clean, quick, and thorough. I had gotten into a terrible accident and everyone was super understanding of how to deal with my situation. I will definitely come again. Someone even called a few days later to see if I was feeling better.','2019-05-29 04:42:09.000000','251751275488925'),('2294228130824526',1,'very fast,friendly and efficient. would recommend to anyone','2019-04-20 15:25:32.000000','1698192877146046'),('2294542254111761',1,'I absolutely have enjoyed my visit at signature care! They were so amazing from the check in to check out! I don’t believe I have ever been assisted so quickly in my life','2018-11-06 23:30:14.000000','326347177710316'),('2298613076881517',1,'mission bend location was amazing.. dr grinblatas and today staff was amazing. even tho my son was acting fine he didnt just send us on our way like most hospitals would. he listened to what we had to say and understood why we came in. the nurse was so nice and offered drinks and a snack. now my son is drinking more since the visit today and im so happy!','2019-06-22 22:34:01.000000','544778295636544'),('2298795566878636',1,'Manny, Delpha, Seduni, and Senaida. each and everyone of them are very helpful, took care of all my needs and answered all my questions and are super nice.','2019-06-20 04:45:21.000000','237100240304186'),('2299939720041959',1,'Was refered to the facility after seeing my primary care physician and was greeted at the front desk with the friendly smile and was taken back immediately my lab work was done on site staff listen to my concerns and explained everything that was happening also inform that I could stay as impatient at the facility. I highly recommend the facility to anyone that would need to go to a hospital and I give them 5 stars','2019-07-05 18:44:58.000000','1698192877146046'),('2301849643410256',1,'It was fantastic, clean and very nice bed side manners. Super quick and super comfortable. \n\nThank you especially to \nDoctor Rankin \nNurse Kat \nRadiologist Ferman \nUltrasound: Mrs. Yolanda \nAnd front desk Barbara \n\nThank y’all so much!!!','2019-07-31 02:27:21.000000','251751275488925'),('2303570926355124',1,'Dr. Ding was very informative as well as Chris my nurse and Amy worked wonders with my insurance. Thank you guys!','2019-04-27 13:35:45.000000','1609539722669429'),('2303648859761769',1,'friendly and attentive staff','2019-11-06 04:31:29.000000','251751275488925'),('2307138406007775',1,'Service was great, greeted with a smiling face when I walked in by Jessica S. She made me feel so wanted and she was so helpful! Thanks for the great care!!!','2019-08-02 06:49:04.000000','596022027480375'),('2308247729214500',1,'My son got the care he needed in a very timely manner. Raven was very inviting and in less than 3 minutes the nurse Nichole took us to the back. Not long after Dr. Garcia was there to explain what was going on and how to fix it. I’m very satisfied','2019-06-12 14:21:59.000000','1787364321589026'),('2308851962494351',1,'Botester and Amy Great Service','2019-06-29 01:49:23.000000','1609539722669429'),('2310456879238340',1,'I went early yesterday morning for back and stomach pain. I had called that night and spoke with a nurse she listened to my issues about my pain and transfer me to the doctor on duty. So since my husband was tired and all, I said we can just go in the morning. Sadly to say at 4 am I was up getting ready,because the pain wouldn\'t let me sleep. We arrive and the security guard came outside to see if I needed a wheelchair. I told her no thank you, my legs still working so I must used them. She said Amen to that. Go in and told them what was wrong the nurse said yes you called last night I remember you. So filling out my paperwork they called me back quick. Dr Erica Evans was my doctor, Nurse Pamela Mcmullen, and Mrs. Sonia and Yamileika Gonzalez-Van Nest. Thanks SignatureCare','2017-08-06 16:14:02.000000','1787364321589026'),('2311419442214375',1,'This was a very pleasant experience even though the situation was a bit scary. Dr. Dang, Amy, and Barbara showed great professionalism and concern. I recommend this center to family and friends.','2019-05-19 10:31:52.000000','1608991329419166'),('2311881022175365',1,'Hayleigh was incredibly sweet and the staff here was wonderful. I been here in and out for an entire week, they know exactly what they are doing. I recommend anyone who needs medical attention to come here.','2018-09-05 00:17:00.000000','1609539722669429'),('2312553878795605',1,'They took such good care of my daughter with constant care and attention. Thank you so much!','2019-04-19 18:10:44.000000','544778295636544'),('2312594292108019',1,'Very knowledgeable medical staff. Fast and amazing customer service. Everyone is very friendly and polite. Will come back for future medical needs!','2019-02-06 23:45:45.000000','251751275488925'),('2313377425353514',1,'Excellent service the staff was wonderful','2019-01-28 00:27:44.000000','1609539722669429'),('2313875098699656',1,'Always have a great treatment and experience here at signature care emergency center','2019-06-11 17:16:34.000000','237100240304186'),('2314281422140807',1,'SignatureCare Emergency Center here in Paris is a quality facility with some of the most professional staff I’ve ever dealt with. As soon as I walked in the the door I was greeted by Robin with a wonderful smile. Then Courtney called my name, took me to my room and started the assessment on my symptoms, took my blood pressure, EKG, then blood draw. Then Billy finish up going over my symptoms, plus gave me some meds, then went over all the doctors orders before I was discharged. I’m telling you.. What a professional and quality group of people they have working there.','2019-02-18 04:53:45.000000','299216637560955'),('2316037678448382',1,'Dr. O’Malley, Nikaela, and Amy were pleasant to my girlfriend and I.','2019-03-11 09:39:09.000000','167959367441528'),('2316078391997118',1,'Friendly staff great team! Get seen pretty fast!','2019-06-13 02:54:57.000000','596022027480375'),('2316724541727118',1,'Everyone was helpful and made sure my son was taking care of. I highly recommend this place. Today the team that took care of my son was Jose, Amanda, Allison, Andrew & Dr Chambers.','2019-05-13 03:07:31.000000','596022027480375'),('2319966614970059',1,'The best service. They all attended me very well. \nI highly recommend coming here.','2020-05-01 00:57:37.000000','104213804456471'),('2321710238146520',1,'Definitely treat everyone like family from Angela at the front, Ashley and Michelle in the back, and Dr Hasegawa! Not my first time here and the care is always the same, top notch!','2019-06-16 06:04:32.000000','251751275488925'),('2322760138015217',1,'from registration with maya to my rad tech Mayra to my nurses Stephanie/Lara an my er tech scott an my dr singla they were awsome from start to finish so good I had to make sure I did the review while I was here so I wouldn\'t forget. from filling out paper work to being poked an getting a pelvic exam they were amazing an I\'d recommend anyone needing emergency help coming g here an they\'re very clean an friendly might I add.','2020-03-11 18:15:06.000000','829264323932850'),('2324563277759958',1,'The staff was really helpful and free snacks the dr i had was super nice','2019-06-26 18:55:31.000000','596022027480375'),('232688797384359',1,'This is the greatest place in H-Town health care. Get you a team like this. Hayleigh is the smiling face and warm heart that greets you. She shows you what your experience will be like before you are seen. Great place to take your kids.','2018-07-09 19:28:40.000000','1609539722669429'),('2327327820843093',1,'Lisa V and the entire staff were great and helpful!','2019-07-29 18:00:58.000000','596022027480375'),('232760497933745',1,'Everything is great! Everyone was great! Listened to our problems and brought us water. Very kind and professional! Made my little girl feel safe and that’s the most important thing to me. Thank you!','2020-04-23 02:05:29.000000','251751275488925'),('2329127933792489',1,'Registration: Sita\nER Tech: Matt\nNurse: Kim, Kristina\nRadiology: Ahui\nDr. Huerta\n\nFirst time coming to a urgent care The staff made the experience a breeze. Easy to fill out paperwork. I give them 5⭐️⭐️⭐️⭐️⭐️ for all they have done for me. Thank you all','2019-06-13 02:42:23.000000','596022027480375'),('2329209327117775',1,'Wonderful experience, wonderful staff.\nAndrew and Derek were the best.\nAnd of course ms. Kim, was on it. \nMade sure I was comfortable and ok.\nDr. Appiah thanks for the fast service I was in and out.','2019-06-28 01:30:20.000000','596022027480375'),('233099524531076',1,'Thank you singnature care\nDr.LiNGAN\nNURSE CHRISTINA R.\nReadiology Tina K.\nSHAUNDA H.\nChristine A','2020-03-06 16:55:12.000000','544778295636544'),('2331149453645855',0,'Good care, yes, but BAD INFORMATION!!\nAfter triple checking I wasn’t going to have a HUGE bill for the services I needed and assured that they were in network with my insurance company (after taking my card and checking it). I’m now facing a $2200 bill. The receptionist produced a yellow chart and said it would likely be billed at $200-500 for the nature of my visit. I asked a lot of questions for which I apologized for in advance because I could not risk something like this happening - I was reassured that this wouldn’t be the case and I am absolutely horrified to see how much I have been billed and that zero is being covered. Furious and upset to have been told repeatedly this would not happen. Apparently it could have been ‘the new girl’ but that it no help at all.','2019-07-23 01:53:09.000000','251751275488925'),('2331417083803711',1,'This is the best hospital EVER! All of the staff here are excellent. Thank you Amy for holding down the front desk. You are awesome. Dr. Ding and nurse Chris thank you for your loving care.','2019-04-27 17:29:18.000000','1609539722669429'),('2331965080149247',1,'They are very professional and courteous and didn’t have to wait long at all! Took more time to do the paperwork then to get in and see the Doctor. Recommend them highly!','2019-01-24 19:27:15.000000','596022027480375'),('2332498733467208',1,'when I walked in the staff hreetes me with Beautiful smiles and helped me fill out my paperwork . the nurse susie was very nice and very concerned about my well being ; they got me in fast and I would reccomend them to anyone','2019-04-27 00:05:40.000000','299216637560955'),('2332509903675311',1,'The RN Anthony and Dr Jaber were very helpful and professional. Made me feel at ease. I would recommend anyone to come here.','2019-08-10 20:09:23.000000','326347177710316'),('2332764996944227',1,'Staff was very helpful and polite, had a great experience with Patricia Alvean. Would recommend :))','2020-02-08 20:53:16.000000','167959367441528'),('2332983433389689',1,'Our visit was fast and friendly, loved our nurse Teresa. Will be referring the facility to family and friends.','2019-05-21 01:37:21.000000','237100240304186'),('2333691160007225',1,'Dr. Wren was so sweet and informative, Chih explained the process, and Amy was so sweet!','2019-04-21 05:43:49.000000','1608991329419166'),('2334209226606242',1,'Front desk was friendly Nurse was very helpful doctor was','2018-05-29 11:55:37.000000','544778295636544'),('2334259376614440',1,'Blankets anyone? Lol, Staff was awesome! Dr. Levitt, RN Meredith, tech Ricardo, Rad Bryan, Rec Tatiana. These guys and gals made me feel welcome and were prompt. I dislike ERs but i would purposely get sick to come visit these guys. Jk, but if your wondering should you come to this location. Yes, you will leave with a smile out the door. Thank you to everyone there!!!','2018-08-18 03:41:14.000000','1609539722669429'),('2334472453472295',1,'Always professional, friendly, clean, quick and reasonably priced. 🙂♥️','2019-06-27 04:02:44.000000','1609539722669429'),('233471891388400',1,'Dee was really nice and patient in my time of need. She is a true gem.','2020-03-17 13:12:59.000000','1608991329419166'),('2336417109989236',1,'Excellentfffffgfggg 👌👌👍😀👍👌👍😀','2020-01-13 10:58:52.000000','1787364321589026'),('233760187844797',1,'Lisa V and Dr did an awesome job taking care of me. Definitely recommend!','2020-04-30 18:16:21.000000','596022027480375'),('2338741916177507',1,'I went to my GP with possible appendicitis. It was going to take 1-2 weeks to have the scan done. I immediately went to Signature Care in Odessa and with 1hr I had a ct scan. They kept me overnight to watch me. From Dr Huerta and Dr. Vaagenes and to all the nurses, Mackalie, Adrianna, Maria,Jolynn, Manny Bethany and Magali, thank you for the wonderful care and attention I received. 5 + stars. Thank you all so much!!!','2019-04-04 17:55:23.000000','237100240304186'),('2340330359343933',1,'I have had the best experience with Dr. Fausto, Dr. Vakey, Lorena at the front, and with Jacob and Morgan as my nurse and Rad. tech. They have been so kind and thorough all morning. I am so glad I chose this ER and should I have any other emergency pop up I know where I’ll be headed!','2019-06-29 14:03:32.000000','326347177710316'),('2341217859293577',1,'Quick, friendly staff and doctors. Highly recommend if need treatment immediately','2019-07-29 23:59:15.000000','1765121397101399'),('2341778039206691',1,'Fast and friendly! Ms Konya and me Jereyia were friendly and made the process go by quick and every talkative (in a good way!) Dr Paul was great and very knowledgeable.','2019-02-14 19:53:59.000000','251751275488925'),('2343628649052834',1,'Kim was awesome and took great care of us!','2019-08-18 03:10:54.000000','596022027480375'),('2343846299076322',1,'Very clean facility staff is very friendly Dr.Dang was very informative.. Kat S. the rn was very sweet and helpful.. the radiologist Kat K. was fabulous as well very sweet and friendly .. Amy at the front desk was very sweet I loved my experience here thank you so much','2019-09-12 04:58:12.000000','167959367441528'),('2344586145561991',1,'Sweet, friendly staff! Dr. Jorden & nurses are very welcoming. Would definitely recommend! Thank you for taking great care of me! 🥰','2019-05-17 03:18:22.000000','299216637560955'),('2345148565504852',1,'The staff is always very friendly. Thank you to the Nourian','2019-02-24 23:23:47.000000','1608991329419166'),('2345208825546242',1,'Brought my daughter in today and the staff went over and beyond to make sure my daughter was well taken care and did every test to find out what was going on with her. Everyone did AMAZING!! \nHighly Recommended!!','2019-05-28 21:44:51.000000','237100240304186'),('2345566765505504',1,'Staff from doctor, nurse, & receptionist was nothing but amazing, so glad I came here. Wait was also very short & they assessed my problem right away & even gave me a warm blanket that already made me feel 10x better','2019-05-17 06:56:39.000000','596022027480375'),('2347986155296211',1,'excellent excellent !! Sita , Kim, Allison , Dr Diaz','2019-08-07 05:53:10.000000','596022027480375'),('2348368031930621',1,'A very special THANK YOU to Norma, Churiah, Ke’Aire, and Dr. Yusuf!! From admitting to releasing dates, everyone was absolutely professional and had amazing bedside manners. If I ever need to return to an emergency center, there is no other place I would rather go. A most special thank you to Miss Norma and her beautiful smile!','2020-02-09 18:39:38.000000','1608991329419166'),('2348392518612327',1,'they were fast at admitting and all the tests that needed to be done. our nurse, radiology tech, and doctor were awesome and explained everything well.','2019-08-19 05:03:42.000000','596022027480375'),('2348465311880613',1,'Amazing staff, doctor Yusuf was very helpful with any concerns I had also Agnes and Amy were so nice and the whole process was quick. Hugely recommend this place for any emergencies.','2019-05-27 00:49:35.000000','1608991329419166'),('2349818285082319',1,'Staff Cindy C is very welcoming and patient! The medical staff is very patient and caring! No wait with great care! Every time my daughter needs care they are always welcoming and willing to assist! Great attitudes and clean environment!','2019-06-06 01:07:53.000000','461782867645453'),('2350819111628702',1,'The staff Amy Agnes Rn and Dr Faig are simply amaging. Simply amazing. I will always come here.','2019-05-05 02:47:19.000000','544778295636544'),('2351059888315852',1,'Fast and expert service. Not crowded, whole process took about an hour. Nancy, Manny, Meghan W, Ben and Dr. Plant were all efficient and as courteous as could be.','2019-07-15 01:49:13.000000','237100240304186'),('2353096274788212',1,'Yes everyone was extremely nice! And there was barely any wait!','2019-10-10 18:11:11.000000','167959367441528'),('2353474718049644',1,'Amazing staff and always making sure your comfortable','2019-03-15 17:51:09.000000','251751275488925'),('2355520618046404',1,'everything was good. thank you Ekaterini S, Marcus B, and Luisa R','2019-10-13 03:03:24.000000','167959367441528'),('2355881487836722',1,'Great experience! Thank you Allison and Kim for helping me.','2019-08-21 05:21:49.000000','596022027480375'),('2358042957654415',1,'I would definitely go to this location if I need any help. Friendly people and great service. \nDr. Appiah \nJanis W. (nurse) \nTricia B (radiology) \nElida Jasmine (registration','2019-10-17 23:35:02.000000','167959367441528'),('2358590464252583',1,'We brought my 6 year old in with a bad cut off hat needed stitches. We had the best care we’ve ever had! Kara, Gunner, and Dr. Ashbrooks were absolutely amazing!! The environment is so nice and inviting! I love it and we will be coming here from now on!!','2019-11-01 23:10:40.000000','235046800697531'),('2359259407670012',1,'SignatureCare has never let me down! They\'ve been Professional ,Consistent,and also friendly!','2019-09-30 04:18:23.000000','235046800697531'),('2359384330834637',1,'I was seen immediately! Luke took his time and made me feel comfortable and get to know me! The rest of the staff Kim Davidson and Kim Domanski did the same! Thank you for making me comfortable while I wasn\'t feeling myself! Its hard to find that today!','2020-02-03 17:15:45.000000','235046800697531'),('2361122524110138',1,'Kristina was the Best nurse, you will get great care here!','2020-01-09 16:36:03.000000','829264323932850'),('2361669110753315',1,'Atended my daughter fast and nice \nKat s, kat k, dr dang','2019-09-12 05:04:05.000000','167959367441528'),('2361918517201825',1,'BEST CARE IN ODESSA VERY FRIENDLY STAFF N GOOD DR VERY ATTENTIVE N CARING','2019-05-20 23:53:08.000000','237100240304186'),('2362060297165113',1,'Excellent staff. Genuinely care about you. Thank you Dr.Pham, Nurse Dawn, Registration Keaire, ER Tech Olivia and last but not least Rad Tech EVE!!','2019-08-30 12:11:11.000000','1608991329419166'),('2362109357142487',1,'Everyone was super attentive and friendly! We were in and out very fast. They explained all the meds and their plan of care in detail.','2019-05-13 14:51:51.000000','237100240304186'),('236272877357961',1,'very friendly and very professional very clean\nmade my nightmare of an severe asthma attack go away.','2019-12-17 04:38:34.000000','326347177710316'),('2364361540534004',1,'Jocelyn A. And Alvean A. Were great, kind and very helpful.','2020-01-22 21:21:49.000000','167959367441528'),('2364540036895176',1,'My recommendation would be. For quick to get in an through service. This place is a must.','2018-09-08 16:55:21.000000','829264323932850'),('2364916390233156',1,'Yes i would definitely recommend these guys were great it was overall a wonderful experience the staff was very nice and helpful And a special thank you to Robin Nurse Billy and Courtney guys really made a difference','2019-05-01 04:04:30.000000','299216637560955'),('2366066553405927',1,'fast friendly 24/7 emergency room. kid friendly','2019-02-24 01:34:34.000000','237100240304186'),('2366210133437117',1,'The best urgent care in the area. It’s super clean the people are nice and they give you free coffee and blankets 💕 also I’ve never had to wait to be seen.','2019-04-10 03:48:48.000000','251751275488925'),('236631793654615',1,NULL,'2017-09-11 06:22:01.000000','1787364321589026'),('2367037426649299',1,'Nurse churiah & Gina \nFront desk darnisha \nTech Jose \nEr tech josh \nDoctor dang!','2019-03-12 00:43:31.000000','829264323932850'),('2370410543022354',1,'Amazing staff!! Everyone is so nice and really helpful!! Definitely will come back for any minor emergencies and recommend everyone to visit them if you want no wait and a great experience! Thank you signature care emergency center-the heights','2019-06-15 07:01:21.000000','1609539722669429'),('2372383676136458',1,'This emergency center had some of the best services I have ever seen at a healthcare facility and everyone at signature care provided excellent care!','2018-11-06 02:43:40.000000','326347177710316'),('2373011736358428',1,'As you walk in the receptionist are so sweet. The doctor (dr.Jones) is really nice and helpful. He Explains things really good to where you understand it.','2019-06-19 01:31:33.000000','251751275488925'),('2374443985934782',1,'Dr.zheng, amy, Jerin, Mchole the best service I ever got.','2019-07-05 23:07:13.000000','1787364321589026'),('2374502222568058',1,'Signature Care ER was wonderful. Excellent staff, warm friendly environment. Staff was kind and caring. Susie, Ashley, John, and Matt were the best. Dr. Jordan was wonderful.','2019-02-28 16:14:32.000000','299216637560955'),('2375379492499152',1,'staff,no long waiting to be seen.','2019-09-01 12:56:24.000000','1609539722669429'),('2376209115724267',1,'Recently we took my daughter to the ER. As always the staff was awesome. Lisa was quick checking in, then Tabitha and Brad were awesome providing care in the back.','2019-02-09 03:34:00.000000','237100240304186'),('2376908345701103',1,'After having a tonsillectomy Tuesday, this place has went above and beyond to keep me very comfortable the last 2 days when dehydration and uncontrollable pain set in. Andrew is very polite and caring! If the need arises again, I will definitely be back here!','2019-06-30 23:00:51.000000','596022027480375'),('2377297292281630',1,'They are very polite they take the time to get to know you and treat you they even do a call check up on you I just love going there they are so nice I give them a thumbs up all the way around','2019-03-24 15:10:18.000000','235046800697531'),('2378435015820505',1,'I recommend it 100% from the registration Process with Nancy to the attendance from Dr. Huerta and nurse Keira they where amazing! Went through the process in a timely manner and also the fastest I’ve ever had Explain every thing good','2019-10-31 01:23:43.000000','237100240304186'),('2378717905758646',0,'I am prepared to picket your location about the rip off charge you have for testing for COVID-19','2020-06-17 09:30:49.000000','1765121397101399'),('2380424211973140',1,'The staff took excellent care of my daughter with no wait and the service was fast. I would recommend this location and will definitely be back if my family needs any assistance. Thank you Hayleigh for making our intake process worry free.','2018-09-07 00:31:14.000000','829264323932850'),('2380496355567703',1,'Great staffing and experience as always','2019-05-08 17:31:36.000000','596022027480375'),('2381705801863058',1,'Never fun bringing a sick kiddo in with the FLU but love the quick friendly service...thanks Jennifer Diggs and Matt Leonard for getting us right back and taking care Darcee.','2019-02-15 15:10:00.000000','299216637560955'),('2381861615224044',1,'The staff was very professional, caring and prompt. they really go out of their way to make sure you\'re taken care of.','2019-08-14 00:04:02.000000','251751275488925'),('2382959361720511',1,'Our daughter suffered a near syncopal episode w/follow up care at this facility. Thank you to the doc/staff for taking care of her. Being four hours away makes it nearly impossible to be there in person with each event. We followed up with her EP Cardiologist today, turns out her cardiac loop recorder caught what caused her near syncopal episode with a (long eluding) cardiac arrhythmia that requires daily medications. She will be following up in the near future with her EP Cards doc/PCP/Rheum doc. It goes without saying we, as her parents, had great peace of mind she was in good hands at your facility. Thank you again for the prompt service and listening to us when we inquired about other testing to rule our viruses, etc. Nothing about our girl has been easy (normal). Many Thanks from an AGGIE\'s Mom, Dad, and Siblings','2018-10-25 00:38:05.000000','326347177710316'),('2384342794953646',1,'Love it here ❤️ Great facility!! Friendly staff','2019-10-17 05:05:41.000000','1787364321589026'),('2386632151427892',1,'This ER has a great team. They all are so kind, and make the whole experience very comfortable. The nurses (sarah) and doctors (patel) really listen to your questions and concerns. They also give good information and explain things in detail which I think builds a good relationship between doctors and their patients. They made sure to manage my pain before I was transferred to another hospital. They took such good care of me like I was family. I will always use this urgent care. Thank yall!','2019-08-29 11:12:04.000000','461782867645453'),('2386768501593522',1,'Friendly staff the girls took good care of us Kim and Allison','2019-08-21 04:56:01.000000','596022027480375'),('238782317090050',1,'Great experience would recommend to anyone!! Great friendly staff from the front desk to nurses to the doctors!!','2019-11-01 16:21:50.000000','596022027480375'),('2390402597680136',1,'Cindy and Randy were the best... The Mann family thanks you for The care you provided to my daughter.','2019-09-15 15:23:43.000000','237100240304186'),('2390534277869598',1,'As always, superior care from awesome Copperfield team at SignatureCare! Vy was kind and prompt, RN Maynard, RN Angel and Rad tech Jessica were all on point when it came to handling my VERY uncooperative 2 y.o.😬 Dr. Dang was very gentle and comprehensive with the diagnosis and treatment. Great job all around! #TeamSignatureCareCopperfield','2019-06-27 19:47:05.000000','461782867645453'),('2390586477658973',1,'Excellent care and service, Shanna\nManny\nAdrianna\nMagli\nPete\nDr Osiecki\nwere all very nice and very professional.','2019-06-10 18:41:51.000000','237100240304186'),('2391815424254909',1,'Absolutely great service, Dr Chen is very quick and efficient! Would def recommend','2018-07-25 01:26:39.000000','1608991329419166'),('2393100810968679',1,'The Amy, Nichole & Dr. Zheng are helpful and nice they attend to our son needs he was I. A car accident this just to say thank you.','2019-07-05 16:23:01.000000','1787364321589026'),('2393564330874626',1,'I recommend everyone Dr. Kotey, Robert my nurse and Rachel and Amy with my service!','2019-03-18 01:03:55.000000','544778295636544'),('2393779330670137',1,'My husband fell when we were moving into our new home and hurt his leg and ankle pretty bad. The staff at signature was kind, friendly, and fast. I highly recommend!','2019-10-06 14:36:51.000000','235046800697531'),('2397237977179704',1,'Rayven is amazing, she gave us gooood snacks when we brought a friend in!','2019-05-31 01:52:10.000000','326347177710316'),('2397915773555844',1,'The entire staff was nice, caring and very helpful. Not once did they make me or my son feel like we were an inconvenience which if you live in Midland you know that\'s rare around here. They even double checked my son before we left. He was ready for discharge and both the nurses and Dr decided they weren\'t comfortable letting him leave until they checked a few more things.','2019-01-14 08:13:55.000000','596022027480375'),('2398327056856762',1,'I came in for a rash that broke out all over my sons body after being dismissed at another ER for it not being emergent. They got my mom and son back while I was still checking in because my son was crying and looked visibly in pain. The nurse was super attentive and friendly. This place doesn’t feel anything like the normal ER. Everyone I have encountered has been amazing beyond expectations ❤️ we will be coming here from now on if we need to go to an ER.','2019-07-08 02:17:12.000000','251751275488925'),('2398328787072522',1,'Alvean A\nMarcus B\nJocelyn A\nBrian w\nTodo muy bien Gracias!!!','2019-11-20 21:59:30.000000','167959367441528'),('2399794653647522',1,'everyone is so nice and helpful','2020-07-28 21:07:50.000000','251751275488925'),('2400472906849610',1,'I got great care! Lucas, Sherri and Kim Did a great job of taking good care of me and explaining about the care they were given me. And the warm blankets give you the best comfort. Dr. Curtis explain in great detail what was causing the problem and how to take care of myself until I felt better. Thanks everyone!','2019-05-29 12:48:13.000000','235046800697531'),('2401528946612689',1,'Awesome staff, got everything done in a timely manner and had great customer service. Aileen and Shaunda helped us out by explaining our insurance options thoroughly. Would recommend this place to anyone.','2019-10-23 19:08:08.000000','1698192877146046'),('2403565956416846',1,'Everyone was very nice and informative','2020-02-01 01:45:53.000000','1787364321589026'),('2406422316120923',1,'From the minute I step in i felt very cared for staff greeted me and pointed me to the right direction. I really loved the fact that Amy was able to get me through the registration process fast which usually takes long.irving was able to let me know what pain I was having while doctor faig helped me back to health in all I can say I had a great experience truly a good place to visit for any emergency','2019-09-13 01:58:52.000000','829264323932850'),('2408706469162361',1,'Super nice staff, patient and addressed all of my concerns. \n\nThey do not yet take Tricare; but because of my care I’m definitely willing to return. \n\nTotally recommend this ER.','2019-03-16 21:16:42.000000','251751275488925'),('2409430019075646',1,'I recommend everything from the moment I walked into the building the atmosphere was homely and Angela was amazingly caring and made me feel as if I was royalty. Thanks for that.\nThen I was introduced to my nurse Kat theres so many things I can say about her . Her heart is huge and its filled with so much love and passion. She approached my health problems as if we was battling them together she never once made me feel as if I was just a patient she gave me her upmost attention and continued to place a smile upon my face and for that I will be forever thankful. \nNow let\'s talk about the care I have received from Dr. Rose what can I say simply amazing she was so wonderful when it came to my care I couldnt have asked for a better doctor thank you Dr. Rose for you astonishing care you provided to me. \nLast but not least the compassion that not only I received but they treated my family just as amazing as to making sure they were ok and embraced them with the same amount love as I received. To my medical team I want to thank you all for all that you have done for me.today.','2019-04-24 08:47:43.000000','251751275488925'),('2410482532304642',1,'Nurse Kim Corey and Doctor Dewaal where very helpful. And very informative and great with children.','2019-04-17 05:28:29.000000','596022027480375'),('2410564235937769',1,'The service was exceptional the staff were great and the service was quick. The doctor really took her time with me to make sure I had the best care possible and every problem I had was addressed. This was by far the best ER I have ever been too! Strongly recommend to anybody!','2019-10-27 20:24:17.000000','251751275488925'),('2410750218969550',1,'Lisa V. Is the best! Went there not so long ago and she was very helpful and listened to everything I had to ask! Overall great experience! Will return again!','2019-06-06 20:44:04.000000','596022027480375'),('2411739445607256',1,'I was treated so well from the moment I walked through the door. The entire staff was friendly and caring. The wait to be seen by a dr was almost non existent. I would recommend all my family and friends go here when in need.','2019-08-23 03:39:38.000000','299216637560955'),('2411953305494533',1,'Luke, Kara, Linda, Gunner and Dr Ashbrook were amazing and stitched my father in law right up!','2019-07-21 04:18:27.000000','235046800697531'),('2412582965428020',1,'they are awesome and I\'d recommend them a thousand times over','2019-01-02 21:56:38.000000','235046800697531'),('2412827215599656',1,'Excellent service, great staff.','2019-08-28 12:48:11.000000','461782867645453'),('2413635125522109',1,'Incredible staff.highly recommended. Dr.Kotey M.D. was great.','2019-08-22 01:26:23.000000','544778295636544'),('2413744258716672',1,'I came in for a quick check up and I must say Doctor M.Wang , Patty from registration , nurses Rachel & Rommel , the radiologist Fatima and the Er Tech Nikia were AMAZING !!!','2019-08-29 05:14:45.000000','544778295636544'),('2414613095232745',1,'Fast, kind, good listeners. Anthony was awesome.','2019-01-14 00:18:51.000000','326347177710316'),('2415047235440909',1,'Love there service and the way the attended us my baby girl loved the place an the help from Dr. Miller, Theresa, Sadie,Ben, Maria and Sidonie','2019-07-27 02:04:10.000000','237100240304186'),('2416969551684392',1,'Everyone was very pleasant with me. I want to thank Dr. Jaber, Nurse Chantel, and Registrar Tanishia.','2019-10-21 07:42:45.000000','461782867645453'),('2417047728552285',1,'I came to signature care to check myself cuz I swallowed a diamond bur the Receptionist Patricia was amazing so friendly and very professional she directly took my info and took me to see a doctor and all the staff was wonderful, and make sure I was going to be ok before I leave the premises..','2019-10-05 03:17:18.000000','167959367441528'),('2417318788534552',1,'Nurse: Keira \nTech: Ben\nRegistration:Nancy\nDoctor:Vaagenes \nAwesome staff! \nQuick and loving care! 🤗','2019-10-10 01:24:52.000000','237100240304186'),('2419052404784368',1,'to start out the registration lady Alicia was very polite and very quick with paperwork. nurse Erica and tech kanyon have a wonderful bedside manor. overall the speed as to which I was seen and had things done was awesome. I will recomend signature care to all friends and will be my first choice over the hospital or urgent care.','2019-07-20 17:32:48.000000','299216637560955'),('2419268944792379',1,'The service was fast and very friendly I will definitely come back when in need. Awesome service!!','2019-06-10 02:54:22.000000','544778295636544'),('2419967631419211',1,'Great staff, quick and prompt.Nancy, Marcus,Manny and Dr Vaagenes were amazing!!! Best place for your emergency needs.','2019-10-10 01:17:10.000000','237100240304186'),('2420325124656357',1,'Dr. Edwards, Receptionist Keera, Nurse Eda everyone was very nice and made me feel very welcome, the dr and nurse explained everything, it’s one of the best experiences at a drs office that I’ve had in a long time','2019-06-09 12:23:53.000000','544778295636544'),('2421600738079453',1,'Everyone was great! Sita at the front was prompt & so helpful, the nurses Kim & Lisa were so sweet to my daughter, & Dr Miller is getting her fixed but also helping me with severe allergies!! Win win!! \n\nWe didn’t even have to wait long at all! Within 15 minutes we were in a room & had seen the dr!','2019-09-16 01:56:19.000000','596022027480375'),('2421607811278178',1,'All the staff at this ER is amazing. Cavasos, Chantel, Angel and Tanisha were so helpful and answered every question we had.','2020-02-17 05:34:02.000000','461782867645453'),('2423434024545364',1,'Every thing is so clean the children’s room is so amazing it makes you forget that your really at the dr there the best my son had manny as a nurse and they made him feel so comfortable definitely recommend','2019-06-10 14:38:12.000000','237100240304186'),('2423824894375658',1,'I was referred to SignatureCare after a visit to minute clinic for back pain. I was expecting the same experience as your usual emergency room visit (chaos, long waits, unclean waiting rooms). I was pleasantly surprised when I walked in. I was greeted by super friendly Jocelyn. The waiting room was pristine. Within 5 minutes I was taken back to the see nurse Tricia. I was offered a warm blanket while I wait (omg seriously?!?) as well as a beverage and a snack!! If I weren’t in so much pain I might have mistaken it for a spa! Dr. Nguyen and nurse Alvean both had excellent bedside manner. SignatureCare Cypress will now be my go to for any future urgent care needs.','2019-10-02 17:13:04.000000','167959367441528'),('2424059950945507',1,'Great sevice, very helpfull, quick service by Dr. Ding and Amy at front desk','2019-04-27 20:20:23.000000','1609539722669429'),('2424944354266886',1,'Your in and out unlike other places','2019-09-03 04:36:43.000000','596022027480375'),('2426468954042373',1,'I had a wonderful experience the staff was very professional and friendly. Amy Agnes RN was superior! Dr. Faig was very good','2019-05-05 02:45:14.000000','1608991329419166'),('2428474370520003',1,'SignatureCare Emergency Center - Stafford never disappoints. Staff is warm and welcoming. Super professional and great customer service! No wait time is definitely a bonus!','2019-04-16 23:45:48.000000','1787364321589026'),('242860630074906',1,'Dr. Wang actually listened to what i had to say and his team was super sweet and understanding, Kristina, Tino and Veronica than you so much for all your help!','2020-03-14 19:50:22.000000','829264323932850'),('2428835357415893',1,'son muy serviciales amables','2020-07-22 20:21:01.000000','1787364321589026'),('2429103053777544',1,'Dr.Zheng was amazing she gave me something for my pain right away. \nVery fast service. \nThe staff was amazing as well very friendly (pales and amy) I definitely recommend this emergency care center😊','2019-07-05 15:32:01.000000','1787364321589026'),('2429298990718435',1,'I recommend you to come out to your local signature care .They have the best service,Very polite, and friendly.they are the best! \n\nThanks to Doug,Linda,Jennifer, and Dr.Henderson for the help today!','2019-12-24 03:55:20.000000','235046800697531'),('2429860527050611',1,'Awesome service healthcare resolution wonderful medical staff','2019-11-02 02:15:05.000000','1609539722669429'),('2430108670401093',1,'The Staff at Signature Care were friendly and very profesional . l Would like to send a warm thanks to Teresa, Jessica, Kelly, Hoan, Cynthia and last but not lease Dr Zhen, who did a fastastic Job. WELL DONE','2019-09-01 22:05:36.000000','1765121397101399'),('2430473780525822',1,'Good experience. Nice facility and really good staff and providers. Highly recommend.','2019-11-17 20:16:32.000000','251751275488925'),('2430840226926132',1,'Dr. Craig was phenomenal. He addressed my husband’s concerns and treated him as a person rather than a number. Signature Care where customer service is a priority. \n\nSigned,\nKimberly Brown','2019-04-13 22:48:30.000000','251751275488925'),('2431109536933508',1,'Dr. DING was quick and very nice. Amy was very sweet and Joseph is kind and informative.','2019-04-27 13:25:01.000000','1609539722669429'),('2431664643542272',1,'The service was excellent.receptionist preethy was super nice','2017-02-26 16:09:33.000000','544778295636544'),('2434039573529454',1,'I have spent most of the day here & these guys are absolutely great!! they found that I have pneumonia & fixed me up with 2 different antibiotic in my iv...I will definitely be using them again...hopefully not soon tho!!','2020-01-14 21:36:30.000000','299216637560955'),('2436036813082485',1,'Amy was very helpful with my wife','2019-03-10 01:57:06.000000','1608991329419166'),('2436470143055104',1,'I love the care I receive at signature care. All of the staff is friendly and I never have to wait long. Best place in town.','2019-10-10 01:20:31.000000','237100240304186'),('2436873213000625',1,'Manny,Delphi,Sedona,senaida \n My experience here at SignatureCare was great the staff here are very nice and tend to all your needs in a prompt manner,the staff here answer and help with any concerns I may have or need answered...I will definitely come back and highly recommend SignatureCare...💗','2019-06-20 05:24:23.000000','237100240304186'),('2438223442899513',1,'I love this location. The staff( Dr. Henderson, Sarah G, Laura H, Daniel B, and Tanishia W) is really friendly. The check in process is fast and your out quickly. It\'s an emergency center that make you feel at home. They simply care.','2019-10-23 00:50:57.000000','461782867645453'),('2438521682867610',1,'Kim and Allison were great.','2019-09-01 06:50:35.000000','596022027480375'),('2438777206446152',1,'Signature emergency center is literally the best place togo in college station if you’re seeking attention quick , every individual is caring and very patient . Rebecca. V. helped us a lot with extra information to better our services here at signature care .','2019-09-19 01:09:11.000000','326347177710316'),('2440151252674700',1,'Had a great experience would definitely recommend them','2019-09-09 21:41:50.000000','1609539722669429'),('2440891822612106',1,'I had a great experience here. Lindsay checked me in at the front desk and was super friendly. Doctor Vakey is very knowledgeable and kind hearted. Nurse Jacob will make sure you are comfortable the whole time. The staff is overall very professional and will work hard to make sure you are feeling better fast!','2019-04-23 17:15:10.000000','544778295636544'),('2443036662409077',1,'Great care!!! Thank you nurse Theresa. she made us feel welcome and helped us so much! Thanks!','2019-09-15 21:46:22.000000','237100240304186'),('2444842172237181',1,'Alyssa was amazing and the service was outstanding.','2019-10-05 22:50:29.000000','544778295636544'),('2445771045433012',1,'definitely recommend! staff was super friendly and prompt! very clean!','2019-05-08 21:41:49.000000','237100240304186'),('2445807635527024',1,'You never hope to visit the ER while on vacation, but I\'m glad I ended up at this facility. It\'s clean and up to date. I received good care in a timely manner.\nDr. Thomas and all on staff that day took good care of me. Thank you to: \nNurse: Dawn E S \nRadiology Tech: Jacqueline F \nFront Desk: Leslie A F\nfor your help in all things medical. And Uber.','2019-11-02 19:22:53.000000','1608991329419166'),('2446269795393470',1,'Everyone is always so kind and helpful. We are always treated with great care. Tiffany is so kind when we walk in. Jennifer was so nice and informative. I would recommend signature care to all my friends and family.','2019-06-14 03:53:21.000000','299216637560955'),('2446520245627257',1,'everyone here is very friendly a d quick with no hesitation I didnt even asked for a warm blanket and they gave me one the doctors are friendly and dont push you to do nothing your not comfortable with either','2019-09-03 19:31:50.000000','544778295636544'),('2447508048601330',1,'GREAT STAFF! Amy, RN Jeff, Josh er tech, and Dr. Yusuf. Thank you for everything 👌🏽','2019-05-21 02:23:30.000000','1608991329419166'),('2447879698787835',1,'Beautiful, state of the art location. Great, knowledgeable, friendly staff. My Doctor, Adam was amazing and took care of a unique problem, at an odd hour. How awesome and convenient to have this nice 24/7 care facility in the heart of Montrose!','2017-03-12 22:57:34.000000','1608991329419166'),('2448781155148610',1,'Keera was very nice at the front! All the nurses and doctors were very nice as well.','2018-10-19 04:33:42.000000','326347177710316'),('2449557151795867',1,'We were really impressed w/ this location ! As soon as you walk in you were greeted by a very friendly person at the desk she was sooo nice ! She had us checked in quickly, paperwork done before you even know it or maybe because I was in so much pain either way she was quick ! The facility was extremly nice and clean! Our physician Dr. Nguyen was easy to talk to he actually listened he didnt brush off our concerns he wasnt in a rush to leave when we asked questions and actually made sure we understood what he was talking about when it came to our \"my\" care & what we were initially there for. Everyone there at the facility was extra nice the atmosphere welcoming instead of cold & intimidating like most places thankfully. I would definitely recommend people to go here I wish it was a full clinic because if I had a choice I\'d go here for all my health care !','2019-10-07 05:54:37.000000','251751275488925'),('2450296415220018',1,'Very clean, professional, and proficient! There will never be another ER in Killeen that i will go to! AMAZING !','2019-10-28 21:49:21.000000','251751275488925'),('2450508108338104',1,'Signature care is absolutely awesome! Sita, Kim, Andrew and Allison made me so comfortable and took such great care of me! I would recommend Signature care Emergency Center to everyone. Thank you all for taking such great care of me!','2019-09-02 04:21:11.000000','596022027480375'),('2451578534862306',1,'They were really helpful and nice . Dr. Plante and their staff manny/Adrianna and Maria','2019-06-20 21:31:16.000000','237100240304186'),('2452101258167667',1,'For the multiple times I have come, all my experiences has been great. the staff Dr Patel, and my nurses Agnes, Joey, Josh and Amy were very nice, professional. Definitely coming back again!','2019-05-07 04:04:02.000000','1608991329419166'),('2452224918121414',1,'No one likes to visit an ER, but this is the one to go to when you need it.','2018-12-14 23:38:37.000000','829264323932850'),('2452698911479159',1,'Great ER. Attended my son very quickly. Great care!','2019-10-05 02:27:39.000000','237100240304186'),('2453841624718766',0,'Well first of all I was promised a gift card for Starbucks if I had filled out some information. To this day I never received it. I\'m talking about 4 months ago. What a joke!','2016-12-01 04:37:53.000000','1609539722669429'),('2454106207967015',1,'The receptionist was really welcoming, soon as i walked in i had nothin but my nurses && techs gave me their undivided attention. I would recommend everyone to come here. Thanks a lot Robin, Billy, & Courtney for everything.','2019-05-08 07:14:50.000000','299216637560955'),('2454187321563534',1,'The fastesT service I’ve ever had. Super nice people!!','2019-10-17 12:26:47.000000','251751275488925'),('2455792627968768',1,'Adam, Kara, Chris, and Aileen were absolutely amazing today. A special thanks to Dr. de Waal for his commitment to his patients. We’ll be back if we need ER services again!','2019-11-18 19:15:32.000000','1698192877146046'),('2455815534544348',1,'This place is awesome. I love it here.❤️\nMiguel and Viv are an awesome team☺️','2020-01-12 16:46:30.000000','1609539722669429'),('2457789890973831',1,'Had outstanding care from a great team Robin, Billy, Courtney and Dr Simmons. Fastest, most efficient treatment we have ever had! Thank you!','2019-02-19 04:11:23.000000','299216637560955'),('2457962174279686',1,'The receptionist Therisa was nice and fast. The nurse and Dr. Daniels was friendly and very professional in making sure I had a speedy recovery.','2019-09-28 05:26:06.000000','1648645701907657'),('2458489177600225',1,'Great Service,Fast, and Friendly. I totally recommend this Urgent Center. They answered every question I asked and made sure I was in and out. Mrs. Natosha was freaking Awesome.','2019-10-27 20:27:38.000000','251751275488925'),('2459914527384980',1,'Received excellent care from Bethany, Magali, and Dr. Osiecki. I will definitely recommend to anyone who is needing emergency medical care.','2019-08-06 16:19:02.000000','237100240304186'),('2460015974020344',1,'Totally recommend this place super friendly staff specially cindi on front desk and reasonable pricing','2019-06-19 04:50:30.000000','544778295636544'),('2461293280806905',1,'this is a great place great people','2019-10-22 00:31:12.000000','299216637560955'),('2461693580529065',1,'All the staff at signature care are amazing. Robin, Austin, and Courtney we\'re all great','2019-07-10 01:41:00.000000','299216637560955'),('2462037563859493',1,'very fast and friendly highly recommend','2019-07-20 01:15:43.000000','596022027480375'),('2462710533981887',1,'I came in today with cough and chest congestion. I was taken care of immediately. Very nice and attentive staff and clean environment. Dr. Wang was assuring and informative. Sindy at front desk was very pleasant. Would definitely recommend.','2020-03-07 18:17:48.000000','544778295636544'),('2462764703826939',1,'You get seen right away not much of a wait. The staff is attentive to your medical problem. I would recommend any one to go there if they have a medical emergency','2017-07-25 01:18:20.000000','544778295636544'),('2464024733815935',1,'Great experience really made my child feel safe and okay even gave him a bear! Nurse Alvean, patrica c and doctor Nguyen are recommended.','2019-12-20 20:37:08.000000','167959367441528'),('2464090443697591',1,'I brought my son here for a visit. The wait was less then 10 minutes. Alvean,Patricia, and Ann was so nice. They took all the tests that was needed to assist us to give a accurate answer. This was the best visit I ever received from a urgent care. I will tell my family and friends to come here instead of a hospital emergency.','2020-02-09 18:21:29.000000','167959367441528'),('2464360460353709',1,'Lisa, Thoresa, Ector, and Tabitha took very great care of us today. Greatest care we’ve ever received.','2020-01-23 21:51:17.000000','237100240304186'),('2464505440322157',1,'dr.cavazos and Alvean muy biern','2020-03-17 17:22:47.000000','167959367441528'),('2464793487071287',1,'the staff was very welcoming and friendly very helpful, people like fatima, chantel, tanishia','2020-03-09 04:14:37.000000','461782867645453'),('2466055430106745',1,'Great facility.Speedy customer service and very professional. Dr very knowledge and able to assist.','2019-06-23 04:19:21.000000','167959367441528'),('2467874769963919',1,'the service was very good and fast the staff was awesome','2019-08-28 14:33:33.000000','237100240304186'),('2468863746701974',1,'Incredible service and kindly caring staff on all levels!!!','2020-02-03 05:45:46.000000','829264323932850'),('2470905359604231',1,'Norma has been my tech more than once and always does an awesome job! Nurse Hamzah and Dr. Sylvester we also wonderful. They covered all the bases and communicated very well!','2018-12-29 15:47:43.000000','1608991329419166'),('2471776759759191',1,'Helpful and agreeable. I was well treated and very well taken care of by the doctor Nguyen and the nurse Susan, especially by the receptionist Tanishia','2019-12-04 01:53:17.000000','461782867645453'),('2472050256207170',1,'The staff here Dr.Iheme, Amy, Jani, Tricia, Sean treated my husband and I like family took good care of him and are very nice.','2019-07-19 22:21:03.000000','167959367441528'),('2473529406004646',1,'Nurse Nikki and Flad tech Jessica were very nice and kind even the doctor I will come back if needed and I will be recommend people to you guys','2019-04-23 02:38:33.000000','167959367441528'),('2473545112677356',1,'Kim was very fast and very friendly and a great sense of humor','2019-06-29 09:59:47.000000','596022027480375'),('2473975232616501',1,'I was so impressed with this facility, I entered with servere back pain. The staff, Dr. Jerry Chen, technicians and nurse Laura were all very friendly and professional and made me feel like I was a priority. A special thank you to Evelyn at the reception desk. They did everything to make me comfortable, even offered me a blanket while we waited. The facility is beautiful and spotlessly clean. I highly recommend them and would certainly use them again if the occasion arose.','2017-07-25 14:28:33.000000','544778295636544'),('2474534002759133',1,'norma , amy , dawn , eve and dr.leavitt was very helpful during my visit . They made sure we had everything we needed .','2020-02-02 20:29:20.000000','1608991329419166'),('2475401875813736',1,'I\'ve been to SignatureCare twice and each time it was a pleasant place to enter, very clean and tidy. Today, Lisa at Registration was very friendly and welcoming. The wait was minimal and Corey the Paramedic greeted my grand daughter and myself with kindness and also had a great since of humor. Savanna, the nurse was super sweet and on top of the situation, making sure both of us were comfortable and helped with the understanding around the procedure. Jaime, the radiology tech was also very efficient and professional. The ER Physician, Dr. Plank was professional, calming and oversaw the procedure with expertise, offering information around the situation. Once we were done, checkout was speedy and at the same time Lisa was super sweet. Very positive environment and we would recommend SignatureCare to anyone wanting to get in and out, yet be cared for with compassion and professionalism about your well being. If I have to go to ER, this is my top choice!! Thank you all very much!!!','2019-06-19 22:39:48.000000','596022027480375'),('2476205182658792',1,'Thank to Savanna/Leo,Carolyn, Delphi and Jolynn. They took very good care of my daughter.','2019-10-09 20:20:20.000000','596022027480375'),('2476361079242536',1,'I had a great experience, very fast and friendly I love coming here ,Great service Quick workers Friendly faces Love it','2020-02-02 19:29:01.000000','829264323932850'),('2477713642482169',1,'Excellent service and staff','2020-01-25 18:32:22.000000','299216637560955'),('2477763462245089',1,'I love the service everybody was great','2019-08-13 04:09:13.000000','167959367441528'),('2478912528851046',1,'Went in at 11:38 pm, the staff was so helpful! My 2 year old son had a little head injury. He was fighting them like a crazy but yet, they were so gentle and kind! Very patient! They took amazing care of us! Definitely would recommend! Thank you again, Jocelyn, Lisa V., Allison and Dr. Huerta!','2019-10-12 06:24:36.000000','596022027480375'),('2480212928713228',1,'Super friendly vibe. Very clean, fast & thorough! Very kid friendly. Explained every step of the visit. In & out quickly. Definitely would recommend to others! 💕','2019-09-02 03:32:46.000000','251751275488925'),('2480725112170141',1,'Excellent service, great staff always with a good attitude!','2019-09-28 04:44:04.000000','596022027480375'),('2481031838815389',1,'Very good and kind service','2020-01-30 20:53:56.000000','544778295636544'),('2482584531774962',1,'Very nice crew. Dr Carpenter sat down with me and listened to my concerns and problems. Michelle and Kim were on top of their game getting me taking care of. Thank you guys for making me feel welcome and better','2019-04-11 17:50:14.000000','235046800697531'),('2482996655056443',1,'Thank you for helping our son.Great at service','2019-05-13 03:32:41.000000','596022027480375'),('2484878088290539',1,'Great service \nQuick workers \nFriendly faces \nLove it','2020-02-20 06:40:23.000000','829264323932850'),('2486176461421270',1,'Wonderful nurses and doctors. Kind and thorough.','2019-09-17 15:59:36.000000','829264323932850'),('2486259304770811',1,'I love it here. Everyone was so welcoming! When I first walked in Amy was super sweet and willing to help me with all the questions I had. Pailes took me back as soon as I sat down to fill out paperwork. And they offered me a warm blanket (which has never happened before). And Dr. Zheng knew exactly what she was doing.','2019-07-05 16:40:07.000000','1787364321589026'),('2487055011558809',1,'Dr. Mauldin, Alvean, Patricia at this location was great. Informative','2020-01-25 18:51:58.000000','167959367441528'),('2487097327968545',1,'Highly highly recommend. Very fast, professional, and polite. My ER of choice by far and this is my fourth visit. Anthony the Registered Nurse, J.R. the X-ray technician, and Dr. Harjai were so helpful! The reception was also very polite. Thanks guys!','2019-06-14 11:47:50.000000','326347177710316'),('2487227928199749',1,'Always great service when we come in.\nDr. Daniels was great in explaining what needed to be done and what was best option. The staff was great as well.','2019-10-01 05:57:07.000000','1648645701907657'),('2489007914468808',1,'Great place, helped me with my ear. Been here twice, would totally recommend. Dr Thomas,MD \nSusan R. \nLaura H. \nDaniel B.\nBriseida M.','2019-11-19 04:45:20.000000','461782867645453'),('2489421687735223',1,'Manny & Dr. Osiecki were AWESOME! Thank you so much for taking care of my husband that has a great fear of shots. Very friendly staff and super fast service.','2019-06-08 15:53:08.000000','237100240304186'),('2494610634095732',1,'They did amazing and we are very happy with the service','2019-09-12 05:20:42.000000','299216637560955'),('2494687920582794',1,'Great experience - very professional and did not wait long. Thank you Dr. Dewaal, Marty, Tina and Christina C','2019-06-17 20:39:51.000000','1698192877146046'),('2495351653812049',1,'Great place!! Would definitely recommend. Doctors were very nice and helpful.','2017-05-06 00:21:37.000000','326347177710316'),('2496039073763580',1,'Wonderful experience front desk Ashley and Jennifer were great','2019-03-28 17:27:07.000000','299216637560955'),('2498165210197174',1,'had one of the best ER experiences ever at the Copperfield location. Could not have asked for better treament.\nAshley S. made registering a breeze. My nurse Racheal B. was great with taking all my info, and she visited with me for a little while, made sure i had a warm blanket and water. The Rad tech, Jessica N. made sure i understand everything that was going to happen. Dr Faig, was very clear on what was going on.','2018-12-27 13:55:06.000000','544778295636544'),('2498398370209339',1,'I had a great experience here. Ms. Taneshia, Ms. Lynn and Dr. Dang were super helpful! Thank you guys for everything.','2019-11-18 05:54:47.000000','461782867645453'),('2498602523738169',1,'Dr. Pham and Patricia were amazing! Great gentle and caring services. Also great one on one care.','2020-01-30 21:06:57.000000','167959367441528'),('2501365810114662',1,'Vale - everyone was very nice not a long wait at all','2020-01-14 00:08:24.000000','1787364321589026'),('2505928469426674',1,'I had to get checked out due to an accident at work and Maria, Manny and Dr. Osiecki made it a good experience. Definitely recommend.','2019-06-08 22:27:01.000000','237100240304186'),('2508006702644676',1,'Had a great experience with the dr.','2020-03-03 22:37:16.000000','237100240304186'),('2510225175681913',1,'The customer service is awesome! This is the second time we’ve been here and they take really great care of their patients','2019-11-15 18:49:17.000000','167959367441528'),('2510706142514853',1,'I\'m very pleased with the my care at this ER , Becca adrian Ben therisa and the rest of the crew were very nice and quick to get me help!!! Thx again!','2020-04-08 06:51:56.000000','237100240304186'),('2511892355751680',1,'Perfect place in and out love the service and doctor’s and front deck and nurses. \nDr. Smith \nOlivia M.\nER tech Jonathan \nRommel & Kayla RN\nRyan Rad tech\nThank y’all!!','2020-01-04 00:57:49.000000','1765121397101399'),('2511985732158174',1,'This was an awesome experience! Doctor Morrical and technician Juan were very helpful.','2019-09-19 18:17:09.000000','326347177710316'),('2513886645496367',0,'I like signaturecare emergency center,but not this one. The doc is very nice and very useful. \n There is a lady in the front is so rude ! I feel she is discriminating against me and feel like i can\'t afford medical expenses.\n The situation is I visited Odessa signaturecare twice I have been charged for one time . Today I am calling to ask if I can get more medicine. And asked do I need to pay again? She impatiently said you come visit everytime have to pay everytime . Oh ok i mean I can pay it . But I just confused why same company different area Different charging methods? \n Maybe I think wrong .i should go to Odessa one better!','2020-02-04 17:53:00.000000','596022027480375'),('2514013395311650',1,'Great people! Great service! Fast!','2019-09-27 04:11:09.000000','596022027480375'),('2514065908661917',1,'Hands down the best er I have been too. From the front desk receptionist to the doctors in the back they were amazing and nice! Definitely recommend this place !','2019-10-30 18:52:41.000000','251751275488925'),('2514305632172944',1,'Went in there the other day and Shanna was really helpful and helped me with every question I had','2019-12-06 02:12:06.000000','237100240304186'),('2515287178696065',1,'Patricia, Alvean and Marcus were amazing they took great care of my wife!','2020-02-06 19:24:30.000000','167959367441528'),('2515986328499412',1,'Thanks you guys for helping my daughter. Both teams were great. Thanks Dr. Lindsay, Tanishia, and Sarah.','2019-12-06 01:42:31.000000','461782867645453'),('2516155878411572',1,'Friendly staff! I was see immediately & soon diagnosed with gallstones. Great expererience.','2018-11-08 20:41:40.000000','829264323932850'),('2516159598468218',1,'Very great facility, I loved ever person that assisted me on my visit (Doctor Henderson, Nurse Sarah G., Rad Tech Fatima, ER Tech Elaine, and registration Tanisha) all very caring. This facility is better than going to a top star Hospital!!!','2019-11-22 06:03:42.000000','461782867645453'),('2517410324959845',1,'Awesome Dr Zheng ,Amyand Pailes,RN','2019-07-05 15:54:11.000000','1787364321589026'),('2518208518192430',1,'I would recommend this place the staff are very friendly and the nurse and doctors are great.','2019-02-01 00:27:59.000000','544778295636544'),('2519021155007654',1,'Alvean and Jocelyn are really great and the service speedy with no long wait. Love it😊😊','2020-01-08 16:04:09.000000','167959367441528'),('2519998228104299',1,'Even with everything that\'s going on in today\'s world they still have a way to make u feel welcome and the service wast excellent and quick','2020-03-24 14:13:08.000000','544778295636544'),('2521020998150391',1,'They are super friendly. Keylee is an amazing nurse.','2020-04-27 01:31:53.000000','104213804456471'),('2522004294520094',1,'they are very amazing team of people and are very good with children.','2019-09-23 23:39:28.000000','326347177710316'),('2522281291375188',1,'Fast and efficient. Always courteous and genuinely good at their jobs.','2020-01-14 01:40:56.000000','237100240304186'),('2522946217752766',1,'Thank you for supporting and taking special care of First Responders! Bedside manner is always excellent and the staff is always so helpful! \n\nPhysician: Goodman\nNurse: Cristina\nRadiology: Linda\nRegistration: Shaunda\nER Tech: Chris','2019-11-13 22:15:12.000000','1698192877146046'),('2524673341100055',1,'They are the most caring staff I’ve ever met. They make you feel very welcomed and answer any questions you may have. You can really feel how much they care. I will definitely come here again if there ever is another emergency in my family. Thank you Jolly, Keira, and Daniel for being absolutely amazing!','2019-11-12 06:55:04.000000','237100240304186'),('2524739527576305',1,'SignatureCare Emergency Center - Paris is great! I\'m offered a warm blanket every time and all the nurses are very attentive and kind. 10/10 would recommend to anyone in need of quick, genuine care in the Paris, Tx area. Special thanks to Jennifer C. and Tiffany for taking care of me today.','2019-06-16 00:04:10.000000','299216637560955'),('2527042564013109',1,'They took me in as soon as possible for a dog bite that occurred. They were careful with the injury and made sure to solve the issue as soon as possible. Would highly recommend. As someone without health insurance they also had affordable pricing!','2019-06-14 01:48:04.000000','1609539722669429'),('2527148627563235',1,'All the staff were very friendly and efficient. I was in excrutiating pain from a shoulder injury and they got me right in and gave me 2 shots to get me some relief then ran tests to see what the issue was. The only downside was the paperwork they have you sign about the potential costs of using their facility was scarier than the pain I was in so hopefully I won\'t see billing anywhere close to the potential costs mentioned.','2019-12-31 16:30:41.000000','461782867645453'),('2527354640672836',1,'The best place too go 😎😊👌🏾','2019-03-13 00:18:29.000000','1765121397101399'),('2528242590533679',1,'fast and clean service. they were professional. if I get injured I know where I\'m going.','2019-07-04 00:58:22.000000','251751275488925'),('2528642980596802',1,'This emergency center is so fast! And amazing staff. They actually helped me and listened to Me. Dr.Cavazos,Alvean,Thuy An & Jocelyn were great!!!!','2020-02-12 23:15:44.000000','167959367441528'),('2529397067123374',1,'Great atmosphere taken care of fast Dr Mauldin and the nurse Jose and all the staff were alot of help','2019-09-09 04:31:40.000000','596022027480375'),('2530481900315033',1,'Really enjoyed my stay at the signature care everyone was wonderful Dr. Ding and my RN Chis and also on the way out Amy at the registration desk was really helpful','2019-04-27 16:20:53.000000','1609539722669429'),('2531136267208286',1,'I received excellent care at sigaturecare emergency center. thank you vanessa g , meredith s, andrea, Dustin h, and dr dang hung','2019-12-28 03:54:33.000000','1609539722669429'),('2531146750275218',1,'Absolutely loved this ER center they were super fast friendly but specially Savanna haven’t dealt with a nurse that looked like they actually cared for their patient in a long time I’m glad I came here!!','2019-08-15 01:29:35.000000','596022027480375'),('253151902580210',1,'Tina and Ricardo really helped me so much! Lauren gave us waters and Dr.Elsbecker made me really feel at ease throughout the whole process.','2020-06-10 22:06:46.000000','1698192877146046'),('2531826103772936',1,'The moment we walked in I was greeted and welcomed. The service was quick and the staff was very knowledgeable and explained clearly why we went the treatment route we did. The front desk even gave suggestions of where I could go to get prescriptions that were needed, being it was late at night. \n\nThere is no happier or better experience I could have had other than not having to be there in the first place.','2020-02-27 15:06:11.000000','237100240304186'),('2532621366752085',1,'This is by far the BEST ER experience we have ever had! Staff went above and beyond the call of duty. Thank you so very much Dr. Ortiz, Nurse: Jacob, Tech: Jr, and Registration: Liz! You were very attentive, thorough, and professional! Most Excellent care. I highly recommend this place to anyone!','2019-03-02 21:49:38.000000','326347177710316'),('2533055106810298',1,'I love this Emergency Center they take care of you in a timely matter, and they treat you with care.','2019-12-01 21:01:40.000000','544778295636544'),('2533487276980508',1,'Super friendly staff! They did a great job!! Thank you so much! \nCavasos\nChantel\nAngel\nTanishia','2020-02-17 05:32:59.000000','461782867645453'),('2534603799902484',1,'AMAZING!! \nStaff and facility were perfect! \nDr. Chukwu, RN Churiah, and front desk Amy were so pleasant!','2019-03-10 04:19:28.000000','1608991329419166'),('2539572096169776',1,'Good service! All personnel is very nice! Will recommend to friends and family. Definitely felt much better when leaving medications worked and knew what I needed.','2020-01-25 17:06:18.000000','1765121397101399'),('2539603026356889',1,'If feeling I\'ll this place is the place to go erika and Jessica S very helpful','2020-02-13 19:01:18.000000','237100240304186'),('254072812224180',1,'Dr. Yusif\nAmy A.\nChuriah M.\nNormal T.\nEve M.\n\nAmazing care and service. Made me feel super comfortable overnight. In the best hands for any emergency.','2020-01-24 17:36:55.000000','1608991329419166'),('2541256932617762',1,'The staff were friendly, helpful. I would definitely go back if needed. Dr. Thomas, nurse Sarah G., Rad Tech Laura H., Er Tech Daniel B. Registration Tanishia W.','2019-11-20 08:30:11.000000','461782867645453'),('2541531119420905',1,'The staff here are always very welcoming and they make sure I have everything I need. They get you in fast and make sure I get all the care I need.','2020-02-14 19:16:42.000000','251751275488925'),('2542651999113803',1,'Tanishia made my visit very comfortable and was very helpful with information about my son infection','2019-11-22 00:35:57.000000','461782867645453'),('2542947745729232',1,'My nurse Adrianna and radiology tech Magali took great care of me. The Dr. was very comforting.','2019-07-19 22:06:19.000000','237100240304186'),('2542956079091336',1,'Excellent service and was very fast!','2019-11-23 19:11:44.000000','326347177710316'),('254334622653602',1,'Lauren helped with questions and provided me with a refreshing beverage during our wait for the Covid test. \nDr. Elsvecker, Chelsea, and staff were wonderful!','2020-06-09 21:44:37.000000','1698192877146046'),('2543963082365024',1,'thank you for all your help. tou are awesome Daniel , Jocelyn, vanessa, Alexis, Meghan, Dr Patel, you giys are awesome!!!','2019-10-17 05:30:06.000000','544778295636544'),('2544429448920485',1,'\"GREAT STAFF\"...Dr. Lindsay, James my RN 😊❤\' Amy 😁. I highly recommend SignatureCare Emergency Center The Heights.','2019-03-14 03:42:43.000000','544778295636544'),('2545087429102134',1,'Dr Pham and the nurse alvean were very helpful on giving me the information and help I needed. Nice staff and welcoming the second I walked in!','2019-11-26 13:32:13.000000','167959367441528'),('2545974585528645',1,'Everyone at Westchase was very professional and treated me well, I was thoroughly impressed with Dr. Zhen and his staff, he erased my fears and gave me the imformation I needed.','2019-12-28 22:45:00.000000','829264323932850'),('2546321165380234',1,'This is the best Clinic you could go to! They have the best staff and explain everything to you so it’s clear on what you need to do!','2019-06-16 20:16:14.000000','596022027480375'),('2547007288715314',1,'Signature care here in Cypress has the most curteous and caring staff I\'ve ever met. Dr. O\'Mally is the best and is so considerate and understanding. Alvean A. Kelly L. Jocelyn A. Keep up the good work. Thanks. This is the BEST 24HR EMERGENCY CENTER on 1960.','2019-11-27 21:55:19.000000','167959367441528'),('2547053842014554',1,'great service literally no wait time everyone was awsome Dr. Henderson nurse Alicia tech Elaine and registration Tanishia keep up the great work','2019-11-15 01:35:06.000000','461782867645453'),('254898892608572',1,'Lauren and the whole team were great! My buddy and I work in the service industry so we decided to come get tested to make sure we were okay to take care of our patrons with up most certainty the we were good to serve everyone! They were great!','2020-06-09 21:33:28.000000','1698192877146046'),('2549043658518275',1,'Had a work emergency and Dr Ashbrooks(mr crazy) jennifer helen and tobie went above and beyond to make sure my employee was well taken care of and even gave me comfort when they were sticking her with the needle due to me being scared of needles. When we walked in the door we were nervous and we walked out all smiles and laughs such a great team you have here.','2019-10-19 18:27:51.000000','235046800697531'),('2549939691765620',1,'This place is very nice the staff is very polite and informative and the facility is very clean and nice with art work I very nice clean place to get well at...','2019-10-07 17:31:35.000000','1608991329419166'),('2550178358638721',1,'This place is amazing . Brought us to the room I less than 5 mins and immediately started taking care of our son. Doctor came in & was very smart in diagnosing my son. Our nurse, Nicole G. did amazing in helping out and making my son comfortable. I would definitely recommend coming here (:','2020-01-19 03:21:01.000000','1609539722669429'),('2550720548271992',1,'they were very caring . they took very good care of my daughter heaven. tje registrater delicia was awesome the nurse Blake kept her smiling and made sure she understood how to use her crutches. the cray tech made sure she was comfortable during her stay. The doctor was very knowledgeable he explain his diagnosis so that we could understand. there wasn\'t a long wait and we were in and out in no time. all in all it was excellent service','2019-02-11 23:49:24.000000','1648645701907657'),('2551860894869519',1,'Kim Kramer & Allison took good care of us.','2019-12-07 05:43:38.000000','596022027480375'),('2552784734967997',1,'It was like staying in a 5* hotel. Better than most hospitals. Very attentive, compassionate, and knowledgable. My wife was taken care of by so many, including Leslie, Jessica, Kenzie, and Dr. Thomas.','2020-02-20 19:42:47.000000','461782867645453'),('2553239091381463',1,'Wonderful, fast, and adequate results. \nRecommended if you are wanting in and out service. \nThank you \nLisa v., Allison, Julie, and especially Dr. Huerta','2019-10-28 00:02:53.000000','544778295636544'),('2556089667772587',1,'Keera was very welcoming, the experience here is great seen in a timely manner','2019-09-28 19:30:28.000000','461782867645453'),('2556162291097750',1,'Great place.. fast easy very informed','2019-11-23 15:35:33.000000','1765121397101399'),('2556382537785664',1,'My experience with Signature Care Emergency Center was fantastic. Cindy for sure made my night at the front desk, she is a very happy lady with a great personality and great work ethic. Will be back!!','2019-09-15 03:18:12.000000','544778295636544'),('2556692487730376',1,'Facility is clean, nice, receptionist is awesome. Doctor and all medical staff did an amazing job. will be coming here before ever going to an ER.','2019-10-03 06:45:58.000000','167959367441528'),('2558067037777861',1,'I busted my eyebrow open and had to get stitches. I was seen quickly and the procedure went great. The nurse/paramedic that assisted the doctor was kind and explained everything that was going on. The doctor was very informative about what he was going to do and how he would do it. The staff was all very nice and helpful. In the future if I have any other emergencies like this I will be going to SignatureCare.','2017-10-28 05:39:06.000000','326347177710316'),('2558708770887975',1,'very professional staff in and out got the problem diagnosed very quickly and took care of the pain quick and very nice through the whole process we always use them if there is an emergency in the middle of the night they are the absolute best','2019-10-25 00:32:28.000000','1765121397101399'),('2559112944153858',1,'the people were nice and helpful','2019-10-17 02:56:45.000000','1787364321589026'),('2560125387636814',1,'All of the staff was super helpful and nice! Especially Denise when I had questions about my insurance. Fast as well.','2020-05-17 18:35:16.000000','104213804456471'),('2560853787570801',1,'Their staff was amazing and sweet','2020-03-03 17:01:53.000000','544778295636544'),('2562979593787985',1,'Dr. O\'Malley was great help with everything,wonderful staff including Alvean A, Shazia U, Olivia P, Patricia.','2019-12-01 19:26:46.000000','167959367441528'),('2563204797334573',1,'Good services! Satisfied!','2020-02-16 18:12:07.000000','1787364321589026'),('2563672263907345',1,'we were in and out in a jiffy. clean environment, professional staffand competent docs. but i gotta be honest, unless youre in dire need of assistance, you might want to consider the costs associated with your visit. its a 24 hour emergency room so observation fees and others do apply. if i NEED to, i will be back.','2020-03-12 14:51:51.000000','251751275488925'),('2563852923637019',1,'Amy\nKat, rn\nDr.thomas \nMarcus \nThe best','2019-09-11 23:50:18.000000','167959367441528'),('256531822179481',0,'I was just denied healthcare.','2020-03-31 23:34:49.000000','237100240304186'),('2565491283520577',1,'Dr.Pham and nurse AlveanA, Trica -B,Radiology and Elida Jasmine- Registration and Aurora -Er Tech They\'re all are very nice and professional.... I recommend everyone to come and see them..','2019-11-26 16:04:29.000000','167959367441528'),('2566127636976927',1,'Exceptional care and service as always!! Kristina is AMAZING with children...truly makes or breaks the experience and she nailed it! \n\nMaya with Registration was welcoming and quick with getting us registered! \n\nGreat team at Westchase!','2020-01-24 20:42:03.000000','829264323932850'),('2566686740030342',1,'Everything, and everyone was kind and very attentive Dr. Wang, nurse Katherine. C, Casi. U, front desk registration Angela. H. I\'m very pleased!\nMs.Swift-Trigg','2019-07-28 01:18:38.000000','251751275488925'),('2566969163339024',1,'Dr.O’malley ,nurse Alvean ,radiology Shazia Er tech Olivia and registration Patricia made this experience for me a breeze and a lot quicker than hospitals.','2019-12-01 21:51:59.000000','167959367441528'),('2567091000006613',1,'I took my mom here and we had a great experience. Everyone was super friendly and professional. There was no wait when we went. They did a CT and x-rays on her and we were out within two hours. We couldn’t have asked for better service. Highly recommend. Thanks to all the staff there including Lorena at the desk, Dr. Kimball, the nurses Jacob and Remington, as well as the radiology tech and ER tech, Laura and Natalie!','2020-01-05 21:21:30.000000','326347177710316'),('2567623229953213',1,'very good friendly staff \n \nTrini,Yvonne, Dr. Anders \nJessica','2019-12-13 02:59:44.000000','237100240304186'),('2567946143259246',1,'The staff was caring and knew what they were doing they were efficient. I would recommend them to anyone who needs care.','2020-01-14 14:45:40.000000','829264323932850'),('2569001243124777',1,'Very prompt service, everyone from the registration clerk Jocelyn to Dr. Pham, was absolutely courteous and professional. Highly recommended!','2019-06-16 22:10:10.000000','596022027480375'),('2569096719986565',1,'Today was was my first time going here but the whole process was easy. Maya at registration was so friendly and check in was a breeze. Nurse Kristina and Doctor Patel explained everything carefully and addressed all my concerns. They made me feel at ease. I could not have asked for a better team to help me fight this terrible flu. Thanks everyone! :)','2020-01-26 01:11:50.000000','829264323932850'),('2571288626269089',1,'Very convenient I’ve never waited longer then 5 min to be seen! The staff is super attentive and polite. The Drs make you feel so comfortable they did awesome with my 7 yr old son that he wasn’t as scared as he was when we walked in. I highly recommend coming here, it’s rare to find such awesome customer service around here these days!','2019-08-17 16:20:57.000000','237100240304186'),('2571571713099186',1,'Brought my son in to been at Stafford and the team there was amazing as usual. Alyssa warmly welcomed us, Shaylene and Trisha were friendly and quick with the visit. So glad we came here!','2020-01-31 17:45:50.000000','1787364321589026'),('2572190012799398',1,'From the moment walk-in until walking out, super friendly and helpful.','2019-06-16 19:10:24.000000','596022027480375'),('2572418129689618',1,'i would definitely recommend signature care to my friends and family. evefyone is very attentive to my needs. patricia at registration was most helpful. she made sure everything would go smoothly.','2019-12-30 20:03:51.000000','167959367441528'),('2573278446246005',1,'Thanks for the care of my son. Tanishia and Fatima you guys were great.','2020-02-21 04:28:56.000000','461782867645453'),('2574140115975181',1,'Very friendly staff, I was seen very quickly after arriving. Everyone was very nice and professional which made my visit very comfortable thanks again Alyssa','2019-11-27 01:37:06.000000','829264323932850'),('2576825752648240',1,'Good service and staffs were really nice and helpful. Thanks','2020-08-02 19:05:15.000000','1648645701907657'),('2576935425911741',1,'Dr Appiah is the best! Great doctor that helped me feel well while i wasnt feeling good and explained to me in detail about what caused it and what he recommended me to do ! Excellent service! Stephanie is very attentive and makes feel welcomed as soon as we arrive at the clinic!! Rollie Was excellent as doing procedures and making sure everything worked out well!!','2020-03-06 08:10:00.000000','1648645701907657'),('2577047815890794',0,'A great ER urgent care facility to go for medical treatment.Arrived at 10:00am sign in and the front clerk call me to back in about 10 minute very nice friendly saff','2017-08-23 07:08:32.000000','544778295636544'),('2577200909043214',1,'Brought my daughter here tonight and the whole medical team was excellent. Dr. Daniel\'s was very informative, all around best care we could ask for','2019-12-22 01:35:17.000000','596022027480375'),('2577201192492069',1,'This is my second visit to this clinic. I went in with breathing issues which is extremely scary, however I was immediately acknowledge and taken care of, thank you Leslie and Steven. No wait time, I couldn\'t imagine waiting and not being able to breathe. RN Churiah greeted me and calmed my worry, she was attentive and patient. Dr. Souman was pleasant and easy to talk to.\n Both were kind, clear and informative. The clinic is excellent. The entire staff was professional. Thank you Eve for your gentleness and Thuy - An for checking and making sure I was good.','2020-02-27 18:41:30.000000','1608991329419166'),('2577760769148625',1,'It was a pretty nice experience got to enjoy my free sprite while Jose, Alvean, and Jocelyn where checking on my fiancé’s pain. Would recommend this.','2020-02-22 23:46:55.000000','167959367441528'),('2578935952350339',1,'We had such a great experience here not only Friday (2.14.20) when I was sick but today (2.17.20) when we brought our daughter in for running a fever. I don’t remember the team that worked Friday night or I would give them their recognition too for being so great to me and my daughter. But today Ryan, Lucas, Kim and Eric have especially been so great to my kiddo. Thank y’all so much !','2020-02-17 22:38:03.000000','235046800697531'),('2579797398751019',1,'Lucas Kim and Sherri were awesome and very friendly.','2019-08-15 19:20:15.000000','235046800697531'),('2581240821924634',1,'Great staff and caring doctors','2019-12-31 23:16:57.000000','251751275488925'),('2581939258718035',1,'great service and really nice staff','2020-02-06 18:23:23.000000','544778295636544'),('2584565588267629',1,'This is by far the friendliest staff I have encountered! Sherwin, Irving, Stephanie, and Thelma were all so amazing and made me feel 100% comfortable! 10/10 would recommend!!','2019-09-04 23:26:36.000000','829264323932850'),('2584802275112337',1,'Did a great job checking out my son’s wrist. Got seen and fixed up pretty fast! Big thanks to his care team: Dr.Nandimandalam Nurse Sam L, Debriel M. Kenyon H','2020-03-19 22:11:10.000000','104213804456471'),('2585503141772180',1,'I would 100% recommend this center to everyone. i want to thank Dr. Rose, Nurse Christina R, Radiology Linda, Registration Christina C. and the rest of the staff for their 100% outstanding services. I give them a 5 stars rating.','2020-01-26 18:44:29.000000','1698192877146046'),('2585688454788038',1,'Er is the best in the entire world!','2019-06-26 00:18:13.000000','596022027480375'),('2585910741450736',1,'Very caring staff Dr Tran, Staci, Brandon and Genesis were great! I will definitely be back!','2019-03-06 23:33:25.000000','1787364321589026'),('2586910558245907',1,'Highly recommend! The staff is amazing, so friendly and super helpful! Not long waiting time. Very impressed!','2020-03-21 15:42:03.000000','104213804456471'),('2589586064473352',1,'Dr. O\'Malley is awesome! Best bedside manner! My new favorite doc! Staff is great and friendly. Thanks nurse Alvean & receptionist Patricia. Best medical service I ever had.','2019-12-01 21:34:22.000000','167959367441528'),('2590143884330591',1,'Our son woke up with an issue early in the morning and we came here and he was quickly seen and treated. We would strongly recommend.','2019-06-18 12:36:11.000000','251751275488925'),('2590984607784434',1,'I brought my son in because he had a broken arm everyone was so sweet thank you Nancy Pete Patty Theresa and Dr Plante!','2020-03-15 17:15:22.000000','237100240304186'),('2591080044443720',1,'I got hurt on my job yesterday ( 12/17/17) okay.. so it hurts bad.. i couldnt think other than want to know if my knee is okay.. my boss is up to something that doesnt seem right ( even though he is a meanest boss) took me there and i fill it in.. from the pain at least i get to laugh from their tiny mistake of the info.. but hey, it happens 😂😂.. anyways, they let my mom in, and thank god my boss is not with me (bonus 😂😎) .. so the work in process nice.. and best part they let me know of the payment of the bill which i also need to know of how my boss is gotta pay it which i got a copy of it that which is very nice.. (which im gotta investigate it later myself) and everything got covered in cash... so thru all the process im very happy to be there and most defenitly hopefully may go there just incase more injuries may happen to me or my family.. 😂😂😂😎😎','2017-12-18 14:06:47.000000','544778295636544'),('2592554864192089',1,'Great experience! Tanisha made me and my family cared for. I highly recommend anyone fo this location! \nThank you the team at Copperfield and Tanisha.','2019-12-04 07:43:16.000000','461782867645453'),('2593611580858893',1,NULL,'2017-01-02 01:34:24.000000','1609539722669429'),('2594086050625311',1,'Short wait time, friendly staff, great care. Nurse Manny G took good care of us.','2019-06-08 15:25:41.000000','237100240304186'),('2594193607284770',1,'great staff. Doctor Do and Nurse Alvean really cares for you takes his time and listen all your concern. \n\nyou can walk in and without worrying about any long process Jocelyn walk u through everything and make it really easy for u.\n\ndefitnely i will recommend Signature care for all your medical needs.','2020-01-11 15:53:02.000000','167959367441528'),('2594450883976957',1,'The nurses were so nice and attentive thank you Randi Cindy Eliza and Senaida','2019-12-06 08:42:42.000000','237100240304186'),('2595925030511746',1,'Came here after my car accident. Recommend over a regular hospital. No wait.. Bill was sent straight to the person at fault. Did not pay a thing.','2020-01-19 16:53:17.000000','829264323932850'),('2596197083772654',1,'They have an overall 5 star rating for a reason. Best ER I\'ve ever been too. All the staff, nurses, doctors are really kind, informative, and want to best for your medical needs. If you are in the area and need immediate medical attention, I suggest you go here and no where else.','2019-09-22 05:16:04.000000','167959367441528'),('2596357277151009',1,'Great service, fast service and good attitudes','2019-12-30 04:20:36.000000','829264323932850'),('2596892850358279',1,'Fantastic service, always friendly','2019-12-16 23:27:36.000000','237100240304186'),('2596954067186076',1,'Everyone was sweet and attentive, and they saw me within like 10 minutes.','2017-02-12 07:53:07.000000','544778295636544'),('2597780663813615',1,'I’ll try and keep this short and sweet. On Thursday the 9th I woke up with a slight headache and back pain I didn’t think anything of it...throughout the day the pain started to get a little worse. I thought to myself...maybe I slept wrong. So, I’m at work on my grind. Later that night The fam and I go to my nephews football game. A nice cool wind chill had just pushed through my body was slowly starting to shut down. Again, not thinking anything of it I simply say to myself take a nice hot shower and go to bed early. I did just that and after a hot shower I felt great!!! Well, Friday morning I wake up. My headache is even worse!!! I took some quick pain meds and was off to work. Throughout the day my back pain gets even worse. I finish the day go home take a nice hot bath and immediately after I take some Motrin!!! I wake up feeling fantastic. I go back to work on Saturday...two hours in Im ready to call it a day. The pain is simply unbearable from an excruciating headache to extreme back pain. I go home ready myself for another hot shower and this time take a serious shot of NyQuil. I knock out and at exactly 3:35 a.m. I feel as though someone has just hit me in the head repeatedly with a hammer or a bat!!! I knew I had to get up and take care of this immediately!!! I had heard from several people and even drove by this emergency care facility on several occasions. Believe me when I tell you that this is by far the best place I have ever been to for immediate care!!! Starting with the administrative staff Jocelyn up front!!! She was very informative over the phone and in person. The other three care providers that blew me away were Allen whom took excellent care of me and Informed me of every little action in extreme detail. Then there was Pam my nurse!!! She went above and beyond the scope of caring for me. She too explained every move she made in extreme detail and leaving no question I asked unanswered. Last but not least of course was Dr Ding...handling me with extreme care and making sure I was extremely comfortable for an excruciatingly painful procedure she was about to perform on me. We shifted about five time before we both found our comfort zones to do my spinal tap!!! I am extremely grateful to those who had informed me of this emergency care center. More than anything I love that I didn’t even feel like a patient. It was very intimate and comforting to the point where I felt like I was in my bed at home and family was taking care of me!!! THANK YOU ALL SO MUCH!!! BEST CARE I’VE EVER HAD!!! At the request of Dr Ding and Nurse Pam I was instructed to find a primary care physician but I’d much rather come here than to any PCP!!! I highly recommend this emergency care center!!!','2017-11-13 13:20:10.000000','1787364321589026'),('2597844617120131',1,'👍🏻👍🏻','2018-06-04 03:09:05.000000','544778295636544'),('2598478577136443',1,'Everyone is so welcoming and you get the best care without having to go to the hospital!','2019-10-30 09:02:22.000000','299216637560955'),('2598756697108337',1,'I’m really impressed with the service I had today thank you tech Leah ,Kramer and dr. Starr now waiting one my rapid results. Everything was nicely sanitized and explained step by step . Highly recommend !','2020-07-30 21:34:43.000000','596022027480375'),('2599022063551026',1,'Great staff! Very efficient too. They listen to their patients and work with them to address their needs.','2020-01-02 03:16:12.000000','237100240304186'),('2599866076734181',1,'It was a nice smooth treatment process. We came in and left without any types of issues. Will visit again if I ever need any special care, and truly enjoyed the receptionist Tanishia and Sarah RN for a great experience','2019-12-11 05:21:13.000000','461782867645453'),('2600081226785764',1,'Dr. Ruby Rose is amazing. \nStaff- Linda and Christina, RN are the nicest. \nFeeling like myself today.','2020-03-01 03:02:54.000000','1698192877146046'),('2600932030158334',1,NULL,'2016-09-08 23:27:47.000000','544778295636544'),('2601346843310529',1,'Buen service y te explican muy bien y muy limpio el lugar. La enfermera Alvean y Patricia.','2020-01-27 00:12:01.000000','167959367441528'),('2601457656851269',1,'Super nice great service even with all the craziness of covid 19 thank you so much!','2020-07-28 05:13:07.000000','104213804456471'),('2601734076773936',1,'The visit was awesome thanks to reg Rashaad S., the dr grinblata, Amelia, ladonna, Fatima and AL. They was amazing 😉','2020-02-15 07:05:29.000000','544778295636544'),('2601992279811147',1,'The staff here was AMAZING!! Dr Henderson was so kind did not rush me and answered my questions. He came in several times to make sure I was comfortable. Michelle T my RN super hero she made me feel comfortable from the time I got there. she is funny considerate and you can tell she loves what she does. Then there was David He was the Radiology tech that gave out the party favors and played in the pee. ha ha will not soon forget that one. He joked and kept my mind off the pain I was in. They treated me thoroughly and very competent in their care. Angela at the front desk was so swet. Thanks guys so much!! I give them ⭐⭐⭐⭐⭐','2019-07-29 04:24:06.000000','251751275488925'),('2603333896655466',1,'drphama alvian patricia. they are a good en profecional','2020-01-30 14:00:04.000000','167959367441528'),('2604381602918115',1,'it was fast and they took great care of me, thank you all tanisha, dr Henderson, alicia, laura, elaine','2019-11-15 01:31:33.000000','461782867645453'),('2605035846195745',1,'Dr. Mauldin ,Bethany and Magali were awesome !! they made sure my child was happy and comfortable. they explain everything and made sure we had everything before we left! I definitely recommend them','2019-07-20 20:46:58.000000','237100240304186'),('2605213219501818',1,'They got me in & out quick! Great Service & Staff! Very Helpful Highly Recommend!','2019-09-30 18:52:34.000000','299216637560955'),('2605301019739393',1,'This was my first visit to SignatureCare and I was very pleased with my experience. Alvean greeted me and my spouse with a warm friendly smile and Marcus was quick when it came to my vitals and xrays.','2020-01-07 19:18:56.000000','167959367441528'),('2605950229475987',1,'Best ER I’ve ever been to. They are very welcoming and warm and professional. They take real good care of you while your there. Best ER!!!!! Shout out to Dr. Curtis, RN Lucas, Rad/lab Sherry, and Registration- Kelly!!! Great team. THANK YALL!','2019-03-31 17:44:44.000000','235046800697531'),('2606410502941310',1,'Excellent service ,caring staff,spotless building,great doctors','2020-06-16 17:35:15.000000','235046800697531'),('2606599729620078',1,'I was helped by Kimberly, Morgan, and Remington! One of the best experiences I\'ve ever had with an ER care','2017-10-16 19:21:32.000000','326347177710316'),('260664731319861',1,'I don’t have enough thumbs to do the Folks who took care of me justice. \nThey deserve more than just 2 Thumbs Up, \n���2 Dozen Thumbs Up maybe � ��','2018-07-27 18:17:33.000000','1608991329419166'),('2606691026244704',1,'the front desk,the young lady Tanisha,was super sweet.I can’t thank the staff of this Emergency Room!From\nEveryone was just amazing!\nNot to mention the knowledge that the staff has. Dr.Garcia was beyond carrying. Dr.Garcia made sure the I was comfortable before leaving his ER. I literally was treated like family. I would recommend this SignatureCare Facility to anyone who lives in the bear creek area, even if you live far and can make it over to this side of town it would be worth it. \n\nThank you all!','2020-03-22 23:32:56.000000','544778295636544'),('2606965769341092',1,'Dr. Pham and his staff provided excellent care while I was there. Fast check-in and no waiting. Everyone was very nice and took their time with me. Thanks to Alvean, Marcus, Vanessa and Keith for your care.','2019-11-19 18:57:57.000000','167959367441528'),('2607021025981264',1,'Everyone is absolutely amazing! Kelly is the sweetest!! Highly recommend signature care er!!','2019-04-07 16:42:29.000000','235046800697531'),('2607789109495317',1,'I had a really great experience at Signature Care, Lewisville. The doctor and staff were really incredible, kind, and fast. I would highly recommend you go here if the need arises.','2020-07-28 01:23:28.000000','104213804456471'),('2608600872693420',1,'Alvean , Jordan \nGreat visit , good communication .','2020-03-02 20:49:11.000000','167959367441528'),('2609150109337898',1,'Awesome place and service. \nCame in for Covid testing !!\nStaff was friendly. Everything was fast and simple.\nDefiantly recommend to anyone who need to get their Covid testing done.\nThey also open 24/7 !!!','2020-08-06 04:08:24.000000','105589317817643'),('2610144049079600',1,'I Came in for stomach issues, and had to do a cat scan, the machine already makes me freak out, and I started crying because I was so scared ! The nurse I had helped me, and calmed me down , and helped me stop crying cause I was really scared. \nAnd I honestly appreciate that so much!! \nI always come here for any problems, and I thank you so much ! All of y’all definitely deserve the world on how much you all respect your customers! Even with this being down the street from the house, I would not trust to go anywhere else but signature care. \nI think his name was John or Kaiti, either way they both did a really good job with helping me and making sure I get better, but the one who helped me through the cat scan, I really thank you so much! And I honestly appreciate you, thank you !','2019-12-23 09:02:48.000000','251751275488925'),('2610364862351910',1,'best care I have recieved from a doctor in a very long time. Much better than any regular ER care and much faster than a walk in clinic','2019-11-27 19:07:45.000000','596022027480375'),('2611713955530545',1,'The Hospitality at this ER location was outstanding. The whole team from the Registration to the Doctor. Our situation was taken cared for in a timely manner, from start to finish. And even giving us snacks and drinks as we were walked out. Definitely recommend coming to this ER if you are close to the area. Thank you again for the whole team that took care of us —\n\nDr. Henderson MD\nNurse, Sarah G.\nRad Tech, Fatima\nER Tech, Elaine \nAnd Registration, Tanishia W.\n\nAgain thank you to the whole team for taking care of us you guys did a great job.','2019-11-22 04:11:05.000000','461782867645453'),('2612231132390537',1,'immediate service. very friendly faces. a caring staff.','2020-03-10 23:34:28.000000','596022027480375'),('2613010925603357',1,'This is a great place for urgent care need avoid the hassle of hospital settings. The experience at this location was awesome from admission to discharge warm hospitality by Patricia, vitals by a man of little words Jordan and nurse Alvean was so warm, caring and the best medicine for pain. Now the best for last Dr. Mauldin he needs to teach ethics classes great bedside manners and gentle doctor he is in the right profession because he care for people. Thanks for the wonderful experience!!!','2020-01-25 21:21:28.000000','167959367441528'),('2613207872067436',1,'Great people, great doctors! Quick and easy','2019-12-31 19:37:43.000000','1787364321589026'),('2616053468512312',1,'Highly recommended for your emergency needs!! Every time I’ve came here they always always get me in and quickly evaluated so they can help me out! 5 stars for customer service for sure!','2020-01-30 21:22:19.000000','544778295636544'),('2616876288366746',1,'Its a very good place I recommend signature care emergency center for any type of emergency','2019-12-21 15:17:19.000000','544778295636544'),('2619458171408674',1,'my wife had a really bad pain and they took her straight in no wait and were very professional','2019-10-06 17:36:58.000000','251751275488925'),('261948754768024',1,'had a great experience and help with dr.yost\nrn:Mollie\nrad tech:Eric\nregistration:tobie','2020-01-15 06:34:19.000000','235046800697531'),('2620084208225960',1,'Very quick and everyone was super nice !','2020-03-02 23:40:30.000000','251751275488925'),('2620159821434686',1,'Great experience. Tammy R, Brooke G, and Tiffany were wonderful. Dr.Das was great explaining my diagnoses and treating me!','2019-12-27 05:43:12.000000','299216637560955'),('2620410848246880',1,'We knew before we arrived that this is a free standing ER and we would be paying our higher ER co-pay but because our situation was after-hours and we didn\'t want to contend with the hospital ER that is farther away with longer wait times, SignatureCare fit our medical needs perfectly. They had overnight observation, IV treatment, in-house blood work and x-rays. \n\nThe nursing staff and physicians were great and scheduled all of the follow up testing with our primary care on our behalf. \n\nDue to higher co-pay, I wouldn\'t use them for a simple sniffle but if you need ER-like care but not the ER hassle, this is a good option.','2017-07-17 01:08:47.000000','1698192877146046'),('2620498741338911',1,'Thank you guys \nDr Thomas \nSara\nGeovanny\nAnd Tanisha your service was awesome','2020-01-17 06:43:10.000000','461782867645453'),('2621864697867868',1,'Great service and got us in and out very quickly! Definitely recommend.','2019-12-30 11:30:45.000000','829264323932850'),('2622259191388217',1,'I was recently there for shoulder pain and I must admit that I was hesitant To go because of the pandemic but my visit went smoothly. Starting from the security guard outside handing out masks and washing your hands with hand sanitizer the front desk Vy to the nurse, X-ray tech Grace and the physician Dr Garcia!!! Everyone was wonderful! Very clean place and they offer snacks as well!! Bless them all!','2020-03-23 13:58:12.000000','461782867645453'),('2622750637956483',1,'I have never had a better ER experience anywhere else. Everything was quick and easy. I was fully informed the whole time and all of the staff (Rebecca V, Jeri, Rebecca W. And Dr. Kimball) were all taking very good care of me. They made me feel like a priority and that hardly ever happens at an ER.','2020-02-06 15:26:09.000000','326347177710316'),('2623103524680363',1,'Dr. Patel, registration: amy, RN: Dawn, ER Tech: yasmina, RAD Tech: eve','2020-02-12 13:55:08.000000','1608991329419166'),('2623392487891577',1,'I felt so bad with my heart hurting and short of breath when the team here immediately took care of me and call me down with their kindness. Thank you so much Stephanie-Registration, Rollie-Nurse, Natalia-Rad Tech, & Dr Grinblatas','2020-03-07 06:45:43.000000','1648645701907657'),('2625397197581962',1,'Great experience with Fatima & Tanisha, both very professional and pleasant during my visit and would recommend this location to anyone in the area','2019-12-06 05:19:31.000000','461782867645453'),('262598271597986',1,'Experience Was Great They Got Me In And Out Pretty Fast Staff Is Great And Very Caring I’d Recommend Them To Anyone','2020-05-11 06:45:11.000000','235046800697531'),('2626034287417417',1,'Great experience at Signature Care Cypress, excellent staff. Made me feel better about a rather silly accident. \nThanks!','2019-09-18 02:41:15.000000','167959367441528'),('2628393913878860',1,'Awesome & quick care! Smooth visit from start to finish! Highly recommend! ❤️','2019-08-30 13:51:20.000000','299216637560955'),('2628460153871580',1,'Everyone is very sweet and nice attended me fast dr.dang ,Amy ,Kat s. and kat k.','2019-09-12 05:06:07.000000','167959367441528'),('2628593573821450',1,'I had a very positive experience with the staff, nurses (Shelli), and Dr. de Waald who were very caring at a time I was feeling very vulnerable. I had a severe nosebleed they helped me stop and I especially appreciated their instructions for self care in the future.','2019-02-18 20:38:06.000000','1698192877146046'),('2630840313606557',1,'Every person of staff was kind, patient, and caring. Especially, Angela. She was the best! Greeted with a smile and/or kind words from everyone. Dr. Patel was comforting, informative, and professional. He did not rush the process and I was able to have an actual conversation with him becuz he actually took time to listen. Big Thank You to Nurse Michelle for taking care of me, in a big way!\nP.S.: I hope I\'m not getting Angela and Michelle mixed up lol.','2019-07-19 02:16:12.000000','251751275488925'),('2632891403415365',1,'no wait at all. everyone there was very helpful from Patrica C im registration to the nurse Alvean A and Dr. Mauldin was the best','2020-01-25 13:45:49.000000','167959367441528'),('2633980263534608',1,'The staff was amazing. I have never felt so fully taken care of. They really care about their patients. Will go there again in a second if I have a problem.','2017-02-01 23:52:22.000000','1765121397101399'),('263437687866694',1,'I love the staff at Signature Care! They are all so helpful, caring, and have excellent bedside manners. The team; Karen, Gunnar, Keo, Kelly, and Dr. Curtis are nothing short of AMAZING! I definitely recommend them and the Signature Care Emergency Center.','2019-03-25 18:36:57.000000','235046800697531'),('2635762693199703',1,'What a great experience ! Diana and Sindy were very kind and explained my benefits , Dr Golla was very attentive and Fanny helped me with translation. Ralph was cheerful and attentive . I will definitely come back !','2020-03-02 22:01:06.000000','544778295636544'),('2636254586418551',1,'Great staff, very attentive, no long waits, very polite.','2019-09-20 12:56:16.000000','251751275488925'),('2636466093132842',1,'Tanishia was a great receptionist, the rest of the staff was just as friendly and hospitable! Expensive but with the visit for my child.','2020-02-19 02:36:13.000000','461782867645453'),('2636851819671841',1,'I\'ve been here twice and both times I was treated immediately. the staff is great, very understanding, and non judgmental. I recommend this er if you need it','2019-09-11 18:36:48.000000','1609539722669429'),('2637164309654825',1,'Very fast, attentive staff. Nurses Manny and Lisa were a good team, checked on me often. Front seat Eliza was friendly and welcoming. And dr Plante was informative, explained everything with detail and answered all my questions with patients. Great office.','2019-12-13 16:38:00.000000','237100240304186'),('2637339219614686',1,'Great patient care. Quick, efficient, knowledgeable staff. They answered questions without rushing us and treated my wife like a person, not a number in the queue. This was the 1st experience and is now going to be my family\'s go-to when the primary care is closed. I now regret not going to them sooner.','2019-02-24 04:22:02.000000','251751275488925'),('2637741436283555',1,'I would recommend this place fro. the receptionist Alexis to the back staff (Jessica Nguyen, Tammy W., Giovanni A) were amazing. Dr. O\'Malley was very thorough with his exam and my little one was smiling the whole time.','2019-10-26 17:25:57.000000','461782867645453'),('2638143856221007',1,'Evening, First time coming here. the atmosphere very pleasant and warming. I had the pleasure of meeting this awesome team today. Dr.Edwards , Jocelyn , Ekaterini S , Marcus And Brian. Keep up the great work team . Exceptional service .Thank you all so much.','2020-01-13 19:44:00.000000','167959367441528'),('2638514559529307',1,'They were very helpfully and kind! Asked me if I needed stuff. Also the timing was perfect the got to my needs very quickly. The lady at the registration office Tiffany was very nice. Nurse Tammy R & tech Brooke G took very care of me. I’m so thankful they helped me. I left feeling 10x better than when I went! Would definitely recommend anyone! Awesome service!','2020-01-03 02:45:42.000000','299216637560955'),('2639368299455996',1,'the best Er service they take care of you quickly and efficiently everyone is nice','2019-11-23 17:29:42.000000','1765121397101399'),('2640222606058939',1,'The staff was very friendly and the service was quick I recommend coming here if you can’t get to your local doctor','2019-12-16 05:00:52.000000','326347177710316'),('264089997964016',1,'fast and friendly service with comforting compassion','2020-04-29 00:27:41.000000','235046800697531'),('2641039679243490',1,'The doctors, nurses and all the staff are caring, professional and knowledgeable. I received excellent care!','2019-05-20 22:21:30.000000','167959367441528'),('2641469135920662',1,'The receptionists Dyveliz and Rebecca were both really nice and welcoming. My nurse Brad was very professional and friendly and made sure that I was comfortable while there. Dr. Daniels was very caring and made sure that I understood what was going on and answered all of my questions. The techs JR and Rebecca were both very helpful as well. The entire staff was very welcoming and professional.','2019-06-25 22:39:47.000000','326347177710316'),('2641991512516199',1,'very caring and respectful staff.','2020-02-14 17:39:56.000000','1787364321589026'),('2643687439293654',1,'The registration staff (Lorena and Amanda) were super friendly and welcoming! I then had Jacob for my doctor and Sara for my nurse and they were both so kind and patient!! Can’t recommend this place more!!','2020-07-25 17:21:05.000000','326347177710316'),('2643730172317214',1,'Such an amazing facility will definitely come here for now on!!! When I first walked in I was treated with a smile and they made me so comfortable and so polite. The best part I got in and right out! I personally want to thank Dr. Rankin, Nurse Amy, Kelvin and front desk Natasha for all your help and patience with me!!!','2019-08-13 16:25:01.000000','251751275488925'),('2645741282212968',1,'Great experience, no wait time at all and everyone took good care of our daughter. We are so grateful thank you!','2020-01-06 04:14:46.000000','596022027480375'),('2645741588827241',1,'Decided to visit this location after our dog accidentally bit my girlfriend. As soon as we arrived, Tanishia greeted us and made us feel very welcomed. We got attended faster than we could finish filling out forms. The nurse, Susan, arrived shortly and attended us with care. It wasn\'t long before Dr. Nguyen treated her and gave us the medication she needed. Awesome emergency center and super quick. The visit took about an hour. Would definitely recommend and come again if needed.','2019-12-04 05:52:56.000000','544778295636544'),('264605261182568',1,'Awesome and quick service. Dr.Nguyen, Erika, Elisa Jasmine and Jordan are very professional and delivered great service.','2019-12-12 18:49:07.000000','167959367441528'),('2648568951929053',1,'Excelente servicio y buena atención para mi esposa todo el personal atento. La enfermera Alvean y Patricia.','2020-01-27 00:16:10.000000','167959367441528'),('2648723895338959',1,'Was perfect all the staff was friendly was friendly and made you feel at home...preethy was nice','2017-03-15 14:57:04.000000','544778295636544'),('2650557021841585',1,'Rn Mollie \nRad Eric \nReg Tobie','2019-12-29 03:08:47.000000','235046800697531'),('2652004834846056',1,'Me and my son had a great and experience with Mercy, Jeff, and Dr Lim. Everyone was very nice and took great care of us from the time we walked in to the second we walked out','2019-11-19 17:46:36.000000','829264323932850'),('2652767014964885',1,NULL,'2017-06-25 14:52:16.000000','1698192877146046'),('2653243571357799',1,'Yes. My experience was great. The ER was new, clean, and filled with friendly and educated staff. Dr. Singla, Nurse Gracie, Tech Diem, and Brenda R. for registration were absolutely amazing.','2019-03-13 09:32:32.000000','544778295636544'),('2654460144582004',1,'Great service! All the staff was super friendly and attentive thank you Dr. Yusuf, Nurse Naureen and the friendliest receptionist Amy!','2019-06-01 23:52:22.000000','1608991329419166'),('2654549497923674',1,'They are friendly and fast!','2019-09-15 21:17:23.000000','235046800697531'),('2654583047963278',1,'awesome staff and they helped me right away! very costly and recommed to anyone! doctors were super nice!!!','2019-12-27 14:50:45.000000','829264323932850'),('2655572117795486',1,'Staff is always welcoming. This is the second time we have had to come. It is always clean. So happy they accept TriCare now! Dr Lingan, Konya and Thai put my child at ease. You guys have amazing staff','2019-08-16 22:11:50.000000','251751275488925'),('2656798967728626',1,'This urgent care was great! Great staff, the front desk lady, Amy, was very friendly and helped us get checked in and checked out. My friend had to come in due to a cut from an exacto knife and the customer service was great and super helpful. The doctor, Dr. Wren, and the nurse, Chih were both great in helping the process of helping her fix her laceration and begin the healing process.','2019-04-21 05:32:06.000000','1608991329419166'),('2657972927590755',1,'Awesome staff. Very helpful and quick. Great hospitality. Definitely will use this facility as needed in the future. \nDr Cavasos, Lynn the Nurse, Laura H/ Rad Tech, Angel , ER Tech, and Tanishia Registration all fantastic, friendly, informative and helpful. Love the payment schedule.','2020-02-17 05:38:45.000000','461782867645453'),('2658781407471693',1,'Dr. Wren, Chih, Amy made the process of cutting my finger a lot less painful and the service was super quick and convenient!!','2019-04-21 05:31:20.000000','1608991329419166'),('2658929650894535',1,'Awesome super friendly place. Highly recommend. Trini and Jessica super awesome!!!','2020-02-09 05:10:19.000000','237100240304186'),('2659448300765805',1,'Lisa P., Bliza, Manny, and Dr. Plante helped me out so much and got me taken care. They were very kind and provided the best service.','2019-12-14 17:38:55.000000','237100240304186'),('2660753317280383',1,'The staff is always nice. They get things done efficiently but quickly. You don’t have to wait for hours to be seen. Over all I really like this place.','2019-07-17 01:10:30.000000','237100240304186'),('2661600874060980',1,'Fantastic staff!! Wait time is not bad at all literally in and out','2020-03-02 03:27:29.000000','237100240304186'),('2661741523846188',1,'Had an awesome experience at SignatureCare. I called ahead coming from a car accident and I was in the back in less than 10 minutes. The receptionist Rebecca V and all the nurses and doctors were very friendly and helpful. I\'d definitely go back again for another emergency.','2019-10-26 02:10:49.000000','326347177710316'),('2662005443914677',1,'Highly recommend Signature Care in Texarkana! Everyone was great! Mollie, Leanne, Dr. Yost, Gunner, Eric, Carla and Tobie! Thank y’all for taking such great care of me!','2020-01-13 01:47:32.000000','235046800697531'),('2662216713823557',1,'I absolutely love this company i will go to them for all my medical emergencies needs','2019-09-16 19:02:25.000000','829264323932850'),('2662291383999757',1,'I came in really sick and since the minute i walked in the whole team was very assertive, kind, and fast. Dr. Grimblata was very honest with his opinions on treatment choices. He thoroughly explained everything which definitely puts anyone at ease. Everyone including Veronica at registration, the RNs Dawna and Gina, and the techs Jaqueline and Norma all helped me leave the clinic feeling better than when i arrived!','2020-02-18 18:53:09.000000','1608991329419166'),('2662392537108530',1,'Signature Care made me feel welcomed and safe. Amy checked me in right away and even offered me a wheel chair. All my Jessica checked on me regularly and kept me updated. Dr. Braun and Dion were very thorough in explaining what was happening. I really enjoyed the warm blankets. The doctor kept me feeling at ease. Thank you everyone(:','2019-05-04 21:21:43.000000','1608991329419166'),('2662996963974979',1,'We had a great experience! We were seen as soon as we arrived and completed paperwork. My 4 year old was a bit nervous and worried about what would happen. The staff were very caring and patient with her. Everyone was courteous and professional! The facility was up to date and clean which is huge in my book! Would definitely return if needed. :)','2017-07-31 03:41:14.000000','544778295636544'),('2664564690268740',1,'My ER visit Thursday morning was in the middle of crew change and the am crew with Dr.Patel and staff were amazing, kind and welcoming. He passed the torch over to Dr. Chambers and his staff and they too have been comforting ,acknowledgeable, and attentive. Both crews are wonderful, thank you!','2019-11-21 15:00:15.000000','596022027480375'),('2665253543586953',1,'Got tested for covid-19. The staff was super informative and professional and the process was fast and simple.','2020-05-05 21:57:19.000000','596022027480375'),('2665359570371678',1,'Ms. Jackie at the front desk made sure everything was taken care of before I left the office. Very respectful and polite.','2018-03-15 00:06:34.000000','1609539722669429'),('2665661880130430',1,'Raven is amazing and very helpful!','2019-06-09 03:45:48.000000','1787364321589026'),('2666737616780380',1,'Trini and Jessica made wait fun!!!! Awesome place I’ll visit again when needed!!!!','2020-02-09 05:13:20.000000','237100240304186'),('2666901026913807',1,'Thank you to Dr. Hehman and Nurse Kelly and receptionist Karen and to the other doctor\'s and nurses that helped me... hopefully I don\'t have to come back but if something happens and I do need to come back I know that ya\'ll take good care of me n thanks really appreciate ya\'ll...','2020-05-06 20:10:16.000000','544778295636544'),('2667002719991009',1,'I was seen quickly and with such care. Dr.Jazmin Thomas, Genisis, Stephanie,John. they all were Awesome and Professional','2019-09-09 20:14:51.000000','829264323932850'),('2667559753291262',1,'Awesome staff!! Very friendly and considerate, they did take a little while but overall an awesome experience','2020-01-28 00:47:12.000000','235046800697531'),('2667739829951924',1,'Pleasant staff, expedited service! Will definitely use them again and recommend to others!','2019-10-28 02:28:11.000000','1787364321589026'),('2667916080199766',1,'one of the best places always kind from Jennifer that checked us in to the nurse susie and tech matt I could not ask for better','2020-02-16 16:57:31.000000','299216637560955'),('2668673883184130',1,'Absolutely amazing staff from the registration desk to the doctor!!!','2019-09-30 17:43:27.000000','251751275488925'),('2669241236524178',1,'This Cypress location has helped me and my girlfriend when needed I genuinely thank everyone who has been apart of making us feel better','2020-01-16 18:16:39.000000','167959367441528'),('2670764256341474',1,'I went in this morning for a sinus infection. I was in and out of there with my prescription in under an hour. The staff was amazing. Everyone is so friendly and they make you feel welcome. Dr. Miller saw me right away and made me feel comfortable there. I highly recommend this place.','2019-12-23 23:56:44.000000','237100240304186'),('2671093093010691',1,'Literally the best emergency room I’ve ever taken my kids to. They were attentive, compassionate and very quick! I’m amazed that there’s still medical centers like this in Killeen. Thank you Dr. Hemerka and Shaunda!','2020-02-12 04:40:40.000000','251751275488925'),('2671325346270115',1,'I highly recommend this ER as they took care of me immensely \nDr. Cavazos \nEkaterini and Patricia were so awesome and caring I will definitely return to them \nFor me or a family member emergency \nI know they would be in the best hands\nThanks to all for your care\nGod bless.','2020-02-07 19:06:11.000000','167959367441528'),('2671634819556601',1,'excelente servicio de todo el personal médico. Gracias a todos de zheng, mirar Nicole , shaylene, lonnie, genesis','2020-02-09 16:18:23.000000','1787364321589026'),('2672428782785672',1,'Yeah this place is pretty sick if you’re sick, everybody was super nice. Shout out Brenda and Dr. Jaber, nurse was super nice too :)','2019-06-16 19:14:23.000000','1608991329419166'),('2672753492818360',1,'Very helpful with patiences. Feels comfortable like they wanna take care of you.','2020-01-31 07:40:59.000000','235046800697531'),('2673717899390967',1,'wang, susan, geovanny and tanishia are the best ever, they all did their jobs right and i couldnt ask for a better staff!!!','2020-01-22 05:37:10.000000','461782867645453'),('2674615879529946',1,'Jenci my nurse was super attentive and understanding and very knowledgeable made my visit very pleasant','2020-04-30 01:56:36.000000','299216637560955'),('2675495045806304',1,'Tanisha W was awesome!!! In & out & made us feel welcomed.','2019-11-01 03:49:15.000000','461782867645453'),('2675892929139002',1,'Dr Mauldin and his nurse Vanessa were amazing! Very kind and knowledgeable. I would recommend using SignatureCare Emergency Center anytime! Check in was also very fast and Shania was great explaining my insurance information as well!','2019-12-01 02:13:36.000000','596022027480375'),('2676772492430274',1,'the staff is amazing and everything was amazing. thank you, rebecca, gabe, stephanie and Dr. Vakey','2020-01-11 05:19:07.000000','326347177710316'),('2677472432331477',1,'fast and excellent service from Nelson, Holly. Irving and Dr.Smith. \ntreated me quickly.','2020-01-12 10:22:55.000000','829264323932850'),('2678954045451973',1,'I had a very positive and productive experiece. Have to admit I was skeptical at first (was sure Methodist was the best ER). Boy, was I wrong. I have a whole new appreciation of SignatureCare ER. Every single person I encountered, from entering until leaving, was efficient, professional, and considerate. The doctor, Billy Miller, was great! He was pro-active and very thorough. The nurses were very sympathetic and kind. Not a single complaint. I would highly recommend SignatureCare Emergency Center.','2017-11-26 12:59:19.000000','544778295636544'),('2679888112066233',1,'everyone was very nice. they take good care of me. made sure i was good to go','2020-02-22 05:00:47.000000','251751275488925'),('2679922178722003',1,'The nurse Kristina ,Dr. Golla and Register Maya were very nice and professional .','2020-02-26 22:48:25.000000','829264323932850'),('2680193125555009',1,'Thank you so much to everyone at SignatureCare Emergency Center in Pflugerville! They were so professional, organized, caring and helpful. When things are so stressful already, it’s really nice to feel taken care of by smart and well-prepared people. Great experience overall!!','2020-06-19 14:50:34.000000','105589317817643'),('2680763598646548',1,'Holy WOW. This is the Hilton inns of emergency rooms. The building is very clean, new, impressive. The staff (from reception, to our nurse, doctor and radiology tech and everyone we passed) was SUPER nice and accommodating. We were asked by 3 different people if we wanted a warm blanket, needed anything to drink, or had any concerns. \n\nUpon arrival, we were greeted by a very friendly receptionist that checked us in promptly and explained all of the paperwork that needed to be done. Not even 10 minutes later a nurse was pulling my husband back for his vitals, getting us set up in the most luxurious emergency hospital room I’ve ever been in. Within a few minutes the doctor came in, and shortly after a wonderful woman came in to place his IV and get fluids hooked up. At one point, I was breastfeeding our 3 month old son and not a single soul commented on it or shot me a disapproving look. Everything took place very quickly and efficiently. This place is running at GOLD STANDARD healthcare levels. I’m amazed.','2019-10-22 13:30:15.000000','251751275488925'),('2680794071947695',1,'Robin Bratcher, the lady at registration was so polite and helpful! The nurses Susie and Christina were friendly. We had a great experience and fast service!','2019-03-03 03:15:46.000000','299216637560955'),('2682165145171717',1,'They were very helpful and got me in fast! \nRollie, Natalia, Stephanie, and Yasmina were all so friendly and made me feel comfortable! \nDefinitely recommend coming to this location!','2020-03-06 00:58:28.000000','1648645701907657'),('2682298378535667',1,'Gracias por toda su atención Ángel and Dr Pham, and Tanishia. Gracias.','2020-03-04 06:40:12.000000','461782867645453'),('2683279325063633',1,'Offered snacks, warm blankets, and sodas. Friendly staff, got my son in ASAP. Tanishia is my fave followed by Fatima. Dr. Faig is awesome','2019-11-13 05:15:01.000000','461782867645453'),('2686318274712530',1,'Awesome Emergency care Center!! In and out with the best customer, Nurse and Doctor care that I ever experienced!! I am out of town, and it only took us less than 10mins to be seen and 15 more minutes to be diagnosed. They gave us a prescription but meds to take home because no pharmacy in area open. How awesome is that!! They really care and the facility is new and very clean. I will come back and tell my friends!','2019-08-25 01:51:29.000000','251751275488925'),('2686371188117431',1,'Excellent service good doctor and receptionist \nDr Appiah\nReg: Rashaad','2020-02-09 07:32:50.000000','544778295636544'),('2686752894752727',1,'Got seen on a very timely manner the staff was very friendly and actually took care of us! Would definitely recommend this place to someone else!','2019-12-30 21:37:40.000000','251751275488925'),('2686828881592508',1,'That place was great.. Great staff very compassionate and caring .. And will go to all means to find what\'s wrong with you','2018-06-26 23:51:02.000000','326347177710316'),('2687051328206836',1,'I have always had a great experience at this location, They are nice, polite and very efficient, I will continue to go there and would recommend anyone else in need of urgent care to go there as well.\n\nI had to go back there and they are still the best at what they do, from the receptionist to the doctors, they are amazing, polite, encouraging and very helpful. I go there before I would go to a hospital, they take care of you on an urgent basis no matter how big or small the issue.','2017-09-30 07:43:42.000000','544778295636544'),('2688373094554747',1,'Everyone was great, Got in and out fast that was also great. \n\nHenderson\nSarah \nWilliam\nPatrick \nBiseida \n\nWhere all very helpful and the boom','2019-11-14 02:58:55.000000','461782867645453'),('2688766651142931',1,'Very quick, friendly and efficient. Highly recommend','2019-09-27 01:32:37.000000','596022027480375'),('2688779134511468',1,'The staff is super amazing and very helpful as soon as we walked in! 😊 Thank you to Dr.kotey, Lynn S, Daniel B, Tanisha W, they are the best 🙏🏻','2019-12-23 07:39:01.000000','461782867645453'),('2689994437680178',1,'they were fast and very friendly. I would go there again.','2019-09-11 11:09:32.000000','235046800697531'),('2690375097915848',1,'Jessica was very sweet and helpful when I got called to the back Senaida and Keira listened to what i has to say very understanding and Randi was very helpful as well','2020-03-04 01:20:51.000000','237100240304186'),('2690412284363374',1,'The best ER I’ve ever been to/seen!!! The staff was very friendly as soon as I walked into the door. They make sure their patients are comfortable and well taken care of. 10/10 recommendation to everyone in Killeen','2019-05-22 07:26:17.000000','251751275488925'),('2690522334354728',1,'Everyone was amazing! Very nice & helpful . Definitely high recommend!!','2019-05-06 17:46:22.000000','596022027480375'),('2691800767506602',1,'Very quick check in, got seen by the doctor right away. He was very knowledgeable had very good bedside manner, included me in the discussion. Will definitely come back again if need be.','2019-11-19 14:09:13.000000','251751275488925'),('2692539547445928',1,'Extremely fast and helpful. Kim and Allison were amazing. Had my father in a room in 5 minutes and a diagnosis within 30.','2019-08-21 05:12:42.000000','596022027480375'),('269387277353197',1,'Thanks for your help with my sister. Tanishia you were amaZing with my family','2019-12-04 03:36:12.000000','461782867645453'),('2695266304083073',1,'Manny, Eliza, Casey n\' Rachel do a great job 🥰','2020-07-23 21:20:37.000000','237100240304186'),('2695605003789127',1,'The staff is incredibly nice and helpful.','2019-05-08 06:05:21.000000','251751275488925'),('2696003383831922',1,'I come to the signature care ER in the heights all the time. They always take such good care of my family and I no matter How we’re feeling! they take great care of us, I would recommend them to everyone!!! It’s always so clean and everyone is so friendly.','2020-04-15 14:07:28.000000','1609539722669429'),('2696303247113819',1,'The staff was very sweet and helpful. We were helped by Shania, Leah, Kristina, and Alison and they made us feel comfortable and welcome.','2020-02-01 09:09:51.000000','596022027480375'),('2696760193705627',1,'Everyone is so friendly and really professional & respectful.Place is very clean. You also get a warm blanket during you’re visit. I highly recommend this ER ! Thank y’all so much for making our visit less stressful!! Dr and his staff were awesome 👏','2020-02-27 04:16:27.000000','326347177710316'),('269697357018237',1,'I\'m glad I brought my daughter there,the staff was very caring and very nice and Dr.Zheng was wonderful and very nice also.I would recommend Signature Care to everyone😄','2017-07-08 13:25:49.000000','1787364321589026'),('2697571193677426',1,'This was an In and Out process which was great! Everyone here was amazing but I have to give my praises to three people and that’s Jessica at the front desk, Dr. Garcia, & my nurse Jerry. They we’re truly amazing. I would definitely recommend anyone to come here and I’ll be back again','2018-03-23 14:00:05.000000','1787364321589026'),('2698165616889469',1,'Dr. Vaagnese was great. He has been extremely helpful - highly recommended. Thank you Sindy for your help as well.','2019-12-04 21:34:04.000000','1609539722669429'),('2698797667045399',1,'Super quick and friendly service. Attentive staff.','2017-11-17 01:16:36.000000','544778295636544'),('2699517560061040',1,'Fast and Friendly service we will be back! Dr. Miller answered all my questions and Andrew took great care of my daughter','2019-09-16 00:06:31.000000','596022027480375'),('2699577873445368',1,'Thank you John Bell and SignatureCare staff for taking such great care of my granddaughter on today!','2020-02-25 19:52:34.000000','299216637560955'),('2699666556956141',1,'Second time me and my daughter come for Covid testing and this place is the best! Fast and very friendly ☺️ thank you for making this experience not so scary for my little one. \nCecilia & Alexia','2020-07-30 06:43:38.000000','105589317817643'),('2700515396687291',1,'Absolutely wonderful people!! Alicia and Erica are such amazing nurses!!!💛💛','2019-05-25 19:31:17.000000','299216637560955'),('2701149899992724',1,'Shout out to the team @ the Westchase location who made me feel all better on a late work night: Nurse- Sarah, Radiology Tech- Sherwin- Dr. Dang, ER Tech- Christian and Registration- Ana!\nSince I was admitted over night I was able to stay in a fancy looking suite that includes a fridge full of different drinks and they also have good variety of znacks... because that is super important lol. Clinic was very clean and organized. They have capability for CT Scans and are fully equipped. All staff especially Sarah was super attentive!\n\nThank you for all you do!','2020-02-19 09:01:40.000000','829264323932850'),('2701777779873463',1,'everything Dr. Patel Nurse Alvean Radiology Tricia Registration Jasmine','2019-10-10 21:58:32.000000','167959367441528'),('2702275320017695',0,'This place makes you schedule an appointment pay $10 to reserve the spot. Just to get here and have to stand in a line OUTSIDE in the heat. What’s the purpose of an appointment? I could have just stood in line yesterday in the heat if I was gonna have to do it with the appointment.','2020-07-06 13:07:38.000000','167959367441528'),('2702521619770338',1,'So we gave into our anxiety and got Luke checked out at Signature. I wanna give a shout out to Dr.Diaz and my Signature ER family. Dr.Diaz eased our worries about him, we appreciate ya Doc! And also thank you to his nurse (Krystal) for putting up with his cranky butt. You guys are always awesome!!!','2019-12-07 04:53:52.000000','596022027480375'),('2704537552957778',1,'I had an amazing experience at signature care thank you so much Lucas he was fantastic nurse he treated us very well!','2020-02-01 17:14:04.000000','235046800697531'),('2705976272804683',1,'I had a great experience, everyone was nice and professional. Jocelyn was very nice and got me in real quick. The whole staff, Dr. Ortiz, Meredith S., Alvean A, and Marcus B was very helpful and professional. Also Meredith, the nurse that attended me made me laugh a lot and made my experience here fun. I definitely would recommend this place for Emergencies only, NOT urgent. I got checked in and out real quick, just in time for me to go to work.','2020-03-11 17:16:45.000000','167959367441528'),('2706168849505639',1,'Laura my rad tech was very helpful\nGeovanny was my ER tech and he was awesome \nThe receptionist Tanishia was very helpful','2020-02-14 06:19:08.000000','461782867645453'),('2706262886085475',1,'They are very very helpful and have fast care for me 100 stars','2019-08-20 23:25:19.000000','251751275488925'),('2706351196309691',0,'Please do not waste your time going to these facilities, they provide the worst service. A family member went at 7:30am and waited for 5 hours in line to be told at 12:30 that they no longer were taking patients. They could’ve have planned better and counted the cars to their capacity and clearly communicated to all other individuals waiting in line. There were about 100 cars behind this person and I am sure they were just as frustrated. I know there is a higher demand for testing right now but clearly they don’t have competency to think about customer service.','2020-06-18 18:33:29.000000','544778295636544'),('2706455879585307',1,'The best urgent care facility I have ever walked into. This is the 2nd one to go to. Dr Yost is very one on one. The nurse Kara, X-ray Shannon and Jaylon were awesome. Courtney and Shelbie were welcoming with a nice smile. Thanks urgent care!','2020-02-20 23:31:15.000000','235046800697531'),('2707446309277107',1,'AMAZING. I was in and out within 30 minutes. All the staff was friendly and helped out. Talked me through everything step by step. \nStaff members that helped me out >\nLisa, manny, Eliza and Dr. plante','2019-12-15 22:56:38.000000','237100240304186'),('2707517762672203',1,'This is my to go emergency center never a long wait, the staff is absolutely helpful and very informative! Doctors are really nice and self conscious about your health and symptoms\nDr Ybarra was great in treating my husband and Natalia was very nice the nurse Rollie was very gentle','2020-02-25 04:11:43.000000','1648645701907657'),('2707798909275252',1,'Excellent patient care!! The staff was the best. Thorough evaluation, explanation of treatment and options were clear. <10mins. to be seen, warm blankets, best treatment. Thank you!!','2020-01-22 19:19:58.000000','1609539722669429'),('2707873762665268',1,'The staff the took care of me were beyond amazing, and called to check on me which made me feel really good. Thank you Dr. Faig, Kristina,Laura,John, and Genesis for taking care of me','2019-08-18 03:26:05.000000','829264323932850'),('2708093725871596',1,'skyler was awesome. tabatha was very attentive. christina was very good. thank you guys so much!!','2019-05-19 00:45:09.000000','299216637560955'),('2708630632559189',1,'Very quick service and explained everything to my understaning. thank you to Lisa H, Amanda S, Jaime, Delpha, and dr.starr. highly recommend','2020-02-10 15:43:43.000000','596022027480375'),('2710643742307191',1,'awesome experience! staff members were very friendly from registration (Jocelyn) , nurses (Alexis & Lisa) , the rad tech (Allison) && especially Dr.Daniels .','2019-12-20 06:17:03.000000','596022027480375'),('2710979455687630',1,'Best emergency center I’ve been too in a long time. It looks very beautiful and smells really nice. The workers are very attentive and helpful. Miss Brittany B was very helpful and kind. Awesome customer service. Would highly recommend their services ❤️','2020-03-05 22:06:28.000000','544778295636544'),('2714245708628704',1,'My overall experience was excellent. Fast quick service and everything was very pleasant from the receptionist Patricia to the doctors. I recommend this facility for all of your health needs.','2020-01-18 18:04:46.000000','167959367441528'),('2714526375459772',1,'For fast, friendly, professional results, THIS IS THE PLACE!!!! It was more laughter and less pressure! I’m VERY nervous about things going in my nose, but it was done so quick, I said,”Oh! Ok!” S/O to Delores for being so nice!!!!!','2020-08-05 14:30:47.000000','1765121397101399'),('2715319751824280',1,'Dr Nguyen, Alvean, Patricia, and Jordan were so kind to me. Really in pain with a nerve issue and they did not make me wait. I also felt Dr. Nguyen gave me the choice to have a cat scan or not. I felt he diagnosed pretty quickly and correctly. Let with referrals to get help that I need. So grateful for the help and care.','2019-12-20 16:55:25.000000','167959367441528'),('271715897418148',1,'I treated very well and approached professionally. I felt at ease. My daughter made appointment for herself and there’s no openings for testing. So sad to hear that.','2020-07-07 18:39:35.000000','1609539722669429'),('2717690121678878',1,'Waiting room/waiting time = tip top','2020-01-15 20:36:58.000000','1698192877146046'),('2718941334830050',1,'Excellent service. As soon as I walked in Tanishia W served us. Very friendly & nice. Very short waiting time. Doctor Nguyen, R M.D went over my daughters diagnosed as explained everything very clearly. And the nurses were very polite. Thank you! 😊','2019-12-04 07:33:32.000000','461782867645453'),('2718946598220985',1,'Thanks to the staff for helping my grandson feel better. Tanishia and Dr. Thomas for everything. EVERYTHING was on point.','2020-01-31 04:42:20.000000','461782867645453'),('2719054055017001',1,'They are fast and get you in within 15 minutes, by appointment or walk in. I was a walk in and went to get tested for covid and they tested me and gave me my results within 30 minutes. I was helped by Jessica Sanchez and she was very patient and helpful. If I go back I would definitely recommend her every time. Definitely 5 stars ⭐️ ⭐️⭐️⭐️⭐️!','2020-07-21 14:21:19.000000','104213804456471'),('2719337101477728',1,'I didn’t have to wait very long before I saw a Dr. The nicest people that I’ve had take care of me before. I won’t go anywhere else','2020-01-18 10:51:32.000000','237100240304186'),('2719468108105799',1,'Dr.o\'malley, Patricia, tricia.b and Jose are angels.. truly they were so helpful and kind and went over and beyond to insure all of my needs were met. Will definitely recommend to my friends and family','2019-11-29 22:27:13.000000','167959367441528'),('2719563584756683',1,'The staff was amiable and pleasant, and the service was fast.','2020-01-04 02:49:42.000000','461782867645453'),('2719914311460392',1,'This is the place to come if you are not feeling well! The staff is so helpful and friendly!!!','2020-02-27 23:27:04.000000','1648645701907657'),('2719967918056466',1,'Great Team work and great service definitely recommend it, Alvean and Marcus actually made me feel like a patient and not a mom lol thank you SignatureCare','2020-03-02 17:05:11.000000','167959367441528'),('2720362354875733',1,'Everyone being so nice and patience, they had informed us about every procedure done.','2020-07-19 21:07:25.000000','544778295636544'),('2721070501327698',1,'As soon as the staff noticed my urgency to be seen, they immediately got to work to figure the best options to help resolve my issue. Each and every staff I came in contact with showed so much empathy, concern and willingness to do whatever it took to make me feel safe and comfortable. Special thanks to Dr. Leung , Nurse Nikki, Radiologists Jessica as well as Nurse AJ thanks so much u guys are the best!','2020-07-22 17:25:41.000000','251751275488925'),('2721328634563713',1,'this is the facility I have always used since it opened...fast and easy admission...all staff and physicians are always helpful and welcoming','2019-07-25 13:10:55.000000','237100240304186'),('2723623624319527',1,'Quick and efficient service. Lisa V was great!!!','2019-06-14 23:51:46.000000','596022027480375'),('2723652264519934',1,'You guys are awesome.the front desk receptionist Preethy was very welcoming and funny. I love this ER.','2017-01-25 21:04:23.000000','544778295636544'),('2725646350832180',1,'Very clean! Amazing experience everyone was so nice. Dr Daniels was so sweet, Kristina, Allison, Shania, Julie and Daniel took very good care of my kids and me! Thank you','2019-12-22 04:32:50.000000','596022027480375'),('2726329240786402',1,'very nice staff when you walk in. You walk through the doors to the back and its huge , but also super clean. very nice staff. they are fast moving and get to your room on a timely manner. the rooms are big and an very clean. would recommend to come here.','2020-03-15 21:05:28.000000','251751275488925'),('2726547117358128',1,'Tanishia at front was very friendly. Dr and nurses very professional and friendly as well.','2019-11-06 06:20:36.000000','461782867645453'),('2726768834065929',1,'They were so nice and patient & got us in very quickly , would really recommend , the registration person was Tiffany and she was really nice and sweet, Ann the nurse was quick to discover what was wrong and help me in anyway , the tech was very nice and told us everything we needed to know !','2020-01-23 02:53:09.000000','299216637560955'),('2727699120593076',1,'Fast and friendly service . Very professional!','2019-06-12 12:03:39.000000','1608991329419166'),('2727997453921063',1,'Dr.Mauldin did a great job helping me and Rebecca was super sweet when I came in! Highly recommend coming here! Kendra recommended me to come and I’m glad she did!','2020-02-07 03:56:05.000000','326347177710316'),('2728634503855245',1,'The care here is excellent! We didn\'t have a real emergency but when all the urgent cares are closed and you need someone definitely go here! When we walked in the receptionist (Skyler R) was standing up ready and welcoming us ready to take care of my daughter and was excellent with talking to her making sure she was okay. The nurses and tech made sure she was comfortable and let her watch TV. (Jennifer C, Tammy and Courtney K) they were all very kind! Dr. Jack was even awesome he did great talking to my daughter, let her listen to her heart and played a little game with her and just showed he cares. Thank you so much for taking care of my baby and making our evening clean and caring!','2019-08-26 11:14:45.000000','299216637560955'),('2728922503845986',1,'Top notch medical staff! I’m OR bound but stable thanks to you guys!','2019-05-16 21:52:39.000000','299216637560955'),('2730302940373891',1,'very fast and helpful.. our nurse got on her knees.. patients first.. thank you guy\'s for helping husband','2019-06-03 21:27:49.000000','251751275488925'),('2731374460288285',1,'Okay I must say, Dr. O Malley is the best, quick, fast, efficient, the best. All docs need to take training from him!!! He also makes you laugh on top of your pain!!!!! He is the best. He enjoys what he do. \nMrs. Tricia, very caring and she\'s pregnant at the same time. How can a pregnant lady be more concerned about her patients than herself. She did that very well!!! She was so superb.\nMrs. Alvean, really professional,cool, straight to the point. She is the best. \nJocelyn, quick, fast, efficient with the check in and out process. She did not hassle me at all about paperwork. \nThis staff is great. If you want to get great service, where the team cares, And you can tell, come here and meet this team. I do not want to leave at all!!!! A plus from me!!!','2019-12-11 15:18:36.000000','167959367441528'),('2731804983513260',1,'Great staff and service. Didn’t take long at all to get seen','2019-06-03 01:44:22.000000','251751275488925'),('2733115386902731',1,'Mery and co-worker were Awesome, very kind, and Patiention.','2017-07-27 16:55:52.000000','544778295636544'),('2733223510099867',1,'Dr.Yusef\nAmy \nChuriah \nNorma\n\nThey were very helpful and made this a pleasant visit and very quick and efficient','2020-01-24 17:25:45.000000','1608991329419166'),('2733276726788794',1,'good place the Lady in the front very nice helpful, Erica','2020-02-28 18:29:43.000000','1765121397101399'),('2735466759845192',1,'Staff was amazing , didn’t take long to get Into the back. We were offered a warm blanket . Doctor and nurses were very nice and explained everything in a way I could understand . Barbara which is the discharge nurse was very nice as well explained everything I needed to know','2019-12-30 00:57:36.000000','251751275488925'),('2735709309786104',1,'This facility is excellent. The doctors, nurses and other staff members are very caring and attentive. I would recommend this place for urgent and dedicated care and immediate attention.','2019-10-09 11:54:46.000000','251751275488925'),('2735723103183661',1,'Very excellent got in & out 😊','2020-02-23 14:41:26.000000','299216637560955'),('2736171783157283',1,'Great service and care by staff.','2020-02-02 04:03:02.000000','596022027480375'),('2736552993052215',1,'I had the best experience here from the moment I walked in everyone was so helpful. The whole vist was super quick and they made sure i had everything i needed to get to feeling better.','2019-02-11 12:57:43.000000','235046800697531'),('2736899919728649',1,'They all did a wonderful job nurse Irving radiology holly E.r tech Bram registration carly','2020-01-14 10:58:22.000000','829264323932850'),('2737045366360025',1,'This is the second time I come here with my mom and everyone is so nice and very attentive. The receptionist tanisha is very nice and help my mom out with her as she speaks Spanish too. Doctor Faig was very helpful as for everyone else the tech Elaine and nurse chantel. Thank you for your help tonight and for helping my mom ❤️','2019-12-16 03:14:21.000000','461782867645453'),('2737076849653555',1,'great staff ! very welcoming . 10/10','2019-07-17 02:25:58.000000','237100240304186'),('2737189649662145',1,'Samantha, Christine, and Dr. Jaber was was really helpful and nice. I would recommend you going there','2020-03-02 04:50:47.000000','1609539722669429'),('2737393422974213',1,'came in late sunday afternoon and the ordeal was as streamlined as it could be','2019-12-16 00:12:21.000000','251751275488925'),('2737429179603409',1,'When I first arrived Alyssa greeted me at the front desk with a smile. She showed genuine concern for my well-being. Joseph was awesome! He made sure I was relaxed and had a nice warm blanket, as I waited for the doctor. Nice smile. Lonnie B was great as well. He took me for the X-Rays and took care of business. Dr. Boester, what can I say? He had that red hair and blue eyes working!! LOL. Seriously, He presented to be caring and very knowledgeable. I felt at ease. And then Pamela the last nurse I saw was very informative. Overall, friendly staff, very professional and caring. Thank you.','2019-09-21 21:10:26.000000','1787364321589026'),('2737436083013136',1,'Great experience Dr. cavazos Delicia and Duke were so helpful','2020-02-05 16:51:42.000000','1648645701907657'),('2738261506227392',1,'Had to take my son in to get tested for the flu. Tammy and Brook took great care of him and Dr. Jordan was great as well. McKenna at the front desk was fast and friendly. Definitely recommend!','2020-02-07 20:42:52.000000','299216637560955'),('2738749716411457',1,'The staffs is really professional!! And they took good care of my family emergency!!!! I really recommend this place Kimberly and Vanessa are really professional and nice !!!','2020-02-07 16:21:58.000000','1609539722669429'),('2739566369406141',1,'this emergency center is a very good place to receive care services. took my sister for an urgent care visit and was treated very nicely. the whole staff was very pleasant & caring. especially thx to nurse Lisa V. & EMT Hector for all the help & care.','2019-06-17 23:09:07.000000','237100240304186'),('2739642312973529',1,'Wonderful and fast service. Went and checked in, less than five minutes I was in the back.','2017-05-11 18:51:04.000000','1787364321589026'),('2740355766079210',1,'The staff were very friendly and the Doctor was great and ran all the test necessary to address the problem. So far the best treatment we have ever had!! If we can give more than five star they would definitely get it.','2020-01-31 00:32:57.000000','251751275488925'),('2740654316023957',1,'Great care given to me today ! Dr. Ashbrooks, Kara, Courtney and gunner were so helpful and nice ! Appreciate all\nY’all did for me !','2020-01-14 05:42:17.000000','235046800697531'),('2740691029301147',1,'The service was amazing Jocelyn greeted me and took care of me with little to no wait, once in back my nurse Alvean made me feel so comfortable during out my entire visit. I would recommend them to anyone because they rocked!!! And customer service is a 10+','2020-02-19 16:57:09.000000','167959367441528'),('2741352962617998',1,'Very warm and amazing staff ❤️ the wait was not long at all. Thank you Alvean,Jose,Marcus and Jordan.','2020-03-02 21:40:46.000000','167959367441528'),('2741709432543034',1,'Awesome place brought sister. Was seen right away staff was welcoming an helpful.. Samantha front desk, Nicole and Christine the nurse always checking up to mke sure we were ok, Bryan an Miguel great job. Dr. Dang explained diagnosis in patient terms which was very understanding..','2020-02-19 01:42:49.000000','1609539722669429'),('2742008636034867',1,'Staff is very helpful and nice','2020-04-09 04:16:25.000000','104213804456471'),('2742413812487975',1,'Signature Care is a great place to go . I recommend you to come here if you are looking for a clean , respectful and mannered place.','2019-12-11 04:15:48.000000','596022027480375'),('274281169863727',1,'Jeff dr.yusuf nick Leslie and Dee where great. Great service! Super nice people','2018-08-11 18:04:49.000000','544778295636544'),('2743241645691835',1,'The staff from start to finish was on top of things....Friendly and definitely prompt care. Couldnt ask for better nurses (Andrew & Mack)...everything was explained in detail and completed through.','2019-04-10 09:14:53.000000','237100240304186'),('2743304179046982',1,'Went here for chest pain Ms.Ayesha acted quickly with such kindness and care to get me look at when I got to the back nurse Alvean & er tech Jordan both greeted with with a smile and went right to work after Dr. Dendy and Radiology Ms. Grace came in got me to ex ray right away wrote I knew I was getting my results. Best experience I ever had at a facility.','2019-10-04 20:30:49.000000','167959367441528'),('2743727769282496',1,'Nice, friendly group, they let stay in my car until they were ready to see me...they were very busy but remained nice','2020-07-09 22:13:31.000000','235046800697531'),('2744298115645834',1,'Excellent experience and customer service from Patricia','2020-02-17 18:01:54.000000','167959367441528'),('2744443272284446',1,'This place is professional, and they are very quick to take care of you. Excellent service.','2019-12-13 02:37:00.000000','237100240304186'),('2746092562091854',1,'Dr. O\'Malley \nJani W.\nMarcus B.\nElida Jasmine \nAurora M.\n\nThey was awesome and treated me like family','2019-10-01 20:12:04.000000','167959367441528'),('2746108742083312',1,'Thank you for taking care of me dr O’Malley,Ekaterinburg s,Kay k,and Melissa e','2019-08-11 04:07:13.000000','167959367441528'),('2746136478802953',1,'The girl in the front Lindsay was awesome and got me back in less than 5 mins. Nurse Remington and Dr. Morrical really cared and helped me find the most affordable treatment!','2020-01-23 16:40:34.000000','326347177710316'),('2746252858782617',1,'Had a great experience one visit , all are willing and determined to make you stay a good one , the doctors professional, the nursing staff outstanding, My nurse lisa Vasquez was amazing and deserves a major award for her technics , and customer care , she definitely knows her stuff .. thanks to the crew .. I feel better \n\nHM Santiago','2019-06-13 17:46:57.000000','596022027480375'),('2746351838753677',1,'Wonderful experience here. Very nice and made me feel comfortable. Irving is the dankest nurse I’ve ever met and very handsome. Christian is amazing holly is okish kinda. Dr. Garcia','2020-03-10 07:02:44.000000','829264323932850'),('2748523192044643',1,'Hector and Manny did good job. There friendly and kind.','2020-08-04 21:25:22.000000','237100240304186'),('274856280143186',1,'we had excellent service taking care of my niece everybody was real kind the doctor the nurse is the real kind\nPatncia and EKateni','2020-02-21 15:54:57.000000','167959367441528'),('2749235958530055',1,'This is our second visit here, and we love it here. Doctors and nurses are so caring and just nice! Very clean facilities! We will be coming here from now on for ER','2020-03-03 15:57:07.000000','251751275488925'),('2750849144996280',1,'excelente atención de principio a fin. lo tienen todo como cualquier sala de emergencia de hospital. y tan cerca de mi hogar. yo lo recomiendo.','2020-01-30 05:21:59.000000','461782867645453'),('2751420761618320',1,'exelente atención, personal muy amable,\nrealmente lo recomiendo. rápido, en mi caso no tengo seguro médico, y aún así me dieron muy buena atención e hicieron planes de pagos para mi.\nmuy agradecida de verdad.','2020-02-20 01:37:46.000000','544778295636544'),('2752763294945699',1,'Had a great experience the front desk nurses, Lorena and Victoria were great very friendly. I would definitely recommend this location.','2020-07-31 13:32:26.000000','326347177710316'),('2753845477997028',1,'I woke up sick at 4am, this place was the only one open. Carly checked me in and helped me get everything sorted. The nurse sara was very helpful and kind even at an odd hour. Dr. wang and the tech sherwin helped me effeciently and effectively. I will go here again!','2020-03-04 00:05:31.000000','829264323932850'),('2753856508034808',1,'Excellent service Dr. Thomas and staff are excellent Veronica Bianca Fanny Sindey took great care of me','2020-02-20 03:46:54.000000','544778295636544'),('2754072818159224',1,'This place is great very clean and customer service always starts at the front of any place I have to say the front desks staff is amazing. Alyssa and Kelsey. And all the essentials staff we thank you for your service','2020-07-04 21:32:11.000000','1787364321589026'),('2755927067777472',1,'It was a very Decent hospital and lovely people.... Sindy Angela were welcoming . Selina and Jesse were helpful with attending us','2020-02-27 20:54:57.000000','544778295636544'),('2756397141040180',1,'As soon as we walk in, receptionist was friendly and polite! Dr. Faig was professional and helpful, as well as Irving and Holly! Always few taken care of whenever I come here','2019-09-13 02:43:12.000000','829264323932850'),('2756697291035359',1,'Absolutely great service! Tell all your friends and family, beats the hospital!','2019-12-20 09:12:59.000000','461782867645453'),('2756733897720885',1,'The staff is amazing very friendly and loving they only want the best for their patients!!! I highly recommend people to go to this hospital because they will take care of you!','2019-11-15 16:59:13.000000','1698192877146046'),('2758280377731547',1,'wonderful service... from receptionist to Dr., everyone was nice... Radiology Tech, Allison made me feel at ease with the X-ray machine since I was very uncomfortable with the machine... thank you Allison.','2019-10-15 01:58:44.000000','596022027480375'),('2758292267625660',1,'Awesome staff Gunnar And leann and dr ashbrook sweet people.','2020-03-09 22:48:18.000000','235046800697531'),('2758522124220454',1,'Fast and on top of everything','2019-06-14 18:38:11.000000','596022027480375'),('2761104900594543',1,'The is the best ER by far. Dr. Zhen is a very caring and wonderful person. Jessica is a very knowledgeable and friendly nurse. Nurse Allison was very kind and also called my prescriptions in for me. Best place to go if you’re sick.','2020-01-05 13:57:22.000000','1765121397101399'),('2761168777299394',1,'The care team of my dad which includes Dr. Dendy, Nurse Blake and receptionist Ashley gave outstanding service that allowed us to feel comfortable to leave my dad’s injury in their hands. I appreciate and thankful with their help.','2020-02-29 17:00:49.000000','1648645701907657'),('2762718413812032',1,'Great team, very welcoming and all questions answered.','2019-12-17 22:58:45.000000','1609539722669429'),('2763310300421705',1,'my visit today was great,everyone is good. Thanks Tanishia and Dr. Wang.','2020-02-28 03:36:35.000000','461782867645453'),('2763395750342199',1,'It was fast and effective. Jesus Was very friendly with great customer service.\nNurse Jani was also Friendly and she offered us a Heated Blanket now that\'s cool because it\'s always cold in Emergency Centers. \nDoctor Pham was Fast, Friendly and Quick with the Result for what We came in for. \n\nThank you Signature Care for Taking care of my Daughter in a Nice Fast effective way.','2019-05-17 17:34:55.000000','167959367441528'),('2764621663626991',1,'Thank you Daniel,Fatima, Daniel, Tanisha ! And dr Patel for your excellent service.','2019-11-27 07:13:52.000000','461782867645453'),('2766471960130828',1,'Very efficient and quick staff at this facility. Was very impressed with Stephanie from registration working quickly to get me in.','2020-02-22 04:56:12.000000','1648645701907657'),('2766657440082197',1,'wonderful staff and very clean and faster too','2020-02-09 16:17:34.000000','1787364321589026'),('2766859373336771',1,'Registration-Skyler, Nurse-Susie and Tech-Brooke were absolutely amazing tonight! Thank you so much for keeping me calm through my little scare! Dr. Curtis thank you as well for explaining everything so well!','2019-06-21 04:53:54.000000','299216637560955'),('2766950803324411',1,'Great and friendly staff starting with Jennifer at the front desk to Jennifer Cogburn nurse and Dr. Simmons was great! Thanks to all the staff!','2019-06-18 19:38:26.000000','299216637560955'),('2767417229961115',1,'Dr. Smith, Dr. Singla, and Alyssa were Awesome. I received great care.','2020-02-14 13:06:59.000000','1787364321589026'),('2768469663175760',1,'Patricia, Alvean A and Marcus are awesome. Very nice and warming. Make you feel comfortable. Awesome people.','2020-01-15 23:39:25.000000','167959367441528'),('2768627586516976',1,'The doctor and nurse were very helpful during the visit. They took their time to really address what was going on with my daughter and I was very satisfied with how extremely nice everyone was. tanishia at the front desk was very informative explaining the insurance co pay and deductible information for us, and doctor Do was very attentive to my daughter. The nurse Susan was also super quick yet careful with my daughter which i appreciated.','2019-12-18 04:06:46.000000','461782867645453'),('2769088419809553',1,'We were treated very fast and everyone was so nice and had a very good experience recommend this place for anybody','2019-11-23 04:20:04.000000','596022027480375'),('2769567639777041',1,'Everyone was so attentive and caring! Sindy was so welcoming and nice! Nurse Reginna and Diem were super nice! Dr. Golia was very caring and made me feel extremely comfortable! He was so nice! Honestly, this was the best experience I’ve ever had. Highly recommended!','2019-12-27 17:44:21.000000','544778295636544'),('2769568956443576',1,'Everyone was so attentive and caring! Sindy was so welcoming and nice! Nurse Reginna and Diem were super nice! Dr. Golia was very caring and made me feel extremely comfortable! He was so nice! Honestly, this was the best experience I’ve ever had. Highly recommended!','2019-12-27 17:45:17.000000','1609539722669429'),('2770661433157031',1,'This is @king_borris fromt the KB Media company\nI have been to this location many times. Every time my experience was amazing. My 6 year old daughter split her forehead and needed 8 stitches. They were so care full and understanding. She fell asleep while the stitched her up. Thank you so much. \n\nMy recent visit was just as comfortable. The staff is always great and or course the snacks are a plus !!!\n\nThank you to\nDR. QURESHI NATACHA I \nNurse: Leslie L H \nRadiology Tech: Laura L H \nFront Desk: Tanishia W \n\nThank you all !!!','2020-05-29 21:52:27.000000','461782867645453'),('2771797929510027',1,'You’re very quick and efficient to care of my problem ASAP','2020-01-06 00:01:06.000000','251751275488925'),('2772609789431902',1,'Alexis, Kelly, and Stephanie were great. We were in super fast, were taken care of and all of our concerns addressed without any wait! Best ER experience I have ever encountered! Great job!','2017-08-17 04:09:46.000000','326347177710316'),('2773284116026639',1,'Everyone was great. I was in and out. Tatiana registered me, Brandon Williams and Nicole G checked me in and Dr. Sylvester was my doctor. Everyone was very kind.','2020-01-02 00:38:40.000000','1609539722669429'),('2773580669392462',1,'We had such amazing care here for my daughter with a broken arm. We got there and the registration nurse McKenna got us straight back and the nurses were absolutely amazing! Thank you Tammy and Brandy (our RNs) and the tech Brooke for all you did to make us feel comfortable and have such great care! ❤','2020-02-28 03:00:28.000000','299216637560955'),('2774130779306381',1,'Very pleased with this location. Dr Boester and nurse Joseph & Vivianne provided the best treatment and friendly service.','2019-12-20 15:54:54.000000','1609539722669429'),('2774247756021454',1,'this place is super clean and Amy at the desk Meredith my nurse and Dr. Daniels are the best','2020-04-23 01:04:28.000000','167959367441528'),('2774788102750449',1,'The staff at Signature ER really took care of me. They were so patient, funny, and most of all, the staff took all of their time to communicate their findings. Thanks to Dr. Sylvester, John, nurse Noyes, and everyone else I did not mention that made my stay a pleasurable one!','2016-06-27 01:43:58.000000','544778295636544'),('2775158565831904',1,'Awesome experience! Krystal took such great care of my son! Will definitely be coming back here!','2019-06-09 21:34:31.000000','596022027480375'),('2775287809155772',1,'Jennifer did great and so did the rest of the staff. This place is great','2019-02-25 12:50:45.000000','299216637560955'),('2776712902385987',1,'Very fast and prompt care was able to help with my car accident and even took their insurance and did not charge me anything.','2020-01-19 16:44:57.000000','829264323932850'),('2778129952224963',1,'This is a excellent place to get help doctors are great staff is friendly and helpful. Dr. Henderson, Dr. Edwards, nurse: Karen, Rad tech: Ricky, ER Tec: Jaslyn, registration: Maryann','2020-03-02 19:06:49.000000','1648645701907657'),('2778352965618385',1,'Excelente servicio y atención de la enfermera Alvean y Patricia.','2020-01-27 00:08:14.000000','167959367441528'),('2778825778812414',1,'Beautifully appointed and very modern .','2019-07-06 16:53:35.000000','251751275488925'),('2779141792177742',1,'I had a really good experience here at signature care anavel welcomed us in and was sooo nice and we were taking back very quickly the nurse Jennifer and tech dion were very nice offered me a blanket and took really good care of my boyfriend and dr Das was very helpful and gave us the best care I’ve had in a while. It’s not over priced at all which really helped out! Definitely will be coming back','2020-03-09 04:26:30.000000','104213804456471'),('2779952905564834',1,'very nice and doctors are the best','2020-01-07 04:36:21.000000','299216637560955'),('2780161405366529',1,'Carly from front desk is amazing best place to go better than any hospital','2020-03-12 09:56:16.000000','829264323932850'),('2780918378586290',1,'I went there tonight and we were promotly seen. The employees Doctor radiologist were extremely nice on 10/20/19!!! I didn\'t expect it to be so fast and simple.','2019-10-21 04:42:23.000000','1787364321589026'),('2780974575315783',1,'highly Recommend.\nGreat Doctors and RN \nwould recommend. \nvery polite and caring, and understanding. \nwould definitely come back.\nDR. Patel \nKeria\nSenaida\nRandi\nRandy \nAshley \n\nGood people','2020-02-01 09:34:54.000000','237100240304186'),('2781435118644091',1,'thuy An Alvean good service tanks','2020-04-04 15:59:24.000000','167959367441528'),('2781629458527977',1,'Came in with my daughter to get checked out after we were in a car accident. Dr Dang and the lovely registration desk Tanishia we’re both a pleasure to work with and they made us feel right at home. Friendly and fun, very efficient. Paperwork was a breeze and treatment was painless thanks to these two. We will be back again whenever we have urgent care needs. Cleanest, fastest clinic we have been to. Thank you!!','2019-11-06 06:03:55.000000','461782867645453'),('2783468395046393',1,'I enjoyed my visit to SignatureCare, it was fast and easy. Alvean and Marcus were a professional and help so much.','2020-01-07 19:32:48.000000','167959367441528'),('2783596681705624',1,'Amazing care.... I give all the staff and doctor a “10”','2019-12-12 01:25:22.000000','1787364321589026'),('2784632748239328',1,'Yes, the place is friendly and fast. 10/10 would come back here from another accident.👍🏻 Thanks Elizabeth T., Dr. Jaber, Churiah, Jacque, Naureen & Lai! 😁','2020-01-27 20:39:53.000000','1608991329419166'),('2784913658258268',1,'Dr.Huerta and the nurses Leo,Audrey , were very helpful. Great experience','2020-01-20 03:25:24.000000','596022027480375'),('2785884208179964',1,'Joe and Cody were really kind and very responsive. I really recommend them! 5 stars ⭐️','2020-08-11 16:51:19.000000','105589317817643'),('2786188364940213',1,'Friendly professional staff they got me in a room quick I was in and out in 20 min!','2019-03-27 15:30:47.000000','299216637560955'),('2787202724636452',1,'Kim Domanski checked us in fast with no wait. Lucas was our RN he is absolutely amazing!! Dr. Henderson is Awesome as always! Kim Davidson took great care of my Arya tonight. The whole staff in Texarkana is very caring and alway thorough. The only place my family goes to get the best care in town.','2020-01-21 23:44:19.000000','235046800697531'),('2788103514560072',1,'There was no wait, I was immediately admitted. Jocelyn, Jordan, Alvean and Doctor Omaly (not sure how to spell it) was friendly and took care of my needs. I definitely recommend this place.','2020-03-02 23:35:17.000000','167959367441528'),('2788845184503396',1,'Recommend \nStaff is great. Dr. Cavazzos, Patricia and Alvean took very good care of me.','2020-02-27 19:01:49.000000','167959367441528'),('2789228511112339',1,'Amy the receptionist was very quick professional and friendly as soon as I walked in. Irving the nurse was very understanding and compassionate when it came to listening to my concerns while comforting me with water. Dr. Patel let me voice my concerns examined me and treated me efficiently. Service was great and quick. The energy and comfort I felt was great and I was able to go home an rest knowing I was taken care of by an amazing team. Outstanding Job done.','2020-03-24 02:46:58.000000','829264323932850'),('2789304901304384',1,'Absolutely AMAZING!!! Took great care. Kat (my nurse & my favorite) was beyond a people person and definitely put me right at ease. The doctor, came in and finished putting me at ease and checked me in and out! I definitely recommend coming here and wouldn\'t go anywhere else.','2020-05-28 22:33:37.000000','251751275488925'),('2789580337744605',1,'Thank you Nurse Nichole. I was nervous about getting my shot. She was so gentle I barely felt it. Dr. Zheng, Trisha, Shay, and Val you were all Great!! Keep up the good work😁','2020-02-16 12:59:55.000000','1787364321589026'),('2790240247659085',1,'the entire staff were both friendly and professional. I have never been to a hospital emergency room that can compare to you guys.','2019-06-19 11:28:19.000000','544778295636544'),('2790656687667748',1,'Great experience!!! Staff was nice and extremely caring .. when I walked in they greeted me right away and were very professional','2020-02-17 17:38:03.000000','829264323932850'),('2791689040869283',1,'All the people working when we arrived were amazing nice and careful. Our receptionist Tanishia was very knowledgeable about the paperwork and answered our questions without fault. Sarah and Daniel were both very respectful and considerate for our feelings made us feel comfortable. Our doctor Thomas was very intuitive and quick he handles the situation professionally and gave us recommendations for different personal doctors to go with. All in all they were amazing.','2020-01-06 05:25:00.000000','461782867645453'),('2792551284125084',1,'Jocelyn A \nEkaterini S\nGreat Worker Friendly They Get You In fast to see the doctor','2020-01-13 19:43:20.000000','167959367441528'),('2793808557310876',1,'Our experience was great. Dr. O\'Malley Nikaela, RN and Amy front desk were great. Out of all 3 hospitals I\'ve been this is by far the best!','2019-03-11 02:25:18.000000','167959367441528'),('2793864250637573',1,'I recieved the best ER care ever at this facility from the moment I stepped foot in this place until I left. They went above and beyond to be compassionate and informative. The registration process with Maria G. went smooth and she was super helpful and polite and offered drinks and snacks. My nurse Theresa B. gave me the best care. She knew I felt horrible and did her best to make me comfortable with warm blankets, kind words, and prompt medical care. My doctor, Osiecki took the best care of me. She took her time and made sure to find out all my symptoms and gave me excellent care. I left feeling like they truely care about their patients and I highly recommend everyone visit their facility if they need medical care. They were kind, informative and very prompt. Best patient care I have ever recieved.','2019-09-14 17:33:01.000000','237100240304186'),('2794861770527889',1,'Great Staff And Nurses. No Wait! If Ever Needed I Will Come Back!','2018-11-27 01:31:52.000000','299216637560955'),('2794935007236287',1,'Amazing staff and services!!!','2020-01-14 16:30:07.000000','1609539722669429'),('2796946880357787',1,'I am the GM for BurgerFi next door to this location and one of my Assistants hurt himself at work and visit Signature care for medical help and they did so amazing, everyone was so sweet and took care of him right away. He was back to work in just a few minutes feeling so much better. Thank you to everyone who helped him out!!! 😊','2019-09-19 03:23:23.000000','1698192877146046'),('2797554723612258',1,'Everyone was super nice and got me in and out quickly! The facility is clean and I can tell they take pride in it! I totally recommend this place especially over sitting at the er all day!','2019-10-31 13:35:30.000000','251751275488925'),('2799182296784200',1,'I’d recommend every hospital to hire the staff they have here!!! 100% on point and facility was super clean. The employees that helped me are: Theresa, Tammy, Eliza, Jacquie, Meghan and Dr Chambers.Thank y’all for everything y’all do .👍🏽👍🏽👍🏽','2020-03-08 23:43:42.000000','237100240304186'),('2799862726717348',1,'Jessica, Senaida, and Keira have been the best staff! Very friendly and caring!','2020-03-04 01:17:31.000000','544778295636544'),('2801195796626382',1,'Dr.Eisbecker was knowledgeable about my issues.','2020-02-27 19:09:32.000000','237100240304186'),('2801798296562683',1,'Warm blanket provided Also quick service and good communication with me through the whole process. Very understanding and helpful.','2020-02-12 20:08:54.000000','1698192877146046'),('2802463296472333',1,'Very quick service and got me in and out!','2019-12-30 11:38:14.000000','829264323932850'),('2802833579735752',1,'I needed a special brace for my wrist. Went to several stores wouldn\'t find it. decided to stop there and they had it. They help me with my needs. Want to thank you. Tech ER. Mike, physician Dr. Rose, Nurse Amy, Radiologist Fox, and Registration Shaunda. Super nice and caring people. Again Thank You.','2019-10-05 20:58:11.000000','251751275488925'),('2803537166341704',1,'awesome place very friendly and fast. I was in and out in no time','2019-08-01 21:18:42.000000','251751275488925'),('2804301936284535',1,'They were very professional and nice. Felt very comfortable the service was excellent. Dr. Alcaster, nurse Karen, ER tech Mackenzie and the registration assistant Maryann were all wonderful would recommend this ER to anyone!','2020-02-03 23:54:41.000000','1648645701907657'),('2805007056176933',1,'The staff was very helpful telling us everything they were doing as they did it. They made us feel comfortable and eased our concerns. Especially the RN’s Anthony, Jeri and Jacob and the Tech’s Natalie and Kirsten.','2019-02-13 00:32:58.000000','326347177710316'),('2805263069513950',1,'Great staff and very fast.','2019-03-27 05:14:51.000000','235046800697531'),('2806438516039861',1,'the staff was very nice. and they are quick to get you back to be seen. I would rather go there again than any hospital emergency room or urgent care','2019-05-29 02:55:29.000000','251751275488925'),('2808166862562239',1,'Fast service, Great Customer service. Johnny Juan Cynthia Dr Henderson Kenzie. Best to come here no wait time','2020-01-27 13:04:51.000000','1765121397101399'),('2809724599101106',1,'Erin Mann took great care of me. Great facility.','2019-06-29 16:07:40.000000','596022027480375'),('2809921192406631',1,'Great place, and the nurses are very nice. Helped me very much. The receptionist was great her name is tanishia and my nurse was Tyler','2020-04-03 01:13:53.000000','461782867645453'),('2810213752360020',1,'The staff here was wonderful and very helpful I would recommend this E.R. To anyone in need. Ask for Alvean, Marcus, Or Patricia when you visit they are all great staff members.','2020-02-06 19:17:42.000000','167959367441528'),('2811029982461004',1,'The service was fast. I had just sit down to complete the paperwork, when I was called into the office. After getting settled into the room, I was greeted within 5 minutes. Had an exam, them was set for an x-ray. The doctor return to give me the results of the x-ray. He provided me a list of doctors to see and provided a prescription. I return to the front desk to check out. The receptionist offered me refreshments. The entire experience took less than an hour. The entire staff is excellent and very professional.','2016-11-10 14:54:44.000000','544778295636544'),('2812315592157980',1,'they are fast and very friendly and take good care of you','2020-02-09 13:58:08.000000','299216637560955'),('2812424038868320',1,'This place is AMAZING! I’m so happy I came to this location, it was the most convenient location from my house. Dr.Garcia, Nurse Robert, and the ladies at the front desk were extremely polite and friendly! They even gave me a WARM blanket! I will most definitely be coming to this location again if needed!','2018-07-16 16:54:17.000000','1787364321589026'),('2812689188767248',1,'Starting from my arrival Jocelyn was delightful she did a great job assisting to getting me in to see the Doctor Cavaso which was exceptional and very Helpful Alvean/Ann came right out and recieved me even getting me a warm Blackets.Thanks to all of you','2020-02-12 13:23:46.000000','167959367441528'),('2814668355262883',1,'Very fast service. Straight to the point but still very compassionate and helpful. The receptionist in the front desk was soooo nice and made sure we were seeing a nurse in almost seconds. The nurses and dr did everything to help and made my child feel as comfortable as possible. Thank you guys so much definitely recommend this er!','2020-01-24 03:50:11.000000','251751275488925'),('2814765941880827',1,'They had us in and out. At the same time was very Professional with the care they showed. High5 to the entire staff','2019-11-25 15:23:33.000000','544778295636544'),('2816425571772825',1,'Alvean ,Jocelyn, Marcus \nThank god I was able to take my son somewhere I’ve been calling all around for him to be seen and it was a headache, fortunately they where able to see him and it was very nice and the staff where amazing','2020-01-29 20:35:25.000000','167959367441528'),('2818626028186370',1,'Signature care is so awesome and efficient. I had a muscle spasm two hours ago and I’m already treated and out of the ER. That’s unheard of for any emergency room. Thankyou. Dr. Patel , nurses Adrianna, Tabitha, and Eliza for your care. And also Lisa at registration who was so nice to me when I couldn’t find my ID in my messy purse. Y’all are the best.','2020-04-08 19:18:43.000000','237100240304186'),('2819875971390525',1,'Very nice and caring for us when we needed them! Matt and Susie were amazing!','2019-11-13 15:26:55.000000','299216637560955'),('2819893788105771',1,'Tuve una experiencia muy agradable me ayudaron Vanessa, la doctora patel y la enfermera kat. Muchas gracias','2020-04-22 00:27:47.000000','167959367441528'),('2821079201236623',1,'Had such a great experience here! Won’t go anywhere else','2019-11-12 18:03:39.000000','235046800697531'),('2821085091298681',1,'It was a good experience. The staff from the beginning all the way to the doctor was very helpful and knowledgeable of everything. I give big thanks to dr. Datta , Jesse rn, joy r, and amy. Thank you all for checking me out and giving me the medicine to get better. Will be coming back for medical needs.','2019-07-04 16:23:05.000000','1648645701907657'),('2821676514570524',1,'Nurse Cat and Dr. Jones were amazing! They attended my baby girl so fast and made me feel at ease after my daughter had a fall. Thank you so much!','2019-07-04 02:47:57.000000','251751275488925'),('2822028904495439',1,'Very efficient,clean, respectful, and courteous facility and care providers. I\'ll return here for myself and kids next time I need them.If I need them that is.','2019-12-12 14:35:55.000000','461782867645453'),('2822028941157662',1,'Very amazing experience! Amy at the front desk was very welcoming and fast, Dr.Patel, and Nurse Rollie and Tech Natalia went out of their way to make sure I got the help I needed!','2019-07-03 11:06:27.000000','1648645701907657'),('2822487357847505',1,'Dee is great at the front desk she made me feel very comfortable and ensured I was seen quickly. I recommend coming every time.','2020-03-16 20:00:54.000000','1608991329419166'),('2822715047961068',1,'Extremely nice and thorough. Dr. Hehman was a peach and so was everyone else that helped. Thanks a lot Courtney S. for your sweet and kind service. They are the most genuine group of people I’ve ever met an Urgent Care.','2018-01-09 06:18:42.000000','1787364321589026'),('2823269654355492',1,'Excellent service they were awwsome','2019-06-16 00:15:24.000000','326347177710316'),('2823921357649208',1,'Amazing staff, very little wait time. Highly recommend!!!','2019-06-03 22:38:39.000000','251751275488925'),('282412116028683',1,'Dr. Patel \nAmy registration \nBryan E. RN \nGreat team','2019-05-04 06:42:42.000000','1609539722669429'),('282427616080616',1,'Thanks to Avean,Tricia,Jordan & Lindsey for taking good care of me during this time of need. Keep up the great work.','2020-03-25 20:32:34.000000','167959367441528'),('2824978220850137',1,'care was excellent and the staff was very professional and friendly','2019-07-30 05:46:59.000000','1787364321589026'),('2825925254095313',1,'I would like to thank the staff Tiffany, John Bell, and Matt L for their services today! I would highly recommend them to any friends and family!','2019-12-17 16:47:34.000000','299216637560955'),('2826563084047689',1,'I loved the staff here and I will always come back. Maya the receptionist was so nice and quick will be back! I had a great night','2020-01-24 21:57:28.000000','829264323932850'),('2827773513982454',1,'The visit was awesome! The wait time was less than 5 minutes. The staff was very friendly. Dr Zheng was very informative and answered all our questions thoroughly!','2019-12-31 02:15:23.000000','829264323932850'),('2828207280588263',1,'Amy, Alvean, and Marcus was very professional and excellent services!','2020-03-22 17:43:39.000000','167959367441528'),('2828584077162539',1,'Thanks so much for all y’all do . Kim Domanski\nKim Davidson and Lucas and all your staff y’all are all amazing.','2020-01-30 12:17:44.000000','235046800697531'),('2829427793750249',1,'The complete round of care provided by every person on the team, from the front door until you’re home, is one to none 10/10 recommend! A huge thanks to Sita, Corey, Jose, Allison, and Dr. Datta for doing the best to get treatment provided!','2019-06-10 07:23:45.000000','596022027480375'),('2829726310422351',1,'Super fast and friendly. Definitely recommend','2020-02-06 21:38:12.000000','596022027480375'),('2830586990332385',1,'Shaw and Alyssa where nice and welcoming. Really helpful.','2020-02-13 19:35:49.000000','1787364321589026'),('2831056800279273',1,'Super Nice Satff... Registration Jennifer D Nurse Jenci Tech Matt.... GREAT at listening and trying to figure what they can do make you feel better.','2020-01-04 20:22:49.000000','299216637560955'),('2832174720211277',1,'Dr. Zhen was amazing and the nurse (Irving) was very hands on with caring for my son.','2020-03-08 07:03:20.000000','829264323932850'),('2833611493342311',1,'Jocelyn. Marcus.E.Katerini.Thuy.And Dr Chukwuma are a very great team .','2020-04-12 13:20:14.000000','167959367441528'),('2833618359981857',1,'I love this place! We have been here several times and each and every time the staff have been absolutely wonderful. Especially the receptionist Cindy and everybody else. I would highly recommend this place for everyone.','2019-11-05 04:51:46.000000','1648645701907657'),('2834099783318487',1,'Dr. Fair, Jennifer R.N., Rad Tech Fatima B., ER Tech Elaine M., and Tanishia with Registration were all wonderful with helping my son when he was sick with the Flu Virus. He was made to feel very welcome and was well cared for during our stay! I definitely recommend this emergency room to everyone that finds themselves in need of emergency care!','2019-12-20 09:14:24.000000','461782867645453'),('2834371763242548',1,'Great place was great the Tanishia W was a great help when i walk in and I was a fast in and out services with great staff and nurses Sarah G and Dr.N Patel every nice and easy going','2019-11-08 02:31:13.000000','544778295636544'),('2834741659950565',1,'Dr.esrevez , Nurse Susan , Ms.Tanishia were the best hands down . I had been too three emergency rooms before this one and I was so upset . These ladies were very sweet and understanding and made me feel so comfortable. Thank you so much ladies ❤️','2020-03-20 04:51:46.000000','461782867645453'),('283504115963687',1,'Dr.Daniels \nNurse Rollie \nRad tech Natalia\nRegistration Stephanie :)\nThey were fast and gave us valuable information 😄','2020-03-09 01:46:30.000000','1648645701907657'),('2835206603187917',1,'This center is great! everyone from Lizzy, Brandon, Meredith,Sheresa, Ebony and Dr. Patel were so courteous and extremely knowledgeable. They new exactly what we were talking about. They were so nice and super courteous. I would definitely recommend them','2019-06-30 02:20:56.000000','544778295636544'),('2835410139820205',1,'Very fast and excellent personnel from Sita at the registration desk to Dr Miller & our family favorite nurse Jose!! We have came here several times and always been treated with great service & promptness. Strongly recommend this place & most definitely will keep coming back! Thank you SignatureCare!! 🙏🏼','2019-08-14 03:28:43.000000','596022027480375'),('2835989249776942',1,'Really great people. Lisa v.. Allison and dr pham. Did a great job. Thank you','2019-06-16 17:26:27.000000','596022027480375'),('2838285766265228',1,'Thank you Maria G awesome and quick registration process','2020-02-24 23:12:11.000000','237100240304186'),('2838451119564967',1,'this is my second time here and they take great care of me. \nI recomend signature care for everyone.','2020-03-24 16:39:11.000000','251751275488925'),('2838582216183096',1,'The staff was all wonderful and sweet! They cared for my employee when he got injured at work and got out in a timely manner. Definitely recommend coming here!','2019-06-11 15:55:01.000000','544778295636544'),('2839321242790073',1,'Amazing service. Fast and superb staff. From the moment I walked in Tanisha( receptionist) was welcoming. Rad tech Fatima put me at easy and explained the process. Dr. Faig answered all questions I had. I absolutely recommend this place 100%.','2020-03-23 02:44:09.000000','461782867645453'),('2841594159218595',1,'Great experience, great customer care! Special thanks to Ashley Burton, John Bell and Ashley K!!','2019-12-14 15:46:11.000000','299216637560955'),('2842535735782683',1,'The staff at this location did a great job taking care of my wife.. Dr Souman, Alvean, Patricia and Zeik','2020-02-09 17:03:09.000000','167959367441528'),('2842557022501644',1,'For one there’s no waiting time when you sign in, two they offered you a warm blanket! The staff is every nice and comforting! They make you feel like you’re safe in their hands!','2020-03-14 21:10:25.000000','1765121397101399'),('2842731059081855',1,'I had the best experience there from the moment I walked in love the hospitality thanks to Dr.Henderson,Alvean,Patricia and Zeik','2020-02-08 23:02:06.000000','167959367441528'),('2843532915701544',1,'Both my Tech Thuy An and Nurse Alvean did great job caring for both my friend and I after our car accident they both were very caring and compassionate. I thank and appreciate the entire staff for being here for those in need especially during this epidemic! Process was very quick','2020-04-09 19:31:40.000000','167959367441528'),('2843704992355183',1,'Today emergency room visit was excellent . The staff was great and I would like to thank Dr.Patel, Charlotte, Nancy, Norma and Vy for the great service. Thanks So Much for everything.❤️❤️❤️','2020-02-23 19:50:45.000000','461782867645453'),('2844080138938164',1,'this place is awesome Jasmine is the best Marcus B thanks brother. an Janie the best. the doc is awesome.. Dr o\'malley','2019-06-18 20:43:07.000000','167959367441528'),('2845354068844670',1,'the entire staff here today was awesome! i reccomend coming here rather than going to the city er. These guys are the bomb.com!','2020-02-27 21:59:58.000000','544778295636544'),('2845410992153694',1,'quick l, great nurses and doctors, wish half theses doctors had their own offices.','2019-08-17 02:58:39.000000','596022027480375'),('2846423895367743',1,'Nice staff and speedy service. Sarah, Jennifer, Brisedia and Dr Patel took care of all ourneeds','2019-12-10 04:39:08.000000','461782867645453'),('2850726061620910',1,'I recommend the place, the staff and nurses are amazing, Kat, Randy and Frank did an excellent job with my friend who needed stitches, and fixed him up rather fast, I dont think I\'ve met such nice people in hospitals before, Excellent!','2019-07-04 00:59:26.000000','251751275488925'),('2850881814963901',1,'Absolutely incredible service! The entire staff was quick and helpful. Everyone should come here. Unbeatable!','2019-12-18 06:03:29.000000','167959367441528'),('2851033858306127',1,'super friendly staff. Ryan and Shannon were very caring.','2020-03-12 00:56:51.000000','235046800697531'),('2851752714883321',1,'Maya the receptionist was so nice checked my son in quickly! very clean and organized!','2020-03-12 19:57:57.000000','829264323932850'),('2852607428094045',1,'Dr.Faig,Ana ,Sara ,Sheraton and Christian were all WONDERFUL! Would recommend this location to anyone!','2020-01-17 01:21:20.000000','829264323932850'),('2853641494663438',1,'This place is so awesome the staff are friendly and they are truly concerned for the patients.','2019-08-16 23:32:12.000000','596022027480375'),('2854632704559255',1,'Brought my girlfriend here because she was having abdominal pain for two day! She doesn’t have an updated insurance policy but she was still able to be seen and not immediately turned away for emergency help ! I’m thankful to the nurse Kristina and Ray who came in to help her and are being so professional. I love the environment. And doctor Thomas is great also ! 👍🏾 will definitely recommend to others for a visit.','2020-01-26 23:19:18.000000','829264323932850'),('2855378194505890',1,'We always get great care here. Dr.Eisbecker was very knowledgeable.','2020-02-27 18:52:24.000000','237100240304186'),('2857416674319758',1,'Our teenage son had a knee injury and the hospital er sounded dreaful. We tried this place and there was barley a wait, they treated him with such care and professionalism. If we need urgent treatment again we will definitely be back!','2020-01-17 14:17:43.000000','461782867645453'),('2858999464133833',1,'This location is fast no wait once I got here I was put in an room less than two minutes and the staff was very nice and help making the process easy for me from Mrs Stephanie the registration and Blake who is the RN from the Rad Tech Son and the Dr Leavitt who really made my mind at ease being a new mommy and a nervous wreck thank you for the hospitality and continue to give great customer service','2019-10-23 01:28:58.000000','1648645701907657'),('2859244174169762',1,'Kristina, Laura , Maya were really helpful for my visit I would recommend coming to this emergency center to get the best care','2020-02-21 19:08:01.000000','1608991329419166'),('2859393024118404',1,'Great staff was in and out in no time super friendly and helpful to me and my family','2020-01-26 02:07:20.000000','829264323932850'),('2860024660988790',1,'Best place ever! Quick and easy process with the friendliest staff! My kids needed the rapid Covid test and they treated them with such patience and kindness. We also LOVE Dr Angela! She is so awesome!','2020-07-21 02:31:22.000000','104213804456471'),('2860498190691124',1,'The staff was very helpful answered my questions. would recommend in a emergency. Thank you Jessica,Theresa Carolyn And Dr.Oslecki. The Maynez family','2019-07-17 10:50:00.000000','237100240304186'),('2861037157253493',1,'I was skeptical about coming here because of many places in Killeen aren’t really the best quality but as soon as I walked in I was very surprised with how beautiful it was! They were very fast and helpful. I will be coming here now over the emergency room!','2019-12-10 04:33:27.000000','251751275488925'),('2862222193805401',1,'Bought my husband in today, the staff is very friendly.. Aaron did a excellent job on the X-ray and taking blood.. Delpha did a fast ekg..Savanna (nurse) was very compassionate. Doctor Nguyen is very knowledgeable and made sure everything was ok before letting him go.. Recommend this Er definitely..','2019-10-18 19:48:15.000000','596022027480375'),('2864918393531340',1,'Signature Care Stafford is awesome!! I came in this morning with some dizziness and the entire staff was great from Valinceia P that checked me in to my nurse Nicole P she was great and Dr. Hehman was AWESOME!! He explained everything thing to me and gave me some doctors to see for a follow up. This place is great!!! I reccomend it for any emergency you have.','2020-03-02 14:45:07.000000','1787364321589026'),('2865562360149411',1,'The whole staff was very friendly, the receptionist Tunishia is very friendly, as well as Dr Henderson, he was very thorough and detailed in explaining what was going on with me. From Chantal to Laura to Elaine, Tunishia and Dr Henderson, they all did a wonderful job in taking care of me. I really appreciate it, and I definitely recommend this urgent care to any and everyone. 😊','2019-12-30 03:53:47.000000','461782867645453'),('2865727116844267',1,'Love they service and fast pace and they customer service is awesome and I definitely recommend anyone to come here','2020-03-16 19:48:29.000000','1608991329419166'),('2866626050068843',1,'I would highly recommend everyone to come here great service and snacks 🤗🤗🤗 Jocelyn A and Alvean A were awesome and also thanks to Dr.Patel we can go home feeling better then this morning.','2020-01-22 21:43:45.000000','167959367441528'),('2867254963320966',1,'I have been to this location twice, different staff but all are very fast and friendly. Dr. Zheng was informative. Nurse Irving and Nurse Katherine was fast. Holly and me have the same birthday. Thelma and Ana are nice and welcoming. I would always make SignatureCare in Westchase my first stop when I\'m in need of help.','2020-03-07 23:55:35.000000','829264323932850'),('2867287576634418',1,'I brought my mom in for an infection. They were super quick and so polite. She was terrified of going to the dr and they made her feel so comfortable and took excellent care of her! She agree she would definitely come back her!','2019-10-16 01:43:29.000000','596022027480375'),('2868528206540121',1,'Great Customer service, Great staff, Doctor, only a 5 minute wait time.','2020-01-06 12:24:29.000000','596022027480375'),('2868958866519083',1,'Thanks Norma, Nanci, Vy, Charlotte, and Dr. Patel!!! Really appreciate your guys helps such a hospitable team and friendly establishment! Will definitely return for future situations!','2020-02-24 00:11:55.000000','461782867645453'),('2870543042997600',1,'This ER is somewhere that easily feels like home and is made to be a comfortable experience no matter how sick. A special thank you to nurses Patricia and Alvean for their impeccable bedside manners and making my visit a smooth and comfortable experience. I highly recommend this location to anyone who needs care.','2020-01-16 22:30:28.000000','167959367441528'),('2870602946340282',1,'The receptionist was amazing, very informative. Tanishia was so great and kind. She was attentive Chantele, the nurse, was so amazing. She was so caring and kind. She was informative and quick. She was kind and friendly. I will recommend family and friends to come here.','2020-03-02 05:03:38.000000','461782867645453'),('2870753889636676',1,'quick and helpful people. very kind and professional.','2019-10-26 07:15:59.000000','251751275488925'),('2872451436168113',1,'I’ve been to this location a few times and every time I go the nurses and staff are always amazing. Tanisha was very welcoming and friendly and helped me very easily. Elaine and the RN Lynn were very nice and sweet. They came to check on me several times and they always asked if I was doing okay. I love the staff here and would HIGHLY recommend to family, friends and everyone else!','2020-04-06 07:03:45.000000','461782867645453'),('2872573252793418',1,'No long wait time.,checked us in right away., Jocelyn at registration very nice , Medical staff professional and very nice.Nice and clean comfortable waiting room and exam room.','2019-12-20 03:29:30.000000','596022027480375'),('2873484749389199',1,'My recent visit to SignatureCare ER was great. They have a great professional team and really go above and beyond to care for you. DR. ASHBROOKS, MD, DARRIN \nNurse: Katherine B W \nRadiology Tech: Gunnar S M \nFront Desk: Austin B D thank you all so much. I would HIGHLY recommend this ER to everyone. I’m also going to mention DR. YOST too I had my gallbladder removed recently and DR. YOST admitted me into the care of great surgeons at the hospital. Seriously couldn’t ask for a better team of health care professionals! THANK YOU ALL.','2019-07-18 16:38:21.000000','235046800697531'),('287445302341527',1,'Agradezco la atención. Por parte de Jessica P y Mara por la maravillosa atención que brindaron. Mi esposo y lo rápido que a tu a n sindo muy amables y te hablan en tu idiomas','2020-08-03 01:45:41.000000','237100240304186'),('2874723419255673',1,'Took very good care of my sister while she was in they’re care','2020-02-03 17:41:10.000000','1609539722669429'),('2875145635871514',1,'been here for about 6+ hours and the staff has been very professional and kind to my husband and I... Amy and Cat were his nurses during his stay and have been BEYOND amazing!','2019-04-25 03:01:44.000000','251751275488925'),('2876001672459738',1,'Awesome staff awesome doctors Dee front desk clerk is a Gem thanks for everything all do.','2020-03-16 14:34:14.000000','1608991329419166'),('2876507075907240',1,'had an awesome experience at this location, cindy the lady at the front desk she is so sweet. Nurse Al attended to me immediately and kept checking on me the whole time.','2019-06-16 01:49:57.000000','544778295636544'),('2877050832354715',1,'Dr. Nguyen and Alvean Patricia and Chris. well kept facilities and great staff kept us well informed and glad to have come here.','2020-01-26 22:48:27.000000','167959367441528'),('2878374735515751',1,'great service and snacks.','2019-12-01 08:01:04.000000','235046800697531'),('2878426485554334',1,'I went in with horrible aches and fever maya in the front was very friendly and directed everything needed since it was my first time here. My nurse Kristina was very thorough and dr Patel was friendly and informative. By far the most comfortable experience and I like many others hate seeing doctors. Will definitely return to this location','2020-01-25 15:27:18.000000','829264323932850'),('2879532618773306',1,'Elisa, Alvean and Marcus are a wonderful team they were great with my husband.','2020-03-11 23:25:30.000000','167959367441528'),('2881551395219368',1,'Though a middle of the night hospital visit has unpleasant reasons behindit, the genuine care and compassion I received from signature care made my night a whole lot better. From being greeted at the door by Jennifer to having my vitals checked by Valerie, I felt genuine care and concern for my condition. I had Billy Brooks for my nurse and he was just phenomenal as was my doctor! If any higher ups are reading this, Billy needs a raise ;). Thank you signature care!','2019-07-23 11:35:05.000000','299216637560955'),('2882363158523010',1,'Awesome experience very friendlyAnd quick','2020-02-26 22:49:03.000000','1608991329419166'),('2883037931733065',1,'The staff was very helpful and very professional. They made my daughter feel comfortable and were very efficient.','2020-05-27 13:17:26.000000','237100240304186'),('288332568818957',1,'Patricia and Vivian gave us excellent serve today on my daughters dr visit','2020-02-18 20:46:08.000000','167959367441528'),('2884532864940942',1,'I received amazing care at this place. Thanks Alvean Chris for your smile. You are so kind.','2020-04-04 18:24:04.000000','167959367441528'),('2884541231578378',1,'Great place, very efficient. Amazing staff especially Rad tech Fatima, ER tech Daniel B. Nurse fahme and doctor Zhen MD Definitely recommend','2019-12-09 05:51:16.000000','461782867645453'),('2884989384893494',1,'Everyone was very professional and the front desk ElizabethT was very kind. The clinic is clean and the staff was amazing. I got treated as soon as I got here. Overall experience was amazing. Would definitely recommend 👌Made my ER experience much better. Thanks everyone!','2020-01-27 05:53:40.000000','1608991329419166'),('2885836708166911',1,'This place is great and everyone that cared for me was so amazing and caring. Special thanks to the receptionist Tanishia.','2020-03-30 04:15:32.000000','544778295636544'),('2887065348025200',1,'Excellent service and great employees!!','2020-03-01 06:19:56.000000','544778295636544'),('2888496537869800',1,'We were seen very quick, had xray performed, treatment for my problems and on our way out the door in less than 30 minutes total. I absolutely recommend SignatureCare in Paris.','2020-01-07 18:56:33.000000','299216637560955'),('2889402054409600',1,'I visited ERcare today and will always use this physicality! From the front to back you are taken care of with such professionalism. They are such kind,friendly sweet people. \n\nAdicanna was my nurse and Magalie was the radiologist they both were exceptional! \nI wish I would had took the time to ask all their names... I would had mentioned them as well. \nThank you for all you do for the people of Odessa.\nGod bless each and everyone of you!','2019-07-19 18:34:10.000000','237100240304186'),('2889886207789229',1,'Great customer service!!!','2020-06-12 17:53:07.000000','1698192877146046'),('2890394574315252',1,'Great experience, very welcoming ppl and service was rapid and effective, specially tinishia, Fatima, cahantel','2020-03-09 04:13:24.000000','461782867645453'),('2892126650800595',1,'staff from the receptionist to the nurses & doctors are incredible. Manny my nurse was very attentive & got me in & out very quickly. I absolutley reccomend this facility over any other emergency clinic.','2019-12-15 22:09:26.000000','237100240304186'),('2892252477463097',1,'Absolutely great level of care! Dr Yost, Lucas, Kim and Eric were amazing!','2020-02-18 17:43:03.000000','235046800697531'),('2892451840795711',1,'Our experience waa great here. My boyfriend was brought in and seen immediately. Dr. O\'Malley, Nikaela, and Amy were great! he\'s been to other hospitals 3 times and this is by far the best!','2019-03-11 02:18:33.000000','167959367441528'),('2893029380742540',1,'Thanks to Dr Henderson, Chantel, and Tanishia. \nEveryone was fantastic and took care of us quick fast and in a hurry.','2019-12-30 06:05:12.000000','461782867645453'),('2893088897411388',1,'In and out service. Made it real easy for us. Thank you to the people helped us. Reg-Lisa P. RN—Adriana. RAD TECH- Allison L. And DR. Pham.','2020-05-03 19:24:49.000000','237100240304186'),('2894349750594724',1,'The whole entire staff was awesome! Especially Doctor Morrieal and the tech Juan.','2019-09-19 18:18:50.000000','326347177710316'),('2894590437265435',1,'Dr. Herbert was very informative & helpful, as well as the staff. I would really recommend for ED needs.','2020-02-02 03:54:26.000000','596022027480375'),('2894595447431575',1,'they are the best and so Friendly and awesome..my son was seen within minutes and the staff was so friendly so cool they joked around with us a lot and it is very clean and very nice and I would recommend this place to anybody..love u guy\'s','2019-05-14 02:34:51.000000','1787364321589026'),('2896333700411401',1,'It was very quick and informative experience and everyone was really nice and offered warm blankets. Keep up the good work!','2019-11-19 22:59:13.000000','829264323932850'),('2900513373314011',1,'They had us back quickly and the doctor was in within no time. The place is spacious and they even gave my 2 year old chips, a drink, and a sticker! Definitely coming back.','2019-11-26 15:50:44.000000','544778295636544'),('2901636683396792',1,NULL,'2016-07-08 17:57:49.000000','544778295636544'),('2902445029779079',1,'Really Took good care of me. Dr Nguten, Alvean, Kelly, Patricia, and Jordan work very curtious and professional. Will definitely recommend in the future.','2019-12-20 19:31:45.000000','167959367441528'),('2904592672936172',1,'Short wait time and very professional/friendly staff.','2020-01-15 18:53:33.000000','1787364321589026'),('2904704119624180',1,'I took my husband to this location and experience the most kindest care from their staff. I would most definitely recommend this place. Thank you for your service.','2020-04-15 01:05:09.000000','104213804456471'),('2905457372820725',1,'Very nice staff. and they were very professional.','2019-12-17 01:45:17.000000','237100240304186'),('2907237492695580',1,'good, understanding people who know how to treat people. took my sis here and they got her better','2020-03-11 07:27:48.000000','251751275488925'),('2907774885934576',1,'we love coming here. absolutely the best way to go in and out..and everyone is wonderful','2019-11-11 06:01:47.000000','544778295636544'),('2908095342583427',1,'Politeness from the staff was great and I only came in with a spider bite and I was treated like a priority with a super nice doctor who explained everything and I felt comfortable the whole time.','2020-01-30 18:03:12.000000','1609539722669429'),('2908278125899830',1,'I first called several urgent care services and came across Signature. From the customer service, the quality care and detailed instructions I was immediately drawn to there facility.\nWhen I arrived the place was spotless clean and everyone I encountered had pleasant faces. Each Nurse was willing to answer all my questions and concerns. Each staff cared about me as an individual and family member. All my fears were addressed and handled with patience and concern. I left with a better attitude and less fear of what brought me there. \nThey even worked out a payment plan with me and did not make me feel bad about not having the funds. I received the same 100% service card and treatment as a paying or insured client. \nI recommend anyone wanting quality care with no stress and hours wait to visit Signature. Especially the Stafford location at 90 and Murphy.','2020-03-05 03:50:40.000000','1787364321589026'),('290844261738032',1,'My experience at Signaturecare Emergency center was exceptional. Everything from the front desk clerk (Janay) recognizing my immediate emergency (severe allergic reaction) to the radiology tech (Linda) getting me connected and checking my vitals to the calm, yet highly efficient and lovely nurse, Christina was definitely up to par. Dr. Lingan was the M.D. that night. He was very thorough and calculated as to how to properly handle my situation. I knew I was in good hands with the high level of knowledge and professionalism that each staff member exemplified. I am very thankful to each of you for nursing me back to health. Thank you, again, for your attentiveness and care.','2018-10-16 03:34:41.000000','1698192877146046'),('2908574962583187',1,'Friendly, caring and efficient.','2020-02-05 18:09:33.000000','235046800697531'),('2908910895853511',1,'Erika was really awesome her staff was as well.','2020-04-20 16:15:08.000000','237100240304186'),('2909709999080343',1,'First time coming to Signature Care, and it was a pleasant experience. We were welcomed by Sindy and Angela at the front. There was no wait time to be seen and everyone was very nice, especially Selina the nurse. I would recommend coming here if you\'re ever in need of an emergency room.','2020-02-06 21:29:19.000000','544778295636544'),('2910535892295545',1,'The people here are super friendly. Contessa went out of her way to make my daughter feel comfortable and well informed. Nino was also very helpful and proactive in getting us anything that we needed. Dr.Zajac was gentle with my daughter and very accommodating. Definitely recommend coming here.','2019-06-02 02:03:20.000000','251751275488925'),('2910903065696752',1,'Amy, Gracie,Sean, and Dr. Daniels where amazing! Great experience and amazing people! Made my finger look like nothing ever happened 😁','2020-04-23 04:08:56.000000','167959367441528'),('2911149902262641',1,'great friendly and fast service','2019-12-15 01:08:30.000000','237100240304186'),('2911991908811880',1,'The team here is so nice and welcoming! Dr. Hall, Lynn and Courtney are all very accommodating, professional and thorough.','2019-12-27 19:54:45.000000','544778295636544'),('2912256098833513',1,'I had a great experience with Alvean ,Patricia and Thuy An. They all treated me very friendly and professional.','2020-02-13 22:11:06.000000','167959367441528'),('2912789965418776',1,'If you want to go somewhere that won’t have you waiting a long time..this is the place!','2020-01-14 05:14:58.000000','326347177710316'),('2912845772092191',1,'I really had a great experience . Dr Yost was very thorough , rn Mollie was extremely helpful she went as far as explaining the heart rate and symbols to my son , rad/lab Shannon was very nice to my son very pleasant young lady and reg shelbie & tobie we very helpful I will be back','2020-02-21 03:54:32.000000','235046800697531'),('2913624622024390',1,'Fatima did awesome job she is really nice and doctor lu is also very nice charlotte nurse gave me best medicine to recover my self and elaine did my iv and bri she was very nice at the front desk.','2020-04-07 06:57:33.000000','461782867645453'),('2914134368599257',1,'friendly and caring staff with quick service','2020-01-07 21:02:31.000000','829264323932850'),('2914158598611065',1,'Excelente Equipo de Trabajo muy Amable y Muy Profesional el Dr. O\'Malley Excelente Joshua muy Amable muy Servicial','2019-08-03 02:56:08.000000','167959367441528'),('2914775341868358',1,'great place to go for your family','2019-11-14 18:06:46.000000','237100240304186'),('2915861058482997',1,'Excellent service. Thanks for the snacks. Tanishia to Dr. Kotey. Thanks! All the staff was great!','2020-02-21 05:17:38.000000','461782867645453'),('2917182634995755',1,'They have an amazing staff. Dr Henderson, Alvean, Jordan, and Jocelyn were all very professional.','2020-02-05 16:17:50.000000','167959367441528'),('2917254511628668',1,'Signature care was fast and efficient today! Came with my boyfriends chest pains and they got him taken care of quicklh','2020-02-05 19:52:09.000000','1787364321589026'),('2919067564822563',1,'Love this Signature Care facility! So clean, nice staff, and thorough doctors. Maya and Kristina were great today with my visit! Definitely my choice when it comes to my emergency care away from home(California).','2020-02-21 16:38:48.000000','829264323932850'),('291933425048880',1,'Tiffany,Ashley K,Ashley B, and Susie were all very helpful and the service was fast . they were all nice and friendly','2019-05-02 17:07:47.000000','299216637560955'),('2919354128087350',1,'This Center has always given me and my family nothing but the best of care. Always greeted with a smile from the front desk, all the way to the back my medical staff! The best staff, the best nurses/techs/radiology and the best and most professional and experienced Doctors!! Will always return here without a doubt! Dr. O.Faig, is the best!!','2020-03-05 12:51:53.000000','829264323932850'),('2920597881326727',1,'Didn’t take long I was in and out. Patricia, Ekaterini, Marcus & Thuy Anh.','2020-03-13 20:03:22.000000','167959367441528'),('2920949544630082',1,'This place is amazing! We\'ve gone quite a few times, I would rather go here then my pediatricians office. They got me in so quickly yesterday, and took care of my baby asap. Super helpful, they give you lots of information, and never rush you out. I tell everyone to go!','2020-03-08 17:03:07.000000','1765121397101399'),('2921599464518917',1,'The staff took great care of my daughter.Dr Ibarra , RN Irung/Kelly,Tech Thelma and Ct/Dr Tino','2019-12-30 00:52:26.000000','829264323932850'),('292222775454973',1,'Very fast ! The staff was very cheerful after testing','2020-07-07 20:55:45.000000','1609539722669429'),('2922475267863829',1,'Was greeted by the receptionist (Brenda Roman)with a bright smile and quick check-in. Every single staff member from the nurse to the Dr. where beyond profesional and quick to administer anything and everything to make me feel better immediately. Would definitely recommend and will always count on Signture Care for my emergency health.','2020-05-04 00:48:02.000000','1608991329419166'),('2922668257764503',1,'visit was quick and easy. efficient staff thank you rebecca v., dr. hemera, nurses gabriel and Remington, patrick, and Kathleen','2020-02-01 03:36:06.000000','326347177710316'),('2923074514369289',1,'I had to take my mom to the clinic late on a Friday night. There was no wait. The staff including the doctor was very friendly. She had to stay overnight for observation. The rooms were nice and were equip to accommodate a guest to stay in the room as well. The facility was clean and there are even snacks with a mini-fridge in the room. I was very impressed!','2016-07-12 01:31:54.000000','544778295636544'),('2923178987709157',1,'Maria, Manny, Magali & Delpha are the best. They got me fixed up and were so pleasant.','2019-06-08 21:13:38.000000','237100240304186'),('2925051554182062',1,'The staff was amazing! I felt confident that my baby was getting the best care! Thank you Melissa, Nurse Robert, and Dr. Iheme!','2019-11-16 03:00:42.000000','167959367441528'),('2927194617314828',1,'the staff is awesome sweet and fast the front desk lady sindy is awesome with pretty nails my nurses gina and vivenne made me fell so comfortable! and the dr .singla was very knowledgeable and concern! i love it here always in and out quickly!','2020-01-24 18:24:37.000000','1609539722669429'),('2928196840544650',1,'Fast, friendly, I’m definitely come back !!','2020-01-06 01:26:15.000000','251751275488925'),('2929137567104416',1,'At arriving Cindy was amazing. checked us in and got us back in less than 5 minutes. \nonce in the back Regina took control and did everything expected of an RN. \nDr. Soli took such great care of us. This is bow our go to place for medical care.','2019-12-18 17:47:32.000000','1609539722669429'),('2929814110401612',1,NULL,'2017-08-09 12:05:04.000000','544778295636544'),('2932150840152322',1,'this is my second visit this year and again was welcomed by Patricia at the door and was very welcoming the moment I stepped in and was taken care of by nurse Ekaterini with the pain shot and Marcus for taking the Xrays and nurse Thuy Anh for making sure I was feeling ok also thankful for Dr. O\'Malley for assuring me that everything so far was ok and was very nice and welcoming','2020-01-03 22:42:56.000000','167959367441528'),('2932276260148737',1,'I came in pretty bad shape but they made the experience great. All of the staff was cheerful, nice and had the can do attitude.','2020-03-13 17:08:45.000000','104213804456471'),('2933466956703507',1,'Great!! Service. Whats an amergency for you is amergency for them. We have never been treated this way, in our whole lives...God bless @ercare24.com thanks to the whole staff!\nFront desk -samantha\nNurses -g&christine M\nRad tech: bryan D.\nDr. Dang','2020-02-19 01:52:58.000000','1609539722669429'),('2935229489867034',1,'super caring staff. we were in and out and left feeling better. would definitely reccomend','2020-02-21 03:57:10.000000','237100240304186'),('2936538096390164',1,'Jocelyn Alvean and dr Harjai\nthank you for your service','2020-04-09 22:07:44.000000','167959367441528'),('2937272729624955',1,'Great staff! very friendly and helpful! highly recommend anyone coming here','2019-12-19 01:24:23.000000','829264323932850'),('2937779806236382',1,'Was here with a friend and it was actually a pleasurable experience!! We were greeted with sweetness by Linda and she was absolutely awesome! Kara the RN got our humor and was super sweet! Mrs. Helen our radiology tech was so funny and a veteran. She was super RAD!! 😀 Thank you so much for your service Mrs. Helen! Dr DeWaal has got to be the best doctor I’ve seen deal with a patient in a long time! He showed true care and was extremely helpful letting us know what everything meant. Everyone in this place needs triple kudos!!!! I will definitely bring my family here if I’m in need! Thank y’all so much for your hospitality and getting our humor! 🤪','2019-11-13 05:36:09.000000','235046800697531'),('2939461982754685',1,'awesome experience with the staff Dr. O\'Malley and his team are great!','2019-08-23 03:38:00.000000','167959367441528'),('2939621682730125',1,'Ray,Jessica ,Very friendly and caring...','2018-09-07 02:26:52.000000','1787364321589026'),('2940566109334101',1,'The entire staff was very friendly. Kendra made paperwork very simple and smooth. Morgan was very polite and made my situation less stressful. Jacob asked me if I needed a warm blanket and made sure I was comfortable the entire time. Dr. Singla was very thorough in his explanation and I feel better already.','2020-02-18 18:51:12.000000','326347177710316'),('2941013309266137',1,'I had to spend overnight here and Gina was my nurse for the past two days. She, the facility, the physicians, and everyone else were amazing! 5/5 would recommend!','2020-01-24 14:59:53.000000','1609539722669429'),('2941431485874016',1,'Amazing group. Clean, fast','2019-09-24 03:09:25.000000','251751275488925'),('2942798129132664',1,'Tammy,Tanishia,Dr Garcia thank you','2020-03-22 23:45:34.000000','461782867645453'),('2944388935620965',1,'Dr. Souman and Nurse Kristina was great I couldn’t have asked for better service anywhere than right here!!','2020-03-31 12:35:57.000000','829264323932850'),('2944867562238756',1,'Dr. Dewaal, Kanyon, Erica & Sam we’re all so sweet and attentive! So sweet','2020-03-06 23:46:01.000000','104213804456471'),('2945114972205965',1,'Jessica s was amazing and super nice the whole staff treated me with nothing but respect','2019-12-06 05:24:06.000000','237100240304186'),('294657917956213',1,'They did an excellent job of getting me in and out quickly! They addressed all of my concerns and were very thorough in wanting to help! They were very compassionate as well! Excellent job and will definitely go to them again if needed!','2018-04-22 23:19:43.000000','544778295636544'),('2946656012051627',1,'They were wonderful people..very knowledgeable about sickness unlike other hospitals. Beautiful and clean hospital. I do not like blood drawn and Alvean the nurse help me get checked out. Dr. Appiah was very helpful and a great dr. Jocelyn was one of the nicest registration people i\'ve seen and Brian the ER Tech helped me get my results back in a timely manner.','2019-12-18 19:24:58.000000','167959367441528'),('2947520738625527',1,'My experience was awesome! They took great care of my granddaughter! Kristina was so professional and caring!','2020-01-24 20:38:34.000000','829264323932850'),('2947801308574026',1,'highly recommend they do great work','2020-02-19 17:17:37.000000','299216637560955'),('2954517744609672',1,'The best service. They all attended me very well. Made us feel like we were a family. I highly recommend coming here.🙂','2020-04-22 04:04:47.000000','104213804456471'),('2954951607897040',1,'Greeted by Maya very helpful and assisted by stephanie which was very nice and patient with me and dr. singla was very knowledgeable and complete the procedure and and got me better...Thanks to this team','2020-01-23 21:00:14.000000','829264323932850'),('2956527747767331',1,'The staff here are so friendly and not to mention the quickness of getting us in a room. Ryan and Carla were great with my sister and Dr Yost was amazing!!','2020-03-12 00:43:08.000000','235046800697531'),('2957749784322945',1,'Had a great experience over all. The wait time was fast. All the staff was helpful and friendly RN sherri and johny were great. Dr. Boester was informative helped me understand my condition and go over treatment options.','2018-08-16 00:37:34.000000','544778295636544'),('2957831630935066',1,'Great staff, the only signature care I attend to in Texarkana! Dr Edwards, and his staff has always been beyond helpful 😊','2020-01-24 21:59:30.000000','235046800697531'),('2958978014153164',1,'Thanks Mrs. Tiffany, Mrs. Ann, and Mrs. Brooke for helping me today','2020-01-23 02:52:14.000000','299216637560955'),('2960756797272733',1,'Came in today with chest pains and heavy breathing and they took care of me right away. I was very pleased with my service and will come back again if I need to','2019-08-01 09:00:44.000000','1787364321589026'),('2962382727123544',1,'Friendly staff with little to no wait. Lisa V is an amazing nurse.','2019-10-28 02:25:50.000000','596022027480375'),('2963026930414563',1,'Very satisfied with the service, staff were very helpful and kind. There was no long wait and cared to our needs right away.','2020-02-17 17:36:27.000000','829264323932850'),('2963847680326426',1,'Super fast service, and very friendly staff! Nice place!','2020-02-27 21:29:25.000000','326347177710316'),('2963939506959489',1,'I am a bit late due to just life! Ha. I just want tot express the great synergy that this signature ER embodies, i was there early on a Thursday sometime In February/2020. My emergency was just a annoying knot that grew on my body but had no pain.. Stephanie-Main Receptionist was super kind, Informative, very courteous In many ways ; Like allowing me to have some candy bars that weren\'t necessarily for me (Patients) to have. Rollie-Nurse he is great guy wee spoke briefly about (man stuff) which made my experience a bit easier. NAD Tech- Natalia- was nice i think we laugh once about something silly either one of us stated while she was trying to get vitals, blood pressure etc. lovely lady. Dr. Ding- super cool I never thought I would laugh and converse as much with a Doctor at such a early part In the morning. FYI, I am a people person and this experience was really fun and had genuine people working for this particular emergency clinic. Thanks to you all. M.A.','2020-03-04 18:17:17.000000','1648645701907657'),('2964405373572291',1,'There was no wait and everyone is very nice. Inexpensive and affordable. Dr. Henderson, Alvean, Vanessa, Marcus are very nice.','2019-12-09 23:37:32.000000','167959367441528'),('2965311606868214',1,'Great service!!! \nMiss. Dee was great!!','2020-03-16 19:34:52.000000','1608991329419166'),('2965995830105094',1,'Very nice staff and waiting area clean and got my sister in law back and checked on very quickly.Ryan,Lucas,Kim,and Eric friendly.','2020-02-17 22:20:35.000000','235046800697531'),('2967023123341697',1,'I was treated so nicely by everyone. Laura, the radiologist tech, not only did some xrays and vital signs, and was the first person I saw. She couldn’t have been nicer, efficient, and put me at ease quickly. Victoria, my nurse, was the same way, and made me feel very welcome, cared for. She did her job very well, and continued in the nice, warm manner of Laura. Dr. Ortiz was my doctor, and very nice, answered all questions we had and was very thorough. The check-in and check-out was very fast, and handled in a friendly, quick, and organized manner by Maya. Yes, I would definitely use this location of SignatureCare the next time I fall off of a treadmill or for any other emergency.','2020-01-17 18:55:32.000000','829264323932850'),('2967479990034415',1,'It was non painful and accurate','2020-06-15 14:24:24.000000','1698192877146046'),('2968426353215592',1,'Everyone was very nice. Good vibes. Felt in good hands. Meridian and Alvean','2020-02-05 21:54:32.000000','167959367441528'),('2969136703126248',1,'Great experience. Dr. Chopra was nice. Denise was fast, Kanyon and Theresa were nice!','2020-03-28 15:25:13.000000','104213804456471'),('2969271286429315',1,'We had a great experience here with Rollie, Natalia, Stephanie, Yasmina!','2020-03-06 00:58:24.000000','1648645701907657'),('2970049086382492',1,NULL,'2017-12-20 13:29:22.000000','1787364321589026'),('2970434473031220',1,'Great staff, Dr Jones is very thorough. The wait is almost nothing which is great for us working folks. Thai and Alia were all great staff. Even reception personnel treated us nicely and respectfully.','2019-08-21 00:08:23.000000','251751275488925'),('2971079809575719',1,'Absolutely amazing service!! Very professional and caring staff! I do not remember my nurses names regretfully but my doctor was Dr. Curtis. They were all OUTSTANDING!!! I have never used a minor er where you are called back within 5 mins! I would highly recommend this facility!!!','2019-09-18 17:22:45.000000','299216637560955'),('2971305359619957',1,'I’ve never had a broken bone before but you guys were so helpful and kind! Dyveliz, Kim, Brad, Dr. Ortiz were incredibly helpful and uplifting despite my injury. Thank you so so so much!','2018-03-20 22:40:03.000000','326347177710316'),('2971541012865119',1,'Staff is very friendly and attentive, quick service the place is clean and quite.','2020-02-26 13:44:06.000000','167959367441528'),('2971722426179739',1,'Very professional staff & extremely quick service! Will definitely return and refer other family members','2020-02-07 04:24:06.000000','544778295636544'),('2973332996024282',1,'The staff there are real nice doctor great Patricia C help you and nice person will recommend to friends and family','2019-12-30 23:22:54.000000','544778295636544'),('2973968142622720',1,'It’s great. They are always fast and friendly. Place is super clean and they always give me straight answers','2020-01-19 19:06:07.000000','829264323932850'),('2974971652554050',1,'always helpful and friendly and customer service is excellent','2020-02-20 15:45:59.000000','1609539722669429'),('2975998329101330',1,'everyone was very nice. Nicole was very attentive to our needs','2020-01-12 04:47:49.000000','1609539722669429'),('2976139979070938',1,'Patricia C. And Jose P. We’re awesome speedy and courteous 💙','2020-01-02 20:42:23.000000','167959367441528'),('2977340775617557',1,'I received great care. The medical staff was awesome especially my nurse Leslie.','2020-02-12 21:04:04.000000','461782867645453'),('2979826122036088',1,'This is one of the best ERs I\'ve been to in Houston, great staffing and awesome personalities, very prompt and equipped.','2020-02-27 14:54:07.000000','1648645701907657'),('298135050915448',1,'WAY BEYOND what you would expect from an ER. Very professional staff, who enjoy their job and work hard to make sure you are the most comfortable you can be under the circumstances. As long as my insurance allows me to, I will probably never go to a different ER. I’m nervous what this bill will be, but at least I’m getting all the care that can be done to feel less miserable, in the end , that’s all you can ask for.','2018-04-10 23:00:14.000000','1765121397101399'),('2984365031600241',1,'Dr. Elsbecrk, Lauren and Chelsea are great and made the process super easy for me!! Definitely recommend coming here!!','2020-06-09 20:57:43.000000','1698192877146046'),('2987022444675224',1,'The staff was very welcoming and very professional. Samantha, Nicole G, Meredith S, Bryan D, Ricardo and Dr. Yusuf gave EXCEPTIONAL SERVICE!!!','2020-01-21 05:18:48.000000','1609539722669429'),('2988994981145072',1,'Nice and friendly staff!! \nPatricia C. -registration\nAlvean A.-Nurse\nWere they were both so helpful!!','2020-01-26 21:12:35.000000','167959367441528'),('2989577314398343',1,'Really awesome experience, I come here when needed and my family as well, my recent visit was very pleasant and I was helped out by Alvean through all the bloodwork and as well Jocelyn guided me really well with all the paperwork','2020-03-18 19:16:20.000000','167959367441528'),('2991182421003560',1,'Went for a COVID test and was impressed with how organized and fast the process was. I would recommend family and friends to book your appointment and get tested! Also, Okarys was very friendly and informative!','2020-07-14 17:37:27.000000','1609539722669429'),('2992510437435167',1,'This is my 4th Time coming here staff is always Nice friendly and very helpful with Alvean Marcus and Patricia','2020-02-06 18:56:21.000000','167959367441528'),('2993487957457142',1,'awesome place they helped me and my little girl when everyone els was closed good service will never aways come if i have a emergency to them. thank you DR. SINGLA and the nurse NICOLE G. & SHOLA RADIOLOGY. RICARDO \nAND REGISTRATION. SAMANTHA KEEP UP THE GOOD WORK','2020-02-01 03:10:34.000000','1609539722669429'),('2994308087286790',1,'Awesome 👏 and friendly staff... very thorough and quick','2020-01-28 01:32:16.000000','251751275488925'),('2995881650508971',1,'Adriana and Magali were awesome and kind!','2020-07-22 14:07:54.000000','237100240304186'),('2995924093772985',1,'I came to this place and they were super good no waiting time and they check on me quick and I was off in about 1 hr the nurse and the doctor we\'re professional and alvean and Jocelyn were very nice !!! if I needed I definitely will come back over here!!! thank you','2020-01-08 23:44:11.000000','167959367441528'),('2998306273525629',1,'Had an amazing experience both times I went . They listened and were really patient. Sindy Selina Jesse and dr Duano were amazon . Loved the front reception she’s always friendly and nice','2020-03-07 21:10:59.000000','544778295636544'),('2999273010085003',1,'They are really good peoples. Dr.yost Carla, lucas ,Jennifer And Kara,Theresa,Brandi,Shannon y\'all have some Really nice staff and I will tell the world Signature Emergency Are some very nice intelligent peoples. If I ever get sick again I will choose Signature Care Emergency room. Thanks for helping me feel better I appreciate it. Teresa Mason Donaby','2020-02-02 01:48:46.000000','235046800697531'),('2999762350038922',1,'Amazing staff and great customer service! Very quick get you in and out . Malissa is super amazing always smiling and just always helpful!!!! Dr. Alloju was great as well thanks to the entire staff!','2019-10-04 20:52:09.000000','829264323932850'),('3000098823348425',1,'This facilities was great Dr. Farooqi and Rollie were a great help. Natalia was kind enough to offer a blanket as well!! The receptionist Amy was great and welcoming!!!','2019-06-18 02:47:12.000000','1648645701907657'),('3000310136731430',1,'this is the best Urgent care facility I\'ve visited ever... Friendly and welcoming faces.. I knew my mom was in good hands during my absence. Lucas ,Kim and Eric are the most caring staff and possess the most professional demeanor in the medical field... Come here and get treated (literally ). THIS is a place where you feel at home When you can\'t be at home ......','2020-02-18 17:19:57.000000','235046800697531'),('3000785016625135',1,NULL,'2014-07-08 22:37:10.000000','544778295636544'),('3001178099919160',1,'Terra, Laura, Jackie, Michael, and Dr. Thomas were all amazing! Quick and super friendly service! Will definitely come back.','2016-08-18 19:29:51.000000','1608991329419166'),('3001272953267836',1,'I was very pleased with the staff who assisted me. thank you all very much Luisa, Alvean, Jordan and the rest of the SignatureCare Team.','2020-04-17 22:12:46.000000','167959367441528'),('3001820266507128',1,'Lisa V did an awesome job regent got me in out and made sure I was protected from Covid-19 while handling my immediate needs. Thanks \n\nKelsey Jones','2020-04-07 13:13:40.000000','596022027480375'),('3004396029612245',1,'There was no wait, the staff was friendly and the service was great! Alvean and Marcus were very professional and straight to the point!!! Highly recommended!!!','2020-03-02 17:46:51.000000','167959367441528'),('3006406229380439',1,'Dr. Ybarra Nurse Rollie RAD Tech Natalia and Mackenzie along with Registration Stephanie were all super nice and welcoming! Great place for fast and friendly service with little to no wait time!','2020-03-23 01:34:00.000000','1648645701907657'),('3007967952585952',1,'Else clear and staff\nGood care','2020-06-10 21:07:04.000000','544778295636544'),('3008273572517386',1,'Excellent care by the Doctor, Dr Raj Guharoy, RN Rollie Reyes, Natalia, Yasmin’s and Maryann. They are attentive and very compassionate. We were seen quick by the staff and the Dr and was provided a warm blanket immediately. Thank you for the wonderful care.','2020-01-01 03:53:39.000000','1648645701907657'),('3008833429127273',1,'The ladies here are awesome. I recomend this place. In and out with hardly any waiting.','2020-02-07 20:15:23.000000','299216637560955'),('3009067495772948',1,'Hands down the best care I have ever received... Very professional and welcoming spirits!!!','2020-02-18 17:55:59.000000','544778295636544'),('3009773922407956',1,'I will always go here for an emergency. I’ve never met such nice caring staff from the receptionist to the doctor. I was in there 4 hours with my daughter tonight. Most people would complain but I’m glad they were so thorough with me and her. Constantly checking on us while we are waiting on results, one test came back negative dr wanted to do something else, genuine care which is hard to find these days. Extremely patient nurses with my scared little girl. This is what all emergency rooms should be like.','2020-03-08 06:34:18.000000','299216637560955'),('3010281009015728',1,'Care was very excellent! The nurses and doctor were on a scale of one to ten, I give it a ten! And I really love Christopher C, he was really helpful and if I would ever have to come back I would really love for him to be my nurse and for the radiology technician Seble to take care of me again!','2020-03-01 22:11:53.000000','1609539722669429'),('3010564985654584',1,'They are awesome and fast 😊 Everyone is friendly especially Jocelyn, Alvean and Thuy. I felt like I was in good hands when I came in today.','2020-02-22 23:48:06.000000','167959367441528'),('3013076032060259',1,'Such a friendly staff and quick process.','2020-01-13 18:29:38.000000','251751275488925'),('3013283638702323',1,'We had a great experience. The receptionist, Ashley Burton, was so friendly and helpful throughout our time there, and John was very attentive to our needs! We will definitely be returning and recommending to others! Thank you, Signature Care!!!','2020-02-09 04:07:02.000000','299216637560955'),('3013792242017913',1,'High quality service, kind staff!','2020-02-19 22:07:16.000000','1787364321589026'),('3014255215331105',1,'My husband had to go yesterday for b/ p issues . I couldn’t be there , he was alone , and he was scared . They were very thorough, and took amazing care of him . I would definitely recommend this place for your emergency medical needs ! Thank you for taking such good care of my husband !','2020-05-06 17:37:10.000000','596022027480375'),('3014710108560050',1,'exceptional service & everyone really treated me kindly & in good timing. Erica was so pleasant & her attitude at work shows how passionate she is about her work. dr. miller also was really cool & made me feel comfortable. no stress !!','2020-02-24 15:03:18.000000','1609539722669429'),('3015368441825995',1,'No wait time. Staff was very friendly, caring, and knowledgeable. Very patient. Thank you to Ashley, Kristina, Tino, Olivia, and Dr. Wang!!','2019-12-16 01:02:26.000000','829264323932850'),('3015861058454724',1,'Very friendly,patient staff! Highly recommend this place for your medical emergency needs!','2019-06-17 19:58:37.000000','596022027480375'),('3015864111814103',1,'very friendly staff, clean, quick, \nbrittany b. the receptionist was super sweet and helpful with everything ♡♡','2020-02-07 18:31:12.000000','251751275488925'),('3016126598411625',1,'Good service and fast and friendly Dr. Daniels,Rollie,Natalia, and Stephanie','2020-01-25 06:17:01.000000','1648645701907657'),('3016897548344456',1,'Love this place, my wife has come several\nTimes for different reasons and the service is amazing the staff are friendly and the facilities are beautiful! Dr. O’Malley is incredible! Rn: Dana was so sweet and very nice to my wife during her stay here! 5 stars would definitely recommend again!','2020-01-25 03:05:05.000000','167959367441528'),('3017048031693400',1,'Fast care and amazing people working. Highly recommended to anyone.','2020-03-02 03:32:38.000000','251751275488925'),('3017119351706422',1,'This place is good...I highly recommend this place to everyone...medical place should be friendly like this..the receptionist preethy was welcoming and friendly.','2017-02-01 15:29:19.000000','544778295636544'),('3017249988396068',1,'Good service nice and friendly people','2020-06-09 00:59:20.000000','251751275488925'),('3017476188315789',1,'Had an awesome experience at Signature Care, Alvean and Patricia were awesome. No wait time.','2020-02-23 22:40:18.000000','167959367441528'),('3018391818209331',1,'This place is awesome, didn\'t wait no time. What has taken me months to figure out was found out in the matter of a few hours!','2017-08-18 18:20:35.000000','544778295636544'),('3020036664740660',1,'Lauren gave me a koozi while waiting. Great service!','2020-06-12 17:50:18.000000','1698192877146046'),('3020060391361957',1,'they was awesome we were in and out quickly, very nice people if you want somewhere nice where they care about you I will reccomend signature care in killeen.','2020-01-31 15:10:50.000000','251751275488925'),('3022068684483828',1,'Very professional and super fast! They Got me back in my feet in no time!','2020-02-03 16:42:55.000000','1765121397101399'),('3022648154442254',1,'walked in and the staff was so pleasant I forgot I was in pain. Everyone was so nice and I was seen before i was even done with paperwork! Truly unlike any other 24 hr medical center I\'ve been to.','2019-06-14 03:46:51.000000','251751275488925'),('3023780677632608',1,'Overall great experience. I was nervous due to the pain I had but the receptionist Amy, nurses (Regina & Natalie ) & Dr Henderson was really helpful & informative.','2020-01-18 22:04:15.000000','1609539722669429'),('3023968114319688',1,'It has been really hard to get an appointment for COVID testing. But Steven at signature care was able to quickly walk me through making an online appointment and making the process fast an easy. The day of my test, the staff was helpful and prompt at getting me what I needed. Great place to see if your having trouble making appointments and getting your results fast.','2020-07-24 17:04:34.000000','105589317817643'),('3025170217534844',1,'Fast services, I didn’t have to work unlike going to a hospital emergency room. Staff was friendly and helpful with all of my concerns.','2020-02-19 17:22:44.000000','1608991329419166'),('3026292894144472',1,'Took my daughter in for urgent care. Staff was so friendly, inviting and careful with gender pronouns. She was given immediate attention and great consideration when dealing with her behavioral health issues. \nThe social worker (forgot her name!) was EXCELLENT! SHE and the staff changed my daughter\'s mind about looking for quality health care in Houston! THANK YOU THANK YOU THANK YOU!','2016-08-28 00:42:05.000000','1608991329419166'),('3026456904055316',1,'My experience today with my grandson was amazing. Had the best nurse Susie Hicks, RN; Tech Ashley K; and Registration Jennifer D. Thank you for the excellent care you gave us.','2020-02-20 17:01:52.000000','299216637560955'),('3028430023851877',1,'great service by alyssa p','2019-12-05 23:03:45.000000','1787364321589026'),('3029236730424785',1,'I love it here friendly staff great service','2019-10-03 04:33:37.000000','1787364321589026'),('3029740333703397',1,'Excellent service. \nNurse Nicole G\nReg: Tatiana\nRad: Bryan D\nTech: Brandon Williams\nDr. Souman','2020-01-29 04:33:53.000000','1609539722669429'),('3031982083530788',1,'Such a great experience here! In the midst of a lot of public health concerns they were prepared to protect patients and staff. All of the staff were pleasant and helpful, and really helped ease the anxiet about going to an ER. Very considerate to uninsured patients too! They were thorough and efficient and made sure I was safe to go home before discharging me. I would eagerly go here again in the even that I\'m sick!','2020-03-17 01:55:43.000000','104213804456471'),('3034124323266292',1,'everyone was so great. very good service Dr. Pham a d. nurse and Ekaterini .loved these people and Patricia my regi nirse','2020-01-23 20:17:25.000000','167959367441528'),('3034370226581475',1,'A friend recommended we come here and I\'m glad we did. No long wait time, excellent front desk and nursing staff. The doctor was great, informative and took good care of our kiddo.','2020-02-25 02:16:32.000000','251751275488925'),('303580400372197',1,'Fast caring and wonderful!','2018-08-11 01:03:24.000000','544778295636544'),('3035952573115630',1,'My fiance came here for some stomach pain at 5am and the staff were fast, nice, and knowledgeable! Dr. Zhen and Kristina were amazing, we will be coming back for sure!','2020-01-03 17:19:08.000000','829264323932850'),('3036300066402749',1,'Nurse Jennifer worked with my brother today well. The staff is very friendly and professional. I recommend this place to anybody super fast and clean.','2020-01-18 21:44:33.000000','235046800697531'),('303658660561729',1,'Amy the registration, Dr. Patel and Bryan E. RN were very helpful..','2019-05-04 06:42:50.000000','1609539722669429'),('3038258102932738',1,'I came to the Hwy 6 S. location on Saturday for leg pains. I was greeted very nicely and didn\'t have to wait all but 5 minutes and went back to a room. The nurses were very nice and their doctor on this day. I would go back and recommend Signature ER to anyone I know. Keep doing an awesome job!!','2018-03-07 22:42:18.000000','544778295636544'),('303830777065231',1,'THEY DID A GREAT JOB TAKING CARE OF ME THIS MORNING.','2018-05-01 00:23:45.000000','1787364321589026'),('3038711586162484',1,'caring facility excellent doctors and nurses big shot out to Jennifer Courtney and Gunner and the entire team','2020-02-07 19:09:12.000000','235046800697531'),('3039274129459992',1,'I was surprised at the expeditious service provided and the staff was amazing! I was in and out in less than an hour!','2016-04-05 18:02:17.000000','544778295636544'),('3039446476116398',1,'Service was great! I spoke with Denise on the phone before I came in and she was knowledgeable and friendly which is why I decided to come. Once I got there, the rest of the team physician Chowdhury, nurse Teresa and Tech Jorge really listened to my need and took care accordingly. I was in and out in no time.','2020-05-31 14:06:20.000000','104213804456471'),('3039591516117991',1,'Very nice and welcoming! The workers were outside making us feel comfortable and safe while waiting','2020-06-12 17:55:38.000000','1698192877146046'),('303980823772912',1,'Thank you to Dr Dang, Chelsea, Jerrin, Betty, and Wendy! Your professional help was so appreciated!','2018-04-16 19:59:26.000000','544778295636544'),('3043203315691881',1,'In and out within an hour of a non emergency. The receptionists were very attentive and the nurse, Kristina, was extremely helpful. Dr. Jolly was thorough and had me on my way without much wait. I would highly recommend.','2020-02-11 15:18:40.000000','829264323932850'),('3043538279011258',1,'Great customer service thank you Irving, Lara, Holly,Christian, and Ana keep up the good work. This by far has been the best ER I have went to.','2020-03-07 04:10:40.000000','829264323932850'),('3044187585605201',1,'We always receive amazing care at Signature. They definitely go above and beyond.','2020-02-17 22:33:21.000000','299216637560955'),('3045268112175953',1,'They really care about there patients.. I would recommend anyone to go there','2018-07-21 03:07:22.000000','1787364321589026'),('3045842645466343',1,'Very friendly staff highly recommend','2019-11-20 03:41:41.000000','544778295636544'),('3047112835399469',0,'I’m extremely disappointed on the service that I got for my Covid-19 test. I arrived on time, and yet, people that cane in after me without appointments were being helped before I was. I just left. \n\nThen, when I got my results, they messed my birthday and age up on my return to work certificate. They fixed it quickly, but how do you mistake me for being 62 years old.\n\nWon’t be returning here at all. I am disgusted.','2020-07-18 18:53:09.000000','104213804456471'),('3048590041915739',1,'Erica D. was so welcoming and informative about the facility, thank you so much Dr. Singla and nurse Melissa!','2018-02-25 13:52:10.000000','1609539722669429'),('3049363375107181',1,'I walk in, they took care of me right away','2020-05-31 03:54:53.000000','1787364321589026'),('3050195268347265',1,'I wasn’t feeling so well so I decided to go to the emergency room and was greeted by Tanishia. She helped me understand the medical insurance and made sure that everything was filled out correctly. I was in a room in less than 5 mins. Thomas took care of my vitals and Sarah was there as well to help out. Having her there made me more comfortable. Doctor Thomas helped figure out my diagnosis. Thank you for all y’all hard work!','2020-01-06 05:25:19.000000','461782867645453'),('3051553411537777',1,'I recommend every thing about tbis place. I even left an entire post talking about how awesome the spices in the doctors','2019-10-24 03:43:30.000000','461782867645453'),('3051740488181835',1,'Everyone was extremely friendly and helpful! Dr. Ding, Pam, Trisha, Alyssa, and Shaylene made me feel welcome throughout my experience and answered any questions I had.','2020-05-23 19:01:02.000000','1787364321589026'),('3052358444787363',1,'I came in last Sunday having difficulty breathing and was terrified. The nurse was an absolute saint. She was reassuring as they promptly began tests. I was quickly diagnosed with pneumonia and transported to Seton. Now if only that level of care and concern had continued there. Top of the line care at this ER.','2020-05-13 05:27:50.000000','251751275488925'),('3053549418044280',1,'I had an amazing experience here. The staff was very friendly and everything was clean. The rooms a large and it’s very quiet. My nurse Calli made my experience even better, she really listened to my problems. 20/10 would recommend','2020-07-27 21:40:47.000000','251751275488925'),('3053580797993527',1,'Dr. Patel and nurse Gina and the Registration person w Amy all awesome and helpful','2020-02-12 19:59:11.000000','1608991329419166'),('3055377201162446',1,'Awesome service! the staff were very nice, polite and accommodating. They made our experience comfortable. Thank you Kristina, John, Hanh, Veronica and Nguyen!!','2020-02-23 17:30:09.000000','829264323932850'),('3055572737824415',1,'Amazing staff and service. Steven was the best of insurering my visit was welcoming and comfortable 😊.','2020-07-09 23:28:49.000000','105589317817643'),('3055765737850691',1,'Very excellent care aerial was so sweet and helpful!','2018-07-15 02:09:57.000000','829264323932850'),('3056182174614931',1,'Absolutely wonderful experience! Staff was professional yet personable. They explained everything thoroughly and even called to check up on me the next day!','2017-08-02 16:58:40.000000','326347177710316'),('3058100790868681',1,'Had a great experience at Signature Care Montrose. The staff was very friendly and helpful. shout out to Norma, Churiah, Ke’Aire and Dr. Yusuf!','2020-02-09 18:37:09.000000','1608991329419166'),('3058953804155774',1,'Staff is friendly and they see you quickly!! Highly recommend','2020-02-23 00:37:30.000000','544778295636544'),('3059192197484525',1,'Facility was clean and staff was great. Savanna B. And Andrew C took great care of me.','2019-10-03 22:21:02.000000','596022027480375'),('3061590427195423',1,'Amy, Dr Dang, Dion, Josh T and Erika were every welcoming and was treated by our facility unirse evryrhkng was nice','2020-01-11 05:35:41.000000','1608991329419166'),('3062156437150559',1,'Kat,Amy,Thuy and Dr Chukwuma great and welcoming.','2020-03-21 16:09:39.000000','167959367441528'),('3064121893599073',1,'just now\nWas assisted by Ekaterinburg And Patricia, good service and was in and out within 1 hour','2020-03-05 16:24:07.000000','167959367441528'),('3064703980225345',1,'The service was excellent\nPatricia C- Registration \nAlvean A- Nurse','2019-12-28 18:22:09.000000','167959367441528'),('3065217533496639',1,'Dr Dewaal, Kenyon, Erica and Sam were great. They explained everything they did and test results. And the warm blankets were the best.','2020-03-06 15:29:10.000000','104213804456471'),('3066977366659751',1,'I will recommend this center do to how good they took care of me thank you so much to doctor Garcia','2020-03-12 22:48:33.000000','1787364321589026'),('3067962469884013',1,'Signature Care is hands down the best place to go when you have an emergency situation. The staff is amazing and the facility is top notch. Dr Daniels and her staff (Rollie, Natalia, and Stephanie) are by far the most professional and helpful staff I’ve dealt with','2019-12-28 02:10:03.000000','1648645701907657'),('3069380796440939',1,'Dr.ortiz, luisa, alvean, and jordan are\nAmazing! They helped alot and they were professional','2020-04-17 14:58:29.000000','167959367441528'),('3069683329714759',1,'This place is great. Great staff and great facility! Best place in central TX for acute care needs!','2019-11-25 00:27:14.000000','251751275488925'),('3071097172913823',1,'I would recommend \"everything\" about SignatureCare Emergency Center Texarkana. Inviting, calm atmosphere with a welcoming smiling face as soon as you walk in door. Fast service, no wait time at all like when I visited other Emergency Centers . Nurse and Especially Dr. Yost were wonderful at explaining diagnosis and ways to treat problem effectively. I have found my go to place for after hours care when I can\'t get in with primary care doctor.','2020-02-20 21:17:18.000000','235046800697531'),('3071662612918970',1,'Quick and easy thanks to Magali and Rachel. The only inconvenience was that we had to schedule and pay a booking fee, but that doesn’t affect the nurses that we had','2020-07-22 19:18:46.000000','237100240304186'),('3072046496163118',1,'Excellent service very friendly staff and clean facility Patricia and Jordan','2020-01-17 15:28:56.000000','167959367441528'),('3072117392838961',1,'when we came in to the facility my husband only speaks Spanish. Even though things are difficult with covid 19 they understood him needing my assistance in translating. Ariely, Sandy, Jesse and DT. Single were very helpful and treated him promptly with a caring characteristic approach. will definitely recommend signature cars to my friends and family. very highly rated them a10. way to go. Thank you for caring.','2020-04-19 22:45:18.000000','167959367441528'),('3072809756083097',1,'100% recommend this location. We had Anavel M. as our registrar, nurse JenniferW., Dr.Das as our physician and Dion S. for our rad tech. Each person was so friendly very informative, answered every question we had and had smiles on their faces the entire time! \nWe were in and out within an hour.','2020-03-09 03:05:55.000000','104213804456471'),('3073551916047057',1,'Magali and Adriana were extremely polite, caring, and attentive. Thank you for what you do!','2020-07-22 16:44:49.000000','237100240304186'),('3074025029288435',1,'Friendly, fast and great service. Lucas, Dr. Yost, Kim, and Eric were very professional, easy to talk to! Definitely recommend!','2020-02-18 19:35:37.000000','235046800697531'),('307449249867063',1,'Muy amables Exelente trabajo \nRecomendable Amy :)','2018-11-25 01:04:26.000000','1608991329419166'),('3074688075877032',1,'Fast, courteous, really nice facilities! Highly recommend!','2019-12-08 03:42:35.000000','251751275488925'),('3074757745898222',1,'I was hesitant but my experience was amazing! Rayven at the reception desk was able to help better my experience by providing me with answers to all of my questions, and putting my mind at ease. Thank you Signature Care Center!','2019-07-18 06:09:30.000000','326347177710316'),('3076889375688775',1,'The staff Lynn, Tanishia, Geovanni, Sala and everyone else who has helped me today were amazing!!! I’ve had panic attacks lately and they made me feel so comfortable and like I was at home that during my tests I calmed down and to know also I’m perfectly fine calmed me down too! This place and the staff are just wonderful. Second time here and will come back for anything emergency related.','2020-03-16 05:58:32.000000','544778295636544'),('3079100485539892',1,'Amy, Jaclyn, Blake and Dr Rodriguez are awesome! made the process so fast and easy!','2020-08-01 15:25:11.000000','1648645701907657'),('3081573781907846',1,'Been here, and love it! Special thanks to Lauren for helping me out.','2020-06-09 20:36:30.000000','105589317817643'),('3081576045240953',1,'Been here, and love it! You guys are awesome!','2020-06-09 20:37:32.000000','1698192877146046'),('3081865041894055',1,'Far best care, that I received at any emergency room. The office attendant Hayleigh was very welcoming and patient. Definitely recommending!!','2018-08-08 18:07:54.000000','1609539722669429'),('308193373115926',1,'Very nice staff, very comforting and efficient. Gave my roommate a nice warm blanket and they updated us well and explained as much they could.','2018-11-16 02:32:26.000000','326347177710316'),('3083374315012652',1,'Great staff very helpful and very friendly they also take the time to actually find out what’s wrong instead of rushing you in and out without even truly figuring out what is wrong','2019-11-06 19:10:49.000000','596022027480375'),('308342470166188',1,'Straight forward helpful and informative','2020-06-12 17:42:55.000000','1698192877146046'),('3085764584770745',1,'My nurse was Jessie he was very informed On my issue and helped in every way possible and the front Amy was very quick with getting me checked in . My Dr was Grinblatas he was superrrre sweet , explained everything step by step made sure I understand and gave me background information . \nGreat experience .','2019-03-23 15:13:52.000000','544778295636544'),('3085986228159617',1,'Adriana and Magali were great !','2020-07-22 14:11:24.000000','237100240304186'),('3087890521230418',1,'Everyone was friendly and did an amazing job. Very attentive and professional.','2020-03-21 21:54:14.000000','1698192877146046'),('3088381327857926',1,'Everyone at the westchase location were great! They took such good care and Ashley at the front is so sweet!','2019-12-15 19:59:22.000000','829264323932850'),('3089267077757162',1,'Signature care is ver thorough, efficient and quick. I would highly⁶ recomend them','2019-10-29 03:01:08.000000','596022027480375'),('309156139994957',1,'Ashley, Kat & Doctor Jones were amazing & the wait wasn’t long at all.','2019-06-12 01:58:09.000000','251751275488925'),('3091789754165840',1,'Very nice and warm environment. Sibienne was very nice and courteous when checking me in. My nurses were awesome as well as Dauwal, my radiology tech. Dr. Zheng explained everything I needed to know in detail. Definitely recommend!!!!!','2020-02-01 04:35:34.000000','1787364321589026'),('3094402650610152',1,'Brought my husband in for an ankle injury and everyone was so nice. The care he got was great!\nThank you so much “Dr” Kat, Crystal and Dr Leung.','2020-02-22 01:37:53.000000','251751275488925'),('3094928547256848',1,'Fast and great customer service! I recommend this location.','2020-07-21 17:32:48.000000','1609539722669429'),('3095727797107977',1,'Sindy was excellent in getting us started with our visit with the Dr. We are happy with the service provided. Quick, efficient and thorough equals excellent service','2020-01-08 18:55:55.000000','1609539722669429'),('3097089257008538',1,'Amy,Marcus and Alvean were amazing!!','2020-03-22 16:20:21.000000','167959367441528'),('3097729243573529',1,'The staff is amazing. They get you in and out. Other than an actual ER they actual give you a diagnosis. Thank you for the great care.','2020-01-27 13:30:48.000000','1648645701907657'),('310100343109558',1,'This is the place you want to visit if you have an emergency. They have a great staff and they listen and make you feel okay and they get down to the bottom of what\'s bothering you. There\'s no long waiting time at all and I must say they are the most sweetest crew that I\'ve seen at any medical hospital they all were really kind and you don\'t see that on a regular. Dr. Chen you were awesome and I can\'t thank u enough and so were you Robert I thought no one could get rid of the pain and u did . Sherwin and Genesis you were kind as well thank you all so much .','2017-12-06 19:35:25.000000','1787364321589026'),('3102948109735171',1,'Dr Hall, nurse Susan, and rad tech Fatima have all been so helpful and made this experience so easy!! Tanishia in registration was so informative and friendly. I love it here!!','2019-10-25 02:56:02.000000','461782867645453'),('3105951629429837',1,'They took great care of me especially Andrew & Dr. Daniels. I loved the warm blankets. I really liked the fact that Andrew got my IV in without sticking me a hundred times like every other place I go. thanks for everything','2019-07-09 01:37:20.000000','596022027480375'),('3107598932601917',1,'excelente servicio y atención al cliente','2019-11-20 13:22:12.000000','167959367441528'),('3108454589166545',1,'Dr. Zheng, Amy, Pailes and Jerin all took really good care of me. They had me in and out feeling 10x better than when I came in. \nThank you all so much!!','2019-07-05 20:49:39.000000','1787364321589026'),('3109903615687929',1,'My experience with this facility has been extremely amazing! It actually feels like a resort. The specialist and surgeons have excellent bed side manners. The care and concern is heartwarming .','2020-03-07 04:51:42.000000','1787364321589026'),('3111114768956212',1,'Covid19 testing was great!','2020-06-12 17:53:37.000000','1698192877146046'),('3113336488699461',1,'excellent services from Patricia ..','2020-02-17 18:00:12.000000','167959367441528'),('3117918921571151',1,'Muy buen servicio, muy contentos con la atención y el servicio. Desde el Dr. O’Malley, Alvear, Tricia, Jordan y la recepcionista Patricia todos muy atentos.','2019-11-30 19:24:50.000000','167959367441528'),('3119059424772382',1,'This facility has a great group of professionals working for them. They put their patients first and waste no time to take care of them.','2020-03-01 05:39:27.000000','251751275488925'),('3121792837849996',0,'Dr Tran was awful, no bedside manner what so ever. I took my sister in for a SEVERE case of the Flu. She was treated as if it was a common cold and honestly felt like they didn\'t believe her at all. ! connie was the only one who was nice. She gave my sister gatorade and wished her well after all the tests were done and we were leaving. The girls up at reception were awful too. its not that hard to smile. I work in Hospitality and I know days can become very long.! , however if they donr like their job , then LEAVE . Don\'t go here if you are expecting to be treated like a person and not a very irritable obligation','2020-01-03 18:44:08.000000','251751275488925'),('3124526944242968',1,'I would recommend anyone to go. The staff was very pleasant and professional. Everything was done in a timely manner. They were very comforting and made sure that I understood everything. The doctors and nurses made sure they acknowledge all of my concerns. This was the best ER visit I have ever experienced.','2019-12-25 00:12:53.000000','299216637560955'),('3125125067524039',1,'During this pandemic, I really appreciated the care and empathy that employees showed. Especially the friendly face of Caitlin in registration! The place is very clean and take so good care of everyone! I will be recommending to all friends and family.','2020-07-26 22:46:00.000000','299216637560955'),('3125900814106361',1,'fast and knowledgeable people','2020-02-07 23:33:48.000000','299216637560955'),('3127325593968693',1,'Signature care was great!! The staff are so friendly, caring and attentive. They always made my son feel like he knew what they were doing before they did it. It’s cleaner than any other urgent care we have ever been to! Definitely recommend going here over any other urgent care!','2020-03-08 18:47:50.000000','1698192877146046'),('3127735927240984',1,'I’m not one to go to the doctors when I’m sick but I felt super crummy and my normal physician couldn\'t get me in, this was my last resort. And let me tell you I’m glad I did! The staff here are so friendly and accommodating. From check in with Jennifer and Shaunda to the nurses Christina and Christine, not to mention the physician Dr. Elsbecker. I’m so glad I came in. I couldn’t be more happy and please the way they treated me. Highly recommend this place! \n\n⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️','2020-01-15 15:17:55.000000','1698192877146046'),('3128371377196002',1,'Everyone is so nice! They very caring and tend to u right away! The best part is your in and out in no time! Thank u for your caring services!!😊','2020-02-19 04:27:50.000000','1609539722669429'),('3129378360620803',1,'It was nice clean and receptionist tanishia was great and funny best time I ever had thanks','2019-12-20 04:54:48.000000','461782867645453'),('3129733337056812',1,'Jennifer d and Debbie we\'re very friendly and kind they showed concern about my needs. I would highly recommend this ER to anyone','2020-01-21 21:49:28.000000','299216637560955'),('3130401556972981',1,'Signature Care in Lewisville is great. The staff Mostaque, Mollie, Brooke, and Anavel were all very friendly. They made me feel comfortable and being that I don’t have insurance they gave me options on how to get my prescription at a reasonable price. Excellent place to go to if you need medical assistance. Oh and they get you in and out.','2020-03-03 08:21:59.000000','104213804456471'),('3131357696909113',1,'fast service and very clean','2020-03-13 00:03:28.000000','544778295636544'),('3131563570187337',1,'From Tanisha Lynn Fatima and Dr Akunyili everyone was soooo helpful and caring very friendly and quick Thank you soo much','2020-04-06 04:51:15.000000','461782867645453'),('3133274120060018',1,'Leah was great! It wasn’t as bad as I thought it would be.','2020-08-03 14:48:41.000000','596022027480375'),('3134960876618642',1,'Jessica Sanchez and her team here were very friendly and professional! They answered all of my questions and took care of me. Definitely recommend!','2020-07-21 14:38:37.000000','104213804456471'),('3135260836699772',1,'Tuve una buena experiencia aquí en este cuarto de emergencia Vanessa, la enfermera Denise, el dr henderson, Chris y José fueron bien amables','2020-04-15 01:03:29.000000','167959367441528'),('3135402576487484',1,'Jocelyn on arrival was very helpful and lead me straight to the back to my spouse very professional!! \nNikalea the nurse was also very helpful and professional the whole time there. Highly recommend this place in any emergency!!!','2020-01-18 23:06:46.000000','167959367441528'),('3135618979835034',1,'great experience, quick and professional staff, er tech David was wonderful!','2020-03-05 03:48:56.000000','461782867645453'),('3135934876419246',1,'Very Friendly staff! Dr. Kotey was quick and efficient! Sarah, Fatima, and Tanisha were all so nice! Really appreciated the care we received here.','2020-02-21 04:20:05.000000','461782867645453'),('313665736122551',1,'After originally being referred to SignatureCare by Lauren Mollard and my great first time visit, I decided to go back after experiencing intense pain in my lower abdomen for two days. As soon as I walked in, I was greeted by Natasha. She quickly handed me my paperwork and had me take a seat. Within only a few minutes, I was taken into a private room. I was seen by Nurse Katie. She was very gentle and thorough in her assessment of me. Dr. Lingan was my doctor that night. He promptly addressed my pain and explained all the tests they would run in full detail. I was then taken by Townesend to do a complete CT scan to rule out any possibilities of appendicitis or anything more severe. He was very professional and talked me through all the steps. He allowed me to move at my pace and was patient with my slow movements. I do not have enough positive things to say about this ER. As someone with a weak immune system and who is prone to illness, I am so happy to have SignatureCare as a part of my community. I couldn’t have asked for a better experience. Thank you, again, for the excellent care you provide.','2018-11-29 02:58:44.000000','1698192877146046'),('3137225749676107',1,'I want to thank Magaly for taking care of us as we got tested and putting herself in the front line!','2020-08-01 15:48:21.000000','237100240304186'),('313769050033130',1,'Staff was great and friendly! And most of all quick and efficient with the testing.','2020-07-26 20:52:57.000000','105589317817643'),('3138639449481552',1,'fast and friendly very knowledgable about what\'s going on with covid19 all staff was great','2020-03-18 17:53:26.000000','251751275488925'),('3139203469448956',1,'Fastest COVID testing ever! Very courteous and friendly!','2020-07-27 22:30:53.000000','105589317817643'),('3140673005987232',1,'Staff was super friendly. In and out quick.','2020-08-02 02:28:47.000000','105589317817643'),('3141132115903939',1,'Mercy, Jeff and Dr Lim helped me make this process so much better and were extremely helpful. I won’t go anywhere else but here. They always see me in a timely manner and so polite!!','2019-11-19 20:15:33.000000','829264323932850'),('3142596049108508',1,'staff was very caring and really willing to help me','2019-12-23 07:51:00.000000','596022027480375'),('314332046368759',1,'Adriana and Magally were great, they know what they are doing. highly recommend.','2020-07-22 15:54:41.000000','237100240304186'),('3143324775746752',1,'Can not say enough good things about this place. From the moment I walked in I felt cared for, starting with the receptionist all the way down to the Dr. I felt at ease knowing that the “team” that was given to me knew exactly what they were doing to get me better and back on my way. I will definitely return if need be. Thanks Signature Care for the loving care you showed me.','2020-07-25 13:21:09.000000','326347177710316'),('3143761632311591',1,'I fell and hit my head on the floor and had about an inch gash. They were very polite and thorough. Glued the cut and ran CT scan to ensure no other issues. Was in and out under an 90 mins. Only one problem for seniors, they don\'t take Medicare.','2020-02-28 13:43:23.000000','461782867645453'),('3146529115379560',1,'If you want fast friendly and reliable service I could not recommend any other place. The staff and everyone there are nurturing and caring, not to mention the doctors are knowledgeable and also caring. Like someone once said there is no place like home... They treat you like family there... good family..','2020-01-31 01:10:33.000000','1787364321589026'),('3153036354813409',0,'My husband has been waiting for his COVID test for 5 hours and keeps getting told it will be a couple of more hours because if someone makes an appointment they have to get seen before any walk ins. He is most likely why I tested positive and has symptoms which according to their website doesn’t require an appointment. Right now they are expecting to see him at 7pm (8 hours after he arrived).','2020-07-09 22:08:29.000000','104213804456471'),('3154797747867838',1,'Very very clean and nice! Great for babies! Nice staff also!','2020-02-03 17:24:38.000000','596022027480375'),('315535526244420',1,'they did a great job, very caring and work very hard to help everyone. highly recommended','2020-07-11 12:54:09.000000','251751275488925'),('3155790764445880',1,'Fast service \nThorough \nVery nice courteous','2019-07-23 15:32:20.000000','596022027480375'),('3156451584370211',1,'Very fast staff nice got out with in a hour 😀','2019-11-23 05:41:51.000000','596022027480375'),('3160104344005169',1,'SO WONDERFUL and easy! I took my son to get our FREE flu shots and everything was great! Super nice staff and very nice facility. 10/10.','2019-11-11 22:55:07.000000','235046800697531'),('3161916673898425',1,'Manny 👍\nEliza 👍\nCasey👍\nRachel 👍\nGood job 😃','2020-07-23 21:23:12.000000','237100240304186'),('3162624800445458',1,'Staff was very helpful and very friendly Dr. was great would recommend coming here than the ER at a hospital.','2019-10-23 01:21:04.000000','461782867645453'),('3163316097025304',1,'Had the best time with Alvean and Patricia','2020-02-08 21:02:25.000000','167959367441528'),('3164683153600338',1,'very friendly staff , first time coming here would definitely come back .','2020-06-12 17:57:10.000000','1698192877146046'),('3167034753370690',1,'I absolutely enjoyed the service up here very professional and friendly people nice meeting All of yall. Nurse Ekaterini S., Jessica ,Melissa E, Bram D. And a special thanks to the biggest help of all Dr.Do.❤️','2019-11-19 02:32:49.000000','167959367441528'),('3167679836583629',1,'The whole staff was amazing. They made sure I was comfortable and addressed my issues quickly. I spent the night and the accommodations were great too. Thank you Dr. Patel, Dr. Nylander and Dr. Zhen. From the reception Genesis, the nurses John, Sarra, Laura & Kristina, you guys are awesome!','2020-02-04 14:55:19.000000','829264323932850'),('3168321333222281',1,'Rachel manny was my nurse in my visit to Signature. and she’s the nicest companionate nurse I’ve come across in Odessa. They’re all very kind people, and fast service. Drs visit are not pleasant but they make it so easy to feel comfortable and taken care of. Thank you so much 🙏🏼💝🌺','2020-07-24 22:06:43.000000','237100240304186'),('3169630026434973',1,'We had a great time at signatecare','2020-05-04 21:34:18.000000','251751275488925'),('3174240045967333',1,'I was in so much pain but the staff here especially Elida were so awesome. They were fast and made sure I was ok and comfortable. I would definitely recommend them to everyone.','2020-05-28 02:03:48.000000','167959367441528'),('3174276745952936',0,'My friend Olga came in about a month ago. Tested positive for COVID-19. The sorry doctor on duty never moved out of his chair, never examined her did not listen to her lungs did not lay on hand on her! Prescribed OTC Tylenol! That’s it....they gave her an IV said she was dehydrated. She had to insist on medicine for her headache. She had to go see another physician to get REAL medication! There is medication available to treat this but your “doctor” collected his money alright he is very misinformed about treatment for this virus! Be careful what else is he missing the mark on?','2020-07-28 16:53:22.000000','237100240304186'),('3174826522578049',1,'ector and manny wer great help!! really recommend this place!!','2020-08-04 21:24:36.000000','237100240304186'),('3175101455884614',1,'Aileen, Jennifer, Chelsea, Lauren, Dr. Lingan, Linda, and Ashley were all on shift today. Their teamwork and service to all patients is outstanding!! \n\nI am glad to be able to know this team :)','2020-06-22 16:59:48.000000','1698192877146046'),('3175407492578141',1,'Love this place the nurse Irving is really hot ... and really calm me down . Dr Ding was Awesome','2020-08-12 02:44:17.000000','829264323932850'),('3176569775690040',1,'Leslie, Rollie, Nantalia, and Stephanie were all absolutely lovely & awesome. I arrived in so much pain and they were quickly attending to my needs while making me comfortable at ease. I highly recommend them as your er!','2020-01-15 04:20:10.000000','1648645701907657'),('3180925095305723',1,'I truly enjoy the staff here! Dr. Leung, Natasha, and Lauren Mollard are so kind and welcoming! Would definitely recommend SignatureCare!👍🏼 🏥','2020-06-10 00:31:29.000000','105589317817643'),('3181207751929848',1,'Luisa, Alvean, and Jordan were very helpful and friendly i had a very good experience overall','2020-04-17 14:53:11.000000','167959367441528'),('3183199381694523',1,'Had a great experience here! Ms. Tanishia at the front was so kind and accommodating from finish to end. my nurse Jennifer was so sweet, made sure I was comfortable at all times. Enjoyed coming here. Definitely recommend.','2020-01-24 04:43:40.000000','461782867645453'),('3186377788043384',1,'Alvean\nMarcus\nPatricia\nThey were great had a wonderful experience.','2020-02-06 19:47:35.000000','167959367441528'),('3187893341231753',1,'always fast service. the staff is wonderful. Calli is amazing. my go to er from now on.','2020-03-17 20:19:40.000000','251751275488925'),('3191680904247717',1,'We had a really nice experience at Signature Care we were seen right away and everyone was friendly and they even gave my daughter snacks and offered me some too and the doctor knew what was wrong with my daughter right away I would recommend Signature Care to everyone!','2016-11-30 13:37:35.000000','544778295636544'),('3192136484212409',1,'loved the staff was awesome.','2020-07-21 14:22:47.000000','104213804456471'),('3193613027334163',1,'Dr. Thomas was awesome, the whole crew was awesome. From check in (Tanishia) to the nurses (Jennifer and Jeff). Dr Thomas was informants really compassionate. I hope I never come here again, but if I do, I know I’m in right hands.','2020-02-12 04:37:01.000000','461782867645453'),('3194956713865612',1,'Excellent care. Wait period is minimal. Caring staff','2020-03-06 06:28:45.000000','237100240304186'),('3196871690341130',1,'Val.....Was very nice and helpful!! 👍','2020-02-16 15:30:22.000000','1787364321589026'),('3196885090339957',1,'I would recommend this facility to anyone! Nicole, Irvin, and Katherine were all nice and helpful nurses.','2020-02-07 03:56:16.000000','829264323932850'),('3198976020116877',1,'I am just in town visiting and I needed to see someone and of course that always seem like such a hassle, especially when you aren\'t from Texas. From the lovely ladies at the front desk to the nurses and doctor they were all so great and so helpful and answered all of my questions. They made it so easy to get help! So if you are from Killeen or just visiting this is the place to go!','2019-12-09 20:52:53.000000','251751275488925'),('3200075606715137',1,'Adrianna and Magaly super nice and gentle','2020-07-22 15:28:16.000000','237100240304186'),('3200676909950465',1,'Very clean! Fast and friendly Er. Received great care. They even took the time to direct me to the nearest pharmacy since I was visiting from out of state. Highly recommended.','2019-09-14 06:03:52.000000','235046800697531'),('3200724093347934',1,'Lorena, Amanda, Jeri, Rachel and Dr.Harjai were all very helpful and answered all our questions. Would recommend, very nice people.','2020-08-08 19:00:08.000000','326347177710316'),('3201426746538738',1,'Great visit. very helpful. dr Yost\n rn Mollie \nradio tech Eric\nand registration robie.\nall were very friendly and helpful','2020-01-15 06:37:58.000000','235046800697531'),('3201531453209361',1,'Alveana and Patricia were very attentive and helpful. Awesome customer service. 👍👏','2020-02-13 22:08:01.000000','167959367441528'),('3204849112876868',1,'i wanna give a huge S/O to night crew tonight Ms Linda Dr Yost sarah the whole team was nice and and caring and took awesome care of me as if i as the only patient there despite them being busy !','2020-01-31 06:35:01.000000','235046800697531'),('3211321685547916',1,'They are AMAZING every member of the team Dr.Pham, nurse Susan, Rad tech Laura, ER Tech Elaine, and fantastic registration Tanishia are my new best friends! I LOVE SIGNATURE CARE!!!❤️❤️❤️','2019-12-27 05:36:58.000000','461782867645453'),('3213012435456133',1,'I was in here today and wanted to say how caring and professional they were. They were very patience and gentle with their care. I did have to wait but I expected that during these times','2020-08-01 23:25:46.000000','104213804456471'),('3214695295249044',1,'Friendly staff! I think finally an end to this pain has been found. I\'ve been here twice once for one of my children and once for myself and Dr. Ashbrooks has been the doctor both times, and he did his job 👏 (I love how they offer drinks as well)','2020-05-26 11:01:24.000000','235046800697531'),('3214732971967838',1,'I was at SignatureCare Emergency on Saturday aftenoon and I was treated so very kindly by everyone there, from the front desk lady, Amy, to the nurse Kris, they all made me feel at ease while I was there. The place is very clean also. Dr. Rodriguez was very nice and explained everything to me. I would recommend this ER to anyone who needs emergency care.','2020-08-01 22:03:08.000000','1648645701907657'),('3216320061743682',1,'they are very helpful and does everything to make sure your fine... Thank u Jennifer Diggs Erica and Ashley K','2019-10-24 15:40:10.000000','299216637560955'),('3216744561675931',1,'My service was excellent.. staff was great and fast !!!','2020-01-24 02:28:44.000000','544778295636544'),('3217201948308500',1,'Alvean A and Patricia C were awesome. No waiting time was wonderful.','2020-01-02 20:27:32.000000','167959367441528'),('3217494301616791',1,'Earl was very helping from beginning to end with taking care of everything that was needed. Every doctor I saw was super nice and listened to what I was going through. Would definitely recommend to come here to the South Austin team for medical purposes!','2020-04-06 04:54:14.000000','1698192877146046'),('3217660634917387',1,'First time here and was treated wonderfully. First Olivia received me at the front and was very friendly and helpful. When called back Holly was super nice. She understood my worries and made me feel very comfortable. The whole staff was just very nice. Thank you all very much. Will definitely come back if needed.','2019-12-28 05:25:38.000000','544778295636544'),('322278068454083',1,'My visit was great. Everyone was very friendly and caring. Jasmine was able to check me in quick. The nurse and xray tech very nice. If I ever need to come back I definitely will!!','2019-05-10 02:28:59.000000','167959367441528'),('3223531844369042',1,'EVERYONE WAS AWESOME. The care I received was phenomenal!','2020-02-01 12:32:24.000000','1608991329419166'),('3224601017560509',1,'Omg this place is AWESOME. The front desk help were so nice &the nurses as well as the Physicians were all so helpful.','2020-03-10 15:13:44.000000','829264323932850'),('3224651000898041',1,'Very fast, caring and Knowledgeable staff. They need me and my wife feel very Comfortable. Would highly recommend this location','2020-03-15 01:45:02.000000','251751275488925'),('3225882294095577',1,'Amazing staff and service. Alissa, Nurse Jessica Dauwald were all awesome and helpful.','2020-02-14 17:38:27.000000','1787364321589026'),('3227501503932073',1,'Great Facitlity with Awesome Doctors and Staff. Fast, Friendly and Informative Service. Maya the receptionist was very welcoming. my nurse stephanie was so nice and helpful','2020-01-16 17:57:49.000000','829264323932850'),('3227552410642106',1,'Awesome people!!! Ricardo really helped out! And shaunda and christina and aileen really helped! I appreciate !','2020-06-10 22:16:43.000000','1698192877146046'),('3228622743870776',1,'Great fast service and snacks while u wait','2020-06-15 14:27:15.000000','1698192877146046'),('3231921780170620',1,'Lucas is very knowledgeable and kim was very personable, they were very prompt getting back to get checked out. Eric make the process painless','2020-02-28 19:41:08.000000','235046800697531'),('3233465770020080',1,'staff is great as always, Aerial, Sindy, Angela, Ralph, and Dr. Wang took great care of me...','2020-03-24 19:34:26.000000','544778295636544'),('3234098409938371',1,'very attentive staff. grateful for the awesone nurse .and Dr. \nNurse Olusola was amazing\nthank you for this!','2020-01-19 03:21:44.000000','1609539722669429'),('3236103689734512',1,'highly recommend, the staff and service of this facility was incredible!','2020-02-19 00:28:43.000000','251751275488925'),('3238229512856082',1,'AWESOME STAFF LUISA, MELISSA, DR.LU, MEREDITH AND KELLY WERE SO AMAZING. \n\nI WILL ONLY COME HERE FROM NOW ON.','2020-04-24 23:23:58.000000','167959367441528'),('323855608483952',1,'Jereyia is quick and wounderful the nurse Amy was very nice and willing to explain my paper work to me Dr jolly was fast and very throual.......i would recommend if u want a er thats fast and friendly this is the place and to top it off very clean','2019-03-25 21:03:46.000000','251751275488925'),('3240117472695061',1,'they treated my cousin for chest pain\n GREAT EMERGENCY EXPERIENCE. \nkind staff, very helpful. I\'d recommend this place to anyone','2019-08-15 04:23:56.000000','829264323932850'),('3240423326023723',1,'registration Amy A\nnurse Sala\nRad tech Waldo dr. Lim\n they worked really fast.','2020-08-03 18:36:17.000000','1608991329419166'),('3241329962549431',1,'I had a wonderful experience, the staff was super attentive and helpful. I was in and out Dr. Daniels nurse and Natalia and the rad tech rollie were nothing short of amazing . I come here for all me ER needs .Stephanie got me in and iut quickly and mackenzie was super sweet and brought me a war blanket ! AWESOME XPERIENCE. !','2020-01-25 05:12:37.000000','1648645701907657'),('324181415373014',1,'Dr. Chowdhury was very helpful as well as Adriana. The front desk is extremely sweet and they got me in quick! The place was very clean, I definitely recommend coming here.','2020-07-24 03:11:37.000000','104213804456471'),('324193811835395',1,'Top notch care! Angela, Michelle, Ashley, and Dr Hasegawa were amazing!','2019-06-16 06:07:17.000000','251751275488925'),('3244250585612972',1,'They were very courteous and great with kids! All around great friendly service.','2020-07-30 02:08:38.000000','105589317817643'),('3244357868967728',1,'First time here amazing service from Dr.O’Malley Alvean Tricia Jordan and Patricia.','2019-11-30 20:43:58.000000','167959367441528'),('3246590532031692',1,'I was treated very quickly and fairly. The staff was very knowledgeable.','2020-03-20 03:30:49.000000','235046800697531'),('3251567101573088',1,'In the middle of a pandemic I give T.C. Jester all 5 stars for treating my mom so quickly and respectfully through these times of uncertainty. She was treated by Dr. Miller who is amazing! She also had so many positive things to say about RN Joseph and both Cecilia and Kim who checked her in. Thank you for assessing her pain and treating her with the highest of care!','2020-06-30 20:27:49.000000','1609539722669429'),('3251578051735017',1,'Very helpful and polite staff. Keera at the front desk was very friendly and efficient! (: Got me taken care of right away and left feeling great','2018-07-26 06:23:54.000000','326347177710316'),('325178925063912',1,'The staff are very friendly, i do recommend fairly quickly. the idea of being open 24/7 and down the street from where we live is great very good! thanks Nurse Blake Dr . Cavazos and of course Patty !','2019-06-18 18:53:29.000000','1648645701907657'),('3253292411351204',1,'thank you Kim Allison and Dr Jones for your care','2019-07-23 00:50:04.000000','596022027480375'),('3254408004583023',1,'I would personally like to thank Luke Commings, Kim , Eric and Dr Henderson. I had to go yesterday evening with severe neck pain. First, we were greeted with such friendliness and instruction. They were very thorough with my treatment and helped me to get relief from pain. I will recommend that everyone use Sinature Care for all your need. They catered to my every need or want. Thank you so much signature care! Pam Hamilton','2020-03-19 00:14:20.000000','235046800697531'),('3254479524777989',1,NULL,'2016-12-17 17:33:38.000000','1765121397101399'),('3256861600995963',1,'When we arrived Tanisha Tanisha greeted us with an upbeat and attentive tone! Fatima the radiologist also received us with a polite tone! Nurse Jennifer came in with the tech Elaine. they were both warm and gentle! Dr. Thomas also was attentive and showed needed concern.','2020-02-12 10:42:06.000000','461782867645453'),('3258174607567670',1,'Great environment and very clean. Lucas, Carla, Dr. Henderson, and the rest of the staff were great and very friendly.','2020-01-18 21:05:54.000000','235046800697531'),('3258235360860195',1,'This location was excellent. Marcus and Alvean were very attentive and friendly. I would recommend my family and friends to come to this location.','2020-01-21 16:14:55.000000','167959367441528'),('3259736260745854',1,'Wait was a bit long but understandable since this is a pandemic time✝️','2020-07-14 00:34:27.000000','299216637560955'),('3260168177345670',1,'Super quick and friendly staff; no hidden costs or fees. It is a free evaluation and they will let you know the costs of tests before doing them if you are not having a serious emergency. Doctor Nguyen was super honest and straight forward with what he recommended for me. By far the best experience, I’m super grateful and relieved. He gave me a piece of mind. \nWould definitely recommend. 11/10','2020-02-23 16:02:37.000000','829264323932850'),('3262613663763733',1,'Very quick. Very polite. Have been here twice. We do not wait and the staff is very friendly and helpful. We saw Dr Peter Vaagenes he was very friendly Theresa M. The RN was very sweet and friendly. Marcus Rachael and Shania were very nice as well. Great job. Highly recommend Signature ER. Great place for kids. Very kid friendly and treats the kids well and very caring. 💙','2019-09-11 03:51:24.000000','237100240304186'),('3265160793513666',1,'This place is so quick before I could even finish filling out paperwork I was called in the back. The Dr was awesome, he didn’t waste any time at all. The nurse informed me about GoodRx website. Can’t remember her name but she has amazing customer service! I highly recommend this place','2020-03-06 12:32:13.000000','167959367441528'),('326526491846477',1,'Very friendly and helpful also caring!!','2020-07-19 16:59:35.000000','251751275488925'),('326540458367854',1,'Just an amazing place! Natasha, Dr. Leung, Jessica, and Amy were very friendly and helpful! Would definitely recommend to everyone!','2020-06-10 02:13:59.000000','105589317817643'),('3265561896791240',1,'Erica is so awesome and sweet. Dr. Grinblatas is awesome and really good','2020-02-28 20:17:04.000000','1765121397101399'),('3265705890109551',1,'They were amazing! Very fast efficient and lovely staff! Will recommend over any urgent care/er facility! Dr Patel and nurse tammi and nanci and norm were incredible','2020-02-23 15:27:51.000000','544778295636544'),('3273072852709708',1,'I had been fighting a cold going on a week now that just wasn’t getting any better so I decided to take myself to an urgent care. I found the Bellaire location to be very close to home so decided to come here. I’ve heard nothing, but great things about this location and I have to say that I completely agree. From the moment I checked in with Mary Ann I felt welcomed. She was very professional and explained to me the process of registering and what was needed from me. After a while I was called into the back to get my vitals and even the staff was great! I was seen by several people Blake, Yas and Doctor Ding who were all incredible , but I must say that my favorite was my rad tech Sonny. He was very attentive and had me laughing a bit, which eased my discomfort. The wait time was very short and smooth. I would definitely recommend this place to anyone should you have the need to visit an urgent care. I don’t normally like hospitals, ERs or urgent cares, but if I have to go to one this is definitely the place to be.','2020-01-28 21:32:34.000000','1648645701907657'),('3275582052455946',1,'Very nice staff and attentive!','2020-02-14 18:02:54.000000','235046800697531'),('3277179518961727',1,'Facility was very clean. Jocelyn at the front desk was very welcoming and nice. Alvean and dr Daniels were really cool and insightful. Ask them to be your nurse and dr .','2020-02-26 14:52:54.000000','167959367441528'),('3277785632286586',1,'Adrian and Magaly were awesome when we went for testing. They even made my daughter feel comfortable we em though she was a bit scared to get tested.','2020-07-22 16:19:48.000000','237100240304186'),('3278604118837836',1,'The staff here is super friendly especially my nurse. The service was really fast. I wasn\'t done filling out my paper before being called to my room. Definitely will be coming here when I don\'t need to be at the hospital.','2020-05-28 14:00:01.000000','251751275488925'),('3279179095431297',1,'Very friendly and fast service! Lucas, Brandi, Kim, and Dr Jorden were awesome! I will always go here!','2020-01-31 17:14:03.000000','235046800697531'),('3279392385406635',1,'I received great customer care from Jocelyn during registration, Ekaterini, Thuy An and Rick while getting my vitals and being seen. I love that they allowed my son to go pick out snacks while I was talking with the nurse. Keep giving patients excellent care.','2020-05-13 15:59:43.000000','167959367441528'),('3280733768620095',0,'I just got problems with Rn nurse and he was very very very rude and not friendly person either don’t help either plus he write like ugly word and he tried to tell me which it’s not his place since I got my insurance from job','2020-01-13 03:06:56.000000','596022027480375'),('3281696211848366',1,'This place is very good and the staff is very kind, caring and helpful! I like this place because they answered their phone very quickly and the receptionist was very knowledgeable! thank you to the following people: Dr. Patel , Reg. Leslie, Nurse Gina, ER tech. Norma and Rad tech. Jacqueline!! ER\'s can be scary but if you have to go- go to this one!!','2019-09-16 18:35:59.000000','1608991329419166'),('328252778084461',1,'My visit here was exceptional. Keera Dr. Golla and Jesse were helpful and thorough. thank you','2019-07-02 15:28:00.000000','544778295636544'),('3286203091409419',1,'AMAZING STAFF. From the minute you walk in to the minute you leave. I walked in with throat pain and was sent to the back hooked up to all kinds of monitors (for different reasons) within FIVE MINUTES!!!!!','2020-03-30 06:44:31.000000','237100240304186'),('3286366988044664',1,'This visit was EXCELLENT!!\nDr. Henderson\nSarah\nAngel\nLaura\nTarishia\n\nWe’re all great and very helpful. I will definitely recommend this facility to others. \n\nAlicia Krumrey, BSCJ, MEd, LCDC','2020-02-14 07:27:12.000000','461782867645453'),('3288263141218723',1,'Very organize and profesional','2020-06-15 14:37:13.000000','1698192877146046'),('3288472757885180',1,'People were polite, positive and helpful!!','2020-07-12 08:43:53.000000','829264323932850'),('3289187894427801',0,'Caution: Be prepared to wait, even with an appointment window, for the rapid covid-19 test. I waited for over 3 1/2 hours at the Wirt location. Finally left, without getting the test, when the waiting room became uncomfortably crowded. The business was unable to process a refund. Ellen Hetherington','2020-06-21 11:30:21.000000','1765121397101399'),('3290975410943294',1,'Really good service and was able to help my girlfriend out with all her needs','2019-07-05 03:08:51.000000','596022027480375'),('3291241540902288',1,'The service was wonderful. Patricia was really friendly great customer service.\nAlvean A was so wonderful with my daughter explain everything that she was going to do with her.','2020-01-16 21:51:38.000000','167959367441528'),('3291392467553943',1,'Nice friendly staff, very welcoming and comfortable chairs. Also, complementary snacks are always a plus! Elida, Denise and Alvean were so helpful answered all my questions. Going out of their way to make sure i was comfortable. No wait time. In and out!','2020-02-20 14:21:36.000000','167959367441528'),('3292118914145606',1,'Very clean helpful , and kind friendly staff \nEven with the Covid and them being extra busy , they still give 100% treatment.','2020-06-20 05:40:43.000000','829264323932850'),('3292143000835913',1,'Love this place! Very efficient. Would highly recommend. -Mayra','2020-07-29 03:06:19.000000','105589317817643'),('3295188093835644',1,'Setup was easy. Came in did my paper work waited in my car. Within a little over an hour. I was seen by the ER Tech Erin. She took away all of my fears. The COVID test did not hurt at all. This is fastest and easiest place to go to get tested for covid and one of the only places opened 24 hrs. I made a 7:30pm appointment and I am leaving within a reasonable time frame.!Great staff','2020-07-28 02:51:08.000000','104213804456471'),('3295264480500768',1,'I absolutely love this ER. The staff is amazing and shines so much light during the darkest time! Tanishia makes you feel like everything is going to be okay from the moment you step in the door. I will definitely be back if I need to.','2019-11-27 06:32:28.000000','461782867645453'),('3295970973765908',1,'We took our daughter to Signature Care when she broke her arm recently. It was literally less than a minute from walking in the door to being taken back for her to be seen. The entire staff was amazing with my 7 year old daughter from the second they walked in. Thanks to McKenna in registration, our RN\'s Tammy and Brandy, our Rad Tech Brooke, and Dr. Curtis.','2020-02-28 03:42:26.000000','299216637560955'),('3296133320416581',1,'Greeted with care and concerns as we checked in with front desk clerk, She was polite and very helpful, Nurse was patient and helpful so as doctor the whole staff is phenomenal this is best emergency care Houston has to offer be sure to ask for the following Dr. Tran, Delicia, Duke, Reagan','2020-03-11 15:06:18.000000','1648645701907657'),('3296852470370924',1,'The staff was wonderful - very professional and informative. Quick service','2020-08-10 14:55:38.000000','105589317817643'),('3297407186988100',1,'Thank you to Eliza Rachel and Casey','2020-07-23 20:45:37.000000','237100240304186'),('3299354680107368',1,'Dr. Maudlin, Nurse Jacob, my tech Morgan and my registration team Lorena and Amanda and all the staff were excellent!','2020-07-29 14:13:49.000000','326347177710316'),('3303427499754284',1,'Great staff, very friendly ERTeach Leah was very helpful, super nice and very informative','2020-08-04 17:39:54.000000','596022027480375'),('3304441249569971',1,'awesome awezome staff&doctors \nDee front desk is a Gem','2020-03-16 14:35:48.000000','1608991329419166'),('3309074649151420',1,'was very friendly and fast ..we felt like they cared😊','2020-06-09 19:59:28.000000','235046800697531'),('3310658215621904',1,'oh , Sonny what\'s going on?I am praying for you honey hang in there','2020-07-19 01:27:05.000000','1765121397101399'),('3310846618932895',1,'austin daniels was amazing as well as michelle kirby very clean facility and great staff','2019-06-13 03:28:14.000000','461782867645453'),('3311672652189267',1,'Amazing staff here at this location. Thank you Magali , Adviana and Rachel for taking care of us. Stay safe and Thank you for everything y’all do.','2020-08-01 15:53:37.000000','237100240304186'),('3312524912093020',1,'Amazing service and also shout out to city ambulance for being out here today!','2020-06-09 21:30:52.000000','1698192877146046'),('3313490225340511',1,'Friendly, quick results and very informative','2020-08-10 08:07:34.000000','104213804456471'),('3314888821861582',1,'Great Staff! Highly recommend','2020-02-06 09:25:51.000000','1765121397101399'),('3316889868340584',1,'A big cheers to SignatureCare ER! A few weeks ago on a Friday night my wife and I took my father over there due to some issues he was having and his sudden loss of muscle definition all over. This was the first time we’d ever been there. When we got there I was WOW’d by the hospitality the staff showed as well as the cleanliness of the establishment. Although we received some tough news regarding my father’s condition, I’ll never forget the compassion shown to my father and us by Dr. Henderson, the nurses and staff. They were all amazing and we can’t thank them enough. We trust that the Lord’s ways are not our own and that He is working things out for His glory even in times like these when we don’t fully understand. My family and I thank God for each one of you. 🙏🏼😊','2020-03-21 15:21:44.000000','235046800697531'),('3316895328321417',1,'They took care of me tonight when my calcium dropped and caused tentny seizures.','2019-10-04 00:14:25.000000','596022027480375'),('3317586994949839',1,'Always so professional when I come in. Dr. Vakey was very thorough, and went over everything with me! Easily accessible and friendly.','2019-12-13 17:43:04.000000','326347177710316'),('3317609908267597',1,'home they are so nice and nourishing they was attended to all my needs. Jocelyn A. Is great and very sweetie and patient as well as Alvean A. Dr. Patel knows her work and advised me to see a specialist. The front desk nurse greeted me with a nice warm smile. Way to go Cypress. Ih also the X ray tech knows her work too. I will come here again if I need to.','2020-01-22 18:37:02.000000','167959367441528'),('3318167358205234',1,'Had a great and quick experience. The staff listed below were wonderful.\nLorena T. & Victoria P.\nJeri D.\nJuan C.\nDr. Akunyili','2020-07-31 15:30:32.000000','326347177710316'),('3326276064066117',1,'Marcus was great he helped me laugh so I wasn’t in any pain. Alvean was very helpfully and I feel better before leaving. Jocelyn was helpful at the first desk when I was checking in. It was a great experience over all.','2020-02-26 18:28:05.000000','167959367441528'),('3326571817371389',1,'I am very happy i came to Stafford Signature Care. I was able to get in quicly. They help relieve the pain my kidney stone caused. If i have any need for quick urgent care im coming here. Thanks for making me feel better again.','2020-02-22 15:09:33.000000','1787364321589026'),('3327048840656936',1,'SignatureCare is the best ever. I’ve had to come in a couple times for myself and kids! The staff is always amazing. Had to bring my baby in tonight and Amanda at check in was Amazing check us in very fast so my baby could be seen as soon as possible. Did not have to wait very long to be called back. Our Nurse Katie was absolutely amazing she made my baby feel comfortable while taking her vitals. Dr. Leung was great made sure I felt comfortable with my babies diagnosis before letting us go. Answered all my questions and made me feel so much better about my babies health.','2020-02-25 01:45:37.000000','1698192877146046'),('3332300430164063',0,'I’ve been to this location twice. First time for testing I spend from about 10am to 7:30 at night during the process. The second time was significantly worse! The “system” was chaotic. They didn’t have clear communication between employees making the patients waiting even more frustrated, after some actually paid to wait in line!Even further when I attempted to clarify the lady at the front was unprofessional, degrading and rude- pointing to the “emergency” sign stating it was an emergency room. I’ll never recommend someone to this business. And will encourage anyone I meet to go elsewhere.','2020-07-15 08:42:17.000000','167959367441528'),('3333193713378627',1,'Leah was great. She was fast and explained the procedure quickly.','2020-07-20 22:36:27.000000','596022027480375'),('3334557416569936',1,'Love this place Genesis made checking in very easy and comfortable and checking out she was here all times the whole staff was very nice and very helpful Dr. souman and Pam, shohba plus dauwal ! this is definitely our go to place ! Thanks again','2019-07-04 14:58:16.000000','1787364321589026'),('3335697866457204',1,'5 Stars ⭐️ \n\nAbsolutely amazing facility. From the time we walked in the doors every staff member went above and beyond to make sure our every need was taken care of. Never been more impressed in my life. Excellent Job !!','2020-02-17 04:03:44.000000','1765121397101399'),('3335981873119381',1,'The staff is always nice and friendly. They are always helpful with any questions you may have, Jessica S help me out with many questions that I had.','2020-07-20 13:37:30.000000','104213804456471'),('3336220946395010',1,'Professional!!! Friendly fast service!!!','2020-02-07 20:10:58.000000','1608991329419166'),('3338449069514761',1,'Absolutely love signature care! We come here any time our little girl is sick and they always take the best care of her! Dr.jordan is my favorite! He will not let you go home until he finds out exactly what is wrong! In here today and same thing with the doctor today! All staff and nurses are fantastic and very understanding!','2019-06-16 14:30:41.000000','299216637560955'),('3339067122788309',1,'I visited this ER and each time has been a great experience despite the circumstances! It’s located very conveniently near my home right off highway 6. The staff are very kind and helpful. Tanishia attended to me at the desk and made it a very quick check in process. Dr. Henderson and Charlotte the RN were very kind during my procedure and very reassuring and great at explaining each step they would be taking. I’m very pleased with my experience and I highly recommend this location for any issues you may have!','2020-03-13 13:24:55.000000','461782867645453'),('3339459652735038',1,'Very nice facility, super clean, all of the staff was so friendly and patient and made me feel super comfortable.','2020-02-20 02:12:26.000000','251751275488925'),('3339719426102232',1,'Super fast service!\nER Techs Randy and Daniel\nRegistration\nShania\nNurse \nAudrey and Jose\nRadiology\nBancroft\nDr. Anders','2019-12-26 04:33:53.000000','596022027480375'),('334214674053426',1,'Me párese un lugar ermoso que yo lo recomiendo son muy atentos especialmente Dr torre. Robert tia Mathew bija Karen es un equipo espectacular nunca cambien','2018-03-16 16:41:05.000000','1787364321589026'),('3342573105757455',1,'ALVEAN, PATRICIA, & AN we’re very nice and helpful got us in out. Great service.','2020-02-06 15:49:17.000000','167959367441528'),('3345465215483151',1,'Great experience. The staff is amazing. Maya was really kind as she got me checked in and a marvel fan so that’s a plus. Very good at getting you in and out','2020-02-21 00:06:37.000000','829264323932850'),('334685113776625',1,'Had to make an unexpected trip here tonight to comfort a friend. Wait was not long and nurses were very nice and respectful for my friend. Leeds was a great help as well (:','2018-11-08 06:59:39.000000','326347177710316'),('3350969528357912',1,'Real professional and informative thanks Rachel','2020-07-26 23:58:18.000000','237100240304186'),('3351106028250481',1,'The registration staff member, Stephanie, checked the patient in as soon we entered the ER with genuine care/concern. Nurse Rollie, along radiology tech Natalia, got the patient into a room immediately for an assessment of her medical condition. Dr. Ybarra was very thorough and exhibited in depth knowledge concerning the patients expressed medical concerns. We have visited this ER medical emergencies in the past with great satisfaction that our emergency medical needs were more than met with great care.','2020-02-11 05:42:25.000000','1648645701907657'),('335221850574364',1,'Their service was quick and easy, literally no wait at all!\nAlyssa was a big help!! ☺️😊','2017-10-17 21:47:02.000000','1787364321589026'),('3354073201299735',1,'Definitely a lot faster than going to Darnall ER and no long wait time. Professional and polite.','2019-10-05 01:04:12.000000','251751275488925'),('3354729037874431',1,'Very friendly staff! They are patient and understanding. I highly recommend signature care.','2019-07-12 00:03:31.000000','596022027480375'),('3365907146757161',1,'Best care I’ve ever received at an ER. Very friendly staff.','2020-03-05 21:14:48.000000','299216637560955'),('3367918419945565',1,'The staff was really helpful! Big thanks to dr kotey, Lynn s, Daniel b & tanishia w for helping our baby boy get better ☺️','2019-12-23 07:41:33.000000','461782867645453'),('3370706259636764',1,'👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍🏼👍🏼👍🏼👍🏼👍🏼👍🏼👍🏼👍🏼👍🏼','2019-11-22 00:33:50.000000','237100240304186'),('3370990739598873',1,'Very clean and friendly environment. Listen to their patients and take very good care of you!','2020-07-25 21:37:02.000000','251751275488925'),('337172207445714',1,'natasha and candice were super helpful and the dr. I had give treatment to me was super cool and chill. I would most definitely recommend.','2020-07-30 23:47:45.000000','105589317817643'),('3371734536187829',1,'we were seen right away. they took good care of my baby when he hit his head and needed some staples. he was hysterical and they helped him calm down and cleaned him up and got the staples done with minimal pain to him. we are thankful!','2020-04-21 14:17:06.000000','237100240304186'),('3372015712814970',1,'they were great have always gone above and beyond for my kids','2020-02-19 17:08:29.000000','299216637560955'),('3374278582597132',1,'I was very well taken care of by Dr. Daniels Brenda M, Sarah A., Holly, Shaylene. Better know as the dream team. Very helpful and took their time.','2019-10-29 10:20:06.000000','829264323932850'),('337486940977247',1,'Amy \nJaslyn\nBlake \nChris\nDr. Rodríguez excelente servicio','2020-08-01 14:54:34.000000','1648645701907657'),('3375023895888916',1,'Rachel and Eliza did a great jo!!! 👍🏽 Quick and easy','2020-07-23 20:35:17.000000','237100240304186'),('3377653415793916',1,'Great staff from the front desk to the ER! The registration staff is on top of it! Especially Jessica doing an awesome job! working hard hours and tending to their patients needs.','2020-08-02 22:57:47.000000','237100240304186'),('3381574865257754',1,'Muy buen servicio,muy eficientes DR.MILLER NURSE NICHOLE','2020-07-23 21:30:06.000000','1787364321589026'),('3382282181799768',1,'Always an awesome experience! Génesis the receptionist was very nice and attentive. The nurse Catherine got us to the back very quickly. Dr. Qureshi was very helpful, answered all our questions and habla español! Quyen and John were very helpful and thorough.','2020-05-05 17:31:08.000000','829264323932850'),('3385110911506293',1,'Professional staff, Patricia, Alvean and Dr. Cavazzos. Very thorough in everything they check.','2020-02-27 18:49:40.000000','167959367441528'),('3386239381407036',1,'Very organized and fast. Thanks!!','2020-07-21 17:33:50.000000','1609539722669429'),('3386354698061923',1,'Amazing staff and service! Everybody is so nice and helpful. 10/10!!!','2020-07-29 03:34:51.000000','105589317817643'),('3394885767249008',1,'All the staff was absolutely wonderful including Maya. Such a sweetheart. My favorite highlight that day was how they take a lot of things serious when it comes to the care of their patients. I accidentally did something and after a few minutes of what I did they came to talk to me to make sure everything was ok. I really didn\'t know because I was use to doing certain things. It really touched my heart to know how they really really care about their patients. Keep up the wonderful jobs you all do.','2020-02-22 06:53:08.000000','829264323932850'),('3397204970343155',1,'Adriana and magally were really nice and gentle, made the testing comfortable','2020-07-22 16:16:13.000000','237100240304186'),('340375700145873',1,'Polite & very friendly made my visit feel like I wasn\'t even in an ER. They took care of me quickly and efficiently & made me feel stress free. Joanne, Rachel & Dr Thomas, I appreciate ALL that you do!!!! Thank you','2019-01-26 19:07:30.000000','544778295636544'),('3405906936149771',1,'the service is fast and the staff are well qualified for their job.','2020-01-13 01:13:06.000000','235046800697531'),('3410145605668640',1,'I recommend you come & see the nurse Catherine. Very nice & gentle sweet woman , & very knowledgeable. Everything done here was in a timely manner.','2020-03-03 16:01:56.000000','829264323932850'),('3414237378601329',1,'Thanks to everyone for their care. Thanks to Tanishia and Susan for your great help. Dr Pham you’re great!','2019-11-06 04:54:12.000000','461782867645453'),('3414328428595050',1,'Fast and friendly service','2020-06-24 08:43:36.000000','1608991329419166'),('3414702585206965',1,'Great service, friendly staff! Thanks to the front desk Lorena and Victoria, nurse Jeri D/Matt, and Juan!','2020-07-31 16:42:52.000000','326347177710316'),('3416556418370764',1,'Fast service great staff , up to date facility. Very friendly and caring','2020-02-09 13:59:01.000000','299216637560955'),('3417751191585394',1,'Nothing they were amazing. Dr Henderson was very nice and informative, RN Mollie was nice and helpful,RAD tech Sarah was friendly and REG Tobie was helpful and friendly.','2020-03-09 15:32:50.000000','235046800697531'),('3421504794533564',1,'Dr. Nguyen, Nurse Kristina, Radiology Tech Tino, ER Tech Nelson, and May at registration were all superb. The staff is very personable they take your situation seriously and they treated us with respect and we did not have a very long wait. The examination was very thorough and we didn\'t feel rushed. If you have an emergency situation you\'re much better off going to SignatureCare then to a hospital\'s emergency room.','2020-02-29 16:49:54.000000','829264323932850'),('3422545154439159',1,'I can not say enough good things about this place. The staff and facilities were beyond amazing. If there is ever a healthcare overhaul this place should be the model.','2020-01-06 01:04:53.000000','235046800697531'),('3424251854315204',1,'They were awesome. Dr. Yusuf, Amy, Churiah were awesome and even offered snacks!','2020-01-24 17:28:07.000000','1608991329419166'),('3427733550570518',1,'Great experience! DR. Was fast and knew exactly what to do. The pain I’ve been feeling was noticed and taken care of. They simply are the best! Thank you SignatureCare!','2020-06-30 16:19:10.000000','596022027480375'),('3429642653718634',1,'I brought my mother here because she wasnt feeling well and the front desk ladies were welcoming Emily and Sindy helped get my mom back fast. Dr Farooqi was very compassionate and we loved Zinadia','2020-03-17 01:44:19.000000','544778295636544'),('3435441709800932',1,'The people at signature care are great!!!\nI want to especially thank these ladies for being outstanding.\n\nTeresa - you have been awesome. KV Power says thank you\n\nMagali & Adriana - you were fantastic. Very patient and kind. Very good customer service.','2020-07-24 14:59:07.000000','237100240304186'),('3435626223163103',1,'Great customer service, the workers helped us through the whole process','2020-06-12 17:55:35.000000','1698192877146046'),('3440888105922127',1,'Angela at registration took care of me super fast when I walked in and I was already being seen before I could finish my paperwork . The staff did everthing and more to make sure I wasn’t in pain and made sure I was taken care of from the moment I laid in the bed. No wait times, friendly staff and the kindness makes this the best place to go','2019-09-25 01:56:11.000000','251751275488925'),('344716103066367',1,'Dr. Souman, Cris, y Amy me antendieron excelente','2019-04-19 08:46:59.000000','1608991329419166'),('345173443096663',1,'The best team ever! Bryanna and Kim were fast and friendly, Tammy and Nanci were caring and attentive. Dr. Lindsay is the best!','2019-08-12 16:32:40.000000','461782867645453'),('3453517434665855',1,'Honestly the greatest E.R I have ever been to. I would recommend to ANYBODY. we waited for MAYBE 5 minutes and the staff was so friendly. I came with my 4 year old daughter and she felt so comfortable, which is rare. Thank you guys so much!','2019-10-16 00:01:55.000000','251751275488925'),('3456984790986084',1,'I’ve driven by many times never knowing one day, I was going to need this place. Dr Dunn, Lynn, Fatima and Daniel were all amazing. Tanishia, the young lady who took care of s in the waiting room was quick, friendly, and we were out of the waiting room in minutes. It sure beats going to the ER and waiting for hours. This was a great experience and I know where I’ll be going for urgent care again. Two thumbs up!👍 👍','2019-11-11 06:00:20.000000','461782867645453'),('3460577557349758',1,'................Great experience!! 👍','2020-01-20 19:18:06.000000','237100240304186'),('346329192929919',1,'Amy, Dr Boester, and karen were such a help!!! Such a compassionate team!!! The absolute best!','2019-06-29 01:56:09.000000','1609539722669429'),('3466506433369169',1,'A big shout out to R. HEMERKA, MD, JOSEPH N\nNurse: Calli L K\nRadiology Tech: Shade M D\nFront Desk: Quintessa T \nYou all were just wonderful with my husband & I yesterday morning! Thanks again!','2020-06-08 18:57:16.000000','251751275488925'),('3468652703150498',1,'unfortunately, life hit and I was admitted here. \n The stay was comparable to that of a 5 star hotel; big fluffy robes, Doordash breakfast, your own fancy restroom. \n\nTHIS PLACE IS AWESOME! I just wish I want here because I feel so awful','2020-04-21 18:14:32.000000','167959367441528'),('3469440913081405',1,'I love how they are so quick to get us in and service is amazing!!','2019-09-13 17:12:01.000000','237100240304186'),('3469697499723608',1,'Genesis & JJ at registration we’re super warm and welcoming. It was so fast, and I came for what I thought was a broken foot so being seen fast was super appreciated. My nurse Catherine was so patient especially with my boyfriend who asks a million questions to every doctor we see (lol). My ER tech Scott and radiology tech Quyen were knowledgeable, helpful, and again quick. The common theme in this place is to be quick which is so different from many places. Special shout out to Catherine who made sure I was comfortable and happy the whole time.','2020-03-03 16:05:54.000000','829264323932850'),('3474780862536900',1,'Went in with the flu and they were awesome! They explained all the procedures to me and included me in the entire process. I fully recommend!','2020-03-04 13:37:43.000000','544778295636544'),('3475998792424146',1,'Came in today for Strep Throat was greeted by Amy who was very nice and and happy to help me. Blake and Kris made sure to ask me exactly how I’m feeling so that they could provide me with the highest care possible. Would visit again and would recommend to anybody needing emergency care.','2020-08-01 22:00:00.000000','1648645701907657'),('3478546455523803',0,'awful. expensive and outrageous contracts.','2020-08-01 18:47:03.000000','544778295636544'),('3485078038200592',1,'Wonderful clean environment! Everybody was so caring and considerate and welcoming... Thank you again... Dr.Yost,Carla,Lucas, Theresa, And Jennifer...','2020-02-01 21:38:38.000000','235046800697531'),('3488297341211391',1,'Thank you Alexis, Randy, Allison, Sita,and Dr. Miller for taking such great care of Leslie. Got us in very fast and genuinely cared about making our son feel better as fast as possible.','2019-11-11 04:12:31.000000','596022027480375'),('3488381071201677',1,'Seen 08/05/20 arrived with bad pain in middle of back. Tests and blood workup done immediately. All associates do such a fantastic job and make you feel like family. You get the best care and attention to your needs like nowhere else Highly recommend this ER. Dr. Lingan and Dr. Rankin are the best.','2020-08-05 15:39:27.000000','1698192877146046'),('3491371930875892',1,'Great experience Great staff Dr. Daniels, Rollie, Stephanie P. Stephanie R and Natalia','2020-08-12 05:56:03.000000','1648645701907657'),('3495454997136002',1,'The best service i have received in a long time. the staff at signature care were very caring.','2020-05-08 22:21:45.000000','235046800697531'),('3498352513516851',1,'Great place, very friendly and caring people. They took care of me very well, and I highly recommend them!','2020-07-22 21:07:35.000000','251751275488925'),('3498649370177244',1,'Great staff & good people. Highly recommended 👌🏻','2020-01-11 10:28:47.000000','829264323932850'),('3498851093499405',1,'Staff was super nice and service was quick. 10/10 recommend','2020-08-08 19:26:48.000000','105589317817643'),('3499691440062354',1,'Great service, everyone was very nice and helpfull.','2020-07-06 01:17:14.000000','1608991329419166'),('3506768196000127',1,'Quick service! My rapid test was actually rapid, the entire staff was great from start to finish, especially Tiffany!!','2020-08-04 14:34:11.000000','299216637560955'),('3507524135924623',1,'Friendly and caring medical staff! Fast service from start to finish. ❤️','2020-08-01 23:30:38.000000','105589317817643'),('3508435342506236',1,'Everything about this location is awesome! From the front desk, nurses and doctors. They are all very sweet and efficient! Love that there is no wait!','2019-09-06 17:39:26.000000','1609539722669429'),('3511041082273662',1,'I have been here twice already for covid testing. I had a good experience the staff is organized and have all the paperwork highlighted for your for easy filling out. The test was fast, and the while process was fast I was in and out.','2020-08-04 14:07:22.000000','1648645701907657'),('3511695985571633',1,'Jessica was very fast at greeting us and getting us back there, and our nurse Senaida and Dr were very fast getting back to us. We didn’t have to wait too long. It was a very fast and easy process.','2020-03-04 01:40:19.000000','237100240304186'),('3516087285070958',1,'Brought my son in earlier this week, staff was so so nice and very helpful. There wasn’t a long wait, we were in and out within the hour. Highly recommend','2020-01-16 20:25:30.000000','596022027480375'),('3517785731572421',1,'The service was great Jani, Marcus Patricia and aurora were great from beginning to end. No waiting.','2019-12-08 18:04:11.000000','167959367441528'),('3524406917632492',1,'Fui de emergencia el domingo 9 de febrero en la noche y no espere nada ni 5 minutos , desde que llegue la recepcionista muy amable , luego pase con la enfermera todos muy profesionales y amables los doctores igual el de rayos X todos fueron muy amables de verdad es una atención extraordinaria me encanto mucho , gracias a todos ellos por hacernos sentir bien','2020-02-14 19:29:38.000000','167959367441528'),('3527438370660497',1,'It was amazing! Would deff come back! Kotey was very helpful along with Fatima and tanishia and zinaida! She took care of what of sickness I had! And Sarah gave me and warm blanket :) loved all the service I have gotten','2020-02-21 05:31:39.000000','461782867645453'),('3531497596920763',1,'Jennifer D., nurse Ann, nurse Susie and tech matt were all awesome! They were very friendly and informative about the issue at hand.','2020-02-19 19:36:39.000000','299216637560955'),('353227355513423',1,'dr ashbrook. michelle .kim and sherri are awesome..love signature care-!','2019-01-31 19:01:12.000000','235046800697531'),('3533754843333140',1,'Came into SignatureCare today. Kimberly at the front desk was super helpful! And the nurses and Dr. Dang were great too! Very quick service, friendly staff, and office is VERY clean!','2020-03-04 22:20:36.000000','1609539722669429'),('3538300082876897',1,'The Dr and her staff explained everything to us and were day in getting us treatment. Sindy was also great at the front desk. Thanks to everyone at Signature Care','2020-01-08 19:03:22.000000','1609539722669429'),('3545219058827188',1,'my visit was very professional and no long wait','2020-04-14 00:25:02.000000','104213804456471'),('3546564425366381',1,'All the staff members were great! Samantha, Timothy, Grace and Dr. Edwards made my experience in the ER that much better. Thank you! ☺','2020-08-08 10:49:56.000000','1609539722669429'),('3554047087952879',1,'super friendly. especially the front desk ladies','2020-08-11 20:30:37.000000','1787364321589026'),('355963175225472',1,'Great Staff, professional, polite and compassionate. From entering the Facility to existing I felt my medical needs were handled.\nThank you,\nGlenda Schoeffler','2019-01-30 18:10:47.000000','1765121397101399'),('3563201647055804',1,'Wonderful experience\nDr Ybarra\nNurse Rollie\nRad tech Natalia \nReceptionist Stephanie','2020-01-26 04:31:20.000000','1648645701907657'),('3565511950129506',1,'The staff at Signature Care were awesome. Everyone was very friendly and helpful. Dr. Rose was very thorough when explaining the best treatment plan for me and listen attentively to any questions or concerns I may have had. I would definitely recommend them.','2019-10-08 21:47:29.000000','251751275488925'),('3570505406312612',0,'They said it would be 45 minutes. I have been here 2 hours. I have corrected my name with the same lady 4 times and she calls me by the wrong name.','2020-07-05 20:00:05.000000','299216637560955'),('3574639439244033',1,'Went there with my mom for an emergency check. The staff and doctors were very nice and explained procedures thoroughly. Very clean and wonderful establishment. Would definitely recommend this location to friends and family.','2020-02-18 17:35:04.000000','829264323932850'),('3574672139270038',1,'Samantha ,Christine, Ricardo, & Dr.Jaber were fast and very friendly. My 4month old was handled gently and with lots of care.','2020-03-02 04:50:45.000000','1609539722669429'),('3576853649022383',1,'Efficient great customer service and fast service','2020-02-23 00:35:11.000000','544778295636544'),('357870748449450',1,'Very fast service \nVery nice and caring staff \nTreated me very well \nI would recommend this place to anyone in central Texas area \nVery affordable in pricing for ppl without insurance','2019-08-10 20:31:20.000000','251751275488925'),('3585805401431028',1,'Very good service the Doctor was really nice','2020-07-16 21:19:24.000000','544778295636544'),('3599771473385036',1,'Amazing, polite, fast service','2020-02-26 04:58:28.000000','237100240304186'),('3600585053293194',1,'Lorena, Rayven, Jeri, Matt, Cameron, and Jacob were awesome! Very clean! In & out in no time! Highly recommend!','2020-07-30 19:30:38.000000','326347177710316'),('360495508024499',1,'I only gave it 5 stars because thats the limit. If i could give more i would. I brought my husband here several months ago, & they took care of him like no other. He was seen quickly, no problems with the wait, staff, nurses, Drs. Etc. They then explained to him about his diagnosis and didn\'t try to rush him off. The whole visit was maybe 45 mins to an hr. Then a month or so later, I took my mom because she had strep throat. And again, they did such a good job!! She loved it and will be going there again if needed.. her stay was a little bit longer because they wanted to keep an eye on her fever. Then I checked in last night and was just amazed by their staff . Everyone is always in such a good mood. Ready and eager to help with whatever you need. Front desk ladies are ALWAYS so helpful and sweet. Place is beyond clean .. love this place and will recommend it to anyone.','2017-11-06 14:05:17.000000','326347177710316'),('3616617431687111',1,'Excellent service clean lo ve nurse Alvean and Tech Thuy An the whole staff friendly .This will be my Er to come too for now on.','2020-04-03 15:36:03.000000','167959367441528'),('3618303091545170',1,'very friendly and efficient care excellent customer service Thank you Leanne Kim Lucas and Eric You Are the Best made being sick bearable','2020-02-28 21:11:28.000000','235046800697531'),('3627879090557127',1,'The staff is great and friendly! Dr. Edwards is very attentive to his pts I love the team work!!!! You guys rock!!!','2020-06-10 14:45:05.000000','235046800697531'),('363288844618456',1,'It was a great visit, considering the circumstances. The entire team was awesome! Sibienne with registration was friendly and quick, Kelly the nurse was wonderful with my little one and so was Thomas the tech. Dr. Singla was gentle and kind/','2019-09-09 23:32:49.000000','1787364321589026'),('3635062729843359',1,'My experience at Signature Care @ Texarkana Tx was very easy going and customer friendly with rapid result. Dr Yost , Nikki and Ryan did a awesome job!','2020-06-10 17:49:25.000000','235046800697531'),('3637266062980927',1,'I was greeted with kindness as soon as I walked in by Natalie and felt as ease. No one usually likes hospitals. There was no wait and Gina immediately took my blood pressure and assessed me while Tim handled everything else. Then quickly after that Dr Miller came into my room with politeness and was very professional. I was very impressed by the great service and wonderful attitudes of all the employees.','2020-01-23 21:03:55.000000','1609539722669429'),('3640018116039992',1,'was greeted by Patricia at the front. Super nice and took care of me promptly. She was able to inform me of how the facility works and how my insurance would cover. I was taken in quickly by Traevis, he helped me out and was very nice and friendly. He was able to check in on me as needed. Alvean was my nurse and she was just amazing. Super fast at running IV (the worst thing ever!) and made it so easy for me to not feel a thing. The whole staff was just amazing and friendly. Highly recommend!','2020-02-27 21:07:42.000000','167959367441528'),('3649959798352328',1,'Very nice and clean. Staff was friendly and so helpful. Thank you Rebecca V, Amanda C, Jacob, Morgan, and Dr. Mauldin.','2020-07-29 19:08:40.000000','326347177710316'),('3652667618080724',1,'Outstanding. Fast, easy, great service all around. Lorena, Amanda, Jacob, Morgan and Dr Mauldin. Almost forgot I was at a Dr office.. Thanks for the work you do','2020-07-29 13:06:44.000000','326347177710316'),('3670665516282281',1,'Signaturecare is Amazing and wonderful!!!','2020-08-07 00:29:35.000000','829264323932850'),('3670884412927350',1,'I just went in today. Everyone from the security guy to the guy who gave me the results were wonderful. I waited 45min from start to end. I did make an appointment','2020-07-05 21:12:32.000000','167959367441528'),('3686036551438892',1,'Great experience! McKenna in registration was very friendly as was my nurse John B and the physician Simmons!','2020-02-11 18:32:05.000000','299216637560955'),('3686486954700460',1,'Oz was my nurse, he was very helpful! Made the visit better than I expected. Ask for him every time!','2020-07-24 02:42:52.000000','104213804456471'),('3691795530838400',1,'Very pleasant. Everything you need at one location.','2020-01-30 17:18:03.000000','1787364321589026'),('3704538072908291',1,'Great experience! Quick and friendly service','2020-06-09 20:50:37.000000','1698192877146046'),('370474660152335',1,'I was sick with some virus. Also dehydrated. The whole staff from aerial at the front to the entire ones that take care of me at the back. Dr. Miller, AJ,and Tiffany. Made me feel comfortable and i wont go anywhere else. They genuinely care for their patients and go the extra mile that most would not to take care of your health and find a cure instead of what it could be. I had to go back the next few days. I didnt stay as the doctor insisted. There was a different doctor. Same warm and comfortable environment. This doctor which was Dr. Smith. Gave me some options but said that if i was his sister this is what he would recommend. Never have i gone to an emergency hospital where they treat you as they would their own family. Awesome people. Delores, Rey and also AJ were there. Exceptional emergency center. Signature Care at Memorial City is the best place to go for any of your health needs. High-fives and thumbs up to all of them. Now only if they could get a raise! They have all the praise.','2017-06-25 06:13:54.000000','1765121397101399'),('3706924372656772',1,'Walked in freaking it over a DEEP cut on my thumb (cut an artery, yay me!). The staff immediately took my back to a room, met the doctor just as fast. I had my daughter with me and before I knew it, the lovely tech Alexa and RN Katherine changed the channel and had a snack for my baby and a warm blanket for both of us. Doctor Elsbecker stitched me up in no time and was sure to keep me informed of anything he was doing before he did it. I walked in in tears and the team quite literally held my hand to make sure I was ok. I hate that I had to be here but I would absolutely recommend their services! Thank you all so much !','2020-07-05 20:21:52.000000','251751275488925'),('3709227559104789',1,'super fast 15 min covid test. Better than anywhere else in austin that takes days to get results back to you. Steven was great and helped me with making an appointment online. Will definitely be back here for future tests!','2020-07-24 14:30:48.000000','105589317817643'),('3711371505570868',1,'Amy Was very informative and sweet as hell','2020-04-02 20:06:56.000000','167959367441528'),('3713461875360986',1,'They cleared up an antiquated myth about wound care. They got right to work correcting my miscare of the wound.','2020-01-29 16:13:24.000000','167959367441528'),('3716213078406064',1,'Staff was super friendly Tracey showed compassion as people checked in. They took me on a walkin basis for my rapid Covid 19 test and made me feel so at ease.','2020-07-26 16:27:13.000000','1787364321589026'),('3731068553586639',1,'The staff and doctor was very polite and informative.','2020-07-26 15:35:42.000000','1787364321589026'),('3734776949866609',1,'Ms.Tobie was amazing very helpful and kind. And the RN Mollie was very helpful as well. And can not forget Dr. Yost and Eric! I couldn’t be more great full!','2020-01-15 02:33:46.000000','235046800697531'),('3742295989117824',1,'Megan C. and Dylan were both great. Megan C. did awesome and was very patient with me and my son. Thank Y\'all!','2020-07-22 00:25:47.000000','237100240304186'),('3742863262395960',1,'Staff is wonderful and caring. Treated me with respect and compassion. I will always come here for my emergency services.','2020-08-10 15:40:53.000000','105589317817643'),('3744899075537039',1,'Eliza\nManny\nRachel\nThey were so sweet, caring and efficient!','2020-07-23 21:09:11.000000','237100240304186'),('3748651141874118',1,'Dr. Lu, Alvean and Thuy An were very professional and gave us very good attention. This is a very clean and nice place!','2020-04-24 15:17:50.000000','167959367441528'),('3750597811681843',1,'thanks you for your help rashaad Wang almaguer olvla fatima','2020-05-17 01:39:05.000000','544778295636544'),('3754970837863974',1,'Always have a good experience. Less than 5 min wait and Kendra was so great!!☺️☺️','2020-03-05 15:27:39.000000','544778295636544'),('3759550410729483',1,'Dr Souman, Sarah, Fatima, Elaine, and Tanishia were so helpful and they were very good at explaining everything I loved it','2020-02-07 03:32:03.000000','461782867645453'),('3763466040331019',1,'Quick care and cleanliness. They were all so nice and patient. The Doctor explained in detail. Tiffany, in registration, Nurse John Bell, and Tech. Ashley K, were all so helpful.','2020-02-23 12:25:32.000000','299216637560955'),('3763820373658864',1,'Had a great experience came in today for a follow up from Saturday as soon as I came in sat down 1 minute later was up and ready to head to the back . Such a good location. Easy convient and friendly staff','2020-03-10 20:48:51.000000','544778295636544'),('378269406255436',1,'Amy, Dr Boester, James, Shaun, Nikki were excellent! This was the best experience!','2019-01-01 22:00:52.000000','1609539722669429'),('3789311977749851',1,'Excellent Customer Service! Very friendly and facility very clean!','2020-07-21 01:34:15.000000','104213804456471'),('3790525260964514',1,'They were so quick! I hadn’t even finished my paperwork before they had called my name to be seen! Everyone was so nice and patient. I felt like I could tell them what was wrong without any hassle. Definitely will come here again if need be!','2020-08-05 00:30:15.000000','251751275488925'),('3800356379974797',1,'I have been twice, staff is nice never has to wait, very professional.','2020-02-17 17:07:51.000000','1787364321589026'),('3802778989762453',1,'I had Sarah, Tanisha, Fatima, Elaine, and Dr Souman everyone was GREAT this was my second visit and They always take care of you. I have never been to a urgent care and been taken care of like they do. They never do anything without explaining things to you. Thank you signature care Copperfield.','2020-02-07 02:27:26.000000','461782867645453'),('3804296912928610',1,'Dr.Thuy, Alvean, And Patricia were all great to me. Offer me a warm blanket, drink and made me feel comfortable, and most importantly they listened and helped with my problem. Thank you guys so much.','2020-03-03 18:46:01.000000','167959367441528'),('3805018882872054',1,'Quick fast an very friendly Center.. Thank u Patricia,Alvean an Elida for a fantastic 1st time experience','2020-02-27 19:55:54.000000','167959367441528'),('3805931386089567',1,'The staff was very friendly ans efficient. Everyone was sure thoroughly explain everything that had to be done, to ensure my comfort mentally and physically during my visit.','2020-08-10 15:02:49.000000','251751275488925'),('382464248964862',1,'They provided excellent care','2018-12-05 02:20:09.000000','1787364321589026'),('3824879527525885',1,'they took extra care of my Mom thank you Amy Tia, Alexa and Dr Leung for yall did for my mom','2019-12-12 01:15:16.000000','251751275488925'),('3828068917219838',1,'I came into today for a short visit! Dalia, Alyssa, and Karen were all so sweet! They were very helpful and made my visit so pleasant!','2020-07-23 20:31:21.000000','1787364321589026'),('3857787280913002',1,'Carissa, Miguel, Delores, Jessica, and Ryan took care of me and were very nice people. Highly recommend visiting this place if you need an er','2020-02-20 17:16:56.000000','1765121397101399'),('3859813740710950',1,'Thanks for everything. You guys were awesome like always. Thanks Sarah and Tanishia and Dr. Lindsay. You remembered me from my previous visit and that was appreciated. Personal.','2019-12-06 00:51:15.000000','461782867645453'),('3868384969880278',1,'I was given excellent service by Tracy. E, Dr. Wendy, Blake, Adam, and Jas when I came in for some tests!','2020-08-02 17:52:17.000000','1648645701907657'),('3874937529183114',1,'Fast clean and very helpful','2020-02-12 00:45:57.000000','237100240304186'),('3879941268746148',1,'just can to came to signature care emergency they r so awsome her I will give them a 5 star that doc herbert n to an amazing murse paige','2020-05-30 05:52:45.000000','596022027480375'),('3880120925333173',1,'Christmas morning 2019 i woke up with pink eye at 430am. Found this place on google maps and headed over. Tanisha greeted me and remembered speaking to me on the phone. She made my morning easy even though she didn\'t know that i was hosting Christmas dinner at my house and would need to finish up cooking. I was seen right away, i guess i was 1 of the very few people out at this time, Fatima, Sarah and Dr. Ortiz got me squared away and made my visit fun turning my panic into a sense of relief. Thank you guys!!! 🙌🙌','2020-01-01 06:58:14.000000','461782867645453'),('388038468606190',1,'it not a long wait in and out and the staff are so nice','2018-12-26 19:29:23.000000','1787364321589026'),('388407461713971',1,'The staff was very profesaional and friendly Amy, Agnes to name a few were very attentive. I would recommend anyone to them!!! Great place!!!!','2019-03-10 01:04:30.000000','1608991329419166'),('389866761768082',1,'I came in because my 3yo daughter was lethargic and just not feeling like herself, Manny and Magali helped her feel so comfortable and were so very kind! Dr. Osiecki was amazing, my daughter loved her! She was very knowledgeable and answered every question I had! I loved that we had our own kid friendly room with cartoons to pass the time waiting on my daughter to pee because we needed to test for a UTI, we were offered drinks and snacks! The staff and patient care was absolutely awesome!!','2019-01-19 17:58:06.000000','237100240304186'),('3904062236332806',1,'The receptionist Vanessa was very helpful over the phone, and made the entire process less stressful. She was welcoming and answered all questions! The facility is amazing and is staffed with wonderful professionals!','2020-06-07 03:15:43.000000','167959367441528'),('3909157269155830',1,'I went in sick as dog with the flu, came out feeling as if I might live. I was seen immediately. The staff was kind, compassionate and efficient. The doctor was sharp and ordered the appropriate medications, lab and X-rays. It was a great relief to find a fine facility in the middle of the night and will return in the future if need be.','2017-12-30 02:03:47.000000','544778295636544'),('3920726934830990',1,'I’ve never had an experience as pleasant as this in terms of ER visits. It’s a very clean and inviting atmosphere and the staff is extremely pleasant. They’re all kind and sincere and go to a lot of trouble to accommodate any needs. They even ask you if you want a warm blanket! I hope I never have to go into an urgent care / ER again but if I ever do I’m coming here. It’s 3:00 am so I forgot their names but every single person I’ve encountered has been amazing from security to nurses to doctors.','2020-04-15 07:40:46.000000','251751275488925'),('3926396100719815',1,'Very professional and fast service. Very happy with Kristina, Allison, and Shania. They helped me out tremendously.','2019-12-08 06:12:22.000000','596022027480375'),('3936735456340449',1,'First time going to this Emergency room, but I would recommend it. Very kind, helpful nurses and doctor. They take care of you right away and constantly come and check to make sure you’re doing alright. Thank you Signature Care for taking care of us!!','2020-01-02 06:33:20.000000','251751275488925'),('3940975042642639',1,'Our nurse is very nice, helpful and very friendly! Keylee is the best','2020-04-09 04:00:13.000000','104213804456471'),('3946348375390796',1,'very nice people. Did a fantastic job!','2019-12-29 00:24:01.000000','251751275488925'),('395948734505109',1,'I took my son into Copperfield Signature care Er. The staff were excellent! I just want to thank the nurse Dawn S., Dr. Nguyen, Jaqueline and registration Tanya for all the great service. I will use this ER again when needed.\nNikaela','2019-02-04 00:20:21.000000','461782867645453'),('398099904257163',1,'They make you feel welcomed the moment you walk in. They make sure they explain everything to you and answer your questions and concerns.','2019-02-25 22:42:48.000000','461782867645453'),('3984143488324415',1,'Great service and staff workers','2020-06-12 18:04:05.000000','1698192877146046'),('3993664930659770',1,'im am not a fan of minor emergency centers because the staff always seem so impersonal. But, today i have become a convert. Stubbed my toe while walking to bathroom in middle of night. Stopped by Signature ER after church because the pain was over bearing. This place is amazing. The staff demonstrated nothing but a high level concern for my comfort and professionalism while providing care ro me. By the way, they dont just offer coffee. They have great snacks too. Thanks Dr Goodman, Adam, Linda, Chris, Andrew, and Aileen.','2020-01-20 01:27:23.000000','1698192877146046'),('399740690773042',1,'I JUS WENT THERE LOVE IT. FAST VERY comfortable good doctors and nurses. i said i be here then relagular emergency room','2019-02-02 23:47:01.000000','544778295636544'),('4010603932286768',1,'very, friendly, very clean and very fast. they treat you with respect. hands down, the best emergency care center in town.','2020-02-19 01:11:13.000000','235046800697531'),('4012798758733909',1,'I had an injury to my left foot. The doctor and Nurses were helpful, kinda and quick! I recommend going here for anything you need!','2020-02-16 00:05:06.000000','544778295636544'),('401333867175416',1,'dr .kimball, nurse Gabe, lindsay wonderful','2019-07-20 04:11:30.000000','326347177710316'),('4017310371619784',1,'Had a great experience, and the staff was nice, helpful, and informative. Nancy, Trini, and Jessica were awesome helping us.','2020-02-09 05:10:46.000000','237100240304186'),('4027025403990011',1,'Great experience! Ryan and Dr. Henderson stayed on top of it. No wait and excellent care! Would most definitely recommend.','2020-01-22 03:09:39.000000','235046800697531'),('4028180990540687',1,'Awesome Staff everyone was very helpful made me and my son very comfortable with warm blankets I recommend Emergency Care 24 Westchase to anyone in the need of help','2019-12-27 18:02:12.000000','829264323932850'),('4047748525300108',1,'I\'ve been here many times at all hours of the day and always here to help!','2017-08-17 21:25:56.000000','326347177710316'),('4048590151827651',1,'Dr.Dendy,Delicia,Duke,Sebler were awesome and caring','2020-02-26 15:36:26.000000','1648645701907657'),('405217950406483',1,'They took really good care of my fiancé and she’s going to start feeling better. You guys are awesome thank you','2019-10-29 18:47:12.000000','251751275488925'),('4060057927345077',1,'They are always fast and very friendly! We highly reccomend them to everyone! The wait time beats every other emergency room my family or I have every visited.','2020-02-06 04:52:46.000000','251751275488925'),('4064530643572824',1,'Had a good experience staff was very helpful.\nNurse Lisa v Vanessa\nRadiology David Er tech Danial and Matt \nDr.miller','2020-02-10 03:26:21.000000','596022027480375'),('4070545266319454',1,'Jacob, Patrick and Dr. Jones were great!','2019-04-18 21:21:17.000000','326347177710316'),('4071551806192096',1,'Brought my husband in and he was immediately seen & taken care of. Everyone was very nice with great customer service, very thorough, and explained what was going on with him where we could understand what exactly they were explaining. So glad we came here...big thank you for your exceptional service starting from Stephanie-registration, Rollie-nurse, Natalia-rad tech, Marsha-echo tech, and Dr Gringlatas 😊','2020-03-07 06:11:49.000000','1648645701907657'),('4072103739530489',1,'Great service and experience from everyone involved. Kudos to all of the staff!','2020-07-31 17:09:58.000000','326347177710316'),('4075634449176838',1,'my visit to Signature Care Westchase was seamless. Erica, Alysiaand and Sade got registered in quickly and were super friendly and helpful. Nurse Danny was friendly and informative and gave me all the information I needed. The entire staff was great, I would recommend this office for your emergency and health needs.','2020-08-06 14:26:17.000000','829264323932850'),('407936813486486',1,'Great service. Friendly and fast! Love Dr DeWaal, Kara the RN, Linda in registration & Helen the radiology tech!','2019-11-14 21:16:13.000000','235046800697531'),('4083866405021369',0,'Facility nice and clean with amazing Staff. Jacquelina, Bansal, William & Graciela','2017-12-26 18:56:23.000000','544778295636544'),('4084967864854439',1,'Dr Dang , Sindy , Wendy, and Zineda were wonderful','2020-05-17 23:55:51.000000','544778295636544'),('409665803258114',1,'This ER is the best that I’ve been to in the Killeen area. Yes! Better than CRDAMC! Clean facility, staff that actually wants to be at work and cares about the patients. Very timely service. My son was checked in, treated by the Doctor and released in approximately 50mins. Will visit agin in the event of an emergency.','2019-10-28 16:52:08.000000','251751275488925'),('4099913883416569',1,'Excelente atención, ambles y rápida atención por parte de todo el personal en registration es lo mejor por parte de la srita Mata y Jessica P.','2020-08-03 01:40:01.000000','237100240304186'),('4118210074920545',1,'Rachel and manny were very nice and professional everything was quick and easy! Thank you!','2020-07-24 19:49:47.000000','237100240304186'),('4119137134778957',1,'Awesome service! We were in and out! Diana and Sindy were extremely nice and helpful. They explained everything toughly. Dr. Thomas was able to diagnose me very quickly. Tech Fatima explained my condition and what to do next. Definitely recommend!','2020-03-07 04:01:59.000000','544778295636544'),('4120488044692867',1,'excellent service and with all the precautions and care for all','2020-07-13 04:25:29.000000','1608991329419166'),('4121954991212229',1,'Nancy, Gabby, Dr Nilang Patel, Lorena Hollie & Jessica are all super helpful and so sweet.','2020-08-02 16:19:17.000000','237100240304186'),('4131667046875098',1,'My first and only visit to Signature Care was absolutely AMAZING! We were treated EXTRAORDINARILY well by Katherine who made getting tested a fun experience! She was VERY approachable and fun with my kids and had them laughing the entire time! I feel as if she actually cared about the health of my family and I would recommend this Emergency Center to any and all who reads this! Thanks a lot Kat!','2020-07-15 18:47:08.000000','251751275488925'),('4142750789084463',1,'They were fast and efficient. The doctor and nurses made sure that I was comfortable and at ease they also made sure I knew all the information and understood what they were saying. And answered all the questions I had','2020-03-03 12:03:36.000000','1787364321589026'),('4144085655633093',1,'We went by for the Rapid Covid 19 Test. Adriana & Magally were very helpful & friendly. I made an appointment off of the website, it was very fast & simple.','2020-07-22 15:10:52.000000','237100240304186'),('414578089497353',1,'Friendly service awesome Tanishia and Alicia was great! Thanks','2019-11-15 08:26:15.000000','461782867645453'),('4173312762709335',1,'Staff here is amazing!! (Special thank you to Denise, nurse Sarah, and Dr. Chopra). I was in and out very quickly. Clean environment!!','2020-06-07 17:02:38.000000','104213804456471'),('4217871708255381',1,'Everything! From the check in thru the checkout. The service was excellent. Lots of thanks to Dr. Mathew. Nurse Lynn, Fatima, Hope, Chris, and Tanishea. Great job !','2020-04-20 13:04:35.000000','461782867645453'),('4219349361439222',1,'Dr.Grinblatas is a Angel onearth.I walked in with Anxiety at a high level.With all patients he was seeing he spoke to me relaxed me with his words and I am still overwhelmed with feelings of Gratefulness.I was walking by and over heard him fighting for another patient life.I was astonished.I feel that he deserve so much more than words I am writing. They can not express the Courage and Compassion of this Doctor.Pray for him along with everyone that works here.Dr.Grinblatas is a person to be admired.I will not complain about anything in life after this visit.','2020-07-09 09:13:23.000000','829264323932850'),('424361134766984',1,NULL,'2017-07-09 13:17:22.000000','544778295636544'),('4246471122033275',1,'they are super friendly. keylee is an amazing nurse.','2020-04-27 01:34:30.000000','104213804456471'),('4262989857108928',1,'I had to take my 4 year old in for pink eye and an ear ache and this was the BEST experience we\'ve both had. She actually didn\'t want to leave!!! I was expecting to be there for at least 2 hours, but my wait was like 3 min in the waiting area, 5 in the room and the nurses and doctors were amazing!!','2017-06-06 18:36:33.000000','1787364321589026'),('428384338046094',1,'everyone at signature care was awesome and fast tonight thanks to reg sita\nxray vanessa\ner tech leah\nDr.thomas','2019-12-18 06:01:38.000000','596022027480375'),('4287654897927088',1,'Awesome experience!!! Quick and thorough care. I am so happy I tried this place!','2020-02-26 19:47:49.000000','251751275488925'),('429149937582735',1,'Hayleigh was friendly and welcoming. The facility is nice and clean. The staff was very attentive.','2018-07-25 03:15:59.000000','1609539722669429'),('4296472853711931',1,'I strictly only come to this “urgent care” facility for my family. I’d come here too if I wasn’t active duty. This facility gives my family 10x the care in a TIMELY manner than Darnell’s ER ever has. I didn’t know this till today, but I noticed they have a CT scanner in the back. This is quite literally an Emergency Room. I’ve not taken my family to Darnell’s ER since this place opened. Hands down best emergent facility in the area. 10 out 10 recommended','2020-03-10 20:28:10.000000','251751275488925'),('4316222701736168',1,'My family just had the Covid testing done and ER tech Leah was so gentle and informative and took her time with my little one. Thanks Leah for making this horrible time a bittersweet experience.','2020-07-04 20:44:12.000000','596022027480375'),('4327256069553',1,'Not the best way to spend a Sunday but thank you so much dr Thomas, Rick and everyone else who made this experience more tolerable.','2020-01-12 17:49:24.000000','1609539722669429'),('432881907519025',1,'the 3rd place i had to go to get actual care and for someone to listen to me. VERY friendly even funny staff members who cover all the bases. brought me a warm blanket and some pudding :) thanks for helping me when no one else would.','2019-04-11 04:39:15.000000','544778295636544'),('4354539691224679',1,'The staff was wonderful!! Dalia, Tracey and Amy plus our nurse and doctor !\n\nThey were friendly kind and patient!!','2020-07-13 21:46:34.000000','1787364321589026'),('435622660675905',1,'They took care of us right away! Ms Stephanie at the front desk was very nice! Natalia so was nice to my daughter and tried to make her feel comfortable as much as possible. Rollie gave us so much useful information no other nurse had given me. Dr Nweze figure out what was wrong with my daughter within 45 mins. They ended up finding what was going on, gave me an actual answer AND solution nobody else had been able to do. I was feeling so defeated but Dr Nzewe and the staff honestly made me feel at so much ease, something very few doctors had made me feel. Thank you so much to the entire staff here!!','2019-12-13 10:32:59.000000','1648645701907657'),('438125090448428',1,'Awesome got everything taken care of fast great staff & great time!','2019-11-19 22:15:17.000000','235046800697531'),('438480743631431',1,'Very helpful and very friendly. Skyler was so nice as well the staff in the back. Highly recommend SignatureCare 😊','2019-05-25 05:41:21.000000','299216637560955'),('4393205840704384',1,'Lauren the marketer gave me a monster while I was waiting! Super nice staff and very helpful','2020-06-10 22:11:14.000000','1698192877146046'),('4399957503377776',1,'Very clean site and wonderful staff\n from. the front desk to the nurse. Thanks!','2020-07-24 18:16:11.000000','105589317817643'),('440952096626700',1,'Customer Service from the front desk to the nurse to the doctor is all #excellent! It makes a difference when you are really sick and don’t need anymore agony in your life, just want to be heard and treated with effectiveness! Thank you SignatureCare team!','2019-10-21 00:12:54.000000','1608991329419166'),('443312253153753',1,'Really nice staff, Lisa V. very helpful and understanding as well as Delpha helpful and nice very patient. Dr Osiecki explained questions I had very caring for my daughter. I do recommend this place to anyone','2019-06-06 22:33:32.000000','237100240304186'),('4442194569139794',1,'Amy, Gracie, Dr. Edwards and Sean were quick and the service was great- this is the place to come for any service you need!','2020-04-23 00:47:55.000000','167959367441528'),('445287705994698',1,'I came in with my service dog needing help due to back pain that was beyond what my other NSAIDs and OTC pain medication could help. I was having difficulty concentrating due to it.\n\nI was helped and invited in. Had a warm blanket offered to me 3 or 4 times... :p I got a toradol injection, and a muscle relaxer that I will add to my as needed set of meds until I can get in to see the rheumatologist to find answers for my all over chronic joint pain.\n\nSo... yeah. I got in fast (like, I was there and gone in about or maybe even under an hour. Even my regular PCP visits aren\'t that fast!), everything was explained to me in full, and everyone treated me nicely and professionally.\n\nI would DEFINITELY recommend them to others.','2018-01-23 16:55:27.000000','544778295636544'),('4483544211663474',1,'Brittany was Awesome! She kept me informed eventhough I wasn\'t able to be with my family member. Great place when in need of care.','2020-08-04 18:29:03.000000','461782867645453'),('449755258922988',1,'Very professional and clean atmosphere. The staff was very caring and I was not left in the dark about anything. They made sure to explained every step and procedure in detail. Again thank you to Mrs Robin , Mrs Jennifer and to Mrs Brooke and also to Dr. V 🙂','2019-06-06 04:52:42.000000','299216637560955'),('4521148607903706',1,'the Lady at the front desk ITZA was super friendly and nurse VIVIENNE AND GINA were super friendly and helpful and MIGUEL he was quick and supper nice','2020-02-21 21:47:11.000000','1609539722669429'),('4524597654224533',1,'Lorena and Amanda are amazing and so are the rest of the Staff.','2020-07-25 19:26:36.000000','326347177710316'),('453790945450297',1,'The Staff @ SignatureCare EC, was great and very caring. They were very helpful and informative, they treated me very well and was very attentive to my reason for being in the SignatureCare Emergency Center. I would recommend this center to everyone.','2019-04-23 00:20:23.000000','167959367441528'),('454311751725653',1,'I think that this is the best place I\'ve been to for treatment. Cindy C. Dr Patel.Mr.Jesse','2018-09-10 16:21:44.000000','544778295636544'),('457021088180606',1,'Their staff is amazing and very comforting. Thank you Ashley B, Erica, and Ashley K.','2019-07-11 14:07:14.000000','299216637560955'),('4596354470378342',1,'My fiancé went there and they took very good care of her and all but one of the people up at the front desk were very nice and caring. If I have to go to an ER and can make it to Paris. I highly recommend.','2020-08-06 11:16:27.000000','299216637560955'),('460146438273734',1,'the nurses and doctors are awesome.','2020-01-02 12:59:32.000000','235046800697531'),('464498450988418',1,'Signature was great! Robin at registration, nurse billy and tech courtney were all amazing!','2019-05-14 01:46:50.000000','299216637560955'),('465166957410174',1,'Thay are very good take care of you very fast.make sure you ok.before you leave','2019-10-10 23:14:21.000000','167959367441528'),('465498747679057',1,'they are prompt, friendly, willing and wanting to help/great customer service with a smile. They make you feel at home. The number one thing is taking care of you and making sure that you are ok before you leave. Oh and the blankets they cover you with are so warm and wen it gets cold they give u another blanket. \nthis is a shout out to Leslie for getting me in to see the doctor. Olivia thanks for making comfortable. Dr. Siddiqui for your genuinely interest and care for patients. I really feel that my need was met and questions answered. Thanks, keep up the good work!','2019-12-17 16:06:35.000000','1608991329419166'),('466370984172802',1,'Very thorough and good service','2019-05-20 07:37:59.000000','251751275488925'),('466406180521806',1,'The staff were very concerned and courteous in helping me get over the flu.','2018-02-25 11:45:45.000000','544778295636544'),('468632046875921',1,'Ms.Shelly and Mr.Adam were the best! They made sure everything I was very adjusted.','2017-03-01 14:27:13.000000','1608991329419166'),('469649866854827',1,NULL,'2017-03-25 03:00:34.000000','1609539722669429'),('472124976635006',1,'Wonderful and friendly staff. Very professional and prompt timing on everything. They have all the equipment needed for testing here, no need to go somewhere else. Drinks and refreshments provided. They even gave my kids a kids a bag of snacks to share for the week. Excellent experience! Will refer!','2018-05-15 13:20:03.000000','1765121397101399'),('4731564250203168',1,'Yes, 100% recomend , it’s a professional and friendly attention all the team, specially Maria Lara she the one in front desk she helped us with all our questions when we were answering the paper work , very educated and nice person!!','2020-07-17 04:19:08.000000','1609539722669429'),('473833859790448',1,'Great people','2018-08-03 19:26:14.000000','544778295636544'),('474595940126120',1,'Came in with my crazy husband... he is always doing crazy stuff. But as soon as we walked in to emergency room we felt very welcome. Tanishia was a very welcoming offering drinks and treats. We love her. Dr. Thomas stitched up husband and nurse Sarah G helped us get in and out.','2020-01-17 08:56:34.000000','461782867645453'),('475399299866550',1,'My experience was excellent. Always a pleasure seeing everyone. Keera was great!! Thank you all!!','2019-05-30 17:48:00.000000','544778295636544'),('475661182950451',1,'Excelente care and really nice staff.','2018-08-24 00:49:03.000000','1765121397101399'),('475859463338282',1,'The E.R. Service was amazing . Front customer service Samantha was nothing short of exceptional . Staff nurses and Dr were super friendly and very helpful.','2020-01-21 05:13:43.000000','1609539722669429'),('477414083175628',1,'My experience at Signature Care went smooth. The nurse Nicole was extremely patient and helpful and offered my husband and I warm blankets while we waited. The ultrasound tech and the doctors took great care of me.','2019-12-27 00:24:12.000000','1787364321589026'),('478704905874942',1,'The staff and doctors were so friendly and the wait was super short!','2016-05-02 14:38:18.000000','544778295636544'),('480898609468850',1,'Norma and churiah are very considerate and polite choose signature care for your er','2020-01-25 22:39:14.000000','1608991329419166'),('481195762760504',1,'Friendly staff, I didn’t have to wait at all ..they took care of me right away Thank you Christine M.\nBrandon, Dustin and Tatiana :)','2020-02-20 02:02:42.000000','1609539722669429'),('486487478966521',1,'I would recommend anyone too this ER they really take their job serious. The staff was amazing.','2020-01-31 21:16:41.000000','1609539722669429'),('487550365449955',1,'In the middle of a bad situation, I couldn’t have asked for better or more compassionate care! From registration with Ashley B. To the care I received from John B. And Ashley K., my whole experience was amazing! I actually had to spend the night for observation, and was just overwhelmed by everyone there! This is what emergency care is supposed to be!','2019-12-15 17:01:46.000000','299216637560955'),('487717258642224',1,'Thank you for the great service you guys helped a lot','2019-07-04 05:16:45.000000','1787364321589026'),('488973491857831',1,'Great staff!! From the nurses to the doctor! Highly recommend bringing your little ones here. They were so fast and patient with my one year old! If needed I will definitely come back here.','2019-06-11 20:45:22.000000','237100240304186'),('489251478675264',1,'Gracias a todo el equipo. Estuvo maravilloso, se los recomiendo. Ellos son: Starr. Joseph, shaylene, Trisha y Alissa. La atención inmediata. Gracias.','2020-02-01 15:51:01.000000','1787364321589026'),('491372827952785',1,'When I came to this clinic I was in a lot of pain, and more than a little nervous. I have to say from the moment I stepped foot in the door they were just incredible. I felt so bad being there for an earache but it really needed medical attention. The staff was Vastly knowledgeable and very thorough. They will definitely be my go to for any emergency issues! \n\nDR. FAIG ZVI OFER M.D. \nNurse: Noyes,Laura','2017-11-29 20:57:04.000000','544778295636544'),('491865657903591',1,'I had an extreme migraine and was expecting to wait hours to be seen, helped and discharged, but instead I was greeted with quick service and a friendly staff. Each member was kind, told me exactly what was going to happen, and did it in a timely manner. I would definitely recommend going to this facility! Great service!','2017-04-12 03:31:50.000000','544778295636544'),('492897098125645',1,'I had a great experience here. They were really professional. The nurses Kim and Corey. Especially DR. Patel. Can’t forget the front desk being very very helpful Shania and Sita. I recommend anyone to come here!!!!','2019-07-24 01:43:04.000000','596022027480375'),('495718814409447',1,'Tobie, RN Mollie, and Eric were so great with getting us checked in and in a room! So thankful!','2019-12-29 08:51:25.000000','235046800697531'),('497802227539733',1,'They’re very friendly and professional. They will attend u right away. Faster than an ER in the Hospital. Dr Miller was great. I was than seen by Dr Yusuf. All personal were great.\n\nThe only downfall to this please is they were not able to give me a pain medicine that works for me. The following day after my visit I was on hold for literally an hour. I hung up and had to call back and let them know how long I was waiting before I was able to get someone to help me. The first medication gave me a lot of pain in my stomach the second one was a muscle relaxer It did nothing for the pain . After that they were done with me, they couldn’t help me anymore. I have to see a specialist, it takes three weeks so what do I do in the meantime? I’m in tremendous pain. All they could say was, sorry 😐 \n\nI’ve been going to this place for three years and they have always been able to help me except for my last visit.','2020-01-16 17:26:16.000000','1609539722669429'),('499791640554267',1,'The girls at the front Ashley B and Tiffany were very helpful and friendly great staff and super fast!','2019-04-17 22:17:42.000000','299216637560955'),('501490833696001',1,'It was great everyone was nice and very helpful I plan to come back here if I get hurt again.','2017-09-05 18:40:49.000000','326347177710316'),('502005310470540',1,'Team was awesome! Very informative, and make you feel very comfortable! Highly recommended ER!\nDr. Morrical \nNurse Irving\nRadiology Tech Sherwin\nE. R. Tech Christian\nRegistration: Carly','2020-04-02 06:53:05.000000','829264323932850'),('502476393563509',1,'I came in last minute thinking I\'d be there all day and be late for work. I didn\'t have to fill out the first page of my paperwork and was called back. The front desk attendant, nurses and doctors were extremely helpful, sounded invested in my concerns and got back with me promptly to let me know my options for treatment. This is not common in service. They really are about their patients, and obviously one another. No business runs this smoothly with a staff that doesn\'t work together. I had an earlier visit when my daughter hit her head on the swimming pool. Same amazing care and service. I adore them as much as my primary doctor. Kudos to this awesome crew. You are truly the best and we are blessed 😃','2017-03-02 00:38:54.000000','544778295636544'),('503727053871735',1,'Wonderful team , maya was the best made the experience very comfortable for me .','2020-02-27 17:45:47.000000','829264323932850'),('504764980340527',0,'Great place!!!!! Very fast and caring...Thanks to Ms. Rose, Ms. Amy, Ms. Shade, and Ms. Natasha!!!!!!','2019-08-10 21:51:39.000000','251751275488925'),('507528796842390',1,'Goot polite and respectful \nPersonal','2020-03-09 01:29:35.000000','104213804456471'),('509088696163362',1,'They diagnosed my problem and had the solution I needed. Overall, I would recommend Signature Care @ Memorial City for your emergency medical needs.','2018-01-08 23:18:11.000000','1765121397101399'),('509214466551893',1,'the staff was fantastic. they were quick and very attentive. Lisa V. was great as well as Andrew, David and also Jocelyn at the front. Dr. Estevez explained everything well.','2019-07-14 04:51:36.000000','596022027480375'),('510438163041765',1,'Awesome experience \n Robert H- he was amazing and he was smiling with my son\n Dr Iheme-he was very nice\n Melissa E-when you always come she always treat with a beautiful smile','2019-09-08 06:56:56.000000','167959367441528'),('510924076396551',1,'Very fast and kind! Fancy facility.','2019-10-04 05:55:59.000000','251751275488925'),('511159619358346',1,NULL,'2017-08-10 11:42:19.000000','1765121397101399'),('511221136464140',1,'My mom was almost fainted this early morning, we rushed to the nearest signature care. The Doctor, Dr. Orthis and staffs, Christina, Tino and John are really professional. They gave her an exceptional care, checking everything to make sure she is OK before discharge.','2020-03-15 17:16:57.000000','829264323932850'),('513539879563402',1,'Tanisha is the sweetest lady here and so caring btw she’s also very optimistic and just makes any person feel better ! Thanks for everything.','2020-03-04 06:50:21.000000','544778295636544'),('516047555525148',1,'Es una super super emegercy care y e recomendado mucha persona y dise que son super el personal y la atención es lo mejor de Houston yo siempre boy al de hwy 6','2017-01-03 00:48:43.000000','544778295636544'),('517434085740061',1,'They treat you right !!! And take there time with you','2019-09-28 18:02:27.000000','544778295636544'),('519804708640890',1,'Staff was great! Kudos to Alvean, Marcus, and Patricia!!!','2020-02-06 22:53:47.000000','167959367441528'),('521662288695679',1,'very friendly! professional! And accurate to their positions with one\'s health! will return if needed for the good quality of care they provide deeply!','2020-01-17 08:55:50.000000','235046800697531'),('522582194820546',1,NULL,'2016-12-02 16:06:53.000000','326347177710316'),('524066688424134',1,'they are very caring. It was quick also and easy. Everybody was nice.','2019-09-28 17:22:00.000000','544778295636544'),('524156335027940',1,'Great staff and excellent service. Attended us very quickly. Left very satisfied.','2019-10-05 02:36:46.000000','237100240304186'),('524435808197793',1,'One of the best services i’ve ever had. very fast and timely, my nurse gave me warm blankets and made sure i was very comfortable.','2020-02-13 00:40:27.000000','299216637560955'),('525396104653197',1,'everyone was great and very attentive to my needs and. concerns. Great bedside manners.','2019-02-01 04:59:40.000000','1787364321589026'),('527251481072689',1,NULL,'2018-04-27 12:11:23.000000','544778295636544'),('529847107664538',1,'This was by far thee BEST emergency room I have ever visited. The hospitality is exceptional, and Dr. Chowdhury listened first, and made sure I understood his reasoning. The Rad Tech (Nanci) along with Nurse Steve acted quickly and made us and our comfort a priority. The Registration nurse didnt overwhelm us with billing and insurance at any momenrt during our visit. I wish this Doc had a practice I would most definitely make him my PCP.','2020-03-14 01:33:32.000000','1608991329419166'),('530405737698953',1,'The staff here are amazing!! The wait was extremely short and my entire visit wasn\'t long either! Signature Care Will be my first option for care! Great job!!','2019-08-31 19:30:02.000000','1787364321589026'),('532858530497315',0,'This place takes cash or Blue Cross only. They will not treat you if you have any form of Medicare or Medicaid. Fancy looking but discriminatory!','2017-08-25 05:50:58.000000','1698192877146046'),('534518303680019',1,NULL,'2016-10-20 14:07:02.000000','544778295636544'),('535631750294040',1,'Thank you Signature Care and all your staff for taking good care of my brother in law and going the extra mile for him and again thank you Dr. Ding , Amy front desk and RN Chris I appreciate the work you do for all patients that come here .Ms.Semetria M.Gary family of patient Floyd N. Williams again thank you for taking good care of him and making his stay comfortable Ms.Michelle Jackson family of patient Floyd N.Williams','2019-04-27 17:33:10.000000','1609539722669429'),('536276163464772',1,'I love this place, they\'re great! I came to this place with a spider bite and they were so helpful!','2017-03-29 03:33:22.000000','326347177710316'),('539196049917281',1,'Quick, great nurse Manny Guerro and great Dr. Osiecki.','2019-01-19 16:55:49.000000','237100240304186'),('539279856604843',1,'I had a very pleasant and professional experience. My nurse Manny was very attentive and tried to make sure that he was being as gentle as possible. Dr. Osiecki was very nice and kept me at ease while she stitched me up.','2019-06-08 21:18:41.000000','237100240304186'),('541049543031935',1,NULL,'2017-01-17 17:26:40.000000','544778295636544'),('541633536789206',1,'The facility is very clean and the care team was on point. Everyone was very friendly, nice, and caring.','2020-02-25 18:29:34.000000','829264323932850'),('542291182908984',1,'This is a good place to go in terms of emergency care. The nurses are well trained and kind','2016-10-28 19:51:12.000000','544778295636544'),('542806676483677',1,'Great experience for my friend \nI liked every single employee who helped her. \nMs Lynn \nMr Daniel \nMs Tanishia\nAnd Dr Henderson','2019-10-28 02:18:09.000000','461782867645453'),('542939162908407',1,'Very good care I had today thank u so much for all the attention everyone put into me today','2019-07-10 22:09:55.000000','251751275488925'),('544673356371740',1,'very gud I would recommend this place to everybody staff realli nice n helpful','2019-11-25 13:48:56.000000','1609539722669429'),('546384605789442',1,NULL,'2017-08-13 22:53:24.000000','1787364321589026'),('548970578889217',1,NULL,'2017-03-25 15:42:07.000000','1609539722669429'),('549147865618305',1,'Great hospitality and immediate care id give this hospital a 10 out of 10','2019-05-06 23:54:48.000000','251751275488925'),('549936779168459',1,'Tanishia was very kind and welcoming and was able to help me out as soon as possible.','2019-11-06 06:24:15.000000','461782867645453'),('551706002323202',1,'very quick and clean , way better than waiting for post hospital','2019-10-04 05:56:44.000000','251751275488925'),('554889658423760',1,'nurses dawn, norma, and raj all took very good care and concern for me, dr yusuf helped me get better and saved me from an excruciating illness. the entire staff is wonderful and considerate and works really hard. this really is the best e.r.','2019-12-20 21:27:31.000000','1608991329419166'),('555571968502023',1,'My sister was admitted today and I forgot to mention nurse Blake. Thanks Blake!','2020-02-11 01:00:28.000000','1648645701907657'),('555657358211245',1,'Great Er!','2018-08-11 18:03:32.000000','544778295636544'),('558402511695356',1,'awesome staff!! I was seen by Dr. alcantar, nurse Lisa V, and receptionist Sita and they were all absolutely lovely!! I was treated quickly and out soon!','2020-03-04 02:55:28.000000','596022027480375'),('559671767983485',1,'They have nice service and Jocelyn,alvean, and thuy are nice workers.','2020-02-22 22:22:56.000000','167959367441528'),('560400791082761',1,'This Emergency Care center is great!! they are very fast and efficient...! They answer any and all questions with much information.. We were in and out in about an hour! Dr. Garcia was very nice and sweet... any future emergencies I have, i will be coming back here!!','2018-08-25 19:07:23.000000','1787364321589026'),('561155178076829',1,'Very nice and kind service from Jose and Patricia. Very fast.','2020-02-09 20:52:29.000000','167959367441528'),('566747387086317',1,'everyone was very kind. excellent services','2019-01-02 07:33:49.000000','544778295636544'),('567065157044803',1,'Everything was good...my first time being here and everyone was so friendly and polite..preethy was very helpful','2017-02-01 15:57:47.000000','544778295636544'),('567236893850856',1,'Wonderful staff didn’t take long to get into the back and be seen by the doctor helped make me feel a lot better speedy tests and excellent service best emergency center I’ve ever been to','2019-12-16 17:50:05.000000','251751275488925'),('570350396710431',1,'I only place i know they will take care of you very well! Amazing staff','2018-12-08 16:35:56.000000','1787364321589026'),('577540269470675',1,'Everyone here is super nice and friendly! Fast service! Takes very good care of their patients !','2020-01-12 04:15:34.000000','596022027480375'),('577549616357000',1,'I had the best and quickest staff ever today and they are wonderful they got me in and helped me with my pain and made me very comfortable i appreciate my great helpers today thank you to Dr.Jaber. miss Alvean A my nurse ❤❤shes and angel and Marcus B very funny guy and miss vanessa g at Signature care thank yoh guys so much❤❤❤💛💙💜💚','2019-12-10 20:15:30.000000','167959367441528'),('578063463109956',1,'jennifer and tina were super sweet, lauren gave me water and ricardo made it super entertaining. dr lingan thank you so much for all you do','2020-06-10 22:06:21.000000','1698192877146046'),('581693108894979',1,'Dr sylvester francis,Craigslist M.D. THE NURSES trully, shelli, and the front desk ladies Amboree, and Darnisha, are a very warm, effective, and most polite group of professional care that I must recomend to every one!! This 24 signature care emergency center helped me and the diagnostic was rigth on point.. thank you !!','2017-01-28 17:45:57.000000','544778295636544'),('582219842295059',1,'Dr. Lindsay, Amy, and Niki RN made me feel very comfortable and my nurse explained explained all my procedures that would done.','2019-03-12 00:50:01.000000','1609539722669429'),('583410505925579',1,'Danny ,Kayla and ,Dr Nguyen were so polite and so very patient with me they offered me blankets cause it\'s cold they answered all of my questions very thoroughly to were I could understand it was a very nice experience I totally recommend Signature Care to anybody that doesn\'t feel well also Alexis Jones my ultrasound technician that had to drive from her location all the way over here just to help me with my situation she took pictures and explained them to me as well very nice and very polite I felt very comfortable I\'ve been here since this morning and haven\'t had any complaints thank you all for your help 😊','2020-06-03 20:12:27.000000','829264323932850'),('584922335575625',1,'Dr. Zhen was super informative and very nice. The nurses, Daniel and Fatima were very thorough and patient and both had great personalities to make the visit less stressful. Also very attentive front desk, Tanishia made the check in and out process quick and easy and was very helpful with any questions we had. Definitely will come back with any other emergencies.','2019-12-09 05:57:32.000000','461782867645453'),('586572028603121',1,'I reccomend this location staff is very friendly and super clean location. Samantha greeted me once I walked in with a friendly smile. Nichole was my nurse and she was very nice and checked in on me making sure all my needs were met. Dustin and Dr. Souman was awesome as well..','2020-03-01 01:10:25.000000','1609539722669429'),('586823715250644',1,'First of all, we want to thank Dr. Wang, he has compassion for patients. I will highly recommend 24 hour emergency room in mission bend and sugar land. Dr Wang and his team will go overboard for the health of the patients, #1 priority. the night shift the registered nurse Zinaida very knowledgeable and patience. Also, Dr. Daher(cardiologist) he was very straight forward with the good news. my family and I are very grateful for all the attentions that were provided. Best Regards, Oscar Gonzalez','2020-03-01 19:52:09.000000','544778295636544'),('586873728838302',1,'Samantha, Christine M, Bryan D, Brandon W, Dr. Chuckwuma','2020-02-26 03:44:01.000000','1609539722669429'),('587772472001082',1,'Very speedy process. I was in and out! Maya the receptionist was really nice!','2019-12-31 21:35:41.000000','829264323932850'),('588607811695886',1,'Great service thanks the doctor Thomas Sarah g geo any Laura and tanishia','2020-01-17 06:42:39.000000','461782867645453'),('591521235033244',1,'It was amazing \nDr.Dendy\nNurse:Nicole G Brandon W\nReg:Vanessa G \nRad:Dustin H \nTech:Andrea','2019-12-22 05:03:47.000000','1609539722669429'),('592039621643698',1,'Excellent staff. Fast service. Nicole and Chris were wonderful.','2020-01-23 04:15:28.000000','1609539722669429'),('595841458013501',1,'Super friendly staff, and helpful and attentive to clients','2020-06-12 18:06:47.000000','1698192877146046'),('596472691006135',1,'Highly recommend \nStaff is helpful and knowledgeable. Most importantly the Doctor is patient and kind.','2020-06-18 18:03:41.000000','237100240304186'),('598995937183527',1,'So helpful! I was in and out. No wait and the doctors were super helpful, patient, and kind! I would come back here another time!!','2017-04-09 19:53:07.000000','326347177710316'),('599758664111407',1,'It was a nice clean place very nave people front lady was great mrs. Tanishia','2019-12-20 04:47:15.000000','461782867645453'),('601395277318574',1,'This is our 2-3rd time coming and its always pretty smooth. Disclaimer, to get the proper care and assistance its a must you have insurance. Hold on wait, good insurance, if not then you\'ll be wasting your time. Unless you just want a doctors note. Urgent care is never really packed so it\'s never an issue getting to a bed and diagnosed. Mos def suggest this spot for all ages! Maya J was the best receptionist','2020-01-23 15:28:09.000000','829264323932850'),('602450323573343',1,'They are amazing treated me great. \nDr. O’Malley\nAlvean-Nurse\nMarcus-Radiology\nJasmine-Registration','2019-05-14 20:59:19.000000','167959367441528'),('603475350477621',1,'🙌🏼💕Amazing place. Friendly staff and Dr. Short wait time. Beautiful facility. First time going and highly recommend. 👍🏼⭐️⭐️⭐️⭐️⭐️','2020-01-10 06:34:33.000000','596022027480375'),('606491476489216',1,'Great patient care. I was seen promptly, there wasn’t a long wait. The doctor was awesome with explaining my diagnosis and care. Everyone was friendly and caring I would recommend all my friends and family!','2019-03-24 01:52:36.000000','829264323932850'),('606709450067067',1,'Great service, everyone friendly, service was quick. the procedure was explained in great detail .. 5star service.. Thank you, Dr Iheme, Robert H, Andrea S Kat K and Melissa E','2019-11-16 05:42:22.000000','167959367441528'),('607188823194995',1,'Excelente \n\nRegistration vy \nDoctor Thomas \nEr james \nNurse Tamny / Fahme \nRadiology Nancy \n\nThanks again !','2020-03-10 17:55:07.000000','461782867645453'),('607589559681204',1,'Loved Loved Loved This Location , They Were Caring & Quick Thanks 🙌🏿💯','2019-01-14 19:20:15.000000','829264323932850'),('608134696410164',1,'Great experience, Lucas, Kim, Eric, tks bunches','2020-02-17 21:20:34.000000','235046800697531'),('609427596482668',1,'The nurses and doctors were really helpful and got me in quickly. Took care of my injury. Highly recommend for everyone to come here.','2020-01-08 18:27:39.000000','299216637560955'),('609973956450116',1,'One of the best experience by far with Dr. Thomas, Nurse Sarah is such a sweetheart fool very good care of my needs. Tarnishia what very helpful, doing the job of three people and still a very very nice person.','2020-01-17 08:46:07.000000','461782867645453'),('611950565993296',1,'They took real good care of my wife here and made sure I was doing great as well. hands down the receptionist Keera was a major help.','2019-07-04 13:52:57.000000','544778295636544'),('613921019067296',1,'great hospitality, very informative!\nmy wife saw Dr singla and nurse hamzah both were very patient with all of out questions and concerns! Leslie at the front desk is nice and inviting!','2019-01-13 20:59:46.000000','1608991329419166'),('615910015606789',1,'I recommend anyone go to Signature care. They are great, it was like family was taking care of my daughter and I. I am forever grateful for the services rendered. If you\'re looking for immediate Care no wait time, great staff definitely go to Signature Care. 💙💙💙','2019-09-26 16:52:34.000000','251751275488925'),('616081975473279',1,'My son needed an x ray didn\'t want to spend all night in a hospital. Decided to try this place out it was awesome! Got checked in took to the back answered some question got an X-ray and results everyone was awesome and friendly everything went smoothly no complaints I highly recommend this place was on and out in less then an hr! Thank you for your services!','2017-07-18 16:08:25.000000','1698192877146046'),('619470905650145',1,'Great people and you get helped very fast . JD, Sam &Nydia','2020-07-28 20:30:32.000000','105589317817643'),('621896331745268',1,'They offered covid testing, were very friendly and knowledgeable. Chris, Marty, Kay, Tina and Katherine and Dr. Rose (hope I didn’t forget any!) were all helpful and kind.','2020-06-12 17:47:13.000000','1698192877146046'),('622068541712885',1,'5 stars\nThis is one of the best emergency centers thus far in Killeen Texas I was seen immediately and was treated right away, once they figured out what was wrong. The staff is very nice Brittany, Calli, Amy, Alexa, Leung, and Thai made me feel welcomed and safe. I recommend this emergency center to anyone in the area!!!!','2020-02-27 16:58:11.000000','544778295636544'),('622511354795809',1,'The employee at front desk was very. .very professional. ...ms. airianna and the nurse mr.Mark was Awesome could relate too my daughter\'s PAIN. ..Dr vakey was awesome as well right on point....would refer ALWAYS','2016-09-21 16:27:27.000000','1765121397101399'),('623098904884524',1,'they were good and quick and very professional thank you to . Nancy,Manny,Randy,Rachel,Pete, Dr Patel','2019-09-19 03:07:42.000000','544778295636544'),('623103014884113',1,'They did a good job and they were fast and very professional thank you to . Nancy,Manny,Randy,Rachel,Pete,Dr. Patel','2019-09-19 03:15:57.000000','237100240304186'),('623707538250629',1,'Everyone was absolutely patient and provided us with snacks.','2020-06-15 14:23:31.000000','1698192877146046'),('627268554498798',1,'Alvean And Patricia Were So Nice And Made Me Feel Welcomed. They Got Me In Right Away And Made Me Want To Come Back If I Have Any Health Issues In The Future. I Definitely Recommend This Emergency Care. All Of The Workers A Very Professional And Easy To Talk To.','2020-01-30 16:12:19.000000','167959367441528'),('629042511252340',1,'Quick, Friendly Service.','2020-03-28 23:33:43.000000','596022027480375'),('629939194228337',1,'Thank you Dr. Soumon, Vanessa, RN Denise, and Chris for all you do\n Please be safe and take precaution. My prayers goes out to you for being first responders. You all were courteous, professional, emphatic, informative, and down right positive. Once again, thank you! 🙏🏽🕊😇🕊🙏🏽','2020-04-14 03:18:50.000000','167959367441528'),('630367004127336',1,'The waiting time to be called back was not long and I’m very thankful to have been see fast.','2019-07-07 22:49:25.000000','251751275488925'),('630518371036177',1,'my daughter had fever, chills and body ache','2020-01-31 13:56:44.000000','235046800697531'),('630757004374587',1,'Efficient, great customer service and thorough','2020-02-22 19:18:23.000000','544778295636544'),('632066164034128',1,'muy buen servicio, todo muy limpio y mucha atención. El Dr. Henderson y la enfermera Alvean y la señorita Patricia muy atentos. Muchísimas gracias por todo!','2020-02-08 13:02:51.000000','167959367441528'),('633688677455682',1,'Nurse Alvean and Patricia provided great customer service as always. Always friendly, fast and on point','2020-01-30 14:13:53.000000','167959367441528'),('634328107017764',1,'My mom brought me after volleyball practice because I hurt my foot and needed it frayed. They brought me a wheelchair and immediately took me to a room where I was given a nice warm blanket, something to drink and snacks. Everyone was super nice and made me feel really comfortable..','2019-02-28 05:37:30.000000','251751275488925'),('634564880704434',1,'This place is awesome! The nurses Irving and Leslie kept me comfortable during my visit here. I will be letting my friends, and family know about this place. ☺️','2020-02-12 02:09:37.000000','829264323932850'),('636512533512107',1,'very fast and very friendly staff. I would recommend to anybody that needs good fast healthcare','2019-07-11 16:08:13.000000','237100240304186'),('636512543512106',1,'very fast and very friendly staff. I would recommend to anybody that needs good fast healthcare','2019-07-11 16:08:13.000000','237100240304186'),('638993063208152',1,'Dr. Nilang Patel was a very awesome and attentive with my dad when we brought him in. Also his nurse Cris was very attentive at all times! We loved the experience here. The receptionist they have Amy is very sweet makes you feel at home. Love this place.','2019-03-21 05:34:08.000000','1648645701907657'),('639006046621073',1,'Amazing I love them they make sure you’re not scared10/10 ⭐️⭐️⭐️⭐️⭐️','2019-08-30 19:15:28.000000','461782867645453'),('645382085857954',1,'My visit here was, Tory the receptionist was very sweet. If I ever need an er this is where I\'ll go!!','2017-01-25 05:28:29.000000','1608991329419166'),('648124699278740',1,'They took great care of my and my mom','2020-02-20 20:11:05.000000','235046800697531'),('648594105880443',1,'Very clean facility, with extremally nice staff \nRN: Mollie\nRad: Eric\nReg:Tobie','2019-12-29 08:36:12.000000','235046800697531'),('649642248741666',1,'excellent, fast accurate service.. wouldn\'t go anywhere else.\nand a 2 day follow up call. Thank you ladies!','2016-04-28 21:56:28.000000','544778295636544'),('649800552099908',1,'I had a great experience by Dr. Patel, Amy, josh and Agnes','2019-05-07 01:38:44.000000','1608991329419166'),('650261629151537',1,'Vanessa,O\'Malley,Jennifer,and Andrea were very helpful and welcoming.','2020-05-03 09:46:50.000000','167959367441528'),('650866732397161',1,'Elida, Denise and alvean attended me very well! Highly recommended','2020-02-20 15:35:45.000000','167959367441528'),('656562268035238',1,'I have not ever been there but my phone says I have go figure','2017-03-27 15:21:33.000000','1609539722669429'),('657015945046581',1,'The whole staff at this location is wonderful! I will tell all my friends and family to come here! My nurse Chris C and Dr Joe are wonderful!','2020-03-07 00:44:09.000000','1608991329419166'),('657032704844500',1,'alvean, Jordan, Lisa they were totally awesome to me.. I was scared at first because of everything.. but everyone form check in to check out was great.','2020-05-29 12:56:23.000000','167959367441528'),('657960904569983',1,'Wonderful staff, minimal paperwork and wait time. Aside from my pain which was treated immediately... this was an Overall great experience!','2016-02-21 03:12:49.000000','544778295636544'),('658247294571407',1,NULL,'2017-07-25 22:08:28.000000','326347177710316'),('658813344848519',1,'Great service was provided, Dr Els Becker was my doctor and Lauren Mollard was the assistant. Would totally recommend coming here!','2020-06-09 20:56:35.000000','544778295636544'),('661131351282328',1,'Magali and Rachel were very helpful and informative super nice and easy to work with!','2020-07-22 19:21:31.000000','237100240304186'),('662840037594809',1,'great experience\nvery impressed..wilh\nstaff...\nThuy. An was great\nDr. Harjai was very informative\nJessica. was very mindful of the pain during xray...\nJessica\nwas great too!\nalvean nurse was great!','2020-04-09 15:59:28.000000','167959367441528'),('667109603671938',1,'the dr. and staff at ignature care were great. I was being seen for extreme swollen knee pain. I was taken care of immediately. I would recommend the place for anyone needing emergency care. the whole staff was professional and courteous. great job guys','2016-06-17 12:21:47.000000','544778295636544'),('672273003269965',1,'EXCELENTE servicio MUY BUEN DOCTOR Y ENFERMEROS BANCROFT, KRYSTAL, LORENA MUY AMABLE TODO EL PERSONAL!','2019-09-27 14:32:16.000000','596022027480375'),('674789396701965',1,'Great place to get tested','2020-06-10 21:40:16.000000','544778295636544'),('675455556644489',1,'Favorite emergency room. The employees will take good care of Callie is the best','2020-06-21 19:55:57.000000','251751275488925'),('675885999463315',1,'They were wonderful everyone was so helpful and polite! We were in and out in no time. Thank you Courtney S.','2017-12-14 06:00:00.000000','1787364321589026'),('677004322721639',1,'Dr.souman was very thorough and very gentle with helping my son get something out of his nose the nurse cris was super sweet and Amy was also very helpful would recommend to anyone!','2019-04-19 01:13:42.000000','1608991329419166'),('679337145786456',1,'Awesome service, very quick! Everyone is so welcoming, especially Dyveliz and Kim at the front!','2018-03-21 22:34:28.000000','326347177710316'),('680587622311965',1,'I went in with a fever and a bad cough. I had never been here before and they took very good care of me.','2018-07-08 03:34:43.000000','544778295636544'),('680898795784499',1,'I had an awesome experience at the Stafford location with Dr. Hehman, Nurses Shawn and Nichole F, ER Tech Staci, RAD Tech Sunny, and Reg Valinceia!!! Highly recommend this place if you’re feeling ill!','2020-03-02 20:14:01.000000','1787364321589026'),('682590255452948',1,'Thank you Alexis, Jacob and JR for excellent care.','2018-06-22 23:06:25.000000','326347177710316'),('682737702181486',1,'They were friendly and quick.','2019-04-21 16:27:13.000000','544778295636544'),('683905239084312',1,'Great staff, no wait time!! \nthanks yall!!\nDr. Smith, Jordan, Mildred and Olivia!!! 😊','2020-02-22 01:04:19.000000','1765121397101399'),('684179302056018',1,'Quick wait time as well. Allison, Kim, and Dr. Huerta were very friendly informative!!!!','2019-07-19 09:36:25.000000','596022027480375'),('684714498574814',1,'Exelent care. I came in with back pain and they found out i was having heart trouble as well. Inow knoweverythingthatis wrong and my options to treat it all. It was also all done on site making myinsurance have to pay allbut my $100 deductable. Very good service and caring staff.','2017-08-08 21:34:36.000000','1698192877146046'),('685157055192668',1,'Great service and clean facility. The nurses were accommodating and very attentive. The doctor, she was very informative and caring.','2017-09-23 10:14:39.000000','544778295636544'),('686325581712986',1,'Best care ever! Thanks Dr. Faig, Nurse Laura, Radiology Tech Jacque, and Registration Helper Mercy ! :) \n-Alex','2017-05-17 23:06:16.000000','1608991329419166'),('688182141627808',1,'Dr Garcia , Andrew (nurse) , raven (registration) Gustavo (radiology) & Ellen (er tech) \n\nWere all helpful and concerned about my issuing being resolved','2019-06-25 01:00:58.000000','1787364321589026'),('694451837750379',1,'These nurses and staff was awesome! I got Lisa and Andrew, they were amazing. Made me feel comforted at a bad time','2019-06-28 20:21:00.000000','596022027480375'),('695157177661899',1,'This was the easiest urgent care visit from start to finish I’ve ever had. The nurses and doctors were very knowledgeable and friendly. Did not feel rushed and took their time to really get to the bottom of the issue. If I ever have an issue again I will be coming back but hopefully I won’t have to.','2019-10-16 22:43:28.000000','251751275488925'),('696762474016962',1,'Had a great experience with Cynthia and dr.hehman and Blake','2017-09-02 14:03:34.000000','1765121397101399'),('699873580582009',1,'As a continuous patient with them I\'ve always had good experience. Everyone (Dr. Miller, Karen, Delicia, and John) took care of me and were very patient with me when I had questions and answered them professionally. Dr. Miller and Karen was very considerable with the issues I had and explained it so well. I\'m very grateful to be their patient.\nDelicia, the receptionist, was very helpful with questions I had and she was quick with her answers.','2020-05-21 13:28:54.000000','544778295636544'),('701203060264376',1,'It never fails they always empress me at this urgent care facility. I\'ve been to a few others but I love the service at this location. Hida at the front desk was extremely helpful and informative. The rest staff go me in and out fast and better','2017-01-04 10:53:39.000000','544778295636544'),('701817643500529',1,'When you bring a x\\sick child here late in the middle of the night and they didn\'t take your insurance they was still willing to lean a helping hand to help you out so the child can sleep at ease at night and so can I. They always kind hearted and very understanding of my situation and I am always so Thankful for them at the time of my Visited. I couldn\'t asked for a better ER in the area that\'s closed to home for me . Such a great team May God Blessed everyone and once again Thank you. OH by the way Courtney you did your thing at the front desk . Thanks','2018-01-15 19:54:10.000000','1787364321589026'),('701989053703494',1,'Quintessa was awesome!!! so helpful.','2020-05-23 15:23:57.000000','251751275488925'),('703559530041698',1,'very well educated staff. very friendly VERY CLEAN','2019-02-24 22:03:28.000000','326347177710316'),('704126233728501',1,'Alvean \nJoscelyn\nTraevis I would highly recommend this place','2020-02-05 22:25:29.000000','167959367441528'),('704787499882348',1,'The energy in this place was incredible, they are very fast courteous, and kind!','2017-08-28 02:53:33.000000','1787364321589026'),('705174873267214',1,'Best emergency room care experience in 15 years in Houston. The staff is amazing, highly recommend this location.','2019-08-07 12:56:19.000000','1787364321589026'),('705753789766664',1,'I went here last weekend to bring my husband and they treated him SO GOOD I loved how theu do their steps. They welcome u very generously they have snack table and drinks /coffee/water .. makes u feel right at home. Very VERY CLEAN areas very organized loved it. And when we were leaving they didn\'t rush us out and educated us on everything we needed to know to heal his wounds. I loved this place so much .. my mother was feeling so sick last night so I due to how we were treated last time I decided to bring her here. I loved it and will be coming back if needed. Thanks to the staff !! My mother is feeling great and she loved her stay','2017-08-25 04:09:05.000000','326347177710316'),('706606289702243',1,'Excellent, great atmosphere.... Took my pain away.. Very attentive... Compassionate staff.. Thank you guys...','2016-05-10 02:45:58.000000','544778295636544'),('706809683018060',1,'I was in and out in less than an hour. Great facility and the staff was very nice.','2016-02-13 17:10:22.000000','544778295636544'),('710158612699554',1,'This place was awesome. Service was great, we were in and out and the customer service was excellent. Airianna was very attentive and kind. Dr. Thomas was very knowledgeable and gentle. Ms. Karen was very patient and had awesome hospitality.','2018-08-09 21:18:40.000000','1765121397101399'),('712058752580606',1,'Amazing experience!!! Entire staff was awesome as always! Dee and Keaire were wonderful at registration! Dr Singla, Gina, And Norma took great care of my daughter! I will always come to this ER when my family and I need it!','2019-07-17 23:31:24.000000','1608991329419166'),('713300682400843',1,'The staff was amazing! The Drs were awesome!. Everyone made sure that I was taken care of... I didnt expect the diagnoses (pneumonia) that I got but the Dr explained my options and what needed to be done... and took great care of me. I recommend this place and give it 5stars! Signature Care ER is a fine example of how ALL emergency rooms should be and treat patients. Thank you Signature Emergency!!!','2019-03-02 15:15:08.000000','1609539722669429'),('714103035712109',1,'Had a very good experience! Robin so nice & sweet as always. And my nurse Billy explained everything calm. Didn’t feel like I was been rushed as I would at different hospitals!','2019-06-11 02:13:25.000000','299216637560955'),('714477005620671',1,'They was very courteous and the doctor explained what I need to do','2019-03-27 19:10:56.000000','251751275488925'),('714761792214907',1,'This has been the best emergency experience I have ever had! And I never say this, I usually have the worst experiences. They took me in right away, they weren’t worried about insirance or filling out paperwork. The staff was really nice and very helpful to my needs. I had all my testing done here without having to wait or be sent elsewhere. And I got my results the same day. The doctor as well was very detailed, he took his time and wasnt rushing me like most doctors do. The staff here cares and they want to make you feel better. I highly recommend it here. This will definitely be my to go urgent care when needed, for myself and my family.','2018-08-11 03:22:34.000000','1608991329419166'),('719255928485716',1,'Love it here ❤️ Great facility!! Friendly staff','2019-10-17 05:03:47.000000','1787364321589026'),('720190135176032',1,'This place is wonderful. Maya was very kind and friendly as soon as we walkes through the door. John came to help me out of the car with a bjg smile. Kristina came with a warm and friendly smile as well. Dr. Ortiz was amazing and ao friendly and down to earth. Thank you Signature Care dor treating me like a queen when I needes it.','2020-01-17 15:19:37.000000','829264323932850'),('721419318281437',1,'They are friendly and fast great experience','2019-09-16 01:29:25.000000','544778295636544'),('721457398190292',1,NULL,'2018-04-01 21:24:02.000000','1787364321589026'),('721969201584217',1,'I was so impressed with SignatureCare Emergency Center at The Heights. They were kind, compassionate, efficient, and just simply everything I could hope for in medical care. I highly recommend them for minor emergency treatment, and they\'re open 24 hours.','2019-09-14 14:10:47.000000','1609539722669429'),('722207188342716',1,'Had a great experience at this Location, anybody in the area looking for a great team of individuals i highly recommend! All guidelines are being followed!','2020-08-02 16:08:59.000000','326347177710316'),('724619281688285',1,'Went in for a COVID-19 test on July 2. Made the appointment on line and was in and out in less than an hour. Very friendly staff.','2020-07-03 21:02:49.000000','104213804456471'),('724630527897809',1,'Ashley B, John, Matt and Dr Simmons were great with my four month old daughter. They were very thorough, caring, and compassionate. In and out in less than 45 minutes. I would trust SignatureCare with any of my family members.','2018-11-15 07:28:11.000000','299216637560955'),('730233604036154',1,'Very fast and friendly and caring.','2018-11-26 03:22:30.000000','544778295636544'),('730298314068182',1,'Yesterday, I was sent to Signature from my dr\'s office! I had to stay over night, & the staff was AWESOME!! Dr. Simmons took Awesome care of me last night, & Dr. Curtis did today!! Robin, got me registered & only had to wait, Maybe 5 minutes to get into a room!! I\'m a hard stick for bloodwork & IV\'s, but Courtney, & Billy had me cracking up!! They know that you\'re not feeling good, but at the same time the care that they provide is Wonderful!! Today, I had John & Matt for my nurses & they stayed on top of everything!! A great BIG thank you, to all of you for the care that I received!!','2019-05-08 00:58:54.000000','299216637560955'),('730964304090860',1,'when I walk in everybody was excellent the doctors and nurses everything it was a accident job they did and yes I will recommend somebody else to go there they\'re friendly','2019-11-06 22:25:34.000000','251751275488925'),('733117483719115',1,NULL,'2017-06-02 06:35:25.000000','1787364321589026'),('733256147481056',1,'Every one was awesome Sindy checked me in fast , Dr Sylvester , Amelia , Ali and Fatima made me feel comfortable during this pandemic . Definitely would come back to get treated','2020-04-30 02:35:53.000000','544778295636544'),('735976050089021',1,'Olivia was very helpful as soon as I had first walked in. Everyone was genuinely concerned and taken care of me to the point if going through everything that could possibly be wrong with me. Very professional staff. Showed genuine concern. The best experience I\'ve had being in an emergency care or hospital.','2017-03-16 01:08:49.000000','1765121397101399'),('736013246891603',1,'They are so helpful and nice , I would definitely come back when in need of care , thank y’all so much for everything y’all have done .. Jennifer D , nurse Jenci , Matt','2020-01-05 16:41:40.000000','299216637560955'),('739268333077887',1,'I got there about 5:15 am and when shift changed at 6, It was so smooth and they didn’t come in asking all the same questions. The Dr and nurse came in and introduced themselves and said this is what we know and what we’re doing, did I miss anything or do you have other concerns. My daughter was with me and they went out of the way to make sure my 11 year old was comfortable as well','2018-04-24 02:09:38.000000','1787364321589026'),('744011155963804',1,'We loved every thing from the receptionist Preety, to our nurse Liz and Dr. Edwards. It was great recommend to everyone!!!','2017-01-25 16:30:08.000000','544778295636544'),('746850652781806',1,'todo estaba perfecto y bien y la señora Amy muy amable','2020-08-01 19:28:12.000000','1648645701907657'),('748964128908846',1,'excellent service, nurses very nice, Doctor very attentive, the service very fast. lab work so good. everyone was amazing! the service in general was perfect. congratulations nice people from Signature Care Emergency Center!','2019-11-04 22:36:55.000000','237100240304186'),('749213545563599',1,'Very good and knowledgeable staff Nurse Crystal and Shade were very polite as well as Dr. Leung and Angela from registration. Almost no wait time over all a really good experience.','2019-12-14 16:05:54.000000','251751275488925'),('749869128766079',1,'amazing staff members. they move quickly but they always make sure youre comfortable. first time here and i already love it','2019-07-25 16:49:22.000000','251751275488925'),('751148995228827',1,NULL,'2017-10-27 22:12:09.000000','544778295636544'),('751378885211071',1,NULL,'2016-11-09 18:28:52.000000','544778295636544'),('753789871696079',1,'Big shout out to all the staff .. everyone there is the most friendly helpful & polite people in health care .. I’m such a baby when it comes to certain things ( flu swab ) I didn’t even notice when gunner swabbed my nose !! Ty so much guys - Gunner Jennifer & mollie','2020-02-08 18:11:29.000000','235046800697531'),('753841195117093',1,'Great service .The Best Serive in Texarkana','2019-11-26 23:30:22.000000','235046800697531'),('755422468291451',1,'Wonderful experience the 2 visits I’ve had to make!! Great customer service and attention to detail. Was very confident in the treatment I received. Thank you Tiffany Davidson for the referral 😊','2019-12-13 04:01:25.000000','299216637560955'),('755502178118874',1,NULL,'2017-10-08 02:08:24.000000','1787364321589026'),('757373788082470',1,'Great service and team work.','2020-01-28 08:04:10.000000','829264323932850'),('758674517838432',1,'Great place and quick service. Nice professional people.','2018-11-17 04:20:21.000000','326347177710316'),('759127791168670',1,'They are very polite and fast','2019-08-08 12:04:44.000000','1787364321589026'),('759285224837904',1,'Very nice caring people, definitely recommend to anyone who need to see a doctor.','2020-07-27 18:17:23.000000','829264323932850'),('759472214546498',1,'Very clean Facility, Delicia was awesome, my nurse Blake was very professional and Dr. Ybarra was very thorough. To top it all off the bathrooms are super clean and the wait time was super low.','2020-01-24 15:46:23.000000','1648645701907657'),('759779591189076',1,'Natsha Has A Great Attitude!!!! And was very welcoming ❤️❤️','2019-12-09 23:26:24.000000','251751275488925'),('761902814201336',1,'Service is great they check up on you and make sure you well.','2018-08-11 16:43:45.000000','1765121397101399'),('763501324011954',1,'Had to bring two of my three kids in for treatment. The entire staff was wonderful from the moment we walked in the door. Mrs. Linda greeted us and got us in a room immediately. Amber and Christie came in and worked to get vitals and made sure we were comfortable. Dr. Carpenter did a great job of explaining things. We were in and out in no time. Great job!!!','2018-12-04 18:50:48.000000','235046800697531'),('764337333922861',1,'Everyone is friendly, helpful and makes you feel so comfortable. Extra clean as well.','2018-12-21 17:40:05.000000','596022027480375'),('768534393974605',1,'I had my test done here it’s not so bad I was more nervous than what it really is.','2020-08-01 23:03:25.000000','596022027480375'),('772004391628',1,'Been a few times and they have always been super fast and through. They take Tricare and always follow up with you the next day to see how you are feeling. I call that great customer service.','2020-01-24 19:37:43.000000','251751275488925'),('772515099789960',1,'Fast, courteous and the best care ever','2019-01-09 22:46:49.000000','235046800697531'),('779533282536884',1,'Everyone was great! Nurse Jennifer, Rad tech Gunnar and registration Courtney took very good care of me!!','2020-02-06 18:08:48.000000','235046800697531'),('780767565648194',1,'Great customer service ❤️ they made sure that i was feeling great walking out','2018-08-30 13:24:59.000000','1609539722669429'),('783037002219590',1,'I took my 3 month old in because he wasnt feeling well and they saw us immediately. Everyone was very friendly and helpful. They answered all my questions and explained everything very well. One of the best ER’s i have ever been too. Highly recommend. Thanks Charlotte and Tanishia. Thanks to all the staff!','2020-03-04 04:58:32.000000','461782867645453'),('784159582035174',1,'Best experience in an emergency room I\'ve ever had. I appreciate the staff, N Patel, Sarah, Fatima, Daniel, and Tanishia. You guys were great for both my initial visit and follow up as well. WILL DEFINITELY RETURN. Great. Fantastic. The best!','2019-11-27 02:43:37.000000','461782867645453'),('788495388199823',1,'Our experience on signaturecare was excellent and veryy clear explained about the medical situation... thank youu!!!','2019-03-03 21:15:49.000000','1698192877146046'),('789163991551104',1,'Wonderful place....service was amazing and fast ❤️Great customer service\nDr.Nguyen\nNurse:Kayla\nRadiology:Holly\nER tech: Nelson\nRegistration:Samantha','2020-01-13 03:23:51.000000','829264323932850'),('789324531478347',1,'Amazing staff! I was in and out! Everyone was very nice and helpful!!! Thank you Chantel, Dr. Thomas, Fatima and Tanishia!!!','2020-03-09 03:58:10.000000','461782867645453'),('791728057846501',1,'I arrived there around 11:30am and was out by 1:30pm. Nurse Maryann was very helpful. The staff was excellent and DR Levett was exceptional. I recommnd this ER above any other.','2018-12-31 20:59:07.000000','544778295636544'),('791846797871539',1,'Awesome and friendly they always offer a warm blanket and a remote..and Janean is great and helpful','2017-11-27 18:32:55.000000','1609539722669429'),('795235970885791',1,'It\'s never fun needing medical attention. SignatureCare Emergency Center has been amazing for our family. From the moment you walk till you leave, you are treated as the #1 priority.','2020-01-31 18:24:50.000000','235046800697531'),('798970243918937',1,'Great center very fast And friendly \nNurse Alvean \nImaging Tricia','2020-03-04 22:32:16.000000','167959367441528'),('799555860420843',1,'The front desk girls Ashley B and Tiffany were very friendly and helpful. The rest of the staff was great very fast and friendly!','2019-04-17 23:45:30.000000','299216637560955'),('801486833605255',1,'Went here 11/8/19. Shara Pham was exceptional. Very impressed!','2019-11-09 04:25:33.000000','461782867645453'),('802587553545610',1,'Great service and care given by Lorena T, Jacob, Rebecca W. And Dr. Ortiz. I will be returning!!','2019-12-22 20:31:54.000000','326347177710316'),('802961283431399',1,'Rayven answered all of my questions and seemed enthused about her job. She was very friendly and professional.','2019-07-18 05:59:47.000000','326347177710316'),('806078979897603',1,'Fast and friendly! came in for a softball injury needed xray. In and out within an hour!!','2020-02-22 18:49:17.000000','167959367441528'),('807996579668156',1,'Friendly staff, minimum wait time. Jocelyn at the front desk was sweet and helpful. Alvean was my nurse. Her attitude was great! She gave me a shot while she distracted me... that says a lot, I hate shots! The doctor explained everything to me and he was super friendly as well. Amazing staff and service. Thank you for making my difficult day a little easier guys ;)','2020-02-19 15:57:03.000000','167959367441528'),('809408019392443',1,'This is HANDS DOWN the BEST place I’ve ever been to. They were patient with my small questions, offered without being asked, answered all of my questions, topped off with such a warm environment!','2019-02-15 02:28:49.000000','544778295636544'),('813321719017681',1,'No waiting time and v good staff','2019-02-07 04:57:40.000000','1787364321589026'),('814943068878525',1,'Great experience\nReceptionist Amy, nurse Shaba, and Dr Smith are amazing!\nGreat customer service!\nThank you for all your help!','2019-03-09 06:23:42.000000','1787364321589026'),('815663205453219',1,'I had to come in for chest pains and everyone was nothing but nice and helpful, especially Keera! I feel much better and have a calm mind after leaving!','2019-02-08 03:04:21.000000','544778295636544'),('816187205477774',1,'I recommended Signature Care Emergency Center . Ashley at registration immediately got us in the computer and back . They were really on top of everything. Everyone was offered something to drink & snacks . Nurse Tammy was the bomb ! Great personality! Last but not least Doctor Curtis wouldn’t let us just go once he figured out what was wrong he keep us until my boyfriend was better ! They all checked in on us repeatedly, we never felt forgotten!','2019-12-13 03:42:23.000000','299216637560955'),('816459745526818',1,'Dr. Cavazos, Melissa E, Christine M, Gracie R, Kat K and Andrea were super helpful and I had a pleasant experience. They even have warm blankets! Melissa offered complimentary drinks and made us feel right at home. Definitely recommend!','2020-02-15 02:17:18.000000','167959367441528'),('818131225340560',1,'Was very pleased with the service I received. Karen was friendly & assisted with my paperwork with assistance from Emely! Shawn & Dr. Hehman were great! Thanks again & I will refer family & friends!','2020-03-13 03:18:40.000000','1787364321589026'),('818359498591421',0,'$39K for lackluster services. Two IV vags, bloodwork, labs, super poor treatment, madexme stay overnight and no food, got scars from IV areas. You have staff no hospital would hire, treat patients like crap, and then hill our insurance company highly exorbant fees. WTH is wrong with this place? Run people. You will get financially raped here.','2020-01-30 13:11:49.000000','461782867645453'),('819052338470872',1,'Awesome staff!\nLindsey was super kind, Amy was super nice, and Dr Datta was very helpful!','2019-06-20 01:55:33.000000','1648645701907657'),('821135434907314',1,'Tiffany did an amazing job and was very helpful in my visit to the emergency center. I was very pleased with the quick help and efficient service.','2019-04-29 04:22:22.000000','299216637560955'),('825606527943046',1,'Had an absolutely fantastic experience with signaturecare. No wait time and excellent doctors and staff. Doctor Golla, RN Fanny and Zinaida, ER tech Amelia, and Sindy in registration all went above and beyond!','2020-03-04 22:58:29.000000','544778295636544'),('826210157823701',1,'I’ve come here to the college station location a few times and the staff is always super helpful! when I entered I was greeted and helped right away by naomi! dr vakey, nurse jacob, and juan helped me figure out what was wrong and got me on my way! I recommend anyone to go there bc they help so fast and efficiently','2019-12-13 22:22:14.000000','544778295636544'),('826765244491531',1,'I 100% recommend SignatureCare. I got in quick. staff where amazing and got to the bottom of the problem. Thank you for taking care of me.','2020-03-06 01:32:40.000000','326347177710316'),('828259264266827',1,'they took great care Kristina was the best nurse!','2020-01-09 20:03:40.000000','829264323932850'),('832576513777569',1,'DR.DING, JOSEPH AND AMY WERE REALLY KIND AND HELPFUL. DEFENITELY COMING BACK.','2019-04-27 21:34:01.000000','544778295636544'),('834701806927726',1,'Todos fueron muy amables, gracias por todas sus atenciones🤗excelentes los doctores y todos los que trabajan en Signature care.Dr O Malley, Jani, Marcus, y Jocelyn. gracias!','2019-10-07 17:34:30.000000','167959367441528'),('836144590103904',1,'This was a lovely and fast stop well taken care of gives you complimentary water or soda always checks on you and make sure you are well taken care of. The environment is amazing','2019-06-02 18:42:44.000000','251751275488925'),('838878193168784',1,'Thanks to all the staff at signature care, they are very helpful and friendly. They make you feel comfortable here.','2017-12-15 23:57:16.000000','326347177710316'),('839848003135418',1,'They are really nice! Thanks Marcus, Alvean and Patricia','2020-02-06 22:52:41.000000','167959367441528'),('841975289580521',1,'brought my boyfriend in this morning for throat pain and fever and his pain was addressed immediately. lorena, brad, morgan, and dr kimball got us in and out so fast!','2019-12-31 14:35:06.000000','326347177710316'),('843864686047588',1,'The best Emergency Center in our opinion! Everyone was very kind from the moment we walked in. Sindy was so helpful and patient with us! Dr. Boester took his time to explain everything and we liked that very much. The nurses Vivieanne and Larhanda were amazing! Thank you!!!','2019-12-21 17:48:59.000000','1609539722669429'),('844113709400442',1,'Highly recommended! Nurse Dee got me in and out & the doctor took care of me!','2020-03-17 15:26:04.000000','544778295636544'),('844988069211654',1,'La Dra Ding, Amy , Dion y Agnes fueron muy amables y la atención fue excelente !','2019-05-12 01:46:04.000000','1608991329419166'),('849742495482501',1,'The staff was WONDERFUL!!! Thank you Lisa, Manny and doctor Plante for taking GREAT CARE of my babygirl Scout Sammann!! Professionals, super clean and great overall experience!!! ♥️♥️♥️','2019-12-15 22:56:48.000000','237100240304186'),('855870678112184',1,'It was excellent service and very fast, they treated me very kindly so a big shoutout to Nancy, Marcus, Randi, Theresa and Dr. miller :) overall great people and very helpful','2019-07-25 01:20:11.000000','237100240304186'),('857301671296798',1,'Very fast and friendly service we were in and out in less than hour!! All the staff was very helpful from the registration to the nurse to the doctors they were very kind!!','2019-06-25 18:28:19.000000','237100240304186'),('857719414599950',1,'Love SignatureCare. Always a quick experience and the staff is very caring. You are treated like family rather than just another patient. Will definitely recommend to family/friends. This will always be our #1 choice!','2019-07-22 00:35:55.000000','596022027480375'),('859655481143479',1,'Tabitha, Thoresa, Lisa, and Ector took very good care of us and made sure we had everything we needed.','2020-01-23 21:54:44.000000','237100240304186'),('864181747115563',1,'Great care in a timely manner and very thorough. Came in on New Year\'s Eve and even on a night like that great care was provided, definitely recommend. Very friendly too!','2017-01-02 04:02:10.000000','544778295636544'),('867058440157233',1,'the Dr and staff are real helpfull nice place and they dont take forever to get in to see a dr','2017-05-05 14:49:03.000000','544778295636544'),('871856036579275',1,'Jose y Jocelyn gracias todo muy bien','2020-01-27 21:17:39.000000','167959367441528'),('874501322742792',1,'Really fast service, and amazing care! \nDr. Miller was amazing!','2018-09-07 05:44:10.000000','1609539722669429'),('874737739567892',1,'Dr. Patel, Rollie my nurse, Natalia, and Amy were great! I will come back if necessary again!','2019-07-03 00:40:11.000000','1648645701907657'),('876801992827212',1,'Alyssa and Karen made me feel comfortable despite my nervousness behind my visit. very professional and helpful! my absolute thanks!','2020-06-25 21:28:00.000000','1787364321589026'),('877286279369070',1,'Dr.do was great and I love his energy and mercades was so cool and helping and the radiology he mad me laugh and John was cool 😎 as well I love my visit 5 stars','2020-02-02 22:16:53.000000','829264323932850'),('880241805832426',1,'Very good service , the personal is very helpful, and the time for the Tess is no too long.','2020-07-11 02:57:14.000000','544778295636544'),('883510005314404',1,'Dr. Yost and his crew RN-Karen A. Rad-Gunnar Reg-Kelly were all very friendly and caring.','2019-03-08 16:37:48.000000','235046800697531'),('885351635003465',1,'Ashley Burton, Billie Brooks, and Dr.Frame made a great team to get you treated at a timely manner and the other nurses was just as great, for there service it is amazing i highly recommend there for the care.','2018-11-14 02:34:08.000000','299216637560955'),('885583635132920',1,'Excelente atención por parte de todo el personal','2019-06-15 05:35:55.000000','1609539722669429'),('888093901563106',1,'Excellent service! The staff is very quick and helpful. I highly recommend this place to anyone needing quick care and excellent service!','2019-07-12 08:44:10.000000','237100240304186'),('888308961065',1,'I can’t say enough good things about Signature Care in the Heights. I have been injured twice and upon arriving I have been immediately seen. The staff is friendly, informative and quick. The waiting room is very nice and provides refreshments. Highly recommended.','2017-11-15 12:15:00.000000','544778295636544'),('889417281401624',1,'Love this place! Tiffany and Ashley B at the front are so quick and friendly','2019-04-10 18:37:43.000000','299216637560955'),('892319831120193',1,'Nick referred me to signature care staff to help me feel better so I took his advice and thank him so much...My experience at signature care Copperfield was amazing Tanishia was so caring and concerned with my issue she was very knowledgeable and helpful and Alexis was so friendly and helpful with a comforting smile and Kim was so friendly as well and made sure I was better and the the medication was helpful she answered all my questions with a positive attitude Nurse Tammy was very kind and careful she looked into all my concerns and made me as comfortable as possible','2019-06-13 01:35:22.000000','461782867645453'),('892445581153092',1,'very polite & informative','2019-12-04 21:45:59.000000','1609539722669429'),('892579804539893',1,'great experience need more ER like this one in Cypress best one ever professional caring loving people','2020-04-03 16:36:49.000000','167959367441528'),('893945290944786',1,'we was quickly taken care of and the staff was awesome. Thank you all.','2019-05-25 07:30:30.000000','299216637560955'),('900220923499062',1,'Medical staff doesn\'t waste time in making you feel better. I recommend signature emergency center to anybody with a medical need.','2018-06-23 12:26:31.000000','544778295636544'),('900417163484147',1,'The service and help was amazing. Very kind and caring staff and completely made me feel comfortable.','2018-01-22 15:27:45.000000','1698192877146046'),('902507220170934',1,'Care was great there...These people help great.Patricia,Alvean,Marcus...','2020-02-06 19:38:38.000000','167959367441528'),('906229783048340',1,'Their service is excellent, they are really fast and they would ask if I needed anything while I wait on my boyfriend. They also keep you updated of how much time youll be waiting on the doctor. They are really nice and fast.','2019-07-24 13:04:19.000000','544778295636544'),('906441559543656',1,'lo tratan mui bien lo recomiendo son excelentes personas y gracias a Tatiana','2018-07-13 04:59:27.000000','1609539722669429'),('909422439398717',1,'SignatureCare was great! They got my friend in and out so fast and were so nice the whole time. I haven’t been to a ER yet that has such friendly staff and actually care for you!','2019-07-17 01:08:40.000000','237100240304186'),('909883906102137',1,'Super friendly, very fast service.... everyone made me feel comfortable and I feel like I got the treatment that I needed...would recommend 100%....','2020-03-23 02:22:52.000000','1648645701907657'),('911700475879243',1,'Friendly and definitely prompt care. Got seen quick. Couldnt ask for better nurse (Manny) everything was explained in detail and completed through.','2019-06-07 17:20:58.000000','237100240304186'),('915871268748865',1,'Went in for abdominal pain of our 3 year old boy turned out he was just constipated lol. Super embarrasing but better to be safe than sorry. From receptionist down to Dr. Patel and Nurse Kim. Hands down! They are very courteous, caring, attentive and most of all very professional as soon as we walked in to that door. Dr and Nurse made sure our boy is okay and went beyond!!! He wasnt even scared. Place is very very clean and well maintained. Definitely recommend this place if yall needing emergency services, few minutes waiting time....','2019-07-25 13:34:25.000000','596022027480375'),('916829445337158',1,'Jesús and Luisa were very welcoming, My Nurses Jani and Troy were amazing Seth was great, Marcus made sure i felt comfortable. Thank you Dr Cavazoz for such great and fast treatment','2019-08-19 02:43:29.000000','167959367441528'),('921041831416043',1,NULL,'2017-07-14 05:46:24.000000','544778295636544'),('921784311341795',1,NULL,'2016-09-26 19:49:46.000000','1608991329419166'),('922606891533118',1,'Reg: Jocelyn\nNurse: Ekaterinburg\nRad:Marcus\nTech: Thuy An\n\nVery fast service!!\nWent in during Covid-ER to get stitches and was super anxious about going in during the virus. Jocelyn assured me that they take extreme cautions to make sure to eliminate spreading. And the rest of the staff followed up with providing me wonderful treatment. 5 stars for this ER!!','2020-04-12 21:18:54.000000','167959367441528'),('926676294333184',1,'Went to this place their awesome, the staff Maria,manny, Miguel, and DR. Osiecki were awesome ! Very friendly! They give off a great vibe!','2019-06-08 22:27:14.000000','237100240304186'),('929956864088222',1,'I recommend people to come to SignatureCare Emergency Center cause they see immediately and they are very hospitality and they truly care about they’re patients Marcus and Alvean are great Nurses and the Doctor was great also the whole staff is awesome','2020-03-17 22:24:56.000000','167959367441528'),('930002664124062',1,'Everyone is so nice here from Denise who help with registration. Also Nurse Debriel and another nurse was sweet and very helpful. The dotcer was awesome. They will take care of you here.','2020-04-18 14:10:32.000000','104213804456471'),('931892517187755',1,'We came in after being in a car accident and the care the whole staff provided was AMAZING! Thanks to Sita, Lisa, Brancroft, Andrew, Corey, Andy & Dr. Daniels for your extra care and being so nice and thoughtful!! Their service was extremely fast and I highly recommend them!','2019-11-08 04:12:55.000000','596022027480375'),('934660503563024',1,'Dr Richard Ybarra was very Professional and had a wealth of knowledge that he shared about different medication and the best medications to buy and not to buy over the counter and he asked questions to where and when did my symptoms start.\n Dr William O\'Malley had a wealth of knowledge and made sure I didn\'t leave until I was cured, so I would not have to come back','2019-10-10 16:28:39.000000','167959367441528'),('943729139163158',1,'I went there about a week ago and I can say the girl at the front desk robin bratcher is the best she is really nice and got me to the back ASAP so I can lay down😃thanks a lot for your help','2019-02-18 02:22:43.000000','299216637560955'),('951545671901512',1,'Wonderful experience thoughtful kind patient and caring staff Dr. Edward\'s. Nurses: Eda/Selina, Tech:, Juan, Registration: Maaz','2019-02-02 21:08:44.000000','544778295636544'),('952200288512026',1,'GREAT staff...GREAT service...Answered ALL questions!!! Dr DeWaal, Kara, Linda, Helen and Nicole made this trip tolerable! Thank y\'all!','2019-11-13 05:24:02.000000','235046800697531'),('958637937885368',1,'Very thankful. Everybody was friendly. \nThanks Tanishia','2020-03-30 00:01:46.000000','461782867645453'),('960287121153381',1,'Great service! Would recommend!','2020-07-23 18:10:45.000000','1787364321589026'),('960343069697',1,'Friendly and caring staff, quick service and felt like I wasn\'t just a dollar sign to them that they truly cared','2019-07-21 23:15:15.000000','237100240304186'),('964668507225268',1,'they are very kind and take care of business. Dr. Henderson is amazing and the nurses and radiology staff are sweet and awesome at what they do','2019-10-23 19:21:55.000000','235046800697531'),('964794067204654',1,'Professional, quick service. Great nurses and doctors. Very friendly. Quick turnaround - best experience ever. Highly recommended! You guys rock!','2019-10-08 12:36:15.000000','1609539722669429'),('965829103759688',1,'great experience! Dr. Zhen was a great listener and easy to talk to. The staff were excellent and fast. would recommend family and friends to this place.','2019-08-13 20:23:13.000000','167959367441528'),('973176665723',1,'Thank you Amy, Dana, Jordan, Marvin, Robert M. and Dr. Harjai for taking such great care of me. You are all fantastic!','2020-03-20 20:47:42.000000','167959367441528'),('974309042746539',1,'I came here on April 3. My doctor referred me to this clinic to get a catscan and X-Ray, and they also coordinated an MRI at another facility. The whole staff was caring and professional and I was very happy with the way I was treated. The facility also looked like a top notch clinic. I would not hesitate to go back to this clinic.','2018-04-27 00:44:01.000000','1765121397101399'),('976473719463791',1,'Great customer service. Front reg (donna) was great and friendly. Highly recommend this clinic. Fast and convenient.','2020-03-14 03:14:38.000000','104213804456471'),('977925202588886',1,'Jessica S was so sweet and funny she got my mom right back within minutes because she had a hurt foot! Thank you signature care for your help!','2019-12-18 18:09:48.000000','596022027480375'),('979922355687195',1,'The staff was very friendly and concerned about my issues they were also very prompt','2019-10-24 11:34:48.000000','299216637560955'),('985657248486819',1,'First time coming and all the staff is very friendly and helpful! Did not wait at all.','2020-01-11 23:33:01.000000','544778295636544'),('987661398103277',1,'They very fast and nice. Its one of the best er i been to','2018-01-31 17:16:45.000000','1787364321589026'),('988421874879668',1,'Awesome staff! Quick! Loved the care and knowledge!! Remington and Keera were Very friendly and informative! Was spot on to keep my baby girl comfortable.','2019-02-17 02:22:50.000000','326347177710316'),('988429358196555',1,'I was there today good people and very good service','2020-01-02 00:38:42.000000','829264323932850'),('988662178155297',1,'This ER is extremely clean and beautiful! Jocelyn at the front desk checked me in within minutes, and Alvean my nurse was amazing! She heard all of my concerns and related them over to Dr. Iheme. He was very quick and efficient to confirm everything with me and gave me what I needed to make me feel better!','2019-12-04 17:03:55.000000','167959367441528'),('988706054858966',1,'It is a clean facility and all the staff were professional , friendly and caring. I highly recommended it.','2020-02-21 23:38:50.000000','1648645701907657'),('989618278139588',1,'Dr. Elbescker and Lauren as well as city ambulance made my covid testing experience great. I highly recommend if you show any symptoms or have been exposed.','2020-06-09 21:00:59.000000','1698192877146046'),('990474141123126',1,'Amy\nKAT RN\nDr. Thomas\nMarcus','2019-09-11 23:48:47.000000','167959367441528'),('995884670808924',1,'Very Friendly and prompt. 5⭐️⭐️⭐️⭐️⭐️ treatment','2020-03-26 00:09:37.000000','596022027480375'),('996880897348007',1,'very timely and courteous. Thanks Tiffany D, Jenci, and courtney K!','2019-12-14 01:13:31.000000','299216637560955'),('998136690635869',1,'on the day I went they were a little busy, but the staff was very polite and extremely friendly.','2020-07-09 02:01:41.000000','251751275488925'),('999012827165217',1,'Great staff Kristina was fast and helpful','2020-01-05 23:40:52.000000','829264323932850'); /*!40000 ALTER TABLE `facebook_app_facebookreview` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `facebook_app_facebookreviewreply` -- DROP TABLE IF EXISTS `facebook_app_facebookreviewreply`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `facebook_app_facebookreviewreply` ( `id` int(11) NOT NULL AUTO_INCREMENT, `reply_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `replied_text` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_time` datetime(6) NOT NULL, `review_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `review_id` (`review_id`), CONSTRAINT `facebook_app_faceboo_review_id_562e1c27_fk_facebook_` FOREIGN KEY (`review_id`) REFERENCES `facebook_app_facebookreview` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=481 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `facebook_app_facebookreviewreply` -- LOCK TABLES `facebook_app_facebookreviewreply` WRITE; /*!40000 ALTER TABLE `facebook_app_facebookreviewreply` DISABLE KEYS */; INSERT INTO `facebook_app_facebookreviewreply` VALUES (162,'759285224837904_759724791460614','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-28 09:21:28.000000','759285224837904'),(163,'1826347840838166_1826797977459819','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-23 11:48:47.000000','1826347840838166'),(164,'10164252189410624_10164254927265624','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-22 13:05:33.000000','10164252189410624'),(165,'10207723850850111_10207724801073866','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-13 08:13:01.000000','10207723850850111'),(166,'3288472757885180_3291317327600723','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-13 08:13:27.000000','3288472757885180'),(167,'4219349361439222_4219408868099938','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-09 09:34:59.000000','4219349361439222'),(168,'3292118914145606_3295389153818582','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-06-21 11:16:34.000000','3292118914145606'),(169,'144951083853757_145944090421123','SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-06-21 11:15:20.000000','144951083853757'),(170,'583410505925579_586757252257571','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-08 11:20:11.000000','583410505925579'),(171,'10163488073535425_10163549016110425','At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-06-08 11:31:43.000000','10163488073535425'),(172,'3382282181799768_3472616112766374','When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-06-08 11:34:09.000000','3382282181799768'),(173,'10219922864336039_10220353426499824','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-08 11:34:37.000000','10219922864336039'),(174,'10112364371846735_10112771921513935','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-14 06:11:50.000000','10112364371846735'),(175,'3333193713378627_3334475379917127','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-21 11:02:40.000000','3333193713378627'),(176,'4316222701736168_4319352868089818','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-05 12:35:19.000000','4316222701736168'),(177,'10158583355559312_10158585183649312','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-01 09:46:51.000000','10158583355559312'),(178,'3427733550570518_3429669427043597','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-07-01 09:45:55.000000','3427733550570518'),(179,'10158653294616419_10158655640081419','Hello Melissa!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-30 09:15:20.000000','10158653294616419'),(180,'3879941268746148_3926589297414678','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-10 08:22:50.000000','3879941268746148'),(181,'10217549169660807_10217549231662357','Thank You for your feedback. We will be investigating this right away.','2020-05-03 21:51:56.000000','10217549169660807'),(182,'10156980508967134_10156989051232134','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-26 18:10:05.000000','10156980508967134'),(183,'3386239381407036_3388570134507294','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-22 13:29:21.000000','3386239381407036'),(184,'3094928547256848_3097195097030193','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-22 13:29:04.000000','3094928547256848'),(185,'4731564250203168_4742110845815175','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-19 11:05:35.000000','4731564250203168'),(186,'10223112943042343_10223134650425014','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your uncle. Thank you for choosing SignatureCare.','2020-07-19 11:06:28.000000','10223112943042343'),(187,'2991182421003560_2993199567468512','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-15 10:25:52.000000','2991182421003560'),(188,'1904860736356489_1906655719510324','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-12 07:35:16.000000','1904860736356489'),(189,'292222775454973_292484252095492','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-08 07:25:27.000000','292222775454973'),(190,'271715897418148_272014014055003','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-07-08 07:26:05.000000','271715897418148'),(191,'3251567101573088_3252993958097069','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that your mom is feeling better. Thank you for choosing SignatureCare!','2020-07-01 10:17:15.000000','3251567101573088'),(192,'10221395839299582_10221396764122702','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-17 06:37:41.000000','10221395839299582'),(193,'10215984436913639_10216138551526408','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-08 12:09:35.000000','10215984436913639'),(194,'10222698901003817_10222707049247518','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-29 06:20:28.000000','10222698901003817'),(195,'2601457656851269_2602521303411571','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-29 06:25:15.000000','2601457656851269'),(196,'10158314968931259_10158317792056259','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-29 06:26:48.000000','10158314968931259'),(197,'10157420912178017_10157423370518017','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-29 06:18:37.000000','10157420912178017'),(198,'3295188093835644_3298404343514019','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-29 06:17:53.000000','3295188093835644'),(199,'10157685062289958_10157688010884958','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-29 06:15:13.000000','10157685062289958'),(200,'2607789109495317_2608793229394905','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-29 06:14:34.000000','2607789109495317'),(201,'324181415373014_326205525170603','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-27 05:43:49.000000','324181415373014'),(202,'3686486954700460_3695965517085937','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-27 05:48:25.000000','3686486954700460'),(203,'10157261999011911_10157263925451911','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-22 11:49:04.000000','10157261999011911'),(204,'3134960876618642_3137353903046006','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-22 11:49:40.000000','3134960876618642'),(205,'10214036329820841_10214042597177521','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-22 11:50:08.000000','10214036329820841'),(206,'3192136484212409_3194612753964782','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-22 11:50:28.000000','3192136484212409'),(207,'2719054055017001_2719837424938664','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-22 11:50:50.000000','2719054055017001'),(208,'1721268351364943_1721463238012121','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-21 10:58:07.000000','1721268351364943'),(209,'10218742238048608_10218743473799501','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-21 10:58:59.000000','10218742238048608'),(210,'10216720483304473_10216721543730983','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-21 10:59:21.000000','10216720483304473'),(211,'10223603243456123_10223604880017036','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-21 10:59:55.000000','10223603243456123'),(212,'2860024660988790_2860324130958843','The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-21 11:00:23.000000','2860024660988790'),(213,'10158701343832996_10158702221137996','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-21 11:00:58.000000','10158701343832996'),(214,'3789311977749851_3790338247647224','At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-21 11:01:34.000000','3789311977749851'),(215,'3335981873119381_3338482176202684','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-21 11:02:08.000000','3335981873119381'),(216,'10158116606667771_10158117452952771','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-20 06:06:17.000000','10158116606667771'),(217,'10220788564378374_10220791974143616','The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-20 06:07:05.000000','10220788564378374'),(218,'3310658215621904_3311766532177739','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-19 11:07:10.000000','3310658215621904'),(219,'10163831764495367_10163837814190367','Hello Jacqueline!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-30 09:23:56.000000','10163831764495367'),(220,'3289187894427801_3291818567498067','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 10:21:00.000000','3289187894427801'),(221,'2378717905758646_2379682708995499','Hi, we have been disclosing the charges. We will be happy to bill commercial insurances or Medicare. Many insurances have agreed to waive copay. If you have none of these, then you can be tested and get an emergency room evaluation by a doctor for $175.','2020-06-18 12:51:26.000000','2378717905758646'),(222,'10158252678221609_10158252907636609','Thank you for your feedback. We will let them know. We appreciate you choosing SignatureCare!','2020-07-28 09:27:55.000000','10158252678221609'),(223,'10223208404228435_10223218722606388','The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-19 11:00:14.000000','10223208404228435'),(224,'10213474195568836_10213481574873314','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-19 10:59:52.000000','10213474195568836'),(225,'3332300430164063_3332490823478357','We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-15 10:19:44.000000','3332300430164063'),(226,'1995832927220067_1995858720550821','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-08 07:24:22.000000','1995832927220067'),(227,'2702275320017695_2702886799956547','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-07 07:04:55.000000','2702275320017695'),(228,'3670884412927350_3672263889456069','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-06 10:12:21.000000','3670884412927350'),(229,'3904062236332806_3909311805807849','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-08 12:04:55.000000','3904062236332806'),(230,'147422250229142_149346233370077','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!\n','2020-06-08 12:06:21.000000','147422250229142'),(231,'657032704844500_663314180883019','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-06-08 12:08:29.000000','657032704844500'),(232,'3174240045967333_3203649866359684','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.\n','2020-06-08 12:08:53.000000','3174240045967333'),(233,'3279392385406635_3348286238517249','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-08 12:09:25.000000','3279392385406635'),(234,'10216621667515214_10216839962132443','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-06-08 12:12:04.000000','10216621667515214'),(235,'650261629151537_675994953244871','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-06-08 12:12:57.000000','650261629151537'),(236,'3649959798352328_3651637074851267','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-30 09:33:25.000000','3649959798352328'),(237,'3299354680107368_3301736436535859','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-30 09:33:50.000000','3299354680107368'),(238,'3652667618080724_3655251384489014','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-30 09:34:27.000000','3652667618080724'),(239,'10221892665801031_10221897248395593','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-28 09:09:41.000000','10221892665801031'),(240,'1443307229174126_1443379069166942','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-26 17:19:06.000000','1443307229174126'),(241,'4524597654224533_4529115277106104','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-26 17:19:40.000000','4524597654224533'),(242,'2643687439293654_2644529065876158','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-26 17:20:10.000000','2643687439293654'),(243,'1687075514777797_1687967404688608','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-26 17:21:32.000000','1687075514777797'),(244,'3143324775746752_3146704742075422','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-07-26 17:22:47.000000','3143324775746752'),(245,'1943914855743716_1945101058958429','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-26 17:22:08.000000','1943914855743716'),(246,'1288626304858553_1364595847261598','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-14 04:45:23.000000','1288626304858553'),(247,'3175101455884614_3176502619077831','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-06-23 06:42:38.000000','3175101455884614'),(248,'3288263141218723_3290025357709168','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-16 07:03:29.000000','3288263141218723'),(249,'10158868289008203_10158870855813203','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-16 07:04:02.000000','10158868289008203'),(250,'3228622743870776_3230395523693498','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-16 07:18:07.000000','3228622743870776'),(251,'2967479990034415_2969261993189548','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-06-16 07:18:28.000000','2967479990034415'),(252,'623707538250629_624122414875808','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-16 07:19:24.000000','623707538250629'),(253,'10202601787582139_10202603429623189','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-06-16 07:19:57.000000','10202601787582139'),(254,'595841458013501_596807011250279','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-14 04:46:21.000000','595841458013501'),(255,'10222658919878849_10222676175590231','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-14 04:47:10.000000','10222658919878849'),(256,'3984143488324415_3990156161056481','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-06-14 04:47:38.000000','3984143488324415'),(257,'1698942163591464_1700326260119721','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-14 04:48:28.000000','1698942163591464'),(258,'3164683153600338_3168435183225135','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-14 04:48:55.000000','3164683153600338'),(259,'3039591516117991_3043280849082391','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-06-14 04:51:52.000000','3039591516117991'),(260,'3435626223163103_3439947619397630','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-06-14 04:52:24.000000','3435626223163103'),(261,'3111114768956212_3114919255242430','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-06-14 04:53:15.000000','3111114768956212'),(262,'2889886207789229_2893422860768897','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-14 04:53:45.000000','2889886207789229'),(263,'3020036664740660_3023721457705514','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-14 04:56:27.000000','3020036664740660'),(264,'621896331745268_622766224991612','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-06-14 04:57:12.000000','621896331745268'),(265,'1487521464761766_1488784991302080','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-06-14 04:58:12.000000','1487521464761766'),(266,'10216907895866072_10216918855020044','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-14 04:58:57.000000','10216907895866072'),(267,'10159934799849937_10159940384784937','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-14 04:59:26.000000','10159934799849937'),(268,'308342470166188_309277923405976','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-06-14 05:08:19.000000','308342470166188'),(269,'10156920923562723_10156927766242723','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-26 17:57:21.000000','10156920923562723'),(270,'2720362354875733_2720775078167794','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-20 06:43:43.000000','2720362354875733'),(271,'3585805401431028_3593198400691728','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-19 10:56:19.000000','3585805401431028'),(272,'880241805832426_881052572418016','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-12 07:27:49.000000','880241805832426'),(273,'10217037200458163_10217042647034324','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-08 07:23:21.000000','10217037200458163'),(274,'2706351196309691_2709722472639230','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 10:19:08.000000','2706351196309691'),(275,'10158259102058516_10158260912898516','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-17 06:38:23.000000','10158259102058516'),(276,'10222658073070671_10222956646574822','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-16 10:48:03.000000','10222658073070671'),(277,'674789396701965_675121590002079','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-11 10:17:53.000000','674789396701965'),(278,'3007967952585952_3009454119104002','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-11 10:09:47.000000','3007967952585952'),(279,'658813344848519_659103001486220','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-10 09:04:43.000000','658813344848519'),(280,'699873580582009_712269492675751','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-06-08 11:22:37.000000','699873580582009'),(281,'4084967864854439_4170345796316645','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-08 11:22:56.000000','4084967864854439'),(282,'3750597811681843_3838479896226967','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-08 11:23:17.000000','3750597811681843'),(283,'2666901026913807_2696310290639547','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-08 11:24:02.000000','2666901026913807'),(284,'1114809792208879_1142412339448624','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-08 11:24:38.000000','1114809792208879'),(285,'2770661433157031_2779499975606510','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-08 10:47:09.000000','2770661433157031'),(286,'2699666556956141_2699766726946124','We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-07-30 09:50:27.000000','2699666556956141'),(287,'1889173881224812_1889369837871883','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-30 09:50:47.000000','1889173881224812'),(288,'3244250585612972_3245076555530375','The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-30 09:51:13.000000','3244250585612972'),(289,'10158693492531303_10158696439336303','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-30 09:51:34.000000','10158693492531303'),(290,'3386354698061923_3386679948029398','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-29 06:46:20.000000','3386354698061923'),(291,'10207647168133469_10207647516822186','At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-29 06:46:42.000000','10207647168133469'),(292,'3292143000835913_3292568037460076','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-29 06:47:01.000000','3292143000835913'),(293,'10218413552872043_10218414603178300','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-29 06:47:59.000000','10218413552872043'),(294,'619470905650145_619744295622806','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-29 06:48:46.000000','619470905650145'),(295,'3139203469448956_3140358412666795','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-28 09:17:37.000000','3139203469448956'),(296,'10222628438009144_10222632849159420','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-28 09:17:58.000000','10222628438009144'),(297,'10221055120702481_10221056702182017','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-27 06:30:35.000000','10221055120702481'),(298,'313769050033130_314111366665565','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-27 06:54:37.000000','313769050033130'),(299,'10217797081905018_10217802325836113','Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-07-26 18:36:59.000000','10217797081905018'),(300,'1212311209105476_1213642695638994','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-26 18:37:34.000000','1212311209105476'),(301,'2399794653647522_2400073333619654','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-29 06:42:18.000000','2399794653647522'),(302,'3053549418044280_3054751611257394','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-28 09:19:18.000000','3053549418044280'),(303,'3370990739598873_3373390686025545','At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-26 18:21:15.000000','3370990739598873'),(304,'3498352513516851_3500034280015341','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-23 11:56:56.000000','3498352513516851'),(305,'2721070501327698_2722978244470257','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-23 11:56:28.000000','2721070501327698'),(306,'326526491846477_326879768477816','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-20 06:46:25.000000','326526491846477'),(307,'4131667046875098_4134520516589751','The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-16 10:29:21.000000','4131667046875098'),(308,'10158326886644424_10158328912339424','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-12 07:14:14.000000','10158326886644424'),(309,'315535526244420_316006626197310','We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-12 07:13:27.000000','315535526244420'),(310,'10222886352811033_10222899074609070','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-12 07:14:58.000000','10222886352811033'),(311,'998136690635869_998176327298572','Thanks so much!!','2020-07-09 03:30:31.000000','998136690635869'),(312,'10157108974527096_10157109922477096','Thank you😊','2020-07-09 03:31:31.000000','10157108974527096'),(313,'3706924372656772_3708383772510832','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-06 09:47:25.000000','3706924372656772'),(314,'675455556644489_675817256608319','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-22 10:10:28.000000','675455556644489'),(315,'1006947493107130_1007978193004060','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-06-21 10:45:41.000000','1006947493107130'),(316,'10222774124324152_10222798702178583','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-21 10:44:39.000000','10222774124324152'),(317,'3017249988396068_3017823071672093','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-09 06:51:49.000000','3017249988396068'),(318,'3466506433369169_3467829593236853','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-06-09 06:52:47.000000','3466506433369169'),(319,'10222774059843913_10222785811497697','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-06-08 11:04:58.000000','10222774059843913'),(320,'10217348483491761_10217395967158823','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-06-08 11:05:53.000000','10217348483491761'),(321,'1522427141295921_1530276943844274','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-06-08 11:06:58.000000','1522427141295921'),(322,'2789304901304384_2799082200326654','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-06-08 11:07:26.000000','2789304901304384'),(323,'3278604118837836_3308804325817815','When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-06-08 11:07:56.000000','3278604118837836'),(324,'10218382001361988_10218383951330736','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-29 06:41:09.000000','10218382001361988'),(325,'2743727769282496_2745770472411559','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-12 07:03:41.000000','2743727769282496'),(326,'10223147758064882_10223148803291012','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating','2020-06-22 10:14:58.000000','10223147758064882'),(327,'10220256448095170_10220257704126570','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-17 06:48:32.000000','10220256448095170'),(328,'10221757117894311_10221759159065339','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-06-17 06:49:01.000000','10221757117894311'),(329,'10223651832627765_10223655270473709','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-06-17 06:50:11.000000','10223651832627765'),(330,'10223807570361764_10223811213772847','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-17 06:50:59.000000','10223807570361764'),(331,'2606410502941310_2606907202891640','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-17 06:51:34.000000','2606410502941310'),(332,'10163728247565511_10163731669290511','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-17 06:53:04.000000','10163728247565511'),(333,'10219088732942599_10219093978753741','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-06-17 06:53:31.000000','10219088732942599'),(334,'10157889972757098_10157892397352098','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-16 10:47:46.000000','10157889972757098'),(335,'10157515066775662_10157515988340662','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-06-14 05:53:29.000000','10157515066775662'),(336,'3635062729843359_3646173888732243','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-14 05:55:37.000000','3635062729843359'),(337,'3627879090557127_3638040676207635','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-06-14 05:56:46.000000','3627879090557127'),(338,'10215729270537470_10215756437176619','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-06-14 05:57:26.000000','10215729270537470'),(339,'3309074649151420_3310424862349732','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-10 08:55:33.000000','3309074649151420'),(340,'3214695295249044_3251004748284765','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-06-09 06:53:43.000000','3214695295249044'),(341,'194630298718906_203201897861746','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-06-10 08:56:07.000000','194630298718906'),(342,'262598271597986_281843443006802','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-06-10 08:56:50.000000','262598271597986'),(343,'4120488044692867_4121104904631181','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-13 08:13:55.000000','4120488044692867'),(344,'10158312427153766_10158314751873766','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-12 07:33:02.000000','10158312427153766'),(345,'10164014585770416_10164021014305416','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 07:33:50.000000','10164014585770416'),(346,'3499691440062354_3500665883298243','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-06 10:13:46.000000','3499691440062354'),(347,'10218053429672001_10218054272893081','Hello Michael!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-30 09:20:14.000000','10218053429672001'),(348,'3414328428595050_3414521165242443','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-24 10:18:41.000000','3414328428595050'),(349,'2922475267863829_3009830239128331','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.\n','2020-06-08 11:30:45.000000','2922475267863829'),(350,'2865727116844267_3078868435530133','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-15 08:52:05.000000','2865727116844267'),(351,'10220624815757734_10221595847792928','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-15 08:52:54.000000','10220624815757734'),(352,'2876001672459738_3093365657390004','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-15 08:51:55.000000','2876001672459738'),(353,'3174276745952936_3175827085797902','Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-29 06:43:53.000000','3174276745952936'),(354,'3350969528357912_3351839768270888','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-27 06:28:43.000000','3350969528357912'),(355,'10213726311792452_10213726833045483','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-26 18:24:54.000000','10213726311792452'),(356,'10218166758744566_10218168030776366','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-26 18:25:09.000000','10218166758744566'),(357,'10109467227586988_10109472539302268','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-26 18:25:48.000000','10109467227586988'),(358,'3168321333222281_3173663186021429','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-26 18:26:38.000000','3168321333222281'),(359,'4118210074920545_4127294987345387','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-26 18:27:44.000000','4118210074920545'),(360,'3435441709800932_3441824065829363','It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-26 18:28:44.000000','3435441709800932'),(361,'1205874316428887_1208133646202954','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-26 18:29:06.000000','1205874316428887'),(362,'3161916673898425_3169946016428824','We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-07-26 18:29:41.000000','3161916673898425'),(363,'2695266304083073_2697599293849774','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-26 18:30:01.000000','2695266304083073'),(364,'10158057349721281_10158065134071281','We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-07-26 18:30:31.000000','10158057349721281'),(365,'3125125067524039_3125838437452702','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-27 05:30:55.000000','3125125067524039'),(366,'1632142816952721_1634803880019948','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-27 05:43:24.000000','1632142816952721'),(367,'10213651762646837_10213669904060361','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-27 05:42:51.000000','10213651762646837'),(368,'3259736260745854_3260430017343145','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. Thank you for your review and recommendation.','2020-07-14 07:12:35.000000','3259736260745854'),(369,'3570505406312612_3571906169505869','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-06 09:13:43.000000','3570505406312612'),(370,'10219558496947278_10219939063381201','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-10 08:06:35.000000','10219558496947278'),(371,'161639478802392_161839458782394','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-26 08:09:17.000000','161639478802392'),(372,'10158435901053718_10158437272723718','We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-22 13:07:13.000000','10158435901053718'),(373,'10157465380131915_10157470470671915','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-19 10:55:10.000000','10157465380131915'),(374,'10221407361427801_10221418314221614','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-05 12:29:23.000000','10221407361427801'),(375,'1131459450560974_1132501680456751','Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-05 12:28:46.000000','1131459450560974'),(376,'10222521186639398_10222606146083331','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-08 11:12:51.000000','10222521186639398'),(377,'1149806655366938_1179932289021041','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-08 11:13:33.000000','1149806655366938'),(378,'3716213078406064_3716446171716088','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-26 18:05:12.000000','3716213078406064'),(379,'3731068553586639_3731412583552236','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-26 18:05:28.000000','3731068553586639'),(380,'1655505214600488_1656868897797453','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-26 08:09:53.000000','1655505214600488'),(381,'3381574865257754_3390762754338965','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-26 08:10:13.000000','3381574865257754'),(382,'10159134526834617_10159142035364617','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-26 08:10:51.000000','10159134526834617'),(383,'3828068917219838_3835816263111770','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-26 08:11:09.000000','3828068917219838'),(384,'960287121153381_962149954300431','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-26 08:11:53.000000','960287121153381'),(385,'10156918456817723_10156919849237723','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-23 11:44:57.000000','10156918456817723'),(386,'2428835357415893_2429323370700425','Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-07-23 11:43:11.000000','2428835357415893'),(387,'10158393440664246_10158395169219246','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-23 11:44:37.000000','10158393440664246'),(388,'10223916381923361_10223919073270643','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-20 06:43:21.000000','10223916381923361'),(389,'10157696948499065_10157701363434065','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-19 10:58:16.000000','10157696948499065'),(390,'4354539691224679_4356219501056698','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-14 07:03:12.000000','4354539691224679'),(391,'10215251268508510_10215264807206969','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-12 07:23:10.000000','10215251268508510'),(392,'10217535990332279_10217544123495603','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-09 09:30:07.000000','10217535990332279'),(393,'1131200800600508_1131357300584858','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-07 07:05:38.000000','1131200800600508'),(394,'10158748932349284_10158749763639284','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-05 12:22:54.000000','10158748932349284'),(395,'10223534729265724_10223537961386525','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-05 12:25:41.000000','10223534729265724'),(396,'10217785478004645_10217791765561830','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-02 10:06:03.000000','10217785478004645'),(397,'876801992827212_878630979310980','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-28 12:05:19.000000','876801992827212'),(398,'10100305981992179_10100305996278549','Michele Coffield Whitebread It is not acceptable for our staff to be rude. We will be escalating this complaint to the mangers. It truly is unfortunate that you had to wait. While we feel fortunate to be able to provide you with the same-day result, we are experiencing unprecedented number of people that are seeking our help at the emergency room. Please accept our sincere apology for the unusual wait. I hope you will consider our services when this Pandemic is over so that we can have the opportunity to demonstrate our true concierge emergency care to your loved ones.','2020-06-15 03:08:28.000000','10100305981992179'),(399,'10224505435930394_10224531653865826','At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-08-10 10:34:29.000000','10224505435930394'),(400,'3670665516282281_3680746445274188','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 10:34:54.000000','3670665516282281'),(401,'4075634449176838_4093607630712853','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-10 10:35:21.000000','4075634449176838'),(402,'10222187975355850_10222223378480906','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-08-10 10:36:08.000000','10222187975355850'),(403,'10160216724614498_10160233133769498','Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 10:36:40.000000','10160216724614498'),(404,'10217670689389972_10217755311785479','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 10:37:25.000000','10217670689389972'),(405,'3303427499754284_3319479421482425','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 06:12:53.000000','3303427499754284'),(406,'3133274120060018_3153581331362630','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-10 06:14:57.000000','3133274120060018'),(407,'768534393974605_774776173350427','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-10 06:14:42.000000','768534393974605'),(408,'10220118559731872_10220191378232289','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-10 06:13:42.000000','10220118559731872'),(409,'10160128055141258_10160156948606258','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 06:10:25.000000','10160128055141258'),(410,'2598756697108337_2607728946211112','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-10 06:09:21.000000','2598756697108337'),(411,'3546564425366381_3552701458086011','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great revie','2020-08-10 11:14:25.000000','3546564425366381'),(412,'1423709221163353_1423715624496046','SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-10 08:24:23.000000','1423709221163353'),(413,'3313490225340511_3313523362003864','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 08:25:40.000000','3313490225340511'),(414,'3213012435456133_3236715496419160','Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-10 06:06:11.000000','3213012435456133'),(415,'10158538799651494_10158552508316494','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-11 06:14:05.000000','10158538799651494'),(416,'2714526375459772_2719219971657079','We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-08-11 06:15:46.000000','2714526375459772'),(417,'10116016126545890_10116047222259830','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-11 06:17:18.000000','10116016126545890'),(418,'10223557346347929_10223635332217527','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-11 06:17:50.000000','10223557346347929'),(419,'1224475391248932_1225456954484109','Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-09 18:57:23.000000','1224475391248932'),(420,'722207188342716_726882084541893','Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-09 18:52:37.000000','722207188342716'),(421,'1705790792895018_1714194602054637','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 18:53:00.000000','1705790792895018'),(422,'4072103739530489_4114278868646309','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 18:56:59.000000','4072103739530489'),(423,'3414702585206965_3440687899275100','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 18:56:38.000000','3414702585206965'),(424,'10223385180363524_10223484790173707','Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 18:48:47.000000','10223385180363524'),(425,'3318167358205234_3344069882281648','It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 18:48:16.000000','3318167358205234'),(426,'1577384152420111_1585338504958009','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-09 18:47:45.000000','1577384152420111'),(427,'2752763294945699_2760300850858610','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 18:45:54.000000','2752763294945699'),(428,'10164169505440494_10164219992310494','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-08-09 18:46:29.000000','10164169505440494'),(429,'3600585053293194_3630160460335653','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 18:39:07.000000','3600585053293194'),(430,'10223755291293256_10223769106678632','Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 18:28:42.000000','10223755291293256'),(431,'3488381071201677_3500895626616888','SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2020-08-09 18:29:56.000000','3488381071201677'),(432,'10208052940278644_10208084875557006','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-09 18:30:36.000000','10208052940278644'),(433,'1221128804918453_1226441664387167','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 10:57:57.000000','1221128804918453'),(434,'3742863262395960_3744813662200920','We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2020-08-11 07:13:40.000000','3742863262395960'),(435,'3296852470370924_3298765926846245','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-11 07:12:42.000000','3296852470370924'),(436,'3498851093499405_3503442883040226','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-10 10:08:55.000000','3498851093499405'),(437,'2609150109337898_2612638492322393','Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2020-08-10 10:08:38.000000','2609150109337898'),(438,'10102083514642256_10102083612131886','It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-11 06:53:09.000000','10102083514642256'),(439,'3805931386089567_3807967412552631','The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-11 06:53:40.000000','3805931386089567'),(440,'3790525260964514_3806601802690193','SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 07:54:07.000000','3790525260964514'),(441,'10158550902744084_10158575256984084','It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 07:54:52.000000','10158550902744084'),(442,'1348372122034204_1348606748677408','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-12 08:29:47.000000','1348372122034204'),(443,'3240423326023723_3259957974070258','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-08-10 10:50:02.000000','3240423326023723'),(444,'132853101822754_135863051521759','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-10 10:48:55.000000','132853101822754'),(445,'10159094673494505_10159116347314505','SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 10:48:36.000000','10159094673494505'),(446,'10216993569251917_10217044441083681','Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2020-08-10 10:47:58.000000','10216993569251917'),(447,'10217010612953751_10217048351897201','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your mother. We appreciate the great review and rating.','2020-08-10 07:52:43.000000','10217010612953751'),(448,'10223294272935164_10223340200003312','Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 07:53:17.000000','10223294272935164'),(449,'10208256152398966_10208277561534181','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 07:57:11.000000','10208256152398966'),(450,'2748523192044643_2753242271572735','We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-10 07:58:24.000000','2748523192044643'),(451,'3174826522578049_3190477401012961','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 07:59:02.000000','3174826522578049'),(452,'287445302341527_292036288549095','Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-08-10 07:59:52.000000','287445302341527'),(453,'4099913883416569_4133427410065216','Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-08-10 08:00:33.000000','4099913883416569'),(454,'3377653415793916_3385298665029391','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 08:00:54.000000','3377653415793916'),(455,'3311672652189267_3337538299602702','We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 08:01:24.000000','3311672652189267'),(456,'3137225749676107_3161673097231372','It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 08:34:28.000000','3137225749676107'),(457,'10213970425335120_10214019384319064','Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-10 08:34:59.000000','10213970425335120'),(458,'4596354470378342_4614533121893810','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 06:33:35.000000','4596354470378342'),(459,'10214021135083014_10214047335097998','SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 06:35:18.000000','10214021135083014'),(460,'3506768196000127_3524354357574844','At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-10 07:36:33.000000','3506768196000127'),(461,'10216207531732024_10216266199358678','Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-08-10 07:37:20.000000','10216207531732024'),(462,'3491371930875892_3491668040846281','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-12 08:39:59.000000','3491371930875892'),(463,'10213559064170328_10213559607263905','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-12 08:39:22.000000','10213559064170328'),(464,'155459106162518_155721806136248','SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-11 06:52:06.000000','155459106162518'),(465,'3511041082273662_3528734840504286','We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-10 10:12:49.000000','3511041082273662'),(466,'2576825752648240_2582969322033883','We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-08-10 10:14:11.000000','2576825752648240'),(467,'3868384969880278_3891328587585916','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 10:14:29.000000','3868384969880278'),(468,'3214732971967838_3238935669547568','Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 10:17:57.000000','3214732971967838'),(469,'3475998792424146_3500586859965339','We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 10:18:43.000000','3475998792424146'),(470,'746850652781806_753138168819721','Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-08-10 10:19:25.000000','746850652781806'),(471,'3079100485539892_3103545593095381','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-10 10:21:23.000000','3079100485539892'),(472,'337486940977247_344704043588870','We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 10:27:17.000000','337486940977247'),(473,'10213835836210688_10213891417840194','At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-10 10:33:07.000000','10213835836210688'),(474,'10215520938291203_10215588305215334','Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 11:13:44.000000','10215520938291203'),(475,'10157443147293587_10157470467013587','Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great revie','2020-08-10 11:14:04.000000','10157443147293587'),(476,NULL,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-12 10:57:41.478725','10158208788986928'),(477,NULL,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-12 11:02:13.679515','10157559561362469'),(478,NULL,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-12 11:08:46.098153','337172207445714'),(479,NULL,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-12 13:38:24.634325','4121954991212229'),(480,NULL,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-12 13:41:06.844822','10223230045360493'); /*!40000 ALTER TABLE `facebook_app_facebookreviewreply` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gauth_location` -- DROP TABLE IF EXISTS `gauth_location`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gauth_location` ( `location_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `location_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `website_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `owner_id` int(11) DEFAULT NULL, `care_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `review_site_url` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `recipient_email` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`location_id`), KEY `gauth_location_owner_id_aacfdc53_fk_auth_user_id` (`owner_id`), CONSTRAINT `gauth_location_owner_id_aacfdc53_fk_auth_user_id` FOREIGN KEY (`owner_id`) REFERENCES `auth_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gauth_location` -- LOCK TABLES `gauth_location` WRITE; /*!40000 ALTER TABLE `gauth_location` DISABLE KEYS */; INSERT INTO `gauth_location` VALUES ('12541597562633926366','Houston','https://ercare24.com/westchase',1,'Westchase','https://business.google.com/dashboard/l/12648617844590408918',NULL),('13486358490203335051','Midland','https://ercare24.com/midland/',1,'Midland','https://business.google.com/dashboard/l/12517976417346206005',NULL),('14567670160750071148','Houston','http://ercare24.com/heights/',1,'Heights','https://business.google.com/dashboard/l/15919701512914286041',NULL),('14748677429039074158','Lewisville','https://ercare24.com/lewisville/',1,'Lewisville',NULL,NULL),('14904078213800803294','Houston','https://ercare24.com/memorial-city',1,'Memorial City','https://business.google.com/dashboard/l/03060473272549250064',NULL),('16389487648212004696','Houston','https://ercare24.com/cypress/',1,'Cypress','https://business.google.com/dashboard/l/01483383084396759199',NULL),('16590124370714063921','College Station','https://ercare24.com/college-station/',1,'College Station','https://business.google.com/dashboard/l/17859229546895147986',NULL),('16891069708558046635','Austin','http://ercare24.com/austin/',1,'Austin','https://business.google.com/dashboard/l/11984394797109150957',NULL),('17394740196501090048','Houston','https://ercare24.com/mission-bend-sugar-land/',1,'Mission Bend','https://business.google.com/dashboard/l/07409147463931793039',NULL),('17898197009688164559','Houston','https://ercare24.com/copperfield/',1,'Copperfield','https://business.google.com/dashboard/l/01724936860578366174',NULL),('2077061009497551125','Pflugerville','https://signaturecare-emergency-room-pflugerville.business.site/?utm_source=gmb&utm_medium=referral',1,'Pflugerville',NULL,NULL),('2694018788013845459','Killeen','https://ercare24.com/killeen/',1,'Killeen','https://business.google.com/dashboard/l/06337807787071309349',NULL),('3272657195432704501','Texarkana','https://ercare24.com/texarkana/',1,'Texarkana','https://business.google.com/dashboard/l/02576965498507879079',NULL),('3511292162159714121','Houston','https://ercare24.com/montrose',1,'Montrose','https://business.google.com/dashboard/l/02110922445521262937',NULL),('6521947413723274945','Odessa','https://ercare24.com/odessa/',1,'Odessa','https://business.google.com/dashboard/l/13372632116293573150',NULL),('8626688543755174284','Paris','https://ercare24.com/paris/',1,'Paris','https://business.google.com/dashboard/l/07304194084987550691',NULL),('8679688254631342173','Houston','https://ercare24.com/bellaire/',1,'Bellaire','https://business.google.com/dashboard/l/15616344870880778263',NULL),('8918455867446117794','Stafford','https://ercare24.com/stafford/',1,'Stafford','https://business.google.com/dashboard/l/08172787910197778647',NULL); /*!40000 ALTER TABLE `gauth_location` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gauth_usermodel` -- DROP TABLE IF EXISTS `gauth_usermodel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gauth_usermodel` ( `id` int(11) NOT NULL AUTO_INCREMENT, `refresh_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gmb_account_id` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` int(11) NOT NULL, `access_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `expiry` datetime(6) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `user_id` (`user_id`), CONSTRAINT `gauth_usermodel_user_id_1636f341_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gauth_usermodel` -- LOCK TABLES `gauth_usermodel` WRITE; /*!40000 ALTER TABLE `gauth_usermodel` DISABLE KEYS */; INSERT INTO `gauth_usermodel` VALUES (1,'1//0gsGSVHitvct6CgYIARAAGBASNwF-L9IrZA5TIBwY46UYODbM351MeRlhnTU_yHMoerbm7CTNNNyY2I229eMBvWymQLuWY8mITy8','103266181421855655295',1,'ya29.a0AfH6SMB13k9jdwA4x7uxxAT9EC0VMdIOUgfGzomEs-02sFD_9cN7chSFF8FbsaEAzCkMLifv8BOIhBkSCUNNPL5JD0QcEy9uy1ROiHUsUOxtrObQdQYpNuEY1bN4S-JblpyFczYxYrQLHZFFqh1ydAeepurGJSQBmdKCxg','2020-08-24 09:33:41.698058'); /*!40000 ALTER TABLE `gauth_usermodel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `name_extractor_staff` -- DROP TABLE IF EXISTS `name_extractor_staff`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `name_extractor_staff` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `total_units` decimal(5,2) NOT NULL, `nick_names` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `department` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name_mentioned` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `name_extractor_staff_location_id_fb420b8b_fk_gauth_loc` (`location_id`), CONSTRAINT `name_extractor_staff_location_id_fb420b8b_fk_gauth_loc` FOREIGN KEY (`location_id`) REFERENCES `gauth_location` (`location_id`) ) ENGINE=InnoDB AUTO_INCREMENT=568 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `name_extractor_staff` -- LOCK TABLES `name_extractor_staff` WRITE; /*!40000 ALTER TABLE `name_extractor_staff` DISABLE KEYS */; INSERT INTO `name_extractor_staff` VALUES (3,'Aleman,Kristina D',19.40,'aleman,kristina','12541597562633926366','Staff Nurse',32),(4,'Allsopp,Sarra E',3.49,'allsopp,sarra','12541597562633926366','Staff Nurse',6),(5,'Alter,Kelsey Ryan',0.00,'alter,kelsey,ryan','12541597562633926366','ER Tech',0),(6,'Ayala,Stephanie ',1.83,'ayala,stephanie','12541597562633926366','Staff Nurse',4),(7,'Balladares,Sherwin P',0.99,'balladares,sherwin','12541597562633926366','Radiology Tech',3),(8,'Bolanos,Irving M',3.74,'bolanos,irving','12541597562633926366','Staff Nurse',8),(9,'Bowen,Carly E',2.16,'bowen,carly','12541597562633926366','Registration',4),(10,'Clay,Nellie M',0.00,'clay,nellie','12541597562633926366','Staff Nurse',0),(11,'Cruz,Genesis',0.33,'cruz,genesis','12541597562633926366','Registration',1),(12,'Duffee,Bram ',0.33,'duffee,bram','12541597562633926366','ER Tech',1),(13,'FLORY,RICKY L',0.33,'flory,ricky','12541597562633926366','Nurse Manager',1),(14,'Garcia,Elizabeth ',0.00,'garcia,elizabeth','12541597562633926366','Registration',0),(15,'Gonzalez,Nelson A',1.16,'gonzalez,nelson','12541597562633926366','ER Tech',3),(16,'Hiranthom,Anna L',0.00,'hiranthom,anna','12541597562633926366','Registration',0),(17,'Ho,Hanh M',0.33,'hanh','12541597562633926366','Radiology Tech',1),(18,'Hoang,Mercy ',0.00,'hoang,mercy','12541597562633926366','Registration',0),(19,'Johnson,Maya A',22.07,'johnson,maya','12541597562633926366','Registration',31),(20,'Lazo,Mayra ',0.00,'lazo,mayra','12541597562633926366','Radiology Tech',0),(21,'Le,John Vinam',1.91,'john,vinam','12541597562633926366','Staff Nurse',5),(22,'Nguyen,Quyen ',3.66,'nguyen,quyen','12541597562633926366','Radiology Tech',8),(23,'O Neal,Lia ',0.00,'neal,lia','12541597562633926366','Staff Nurse',0),(24,'Pluta,Holly E',2.41,'pluta,holly','12541597562633926366','Radiology Tech',6),(25,'Polio Morales,Laura Imelda',2.33,'polio,morales,laura,imelda','12541597562633926366','Radiology Tech',5),(26,'Ramirez,Ana Estefania',1.49,'ramirez,ana,estefania','12541597562633926366','Registration',4),(27,'Rathbone,Catherine Kirby',1.83,'rathbone,catherine,kirby','12541597562633926366','Staff Nurse',4),(28,'Satberry,Christian E',0.00,'satberry,christian','12541597562633926366','ER Tech',0),(29,'Scott,Hayleigh Alexa',3.82,'scott,hayleigh,alexa','12541597562633926366','Registration',10),(30,'Taylor,John M',1.91,'taylor,john','12541597562633926366','ER Tech',5),(31,'Thomas,Tino ',0.75,'thomas,tino','12541597562633926366','Radiology Tech',2),(32,'Tu,Jennifer ',0.00,'jennifer','12541597562633926366','Staff Nurse',0),(33,'Vaughn,Lara A',0.50,'vaughn,lara','12541597562633926366','Staff Nurse',1),(34,'Wilson,Scott A',3.82,'wilson,scott','12541597562633926366','ER Tech',10),(35,'Wilson,Thelma ',1.00,'wilson,thelma','12541597562633926366','ER Tech',2),(36,'Bernal,Sita Isabel',0.20,'bernal,sita,isabel','13486358490203335051','Registration',1),(37,'Brennan,Corey M',0.00,'brennan,corey','13486358490203335051','Staff Nurse',0),(38,'Briones,Savanna',0.00,'briones,savanna','13486358490203335051','Staff Nurse',0),(39,'Burt,Paige R',0.00,'burt,paige','13486358490203335051','ER Tech',0),(40,'Carrasco,Vanessa NyCole',0.25,'carrasco,vanessa,nycole','13486358490203335051','Staff Nurse',1),(41,'Castaneda,Carolyn E',0.00,'castaneda,carolyn','13486358490203335051','Radiology Tech',0),(42,'Castillo,Alexis ',0.75,'castillo,alexis','13486358490203335051','Staff Nurse',2),(43,'Clifton,Thomas A',0.00,'clifton,thomas','13486358490203335051','ER Tech',0),(44,'Estrada,Stephani N',0.00,'estrada,stephani','13486358490203335051','Registration',0),(45,'Gonzalez,Maria P',0.50,'gonzalez,maria','13486358490203335051','Radiology Tech',1),(46,'Griswold,Amanda F',0.00,'griswold,amanda','13486358490203335051','Staff Nurse',0),(47,'HARVEY,RANDY W',0.20,'harvey,randy','13486358490203335051','ER Tech',1),(48,'Haughton,Bancroft R',0.25,'haughton,bancroft','13486358490203335051','Radiology Tech',1),(49,'Hulse,Lisa M',0.00,'hulse,lisa','13486358490203335051','Registration',0),(50,'Kittelson,Leah T',0.00,'kittelson,leah','13486358490203335051','ER Tech',0),(51,'Kramer,William D',0.20,'kramer,william','13486358490203335051','ER Tech',1),(52,'Lemon,Allison S',1.45,'lemon,allison','13486358490203335051','Radiology Tech',4),(53,'Lemus,Lorena E',0.00,'lemus,lorena','13486358490203335051','Registration',0),(54,'Lozano,Leonardo ',0.00,'lozano,leonardo','13486358490203335051','Staff Nurse',0),(55,'Luna,Gerardo P',0.00,'luna,gerardo','13486358490203335051','Radiology Tech',0),(56,'Mann,Erin N',0.00,'mann,erin','13486358490203335051','Nurse Manager',0),(57,'Marquez,Krystal',0.50,'marquez,krystal','13486358490203335051','Staff Nurse',1),(58,'Martinez,David ',0.00,'martinez,david','13486358490203335051','Radiology Tech',0),(59,'McDonald,Stephanie D',0.00,'mcdonald,stephanie','13486358490203335051','Registration',0),(60,'Norton,Delpha Y',0.00,'norton,delpha','13486358490203335051','ER Tech',0),(61,'Orona,Marco A',0.00,'orona,marco','13486358490203335051','Radiology Tech',0),(62,'Ortega,Aaron E',0.00,'ortega,aaron','13486358490203335051','Radiology Tech',0),(63,'Osborne,Kimberly G',0.00,'osborne,kimberly','13486358490203335051','Staff Nurse',0),(64,'Pando,Jocelyn C',0.00,'pando,jocelyn','13486358490203335051','Registration',0),(65,'Paturalski,Chelsea L',0.00,'paturalski,chelsea','13486358490203335051','Staff Nurse',0),(66,'Perez,Daniel O',0.25,'perez,daniel','13486358490203335051','ER Tech',1),(67,'Prater,Kristina J',1.20,'prater,kristina','13486358490203335051','Staff Nurse',2),(68,'Pulis,Alana R',0.00,'pulis,alana','13486358490203335051','Staff Nurse',0),(69,'Ramirez,Audrey L',0.00,'ramirez,audrey','13486358490203335051','Staff Nurse',0),(70,'Rivera,Julie A',0.00,'rivera,julie','13486358490203335051','ER Tech',0),(71,'Romero,Julica M',0.00,'romero,julica','13486358490203335051','ER Tech',0),(72,'Sanchez,Ahuizotl ',0.00,'sanchez,ahuizotl','13486358490203335051','Radiology Tech',0),(73,'Sanchez,Jessica L',0.00,'sanchez,jessica','13486358490203335051','Registration',0),(74,'Sanchez,Maria E',0.50,'sanchez,maria','13486358490203335051','Registration',1),(75,'Saucedo,Jose L',0.75,'saucedo,jose','13486358490203335051','Staff Nurse',2),(76,'Simmons,Shania D',3.50,'simmons,shania','13486358490203335051','Registration',7),(77,'VanZandt,Brittany A',0.00,'vanzandt,brittany','13486358490203335051','Staff Nurse',0),(78,'Vasquez,Lisa M',0.00,'vasquez,lisa','13486358490203335051','Staff Nurse',0),(79,'Walker,Justin Mikal',0.00,'walker,justin,mikal','13486358490203335051','ER Tech',0),(80,'Adams,John ',0.33,'adams,john','14567670160750071148','Radiology Tech',1),(81,'Adkison,Amy Elizabeth',0.50,'adkison,amy,elizabeth','14567670160750071148','Registration',1),(82,'Allen,Gina N',9.49,'allen,gina','14567670160750071148','Staff Nurse',15),(83,'Balita,Joseph Ryan ',0.00,'balita,joseph,ryan','14567670160750071148','Staff Nurse',0),(84,'Blake,Natalie Jane',1.66,'blake,natalie,jane','14567670160750071148','ER Tech',4),(85,'Bower,Jennifer Ellen',0.00,'bower,jennifer,ellen','14567670160750071148','Staff Nurse',0),(86,'Cavazos Garza,Juan R',0.00,'cavazos,garza,juan','14567670160750071148','Staff Nurse',0),(87,'Cavazos,Ricardo J',1.25,'cavazos,ricardo','14567670160750071148','Radiology Tech',4),(88,'Chiu,Brian S',0.00,'chiu,brian','14567670160750071148','Radiology Tech',0),(89,'Cuellar,James A',0.00,'cuellar,james','14567670160750071148','Staff Nurse',0),(90,'Daniel,Corinne R',0.00,'daniel,corinne','14567670160750071148','Staff Nurse',0),(91,'David,Erica D',2.33,'david,erica','14567670160750071148','Registration',3),(92,'De Leon,Miguel A',2.00,'leon,miguel','14567670160750071148','ER Tech',2),(93,'Del Rio,Tatiana G',4.83,'del,rio,tatiana','14567670160750071148','Registration',12),(94,'Demontrond,LaRhonda S',0.00,'demontrond,larhonda','14567670160750071148','Staff Nurse',0),(95,'Duruzor,Felicia C',0.00,'duruzor,felicia','14567670160750071148','Staff Nurse',0),(96,'Eskridge,JB ',0.00,'eskridge','14567670160750071148','ER Tech',0),(97,'Fai-Yengo,Myra N',0.00,'fai-yengo,myra','14567670160750071148','Staff Nurse',0),(98,'Farley,Richard ',0.00,'farley,richard','14567670160750071148','Radiology Tech',0),(99,'Gamez,Sindy ',5.66,'gamez,sindy','14567670160750071148','Registration',10),(100,'Garcia,Amanda ',0.00,'garcia,amanda','14567670160750071148','Registration',0),(101,'Garcia,Samantha ',2.58,'garcia,samantha','14567670160750071148','Registration',4),(102,'Gilchrist,Nicole ',9.23,'gilchrist,nicole','14567670160750071148','Assistant Facility Manager',21),(103,'Gonzales,JoAnn ',0.33,'gonzales,joann','14567670160750071148','ER Tech',1),(104,'Gonzales,Ricardo ',1.25,'gonzales,ricardo','14567670160750071148','ER Tech',4),(105,'Hebert,Dana D',0.00,'hebert,dana','14567670160750071148','Staff Nurse',0),(106,'Herring-bass,Melissa ',0.00,'herring-bass,melissa','14567670160750071148','Staff Nurse',0),(107,'Hilaire,Maxeau ',0.00,'hilaire,maxeau','14567670160750071148','Staff Nurse',0),(108,'Holder,Dustin C',3.41,'holder,dustin','14567670160750071148','Radiology Tech',8),(109,'Hung,Julie A',0.00,'hung,julie','14567670160750071148','Staff Nurse',0),(110,'Jackson,Nicole ',9.23,'jackson,nicole','14567670160750071148','Nurse Manager',21),(111,'Kebede,Meron M',0.00,'kebede,meron','14567670160750071148','ER Tech',0),(112,'Larson,Michelle Kaitlin',0.00,'larson,michelle,kaitlin','14567670160750071148','Radiology Tech',0),(113,'Le,Katherine Ho',0.00,'katherine','14567670160750071148','ER Tech',0),(114,'Lindsay,Reginna L',0.00,'lindsay,reginna','14567670160750071148','Staff Nurse',0),(115,'Malta,Timothy J',0.00,'malta,timothy','14567670160750071148','ER Tech',0),(116,'Moorer,Christine M',1.33,'moorer,christine','14567670160750071148','Staff Nurse',3),(117,'Nwazojie,Vivienne C',2.00,'nwazojie,vivienne','14567670160750071148','Staff Nurse',2),(118,'Osman,Fahme N',0.00,'osman,fahme','14567670160750071148','Staff Nurse',0),(119,'Payton,Isaac K',0.50,'payton,isaac','14567670160750071148','Staff Nurse',1),(120,'Picaz,Kimberly ',4.41,'picaz,kimberly','14567670160750071148','Registration',7),(121,'Pickens,Derek ',0.00,'pickens,derek','14567670160750071148','ER Tech',0),(122,'Rios,Graciela ',0.00,'rios,graciela','14567670160750071148','Staff Nurse',0),(123,'Sam,Meredith J',1.08,'sam,meredith','14567670160750071148','Staff Nurse',3),(124,'Sanusi,Olusola Y',0.58,'sanusi,olusola','14567670160750071148','Staff Nurse',2),(125,'Silvers,Kelly Rahe',0.91,'silvers,kelly,rahe','14567670160750071148','Staff Nurse',3),(126,'Spielberg,Andrea Michelle',0.00,'spielberg,andrea,michelle','14567670160750071148','ER Tech',0),(127,'Tran,Diem Ngoc',0.50,'tran,diem,ngoc','14567670160750071148','Radiology Tech',1),(128,'Waszak,Brandon E',3.65,'waszak,brandon','14567670160750071148','Staff Nurse',10),(129,'White,Sharesa A',0.00,'white,sharesa','14567670160750071148','Radiology Tech',0),(130,'Whitfield,Rondy A',0.00,'whitfield,rondy','14567670160750071148','Staff Nurse',0),(131,'Williams,Brandon Alex',4.99,'williams,brandon,alex','14567670160750071148','ER Tech',15),(132,'Williams,Kristen M',1.33,'williams,kristen','14567670160750071148','Staff Nurse',5),(133,'mull,breyonee kahje',0.00,'mull,breyonee,kahje','14567670160750071148','Radiology Tech',0),(134,'Aguillon,Rita A',0.33,'aguillon,rita','14904078213800803294','Registration',1),(135,'Avalos,Ian Cain',0.00,'avalos,ian,cain','14904078213800803294','Staff Nurse',0),(136,'Ball,Cynthia Joyce',0.45,'ball,cynthia,joyce','14904078213800803294','Registration',2),(137,'Cagulada,Mildred ',0.00,'cagulada,mildred','14904078213800803294','Radiology Tech',0),(138,'Castille,Ryan ',0.95,'castille,ryan','14904078213800803294','Radiology Tech',3),(139,'Chambers,Kayla E',0.33,'chambers,kayla','14904078213800803294','Radiology Tech',1),(140,'Chatman,Ikita D',0.00,'chatman,ikita','14904078213800803294','Registration',0),(141,'Fleming,Kerie L',0.00,'fleming,kerie','14904078213800803294','Staff Nurse',0),(142,'Garcia,Deanna ',0.00,'garcia,deanna','14904078213800803294','Registration',0),(143,'Garza,Dolores ',0.00,'garza,dolores','14904078213800803294','Registration',0),(144,'Hernandez,Johnny Keith',1.58,'hernandez,johnny,keith','14904078213800803294','Staff Nurse',3),(145,'Huerta,Leslie L',0.00,'huerta,leslie','14904078213800803294','Staff Nurse',0),(146,'Imhoff,Holly J',0.00,'imhoff,holly','14904078213800803294','Staff Nurse',0),(147,'Jackson,Marcia F',0.00,'jackson,marcia','14904078213800803294','Staff Nurse',0),(148,'Jefferson,Jessica L',1.03,'jefferson,jessica','14904078213800803294','Staff Nurse',3),(149,'Kimanywa,Grace M',0.00,'kimanywa,grace','14904078213800803294','Radiology Tech',0),(150,'Kolodny, Yisroel',0.00,'kolodny,yisroel','14904078213800803294','Staff Nurse',0),(151,'Langit,Rommel ',0.33,'langit,rommel','14904078213800803294','Staff Nurse',1),(152,'Long,Jordan C',0.00,'long,jordan','14904078213800803294','Assistant Facility Manager',0),(153,'Montes,Ezequiel ',0.00,'montes,ezequiel','14904078213800803294','Radiology Tech',0),(154,'Munoz,Olivia ',0.00,'munoz,olivia','14904078213800803294','Registration',0),(155,'Nguyen,Hoan H',0.00,'nguyen,hoan','14904078213800803294','Radiology Tech',0),(156,'Nguyen,Jonathan Allen',0.33,'nguyen,jonathan,allen','14904078213800803294','ER Tech',1),(157,'Nguyen,Thuy An T',0.00,'nguyen,thuy','14904078213800803294','ER Tech',0),(158,'Ozorio Del Rio,Teresa ',0.00,'ozorio,del,rio,teresa','14904078213800803294','ER Tech',0),(159,'Palmer,Keri L',0.00,'palmer,keri','14904078213800803294','Staff Nurse',0),(160,'Payton,Kenzie M',0.00,'payton,kenzie','14904078213800803294','ER Tech',0),(161,'Rivera,Daniel ',0.66,'rivera,daniel','14904078213800803294','ER Tech',2),(162,'Roberts,Kayla I',0.33,'roberts,kayla','14904078213800803294','Staff Nurse',1),(163,'Salgado,Adolfo ',0.66,'salgado,adolfo','14904078213800803294','Radiology Tech',2),(164,'Smith,Aaron ',1.81,'smith,aaron','14904078213800803294','ER Tech',6),(165,'Smith,Rebecca ',0.53,'smith,rebecca','14904078213800803294','Staff Nurse',2),(166,'Vasquez,Antonio Arturo',0.00,'vasquez,antonio,arturo','14904078213800803294','Staff Nurse',0),(167,'Vaultz,Selina ',0.00,'vaultz,selina','14904078213800803294','Radiology Tech',0),(168,'Wade,Allison L',0.50,'wade,allison','14904078213800803294','Staff Nurse',1),(169,'Wick,James ',0.00,'wick,james','14904078213800803294','ER Tech',0),(170,'oragbon,valentine ',0.00,'oragbon,valentine','14904078213800803294','Staff Nurse',0),(171,'Anguiano Corona,Jesus J',0.00,'anguiano,corona,jesus','16389487648212004696','Registration',0),(172,'Astudillo,Jocelyn ',18.81,'astudillo,jocelyn','16389487648212004696','Registration',30),(173,'Ayala,Elizabeth V',0.00,'ayala,elizabeth','16389487648212004696','Staff Nurse',0),(174,'Azurin,Alvean ',26.63,'azurin,alvean','16389487648212004696','Staff Nurse',49),(175,'Banks,Marcus J',8.64,'banks,marcus','16389487648212004696','Radiology Tech',20),(176,'Beasley,Troy D',0.00,'beasley,troy','16389487648212004696','Staff Nurse',0),(177,'Bergmann,David C',0.25,'bergmann,david','16389487648212004696','Radiology Tech',1),(178,'Bradley,Keith ',0.00,'bradley,keith','16389487648212004696','ER Tech',0),(179,'Brand,Tricia E',0.00,'brand,tricia','16389487648212004696','Radiology Tech',0),(180,'Bundy,Bennett J',0.00,'bundy,bennett','16389487648212004696','Staff Nurse',0),(181,'Caballero,Jeffrey G',0.00,'caballero,jeffrey','16389487648212004696','Staff Nurse',0),(182,'Calvillo,Patricia ',21.85,'calvillo,patricia','16389487648212004696','Registration',35),(183,'Espinoza,Melissa A',0.58,'espinoza,melissa','16389487648212004696','Registration',2),(184,'Garcia,Vanessa ',0.00,'garcia,vanessa','16389487648212004696','Registration',0),(185,'Grant,Diana L',0.00,'grant,diana','16389487648212004696','Radiology Tech',0),(186,'Hancock,Jessica H',1.33,'hancock,jessica','16389487648212004696','Radiology Tech',2),(187,'Harris,Robert J',0.00,'harris,robert','16389487648212004696','Nurse Manager',0),(188,'Holt,Sean F',0.25,'holt,sean','16389487648212004696','ER Tech',1),(189,'Jarlego,Erika E',0.00,'jarlego,erika','16389487648212004696','Staff Nurse',0),(190,'Konemany,Kat ',0.00,'konemany,kat','16389487648212004696','Radiology Tech',0),(191,'Lewis,Traevis L',0.00,'lewis,traevis','16389487648212004696','Radiology Tech',0),(192,'Lizama,Stephanie M',0.00,'lizama,stephanie','16389487648212004696','ER Tech',0),(193,'Luu,Kelly T',0.53,'luu,kelly','16389487648212004696','Radiology Tech',2),(194,'Mata,Aurora A',0.00,'mata,aurora','16389487648212004696','ER Tech',0),(195,'McCrackin,Heather N',0.00,'mccrackin,heather','16389487648212004696','Staff Nurse',0),(196,'Moore,robert L',0.00,'moore,robert','16389487648212004696','Staff Nurse',0),(197,'Nguyen,Jordan V',2.18,'nguyen,jordan','16389487648212004696','ER Tech',7),(198,'Padal,Jose Antonio B.',2.07,'padal,jose,antonio','16389487648212004696','Staff Nurse',6),(199,'Ramirez,Elida ',0.00,'ramirez,elida','16389487648212004696','Registration',0),(200,'Raney,Nikaela Ann',0.70,'raney,nikaela,ann','16389487648212004696','Staff Nurse',2),(201,'Rodriguez,Luisa S',0.00,'rodriguez,luisa','16389487648212004696','Registration',0),(202,'Serpas,Ekaterini S',2.53,'serpas,ekaterini','16389487648212004696','Staff Nurse',6),(203,'Umer,Shazia ',0.00,'umer,shazia','16389487648212004696','Radiology Tech',0),(204,'Waller,Brian C',2.66,'waller,brian','16389487648212004696','ER Tech',6),(205,'Whitney,Jani G',0.83,'whitney,jani','16389487648212004696','Staff Nurse',2),(206,'Bonilla,Okarys L',0.00,'bonilla,okarys','16590124370714063921','Registration',0),(207,'Boone,Emily A',0.00,'boone,emily','16590124370714063921','Staff Nurse',0),(208,'Cienega,Juan ',0.00,'cienega,juan','16590124370714063921','Radiology Tech',0),(209,'Diserens,Jeri',0.66,'diserens,jeri','16590124370714063921','Staff Nurse',2),(210,'Duckworth,Laura A',1.45,'duckworth,laura','16590124370714063921','Radiology Tech',4),(211,'Dunford,Gabriel James',0.00,'dunford,gabriel,james','16590124370714063921','Staff Nurse',0),(212,'Ely,Kristen ',0.00,'ely,kristen','16590124370714063921','Nurse Manager',0),(213,'Fabela,Itzayana ',0.00,'fabela,itzayana','16590124370714063921','Registration',0),(214,'Frederick,Dyveliz Arlleth',1.00,'frederick,dyveliz,arlleth','16590124370714063921','Registration',1),(215,'Galindo,Naomi M',0.00,'galindo,naomi','16590124370714063921','Registration',0),(216,'Gray,Kendra Allison',0.00,'gray,kendra,allison','16590124370714063921','Registration',0),(217,'Henry,Remington Lee',4.53,'henry,remington,lee','16590124370714063921','Staff Nurse',11),(218,'Olive,Jacob ',12.20,'olive,jacob','16590124370714063921','Assistant Facility Manager',17),(219,'Parks,Cameron S',0.00,'parks,cameron','16590124370714063921','Radiology Tech',0),(220,'Riojas,Natalie R',0.20,'riojas,natalie','16590124370714063921','ER Tech',1),(221,'Robinson,Lindsay A',1.50,'robinson,lindsay','16590124370714063921','Registration',3),(222,'Siegert,Brad ',2.00,'siegert,brad','16590124370714063921','Staff Nurse',3),(223,'Simmons,Elise Ann',0.00,'simmons,elise,ann','16590124370714063921','Staff Nurse',0),(224,'Smith-Nelson,Morgan L',2.58,'smith-nelson,morgan','16590124370714063921','Radiology Tech',6),(225,'Stokes,Patrick R',0.25,'stokes,patrick','16590124370714063921','ER Tech',1),(226,'TORRES,LORENA ',3.11,'torres,lorena','16590124370714063921','Registration',7),(227,'Vargas,Rebecca R',5.66,'vargas,rebecca','16590124370714063921','Registration',9),(228,'Walker,Rayven R',2.00,'walker,rayven','16590124370714063921','Registration',2),(229,'Waller,Catherine',0.00,'waller,catherine','16590124370714063921','Staff Nurse',0),(230,'Wenzel,Victoria ',0.00,'wenzel,victoria','16590124370714063921','Radiology Tech',0),(231,'Williams-Rogers,Kathleen ',1.00,'williams-rogers,kathleen','16590124370714063921','Radiology Tech',1),(232,'Wilson,Stephanie ',0.83,'wilson,stephanie','16590124370714063921','Radiology Tech',2),(233,'Womack,Rebecca Ann',5.66,'womack,rebecca,ann','16590124370714063921','ER Tech',9),(234,'Adams,Christine M',1.25,'adams,christine','16891069708558046635','ER Tech',2),(235,'Alba,Gabriel ',0.00,'alba,gabriel','16891069708558046635','Staff Nurse',0),(236,'BROWN,JANAY M',0.00,'brown,janay','16891069708558046635','Registration',0),(237,'Benavides,Angel G',0.00,'benavides,angel','16891069708558046635','Registration',0),(238,'Blindauer,Lisa Marie',0.00,'blindauer,lisa,marie','16891069708558046635','ER Tech',0),(239,'Cantu,Christina ',6.33,'cantu,christina','16891069708558046635','Registration',18),(240,'Chabarria,Edward',0.00,'chabarria,edward','16891069708558046635','Registration',0),(241,'Chabarria,Jennifer N',0.25,'chabarria,jennifer','16891069708558046635','Registration',1),(242,'Duruzor,Felicia C',0.00,'duruzor,felicia','16891069708558046635','Registration',0),(243,'Fair,Jesse J',0.00,'fair,jesse','16891069708558046635','Radiology Tech',0),(244,'Geck,Vanessa Talerico',0.00,'geck,vanessa,talerico','16891069708558046635','Staff Nurse',0),(245,'Hill,Shaunda Marie',1.49,'hill,shaunda,marie','16891069708558046635','Registration',5),(246,'Hines,Earl J',0.50,'hines,earl','16891069708558046635','Registration',1),(247,'Holt,Carli L',0.00,'holt,carli','16891069708558046635','Radiology Tech',0),(248,'Kelly,Kathryn Joan',0.00,'kelly,kathryn,joan','16891069708558046635','Staff Nurse',0),(249,'Kirby,Christina Marie',6.33,'kirby,christina,marie','16891069708558046635','Radiology Tech',18),(250,'Lee,Candace N',0.00,'lee,candace','16891069708558046635','Staff Nurse',0),(251,'Lewis,Martin J',0.00,'lewis,martin','16891069708558046635','Staff Nurse',0),(252,'Lopez,Aileen ',1.75,'lopez,aileen','16891069708558046635','Registration',4),(253,'Martinez,Christopher A',0.33,'martinez,christopher','16891069708558046635','ER Tech',1),(254,'Martinez,Ricardo ',0.66,'martinez,ricardo','16891069708558046635','Registration',2),(255,'Michael,Chelsey R',1.03,'michael,chelsey','16891069708558046635','ER Tech',3),(256,'Palencia,Roderick D',0.00,'palencia,roderick','16891069708558046635','Radiology Tech',0),(257,'Palmer,Kara ',0.00,'palmer,kara','16891069708558046635','Staff Nurse',0),(258,'Pinion,Adam Trevor',2.69,'pinion,adam,trevor','16891069708558046635','Nurse Manager',8),(259,'Ramirez,Christina Rochelle',6.33,'ramirez,christina,rochelle','16891069708558046635','Staff Nurse',18),(260,'Reissig,Clayton Robert',0.00,'reissig,clayton,robert','16891069708558046635','Radiology Tech',0),(261,'Rodriguez,Andrew V',0.00,'rodriguez,andrew','16891069708558046635','ER Tech',0),(262,'Rubio,Fernando ',0.25,'rubio,fernando','16891069708558046635','Radiology Tech',1),(263,'Sanchez,Brandon C',0.00,'sanchez,brandon','16891069708558046635','Staff Nurse',0),(264,'Sanchez,Delfino E',0.00,'sanchez,delfino','16891069708558046635','Registration',0),(265,'Sanchez,Jovana G',0.00,'sanchez,jovana','16891069708558046635','Radiology Tech',0),(266,'Saucedo,Linda ',1.57,'saucedo,linda','16891069708558046635','Radiology Tech',5),(267,'Sciascia,Allison R',0.00,'sciascia,allison','16891069708558046635','Radiology Tech',0),(268,'Sherrod Morfin,Marquitta M',0.00,'sherrod,morfin,marquitta','16891069708558046635','Staff Nurse',0),(269,'Truly,Shelli ',0.83,'truly,shelli','16891069708558046635','Staff Nurse',3),(270,'Turner,Townesend ',0.00,'turner,townesend','16891069708558046635','Radiology Tech',0),(271,'Ulbrich,Amanda J',3.00,'ulbrich,amanda','16891069708558046635','Registration',3),(272,'Wittmuss,Ashli E',0.00,'wittmuss,ashli','16891069708558046635','Staff Nurse',0),(273,'ALMAGUER,AL R',0.00,'almaguer','17394740196501090048','Staff Nurse',0),(274,'Aderibigbe,Jubril',0.00,'aderibigbe,jubril','17394740196501090048','Staff Nurse',0),(275,'Atienza,Eda ',1.00,'atienza,eda','17394740196501090048','Staff Nurse',2),(276,'Bowles,Deondrick L',0.00,'bowles,deondrick','17394740196501090048','ER Tech',0),(277,'Brady,Tammi ',0.00,'brady,tammi','17394740196501090048','Staff Nurse',0),(278,'Brinsko,David ',0.00,'brinsko,david','17394740196501090048','Radiology Tech',0),(279,'Brown,Fatima ',0.00,'brown,fatima','17394740196501090048','Radiology Tech',0),(280,'Brown,Nekkia N',0.00,'brown,nekkia','17394740196501090048','ER Tech',0),(281,'Camarillo,Emily ',0.00,'camarillo,emily','17394740196501090048','Registration',0),(282,'Casciotti,Joseph Edward',0.25,'casciotti,joseph,edward','17394740196501090048','Staff Nurse',1),(283,'Cheref,Ikram ',0.00,'cheref,ikram','17394740196501090048','Registration',0),(284,'Chevis,Mercades ',0.00,'chevis,mercades','17394740196501090048','Registration',0),(285,'Fernandez,Dianna ',0.00,'fernandez,dianna','17394740196501090048','Radiology Tech',0),(286,'Fomenko,Zinaida ',0.00,'fomenko,zinaida','17394740196501090048','Staff Nurse',0),(287,'Franco,Selina A',2.50,'franco,selina','17394740196501090048','Staff Nurse',4),(288,'Garriel,Ma Jocelyn Aparicio',0.00,'garriel,jocelyn,aparicio','17394740196501090048','Staff Nurse',0),(289,'Green,Keera Sharda',1.50,'green,keera,sharda','17394740196501090048','Registration',2),(290,'Hermosillo,Wendolline ',0.00,'hermosillo,wendolline','17394740196501090048','ER Tech',0),(291,'Hernandez,Janet E',0.75,'hernandez,janet','17394740196501090048','Radiology Tech',2),(292,'Isaac,Coraly ',0.00,'isaac,coraly','17394740196501090048','Radiology Tech',0),(293,'Jones,Ladonna R',0.00,'jones,ladonna','17394740196501090048','Staff Nurse',0),(294,'Kalappurayil,Jerin ',0.00,'kalappurayil,jerin','17394740196501090048','Radiology Tech',0),(295,'Klamert,Sondra L',0.00,'klamert,sondra','17394740196501090048','Radiology Tech',0),(296,'Lescano,Neil A',0.00,'lescano,neil','17394740196501090048','Registration',0),(297,'Mathew,Anoop ',0.00,'mathew,anoop','17394740196501090048','Staff Nurse',0),(298,'Melendez,Diana G',0.00,'melendez,diana','17394740196501090048','Registration',0),(299,'Merchant,Amelia L',0.00,'merchant,amelia','17394740196501090048','ER Tech',0),(300,'Mojica,Mary ',0.00,'mojica,mary','17394740196501090048','Staff Nurse',0),(301,'Molina,Bryanna Denise',0.00,'molina,bryanna,denise','17394740196501090048','Staff Nurse',0),(302,'Nguyen,Pauline N',0.00,'nguyen,pauline','17394740196501090048','Registration',0),(303,'Nguyen,Thao H',0.00,'nguyen,thao','17394740196501090048','Radiology Tech',0),(304,'Noriega,Fanny ',2.25,'noriega,fanny','17394740196501090048','Staff Nurse',4),(305,'Ramirez,Adam ',0.00,'ramirez,adam','17394740196501090048','Staff Nurse',0),(306,'Ramlal,Ralph ',0.00,'ramlal,ralph','17394740196501090048','ER Tech',0),(307,'Reed,Jesse ',0.25,'reed,jesse','17394740196501090048','Staff Nurse',1),(308,'Reutzel,Ashlynn C',0.00,'reutzel,ashlynn','17394740196501090048','Nurse Manager',0),(309,'Rodriguez,Barbara A',0.00,'rodriguez,barbara','17394740196501090048','Radiology Tech',0),(310,'Rojas,Jessica Rae Sanchez',2.00,'rojas,jessica,rae,sanchez','17394740196501090048','Registration',2),(311,'Rojas,Vanya Joy Sanchez',0.50,'rojas,vanya,joy,sanchez','17394740196501090048','Radiology Tech',1),(312,'Schwartz,Robert Issac',0.00,'schwartz,robert,issac','17394740196501090048','Staff Nurse',0),(313,'Vega,Waleska ',0.00,'vega,waleska','17394740196501090048','Registration',0),(314,'Williams Jr,Edward ',0.25,'williams,edward','17394740196501090048','Radiology Tech',1),(315,'nguyen,diem ',0.00,'nguyen,diem','17394740196501090048','Radiology Tech',0),(316,'Acosta,Angel Geovanny',0.83,'acosta,angel,geovanny','17898197009688164559','ER Tech',3),(317,'Balliu,Racheal ',1.00,'balliu,racheal','17898197009688164559','Staff Nurse',1),(318,'Barry,Daniel R',0.50,'barry,daniel','17898197009688164559','ER Tech',1),(319,'Bartholomew,Nathan Q',0.00,'bartholomew,nathan','17898197009688164559','Staff Nurse',0),(320,'Blakely,Fatima ',0.33,'blakely,fatima','17898197009688164559','Radiology Tech',1),(321,'Borjon,Nanci ',0.00,'borjon,nanci','17898197009688164559','Radiology Tech',0),(322,'Bunton,Sedrick D',0.00,'bunton,sedrick','17898197009688164559','ER Tech',0),(323,'Cruz,Angel P.',0.00,'cruz,angel','17898197009688164559','Nurse Manager',0),(324,'Draper,Shelley J.',0.00,'draper,shelley','17898197009688164559','Staff Nurse',0),(325,'Giglio-Anthony,Courtney E',0.33,'giglio-anthony,courtney','17898197009688164559','ER Tech',1),(326,'Grant,Sarah A',7.99,'grant,sarah,sarrah,sara','17898197009688164559','Staff Nurse',14),(327,'Hammonds,Alisha A',0.00,'hammonds,alisha','17898197009688164559','Staff Nurse',0),(328,'Hercules,Angela ',0.00,'hercules,angela','17898197009688164559','Registration',0),(329,'Herron,Laura L',1.58,'herron,laura','17898197009688164559','Radiology Tech',4),(330,'Jones,James Ray',0.00,'jones,james,ray','17898197009688164559','ER Tech',0),(331,'Leandre,Robert R',0.00,'leandre,robert','17898197009688164559','Radiology Tech',0),(332,'Martinez,Briseida ',0.00,'martinez,briseida','17898197009688164559','Registration',0),(333,'Mejia,Jacqueline M',0.00,'mejia,jacqueline','17898197009688164559','Radiology Tech',0),(334,'Moy,Elaine ',1.08,'moy,elaine','17898197009688164559','ER Tech',3),(335,'Neal-Domanski,Kimberly D',0.00,'neal-domanski,kimberly','17898197009688164559','Radiology Tech',0),(336,'Nguyen,JESSICA DIEM',0.33,'nguyen,jessica,diem','17898197009688164559','Radiology Tech',1),(337,'Nyei,Asia JERMEASE',0.00,'nyei,asia,jermease','17898197009688164559','Radiology Tech',0),(338,'Paz Enciso,Edgar V',0.00,'paz,enciso,edgar','17898197009688164559','Registration',0),(339,'Ryder,Susan M',1.00,'ryder,susan','17898197009688164559','Staff Nurse',1),(340,'Sanchez,Alexis A',0.00,'sanchez,alexis','17898197009688164559','Registration',0),(341,'Shaw,Chantel L',1.00,'shaw,chantel','17898197009688164559','Staff Nurse',1),(342,'Skripol,Ashley M',0.00,'skripol,ashley','17898197009688164559','Registration',0),(343,'Soza,Leyda I',0.00,'soza,leyda','17898197009688164559','Registration',0),(344,'Thompson,Bryanna C',0.00,'thompson,bryanna','17898197009688164559','Registration',0),(345,'WILLIAMS,CHRISTOPHER LORENZO',0.00,'williams,christopher,lorenzo','17898197009688164559','Radiology Tech',0),(346,'Waterman,Kayla A',0.00,'waterman,kayla','17898197009688164559','Registration',0),(347,'Wernecke,Tammy L',0.33,'wernecke,tammy','17898197009688164559','Staff Nurse',1),(348,'Wiltz,Tanishia Trisandra',4.66,'wiltz,tanishia,trisandra,tanisha','17898197009688164559','Registration',9),(349,'Acevedo,Barbara',0.00,'acevedo,barbara','2694018788013845459','Registration',0),(350,'Baker,Francine N',0.00,'baker,francine','2694018788013845459','ER Tech',0),(351,'Bell,Brittany J',0.00,'bell,brittany','2694018788013845459','Registration',0),(352,'Bright,Justin C',0.00,'bright,justin','2694018788013845459','Staff Nurse',0),(353,'Byers,Daniel J',0.00,'byers,daniel','2694018788013845459','ER Tech',0),(354,'Carter,Diamond K',0.00,'carter,diamond','2694018788013845459','Registration',0),(355,'Cummings,Katherine A',1.50,'cummings,katherine','2694018788013845459','Staff Nurse',2),(356,'Decosey,Shade M',0.00,'decosey,shade','2694018788013845459','Radiology Tech',0),(357,'Fite,Kaiti R',0.00,'fite,kaiti','2694018788013845459','Staff Nurse',0),(358,'Galderisi,Frank Anthony',0.00,'galderisi,frank,anthony','2694018788013845459','Radiology Tech',0),(359,'Gomez,Derek Anthony',0.00,'gomez,derek,anthony','2694018788013845459','Radiology Tech',0),(360,'Hackney,Nykessia L',0.00,'hackney,nykessia','2694018788013845459','Staff Nurse',0),(361,'Hall,Melissa D',0.00,'hall,melissa','2694018788013845459','Radiology Tech',0),(362,'Hampton,Angela K',0.50,'hampton,angela','2694018788013845459','Registration',1),(363,'Harris,Natasha N',0.00,'harris,natasha','2694018788013845459','Registration',0),(364,'Johnson,John T',0.00,'johnson,john','2694018788013845459','Staff Nurse',0),(365,'Keen,Bryan K',0.00,'keen,bryan','2694018788013845459','ER Tech',0),(366,'Kucza-Zehner,Crystal N',0.00,'kucza-zehner,crystal','2694018788013845459','Staff Nurse',0),(367,'Locklin,Katrina C',0.00,'locklin,katrina','2694018788013845459','Staff Nurse',0),(368,'Martinez,Marie A',0.00,'martinez,marie','2694018788013845459','Registration',0),(369,'Mauricio,Alia ',0.00,'mauricio,alia','2694018788013845459','Nurse Manager',0),(370,'Metcalf,Alexa K',1.00,'metcalf,alexa','2694018788013845459','ER Tech',1),(371,'Murillo,Michael A',0.00,'murillo,michael','2694018788013845459','ER Tech',0),(372,'Ramos-Martinez,Gabriela ',0.00,'ramos-martinez,gabriela','2694018788013845459','Staff Nurse',0),(373,'Smith,Konya D',0.00,'smith,konya','2694018788013845459','Staff Nurse',0),(374,'Sosey,Elleanna C',0.00,'sosey,elleanna','2694018788013845459','Registration',0),(375,'Styles,Quintessa T',0.00,'styles,quintessa','2694018788013845459','Registration',0),(376,'Urbina,Orlando J',0.00,'urbina,orlando','2694018788013845459','Radiology Tech',0),(377,'Urquhart,Casi S',0.00,'urquhart,casi','2694018788013845459','Radiology Tech',0),(378,'Vo,Thai T',0.00,'thai','2694018788013845459','Radiology Tech',0),(379,'Welch,Amy N',0.00,'welch,amy','2694018788013845459','Staff Nurse',0),(380,'Whitley,Ferman David',0.00,'whitley,ferman,david','2694018788013845459','Radiology Tech',0),(381,'Banks,Karen E',2.50,'banks,karen','3272657195432704501','Staff Nurse',4),(382,'Campanini,Sherri D',0.20,'campanini,sherri','3272657195432704501','Radiology Tech',1),(383,'Campbell,Eric S',2.16,'campbell,eric','3272657195432704501','Radiology Tech',6),(384,'Clark,Carla C',1.45,'clark,carla','3272657195432704501','Registration',4),(385,'Cummings,Lucas C',4.70,'cummings,lucas','3272657195432704501','Staff Nurse',7),(386,'Davidson,Kimberly J',0.33,'davidson,kimberly','3272657195432704501','Radiology Tech',1),(387,'Duffee,Bram ',0.00,'duffee,bram','3272657195432704501','Radiology Tech',0),(388,'Elkins,Ryan Jared',1.33,'elkins,ryan,jared','3272657195432704501','Staff Nurse',2),(389,'Johnson,Theresa L',0.00,'johnson,theresa','3272657195432704501','Staff Nurse',0),(390,'Kirby,Crystal M',0.00,'kirby,crystal','3272657195432704501','Staff Nurse',0),(391,'Maxwell,Gunnar S',2.16,'maxwell,gunnar','3272657195432704501','Radiology Tech',5),(392,'Miller,Douglas L',0.00,'miller,douglas','3272657195432704501','Radiology Tech',0),(393,'Montgomery,Sarah M',0.00,'montgomery,sarah,sarrah,sarra','3272657195432704501','Radiology Tech',0),(394,'Moss,Katy A',1.00,'moss,katy','3272657195432704501','Staff Nurse',1),(395,'NEAL,Linda S',0.53,'neal,linda','3272657195432704501','Registration',2),(396,'Narinesingh,Rajesh',0.00,'narinesingh,rajesh','3272657195432704501','Staff Nurse',0),(397,'Neal-Domanski,Kimberly D',0.00,'neal-domanski,kimberly','3272657195432704501','Registration',0),(398,'Osborn,Amber N',0.00,'osborn,amber','3272657195432704501','Staff Nurse',0),(399,'Osuna, Kara',1.16,'osuna,kara','3272657195432704501','Staff Nurse',3),(400,'Seifert,Gary W',0.25,'seifert,gary','3272657195432704501','Staff Nurse',1),(401,'Timmons,Courtney L',1.66,'timmons,courtney','3272657195432704501','Registration',4),(402,'Walker,Leanne M',0.25,'walker,leanne','3272657195432704501','Staff Nurse',1),(403,'Watlington,Mollie M',2.91,'watlington,mollie','3272657195432704501','Staff Nurse',6),(404,'Whatley,Jennifer K',3.20,'whatley,jennifer','3272657195432704501','Staff Nurse',6),(405,'Williams,Tobie M',3.16,'williams,tobie','3272657195432704501','Registration',7),(406,'Wilson,Katherine B',0.00,'wilson,katherine','3272657195432704501','Nurse Manager',0),(407,'clements,jennifer a',3.20,'clements,jennifer','3272657195432704501','Radiology Tech',6),(408,'Alvarado,Jose A',0.00,'alvarado,jose','3511292162159714121','Radiology Tech',0),(409,'Amboree,Darnisha ',0.00,'amboree,darnisha','3511292162159714121','Registration',0),(410,'Ayala,Elia E',0.00,'ayala,elia','3511292162159714121','ER Tech',0),(411,'Baez,Victoria M',0.00,'baez,victoria','3511292162159714121','Staff Nurse',0),(412,'Brewers,Gina ',0.00,'brewers,gina','3511292162159714121','Staff Nurse',0),(413,'Estrada,Anastasia ',0.00,'estrada,anastasia','3511292162159714121','ER Tech',0),(414,'Flores,Leslie A',0.50,'flores,leslie','3511292162159714121','Registration',1),(415,'Franklin,Jacqueline ',1.00,'franklin,jacqueline','3511292162159714121','Radiology Tech',1),(416,'Gamez,Natalie S',0.00,'gamez,natalie','3511292162159714121','Registration',0),(417,'Grissom,Reagan ',0.00,'grissom,reagan','3511292162159714121','Radiology Tech',0),(418,'Hamilton,KeAire Brene',0.00,'hamilton,keaire,brene','3511292162159714121','Registration',0),(419,'Harrison,Ericka C',0.00,'harrison,ericka','3511292162159714121','Facility Manager',0),(420,'Heredia,Rafael V',0.00,'heredia,rafael','3511292162159714121','Radiology Tech',0),(421,'Hsu,Chih-Hsiang ',0.00,'hsu,chih-hsiang','3511292162159714121','Staff Nurse',0),(422,'Jolicoeur-Bolden,Yasmina E',0.00,'jolicoeur-bolden,yasmina','3511292162159714121','ER Tech',0),(423,'Le,Lai ',0.00,'lai','3511292162159714121','ER Tech',0),(424,'Makosa,Iwona ',0.00,'makosa,iwona','3511292162159714121','Radiology Tech',0),(425,'Marshall,Marquieta R',0.00,'marshall,marquieta','3511292162159714121','Staff Nurse',0),(426,'Mathew,Jeff ',0.00,'mathew,jeff','3511292162159714121','Staff Nurse',0),(427,'Meagher,Brittany ',0.00,'meagher,brittany','3511292162159714121','ER Tech',0),(428,'Miller,Joshua B',0.00,'miller,joshua','3511292162159714121','Staff Nurse',0),(429,'Momin,Naureen N',1.50,'momin,naureen','3511292162159714121','Staff Nurse',2),(430,'Moore,Churiah D',0.50,'moore,churiah','3511292162159714121','Staff Nurse',1),(431,'Paredes,Olivia ',0.50,'paredes,olivia','3511292162159714121','ER Tech',1),(432,'ROMAN,BRENDA ',2.00,'roman,brenda','3511292162159714121','Registration',2),(433,'Ruiz,Jose Erasmo',0.00,'ruiz,jose,erasmo','3511292162159714121','Radiology Tech',0),(434,'Saldivar,Dee ',2.50,'saldivar,dee','3511292162159714121','Registration',3),(435,'Sanders,Sala N',0.00,'sanders,sala','3511292162159714121','Staff Nurse',0),(436,'Shriver,Dawn E',0.00,'shriver,dawn','3511292162159714121','Staff Nurse',0),(437,'Stepherson,Dion D',1.50,'stepherson,dion','3511292162159714121','Radiology Tech',2),(438,'Tolliver,Joshua R',0.00,'tolliver,joshua','3511292162159714121','ER Tech',0),(439,'Torres,Elizabeth A',6.00,'torres,elizabeth','3511292162159714121','Registration',7),(440,'Trevino,Norma M',3.00,'trevino,norma','3511292162159714121','ER Tech',3),(441,'Twilley-Pinkston,Carletta C',0.00,'twilley-pinkston,carletta','3511292162159714121','Radiology Tech',0),(442,'Vickers,Jessica L',0.00,'vickers,jessica','3511292162159714121','Staff Nurse',0),(443,'BURK,TAMMY ',0.00,'burk,tammy','6521947413723274945','Staff Nurse',0),(444,'Bagwell,Sadie B',0.00,'bagwell,sadie','6521947413723274945','Staff Nurse',0),(445,'Bernal,Theresa A',0.00,'bernal,theresa','6521947413723274945','Staff Nurse',0),(446,'Branum,Craig M',0.00,'branum,craig','6521947413723274945','Staff Nurse',0),(447,'Burcham,Benjamin E',0.00,'burcham,benjamin','6521947413723274945','ER Tech',0),(448,'Castillo,Cory S',0.00,'castillo,cory','6521947413723274945','ER Tech',0),(449,'Creswell,Keira L',0.00,'creswell,keira','6521947413723274945','Staff Nurse',0),(450,'Cronin,Jared A',0.00,'cronin,jared','6521947413723274945','ER Tech',0),(451,'Cunningham, Meagan',0.00,'cunningham,meagan','6521947413723274945','Staff Nurse',0),(452,'Fierro,Tabitha O',0.33,'fierro,tabitha','6521947413723274945','Radiology Tech',1),(453,'Franco,Jessica ',0.00,'franco,jessica','6521947413723274945','Staff Nurse',0),(454,'Gibbs,Erika M',0.00,'gibbs,erika','6521947413723274945','Staff Nurse',0),(455,'Gonzales,Maria D',0.00,'gonzales,maria','6521947413723274945','Registration',0),(456,'Guerrero,Manuel',0.00,'guerrero,manuel','6521947413723274945','Assistant Facility Manager',0),(457,'Hossle,Ashley R',0.00,'hossle,ashley','6521947413723274945','Registration',0),(458,'Kelly,Randi M',0.00,'kelly,randi','6521947413723274945','Radiology Tech',0),(459,'Linley,Bethany S',0.00,'linley,bethany','6521947413723274945','Staff Nurse',0),(460,'Loera,Magali Magali',0.00,'loera,magali,magali','6521947413723274945','Radiology Tech',0),(461,'Macias,Araceli B',0.00,'macias,araceli','6521947413723274945','Staff Nurse',0),(462,'Marin,Ector ',0.83,'marin,ector','6521947413723274945','ER Tech',2),(463,'McDowell,Shanna M',0.00,'mcdowell,shanna','6521947413723274945','Registration',0),(464,'Mcquitty,Theresa G',0.00,'mcquitty,theresa','6521947413723274945','Nurse Manager',0),(465,'Montoya,Lisa M',0.83,'montoya,lisa','6521947413723274945','Staff Nurse',2),(466,'Ordonez,Rachel Christina',0.00,'ordonez,rachel,christina','6521947413723274945','LVN',0),(467,'Ordunez,Beatrice ',0.00,'ordunez,beatrice','6521947413723274945','Radiology Tech',0),(468,'Parks,Lisa M',0.83,'parks,lisa','6521947413723274945','Registration',2),(469,'Patton,Christopher L',0.00,'patton,christopher','6521947413723274945','Radiology Tech',0),(470,'Pena,Adrianna Y',0.00,'pena,adrianna','6521947413723274945','Staff Nurse',0),(471,'Ramirez,David F',0.00,'ramirez,david','6521947413723274945','Staff Nurse',0),(472,'Ramirez,Senaida M',0.00,'ramirez,senaida','6521947413723274945','Staff Nurse',0),(473,'Reyenga,Yvonne B',0.00,'reyenga,yvonne','6521947413723274945','Staff Nurse',0),(474,'Rodriguez,Nancy A',0.00,'rodriguez,nancy','6521947413723274945','Registration',0),(475,'Sanchez,Jeremy ',0.00,'sanchez,jeremy','6521947413723274945','Radiology Tech',0),(476,'Tubbs,Marcus C',0.00,'tubbs,marcus','6521947413723274945','Radiology Tech',0),(477,'Urquidi,Arbelia ',0.00,'urquidi,arbelia','6521947413723274945','Staff Nurse',0),(478,'Vidana,Eliza ',0.00,'vidana,eliza','6521947413723274945','ER Tech',0),(479,'Weber,Meghan E',0.00,'weber,meghan','6521947413723274945','Radiology Tech',0),(480,'Williams,Nancy T',0.00,'williams,nancy','6521947413723274945','Staff Nurse',0),(481,'flores,Pete c',0.00,'flores,pete','6521947413723274945','ER Tech',0),(482,'Apperley,Mildred R',0.00,'apperley,mildred','8626688543755174284','Staff Nurse',0),(483,'Bell,John R',1.34,'bell,john','8626688543755174284','Staff Nurse',4),(484,'Blevins,Valerie ',0.00,'blevins,valerie','8626688543755174284','Radiology Tech',0),(485,'Brooks,Billy D',0.00,'brooks,billy','8626688543755174284','Staff Nurse',0),(486,'Burton,Ashley F',0.00,'burton,ashley','8626688543755174284','Registration',0),(487,'Cogburn,Jennifer K',2.16,'cogburn,jennifer','8626688543755174284','Staff Nurse',4),(488,'Coley,Christina ',0.00,'coley,christina','8626688543755174284','Radiology Tech',0),(489,'Davidson,Tiffany D',0.33,'davidson,tiffany','8626688543755174284','Registration',1),(490,'Diggs,Jennifer A',2.16,'diggs,jennifer','8626688543755174284','Registration',4),(491,'Epley,Tabitha J',0.00,'epley,tabitha','8626688543755174284','Staff Nurse',0),(492,'Estes,Brandy E',0.00,'estes,brandy','8626688543755174284','Staff Nurse',0),(493,'Garcia,Jenci L',0.50,'garcia,jenci','8626688543755174284','Assistant Facility Manager',1),(494,'Gordon,JoBeth ',0.00,'gordon,jobeth','8626688543755174284','Radiology Tech',0),(495,'Green,Brooke D',0.33,'green,brooke','8626688543755174284','Radiology Tech',1),(496,'Hicks,Sherri W',0.00,'hicks,sherri','8626688543755174284','Staff Nurse',0),(497,'Hisaw,Kanyon B',0.00,'hisaw,kanyon','8626688543755174284','Radiology Tech',0),(498,'Kelley,Ashley N',0.00,'kelley,ashley','8626688543755174284','Radiology Tech',0),(499,'Krogman,Courtney D',0.00,'krogman,courtney','8626688543755174284','Radiology Tech',0),(500,'Leonard,Matthew S',0.00,'leonard,matthew','8626688543755174284','Radiology Tech',0),(501,'McClanahan,Jamie G',0.00,'mcclanahan,jamie','8626688543755174284','Director of Nursing',0),(502,'Moradel,Diana M',0.00,'moradel,diana','8626688543755174284','Registration',0),(503,'Parks,Hollye L',0.00,'parks,hollye','8626688543755174284','Staff Nurse',0),(504,'REILY,SKYLER B',0.00,'reily,skyler','8626688543755174284','Registration',0),(505,'Rangel,Tammy A',0.33,'rangel,tammy','8626688543755174284','Staff Nurse',1),(506,'Richardson,Alicia M',0.00,'richardson,alicia','8626688543755174284','Registration',0),(507,'Smith,Victoria D',0.00,'smith,victoria','8626688543755174284','Staff Nurse',0),(508,'Wallace,Vonda L',0.00,'wallace,vonda','8626688543755174284','Staff Nurse',0),(509,'Westbrooks,Erica A',0.00,'westbrooks,erica','8626688543755174284','Staff Nurse',0),(510,'Wyrick,Karly R',0.00,'wyrick,karly','8626688543755174284','Registration',0),(511,'Adams,Jessica S',1.00,'adams,jessica','8679688254631342173','Nurse Manager',1),(512,'Avina,Evelyn Michelle',0.00,'avina,evelyn,michelle','8679688254631342173','Registration',0),(513,'Azizi,Karen ',0.00,'azizi,karen','8679688254631342173','Staff Nurse',0),(514,'Correa,Natalia I',8.00,'correa,natalia','8679688254631342173','Radiology Tech',14),(515,'Dair,Therisa Joy',4.16,'dair,therisa,joy','8679688254631342173','Registration',6),(516,'Del Rio Carrasco,Maryann ',0.50,'del,rio,carrasco,maryann','8679688254631342173','Registration',1),(517,'Duncan,Lindsey E',1.00,'duncan,lindsey','8679688254631342173','Staff Nurse',1),(518,'Hubbard,Blake ',5.66,'hubbard,blake','8679688254631342173','Staff Nurse',10),(519,'Jackson-Robinson,Robbin ',0.00,'jackson-robinson,robbin','8679688254631342173','Radiology Tech',0),(520,'Jones,Duke K',0.00,'jones,duke','8679688254631342173','Staff Nurse',0),(521,'Jordan,Nicole Z',0.00,'jordan,nicole','8679688254631342173','Registration',0),(522,'Kamona,Mubita ',0.00,'kamona,mubita','8679688254631342173','Radiology Tech',0),(523,'Le,Son V',1.83,'son','8679688254631342173','Radiology Tech',4),(524,'Malveaux,Delicia M',3.66,'malveaux,delicia','8679688254631342173','Registration',7),(525,'McKay,Marvin A',0.00,'mckay,marvin','8679688254631342173','Radiology Tech',0),(526,'Ogbonna,Cheney Ikechi',0.66,'ogbonna,cheney,ikechi','8679688254631342173','Radiology Tech',2),(527,'Patel,Purvika A',0.33,'patel,purvika','8679688254631342173','Registration',1),(528,'Perez,Stephanie M',10.00,'perez,stephanie','8679688254631342173','Registration',16),(529,'Preston,Chanell Y',0.00,'preston,chanell','8679688254631342173','Registration',0),(530,'Reyes,Rolando Salzar',0.00,'reyes,rolando,salzar','8679688254631342173','Staff Nurse',0),(531,'Valyan,Katrina ',2.16,'valyan,katrina','8679688254631342173','Staff Nurse',4),(532,'Vuong,Waldo J',0.00,'vuong,waldo','8679688254631342173','Radiology Tech',0),(533,'getahun,seble F',0.00,'getahun,seble','8679688254631342173','Radiology Tech',0),(534,'Acosta, Christopher',0.00,'acosta,christopher','8918455867446117794','ER Tech',0),(535,'Anthony,Shobha ',0.00,'anthony,shobha','8918455867446117794','Staff Nurse',0),(536,'Ayala,Shaylene M',0.00,'ayala,shaylene','8918455867446117794','ER Tech',0),(537,'Barnett,Nicole R',0.00,'barnett,nicole','8918455867446117794','ER Tech',0),(538,'Blohm,Julia A',0.00,'blohm,julia','8918455867446117794','Radiology Tech',0),(539,'Bortot,Pamela E',0.00,'bortot,pamela','8918455867446117794','Staff Nurse',0),(540,'Bright,Aminata A',0.00,'bright,aminata','8918455867446117794','Registration',0),(541,'Brown,Amy E',0.00,'brown,amy','8918455867446117794','Radiology Tech',0),(542,'Brown,Lonnie ',0.00,'brown,lonnie','8918455867446117794','Radiology Tech',0),(543,'Buettner,Trisha ',0.66,'buettner,trisha','8918455867446117794','Radiology Tech',2),(544,'Cruz,Karen A',0.66,'cruz,karen','8918455867446117794','Registration',2),(545,'De Leon,Maynard Castanos',0.00,'leon,maynard,castanos','8918455867446117794','Staff Nurse',0),(546,'Delgado,Marcia M',0.00,'delgado,marcia','8918455867446117794','ER Tech',0),(547,'Fallacara-Pailes,Nichole M',0.00,'fallacara-pailes,nichole','8918455867446117794','Staff Nurse',0),(548,'Garriel,Raymund ',0.00,'garriel,raymund','8918455867446117794','Staff Nurse',0),(549,'Harrison,Nicole J',0.00,'harrison,nicole','8918455867446117794','Radiology Tech',0),(550,'Isibor,Joseph P',0.00,'isibor,joseph','8918455867446117794','Staff Nurse',0),(551,'Kuruvilla,Thomas ',0.00,'kuruvilla,thomas','8918455867446117794','Radiology Tech',0),(552,'Martinez Yanez,Veronica ',0.00,'martinez,yanez,veronica','8918455867446117794','Registration',0),(553,'Mathew,Jessica Ann',0.00,'mathew,jessica,ann','8918455867446117794','Staff Nurse',0),(554,'Mikeska,Staci L',0.00,'mikeska,staci','8918455867446117794','ER Tech',0),(555,'Moya,Brenda E',1.00,'moya,brenda','8918455867446117794','Registration',1),(556,'Munoz Jr,Gustavo ',0.00,'munoz,gustavo','8918455867446117794','Radiology Tech',0),(557,'Nguyen,Thanh T',0.66,'nguyen,thanh','8918455867446117794','Registration',2),(558,'Penunuri,Alyssa ',2.66,'penunuri,alyssa','8918455867446117794','Registration',5),(559,'Pickersgill,Valinceia A',0.00,'pickersgill,valinceia','8918455867446117794','Registration',0),(560,'Ricasio,John E',0.00,'ricasio,john','8918455867446117794','ER Tech',0),(561,'Robinson,Ellen ',0.00,'robinson,ellen','8918455867446117794','ER Tech',0),(562,'Treadway,Andrew H',0.00,'treadway,andrew','8918455867446117794','Nurse Manager',0),(563,'Vance,Kelly A',0.66,'vance,kelly','8918455867446117794','Staff Nurse',2),(564,'Warner,Dauwald H',0.00,'warner,dauwald','8918455867446117794','Radiology Tech',0),(565,'Watkins,Sibienne Renne',0.00,'watkins,sibienne,renne','8918455867446117794','Registration',0),(566,'Wyatt,Ariel T',0.00,'wyatt,ariel','8918455867446117794','Registration',0),(567,'kunnampadavil,shawn A',1.66,'kunnampadavil,shawn','8918455867446117794','Staff Nurse',4); /*!40000 ALTER TABLE `name_extractor_staff` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_customreply` -- DROP TABLE IF EXISTS `review_customreply`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_customreply` ( `id` int(11) NOT NULL AUTO_INCREMENT, `reply` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `reply_category` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `reply_star` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_customreply` -- LOCK TABLES `review_customreply` WRITE; /*!40000 ALTER TABLE `review_customreply` DISABLE KEYS */; INSERT INTO `review_customreply` VALUES (1,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','staff',5),(2,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','staff',5),(3,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','staff',5),(4,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','staff',5),(5,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','staff',5),(6,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','staff',5),(7,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','staff',5),(8,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','staff',5),(9,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','staff',5),(10,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','staff',5),(11,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','staff',5),(12,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','facility',5),(13,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','facility',5),(14,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','facility',5),(15,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','facility',5),(16,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','facility',5),(17,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','facility',5),(18,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','facility',5),(19,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','facility',5),(20,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','facility',5),(21,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','facility',5),(22,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','facility',5),(23,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','facility',5),(24,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','kids',5),(25,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','kids',5),(26,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','kids',5),(27,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','kids',5),(28,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','kids',5),(29,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope [PERSON] is feeling better!','kids',5),(30,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','quick',5),(31,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','quick',5),(32,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','quick',5),(33,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','general_review',5),(34,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','general_review',5),(35,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','general_review',5),(36,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','open_24',5),(37,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','open_24',5),(38,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','open_24',5),(39,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','open_24',5),(40,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','open_24',5),(41,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','open_24',5),(42,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback.','open_24',5),(43,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us.','open_24',5),(44,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','open_24',5),(45,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','continuous_visit',5),(46,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','continuous_visit',5),(48,'Thanks for the 5 star review%s!','no_comment',5),(49,'Thank you for the five-star rating%s! We appreciate your feedback.','no_comment',5),(50,'Thank you so much%s for your great rating!','no_comment',5),(51,'We appreciate the five-star rating%s!','no_comment',5),(52,'Thank you for the five-star rating%s. We appreciate it.','no_comment',5),(53,'Thank you so much for your feedback%s! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','no_comment',5),(54,'Thank you%s for your five star review and for trusting us with your care!','no_comment',5),(55,'Thank you%s for the 5 star review. We are glad you had a good experience. Feel Better!','no_comment',5),(56,'Thank you for the five-star rating%s. We appreciate the feedback, and appreciate you choosing SignatureCare.','no_comment',5),(57,'Thank you for the great review%s! We appreciate your positive feedback about SignatureCare ER. We hope you are feeling better.','no_comment',5),(58,'Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','four_star',4),(59,'Thank you so much for your nice review, [NAME]. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','four_star',4),(60,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','three_star',3),(61,'Thank you so much for your feedback. I hope you will let us know why you gave us a three-star rating so that we can learn from our mistakes! We always want our customers to be 100% satisfied, so please let us know what we could have done better at info@ercare24.com. Thank you again for your time and feedback.','three_star',3),(62,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','Negative-Details',1),(63,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','Negative_Service',1),(64,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','Negative_Service',1),(65,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','Negative_Billing',1),(66,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','Negative',1); /*!40000 ALTER TABLE `review_customreply` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_reply` -- DROP TABLE IF EXISTS `review_reply`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_reply` ( `id` int(11) NOT NULL AUTO_INCREMENT, `replied_text` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `create_time` datetime(6) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23087 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_reply` -- LOCK TABLES `review_reply` WRITE; /*!40000 ALTER TABLE `review_reply` DISABLE KEYS */; INSERT INTO `review_reply` VALUES (243,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-06 07:41:15.457000'),(244,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-06 07:41:05.374000'),(245,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-06 07:40:42.258000'),(246,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-06 07:40:34.160000'),(247,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-06 07:40:22.540000'),(248,'We want everyone who visits us to feel like family. It\'s great to hear that our team made your mom feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-06 07:40:09.078000'),(249,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-06 07:39:38.357000'),(250,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-06 07:24:45.593000'),(251,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us.','2020-01-06 07:20:47.670000'),(252,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-06 07:20:02.831000'),(253,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-06 07:19:44.656000'),(254,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-05 06:51:41.358000'),(255,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for your wife, and are so glad to hear that she is feeling better. Thank you for choosing SignatureCare!','2020-01-05 06:51:24.625000'),(256,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-05 06:50:51.992000'),(257,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-05 06:50:32.026000'),(258,'We appreciate your great rating, Adalberto!','2020-01-05 06:50:08.374000'),(259,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope your fiance is feeling well.','2020-01-05 06:49:40.275000'),(260,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-05 06:49:01.272000'),(261,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-05 06:48:52.137000'),(263,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-05 06:48:30.831000'),(264,'Thank you so much for your great rating, Anoop!','2020-01-05 06:48:11.702000'),(265,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-05 06:47:47.780000'),(266,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-05 06:47:37.658000'),(267,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-02 05:41:36.021000'),(268,'Hi Stacey! We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-01-02 05:39:45.953000'),(269,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your kiddo feels better soon!','2020-01-02 05:31:18.902000'),(270,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2020-01-02 05:30:54.036000'),(271,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-01 07:41:28.487000'),(272,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-01 07:41:12.405000'),(273,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-01 07:40:42.626000'),(274,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-01 07:40:59.334000'),(275,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-01 07:40:31.186000'),(276,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare! We hope your mom is feeling better.','2020-01-01 07:40:13.719000'),(277,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2020-01-01 07:39:24.238000'),(278,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-01 07:39:13.284000'),(279,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-01 07:39:04.198000'),(280,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-01 07:38:51.926000'),(281,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-01 07:38:20.721000'),(282,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-01 07:38:12.078000'),(283,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-31 04:57:31.840000'),(284,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-31 04:57:19.186000'),(285,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-31 04:57:09.806000'),(286,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-31 04:57:02.364000'),(287,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-31 04:56:49.870000'),(288,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-31 04:56:39.755000'),(289,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-29 06:54:37.413000'),(290,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-29 06:54:28.889000'),(291,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-29 06:54:17.708000'),(292,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-29 06:54:07.995000'),(293,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-12-29 06:53:57.985000'),(294,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-12-29 06:53:45.306000'),(295,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-29 06:53:34.557000'),(296,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-29 06:53:26.954000'),(297,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-29 06:53:17.696000'),(298,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-29 06:53:05.761000'),(299,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-29 06:52:53.681000'),(300,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-29 06:52:43.392000'),(301,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-29 06:52:18.849000'),(302,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-26 08:15:38.101000'),(303,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-26 08:15:29.496000'),(304,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-12-26 08:15:17.499000'),(305,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-26 08:14:53.157000'),(306,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-26 08:14:46.268000'),(307,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-26 08:14:38.125000'),(308,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-26 08:14:17.672000'),(309,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-26 08:14:05.343000'),(310,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. Wish you a great Christmas and Happy New Year!','2019-12-24 07:08:08.963000'),(311,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-24 07:07:02.659000'),(312,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-24 07:06:51.622000'),(313,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-24 07:06:21.852000'),(314,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-24 07:06:11.627000'),(315,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-24 07:05:57.451000'),(316,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-24 07:05:42.948000'),(317,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-12-24 07:05:31.277000'),(318,'We appreciate your great rating, Danny!','2019-12-23 08:16:42.006000'),(319,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-23 08:16:19.104000'),(320,'Thank you so much for your nice review, Leonnya. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-12-23 08:16:01.577000'),(321,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-23 08:15:40.901000'),(322,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-22 08:49:34.294000'),(323,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2019-12-22 08:49:25.376000'),(324,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-12-22 08:49:17.236000'),(325,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-22 08:49:02.872000'),(326,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-22 08:48:57.749000'),(327,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-22 08:48:51.686000'),(328,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-22 08:48:44.834000'),(329,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-22 08:48:33.054000'),(330,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-22 08:48:22.128000'),(331,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-22 08:48:09.732000'),(332,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-22 08:47:54.061000'),(333,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-22 08:47:45.457000'),(334,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-22 08:46:41.070000'),(335,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-22 08:45:19.240000'),(336,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-19 06:23:34.036000'),(337,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-12-19 06:23:13.659000'),(338,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-19 06:23:04.465000'),(339,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-17 06:27:09.145000'),(340,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-17 06:26:44.272000'),(341,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-17 06:14:25.659000'),(342,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-17 06:14:02.822000'),(343,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-15 07:17:55.889000'),(344,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. Hope your wife is feeling better.','2019-12-15 07:17:32.906000'),(345,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 07:17:09.911000'),(346,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 07:16:47.931000'),(347,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-15 07:16:28.209000'),(348,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your friend is feeling well.','2019-12-15 07:16:11.441000'),(349,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 07:15:48.090000'),(350,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 07:15:30.889000'),(351,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 07:15:15.280000'),(352,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 07:15:04.298000'),(354,'We appreciate your great rating! Thank you for choosing SignatureCare!!','2019-12-12 13:12:08.962000'),(355,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-15 07:14:33.558000'),(356,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 07:14:12.283000'),(357,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 07:13:57.979000'),(358,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 07:13:33.303000'),(359,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-12-15 07:13:22.989000'),(360,'Thank you so much for your nice review. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-12-15 07:13:06.001000'),(361,'Thank you so much for your nice review, Rosalyn. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-15 07:12:42.746000'),(362,'Thank you so much for your great rating!','2019-12-15 07:12:09.852000'),(363,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 07:11:50.894000'),(364,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-05 07:14:12.778000'),(365,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-27 06:48:40.674000'),(366,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-27 06:48:28.018000'),(367,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-26 05:47:32.465000'),(368,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-11-26 05:47:22.641000'),(369,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-11-26 05:46:50.680000'),(370,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-26 05:46:39.337000'),(371,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-11 08:02:10.879000'),(372,'Thank you so much for your great rating, Kat!','2019-11-24 07:08:36.122000'),(373,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-24 07:08:12.712000'),(374,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-24 07:07:40.807000'),(375,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-24 07:07:18.297000'),(376,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-21 06:59:08.178000'),(377,'We appreciate the great rating you gave us, Mathis!','2019-11-21 06:58:32.282000'),(378,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-21 06:57:40.341000'),(379,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-20 06:17:53.648000'),(380,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-20 06:17:34.437000'),(381,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-18 05:58:08.236000'),(382,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-17 07:20:08.810000'),(383,'We appreciate your great rating, Aranda!','2019-11-11 07:41:35.107000'),(384,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-11-11 07:40:56.006000'),(385,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-06 08:07:46.576000'),(386,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-06 08:06:17.320000'),(387,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-10-09 08:29:21.438000'),(388,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-03 06:36:14.571000'),(389,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-31 09:55:11.942000'),(390,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-31 09:54:23.588000'),(391,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-30 05:48:37.862000'),(392,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-30 05:48:18.880000'),(393,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-27 08:39:41.653000'),(394,'Thank you, Jorge, for your great rating!','2019-10-23 06:49:10.263000'),(395,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-21 07:10:19.254000'),(396,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-20 06:46:03.063000'),(397,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your husband at ease and provide him with the best care possible. We hope he is feeling better.','2019-10-20 06:45:52.722000'),(398,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-20 06:44:58.065000'),(399,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-20 06:44:35.727000'),(400,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-09-11 07:44:20.995000'),(401,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-10-15 06:47:59.254000'),(402,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-10-13 07:38:01.365000'),(403,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-10-13 07:37:21.090000'),(404,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-10-09 08:29:00.891000'),(405,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-09 08:28:44.761000'),(406,'Thank you so much for your five star rating, Rola!','2019-10-09 08:28:23.702000'),(407,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-01 06:24:52.649000'),(408,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-10-01 06:24:33.597000'),(409,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-09-29 06:13:34.011000'),(410,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-29 06:13:23.394000'),(411,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-29 06:13:13.416000'),(412,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-29 06:12:57.851000'),(413,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-09-29 06:12:41.211000'),(414,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-25 06:10:50.327000'),(415,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-09-22 06:20:00.823000'),(416,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-09-22 06:19:27.567000'),(417,'Thanks for leaving a review, Gabriel! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2019-09-22 06:18:11.245000'),(418,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-09-19 09:25:45.944000'),(419,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-24 06:47:25.743000'),(420,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-16 11:31:37.048000'),(421,'We want our patients to feel like family. We are happy to hear that our staff made you feel like home. Thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-16 11:31:23.830000'),(422,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-09-15 05:11:38.477000'),(423,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-09-15 05:11:15.082000'),(424,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-15 05:10:45.993000'),(425,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-15 05:09:05.910000'),(426,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-15 05:10:28.163000'),(427,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-09-15 05:09:56.674000'),(428,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-15 05:09:41.106000'),(429,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-09-15 05:09:27.416000'),(430,'Thank you so much for your review and rating!','2019-09-15 05:07:55.958000'),(431,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-15 05:07:26.575000'),(432,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-11 08:02:30.308000'),(433,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-11 08:02:20.206000'),(434,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-11 08:02:01.790000'),(435,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-11 08:01:21.851000'),(436,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-11 08:01:12.358000'),(437,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-11 08:00:58.618000'),(438,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-11 08:00:43.626000'),(439,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-09-11 08:00:24.375000'),(440,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-11 08:00:09.573000'),(441,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-11 07:59:57.254000'),(442,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-09-11 07:59:45.336000'),(443,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-11 07:59:31.713000'),(444,'Thank you so much for your feedback! Our goal is to always provide the abest care. Thank you for choosing SignatureCare.','2019-09-11 07:59:18.623000'),(445,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-11 07:58:57.652000'),(446,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-11 07:58:42.571000'),(447,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-11 07:58:26.969000'),(448,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-09-11 07:53:55.769000'),(449,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-11 07:51:03.352000'),(450,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-09-11 07:43:59.883000'),(451,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your mom feels well.','2019-09-11 07:28:40.138000'),(452,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-11 07:27:55.420000'),(453,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-08-28 05:56:23.695000'),(454,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-27 05:01:31.003000'),(455,'Thank you so much for your feedback. We appreciate the great rating you gave us, Karolina!','2019-08-25 05:33:54.411000'),(456,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-08-19 05:55:39.594000'),(457,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 06:34:24.832000'),(458,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-18 06:34:13.146000'),(459,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-18 06:33:57.868000'),(460,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-08-18 06:33:09.789000'),(461,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 06:32:32.455000'),(462,'Thank you so much for rating us five star, Amyl!','2019-08-18 06:32:15.145000'),(463,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-18 06:31:53.950000'),(464,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-08-18 06:31:34.338000'),(465,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-08-04 05:41:19.224000'),(466,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-04 05:44:55.546000'),(467,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-04 05:44:22.794000'),(468,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-08-04 05:43:58.489000'),(469,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-08-04 05:43:34.209000'),(470,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-04 05:43:15.691000'),(471,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-08-04 05:42:57.599000'),(472,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-04 05:42:31.631000'),(473,'We appreciate the great rating you gave us, Lampley!','2019-08-04 05:42:13.022000'),(474,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-01 03:40:27.065000'),(475,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-07-31 06:52:52.314000'),(476,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. Thanks again for the great review!','2019-07-31 06:52:33.407000'),(477,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-07-28 07:21:40.171000'),(478,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-07-28 07:21:24.601000'),(479,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-28 07:20:26.312000'),(480,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-24 06:43:57.454000'),(481,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-24 06:43:47.229000'),(482,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better. ','2019-07-23 05:40:24.667000'),(483,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-23 05:40:45.556000'),(484,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare! Hope your cousin feels better soon.','2019-07-22 07:32:28.141000'),(485,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-07-21 06:19:00.706000'),(486,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-21 06:18:07.816000'),(487,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-21 06:17:41.574000'),(488,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-07-17 06:21:54.318000'),(489,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-07-17 06:21:26.082000'),(490,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-07-07 07:33:26.473000'),(491,'Thank you for your five star rating, Ageia!','2019-06-25 07:47:39.822000'),(492,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously. \n','2019-06-24 14:05:01.725000'),(493,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of your kiddo.','2019-06-24 05:48:37.330000'),(494,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-24 05:47:58.554000'),(495,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-20 04:38:04.802000'),(496,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-17 06:37:36.383000'),(497,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-16 06:02:58.839000'),(498,'Thank you for your rating, Shari!','2019-06-12 06:28:26.173000'),(499,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-12 06:27:58.852000'),(500,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-12 06:27:29.786000'),(501,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-05-20 14:56:31.342000'),(502,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-16 06:39:30.699000'),(503,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2019-05-26 06:29:31.708000'),(504,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-23 06:35:26.932000'),(505,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-05-16 06:40:07.633000'),(506,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-05-12 04:57:29.782000'),(507,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-05-12 04:57:05.692000'),(508,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-12 04:56:41.964000'),(509,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 09:36:28.207000'),(510,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-05-02 09:36:05.040000'),(511,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you both are feeling better!','2019-05-02 09:35:31.105000'),(512,'\nOur team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-26 11:06:59.852000'),(513,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-04-26 11:06:05.321000'),(514,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-04-22 06:43:11.674000'),(515,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-04-22 06:42:18.821000'),(516,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-04-17 07:11:35.841000'),(517,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care.Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-04-16 06:08:25.173000'),(518,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-04-11 05:43:19.824000'),(519,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-04-08 15:16:56.252000'),(520,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-04-07 06:01:30.306000'),(521,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-04-07 05:59:53.787000'),(522,'Thank you for your rating, Julio!','2019-04-07 05:58:44.134000'),(523,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-03-31 06:48:17.331000'),(524,'We sincerely appreciate your continued trust. We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-03-31 06:47:52.011000'),(525,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-03-31 06:44:46.350000'),(526,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-03-31 06:44:27.468000'),(527,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-04-01 19:04:17.564000'),(528,'Thank you so much for your rating, Nick. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-03-31 06:42:17.051000'),(529,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-03-24 07:37:15.862000'),(530,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-24 07:36:53.048000'),(531,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-03-24 07:35:49.727000'),(532,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-03-24 07:35:13.666000'),(533,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-03-24 07:34:43.842000'),(534,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-03-18 06:43:35.318000'),(535,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-03-18 06:42:51.631000'),(536,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know.','2019-03-18 06:41:47.487000'),(537,'We are glad to learn that you see the benefits of an emergency room over the hospital. SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-03-10 13:30:09.560000'),(538,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-03-10 07:44:58.119000'),(539,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating, John!','2019-03-10 07:43:33.839000'),(540,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-03-03 11:26:04.147000'),(541,'Thank you for the 5 star, Barbara!','2019-03-03 11:24:46.720000'),(542,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-26 12:46:45.259000'),(543,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-02-25 12:36:03.856000'),(544,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-02-25 12:38:21.997000'),(545,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-02-24 12:07:26.860000'),(546,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-02-24 12:08:49.509000'),(547,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-24 12:08:26.765000'),(548,'Thank you for leaving us a 5 star, Antionette!','2019-02-19 14:10:39.602000'),(549,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-02-24 12:11:58.752000'),(550,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-13 12:28:42.665000'),(551,'Thank you so much for leaving a 5 star, Nadia!','2019-02-11 12:49:09.965000'),(552,'Thanks for the 5 star, Dana!','2019-02-11 12:47:55.347000'),(553,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-11 12:48:26.054000'),(554,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-11 12:48:52.572000'),(555,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-06 13:27:10.005000'),(556,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. And we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the nice review and a great rating.','2019-02-04 13:54:24.104000'),(557,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-02-03 13:44:08.846000'),(558,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-01-28 09:19:17.429000'),(559,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-28 09:18:02.498000'),(560,'We want everyone who walks through our doors to feel like a VIP. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great recommendation you gave us. Thank you for choosing SignatureCare! ','2019-01-24 07:56:53.539000'),(561,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-20 12:07:55.899000'),(562,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-20 12:07:02.406000'),(563,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-17 06:59:33.020000'),(564,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-01-16 13:56:52.296000'),(565,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-16 13:55:58.404000'),(566,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-16 13:55:36.050000'),(567,'Our doctors and nurses make us proud every day. Thank you for your kind words. Our goal is to get you in and out quickly and back to good health. We hope you are feeling better! Thank you for choosing SignatureCare!','2019-01-15 11:16:37.015000'),(568,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-14 09:43:21.276000'),(569,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-14 09:43:49.507000'),(570,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-14 09:44:31.981000'),(571,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-11 17:43:00.738000'),(572,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-11 17:43:17.834000'),(573,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-09 07:57:13.040000'),(574,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-08 14:21:41.814000'),(575,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-07 16:56:37.085000'),(576,'What an amazing review, Geoffry, thank you. At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-01-04 16:42:22.313000'),(577,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-02 16:25:28.244000'),(578,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-02 16:25:13.485000'),(579,'We apologize that you had this experience, Jeanesia, and would like to make this right. Would you mind emailing us with the time and date of your visit to info@ercare24.com so that we can look into this further? We always strive to provide the best care to our patients and want to fix this for you.','2019-01-01 17:35:36.381000'),(580,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-02 16:24:40.057000'),(581,'Caitlin, we are so sorry you had this experience. Would you mind emailing us with the time and date of your visit to info@ercare24.com so that we can look into this further? We always strive to provide the best care to our patients and would like to make this right.','2019-01-01 17:33:50.091000'),(582,'Hello, Kelly. First off, I want to say that I am deeply sorry for your loss. I have passed on your information to my superiors and we are working to mediate the situation. If you feel comfortable, would you mind reaching out to me at mhurwitt@ercare24.com so that I can get more details and we can try to make this right? Once again, our deepest apologies and we will do everything in our power to make this right. ','2018-12-27 18:03:34.885000'),(583,'Thank you so much for your feedback! Our goal is to always provide the best care, and we will pass on your thanks to our staff. Thank you for choosing SignatureCare.','2018-12-13 21:29:48.671000'),(584,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2018-12-11 23:20:03.467000'),(585,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2018-12-11 23:20:16.424000'),(586,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-12-10 16:27:47.201000'),(587,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2018-12-05 16:24:50.416000'),(588,'Thank you for your kind review, Patrice!','2018-12-04 16:12:16.823000'),(589,'You are right -- NO ONE likes going to see an ER! But we aim to make your visit as pleasant as possible. Our team works hard to treat each patient like a VIP, so it\'s great to hear that this was your experience with us. Thank you for taking the time to write a review. We appreciate your feedback and hope you are feeling better. ','2018-11-28 16:15:39.499000'),(590,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-11-19 17:53:19.129000'),(591,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2018-11-12 16:17:08.410000'),(592,'Thank you for the 5 star review, both here and on our Facebook page, Alondra! Hope you\'re feeling better!','2018-11-12 16:16:28.649000'),(593,'At SignatureCare Emergency Center, we want every interaction with our patients to be a positive one. We\nare concerned that this was not the service you experienced. Please contact our patient customer\nservice specialist at 832-708-3651 or by email at jmartin@ercare24.com so that we can\nspeak with you directly. We look forward to speaking with you.','2018-11-12 16:15:52.605000'),(594,'Thank you so much for the feedback and great rating. And thank you for choosing SignatureCare!','2018-11-01 21:12:15.276000'),(595,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2018-10-22 14:58:09.947000'),(596,'Hi, Michael! We\'re incredibly pleased that we could help provide you with excellent treatment for your kidney flair up, and hope you are feeling better when you see your primary care doctor. Thank you for the kind review!','2018-10-22 15:07:42.378000'),(597,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2018-10-16 14:55:37.601000'),(598,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2018-10-15 14:08:22.961000'),(599,'It is never fun when your child is hurt, but when you have an emergency with your child, SignatureCare is here to help! Thank you for your review and we hope your child is feeling better. ','2018-10-04 16:08:34.366000'),(600,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during an emergency, but we hope we put you at ease and provided you with the best care. Thank you for choosing SignatureCare. ','2018-09-30 15:40:10.574000'),(601,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for the nice review and great rating. ','2018-09-26 16:27:38.704000'),(602,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2018-09-24 18:24:03.306000'),(603,'Thank you so much for the nice review, Ginger. We hope if there is anything we could have done to earn that fifth star, you will let us know, as we aim for 100% satisfaction each time you visit one of our facilities. Thanks for choosing SignatureCare!','2018-09-23 17:34:50.939000'),(604,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email jmartin@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously. ','2018-09-23 17:34:10.026000'),(605,'We are sorry you were not completely satisfied with your experience at SignatureCare. We would like to get more details about your visit so we can better understand the situation. If you could please email jmartin@ercare24.com with your full name, date of service and location of service, we will review your file and reach out to you to discuss. Thank you for bringing this to our attention. We take all reviews very seriously and would like the chance to make it right with you. ','2018-09-23 17:31:27.725000'),(606,'While we hope not to see you anytime soon, SignatureCare\'s board-certified doctors, nurses and staff are here 24/7 in case you need us again. Thank you for giving us your trust and for the very nice review!','2018-09-22 16:33:53.999000'),(607,'We aim to get you in and out quickly so you can get back on the road to good health. It\'s great to hear that this was your experience with our facility, and we appreciate your feedback. Thank you for choosing SignatureCare!','2018-09-11 18:01:23.598000'),(608,'Thanks for the feedback, Jay! We appreciate the five stars. ','2018-09-11 17:59:26.069000'),(609,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please know we are here 24/7 for all your medical emergency needs. ','2018-09-09 13:48:44.319000'),(610,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2018-09-09 13:47:59.221000'),(611,'Thank you for your review. We\'re glad our team was able to deliver a great experience. ','2018-09-09 13:47:27.853000'),(612,'When we receive feedback like this, it helps us know we’re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for the nice review. ','2018-09-09 13:46:45.551000'),(613,'Our goal is to always provide the best care, so we appreciate this feedback. Thank you for trusting us with your care. ','2018-09-09 13:45:59.804000'),(614,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. ','2018-09-09 13:45:21.197000'),(615,'Thank you for your feedback -- we aim for 100% satisfaction at SignatureCare Emergency Center. We appreciate the review and great rating. ','2018-09-01 18:08:29.645000'),(616,'Our staff makes us proud every day! They care so much about our patients, and they will love hearing this feedback. Thank you so much for choosing SignatureCare!','2018-08-29 20:57:17.193000'),(617,'Our doctors and medical staff thank you for your wonderful feedback, and we will continue to provide excellent care to our patients and families. Thank you for choosing SignatureCare. ','2018-08-22 12:58:28.913000'),(618,'Thank you so much for the five-star rating! We appreciate it. ','2018-08-22 12:57:43.972000'),(619,'SignatureCare is here 24/7 for all your emergency needs. Thank you for giving us the chance to care for you and for the nice review. ','2018-08-21 15:25:25.155000'),(620,'Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare, and thank you for the five stars. ','2018-08-15 18:07:37.696000'),(621,'Your positive experience means a lot to our team. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2018-08-10 19:53:34.889000'),(622,'An emergency with your child is never fun, but at SignatureCare, we want all parents to know that we will treat your child as if they are our own. Thank you for trusting us with your child\'s care, and thank you for the very nice review. ','2018-08-09 16:45:04.140000'),(623,'We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. Thanks for the nice review. ','2018-08-06 17:05:28.108000'),(624,'We are glad our staff took such good care of you. We are open 24 hours so you have peace of mind during your next emergency. Thank you for choosing SignatureCare!','2018-08-06 17:03:14.181000'),(625,'We will pass your nice review along to our team. Our community is important to us, so it\'s great to hear that our team is doing a good job. Thanks for choosing SignatureCare and we hope you are feeling better after your visit with us. ','2018-08-01 16:38:37.161000'),(626,'Your positive experience means a lot to our team. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2018-07-29 14:12:25.517000'),(627,'SignatureCare Emergency Centers board-certified doctors and state-of-the-art equipment are available 24/7 to evaluate and treat most medical emergencies. We are very happy to learn about your positive experience with us and hope you are feeling better!','2018-07-29 14:11:48.641000'),(628,'Thank you so much for the five-star rating!','2018-07-29 14:10:25.064000'),(629,'We aim for 100% satisfaction each time you visit our facility. It\'s great to hear that this was your experience. Thanks for the great rating!','2018-07-20 17:04:40.308000'),(630,'We appreciate your kind words and the great recommendation. Thank you for trusting SignatureCare with your care!','2018-07-20 17:03:50.193000'),(631,'Thank your the nice review and great rating. We appreciate the feedback. Thank you for choosing SignatureCare!','2018-07-19 15:17:05.693000'),(632,'Our staff makes us proud every day with the way they care for our patients. Thank you for choosing SignatureCare and for the nice review. ','2018-07-14 14:37:09.686000'),(633,'We are so happy to hear your experience was as it should always be when you visit SignatureCare. Thanks for the great feedback and for giving us the chance to take care of you. ','2018-07-14 14:36:39.258000'),(634,'We try to treat all of our patients just like family, so it\'s great to hear that this was your experience with us. Thank you for choosing SignatureCare!','2018-07-08 17:48:35.523000'),(635,'When we receive feedback like this, it helps us know we’re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2018-07-06 14:55:22.023000'),(636,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2018-07-06 14:57:47.656000'),(637,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for choosing SignatureCare and for the great rating!','2018-07-06 14:57:32.992000'),(638,'I apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. We would love to discuss this incident with you and get more details so we can make it right. Can you please email info@ercare24.com with your full name, date of service and location of service so that she can review your file and discuss with our team? We appreciate the chance to work with our team to improve communication and care. Thank you for your review. ','2018-07-06 14:54:01.188000'),(639,'While we hope not to see you anytime soon, SignatureCare is here 24/7 in case you need us again. Thank you for the great review!','2018-07-06 14:57:01.759000'),(640,'We are very sorry to hear about your review regarding our construction. We are fully open and there is no construction currently happening or there should not be. We are adding additional signage and of course working to make our westchase location perfect like our others. We hope you will visit us again if you have any emergency care needs. We will speak with the facility and make sure they are not Doing any active construction while patients are present. Again we are really sorry for the inconvenience and hope your feeling better. ','2018-06-30 04:48:11.863000'),(641,'Your positive feedback will help our team continue to do a great job for our patients. Thank you for trusting your emergency needs with SignatureCare. ','2018-07-06 14:56:35.902000'),(642,'Thank you for the five-star rating, Zack! And thank you for choosing SignatureCare. ','2018-07-06 14:54:55.719000'),(643,'Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. ','2018-07-06 14:51:38.131000'),(644,'Thank you for taking the time to let us know how we are doing! We appreciate the feedback and are so pleased to hear that our board-certified team took such good care of you. Thank you for choosing SignatureCare!','2018-07-06 14:50:59.371000'),(645,'We appreciate your comments and your review. Thank you for the great rating and we hope you are feeling better. ','2018-07-06 14:56:19.350000'),(646,'Thank you so much for taking the time to rate our services. And thank you for choosing SignatureCare!','2018-07-06 14:54:36.394000'),(647,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. And thank you for choosing SignatureCare. ','2018-07-06 14:55:54.369000'),(648,'Thank you for the five-star rating! We appreciate the feedback. ','2018-07-06 14:54:18.727000'),(649,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-01-06 06:56:25.826000'),(650,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-05 06:21:50.343000'),(651,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-05 06:21:38.171000'),(652,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again! We hope your boyfriend is feeling well.','2020-01-05 06:20:39.990000'),(653,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-05 06:19:05.722000'),(654,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-05 06:18:40.031000'),(655,'Thank you so much for your great rating, John!','2020-01-05 06:18:04.750000'),(656,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-29 06:05:19.320000'),(657,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-26 07:49:50.673000'),(658,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-26 07:43:36.805000'),(659,'Thank you so much, Mitchell! We appreciate your great feedback.','2019-12-26 07:42:49.261000'),(660,'We appreciate your five star rating, Michelle!','2019-12-26 07:42:00.161000'),(661,'Thank you so much Kelly, for your great rating!','2019-12-26 07:41:25.729000'),(662,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-26 07:32:24.888000'),(663,'Thank you for trusting us with the care of your mom. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2019-12-24 06:55:03.765000'),(664,'We appreciate the great rating you gave us, Debbie!','2019-12-23 07:53:28.231000'),(665,'Than you James, for giving us five stars!','2019-12-23 07:54:50.703000'),(666,'Thank you for your great rating, Denia!','2019-12-23 07:53:54.944000'),(667,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-12-23 07:59:06.347000'),(668,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-23 07:58:54.452000'),(669,'We appreciate your great rating, Adkins!','2019-12-23 07:53:00.736000'),(670,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-22 07:58:48.108000'),(671,'Thank you for your feedback and the great rating!','2019-12-22 07:58:34.944000'),(672,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-22 07:33:44.387000'),(673,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-22 07:04:31.721000'),(674,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-22 07:04:20.710000'),(675,'We appreciate the great rating you gave us, Toree!','2019-12-22 07:04:08.838000'),(676,'Thank you so much for your great rating, Leannda!','2019-12-22 07:03:35.575000'),(677,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-22 07:03:08.955000'),(678,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2019-12-22 07:02:50.768000'),(679,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-22 07:02:40.298000'),(680,'Thank you so much for giving us five star, Maya!','2019-12-22 07:02:24.179000'),(681,'We appreciate your great rating, Allie!','2019-12-22 07:02:01.023000'),(682,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-22 07:01:38.900000'),(683,'Thank you so much for your great rating, Brenda!','2019-12-22 07:01:08.426000'),(684,'Hi Eliana. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-12-22 07:00:45.012000'),(685,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-22 06:59:48.795000'),(686,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-19 06:15:18.353000'),(687,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-17 05:02:14.632000'),(688,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-17 05:01:30.557000'),(689,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-12-15 06:15:14.633000'),(690,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-12-15 06:15:04.543000'),(691,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:14:49.293000'),(692,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:14:38.114000'),(693,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 06:14:30.255000'),(694,'The appreciate the great rating you gave us, Taylor!','2019-12-15 06:14:11.118000'),(695,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-15 06:13:50.855000'),(696,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-15 06:13:42.071000'),(697,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 06:13:33.799000'),(698,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-15 06:13:09.296000'),(699,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. Hope your friend is feeling well.','2019-12-15 06:12:59.053000'),(700,'Thank you so much for your great rating, Bobby!','2019-12-15 06:12:22.663000'),(701,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:12:04.930000'),(702,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 06:11:48.459000'),(703,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:11:36.883000'),(704,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope your husband is feeling better!','2019-12-15 06:11:17.630000'),(705,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-12-15 06:10:54.656000'),(706,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-05 06:32:05.803000'),(707,'Thank you so much for your great rating, Larrez!','2019-12-05 06:31:20.024000'),(708,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-05 06:30:49.136000'),(709,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-04 06:41:57.888000'),(710,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-12-01 07:35:26.355000'),(711,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care including the billing process, you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-12-01 07:37:40.731000'),(712,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-28 07:17:09.752000'),(713,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-28 07:16:41.704000'),(714,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-28 07:16:16.599000'),(715,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-11-28 07:16:04.909000'),(716,'We appreciate your great rating. Thank you for choosing us!','2019-11-27 06:04:03.634000'),(717,'Thank you so much for your rating, Allen!','2019-11-27 06:00:00.455000'),(718,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-11-26 05:41:17.583000'),(719,'We appreciate the great rating you gave us, Susana!','2019-11-25 06:54:10.758000'),(720,'We want everyone who visits us to feel like family. Thank you for your review and rating!','2019-06-09 06:44:38.479000'),(721,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare. Hope your father is feeling well.','2019-11-24 06:41:55.919000'),(722,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-24 06:40:26.903000'),(723,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-24 06:40:15.466000'),(724,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-24 06:37:10.879000'),(725,'Thank you for giving us five star, James!','2019-11-24 06:37:00.573000'),(726,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review. Hope your grandson is feeling better.','2019-11-24 06:36:34.106000'),(727,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-24 06:35:52.641000'),(729,'We appreciate your five star rating, Elaine!','2019-11-24 06:33:37.954000'),(730,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-06-09 06:53:36.677000'),(731,'Thank you Angelina for rating us five star!','2019-10-01 06:10:57.456000'),(732,'We appreciate the great rating you gave us, Stephanie!','2019-11-24 06:04:06.394000'),(733,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-24 06:03:19.210000'),(734,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your grandma is feeling better.','2019-11-24 06:03:00.000000'),(736,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-17 06:41:42.347000'),(737,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-17 06:41:16.319000'),(738,'Thank you for your rating, Juan. We appreciate you choosing SignatureCare!','2019-11-17 06:40:52.208000'),(739,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-17 06:40:20.011000'),(740,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-17 06:39:50.291000'),(741,'Our staff makes us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-17 06:39:24.183000'),(742,'We appreciate your five star rating, Kristina!','2019-11-14 10:01:57.205000'),(743,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-11-13 06:38:48.204000'),(744,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-13 06:38:21.020000'),(746,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your kid feels better soon!','2019-11-11 07:15:31.684000'),(747,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-11 07:14:51.379000'),(748,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-11 07:14:36.016000'),(749,'We appreciate your great rating, Lake!','2019-11-11 07:12:38.967000'),(750,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-11 07:12:08.671000'),(751,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-11 07:03:57.338000'),(752,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-11-06 07:43:01.084000'),(753,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope your husband gets well soon.','2019-11-04 11:14:09.952000'),(754,'We appreciate your great rating, Evangelina!','2019-11-03 06:09:29.326000'),(755,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-03 06:08:43.048000'),(756,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-31 09:46:13.028000'),(757,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-29 05:34:32.456000'),(758,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-29 05:32:46.938000'),(759,'Thank you for your great rating, Elias!','2019-10-29 05:32:17.279000'),(760,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-29 05:31:55.257000'),(761,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-29 05:31:38.934000'),(762,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.','2019-10-29 05:31:09.803000'),(763,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-29 05:30:38.592000'),(764,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-10-29 05:29:39.441000'),(765,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-27 07:09:09.086000'),(766,'Thank you for your great rating, Alice!','2019-10-27 07:08:50.797000'),(767,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-27 07:08:31.428000'),(768,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-10-27 07:08:07.875000'),(769,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-10-27 07:07:56.945000'),(770,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-27 07:07:20.509000'),(771,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-23 05:38:04.541000'),(772,'Thank you for your five star rating, Angela!','2019-10-20 05:09:55.722000'),(773,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-20 05:09:28.100000'),(774,'We appreciate your great rating, Nickolas!','2019-10-17 07:59:29.988000'),(775,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-10-16 07:12:46.094000'),(776,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-15 06:39:41.442000'),(777,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-10-15 06:39:32.683000'),(778,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-23 04:28:36.231000'),(779,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-10-14 06:25:15.749000'),(780,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-14 06:25:01.116000'),(781,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-14 06:08:47.238000'),(782,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-13 06:46:43.116000'),(783,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-10-13 06:46:28.222000'),(784,'Thank you so much for your great rating, Toya!','2019-10-13 06:46:00.722000'),(785,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-13 06:45:33.428000'),(786,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-13 06:45:22.431000'),(787,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-10-10 10:25:25.002000'),(788,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-09 07:40:08.195000'),(789,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-13 06:41:34.162000'),(790,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-09 07:39:47.040000'),(791,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-09 07:39:32.426000'),(792,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-09 07:39:18.480000'),(793,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-10-09 07:37:20.799000'),(794,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-03 07:04:04.661000'),(795,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-01 06:10:30.398000'),(796,'Thank you so much for rating us, Cesar!','2019-10-01 06:10:14.646000'),(797,'We appreciate your great rating, Patrick!','2019-10-01 06:09:56.421000'),(798,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-01 06:09:32.800000'),(799,'Thank you so much for your great rating, Hernandez!','2019-10-01 06:09:15.464000'),(800,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-10-01 06:08:39.967000'),(801,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-10-01 06:08:26.725000'),(802,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-01 06:08:01.230000'),(803,'Thank you so much for your nice review, Marina. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-10-01 06:07:29.736000'),(804,'We appreciate your five star rating, Jackson!','2019-09-29 05:54:34.730000'),(805,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your daughter is feeling better!','2019-01-17 06:48:33.844000'),(806,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-29 05:55:38.519000'),(807,'Thank you so much Katelyn for your great rating!','2019-09-29 05:54:01.501000'),(808,'Thank you so much for your rating, Keith! Thanks again for choosing SignatureCare.','2019-09-29 05:53:25.932000'),(809,'Thank you so much for rating us, Ceci!','2019-09-29 05:52:31.213000'),(810,'We appreciate your great rating, Melissa! Thanks for choosing us.','2019-09-29 05:51:57.836000'),(811,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-29 05:54:52.453000'),(812,'Thank you so much for your great rating, Carlos!','2019-09-29 05:51:44.503000'),(813,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-29 05:50:57.283000'),(814,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-29 05:50:39.909000'),(815,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-26 11:01:08.740000'),(816,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-09-22 05:42:28.025000'),(817,'Thank you so much for your great rating, Jeff! Thanks for choosing SignatureCare.','2019-09-22 05:41:50.392000'),(818,'We appreciate your great rating, Aleida! Thanks for choosing us.','2019-09-22 05:41:08.068000'),(819,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-09-22 05:40:09.105000'),(820,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-22 05:39:24.201000'),(821,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-19 08:45:49.128000'),(822,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-09-19 08:45:21.758000'),(823,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. We love children and we want parents to feel comfortable and know their children will be taken care of, while treatment goes. Thank you for choosing SignatureCare and for the fantastic review.','2019-09-19 08:44:55.007000'),(824,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-19 08:36:59.952000'),(825,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-19 08:36:42.805000'),(826,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-17 11:42:56.664000'),(827,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-17 11:42:47.238000'),(828,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-17 11:42:37.254000'),(829,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-16 11:13:10.893000'),(830,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-15 04:51:19.014000'),(831,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-09-15 04:50:58.632000'),(832,'Thank you so much for your great rating, Rosalinda!','2019-09-15 04:50:43.867000'),(833,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-15 04:50:20.919000'),(834,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-11 06:03:27.217000'),(835,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-15 04:50:08.747000'),(836,'Thank you so much for rating us five star, Obie!','2019-09-11 05:04:06.309000'),(837,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-11 05:03:42.169000'),(838,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-09-11 05:03:24.937000'),(839,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-11 05:03:08.675000'),(840,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-11 05:02:46.010000'),(841,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-11 05:02:54.637000'),(842,'Thank you so much for your nice review, Alyssa. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-09-11 05:02:22.809000'),(843,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-09-11 05:01:56.535000'),(844,'We appreciate your great rating, Venessa! Thanks for choosing SignatureCare!','2019-09-11 05:04:40.239000'),(845,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-28 05:53:55.939000'),(846,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-28 05:53:12.235000'),(847,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-25 04:59:46.918000'),(848,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare! Hope your dad is feeling well.','2019-08-21 08:34:56.110000'),(849,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-08-21 04:46:02.713000'),(850,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-08-20 04:33:03.060000'),(851,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-19 05:52:45.791000'),(852,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-08-19 05:52:34.684000'),(853,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-08-18 05:13:53.579000'),(854,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 05:13:37.238000'),(855,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-23 04:24:48.126000'),(856,'Thanks for leaving a review, Arnoldo! Please reach out to us at info@ercare24.com to let us know how we can earn those last two stars!','2019-08-18 05:13:12.585000'),(857,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 05:12:33.773000'),(858,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-18 05:12:12.926000'),(859,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-18 05:11:58.161000'),(860,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-18 05:11:43.124000'),(861,'We appreciate you choosing SignatureCare Emergency Center.','2019-08-18 05:03:30.327000'),(862,'Thank you so much for your feedback! Thank you for choosing SignatureCare.','2019-08-18 05:02:50.542000'),(863,'We appreciate your great rating, Lesley!','2019-08-18 05:14:43.080000'),(864,'Thank you so much for rating us five star, Daisy!','2019-08-18 05:01:51.772000'),(865,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-08-18 05:01:24.236000'),(866,'Thank you so much for your nice review, Melissa. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-08-18 05:01:08.460000'),(867,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-08-18 05:00:41.203000'),(868,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-18 05:00:25.372000'),(869,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-08-04 05:19:18.555000'),(870,'We appreciate the great rating you gave us, Nayra!','2019-08-04 05:18:45.805000'),(871,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-08-04 05:16:24.271000'),(872,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-08-01 03:31:33.999000'),(873,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-01 03:31:25.200000'),(874,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-01 03:31:12.591000'),(875,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-31 06:42:30.156000'),(876,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-24 07:19:35.617000'),(877,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-07-30 06:23:41.233000'),(878,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-07-30 06:23:29.205000'),(879,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-30 06:22:56.568000'),(880,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-07-28 06:55:17.146000'),(881,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-28 06:53:03.417000'),(882,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-07-28 06:52:41.755000'),(883,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-28 06:52:22.764000'),(884,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-28 06:52:07.108000'),(885,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare!','2019-07-24 06:31:41.990000'),(886,'We appreciate the great rating you gave us, Cynthia!','2019-07-24 06:30:38.813000'),(887,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-23 05:37:43.986000'),(888,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-07-21 06:05:41.845000'),(889,'Thank you for trusting us with the care of your brother. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-21 06:04:02.418000'),(890,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-07-18 05:57:43.982000'),(891,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-18 05:57:18.044000'),(892,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-16 05:11:53.931000'),(893,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-07-16 05:11:31.988000'),(894,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-14 06:00:09.828000'),(895,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-07-14 05:59:23.399000'),(896,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-10 06:08:45.731000'),(897,'We appreciate your five star rating, Mayra!','2019-07-10 06:08:18.911000'),(898,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-09 07:05:28.602000'),(899,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-07-07 07:13:44.643000'),(900,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-07 06:39:58.770000'),(901,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-07-07 06:39:27.036000'),(902,'Thanks for your great rating, Elizabeth!','2019-07-03 07:10:32.874000'),(903,'We appreciate and value your feedback. Thank you for choosing SignatureCare!','2019-07-02 06:28:58.996000'),(904,'Thank you so much for your great rating, Lisa!','2019-07-02 06:26:57.680000'),(905,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-01 07:27:41.541000'),(906,'Thank you for your five star rating, Leon!','2019-07-01 07:27:23.965000'),(907,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-01 07:26:52.023000'),(908,'Thank you so much for taking the time to let us know about your experience at SignatureCare. We appreciate the great review and rating.','2019-07-01 07:26:34.547000'),(909,'Thank you for your rating, Veronica!','2019-06-30 05:40:33.753000'),(910,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-06-30 05:40:07.942000'),(911,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-30 05:39:23.745000'),(912,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope Josh is feeling well.','2019-06-30 05:38:00.730000'),(913,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-30 05:37:06.451000'),(914,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-30 05:35:44.104000'),(915,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-30 05:35:03.986000'),(916,'Thank you so much for your nice review, Madison. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-06-27 05:51:33.649000'),(917,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-27 05:47:55.489000'),(918,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-27 05:47:34.534000'),(919,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-27 05:47:11.867000'),(920,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-27 05:46:22.973000'),(921,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-27 05:46:00.521000'),(922,'Thank you for your comment. Is there anything else we could have done better? Let us know at info@ercare24.com.','2019-06-27 14:48:05.488000'),(923,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-06-26 06:19:54.872000'),(924,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-26 06:19:37.801000'),(925,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-26 06:19:20.594000'),(926,'Thank you for your feedback, Aaron!','2019-06-26 06:19:05.405000'),(927,'Thank you for your five star rating, Juan!','2019-06-25 06:57:33.958000'),(928,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-25 06:57:16.478000'),(929,'Thank you for rating us, Jose!','2019-06-24 05:35:51.492000'),(930,'Thank you for your great rating, Sonya!','2019-06-24 05:35:31.936000'),(931,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-06-24 05:35:09.853000'),(932,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-24 05:33:46.745000'),(933,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-24 05:25:19.468000'),(934,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-23 04:29:05.158000'),(935,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-23 04:28:05.419000'),(936,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-23 04:27:39.875000'),(937,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-23 04:27:25.223000'),(938,'Thank you for your five star rating, Renetta!','2019-06-23 04:26:28.343000'),(939,'Thank you for rating us, Bradon!','2019-06-23 04:25:54.149000'),(940,'Thank you Mangal for your rating!','2019-06-23 04:25:38.866000'),(941,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-23 04:25:04.080000'),(942,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-23 04:24:27.147000'),(943,'Thank you for your rating, Lori!','2019-06-23 04:23:51.888000'),(944,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-23 04:23:34.235000'),(945,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-06-23 04:23:12.131000'),(946,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you and your family. Thank you for choosing SignatureCare.','2019-06-23 04:22:06.299000'),(947,'We appreciate your five star rating, Lauren!','2019-06-23 04:21:04.219000'),(948,'Thank you for your five star rating, Abelina!','2019-06-23 04:20:05.527000'),(949,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-06-20 04:34:11.902000'),(950,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-19 06:04:02.281000'),(951,'Thank you for giving us five star, Anderson!','2019-06-19 05:55:17.769000'),(952,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-17 06:12:32.333000'),(953,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better. ','2019-06-17 06:11:19.591000'),(954,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of your daughter.','2019-06-16 05:47:22.813000'),(955,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-16 05:46:43.689000'),(956,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-16 05:46:22.530000'),(957,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-16 05:46:01.633000'),(958,'Thank you for rating us five star, Bereniz!','2019-06-16 05:44:20.441000'),(960,'Thank you Matt for your five star review!','2019-06-16 05:43:11.135000'),(961,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-16 05:42:49.329000'),(962,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-16 05:42:13.071000'),(963,'Thank you so much for your nice review, Leticia. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-06-16 05:41:52.166000'),(964,'Thank you so much for your nice review, Laura. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-06-13 06:35:17.235000'),(965,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-13 06:34:46.638000'),(966,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-13 06:34:10.492000'),(967,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-06-13 06:34:22.904000'),(968,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-13 06:33:26.131000'),(969,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-12 06:03:10.067000'),(970,'Thank you for your great rating, Sotelo!','2019-06-12 06:02:51.845000'),(971,'We want everyone who visits us to feel like family. At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-12 05:59:56.593000'),(972,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-12 05:58:36.383000'),(973,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-12 05:58:17.902000'),(974,'Thank you for your rating!','2019-06-12 05:57:42.740000'),(975,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-11 06:03:00.299000'),(976,'Thank you for your rating, Magen!','2019-06-11 06:01:46.426000'),(977,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-11 06:01:07.673000'),(978,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-06-11 06:00:32.656000'),(979,'We appreciate your five star rating, Katy!','2019-06-09 06:54:18.766000'),(980,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-06-09 06:52:57.731000'),(981,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-09 06:52:02.047000'),(982,'Thank you for your great rating, Alyssa!','2019-06-09 06:50:52.463000'),(983,'We appreciate your great rating, Celeste!','2019-06-09 06:50:17.427000'),(984,'Thank you for your five star rating, Chloe!','2019-06-09 06:49:39.624000'),(985,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-09 06:49:04.576000'),(986,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-06-09 06:48:16.729000'),(987,'Thank you for your rating, Ray!','2019-06-09 06:47:40.421000'),(988,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-09 06:47:11.001000'),(989,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.','2019-06-09 06:46:49.544000'),(990,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-09 06:46:18.897000'),(991,'Thank you for letting us help your grandmother and help her feel better! We are glad to hear our team put her at ease and provided your grandmother with the best care possible. Thanks for choosing SignatureCare.','2019-06-09 06:45:53.065000'),(992,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-09 06:43:58.153000'),(993,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-06-09 06:43:02.291000'),(994,'Thank you for the 5 star review!','2018-11-26 16:08:39.824000'),(995,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-28 05:40:30.961000'),(996,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-05-26 06:18:49.610000'),(997,'Thank you for your five star rating, Taylor!','2019-05-26 06:18:37.030000'),(998,'Thank you for your rating, Nancy!','2019-05-26 06:18:22.726000'),(999,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. Hope your brother in law feels better soon.','2019-05-23 06:31:12.960000'),(1000,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-05-23 06:30:04.340000'),(1001,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-05-23 06:29:45.743000'),(1002,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-23 06:29:22.064000'),(1003,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-05-22 05:25:12.778000'),(1004,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-05-22 05:17:55.816000'),(1005,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-05-19 05:12:18.667000'),(1006,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care.','2019-05-16 06:33:35.911000'),(1007,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your little one is feeling better. ','2019-05-16 06:32:41.986000'),(1008,'Thank you for your five star rating, Dawn!','2019-05-14 04:28:48.977000'),(1009,'Thank you for rating us, Jim!','2019-05-13 05:57:30.025000'),(1010,'Thank you for your rating, Evelyn!','2019-05-13 05:57:09.339000'),(1011,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope Aurora is feeling better!','2019-05-12 04:47:05.731000'),(1012,'Thank you for your great rating, Jay!','2019-05-12 04:45:48.323000'),(1013,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-05-12 04:45:28.762000'),(1014,'Thank you for your five star review, Dianellys!','2019-05-08 05:15:48.043000'),(1015,'Thank you so much for your nice review, Shala. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-05-06 10:13:14.094000'),(1016,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-05-06 05:54:59.928000'),(1017,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-06 05:54:44.719000'),(1018,'Thank you so much for your nice review, Tony. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-05-05 06:23:46.289000'),(1019,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-05 06:26:36.300000'),(1020,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better. ','2019-05-05 06:26:12.937000'),(1021,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-05 06:25:56.239000'),(1022,'Thank you for your rating!','2019-05-05 06:24:00.586000'),(1023,'Thank you for your review and rating!','2019-05-05 06:23:22.937000'),(1024,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 08:58:53.325000'),(1025,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope your husband is feeling better.','2019-05-02 08:58:36.555000'),(1026,'Thank you Zaccarias for your rating!','2019-05-02 08:57:38.447000'),(1027,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-02 08:57:11.033000'),(1028,'Thank you for your rating, Colby!','2019-05-02 08:56:38.238000'),(1029,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-05-02 08:56:20.096000'),(1030,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for your review.','2019-04-24 05:32:50.715000'),(1031,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-04-24 05:29:53.454000'),(1032,'Thank you Deborah for your review and five star rating!','2019-04-22 05:56:37.992000'),(1033,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-04-22 05:55:55.776000'),(1034,'Thank you for your rating, Chelzi!','2019-04-17 06:37:55.011000'),(1035,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-04-17 06:35:08.169000'),(1036,'Thank you for your five star rating, John!','2019-04-16 06:03:16.271000'),(1037,'Thank you for your review and rating! SignatureCare is ready to meet any kind of your emergency needs 24/7.','2019-04-16 06:02:49.085000'),(1038,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-03-10 10:37:31.996000'),(1039,'Thank you for your valuable rating, Tim!','2019-04-15 05:04:14.333000'),(1040,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-15 05:03:51.567000'),(1041,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-04-11 05:40:29.919000'),(1042,'Thank you for your review and rating, Jason!','2019-04-11 05:39:33.669000'),(1043,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-04-11 05:38:56.988000'),(1044,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-04-10 06:40:43.507000'),(1045,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-04-10 06:40:18.118000'),(1046,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-04-08 06:18:02.514000'),(1047,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-04-01 05:34:35.789000'),(1048,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-03-31 06:20:16.825000'),(1049,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-03-28 12:43:06.104000'),(1050,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-03-27 05:24:41.120000'),(1051,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-03-25 15:37:11.154000'),(1052,'Thank you so much for your five star rating!','2019-03-24 06:36:33.093000'),(1053,'Thank you Jill for your wonderful rating!','2019-03-24 06:35:50.668000'),(1054,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-03-24 06:35:06.498000'),(1055,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-03-20 06:40:59.802000'),(1056,'Thanks a lot for your great words. We appreciate the great review and rating.','2019-03-19 06:34:50.756000'),(1057,'Thank you Alyssa for five star rating!','2019-03-19 06:33:46.586000'),(1058,'Our staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-18 05:52:18.884000'),(1059,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-18 05:51:26.187000'),(1060,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-14 06:18:36.251000'),(1061,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-03-10 10:36:27.799000'),(1062,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-27 12:54:34.249000'),(1063,'Thanks for the 5 star, Juan!','2019-02-27 12:52:37.609000'),(1064,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback. Thank you for choosing SignatureCare!','2019-02-24 11:10:27.960000'),(1065,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-24 11:10:42.639000'),(1066,'Thank you for leaving a great rating!','2019-02-20 12:18:08.667000'),(1067,'Thanks for the 5 star, Jose!','2019-02-17 12:31:22.514000'),(1068,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-17 12:31:02.695000'),(1069,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback. Thank you for choosing SignatureCare!','2019-02-11 13:25:50.030000'),(1070,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-02-07 14:05:16.258000'),(1071,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. Thank you for the kind remarks. We hope you are feeling better!','2019-02-06 12:48:10.767000'),(1072,'Thanks for the 5 star, Aaron!','2019-02-06 12:47:30.916000'),(1073,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-06 12:46:56.989000'),(1074,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare and for the great review. ','2019-02-05 14:09:13.282000'),(1075,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. Thank you so much for the wonderful review and a great rating. ','2019-02-04 13:38:06.380000'),(1076,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for choosing us and for a great review.','2019-02-03 11:56:41.363000'),(1077,'Thanks for the 5 star, Connie!','2019-02-03 11:54:19.902000'),(1078,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment.','2019-01-31 18:48:46.235000'),(1079,'Thank you for the 5 star, Shevon!','2019-01-30 13:30:31.451000'),(1080,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-31 18:26:36.327000'),(1081,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-30 13:31:02.437000'),(1082,'Thank you for taking time to leave us such a nice review and recommendation. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-30 13:30:10.740000'),(1083,'Thanks for the great rating, Laura!','2019-01-29 14:08:08.394000'),(1084,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-29 14:07:43.415000'),(1085,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-28 09:28:55.324000'),(1086,'Thanks for the 5 star, Crystal!','2019-01-28 09:27:41.594000'),(1087,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-28 09:27:23.199000'),(1088,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-28 09:25:49.450000'),(1089,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-01-24 16:33:24.555000'),(1090,'Thank you so much for your nice review, Miranda. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-01-24 07:22:09.302000'),(1091,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-24 07:19:16.465000'),(1092,'Thanks for the 5 star, Nayeli!','2019-01-23 14:09:01.184000'),(1093,'Thank you for the great rating, Ryan!','2019-01-23 14:04:23.466000'),(1094,'Thank you for rating, Esmeralda. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-01-23 14:08:16.409000'),(1095,'Thanks for leaving a 5 star, Carlos!','2019-01-23 14:03:36.515000'),(1096,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-23 14:11:56.821000'),(1097,'Thanks for the 5 star, Drew!','2019-01-23 14:03:09.258000'),(1098,'Thank you for a great rating, Diana!','2019-01-23 14:02:29.120000'),(1099,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-01-23 14:01:39.956000'),(1100,'Thanks for the 5 star, Skylar!','2019-01-21 11:24:39.817000'),(1101,'Thanks for the 5 star, Valeria!','2019-01-20 12:19:19.061000'),(1102,'Our doctors and nurses make us proud every day. The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-20 12:18:45.894000'),(1103,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-18 16:04:38.860000'),(1104,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better. ','2019-01-18 16:05:08.687000'),(1105,'Thanks for the 5 star review!','2019-01-18 16:02:17.596000'),(1106,'Thanks for leaving a 5 star','2019-01-17 06:48:59.594000'),(1107,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-16 07:59:26.648000'),(1108,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-13 12:41:30.616000'),(1109,'Thanks for the 5 star, Aleah!','2019-01-16 07:53:04.551000'),(1110,'Thank you for leaving 5 star, Franco!','2019-01-16 07:58:59.749000'),(1111,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-16 07:58:32.357000'),(1112,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-01-16 07:58:09.356000'),(1113,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-16 07:54:10.396000'),(1114,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-16 07:53:41.428000'),(1115,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-15 11:05:48.429000'),(1116,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-01-03 16:56:11.610000'),(1117,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-02 16:29:31.220000'),(1118,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-02 16:28:59.260000'),(1119,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2018-12-27 18:06:28.592000'),(1120,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2018-12-27 18:06:08.365000'),(1121,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2018-12-26 16:26:34.864000'),(1122,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! ','2018-12-26 16:26:07.636000'),(1123,'We\'re glad you\'re feeling better! Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2018-12-13 21:30:37.917000'),(1124,'Thank you for the 5 star review, Christopher! ','2018-11-19 17:51:51.162000'),(1125,'Thank you so much for your feedback, Kanti Bansal! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2018-11-19 17:51:27.938000'),(1126,'Thanks for the 5 star review, Dillon!','2018-11-15 19:56:46.583000'),(1127,'Hi Renee! Thank you for your 5-star review! Thank you for taking the time to provide us feedback about your visit to Neighbors Emergency Center Midland. We will be sure to share your positive review with our staff so that they can continue serving the community with excellence!','2018-07-20 16:43:21.742000'),(1128,'Hi Lacey! Thank you so much for your review. We greatly appreciate your recommendation and we\'re glad our staff could take excellent care of you in your time of need. We wish you a speedy recovery.','2017-11-13 21:58:34.911000'),(1129,'Hi John! Thank you for your wonderful review. We are actually a freestanding emergency room and we are here for all of your medical emergencies. We are glad we could help your son in his time of need. We hope he is feeling much better! ','2017-11-03 16:48:28.076000'),(1130,'Hi Nicole! If you do not have insurance, we’ll work with you on a cash fee schedule to help you cover your visit. You’ll never encounter hidden costs or surprise fees at Neighbors Emergency Center. Call us at 844-406-7263 for more information.','2017-09-18 18:53:12.557000'),(1131,'Hi Jeanie! We thank you for sharing your experience. We appreciate your positive feedback about Neighbors Emergency Center. We wish you a speedy recovery! ','2017-05-12 14:43:31.804000'),(1132,'Hi Brandon. We understand that the emergency room billing process can be complicated. We apologize for any inconvenience you are experiencing. Please contact our patient advocates so they can guide you through the billing process and resolve any issues you may have. Please contact them at 844-406-7263 or email us at patients@neighborshealth.com. We look forward to speaking with you. ','2017-05-02 20:55:39.255000'),(1133,'Hi Andrew, Thank you for sharing your positive feedback. We greatly value your opinion, and want to be able to continue to provide great service to all of our patients. We wish you a speedy recovery. \n','2017-03-08 17:24:21.735000'),(1134,'Hi Kenneth. Thank you for your positive rating. Please let us know if there\'s anything additional you would like to provide about your recent visit. Thank you!','2016-11-21 20:09:18.837000'),(1135,'Hi Stephen. We\'re sorry to hear that you did not have a positive experience at Neighbors Emergency Center. Please contact our patient customer service specialist at 844-406-7263 so we can understand your experience and resolve any remaining issues. ','2016-11-08 16:42:55.784000'),(1136,'Neighbors is thankful that you have shared your experience, and that you plan to do so with others as well! We greatly appreciate your confidence in sharing the services of Neighbors Emergency Center! ','2016-06-15 18:59:00.500000'),(1137,'We hate to hear that you did not have a positive experience at Neighbors Emergency Center. Please contact our customer service specialist at 844-406-7263 so that we can learn more about your experience, and resolve any issues. Thank you for your patience, and we hope to speak with you soon! \n','2016-06-21 18:38:49.764000'),(1138,'We hate to hear that you were not satisfied with our services at Neighbors Emergency Center. We would like to speak with you directly about your experience. At your earliest convenience please contact our patient customer service specialist at 844-406-7263. We look forward to speaking with you. ','2016-06-21 18:43:14.426000'),(1139,'We hate to hear that you were not satisfied with our services at Neighbors Emergency Center. We would like to speak with you directly about your experience. At your earliest convenience please contact our patient customer service specialist at 844-406-7263. We look forward to speaking with you. ','2016-06-21 18:41:21.177000'),(1140,'Thanks for the 5 star review!','2018-12-19 18:52:25.026000'),(1141,'Thank you so much for sharing your Neighbors Emergency Center experience! We are happy that you found our services fast and convenient. We wish you a speedy recovery. \n','2016-05-19 16:01:01.167000'),(1142,'Thanks for the 5 star review!','2018-12-19 18:52:29.583000'),(1143,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:38:51.753000'),(1144,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-05-24 19:23:08.063000'),(1145,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-06 07:18:29.914000'),(1146,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-05 06:45:01.827000'),(1147,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-05 06:44:50.811000'),(1148,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-05 06:44:40.233000'),(1149,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-02 05:27:50.502000'),(1150,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-02 05:26:58.034000'),(1151,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-01 07:37:43.996000'),(1152,'We appreciate your great rating, Kendra!','2020-01-01 07:37:02.651000'),(1153,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2019-12-29 06:42:49.967000'),(1154,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-29 06:47:13.000000'),(1155,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-29 06:45:03.678000'),(1156,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-29 06:44:44.780000'),(1157,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-29 06:44:34.076000'),(1158,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-12-29 06:44:21.843000'),(1159,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-29 06:44:12.219000'),(1160,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. Hope your husband is feeling better.','2019-12-29 06:43:33.741000'),(1161,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-26 08:05:34.506000'),(1162,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-24 07:04:32.900000'),(1163,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-12-24 07:03:58.958000'),(1164,'Thank you for trusting us with the care of your nephew. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-23 08:11:26.984000'),(1165,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-22 08:38:08.791000'),(1166,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-22 08:38:00.900000'),(1167,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-22 08:37:10.033000'),(1168,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-22 08:37:02.223000'),(1169,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-22 08:36:55.319000'),(1170,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-22 08:36:47.769000'),(1171,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-12-22 08:36:37.391000'),(1172,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-22 08:36:09.862000'),(1173,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-22 08:36:26.905000'),(1174,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-18 07:36:55.953000'),(1175,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare! Hope your brother is feeling well.','2019-12-15 07:08:25.321000'),(1176,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 07:07:59.142000'),(1177,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-12-15 07:07:46.365000'),(1178,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-12-15 07:07:32.220000'),(1179,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 07:07:06.416000'),(1180,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 07:06:57.983000'),(1181,'Thank you so much for your great rating, Emmanuel!','2019-12-15 07:06:31.871000'),(1182,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-12-15 07:05:54.210000'),(1183,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 07:05:46.436000'),(1184,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-15 07:05:33.438000'),(1185,'Thank you so much Samantha, for your great rating!','2019-12-05 07:13:01.176000'),(1186,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-04 07:18:36.041000'),(1187,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-04 07:18:16.609000'),(1188,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2019-12-01 08:39:33.354000'),(1189,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-11-25 06:56:56.797000'),(1190,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-03 07:35:56.334000'),(1191,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your uncle. Thank you for choosing SignatureCare.','2019-11-13 06:42:55.155000'),(1192,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-13 06:42:27.884000'),(1193,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-12 07:45:57.640000'),(1194,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-12 07:46:09.288000'),(1195,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-11-11 07:39:09.941000'),(1196,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-11 07:38:53.167000'),(1197,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-11 07:38:18.345000'),(1198,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-11 07:37:36.982000'),(1199,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-11 07:37:24.642000'),(1200,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-07 04:54:24.059000'),(1201,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-07 04:54:12.038000'),(1202,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-06 08:05:34.333000'),(1203,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-06 08:05:15.436000'),(1204,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-11-03 06:34:17.604000'),(1205,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-29 05:51:07.738000'),(1206,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-29 05:50:38.729000'),(1207,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-27 08:38:55.833000'),(1208,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-27 08:38:37.894000'),(1209,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-24 08:05:31.113000'),(1210,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your husband at ease and provide him with the best care possible. We hope he feels better.','2019-10-23 06:47:09.982000'),(1211,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-23 06:46:22.409000'),(1212,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-23 06:45:46.194000'),(1213,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-23 06:44:58.959000'),(1214,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-23 06:43:57.398000'),(1215,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-22 06:38:11.745000'),(1216,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-21 07:09:57.348000'),(1217,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-10-16 07:23:21.014000'),(1218,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-13 07:34:53.186000'),(1219,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-13 07:34:28.540000'),(1220,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-13 07:34:10.641000'),(1221,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-13 07:33:57.091000'),(1222,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-13 07:33:39.897000'),(1223,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-10-13 07:32:52.407000'),(1224,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-09 08:21:44.235000'),(1225,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-03 07:35:27.363000'),(1226,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-01 06:19:55.676000'),(1227,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-09-29 06:08:40.208000'),(1228,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-26 11:06:02.433000'),(1229,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-09-22 06:12:19.001000'),(1230,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-09-22 06:11:47.020000'),(1231,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-22 06:11:34.454000'),(1232,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-19 09:22:55.551000'),(1233,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-19 09:22:44.578000'),(1234,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-19 09:22:36.378000'),(1235,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-19 09:22:17.885000'),(1236,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-17 11:49:32.898000'),(1237,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-17 11:49:17.502000'),(1238,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-16 11:28:43.926000'),(1239,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-09-15 05:00:51.525000'),(1240,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-15 05:00:33.835000'),(1241,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-15 05:00:22.635000'),(1242,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-09-15 05:00:04.758000'),(1243,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-09-15 04:59:41.752000'),(1244,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-09-15 04:59:01.348000'),(1245,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-09-15 04:58:31.969000'),(1246,'Thank you so much for your feedback! Our goal is to always provide the abest care. Thank you for choosing SignatureCare.','2019-09-15 04:58:03.969000'),(1247,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback.','2019-09-11 06:25:28.426000'),(1248,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-09-11 06:25:15.595000'),(1249,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. Hope she is feeling well!','2019-09-11 06:24:49.787000'),(1250,'Thank you so much for your feedback! Our goal is to always provide the abest care. Thank you for choosing SignatureCare.','2019-09-11 06:22:49.247000'),(1251,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-11 06:10:37.199000'),(1252,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-11 05:49:15.498000'),(1253,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-08-25 05:31:40.119000'),(1254,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-08-25 05:23:24.482000'),(1255,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-08-26 05:08:46.097000'),(1256,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-08-18 06:02:59.380000'),(1257,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-18 06:02:33.879000'),(1258,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-18 06:02:15.271000'),(1259,'Thank you so much for rating us five star, Nicky!','2019-08-18 06:01:53.019000'),(1260,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-08-04 05:37:38.726000'),(1261,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-08-01 03:38:25.931000'),(1262,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2019-07-31 06:49:01.439000'),(1263,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-31 06:47:57.529000'),(1264,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Our promise to all our patients and families is to treat you like you are our ONLY patient. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2019-01-20 06:24:42.780000'),(1265,'Thank you for your five star rating, Taylor!','2019-07-31 06:49:39.790000'),(1266,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-30 06:27:06.895000'),(1267,'Thank you for your five star rating, Lynda!','2019-07-30 06:26:43.399000'),(1268,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-29 06:13:58.100000'),(1269,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you and your boyfriend comfortable and able to relax during the visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-29 06:13:36.574000'),(1270,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-07-29 06:12:35.512000'),(1271,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-28 07:16:25.485000'),(1272,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-07-23 08:08:31.356000'),(1273,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-22 07:27:46.360000'),(1274,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-21 06:12:50.933000'),(1275,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-15 07:08:11.080000'),(1276,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-07-15 07:07:39.372000'),(1277,'Thank you for taking time out of your day to write us such a positive review about us and our snacks :) \n. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-07-10 06:16:09.832000'),(1278,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-07-08 06:30:55.415000'),(1279,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-02 06:46:12.335000'),(1280,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-06-30 05:53:50.569000'),(1281,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-30 05:53:26.762000'),(1282,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-30 05:53:04.307000'),(1283,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-30 05:52:50.917000'),(1284,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Our goal is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-25 07:54:32.959000'),(1285,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-25 07:41:05.025000'),(1286,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-06-25 07:38:29.940000'),(1287,'Thank you for your great rating, Brock!','2019-06-24 05:44:22.630000'),(1288,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-23 04:42:27.469000'),(1289,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-23 04:41:54.585000'),(1290,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-23 04:41:34.786000'),(1291,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-23 04:40:42.518000'),(1292,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-23 04:39:55.192000'),(1293,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-06-19 06:11:23.158000'),(1294,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-18 06:41:34.778000'),(1295,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-06-18 06:41:17.990000'),(1296,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-18 06:41:00.339000'),(1297,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-18 06:40:50.028000'),(1298,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-18 06:40:15.001000'),(1299,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-06-17 06:36:06.933000'),(1300,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare! Hope your husband is feeling better!','2019-06-17 06:35:36.550000'),(1301,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-06-17 06:35:00.781000'),(1302,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-17 06:34:48.909000'),(1303,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-17 06:34:29.950000'),(1304,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-06-17 06:34:10.612000'),(1305,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-16 05:57:34.830000'),(1306,'Thank you for your review and rating. We appreciate you choosing SignatureCare!','2019-06-16 05:57:13.828000'),(1307,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-16 05:56:53.928000'),(1308,'Thank you so much for your review, David. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-06-16 05:56:37.578000'),(1309,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-16 05:56:02.758000'),(1310,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-06-16 05:55:47.691000'),(1311,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-06-13 18:50:06.941000'),(1312,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-12 06:16:13.015000'),(1313,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-12 06:15:41.042000'),(1314,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-12 06:15:21.189000'),(1315,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-09 07:50:01.940000'),(1316,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-09 07:47:49.418000'),(1317,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-09 07:45:36.083000'),(1318,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-06-09 07:45:23.180000'),(1319,'Thank you so much for your rating, Raphael. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-05-26 06:28:07.676000'),(1320,'Thank you for your rating!','2019-05-26 06:27:28.693000'),(1321,'Thank you for your rating, Geralisha!','2019-05-22 05:28:41.043000'),(1322,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-05-14 04:35:50.810000'),(1323,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-05-13 06:01:57.603000'),(1324,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\n with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2019-05-13 15:12:47.144000'),(1325,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-09 04:09:21.626000'),(1326,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-08 05:19:56.546000'),(1327,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-05 06:35:27.477000'),(1328,'Thank you for your review and five star rating, Azucena!','2019-05-05 06:35:04.600000'),(1329,'Thank you for your review and rating, Gabbie!','2019-05-05 06:34:25.102000'),(1330,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-05 06:33:57.986000'),(1331,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-05-05 06:33:36.351000'),(1332,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-05-02 09:24:26.147000'),(1333,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-05-02 09:24:15.287000'),(1334,'Thank you for your feedback, it helps us excel at our jobs. We aim for 100% satisfaction at SignatureCare Emergency Center. ','2017-01-04 03:39:55.864000'),(1335,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-05-02 09:32:16.430000'),(1336,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-05-02 09:31:24.113000'),(1337,'Thank you for your wonderful review and rating!','2019-05-02 09:31:07.979000'),(1338,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-02 09:29:33.408000'),(1339,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-05-02 09:29:22.971000'),(1340,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope he feels better.','2019-05-02 09:28:25.421000'),(1341,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 09:27:13.801000'),(1342,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-02 09:26:20.918000'),(1343,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-02 09:26:04.662000'),(1344,'(Translated by Google) \nThank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\n\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal! ','2019-05-13 15:10:55.941000'),(1345,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-04-30 21:02:41.836000'),(1346,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-30 21:02:28.064000'),(1347,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-30 21:02:09.463000'),(1348,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-04-30 21:00:36.126000'),(1349,'What a nice review! Thank you for taking the time to let us know how we are doing. SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-04-24 05:46:52.959000'),(1350,'Hi, Kisha, can we get a little more information from you so we can know how to resolve this issue? Please send your name, date of birth, and the date and location you visited to info@ercare24.com? Thank you.','2019-04-17 15:26:31.131000'),(1351,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-04-16 06:06:36.858000'),(1352,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-04-15 05:49:30.946000'),(1353,'Hi, Ronnie! Are you sure this review was meant for us?','2019-04-08 19:11:07.179000'),(1354,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your mom\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better. ','2019-04-02 07:17:16.558000'),(1355,'Thank you for your rating!','2019-03-28 04:55:22.344000'),(1356,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-03-27 05:52:58.505000'),(1357,'Thank you for your great review and rating!','2019-03-24 07:04:11.091000'),(1358,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-03-24 07:03:32.455000'),(1359,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-03-21 06:31:39.057000'),(1360,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2019-03-25 22:58:21.615000'),(1361,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2019-03-25 22:58:26.383000'),(1362,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-18 06:22:36.694000'),(1363,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a child has to visit the ER with their parents, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your mom is feeling better!','2019-03-18 06:21:26.825000'),(1364,'Thank you for your review and rating, Lance!','2019-03-14 06:29:15.506000'),(1365,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for recommending SignatureCare!','2019-03-14 06:28:45.285000'),(1366,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great recommendation and rating.','2019-02-26 12:44:51.070000'),(1367,'Thank you for your lovely words, Todd! We appreciate the great rating you gave us.','2019-03-13 06:20:16.016000'),(1368,'We sincerely appreciate your continued trust. We believe we have the very best staff in Texas. Thank you for trusting SignatureCare with your emergency needs. ','2019-03-12 07:00:23.143000'),(1369,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-12 06:58:35.911000'),(1370,'We always appreciate positive feedback from our patients and thank you for trusting us with the care of your mom. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-12 06:57:13.339000'),(1371,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-03-12 06:56:27.332000'),(1372,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for recommending us!','2019-03-12 06:55:29.535000'),(1373,'Thank you so much for your rating, Kenneth. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-03-12 06:54:22.636000'),(1374,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-03-10 07:59:26.522000'),(1375,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-03-10 07:59:15.843000'),(1376,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope princess is feeling better. ','2019-03-10 07:59:06.294000'),(1377,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-03-10 07:58:49.187000'),(1378,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-03-10 07:58:39.371000'),(1379,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-02-27 13:47:45.959000'),(1380,'Thank you for leaving us a great rating!','2019-02-26 12:45:14.004000'),(1381,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-25 12:51:49.370000'),(1382,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-24 11:08:55.292000'),(1383,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-02-25 16:33:39.562000'),(1384,'Thanks for the 5 star review!','2019-02-20 20:16:55.563000'),(1385,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We\'d like to get more information about your experience. Can you email our billing manager at bscott@roundtmc.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-02-20 20:16:46.128000'),(1386,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-02-18 08:54:32.071000'),(1387,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism with state of the art equipments available. We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-02-14 13:34:44.479000'),(1388,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-02-13 12:41:30.999000'),(1389,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. We will also make sure your suggestion is taken into account and obliged carefully. Thank you for choosing SignatureCare and for the great review.','2019-02-11 13:16:51.168000'),(1390,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-11 13:13:00.437000'),(1391,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-11 13:11:52.968000'),(1392,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-06 13:22:17.479000'),(1393,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-02-05 13:59:50.119000'),(1394,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-04 13:15:15.308000'),(1395,'Thanks for the 5 star, Miguel!','2019-02-04 13:15:37.364000'),(1396,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-02-03 12:38:36.355000'),(1397,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you our team took good care of you.. We will make sure to let them know. ','2017-05-05 16:43:30.839000'),(1398,'Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review, and Thank you for choosing SignatureCare!','2019-02-03 12:37:28.638000'),(1399,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-01-29 14:12:30.224000'),(1400,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We pride on our staff taking so much care of our patients. Thank you for the nice review and hope you are feeling better!','2019-01-29 14:17:29.963000'),(1401,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2019-01-21 11:23:32.659000'),(1402,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-20 06:25:57.407000'),(1403,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-01-18 17:21:32.967000'),(1404,'Thanks for the 5 star review!','2019-01-18 16:02:08.860000'),(1405,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-18 16:03:38.207000'),(1406,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-18 16:03:27.209000'),(1407,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-01-16 13:52:55.574000'),(1408,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-16 13:52:24.131000'),(1409,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2019-01-16 13:52:03.977000'),(1410,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for choosing SignatureCare and for recommendation with the nice review. ','2019-01-15 11:09:19.733000'),(1411,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-15 11:10:13.957000'),(1412,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-01-15 11:10:38.372000'),(1413,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-15 11:11:17.626000'),(1414,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-01-14 09:52:31.908000'),(1415,'Thanks for the 5 star!','2019-01-13 13:03:05.356000'),(1416,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-01-13 11:59:15.193000'),(1417,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-01-13 12:00:17.363000'),(1418,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-13 12:00:57.386000'),(1419,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-13 12:02:23.216000'),(1420,'We sincerely appreciate your continued trust. Thank you for trusting us with the care of your daughter and taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-01-13 12:10:06.213000'),(1421,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-13 12:10:50.635000'),(1422,'We believe we have the very best staff in Texas. Our doctors and nurses make us proud every day. Thank you for your kind words and for choosing SignatureCare! We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-13 12:13:18.840000'),(1423,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-01-11 17:45:17.505000'),(1424,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for the kind words and trusting us with your medical needs.','2019-01-09 11:21:51.555000'),(1425,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. Our doctors and medical staff thank you for your wonderful feedback and the great rating. We hope for your great health.','2019-01-09 11:17:26.875000'),(1426,'We appreciate your 5 star, Ricky. Thanks for choosing SignatureCare.','2019-01-09 11:12:36.662000'),(1427,'Thank you so much for the 5 star rating.','2019-01-09 11:10:52.150000'),(1428,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better! Thank you for the nice review and great rating.','2019-01-09 11:07:20.889000'),(1429,'Glad you\'re feeling better, and thanks for the review. Good luck on your marathon!','2019-01-09 17:33:28.038000'),(1430,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-01-09 10:52:48.596000'),(1431,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. We will make sure to let each respective individual know your appreciation. Thank you for choosing SignatureCare!','2019-01-09 10:41:17.144000'),(1432,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-01-08 14:21:03.577000'),(1433,'Thank you for the 5 star review, Alexa!','2019-01-08 14:21:23.659000'),(1434,'Thank you for letting us take care of you and for taking the time to let us know how we are doing. We appreciate the feedback. ','2019-01-05 00:14:44.207000'),(1435,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review, and please consider us if you ever have another medical emergency. ','2019-01-04 03:48:28.714000'),(1436,'Their compassion and dedication to helping others is why we love our SignatureCare team. Thank you for letting us know that they are doing a good job. We appreciate the feedback. ','2019-01-03 17:30:19.859000'),(1437,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback and we hope you are feeling better. ','2019-01-02 16:44:13.060000'),(1438,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for giving us your trust. ','2019-01-02 16:43:48.491000'),(1439,'Thank you so much for the five-star rating!','2019-01-01 19:37:40.949000'),(1440,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2018-12-31 17:28:14.664000'),(1441,'We are so sorry to hear about your billing frustrations with us. We value every patient and want 100% satisfaction for everyone who visits with us. I invite you to email our billing manager so he can review your file and get back with you with a solution. Please email tmoore@roundtmc.com with your son\'s full name, date of service and location of service so he can pull your son\'s file and then reach out to you. Thank you for the opportunity to clear this up, and thank you for taking the time to let us know how we are doing. We appreciate any and all feedback. ','2018-12-31 17:27:33.156000'),(1442,'We appreciate the nice review and recommendation. Thank you so much for choosing us!','2018-12-30 20:00:20.051000'),(1443,'Thank you so much for the nice review and for choosing SignatureCare!','2018-12-30 19:59:16.773000'),(1444,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear about your positive experience with us. Thank you for the feedback!','2018-12-27 15:12:59.743000'),(1445,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for letting us know that our team is doing a good job. And thank you for choosing SignatureCare!','2018-12-26 15:03:45.456000'),(1446,'Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2018-12-22 14:36:42.522000'),(1447,'Thank you so much for the five-star rating, Maily! We appreciate the feedback. ','2018-12-21 03:19:01.079000'),(1448,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for choosing SignatureCare!','2018-12-21 03:19:34.162000'),(1449,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2018-12-19 16:57:00.481000'),(1450,'What a nice review! Thank you so much for taking the time to let us know how we are doing. We appreciate your trust and your feedback. ','2018-12-12 19:59:03.233000'),(1451,'We are so pleased that our team takes such good care of your dad -- Thank you so much for letting us know how we are doing. SignatureCare is here 24/7 for all your emergency needs!','2018-12-05 02:48:22.144000'),(1452,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing us and for the very nice review. ','2018-12-03 17:04:37.834000'),(1453,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we hope you are feeling better. ','2018-12-02 16:31:26.365000'),(1454,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the nice review!','2018-11-29 00:52:52.863000'),(1455,'No one likes the ER, so our SignatureCare team aims to make each visit with us quick and painless. Thank you for the opportunity to care for you during your emergency, and we hope you are feeling better. ','2018-11-27 15:39:15.353000'),(1456,'At SignatureCare Emergency Center, we love all our patients, and our number one goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your medical needs and for taking the time to let us know how we are doing. We appreciate the feedback!','2018-11-26 15:48:04.045000'),(1457,'Thank you so much for the nice comment and the great rating. We appreciate you choosing SignatureCare!','2018-11-24 14:46:24.721000'),(1458,'Thank you so much for the five-star rating!','2018-11-23 16:59:43.812000'),(1459,'At SignatureCare Emergency Center, we are always looking for ways to improve our services, because our patients are what keep us going strong. Thank you for your positive review. ','2018-11-23 16:59:27.567000'),(1460,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less! And our team can handle most of the same emergencies as a hospital. We are very proud that you choose SignatureCare Emergency Center as your choice for care time and again. Thank you for your support. ','2018-11-19 19:10:32.925000'),(1461,'Our emergency rooms have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate the chance to care for you. Thank you so much for the nice review and great rating. ','2018-11-07 17:10:37.019000'),(1462,'Thank you so much for the feedback! We appreciate your trust and the great rating. Thank you for choosing SignatureCare. ','2018-11-03 13:29:02.240000'),(1463,'SignatureCare Emergency Centers are here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn about your positive experience, and hope your husband is feeling better!','2018-11-02 14:20:27.232000'),(1464,'Thank you for your kind words -- we will pass them along to our team. Thank you for choosing SignatureCare!','2018-11-01 20:25:46.876000'),(1465,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the nice review and great rating. ','2018-10-26 16:13:37.885000'),(1466,'We appreciate the feedback, Tom! Thank you so much for choosing SignatureCare. ','2018-10-24 14:55:00.253000'),(1467,'SignatureCare is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very pleased to learn your experience with us was pleasant, as we strive for excellence each time you visit us. Thank you for the nice review. ','2018-10-22 15:12:26.037000'),(1468,'At SignatureCare, we want all of our patients to feel like family, so we love hearing about your experience with us. Thank you for taking the time to let us know how we are doing and for trusting us with your care. ','2018-10-19 16:09:08.129000'),(1469,'SignatureCare Emergency Center strives to treat you and get you on your way quickly, as no one likes the ER! Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare. ','2018-10-18 15:21:16.242000'),(1470,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review. ','2018-10-18 15:20:37.620000'),(1471,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. And thank you for choosing SignatureCare!','2018-10-14 14:24:42.780000'),(1472,'Their dedication for helping people in our community is why we love our employees. Thank you for your kind words, and we will pass them along. And thank you for choosing SignatureCare!','2018-10-13 14:46:41.629000'),(1473,'Thank you so much for your kind feedback and the great rating. We appreciate it. Thank you for choosing SignatureCare and we hope you are feeling better. ','2018-10-13 00:34:25.365000'),(1474,'Thank you so much for the five-star rating! ','2018-10-11 14:39:14.878000'),(1475,'At SignatureCare, your wait time is generally 10 minutes or less, and our board-certified team aims to make your visit as quick and as painless as possible. Thank you for letting us know that we are meeting that goal. We appreciate the feedback and the great rating. ','2018-10-11 14:39:04.316000'),(1476,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your little one. If you need peace of mind in the future, don’t hesitate to contact us. ','2018-10-07 17:44:18.555000'),(1477,'We appreciate your review, great rating, and recommendation! Thank you for choosing SignatureCare. ','2018-10-05 16:01:15.218000'),(1478,'Emergencies are never fun, especially when it involves your child. Thank you for trusting us with his care, and we hope he is feeling better. We will pass your kind words along to our team. ','2018-10-05 16:00:47.991000'),(1479,'Thank you so much for your kind words. We appreciate patient feedback, as it helps us continue to do a good job in our community. Thank you for choosing SignatureCare. ','2018-10-05 15:59:44.314000'),(1480,'From the front desk to our doctors, our team makes us proud every day. Thank you for choosing SignatureCare and for the great review. ','2018-10-04 15:57:50.657000'),(1481,'Thank you so much for your feedback, and thank you for choosing SignatureCare. We are here 24/7 in case you need us again. ','2018-10-04 15:56:07.492000'),(1482,'We aim for 100% satisfaction each time you visit one of our SignatureCare locations, so we are pleased to hear that your visit with us went so well. Thank you for your nice review. ','2018-10-04 15:55:47.322000'),(1483,'We are so happy to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review and rating, and we are always open and available when you have an unexpected emergency. ','2018-09-30 15:31:02.548000'),(1484,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience as quick and as painless as possible. Thank you for trusting your emergency needs with SignatureCare. ','2018-09-30 15:35:35.794000'),(1485,'No one likes the ER, so SignatureCare Emergency Center strives to treat you and get you on your way quickly. We are glad to be here for you when you need us, and we hope you are feeling better. ','2018-09-30 15:34:48.456000'),(1486,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a medical emergency. Thank you for the nice review!','2018-09-30 15:33:53.791000'),(1487,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for taking the time to let us know how we are doing and for the great rating. We appreciate your feedback!','2018-09-30 15:32:28.449000'),(1488,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff try to make you as comfortable as possible when you visit us. Thank you for trusting us with your care and for the fantastic review. ','2018-09-29 16:23:03.940000'),(1489,'(Translated by Google) Our emergency rooms are open 24 hours a day, 7 days a week, and here at any time you need emergency medical attention. Thanks again for choosing SignatureCare Emergency Centers.\n\n(Original)\nNuestras salas de emergencia están abiertas las 24 horas del día, los 7 días de la semana, y aquí en cualquier momento necesita atención médica de emergencia. Gracias de nuevo por elegir SignatureCare Emergency Centers.','2018-09-29 16:21:36.161000'),(1490,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and for choosing SignatureCare. ','2018-09-29 16:20:12.659000'),(1491,'Thank you for taking the time to let us know how we are doing. We appreciate your feedback!','2018-09-28 15:00:29.499000'),(1492,'(Translated by Google) We appreciate your comments. Thank you for choosing SignatureCare and for the nice review!\n\n(Original)\nAgradecemos sus comentarios. ¡Gracias por elegir SignatureCare y por la agradable reseña!','2018-09-27 15:43:46.334000'),(1493,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your SignatureCare team. We will make sure to let them know. ','2018-09-25 17:01:39.841000'),(1494,'We are sorry you were unhappy with the care your sister received at SignatureCare Emergency Center. I have passed these concerns onto our medical director and they will be addressed. We’d like to get more information about your sister\'s experience so we can review her file and make sure it never happens again. Can you email jmartin@ercare24.com with your sister\'s full name, date of service and location of service so that we can review and get back to you? We appreciate your help with this matter. ','2018-09-22 16:28:48.688000'),(1495,'Our team appreciates receiving comments like this. Thank you for taking the time to let us know how we are doing. Thank you so much for choosing SignatureCare!','2018-09-23 17:36:31.124000'),(1496,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback and for the great rating. ','2018-09-22 16:29:58.429000'),(1497,'Their compassion and dedication is what makes the SignatureCare team so great. Thank you for letting us know that they are doing a good job!','2018-09-22 16:22:46.372000'),(1498,'Thank you for the five-star rating -- we appreciate it!','2018-09-22 16:22:03.114000'),(1499,'We appreciate and value your feedback because our patients are what keep us going strong. Thank you for your positive review, and for choosing SignatureCare. ','2018-09-21 17:12:24.558000'),(1500,'We appreciate you trusting us with your care and your dad\'s care, and are very pleased to hear that our SignatureCare team has taken great care of you both times. Thank you for choosing SignatureCare and for the recommendation. We hope your dad is feeling better. ','2018-09-21 17:11:24.755000'),(1501,'ER visits can be scary, especially when it involves a parent. We are glad that our team took good care of your mother and helped put you at ease. Thank you for giving us the chance to care for her, and we hope she is feeling better. ','2018-09-21 17:01:12.513000'),(1502,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2018-09-21 16:54:41.400000'),(1503,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. We are here 24/7 in case you need us again. Thank you for the nice review. ','2018-09-19 16:55:28.521000'),(1504,'We aim for 100% satisfaction at SignatureCare, so we are very pleased to hear that this was your experience with us. Thank you for choosing us!','2018-09-17 17:08:28.146000'),(1505,'Thank you so much for your nice review -- we will pass along your kind words to our team. Thank you for choosing SignatureCare!','2018-09-16 16:16:07.937000'),(1506,'Our team makes us proud every day! Thank you for choosing SignatureCare and for the nice review. ','2018-09-15 19:28:22.892000'),(1507,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for letting us know about your experience and we hope you are feeling better. ','2018-09-15 19:28:01.521000'),(1508,'Thank you for letting us know that our team is doing a good job. Our community is important to us!','2018-09-14 21:06:35.732000'),(1509,'(Translated by Google) We appreciate your comments. Thank you for choosing SignatureCare!\n\n(Original)\nAgradecemos sus comentarios. ¡Gracias por elegir SignatureCare!','2018-09-14 21:06:14.303000'),(1510,'We appreciate your review and your recommendation. Thank you for giving us the chance to care for you. ','2018-09-14 21:05:19.582000'),(1511,'Thank you so much for the feedback and the five stars -- we appreciate it!','2018-09-14 13:58:48.045000'),(1512,'Their compassion and dedication to helping others is why we love our SignatureCare team. Thank you for letting us know that they are doing a good job. We appreciate your feedback. ','2018-09-13 00:00:24.185000'),(1513,'We appreciate you giving SignatureCare your trust time and again for your emergency needs, and your kind words regarding our team -- we will pass them along. Thank you for your great review and rating!','2018-09-12 23:59:38.302000'),(1514,'Thank you so much for the great feedback. While we hope to not see you soon, SignatureCare is here 24/7 when you do have an unexpected emergency. ','2018-09-11 17:19:40.097000'),(1515,'Thank you for your review and your recommendation. We appreciate the feedback!','2018-09-10 16:06:42.216000'),(1516,'Thank you for taking time to leave us such a nice review. Our staff appreciates reading reviews like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. ','2018-09-09 13:44:35.188000'),(1517,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please know that we are here 24/7 in case you ever need us again. ','2018-09-08 16:04:55.855000'),(1518,'We want all of our patients to feel like VIPs, and we aim to make your visit with us as quick and painless as possible. Thank you for taking the time to let us know how we are doing!','2018-09-08 16:04:20.888000'),(1519,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. We appreciate your feedback and thank you for choosing SignatureCare. ','2018-09-08 16:03:38.740000'),(1520,'(Translated by Google) We know you have a choice when it comes to emergency care, and we are very proud that you have chosen SignatureCare. Thanks for the great feedback!\n\n(Original)\nSabemos que tiene una opción cuando se trata de atención de emergencia, y estamos muy orgullosos de que haya elegido SignatureCare. ¡Gracias por la genial retroalimentación!','2018-09-08 15:30:14.603000'),(1521,'Thank you for your kind words and the great rating! We appreciate your feedback and are here 24/7 in case you ever need us again. ','2018-09-08 15:30:39.962000'),(1522,'(Translated by Google) We appreciate the excellent comments. Thank you very much for choosing SignatureCare!\n\n(Original)\nAgradecemos los excelentes comentarios. ¡Muchas gracias por elegir SignatureCare!','2018-09-08 15:29:08.928000'),(1523,'(Translated by Google) Thank you very much for the excellent comments. We are pleased to be here for your medical emergencies and appreciate that you choose SignatureCare.\n\n(Original)\nMuchas gracias por los excelentes comentarios. Nos complace estar aquí para sus emergencias médicas y apreciamos que elija SignatureCare.','2018-09-07 16:25:55.206000'),(1524,'Thank you for your positive review and great rating. We appreciate the feedback and are here 24/7 for all your medical emergencies. Thanks for choosing SignatureCare!','2018-09-07 16:23:45.364000'),(1525,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2018-09-07 16:22:51.991000'),(1526,'Our doctors and medical staff thank you for your wonderful feedback. It will help us continue to do a great job for each and every patient that visits us. Thank you so much for choosing SignatureCare and we hope you are feeling better. ','2018-09-07 16:22:18.538000'),(1527,'We appreciate your positive review and recommendation. Our goal is always to provide the best care, and we are very happy to know this was your experience with SignatureCare. ','2018-09-07 16:21:09.418000'),(1528,'It’s great to hear that our doctors took such good care of you and that your experience at SignatureCare Emergency Center was positive. Thank you for the great review and rating. ','2018-09-07 16:20:14.703000'),(1529,'We always appreciate positive feedback from our patients. While we hope not to see you anytime soon, we are here 24/7 in case you need peace of mind in the future. Thank you for choosing SignatureCare. ','2018-09-07 16:19:35.313000'),(1530,'It’s great to hear that our staff treated you so well and that your experience at SignatureCare Emergency Center was positive. Thank you for the great review and for giving us the chance to care for you!','2018-09-06 16:01:40.053000'),(1531,'Thank you so much for placing your trust in us. SignatureCare\'s board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for the nice review and great rating!','2018-09-04 15:57:36.599000'),(1532,'SignatureCare\'s patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-09-06 16:00:42.631000'),(1533,'We aim to get you in and out quickly and back to your life! Thank you for taking the time to let us know that our team is doing a good job. And thank you for choosing SignatureCare!','2018-09-06 15:59:57.827000'),(1534,'Our goal is to always provide the very best care. We appreciate your feedback and hope you are feeling better!','2018-09-04 15:55:28.055000'),(1535,'Thank you so much for the five star rating, Shaun!','2018-08-31 16:17:01.682000'),(1536,'We are open 24 hours so you have peace of mind during your next emergency, should you need us. Thanks choosing our facility and for the nice review. ','2018-08-31 16:16:51.399000'),(1537,'We appreciate the chance to care for you and to show you how we are different! Our board-certified team is here for you 24/7 to handle most medical emergencies for you and your family. Thank you so much for the nice review and for choosing SignatureCare. ','2018-08-31 16:16:10.903000'),(1538,'Our doctors and medical staff thank you for your wonderful feedback. Thank you for choosing SignatureCare and for the nice review. ','2018-08-26 17:19:04.617000'),(1539,'We aim to make all patients comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with SignatureCare, and we appreciate you taking the time to let us know how we are doing. ','2018-08-30 16:23:17.219000'),(1540,'Brenda, thank you so much for taking the time to rate us! We appreciate the feedback. ','2018-08-30 16:20:36.169000'),(1541,'We appreciate the five-star rating. Thank you!','2018-08-30 16:20:18.499000'),(1542,'Thank you for the five-star rating, Audrey!','2018-08-30 16:20:03.092000'),(1543,'We always appreciate positive feedback from our patients. We are here 24/7 for all your emergency medical needs!','2018-08-30 16:19:52.761000'),(1544,'We appreciate the great feedback. Thank you for choosing SignatureCare!','2018-08-30 16:14:27.584000'),(1545,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for your nice review. ','2018-08-27 17:38:26.536000'),(1546,'We appreciate your positive feedback. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thanks for choosing SignatureCare!','2018-08-27 17:38:03.295000'),(1547,'Thank you for your kind words and great rating! We appreciate the feedback. ','2018-08-27 17:35:17.107000'),(1548,'At SignatureCare, we want each and every patient to feel like a VIP, so we are very pleased that this was your experience with us. Thank you for giving us the chance to care for you during your emergency and we hope you are feeling better!','2018-08-27 16:33:47.879000'),(1549,'Thank you so much for the five-star rating! We appreciate it. ','2018-08-26 17:19:21.628000'),(1550,'Our goals are to provide the best care possible to all patients and ensure their families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with SignatureCare. Thank you for letting us know!','2018-08-26 17:18:25.988000'),(1551,'Thank you for the nice review, and we are always open and available when you have an unexpected emergency. Thanks for choosing SignatureCare!','2018-08-26 17:17:24.327000'),(1552,'Thank you or your kind words -- we will pass them along to our team. Thank you for choosing SignatureCare. ','2018-08-26 17:13:49.178000'),(1553,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers and taking time from your busy schedule to write us such a positive review. ','2018-08-26 17:13:23.226000'),(1554,'Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. Thank you for choosing SignatureCare. ','2018-08-25 16:55:06.709000'),(1555,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we hope you are feeling better. ','2018-08-25 16:54:19.126000'),(1556,'SignatureCare is here 24 hours a day, 365 days a year when you have an unexpected emergency. Thank you for choosing us!','2018-08-25 16:53:43.470000'),(1557,'Thank you for letting us help you and help you feel better! And thank you for putting your trust in our SignatureCare team. ','2018-08-24 15:25:39.389000'),(1558,'Hi Peter, thank you so much for the nice rating. If there is anything we could have done to earn that fifth star, we hope you will let us know, as we aim for 100% satisfaction each time you visit us. thank you again for taking the time to rate us -- we appreciate any and all feedback!','2018-08-19 17:17:47.315000'),(1559,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. Thank you so much for the nice review and great rating -- we appreciate the feedback. ','2018-08-20 15:17:57.448000'),(1560,'What a nice review -- we will pass along your kind words to our team so that they remember what a good job they are doing for their community. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare. ','2018-08-19 17:20:02.250000'),(1561,'We appreciate the good rating, Joshua. We hope if there is anything we could have done to earn that fifth star, you will let us know, as we aim for excellence each time you visit us. Thanks again for the feedback!','2018-08-18 13:31:07.349000'),(1562,'We appreciate the nice feedback. Than you for choosing SignatureCare and we hope you are feeling better. ','2018-08-18 13:30:32.540000'),(1563,'Thank you for giving SignatureCare your trust time and again when it comes to your medical emergency. We appreciate the great feedback and the great rating. ','2018-08-18 13:29:57.587000'),(1564,'Thank you for letting us know that we are doing a good job. We appreciate the feedback and the great rating!','2018-04-26 14:10:29.638000'),(1565,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our team will make you and your family members feel comfortable while your treatment is in process. Thank you for choosing SignatureCare and for the fantastic review. ','2018-08-17 14:51:10.539000'),(1566,'Thank you so much for the five-star rating. We appreciate the feedback!','2018-08-16 16:24:28.352000'),(1567,'Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. Thank you for giving us the chance to care for you and for the nice review!','2018-08-15 14:02:00.155000'),(1568,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and remember that we are here 24/7 in case you have another health emergency. ','2018-08-15 14:01:13.538000'),(1569,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-08-12 16:18:14.390000'),(1570,'\nAt SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2018-08-10 19:53:01.907000'),(1571,'Our doctors and medical staff thank you for your wonderful feedback, and we will continue to provide excellent care to our patients. Thank you for choosing SignatureCare. ','2018-08-10 19:52:24.467000'),(1572,'We appreciate you trusting us time and again for your emergency care. Thank you for the great feedback -- it will help us continue to do a great job for our community. ','2018-08-10 19:51:26.543000'),(1573,'Thank you for choosing SignatureCare Emergency Centers are your choice for emergency care. We appreciate the great feedback!','2018-08-08 16:54:19.572000'),(1574,'At SignatureCare Emergency Center, we love all our patients, and our number one goal is to treat and diagnose quickly and help you feel better faster. Thank you for trusting us with your mom\'s medical needs and we hope she is feeling better. ','2018-08-06 16:55:09.346000'),(1575,'When we receive feedback like this, it helps us know we’re doing something right in our community. Thank you for letting us care for you and for the nice review. ','2018-08-04 16:38:59.964000'),(1576,'We have some of the best nurses in Texas- SignatureCare Emergency Rooms take pride in our staff and our nurses care so much about our patients. We are so very happy to hear you loved your nurses and our staff. We will make sure to let them know. Feel better Angel!','2016-08-26 17:21:16.251000'),(1577,'Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your husband\'s emergency needs with SignatureCare, and thank you for the very nice review. ','2018-08-02 15:39:48.661000'),(1578,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Thank you for your positive review, and we hope your husband is feeling better.','2018-07-31 23:37:48.274000'),(1579,'We aim to treat all our patients like they are are ONLY patient, so it\'s great to hear that our team did just that. Thank you for choosing SignatureCare. ','2018-07-31 01:48:17.685000'),(1580,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you so much for choosing SignatureCare time and again for your emergency needs!','2018-07-29 14:15:38.752000'),(1581,'We appreciate you giving us your trust not once, but twice. We are glad to be here for you when you need us. Thank you for choosing SignatureCare and for the nice review. ','2018-07-29 14:13:35.690000'),(1582,'We aim for 100% satisfaction each time you visit us, so thank you for letting us know how we did. Thank you for choosing SignatureCare and we hope you are feeling better. ','2018-07-28 15:29:00.158000'),(1583,'Their love for their patients is why we love our team. Thank you for letting us know that they are doing a good job. While we hope not to see you anytime soon, we are here 24/7 in case you need us again. ','2018-07-28 15:30:10.994000'),(1584,'While we hope not to see you anytime soon, know that we are here 24/7 in case you need us again. Thank you for choosing SignatureCare!','2018-07-27 14:35:52.111000'),(1585,'Thank you for the five-star rating! We appreciate it. ','2018-07-27 14:35:07.864000'),(1586,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. Thank you for choosing SignatureCare. ','2018-07-26 14:44:00.339000'),(1587,'The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. Thank you for the nice review and great rating. And thank you for choosing SignatureCare. ','2018-07-22 17:18:07.684000'),(1588,'We are sorry to hear about your husband\'s emergency, but are very pleased to hear that our team took good care of him and you during your visit. Thank you for giving us the chance to care for your husband, and we hope he is feeling better!','2018-07-21 17:57:36.934000'),(1589,'We appreciate your continued trust in our board-certified team at SignatureCare. Thank you for taking time out of your busy schedule to let us know how we are doing. We appreciate the great rating and the very nice review. ','2018-07-21 17:56:45.800000'),(1590,'SignatureCare aims for 100% satisfaction each and every time you visit. Thank you for choosing us and for the great rating. ','2018-07-21 17:56:00.645000'),(1591,'SignatureCare has a much shorter wait time than most hospitals (usually 10 minutes or less) and we will treat you like family each and every time you visit us. Thank you for giving us the chance to care for you. ','2018-07-21 17:55:22.601000'),(1592,'We want all patients and their families to be comfortable while diagnosis and treatment are in progress. Thank you for letting us know that our team took such good care of you, and we hope your husband is feeling better. Thank you for choosing SignatureCare. ','2018-07-21 17:54:30.167000'),(1593,'Their compassion for helping other is what makes our staff so great. Thank you for letting SignatureCare take care of you during your emergency and for taking the time to let us know how we are doing. ','2018-07-21 17:53:47.101000'),(1594,'Visiting the ER is never fun, especially when a loved one is hurt. We are pleased to hear that our team took good care of your husband and we hope he is feeling better. Thank you for trusting SignatureCare with his emergency needs. ','2018-07-20 17:00:35.529000'),(1595,'Their kindness and compassion for others is what makes our staff so special. We are so pleased to hear that they took good care of you and hope you will consider us next time you are having a medical emergency. Thank you for choosing SignatureCare. ','2018-07-20 16:59:39.470000'),(1596,'Thank you so much for your feedback! Our goal is to always provide the best care. We love hearing about the comfortable experience you had and we hope you are feeling better. ','2018-07-20 16:58:38.678000'),(1597,'Thank you for the five stars, Jorge! We appreciate the great rating. ','2018-07-19 15:15:11.852000'),(1598,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2018-07-18 14:11:37.358000'),(1599,'We appreciate the feedback and any future recommendation! Thank you for choosing SignatureCare and for taking the time to let us know how we are doing. ','2018-07-16 16:30:43.662000'),(1600,'We appreciate you choosing SignatureCare ER time and again for your emergency needs. Thank you for your trust and for the great review and rating. ','2018-07-16 16:30:19.109000'),(1601,'We appreciate the feedback and the recommendation. Thank you for choosing SignatureCare!','2018-07-14 14:34:21.304000'),(1602,'Our doors are open 24/7 for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. We appreciate the review and great rating. ','2018-07-13 16:16:22.949000'),(1603,'We are very sorry to hear that your friend had a bad experience at our facility. We are looking into this situation with our team so that we can improve communication and care. We take all reviews very seriously and we appreciate your feedback. Thank you for taking the time to let us know how we are doing. ','2018-07-11 16:31:20.385000'),(1604,'Thank you so much for the feedback, Crystal! We appreciate the five stars. ','2018-07-11 16:29:59.430000'),(1605,'You are certainly not the first parents who are more worried than their injured child! At SignatureCare, we want all parents to know that we will treat your child as if they are our own, with the utmost care and consideration. Thank you for trusting us time and again with your emergency needs and we hope your daughter is feeling better!','2018-07-09 16:14:23.168000'),(1606,'We always appreciate positive feedback from our patients. Thank you for letting our team take good care of you and for letting us know how we are doing. ','2018-07-06 15:37:28.657000'),(1607,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. ','2018-07-05 16:09:54.116000'),(1608,'Thank you for the five stars, Tony!','2018-06-20 21:20:38.825000'),(1609,'Our community is important to us, so its great to hear that our team took good care of you. Thank you for taking the time to let us know how we are doing. ','2018-06-07 17:31:35.663000'),(1610,'We want all of our patients to feel like family, so it\'s great to hear that our team made you feel at home and comfortable while your diagnosis and treatment were in progress. Thank you for choosing SignatureCare and for the great review. ','2018-06-07 17:29:19.910000'),(1611,'Thank you for choosing SignatureCare and for the fantastic review. We appreciate you taking time from your busy schedule to rate us, and we appreciate any future recommendations!','2018-06-06 15:27:50.638000'),(1612,'Thank you for your comment -- we take all reviews, good or bad, very seriously. We would like the chance to review your bill and then discuss with you. Can you please email our billing manager, Tray at tmoore@roundtmc.com with your full name, date of service and location of service? We will take a look and get back with you to clear up any confusion and assist you further. Thank you so much for taking the time to review and rate us. ','2018-06-06 15:25:39.489000'),(1613,'We appreciate you taking time out of your day to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2018-06-05 19:03:00.051000'),(1614,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. You are correct that we do not accept Medicaid -- the Medicaid program does not participate with freestanding emergency rooms like ours (not affiliated with a hospital), but we hope their policy changes in the future. Thank you for choosing us and for the very nice review!','2018-06-04 16:33:07.631000'),(1615,'Our goals are to provide the best care possible to all patients and ensure you are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. Thank you for the great review and rating. ','2018-06-04 16:30:06.652000'),(1616,'Thank you for the five-star rating, Marci. We appreciate the feedback!','2018-06-01 17:26:48.668000'),(1617,'Thank you so much for taking the time to rate us, Tina. We hope you will let us know if there\'s anything we could have done to earn that final star in your rating, as we aim for 100% satisfaction with each of our patients. Thank you for choosing SignatureCare!','2018-05-31 15:26:05.583000'),(1618,'Thank you so much for the five-star rating -- we appreciate the feedback!','2018-05-26 15:48:04.747000'),(1619,'Our SignatureCare team makes us proud every day with the way they care for members of our community. Thank you for letting us know that they are doing a good job. And thank you for choosing SignatureCare. ','2018-05-24 16:02:56.192000'),(1620,'Our patients are what keep us going strong, so we appreciate your feedback. Thank you for your positive review, and for choosing SignatureCare. ','2018-05-23 15:13:40.741000'),(1621,'Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare. ','2018-05-21 19:58:37.140000'),(1622,'Great to hear! Thank you for choosing our facility, and for the five-star rating!','2017-10-24 15:18:21.216000'),(1623,'Thanks for the feedback! We appreciate it. ','2018-05-15 17:17:33.266000'),(1624,'Thank you for your kind words. We will pass them along to our team. We are open 24/7 in case you ever need us again. Thank you for choosing us!','2018-05-13 16:29:45.590000'),(1625,'We appreciate your kind words and great review. Thank you for taking the time to let us know how we are doing. We appreciate you choosing SignatureCare and hope you are feeling better. ','2018-05-10 15:33:25.200000'),(1626,'We are so glad to hear that you are feeling better after your visit to SignatureCare Emergency Centers. Thank you for giving us the chance to take care of you, and for taking the time to review our services. ','2018-05-01 17:59:42.014000'),(1627,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your little ones.','2018-04-28 13:04:14.854000'),(1628,'Thank you for the very nice review, Pat. We appreciate the feedback! We hope you will let us know if there\'s anything we could have done to earn that fifth star in your rating, so we can do better next time!','2018-04-25 16:49:10.609000'),(1629,'We appreciate the five-star rating, Kelly. Thanks so much for your feedback, and for choosing SignatureCare. ','2018-04-24 16:46:37.124000'),(1630,'Thank you for your feedback -- we take it extremely seriously. We apologize you were unhappy with your experience and would love the chance to talk to you. Could you email jmartin@ercare24.com with your full name, date of service and location of service so that we can review your case with our team? We appreciate the chance to learn from our mistakes and do better next time. Thank you for your help and for your review. ','2018-04-24 16:49:47.940000'),(1631,'SignatureCare\'s doctors, nurses and medical staff aim to make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. We are glad to hear this was your experience with our facility. Thank you for choosing SignatureCare and for the fantastic review. ','2018-04-24 16:48:24.838000'),(1632,'Thank you so much for the positive feedback. Although we hope to not see you soon, we are here when you do have an unexpected emergency. Thank you for choosing SignatureCare. ','2018-04-20 15:32:31.961000'),(1633,'We appreciate your feedback. Thank you for choosing SignatureCare!','2018-04-19 17:28:38.914000'),(1634,'We appreciate your feedback. It\'s great to hear that our staff took such good care of you. Thank you for choosing SignatureCare Emergency Centers. ','2018-04-13 15:24:42.211000'),(1635,'Thank you for your feedback. When we receive feedback like this, it helps us know we\'re doing something right in our community. Our SignatureCare staff is always ready to take care of your emergency needs. Thank you for trusting us to care for you. ','2018-04-11 14:21:01.163000'),(1636,'Thank you so much for taking the time to review our services. We appreciate the great rating!','2018-04-08 19:46:31.195000'),(1637,'SignatureCare\'s wait times are shorter than a hospital -- usually 10 minutes or less -- and our board-certified doctors are available to treat your emergency 24/7. Thank you for choosing us, and we hope you are feeling better. ','2018-04-07 16:02:55.232000'),(1638,'We are glad we could be here for you to help you feel better. Thank you for choosing SignatureCare and we appreciate the great rating!','2018-04-07 16:01:49.647000'),(1639,'Thank you so much for the opportunity to care for you. We appreciate your review and any future recommendations. We will pass your kind words along to our SignatureCare team. ','2018-04-04 15:49:20.061000'),(1640,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and for the great rating.','2018-04-03 13:56:25.396000'),(1641,'No one likes the ER, but we are glad to hear that our team made your visit with us quick and painless. Thank you for taking the time to review us, and thank you for choosing SignatureCare. ','2018-04-02 15:12:00.292000'),(1642,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-03-31 14:58:25.723000'),(1643,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and for the very nice review.','2018-03-26 22:06:44.249000'),(1644,'It\'s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Our goals are to provide the best care possible to all patients, so we are very happy to know this was your experience with our emergency room. Thank you for choosing us. \n','2018-03-24 18:06:06.628000'),(1645,'We are glad our team was able to make your visit with us quick and comfortable. Thank you for choosing SignatureCare and for the great review. ','2018-03-21 16:29:15.875000'),(1646,'At SignatureCare Emergency Center, we love all our patients, and our top priority is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your care and for the very nice review. ','2018-03-17 15:15:34.115000'),(1647,'Thank you so much for taking the time to review us and let us know how we are doing. We take all of your comments very seriously, and one of our management staff will be reaching out to you to discuss your case with you. Thank you so much for giving us the chance to take care of you and to review our policies and procedures with our team. ','2018-03-17 18:40:38.864000'),(1648,'Thank you for the feedback, Sara. It will help us continue to do a good job in our community. Thanks for choosing SignatureCare!','2018-03-13 15:56:49.600000'),(1649,'Thank you for trusting us time and again with your emergency care. We appreciate the nice review and the five-star rating!','2018-03-04 17:10:42.405000'),(1650,'Thank you for letting us know that our team is doing a good job. Our community is important to us, and we appreciate any feedback that helps us do better. Thanks for the nice review!','2018-02-28 18:00:27.827000'),(1651,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place. But we aim to make your visit with us quick and pleasant. It\'s great to hear that this was your experience with us. Thanks so much for the nice review. ','2018-02-24 19:50:18.281000'),(1652,'We always appreciate positive feedback from our patients. Our dedicated staff is here 24/7 for all of your medical emergencies. Thanks so much for choosing SignatureCare. ','2018-02-23 17:05:33.492000'),(1653,'Our goal is to provide the best care possible to all patients. We are very happy to know this was your experience with our emergency room. Thank you for your very nice review. ','2018-02-22 18:12:50.816000'),(1654,'Thank you for your feedback! It will help our team continue to do a great job. Thanks for choosing SignatureCare. ','2018-02-14 23:18:48.322000'),(1655,'We are glad our SignatureCare team was able to deliver an exceptional experience. Thank you for letting us take care of you and for taking the time to write us a nice review. ','2018-02-14 23:18:28.814000'),(1656,'We appreciate the great feedback. Thank you for choosing SignatureCare. ','2017-08-21 18:48:08.461000'),(1657,'Our doctors are board certified and have excellent bedside manners -- so we\'ve been told numerous times. Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. ','2018-02-11 20:01:04.585000'),(1658,'Our doctors have great bedside manners -- or so we\'ve been told time and again! Thank you for letting us know they are doing a good job. Thanks for choosing SignatureCare. ','2018-02-08 16:44:10.080000'),(1659,'Children cannot always tell us what\'s wrong like an adult, but at SignatureCare, we use our state-of-the-art equipment and onsite lab services to quickly diagnose young children. It is never fun when your child gets sick, but when you have an emergency, we are here to help! Thank you for your review and we hope your child feels better soon. ','2018-02-07 17:38:15.559000'),(1660,'We aim to treat all of our patients as if they are family. We are glad to hear that our SignatureCare team did just that. Thanks for trusting us with your medical emergency and for the very nice review. ','2018-02-06 16:37:44.849000'),(1661,'We appreciate you trusting SignatureCare time and again for your care. Thanks for taking the time to review us!','2018-02-06 16:36:30.847000'),(1662,'It\'s never fun when you\'re traveling and get sick, but we are glad that we were able to be here for you. Thank you for trusting SignatureCare with your care and for the great review and rating. ','2018-02-04 14:44:30.241000'),(1663,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don\'t hesitate to give our team a call. ','2018-02-04 14:38:57.643000'),(1664,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2018-02-02 19:54:11.420000'),(1665,'Thank you for the five-star rating, Terri. We appreciate it. ','2018-02-02 19:51:08.906000'),(1666,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2018-02-02 19:52:35.768000'),(1667,'SignatureCare\'s board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for putting your faith in our team, and we hope you are feeling better. ','2018-01-31 16:00:37.586000'),(1668,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback and for the five-star rating. ','2018-01-26 16:19:03.393000'),(1669,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2018-01-25 13:01:17.958000'),(1670,'We appreciate your review and the great rating you gave us. Thanks for choosing SignatureCare!','2018-01-25 13:00:09.284000'),(1671,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2018-01-23 14:10:31.008000'),(1672,'It’s great to hear that your experience at SignatureCare Emergency Center was positive. Thank you for the nice review, and we are always open and available when you have an unexpected emergency. ','2018-01-23 14:10:07.854000'),(1673,'We appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-01-23 14:09:24.870000'),(1674,'Thanks so much for letting us know how we are doing. We hope you will let us know if there\'s anything we could have done to earn that fifth star! We aim for 100% satisfaction with our patients. Thanks for the review!','2018-01-23 14:08:56.420000'),(1675,'Thank you for taking time from your busy schedule to review your experience with us. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2018-01-23 14:07:54.864000'),(1676,'SignatureCare wants all parents to know that we will treat your child as if they are our own. Thank you for trusting us with the care of your daughter, and we hope she is feeling better. Thanks for the great review. ','2018-01-22 15:23:28.062000'),(1677,'We appreciate your feedback! Thanks for choosing SignatureCare. ','2018-01-21 15:58:20.443000'),(1678,'We appreciate the five-star rating -- thanks!','2018-01-18 16:56:42.995000'),(1679,'SignatureCare loves offering you short wait times and quick and efficient diagnoses and treatment. Thank you for giving us the chance to take care of you, and for the nice review. ','2018-01-16 16:06:25.243000'),(1680,'I appreciate you taking the time to tell us about your recent visit with SignatureCare. We take all of our patient’s feedback very seriously. Please give us the opportunity to discuss this matter with you personally so we can learn from the experience and make sure it doesn’t happen again in the future. Would you please email info@ercare24.com with your son\'s full name, date of service and location of service so that we can review your case and talk to our team? We value every patient and want 100% satisfaction for everyone who visits with us. Thank you for taking the time to review us. ','2018-01-16 16:05:31.960000'),(1681,'Thanks for the feedback and five stars, Nicole. We appreciate it!','2018-01-16 15:59:39.097000'),(1682,'Thank you so much for the five-star rating, Jordan!\n','2018-01-16 15:59:22.379000'),(1683,'We appreciate you giving us your trust not once, but twice. Thanks for the great review and rating, and we hope you are feeling better. ','2018-01-14 16:50:43.163000'),(1684,'Our staff makes us proud every day with the way they take care of our patients. Thank you for letting us know they are doing a good job. ','2018-01-13 14:39:40.879000'),(1685,'Thank you for the nice feedback. We appreciate the great rating!','2017-12-25 16:50:44.301000'),(1686,'We are sorry to hear about your emergency (especially right before the holidays!), but are so glad to hear that we were able to take care of you quickly and efficiently. Thank you for the nice review and great rating. ','2018-01-11 18:25:47.585000'),(1687,'The wait time at SignatureCare is usually 10 minutes or less, and we are so glad to hear that this was your experience when visiting us. Thank you for letting us take care of you and for such a nice review. ','2018-01-10 18:29:38.345000'),(1688,'We appreciate you trusting us more than once to care for you and your husband. No one likes the ER, but we are glad to hear that our team made your time with us comfortable and memorable. Thank you for choosing SignatureCare and for giving us such a great rating. ','2018-01-10 18:29:01.200000'),(1689,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and for writing such a nice review. ','2018-01-10 18:27:38.791000'),(1690,'\nWe always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thanks for choosing SignatureCare!','2018-01-09 18:41:54.639000'),(1691,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2018-01-07 19:28:16.145000'),(1692,'Thanks so much for the feedback! Our staff appreciates comments like this, and we appreciate the nice review. ','2018-01-07 19:27:28.142000'),(1693,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our team aims to make you feel as comfortable as possible while your treatment and diagnosis are in process. Thank you for choosing us and for the fantastic review. ','2018-01-06 18:15:57.259000'),(1694,'Our goal at SignatureCare is to get you in and out quickly, and back on your way to good health. We appreciate the chance to take care of you and hope you are feeling better. ','2018-01-05 17:24:19.400000'),(1695,'Thank you for trusting us with your care. SignatureCare cares about every member of our community, and we are open 24/7 in case you need us again. ','2018-01-05 17:23:33.231000'),(1696,'Thanks so much for the feedback and great rating. We appreciate your feedback and hope you are feeling better. ','2018-01-04 15:57:42.987000'),(1697,'We love hearing about the comfortable experience our patients had at SignatureCare. We are glad our team put you at ease and took good care of you. Thanks so much for the nice review. ','2018-01-04 15:56:17.581000'),(1698,'Thank you so much for the five-star rating, Barbara. We appreciate it. ','2018-01-04 15:55:43.262000'),(1699,'Thanks so much for the feedback and four stars, Vany. Let us know if there is anything we could have done to earn that fifth star, as we aim for 100% satisfaction at SignatureCare!','2018-01-04 15:55:24.926000'),(1700,'Thank you for the fantastic review. It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. ','2018-01-03 15:51:48.093000'),(1701,'Thank you so much for the five stars, Amanda. We appreciate it!','2017-12-30 15:55:29.769000'),(1702,'Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. Thank you for the great review. ','2017-12-28 15:05:39.501000'),(1703,'Thank you so much for the nice review and any future recommendations. We appreciate you giving SignatureCare your trust. ','2017-12-26 20:55:21.055000'),(1704,'We are very sorry to hear about your billing frustrations. We take all comments and complaints very seriously and would like to review your case. If you would please email Tray in our billing office at tmoore@roundtmc.com, he will review your bill and discuss with you personally. Thank you for letting us know how we are doing, and we look forward to resolving this problem for you. ','2017-12-23 21:50:26.434000'),(1705,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare and for the nice rating. ','2017-12-22 19:03:58.527000'),(1706,'Thank you for letting us know how we are doing. We take all complaints very seriously and we would like a chance to review your case and see if we can help. Can you email info@ercare24.com with your full name, date of service and location of service so that we can look into this further for you? We want all of our customers to be satisfied customers, so please give us an opportunity to make this right for you. Thank you for taking the time to review us. ','2017-12-21 18:05:56.083000'),(1707,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Thank you for your feedback!','2017-12-20 19:04:46.425000'),(1708,'Our staff makes us proud every day! Thanks for letting us know they are doing a good job. ','2017-12-19 23:59:09.359000'),(1709,'Thank you so much for the five-star rating!','2017-12-19 23:58:50.655000'),(1710,'Thanks for letting us know how we are doing. We appreciate the feedback!','2017-12-19 23:58:35.870000'),(1711,'Thank you for letting us help you and help you feel better! We appreciate you choosing SignatureCare. ','2017-12-17 18:40:02.916000'),(1712,'Thank you so much for the positive feedback. We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thanks for choosing us!','2017-12-17 18:39:33.042000'),(1713,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. We appreciate your feedback and great rating.','2017-12-17 18:39:05.006000'),(1714,'Thank you so much for the five-star rating! We appreciate the feedback.','2017-12-13 17:50:45.298000'),(1715,'SignatureCare\'s board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for trusting us with your care. ','2017-12-11 16:18:54.241000'),(1716,'Our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting SignatureCare with your medical needs. ','2017-12-11 16:18:00.262000'),(1717,'Thank you so much for the five stars, Diana! We appreciate the feedback.','2017-12-11 16:08:33.335000'),(1718,'Thank you for your feedback, Emily. Please let us know if there is anything we could have done to earn that fifth star! We are always aiming for 100% satisfaction. Thank you for choosing SignatureCare and for your nice review. ','2017-12-10 20:02:40.025000'),(1719,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff try their best to make you feel comfortable and able to relax while you are being treated. Thank you for choosing SignatureCare and for the fantastic review. ','2017-12-09 18:31:28.409000'),(1720,'We love hearing about the comfortable experience our patients had at SignatureCare. We understand that no one likes the ER, so we aim to make you as comfortable as possible while you are with us. Thanks for choosing us and for the nice review. ','2017-12-05 22:38:41.592000'),(1721,'Thanks so much for your feedback and for choosing SignatureCare. We appreciate the great rating.','2017-12-05 22:37:07.213000'),(1722,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2017-12-03 20:56:11.965000'),(1723,'Our staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and thank you for choosing SignatureCare!','2017-11-14 19:11:45.822000'),(1724,'Thank you so much for the nice feedback and great rating. Your comments will help us continue to do a great job for our patients. Thanks for choosing SignatureCare. ','2017-12-01 18:05:09.571000'),(1725,'The compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2017-11-28 17:53:30.332000'),(1726,'Thank you for trusting SignatureCare with the care of your little one. We want all parents to feel comfortable while their child is being treated, so it\'s great to hear that our team did just that for you. Thank you for the great review and we hope your son is feeling better. ','2017-11-24 15:41:35.636000'),(1727,'Thank you for letting us now how we are doing. We appreciate the feedback!','2017-11-24 00:10:32.706000'),(1728,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-11-20 14:16:34.325000'),(1729,'Thank you for trusting us with the care of your mom. We appreciate your trust and the very nice review. We hope your mom is feeling better!','2017-11-18 16:31:50.264000'),(1730,'We are very pleased to hear that your experience with SignatureCare Emergency Centers was a pleasant one. Thank you for taking the time to review us and to give us some feedback. We appreciate the great rating.','2017-11-17 14:25:24.816000'),(1731,'Our community is so important to us, so it\'s important to know that we are doing a good job. Thank you for your feedback, as it will help us continue to do a good job for our patients. Thanks for your nice review!','2017-11-16 17:41:32.781000'),(1732,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for giving us the chance to help you feel better. ','2017-11-15 17:02:51.163000'),(1733,'While we hope not to see you anytime soon, please know that we are here 24/7 if you need us. Thank you for the nice review. ','2017-11-13 18:55:33.356000'),(1734,'Thank you so much for trusting us with the care of your husband. We hope he is feeling better, and we appreciate the nice review!','2017-11-09 16:49:47.584000'),(1735,'Thanks so much for the feedback, James. We appreciate the five stars!','2017-11-07 16:49:14.816000'),(1736,'Thank you for choosing SignatureCare and for the nice review. Our community is important to us, so it\'s important to hear that we are doing a good job. ','2017-11-02 20:55:54.563000'),(1737,'Thank you for taking the time to review SignatureCare. We appreciate the feedback and hope you are feeling better!','2017-11-02 20:55:04.408000'),(1739,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing SignatureCare. ','2017-10-31 21:02:38.225000'),(1740,'It\'s always nice to hear that we are doing a good job in our community. Thank you for the feedback, and for choosing SignatureCare. ','2017-10-26 15:33:28.264000'),(1741,'SignatureCare is here for you 24/7 for all your emergency needs. Thank you for trusting us with your care and for the great review. ','2017-10-26 15:32:47.939000'),(1742,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! ','2017-10-25 16:35:07.759000'),(1743,'Thanks for the five stars, Sydney!','2017-10-24 15:18:38.857000'),(1744,'We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. Thanks for choosing our facility and for the nice review. ','2017-10-23 17:57:25.927000'),(1745,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2017-10-17 14:49:55.850000'),(1746,'While we hate that you\'ve had to visit us on multiple occasions, we are very pleased to hear that you choose SignatureCare for your emergency care. Thanks for the nice review and rating.','2017-10-13 15:00:56.629000'),(1747,'Thanks so much for taking the time to rate us. We appreciate the five stars!','2017-10-13 15:00:02.095000'),(1748,'We always appreciate your feedback. Thank you for taking the time to review SignatureCare. ','2017-10-12 14:03:29.236000'),(1749,'Thanks for the feedback, and for the five-star rating.','2017-10-12 14:03:09.118000'),(1750,'Thank you for the feedback and the five-star rating!','2017-10-07 14:37:45.148000'),(1751,'Our SignatureCare team cares deeply about all of our patients, and their goal is to make you feel like you are their ONLY patient. Thank you for letting us know that we are doing a good job. We appreciate the feedback.','2017-09-24 17:17:50.200000'),(1752,'Thank you for the nice words, and for any future recommendations. We appreciate it!','2017-09-24 17:16:21.161000'),(1753,'SignatureCare Emergency Center takes pride in our staff. We are so very happy to hear you loved them. We will make sure to let them know. Thanks for the great review!','2017-09-23 17:34:20.044000'),(1754,'Thanks for the feedback, Sara. We appreciate the review and great rating. Thanks for choosing SignatureCare. ','2017-09-20 14:34:43.177000'),(1755,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our facilities. SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Thanks for giving us your trust. ','2017-09-20 14:36:26.045000'),(1756,'It is never fun when your child gets sick, but when you have an emergency with your child, we are here to help! Children are a top priority of all our staff and doctors at SignatureCare. Thank you for your review and for trusting us with your little ones. ','2017-09-20 14:38:08.965000'),(1757,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thanks for the nice review.\n','2017-09-12 20:59:57.971000'),(1758,'SignatureCare appreciates the opportunity to provide the very best service to you, and to make you comfortable while you are being treated. Thank you for the opportunity to serve you, and we hope you will consider us for any future emergency needs. Thanks for the nice review!','2017-09-11 01:04:03.557000'),(1759,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2017-09-08 14:57:05.938000'),(1760,'We always appreciate positive feedback like this. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare. ','2017-09-07 16:17:23.602000'),(1761,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and great rating.','2017-09-07 16:17:56.596000'),(1762,'Our team appreciates feedback like this -- we will pass along your kind words to them. Thank you for choosing SignatureCare!','2017-09-06 16:02:17.904000'),(1763,'We are so sorry to hear about your recent emergency, but are grateful that you chose us for your care. Thank you for the great rating and nice review. ','2017-08-23 01:33:50.410000'),(1764,'SignatureCare\'s board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for the nice review. ','2017-08-21 18:49:48.977000'),(1765,'Thank you so much for the nice review, Maya. Please let us know if there\'s anything we could have done to earn that fifth star -- we aim for 100% satisfaction. Thank you for letting SignatureCare take good care of you.','2017-08-20 02:25:31.759000'),(1766,'Thank you for letting us know how we are doing. We appreciate the great rating.','2017-08-20 02:24:46.974000'),(1767,'It\'s great to hear that you liked our nurses and staff, and that they took good care of you. Thank you for choosing SignatureCare and for any future recommendations!','2017-08-17 18:56:00.668000'),(1768,'Thank you so much for the feedback. We appreciate the five-star rating!','2017-08-16 01:16:40.199000'),(1769,'We appreciate and value your feedback. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2017-08-16 01:17:17.682000'),(1770,'SignatureCare Emergency Center understands that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff aim to make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2017-08-16 01:16:23.799000'),(1771,'Thank you so much for your kind words. We are sorry that your experience before us was unpleasant, but our goal at SignatureCare is to make sure you are comfortable from the moment you walk in our doors to the moment you leave. We hope you are feeling better, and than you for choosing our facility.','2017-08-14 13:29:48.724000'),(1772,'We appreciate feedback like this. Our community is important to us and we are pleased to hear that we are doing a good job. Thank you for choosing SignatureCare!','2017-08-14 13:27:22.061000'),(1773,'Our team appreciates receiving comments like this -- it helps us continue to do a great job. Thank you for the feedback and the great review.','2017-08-13 13:46:47.256000'),(1774,'It\'s great to hear our staff took good care of you. Thank you for letting us know!','2017-08-13 13:45:57.194000'),(1775,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2017-08-12 01:41:12.034000'),(1776,'We appreciate the feedback and the great rating. Thank you for trusting SignatureCare with your medical needs. ','2017-08-10 01:42:16.338000'),(1777,'We appreciate your feedback, and always take your comments seriously. Thank you for letting us know, and we hope you are feeling better!','2017-08-07 18:45:17.012000'),(1778,'Thanks so much for the great rating -- we appreciate the five stars!\n','2017-08-07 18:44:41.114000'),(1779,'Short wait is our middle name! Thank you so much for trusting SignatureCare with your emergency needs. We appreciate your trust and your feedback. ','2017-08-07 01:57:39.006000'),(1780,'Thank you so much for the five star rating, and for any future recommendations!','2017-08-03 13:28:30.417000'),(1781,'We appreciate the five-star rating!','2017-08-03 13:28:08.328000'),(1782,'Thank you for the nice feedback. It helps us excel at our jobs. We hope you are feeling better, and appreciate you trusting SignatureCare for your needs. ','2017-08-01 01:27:00.205000'),(1783,'Great to hear! Thanks so much for the nice review and rating.','2017-07-29 14:04:48.742000'),(1784,'It\'s always scary visiting the ER, but we are glad to hear our SignatureCare team put you at ease and took good care of you. We hope you are feeling better!','2017-07-28 19:07:58.336000'),(1785,'We appreciate the positive feedback. Thank you for choosing SignatureCare and please consider us for any future emergency needs. ','2017-07-26 16:08:06.467000'),(1786,'Our SignatureCare team continues to make us proud. Thank you for letting us take care of your emergency. ','2017-07-25 01:53:44.119000'),(1787,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in our team. It means a lot to hear that we’re doing a good job. ','2017-07-24 02:57:59.052000'),(1788,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2017-07-24 02:57:23.239000'),(1789,'We appreciate you taking time from your busy schedule to write us such a nice review. SignatureCare is open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us. ','2017-07-22 16:36:01.009000'),(1790,'The board-certified team at SignatureCare wants parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your little one and for the great review.','2017-07-21 02:01:33.500000'),(1791,'Thank you for letting us take care of you during your recent emergency. We appreciate the great rating.','2017-07-20 01:17:46.251000'),(1792,'Thank you so much for the positive feedback. We appreciate your comments and reviews, and appreciate you choosing SignatureCare. ','2017-07-17 14:47:50.325000'),(1793,'We are sorry to hear about your bike accident, but are very pleased to hear that our team took such good care of you. While we hope not to see you anytime soon, please know we are here 24/7 in case of any emergency. Thank you for choosing SignatureCare. ','2017-07-17 14:47:04.718000'),(1794,'While we hope not to see you anytime soon, we are here for you 24/7 whenever you have an emergency. Thank you for your rating and review. ','2017-07-15 22:18:36.919000'),(1795,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider SignatureCare next time you are experiencing a healthcare emergency. ','2017-07-15 22:18:04.535000'),(1796,'Thank you for the wonderful feedback. We appreciate you giving SignatureCare the chance to take care of you. ','2017-09-05 15:52:45.151000'),(1797,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2017-07-13 12:45:47.717000'),(1798,'Our staff continues to make us proud every day with the way they take care of our patients. Thank you for trusting our team, and for choosing SignatureCare. ','2017-07-11 15:45:44.287000'),(1799,'One of SignatureCare\'s main goals is to get you in quickly, so we can begin your treatment and get you back to good health. It\'s great to hear that was your experience with our emergency room. Thank you for choosing us. ','2017-07-11 15:45:15.754000'),(1800,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to know that their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your daughter. If you need peace of mind in the future, don’t hesitate to contact us. ','2017-07-09 23:56:43.287000'),(1801,'Thank you for the five stars -- we appreciate the feedback!','2017-07-04 14:14:25.124000'),(1802,'Thank you for the great rating, Melinda. If there is anything we could have done better, let us know so that we can earn that fifth star! ','2017-07-01 15:33:13.824000'),(1803,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2017-07-01 15:32:40.444000'),(1804,'We are here for you whenever the medical emergency need arises. Thank you for choosing SignatureCare.','2017-06-28 01:41:12.159000'),(1805,'Thank you so much for the positive feedback. We appreciate your review. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2017-06-22 16:43:27.495000'),(1806,'It\'s great to hear that our team is doing a great job. Thank you for letting us take care of you and for the great review. ','2017-06-22 16:42:31.775000'),(1807,'Our staff appreciates receiving comments like this. It helps us excel at our jobs. Thank you for letting us know how we are doing and for choosing SignatureCare.','2017-06-22 16:42:01.498000'),(1808,'We take your reviews and comments seriously, and we will reach out to our team to find out why the front desk was empty upon your arrival. We are glad to hear that, otherwise, your experience was a good one, and are pleased to hear you would consider us in a future emergency. Thank you for choosing SignatureCare. ','2017-06-18 20:08:02.649000'),(1809,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. \n','2017-06-17 14:11:21.166000'),(1810,'Our staff appreciates comments like this. Thank you for letting us know how we are doing, and for giving SignatureCare the chance to take care of you.','2017-06-15 17:27:54.656000'),(1811,'SignatureCare doctors, nurses and registration staff aims to treat all patients like VIPs. We are pleased to hear this was your experience with our emergency room. Thank you for the great review. ','2017-06-10 15:01:52.153000'),(1812,'Thanks so much for the five-star rating!','2017-06-10 15:00:28.581000'),(1813,'SignatureCare appreciates your continued support. While we hope not to see you anytime soon, please know we are open 24/7 for all emergencies. Thank you for letting us know that we are doing a good job.','2017-06-10 15:00:00.064000'),(1814,'SignatureCare has a much shorter wait time than a hospital ER -- usually 10 minutes or less. We are glad our team got you in and out quickly and treated you so well. Thank you for letting us know, and for the great rating.','2017-06-02 19:44:26.348000'),(1815,'Children are a top priority of SignatureCare, and we want parents and children to feel at ease during your visits. Thank you for entrusting us with the care of your child, and we hope he is feeling better. ','2017-06-01 19:12:16.541000'),(1816,'We aim to get you in and out quickly, and on your way back to good health. We are pleased to hear this was your experience with our facility. Thank you for the feedback.','2017-05-29 21:40:00.954000'),(1817,'SignatureCare aims to provide the best care possible to all patients and ensure you are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. Thank you for choosing us.','2017-05-29 21:39:24.046000'),(1818,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2017-05-28 13:51:19.105000'),(1819,'We are very sorry to learn about your experience and would like to learn more about what happened. Please contact us info@ercare24.com so that we can speak directly with you. We hope you will allow us the opportunity to discuss this with you and consider our emergency rooms again in the future. Thank you','2017-05-30 17:12:22.410000'),(1820,'We are sorry to hear about your recent emergency, but are pleased to hear that your experience with SignatureCare was a good one. Thank you for letting us know, and for the nice review. ','2017-05-26 19:01:02.240000'),(1821,'We hope not to see you anytime soon (steer clear of those emergency situations!), but know that we are here if you need us. Thank you so much for the nice review. ','2017-05-25 16:29:41.520000'),(1822,'Thank you for letting us know that we are doing a good job. We appreciate the review and rating.','2017-05-20 16:30:26.033000'),(1823,'Thank you so much for the great rating.','2017-05-18 00:57:23.324000'),(1824,'Our staff appreciates receiving comments like this. Thank you for choosing SignatureCare. ','2017-05-17 00:23:01.690000'),(1825,'We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. ','2017-05-12 19:58:24.965000'),(1826,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for the nice review. ','2017-05-10 23:10:59.630000'),(1827,'It is never fun when your child gets sick, but when you have an emergency with your child, SignatureCare is here to help! Thank you for your review and we hope your child feels better soon. ','2017-05-10 23:09:35.567000'),(1828,'Thank you so much for the five stars, Rita. We appreciate it!','2017-05-09 14:28:21.626000'),(1829,'Thank you so much for the five-star rating.','2017-05-07 21:21:53.028000'),(1830,'Our staff at SignatureCare loves receiving comments like this. Thank you for taking time out of your day to let us know how we are doing.','2017-05-06 13:33:18.912000'),(1831,'Thank you so much for the five-star review!','2017-05-04 13:42:02.601000'),(1832,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2017-05-04 13:41:45.663000'),(1833,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility. ','2017-05-04 13:41:03.284000'),(1834,'SignatureCare appreciates receiving comments like this. Thank you for taking the time to let us know how we are doing. We appreciate the feedback and great rating. ','2017-05-02 14:30:32.708000'),(1835,'Our team at SignatureCare makes us proud all the time. We are glad to hear they were so good to you, and we appreciate you choosing us.','2017-04-30 16:04:42.570000'),(1836,'It\'s great to hear that our SignatureCare team took good care of you. Thank you for the feedback.','2017-04-28 16:35:35.630000'),(1837,'Thank you for choosing SignatureCare and for the nice review and rating. We appreciate it.','2017-04-28 16:35:09.401000'),(1838,'Please contact us so we can learn more about your experiences. We take great pride in having board certified physicians and we would like to learn more about why you had a negative experience. Please reach out with your contact information so we can reach out to you. ','2017-04-27 23:00:09.608000'),(1839,'Thank you so much for the five-star rating.','2017-04-26 02:38:40.938000'),(1840,'We aim to provide the best care possible to all patients, and we are very happy to know this was your experience with our emergency room. Thank you for choosing SignatureCare. ','2017-04-23 17:05:13.214000'),(1841,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience.','2017-04-21 18:10:51.005000'),(1842,'Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-04-21 18:10:31.169000'),(1843,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are so pleased that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback.','2017-04-20 15:11:03.756000'),(1844,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. We are glad to hear that you are feeling better!\n','2017-04-20 15:10:22.839000'),(1845,'Our goal at SignatureCare is to get you in and out quickly and on your way back to good health. It\'s great to hear that this was your experience at our facility. Thank you so much for the feedback. ','2017-04-20 15:09:28.626000'),(1846,'We appreciate feedback like this. Thank you for the nice review and great rating.','2017-04-20 15:08:47.408000'),(1847,'Thank you for continuing to trust SignatureCare with your emergencies. While we hope not to see you anytime soon, we are always here, 24/7, if you need us!','2017-04-18 17:24:24.824000'),(1848,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want you to feel comfortable and know your child will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your daughter. If you need peace of mind in the future, don’t hesitate to contact us. ','2017-04-18 17:22:22.371000'),(1849,'Thank you so much for the positive feedback!','2017-04-14 16:19:56.073000'),(1850,'Thank you for the great review and rating. We appreciate it.','2017-04-12 01:02:23.094000'),(1851,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2017-04-12 01:02:02.434000'),(1852,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2017-04-09 14:57:23.536000'),(1853,'We are sorry to hear about your recent emergency, but are glad to hear that you felt well taken care of. Thank you for choosing SignatureCare. ','2017-04-09 14:56:08.349000'),(1854,'We appreciate your feedback. Thank you for the great rating.','2017-04-07 16:39:16.998000'),(1855,'Your kind words mean a lot to our staff. Thanks for the great review and rating.','2017-04-06 02:13:38.132000'),(1856,'Thank you so much for the great rating, Leah. We appreciate it so much.','2017-04-05 01:45:39.977000'),(1857,'Thank you for your feedback. We take it extremely seriously. We apologize you were unhappy with your experience and would love the chance to talk to you about why our service was only 1-star. Please contact us at info@ercare24.com so we can address this directly. ','2017-04-04 02:03:51.063000'),(1858,'Thank you so much for the positive feedback. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2017-04-04 01:37:46.471000'),(1859,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-04-04 01:37:11.006000'),(1860,'We appreciate the five-star rating!','2017-04-01 14:20:45.186000'),(1861,'Thank you for the great rating. We appreciate it.','2017-04-01 14:20:33.619000'),(1862,'We appreciate you taking the time to write us a positive review. Thank you for choosing SignatureCare Emergency Centers. ','2017-03-22 18:56:56.785000'),(1863,'Our staff is what keeps us going strong. We are pleased to hear they did such a great job for you. Thank you for giving SignatureCare the chance to serve you. ','2017-03-21 01:10:05.295000'),(1864,'Our doors are always open for community members suffering a medical emergency. Our community is important, and we appreciate you giving us a chance to help you feel better. ','2017-03-15 01:16:19.166000'),(1865,'Thank you for letting us help you and help you feel better! We appreciate the review and great rating. ','2017-03-15 01:15:17.712000'),(1866,'We aim for 100% satisfaction. Thank you for your feedback -- it helps our team excel at their jobs. ','2017-03-15 01:14:43.721000'),(1867,'We are here for you whenever you have an emergency. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-03-15 01:13:53.032000'),(1868,'Our team makes us proud every day! Thank you for letting us take care of you. ','2017-09-05 15:52:06.266000'),(1869,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review!\n','2017-03-15 01:13:15.047000'),(1870,'We appreciate you taking time from your busy schedule to write us such a positive review. Our SignatureCare team is here anytime you need emergency medical attention. Thank you for choosing us!','2017-03-13 16:20:56.813000'),(1871,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2017-03-09 16:41:22.537000'),(1872,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and for the great rating. ','2017-03-09 16:23:44.599000'),(1873,'At SignatureCare Emergency Center, children are a top priority of our team. It is never fun when your child gets sick, but when you have an emergency, we are here to help. Thank you for your review, and we hope your little one feels better soon!','2017-03-07 00:13:57.276000'),(1874,'It\'s always nice receiving comments like this. It helps our team at SignatureCare continue to do a great job for our patients. Thank you for trusting us with your medical needs. ','2017-03-03 21:09:13.208000'),(1875,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback and great rating -- it helps us excel at our jobs!','2017-03-02 14:02:59.772000'),(1876,'Your positive feedback will help our team continue to do a great job for our patients. Thank you for trusting your medical needs with SignatureCare. ','2017-02-26 20:52:52.187000'),(1877,'Our goal is to always provide the best care, and we appreciate your feedback that we are doing just that. Thanks for your review and rating.','2017-02-26 20:51:54.999000'),(1878,'Thank you for letting our team at SignatureCare help you feel better! We hope we put you at ease and provided you with the best care possible. Thanks for your review and rating.','2017-02-26 20:51:15.902000'),(1879,'While we hope not to see you again soon, just know that we are here 24/7 in case of any emergency. Thank you for choosing SignatureCare Emergency.','2017-02-25 03:37:34.443000'),(1880,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for your nice review.','2017-02-23 17:53:29.064000'),(1881,'No one likes the ER, but we are glad to be here for you when you need us. Thank you for the nice review.','2017-02-21 23:36:48.013000'),(1882,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you so much for your feedback and for the great rating.','2017-02-17 22:06:34.843000'),(1883,'Thank you for your nice review. Our staff appreciates your feedback!\n','2017-02-16 00:30:07.278000'),(1884,'Thank you for your kind words. We are glad to hear that your experience with us was great. ','2017-02-15 12:52:36.302000'),(1885,'We appreciate your feedback. Thanks for the great review and rating.','2017-02-13 18:04:06.581000'),(1886,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review and rating. ','2017-02-13 18:03:45.991000'),(1887,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2017-02-12 00:01:49.858000'),(1888,'Our staff at SignatureCare Emergency appreciates receiving comments like this. Thank you for supporting us, and putting your trust in our medical team. ','2017-02-12 00:01:25.963000'),(1889,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2017-02-11 23:57:56.345000'),(1890,'Thank you so much for your great review! We are sorry to hear that you got poison ivy, but we are glad to hear that our team took good care of you. We hope you are feeling better!','2017-02-11 23:55:49.999000'),(1891,'It’s always nice to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review and fantastic rating. ','2017-02-09 02:51:16.326000'),(1892,'Thank you for your great review and the recommendation. We appreciate it so much.','2017-02-07 18:55:22.958000'),(1893,'We are glad to hear that your visit with us was exactly as it should be. Thank you for trusting us with your care and for the great review. ','2017-02-07 18:54:51.032000'),(1894,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. ','2017-01-02 12:37:23.725000'),(1895,'Thank you so much for the five-star rating!','2017-02-06 16:51:59.007000'),(1896,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-02-03 21:34:49.658000'),(1897,'We are glad to hear that we were able to get you in and out quickly and back on your way to good health. Thanks for the nice review. ','2017-02-03 21:34:00.956000'),(1898,'While we hope not to see you again soon, we appreciate you choosing SingatureCare Emergency Center and hope you are feeling better!','2017-02-02 03:02:10.349000'),(1899,'We always want patients to feel comfortable and know they will be taken care of with the highest level of professionalism. Thank you for entrusting our team with your care.','2017-02-02 03:01:19.893000'),(1900,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2017-02-02 03:00:22.078000'),(1901,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. We appreciate it, and the great rating.','2017-01-29 02:34:48.984000'),(1902,'When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Thank you so much for your kind words!','2017-01-29 02:33:35.634000'),(1903,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! ','2017-01-29 02:32:50.600000'),(1904,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. ','2017-01-26 18:11:09.938000'),(1905,'While we hope not to see you again anytime soon, we are always here for any emergency. Thank you for your review and rating.','2017-01-26 18:10:39.119000'),(1906,'We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and we will let our team know what a great review you gave them.','2017-01-26 18:09:36.409000'),(1907,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2017-01-25 00:43:54.838000'),(1908,'Thank you for taking the time to review your experience with SignatureCare Emergency Center. We want to be sure that every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. ','2017-01-25 00:43:30.378000'),(1909,'Thank you so much for the positive feedback. We appreciate your comments and reviews. ','2017-01-25 00:41:33.211000'),(1910,'Thank you so much for the five-star rating. We appreciate it.','2017-01-23 21:10:04.611000'),(1911,'We are glad that our service met your expectations! Thank you for the great rating. ','2017-01-23 21:09:43.287000'),(1912,'Thank you for the review. We are happy to help with any medical emergency 24 hours a day. ','2017-01-19 20:22:53.276000'),(1913,'Thank You for the review. We are happy we could help you while you were in Houston and glad we did not take up too much of your time. Feel Better. ','2017-01-19 20:22:22.021000'),(1914,'We are glad you came in and hope you never feel avoided by a doctor again. Our doctors love what they do and Dr Sylvester is no different. We hope not to see you again, but if you do have an emergency please come back and see us. ','2017-01-19 20:21:11.697000'),(1915,'SignatureCare Emergency Center takes pride in our staff, and we are so very happy to hear you loved them. We will make sure to let them know. ','2017-01-14 22:07:48.243000'),(1916,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-01-12 01:59:06.014000'),(1917,'Thank you for the five-star rating. We appreciate it!','2017-01-11 00:46:25.538000'),(1918,'Thank you for your great review. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-01-11 00:46:05.880000'),(1919,'Our dedicated staff is always here to meet all your healthcare needs 24/7. We appreciate your feedback and rating.','2017-01-10 01:02:55.589000'),(1920,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. We are glad to be here for you when you need us. ','2017-01-08 19:03:43.681000'),(1921,'Thank you so much for your review and rating. We are glad to hear that we were able to take good care of you and that you are feeling better. ','2017-01-07 18:18:46.854000'),(1922,'We are glad to hear that we were able to provide excellent care to both you and your mom. Thank you for trusting us not only once, but twice. Stay healthy so we don\'t have to see you again, but know that SignatureCare Emergency Centers are here 24/7 just in case you need us.','2017-01-07 18:18:06.642000'),(1923,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2017-01-04 03:40:12.355000'),(1924,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-12-29 15:48:45.585000'),(1925,'We are glad that we were able to get you in and out quickly! Thank you for the great rating.\n','2016-12-29 15:48:25.224000'),(1926,'We are glad to hear our staff was pleasant and that your experience was as it should be at SignatureCare Emergency Center. Thank you for the review!','2016-12-28 14:22:28.927000'),(1927,'Our goals are to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. ','2016-12-27 14:02:28.737000'),(1928,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Thank you for your positive review, and we hope you feel better.','2016-12-27 14:01:53.924000'),(1929,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2016-12-26 18:30:46.016000'),(1930,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. Children cannot always tell us what’s wrong like an adult, but using our state-of-the-art equipment and onsite lab services, we are able to quickly diagnose young children. It is never fun when your child gets sick, but when you have an emergency with your child, we are here to help! Thank you for your review and we hope your child feels better soon!','2016-12-26 18:30:15.027000'),(1931,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. ','2016-12-21 18:09:15.216000'),(1932,'Thank you so much for the five-star rating, Maria!','2016-12-20 01:28:28.214000'),(1933,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2016-12-17 15:46:43.596000'),(1934,'Our doors are always open for family members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your wife and son are feeling better!','2016-12-13 02:50:20.187000'),(1935,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2016-12-07 03:32:06.203000'),(1936,'Thank you for the five-star rating! We appreciate your feedback.','2016-12-07 03:31:01.219000'),(1937,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-12-05 16:09:58.088000'),(1938,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs time and again!','2016-12-01 18:53:30.121000'),(1939,'Thank you so much for the review and great rating. If there is anything we could have done to make it a five-star rating, we hope you will let us know!','2016-12-01 18:52:38.193000'),(1940,'Thank you so much for the great rating!','2016-11-28 17:44:03.851000'),(1941,'We are glad to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review. ','2016-11-17 20:03:26.757000'),(1942,'Thank you for letting us help you and help you feel better! A medical emergency is always so stressful, but we hope we put you at ease and provided you with the best care possible. ','2016-11-16 17:35:22.879000'),(1943,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-11-12 00:37:50.511000'),(1944,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2016-11-11 03:18:28.685000'),(1945,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2016-11-09 15:00:32.044000'),(1946,'Thank you for taking time out of your day to give us a great review. We are sorry our performance wasn\'t 100% -- we always aim for 100% customer satisfaction. We are glad that you had a good experience, and hope that if you ever have another emergency, you will give us a chance to improve. Thank you again for your review. ','2016-11-09 14:59:51.152000'),(1947,'Thank you for the kind words and great review. We appreciate your feedback. ','2016-11-07 20:36:05.772000'),(1948,'We always appreciate your positive feedback. We are always here and willing to meet all your healthcare needs 24/7. ','2016-11-07 20:35:12.032000'),(1949,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2016-11-02 01:06:37.155000'),(1950,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job!','2016-11-01 00:41:41.921000'),(1951,'Hi there. Thank you for your feedback; it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-10-30 22:24:39.109000'),(1952,'We have some of the best nurses and doctors in Texas. SignatureCare Emergency Center takes pride in our staff, and they care so much about our patients. We will pass on your great review to our team.','2016-10-28 16:23:02.907000'),(1953,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2016-10-21 23:55:03.160000'),(1954,'We are glad to hear that the staff at SignatureCare Emergency took good care of you. Thank you for the great review and rating.','2016-10-26 00:44:29.420000'),(1955,'At SignatureCare Emergency Center, we love all our patients, and our top priority is to treat and diagnose quickly to get you back on the road to health. We do that by using our on-site state-of-the-art equipment to diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your medical needs. ','2016-10-25 01:37:24.403000'),(1956,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review!','2016-10-21 23:54:22.156000'),(1957,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! ','2016-10-15 22:36:55.099000'),(1958,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-10-13 14:13:57.236000'),(1959,'We appreciate and value your feedback. Thank you for your positive review, and we hope you feel better.','2016-10-13 14:13:07.272000'),(1960,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your husband\'s dental needs and we hope he is feeling better.','2016-10-06 00:14:50.114000'),(1961,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2016-10-06 00:12:45.066000'),(1962,'Thank you for the great rating and feedback, and thank you for choosing SignatureCare!','2016-10-06 00:11:16.666000'),(1963,'When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-10-06 00:10:47.830000'),(1964,'Although we never want to have to see you again, SignatureCare Emergency Center appreciates your repeat business, and are glad that we were able to take care of your little ones. Thank you so much for the positive feedback. ','2016-10-04 15:01:58.783000'),(1965,'We appreciate you taking time from your busy schedule to write us such a positive review. Thank you again for choosing SignatureCare Emergency Centers. ','2016-09-29 20:33:34.587000'),(1966,'Thank you for the five-star rating!','2016-09-25 16:15:03.394000'),(1967,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your little one. If you need peace of mind in the future, don’t hesitate to contact us. ','2016-09-22 22:51:16.894000'),(1968,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. \n','2016-09-22 22:50:38.798000'),(1969,'Thank you for the great review and rating, Jeff. We appreciate your feedback.','2016-09-21 02:07:34.751000'),(1970,'We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2016-09-20 02:27:35.521000'),(1971,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. ','2016-09-16 13:33:17.623000'),(1972,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-09-10 16:53:43.205000'),(1973,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2016-09-10 16:52:47.871000'),(1974,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room vs. the hospital and we thank you for your wonderful feedback!','2016-09-10 16:52:05.313000'),(1975,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. ','2016-09-07 02:22:30.229000'),(1976,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less! Our doctors and medical staff thank you for your wonderful feedback, and we will continue to provide excellent care to our patients and families. ','2016-09-07 02:21:34.580000'),(1977,'Thank you for the five-star rating!','2016-09-07 02:20:46.861000'),(1978,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2016-09-04 17:15:35.414000'),(1979,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. ','2016-09-02 16:29:40.991000'),(1980,'What a scary experience, but we are glad to hear that our staff was quick on their feet and thorough in your testing and treatment. Thank you for the fantastic review!','2016-08-31 23:48:58.321000'),(1981,'We appreciate your positive feedback. Our dedicated staff is always here and willing to meet all your healthcare needs.','2016-08-31 23:47:22.151000'),(1982,'Our doctors have excellent bedside manners -- so we’ve been told numerous times. Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room.','2016-08-29 14:49:17.509000'),(1983,'Thank you Baudelio for your review. We hope you are feeling better. ','2016-08-26 17:19:53.734000'),(1984,'Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2016-08-24 02:40:07.384000'),(1985,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-08-23 01:41:03.047000'),(1986,'Thank you for choosing us, and for your positive review!','2016-08-23 01:39:57.521000'),(1987,'Thank you so much for the positive feedback and the five-star rating. We appreciate your comments and will pass them along. ','2016-08-21 20:35:57.981000'),(1988,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs twenty-four hours a day, seven days a week.','2016-08-21 20:35:00.974000'),(1989,'The compassion and dedication for helping others is why we love our employees. Thank you for your kinds words, and we will pass them along. ','2016-08-21 20:34:24.380000'),(1990,'Thank you for your five-star rating, Brian. We are glad we could get you on your way quickly and back to good health. We hope you are feeling better!','2016-08-19 18:27:11.447000'),(1991,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. We are glad to be here for you when you need us. Get better!','2016-08-18 02:08:34.461000'),(1992,'Thank you for your review and five-star raging, Andrew. We appreciate your comments. ','2016-08-16 01:08:39.694000'),(1993,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-08-13 01:35:15.551000'),(1994,' We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback and review!','2016-08-13 01:33:21.726000'),(1995,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-08-10 16:22:30.382000'),(1996,'Thank you so much for the positive feedback. We appreciate your comments and review. ','2016-08-10 16:21:37.100000'),(1997,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved them, and we will make sure to let them know. ','2016-08-07 17:54:55.836000'),(1998,'Thank you for the five-star rating!','2016-08-07 17:52:19.880000'),(1999,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience.','2016-08-03 15:20:51.278000'),(2000,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. Get better!','2016-08-02 01:36:10.259000'),(2001,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-07-31 15:16:41.628000'),(2002,'Thank you for letting us help you and help you feel better! We hope we put you at ease and provided you with the best care possible. ','2016-07-24 16:34:35.445000'),(2003,'At SignatureCare Emergency Center, our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2016-07-22 01:04:27.487000'),(2004,'Thank you for your five-star rating and for choosing SignatureCare Emergency Center. ','2016-07-21 14:01:12.228000'),(2005,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-07-23 14:06:13.364000'),(2006,'At SignatureCare Emergency Center, we understand that emergencies happen, and the ER is not anyone\'s favorite place, but our staff will make you feel comfortable and able to relax while your treatment is in process. Thank you for choosing SignatureCare and for the fantastic review. ','2016-07-15 00:50:55.938000'),(2007,'Our staff and doctors love their patients and always want to make you feel like you are priority 1. We are glad to hear that they made you feel this way, and we all hope you are feeling much better. ','2016-07-10 13:55:49.883000'),(2008,'SignatureCare Emergency Centers have a much shorter wait time than most hospital emergency rooms -- usually 10 minutes or less. We are happy to hear that our staff got you in so quickly and was able to get you on your way. Thank you for leaving us such a nice review! ','2016-07-10 13:54:03.480000'),(2009,'Thank you for your five-star rating, and for choosing SignatureCare Emergency Center.','2016-07-08 21:12:50.276000'),(2010,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room vs. the hospital and we are very proud that you chose SignatureCare Emergency Center as your choice for care. ','2016-07-08 02:03:45.817000'),(2011,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-07-06 02:22:25.090000'),(2012,'At SignatureCare we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review and we are always here whenever you need us.','2016-07-06 02:21:26.102000'),(2013,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-06-23 12:03:00.822000'),(2014,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-06-23 12:01:41.510000'),(2015,'At SignatureCare Emergency Center, we understand that emergencies happen, and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and the fantastic review. ','2016-06-19 23:12:07.222000'),(2016,'At SignatureCare Emergency Centers, children are a top priority of all our staff and doctors. Children cannot always tell us what’s wrong like an adult, but using our State of the Art equipment and onsite lab services, we are able to quickly diagnose young children. It is never fun when your child gets sick, but when you have an emergency with your child we are here to help! Thank you for your review and we hope your child feels better soon!','2016-06-17 00:39:42.919000'),(2017,'Our doctors and medical staff thank you for your wonderful feedback, and we will continue to provide excellent care to our patients and families. ','2016-06-16 03:20:14.418000'),(2018,'Our goals are to provide the best care possible to all patients and ensure friends or families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency rooms. Thanks for the great review.','2016-06-14 00:45:33.608000'),(2019,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2016-06-14 00:43:20.192000'),(2020,'At SignatureCare Emergency Room, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the art equipment to quickly diagnose patients, and our board certified doctors to implement treatment plans. Thank you for trusting us to your medical needs and for such a great review!','2016-06-13 00:30:18.194000'),(2021,'We are pleased that our doctors, nurses and medical staff made you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and the fantastic review. ','2016-06-13 00:28:00.740000'),(2022,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2016-08-26 15:08:24.351000'),(2023,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust with our medical team. ','2016-06-09 14:43:21.086000'),(2024,'Thanks again for the review Hoda! When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-06-07 14:18:26.877000'),(2025,'Thank you for your feedback. We apologize you had to wait a long amount of time during your visit. We strive to offer the quickest alternative to hospital emergency rooms, and usually our wait times are significantly lower. We do our best to monitor wait time to best serve our patients. I have spoken with the staff on duty during your visit, and we will be working to make sure this doesn’t happen again in the future. Alana from our office will be reaching out to learn more about your experience and hopefully find some resolution for you. ','2016-06-06 17:38:30.469000'),(2026,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2016-06-06 16:49:40.236000'),(2028,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speed and comfortable. Thank you for trusting your emergency need with SignatureCare. ','2016-06-03 14:09:36.036000'),(2029,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2016-05-31 13:40:38.453000'),(2030,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2016-05-26 13:58:22.639000'),(2031,'Hi there. Thank you for your feedback. When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-05-23 19:20:08.837000'),(2032,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-05-24 19:21:38.578000'),(2033,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2016-05-24 19:21:55.378000'),(2034,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust with our medical team. ','2016-05-24 19:22:08.489000'),(2035,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2016-05-24 19:22:15.246000'),(2036,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and let us know if you have any further questions about your treatment. ','2016-05-24 19:22:31.225000'),(2037,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-05-24 19:22:36.633000'),(2038,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2016-05-24 19:22:47.357000'),(2039,'The board-certified team at SignatureCare care deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your little one. If you need peace of mind in the future, don’t hesitate to contact us. ','2016-05-24 19:22:57.187000'),(2040,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2016-08-26 17:23:13.266000'),(2041,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-08-26 17:23:48.728000'),(2042,'Thanks you Amanda- At SignatureCare we are open 24/7, 365 days a year, because emergencies do not have a schedule- Thank you for your positive review and we are always here whenever you need us.','2016-08-26 17:24:25.509000'),(2043,'At SignatureCare Emergency room, children are a top priority of all our staff and doctors. Children cannot always tell us what’s wrong like an adult, but using our State of the Art equipment and onsite lab services, we are able to quickly diagnose young children. It is never fun when your child gets sick, but when you have an emergency with your child we are here to help! Thank you for your review and we hope your child feels better soon!','2016-08-26 17:25:07.370000'),(2044,'Kathy, it’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Room was positive. Thank you for the fantastic review and we are always open and available when you have an unexpected emergency. ','2016-08-26 17:26:10.743000'),(2045,'Thank you Adam for your review! We aim for short wait times because your time is valuable! Hope you\'re feeling much better. ','2016-08-26 17:29:06.196000'),(2046,'SignatureCare Emergency Room is here 24/7 when an unexpected emergency happens. Our Board Certified Doctors and state of the art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant as we strive for excellent each time you come to one of our emergency rooms.','2016-08-26 17:29:46.763000'),(2047,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-08-26 17:27:54.370000'),(2048,'Thank you Garnett for the review. We are happy your experience was great! We hope you are feeling much better. ','2016-08-26 17:31:50.951000'),(2049,'Our Doctors and Medical Staff thank you for your wonderful feedback and we will continue to provide excellent care to our patients and families. ','2016-08-26 17:26:47.821000'),(2093,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-23 05:43:02.306000'),(2094,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-19 09:25:22.909000'),(2095,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-19 09:25:06.792000'),(2096,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-11 07:23:14.889000'),(2097,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-09-11 07:23:03.447000'),(2098,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2019-09-11 07:22:42.608000'),(2099,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-27 05:01:21.692000'),(2100,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-08-22 05:02:28.636000'),(2101,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-20 05:32:15.154000'),(2102,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-08-18 06:30:48.080000'),(2103,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope your friend is feeling better!','2019-08-18 06:30:15.483000'),(2104,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-08-18 06:29:08.946000'),(2105,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 06:28:50.463000'),(2106,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-08-01 03:40:01.284000'),(2107,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-28 07:19:58.430000'),(2108,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-28 07:19:38.453000'),(2109,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-07-24 06:43:33.570000'),(2110,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-24 06:43:21.392000'),(2111,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-23 05:39:33.790000'),(2112,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-07-17 06:20:39.839000'),(2113,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-14 06:14:37.426000'),(2114,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-07-14 06:14:13.725000'),(2115,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-07-07 07:47:04.354000'),(2116,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-07-09 07:43:04.189000'),(2117,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-07-09 07:33:07.549000'),(2118,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-09 07:32:54.414000'),(2119,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-04 07:37:07.054000'),(2120,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-04 07:36:51.122000'),(2121,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of your daughter.','2019-07-03 07:14:59.736000'),(2122,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-30 05:55:44.199000'),(2123,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-06-27 06:07:40.297000'),(2124,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-06-24 05:47:22.856000'),(2125,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope child is feeling better!','2019-06-30 05:56:10.632000'),(2126,'Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-24 05:46:19.755000'),(2127,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-23 05:14:49.607000'),(2128,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-23 05:14:35.784000'),(2129,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. Hope your husband feels better.','2019-06-23 05:14:10.768000'),(2130,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-06-10 05:54:10.021000'),(2131,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-10 05:53:51.088000'),(2132,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-09 08:13:12.516000'),(2133,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-09 08:12:55.395000'),(2134,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-06-09 08:12:38.246000'),(2135,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-06-09 08:12:18.600000'),(2136,'Thank you for your rating, Christine!','2019-06-09 08:10:29.703000'),(2137,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-06-09 08:09:56.723000'),(2138,'Thank you for your rating, Viviana!','2019-05-13 06:04:31.937000'),(2139,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-09 04:11:05.578000'),(2140,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-05-07 15:10:36.652000'),(2141,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-05 06:47:54.439000'),(2142,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-05-06 20:01:53.288000'),(2143,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-02 09:34:50.609000'),(2144,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better.','2019-05-02 09:34:31.030000'),(2145,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of your daughter.','2019-04-22 12:32:20.487000'),(2146,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-04-22 06:41:09.129000'),(2147,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-04-22 06:40:18.335000'),(2148,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-04-22 06:38:35.442000'),(2149,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-04-15 06:02:57.892000'),(2150,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better. ','2019-04-08 06:55:56.574000'),(2151,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-04-07 05:58:15.836000'),(2152,'Thank you for your five star rating!','2019-04-01 06:01:14.913000'),(2153,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of your child.','2019-04-01 06:00:55.748000'),(2154,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-03-27 05:56:52.939000'),(2155,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant. We sincerely appreciate your continued trust on SignatureCare for your emergency needs. ','2019-03-20 06:56:54.523000'),(2156,'Thanks for your 5 star rating, Ifeoma!','2019-03-18 06:40:01.322000'),(2157,'Our doctor and nurses make us proud everyday. Hope your husband is feeling well. Thanks for choosing SignatureCare!','2019-03-18 06:39:31.510000'),(2158,'Thanks fore the response. Please feel free to let us know what we could have done to earn those last two stars by emailing info@ercare24.com.','2019-04-23 21:21:32.031000'),(2159,'Thank you so much for your nice review, Dien. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-03-18 06:36:57.483000'),(2160,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-03-10 07:48:06.320000'),(2161,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-03-10 07:48:22.795000'),(2162,'We appreciate your continued trust. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-03 11:22:17.719000'),(2163,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email Jennifer at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-03-11 15:30:29.463000'),(2164,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-02-27 12:49:38.735000'),(2165,'Thank you for the 5 star, Nahidu!','2019-02-26 12:52:48.220000'),(2166,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-02-20 11:49:15.047000'),(2167,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-02-19 13:36:33.549000'),(2168,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-17 12:32:24.036000'),(2169,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-02-14 07:36:14.433000'),(2170,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-02-13 13:00:46.349000'),(2171,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-13 13:02:21.430000'),(2172,'Thank you for the 5 star, Lisa!','2019-02-06 13:36:10.504000'),(2173,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-04 13:39:11.471000'),(2174,'Thank you so much for trusting us with the care of your grandson! Our goal is to always provide the best care and children are highest priority. Thank you for choosing SignatureCare.','2019-02-03 13:32:42.206000'),(2175,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-30 13:14:17.607000'),(2176,'Thanks for the 5 star, Jennifer!','2019-01-23 13:19:53.298000'),(2177,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the recommendation!','2019-01-30 13:13:37.240000'),(2178,'Thank you for the 5 star, Desha!','2019-01-29 14:06:30.308000'),(2179,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-28 09:31:16.509000'),(2180,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-20 12:13:05.486000'),(2181,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-01-16 14:14:02.198000'),(2182,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-01-16 16:45:52.187000'),(2183,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-13 12:48:22.746000'),(2184,'Thank you for trusting us with the care of your child. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you. Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-10 08:40:00.758000'),(2185,'We always aim to provide the best care, quickly, and with highest priority so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice recommendation. ','2019-01-08 15:31:43.114000'),(2186,'While we hope not to see you anytime soon, we want you to know that we are here 24/7 in case you ever need us again. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare!','2019-01-07 19:00:09.829000'),(2187,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-12-30 20:01:05.471000'),(2188,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-12-28 16:26:49.151000'),(2189,'We aim for 100% satisfaction at SignatureCare! Thank you for letting us know how we are doing. ','2018-12-12 19:59:26.318000'),(2190,'Thank you for the five-star rating! We appreciate the feedback. ','2018-12-06 16:03:15.524000'),(2191,'We appreciate and value your feedback -- Our patients are what keep us going strong. Thank you for your positive review, and thank you for choosing SignatureCare!','2018-12-05 02:49:05.565000'),(2192,'At SignatureCare Emergency Center, our number one goal is to treat and diagnose quickly by using our on-site state-of-the-art equipment to diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your medical needs and for taking the time to let us know how we are doing. We appreciate the feedback!','2018-12-03 17:06:01.057000'),(2193,'We like the title of \"Best ER, ever,\" especially when it comes from a patient! Thank you so much for taking time out of your day to let us know how we are doing. We appreciate the feedback more than you know. ','2018-11-28 02:43:55.900000'),(2194,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our team will make you and your family members feel comfortable and able to relax while diagnosis and treatment are in process. Thank you for choosing SignatureCare, and we hope your son is feeling better. ','2018-11-26 00:41:04.925000'),(2195,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to SignatureCare Emergency Centers. Thanks so much for the nice review and great rating. ','2018-11-26 00:39:22.431000'),(2196,'Their compassion and dedication for helping others is what makes our team so special. Thank you so much for letting us know that they are doing a good job. We will pass along your kind comments. Thank you for choosing SignatureCare!','2018-11-24 14:47:52.697000'),(2197,'We are always here 365 days a year, 24 hours a day if you feel sick again. Thank you for your positive review, and we hope you feel better. ','2018-11-16 23:28:46.812000'),(2198,'Hi Abel, I see that you left us a one-star review, but no feedback. You also left the same rating on our Mission Bend location -- can you clarify WHICH location you visited? We take all of our reviews and ratings very seriously and would love some more information on what we did to disappoint you during your visit so that we can do better next time. Please give us some more information so we can pass it along to our team!','2018-11-09 15:09:05.100000'),(2199,'Thank you so much for the five-star rating, Nelson!','2018-11-07 17:10:51.550000'),(2200,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2018-11-04 15:59:07.040000'),(2201,'Our goal is to treat every patient like a VIP. We are proud to hear that this was your experience with our emergency room and that our team delivered an exceptional experience. Thank you for choosing SignatureCare and for taking the time to let us know how we are doing. ','2018-11-03 13:30:02.295000'),(2202,'Their compassion and dedication for helping others is why we love our team. Thank you for your kind words, and we will pass them along. We hope your girlfriend is feeling better. ','2018-11-02 14:21:21.761000'),(2203,'Thank you for your feedback. We value every patient and want 100% satisfaction for everyone who visits with us. If you would give us the opportunity to look over your file, I am sure we can come to a resolution you will be happy with. Will you email our billing director Tray at tmoore@roundtmc.com with your full name, date of service and location of service, and he will reach out to you to help. Thank you for the opportunity to clear this up and to make it right with you. We appreciate the feedback and your time. ','2018-10-21 20:29:35.265000'),(2204,'Thank you so much for the five-star rating, Alex! We appreciate it.','2018-10-22 15:11:26.114000'),(2205,'Thank you for trusting us with the care of your family. We appreciate your kind words and the great rating. ','2018-10-13 14:47:14.403000'),(2206,'Visiting the ER is never fun, but we aim to make to make your visit as quick and as painless as possible. Thank you for giving us the chance to care for you and for taking the time to let us know how we are doing. Thank you for choosing SignatureCare and we hope you are feeling better!','2018-10-13 00:38:00.696000'),(2207,'SignatureCare Emergency Center\'s board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. And we are here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was excellent, as we strive for 100% satisfaction each time you come to one of our emergency rooms. Thank you for choosing SignatureCare. ','2018-10-11 14:41:19.346000'),(2208,'When we receive feedback like this, it helps us know we’re doing something right in our community. Thank you for giving SignatureCare your trust. ','2018-10-10 15:55:09.711000'),(2209,'Hi Angie, thank you so much for taking the time to let us know how we are doing. If you will email our medical director at jmartin@ercare24.com, I believe she will be able to take care of this for you. We appreciate the nice review and great rating, and will pass your comments along to our team to be sure it doesn\'t happen again. Thank you for the opportunity to make this right with you. ','2018-10-09 15:30:18.848000'),(2210,'Visiting the ER is never fun, especially when it involves your child. We are very pleased to hear that our staff took such good care of your son, and we appreciate you trusting us with his care. Thank your choosing us and for the nice review. ','2018-10-04 15:58:55.391000'),(2211,'Our staff makes us proud every day. Their compassion and dedication to helping others is unmatched. Thank you for taking the time to let us know how we are doing. And thank you for choosing SignatureCare. ','2018-10-03 22:16:03.058000'),(2212,'Thank you so much for the feedback and five stars, David. We appreciate it!','2018-09-18 16:28:41.497000'),(2213,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit SignatureCare. Thank you for the nice review and we hope you are feeling better!','2018-09-18 16:28:27.657000'),(2214,'Thank you for the five-star rating -- we appreciate it!','2018-09-16 22:42:00.649000'),(2215,'Thank you so much for the five stars, Staci!','2018-09-13 15:01:46.548000'),(2216,'We\'re glad our team was able to deliver an exceptional experience. It means a lot to us to know that we are doing a good job in our community. We know you have a choice in emergency care, and we are very proud that you chose SignatureCare. Thanks for the great review. ','2018-09-13 15:02:51.904000'),(2217,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services, and are unhappy to hear that you received poor service while visiting us. We would like to learn more about your experience so that we can review with our team. Can you please email jmartin@ercare24.com with your full name, date of service and location of service so that we can review your file? Jennifer will then reach out to you to discuss. We appreciate the chance to make this right with you, and apologize again for the poor service your received. ','2018-09-07 16:19:00.020000'),(2218,'Our goals are to provide the best care possible and to make you comfortable and able to relax while waiting on treatment. Thank you for the nice review and for choosing SignatureCare!','2018-09-06 16:02:23.278000'),(2219,'Thank you for your review. We\'re glad our SignatureCare team was able to deliver an exceptional experience. We hope your surgery went well and that you are feeling better!','2018-08-31 16:14:00.505000'),(2220,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for choosing us and for the nice review. ','2018-08-30 16:15:37.380000'),(2221,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff aim to make your treatment as quick and as painless as possible. Thank you for choosing SignatureCare and for the fantastic review. ','2018-08-22 12:52:18.585000'),(2222,'Thank you so much for the nice review, the five stars, and the recommendation. We appreciate your feedback and want you to know that we are here 24/7 in case you ever need us again. Thanks for choosing SignatureCare!','2018-08-28 14:39:24.301000'),(2223,'Our SignatureCare team cares so much about our community, and they continue to make us proud every day. Thank you for giving us the chance to care for you and for the very nice review. ','2018-08-23 14:42:05.452000'),(2224,'It is never fun when you get sick, but when you have an emergency, SignatureCare is here to help! Thank you for your review and we hope you feel better soon. ','2018-08-22 12:53:11.399000'),(2225,'SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so pleased to hear that they made you comfortable. We will make sure to let them know. ','2018-08-21 15:40:31.420000'),(2226,'Our goal at SignatureCare is to get you in and out quickly and back on the road to good health. It\'s great to hear that this was your experience with us, and we hope you are feeling better. ','2018-08-18 13:31:40.904000'),(2227,'Thank you for the five-star rating, Barb! We appreciate the feedback. ','2018-08-12 16:18:32.248000'),(2228,'We want all of our patients to feel like VIPs when they visit us, so we are very happy to hear that this was your experience with SignatureCare. We appreciate the nice review and the great rating. Thank you for choosing us!','2018-07-25 14:23:27.813000'),(2229,'Their commitment to their patients is what makes our staff so special. Thank you for letting us know they are doing a good job. It means a lot to us. And thank you for the nice review and rating!','2018-08-09 16:41:50.687000'),(2230,'We want all of our patients to feel like family, and we are so glad to hear that our team treated you as such. Thank you for giving us the chance to care for you and for taking the time to review us. We appreciate your trust and your feedback. ','2018-08-08 16:55:12.163000'),(2231,'We love hearing about the positive experience our patients had at SignatureCare Emergency Center. Thank you so much for the great feedback. ','2018-08-05 17:53:55.914000'),(2232,'Thank you so much for the five-star rating! We appreciate the feedback. ','2018-08-05 17:52:55.241000'),(2233,'No one likes the ER, but our staff aims to make each patient\'s visit as quick and painless as possible. Thank you for letting us know we are one step closer to our customer satisfaction goals. Thank you for choosing SignatureCare, and we hope you are feeling better. ','2018-08-01 16:37:45.726000'),(2234,'We want each and every patient at SignatureCare to feel like a VIP, so we are very happy to hear that this was your experience. Thank you for choosing us and for giving us the chance to care for you. And thank you for the nice review!','2018-07-30 00:29:11.542000'),(2235,'Our board-certified doctors and state-of-the-art equipment are available 24/7 to evaluate and treat your medical emergencies. We are very happy to learn your experience was pleasant, and we hope you are feeling better after surgery. Thank you for choosing SignatureCare!','2018-07-27 14:38:54.861000'),(2236,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Thank you for your positive review, and we hope you feel better.','2018-07-24 13:40:50.988000'),(2237,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for choosing us!','2018-07-18 14:12:03.229000'),(2238,'I\'m so sorry to hear about your billing frustrations. If you will reach out to our billing department, we’d appreciate the chance to make it right. I\'m sure we can come to a resolution! Please send an email to Tray at tmoore@roundtmc.com with your full name, date of service and location of service so that he can review your file. Once he looks over it with our team, he will reach out to you with a solution. Thank you for letting us know how we are doing -- we appreciate the feedback and the chance to make it right with you. ','2018-07-17 12:45:36.229000'),(2239,'We appreciate the five-star rating, Nancy! ','2018-07-16 16:33:19.564000'),(2240,'Thank you so much for the five-star rating. We appreciate the feedback!','2018-07-16 16:32:48.799000'),(2241,'We are so sorry that your holidays were interrupted with your emergency, but are glad to hear that our team took good care of you. Thank you for choosing SigatureCare and for the very nice review. ','2017-12-26 20:57:09.851000'),(2242,'Thank you so much for your feedback! Our goal is to always provide the best care. We appreciate your trust and your nice review. ','2018-07-05 16:10:21.251000'),(2243,'We appreciate your trust and any future recommendations! Thank you for choosing SignatureCare and we hope you are feeling better. ','2018-07-04 13:33:37.860000'),(2244,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. Thanks for the nice review and for choosing SignatureCare. ','2018-06-28 12:15:53.909000'),(2245,'We love hearing that our staff was pleasant and your experience at SignatureCare Emergency Center was a positive one. Thank you for the fantastic review, and we are open 24/7 when you have an unexpected emergency. ','2018-06-24 20:32:38.526000'),(2246,'Our team will appreciate your comments -- we will pass them along! Thank you so much for choosing SignatureCare. ','2018-06-19 17:02:37.808000'),(2247,'Thank you for letting us help you and help you feel better! We appreciate your support and the nice review. ','2018-06-07 17:32:32.449000'),(2248,'Thank you for the great feedback. And thank you for giving SignatureCare the chance to care for you!','2018-06-03 16:07:16.763000'),(2249,'We appreciate the feedback, and thank you for choosing SignatureCare for your care!','2018-05-30 17:59:23.483000'),(2250,'Thank you for the feedback, Crystal. It helps us to become better at our jobs. We appreciate the great rating!','2018-05-30 17:59:07.069000'),(2251,'We appreciate the five-star rating, Aaron! ','2018-05-29 16:25:25.626000'),(2252,'Thank you for trusting us time and again with your care. We appreciate you taking the time to let us know how we are doing, and we hope you are feeling better!','2018-05-26 15:48:57.067000'),(2253,'Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thank you for choosing SignatureCare. ','2018-05-15 17:17:20.877000'),(2254,'We\'re glad our team was able to deliver an exceptional experience with your little girl. We appreciate you choosing SingatureCare and thank you for the nice review. ','2018-05-12 19:11:58.244000'),(2255,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and we hope you are feeling better. ','2018-05-12 19:11:11.766000'),(2256,'No one likes the ER, but our team aims to make your visit as pleasant as possible. It sounds like this was your experience, and we are very happy to hear it. Thank you for giving us the chance to care for you. ','2018-05-11 17:02:47.149000'),(2257,'Our team makes us proud every day. Thank you for letting us know that they are doing a good job in our community. And thank you for choosing SignatureCare. ','2018-05-10 15:37:50.018000'),(2258,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2018-05-03 16:18:24.294000'),(2259,'SigatureCare Emergency Center\'s boast a must shorter wait time than most hospitals, and our personal touch is sure to leave you feeling like a patient and not a number. Thank you for letting us know that we are doing a good job in our community. We appreciate your trust and your feedback. ','2018-04-25 16:50:15.156000'),(2260,'We are so proud of our SignatureCare team because of their compassion and dedication to helping members of our community. Thank you for letting us know that they are doing a good job. ','2018-04-24 16:50:41.329000'),(2261,'SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. Thank you for the nice review, and we hope you feel better. ','2018-04-21 14:58:39.985000'),(2262,'Thank you for the five-star rating!','2018-04-17 13:09:08.284000'),(2263,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, and we appreciate the nice review. ','2018-03-29 19:13:13.281000'),(2264,'We pride ourselves in having some of the newest technology when it comes to medical equipment, which allows us to run tests quickly and begin treatment for your emergency. We are always here 365 days a year, 24 hours a day if your mom feels sick again. Thank you for your positive review, and we hope your mom feels better. ','2018-04-10 20:29:28.722000'),(2265,'Our goals are to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with SignatureCare. Thanks for choosing us!','2018-04-10 20:28:10.396000'),(2266,'Thank you so much for the review and the great rating. We appreciate the feedback.','2018-04-10 20:27:20.096000'),(2267,'We are so sorry that this issue was not resolved to your satisfaction. We take all reviews and comments very seriously, and we will pass your concerns on to our leadership team for review. We value every patient and want 100% satisfaction for everyone who visits with us, and we are so sorry that this was not your experience with our emergency room. Thank you for bringing this to our attention.','2018-04-07 17:49:42.653000'),(2268,'Our doors are always open for a community member suffering an emergency. Our community is important to us, so it\'s great to hear that we are doing a good job. Thank you for your feedback and for the nice review. ','2017-11-19 15:54:36.902000'),(2269,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are very proud that you chose SignatureCare Emergency Center as your choice for care. Our team thanks you for your wonderful feedback.','2018-03-26 22:07:41.723000'),(2270,'We appreciate the five-star rating, Scarlett!','2018-03-17 15:15:47.656000'),(2271,'Our team aims to make your visit with us as quick and painless as possible, so we are very pleased to hear that this was your experience. Thank you for the feedback -- we value and appreciate it. ','2018-03-06 16:19:31.390000'),(2272,'We appreciate you taking the time out of your busy schedule to review us. We take all of your comments and reviews very seriously, as our patients are what keep us going strong. Thank you for giving us the chance to care for you. ','2018-03-15 15:53:46.116000'),(2273,'We appreciate you letting us care for your daughter. We want parents to know that we will treat their children as if they are our own. Thank you for trusting us and for the very nice review. ','2018-03-15 15:50:50.292000'),(2274,'Thanks for the very nice review, Shawn! We always aim for 100% satisfaction, so if there\'s anything we could have done to earn that fifth star in your rating, please let us know. SignatureCare is here 24/7, so we hope you\'ll consider us for any future medical emergency. ','2018-03-10 16:16:46.156000'),(2275,'We appreciate your trust in SignatureCare, and any future recommendations you might send our way. Thank you for letting us care for you during your emergency. ','2018-03-06 16:20:10.384000'),(2276,'We aim for 100% satisfaction at SignatureCare, so it\'s great to hear that this was your experience with our facility. Thank you for choosing us, and for the nice review. ','2018-03-06 16:18:05.288000'),(2277,'Thank you for the five-star rating, Aida. We appreciate your feedback.','2018-02-28 17:01:05.709000'),(2278,'Thank you for choosing SignatureCare for your emergency needs and for the very nice review. We appreciate your comments and the five-star rating!','2018-02-27 16:59:59.099000'),(2279,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff aim to make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2018-02-22 18:07:17.116000'),(2280,'We appreciate your trust in caring for your son. Thank you for choosing us and for taking the time to review SignatureCare. ','2018-02-19 22:04:49.328000'),(2281,'We appreciate the chance to take care of you. Thank you for taking the time to rate us and leave us a nice review. Thanks for choosing SignatureCare!','2018-02-18 23:24:22.361000'),(2282,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-02-17 19:08:03.453000'),(2283,'It\'s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2018-02-17 19:08:23.905000'),(2284,'It\'s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review and for giving us the chance to take care of you. ','2018-02-10 16:27:10.994000'),(2285,'Thanks so much for the feedback! We appreciate you giving SignatureCare your trust. ','2018-02-08 16:44:25.709000'),(2286,'We have some of the best nurses in Texas! We are so very happy to hear you loved your nurses and our staff. We will be sure to let them know. ','2018-01-27 17:08:06.154000'),(2287,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. Thank you for choosing our facility and we hope you are feeling better.','2018-01-23 14:11:20.340000'),(2288,'Our community is important to us. Thank you for letting us know that we are doing a good job. Thanks for the great rating!','2018-01-22 15:23:53.540000'),(2289,'It is our pleasure to take care of members of our community, and we appreciate you giving us your trust. Thank you for the nice review and rating. ','2018-01-19 16:53:20.008000'),(2290,'Thank you so much for the five stars!','2018-01-18 16:57:46.627000'),(2291,'Thank you for giving us your trust time and again with your emergency needs. We appreciate your feedback and the five-star rating! ','2018-01-16 16:06:56.007000'),(2292,'Thank you for trusting SignatureCare Emergency Centers with your care. We appreciate your trust and your feedback. ','2018-01-15 14:40:32.408000'),(2293,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. Get better!','2017-05-10 23:11:51.623000'),(2294,'Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2017-10-15 15:43:29.375000'),(2295,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2017-12-29 16:17:41.547000'),(2296,'Our team is here 24/7 any time you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers and for the nice review. ','2017-12-27 19:39:55.513000'),(2297,'Hi there. We are sorry that your aunt didn’t receive the highest level of medical care when she visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Please email info@ercare24.com with your aunt\'s name, date of service and location of service so that we can review her case further. Thank you for your feedback. ','2017-12-23 21:55:06.580000'),(2298,'We appreciate the great rating, Michael. Please let us know if there\'s anything we could have done to earn that fifth star! ','2017-12-19 23:59:31.634000'),(2299,'Thanks for the five-star rating -- we appreciate the feedback. ','2017-12-16 16:47:53.374000'),(2300,'Thank you so much for the five stars, Evelyn! ','2017-12-12 16:45:37.164000'),(2301,'Thanks so much for your feedback, and for choosing SignatureCare. We appreciate the great rating. ','2017-12-12 16:45:18.209000'),(2302,'When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for trusting SignatureCare. ','2017-12-11 16:44:50.205000'),(2303,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Thank you for your positive review, and we hope you feel better.','2017-12-10 20:01:33.779000'),(2304,'We appreciate you taking the time to rate us. Thanks for the five stars!','2017-12-06 19:31:45.011000'),(2305,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2017-12-01 22:48:37.679000'),(2306,'We appreciate you taking time from your busy schedule to write us such a positive review. Thank you again for choosing SignatureCare Emergency Centers. ','2017-12-01 18:06:24.400000'),(2307,'We appreciate the five-star rating! Thank you for choosing SignatureCare. ','2017-11-26 16:57:30.808000'),(2308,'We will let our staff know about your kind words. Thank you for taking the time to let us know how we are doing. ','2017-11-26 16:57:16.072000'),(2309,'SignatureCare\'s promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room. Thanks for the nice review. ','2017-11-26 16:56:50.847000'),(2310,'We appreciate your kind words, and will be sure to let our staff know what you said. Thanks for letting us know how we are doing. ','2017-11-22 14:43:18.702000'),(2311,'\nAt SignatureCare Emergency Center, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your emergency needs. ','2017-11-20 14:17:54.732000'),(2312,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for choosing SignatureCare. ','2017-11-12 18:57:41.727000'),(2313,'Children are a top priority at SignatureCare, and we are so proud that our team took good care of you and her. We love that she is feeling better, and appreciate you giving us the chance to care for your family. ','2017-11-11 21:15:10.812000'),(2314,'We have the best staff in Texas. SignatureCare Emergency Center takes pride in our staff, and we are happy to hear they took good care of you. Thanks for the nice review!','2017-10-23 17:58:29.432000'),(2315,'Thank you so much for the five-star rating!','2017-10-23 17:55:43.647000'),(2316,'At SignatureCare, your wait time before seeing a doctor is usually 10 minutes or less. It\'s great to hear that this was your experience at our facility. Thanks so much for choosing SignatureCare and for any future recommendations. ','2017-10-22 19:07:18.590000'),(2318,'Thank you so much for the five-star rating!','2017-10-17 14:42:48.755000'),(2319,'We appreciate the five-star rating, Athena!','2017-10-16 15:18:54.833000'),(2320,'Thank you for the five-star review!','2017-10-01 14:20:46.377000'),(2322,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for giving us the chance to take care of you. ','2017-09-22 01:47:20.509000'),(2323,'Madison, we are sorry to see your five star rating turn into a one star rating. We definitely would like to look into this further -- can you email Tray at tmoore@roundtmc.com with your full name so that we can investigate this matter fully? We never like to see unsatisfied customers, so we hope you will give us a chance to review this case. Thank you so much. ','2017-08-23 01:25:37.161000'),(2324,'While we hope not to see you anytime soon, SignatureCare is proud to be here 24/7 whenever you need us. Thank you for the nice review!','2017-09-19 18:25:54.841000'),(2325,'We appreciate the five-star rating, Lupe! Thanks for the feedback.','2017-09-19 02:40:44.259000'),(2326,'It\'s great to hear that you are feeling better -- thank you for trusting our team to get you there! SignatureCare appreciates your review and great rating.','2017-09-18 14:16:53.540000'),(2327,'We appreciate the five-star rating!','2017-09-12 04:01:36.322000'),(2328,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you so much for the nice review. ','2017-09-09 15:40:41.052000'),(2329,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2017-09-08 14:57:41.067000'),(2330,'We appreciate and value your feedback. At SignatureCare Emergency Center, our patients are what keep us going strong. Thank you for your positive review.','2017-09-02 21:27:03.576000'),(2331,'Thank you for letting us take care of you! We know you have a choice in emergency care, and we appreciate you choosing SignatureCare. We are glad to hear that you are feeling better. Thank you for the nice review. ','2017-08-25 15:53:34.000000'),(2332,'Our patients are what keep us going strong. Thank you for your positive review, and for choosing SignatureCare for your medical care. ','2017-08-24 15:19:12.869000'),(2333,'We appreciate reviewing feedback like this. Thank you for letting SignatureCare take care of your medical needs, and please consider us in any future emergency. ','2017-08-23 01:34:56.726000'),(2334,'Lori, can you contact Tray in our billing department at tmoore@roundtmc.com so that we can investigate this matter fully? We aim for 100% satisfaction at SignatureCare and would appreciate the opportunity to review what happened in your case. Thank you. ','2017-08-23 01:28:22.655000'),(2335,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. We appreciate your trust and your very kind words. Thank you for trusting SignatureCare with your medical needs. ','2017-08-07 01:59:54.458000'),(2336,'Thank you for continuing to trust us with your emergency needs. We appreciate your review and the great rating.','2017-08-03 13:29:35.412000'),(2337,'We appreciate the great rating and nice review, Alejandro. We hope you will let us know if there is anything we could have done to earn that fifth star, as SignatureCare strives for excellence each time you visit us. Thanks for letting us take care of you!','2017-08-01 01:28:20.795000'),(2338,'No likes likes the ER, but SignatureCare aims to get you in and out quickly, and to take care of your emergency to your satisfaction. Thank you for letting us know that we are doing a good job. ','2017-07-25 01:54:35.873000'),(2339,'Thank you so much for the five-star rating!','2017-07-17 14:48:13.505000'),(2340,'We are glad to hear our team got you in and out quickly and took good care of you. Thank you for letting us know. ','2017-07-15 22:19:55.422000'),(2341,'SignatureCare appreciates receiving feedback like this. It helps us continue to do a great job for our community. Thank you for letting us take care of you during your emergency. ','2017-07-04 14:15:08.147000'),(2342,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for choosing us and we hope you are feeling better!','2017-06-30 12:28:05.991000'),(2343,'Thank you so much for the great rating.','2017-06-30 12:26:04.021000'),(2344,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience!\n','2017-06-26 16:06:18.101000'),(2345,'Thank you so much for your feedback and for the great rating.','2017-06-23 17:44:01.175000'),(2346,'Thank you so much for the five stars -- we appreciate your feedback!\n','2017-06-20 16:52:20.965000'),(2347,'Thank you for taking the time to rate us, but it seems as if maybe your experience wasn\'t stellar? We would really like to hear about what happened when you visited our facility so that we can have the chance to make any future visit a five-star experience. Please let us know what we could have done better. ','2017-06-14 02:09:30.528000'),(2348,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare. ','2017-06-14 02:09:58.446000'),(2349,'Thank you for the five stars!','2017-06-11 18:24:51.333000'),(2350,'We are glad that you see the benefit of our emergency room over a hospital room -- after all, our waiting time is usually 10 minutes or less. Thank you for letting us take care of you during your emergency, and thank you for your nice review. ','2017-06-11 18:24:35.806000'),(2351,'We appreciate the feedback, as it helps us excel at our jobs. Thank you for trusting us with your emergency. ','2017-06-06 01:43:58.742000'),(2352,'Thank you for taking the time to leave us such a great review. We appreciate the feedback, as it helps us to continue to do a great job for our patients. Thank you for letting us take care of you during your emergency, and know that SignatureCare is open 24/7 if you ever need us again.','2017-06-08 14:24:34.134000'),(2353,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2017-06-06 01:44:35.904000'),(2354,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn about your great experience, as we strive for excellence each time you come to one of our facilities.','2017-05-24 15:05:01.570000'),(2355,'Thank you so much for letting us take care of you during your emergency. We appreciate the review and any future recommendations!\n','2017-05-24 15:03:56.007000'),(2356,'Thank you so much!','2017-05-22 23:56:35.730000'),(2357,'We love hearing about the great experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2017-05-18 00:59:25.372000'),(2358,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2017-05-14 13:58:16.154000'),(2359,'Thank you so much for the review and rating. We appreciate your feedback.','2017-05-12 19:59:29.271000'),(2360,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you so much for your feedback and rating.','2017-05-12 19:59:01.945000'),(2361,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. Thank you for choosing SignatureCare Emergency Center. Our doctors and medical staff thank you for your wonderful feedback, as it will help us continue to provide excellent care to our patients and families. ','2017-05-09 14:30:37.829000'),(2362,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. \n','2017-05-07 21:30:23.977000'),(2363,'SignatureCare knows that your time is valuable, and we appreciate you taking the time to leave us your feedback.','2017-04-28 16:37:59.965000'),(2364,'Thank you so much for the great rating.','2017-04-25 01:12:37.486000'),(2365,'We always appreciate this positive feedback. Our dedicated team is always here and willing to meet all your healthcare needs 24/7. ','2017-04-23 17:06:09.573000'),(2366,'Thank you for the great review and rating. We appreciate it.','2017-04-16 19:00:29.654000'),(2367,'Thank you so much for the great rating. We appreciate it.','2017-04-13 14:10:18.186000'),(2368,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2017-04-12 01:03:56.385000'),(2369,'Thank you for the five-star rating, Roxanna!','2017-04-10 14:57:32.915000'),(2370,'We appreciate the five-star rating!','2017-04-09 14:57:59.244000'),(2371,'Thank you so much for the great rating.','2017-04-09 14:57:44.504000'),(2372,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-04-09 14:59:03.226000'),(2373,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2017-04-09 14:58:45.777000'),(2374,'Your positive feedback will help our team continue to do a great job for our patients. Thanks so much!','2017-04-05 01:46:21.887000'),(2375,'Thank you so much for the five-star rating!','2017-04-04 01:38:05.573000'),(2376,'Having to go to the ER when you are out of town is never fun, but we are glad we were able to deliver a great experience for you. Thank you for giving us the chance to serve you.','2017-03-12 20:11:59.129000'),(2377,'Thank you for taking the time to review us and rate us. We appreciate the five stars!','2017-03-24 17:38:08.400000'),(2378,'We value our patient feedback -- Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2017-03-29 02:13:50.618000'),(2379,'Thank you for the five-star rating.','2017-03-28 00:01:20.531000'),(2380,'SignatureCare appreciates receiving comments like this. Thank you for letting us take care of you.','2017-03-28 00:01:03.869000'),(2381,'Thank you so much for the great rating!','2017-03-27 19:56:15.554000'),(2382,'Thank you for letting SignatureCare take care of you. We are pleased to hear that our staff made you feel better and we appreciate the great review.','2017-03-24 17:38:36.649000'),(2383,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing us!','2017-03-23 17:57:56.773000'),(2384,'We have the best staff in Texas, and SignatureCare Emergency Center takes pride in the fact that they care so much about our patients. We are so very happy to hear you loved our staff. We will make sure to let them know. ','2017-03-21 01:39:20.731000'),(2385,'We appreciate the great rating!','2017-03-21 01:10:27.685000'),(2386,'Thank you so much for the five stars -- we appreciate it.','2017-03-16 02:07:03.095000'),(2387,'Thank you, Alicia! We appreciate the great rating.','2017-03-16 02:06:47.095000'),(2388,'Our staff appreciates receiving comments like this. Thank you for supporting us, and putting your trust in our medical team. ','2017-03-15 01:16:50.191000'),(2389,'We are glad that our team at SignatureCare Emergency was able to deliver an exceptional experience for you. Thank you for choosing us!','2017-03-12 20:07:18.580000'),(2390,'SignatureCare Emergency aims to provide the best care possible to all patients who visit us. We are very happy to know this was your experience with our emergency room. We hope you are feeling better.','2017-03-13 16:22:08.878000'),(2391,'It\'s comments like this that will help our crew continue to do a great job for you. Thank you for letting us know, and for the great rating.','2017-03-12 20:10:20.768000'),(2392,'We want all of our customers at SignatureCare to feel like VIPs. We are thankful our team was able to deliver! Thank you for choosing us and for the great rating.','2017-03-12 20:07:58.131000'),(2393,'We love our SignatureCare team, and are pleased to hear they did a good job for you. Thank you for the review and great rating.','2017-03-11 14:58:06.845000'),(2394,'Thank you for the five-star rating!','2017-03-08 03:32:56.618000'),(2395,'Thank you so much for taking the time to leave us a nice review and for rating us so high. We appreciate your feedback and SignatureCare is here 24/7 if you ever need us again.','2017-03-03 21:10:04.406000'),(2396,'We are open 24/7, 365 days a year, because SignatureCare knows that emergencies do not have a schedule. Thank you for your positive review!','2017-02-27 23:15:26.943000'),(2397,'We appreciate your great feedback. Our dedicated team is always here and willing to meet all your healthcare needs 24/7. ','2017-02-27 23:14:42.282000'),(2398,'At SignatureCare Emergency Center, our patients are what keep us going strong. We appreciate and value your feedback. ','2017-02-27 23:14:16.687000'),(2399,'We appreciate the five-star rating!','2017-02-27 23:13:44.155000'),(2400,'We are sorry to hear about your mom\'s recent emergency, but we pride ourselves in having some of the newest technology when it comes to medical equipment, which allows us to run tests and begin treatment quickly. Thank you for your positive review, and we hope your mom feels better. ','2017-02-27 23:13:25.955000'),(2401,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2017-02-25 03:42:29.518000'),(2402,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing our facility.','2017-02-25 03:41:34.941000'),(2403,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the review and great rating.','2017-02-25 03:40:40.544000'),(2404,'Thank you for your review and rating. If there is anything we could have done to make it a five-star rating, we hope you will let us know. ','2017-02-25 03:38:48.030000'),(2405,'Thank you for the five-star rating!','2017-02-25 03:37:55.200000'),(2406,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and for the nice review.','2017-02-23 17:54:28.513000'),(2407,'We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2017-02-23 17:53:51.935000'),(2408,'We appreciate your feedback and the great rating. Thank you for choosing us!','2017-02-21 23:37:13.537000'),(2409,'SignatureCare Emergency Center\'s staff aims to treat every person like a VIP. We are glad to hear that was the case with you, and we hope you are feeling better!','2017-02-19 14:52:23.465000'),(2410,'Thank you for your review and rating. We\'re glad our team was able to deliver an exceptional experience. ','2017-02-17 22:07:14.825000'),(2411,'We always appreciate positive feedback from our patients. The SignatureCare Emergency team is always here and willing to meet all your healthcare needs 24/7. ','2017-02-13 18:05:39.330000'),(2412,'Thank you for your feedback. We very much appreciate it and the great rating.','2017-02-13 18:05:05.229000'),(2413,'Thank you so much for the five-star rating. We appreciate it.','2017-02-13 18:04:29.888000'),(2414,'What a great review. Thank you for trusting SignatureCare Emergency Center with not one, not two, but three of your emergencies! While we hope not to see you anytime soon, we are always here for you and all your family members. We are glad to hear that everyone is feeling better, and we appreciate your great feedback.','2017-02-12 00:07:18.962000'),(2415,'Thank you so much for the great rating!','2017-02-10 17:26:45.690000'),(2416,'Thank you so much for the great rating, Sarah!','2017-02-09 02:52:01.253000'),(2417,'We are glad to hear that that our staff was pleasant and took good care of you. Thank you for trusting SignatureCare Emergency with your well-being. ','2017-02-07 18:56:15.141000'),(2418,'Thank you for the great rating. We appreciate it.','2017-02-06 16:52:19.766000'),(2419,'Thank you for the five-star rating and for letting SignatureCare serve you.','2016-06-23 12:03:44.700000'),(2420,'Thank you for the five-star rating!','2017-02-02 03:02:30.333000'),(2421,'Thank you so much for the great rating. If there\'s anything we could have done to earn five-stars, we hope you will let us know!','2017-01-31 04:34:39.565000'),(2422,'Thank you so much for the wonderful review. We are glad you feel better and we are always here 24/7 when you have a medical emergency!','2017-06-13 16:18:16.250000'),(2423,'Thank you so much for placing your trust in SignatureCare Emergency Center not once, but twice! Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. We appreciate your feedback and rating. ','2017-01-25 00:44:57.447000'),(2424,'Chest pains are always a scary experience, but we are glad to hear that our SignatureCare team put you at ease and was able to send you home feeling better. Thank you for trusting us with a scary situation. ','2017-01-23 21:11:30.475000'),(2425,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2016-10-06 00:15:15.622000'),(2426,'Thank You for the 5 Star rating. ','2017-01-19 20:19:33.689000'),(2427,'All of our centers are open 24 hours a day, 365 days a year. We aim for a 10 minutes or less wait and we are happy to learn you had little wait time. Thank you for visiting our ER and hope you feel better. ','2017-01-19 20:19:18.191000'),(2428,'We absolutely try to ensure that there is no wait at our emergency centers. Not only do we have board-certified physicians, but they are also here 24 hours a day, so you do not have to wait for a doctor to arrive. You are very welcome and we are glad you choose SignatureCare Emergency Centers. ','2017-01-19 20:17:46.200000'),(2429,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2017-01-16 15:29:28.577000'),(2430,'Thank you for the review and great rating!','2017-01-05 03:17:16.591000'),(2431,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2017-01-02 12:38:57.055000'),(2432,'Our registration staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our staff. Thank you for your kind words -- we will let them know!','2016-12-31 03:13:18.470000'),(2433,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2016-12-29 15:49:12.544000'),(2434,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing SignatureCare Emergency Center.','2016-12-24 18:49:02.023000'),(2435,'Our staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2016-12-24 18:47:42.787000'),(2436,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-12-23 16:12:09.649000'),(2437,'Thank you so much for placing your trust in us. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing SignatureCare Emergency Center. ','2016-12-21 18:10:30.187000'),(2438,'Thank you so much for the five-star rating!','2016-12-18 19:21:13.839000'),(2439,'Thank you for your kind words. Although we hope not to see you anytime soon, we are glad to hear you would consider us for your next emergency. We hope you are feeling better!','2016-12-18 19:20:54.801000'),(2440,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-12-17 15:47:09.589000'),(2441,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2016-12-09 19:43:26.052000'),(2442,'Thank you for the great rating, Jay. We appreciate your feedback.','2016-12-07 03:32:26.425000'),(2443,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. Our community is important. If you have any questions, or need help again, don’t hesitate to call. ','2016-12-05 16:11:16.506000'),(2444,'Thank you for your feedback! We aim for 100% satisfaction at SignatureCare Emergency Center. ','2016-12-05 16:10:38.771000'),(2445,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2016-11-24 16:49:57.992000'),(2446,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. ','2016-11-17 20:03:52.905000'),(2447,'\"No long lines\" is our goal for all patients visiting SignatureCare Emergency Centers. We are glad that our team was able to get you in and out quickly and hope you will consider us again if you ever have an emergency. Thank you for the great review!','2016-11-07 20:37:31.087000'),(2448,'We appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-11-06 14:59:52.949000'),(2449,'Thank you for the five-star rating! ','2016-11-04 15:33:01.803000'),(2450,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. ','2016-10-29 22:27:20.223000'),(2451,'Our registration staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. \n','2016-10-28 16:23:25.390000'),(2452,'Thank you for the five-star rating!','2016-10-25 01:37:42.433000'),(2453,'We are glad that we were able to get you in and out quickly and on your way back to good health. Thank you for the great review, and if you ever need us again, we are always here for you. ','2016-10-26 00:46:29.689000'),(2454,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2016-10-14 17:57:39.405000'),(2455,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. ','2016-10-10 13:44:21.266000'),(2456,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7, and we are glad they were here to serve you when you needed them. ','2016-10-02 19:00:37.924000'),(2457,'Thank you for the five-star rating, Martha!\n','2016-10-02 18:50:48.187000'),(2458,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-09-27 01:54:01.747000'),(2459,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2016-09-07 02:23:09.452000'),(2460,'Thank you for the five-star rating!','2016-09-04 17:15:53.897000'),(2461,'Thank you for the five-star review and for your kind words. We will pass them along to our staff. ','2016-09-02 16:31:42.219000'),(2462,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. Children cannot always tell us what’s wrong like an adult, but using our state-of-the-art equipment and onsite lab services, we are able to quickly diagnose young children. It is never fun when your child gets sick, but when you have an emergency with your child, we are here to help! Thank you for your review and we hope your child feels better soon!','2016-09-02 16:31:15.607000'),(2463,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2016-08-29 14:52:50.736000'),(2464,'Thank you for your feedback and for choosing SignatureCare Emergency Center.','2016-08-23 01:41:57.208000'),(2465,'Our doctors and medical staff thank you for your wonderful feedback. It will help us continue to provide excellent care to our patients.','2016-08-21 20:36:51.778000'),(2466,'Thank you for the four-star rating. Please let us know if there is anything we could have done better to earn a five-star rating, and please consider us next time you have a medical emergency. ','2016-08-19 18:27:55.237000'),(2467,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback; it helps us excel at our jobs. ','2016-08-18 02:09:48.598000'),(2468,'Thank you for letting us help you and help you feel better! We hope we put you at ease and provided you with the best care possible. ','2016-08-18 02:09:11.649000'),(2469,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2016-08-13 01:35:56.823000'),(2470,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-08-07 17:55:44.089000'),(2471,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. ','2016-08-02 01:38:54.573000'),(2472,'Our doctors and nurses are some of the most qualified in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kinds words, and we will pass them along. ','2016-07-30 01:28:44.820000'),(2473,'\nAt SignatureCare Emergency Center, we understand that the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for taking the time to leave such a great review.\n','2016-07-27 23:01:01.612000'),(2474,'Thank you for your review. We\'re glad our team was able to deliver a great experience. ','2016-07-27 22:59:11.016000'),(2475,'Thank you so much for the positive feedback. We appreciate your comments and the five-star review.','2016-07-15 00:51:32.039000'),(2476,'At SignatureCare Emergency Center, we understand that emergencies happen, and the ER is not anyone\'s favorite place. But our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare, and for the fantastic review. ','2016-07-13 01:56:29.445000'),(2477,'Thank you for the great review. It helps us to know if we are doing our jobs well, as we always want to make sure our patients are happy. We know that emergencies are never fun, but if you find yourself in an emergency situation again, we hope we can serve you once more. Thanks again!','2016-07-10 14:01:18.365000'),(2478,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility.','2016-07-04 12:09:23.378000'),(2479,'Thank you for the five-star rating, Michelle. We hope we don\'t have to see you soon, but if you need us, we are here.','2016-06-24 00:34:53.842000'),(2480,'The goal of our doctors, nurses and medical staff is to make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2016-06-21 01:34:08.580000'),(2481,'Thank you we appreciate your feedback. ','2016-06-20 14:44:01.189000'),(2482,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-01-06 06:58:44.741000'),(2483,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2020-01-06 06:58:20.208000'),(2484,'Hi Anthony! We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-01-06 06:57:29.591000'),(2485,'Thank you so much for your five star rating, Lysette!','2020-01-05 06:30:44.604000'),(2486,'We appreciate your great rating, Keisha!','2020-01-05 06:29:52.445000'),(2487,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-05 06:29:27.746000'),(2488,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-05 06:23:44.910000'),(2489,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-05 06:23:29.113000'),(2490,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-05 06:23:11.813000'),(2491,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-05 06:22:50.000000'),(2492,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare! Hope your husband is feeling well.','2020-01-05 06:22:32.966000'),(2493,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your kiddo feels better soon!','2020-01-02 05:12:42.080000'),(2494,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-02 05:11:37.557000'),(2495,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-31 04:48:12.880000'),(2496,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-31 04:47:59.388000'),(2497,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-31 04:47:39.095000'),(2498,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-02 05:13:10.169000'),(2499,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-31 04:47:15.795000'),(2500,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-31 04:47:01.504000'),(2501,'Thank you so much for your great rating, Yousuf!','2019-12-29 06:15:18.012000'),(2502,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-29 06:14:53.583000'),(2503,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-29 06:14:42.313000'),(2504,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-29 06:14:28.764000'),(2505,'Thank you for letting us help your sister! We are glad to hear our team put her at ease and provided her with the best care possible. Thanks for choosing SignatureCare.','2019-12-29 06:11:07.082000'),(2506,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-29 06:10:29.411000'),(2507,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-29 06:10:15.655000'),(2508,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-29 06:07:32.271000'),(2509,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-29 06:07:22.656000'),(2510,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-29 06:07:10.305000'),(2511,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-29 06:06:57.566000'),(2512,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-29 06:06:32.828000'),(2513,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-29 06:06:19.137000'),(2514,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-29 06:06:01.773000'),(2515,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-29 06:05:43.181000'),(2516,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-26 07:50:56.391000'),(2517,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-23 07:59:31.781000'),(2518,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-23 07:59:23.988000'),(2519,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-15 06:20:15.892000'),(2520,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2019-12-22 08:06:06.003000'),(2521,'Thank you so much for your great rating, Kashy!','2019-12-22 08:05:49.575000'),(2522,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-22 08:05:26.262000'),(2523,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-22 08:05:18.512000'),(2524,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-22 08:05:01.954000'),(2525,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-22 08:04:43.444000'),(2526,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-22 08:04:22.251000'),(2527,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-22 08:04:10.112000'),(2528,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-22 08:04:00.429000'),(2529,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare! Hope your husband is feeling well.','2019-12-22 08:03:47.824000'),(2530,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-22 08:02:08.345000'),(2531,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-22 08:01:33.550000'),(2532,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-22 08:00:45.449000'),(2533,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-22 08:00:22.659000'),(2534,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-19 06:18:55.764000'),(2535,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-19 06:18:24.962000'),(2536,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-19 06:18:02.910000'),(2537,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-18 07:34:58.542000'),(2538,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-18 07:34:46.967000'),(2539,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-18 07:34:33.294000'),(2540,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-12-17 05:39:58.544000'),(2541,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-12-17 05:39:44.812000'),(2542,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-17 05:38:20.555000'),(2543,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-17 05:38:07.075000'),(2544,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:39:21.414000'),(2545,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:39:29.022000'),(2546,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-15 06:39:02.229000'),(2547,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-12-15 06:38:51.698000'),(2548,'Thank you so much for your great rating, Thuy!','2019-12-15 06:38:26.067000'),(2549,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:38:06.066000'),(2550,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your brother is feeling well!','2019-12-15 06:37:49.898000'),(2551,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-15 06:36:57.936000'),(2552,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-15 06:36:09.513000'),(2553,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:35:32.502000'),(2554,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 06:35:14.903000'),(2555,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-15 06:34:57.605000'),(2556,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-15 06:34:31.883000'),(2557,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-15 06:21:51.566000'),(2558,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 06:21:17.012000'),(2559,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-15 06:21:05.212000'),(2560,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-15 06:20:58.422000'),(2561,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:20:48.121000'),(2562,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:20:29.268000'),(2563,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 06:20:01.927000'),(2564,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:19:51.209000'),(2565,'Thank you so much for your nice review, Clark. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-15 06:19:26.826000'),(2566,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-12-15 06:19:06.194000'),(2567,'Thank you so much for your great rating, Rodriguez!','2019-12-15 06:18:35.382000'),(2568,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-15 06:17:56.807000'),(2569,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:17:50.040000'),(2570,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Hope your wife gets well soon.','2019-12-15 06:17:28.797000'),(2571,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:16:56.404000'),(2572,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:16:30.929000'),(2573,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:16:13.424000'),(2574,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:16:02.886000'),(2575,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 06:15:52.102000'),(2576,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-12-15 06:15:36.932000'),(2577,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-05 06:39:52.381000'),(2578,'Thank you so much for your great rating, Matt!','2019-12-05 06:39:35.106000'),(2579,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-05 06:39:12.762000'),(2580,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your boyfriend. Thank you for choosing SignatureCare.','2019-12-05 06:38:54.868000'),(2581,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-05 06:38:24.623000'),(2582,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-05 06:37:17.171000'),(2583,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-15 06:38:10.321000'),(2584,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-12-05 06:34:48.756000'),(2585,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-05 06:34:35.068000'),(2586,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-04 07:00:17.395000'),(2587,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-04 06:52:32.679000'),(2588,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-04 06:51:46.206000'),(2589,'Thank you for your great rating, Isabella!','2019-12-04 06:42:34.704000'),(2590,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-12-02 06:53:35.480000'),(2591,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-12-02 06:53:17.966000'),(2592,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-02 06:17:44.979000'),(2593,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-02 06:17:28.085000'),(2594,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-02 06:17:14.706000'),(2595,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-02 06:16:59.745000'),(2596,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-02 06:16:47.320000'),(2597,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-02 06:16:21.900000'),(2598,'We appreciate the great rating you gave us, Nick!','2019-12-01 08:17:20.025000'),(2599,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-01 08:16:42.590000'),(2600,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-01 08:14:28.694000'),(2601,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-01 08:01:20.647000'),(2602,'Thank you so much for your great rating, Harvey!','2019-12-01 08:01:05.972000'),(2603,'We appreciate your great rating, Brandon!','2019-12-01 08:00:46.150000'),(2604,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-01 08:00:16.334000'),(2605,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-12-01 07:55:35.355000'),(2606,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-01 07:54:51.721000'),(2607,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-01 07:54:39.998000'),(2608,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-01 07:54:24.485000'),(2609,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-01 07:54:08.485000'),(2610,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-01 07:53:48.164000'),(2611,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-01 07:51:39.711000'),(2612,'We appreciate your great rating, Alexandra!','2019-12-01 07:48:47.288000'),(2613,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope your mom is feeling better!','2019-12-01 07:48:19.830000'),(2614,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-28 07:28:19.740000'),(2615,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-28 07:28:01.799000'),(2616,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-11-28 07:25:47.924000'),(2617,'Thank you so much for your great rating, Saadia!','2019-11-28 07:19:22.787000'),(2618,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-28 07:18:13.239000'),(2619,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-28 07:18:02.513000'),(2620,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-27 06:46:43.155000'),(2621,'Thank you for trusting us with the care of your nephew. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-11-27 06:46:38.812000'),(2622,'We appreciate your great rating. Thank you for choosing us!','2019-11-27 06:46:11.633000'),(2623,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-11-27 06:44:47.156000'),(2624,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-27 06:43:54.348000'),(2625,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-27 06:43:40.227000'),(2626,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-27 06:43:10.836000'),(2627,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-11-27 06:42:18.179000'),(2628,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-11-27 06:38:57.234000'),(2629,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-11-27 06:34:24.076000'),(2630,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare. Hope your nephew is feeling well!','2019-11-27 06:07:27.935000'),(2631,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-27 06:06:52.965000'),(2632,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-11-27 06:06:29.992000'),(2633,'Thank you so much for your great rating, Maggie!','2019-11-26 05:41:49.796000'),(2634,'What a nice review! We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-26 05:42:22.665000'),(2635,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-25 06:54:44.174000'),(2636,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-24 06:48:38.619000'),(2637,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-24 06:48:29.188000'),(2638,'We appreciate the great rating you gave us, Coby!','2019-11-24 06:47:56.309000'),(2639,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-24 06:48:15.812000'),(2640,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-24 06:47:23.626000'),(2641,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-11-24 06:46:13.541000'),(2642,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-24 06:45:59.127000'),(2643,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-24 06:45:40.003000'),(2644,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-24 06:45:13.029000'),(2645,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-24 06:42:23.449000'),(2646,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-21 06:46:18.908000'),(2647,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-11-21 06:45:51.021000'),(2648,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-21 06:45:25.767000'),(2649,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2019-11-21 06:45:04.978000'),(2650,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-21 06:44:32.501000'),(2651,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-11-21 06:44:15.614000'),(2652,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-21 06:44:23.067000'),(2653,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-11-21 06:40:32.073000'),(2654,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-21 06:39:15.086000'),(2655,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-11-21 06:38:55.406000'),(2656,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-11 07:21:49.298000'),(2657,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-20 06:09:20.389000'),(2658,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-20 06:09:05.292000'),(2659,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-20 06:08:47.676000'),(2660,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-09-15 06:36:14.754000'),(2661,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-09-15 06:36:29.378000'),(2662,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-20 06:08:23.591000'),(2663,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-20 06:08:12.242000'),(2664,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-11-19 05:57:35.552000'),(2665,'Thank you so much for your great rating, Cassidy!','2019-11-19 05:40:32.719000'),(2666,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-18 06:15:27.434000'),(2667,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-18 06:15:14.307000'),(2668,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-18 06:15:06.237000'),(2669,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-18 06:14:45.304000'),(2670,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-18 06:14:32.706000'),(2671,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-18 06:14:07.002000'),(2672,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-18 06:13:44.862000'),(2673,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-18 06:13:15.551000'),(2674,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-18 05:59:14.233000'),(2675,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-11-18 05:59:04.113000'),(2676,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-18 05:53:14.957000'),(2677,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-18 05:53:01.633000'),(2678,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-17 07:05:29.127000'),(2679,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-11-17 07:05:08.148000'),(2680,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-11-17 07:04:46.905000'),(2681,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-17 07:04:08.461000'),(2682,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-17 07:03:59.252000'),(2683,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-13 06:53:50.743000'),(2684,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-11-17 07:03:36.955000'),(2685,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-17 06:57:29.675000'),(2686,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-17 06:56:57.576000'),(2687,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your kiddo feels better soon!','2019-11-17 06:56:42.186000'),(2688,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-17 06:54:48.954000'),(2689,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-11-17 06:54:35.734000'),(2690,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-17 06:54:16.450000'),(2691,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-17 06:53:56.544000'),(2692,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your husband feels well.','2019-11-17 06:53:29.041000'),(2693,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-11-17 06:52:32.909000'),(2694,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-17 06:52:19.139000'),(2695,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-11-17 06:52:05.508000'),(2696,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-17 06:51:30.442000'),(2697,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare. Hope your bff is feeling better.','2019-11-17 06:51:16.158000'),(2698,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-17 06:50:38.340000'),(2699,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-17 06:50:08.567000'),(2700,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-17 06:49:58.996000'),(2701,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-17 06:49:46.986000'),(2702,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-17 06:48:24.208000'),(2703,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-17 06:47:59.935000'),(2704,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-17 06:46:59.848000'),(2705,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-17 06:46:03.803000'),(2706,'Thank you for your five star rating, Prentis!','2019-11-17 06:45:43.858000'),(2707,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-11-17 06:43:17.072000'),(2708,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-17 06:42:57.701000'),(2709,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-14 10:03:16.501000'),(2710,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-14 10:02:56.782000'),(2711,'We appreciate your five star rating, Muibat!','2019-11-14 10:02:47.511000'),(2712,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-14 10:02:22.147000'),(2713,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-14 10:02:12.772000'),(2714,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-15 07:37:11.045000'),(2715,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-13 06:39:20.152000'),(2716,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-11-12 07:35:37.920000'),(2717,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-11 07:23:05.781000'),(2718,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-11 07:22:47.496000'),(2719,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-11-11 07:22:27.748000'),(2720,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-11-11 07:22:07.493000'),(2721,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-11 07:21:06.936000'),(2722,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-11-11 07:20:33.361000'),(2723,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-11 07:18:56.594000'),(2724,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-11 07:15:55.345000'),(2725,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-07 04:44:04.062000'),(2726,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-07 04:43:44.513000'),(2727,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-07 04:43:33.687000'),(2728,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-07 04:43:24.763000'),(2729,'Thank you so much for your nice review, Jerry. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-11-04 11:15:25.764000'),(2730,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-11-04 11:15:09.718000'),(2731,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-04 11:14:48.843000'),(2732,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-04 11:14:34.734000'),(2733,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-31 09:47:12.171000'),(2734,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-11-03 06:16:40.550000'),(2735,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-03 06:17:01.401000'),(2736,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-03 06:16:27.871000'),(2737,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-11-03 06:16:10.832000'),(2738,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-03 06:14:58.420000'),(2739,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-03 06:13:59.818000'),(2740,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-03 06:13:49.051000'),(2741,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-03 06:13:34.674000'),(2742,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope your granny feels better.','2019-11-03 06:13:13.402000'),(2743,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-03 06:12:32.964000'),(2744,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-03 06:12:19.736000'),(2745,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-03 06:12:03.700000'),(2746,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-03 06:11:35.338000'),(2747,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-03 06:11:14.171000'),(2748,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-03 06:11:05.167000'),(2749,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-03 06:10:52.656000'),(2750,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-03 06:10:25.180000'),(2751,'Thank you so much for your nice review, Simra. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-11-03 06:10:15.188000'),(2752,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-03 06:09:57.644000'),(2753,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-31 09:46:30.596000'),(2754,'Thank you so much for your great rating, Patricia!','2019-10-29 05:44:54.938000'),(2755,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-29 05:44:21.644000'),(2756,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-29 05:44:02.032000'),(2757,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-10-29 05:43:47.692000'),(2758,'Thank you so much for your nice review, Wanda. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-10-29 05:43:30.433000'),(2759,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-29 05:43:12.052000'),(2760,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-29 05:42:50.431000'),(2761,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-29 05:42:58.584000'),(2762,'We appreciate your great rating, Yachel!','2019-10-29 05:42:24.233000'),(2763,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-29 05:41:51.557000'),(2764,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-29 05:41:22.528000'),(2765,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-29 05:41:07.720000'),(2766,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-29 05:40:58.143000'),(2767,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-29 05:40:25.134000'),(2768,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-10-29 05:40:00.355000'),(2769,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-29 05:39:33.493000'),(2770,'Thank you so much for your nice review, Katrina. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-10-29 05:39:16.974000'),(2771,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-29 05:38:50.528000'),(2772,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-29 05:38:33.131000'),(2773,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-29 05:38:19.456000'),(2774,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-29 05:38:01.388000'),(2775,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-10-29 05:37:44.460000'),(2776,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-15 07:35:30.957000'),(2777,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-29 05:37:04.546000'),(2778,'Thank you so much for your nice review, Kim. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-10-29 05:36:13.536000'),(2779,'Thank you for your great rating, Wafe!','2019-10-29 05:35:54.749000'),(2780,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-29 05:35:35.021000'),(2781,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-29 05:35:19.969000'),(2782,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-29 05:35:03.978000'),(2783,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-27 07:10:51.192000'),(2784,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-24 07:53:25.793000'),(2785,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-24 07:53:18.659000'),(2786,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-24 07:53:06.143000'),(2787,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-24 07:52:54.281000'),(2788,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-10-24 07:52:42.920000'),(2789,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-24 07:51:52.287000'),(2790,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-24 07:42:41.348000'),(2791,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-24 07:42:23.232000'),(2792,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-24 07:39:47.398000'),(2793,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-24 07:39:02.778000'),(2794,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-29 05:45:13.267000'),(2795,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-23 05:38:23.710000'),(2796,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-22 06:33:57.710000'),(2797,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-21 06:58:19.835000'),(2798,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-20 05:13:48.865000'),(2799,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-20 05:13:38.497000'),(2800,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-20 05:13:22.829000'),(2801,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-20 05:13:10.110000'),(2802,'We appreciate your five star rating, Noble!','2019-10-20 05:12:54.979000'),(2803,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-20 05:12:14.099000'),(2804,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-20 05:11:59.050000'),(2805,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-20 05:11:35.538000'),(2806,'Thank you for your five star rating!','2019-10-20 05:11:01.476000'),(2807,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-20 05:10:31.997000'),(2808,'We appreciate your great rating, Lataunya!','2019-10-17 08:04:36.578000'),(2809,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-10-17 08:04:10.258000'),(2810,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-10-22 06:34:14.532000'),(2811,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-17 08:03:34.341000'),(2812,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-17 08:03:11.328000'),(2813,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-17 08:03:25.318000'),(2814,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-17 08:03:02.699000'),(2815,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-17 08:02:52.486000'),(2816,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-10-16 07:13:54.439000'),(2817,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-17 08:02:31.385000'),(2818,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-17 08:02:13.138000'),(2819,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-16 07:14:29.716000'),(2820,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-10-16 07:13:40.239000'),(2821,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-16 07:13:14.332000'),(2822,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-14 06:25:55.821000'),(2823,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-14 06:25:40.164000'),(2824,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-13 06:54:35.838000'),(2825,'We appreciate your great rating, Devaun!','2019-10-13 06:54:25.587000'),(2826,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-13 06:54:03.767000'),(2827,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-13 06:53:32.749000'),(2828,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-13 06:52:19.022000'),(2829,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-13 06:51:56.756000'),(2830,'Thank you so much for your great rating, Denise!','2019-10-13 06:51:15.616000'),(2831,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-13 06:50:56.304000'),(2832,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-13 06:50:39.619000'),(2833,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-13 06:50:14.996000'),(2834,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-13 06:50:01.724000'),(2835,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-13 06:49:51.635000'),(2836,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-13 06:49:41.050000'),(2837,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-10 10:28:17.481000'),(2838,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-10 10:28:06.745000'),(2839,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-10 10:27:46.439000'),(2840,'We appreciate your great rating, Coleman! Thanks for choosing us.','2019-10-10 10:27:16.334000'),(2841,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-10 10:26:47.265000'),(2842,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-10-10 10:26:36.256000'),(2843,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-10 10:26:25.876000'),(2844,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-10 10:26:14.093000'),(2845,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-09 07:53:30.063000'),(2846,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-09 07:47:28.176000'),(2847,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-09 07:47:08.544000'),(2848,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-09 07:46:53.309000'),(2849,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-10-09 07:46:28.037000'),(2850,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-09 07:46:01.268000'),(2851,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-09 07:45:51.915000'),(2852,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-09 07:45:39.659000'),(2853,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-09 07:45:15.138000'),(2854,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-09 07:44:54.939000'),(2855,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for your girlfriend, and are so glad to hear that she is feeling better. Thank you for choosing SignatureCare!','2019-10-09 07:44:04.069000'),(2856,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-10-09 07:43:07.263000'),(2857,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-09 07:41:27.644000'),(2858,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-09 07:41:17.815000'),(2859,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-09 07:40:54.809000'),(2860,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-09 07:40:44.041000'),(2861,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare. Hope your granddaughter is feeling well.','2019-10-03 07:12:55.793000'),(2862,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-03 07:12:21.914000'),(2863,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-03 07:12:09.559000'),(2864,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. By the way, we are not a spa, we just make sure that people who visit us never feel uncomfortable :) :)','2019-10-03 07:11:03.950000'),(2865,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-03 07:06:04.362000'),(2866,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-10-03 07:05:20.079000'),(2867,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-02 05:56:41.026000'),(2868,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-02 05:56:07.486000'),(2869,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-02 05:55:47.999000'),(2870,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-10-02 05:55:28.125000'),(2871,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-01 06:12:27.940000'),(2872,'Thank you for trusting us with the care of your grandson. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-10-01 06:12:13.022000'),(2873,'Thank you so much for your great rating, Jejuan!','2019-10-01 06:11:43.319000'),(2874,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-29 05:57:14.149000'),(2875,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Hope your sister feels well.','2019-09-29 05:56:49.571000'),(2876,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-09-29 05:56:05.799000'),(2877,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-26 11:03:36.524000'),(2878,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-26 11:03:20.408000'),(2879,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2019-09-26 11:03:00.459000'),(2880,'Thank you so much for your nice review, Ryan. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-09-26 11:02:48.418000'),(2881,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-26 11:02:20.424000'),(2882,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. Hope your fiancé feels well.','2019-09-25 06:05:58.097000'),(2883,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-09-25 06:05:02.247000'),(2884,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-25 06:03:09.057000'),(2885,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-25 06:02:53.575000'),(2886,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-09-25 06:02:23.962000'),(2887,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-25 05:57:21.786000'),(2888,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-24 06:28:40.339000'),(2889,'Thank you for trusting us with the care of your sister. We appreciate the great feedback, and are very glad to hear that our team took such good care of her. Thanks again for choosing SignatureCare!','2019-09-23 05:30:25.716000'),(2890,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-23 05:28:55.458000'),(2891,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-22 05:44:54.367000'),(2892,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-22 05:44:22.571000'),(2893,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-09-22 05:43:45.610000'),(2894,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-09-22 05:43:23.427000'),(2895,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-15 07:22:15.551000'),(2896,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-09-19 09:16:36.149000'),(2897,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-19 09:16:14.135000'),(2898,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-09-19 09:15:59.161000'),(2899,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-19 09:15:34.705000'),(2900,'Thank you for your rating. We appreciate you choosing SignatureCare!','2019-09-19 09:09:42.430000'),(2901,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-19 09:09:02.863000'),(2902,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-09-19 09:05:54.392000'),(2903,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-19 09:05:21.416000'),(2904,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-09-19 09:03:58.767000'),(2905,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-15 06:35:53.648000'),(2906,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-17 11:46:50.000000'),(2907,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-09-16 11:14:18.563000'),(2908,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-16 11:13:49.879000'),(2909,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-15 06:34:43.899000'),(2910,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-15 06:34:54.728000'),(2911,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-15 06:35:04.523000'),(2912,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-15 06:35:27.788000'),(2913,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-15 06:37:01.443000'),(2914,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-10-10 10:28:29.580000'),(2915,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-15 06:37:09.882000'),(2916,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-15 06:37:24.916000'),(2917,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-09-15 06:37:53.515000'),(2918,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-15 06:38:21.614000'),(2919,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-15 06:39:06.601000'),(2920,'We appreciate your feedback and the great rating you gave us and thank you for choosing SignatureCare.','2019-09-15 06:39:27.636000'),(2921,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-09-15 06:40:56.077000'),(2922,'Thank you for your great rating, Jonpaul!','2019-09-15 06:53:10.637000'),(2923,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-09-15 06:55:23.461000'),(2924,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-15 06:55:37.357000'),(2925,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-09-15 06:55:55.533000'),(2926,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-15 06:56:46.037000'),(2927,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-15 06:58:06.122000'),(2928,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-15 07:01:35.781000'),(2929,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-09-15 07:04:19.595000'),(2930,'Thank you for your great rating, Rivera!','2019-09-15 07:02:04.564000'),(2931,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-15 07:04:37.164000'),(2932,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-09-15 07:08:14.396000'),(2933,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-15 07:11:49.357000'),(2934,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-15 07:12:54.903000'),(2935,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-09-15 07:13:08.701000'),(2936,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-15 07:16:22.704000'),(2937,'Thanks for leaving a review! Please reach out to us at info@ercare24.com to let us know how we can earn those last two stars!','2019-09-15 07:16:33.919000'),(2938,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-09-15 07:18:30.613000'),(2939,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-15 07:18:47.106000'),(2940,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-15 07:22:05.064000'),(2941,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-09-15 07:22:57.412000'),(2942,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-15 07:24:03.760000'),(2943,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-15 07:24:13.442000'),(2944,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-15 07:24:33.442000'),(2945,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-15 07:35:20.819000'),(2946,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-15 07:35:41.170000'),(2947,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-15 07:35:54.493000'),(2948,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-15 07:36:09.746000'),(2949,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-15 07:36:31.985000'),(2950,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-15 07:36:47.757000'),(2951,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-15 07:36:54.702000'),(2952,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-09-15 07:38:08.676000'),(2953,'Thank you so much for your great rating, Sarah!','2019-09-23 05:45:02.273000'),(2954,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-23 05:45:09.677000'),(2955,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-23 05:45:22.803000'),(2956,'We appreciate your great rating, Brown!','2019-09-23 05:45:42.791000'),(2957,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-23 05:45:53.928000'),(2958,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-23 05:46:03.171000'),(2959,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-23 05:46:17.207000'),(2960,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-23 05:46:27.464000'),(2961,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-23 05:46:38.033000'),(2962,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-23 05:46:57.056000'),(2963,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-23 05:47:19.669000'),(2964,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-23 05:47:34.754000'),(2965,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-23 05:47:46.447000'),(2966,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-23 05:47:58.190000'),(2967,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-09-23 05:48:12.215000'),(2968,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-23 05:48:24.800000'),(2969,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-23 05:48:36.684000'),(2970,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-23 05:48:45.937000'),(2971,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-23 05:48:59.737000'),(2972,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-23 05:49:10.434000'),(2973,'Thank you for your great rating, Nora!','2019-09-23 05:49:41.526000'),(2974,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-09-23 05:50:04.415000'),(2975,'Thank you so much for your nice review, Brittany. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-09-23 05:50:26.012000'),(2976,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-23 05:50:45.151000'),(2977,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-23 05:50:54.842000'),(2978,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-23 05:51:09.816000'),(2979,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-23 05:51:19.252000'),(2980,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better! By the way, how was the drink? Let us know :)','2019-09-23 05:52:12.343000'),(2981,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-23 05:52:27.492000'),(2982,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-09-23 05:52:51.223000'),(2984,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-23 05:53:18.461000'),(2985,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. We hope your mom is feeling better!','2020-01-06 07:17:07.083000'),(2986,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-06 07:16:23.254000'),(2988,'We appreciate your great rating, Karis!','2020-01-05 06:41:48.635000'),(2989,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-05 06:41:24.281000'),(2990,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-01-05 06:41:12.818000'),(2991,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-05 06:40:51.146000'),(2992,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-05 06:40:24.732000'),(2993,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-02 05:24:04.184000'),(2994,'Hi Vanessa! We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-01-01 07:36:30.111000'),(2995,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-01 07:35:02.182000'),(2996,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:57:35.967000'),(2997,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-01 07:35:48.741000'),(2998,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better! Hope your boyfriend is feeling better.','2020-01-01 07:35:34.347000'),(2999,'Thank you for trusting us with the care of your children. We appreciate the great feedback and are very glad to hear that our team took such good care.','2019-12-31 04:53:57.090000'),(3000,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-29 06:33:43.658000'),(3001,'Thank you so much for your great rating, Hannah!','2019-12-29 06:32:19.679000'),(3002,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-29 06:29:17.349000'),(3003,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-29 06:28:39.442000'),(3004,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-29 06:27:45.174000'),(3006,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-22 07:24:46.313000'),(3007,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-26 08:04:29.867000'),(3008,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-26 08:02:56.511000'),(3009,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-26 08:02:30.719000'),(3010,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-23 08:10:36.114000'),(3011,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-23 08:10:21.626000'),(3012,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-23 08:10:10.835000'),(3014,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-22 08:24:40.522000'),(3015,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-22 08:24:31.133000'),(3016,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-22 08:24:03.888000'),(3017,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-22 08:23:52.286000'),(3018,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-17 06:11:37.142000'),(3019,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2019-12-17 06:11:22.005000'),(3020,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-17 06:11:10.330000'),(3021,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-17 06:10:49.600000'),(3022,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-15 06:57:22.310000'),(3024,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 06:57:07.052000'),(3025,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-24 07:03:40.127000'),(3026,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 06:56:50.430000'),(3027,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:56:27.715000'),(3028,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-12-15 06:56:15.068000'),(3029,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 06:56:04.693000'),(3030,'Thank you so much for your nice review, Hailey. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-15 06:55:47.025000'),(3031,'Thank you so much for your nice review, Krista. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-12-15 06:55:26.549000'),(3032,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:55:02.491000'),(3033,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:54:57.118000'),(3034,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-15 06:54:51.735000'),(3035,'Thank you for trusting us with the care of your child. We appreciate the great feedback, and are very glad to hear that our team took such good care of your kiddo.','2019-12-15 06:54:43.324000'),(3036,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-12-15 06:54:15.233000'),(3037,'Thank you so much for your nice review, Adrian. Our goal at SignatureCare is patients satisfaction. We apologize on behalf of the receptionist. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-15 06:53:59.742000'),(3038,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-15 06:51:23.717000'),(3039,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:51:13.917000'),(3040,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-15 06:50:56.271000'),(3041,'Thank you so much for your great rating, Christopher!','2019-12-15 06:50:49.248000'),(3042,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-15 06:50:24.612000'),(3043,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-12-15 06:50:14.200000'),(3044,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 06:50:04.724000'),(3045,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:49:51.463000'),(3046,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-15 06:49:33.485000'),(3047,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 06:49:21.038000'),(3048,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:49:14.164000'),(3049,'We appreciate the chance to care fo your daughter. Thank you so much for the nice feedback and the great rating. SignatureCare is here 24/7 in case you ever need us again. ','2018-11-27 15:34:40.942000'),(3050,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. Hope your friend is feeling well.','2019-12-15 06:58:59.479000'),(3051,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:58:35.430000'),(3052,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 06:58:23.784000'),(3053,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 06:58:10.097000'),(3054,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:58:01.164000'),(3055,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-14 06:07:09.137000'),(3056,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-05 07:12:06.066000'),(3057,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-05 07:11:27.776000'),(3058,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-12-02 06:57:14.243000'),(3059,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-01 08:36:11.950000'),(3060,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-01 08:35:37.360000'),(3061,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-01 08:35:18.518000'),(3062,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-01 08:34:30.233000'),(3063,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope your girlfriend is feeling better!','2019-12-01 08:33:49.547000'),(3064,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-01 08:29:40.149000'),(3065,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-01 08:25:53.208000'),(3066,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-01 08:25:43.576000'),(3067,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-01 08:21:30.058000'),(3068,'We appreciate the five-star rating. Thank you so much for choosing SignatureCare. ','2018-07-17 22:52:54.032000'),(3069,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-08-18 05:53:01.811000'),(3070,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-08-18 05:53:40.305000'),(3071,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-01 08:36:54.026000'),(3072,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-01 08:36:31.064000'),(3073,'We appreciate the great rating you gave us, Kayla!','2019-11-28 07:51:55.797000'),(3074,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-28 07:50:37.592000'),(3075,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-28 07:49:56.903000'),(3076,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-27 06:47:59.448000'),(3077,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-11-24 07:04:44.244000'),(3078,'Thank you Ross, for giving us five star!','2019-11-24 07:04:29.915000'),(3079,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. Hope your sister is feeling better.','2019-11-24 07:04:09.081000'),(3080,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your friend. We appreciate the great review and rating.','2019-11-24 07:03:29.337000'),(3081,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-24 07:03:03.159000'),(3082,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-24 07:02:46.990000'),(3083,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-11-24 07:02:35.078000'),(3084,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-24 07:02:27.787000'),(3085,'Thank you so much for your feedback! Our goal is to always provide the best care as fast as possible. Thank you for choosing SignatureCare.','2019-11-24 07:02:04.225000'),(3086,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-24 07:01:27.212000'),(3087,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-18 05:56:11.858000'),(3088,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-18 05:55:11.197000'),(3089,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-17 07:14:44.704000'),(3090,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-17 07:13:46.789000'),(3091,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-12 07:40:06.523000'),(3092,'Thank you for giving us five star, Erica!','2019-11-11 07:35:53.252000'),(3093,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-11 07:35:26.428000'),(3094,'Thank you for your great rating, Kirsten!','2019-11-11 07:35:04.191000'),(3095,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-11 07:34:37.092000'),(3096,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-11 07:34:43.600000'),(3097,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-11-11 07:33:48.750000'),(3098,'We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare.','2019-11-11 07:34:07.378000'),(3099,'We appreciate your great rating, Hernandez!','2019-11-11 07:33:35.732000'),(3100,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-11 07:33:10.853000'),(3101,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-11 07:32:53.071000'),(3102,'Thank you so much for your nice review, Lakrisha. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-11-07 04:53:15.113000'),(3103,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-04 11:21:55.444000'),(3104,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-04 11:21:37.802000'),(3105,'Thank you so much for your nice review, Kyle. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-11-04 11:21:26.203000'),(3106,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-04 11:21:10.213000'),(3107,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-04 11:20:52.160000'),(3108,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-04 11:20:40.773000'),(3109,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope [PERSON] is feeling better!','2019-11-03 06:31:57.406000'),(3110,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-03 06:30:59.138000'),(3111,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-03 06:28:56.721000'),(3112,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-03 06:28:40.565000'),(3113,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-03 06:28:14.396000'),(3114,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-11-03 06:27:49.501000'),(3115,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\n with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2019-11-03 06:27:07.033000'),(3116,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-31 09:52:03.505000'),(3117,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-29 05:49:11.484000'),(3118,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-29 05:48:56.701000'),(3119,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-29 05:48:23.992000'),(3120,'Thank you so much for your nice review, Jacob. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-10-29 05:48:03.052000'),(3121,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.','2019-10-29 05:47:37.275000'),(3122,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-27 08:36:55.489000'),(3123,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-10-27 08:36:35.984000'),(3124,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-27 08:36:19.745000'),(3125,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-23 06:42:45.791000'),(3126,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-23 06:42:14.260000'),(3127,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. Hope your friend is feeling well.','2019-10-23 06:41:45.590000'),(3128,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-25 07:11:22.296000'),(3129,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-20 06:41:45.615000'),(3130,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-20 06:41:33.708000'),(3131,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-20 06:41:16.954000'),(3132,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-16 11:16:18.135000'),(3133,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-10-20 06:40:26.240000'),(3134,'Thank you for your five star rating, Erin!','2019-10-20 06:40:11.007000'),(3135,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-17 08:18:12.955000'),(3136,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2019-10-17 08:17:45.754000'),(3137,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-16 07:22:44.839000'),(3138,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-10-16 07:22:24.300000'),(3139,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-16 07:21:53.851000'),(3140,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-15 06:43:48.379000'),(3141,'Thanks for leaving a review, Stuart! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2019-10-15 06:43:28.937000'),(3142,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-15 06:42:23.170000'),(3143,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-15 06:41:54.814000'),(3144,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-15 06:40:34.005000'),(3145,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-13 07:14:28.854000'),(3146,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-13 07:14:18.465000'),(3147,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your husband at ease and provide him with the best care possible. We hope he is feeling better.','2019-10-13 07:13:54.673000'),(3148,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-13 07:07:12.876000'),(3149,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your roommate. Thank you for choosing SignatureCare.','2019-10-13 07:03:29.910000'),(3150,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-13 07:02:50.279000'),(3151,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-13 06:58:59.217000'),(3152,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-13 06:58:35.400000'),(3153,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-10-13 06:57:38.463000'),(3154,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-09 08:16:25.460000'),(3155,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-10-09 08:16:11.810000'),(3156,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-09 08:15:57.464000'),(3157,'Thank you for your five star rating, Haley!','2019-10-09 08:15:21.422000'),(3158,'Thank you so much for your great rating, Tonya!','2019-10-09 08:15:40.866000'),(3159,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-03 07:30:18.259000'),(3160,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-01 06:17:26.060000'),(3161,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-01 06:17:11.958000'),(3162,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-01 06:16:59.033000'),(3163,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-01 06:16:45.672000'),(3164,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-01 06:16:15.746000'),(3165,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-10-01 06:16:01.192000'),(3166,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-01 06:15:11.926000'),(3167,'We appreciate your great rating, Joely!','2019-10-01 06:14:46.291000'),(3168,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-29 06:07:00.921000'),(3169,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-29 06:06:44.299000'),(3170,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-09-29 06:04:15.928000'),(3171,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-29 06:03:19.824000'),(3172,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-29 05:59:11.295000'),(3173,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-25 06:08:54.800000'),(3174,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-25 06:08:01.710000'),(3175,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-25 06:07:30.950000'),(3176,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-25 06:06:46.207000'),(3177,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-25 06:06:35.844000'),(3178,'Thank you for trusting us with the care of your grandson. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-09-24 06:36:19.545000'),(3179,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-24 06:35:34.153000'),(3180,'Thank you for your great rating, Cameron! Thanks for choosing us.','2019-09-24 06:31:31.516000'),(3181,'We appreciate your great rating, Jace! Thank you for choosing SignatureCare.','2019-09-24 06:30:57.289000'),(3182,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-09-24 06:28:57.899000'),(3183,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare! Hope your husband feels well.','2019-09-23 05:42:21.317000'),(3184,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-23 05:41:35.259000'),(3185,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-09-23 05:41:23.282000'),(3186,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-22 06:08:53.116000'),(3187,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-22 06:08:45.674000'),(3188,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-22 06:08:37.386000'),(3189,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! Hope your friend feels well.','2019-09-22 06:08:26.806000'),(3190,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-22 06:07:30.628000'),(3191,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-09-22 06:07:19.461000'),(3192,'Thank you so much for your five star rating, Grace! Thanks for choosing SignatureCare.','2019-09-22 06:06:58.259000'),(3193,'We appreciate your great rating, Dolores! Thank you for choosing us.','2019-09-22 06:06:12.040000'),(3194,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-22 06:05:31.863000'),(3195,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-22 06:05:10.386000'),(3196,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-22 06:04:54.224000'),(3197,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-19 09:20:18.670000'),(3198,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-19 09:20:44.589000'),(3199,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-09-19 09:20:33.724000'),(3200,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-09-19 09:20:00.316000'),(3201,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-19 09:19:48.793000'),(3202,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-17 11:48:57.006000'),(3203,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us.','2019-09-17 11:48:28.550000'),(3204,'Thank you for trusting us with the care of your boyfriend. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-09-16 11:27:43.998000'),(3205,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-16 11:27:11.549000'),(3206,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-16 11:17:24.126000'),(3207,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-16 11:17:03.202000'),(3208,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-16 11:16:51.692000'),(3209,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-16 11:16:29.783000'),(3210,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-09-16 11:15:59.542000'),(3211,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-09-15 04:56:23.022000'),(3212,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-15 04:56:02.212000'),(3213,'Thanks for giving us five star, Nicole!','2019-09-11 05:45:06.721000'),(3214,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-11 05:44:36.735000'),(3215,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us.','2019-09-11 05:44:21.969000'),(3216,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-11 05:43:52.723000'),(3217,'Thank you for your great rating, Shannon!','2019-09-11 05:43:01.866000'),(3218,'We appreciate your great rating, Samantha! Thanks for choosing SignatureCare!','2019-09-11 05:42:38.847000'),(3219,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\n with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2019-09-11 05:42:12.972000'),(3220,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-11 05:40:52.780000'),(3221,'Thank you so much for rating us!','2019-09-11 05:40:32.828000'),(3222,'Thank you for trusting us with the care of your friend. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-09-11 05:40:11.728000'),(3223,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-09-11 05:39:36.808000'),(3224,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-11 05:39:20.886000'),(3225,'Thank you for your five star rating, Alexis!','2019-09-11 05:39:11.871000'),(3226,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-11 05:38:47.151000'),(3227,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-09-11 05:38:34.399000'),(3228,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-11 05:38:20.403000'),(3229,'We appreciate your great rating, Ashley! Thanks for choosing SignatureCare!','2019-09-11 05:38:04.900000'),(3230,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-11 05:37:46.251000'),(3231,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-11 05:37:31.283000'),(3232,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-11 05:37:19.166000'),(3233,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-11 05:37:08.454000'),(3234,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-27 05:00:45.830000'),(3235,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-08-26 05:07:37.588000'),(3236,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-25 05:16:55.927000'),(3237,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-08-25 05:16:41.302000'),(3238,'Thank you so much for your nice review, Alejandra. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-08-25 05:14:13.158000'),(3239,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare, Kassidy!','2019-08-25 05:16:24.382000'),(3240,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-25 05:14:29.666000'),(3241,'Thank you so much for rating us five star, Emily!','2019-08-25 05:13:14.623000'),(3242,'Thank you so much for your nice review, Shaelyn. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-08-25 05:12:25.831000'),(3243,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-25 05:11:58.055000'),(3244,'Thank you so much for your feedback. We appreciate the great rating you gave us, Cary!','2019-08-25 05:13:27.939000'),(3245,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-25 05:07:56.758000'),(3246,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-25 05:07:20.198000'),(3247,'We appreciate your five star rating, Sabrina!','2019-08-20 05:29:41.928000'),(3248,'Thank you for rating us five star, Laycee!','2019-08-20 05:29:21.068000'),(3249,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-08-20 05:30:17.112000'),(3250,'Thank you so much for your five star rating, Ashley!','2019-08-20 04:35:06.425000'),(3251,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-19 05:55:02.655000'),(3252,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 05:56:14.097000'),(3254,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 05:55:54.082000'),(3255,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-18 05:55:48.642000'),(3256,'We appreciate your great rating, Aaliyah!','2019-08-18 05:55:24.740000'),(3257,'Thank you so much for taking the time to let us know how we are doing. We appreciate the feedback and recommendation!','2018-12-06 16:02:05.721000'),(3258,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-18 05:55:03.742000'),(3259,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review. Hope your friend is feeling well!','2019-08-18 05:54:18.234000'),(3260,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-18 05:53:47.321000'),(3261,'Thank you so much for rating us five star, Crystal!','2019-08-18 05:52:12.663000'),(3262,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-08-09 13:52:50.584000'),(3263,'Thank you for the 5 star, Carol!','2019-08-09 13:49:04.145000'),(3264,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-09 13:48:28.320000'),(3265,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-08-09 13:47:17.846000'),(3266,'We appreciate the great rating you gave us, Becca!','2019-08-04 05:27:32.808000'),(3267,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-08-04 05:26:53.825000'),(3268,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-04 05:25:42.884000'),(3269,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-08-04 05:25:10.210000'),(3270,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-04 05:24:50.323000'),(3271,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-08-01 03:32:53.637000'),(3272,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-05-05 06:32:05.195000'),(3273,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-29 06:10:58.911000'),(3274,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-29 06:10:47.175000'),(3275,'Thank you for giving us five star, Anissa!','2019-07-28 07:08:30.197000'),(3276,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-28 07:08:05.813000'),(3277,'We appreciate the great rating you gave us, Ellysa!','2019-07-28 07:07:32.718000'),(3278,'When we receive feedback like this, it helps us know we’re doing something right in our community. Thank you for choosing SignatureCare. ','2018-11-16 15:22:55.528000'),(3279,'Thank you so much for your great rating, Craig!','2019-07-28 07:06:51.779000'),(3280,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-07-24 06:41:35.309000'),(3281,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-07-23 05:38:49.448000'),(3282,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-11-25 17:26:52.023000'),(3283,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-22 07:25:43.648000'),(3284,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-22 07:25:26.797000'),(3285,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-07-18 06:02:58.943000'),(3286,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-21 06:09:20.546000'),(3287,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better. ','2019-07-21 06:08:50.703000'),(3288,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-21 06:08:33.161000'),(3289,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-07-18 06:08:52.610000'),(3290,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-07-18 06:02:22.010000'),(3291,'Thank you for trusting us with the care of your boyfriend. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-18 05:59:38.192000'),(3292,'Thank you so much for your nice review, Gabriella. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-07-16 05:33:04.272000'),(3293,'Thank you so much for your nice review, Olivia. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-07-16 05:33:27.096000'),(3294,'Thank you for your wonderful rating, Jorge!','2019-07-16 05:13:27.981000'),(3295,'Thank you for your great rating, Abby!','2019-07-21 06:09:47.567000'),(3296,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-07-15 07:07:12.176000'),(3297,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-15 07:06:58.128000'),(3298,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-15 07:06:39.607000'),(3299,'Thank you for your five star rating, Myeesiah!','2019-07-14 06:09:28.653000'),(3300,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-07-14 06:08:52.378000'),(3301,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-14 06:08:21.948000'),(3302,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-14 06:07:55.101000'),(3303,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-14 06:06:55.698000'),(3304,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-10 06:13:00.100000'),(3305,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-10 06:12:47.552000'),(3306,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-30 05:49:48.687000'),(3307,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-09 07:10:09.251000'),(3308,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-07-09 07:09:58.999000'),(3309,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-09 07:09:42.489000'),(3310,'We believe we have the very best staff in Texas. Thank you for choosing us.','2019-07-08 06:25:27.524000'),(3311,'We appreciate the great rating, Emily!','2019-07-08 06:24:33.271000'),(3312,'Thank you so much for your feedback! SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-07-08 06:22:49.563000'),(3313,'Thank you for rating us, McKinnies!','2019-07-08 06:23:50.018000'),(3314,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-07 07:23:37.929000'),(3315,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-07 07:23:14.294000'),(3316,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-07 07:22:43.631000'),(3317,'Thank you so much for your great rating, Nick!','2019-07-07 07:22:23.565000'),(3318,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-07-08 16:36:35.217000'),(3319,'Thank you for the wonderful rating you gave us, Andrew!','2019-07-04 07:32:02.062000'),(3320,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2019-07-04 07:31:24.769000'),(3321,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-07-03 07:13:35.250000'),(3322,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-03 07:13:10.562000'),(3323,'Thank for your great rating, Kheeli!','2019-07-03 07:12:45.238000'),(3324,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-02 06:42:34.189000'),(3325,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-07-02 06:41:20.046000'),(3326,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope Jordan feels better soon!','2019-07-02 06:40:33.768000'),(3327,'Thank you for your five star rating, Kendall!','2019-07-01 07:34:33.789000'),(3328,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-01 07:33:58.082000'),(3329,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-06-30 05:50:22.893000'),(3330,'Thank you for choosing SignatureCare and for the great review.','2019-07-04 07:32:43.216000'),(3331,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-06-27 06:00:46.465000'),(3332,'Thank you Kal, for your great rating!','2019-06-26 06:33:28.631000'),(3333,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope your friend is feeling well.','2019-06-26 06:33:13.105000'),(3334,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-26 06:31:32.640000'),(3335,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-26 06:29:54.579000'),(3336,'Thank you for your five star rating, Mouhammed!','2019-06-25 07:12:30.996000'),(3337,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-25 07:11:40.749000'),(3338,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better. ','2019-06-25 07:02:30.475000'),(3339,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-23 04:37:39.314000'),(3340,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-06-23 04:37:16.104000'),(3341,'Thank you for your five star rating, Leah!','2019-06-23 04:36:53.370000'),(3342,'Thank you for your rating, Brooke!','2019-06-23 04:36:20.665000'),(3343,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-20 04:36:21.373000'),(3344,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-20 04:36:06.837000'),(3345,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-19 14:11:54.446000'),(3346,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-18 06:38:07.499000'),(3347,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-17 06:23:44.321000'),(3348,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-06-17 06:23:25.302000'),(3349,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-17 06:22:16.798000'),(3350,'Thank you for your rating, Nico!','2019-06-17 06:19:27.049000'),(3351,'Thank you for your rating, Karla!','2019-06-16 05:52:43.832000'),(3352,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-06-16 05:52:27.886000'),(3353,'Thank you Dustin for your rating!','2019-06-16 05:52:16.465000'),(3354,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-06-16 05:51:49.633000'),(3355,'Thank you for rating us five star, Christina!','2019-06-13 06:44:18.653000'),(3356,'Thank you so much for the feedback and great rating. We appreciate you choosing SignatureCare. ','2017-09-02 21:05:59.154000'),(3357,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-13 06:43:48.119000'),(3358,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-13 06:43:27.651000'),(3359,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-12 06:08:02.109000'),(3360,'Thank you for your rating, Reed!','2019-06-12 06:07:45.068000'),(3361,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-11 06:06:09.835000'),(3362,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-11 06:05:52.655000'),(3363,'Thank for giving us five star, Victoria!','2019-06-09 07:22:23.862000'),(3364,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-09 07:21:37.477000'),(3365,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-06-09 07:21:04.861000'),(3366,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-09 07:19:03.810000'),(3367,'Thank you Robert for your great rating!','2019-06-09 07:18:40.072000'),(3368,'We appreciate your five star rating, Sierra!','2019-06-09 07:18:02.206000'),(3369,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-09 07:17:34.084000'),(3370,'Thank you for your five star rating, Glenn!','2019-06-09 07:15:45.900000'),(3371,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-09 07:15:17.426000'),(3372,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-09 07:14:38.112000'),(3373,'Thank you for your review and rating!','2019-06-09 07:14:24.147000'),(3374,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-06-09 07:14:06.107000'),(3375,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-05-29 06:30:50.834000'),(3376,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-28 05:45:36.149000'),(3377,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-05-27 05:55:51.466000'),(3378,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-05-27 05:55:02.504000'),(3379,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us. ','2019-05-27 05:54:33.619000'),(3380,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-23 06:33:03.171000'),(3381,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-05-21 04:13:06.711000'),(3382,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-05-21 04:12:21.926000'),(3383,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-21 04:12:05.839000'),(3384,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-16 06:36:39.793000'),(3385,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-15 06:32:10.697000'),(3386,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-14 04:33:18.142000'),(3387,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-05-14 04:33:00.083000'),(3388,'Thank you for your rating, Leonor!','2019-05-13 05:59:45.753000'),(3389,'We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-05-13 15:32:31.799000'),(3390,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-05-12 04:50:46.912000'),(3391,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-05-12 04:50:05.148000'),(3392,'Thank you for your rating, Lauren!','2019-05-09 04:07:34.213000'),(3393,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-08 05:18:12.397000'),(3394,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-05-05 06:32:51.760000'),(3395,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-02 09:18:05.321000'),(3396,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 09:17:47.454000'),(3397,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. Hope your friend is feeling well.','2019-05-02 09:17:26.183000'),(3398,'Hi John. We are sorry to hear that your fiancee didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your fiancee\'s experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously. \n','2019-06-18 13:56:26.753000'),(3399,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 09:15:42.065000'),(3400,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-05-02 09:15:20.005000'),(3401,'Thank you for your rating, Emily!','2019-05-02 09:15:05.095000'),(3402,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-05-02 09:14:40.333000'),(3403,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-04-26 09:13:29.307000'),(3404,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-04-26 09:12:50.000000'),(3405,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-04-26 09:11:51.492000'),(3406,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-04-26 09:07:52.252000'),(3407,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-04-24 05:44:37.319000'),(3408,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-04-24 05:44:22.655000'),(3409,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-04-24 05:43:48.379000'),(3410,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-04-24 05:43:26.706000'),(3411,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-24 05:42:29.865000'),(3412,'Our doctors and nurses make us proud every day. Hope your friend get well soon. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-24 05:41:34.213000'),(3413,'Thank you for your review and rating, Natalie!','2019-04-24 05:40:33.288000'),(3414,'Thank you for your rating, Ashton!','2019-04-24 05:40:08.353000'),(3415,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-04-23 05:49:41.285000'),(3416,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-23 05:49:19.265000'),(3417,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-04-22 06:09:01.711000'),(3418,'Thank you Joselyn for your review and rating!','2019-04-22 06:07:48.269000'),(3419,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-04-22 06:07:14.867000'),(3420,'Thank you for your great rating!','2019-04-22 06:06:20.064000'),(3421,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-04-22 06:05:55.413000'),(3422,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-04-18 05:21:05.344000'),(3423,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-16 07:41:27.582000'),(3424,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-04-18 05:21:47.390000'),(3425,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-04-18 05:22:12.670000'),(3426,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-18 05:22:27.934000'),(3427,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-04-18 05:22:43.166000'),(3428,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-04-16 06:05:34.085000'),(3429,'Thank you for your rating, Cailin!','2019-04-16 06:06:03.266000'),(3430,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-04-15 05:43:39.392000'),(3431,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-04-15 05:42:17.821000'),(3432,'Thank you for your rating, Yousef!','2019-04-15 05:40:53.067000'),(3433,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-13 12:47:28.094000'),(3434,'Thank you for your review and rating, John!','2019-04-11 05:41:41.591000'),(3435,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-04-09 07:04:42.187000'),(3436,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-04-09 07:03:52.788000'),(3437,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-04-09 07:03:10.465000'),(3438,'We are glad to know about your positive experience at SignatureCare. Thank you for choosing us!','2019-04-08 13:07:48.283000'),(3439,'Than you for your five star rating, Sarah!','2019-04-08 06:53:59.943000'),(3440,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-04-08 15:15:09.550000'),(3441,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-04-08 06:53:31.036000'),(3442,'Thank you so much for your nice review, Tanner. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-04-08 06:49:24.684000'),(3443,'Thank you for your rating, Jordyn!','2019-04-08 06:47:22.755000'),(3444,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-04-08 06:43:58.603000'),(3445,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing us, and for the great review. ','2017-11-29 17:51:03.678000'),(3446,'Thank you Andrew for your rating!','2019-04-08 06:38:22.252000'),(3447,'Thank you for your rating!','2019-04-07 05:35:38.279000'),(3448,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-07 05:35:23.466000'),(3449,'Thank you for your review and your rating. We appreciate you choosing SignatureCare!','2019-04-07 05:34:45.068000'),(3450,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-04-07 05:34:05.895000'),(3451,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-04-07 05:32:59.550000'),(3452,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-04-07 05:24:46.891000'),(3453,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-04-07 05:23:07.316000'),(3454,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-04-07 05:22:26.972000'),(3455,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-04-07 05:22:02.704000'),(3456,'Your positive comments mean a lot to our team at SignatureCare. Thanks so much for letting us know they are doing a good job -- we will pass along your kind words to them. ','2018-02-06 16:39:13.155000'),(3457,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for recommending SignatureCare!','2019-04-04 05:10:04.052000'),(3458,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-04 05:08:44.189000'),(3459,'Than you for your rating, Hannah!','2019-04-04 05:07:31.404000'),(3460,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-04-04 05:07:12.984000'),(3461,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-04-03 06:26:39.780000'),(3462,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-04-03 06:26:48.741000'),(3463,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-04-03 06:25:48.130000'),(3464,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-04-03 06:25:15.968000'),(3465,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-04-03 06:24:55.846000'),(3466,'\nOur team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-03 06:24:29.559000'),(3467,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-04-02 07:15:40.616000'),(3468,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-04-02 07:14:54.315000'),(3469,'Thank you for you rating, Carson!','2019-04-01 05:59:45.160000'),(3470,'Thank you Alden for your rating!','2019-04-01 05:59:12.406000'),(3471,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-04-01 05:58:50.202000'),(3472,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-04-01 05:58:03.237000'),(3473,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-04-01 05:57:06.563000'),(3474,'Thank you so much for your nice review, Maddie. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-04-01 05:56:06.799000'),(3475,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-03-31 06:32:37.576000'),(3476,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-03-31 06:28:22.104000'),(3477,'We appreciate the five stars, Thomas. Thank you for the feedback. ','2018-12-08 15:09:34.398000'),(3478,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-03-28 04:50:47.725000'),(3479,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-03-27 05:36:55.300000'),(3480,'\nOur team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-27 05:36:06.937000'),(3481,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-03-27 05:35:20.818000'),(3482,'Thank you for your great rating, Jordyn!','2019-03-27 05:34:28.020000'),(3483,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-03-27 05:34:00.049000'),(3484,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-03-27 05:33:21.649000'),(3485,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2019-03-25 07:43:14.229000'),(3486,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-03-25 07:42:36.493000'),(3487,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care of your friend, and hope she is feeling better. Thank you for choosing SignatureCare!','2019-03-25 07:41:42.702000'),(3488,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-03-24 06:58:42.848000'),(3489,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-03-24 06:55:47.843000'),(3490,'Thank you for the five-star rating, Shane! And thank you for choosing SignatureCare!','2018-11-29 00:48:42.442000'),(3491,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-03-24 06:59:51.002000'),(3492,'Thank you for your rating, Caroline!','2019-03-24 07:00:20.111000'),(3493,'Thank you for rating us 5 star!','2019-03-24 07:01:17.814000'),(3494,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-03-20 06:45:32.849000'),(3495,'We are so happy to hear you loved our team --- We will make sure to let them know. Thank you for choosing SignatureCare.','2019-03-19 07:07:22.083000'),(3496,'Thank you Aaron for five star rating!','2019-03-19 07:06:16.131000'),(3497,'We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-19 07:05:26.502000'),(3498,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-19 07:05:04.594000'),(3499,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-02-25 12:41:55.894000'),(3500,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-03-18 06:11:41.286000'),(3501,'Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-18 06:09:47.195000'),(3502,'Our team makes us proud everyday. Thank you for recommending SignatureCare!','2019-03-18 06:09:01.774000'),(3503,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-18 08:35:34.200000'),(3504,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-12 06:52:48.480000'),(3505,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-03-10 09:06:36.466000'),(3506,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out. ','2019-03-10 09:07:35.861000'),(3507,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-03-10 09:08:21.624000'),(3508,'We sincerely appreciate your continued trust. Our goal is to always provide the best care. Thank you for choosing SignatureCare again! ','2019-03-10 09:12:57.934000'),(3509,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that your friend is feeling better. Thank you for choosing SignatureCare!','2019-03-10 09:15:07.711000'),(3510,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-03-10 09:17:49.515000'),(3511,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-03-10 09:18:46.901000'),(3512,'Our doctors and nurses make us proud every day. Thank you for your review and your recommendation.','2019-03-10 09:19:53.850000'),(3513,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your continued trust in SignatureCare. ','2019-03-10 09:20:59.053000'),(3514,'Our team appreciates receiving feedback like this, as it help us continue to improve on our services. Thank you for letting us know how we are doing and for taking the time to rate us. And thank you for choosing SignatureCare!','2018-08-29 20:56:33.188000'),(3515,'Hi, Ashton! We hope the snacks were tasty. Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-10 09:05:41.891000'),(3516,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out. ','2019-03-10 08:47:15.557000'),(3517,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-10 08:45:36.530000'),(3518,'Thank you for the 5 star, Ashlee!','2019-02-26 12:33:34.426000'),(3519,'Thanks for the great rating, Marien!','2019-02-26 12:33:18.154000'),(3520,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-26 12:33:01.778000'),(3521,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-24 10:20:11.653000'),(3522,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We also have the newest and most sterilized emergency rooms in the state of Texas. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-25 12:46:07.674000'),(3523,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-25 12:42:15.332000'),(3524,'Thank you for the great rating, Cassidy!','2019-02-25 12:41:25.810000'),(3525,'Thank you for the 5 star, Natalia!','2019-02-24 10:00:11.890000'),(3526,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-24 10:01:01.450000'),(3527,'Thanks for leaving a great rating, Eric!','2019-02-24 10:00:27.731000'),(3528,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-02-24 10:03:51.583000'),(3529,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-24 10:04:38.327000'),(3530,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing SignatureCare for your emergency needs. Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along.','2019-02-24 10:15:55.833000'),(3531,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-24 10:16:16.390000'),(3532,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-24 10:18:21.584000'),(3533,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-02-24 10:19:13.935000'),(3534,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-24 10:19:49.997000'),(3535,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-02-24 10:20:49.394000'),(3536,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-02-24 10:21:16.128000'),(3537,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-24 10:21:31.637000'),(3538,'Thank you for the 5 star, Joseph!','2019-02-20 11:50:58.733000'),(3539,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-02-20 11:50:33.026000'),(3540,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-19 14:08:03.538000'),(3541,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-19 14:07:39.253000'),(3542,'Our promise to all our patients and \"friends\' & families\" is to treat like our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-02-19 14:06:06.267000'),(3543,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-19 14:02:59.406000'),(3544,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-02-19 14:02:21.397000'),(3545,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-02-19 14:00:40.143000'),(3546,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-19 13:59:27.333000'),(3547,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-17 12:33:18.704000'),(3548,'Our promise to all our patients and \'families & friends\' is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-02-14 13:25:04.569000'),(3549,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. We appreciate you choosing SignatureCare!','2019-02-14 13:20:05.476000'),(3550,'Your positive experience means a lot to us. Thank you for choosing SignatureCare!','2019-02-14 13:19:20.797000'),(3551,'Our facility is among the newest and most sterilized emergency rooms in the state of Texas. Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-02-14 13:17:55.896000'),(3552,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-14 13:14:35.644000'),(3553,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-14 13:13:17.610000'),(3554,'Thank you for the 5 star, Joshua!','2019-02-14 13:12:59.674000'),(3555,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-14 13:12:46.671000'),(3556,'Thank you so much for your continued trust and for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-14 13:04:02.158000'),(3557,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-13 12:50:12.381000'),(3558,'Thanks for the 5 star, Kaitlyn!','2019-02-13 12:49:04.561000'),(3559,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback. ','2019-02-13 12:48:40.056000'),(3560,'Thank you for the great rating, Norma!','2019-02-13 12:46:31.769000'),(3561,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable. Thank you so much for your nice review and great rating. ','2019-02-11 12:47:09.821000'),(3562,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-11 12:45:30.881000'),(3563,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-02-03 13:40:09.875000'),(3564,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-03 13:39:29.239000'),(3565,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-30 13:36:30.254000'),(3566,'Thanks for the great rating, Kyle!','2019-01-29 14:19:13.256000'),(3567,'Thank you so much for rating, Shelby. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-01-28 08:33:22.786000'),(3568,'Elise, we always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-01-09 11:25:37.901000'),(3569,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-28 08:36:47.078000'),(3570,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We wish good health for your daughter and you.','2019-01-28 08:39:14.833000'),(3571,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-28 08:39:52.409000'),(3572,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-28 08:40:18.979000'),(3573,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-28 08:40:42.134000'),(3574,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-01-28 08:41:23.070000'),(3575,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-01-28 08:41:58.925000'),(3576,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare with continued trust.','2019-01-28 08:44:20.827000'),(3577,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-28 08:44:52.907000'),(3578,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-28 08:45:09.249000'),(3579,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-01-23 14:41:00.817000'),(3580,'Thank you for a nice review. Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-23 14:40:30.980000'),(3581,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-23 14:36:55.809000'),(3582,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-23 14:36:03.236000'),(3583,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at tmoore@roundtmc.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-01-21 15:07:02.418000'),(3584,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-21 11:34:10.746000'),(3585,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope your friend is feeling better!','2019-01-20 11:59:47.004000'),(3586,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-16 07:40:42.723000'),(3587,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback. ','2019-01-15 11:06:56.230000'),(3588,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-14 10:12:44.288000'),(3589,'Thanks for the 5 star!','2019-01-14 10:13:03.135000'),(3590,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-13 12:33:35.674000'),(3591,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-13 12:35:27.202000'),(3592,'Thank you so much for taking the time to let us know how we are doing. We appreciate the feedback and hope you are feeling better. ','2018-12-29 17:42:02.008000'),(3593,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-08 14:24:29.706000'),(3594,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year when you need us. Thank you for choosing us!','2019-01-05 00:15:16.206000'),(3595,'Our goal is to provide the best care possible to all patients. We are very happy to know this was your experience with our emergency room. Thank you for choosing SignatureCare!','2019-01-04 03:49:33.458000'),(3596,'Our staff makes us proud every day with the way their care for our patients. Thank you for letting us know that they are doing a good job. ','2019-01-04 03:48:55.729000'),(3597,'We appreciate the feedback, Tyler. Thank you so much for choosing SignatureCare. ','2019-01-03 17:29:05.624000'),(3598,'Hi Ashley, thank you for the nice review. I see that you only gave us three stars, however, so I\'m hoping you will give us more insight into what we could have done better. We aim for 100% satisfaction at SignatureCare and are always looking for ways to improve our services. Thanks for the review!','2019-01-03 17:28:39.414000'),(3599,'Thank you so much for the five-star rating, Victor!','2019-01-03 17:28:51.471000'),(3600,'Thank you for your feedback. We value every patient and want 100% satisfaction for everyone who visits with us. We are sorry to hear about your billing frustrations, and would like the opportunity to review your file and and reach out to you. If you could please email our billing manager at tmoore@roundtmc.com with your full name, date of service and location of service, he will look over your file and be in touch. Thank you for the opportunity to make this right with you. ','2018-12-25 16:35:16.454000'),(3601,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2018-12-26 15:04:18.700000'),(3602,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback -- it helps us excel at our jobs. ','2018-12-25 16:35:46.414000'),(3603,'Thank you so much for placing your trust in SignatureCare Emergency Center. We appreciate the nice review!','2018-10-21 15:36:52.327000'),(3604,'Thank you for the nice feedback, and thank you for choosing SignatureCare!','2018-12-23 14:30:57.220000'),(3605,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-12-20 18:36:31.266000'),(3606,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2018-12-20 18:36:18.566000'),(3607,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2018-12-18 16:52:49.912000'),(3608,'Thank you for your feedback. We take it extremely seriously. We apologize you were unhappy with your experience and would love the chance to talk to you. Please email our business manager at info@ercare24.com with your full name, date of service and location of service so that we can review your file and go over it with our team. We appreciate the chance to make this right with you, and thank you for taking the time to let us know how we are doing.','2018-12-16 17:34:35.685000'),(3609,'Our doctors have great bedside manners -- or so we\'ve been told a few times! We take pride in our staff, and are pleased to hear that they took good care of you. Thank you for choosing SignatureCare. ','2017-08-07 18:46:55.925000'),(3610,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Thank you for your positive review.','2018-12-12 20:02:18.991000'),(3611,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2018-12-12 20:01:38.842000'),(3612,'At SignatureCare Emergency Center, we understand that emergencies happen, and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff aim to make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2018-12-12 20:01:20.804000'),(3613,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit us. Thanks for letting us know. ','2018-11-29 18:35:21.607000'),(3614,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words -- we will pass them along. ','2018-12-12 20:00:33.857000'),(3615,'We appreciate your kind review and the great rating. Thank you for choosing SignatureCare!','2018-12-12 19:59:54.003000'),(3616,'We appreciate the five stars! Thanks for the feedback and for choosing SignatureCare. ','2018-12-10 22:52:09.852000'),(3617,'Thank you so much for the five star rating, Trevor!','2018-12-10 22:51:43.793000'),(3618,'It is never fun when you get sick, but when you have an emergency, we are here to help! Thank you for your review, and we are glad to hear that you are feeling better. ','2018-12-09 16:09:59.116000'),(3619,'Thank you so much for letting us know that our team is doing a good job. Our community is important to us, so we love this feedback. Thank you for choosing SignatureCare!','2018-12-09 16:08:07.980000'),(3620,'Thank you so much for the nice rating, Emily. We hope you will let us know if there is anything we could have done to earn that fifth star, as we aim for 100% satisfaction!','2018-12-08 15:10:03.577000'),(3621,'Thank you so much for the five-star rating, Ashley!','2018-12-08 15:09:22.457000'),(3622,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, and we thank you for choosing us!','2018-12-08 14:43:35.316000'),(3623,'We are sorry you were not completely satisfied with your experience at SignatureCare. We would like to get more details about your visit so we can better understand the situation. Could you email our billing manager at tmoore@roundtmc.com with your full name (if you were the patient), date of service and location of service so that we can review your (or the patient\'s file) and get back to you to discuss. Thank you for bringing this to our attention. We take all reviews very seriously and we appreciate the chance to review your file and come to a resolution you will be happy with. ','2018-12-06 16:01:42.925000'),(3624,'We appreciate the five stars. Thank you for choosing SignatureCare!','2018-12-06 15:57:55.461000'),(3625,'Thank you so much for the five-star rating, Lance!','2018-12-06 15:57:40.127000'),(3626,'Thank you so much for the kind words -- we will pass them long to our team. Thank you for choosing SignatureCare and we hope your boyfriend is feeling better. ','2018-12-06 15:57:28.719000'),(3627,'Thank you so much for the five-star rating, Marin!','2018-12-03 17:06:12.744000'),(3628,'Our SignatureCare team makes us proud every day. Their compassion and dedication to helping others is what makes them special. Thank you so much for letting us know that they are doing a good job, and thank you for choosing us!','2018-11-30 16:29:40.711000'),(3629,'We appreciate the very nice feedback and great rating. Thank you so much for choosing SignatureCare. ','2018-08-31 16:03:44.944000'),(3630,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and hope you are feeling better. Thank you for choosing SignatureCare. ','2018-11-30 16:28:58.648000'),(3631,'We appreciate the five stars, Anna. Thanks for the feedback!','2018-11-29 00:48:58.540000'),(3632,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-11-29 00:51:44.086000'),(3633,'Thank you for taking the time to let us know how we are doing. We aim for 100% satisfaction each time you visit us. Thank you for choosing SignatureCare. ','2018-11-29 00:50:44.857000'),(3634,'Thank you so much for the five-star rating! We appreciate the feedback. ','2018-11-29 00:48:21.313000'),(3635,'We always appreciate positive feedback from our patients, as well as any recommendations! Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thanks for choosing us. ','2018-02-07 17:38:45.659000'),(3636,'Our community is important to us, so it\'s great to hear that our team is doing a good job. Thank you so much for the nice feedback, and we are here 365 days a year, 24 hours a day if you ever need us again. ','2018-11-27 15:36:08.195000'),(3637,'We love hearing that our team took good care of your boyfriend. Thank you for taking the time to let us know and to rate us. We appreciate the feedback!','2018-11-27 15:35:21.547000'),(3638,'Our team makes us proud every single day with the way they care for our community. Thank you so much for the nice feedback and great rating. And thank you for choosing SignatureCare. ','2018-11-27 15:34:00.912000'),(3639,'Thanks for the five-stars, Taylor. We appreciate the feedback and hope we provided you with the very best care. ','2018-11-27 15:33:28.644000'),(3640,'Thank you so much for the five-star rating, Sophia -- We appreciate the feedback!','2018-11-27 15:33:03.666000'),(3641,'We appreciate your kind words and your recommendation. Thank you so much for choosing SignatureCare, and we are here 24/7 if you ever need us again. ','2018-11-20 17:09:15.496000'),(3642,'We aim to get you in and out quickly so you can get back on the road to good health and back to your life! Thank you for choosing us for your emergency needs and for the nice review. ','2018-11-20 17:08:43.443000'),(3643,'At SignatureCare, we set goals on patient satisfaction. Thank you for letting us know that we are one step closer to meeting them. We appreciate your review and great rating!','2018-11-20 17:04:50.633000'),(3644,'Thank you for trusting us not once, but twice, with your emergency care. We appreciate your review and hope you are feeling better. ','2018-11-20 17:04:11.340000'),(3645,'Thank you so much for the five-star rating! We appreciate the feedback, and thank you for choosing SignatureCare.','2018-11-20 17:03:10.985000'),(3646,'We aim for 100% satisfaction at SignatureCare. Thank you so much for letting us know about your visit with us, and thank you for choosing us!','2018-11-17 22:25:56.992000'),(3647,'Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2018-11-16 15:22:25.935000'),(3648,'We appreciate you choosing SignatureCare time and again for your emergency needs. Our board-certified doctors and staff aim to make your visit with us pleasant and quick. Thanks for giving us the chance to care for you, and know that we are open 24/7 in case of any medical emergency. ','2018-03-06 16:21:26.157000'),(3649,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you so much for your feedback. ','2018-11-14 16:10:33.755000'),(3650,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. ','2018-11-14 16:09:48.668000'),(3651,'Your positive experience means a lot to our team at SignatureCare Emergency Center. We hope you will consider us next time you are experiencing a healthcare emergency. Thanks for the nice review. ','2018-11-14 16:09:27.776000'),(3652,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER, but we are glad to be here for you when you need us. Thank you for choosing us!','2018-11-14 16:08:49.506000'),(3653,'Thank you for your kind words about our team -- we will pass them along. Thank you so much for choosing SignatureCare and for the great rating. ','2018-11-13 16:37:18.139000'),(3654,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care for your kids, and we appreciate you choosing SignatureCare Emergency Center. ','2018-11-12 15:52:55.248000'),(3655,'While we hope not to see you anytime soon, please know we are here 24/7 in case you need us again. Thank you for trusting SignatureCare with your stitches, and we hope you are feeling better. ','2018-11-12 15:52:06.182000'),(3656,'Our medical staffs thank you for your wonderful feedback. We take all comments very seriously. Thank you so much for choosing SignatureCare!','2018-11-08 16:39:29.184000'),(3657,'Our staff makes us proud every day with the way they care for our community. Thank you for your kind words and for giving us the chance to care for you. ','2018-11-08 16:36:29.282000'),(3658,'Thank you so much for your feedback! Our goal is to get you in and out quickly and to provide the very best care. Thanks for choosing SignatureCare. ','2018-11-08 16:34:03.921000'),(3659,'When we receive feedback like this, it helps us know we’re doing something right in our community, and our community is very important to us. Thank you for taking the time to let us know how we are doing!','2018-11-07 17:12:47.162000'),(3660,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting SignatureCare with your emergency needs, and thank you for the nice review. ','2018-11-07 17:12:09.495000'),(3661,'We\'re glad our team was able to deliver an exceptional experience -- they make us proud every day. Thank you so much for choosing SignatureCare and we hope you are feeling better. ','2018-11-07 17:11:31.427000'),(3662,'Thank you so much for the five stars, Kyle!','2018-11-06 16:29:01.266000'),(3663,'Thank you for the nice review. SignatureCare is always open and available when you have an unexpected emergency. ','2018-11-06 16:28:51.430000'),(3664,'Thank you so much for the five-star rating! We appreciate the feedback. ','2018-11-06 16:28:18.759000'),(3665,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope your boyfriend is feeling better!','2018-11-06 16:28:05.962000'),(3666,'It is never fun when you get sick, but when you have an emergency, we are here to help! Thank you for your review and for choosing SignatureCare. ','2018-11-06 16:27:16.175000'),(3667,'We appreciate you taking the time to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers and we hope you are feeling better. ','2018-11-06 16:26:36.213000'),(3668,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. Thanks for the nice review!','2018-11-06 16:25:57.436000'),(3669,'Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-11-04 15:52:01.137000'),(3670,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to SignatureCare. Thank you for choosing us!','2018-11-04 15:51:14.414000'),(3671,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback and for giving us the chance to care for you. ','2018-11-03 13:30:40.156000'),(3672,'Thank you so much for the five-star rating!','2018-11-02 14:25:47.844000'),(3673,'We aim to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. Thank you for choosing SignatureCare. ','2018-11-02 14:26:25.453000'),(3674,'We appreciate and value your feedback. Thank you for your positive review and great rating!','2018-11-02 14:25:33.352000'),(3675,'Thank you for the nice review and your recommendation. We are pleased to hear that our staff took good care of you, and hope you will consider SignatureCare in the future for any medical emergencies. ','2018-11-02 14:23:59.999000'),(3676,'We appreciate you taking time from your busy schedule to write a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. We hope your friend is feeling better. ','2018-11-02 14:23:01.447000'),(3677,'Our staff appreciates comments like this. Thank you for letting us know that they are doing a good job! And thank you for choosing SignatureCare. ','2018-11-01 20:24:23.252000'),(3678,'Thank you for taking the time to let us know how we are doing. We appreciate everyone\'s comments and reviews, as it helps us get better at our jobs. Thanks so much for the great rating!','2018-11-01 20:23:48.809000'),(3679,'Thank you so much for the five-star rating, Nathan! We appreciate the feedback. ','2018-11-01 20:22:45.337000'),(3680,'Thank you so much for taking the time to let us know how we are doing. Our community is important to us so it\'s great to hear that we are doing a good job. Thank you so much for choosing SignatureCare. ','2018-10-31 14:09:03.805000'),(3681,'Visiting the ER is never fun (especially in the middle of pumpkin carving!), but we aim to make your visit with us as quick and as painless as possible. Thank you for trusting SignatureCare with your stitches, and we hope you are feeling better. ','2018-10-29 16:09:42.120000'),(3682,'At SignatureCare, we aim for 100% satisfaction each time you visit us. Thank you for letting us know that we are doing a good job, and we hope your friend is feeling better!','2018-10-29 16:05:50.241000'),(3683,'Thank you so much for taking the time to let us know how we are doing. We appreciate the feedback and the great rating!','2018-10-29 16:05:00.931000'),(3684,'We appreciate your feedback and are very pleased to hear that our team took such good care of your friend. Please consider us in the future if you have your own healthcare emergency -- we are here 24/7 in case you need us. ','2018-10-29 16:04:27.217000'),(3685,'Thank you so much for the five-star rating. We appreciate the feedback!','2018-10-27 17:05:03.852000'),(3686,'Thank you so much for the five-star rating! We appreciate it. ','2018-10-26 16:13:59.915000'),(3687,'Thank you so much for the great feedback. We appreciate your review and rating. Although we hope to not see you soon, we are here 24/7 when you do have an unexpected emergency. ','2018-10-26 16:14:45.105000'),(3688,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2018-10-26 16:14:14.940000'),(3689,'Our goal at SignatureCare is to get you in quickly, diagnose and treat you, and get you on your way so that you can get back on the road to good health. Thank you so much for giving us the chance to care for you and for the very nice review. ','2018-10-24 14:57:47.658000'),(3690,'Thank you for the five-star rating, Addalyn. We appreciate the feedback, and appreciate you choosing SignatureCare. ','2018-10-24 14:55:22.637000'),(3691,'Hi Caroline. We are sorry you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. We’d like to get more information about your experience -- can you please email our location manager at jmartin@ercare24.com with your daughter\'s full name, date of service and location of service? We will review your file and pass your concerns onto our leadership team and they will be addressed. We appreciate you taking the time to let us know how we are doing, as we take all comments and reviews very seriously. ','2018-10-23 15:32:56.443000'),(3692,'We appreciate you trusting us time and again with your emergency needs. Thank you so much for your nice review and the great rating. SignatureCare is open 24/7 in case you ever need us again. ','2018-10-23 15:47:21.163000'),(3693,'Our staff always appreciates receiving comments like this. It means we are doing a good job in our community. Thank you for trusting SignatureCare with your care. ','2018-10-23 15:46:34.726000'),(3694,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for your nice review and the great rating you gave us!','2018-10-21 15:35:49.568000'),(3695,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you have an emergency. ','2018-10-21 15:36:29.646000'),(3696,'We want all parents to know that we will treat their children as if they are our own. Thank you so much for trusting us with your daughter\'s care, and we hope she is feeling better. Thanks for the great review!','2018-10-19 16:12:46.291000'),(3697,'We aim for 100% satisfaction each time you visit a SignatureCare facility. We love hearing about the comfortable experience our patients and their loved ones had while visiting us. Thank you so much for the review and great rating. ','2018-10-19 16:11:56.584000'),(3698,'Our wait times are generally 10 minutes or less! Thank you for choosing us for your care and for letting us know how we are doing. We appreciate the feedback and recommendation!','2018-10-19 16:10:54.924000'),(3699,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the nice review. ','2018-10-18 15:20:02.528000'),(3700,'Thank you so much for the five-star rating!','2018-10-17 14:02:19.959000'),(3701,'Your positive experience means a lot to our team at SignatureCare Emergency Center. We hope you will consider us if ever you are experiencing a healthcare emergency. Thank you so much for your nice review. ','2018-10-16 14:56:20.265000'),(3702,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers and for the great rating. ','2018-06-10 17:16:35.302000'),(3703,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies never have a schedule. Thank you for your nice review, and we are always here whenever you need us.','2018-10-16 14:55:17.724000'),(3704,'Thank you for the five stars, Raquel! And thank you for choosing SignatureCare. ','2018-10-15 17:10:59.427000'),(3705,'We are very pleased to hear that your experience with us was a good one. We appreciate the great rating and feedback and hope your friend is feeling better. ','2018-10-15 17:12:43.058000'),(3706,'SignatureCare\'s wait times are usually 10 minutes or less! So it\'s great to hear that this was your experience with us. Thank you for the feedback and the great rating!','2018-10-15 17:12:04.963000'),(3707,'Thank you so much for the five-star rating! We appreciate the feedback. ','2018-10-15 17:10:35.761000'),(3708,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and the very good rating!','2018-10-13 14:47:58.793000'),(3709,'Thanks so much for letting us know that our team is doing a good job. We appreciate the feedback!','2018-10-13 14:47:36.466000'),(3710,'Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-10-11 14:43:52.561000'),(3711,'\nWe appreciate you taking time from your busy schedule to write us a positive review. Thank you again for choosing SignatureCare Emergency Centers. \n','2018-10-11 14:43:34.074000'),(3712,'We are so happy to hear your experience was as it should always be when you visit SignatureCare. Thank you for choosing us!','2018-10-11 14:42:55.439000'),(3713,'Our promise to all our patients and families is to treat you like you are our ONLY patient. Thank you for giving us the chance to care for you, and thank you for the very nice review. ','2018-10-11 14:42:28.947000'),(3714,'We appreciate you giving us your trust not once, but twice. We are so glad to hear that our team continues to take good care of you and that your experience with us was as it should be each time you visit SignatureCare. While we hope not to see you anytime soon, please know we are here 24/7 in case you need us again!','2018-10-05 16:24:31.100000'),(3715,'Thank you so much for the five-star rating, Lauren. We appreciate it!','2018-10-05 16:02:14.068000'),(3716,'Thank you so much for the feedback and great rating. We appreciate it!','2018-10-04 15:59:13.427000'),(3717,'We are very glad to hear about your positive experience with SignatureCare. Thank you so much for the feedback and great rating. ','2018-09-24 18:22:48.317000'),(3718,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2018-09-24 18:22:02.837000'),(3719,'Our team appreciates receiving comments like this -- we will pass your kind words along. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare!','2018-09-24 17:41:39.764000'),(3720,'Thank you so much for the five-star rating, Chris. And thank you for choosing SignatureCare!','2018-09-18 16:25:39.763000'),(3721,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for choosing us and for the nice review. ','2018-09-17 17:11:12.870000'),(3722,'We have some of the best doctors and nurses in town, and we are so proud of the way they take care of our community. Thank you for choosing SignatureCare and for the nice review. ','2018-09-17 17:03:40.690000'),(3723,'Our team continues to make us proud! Thank you for the nice review and great rating. ','2018-09-17 17:02:47.968000'),(3724,'We\'re glad our team was able to deliver an exceptional experience. Thank you for the nice review, and if you have any additional questions, don\'t hesitate to reach back out. ','2018-09-16 22:47:22.708000'),(3725,'We love feedback like this! Thank you for choosing us and for the nice review. ','2018-09-16 22:46:04.090000'),(3726,'Children are a top priority at SignatureCare, and we are so proud that you chose us for your child\'s care. Thank you for your review, and we hope your little one is feeling better!','2018-09-16 22:45:43.246000'),(3727,'We are very happy to hear about your positive experience with SignatureCare. Thank you for choosing us!','2018-09-16 22:42:41.106000'),(3728,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers and for the nice review. ','2018-09-16 16:19:08.288000'),(3729,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Thank you for your positive review, and we hope you feel better.','2018-09-16 16:18:08.705000'),(3730,'We pride ourselves in having some of the newest technology when it comes to medical equipment, which allows us to run tests quickly and begin treatment for your emergency. We are always here 365 days a year, 24 hours a day if your sister feels sick again. Thank you for your positive review, and we hope your sister feels better!','2018-09-16 16:17:43.318000'),(3731,'Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2018-09-13 15:08:02.126000'),(3732,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for giving us the chance to care for you and for the great review. ','2018-09-13 15:07:39.004000'),(3733,'Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2018-09-13 15:07:14.590000'),(3734,'We appreciate your positive feedback so much. Thank you for choosing SignatureCare and for letting us know how we are doing. ','2018-09-13 15:06:48.928000'),(3735,'The board-certified team at SignatureCare cares deeply about all of our patients, and we aim to make your visit with us as quick and as painless as possible. Thank you for choosing us for your care. ','2018-09-13 15:06:00.088000'),(3736,'Your positive feedback will help our SignatureCare team continue to do a great job for our patients, as we aim to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with us. ','2018-09-13 15:05:22.876000'),(3737,'We appreciate the feedback and your recommendation. We are pleased that our SignatureCare team was able to help your friend and also make you feel welcome as well. Thank you for the nice review, and we hope your friend is feeling better. ','2018-09-13 15:04:17.119000'),(3738,'Thank you so much for placing your trust in SignatureCare Emergency Center. We appreciate the feedback and great rating. ','2018-09-08 16:05:29.784000'),(3739,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback as it will help us continue to serve our community well. ','2018-09-07 16:33:10.150000'),(3740,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We appreciate your feedback and the great rating. ','2018-09-07 16:32:20.980000'),(3741,'Thank you for giving SignatureCare Emergency Centers your trust. Our trained staff is always ready to take care of your emergency needs. Thank you for the great review and we hope you are feeling better!','2018-09-07 16:30:28.317000'),(3742,'Thank you for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing us!','2018-09-07 16:26:40.269000'),(3743,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and for giving us the opportunity to care for you. ','2018-09-06 16:03:16.650000'),(3744,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2018-09-06 16:02:44.929000'),(3745,'When you do have an unexpected emergency, SignatureCare is here 24 hours a day, 365 days a year, and we will always put our patients first. We hope you feel better. Thank you for the nice review!','2018-09-05 16:22:31.760000'),(3746,'At SignatureCare, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make your stay with us quick and painless. Thank you for choosing SignatureCare and for the nice review. ','2018-09-05 16:21:39.304000'),(3747,'We pride ourselves in having some of the newest technology when it comes to medical equipment, which allows us to run tests quickly and begin treatment for any emergency. We are always here 365 days a year, 24 hours a day if your girlfriend feels bad again, but we really hope she is feeling better after her visit!','2018-09-05 16:20:42.431000'),(3748,'SignatureCare is here 24/7 for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. ','2018-09-03 14:54:46.533000'),(3749,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback -- it helps us excel at our jobs. ','2018-09-02 18:29:36.832000'),(3750,'We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. And thank you for the nice review. ','2018-09-02 18:29:09.352000'),(3751,'Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2018-09-02 18:27:31.150000'),(3752,'We are sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you need us. Thank you for choosing us and for the nice review!','2018-09-01 21:13:35.300000'),(3753,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the great rating. ','2018-09-01 21:12:47.255000'),(3754,'Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare and for the nice review. ','2018-09-01 21:11:35.611000'),(3755,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are here 24/7 if you ever need us again. ','2018-09-01 21:11:13.571000'),(3756,'We are glad to be here for you when you need us. Thank you for choosing our facility and for leaving us such a nice review. We hope you are feeling better!','2018-09-01 21:10:26.075000'),(3757,'UpDate- HI Ryan- It\'s my understanding you spoke with someone from our billing company and paid a small balance on the same day you wrote this review. I wanted to find out of there was something else that we needed to address with our billing company. Could you please reach out to me. jmartin@ercare24.com. I would appreciate it. We strive to make all patients happy and would like the change to speak with you about this. Thank You\n\nHi Ryan, I appreciate you taking the time to tell us about your recent visit with SignatureCare. We take all of our patient’s feedback very seriously. Please give us the opportunity to discuss this matter with you personally. I am positive we can come to a resolution. Can you please email jmartin@ercare24.com with your full name, date of service and location of service so that she can review your file and reach out to you? We value every patient and want 100% satisfaction for everyone who visits with us, so we appreciate the chance to make this right with you. Thank you again for your review. ','2018-09-01 22:11:14.549000'),(3758,'Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and for taking the time to review us!','2018-08-31 16:17:46.101000'),(3759,'At SignatureCare Emergency Center, we appreciate and value your feedback, because our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-08-30 16:19:13.162000'),(3760,'Thank you for giving us your trust. We appreciate the nice review and recommendation!','2018-08-29 13:12:48.958000'),(3761,'Thank you for the five-star rating, Kyle! ','2018-08-27 17:38:41.687000'),(3762,'Thank you for your fantastic review. We\'re glad our SignatureCare team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2018-08-26 17:20:40.509000'),(3763,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback!','2018-08-24 15:26:55.558000'),(3764,'It means a lot to hear that we’re doing a good job, because our community is important to us. Thank you for your nice review. ','2018-08-24 15:26:17.151000'),(3765,'Thank you so much for the positive feedback. Although we hope to not see you soon, we are here when you do have an unexpected emergency. Thanks for choosing SignatureCare. ','2018-08-23 15:24:58.488000'),(3766,'Well, we certainly aim to make you feel better faster at SignatureCare, so it sounds like this was your experience with us! Thank you so much for choosing us and for reviewing our services. ','2018-08-23 15:12:13.632000'),(3767,'Thank you for giving us another opportunity to care for you. We aim to make every visit as quick and painless as possible. Thank you for the nice review!','2018-08-23 14:59:05.766000'),(3768,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2018-08-23 14:58:27.962000'),(3769,'When you have an emergency, we are here 24/7 to help! Thank you for your review and for the great rating. ','2018-08-23 14:49:37.096000'),(3770,'We appreciate you taking time from your busy schedule to write us such a positive review. Thank you for choosing SignatureCare!','2018-08-23 14:49:00.921000'),(3771,'We know that the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you comfortable while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the great recommendation. ','2018-08-23 14:48:22.842000'),(3772,'We appreciate all feedback, as it helps us continue to improve. Thank you for choosing SignatureCare and for the nice review. ','2018-08-23 14:47:28.584000'),(3773,'We are so very happy to hear about your positive experience with SignatureCare. Thank you for taking the time to let us know and to give us such a great rating. ','2018-08-23 14:46:36.420000'),(3774,'We are very happy to learn your experience was pleasant, as we strive for 100% satisfaction each time you come to SignatureCare. Thank you for the nice review and great rating. ','2018-08-23 14:45:15.467000'),(3775,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was exactly as it should be when you visit SignatureCare. Thanks for letting us know!','2018-08-23 14:46:02.116000'),(3776,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the nice review. ','2018-08-22 12:57:22.133000'),(3777,'Our community is important to us. Thank you so much for the nice review and for taking the time to let us know how we are doing. ','2018-08-22 12:56:57.376000'),(3778,'We are very happy to hear about your positive experience with our emergency room. We hope your friend is feeling better!','2018-08-22 12:56:15.678000'),(3779,'It’s great to hear how well our staff treated and that your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2018-08-22 12:55:18.817000'),(3780,'Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-08-22 12:54:37.735000'),(3781,'We are always here 365 days a year, 24 hours a day if you have any medical emergency. Thank you for trusting SignatureCare with your care and for the nice review. ','2018-08-22 12:54:17.664000'),(3782,'Thank you so much for the five stars, Collier. We appreciate the feedback!','2018-08-21 15:17:28.871000'),(3783,'Their compassion and dedication to others is what makes our staff special. Thank you for letting us know that they are doing a good job. Thank you for choosing SignatureCare!','2018-08-21 15:17:11.587000'),(3784,'You are most welcome! We will be sure to let our team know about your nice review. Thank you for the feedback and the great rating!','2018-08-21 15:16:21.880000'),(3785,'Thank you for the five-star rating, Tabetha. We appreciate it!','2018-08-21 15:15:55.086000'),(3786,'Our team makes us proud every day! Thank you for letting us know that they are doing a good job. We appreciate the feedback. ','2018-08-20 15:22:31.481000'),(3787,'While we hope not to see you anytime soon, SignatureCare is here 24/7 in case you need us again. Thank you for giving us your trust. ','2018-08-16 16:26:15.500000'),(3788,'We are sorry to hear about your ankle, but are very glad to hear our team took such good care of you. Thank you for choosing SignatureCare and for taking the time to let us know how we are doing. ','2018-08-16 16:25:52.971000'),(3789,'Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you so much for the feedback and thank you for choosing SignatureCare!','2018-08-16 16:25:10.863000'),(3790,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2018-08-15 14:04:11.170000'),(3791,'We appreciate the nice review and the recommendation. Thank you so much for the feedback!','2018-08-15 14:03:51.113000'),(3792,'Thank you so much for placing your trust in SignatureCare Emergency Center. We appreciate the nice review and hope your friend is feeling better. ','2018-08-15 14:03:08.557000'),(3793,'We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2018-08-15 14:02:19.560000'),(3794,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are open and available 24/7 when you have an unexpected emergency. ','2018-08-13 13:35:08.491000'),(3795,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2018-08-13 13:34:20.531000'),(3796,'Thank you so much for taking the time to rate us -- we appreciate the five stars. ','2018-08-12 16:19:20.913000'),(3797,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for taking the time to let us know how we are doing. ','2018-08-12 16:19:04.788000'),(3798,'Thanks so much for the feedback! If there is anything we could have done to earn that fifth star, we hope you will let us know so we can improve. Thank you so much for choosing SignatureCare. ','2018-08-09 16:42:53.028000'),(3799,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, SignatureCare is here when you do have an unexpected emergency. ','2018-08-03 19:26:24.583000'),(3800,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thanks for the nice review!','2018-08-03 19:25:56.870000'),(3801,'Our goal at SignatureCare is to get you in and out quickly, and back on the road to good health. We hope that you are feeling better after your visit with us, and we appreciate the wonderful feedback and great rating. ','2018-07-30 00:29:42.811000'),(3802,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved the SignatureCare staff. We will make sure to let them know. Thank you for choosing us!','2018-07-27 14:39:41.371000'),(3803,'We know you have a choice in emergency care, and we are very proud that you chose SignatureCare Emergency Center. Our doctors and medical staff thank you for your wonderful feedback, and we will continue to provide excellent care to our patients and families. ','2018-07-26 14:44:56.513000'),(3804,'We appreciate nice feedback like this, as it will help us continue to do a good job in our community. Thank you for choosing SignatureCare and for the great rating. ','2018-07-20 17:01:18.580000'),(3805,'At SignatureCare Emergency Center, our number one goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2018-07-19 15:16:37.647000'),(3806,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we hope you are feeling better! Thank you for choosing SignatureCare. ','2018-07-12 14:58:50.669000'),(3807,'Thank you for taking the time to rate and review us. We appreciate the feedback, and appreciate you giving SignatureCare the chance to care for you. ','2018-07-10 17:06:24.015000'),(3808,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit SignatureCare. Thank you for the nice review. ','2018-07-08 17:44:29.989000'),(3809,'An emergency with your child can be a scary experience, but at SignatureCare, we understand a parent\'s anxiety and will do our best to make your visit as comfortable and as quick as possible. We are sorry to hear about your bad experience with another facility, but are so pleased that you gave us the chance to prove to you that we take all emergencies very seriously, and we hope that we provided you with the very best of care. We appreciate the great review and hope that your son is feeling better. ','2018-07-03 14:43:00.870000'),(3810,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2018-06-28 12:16:14.028000'),(3811,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers and for letting us know how we are doing. ','2018-06-21 18:48:58.519000'),(3812,'Our dedicated staff makes us proud every day! Thank you for giving us the chance to care for you, and we hope you are feeling better. ','2018-06-21 18:47:40.514000'),(3813,'Thank you for choosing SignatureCare for your emergency needs. We appreciate the great feedback. ','2018-06-13 17:19:41.238000'),(3814,'We appreciate and value your feedback. Thank you so much for the great rating and review. And thank you for choosing SignatureCare. ','2018-06-12 16:34:25.342000'),(3815,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you visit our facility. Thanks for the great review!','2018-06-12 16:34:00.424000'),(3816,'Thank you for letting us care for you during your time of need. We appreciate your review and the great rating. Thank you for choosing SignatureCare!','2018-06-11 15:44:44.054000'),(3817,'We welcome your comments and reviews, and especially love hearing about the comfortable experience our patients had. Thank you for taking the time out of your day to let us know how we are doing at SignatureCare. We hope your daughter is feeling better!','2018-06-11 15:43:30.663000'),(3818,'Thank you for the five-star rating!','2018-06-09 15:54:08.764000'),(3819,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback!','2018-06-07 17:33:01.599000'),(3820,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback and for the great rating. ','2018-06-05 19:04:30.822000'),(3821,'Thank you for the five-star rating! We appreciate it.','2018-06-05 19:04:05.170000'),(3822,'Thank you for the five-star rating, Emily. We appreciate and value your feedback. ','2018-06-04 16:33:23.872000'),(3823,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2018-06-02 15:09:02.473000'),(3824,'We appreciate and value your feedback. At SignatureCare Emergency Center, our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-05-27 15:08:18.408000'),(3826,'Their compassion and dedication for helping others Is why we love our team at SignatureCare. Thank you for giving us the chance to take care of you, and for the nice review.','2018-05-13 16:24:33.426000'),(3827,'We aim to treat all children as if they are our own. We are pleased to hear that our team took good care of your son. Thank you for trusting us with his care, and we hope he is feeling better. ','2018-05-10 15:36:15.125000'),(3828,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we appreciate the chance to care for you. ','2018-05-05 16:05:29.674000'),(3829,'Thank you for your kind words, Mia! We appreciate feedback like this from our patients, and we are glad to hear that our team has treated you well. We will be sure to pass along your compliments to our staff. Thanks for choosing SignatureCare!','2018-04-25 16:51:50.738000'),(3830,'We are very sorry to hear about your billing frustrations. This type of issue is not a normal occurrence at SignatureCare. If you will send us an email, we’d appreciate the chance to make it right. Please email Tray in our billing department with the patient\'s full name, location of service and date of service, as well as your contact information, we will be in touch with you shortly. Thank you again for your review. ','2018-04-25 02:42:40.937000'),(3831,'I appreciate you taking the time to tell us about your recent visit with SignatureCare. We take all of our patient’s feedback very seriously. Please give us the opportunity to discuss this matter with you personally. I am positive we can come to a resolution. If you would please email our billing department at tmoore@roundtmc.com with the patient\'s full name, date of service and location of service, as well as your contact information, we will get back with you as soon as we can to help resolve this situation. Thank you for your patience and for giving us the chance to review your case. ','2018-04-25 02:38:01.398000'),(3832,'Thank you for the five-star rating, Sarah! We appreciate it.','2018-04-23 16:11:27.918000'),(3833,'We appreciate the feedback, Veronica. Thanks for the five stars!','2018-04-21 14:58:56.522000'),(3834,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us. ','2018-04-20 15:32:59.394000'),(3835,'We will pass along your kind words to our team. Thank you for choosing SignatureCare. ','2018-04-18 17:07:25.326000'),(3836,'We appreciate the five-star rating, Taylor. Thanks for the feedback!','2018-04-17 13:09:48.861000'),(3837,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and for the nice review. ','2018-04-17 13:10:59.194000'),(3838,'While we hope not to see you anytime soon, SignatureCare is open 24/7 in case you have any medical emergency. Thank you for putting your care into our hands, and thank you for the very nice review. ','2018-04-15 18:25:04.802000'),(3839,'Thank you so much for taking the time to review our services. We appreciate your feedback!','2018-04-11 14:22:04.494000'),(3840,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2018-04-11 14:21:45.861000'),(3841,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don\'t hesitate to give our team a call. ','2018-04-11 14:21:22.211000'),(3842,'Thank you for the five-star rating, Taylar. We appreciate it so much.','2017-02-09 02:53:20.947000'),(3843,'We have some of the best nurses in Texas, and we are so glad to hear that Gabe took good care of you. Thank you for choosing SignatureCare and for the great rating!','2018-04-04 15:50:13.089000'),(3844,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-04-03 14:01:30.105000'),(3845,'We are very sorry to learn of your experience and take this very seriously. I would like to have the manager reach out to you and get more details on your experience. Please send an email to info@ercare24.com with your contact information so that we may reach out. Thank You. ','2018-03-23 18:29:30.413000'),(3846,'Our staff appreciates comments like this, as it reminds us that we are doing a good job in our community. Thank you so much for the feedback and great rating. And thank you for choosing SignatureCare. ','2018-03-22 15:43:59.901000'),(3847,'Thank you for the great rating, Juan! And thank you for choosing SignatureCare. ','2018-03-22 15:43:28.584000'),(3848,'We appreciate the five-star rating, Melanie!','2018-03-21 16:29:30.100000'),(3849,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for taking the time to review us. ','2018-03-21 16:30:32.554000'),(3850,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. Get Better!','2018-03-17 15:16:58.484000'),(3851,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for choosing us and giving us the chance to care for you. ','2018-03-11 17:17:37.460000'),(3852,'Thank you for the five-star rating! We appreciate the feedback. ','2018-03-07 18:26:52.664000'),(3853,'We appreciate and value your feedback. Thank you so much for taking the time to review us, and for choosing SignatureCare. ','2018-03-05 16:49:32.260000'),(3854,'We will pass along your kind words to our team. Thank you for the nice review and for choosing SignatureCare!','2018-02-28 18:01:45.791000'),(3855,'No one likes the ER, and we know this at SignatureCare. Which is why we do our best to make sure your visit with us is as pleasant and painless as possible. Thank you for trusting us with your care and for the very nice review. \n','2018-02-28 18:01:16.328000'),(3856,'Thank you for the five-star rating, Sarah. We appreciate the feedback. ','2018-02-21 22:13:21.166000'),(3857,'We appreciate your review and recommendation. Thanks so much for choosing SignatureCare. ','2018-02-19 22:04:16.865000'),(3858,'We\'re glad our team was able to deliver an exceptional experience. Thank you for your review and the great rating. ','2018-02-19 22:03:51.370000'),(3859,'We appreciate the five stars, Terri!','2018-02-18 23:22:56.919000'),(3860,'Thank you for the five-star rating!','2018-02-18 23:22:45.920000'),(3861,'Thank you so much for the five-star rating, Hillary!','2018-02-15 22:46:11.862000'),(3862,'Thank you for the five stars, Gerald, and for choosing SignatureCare. ','2018-02-12 20:40:31.158000'),(3863,'SignatureCare wants all of our patients to feel like VIPs. It\'s great to hear that this was your experience with our facility. Thank you for trusting us with your care and for the great review. ','2018-02-08 16:45:41.883000'),(3864,'Our staff cares about our patients like they are family. We appreciate you letting us know that they are doing a good job -- we will pass along your kind words. Thanks for choosing SignatureCare. ','2018-02-08 16:44:59.221000'),(3865,'At SignatureCare, we know your time is valuable, so we appreciate you taking time out of your busy day to review our services. Thanks so much for the nice review and five-star rating!','2018-02-06 16:38:38.491000'),(3866,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER, but we are glad to be here for you when you need us. Thanks for choosing our facility.','2018-02-05 17:30:09.428000'),(3867,'Thanks so much for the five-star rating, Nicole!','2018-02-04 14:34:21.700000'),(3868,'We appreciate the five-star rating! Thanks for the feedback. ','2018-02-04 14:38:10.133000'),(3869,'Thank you for sharing your experience. We apologize it was not perfect. Our team takes every review extremely seriously and we will speak with our staff to improve communication and care. Please feel free to reach out to us at any time if you wish to discuss your visit or have additional concerns. ','2018-02-04 14:37:47.462000'),(3870,'We are very sorry to hear about your billing frustrations. This type of issue is not a normal occurrence at SignatureCare. If you will please email our billing department, we would appreciate the chance to review your case and get back with you on a resolution. Please email Tray at tmoore@roundtmc.com with your full name, date of service and location of service, and Tray will get back with you as soon as possible. Thank you for your feedback --- we take it very seriously. ','2018-01-31 19:29:37.960000'),(3871,'We are happy to be your neighborhood emergency center and are open 24/7 in case you need us again. Thank you for putting your trust in SignatureCare, and we hope you are feeling better. ','2018-01-29 15:55:29.276000'),(3872,'Thanks so much for the five stars, Mehgan!','2018-01-27 17:08:22.741000'),(3873,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2018-01-25 13:01:47.193000'),(3874,'We have some of the best nurses in Texas, and we are so glad to hear that they took such good care of you. Thank you for choosing SignatureCare. ','2018-01-22 15:24:22.689000'),(3875,'Thank you for giving us the opportunity to take care of you. We appreciate the great feedback and hope you are feeling better. ','2018-01-21 15:59:55.830000'),(3876,'Our staff appreciates receiving comments like this. Thanks so much for your feedback and for the great rating. ','2018-01-21 15:59:14.135000'),(3877,'Our staff appreciates your feedback. It will help us continue to do a good job in our community. Thanks for choosing SignatureCare. ','2018-01-20 17:24:33.408000'),(3878,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback, and thank you for choosing SignatureCare. ','2018-01-18 16:58:30.596000'),(3879,'We appreciate your kind words! Thank you for choosing SignatureCare. ','2018-01-18 16:58:07.242000'),(3880,'SignatureCare is here 24/7 to meet all of our emergency needs. Thank you for choosing our facility and for the great rating. ','2018-01-17 16:50:45.833000'),(3881,'We appreciate the five stars! Thanks so much for the feedback. ','2018-01-17 16:50:11.880000'),(3882,'Thank you so much for the five-star rating, Sarah!\n','2018-01-17 16:49:55.079000'),(3883,'While we hope not to see you anytime soon, SignatureCare is here 24/7 in case you need us again. Thank you for the nice review. ','2018-01-17 16:49:40.932000'),(3884,'Thank you for taking time out of your day to let us know how we are doing at SignatureCare. Our community is important to us, so we appreciate your feedback. ','2018-01-17 16:48:58.691000'),(3885,'Our community is important to us, so it\'s great to hear that we are doing a good job. Thank you for letting us know how we are doing and for the five-star rating!\n','2018-01-15 14:41:30.240000'),(3886,'What a nice thing to say! Thank you for choosing us, and for putting your trust in our SignatureCare team. We hope you are feeling better. ','2018-01-08 20:11:17.387000'),(3887,'Thank you for letting SignatureCare take care of you. We appreciate your trust and thank you for the nice review. ','2018-01-06 18:14:36.198000'),(3888,'While we hope not to see you anytime soon, please know that we are here 24/7 in case you need us. Thank you for trusting SingatureCare with your emergency needs and for taking the time to review our services. ','2018-01-05 17:24:59.504000'),(3889,'It is our pleasure to help you feel better. Thank you for trusting SignatureCare with your care. ','2017-12-30 15:55:56.771000'),(3890,'Thanks so much for the great rating and feedback. We appreciate it!','2017-12-26 19:08:10.765000'),(3891,'Great to hear that your holiday experience with us was a good one. Thank you for choosing SignatureCare. ','2017-12-25 16:51:20.109000'),(3892,'Thank you for taking time out of your day to let us know how we are doing. Your positive comments mean a lot to our staff. ','2017-12-24 18:22:30.006000'),(3893,'Thank you for the five-star rating, Elizabeth. We appreciate the feedback. ','2017-12-24 18:22:05.153000'),(3894,'Our community is important to us, so it\'s great to hear that we are doing a good job for you. Thank you for taking the time to review us and for choosing SignatureCare. ','2017-12-21 18:06:31.427000'),(3896,'Thank you for taking the time to let us know how we are doing. Your positive experience means a lot to our team at SignatureCare. ','2017-12-11 16:44:02.523000'),(3897,'Thank you so much for the positive feedback. While we hope to not see you soon, SignatureCare is here when you do have an unexpected emergency. ','2017-12-08 20:25:34.258000'),(3898,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2017-12-07 20:44:08.460000'),(3899,'Our registration staff is one of the most qualified in Houston, but their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and thanks for giving us the chance to take care of you. ','2017-12-07 20:27:13.478000'),(3900,'Thanks for your feedback. Our community is important to us, so it\'s great to hear that we are doing a good job. Thanks for choosing SignatureCare. ','2017-12-07 20:25:10.325000'),(3901,'Our staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2017-08-18 21:45:05.221000'),(3902,'While we hope not to see you again soon, we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for taking the time to review us. We appreciate the feedback.','2017-11-30 19:42:50.531000'),(3903,'Melinda, thank you so much for letting us know about your son\'s visit. We take all complaints very seriously. We would like to look into this further so we can make sure this doesn\'t happen again. Can you email your son\'s full name, the date of his visit and the SignatureCare location address to info@ercare24.com so we can look review your case? We never want anyone to have an unsatisfactory experience with us and would love the opportunity to make it right. Thank you for your feedback. ','2017-11-29 17:48:56.078000'),(3904,'We appreciate and value your feedback. Thank you for your positive review, and we hope you feel better.','2017-11-26 16:58:36.254000'),(3905,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review and for choosing our facility.','2017-11-24 00:11:08.474000'),(3906,'Thank you so much for the five-star rating! ','2017-11-15 17:03:09.409000'),(3907,'Thank you so much for the five star rating. We appreciate it!','2017-11-14 19:12:41.107000'),(3908,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thanks so much for the nice review. ','2017-11-14 19:12:25.641000'),(3909,'Thank you so much for your kind words. Your feedback will help our SignatureCare team continue to do a great job for our community. Thank you for choosing us. ','2017-11-06 17:56:41.190000'),(3910,'Thank you for choosing SignatureCare and for any future recommendations you might send our way. We appreciate the feedback and the nice review. ','2017-11-02 20:56:29.368000'),(3911,'Thank you for trusting SignatureCare with your recent emergency, and for letting us know that our team is doing a good job. We appreciate the feedback and the great rating. ','2017-11-01 23:05:04.010000'),(3912,'Our staff makes us proud every day! Thank you for letting us know how we are doing. ','2017-11-01 23:04:33.986000'),(3913,' SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2017-10-31 21:03:42.541000'),(3914,'Our SignatureCare staff makes us proud every day with the way they take care of our patients. Thank you so much for choosing SignatureCare and for the very nice review. ','2017-10-24 15:17:57.472000'),(3915,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2017-10-23 17:59:14.942000'),(3916,'SignatureCare is open 24/7 for all your emergency needs. Thank you for trusting us, and for your recommendation!','2017-10-23 17:55:01.820000'),(3917,'Thanks Eric for the 5 star rating. We are so glad to hear you had a good experience with our Emergency rooms. Feel Better!','2017-10-19 15:09:37.824000'),(3918,'Hi Sean- Thank you for taking the time to rate us. We hope you are feeling better and remember we are always here when you need us- with Board Certified Physicians always available. ','2017-10-19 15:10:46.767000'),(3919,'That\'s exactly what we strive for and we are so happy that you experienced Fast, Friendly and Helpful when you visited us. Although we do not hope to see you again soon- if you do need medical care we are here 24 hours. ','2017-10-19 15:12:07.176000'),(3920,'The board-certified team at SignatureCare cares deeply about all of our patients. Thank you for entrusting our team with your care. If you need peace of mind in the future, don’t hesitate to contact us. ','2017-10-16 15:23:24.314000'),(3921,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. Thank you for supporting us, and putting your trust in SignatureCare. ','2017-10-16 15:22:00.247000'),(3922,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2017-10-16 15:21:00.657000'),(3923,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2017-10-16 15:19:32.915000'),(3924,'SignatureCare is, indeed, open 24/7 for all of your emergency needs. Thank you for trusting our team to take care of you, and for the nice review. ','2017-10-12 14:04:35.723000'),(3925,'Thanks so much for the five stars, Taylor. We appreciate it!','2017-10-12 14:03:47.128000'),(3926,'Thank you so much for the review and great rating. We appreciate the feedback!','2017-10-08 14:30:32.021000'),(3927,'Thank you for taking time out of your day to leave us such a nice review. We appreciate the feedback. Thanks for choosing SignatureCare!','2017-10-02 13:32:51.980000'),(3928,'When we receive feedback like this, it helps us know we’re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2017-09-18 14:17:38.182000'),(3929,'Our goal at SignatureCare is to get you in and out quickly so you can get back to your healthy life. Thanks for choosing our facility and we hope you are feeling better. ','2017-09-29 14:08:45.633000'),(3930,'Thank you so much for your kind words, and for letting us take care of your son. We appreciate your trust, and we will always be here, 24/7 in case of any emergency with you or your family. Thank you for choosing SignatureCare. ','2017-09-21 16:23:31.873000'),(3931,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback. ','2017-09-17 14:17:23.157000'),(3932,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2017-09-17 14:16:53.600000'),(3933,'We appreciate the five star rating, Brandon. Thanks for the feedback!','2017-09-15 16:22:21.933000'),(3934,'SignatureCare is open 24/7 for your medical emergency, and we appreciate you letting us help you feel better. Thanks for the nice review!','2017-09-14 17:08:11.239000'),(3935,'Thank you for letting SignatureCare take care of you during your medical emergency. We are pleased to hear that our staff took good care of you, and we appreciate the five-star rating. ','2017-09-12 04:03:18.178000'),(3936,'Thank you so much for the five-star rating. We appreciate it!','2017-09-12 04:01:59.872000'),(3937,'SignatureCare\'s team aims to get you in and out quickly, so you can get back to your healthy life. Thank you for choosing our facility and for the great review and rating.','2017-09-11 01:04:57.436000'),(3938,'The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2017-09-10 13:37:02.564000'),(3939,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback and for letting us take care of you.','2017-09-10 13:36:43.505000'),(3940,'Thank you so much for your feedback! Our goal is to always provide the best care. Thanks for choosing SignatureCare!','2017-09-10 13:36:21.872000'),(3941,'We have some of the best nurses in Texas. We are so very happy to hear you loved your nurses and our staff. We will make sure to let them know. Thank you for choosing SignatureCare. ','2017-09-09 15:41:34.625000'),(3942,'We appreciate receiving feedback like this. It helps our team continue to do a great job. Thank you so much for trusting SignatureCare with your medical needs.','2017-09-06 16:12:36.329000'),(3943,'Thank you so much for the four star review, Kevin. We want all of our customers to be 100% satisfied, so we hope you will let us know if there is anything we could have done to have earned that fifth star. Thank you so much for the feedback!','2017-09-06 16:11:14.513000'),(3944,'We love hearing about the pleasant experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback and five-star rating.','2017-09-04 16:58:46.593000'),(3945,'Our staff appreciates receiving comments like this. Thank you for the feedback, and for choosing SignatureCare. ','2017-08-30 14:29:47.140000'),(3946,'Thank you so much for the five-star rating. We appreciate the feedback!','2017-08-30 14:28:36.500000'),(3947,'Always great to hear that our staff took good care of you! Thank you for the nice review and great rating.','2017-08-29 19:15:54.353000'),(3948,'Thank you for the fantastic review. While we hope not to see you anytime soon, we want you to know that SignatureCare is always open and available when you have an unexpected emergency. ','2017-08-24 15:21:51.044000'),(3949,'We appreciate the five-star rating, Shannon!','2017-08-24 15:19:40.105000'),(3950,'It\'s great to hear that our staff was pleasant and that your experience was exactly as it should be every time you visit SignatureCare. We appreciate the nice review and five-star rating. ','2017-08-23 01:36:09.590000'),(3951,'We are here for you whenever the medical emergency need arises. Thank you for choosing SignatureCare Emergency Center. ','2017-08-21 18:53:32.995000'),(3952,'We are pleased to hear that our staff took good care of you. Thank you for letting us know, and we will pass along your kind words. ','2017-08-21 18:52:59.879000'),(3953,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2017-08-20 02:32:43.989000'),(3954,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure your needs are addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. ','2017-08-20 02:32:21.166000'),(3955,'No one likes the ER, but we are glad to be here for you when you need us. Thank you for the nice review. \n\n','2017-08-20 02:29:36.762000'),(3956,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-08-20 02:29:05.449000'),(3957,'We appreciate your comments and reviews. Thank you for letting us take care of you. ','2017-08-20 02:28:43.031000'),(3958,'We always appreciate positive feedback from our patients. Thank you for choosing SignatureCare, and we hope you are feeling better. ','2017-08-20 02:27:39.702000'),(3959,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for choosing our facility.','2017-08-20 02:26:59.651000'),(3960,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the nice review. ','2017-08-18 21:46:07.623000'),(3961,'We always appreciate positive feedback from our patients. The SignatureCare staff is always here and willing to meet all your healthcare needs 24/7. ','2017-08-18 21:45:35.676000'),(3962,'We appreciate the feedback. Thank you for the five-star rating!','2017-08-18 21:44:11.382000'),(3963,'Thank you so much for the feedback!','2017-08-18 21:43:46.860000'),(3964,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. We hope your fiance is feeling better!','2017-08-17 19:00:19.425000'),(3965,'Our staff appreciates feedback like this. Thank you for choosing SignatureCare. ','2017-08-16 01:18:14.596000'),(3966,'Thank you so much for the five-star rating!','2017-08-16 01:17:50.194000'),(3967,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-08-12 01:41:47.414000'),(3968,'We want everyone who comes in our doors at SignatureCare to feel like a VIP. It\'s great to hear that this was your experience. Thanks for letting us know and for trusting us with your medical needs. ','2017-08-05 13:44:43.033000'),(3969,'Our SignatureCare team makes us proud every day with the way they care about our patients. Thank you for letting us know they are doing a good job, and we hope you are feeling better.','2017-07-29 14:05:37.838000'),(3970,'We appreciate the feedback and the five-star rating. Thank you for choosing SignatureCare.','2017-07-28 19:08:38.731000'),(3971,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2017-07-09 23:57:26.157000'),(3972,'Thank you so much for the great rating, Emily. We appreciate it.','2017-07-01 15:33:43.715000'),(3973,'Thank you so much for your positive feedback -- we appreciate it. ','2017-06-22 16:44:47.222000'),(3974,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. We are glad to be here for you when you need us. ','2017-06-22 16:44:16.723000'),(3975,'SignatureCare Emergency Center knows that the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. It\'s great to hear that our team did just that, and we appreciate you letting us take care of you. ','2017-06-20 16:53:52.977000'),(3976,'We appreciate the five-star rating. Thank you so much!\n','2017-06-11 18:25:11.953000'),(3977,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. ','2017-06-10 15:03:12.858000'),(3978,'Thank you for letting us know about your experience at SignatureCare. We aim for 100% satisfaction, and are glad to hear that your experience was exactly as it should be when you visit one of our facilities. ','2017-06-02 19:54:26.048000'),(3979,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2017-05-26 19:03:30.261000'),(3980,'At SignatureCare Emergency Center, we understand that emergencies happen and that the ER is not anyone\'s favorite place, but we appreciate you giving us the chance to take care of you. Thanks for the nice review.','2017-05-24 15:06:24.750000'),(3981,'When we receive feedback like this, it helps us know we’re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2017-05-21 22:25:49.495000'),(3982,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2017-05-21 22:26:55.884000'),(3983,'Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better, and thank you for choosing SingatureCare.','2017-05-21 22:24:57.887000'),(3984,'We are so glad to hear that our staff was pleasant and took good care of you. Thank you for letting us know!','2017-05-20 16:34:06.912000'),(3985,'What a nice review. We know that visiting the ER can be scary, but we are glad to hear our staff put you at ease and provided you with the best care possible. Thank you so much for sharing your experience, and for choosing SignatureCare to take care of you.','2017-05-20 16:33:38.329000'),(3986,'Thank you for letting SignatureCare help you and help you feel better! Visiting the ER can be a stressful experience, but we are glad to hear that we put you at ease and provided you with the best care possible. ','2017-05-19 15:16:26.916000'),(3987,'SignatureCare Emergency Centers are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2017-05-17 00:23:51.409000'),(3988,'We have some of the best nurses in Texas. SignatureCare Emergency Center takes pride in our staff, and our nurses care so much about our patients. Thank you for letting us know that we are doing a good job.','2017-05-14 14:02:04.228000'),(3989,'Thank you for the five-star rating!','2017-05-14 13:58:36.926000'),(3990,'Our SignatureCare team makes us proud every day, as they always care so much about our patients. Thank you for letting us know that they are doing a good job. ','2017-05-10 23:21:29.133000'),(3991,'Our community is important to us, and we are glad to hear that our SignatureCare team took good care of you. Thank you for choosing us, and for letting us help you feel better. ','2017-05-08 18:00:53.921000'),(3992,'Our goal is to get you in to see our doctors quickly -- we usually only have a 10 minute wait or less. We are glad to hear that was your experience with our facility. Thank you for choosing SignatureCare!','2017-05-08 18:00:17.793000'),(3993,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2017-05-04 13:42:44.002000'),(3994,'Thank you so much for your feedback. While we are disappointed it\'s not a five-star review, we always take our patients\' comments seriously, and we will pass your note along to our staff. Thank you for letting us take care of you, and if you ever need us again, we hope you\'ll give us a chance to earn that last star!','2017-05-03 15:14:57.216000'),(3995,'What a nice review! It\'s great to hear our doctors and nurses took good care of you at SignatureCare. We appreciate your feedback and the really great rating. ','2017-05-02 14:41:28.457000'),(3996,'Thank you for letting us help you feel better, and for any future recommendations. We appreciate it.','2017-04-29 18:22:03.599000'),(3997,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review.','2017-04-27 14:34:23.504000'),(3998,'We always try to provide the best care possible to all patients, no matter their emergency. We are very happy to know this was your experience with our emergency room. ','2017-04-26 02:40:07.177000'),(3999,'We always appreciate positive feedback from our patients. Thank you for the nice words and great rating.','2017-04-26 02:39:29.210000'),(4000,'Thank you for the five-star rating, Katelyn.','2017-04-25 01:14:09.541000'),(4001,'Having to visit the ER can be a scary experience, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2017-04-25 01:13:56.465000'),(4002,'Our team at SignatureCare makes our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2017-04-23 17:09:22.602000'),(4003,'At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2017-04-23 17:07:52.681000'),(4004,'We appreciate the five-star rating.','2017-04-23 17:06:38.032000'),(4005,'Thank you for letting us help you feel better and for the nice review. ','2017-04-21 18:12:30.156000'),(4006,'Our staff at SignatureCare makes us proud every day. We are glad to hear that they took such good care of you. Thank you so much for the nice review. ','2017-04-20 15:12:19.188000'),(4007,'We are so glad to hear that our team at SignatureCare took good care of you. Thank you for the nice review. ','2017-04-18 09:41:25.562000'),(4008,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us.','2017-04-16 19:01:30.079000'),(4009,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2017-04-16 19:01:08.077000'),(4010,'We have some of the best nurses in Texas. SignatureCare Emergency Center takes pride in our staff, and our nurses care so much about our patients. We are so very happy to hear you loved Jacob. We will make sure to let him know. ','2017-04-14 16:22:58.034000'),(4011,'We appreciate the five-star rating!','2017-04-12 01:04:16.688000'),(4012,'Thank you so much for the five-star rating. We appreciate it!','2017-04-10 14:58:01.010000'),(4013,'Our staff appreciates receiving comments like this. Thank you so much for the feedback and great rating!','2017-04-07 16:39:54.253000'),(4014,'We appreciate the five-star rating!','2017-04-04 01:38:30.228000'),(4015,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-03-31 21:49:54.397000'),(4016,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. \n','2017-03-31 21:49:29.825000'),(4017,'We appreciate comments and reviews like this. Thank you for letting us know how we are doing.','2017-03-30 01:45:12.144000'),(4018,'SignatureCare appreciates the feedback. Thank you so much!\n','2017-03-30 01:44:49.744000'),(4019,'Thank you for taking time out of your day to let us know how we are doing. We appreciate it. ','2017-03-30 01:44:28.863000'),(4020,'SignatureCare aims for 100% satisfaction. Thank you for letting us know how we are doing and for leaving us a great rating.','2017-03-30 01:20:00.701000'),(4021,'That\'s our mantra -- quick and friendly medical care! We are glad that was your experience with SignatureCare and hope you are feeling better. ','2017-03-29 02:20:41.017000'),(4022,'We love hearing that our staff was pleasant and that you had a great experience with us. Thank you for the review and rating.','2017-03-28 00:03:23.196000'),(4023,'Thank you for taking the time to review and rate us. We appreciate it.','2017-03-27 19:56:51.635000'),(4024,'No one likes visiting the ER, but we are glad to hear our team made your experience pleasurable. Thank you for giving SignatureCare the chance to take care of you.','2017-03-24 17:39:10.033000'),(4025,'We appreciate the five-star rating!','2017-03-23 17:58:13.664000'),(4026,'Thank you for the kind words -- we will pass them along!','2017-03-22 19:00:43.334000'),(4027,'Thank you for choosing SignatureCare, and for the nice review. ','2017-03-22 19:00:22.221000'),(4028,'Thank you for your kind words, and for the great rating. We appreciate it.','2017-03-22 18:59:35.713000'),(4029,'Our staff is dedicated to helping others and making your ER experience as pleasant as possible. Thank you for your kind words, and we will pass them along. ','2017-03-22 18:58:03.837000'),(4030,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. We are glad to hear that we exceeded your expectations. Thank you for the great rating.','2017-03-21 01:12:25.415000'),(4031,'We appreciate you giving SignatureCare the chance to help you feel better. Thank you for the review and great rating. ','2017-03-21 01:11:44.329000'),(4032,'Thank you so much for the kind words and great rating. We appreciate it.','2017-03-19 01:07:29.845000'),(4033,'Thank you for letting us help you feel better, and for the great review and rating. Feel better!\n','2017-03-12 20:12:30.831000'),(4034,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. ','2017-03-11 15:01:07.239000'),(4035,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. \n','2017-03-11 15:00:47.046000'),(4036,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2017-03-11 15:00:27.816000'),(4037,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2017-03-11 14:59:28.093000'),(4038,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-03-11 14:58:45.764000'),(4039,'Your positive feedback will help our team continue to do a great job. Thank you for trusting your emergency needs with SignatureCare. ','2017-03-08 03:34:42.640000'),(4040,'Our team at SignatureCare knows that your time is valuable. Thank you for taking the time to review and rate us.','2017-03-08 03:34:00.723000'),(4041,'Thank you for your kind words about our staff. We appreciate the feedback and rating.','2017-03-08 03:33:27.617000'),(4042,'SignatureCare is here 24 hours a day, 365 days a year. When you have an unexpected emergency, we will always put our patients first. We hope you feel better. ','2017-03-05 15:15:53.696000'),(4043,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2017-03-05 15:14:52.428000'),(4044,'Our SignatureCare Emergency Center staff appreciates receiving nice comments like this. Thank you for reviewing us and leaving us a great rating. ','2017-03-03 21:11:04.519000'),(4045,'Thank you for letting us help you and help you feel better! We hope we provided you with the best care possible. ','2017-03-02 14:04:24.293000'),(4046,'We appreciate the five-star rating. Thanks so much!','2017-03-02 14:03:42.590000'),(4047,'We are here for you whenever the emergency need arises. We know you have a choice in care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-03-01 01:50:04.978000'),(4048,'Thank you for your positive review, and we are always here whenever you need us.','2017-02-26 20:54:24.299000'),(4049,'Your positive experience means a lot to us at SignatureCare Emergency Center. Thank you for choosing us, and feel better!','2017-02-26 20:54:01.026000'),(4050,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. ','2017-02-25 03:43:48.008000'),(4051,'We\'re glad our team was able to deliver an exceptional experience. We appreciate your review and rating.','2017-02-23 17:54:54.265000'),(4052,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. We appreciate your feedback. ','2017-02-21 23:37:50.265000'),(4053,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. Get Better!','2017-02-13 18:06:08.005000'),(4054,'We appreciate you taking time from your busy schedule to write us such a positive review. Our team thanks you and hopes that you are feeling better. ','2017-02-12 00:13:45.108000'),(4055,'We appreciate your feedback and the great rating you gave us. We hope you are feeling better!','2017-02-12 00:12:02.767000'),(4056,'SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing us!','2017-02-12 00:10:47.788000'),(4057,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you so much for your great review and rating. ','2017-02-12 00:09:49.988000'),(4058,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for letting us know that we are doing a good job.','2017-02-10 17:34:52.955000'),(4059,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-02-10 17:34:10.694000'),(4060,'We appreciate your feedback and rating. Thanks so much!','2017-02-10 17:32:05.334000'),(4061,'We always appreciate positive feedback from our patients. SignatureCare Emergency is here 24/7 if you need us!','2017-02-10 17:31:28.360000'),(4062,'Our community means a lot to us at SignatureCare Emergency, and we are always happy to help a member of our community feel better. Thank you for the great review and rating.','2017-02-10 17:30:46.421000'),(4063,'We are so pleased to hear that the staff at SignatureCare Emergency was able to help you feel better. Thank you for letting us know and for leaving us a great rating. ','2017-02-10 17:28:21.572000'),(4064,'Thank you for taking the time to rate us. We appreciate it!','2017-02-10 17:27:16.724000'),(4065,'Thank you so much for the positive feedback. We appreciate your comments and reviews. ','2017-02-09 02:56:37.442000'),(4066,'Short wait times are what we are all about. Well, that, and customer service! It\'s great to hear that you experienced BOTH at SignatureCare Emergency. We hope you will let us know if there\'s anything we could have done to earn that last star in your rating!','2017-02-09 02:54:19.086000'),(4067,'SignatureCare Emergency Center\'s staff is our pride and joy. It\'s great to hear that they were good to you and that you enjoyed them. Thank you for the great review.','2017-02-09 02:52:58.278000'),(4068,'Thank you for your great rating and for taking the time to review SignatureCare Emergency Center. We will let our staff know about your kind comments!','2017-02-07 18:58:26.385000'),(4069,'It\'s always great to hear from our customers that our staff was pleasant and accommodating. While we hope not to see you again soon, please know that SignatureCare Emergency is always here for any emergency situation. Thank you for your great review and rating.','2017-02-07 18:57:10.658000'),(4070,'Our goals are to provide the best care possible to all patients and ensure you are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. ','2017-02-06 16:52:51.791000'),(4071,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2017-02-03 21:35:59.798000'),(4072,'Thank you so much for the positive feedback. We appreciate your comments and reviews, and thank you for the great rating.','2017-02-03 21:35:39.783000'),(4073,'At SignatureCare Emergency Center, we understand that the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing us, and for the great rating!','2017-02-01 03:07:22.050000'),(4074,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2017-01-31 04:35:56.340000'),(4075,'Thank you for the five-star rating!','2017-01-30 02:29:17.862000'),(4076,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for your review and rating.','2017-01-29 02:39:58.826000'),(4077,'We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2017-01-29 02:39:24.169000'),(4078,'Our doctors and medical staff thank you for your wonderful feedback and great rating. Thank you for choosing us.','2017-01-29 02:38:59.228000'),(4079,'We are glad to hear that our nurses and receptionists delivered a great experience for you. Thank you for trusting us with your medical needs. ','2017-01-29 02:38:14.882000'),(4080,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you so much for choosing our facility and for the great review.','2017-01-29 02:35:46.239000'),(4081,'At SignatureCare Emergency Center, our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your medical needs. ','2017-01-26 18:16:02.457000'),(4082,'At SignatureCare Emergency Center, our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2017-01-26 18:14:50.723000'),(4083,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2017-01-25 00:45:28.616000'),(4084,'Thank you for taking the time to leave us a nice review and great rating. We appreciate the feedback, and will let our team know!','2017-01-23 21:13:12.271000'),(4085,'Our front-desk team is top notch, and we are glad you thought so, too. Thank you for trusting SignatureCare with your medical needs and for giving us such a great rating. ','2017-01-23 21:12:31.163000'),(4086,'SignatureCare Emergency Center takes pride in our staff. We are so very happy to hear you loved each and every one of them. We will be sure to let them know. ','2017-01-21 16:01:02.278000'),(4087,'Thank you for trusting us each time with your emergency needs. We appreciate the great review and rating.','2017-01-21 16:00:14.359000'),(4088,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2017-01-21 15:59:42.088000'),(4089,'Thank you so much for letting SignatureCare take care of you during your recent emergency. We are glad your experience was a five-star one. ','2017-01-21 15:58:44.362000'),(4090,'Thank you for the review. We are glad to learn you had a great visit as you always should at SignatureCare. ','2017-01-19 20:32:04.484000'),(4091,'Working to the ER is a tough job for some, but not for our highly trained professionals. Our staff love what they do and it shows! We are happy to learn that you were well taken care of as you will always be at any of our SignatureCare locations. ','2017-01-19 20:31:19.503000'),(4093,'We pride ourselves with board certified physicians, and some of the best out there. We are very happy to learn you had a great experience at our newest location! Feel Better!','2017-01-19 20:24:07.354000'),(4094,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Hope your brother is feeling better.','2020-01-06 07:18:02.517000'),(4095,'Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you so much for trusting in SignatureCare Emergency Center. ','2018-08-11 13:39:55.227000'),(4096,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-05 06:43:10.733000'),(4097,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-05 06:43:00.796000'),(4098,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-01-05 06:42:51.650000'),(4099,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-31 04:54:16.731000'),(4100,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-29 06:40:29.025000'),(4101,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-29 06:37:50.447000'),(4102,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-26 08:04:54.710000'),(4103,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-24 06:59:53.020000'),(4104,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-23 08:10:51.242000'),(4105,'Thank you so much for your nice review, Brenda. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-22 08:34:58.029000'),(4106,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-22 08:34:19.921000'),(4107,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-22 08:33:46.512000'),(4108,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-22 08:27:16.823000'),(4109,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-19 06:22:38.909000'),(4110,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-12-19 06:22:16.284000'),(4111,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2019-12-19 06:21:17.167000'),(4112,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-19 06:20:56.957000'),(4113,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-19 06:20:35.632000'),(4114,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-19 06:19:46.893000'),(4115,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-17 06:13:01.323000'),(4116,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-17 06:12:42.852000'),(4117,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-17 06:12:19.363000'),(4118,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-17 06:12:27.618000'),(4119,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-15 07:02:29.224000'),(4120,'Thank you so much for your rating, Alex. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-12-15 07:02:12.597000'),(4121,'Thank you for trusting us with the care of your child. We appreciate the great feedback, and are very glad to hear that our team took such good care of your kiddo.','2019-12-15 07:01:44.752000'),(4122,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 07:00:22.292000'),(4123,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 07:00:13.081000'),(4124,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-15 07:00:04.462000'),(4125,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-12-15 06:59:51.839000'),(4126,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:59:39.118000'),(4127,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-12-15 06:59:26.730000'),(4128,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:59:17.163000'),(4129,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-12-04 07:17:39.755000'),(4130,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-04 07:17:23.645000'),(4131,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-04 07:15:17.396000'),(4132,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-04 07:11:16.516000'),(4133,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-02 06:58:38.663000'),(4134,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made your wife comfortable and able to relax during her visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-02 06:58:14.699000'),(4135,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-12-02 06:57:36.637000'),(4136,'Thank you so much for your great rating!','2019-12-01 08:37:18.872000'),(4137,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-26 05:45:37.262000'),(4138,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-26 05:45:21.185000'),(4139,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-11-26 05:46:09.240000'),(4140,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-26 05:45:12.468000'),(4141,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-26 05:45:04.134000'),(4142,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-11-24 07:05:37.545000'),(4143,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-24 07:05:00.962000'),(4144,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-20 06:16:42.350000'),(4145,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-11-19 06:22:12.005000'),(4146,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made your girlfriend comfortable and able to relax during her visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-18 05:57:10.511000'),(4147,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-11-17 07:17:19.030000'),(4148,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-11-17 07:17:06.834000'),(4149,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-11-17 07:16:52.223000'),(4150,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-17 07:16:23.830000'),(4151,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-17 07:15:34.218000'),(4152,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-14 10:05:14.530000'),(4153,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-14 10:05:04.380000'),(4154,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-12 07:45:23.205000'),(4155,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-11 07:36:37.963000'),(4156,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-11 07:36:23.255000'),(4157,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-11-07 04:53:41.078000'),(4159,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-11-06 08:04:48.706000'),(4160,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-06 07:51:24.697000'),(4161,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you both are feeling better.','2019-11-06 07:50:56.368000'),(4162,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-05 07:40:33.515000'),(4163,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-11-05 07:40:59.929000'),(4164,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-05 07:40:20.536000'),(4165,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-03 06:33:32.793000'),(4166,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-03 06:32:42.866000'),(4167,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-31 09:52:30.366000'),(4168,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-31 09:52:18.952000'),(4169,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-10-30 05:46:49.397000'),(4170,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-29 05:50:09.000000'),(4171,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-29 05:49:49.212000'),(4172,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-27 08:37:26.042000'),(4173,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-27 08:37:14.641000'),(4174,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-10-24 08:04:40.321000'),(4175,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-23 06:43:00.303000'),(4176,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-22 06:36:02.155000'),(4177,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-21 07:09:03.272000'),(4178,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-10-21 07:08:45.250000'),(4179,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-21 07:07:40.197000'),(4180,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-10-20 06:42:13.475000'),(4181,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-10-20 06:42:01.496000'),(4182,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-10-15 06:45:49.719000'),(4183,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-15 06:45:02.241000'),(4184,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-13 07:24:17.593000'),(4185,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-10-13 07:24:04.358000'),(4186,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-13 07:18:53.202000'),(4187,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-10 10:29:17.071000'),(4188,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-10 10:29:07.215000'),(4189,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-10 10:29:01.267000'),(4190,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-09 08:19:09.311000'),(4191,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-10-09 08:18:41.856000'),(4192,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-01 06:19:25.444000'),(4193,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-01 06:19:05.856000'),(4194,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-24 06:38:02.108000'),(4195,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-09-24 06:37:46.091000'),(4196,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-23 05:42:36.270000'),(4197,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-09-22 06:11:04.973000'),(4198,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-22 06:10:52.617000'),(4199,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-22 06:10:49.761000'),(4200,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-09-22 06:09:53.922000'),(4201,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-22 06:09:20.684000'),(4202,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. We hope your employee is feeling better!','2019-09-19 09:21:52.263000'),(4203,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-15 04:57:19.948000'),(4204,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-09-15 04:57:07.372000'),(4205,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. Hope your friend feels well.','2019-09-11 05:47:58.886000'),(4206,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-09-11 05:47:20.605000'),(4207,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-11 05:47:02.805000'),(4208,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-09-11 05:46:50.636000'),(4209,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-09-11 05:46:26.310000'),(4210,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-11 05:46:13.454000'),(4211,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-11 05:45:54.884000'),(4212,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-28 05:55:47.426000'),(4213,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. We hope your friend gets well soon.','2019-08-25 05:19:45.671000'),(4214,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-25 05:18:09.126000'),(4215,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-22 04:58:13.855000'),(4216,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-08-20 05:31:35.002000'),(4217,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-08-20 05:31:21.486000'),(4218,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-18 06:00:04.129000'),(4219,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-08-18 05:59:47.304000'),(4220,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-08-18 05:59:33.934000'),(4221,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-08-18 05:59:00.336000'),(4222,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-08-18 05:58:50.337000'),(4223,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-08-18 05:58:32.377000'),(4224,'Thank you so much for your feedback!','2019-08-18 05:58:03.876000'),(4225,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-08-18 05:57:43.799000'),(4226,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-08-18 05:57:22.641000'),(4227,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-08-18 05:57:07.937000'),(4228,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-18 05:56:42.081000'),(4229,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-04 05:32:32.781000'),(4230,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-08-04 05:32:13.172000'),(4231,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your kiddo is feeling better!','2019-08-01 03:33:43.193000'),(4232,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-31 06:46:59.717000'),(4233,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-28 07:09:39.481000'),(4234,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-28 07:09:03.129000'),(4235,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health and play as much as game they want to :) . We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-07-21 06:11:18.230000'),(4236,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-14 06:09:56.778000'),(4237,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-07-10 06:14:12.510000'),(4238,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-07-10 06:13:37.938000'),(4239,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-02 06:45:25.603000'),(4240,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-02 06:44:49.408000'),(4241,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-30 05:50:49.307000'),(4242,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-06-26 06:34:35.148000'),(4243,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-06-24 05:43:27.483000'),(4244,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your sons feel better soon!','2019-06-24 05:38:25.872000'),(4245,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-23 04:39:05.623000'),(4246,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-23 04:38:35.116000'),(4247,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-23 04:38:15.941000'),(4248,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-19 06:09:05.016000'),(4249,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-06-18 06:39:14.221000'),(4250,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-04-15 05:45:36.120000'),(4251,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-16 05:54:00.290000'),(4252,'Hi Paul. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously. ','2019-06-18 13:58:59.081000'),(4253,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-13 06:45:32.589000'),(4254,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-13 06:45:16.771000'),(4255,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-12 06:11:32.518000'),(4256,'Thank you for your rating, Shannon!','2019-06-09 07:36:29.175000'),(4257,'Hi Tricia. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously. ','2019-06-18 14:01:37.385000'),(4258,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-09 07:35:02.515000'),(4259,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-09 07:34:05.920000'),(4260,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that your girlfriend is feeling better. Thank you for choosing SignatureCare!','2019-06-09 07:31:21.842000'),(4261,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-09 07:30:23.817000'),(4262,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you and your wife. Thank you for choosing SignatureCare.','2019-06-09 07:30:07.775000'),(4263,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-09 07:29:16.436000'),(4264,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-05-29 06:33:07.660000'),(4265,'Thank you for trusting us with the care of your wife. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-05-28 05:47:27.054000'),(4266,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-28 05:46:31.938000'),(4267,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-05-27 05:57:42.915000'),(4268,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-05-28 05:47:50.264000'),(4269,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-05-26 06:26:19.167000'),(4270,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-26 06:24:58.801000'),(4271,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-05-26 06:24:16.228000'),(4272,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2019-05-23 06:33:42.903000'),(4273,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-21 04:16:24.656000'),(4274,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-05-21 04:15:02.183000'),(4275,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-05-19 05:24:14.860000'),(4276,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-19 05:23:43.323000'),(4277,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare and you are always welcome to have snacks.','2019-05-19 05:23:15.263000'),(4278,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-05-19 05:20:48.949000'),(4279,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare! By the way, how was the tea? Please let us know.','2019-05-19 05:20:20.809000'),(4280,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-05-15 06:33:38.180000'),(4281,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-13 06:00:22.873000'),(4282,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-12 04:53:56.648000'),(4283,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-12 04:52:29.158000'),(4284,'What a nice review! We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-12 04:51:53.101000'),(4285,'We believe we have the very best staff in Texas. Thank you for your review and rating!','2019-05-07 04:15:07.911000'),(4286,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope Jessica is feeling better. ','2019-05-07 04:14:23.480000'),(4287,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-05-06 05:55:52.611000'),(4288,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-05-05 13:46:52.033000'),(4289,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s and grand-daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope they both are feeling better. ','2019-05-02 09:23:25.012000'),(4290,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 09:22:16.276000'),(4291,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 09:21:50.129000'),(4292,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-02 09:21:28.257000'),(4293,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-05-02 09:20:51.399000'),(4294,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-02 09:20:31.536000'),(4295,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-05-02 09:19:51.605000'),(4296,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-05-02 09:19:19.998000'),(4297,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-05-02 09:18:54.706000'),(4298,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-04-26 10:03:04.670000'),(4299,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-04-26 09:36:22.003000'),(4300,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-04-22 06:13:47.496000'),(4301,'SignatureCare Emergency Centers have a much shorter wait time -- usually 10 minutes or less. We apologies, if it took more than this. Thank you so much for your nice review, Catherine. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-04-22 06:13:26.854000'),(4302,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2019-04-17 07:09:11.899000'),(4303,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback.','2019-04-15 05:47:34.966000'),(4304,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-09 14:16:13.573000'),(4305,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-04-07 05:49:07.654000'),(4306,'Thank you for trusting us with the care of your daughter. At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. We appreciate the great feedback, and are very glad to hear that our team took such good care of your daughter.','2019-04-04 05:11:44.911000'),(4307,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for choosing us!','2019-04-03 06:28:22.701000'),(4308,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better. ','2019-04-02 07:16:26.739000'),(4309,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-03-31 06:39:47.399000'),(4310,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Kids are the best creation in the world. We love their company. Thank you for choosing SignatureCare and for the nice review.','2019-03-31 06:38:45.324000'),(4311,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-31 06:33:27.181000'),(4312,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. By the way, how was the coffee and snacks? Thank you for the wonderful feedback and we hope your friend feels better soon!','2019-03-28 04:54:44.331000'),(4313,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-03-27 09:15:56.821000'),(4314,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-03-27 05:40:20.591000'),(4315,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-03-27 05:39:59.522000'),(4316,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-03-27 05:38:27.250000'),(4317,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-03-24 07:02:36.527000'),(4318,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-25 12:32:29.864000'),(4319,'What a nice review! Thank you for taking the time to let us know how we are doing. We want everyone who walks through our doors to feel like a VIP. Our staffs appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-03-21 06:28:45.848000'),(4320,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-03-20 06:47:34.256000'),(4321,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us. You know, SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention.','2019-03-19 07:12:10.641000'),(4322,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-03-19 07:08:36.246000'),(4323,'Thanks for your great words and 5 star rating!','2019-03-18 06:16:31.776000'),(4324,'At SignatureCare, our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. Thanks for recommending us! ','2019-03-18 06:15:48.103000'),(4325,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-03-14 06:26:35.744000'),(4326,'Thank you for your rating, Hannah!','2019-03-14 06:25:55.923000'),(4327,'At SignatureCare, our aim is to make your visit as quick and painless as possible. We believe we have the very best staff in Texas. Thank you for your feedback and the great rating!','2019-03-13 06:16:06.952000'),(4328,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-03-10 08:44:05.570000'),(4329,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention, even on the holidays. Thank you again for choosing us!','2019-03-10 08:43:24.325000'),(4330,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-10 08:42:11.452000'),(4331,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-03-10 08:40:55.440000'),(4332,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-03-10 08:40:09.281000'),(4333,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-03-10 08:38:04.959000'),(4334,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-03-10 08:36:56.942000'),(4335,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-10 08:35:14.932000'),(4336,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-03-04 13:08:07.980000'),(4337,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-03-04 13:00:49.486000'),(4338,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-03-03 12:44:26.029000'),(4339,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-03-03 11:34:19.895000'),(4340,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-27 13:50:40.852000'),(4341,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-02-25 12:31:30.510000'),(4342,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-02-25 12:30:50.042000'),(4343,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-25 12:30:10.090000'),(4344,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-24 12:16:42.935000'),(4345,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-24 12:17:10.421000'),(4346,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-02-24 12:18:08.681000'),(4347,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-02-17 10:30:52.645000'),(4348,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-17 10:31:19.904000'),(4349,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-02-17 10:31:46.555000'),(4350,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-14 13:29:40.486000'),(4351,'Thank you for your continued trust. The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-13 12:44:57.794000'),(4352,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-11 12:42:57.802000'),(4353,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-02-07 13:58:20.367000'),(4354,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-06 13:19:34.902000'),(4355,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-05 13:51:56.198000'),(4356,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-05 13:53:46.484000'),(4357,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-02-03 12:32:08.897000'),(4358,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-03 12:29:53.065000'),(4359,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-02-03 12:28:46.924000'),(4360,'Its their compassion that makes our staff exceptional, and SignatureCare Emergency Center takes pride in our staff as they care so much about patients of all ages, specially children. We are so very happy to hear you loved your team and we will make sure to let them know. We hope for your son\'s great health \"To Infinity .... And Beyond! ','2019-02-03 12:27:45.072000'),(4361,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. The board-certified team cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. We have much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors can handle most of the same emergencies as a hospital. Thank you for choosing SignatureCare we sincerely appreciate your wonderful feedback and your recommendation. ','2019-02-03 12:13:11.997000'),(4362,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of priority professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-31 18:55:15.350000'),(4363,'Thanks for rating 5 star, Rahul!','2019-01-30 13:35:28.485000'),(4364,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-24 08:02:44.457000'),(4365,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-24 08:02:24.087000'),(4366,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-23 13:58:28.810000'),(4367,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-01-23 16:13:20.115000'),(4368,'We want everyone who walks through our doors to feel like a VIP. Our goal is to get you in and out quickly and back to good health. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-01-20 11:20:32.125000'),(4369,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-01-18 16:04:10.529000'),(4370,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-13 12:42:44.630000'),(4371,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare and for your recommendation.','2019-01-10 11:09:53.661000'),(4372,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. \nThank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-10 08:33:06.443000'),(4373,'Hi Chris, we appreciate you giving SignatureCare your trust time and again for your family medical emergencies and taking time out of your day to write us such a positive feedback. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of your family, and in a quick and efficient manner. We hope both your father in law and your new baby are in good health now.\nSignatureCare Emergency Centers are open 24/7 and here when an unexpected emergency happens, even during holidays. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. ','2019-01-09 07:26:05.178000'),(4374,'We always appreciate positive feedback from our patients. We are so very happy to hear you loved your team. We will make sure to let them know. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for trusting SignatureCare!','2019-01-09 07:35:36.288000'),(4375,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-08 12:03:13.553000'),(4376,'Thank you so much for the five-star rating, Jean!','2019-01-07 19:00:22.747000'),(4377,'Thank you for letting SignatureCare help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2019-01-06 18:28:25.786000'),(4378,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2019-01-05 19:08:41.425000'),(4379,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong!','2019-01-05 19:08:27.124000'),(4380,'Our community is important to us, so it\'s great to hear that our team is doing a good job. Thank you so much for the nice review and for choosing SignatureCare. ','2019-01-03 17:29:41.672000'),(4381,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2019-01-02 16:45:07.303000'),(4382,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2019-01-02 16:44:45.880000'),(4383,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, as it helps us excel at our jobs. ','2019-01-01 19:38:24.632000'),(4384,'Thank you for the five-star rating, Rebekah!','2018-12-27 15:13:16.316000'),(4385,'Our goals are to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this has been your experience with our emergency room. ','2018-12-27 15:13:50.379000'),(4386,'At SignatureCare Emergency Center, we love all our patients, and our number one goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your medical needs. ','2018-12-20 18:36:51.834000'),(4387,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2018-12-18 16:53:17.759000'),(4388,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2018-12-12 20:03:00.986000'),(4389,'We aim to get you in and out quickly so you can get back on the road to good health. Thank you for the nice review and for choosing SignatureCare. ','2018-12-10 22:54:54.868000'),(4390,'We pride ourselves in having some of the newest technology when it comes to medical equipment, which allows us to run tests quickly and begin treatment for your emergency. SignatureCare is always here 365 days a year, 24 hours a day if you need us again. Thank you for the good rating, and please let us know what we could do to earn that fifth star -- we aim for 100% satisfaction!','2018-12-09 16:10:59.005000'),(4391,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2018-12-08 15:10:35.467000'),(4392,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2018-12-08 15:11:19.545000'),(4393,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. Thank you so much for choosing SignatureCare.','2018-12-08 15:10:57.273000'),(4394,'We appreciate you giving us your trust time and again when it comes to your emergency needs. Thank you so much for taking the time to let us know how we are doing. While we hope not to see you anytime soon, SignatureCare is here 24/7, 365 days a year if you ever need us again.','2018-12-07 16:31:49.186000'),(4395,'Thanks for the nice review. SignatureCare Emergency Centers are here 24/7 for all your emergency needs, and we promise to always put our patients first. Thank you for choosing us and for taking the time to let us know how we are doing. ','2018-12-06 16:02:54.669000'),(4396,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, and thank you for choosing us!','2018-12-02 16:32:08.749000'),(4397,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. thanks for the nice review. ','2018-11-29 18:36:28.917000'),(4398,'Thank you for the kind words -- we will pass them along to our team. We aim to make every visit as quick and as painless as possible. Thank you for giving us the chance to care fo you. ','2018-11-27 15:38:11.477000'),(4399,'Emergencies are never fun -- especially while on vacation! We appreciate the opportunity to care for you during your emergency and we hope you are feeling better. Thank you so much for the nice review and for choosing SignatureCare. ','2018-11-27 15:37:17.097000'),(4400,'We appreciate your kind words and the great rating. We aim for 100% satisfaction at SignatureCare, so it\'s great to hear that our team took such good care of you. Thank you for choosing us!','2018-11-26 15:47:18.234000'),(4401,'Thank you so much for your nice review. At SignatureCare, we want all parents to know that we will treat their children as if they are our own. It\'s so nice to hear that our team took good care off you and your son. Please don\'t hesitate to call if you need us again; we are here 24/7!','2018-11-23 16:58:44.527000'),(4402,'Children cannot always tell us what’s wrong like an adult, but at SignatureCare, we use our state-of-the-art equipment and onsite lab services to quickly diagnose young children so parents can feel at ease and their children can begin feeling better quickly. Thank you for your great review and we hope your son is feeling better. ','2018-11-19 19:12:38.088000'),(4403,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. Thank you for taking the time to let us know how your visit with us was and we appreciate the great rating!','2018-11-10 14:57:19.489000'),(4404,'Thank you so much for the five-star rating!','2018-11-09 15:09:20.685000'),(4405,'At SignatureCare Emergency Center, we love all our patients, and our number one goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose you and our board-certified doctors to implement your treatment plan. Thank you for choosing us and for the nice review!','2018-11-07 17:09:50.556000'),(4406,'Ah, the \"something in my child\'s nose\" emergency -- most parents have been there! It\'s always scary when this happens, but at SignatureCare, we want parents to know that we will treat their child as if they are our own. We are so pleased to hear that our team took such good care of you all, and we hope your little one is breathing better this morning. Thank you for trusting us with his care, and thank you for the nice review. ','2018-11-07 16:42:11.038000'),(4407,'We appreciate the good rating, Grace. We hope if there is anything we could have done to earn that fifth star, you will let us know, as we aim for 100% satisfaction each time you visit one of our emergency rooms. Thank you for taking the time to rate us! We value your feedback. ','2018-11-06 16:29:47.327000'),(4408,'At SignatureCare, we aim to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. Thank you so much for choosing us!','2018-11-06 16:30:16.950000'),(4409,'Our doors are always open (and the wait time is usually 10 minutes or less!) for community members suffering a medical emergency. Our community is important to us, so it\'s great to hear that our team is doing a good job. Thank you for choosing SignatureCare, and we hope your husband is feeling better!','2018-11-03 13:32:04.932000'),(4410,'Thank you so much for the feedback and great rating. And thank you for choosing SignatureCare!','2018-10-28 23:16:58.572000'),(4411,'While we hope not to see you anytime soon, SignatureCare is here 24/7 in case you ever need us again. Thank you for choosing us and for taking the time to let us know how we are doing. We hope you are feeling better!','2018-10-24 14:58:35.377000'),(4412,'Emergencies are never fun, but especially when you are traveling. Thank you for trusting your emergency with SignatureCare, and we hope you are feeling better. ','2018-10-21 15:37:28.276000'),(4413,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us and for the nice review. ','2018-10-20 14:59:17.849000'),(4414,'Thank you for the five-star rating. We appreciate it!','2017-11-05 16:50:36.944000'),(4415,'Thank you so much for placing your trust in SignatureCare Emergency Center. And thank you for the nice review!','2018-10-18 15:23:03.224000'),(4416,'Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2018-10-18 15:22:40.571000'),(4417,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review and rating. We appreciate the feedback and are here 24/7 in case you need us again. ','2018-10-18 15:19:38.477000'),(4418,'Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thank you so much for your nice review and the five star rating!','2018-10-16 14:57:05.148000'),(4419,'Thank you so much for taking the time to let us know how we are doing. And thank you for choosing SignatureCare. ','2018-10-15 17:13:07.793000'),(4420,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback and for choosing SignatureCare!','2018-10-14 14:25:16.735000'),(4421,'It\'s never fun to visit the ER, especially when it\'s your spouse who isn\'t feeling well. Thank you for trusting us with his care and we hope he is feeling better. Thank you so much for choosing SignatureCare!','2018-10-13 14:48:36.217000'),(4422,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2018-10-06 14:09:10.804000'),(4423,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. SignatureCare Emergency Center is here 24/7 in case you need us again. Thank you for choosing us and for the nice review!','2018-10-05 16:23:07.084000'),(4424,'Their compassion and dedication for helping others is why we love our employees. We will be sure to let them know about your nice review. Thank you for choosing SignatureCare, and we hope you are feeling better. ','2018-10-01 15:54:40.349000'),(4425,'Thank you for your review and great rating. We appreciate the feedback. ','2018-09-29 16:23:25.185000'),(4426,'Thank you so much for taking the time to let us know how we are doing. Our community is important to us, so it\'s great to hear that we are doing a good job. Thank you for trusting us with your care, and know that we are here 24/7 in case you ever need us again. ','2018-09-28 15:02:16.134000'),(4427,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. Thank you so much for choosing us and for the great review!','2018-09-25 17:02:58.655000'),(4428,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. ','2018-09-20 16:55:13.850000'),(4429,'Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. SignatureCare is open 24 hours so you have peace of mind during your next emergency. Thank you for the nice review and great rating, and we hope you are feeling better. ','2018-09-19 16:57:54.574000'),(4430,'Your positive experience means a lot to our team. Thank you for choosing SignatureCare, and we wish you the best of luck with your marketing career!','2018-09-19 16:57:09.261000'),(4431,'It is completely our pleasure to serve you and our community. Thank you so much for letting us know that our team took such good care of you. SignatureCare is here 24/7 should you need us again. ','2018-09-14 13:59:35.837000'),(4432,'We strive to set the standard in emergency care, so thank you for letting us know that our team did such a good job taking care of you. Thank you for choosing SignatureCare and for the very nice review. We appreciate and value your feedback.','2018-09-13 15:09:25.599000'),(4433,'Our goal is to get you in and out quickly and back on the road to good health. Thank you for giving us the chance to care for you and for your nice review. ','2018-09-10 16:07:07.669000'),(4434,'Never fear -- we have SIX Houston-area locations (with more to come) so we are always here for you if you need us. Thank you for letting us know how we are doing and for the great rating!','2018-09-02 18:35:48.301000'),(4435,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2018-09-01 21:15:22.809000'),(4436,'Thank you for trusting us with the care of your son. We appreciate the great feedback and rating, and we hope your son is feeling better. Thanks for choosing SignatureCare!','2018-08-30 16:16:51.917000'),(4437,'Thank you for taking time out of your day to review SignatureCare Emergency Center\'s services. Our goal is to make sure every patient’s needs are addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2018-08-28 14:55:47.976000'),(4438,'We appreciate you giving us the chance to care for you and your children time and again at SignatureCare. Your trust means a lot to us, as does your positive feedback. Thank you for choosing us, and for your very kind recommendation. ','2018-08-28 14:54:17.521000'),(4439,'Thank you for the great review. We are open 24/7 when you have an unexpected emergency. Thanks for choosing SignatureCare!','2018-08-28 14:47:59.179000'),(4440,'Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and let us know if you have any further questions about your treatment. ','2018-08-26 17:21:12.115000'),(4441,'Your positive feedback will help our team continue to do a great job for our patients. Thanks for choosing SignatureCare!','2018-08-24 15:27:30.002000'),(4442,'Thanks so much, Joseph! We appreciate the feedback and the five stars. We are here 24/7 in case you ever need us again. ','2018-08-21 15:40:02.087000'),(4443,'SignatureCare\'s goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thank you for choosing us!','2018-08-21 15:39:40.118000'),(4444,'At SignatureCare Emergency Center, our number one goal is to treat and diagnose quickly by using our on-site state-of-the-art equipment to diagnose patients and our board-certified doctors to implement treatment plans. Thank you for choosing us and we are glad to hear that you are feeling better. ','2018-08-21 15:38:52.615000'),(4445,'Thank you so much for the nice review and great rating. We appreciate it!','2018-08-19 17:16:50.270000'),(4446,'We are so pleased to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and know that we are available 24/7 if and when you have another unexpected emergency. ','2018-08-17 14:52:26.568000'),(4447,'Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2018-08-16 16:28:49.238000'),(4448,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback. ','2018-08-16 16:29:16.160000'),(4449,'When we receive feedback like this, it helps us know we’re doing something right in our community. Thank you so much for letting us know how we are doing. ','2018-08-16 16:28:29.182000'),(4450,'What a nice review! Thank you so much for putting your trust in our hands once again and for taking time out of your day to review us. We appreciate it!','2018-08-16 16:27:34.285000'),(4451,'No one likes the ER, but we want you to know that we will try to make you as comfortable as possible when you have to visit us. Thank you so much for the nice review and great rating.','2018-08-16 16:26:56.855000'),(4452,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review and five-star rating. ','2018-08-07 17:35:53.332000'),(4453,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear about your positive experience with SignatureCare. Thank you for rating us and letting us know how we are doing. ','2018-08-07 17:31:14.896000'),(4454,'SignatureCare\'s trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2018-08-02 15:40:19.409000'),(4455,'We appreciate the great feedback. Thank you for choosing SignatureCare and for taking the time to let us know how we are doing. ','2018-07-31 01:47:35.546000'),(4456,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit us. Thank you for choosing SignatureCare. ','2018-07-28 15:31:09.383000'),(4457,'Our dedicated staff makes us proud every day. Thank you for letting us know that they are doing a good job in our community. We appreciate the feedback and great rating. ','2018-07-26 14:45:34.603000'),(4458,'Our SignatureCare team loves hearing about the great experience our customers had when visiting us. Thank you for giving us the chance to take care of you during your medical emergency, and we hope you are feeling better. ','2018-07-25 14:28:10.742000'),(4459,'Thank you for your kind words -- we will pass them along to our team. Thank you for choosing SignatureCare!','2018-07-25 14:25:57.673000'),(4460,'It means a lot to hear that we’re doing a good job. Our community is important. If you have any questions, or need help again, don’t hesitate to call. Thank you for choosing SignatureCare. ','2018-07-22 17:19:14.140000'),(4461,'We are glad to learn you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Thank you so much for the nice review and we hope you are feeling better. ','2018-07-08 17:47:07.919000'),(4462,'We appreciate the feedback, Jeff. Thank you so much for trusting our team with your medical emergency, and thank you for choosing SignatureCare. ','2018-07-04 13:34:09.856000'),(4463,'Thank you for the five star review, Renee. We appreciate the feedback. ','2018-06-28 12:16:32.185000'),(4464,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit SignatureCare. Thank you for the great review!','2018-06-27 14:13:44.275000'),(4465,'Thank you for the five-star rating! We appreciate the feedback. ','2018-06-23 14:46:55.449000'),(4466,'We want all of our patients to feel like VIPs from the moment you walk in our doors. Thank you for trusting our board-certified team with your medical emergency. We appreciate your trust and your very nice review. ','2018-06-19 17:03:35.375000'),(4467,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! ','2018-06-17 17:07:32.607000'),(4468,'SignatureCare has shorter wait times than most hospitals -- usually 10 minutes or less. It\'s great to hear that this was your experience with our facility, as we aim for excellence each time you visit us. Thank you for choosing SignatureCare and we hope you are feeling better. ','2018-06-16 14:53:52.529000'),(4469,'Our SignatureCare team makes us proud every day with their compassion and dedication for helping others. Thank you for letting us take care of you, and we hope you are feeling better. ','2018-06-11 15:45:19.189000'),(4470,'SignatureCare wants all parents to know that we will treat their children as if they are our own. Visiting the ER with your child is never fun, but we are glad to hear that our staff took good care of the both of you. Thank you for choosing us and for the great review. ','2018-06-08 16:29:26.734000'),(4471,'Thank you so much for the feedback! We appreciate your comments and reviews. And thank you for choosing SignatureCare!','2018-06-03 16:08:27.357000'),(4472,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and we hope your son is feeing better. ','2018-05-28 18:36:27.554000'),(4473,'SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. Thank you for trusting us with your care. ','2018-05-25 14:44:43.374000'),(4474,'\nEmergencies happen, and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment is in process. Thank you for choosing SignatureCare and for the fantastic review. We hope you are feeling better!\n','2018-05-25 14:46:19.531000'),(4475,'That\'s our goal at SignatureCare -- to make your visit as quick and painless as possible. It\'s great to hear that this was your experience at or facility. Thank you for giving us the chance to care for you!','2018-05-24 16:03:39.345000'),(4476,'Thank you so much for the five-star rating! ','2018-05-23 15:13:55.719000'),(4477,'We appreciate the review and great rating. Our community is important to us, so it\'s good to hear that we are doing a good job. Thank you for choosing SignatureCare. ','2018-05-21 19:59:46.201000'),(4478,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our team will make your visit quick and painless. We are sorry that you had to visit more than one medical facility to get the proper diagnosis, but we are glad to hear that SignatureCare was the one that made you feel better. Thanks for giving us the chance to care for you. ','2018-05-18 15:50:19.216000'),(4479,'Their compassion and dedication for helping others is why we love our employees. AND their attention to detail! Thank you for your kind words, and we will pass them along. Thanks for choosing us for your emergency needs. ','2018-05-18 15:24:19.201000'),(4480,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. Our doctors and medical staff thank you for your wonderful feedback, and we will continue to provide excellent care to our patients and families. We hope you are feeling better. ','2018-05-16 17:12:32.609000'),(4481,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. Thanks for choosing SignatureCare and for giving us such a great rating. ','2018-05-15 17:16:37.400000'),(4482,'Thank you for your feedback, it helps us excel at our jobs. We aim for 100% satisfaction at SignatureCare Emergency Center, and we are glad to hear that was your experience with our emergency room. ','2018-05-14 16:02:32.238000'),(4483,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so it’s great to hear that we are doing a good job. Thank you for choosing SignatureCare!','2018-05-10 15:34:54.374000'),(4484,'SignatureCare Emergency Center takes pride in our staff, because our staff cares so much about our patients. We are so very happy to hear about your positive experience at our facility. Thank you for taking the time to leave such a nice review!','2018-04-25 16:53:04.281000'),(4485,'We appreciate you letting us care for you not once, but twice! No one likes the ER, but we are glad to hear our team was quick and efficient during your visit. We will pass along your kind words to them. Thank you for your review. ','2018-04-24 16:52:16.065000'),(4486,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. And thank you for the nice review. ','2018-04-22 16:55:45.544000'),(4487,'We appreciate you taking the time to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2018-04-17 13:11:32.713000'),(4488,'Thank you so much for your feedback and the great rating! Yes, you are right that we do not accept Medicare, but this is not a facility choice. SignatureCare ER is a freestanding emergency room not affiliated with a hospital, and Medicare and Medicaid do not participate with emergency rooms that are not part of a hospital system. We hope this is a policy that changes in the future! But we are very pleased that our team took good care of you while you were here. While we hope not to see you anytime soon, we are here for you 24/7 should the need arise again. Thank you again for your nice review. ','2018-04-12 17:08:22.564000'),(4489,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Thank you so much for the great review. ','2018-04-10 20:30:13.327000'),(4490,'We always appreciate positive feedback from our patients. Thank you for letting us know that we are doing a good job. And thank you for choosing SignatureCare!','2018-04-09 17:16:49.306000'),(4491,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-04-08 19:49:28.187000'),(4492,'Our SignatureCare team aims to treat every patient like a VIP. It\'s great to hear that this was your experience with us. Thanks so much for the great rating and review. ','2018-03-28 18:57:28.001000'),(4493,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. We appreciate you taking the time to review our services. ','2018-03-28 18:56:53.682000'),(4494,'Thank you so much for the five-star rating and great feedback. We appreciate it!','2018-03-22 15:41:55.535000'),(4495,'Your positive experience means a lot to our team. Thank you for choosing SignatureCare Emergency Centers, and please consider us next time you are experiencing a healthcare emergency. ','2018-03-18 16:42:39.351000'),(4496,'Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. We appreciate your positive feedback. ','2018-03-16 15:33:45.302000'),(4497,'While we hope not to see you anytime soon, please know that we are here 24/7 in case of any medical emergency. We appreciate you trusting us with your care, and for taking the time to review SignatureCare. ','2018-03-15 15:52:56.061000'),(4498,'It\'s never fun when your child gets sick, but our team aims to make your child\'s visit with us as pleasant as possible. Thank you for letting us know that we are doing a good job, and thank you for choosing SignatureCare. ','2018-03-15 15:52:09.259000'),(4499,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff aim to make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2018-03-14 17:23:09.407000'),(4500,'Our staff is one of the most qualified emergency room staff in Austin, but the compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2018-03-11 23:01:04.864000'),(4501,'We appreciate you trusting SigatureCare more than once with your medical emergencies. We take pride in our staff, and are very pleased to hear that they took such good care of you. We hope you are feeling better!','2018-03-10 16:18:06.177000'),(4502,'We are very sorry to hear about your billing frustrations. We would like to learn more about your visit and see if we can help you. Can you email info@ercare24.com with your full name, date of service, and location of service so that we can look into your case and review it with you? We appreciate the chance to assist you further. ','2018-03-08 16:59:03.909000'),(4503,'Thank you for letting us know that we are doing a good job in our community. We appreciate the feedback and the five stars! Thanks for choosing SignatureCare. ','2018-03-08 16:56:23.176000'),(4504,'Thank you for your feedback. We take it extremely seriously. We apologize you were unhappy with your experience and would love the chance to talk to you. Can you please email info@ercare24.com with your full name, date of service and location of service so that we can look into your case and review it with our doctors and managers? We appreciate the feedback and the chance to improve our communication and service. ','2018-03-05 14:52:21.036000'),(4505,'SignatureCare is here 24/7 for all your emergency needs. Thank you for trusting us with your care and for taking the time to review us.','2018-02-28 18:02:22.126000'),(4506,'Our doctors are board certified and have excellent bedside manners -- so we\'ve been told numerous times. Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant with us and that you are feeling better. ','2018-02-24 19:48:12.027000'),(4507,'Thanks so much for the five-star rating, Alex. We appreciate the feedback. ','2018-02-24 19:41:37.873000'),(4508,'Thanks for giving us the chance to take care of you. We appreciate the review and great rating.','2018-02-22 18:10:57.408000'),(4509,'Thank you for taking time out of your schedule to review our services and our team. We appreciate your comments and reviews, as they will help us continue to do a great job in our community. Thanks for choosing SignatureCare!','2018-02-20 18:21:29.449000'),(4510,'We appreciate the five stars! Thank you for taking the time to rate us.','2018-02-15 22:46:26.966000'),(4511,'Our staff is some of the most qualified emergency room staff in Austin, but the compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2018-02-13 17:33:28.872000'),(4512,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient\'s need is addressed as quickly as possible so you can get back on the road to great health. Thanks for letting us take care of you!','2018-02-10 16:28:18.402000'),(4513,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-02-09 17:14:48.467000'),(4514,'We will pass your kind words along to our SignatureCare team. They will appreciate you taking the time to let them know how they are doing. Thanks for choosing us!','2018-02-07 17:35:12.575000'),(4515,'At SignatureCare, we want all of our patients to feel like VIPs. It\'s great to hear that this was your experience with our facility and team. Thanks for giving us the chance to take care of you, and for giving us such a great rating. ','2018-02-03 18:10:52.569000'),(4516,'We\'re glad our team was able to help. Thanks so much for the positive feedback. ','2018-02-02 19:58:33.749000'),(4517,'Thanks so much for the feedback! We appreciate the great rating. ','2018-02-02 19:57:41.980000'),(4518,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. We are open 24 hours if you ever need us again. Thanks for choosing us!','2018-02-02 19:56:18.677000'),(4519,'At SignatureCare Emergency Center, we are always looking for ways to improve our services, so we appreciate your feedback. We are so glad to hear that our team took good care of you, especially since you had to spend a few nights with them! Thanks so much for your positive review and for choosing our facility. ','2018-02-01 21:03:27.779000'),(4520,'It\'s never fun when your child gets sick, but SignatureCare wants all parents to know that we will treat your child as if they are our own. Thank you so much for the fantastic review, and we hope your daughter is feeling better. ','2018-01-31 16:01:55.482000'),(4521,'Children are a top priority of our SignatureCare team, and it\'s great to hear that they took such good care of your 4-year-old. We appreciate your very nice review, and hope your daughter is feeling better. ','2018-01-27 17:09:40.451000'),(4522,'Thanks so much for the feedback! We appreciate it, and thanks for choosing SignatureCare. ','2018-01-25 12:56:29.165000'),(4523,'Thank you for the kind words -- it means a lot coming from another healthcare provider. We are glad to hear that our team took good care of you. Thank you for choosing SignatureCare!','2018-01-17 16:51:29.914000'),(4524,'We appreciate you taking the time to review our services. Thank you for giving us your trust and choosing SignatureCare. ','2018-01-16 16:08:06.200000'),(4525,'Short wait times and pleasant staff -- that\'s what we love to hear. Thank you for letting us know how we are doing, and we hope you are feeling better. ','2018-01-10 18:30:50.302000'),(4526,'We are here for you 24/7 whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2018-01-09 18:47:03.464000'),(4527,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. We are sorry that the flu interrupted your holiday, but we hope that we helped you feel a little bit better. Thank you for trusting us with your care. ','2017-12-26 20:58:17.187000'),(4528,'Our SignatureCare team continues to make us proud by taking such good care of our patients. Thank you for letting them take care of you and for the nice review. ','2018-01-09 18:45:41.053000'),(4529,'Thanks so much for the feedback. SignatureCare\'s goal is to get you in and out quickly so you can get back on the road to great health. Thanks for choosing us. ','2018-01-09 18:43:40.506000'),(4530,'Thank you for taking the time to let us know how we are doing. We appreciate the positive feedback and great rating. ','2017-12-30 15:56:19.378000'),(4531,'Thank you for taking time from your busy schedule to write us a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2017-12-14 16:24:47.448000'),(4532,'Thank you for choosing SignatureCare. We appreciate your feedback, as it helps us excel at our jobs. Thanks for the great review!','2017-12-04 22:22:53.442000'),(4533,'We appreciate you taking time from your busy schedule to write us such a positive review. Thank you for choosing SignatureCare. ','2017-12-01 22:46:29.741000'),(4534,'We have the best staff in Texas. SignatureCare Emergency Center takes pride in our staff, and we are so very happy to hear that they took good care of you. We will make sure to let them know. ','2017-11-30 19:42:00.563000'),(4535,'Children cannot always tell us what’s wrong like an adult, but using our state-of-the-art equipment and onsite lab services, SignatureCare is able to quickly diagnose young children. It is never fun when your child gets sick, but when you have an emergency with your child, we are here to help. Thank you for your review, and we hope your child feels better. ','2017-11-15 17:04:32.381000'),(4536,'Thank you for trusting us with the care of your mother-in-law. We love hearing how the staff made her comfortable, and we hope to hear that she is feeling better. Thank you for choosing SignatureCare. ','2017-10-21 19:38:41.578000'),(4537,'Our staff always appreciates receiving feedback like this. Thank you for choosing SignatureCare and for the great rating.','2017-10-14 15:41:34.046000'),(4538,'Children cannot always tell us what’s wrong like an adult, but SignatureCare uses state-of-the-art equipment and onsite lab services to quickly diagnose your little one. Thank you for your review and for giving us the chance to care for your family.','2017-10-05 16:16:48.519000'),(4539,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing SignatureCare. ','2017-09-13 16:05:49.919000'),(4540,'We appreciate the opportunity to take care of all of your family members. We hope we always provide the best care and that you consider us for any future emergencies. Thank you for choosing SignatureCare!','2017-09-12 04:04:23.845000'),(4541,'Update: I gave you the wrong email address -- please email Tray at tmoore@roundtmc.com. Hi there, can you email Tray Moore in our accounting department at tmoore@roundtmc.com so he can review this? We never like to hear about an unhappy patient, so we would like to chance to review exactly what happened in this situation. Thank you!','2017-09-01 14:49:20.301000'),(4542,'Thank you for letting us help you and help you feel better! We hope we put you at ease and provided you with the best care possible. ','2017-08-20 02:34:32.671000'),(4543,'We are very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback, and we will continue to provide excellent care to our patients and families. ','2017-08-16 01:19:36.924000'),(4544,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services, as our patients are what keep us going strong. Thank you for letting us take care of you.','2017-08-01 01:29:39.931000'),(4545,'Our patients are what keep us going strong. At SignatureCare Emergency Center, we are always looking for ways to improve our services, so we appreciate your feedback. Thank you for your positive review, and we hope you feel better.','2017-07-22 16:37:34.786000'),(4546,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-07-20 01:19:01.920000'),(4547,'Thank you for the five-star rating!','2017-07-15 22:25:26.664000'),(4548,'SignatureCare appreciates receiving comments like this. Thank you for letting us take care of you. ','2017-07-11 15:46:32.088000'),(4549,'Thank you so much for your kind words, and for taking the time to review us. We appreciate the great rating, and appreciate you choosing SingatureCare for your care. \n','2017-07-06 18:49:59.672000'),(4550,'The SignatureCare team loves all patients, and our goal is to make each one feel like a VIP during his or her visit. Thank you for letting us take care of you during your medical emergency. ','2017-07-04 14:16:12.083000'),(4551,'Our goals are to provide the best care possible to all patients and ensure friends and families are comfortable while waiting for your diagnosis and treatment. We are very happy to know this was your experience with our emergency room. ','2017-06-30 12:29:47.884000'),(4552,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for choosing us!','2017-06-17 14:12:48.814000'),(4553,'We are sorry to hear about your emergency, but are so pleased to hear that our SignatureCare team took such good care of you. The ER is never a fun place, but we aim to put you at ease and provide you with the best care possible. Thank you for letting us take care of you. ','2017-06-08 14:25:50.242000'),(4554,'What a nice review. It\'s great to hear that our doctor was able to resolve your recurring issue and was able to get you back on the road to good health. Thank you for letting us know, and for the great rating. We appreciate it.','2017-05-25 16:33:23.262000'),(4555,'SignatureCare is extremely proud of our staff -- they always aim to treat our patients like VIPs. We are glad to hear that this was your experience, and that they took care of you quickly and efficiently. Thank you for the nice review and great rating. ','2017-05-25 16:31:21.588000'),(4556,'Thank you so much for the five-star rating!','2017-05-07 21:33:54.584000'),(4557,'Thank you so much for the five-star rating! ','2018-03-22 15:42:06.801000'),(4558,'Thank you so much for your review, Eric. We are happy that our team took good care of your daughter. We hope if there is anything we could have done to earn that fifth star, you will let us know, as we aim for 100% satisfaction each time you visit our facility. Thank you for choosing SignatureCare. ','2018-07-05 16:11:41.780000'),(4559,'Jesse, we\'re glad we were there to help! If you need anything else, be sure to let us know. ','2017-04-27 23:02:14.980000'),(4585,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-13 07:35:40.256000'),(4586,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-13 07:35:27.203000'),(4587,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-09 08:25:59.965000'),(4588,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-09 08:25:33.583000'),(4589,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-09 08:23:48.783000'),(4590,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-09 08:23:33.212000'),(4591,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-02 06:05:21.489000'),(4592,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-01 06:20:09.345000'),(4593,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-09-29 06:10:07.147000'),(4594,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare! Hope your wife feels better.','2019-09-29 06:09:44.248000'),(4595,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-27 06:05:20.806000'),(4596,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-26 11:06:25.533000'),(4597,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-09-25 06:10:16.852000'),(4599,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-24 06:39:25.005000'),(4600,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-24 06:39:08.456000'),(4601,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-09-24 06:38:45.885000'),(4602,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-24 06:38:35.581000'),(4603,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-24 06:38:26.884000'),(4604,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-09-22 06:13:47.480000'),(4605,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-09-15 05:01:33.133000'),(4606,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-09-11 07:06:26.318000'),(4607,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-09-11 07:06:14.026000'),(4608,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-11 07:06:04.585000'),(4609,'Thank you do much for your great rating, Lecia!','2019-09-11 07:05:11.064000'),(4610,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-09-11 07:04:45.542000'),(4611,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-11 07:04:36.506000'),(4612,'We appreciate your great rating, Mathew! Thanks for choosing SignatureCare!','2019-09-11 07:04:23.586000'),(4613,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-11 07:04:08.199000'),(4614,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-11 07:04:00.175000'),(4615,'Thank you so much for your feedback! Our goal is to always provide the abest care. Thank you for choosing SignatureCare.','2019-09-11 07:03:49.384000'),(4616,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-18 06:04:24.624000'),(4617,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-08-18 06:03:54.517000'),(4618,'We\'re not legally allowed to accept Medicare. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-08-14 17:11:55.933000'),(4619,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-08-18 06:03:39.833000'),(4620,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-18 06:03:25.502000'),(4621,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-09-11 07:03:31.701000'),(4622,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare! Hope your brother feels well.','2019-09-11 07:03:05.530000'),(4623,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-11 07:02:40.552000'),(4624,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-11 07:02:26.300000'),(4625,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-10-24 08:41:55.603000'),(4626,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-21 06:13:11.948000'),(4627,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for your granddaughter, and are so glad to hear that she is feeling better. Thank you for choosing SignatureCare!','2019-07-17 06:09:07.918000'),(4628,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-17 06:08:17.652000'),(4629,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-17 06:07:52.842000'),(4630,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-14 06:12:00.470000'),(4631,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-09 08:00:18.964000'),(4632,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-14 06:12:41.619000'),(4633,'Thank you so much for your great rating, Jeimi!','2019-07-07 07:28:33.786000'),(4634,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-10 06:17:31.143000'),(4635,'We believe we have the very best staff in Texas. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-07-10 06:17:12.771000'),(4636,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-07-09 07:10:53.085000'),(4637,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-07-08 06:31:17.026000'),(4638,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-07-07 07:28:46.092000'),(4639,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-03 07:14:18.021000'),(4640,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-07-08 16:37:14.943000'),(4641,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-08 16:37:32.755000'),(4642,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-30 05:54:24.904000'),(4643,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-30 05:54:08.125000'),(4644,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-27 06:06:21.299000'),(4645,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-27 06:04:54.136000'),(4646,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide your friend with the best care possible. We hope she feels better.','2019-06-27 06:04:36.799000'),(4647,'Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-26 06:40:09.986000'),(4648,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-06-26 06:39:15.337000'),(4649,'Thank you for trusting us with the care of your dad. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-06-26 06:38:57.553000'),(4650,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-26 06:38:15.211000'),(4651,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-26 06:37:36.824000'),(4652,'Thank you for your feedback! We appreciate you choosing SignatureCare Emergency Center.','2019-06-26 06:37:09.147000'),(4653,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-24 05:45:00.722000'),(4654,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-24 05:44:42.421000'),(4655,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your kiddo feels better soon!','2019-06-23 05:01:29.797000'),(4656,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-06-23 05:00:04.497000'),(4657,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-23 04:59:25.756000'),(4658,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-23 04:54:22.043000'),(4659,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-23 04:53:21.366000'),(4660,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-06-23 04:46:56.751000'),(4661,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-23 04:42:52.266000'),(4662,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-17 06:37:11.750000'),(4663,'Thank you for your rating, Ben!','2019-06-17 06:36:42.694000'),(4664,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-16 05:58:31.124000'),(4665,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-16 05:58:07.151000'),(4666,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-16 05:57:51.120000'),(4667,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-06-12 06:17:07.899000'),(4668,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-10 05:53:23.522000'),(4669,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-09 08:07:36.363000'),(4670,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-09 08:06:26.318000'),(4671,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-06-09 08:01:11.436000'),(4672,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-06-09 08:00:32.974000'),(4673,'We are glad to know that you loved our staff. Thank you for choosing SignatureCare!','2019-06-09 07:57:57.387000'),(4674,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-09 07:57:00.122000'),(4675,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-09 07:56:49.208000'),(4676,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-09 07:56:43.451000'),(4677,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-09 07:56:12.766000'),(4678,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-09 07:54:58.284000'),(4679,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-09 07:54:31.437000'),(4680,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-05-19 05:26:13.044000'),(4681,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-05-19 05:25:48.604000'),(4682,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-05-19 05:25:25.680000'),(4683,'Thank you so much for your rating, Alexx. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-03-27 05:54:40.101000'),(4684,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-04-24 05:47:49.083000'),(4685,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our staff --- We will make sure to let Keera know. ','2019-04-24 05:49:09.329000'),(4686,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-22 12:30:17.883000'),(4687,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-04-23 21:29:41.922000'),(4688,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-04-22 06:21:47.897000'),(4689,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-04-22 06:16:33.741000'),(4690,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email Jennifer at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-03-11 15:32:20.192000'),(4691,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-04-22 06:20:51.396000'),(4692,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-04-15 05:55:45.337000'),(4693,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-04-15 05:54:04.833000'),(4694,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-04-10 06:59:52.833000'),(4695,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-04-09 07:05:18.248000'),(4696,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-04-08 06:55:16.855000'),(4697,'We appreciate that you continue to put your emergency care in our hands. SignatureCare is here 24/7 if you need us, and we appreciate the nice review. ','2017-05-02 14:27:18.779000'),(4698,'Thank you for your rating, Aasif!','2019-04-07 05:55:04.929000'),(4699,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-04-07 05:54:13.450000'),(4700,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-04-04 05:15:33.778000'),(4701,'Thank you for your rating!','2019-03-28 04:55:41.087000'),(4702,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-03-27 05:53:28.463000'),(4703,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-03-24 07:09:20.354000'),(4704,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-03-24 07:06:52.550000'),(4705,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-03-24 07:06:07.019000'),(4706,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the nice review!','2018-09-24 18:19:27.836000'),(4707,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-03-20 06:54:13.136000'),(4708,'At SignatureCare, we accept most major insurance plans. We are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and rating!','2019-03-20 06:52:53.762000'),(4709,'Thank you so much for your nice review. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-03-19 07:18:10.999000'),(4710,'(Translated by Google) Thank you!\n\n(Original)\nGracias!','2019-04-23 21:32:42.429000'),(4711,'Thank you for your kind words and recommendation. ','2019-03-18 06:25:31.130000'),(4712,'Thanks for your wonderful rating, Charles!','2019-03-18 06:24:04.403000'),(4713,'Thank you so much for the review. We\'re glad to hear you had a comfortable experience with SignatureCare. We aim to make sure all of our patients leave with information about their condition and the ability to reach out any time. If you have any questions or need further care, please don\'t hesitate to get in touch! ','2016-05-25 14:39:56.223000'),(4714,'We are glad to hear that you loved our place. Thank you for your rating and recommending SignatureCare!','2019-03-11 07:11:49.212000'),(4715,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-10 07:48:31.414000'),(4716,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-18 08:26:49.828000'),(4717,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-03 11:24:07.027000'),(4718,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-18 08:26:30.818000'),(4719,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-18 08:24:41.804000'),(4720,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-02-13 12:54:27.824000'),(4721,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-11 13:32:35.788000'),(4722,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-07 13:59:19.829000'),(4723,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. \nWe understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-02-05 14:13:31.186000'),(4724,'Thank you for leaving us a great rating, Stefani!','2019-02-04 13:55:43.785000'),(4725,'Thanks for the 5 star, Kevin!','2019-02-03 12:47:17.292000'),(4726,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-03 12:47:02.899000'),(4727,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-03 12:46:43.754000'),(4728,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team was able to deliver an exceptional experience. -- it means a lot to us. You make us wish there were more stars available.','2019-02-03 12:45:47.804000'),(4729,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-03 12:40:13.780000'),(4730,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-23 14:49:50.856000'),(4731,'Thanks for the 5 star, Vasu!','2019-01-29 14:18:03.493000'),(4732,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-28 09:21:46.118000'),(4733,'Thanks for leaving a great rating!','2019-01-23 14:46:37.349000'),(4734,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-23 14:46:16.584000'),(4735,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-18 16:03:06.948000'),(4736,'Thanks for the 5 star, Jackie!','2019-01-17 06:49:31.195000'),(4737,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback. Thank you for choosing SignatureCare!','2019-01-14 09:40:45.073000'),(4738,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-14 09:41:31.542000'),(4739,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-14 09:42:09.900000'),(4740,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-01-13 09:45:19.495000'),(4741,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-13 09:47:41.016000'),(4742,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-13 09:48:44.136000'),(4743,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-13 09:50:13.632000'),(4744,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for the wonderful feedback!','2019-01-13 09:51:57.824000'),(4745,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-11 17:46:49.618000'),(4746,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-11 17:47:00.329000'),(4747,'James, thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. Our promise to all our patients and families is to treat you like you are our ONLY patient. Thank you for choosing SignatureCare and for the great review.','2019-01-10 10:55:39.171000'),(4748,'At SignatureCare Emergency Center, our number one goal is to treat and diagnose quickly by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your medical needs. ','2019-01-06 18:25:01.488000'),(4749,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-05 00:13:41.391000'),(4750,'Thank you so much for the five-star rating!','2019-01-04 03:43:34.384000'),(4751,'Thank you so much for the five-star rating, Tina! We appreciate the feedback. ','2018-12-21 03:17:46.182000'),(4752,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2018-12-19 16:36:46.686000'),(4753,'Hi Joly, we are sorry to hear that you had a bad experience with us. We would like to get some more information so that we can discuss with our team to improve communication and care. Can you email our medical director at info@ercare24.com with your full name, date of service, location of service, and some particulars about what you were unhappy with so that we can review your file and visit with our team? We appreciate the chance to make this right. Thank you for taking the time to let us know how we are doing. ','2018-12-15 16:06:57.966000'),(4754,'Thank you for the five-star rating!','2018-12-12 19:58:23.695000'),(4755,'Thank you for the nice rating. We appreciate the feedback. ','2018-12-08 14:38:41.681000'),(4756,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2018-12-07 16:33:35.104000'),(4757,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2018-12-01 13:52:07.785000'),(4758,'Thank you so much for your nice review, Lupita. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2018-11-28 02:43:14.794000'),(4759,'Thank you so much for the five-star rating! We appreciate it. ','2018-11-22 17:09:29.819000'),(4760,'We are sorry to hear about your uncle\'s emergency, but are very proud that he chose SignatureCare for his care. We pride ourselves in having some of the newest technology when it comes to medical equipment, which allows us to run tests quickly and begin treatment for your emergency. We are always here 365 days a year, 24 hours a day if your uncle feels sick again. Thank you for your positive review, and we hope he is feeling better. ','2018-11-21 15:38:43.710000'),(4761,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thanks for the nice review and great rating. ','2018-11-20 17:11:34.135000'),(4762,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2018-11-20 17:10:33.048000'),(4763,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2018-11-18 16:25:46.920000'),(4764,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2018-11-15 16:15:05.633000'),(4765,'Hi Abel, I see that you left us a one-star review, but no feedback. It also looks like you left the same rating on our Memorial City location -- can you clarify which location you visited? We take all of our reviews and ratings very seriously and would love some more information on what we did to disappoint you during your visit so that we can do better next time. Please give us some more information so we can pass it along to our team!','2018-11-09 15:12:00.092000'),(4766,'Thank you so much for the five-star rating!','2018-11-08 16:22:44.658000'),(4767,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2018-11-08 16:22:32.796000'),(4768,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2018-11-04 15:53:47.608000'),(4769,'When we receive feedback like this, it helps us know we’re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for choosing SignatureCare!','2018-11-03 13:28:39.511000'),(4770,'Thank you so much for the five-star rating, Raquel!','2018-10-29 16:09:58.961000'),(4771,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out. ','2018-10-20 15:00:13.314000'),(4772,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2018-10-13 14:46:10.151000'),(4773,'Thank you so much for the five-star rating -- we appreciate it!','2018-10-07 17:29:21.561000'),(4774,'Thank you for the five stars, Noemi! We appreciate the feedback. ','2018-10-05 15:53:57.181000'),(4775,'Our goal at SignatureCare is to get you in and out quickly so you can get back on the road to good health. Thank you for letting us know that our team is doing a good job. And thank you for trusting us with your care. ','2018-10-04 15:54:51.351000'),(4776,'What a nice review. Thank you so much for taking time out of your day to let us know how we are doing. We appreciate your review and recommendation. Thank you for choosing SignatureCare. ','2018-10-04 15:53:49.437000'),(4777,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your mom is feeling better!','2018-10-03 22:15:09.721000'),(4778,'Thank you so much for your kind words. We appreciate your trust, and hope that you are feeling better. ','2018-10-03 22:13:35.785000'),(4779,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback. ','2018-10-01 15:53:58.566000'),(4780,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare (time and again!). ','2018-10-01 15:50:54.161000'),(4781,'We appreciate your feedback, great rating, and recommendation. Thank you so much for choosing SignatureCare for your girlfriend\'s needs -- we hope she is feeling better. ','2018-09-30 15:27:11.749000'),(4782,'We are so happy to hear your experience was as it should be when you visit SignatureCare. Thank you for the review and great rating. ','2018-09-29 16:19:08.027000'),(4783,'We appreciate your feedback. Thank you for giving us your trust and for the nice review. ','2018-09-29 16:17:58.493000'),(4784,'Their compassion and dedication to helping others is what makes our team so special. Thank you for trusting SignatureCare with your care and for the nice review. ','2018-09-27 15:42:51.386000'),(4785,'Our staff appreciates receiving comments like this. Thank you for taking the time to let us know how we are doing. And thank you for choosing SignatureCare!','2018-09-27 15:42:04.745000'),(4786,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but SignatureCare\'s doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing us and for the nice review!','2018-09-25 17:00:51.861000'),(4787,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2018-09-25 16:59:36.213000'),(4788,'We appreciate the five-star rating, Leslie!','2018-09-24 18:19:39.200000'),(4789,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2018-09-24 18:18:14.785000'),(4790,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email our business director, Jennifer, at jmartin@ercare24.com with your full name, date of service and location of service so that she can review your file? She will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2018-09-15 19:26:43.802000'),(4791,'Thank you so much for your comments -- we appreciate all reviews! Thank you for choosing \nSignatureCare, and we hope you are feeling better. ','2018-09-23 17:36:01.543000'),(4792,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2018-09-22 16:21:48.524000'),(4793,'Thank you for taking time out of your day to review our location and services. We appreciate and value your feedback! Thank you for choosing SignatureCare. ','2018-09-20 16:54:17.300000'),(4794,'We appreciate your kind words and the great rating you provided. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare. ','2018-09-20 16:52:06.498000'),(4795,'Thank you for taking the time out of your day to let us know how our staff is doing. We appreciate and value your feedback!','2018-09-18 16:26:06.020000'),(4796,'We appreciate the feedback! Thank you for the five stars and for choosing SignatureCare!','2018-09-14 21:04:26.476000'),(4797,'Thank you so much for your feedback and the five-star rating. And thank you for choosing SignatureCare!','2018-09-13 15:01:34.028000'),(4798,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2018-09-12 23:58:08.503000'),(4799,'At SignatureCare Emergency Center, we understand that emergencies happen and no one likes to go to the ER, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. We appreciate your feedback!','2018-09-12 23:56:45.514000'),(4800,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you so much for the nice review. ','2018-09-11 17:18:37.866000'),(4801,'There\'s never a fun time to visit the ER (especially the weekend!), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us. ','2018-09-11 17:18:08.747000'),(4802,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words -- we will pass them along. Thank you for choosing SignatureCare and we hope your mom is doing better. ','2018-09-11 17:16:35.114000'),(4803,'We appreciate you giving us the chance to care for you time and again, and are very pleased to hear that each experience with us is a pleasant one. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare!','2018-09-10 16:06:15.779000'),(4804,'Thank you for your kind words. We value your feedback. Thank you for choosing SignatureCare and for the great rating. ','2018-09-08 15:53:18.552000'),(4805,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2018-09-06 15:59:08.292000'),(4806,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare. ','2018-09-04 15:50:53.081000'),(4807,'Your positive feedback will help our team continue to do a great job for our patients. Thank you for trusting your emergency needs with SignatureCare. ','2018-09-02 18:24:58.437000'),(4808,'We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out. Thank you for choosing us and for the very nice review. ','2018-09-02 18:23:28.802000'),(4809,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2018-09-02 18:21:16.808000'),(4810,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2018-09-02 18:14:29.408000'),(4811,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2018-09-01 21:09:19.408000'),(4812,'Thank you for your feedback -- it helps us excel at our jobs. And thank you for choosing SignatureCare!','2018-08-24 15:24:50.127000'),(4813,'SignatureCare is here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing our facility. ','2018-08-30 16:23:54.524000'),(4814,'We see you updated your review. We would like the opportunity to speak with you and understand what happened. We take complaints very seriously and would appreciate you contacting us. Please send me an email at jmartin@ercare24.com with your information so I can have someone research your visit and contact you. We strive for excellence and I am sorry you felt the billing was not satisfactory for you. But we would like to chance to talk to you and look at everything. We appreciate you giving us the opportunity to speak with you and I will wait to hear from you. Thank you - Jennifer','2018-09-01 21:51:47.300000'),(4815,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2018-08-24 15:23:28.620000'),(4816,'We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better, and thank you for the nice review. ','2018-08-15 18:09:03.398000'),(4817,'We appreciate the five-star rating!','2018-08-09 16:41:05.329000'),(4818,'We appreciate the positive feedback. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare. ','2018-08-05 17:47:19.335000'),(4819,'The ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while their treatment and diagnosis are in process. Thank you for choosing SignatureCare and for taking the time to let us know how we are doing. ','2018-08-05 17:29:12.195000'),(4820,'We\'re glad our SignatureCare team was able to deliver an exceptional experience. Thank you for choosing us and for the nice review. ','2018-08-02 15:34:51.612000'),(4821,'Thank you so much for the five-star rating. We appreciate the feedback!','2018-07-31 23:35:36.461000'),(4822,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2018-07-29 14:16:17.113000'),(4823,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. ','2018-07-24 13:39:30.867000'),(4824,'SignatureCare\'s goal is to get you in and out quickly and on your way back to good health. Thank you for letting us take care of you, and thank you for the great rating and review. ','2017-12-21 18:08:14.246000'),(4825,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for choosing us!','2018-07-24 13:39:59.897000'),(4826,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2018-07-21 17:52:28.260000'),(4827,'We appreciate your kind words, and while we hope not to see you anytime soon, we are here 24/7 in case you need us. Thank you for your trust and for the very nice review. ','2018-07-21 17:52:04.061000'),(4828,'The emergency room can be a scary experience, but at SignatureCare, we aim to put you at ease while our board-certified doctors diagnose and treat you. Thank you for giving us your trust and for taking the time to let us know how we are doing. ','2018-07-20 16:54:33.657000'),(4829,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. And thank you for the great review and rating.','2018-07-20 16:53:20.453000'),(4830,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2018-07-18 14:11:18.687000'),(4831,'Our staff will appreciate hearing your kind words. Thank you so much for the great rating!','2018-07-17 22:52:30.197000'),(4832,'Thank you for your kind words -- we will pass them along to our staff. Thanks for the great rating and for choosing SignatureCare!','2018-07-15 15:58:31.860000'),(4833,'Hi there -- thank you so much for taking the time to rate us. By your rating, it looks like you might have had a not-so-great visit with us. Can you give us some detail so we can discuss with our team? SignatureCare tries to set the standard in emergency care, so your feedback will help us do better!','2018-07-10 17:06:39.968000'),(4834,'Thank you for the five-star rating, Chloe. We appreciate the feedback!','2018-07-01 16:00:49.905000'),(4835,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is taking good care of our community members. Thank you for the great rating and review!','2018-06-30 16:00:38.924000'),(4836,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better. ','2018-06-28 12:15:09.038000'),(4837,'We are very sorry to hear about your recent experience with SignatureCare. We take all reviews and comments very seriously and would like to look into this further. Can you email info@ercare24.com with your full name, date of service and location of service so that we can review your case and talk with our team? We want all patients to feel like they are appreciated and heard, so please give us the chance to look into this further for you. Thank you for your review. \n','2018-06-25 16:32:30.967000'),(4838,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff try to make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the great rating and review. ','2018-06-21 18:46:59.387000'),(4839,'Thank you for choosing SignatureCare and for the fantastic review. We appreciate the feedback!','2018-06-10 17:15:41.585000'),(4840,'Thank you for your kind words -- we will pass them along to our team. And thank you for choosing SignatureCare. ','2018-06-10 17:14:59.410000'),(4841,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We are glad to hear that you are feeling better and we appreciate the nice review. ','2018-06-06 15:26:56.511000'),(4842,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2018-06-05 19:03:41.968000'),(4843,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating. ','2018-06-03 16:06:35.757000'),(4844,'Thank you for the five-star rating, Angela. We appreciate the feedback and support. ','2018-05-29 16:25:09.492000'),(4845,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating. ','2018-05-28 18:34:50.628000'),(4846,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. Thank you for trusting us with your (and your family\'s) care. We appreciate the continued support. ','2018-05-28 18:32:23.951000'),(4847,'Thank you for the five-star rating, Shanti. We appreciate it!','2018-05-22 15:12:23.935000'),(4848,'Thank you for letting us help you and help you feel better! We hope we put you at ease and provided you with the best care possible. Thank you for choosing SignatureCare. ','2018-05-14 16:00:54.643000'),(4849,'Visiting the emergency room is never fun, but our team aims to make your visit as quick and as painless as possible. Thank you for choosing SignatureCare and for the great rating. ','2018-05-13 16:28:47.132000'),(4850,'We are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and SignatureCare is always here whenever you need us.','2018-05-12 19:10:12.905000'),(4851,'Thank you so much for the review and rating. We appreciate your feedback!','2017-01-26 18:05:43.453000'),(4852,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2018-05-05 16:04:52.073000'),(4853,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-05-05 16:04:25.083000'),(4854,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2017-05-28 13:49:18.989000'),(4855,'Thank you for the five-star rating!','2018-05-03 16:16:50.633000'),(4856,'We appreciate and value your feedback. Our patients are what keep us going strong. Thank you for your positive review, and for choosing SignatureCare. ','2018-05-02 16:33:52.256000'),(4857,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. Thank you for choosing us!','2018-04-27 17:07:57.491000'),(4858,'Thank you for the fantastic review. It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for choosing us!','2018-04-20 15:31:11.796000'),(4859,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2018-04-20 15:30:24.068000'),(4860,'Our team appreciates comments like this -- it reminds them how important our community is, and how important it is for us to do a good job. Thank you so much for choosing SignatureCare, and we hope your son is feeling better. ','2018-04-19 17:27:55.554000'),(4861,'Thank you for the five-star rating! We appreciate the feedback. ','2018-04-18 17:02:41.849000'),(4862,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you comfortable during your visit while we help you feel better. Thank you for choosing SignatureCare and for the fantastic review. ','2018-04-09 17:15:49.059000'),(4863,'Thank you so much for the five-star rating!','2018-04-18 17:05:36.221000'),(4864,'No one likes the ER, but we aim to get you in and out quickly and back on the road to good health. Thank you for giving SignatureCare the chance to care for you, and we are so glad to hear that you are feeling better. ','2018-04-04 15:48:49.339000'),(4865,'Our goal is to get you in and out quickly and back on the road to good health. We appreciate you letting us know that our team is doing a good job. Thanks so much for choosing SignatureCare. ','2018-04-18 17:05:26.211000'),(4866,'We appreciate you taking time from your busy schedule to review our services. Thank you for choosing SignatureCare. ','2018-03-31 14:58:01.672000'),(4867,'It is never fun when your child gets sick, but when you have an emergency, SignatureCare is here to help. Thank you for your review and we hope your son feels better soon!','2018-03-27 16:43:05.800000'),(4868,'Thank you for your feedback. We take it extremely seriously. We apologize you were unhappy with your experience and would love the chance to talk to you. Can you email our billing manager, Tray, at tmoore@roundtmc.com with your date of service, location of service and your full name so that we can review your file? We would love the chance to make it right with you. Thank you for your help with this matter!','2018-04-18 17:04:25.011000'),(4869,'We appreciate the feedback, and the very nice review. Thank you for choosing SignatureCare. ','2018-04-18 17:04:47.338000'),(4870,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and for choosing our facility.','2018-03-16 15:36:09.431000'),(4871,'Our staff continues to make us proud each and every day. Thanks for letting us know that they are doing a good job. And thank you for choosing SignatureCare ','2018-03-15 15:54:15.669000'),(4872,'At SignatureCare, we want all of our patients to feel like family, so it\'s great to hear that our team took such good care of you. Thank you for choosing us, and we hope you will consider us for any future medical emergency. Thanks for the nice review!','2018-03-14 17:18:19.792000'),(4873,'We appreciate your kind words. Our team aims to make each and every patient feel like a VIP, so it\'s great to hear that this was your experience with SignatureCare. We are open 24/7 in case you need us again. ','2018-03-13 15:56:28.938000'),(4874,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear about your pleasant and comfortable experience with us. We will pass your kind words along to our team. ','2018-03-04 17:07:52.942000'),(4875,'Thank you for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for the nice review. ','2018-03-03 15:21:16.643000'),(4876,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thanks for the nice review!','2018-03-02 17:48:38.601000'),(4877,'Thank you for the five-star review, Ana -- we appreciate the feedback!','2018-04-18 17:02:17.758000'),(4878,'Thank you for your kind words. We will pass them along to our team. Thanks for choosing SignatureCare. ','2018-02-23 17:04:34.782000'),(4879,'While we hope not to see you anytime soon, we are here 24/7 in case of any medical emergency. Thank you for trusting us with your care and for choosing SignatureCare. ','2018-02-23 17:04:16.880000'),(4880,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-02-17 19:07:37.236000'),(4881,'Thank you for taking the time to leave us such a nice review! We appreciate the feedback and great rating. ','2018-02-14 23:17:52.839000'),(4882,'Thank you so much for the five-star rating. We appreciate the feedback. ','2018-02-12 20:40:15.437000'),(4883,'We appreciate the five-star rating, Amanda!','2018-02-12 20:39:59.394000'),(4884,'Our doctors and nurses care for our patients like they are family. It\'s great to hear that you loved your medical team and that they took good care of you. Thanks for choosing SignatureCare and for the nice review. ','2018-02-12 20:39:44.846000'),(4885,'Thank you for the five-star rating!','2018-02-11 20:00:02.453000'),(4886,'Our dedicated staff always appreciate positive feedback from our patients. Thanks so much for choosing SignatureCare and for the nice review. ','2018-02-10 16:24:21.027000'),(4887,'Thank you for giving us the chance to take care of you. We appreciate your trust. Thanks for the nice review and for choosing SignatureCare!','2018-02-06 16:33:21.180000'),(4888,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thanks so much for the positive review!','2018-02-05 17:28:58.758000'),(4889,'Thanks for your very nice review and great rating. We appreciate the feedback. Thank you for choosing SignatureCare. ','2018-02-03 18:09:21.214000'),(4890,'Thank you for your kind words -- we will pass them along to our team. We appreciate you choosing SignatureCare and hope you are feeling better. ','2018-02-02 19:49:15.258000'),(4891,'We appreciate your feedback and the chance to take care of your medical emergency. Thanks so much for the great rating and for choosing SignatureCare!','2018-02-01 21:05:59.847000'),(4892,'Our goal is to treat each and every patient like a VIP. No one likes the ER, so at least we can make it a little more pleasant for you. Thanks so much for the great review and for giving SignatureCare the chance to care for you. ','2018-02-01 21:05:10.371000'),(4893,'Our community is important to us, so it\'s great to hear that we are doing a good job. Thanks so much for letting us know, and for giving us your trust. ','2018-01-30 14:43:08.257000'),(4894,'Our community is important to us, so it\'s great to hear that we are doing a good job. Thanks so much for choosing SignatureCare Emergency Centers, and we hope you are feeling better. ','2018-01-25 12:58:41.378000'),(4895,'Thank you for your kind words -- we will pass them along to our team. Thanks for choosing SignatureCare and for the great rating. ','2018-01-23 14:06:32.198000'),(4896,'Thank you for taking time out of your day to let us know how we are doing. We appreciate your feedback and thank you for the great rating. ','2018-01-20 17:23:46.494000'),(4897,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our team aims to make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the great rating. ','2018-01-19 16:52:33.993000'),(4898,'Thanks so much for the great rating, Cindy!\n','2017-08-10 01:40:57.898000'),(4899,'Thank you so much for the five stars and the feedback!','2018-01-14 16:50:15.947000'),(4900,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. Thank you for letting us know that your visit with us was pleasant and for taking the time to leave us such a nice review. ','2018-01-13 14:39:17.633000'),(4901,'What a nice review! Our SignatureCare team appreciates receiving comments like this -- it reminds us that we are doing a good job in our community. Thank you for trusting us with your care. ','2018-01-12 16:28:04.908000'),(4902,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers and for taking time out of your day to write us such a positive review. ','2018-01-10 18:26:38.304000'),(4903,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback. Thank you for choosing SignatureCare. ','2017-11-22 14:42:02.622000'),(4904,'Thank you for taking the time to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare and for the great review. ','2018-01-09 18:41:16.072000'),(4905,'Thank you so much for the five-star rating. We appreciate it!','2018-01-02 17:48:54.652000'),(4906,'Thank you so much for letting us know how we are doing. We appreciate you choosing SignatureCare and hope you are feeling better. ','2017-12-31 15:52:15.409000'),(4907,'We are happy to hear that your experience with SignatureCare was pleasant. Thank you for choosing us. ','2017-12-31 15:53:19.981000'),(4908,'Thank you for trusting us with the care of your son. We appreciate your kind words and will pass them along to our team. Thanks for choosing SignatureCare.','2017-12-31 15:53:55.446000'),(4909,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2017-12-31 15:54:18.418000'),(4910,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. Feel better!','2017-12-29 16:15:39.707000'),(4911,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. Our doctors and medical staff thank you for your wonderful feedback, and we will continue to provide excellent care to our patients and families. ','2017-12-29 16:14:54.576000'),(4912,'We love hearing that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review.','2017-11-20 14:15:41.103000'),(4913,'SignatureCare\'s goal is to get you in quickly to see a doctor so that you can get back on the road to good health. Thank you for trusting us with your care and for the very nice feedback. We hope your daughter is feeling better. ','2017-12-26 20:54:56.483000'),(4914,'Thanks for the feedback and the great rating. We appreciate it!','2017-12-16 16:47:33.822000'),(4915,'What a nice review! Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing choosing our facility and we hope you are feeling better. ','2017-12-10 20:05:13.741000'),(4916,'Hi Brandi, thank you for your feedback. We take all complaints very seriously and would like to learn more about your visit. Can you email info@ercare24.com with your full name, date of service, location of service and exactly what happened during your visit so that we can investigate further? We never like to hear about unhappy clients, so please give us the chance to look into this and rectify. Thank you. ','2017-12-09 18:29:47.378000'),(4917,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for taking the time to review us and for choosing SignatureCare. ','2017-12-09 18:30:35.126000'),(4918,'Our staff continues to make us proud! Thank you for giving our SignatureCare team the chance to take care of you, and thanks for the great review. ','2017-12-06 19:32:54.311000'),(4919,'Thank you for choosing SignatureCare, and for the five-star rating.','2017-12-03 20:54:06.827000'),(4920,'Thank you for taking the time to rate us. We appreciate the five stars. ','2017-12-03 20:53:49.423000'),(4921,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare. ','2017-12-03 20:55:52.497000'),(4922,'Thanks so much for the five stars! We appreciate the feedback.','2017-12-03 20:53:09.104000'),(4923,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was exactly that. Thank you for taking the time to review SignatureCare Emergency Centers. ','2017-12-02 17:28:15.156000'),(4924,'Thanks for letting us know. We appreciate you choosing SignatureCare. ','2017-12-01 22:48:05.937000'),(4925,'\nOur goals are to provide the best care possible to all patients. We are very happy to know this was your experience with our emergency room. ','2017-12-01 22:47:45.976000'),(4926,'Thanks for taking the time to let us know how we are doing. We appreciate the feedback and your trust. ','2017-12-01 22:47:06.939000'),(4927,'Thanks so much for the five-star rating. We appreciate the feedback. ','2017-11-29 17:49:48.614000'),(4928,'Thank you for your review -- We always appreciate positive feedback from our patients. ','2016-12-21 18:07:03.014000'),(4929,'Thank you so much for the five-star rating. We appreciate the feedback. ','2017-11-26 16:55:50.602000'),(4931,'Thank you so much for letting us know how we are doing. We appreciate the feedback. Thank you for choosing SignatureCare. ','2017-11-19 15:52:52.038000'),(4932,'Thank you so much for the five-star rating, Johnathan. And thank you for choosing SignatureCare. ','2017-11-17 14:23:41.878000'),(4933,'Thanks so much for the feedback! And thank you for choosing SignatureCare. ','2017-11-15 17:01:11.632000'),(4934,'Thank you so much for the nice review and great rating. Your feedback will help our team continue to do a great job for our community. Thank you for choosing SignatureCare!','2017-11-11 21:13:33.068000'),(4935,'Thank you for taking the time to let us know that our team is doing a good job. We appreciate the feedback!','2017-11-11 21:12:53.787000'),(4936,'Thank you for trusting SignatureCare with the care of your mother. We appreciate the feedback and the great rating. ','2017-11-10 17:10:07.103000'),(4937,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing SignatureCare and for the nice review. ','2017-11-07 16:48:52.630000'),(4938,'Thank you for the five-star rating. We appreciate the feedback.','2017-11-05 16:45:39.144000'),(4939,'Thank you so much for the feedback and great rating!','2017-11-04 15:15:32.355000'),(4940,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review.','2017-11-03 15:59:29.389000'),(4941,'Thank you for the five-star rating!','2017-11-02 20:54:38.152000'),(4942,'We appreciate the five-star rating, Lanetta. Thanks for the feedback. ','2017-10-30 23:24:59.410000'),(4943,'Hi there. Thank you for your feedback -- it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving SignatureCare your trust. ','2017-10-25 16:34:01.572000'),(4944,'Our doctors have excellent bedside manners -- so we\'ve been told many times! Thanks so much for letting us know that our team is doing a good job. We appreciate the feedback.','2017-10-22 19:05:53.843000'),(4945,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. ','2017-10-20 00:40:50.531000'),(4946,'First, we are sorry that you needed an IV- those are never fun for anyone, but we are so glad your experience was as it should be and our nurses and doctors care about the patients they treat. We employ some of the best ER trained staff and we are very proud of them. We hope you feel better and thank you for taking the time to write us a review. ','2017-10-19 15:16:50.273000'),(4947,'Thank you Tanesha for the 5 star review. We are glad you had a good experience. Feel Better!','2017-10-19 15:14:20.283000'),(4948,'We are very happy to know about your positive experience with our emergency room. Thank you for taking the time to rate us, and thank you for choosing SignatureCare. ','2017-10-17 14:48:13.966000'),(4949,'Thank you so much for placing your trust in our team. SignatureCare\'s board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and for the nice review. ','2017-10-15 15:43:07.584000'),(4950,'We appreciate the five-star rating!','2017-08-20 02:24:00.717000'),(4951,'Thank you for the five-star rating!','2017-10-12 14:02:22.438000'),(4952,'At SignatureCare, we want all of our patients to feel like VIPs, and we are pleased to hear that was your experience with our facility. Thank you for choosing us and for trusting us with your care. ','2017-10-11 14:43:39.104000'),(4953,'We want all of our patients to feel like VIPs. Thank you for letting us know that we are doing a good job. And thanks for choosing SignatureCare!','2017-10-09 23:55:46.029000'),(4954,'Thank you so much for the five star rating!\n','2017-10-09 23:55:09.881000'),(4955,'Thank you for the five-star rating!','2017-10-09 00:05:58.866000'),(4956,'Thank you so much for letting us know how we are doing. We appreciate you choosing SignatureCare for your emergency needs. ','2017-10-08 14:30:08.412000'),(4957,'We appreciate the nice review and great rating. Thank you so much for choosing our facility, and we hope you are feeling better. ','2017-10-08 14:29:32.065000'),(4958,'Our staff will appreciate your nice comments -- we will pass them along. Thank you for choosing SignatureCare. ','2017-10-08 14:29:02.117000'),(4959,'The SignatureCare team appreciates your nice comments. The feedback will help us continue to do a great job for our patients. Thank you for choosing our facility. ','2017-10-05 16:14:49.296000'),(4960,'Thank you so much for the feedback. We appreciate the five stars!','2017-07-28 19:06:29.862000'),(4961,'Our staff aims to treat each patient like a VIP, so it\'s great to hear that was your experience with our facility. Thank you for the nice review. ','2017-10-01 14:19:36.771000'),(4962,'Hi Nathan. I notice that you gave us a one-star review, but no explanation. We would like to know what made your experience less than stellar, as we always aim for 100% satisfaction at SignatureCare. Please let us know more about your experience so that we can look into it further. Thank you so much for the feedback.','2017-09-27 02:11:32.241000'),(4963,'We appreciate the five stars, Deltora. Thanks for the feedback!','2017-09-26 13:55:14.100000'),(4964,'Thank you for the five-star rating, Jessica!','2017-09-26 13:54:58.798000'),(4965,'Thank you so much for the nice review and great rating. We appreciate it!','2017-09-25 18:27:15.675000'),(4966,'We appreciate your feedback. Thank you for your review and great rating.','2017-09-25 18:26:58.174000'),(4967,'We are so happy to hear your experience with SignatureCare was a pleasant one. Thank you for the nice review and great rating.','2017-09-23 17:33:36.770000'),(4968,'Thank you for choosing SignatureCare, and for any future recommendations you might send our way. Our community is important to us, and it\'s great to hear that we are doing a good job. Thank you so much for the great rating.','2017-09-22 23:46:00.946000'),(4969,'We appreciate the chance to take care of you during your emergency. SignatureCare is open 24/7 if you need us again. Thanks for the great review and rating!','2017-09-22 23:45:15.259000'),(4970,'Thank you for taking time out of your busy day to leave us such a nice review. We appreciate the feedback. Thank you for choosing SignatureCare. ','2017-09-21 16:53:18.431000'),(4971,'SignatureCare Emergency Center takes pride in our staff, and our nurses care so much about our patients. We will pass along your kind words. Thanks for the nice review. ','2017-09-21 16:54:40.714000'),(4972,'Thank you for the feedback and great rating. We appreciate it!','2017-09-21 16:21:48.419000'),(4973,'At SignatureCare, we aim to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with with our team. ','2017-09-18 14:16:12.568000'),(4974,'At SignatureCare Emergency Center, children are a top priority. Young children cannot always tell us what’s wrong, but using our state-of-the-art equipment and onsite lab services, we are able to quickly diagnose and get you on your way. It is never fun when your child gets sick, but when you have an emergency with your child, we are here to help! Thank you for your review and we hope your child feels better soon. ','2017-09-16 14:24:35.206000'),(4975,'You are welcome! And thank you for choosing SignatureCare for your emergency needs. We hope you are feeling better. ','2017-09-16 14:23:01.795000'),(4976,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2017-09-08 14:56:23.306000'),(4977,'We know you have a choice in emergency care, and we appreciate you choosing SignatureCare. Thanks for the nice review!','2017-09-13 16:04:12.510000'),(4978,'Thank you for the fantastic review. We are very happy to know about your positive experience with SignatureCare Emergency Centers. Thanks for choosing us!\n','2017-09-12 20:59:20.097000'),(4979,'Your family, and your family\'s health, is important to us at SignatureCare. Thank you for trusting us with your emergency needs and for the very nice review. ','2017-09-11 01:02:20.819000'),(4980,'We appreciate the five-star rating!','2017-09-10 13:34:12.243000'),(4981,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2017-09-07 16:15:45.829000'),(4982,'Hi Sarah, thank you so much for the great rating. We hope you will let us know if there is anything we could have done to earn that fifth star -- we always want our patients to be completely satisfied!','2017-09-06 16:00:00.482000'),(4983,'Thank you for letting SignatureCare take care of you. We appreciate the feedback and great rating!','2017-09-05 15:48:59.737000'),(4984,'SignatureCare sets goals on patient satisfaction, so it\'s great to hear we are one step closer to meeting them. Thank you for the nice review. ','2017-05-02 14:26:03.610000'),(4985,'No one likes the ER, but SignatureCare is glad to be here for you when you need us. Thank you for choosing our facility.','2017-09-03 15:04:31.939000'),(4986,'Thank you for letting SignatureCare take care of you. We hope you are feeling better!\n','2017-09-02 21:25:36.185000'),(4987,'Thank you so much for the nice rating. If there is anything we could have done to make it a five-star rating, we hope you will let us know, as we aim for 100% satisfaction. Thank you for the feedback!','2017-09-01 14:50:20.441000'),(4988,'We appreciate the five-star rating!','2017-09-01 14:50:33.928000'),(4989,'Hi Karla, thank you so much for the nice review. We appreciate the opportunity to take care of you, and our staff loves hearing good feedback like this. We do, however, accept all private insurances, so I\'m wondering where you got that information? The only thing we cannot accept is Medicare and Medicaid, but that\'s because they do not participate with freestanding emergency rooms not affiliated with a hospital. Maybe that\'s what you were talking about? We sincerely appreciate the feedback, and we hope you are feeling better!','2017-08-27 18:43:13.062000'),(4990,'We will certainly pass along your kind words. Thanks for letting us know how we are doing, and for the great rating.','2017-08-25 15:52:31.242000'),(4991,'Hi Carlos, it looks like you had a less-than-stellar experience with us. We would love to find out why, and what we could have done to make your experience better. Can you please elaborate so we can pass your comments on to our team? We appreciate it!','2017-08-23 15:52:22.046000'),(4992,'Thank you for the five-star rating!','2017-08-21 16:42:39.621000'),(4993,'We love hearing about the great experiences our patients have. Thank you for choosing SignatureCare!','2017-08-20 02:23:43.977000'),(4994,'Thank you for continuing to trust SignatureCare with your family\'s emergency needs. We appreciate the opportunity to care for them, and we appreciate the great review.','2017-08-16 01:14:17.384000'),(4995,'We appreciate the five-star rating!','2017-08-16 01:13:32.306000'),(4996,'Thank you for the five stars -- we appreciate it!','2017-08-14 13:25:58.402000'),(4997,'We appreciate the five-star rating!','2017-08-14 13:25:39.766000'),(4998,'Having to visit the ER can be scary, but we are glad to know our doctors and nurses were able to keep you calm while getting tested. Thank you for trusting us during your emergency, and we hope you are feeling better.','2017-08-16 01:13:15.500000'),(4999,'We always appreciate positive feedback from our patients. SignatureCare\'s dedicated staff is always here and willing to meet all your healthcare needs 24/7. \n','2017-08-12 01:40:27.699000'),(5000,'We always want our patients to feel like they are VIPs in our facility. Thank you for trusting SignatureCare with your medical needs. We appreciate it, and the nice review. ','2017-08-12 01:39:52.526000'),(5001,'What a nice review! We appreciate feedback like this -- it reminds us that our SignatureCare team is doing a good job in our community. Thank you for choosing us. ','2017-08-12 01:39:07.379000'),(5002,'Thank you so much for the five-star rating. We appreciate the feedback.','2017-08-12 01:38:25.394000'),(5003,'We appreciate this kind of feedback -- it helps us to continue to do a good job in our community. Thank you for trusting SignatureCare. ','2017-08-08 22:40:37.291000'),(5004,'We at SignatureCare want all our patients to feel like family, so it\'s great to hear this was your experience. Thank you for the nice review and rating.','2017-08-07 18:44:12.125000'),(5005,'Thank you so much for the five-star rating!','2017-08-03 13:27:39.416000'),(5006,'Thank you for the five-star rating. We appreciate it.','2017-08-03 13:27:27.915000'),(5007,'Thank you for letting us take care of your little one. We appreciate you trusting us with his care and we hope he is feeling better!\n','2017-08-03 13:27:13.574000'),(5008,'Thank you so much for the great rating!','2017-08-03 13:26:23.428000'),(5009,'We appreciate the five-star rating!\n','2017-08-01 01:24:40.240000'),(5010,'Thank you so much for the great rating!','2017-08-01 01:24:26.320000'),(5011,'SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear your experience was pleasant and we hope you are feeling better.','2017-08-01 01:24:14.057000'),(5012,'Thank you so much for the five star rating!\n','2017-07-29 13:53:40.078000'),(5013,'Thank you for trusting SignatureCare with your emergency needs. We aim to treat all of our patients like VIPs and are pleased to hear this was your experience with our facility. ','2017-07-27 18:06:30.785000'),(5014,'We appreciate the five-star rating!','2017-07-24 02:55:12.950000'),(5015,'Thank you so much for placing your trust in us. SignatureCare\'s board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility. ','2017-07-24 02:55:03.466000'),(5016,'At SignatureCare Emergency Center, our doctors, nurses and medical staff will make you and your friends feel comfortable and able to relax (even if that means a warm blanket!) while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2017-06-25 13:22:16.723000'),(5017,'Thank you so much for the five-star rating!','2017-07-17 14:45:42.334000'),(5018,'Thank you so much for the kind words and great rating. We appreciate it.','2017-07-15 22:07:26.911000'),(5019,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year. It\'s great to hear that our staff took care of you quickly and efficiently, and we hope you feel better. ','2017-07-11 15:28:30.468000'),(5020,'We always appreciate this type of positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-07-09 23:54:02.383000'),(5021,'SignatureCare Emergency Center takes pride in our staff, and we are so very happy to hear you loved them. Thank you for letting us take care of you. ','2017-07-09 23:53:43.088000'),(5022,'We appreciate the five-star rating!\n','2017-07-09 23:52:53.141000'),(5023,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2017-06-17 14:09:47.930000'),(5024,'We are so sorry to hear about your kidney infection (ouch!), but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always treat our patients like VIPs. We hope you feel better. ','2017-07-07 16:47:29.079000'),(5025,'Thank you so much for the five-star review!','2017-03-21 01:09:09.957000'),(5026,'Thank you so much for the great rating. Please let us know if there is anything we could have done better so we have the chance to earn that fifth star!','2017-07-04 14:13:13.773000'),(5027,'Thank you for giving SignatureCare the chance to take care of you. We appreciate the nice review and rating, and hope you will consider us for any future emergency. ','2017-07-04 14:12:46.956000'),(5028,'Thank you for letting us know how we are doing, and for the great rating. ','2017-06-26 16:04:45.580000'),(5029,'Thank you for the feedback and great rating. ','2017-06-22 16:40:31.309000'),(5030,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2017-06-20 16:51:31.571000'),(5031,'SignatureCare Emergency Center takes pride in our staff because our staff cares so much about our patients. We are so very happy to hear that our team took good care of you. We will be sure to let them know. ','2017-06-20 16:50:03.242000'),(5032,'Our team sets goals on patient satisfaction, so it\'s great to hear that we are one step closer to obtaining them. Thank you for choosing SignatureCare and for letting us know how we are doing. ','2017-06-18 20:06:10.602000'),(5033,'Thank you so much for the five-star rating. We appreciate the feedback.','2017-06-18 20:04:04.325000'),(5034,'We appreciate you taking time from your busy schedule to write us a review. Thank you again for choosing SignatureCare Emergency Centers. ','2017-06-17 14:10:19.672000'),(5035,'Thank you for the feedback!','2017-06-15 17:26:11.854000'),(5036,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. We appreciate you choosing us time and again for your care. ','2017-06-14 02:05:25.640000'),(5037,'Our staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2017-06-14 01:57:30.184000'),(5038,'Visiting the ER is stressful enough, so we are very sorry to learn of your billing frustrations. We would very much like to learn more about your particular situation and bill, so please contact our billing dept and speak with Tray Moore, tmoore@roundtmc.com or (832) 699-3777 so he can look into this. We pride ourselves in being a #1 rated emergency room and want all our patients to be happy not only with our emergency centers, but also afterwards. Thank you for your review.','2017-06-10 15:22:57.582000'),(5039,'We appreciate the five-star rating!','2017-09-05 15:47:46.873000'),(5040,'We appreciate your continued business. Thank you so much for the kind words and for letting us know how we are doing!','2017-06-06 01:41:09.060000'),(5041,'Thank you for the five-star rating!','2017-06-07 02:24:55.370000'),(5042,'Thank you for the nice review. We appreciate the feedback. ','2017-06-06 01:42:26.736000'),(5043,'Thank you for the five-star rating, Adan. We appreciate it.','2017-06-06 01:42:02.623000'),(5044,'SignatureCare\'s wait time is usually 10 minutes or less, so it\'s great to hear our team got you in and out quickly. Thank you for letting us serve you, and for the nice review.','2017-06-06 01:41:47.382000'),(5045,'Thank you so much for the five-star rating!\n','2017-06-01 19:10:22.260000'),(5046,'Thank you for choosing SignatureCare and for taking the time to leave us a nice review. We appreciate the feedback. ','2017-06-01 01:36:38.396000'),(5047,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. ','2017-05-21 22:23:10.084000'),(5048,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2017-05-21 22:22:44.488000'),(5049,'We appreciate and value your feedback, because our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2017-05-21 22:22:10.917000'),(5050,'Our staff loves receiving comments like this -- it reminds them that they are doing a good job in our community. Thanks for letting us know!','2017-05-19 15:02:52.826000'),(5051,'Thank you for your nice review, Alma. We appreciate you taking time out of your day to let us know how we are doing. Thanks for choosing SignatureCare. ','2017-05-19 15:02:23.660000'),(5052,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. We appreciate the kind words and great rating.','2017-05-18 00:55:29.070000'),(5053,'Thank you for the great rating, Samin!\n','2017-05-17 00:21:34.441000'),(5054,'Hi Cee, We take your complaint very seriously. I would like to research your visit to our facility to see what happened. Would you please send me an email with your mothers name and the date you brought her to our emergency room? Also can you confirm you came to SignatureCare Emergency Center at 8910 S Hwy 6? We have multiple locations and I want to make sure we check the correct location. We are very sorry to learn about the negative experience and definitely want to find out what happened and who your mother seen while at our center. Thank you and I look forward to hearing from you. You can email me directly at info@ercare24.com. Thanks ','2017-05-15 17:57:29.569000'),(5055,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less. Thank you for giving us the chance to serve you and for the great review.','2017-05-14 13:57:15.318000'),(5056,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for your great review and rating.','2016-12-01 18:51:53.843000'),(5057,'Thank you for the great rating!','2017-05-12 19:54:09.499000'),(5058,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for taking the time to review our facility.','2017-05-12 19:56:41.274000'),(5059,'Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for the kind words. ','2017-05-12 19:55:58.626000'),(5060,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear that our team took good care of you. We will make sure to let them know. ','2017-05-10 23:08:18.420000'); INSERT INTO `review_reply` VALUES (5061,'Thank you for taking time out of your day to let us know how we are doing. We appreciate the feedback. ','2017-05-10 23:07:07.285000'),(5062,'We appreciate you taking time out of your day to review us. Thank you for choosing our facility. ','2017-05-08 17:59:02.782000'),(5063,'Thank you so much for rating us, Carlos. We hope you consider us in the future for your emergency needs, and maybe give us a chance to earn that fifth star! ','2017-05-08 17:58:39.683000'),(5064,'We appreciate the five-star rating.','2017-05-06 13:32:40.653000'),(5065,'Thank you for letting us take care of you during your recent emergency, and for any future recommendations. We appreciate it, and the nice review. ','2017-05-06 13:32:26.751000'),(5066,'We are very sorry to learn of your billing frustrations. Visiting the ER in itself is stressful enough. We would very much like to learn more of what happen in your particular situation. Since we do not have the patients name and date of service its hard for me to find out, but if you would please contact our billing dept and speak with Tray Moore, tmoore@roundtmc.com or 832-699-3777 he would very much like to learn more about your experience. We pride ourselves in being a #1 rated emergency room and want all our patients to be happy not only with our emergency centers, but also afterwards. Its very important to us. Please contact Tray directly and have him look into this for you. We hope your uncle is feeling much better and we hope that you will consider our emergency centers in the future. Thank you','2017-05-05 16:25:25.339000'),(5067,'We appreciate you taking time out of your busy schedule to leave us a nice review. It\'s great to hear that our team took good care of you and that you feel you would visit us again in an emergency. While we hope not to see you anytime soon, just know that SignatureCare is here for you 24/7 if the need arises. Thank you for the nice review. ','2017-05-02 14:25:13.556000'),(5068,'Thank you so much for the nice words and great rating!\n','2017-05-02 14:24:02.123000'),(5069,'Our goal at SignatureCare is go get you in and out quickly, and on your way back to good health. It\'s great to hear this was your experience with us. Thank you for letting us serve you. ','2017-04-30 16:03:47.558000'),(5070,'Thank you for the five-star rating. We appreciate it.','2017-04-27 14:20:45.919000'),(5071,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but we appreciate you choosing SignatureCare. Thanks for the nice review.','2017-04-26 02:37:31.140000'),(5072,'Thank you for your nice words about your staff. They appreciate your comments and great rating.','2017-04-26 02:36:23.284000'),(5073,'Thank you so much for the kind words and great rating. We appreciate it.','2017-04-23 17:01:56.341000'),(5074,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2017-04-14 16:18:25.808000'),(5075,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-04-14 16:17:57.965000'),(5076,'SignatureCare Emergency Center\'s doctors have great bedside manners -- or so we\'ve been told! We are glad to hear that this was your experience. Thank you for the great review. ','2017-02-07 18:52:32.508000'),(5077,'Hi Rida, we are sorry that you felt like your visit with us was unsatisfactory. We would love to hear why so that we can have an opportunity to make it right. Please let us know, specifically, what you felt was the problem so we can address directly. Thank you!','2017-04-13 14:07:59.705000'),(5078,'Thank you so much for taking the time to rate us and leave a review. And thank you for choosing SignatureCare!','2017-04-10 14:56:12.902000'),(5079,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was a positive one. Thank you for the fantastic review, and please know that we are always open and available when you have an unexpected emergency. \n','2017-04-10 14:55:56.519000'),(5080,'Thank you for letting us know how we are doing. We always aim for 100% satisfaction.','2017-03-31 21:45:13.124000'),(5081,'We appreciate comments like this, as it lets us know our staff is doing a good job. Thanks for letting us know!','2017-03-31 21:44:53.296000'),(5082,'Thank you for the five-star rating, Kyle!','2017-03-30 01:17:58.615000'),(5083,'Thank you so much for the review, rating, and any future recommendations. We appreciate the opportunity to serve you.','2017-03-29 01:08:22.682000'),(5084,'SignatureCare appreciates your feedback. Thank you for the great rating.','2017-03-28 00:00:16.112000'),(5085,'SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear your experience was pleasant. We will make sure to let them know. ','2017-03-27 19:55:37.160000'),(5086,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for giving us the chance to help you feel better.','2017-03-23 17:57:03.736000'),(5087,'We appreciate the five-star rating, Robin!','2017-03-21 01:37:06.352000'),(5088,'Thank you so much for the kind words and great review. We appreciate it.','2017-04-29 18:50:10.541000'),(5089,'Thank you so much for the great rating, Maria. We appreciate it so much.','2017-03-21 01:37:22.498000'),(5090,'Thank you so much for the positive feedback. Although we hope to not see you soon, SignatureCare is here when you do have an unexpected emergency. ','2017-03-21 01:36:52.163000'),(5091,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and for any future recommendations!\n','2017-03-21 01:36:09.695000'),(5092,'Thank you for taking the time out of your day to let us know how we are doing. We appreciate the feedback and the great rating.','2017-03-21 01:35:37.753000'),(5093,'Thank you so much for the great review and rating. It\'s comments like this that help us continue to do a great job for our patients. ','2017-03-21 01:07:37.821000'),(5094,'We are sorry you felt like your physician wasn\'t caring -- we never want to hear that from our patients. We would love to discuss the specifics with you, and hope you will email us at info@ercare24.com so we can discuss and do what we can to make it right. Thank you for your feedback. ','2017-03-21 01:19:26.069000'),(5095,'We try to provide the best care possible to all patients, and are very happy to know this was your experience with our emergency room. Thank you for choosing SignatureCare. ','2017-03-16 02:05:25.723000'),(5096,'It\'s always great to hear that our SignatureCare team did a great job taking care of you and that you were pleased with your care. Thank you for the review and rating.','2017-03-15 01:11:28.122000'),(5097,'Thank you so much for the great rating. We appreciate it!','2017-03-12 20:05:32.957000'),(5098,'We appreciate the great rating!','2017-03-09 16:18:17.356000'),(5099,'We are pleased to hear that your experience with SignatureCare was great. Thank you for letting us know!','2017-03-09 16:18:05.293000'),(5100,'Thank you for the five star rating!','2017-03-09 16:17:21.226000'),(5101,'We appreciate comments like this. Thank you for your feedback!','2017-03-05 15:12:35.523000'),(5102,'Thank you for the feedback and great rating. We appreciate it.','2017-03-05 15:12:18.910000'),(5103,'Thank you for the five-star rating!','2017-03-03 21:07:15.483000'),(5104,'Thank you so much for your review and rating. When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Thank you for giving us your trust, and let us know if there is anything we could have done to earn that fifth star!','2017-03-02 14:01:03.899000'),(5105,'We always appreciate positive feedback from our patients. SignatureCare is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2017-03-01 01:48:20.086000'),(5106,'Children are a top priority of all our staff and doctors at SignatureCare Emergency Center. Children cannot always tell us what’s wrong like an adult, but using our state-of-the-art equipment and onsite lab services, we are able to quickly diagnose young children. Thank you for your review and we hope your child feels better soon!','2017-02-23 17:48:50.846000'),(5107,'Thank you for continuing to choose SignatureCare Emergency for your emergency needs. We appreciate your nice review and rating, and we always appreciate referrals!','2017-02-23 17:47:23.396000'),(5108,'Thank you for your nice review. We are glad we were able to get you in and out quickly, as that is our goal with all of our patients: to get you back to good health quickly. Thank you for choosing us.','2017-02-23 17:46:22.501000'),(5109,'Thank you for your nice review and rating. We always appreciate patient feedback!','2017-02-21 23:29:19.340000'),(5110,'Our SignatureCare Emergency team aims to get you in and out quickly and on your way back to good health. We are glad to hear that our team delivered and we hope you are feeling better.!','2017-02-21 01:01:28.812000'),(5111,'Thank you so much for your review of SignatureCare Emergency. We appreciate your feedback.','2017-02-21 01:00:19.593000'),(5112,'Thank you for the five-star rating!','2017-02-18 13:20:08.502000'),(5113,'Thank you for taking the time to leave us such a nice review. We appreciate the feedback. ','2017-02-18 13:19:55.445000'),(5114,'We are so pleased to hear that your experience at SignatureCare Emergency was exactly as it should be. Thank you for your nice review. ','2017-02-16 00:29:31.031000'),(5115,'Thank you so much for your feedback. We appreciate it and will let our front desk know that they are doing a good job!','2017-02-11 23:45:06.077000'),(5116,'Thank you so much for letting us know that the SignatureCare Emergency staff is doing a good job. We appreciate the feedback!','2017-02-09 02:56:10.867000'),(5117,'We are glad that we were able to take care of you quickly and efficiently. Thank you for leaving us a nice review and telling us how our reception staff is doing -- we will be sure to let them know. ','2017-02-09 02:47:51.903000'),(5118,'No wait time is our specialty! Thank you for taking the time to leave us a nice review and rating. We appreciate it!\n','2017-02-09 02:45:50.643000'),(5119,'We are glad to hear that the staff at SignatureCare Emergency is doing a great job. Thanks for the feedback!','2017-02-06 16:51:16.933000'),(5120,'Thank you so much for your great review and rating. We appreciate it!','2017-02-06 16:50:50.914000'),(5121,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-02-06 16:50:24.779000'),(5122,'Thank you so much for the great rating and for your kind comments. We appreciate it.','2017-02-02 02:58:39.816000'),(5123,'Thank you so much for your review and rating. Your comments help us do a great job!','2017-01-31 04:33:58.923000'),(5124,'Thank you for taking the time to leave us such a nice review and rating. We appreciate it.','2017-01-30 02:28:10.310000'),(5125,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our team put you at ease and provided you with the best care possible. ','2017-01-29 02:31:47.482000'),(5126,'Thank you so much for the five-star rating!\n','2017-01-25 00:38:47.820000'),(5127,'Thank you so much for the great rating -- we appreciate your feedback!','2017-01-23 20:32:56.413000'),(5128,'We are very sorry to learn that you felt you did have a great experience. We do accept all forms of insurance and self pay patients. Our doctors are board certified and we always provide a free medical evaluation and never collect any payment unless you agree to treatment. If deemed emergent we will make payment arrangements and proceed with medical treatment. I will have someone reach out to you about your specific situation to see what we could have done better and to learn more. We strive for excellence and sorry if you did not experience this when visiting our ER. We hope you will give us the opportunity to speak with you and consider visiting one of our facilities in the future. ','2017-01-19 20:10:13.361000'),(5129,'Thank You for the 5 star rating! We appreciate it!','2017-01-19 20:10:40.951000'),(5130,'We are glad to know everything went well for your visit to our ER. Thanks for choosing SignatureCare Emergency Center. ','2017-01-19 20:11:14.281000'),(5131,'Thank you for the great rating. If there is anything we could have done to earn that last star, please let us know!','2017-01-16 15:26:02.422000'),(5132,'We are glad to hear that our staff and your experience was pleasant. Thank you for the great rating.','2017-01-13 17:39:02.231000'),(5133,'Thank you for taking the time to rate us. We appreciate the five stars. ','2017-01-13 17:38:29.511000'),(5134,'Thank you so much for the five-star rating. We appreciate it.','2017-01-13 17:38:07.021000'),(5135,'Thank you for taking the time to rate our facility, Juanita. Please let us know if there is anything we could have done to earn a higher rating. Our goal is to make sure every customer is completely satisfied!','2016-10-30 22:06:07.246000'),(5136,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review and rating!','2017-01-08 19:02:07.626000'),(5137,'Thank you for the nice review, Candace. We are glad to hear our staff was pleasant and thank you for choosing us!','2017-01-05 03:11:03.827000'),(5138,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2017-01-04 03:38:58.578000'),(5139,'Thank you so much for the great rating!','2017-01-04 03:38:32.930000'),(5140,'Thank you for the great review. We are very proud of our staff and love how they love our patients. We hope you are feeling better!','2017-01-04 03:35:48.888000'),(5141,'Thank you for the five-star rating!','2017-01-02 12:34:50.688000'),(5142,'Thank you for your feedback and the great rating. We appreciate it!','2017-01-02 12:34:30.895000'),(5143,'Thank you for the good rating. If there is anything we could have done to make it a five-star rating, please let us know!','2016-12-29 15:47:50.334000'),(5144,'Thank you for the five-star rating!','2016-12-29 15:47:20.293000'),(5145,'Thank you for your feedback! We are happy to hear your experience with SignatureCare Emergency was a good one. ','2016-12-26 18:27:04.270000'),(5146,'Our goal is to provide the best care possible to all patients. We are very happy to know this was your experience with our emergency room. ','2016-12-21 18:07:46.544000'),(5147,'Thank you for the four-star rating. If there is anything we could have done to make it a five-star rating, we hope you will let us know! Thank you for your feedback. ','2016-12-20 01:25:43.545000'),(5148,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2016-12-20 01:25:08.431000'),(5149,'Your positive experience means a lot to our team at SignatureCare Emergency Center. We will definitely let them know that you had a great experience. Thank you for choosing us, and please consider us next time you are experiencing an emergency. ','2016-12-15 01:21:56.314000'),(5150,'SignatureCare Emergency Center strives to treat our patients and get them on their quickly. No one likes the ER, but we are glad to be here for you when you need us. ','2016-12-15 01:21:14.836000'),(5151,'Thank you for the great rating, Audrey. I am sorry to hear that you had to wait a bit, but we hope we made it worth your while once you saw the doctor. We always aim for 100% satisfaction, and while we hope not to see you soon, if you do have another medical emergency, we hope you will give us another chance to prove we can be QUICK and effective! Let us know if there is anything else we can do for you. ','2016-12-07 03:29:25.335000'),(5152,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year when you do have an emergency. We hope you feel better. ','2016-12-05 16:06:32.745000'),(5153,'Thank you for bringing your experience to our attention. SignatureCare strives on providing excellent medical care and attention to our patients from the check in process to seeing one of board-certified physicians. All patients should feel like they are attended to immediately when arriving to one of our centers and we are sorry to learn you felt this was not your experience. While we are a fast growing emergency center, and training is a must, this should absolutely not affect your experience when coming to our center. Again, we are sorry to learn you felt it did. We would very much like the opportunity to speak with you and learn more about your experience. One of our managers will reach out to you personally to learn more about what you felt we could have done differently. We hope you will allow us the opportunity to speak with you and consider our emergency rooms again in the future. ','2016-12-03 22:10:27.878000'),(5154,'We appreciate your positive feedback. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-12-03 16:29:42.329000'),(5155,'Our registration staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2016-12-01 18:51:11.480000'),(5156,'Thank you for the great review. We are glad to hear that so many of your family members come here and hope we always provide them with exemplary service!','2016-12-01 18:50:21.557000'),(5157,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2016-10-28 16:21:20.496000'),(5158,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2016-11-30 02:31:43.653000'),(5159,'Thank you for taking the time to rate us, and for the five-star rating.','2016-11-28 17:42:01.559000'),(5160,'Thank you for the five-star rating!','2016-11-28 17:41:37.973000'),(5161,'We are very sorry to hear you did not feel you had a good experience. First, I would like to say all of our doctors are board certified physicians and every patient does see a doctor when visiting SignatureCare Emergency Centers. We strive to provide excellent medical care and our patients opinions are extremely important to us. We are an emergency room and function exactly like a hospital emergency room for insurance billing purposes. It sounds like you received an Explanation of Benefits (EOB) from your insurance company, which is not a bill from us, however, we would very much like to discuss this with you. Please contact Tray Moore at our billing company. tmoore@roundtmc.com or 832-699-3777 ext 124 to discuss. If you would prefer he can contact you, please email him your contact info and he would be happy to reach out to you. Again, we are very sad to learn you did not feel you had the best experience and would like the opportunity to work with you. We hope you will give us the opportunity to discuss your specific visit and consider our emergency room in the future. Thank You. ','2016-11-28 20:21:55.660000'),(5162,'We appreciate you taking the time to leave us a great rating!','2016-11-23 00:25:51.191000'),(5163,'Thank you for the five-star rating. We appreciate it.','2016-11-23 00:25:02.820000'),(5164,'Thank you for the five-star rating. We appreciate your input!','2016-11-22 02:35:25.115000'),(5165,'Our goal is to provide the best care possible to all patients and ensure you are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience!','2016-11-22 02:36:21.039000'),(5166,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for giving us your trust. ','2016-11-22 02:35:07.168000'),(5167,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-11-17 20:02:34.465000'),(5168,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-11-16 17:34:16.783000'),(5169,'Hi there. Thank you for your feedback. When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-11-16 17:33:49.556000'),(5170,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2016-11-16 17:33:13.371000'),(5171,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2016-11-16 17:32:49.293000'),(5172,'Thank you for the four-star rating, Anita. We hope you had a great experience and will let us know if there\'s anything we could have done to earn a 5-star rating. Thank you again!','2016-11-16 17:32:12.190000'),(5173,'Thank you for the five-star rating!','2016-11-14 13:52:35.643000'),(5174,'Thank you so much for your feedback. ','2016-12-07 16:42:26.732000'),(5175,'Thank you for the great rating. We are glad our staff was helpful and we hope you are feeling better!','2016-11-12 00:37:05.002000'),(5176,'We are so sorry to hear about your friend\'s recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope your friend feels better!','2016-11-12 00:36:20.002000'),(5177,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-11-11 03:15:07.861000'),(5178,'Thank you for the five-star rating!','2016-11-11 03:14:42.486000'),(5179,'We always appreciate positive feedback from our patients. We are always here and willing to meet all your healthcare needs 24/7. ','2016-11-11 03:14:10.039000'),(5180,'We appreciate you taking time from your busy schedule to write us a positive review. Thank you again for choosing SignatureCare Emergency Centers. ','2016-11-03 02:13:23.889000'),(5181,'Thank you for your 5 star rating. We appreciate it!','2016-12-07 16:43:02.501000'),(5182,'We are pleased to hear that you liked the staff at SignatureCare Emergency Centers. While we hope not to see you soon, please know that we are always here in case of emergency. Thank you for your review and rating. ','2016-11-07 20:34:03.102000'),(5183,'We are pleased to hear that we were able to get you in and out quickly and on your way back to good health. Thank you for choosing SignatureCare and for the great rating. ','2016-11-06 14:57:27.819000'),(5184,'We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. Thank you for the great rating. ','2016-11-03 02:12:49.951000'),(5185,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2016-10-24 01:31:39.993000'),(5186,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this because we want everyone who walks through the doors at SignatureCare to feel like a VIP. We hope if you ever have another emergency, you will give us a chance to earn that five-star rating. Thank you again!','2016-10-19 01:18:37.469000'),(5187,'Thank you so much for the great review. We appreciate you taking time out of your day. We are sorry we were not able to get to you as fast as we would have liked, but hope if you ever have another emergency, you\'ll give us another chance to earn that last star! Thank you again for your rating and review. ','2016-10-15 22:34:51.311000'),(5188,'Thank you for the five-star rating!','2016-10-14 17:52:41.132000'),(5189,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2016-10-10 13:43:25.686000'),(5190,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2016-10-06 00:09:55.576000'),(5191,'You are most welcome, and thank you for the good rating. Please let us know if there is anything we could have done to make it a five-star rating!','2016-10-04 14:52:28.278000'),(5192,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-10-04 14:52:46.913000'),(5193,'We always appreciate your positive feedback. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-10-04 14:51:55.663000'),(5194,'Thank you for the five-star rating!','2016-10-04 14:51:22.100000'),(5195,'Thank you for the great rating. We are glad we were able to get you in and out so quickly and hope you are feeling better!','2016-10-04 14:51:06.767000'),(5196,'We have some of the best receptionists, doctors and nurses in Texas. SignatureCare Emergency Center takes pride in our staff, and they care so much about our patients. We are so very happy to hear you loved our staff. We will make sure to let them know. ','2016-10-02 18:42:57.555000'),(5197,'Thank you for the review and rating, Donna. We are glad to hear our staff was attentive and we hope you are feeling better!','2016-09-29 20:28:08.648000'),(5198,'We are glad to hear we were able to help you and get you on your way quickly. Please consider us next time you have an emergency.','2016-09-27 01:52:48.812000'),(5199,'Thank you for the five-star rating!','2016-09-27 01:52:08.328000'),(5200,'Thank you for the five-star rating!','2016-09-24 14:04:06.415000'),(5201,'Our team at SignatureCare knows that your time is valuable. Thank you so much for your positive feedback, we appreciate it. ','2016-09-24 14:04:41.929000'),(5202,'Thank you for letting us help you and help you feel better! We hope we put you at ease and provided you with the best care possible. ','2016-09-14 00:26:52.329000'),(5203,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-09-14 00:26:22.917000'),(5204,'SignatureCare Emergency Center takes pride in our staff, and they care so much about our patients. We are glad to hear you loved them. We will make sure to let them know. ','2016-09-12 01:27:21.115000'),(5205,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-09-07 02:19:56.782000'),(5206,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2016-09-07 02:19:39.085000'),(5207,'Thank you for letting us help you and help you feel better! ','2016-09-07 02:18:39.822000'),(5208,'When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for your feedback!','2016-09-07 00:52:37.361000'),(5209,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-09-04 17:02:43.135000'),(5210,'Thank you, Jasmine, for taking the time to leave us a great rating and review. We appreciate your feedback!\n','2016-08-24 02:39:03.444000'),(5211,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2016-08-23 01:34:38.778000'),(5212,'Thank you for the five-star rating! We appreciate it.','2016-08-23 01:31:56.487000'),(5213,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-08-18 02:03:39.005000'),(5214,'Thank you for your review and for any future recommendations, Shanecia!','2016-08-16 00:57:32.249000'),(5215,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you for choosing us!','2016-08-13 01:32:28.002000'),(5216,'SignatureCare Emergency Center takes great pride in having board-certified physicians. We are very sorry to hear you did not feel you had a great experience. We value our partnerships with Doctors and other professionals. Please contact us to discuss your situation. We sent you an email with our contact information. We look forward to speaking with you. ','2016-08-11 14:48:49.357000'),(5217,'We appreciate you taking time from your busy schedule to write us such a positive review. Thank you for choosing SignatureCare Emergency Centers. ','2016-08-08 21:46:54.258000'),(5218,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2016-07-31 15:15:45.359000'),(5219,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time need emergency care.','2016-07-27 22:57:01.946000'),(5220,'Thank you for the great review!','2016-07-27 22:56:11.177000'),(5221,'Thank you for the four-star rating, Jennifer! If there is anything we could have done to make it a five-star, please let us know. We hope you are feeling better!','2016-07-26 01:31:42.890000'),(5222,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2016-07-25 01:41:17.851000'),(5223,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. ','2016-07-23 14:05:25.872000'),(5224,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all of your healthcare needs 24/7. ','2016-07-22 01:03:32.108000'),(5225,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2016-07-11 22:47:58.870000'),(5226,'What a great review, and from someone in the industry! SignatureCare Emergency Room is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant as we strive for excellence each time you come to one of our emergency rooms. Thank you for the great review!','2016-07-11 22:41:47.517000'),(5227,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-06-09 14:44:41.605000'),(5228,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff put you at ease and provided you with the best care possible. ','2016-07-04 12:06:42.081000'),(5229,'SignatureCare Emergency Centers have a much shorter wait time than a hospital; usually 10 minutes or less, and our doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. ','2016-07-02 01:13:18.141000'),(5230,'Thank you for the five-star rating and for trusting SignatureCare with your medical needs. ','2016-06-27 01:15:23.709000'),(5231,'Thank you for the five-star rating! We appreciate your feedback.','2016-06-27 01:14:35.620000'),(5232,'We are very sad to learn that you felt your experience was unpleasant during your recent visit to our emergency room. Our goal is to treat all patients with respect and kindness, not only during their visits to our emergency rooms, but anytime we have contact with any patients. If you would like to discuss your specific situation with our staff- we would be more than happy to address any concerns you have - please feel free to call us at 832-699-3777 ext 109. Again, we are sorry you did not feel you had a pleasant experience and hope you will consider us again in the future. ','2016-06-21 17:20:54.665000'),(5233,'We appreciate you taking time from your busy schedule to write us such a positive review. Thank you for choosing SignatureCare Emergency Centers not once, but three times!','2016-06-21 01:36:07.122000'),(5234,'Thank you for your five-star review! We are always here in case of emergency and are pleased you chose us to serve you.','2016-06-17 00:40:27.939000'),(5235,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! ','2016-06-12 15:07:19.477000'),(5236,'Thank you for letting us help you and help you feel better! We hope we put you at ease and provided you with the best care possible. ','2016-08-26 03:07:28.732000'),(5237,'Thank you for choosing SignatureCare and for the fantastic review. We hope we don\'t see you again soon, but if you have another medical emergency, we are here for you!','2016-08-26 03:09:15.772000'),(5238,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-06-09 14:44:09.199000'),(5239,'The board-certified team at SignatureCare care deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your little one. If you need peace of mind in the future, don’t hesitate to contact us. ','2016-06-08 14:00:06.668000'),(5240,'Hi there. Thank you for your feedback. When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-06-08 13:59:22.133000'),(5241,'I apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. We would love to discuss this incident with you and get more details so we can make it right. ','2016-06-07 14:21:21.250000'),(5242,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust with our medical team. ','2016-06-07 14:19:43.606000'),(5243,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2016-06-06 16:50:52.693000'),(5244,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-06-06 16:50:26.697000'),(5245,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-06-03 14:09:29.213000'),(5246,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2016-06-01 14:06:36.148000'),(5247,'The board-certified team at SignatureCare care deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your little one. If you need peace of mind in the future, don’t hesitate to contact us. ','2016-06-01 14:06:55.396000'),(5248,'We love hearing about the great experiences our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-05-31 13:40:18.886000'),(5249,'Hi there. Thank you for your feedback. When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-05-31 13:40:02.463000'),(5250,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-05-27 13:52:14.157000'),(5251,'Thank you for leaving feedback! If there is anything we could have done to make your experience five stars, please let us know! ','2016-05-25 14:39:11.796000'),(5252,'The board-certified team at SignatureCare care deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you for entrusting our team with the care of your little one. If you need peace of mind in the future, don’t hesitate to contact us. ','2016-05-24 19:24:02.183000'),(5253,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-05-23 19:20:53.883000'),(5254,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-05-23 19:20:37.043000'),(5255,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-05-24 19:24:09.655000'),(5256,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-05-24 19:24:25.805000'),(5257,'Thank you so much for leaving a review! We appreciate it. ','2016-05-24 19:24:45.612000'),(5258,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and let us know if you have any further questions about your treatment. ','2016-05-24 19:24:56.663000'),(5259,'Thank you for taking the time to leave feedback. Our team appreciates it. ','2016-05-24 19:25:15.936000'),(5260,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust with our medical team. ','2016-05-24 19:25:24.508000'),(5261,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2016-05-24 19:27:01.784000'),(5262,'Thank you for taking the time to leave a review! We\'re glad to hear you had a five-star experience. ','2016-05-24 19:26:50.800000'),(5263,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-05-24 19:26:36.088000'),(5264,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-05-24 19:26:17.648000'),(5265,'Hi there. Thank you for your feedback. When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-05-24 19:25:56.415000'),(5266,'Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. ','2016-05-24 19:25:48.742000'),(5267,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2016-05-24 19:25:38.330000'),(5268,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-05-24 19:25:30.127000'),(5269,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-08-26 03:11:19.727000'),(5270,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review.\n','2016-08-26 03:12:01.423000'),(5271,'Thank you for the positive review!','2016-08-26 03:12:16.824000'),(5272,'Thank you for the five-star review. We will pass along your kind words to our staff. ','2016-08-26 03:12:35.872000'),(5273,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-08-26 03:13:39.811000'),(5274,'Our registration staff and nurses are some of the most qualified in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kinds words, and we will pass them along. ','2016-08-29 14:40:36.987000'),(5275,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility.','2016-08-29 14:42:15.692000'),(5276,'Thank you for your feedback. When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-08-29 14:42:47.236000'),(5277,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-08-29 14:43:07.951000'),(5278,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. ','2016-08-29 14:43:40.636000'),(5279,'Thank you for the five-star rating!','2016-08-29 14:43:59.450000'),(5280,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-08-29 14:44:19.411000'),(5281,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us.','2016-08-29 14:45:05.566000'),(5282,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2016-08-29 14:45:45.695000'),(5283,'Thank you for the great rating, Juliet! Please let us know if there is anything we could have done better to make it a five-star rating and please consider us if you have any future emergency needs. ','2016-08-29 14:46:42.178000'),(5284,'Thank you for the four-star rating, and please let us know if there is anything we could have done better to bring that rating up!','2016-08-29 14:47:20.790000'),(5285,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-08-29 15:08:42.372000'),(5286,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2016-08-29 15:09:04.286000'),(5287,'Thank you for the five-star rating, Monica!','2016-08-29 15:09:18.981000'),(5288,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2016-08-29 15:09:40.234000'),(5289,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your medical needs. ','2016-08-29 15:10:46.476000'),(5290,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER. We are glad to be here for you when you need us. ','2016-08-29 15:11:07.253000'),(5291,'Thank you for the five-star rating, Ayesha!','2016-08-29 15:11:25.093000'),(5292,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2016-08-29 15:11:45.764000'),(5293,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for the great review.','2016-08-29 15:12:38.831000'),(5294,'Thank you for your feedback. When we receive feedback like this, it helps us know we’re doing something right in our Houston community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2016-08-29 15:13:30.169000'),(5295,'Our registration staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kinds words, and we will pass them along. ','2016-08-29 15:14:10.947000'),(5296,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2016-08-29 15:14:29.604000'),(5297,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-08-29 15:14:52.278000'),(5298,'Our goals are to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. ','2016-08-29 15:16:44.769000'),(5299,'Thank you so much for the positive feedback. We appreciate your comments and reviews. ','2016-08-29 15:17:13.294000'),(5300,'Michelle, \n\nWe\'re so pleased you had an exceptional experience with SignatureCare Emergency Center. If you are ever in need of anything else, please don\'t hesitate to reach out to us! \n\nThanks, \nThe SignatureCare Emergency Center Team','2015-04-30 15:22:50.031000'),(5301,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2016-08-29 15:18:01.942000'),(5302,'Thank you for the great rating, Felicia. We will pass your comments along to our staff. ','2016-08-29 15:18:28.812000'),(5303,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience.','2016-08-29 15:19:08.332000'),(5304,'“Thank you for your feedback and allowing us to address the situation. We understand your frustration.\n \nAt SignatureCare Emergency Center we are committed to exceptional care and patient satisfaction. Our emergency medicine physicians and pediatricians are trained to treat children of all ages. Our team of physicians are board-certified with emergency medicine residencies and have worked at almost all major hospital emergency departments in Houston. \n \nWe truly believe in the care we provide at SignatureCare and are committed to every family having a great experience. If you have any other questions or we can help in any way, please contact us directly at (281) 258-4351.”','2015-02-13 22:36:44.917000'),(5305,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2016-08-29 15:20:27.537000'),(5306,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-08-29 15:20:53.493000'),(5307,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-01-06 07:15:38.730000'),(5308,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your kiddo is feeling better!','2020-01-06 07:00:20.811000'),(5309,'Thank you so much for your rating, Alexandra. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-01-05 06:39:43.996000'),(5310,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-05 06:39:06.359000'),(5311,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-02 05:20:52.472000'),(5312,'Thank you for rating us five star!','2019-06-13 06:41:01.865000'),(5313,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-01 07:34:48.944000'),(5314,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-31 04:53:12.482000'),(5315,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-31 04:53:02.369000'),(5316,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-31 04:52:51.572000'),(5317,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-31 04:52:40.065000'),(5318,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-31 04:52:31.741000'),(5319,'We appreciate your great rating, Jenny!','2019-12-29 06:25:07.672000'),(5320,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-29 06:24:50.400000'),(5321,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-29 06:24:39.921000'),(5322,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-12-29 06:24:26.677000'),(5323,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-29 06:24:06.544000'),(5324,'Thank you so much for your great rating, Michael!','2019-12-29 06:23:47.614000'),(5325,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-29 06:23:13.745000'),(5327,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-26 08:00:27.445000'),(5328,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-26 08:00:07.115000'),(5329,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-26 07:59:58.466000'),(5330,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-26 07:59:15.093000'),(5331,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-26 07:58:08.145000'),(5332,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your kiddo feels better soon!','2019-12-24 06:59:34.301000'),(5333,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-24 06:58:35.825000'),(5334,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-23 08:09:54.491000'),(5335,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-23 08:09:34.879000'),(5336,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-23 08:08:05.126000'),(5337,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-23 08:07:44.435000'),(5338,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-23 08:07:36.705000'),(5339,'We sincerely appreciate your continued trust. Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him. We are here for you whenever the medical emergency need arises. Thanks again for choosing SignatureCare Emergency Center.','2019-12-23 08:07:15.852000'),(5340,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-22 08:23:39.981000'),(5341,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-22 08:23:24.507000'),(5342,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-12-22 08:23:08.646000'),(5343,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-22 08:22:56.097000'),(5344,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your brother. Thank you for choosing SignatureCare.','2019-12-22 08:22:48.079000'),(5345,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-22 08:22:20.471000'),(5346,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-22 08:22:01.270000'),(5347,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-22 08:21:53.575000'),(5348,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-12-22 08:21:47.651000'),(5349,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-22 08:21:34.013000'),(5350,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-19 06:19:21.031000'),(5351,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-18 07:36:41.925000'),(5352,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-18 07:36:24.617000'),(5353,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-12-18 07:35:56.343000'),(5354,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-12-17 06:09:47.084000'),(5355,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again! Hope your mom is feeling well.','2019-12-17 06:04:24.609000'),(5356,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 06:48:50.254000'),(5357,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-15 06:48:31.472000'),(5358,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-12-15 06:48:20.903000'),(5359,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-15 06:48:00.064000'),(5360,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-15 06:47:48.119000'),(5361,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:47:32.064000'),(5362,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 06:47:11.253000'),(5363,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:47:02.064000'),(5364,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:46:49.614000'),(5365,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-15 06:46:26.755000'),(5366,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:46:11.678000'),(5367,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-28 07:49:34.278000'),(5368,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-22 05:59:50.083000'),(5369,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-01 08:20:57.116000'),(5370,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:45:57.329000'),(5371,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:45:48.719000'),(5372,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. Hope your wife is feeling better.','2019-12-15 06:45:33.727000'),(5373,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-15 06:45:03.219000'),(5374,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 06:44:49.598000'),(5375,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:44:35.635000'),(5376,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-15 06:44:21.201000'),(5377,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:44:12.203000'),(5378,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-15 06:44:01.993000'),(5379,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-12-05 07:11:04.926000'),(5380,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-05 07:10:56.688000'),(5381,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-05 07:10:46.087000'),(5382,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-05 07:10:30.021000'),(5383,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review! Hope your girlfriend is feeling well!','2019-12-05 07:10:09.336000'),(5384,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2018-12-20 19:21:09.039000'),(5385,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-04 07:10:29.801000'),(5386,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-04 07:10:07.607000'),(5387,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-04 07:09:45.958000'),(5388,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-02 06:55:51.315000'),(5389,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-02 06:55:38.445000'),(5390,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-02 06:55:31.074000'),(5391,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-02 06:55:12.251000'),(5392,'We appreciate your great rating, Loren!','2019-12-02 06:54:50.168000'),(5393,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-01 08:20:25.706000'),(5394,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare! Hope your sister in law is feeling well.','2019-12-01 08:20:11.351000'),(5395,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-28 07:49:16.193000'),(5396,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-28 07:48:59.827000'),(5397,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-28 07:33:54.162000'),(5398,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-28 07:32:37.658000'),(5399,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-11-28 07:31:39.842000'),(5400,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-11-28 07:31:28.567000'),(5401,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-11-28 07:30:29.932000'),(5402,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-02 06:56:04.707000'),(5403,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-11-26 05:44:41.240000'),(5404,'Thank you so much for your nice review, Mahesh. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-11-25 06:56:00.324000'),(5405,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-24 06:59:59.296000'),(5406,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-24 06:59:37.525000'),(5407,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-07-15 07:06:14.866000'),(5408,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-24 06:59:22.854000'),(5409,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-24 06:59:07.190000'),(5410,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-21 06:48:31.065000'),(5411,'We appreciate the great rating you gave us, Jaime!','2019-11-21 06:47:40.994000'),(5412,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-21 06:47:13.341000'),(5413,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-21 06:46:51.277000'),(5414,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-21 06:46:39.827000'),(5415,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-20 06:16:27.614000'),(5416,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-20 06:16:13.843000'),(5417,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-20 06:15:59.523000'),(5418,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him','2019-11-20 06:14:50.099000'),(5419,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-11-20 06:14:26.585000'),(5420,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-20 06:14:15.579000'),(5421,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs.','2019-11-19 06:21:55.725000'),(5422,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-19 06:21:31.365000'),(5423,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-19 06:21:18.365000'),(5424,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-19 06:21:07.163000'),(5425,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-11-19 06:20:56.590000'),(5426,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-11-19 06:20:37.518000'),(5427,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-19 06:20:20.077000'),(5428,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-19 06:20:06.783000'),(5429,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-18 05:53:58.192000'),(5430,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-18 05:53:46.618000'),(5431,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-17 07:13:33.990000'),(5432,'Thank you so much for your five star rating, Jason!','2019-11-17 07:12:46.781000'),(5433,'Thank you so much for your nice review, Johns We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-11-17 07:12:16.131000'),(5434,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-17 07:11:54.456000'),(5435,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-14 10:04:49.765000'),(5436,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-14 10:04:30.882000'),(5437,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-11-14 10:04:16.754000'),(5438,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-13 06:41:40.207000'),(5439,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-11-13 06:41:18.418000'),(5440,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-12 07:39:07.034000'),(5441,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-12 07:39:00.362000'),(5442,'Thank you for trusting us with the care of your child. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-11-12 07:38:37.520000'),(5443,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-12 07:38:01.855000'),(5444,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-12 07:37:49.595000'),(5445,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-11 07:32:29.996000'),(5446,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-11 07:32:13.745000'),(5447,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-11 07:31:50.230000'),(5448,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-11 07:31:29.140000'),(5449,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-11 07:31:16.679000'),(5450,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your wife is feeling better.','2019-11-11 07:31:02.769000'),(5451,'We appreciate your great rating, Latecia!','2019-11-11 07:30:04.099000'),(5452,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-11 07:29:44.650000'),(5453,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-11-11 07:29:30.100000'),(5454,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-11-11 07:29:11.889000'),(5455,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-11-11 07:27:46.244000'),(5456,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-11 07:27:28.643000'),(5457,'Thank you so much for your nice review, Trena. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-11-11 07:26:44.073000'),(5458,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-07 04:44:24.597000'),(5459,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-06 07:49:33.265000'),(5460,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-06 07:50:16.560000'),(5461,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-11-06 07:50:04.921000'),(5462,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-06 07:49:45.530000'),(5463,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-06 07:49:20.144000'),(5464,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-11-06 07:49:01.928000'),(5465,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-06 07:48:25.064000'),(5466,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-06 07:48:13.301000'),(5467,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-03 06:26:05.229000'),(5468,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-11-03 06:25:54.484000'),(5469,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare! Hope your brother is feeling well.','2019-11-03 06:25:24.848000'),(5470,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-03 06:23:23.144000'),(5471,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-03 06:20:47.441000'),(5472,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-27 08:23:59.496000'),(5473,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-29 05:46:48.318000'),(5474,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-29 05:46:35.150000'),(5475,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-10-27 08:36:00.444000'),(5476,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-10-27 08:35:44.734000'),(5477,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-27 08:24:15.739000'),(5478,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-27 08:23:44.868000'),(5479,'Thank you for your great rating, Angela!','2019-10-29 05:46:23.529000'),(5480,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-27 08:23:33.728000'),(5481,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-27 08:23:14.387000'),(5482,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-27 08:22:55.722000'),(5483,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-24 08:04:04.298000'),(5484,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-23 06:39:58.278000'),(5485,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-24 08:04:16.124000'),(5486,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-24 08:04:26.408000'),(5487,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-23 06:41:08.113000'),(5488,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-10-23 06:40:44.032000'),(5489,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-23 06:33:43.249000'),(5490,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-10-23 06:33:27.671000'),(5491,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-23 06:32:44.891000'),(5492,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-23 06:32:31.032000'),(5493,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-23 06:13:12.069000'),(5494,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-21 07:02:27.934000'),(5495,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-21 07:02:08.136000'),(5496,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-21 07:01:50.099000'),(5497,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-21 07:01:32.761000'),(5498,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-20 06:34:36.200000'),(5499,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-20 06:34:15.908000'),(5500,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-20 06:34:06.446000'),(5501,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-16 07:21:20.285000'),(5502,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. Hope your wife feels better now.','2019-10-16 07:21:09.673000'),(5503,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-16 07:19:53.150000'),(5504,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-16 07:19:00.952000'),(5505,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-16 07:18:29.006000'),(5506,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-15 06:40:14.961000'),(5507,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-14 06:26:52.122000'),(5508,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-10-14 06:26:35.686000'),(5509,'We appreciate your great rating, Devaun!','2019-10-13 06:57:06.030000'),(5510,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-13 06:56:39.741000'),(5511,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-13 06:56:27.940000'),(5512,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-10-13 06:56:04.181000'),(5513,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when child gets sick, but we are here to help. Thank you for your review and we hope your nephew feels better soon!','2019-10-09 08:14:37.353000'),(5514,'Thank you so much for your five star rating, Slava!','2019-10-09 08:13:36.955000'),(5515,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-10-09 08:13:00.580000'),(5516,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-09 08:12:40.691000'),(5517,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-09 08:12:26.332000'),(5518,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-09 08:12:12.235000'),(5519,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-09 08:11:43.050000'),(5520,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-09 08:11:12.076000'),(5521,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-09 08:10:42.453000'),(5522,'We appreciate your great rating, Thank you for choosing us, David!','2019-10-09 08:10:23.659000'),(5523,'Thank you so much for your great rating, Lasandra!','2019-10-03 07:20:00.594000'),(5524,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-03 07:19:24.500000'),(5525,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-02 06:04:23.837000'),(5526,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-02 06:03:23.133000'),(5527,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-02 06:02:00.271000'),(5528,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-02 06:00:10.717000'),(5529,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-01 06:14:09.781000'),(5530,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-01 06:13:59.163000'),(5531,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-10-01 06:13:40.606000'),(5532,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-01 06:13:23.076000'),(5533,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-01 06:12:58.858000'),(5534,'Thank you so much for your great rating, Josh!','2019-09-29 05:58:38.325000'),(5535,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-09-29 05:58:08.540000'),(5536,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-09-29 05:57:59.230000'),(5537,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-26 11:05:05.857000'),(5538,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-26 11:04:51.803000'),(5539,'We appreciate your great rating, Meredith! Thanks for choosing SignatureCare!','2019-09-26 11:04:29.504000'),(5540,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-23 05:40:55.677000'),(5541,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-09-23 05:32:22.503000'),(5542,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-19 09:19:39.280000'),(5543,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-19 09:19:28.064000'),(5544,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-09-19 09:19:16.403000'),(5545,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-19 09:18:57.215000'),(5546,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-17 11:48:06.980000'),(5547,'We appreciate the great rating you gave us, Rey!','2019-09-16 11:15:38.934000'),(5548,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-15 04:55:45.558000'),(5549,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-26 05:06:31.147000'),(5550,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-15 04:54:58.957000'),(5551,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-15 04:55:09.439000'),(5552,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-09-15 04:54:39.105000'),(5553,'Thank you so much for giving us five star!','2019-09-11 05:36:40.250000'),(5554,'Thank you for your great rating, Marcus!','2019-09-11 05:36:09.552000'),(5555,'We appreciate your great rating. Thanks for choosing SignatureCare!','2019-09-11 05:35:48.163000'),(5556,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-09-11 05:35:21.249000'),(5557,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-09-11 05:35:13.453000'),(5558,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-11 05:34:51.571000'),(5559,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-11 05:34:37.882000'),(5560,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-11 05:34:27.365000'),(5561,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-09-11 05:34:11.150000'),(5562,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-11 05:33:50.968000'),(5563,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-11 05:19:50.613000'),(5564,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-09-11 05:19:27.396000'),(5565,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-09-11 05:19:08.760000'),(5566,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-11 05:18:38.359000'),(5567,'Thank you so much for your nice review, Marleny. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-09-11 05:17:59.207000'),(5568,'Thank you so much for your feedback. We appreciate the great rating you gave us, Joshua!','2019-08-25 05:17:49.549000'),(5569,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-08-25 05:05:52.125000'),(5570,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-08-25 05:06:14.697000'),(5571,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-22 04:57:44.260000'),(5572,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-08-22 04:57:36.625000'),(5574,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-08-21 04:49:33.596000'),(5575,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-21 04:49:17.397000'),(5576,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-21 04:49:05.225000'),(5577,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-20 04:33:50.649000'),(5578,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-20 04:33:29.987000'),(5579,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-08-18 05:31:06.923000'),(5580,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-08-18 05:30:50.265000'),(5581,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-08-18 05:30:29.202000'),(5582,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-08-18 05:30:19.491000'),(5583,'We are so happy to hear you loved our team. Thank you for choosing SignatureCare!','2019-08-18 05:30:01.285000'),(5584,'Thank you so much for rating us five star, Lakeisha!','2019-08-18 05:28:58.470000'),(5585,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-18 05:28:30.179000'),(5586,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-18 05:28:12.650000'),(5587,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-08-18 05:33:35.998000'),(5588,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 05:27:47.191000'),(5589,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-08-18 05:27:25.777000'),(5590,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-08-18 05:27:08.648000'),(5591,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-08-18 05:26:47.362000'),(5592,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 05:26:14.952000'),(5593,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-08-18 05:25:50.610000'),(5594,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-08-18 05:25:21.048000'),(5595,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-08-18 05:24:41.526000'),(5596,'We believe we have the very best staff in Texas. Thank you for choosing SignatureCare!','2019-08-18 05:24:20.067000'),(5597,'Thank you so much for taking the time to let us know about your experience at SignatureCare. We appreciate the great review and rating.','2019-08-18 05:23:32.014000'),(5598,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-08-18 05:21:46.450000'),(5599,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-18 05:21:23.817000'),(5600,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-18 05:21:05.414000'),(5601,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-18 05:20:30.114000'),(5602,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 05:20:16.390000'),(5603,'We want everyone who walks through our doors to feel like a VIP. Our promise to all our patients and families is to treat you like you are our ONLY patient. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-04-10 06:54:26.618000'),(5604,'Thank you for trusting us with the care of your dad. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-08-04 05:23:28.850000'),(5605,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-04 05:22:58.273000'),(5606,'We appreciate the great rating you gave us, Sakina!','2019-08-04 05:21:05.348000'),(5607,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-08-04 05:20:36.548000'),(5608,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-04 05:20:17.505000'),(5609,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-08-04 05:20:03.957000'),(5610,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-05-19 05:15:19.206000'),(5611,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-01 03:32:26.907000'),(5612,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-31 06:46:13.011000'),(5613,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-31 06:46:02.290000'),(5614,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-31 06:45:41.377000'),(5615,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-31 06:44:30.420000'),(5616,'Thank you for your five star rating, Shania!','2019-07-30 06:25:43.649000'),(5617,'Thank you for leaving us a great rating. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-26 12:48:44.388000'),(5618,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-30 06:26:07.178000'),(5619,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-29 06:10:35.477000'),(5620,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-13 05:58:20.772000'),(5621,'Thank you so much for your great rating, Gary!','2019-07-28 07:06:10.384000'),(5622,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-07-28 07:04:52.029000'),(5623,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-28 07:03:57.342000'),(5624,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-07-28 07:03:02.725000'),(5625,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-07-28 07:02:44.324000'),(5626,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-28 07:01:58.382000'),(5627,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-07-23 05:38:41.611000'),(5628,'Thank you so much for your rating, Stacy!','2019-07-22 07:24:09.988000'),(5629,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-21 06:07:43.277000'),(5630,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-17 06:06:48.365000'),(5631,'Thank you for your five star rating, Patrick!','2019-07-17 06:03:16.043000'),(5632,'Thank you Erick, for your wonderful rating!','2019-07-16 05:12:34.658000'),(5633,'Thank you so much for your feedback!','2019-07-14 06:06:32.045000'),(5634,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-14 06:06:04.617000'),(5635,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-14 06:05:13.814000'),(5636,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-14 06:04:49.858000'),(5637,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-14 06:04:37.541000'),(5638,'Thank you for your five star rating, Gabbyy!','2019-07-14 06:04:15.368000'),(5639,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-07-14 06:03:41.294000'),(5640,'Thank you so much for rating us five star, Daniel!','2019-07-14 06:03:26.804000'),(5641,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-14 06:02:55.599000'),(5642,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better. ','2019-07-14 06:02:25.118000'),(5643,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-07-14 06:01:54.933000'),(5644,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-14 06:01:17.926000'),(5645,'(Translated by Google) Thank you for trusting your husband\'s care. We appreciate the excellent comments and we are pleased to know that our team took good care of your husband.\n\n(Original)\nGracias por confiarnos el cuidado de su esposo. Apreciamos los excelentes comentarios y nos complace saber que nuestro equipo cuidó bien de su esposo.','2019-07-24 06:41:06.958000'),(5646,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-10 06:12:23.918000'),(5647,'Thank you for giving us five star!','2019-07-10 06:12:06.249000'),(5648,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-07-10 06:11:36.496000'),(5649,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-07-10 06:11:27.195000'),(5650,'Thank you for rating us, Candice!','2019-07-10 06:11:08.248000'),(5651,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare. Hope your best friend feels better.','2019-07-10 06:10:47.735000'),(5652,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-10 06:09:49.099000'),(5653,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-09 07:09:19.448000'),(5654,'Thank you for your review and your rating. We appreciate you choosing SignatureCare!','2019-07-09 07:08:55.395000'),(5655,'Thank you for rating us!','2019-07-09 07:07:57.239000'),(5656,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-09 07:07:42.985000'),(5657,'We appreciate the great rating you gave us, Ayesha!','2019-07-09 07:07:26.321000'),(5658,'Thank you so much for your great rating, Janae!','2019-07-09 07:06:42.053000'),(5659,'Thank you so much for your feedback! SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-07-08 06:22:08.545000'),(5660,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-07-07 07:21:21.538000'),(5661,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-07 07:20:58.394000'),(5662,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-04 07:30:55.212000'),(5663,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-04 07:30:41.247000'),(5664,'Thank you for rating us five star, Pelon!','2019-07-04 07:30:29.277000'),(5665,'Thank you do much for the great rating you gave us!','2019-07-04 07:30:00.895000'),(5666,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-04 07:29:29.845000'),(5667,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-04 07:29:02.246000'),(5668,'Thank you for your five star rating, Meadow!','2019-07-04 07:27:29.131000'),(5669,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-04 07:27:09.644000'),(5670,'Thank you for the wonderful feedback and five star rating!','2019-07-04 07:26:40.077000'),(5671,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-07-04 07:23:25.143000'),(5672,'Thank you so much for taking the time to let us know about your experience at SignatureCare. We appreciate the great review and rating.','2019-07-01 07:33:25.850000'),(5673,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-06-30 05:49:12.331000'),(5674,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-30 05:48:05.169000'),(5675,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-30 05:47:21.665000'),(5676,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-26 06:22:01.860000'),(5677,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your husband. We appreciate the great review and rating.','2019-06-25 06:59:15.055000'),(5678,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-25 06:58:30.103000'),(5679,'Thank you for your great rating, Jason!','2019-06-24 05:36:50.564000'),(5680,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-24 05:36:34.204000'),(5681,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-23 04:35:55.256000'),(5682,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-23 04:35:37.529000'),(5683,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-23 04:35:22.211000'),(5684,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-23 04:35:02.667000'),(5685,'Thank you for your rating!','2019-06-23 04:34:10.511000'),(5686,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-23 04:33:56.311000'),(5687,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-23 04:32:52.838000'),(5688,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-06-23 04:32:09.348000'),(5689,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-19 14:11:30.320000'),(5690,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-19 06:08:13.090000'),(5691,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-06-19 06:06:44.086000'),(5692,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your husband at ease and provide him with the best care possible. We hope he feels better.','2019-06-18 06:36:08.750000'),(5693,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-18 06:34:51.040000'),(5694,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-18 06:32:00.118000'),(5695,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-17 06:18:29.087000'),(5696,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-17 06:18:05.036000'),(5697,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. Hope your friend is feeling better!','2019-06-17 06:17:04.026000'),(5698,'Thank you for rating us five star, Adrian!','2019-06-17 06:14:25.739000'),(5699,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us. ','2019-06-17 06:13:21.463000'),(5700,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-06-16 05:49:38.539000'),(5701,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-16 05:49:21.486000'),(5702,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-13 06:42:34.937000'),(5703,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-06-12 06:06:04.095000'),(5704,'Thank you for your great rating, Brittney!','2019-06-12 06:06:56.646000'),(5705,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-10 05:50:47.245000'),(5706,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-06-10 05:47:07.429000'),(5707,'Thank you for your review and rating!','2019-06-09 07:07:50.869000'),(5708,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-09 07:07:22.662000'),(5709,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-06-09 07:06:51.919000'),(5710,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-06-09 07:06:34.568000'),(5711,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-09 07:06:23.081000'),(5712,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-09 07:05:43.939000'),(5713,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-09 07:05:11.416000'),(5714,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-09 07:04:54.375000'),(5715,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-04 16:59:22.693000'),(5716,'Thank you for your five star rating, Christina!','2019-05-28 05:42:58.309000'),(5717,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-06-04 16:59:37.521000'),(5718,'Hi, Sunny. Did you mean to place the 1 star, or was that in error? Can you send us an email at info@ercare24.com so we have a better understanding of what we could have done better to earn those 5 stars?','2019-06-04 16:57:06.387000'),(5719,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-29 06:25:56.158000'),(5720,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-05-28 05:42:30.149000'),(5721,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-05-27 05:53:47.529000'),(5722,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-27 05:53:34.248000'),(5723,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-05-27 05:53:09.961000'),(5724,'Thank you for your rating, Sonia!','2019-05-27 05:52:52.741000'),(5725,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-05-26 06:23:15.063000'),(5726,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-29 06:28:45.892000'),(5727,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-23 06:32:29.406000'),(5728,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-05-22 05:27:44.425000'),(5729,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-06-18 06:37:11.463000'),(5730,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-05-22 05:27:23.982000'),(5731,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-22 05:27:00.107000'),(5732,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-20 05:06:15.488000'),(5733,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-05-20 05:05:47.405000'),(5734,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-05-20 05:05:15.545000'),(5736,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-05-19 05:16:42.366000'),(5737,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-19 05:17:24.956000'),(5738,'Thank you for your rating, George!','2019-05-16 06:36:12.803000'),(5739,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-15 06:31:30.425000'),(5740,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-05-14 04:32:18.851000'),(5741,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-14 04:31:53.431000'),(5742,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-14 04:31:33.629000'),(5743,'Thank you so much for your nice review, Kris. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-05-12 04:48:40.923000'),(5744,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-12 04:48:17.125000'),(5745,'Thank you so much for your nice review, Lily. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-05-02 09:10:42.177000'),(5746,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-05-20 05:07:37.330000'),(5747,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-05-20 05:07:55.245000'),(5748,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-05-20 05:08:29.301000'),(5749,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2019-05-09 04:06:16.431000'),(5750,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of your daughter.','2019-05-05 06:30:22.766000'),(5751,'Thank you for your valuable review and rating!','2019-05-02 09:10:13.248000'),(5752,'Thank you for your review and rating, Ansar!','2019-05-02 09:09:44.883000'),(5753,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-05-02 09:09:17.796000'),(5754,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-02 09:09:03.769000'),(5755,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of your child.','2019-05-02 09:06:10.327000'),(5756,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your grand-baby feels better soon!','2019-05-02 09:05:33.673000'),(5757,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your little one is feeling better. ','2019-05-02 09:11:16.270000'),(5758,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-04-26 09:00:12.848000'),(5759,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-04-26 08:49:18.056000'),(5760,'\nOur team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-26 08:46:53.832000'),(5761,'Thank you for your review and rating, Jennie!','2019-04-24 05:38:17.323000'),(5762,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for your review and recommendation.','2019-04-24 05:38:34.586000'),(5763,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-04-23 05:48:05.410000'),(5764,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for your husband. Thank you for choosing SignatureCare!','2019-04-23 05:47:18.753000'),(5765,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. We appreciate you giving SignatureCare your trust time and again for your medical emergencies. Thank you so much for your nice review and great rating. ','2019-04-22 06:04:28.640000'),(5766,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your rating.','2019-04-22 06:00:19.902000'),(5767,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-22 05:59:31.902000'),(5768,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-04-18 05:19:25.877000'),(5769,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-04-17 07:08:06.389000'),(5770,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-04-17 07:07:04.797000'),(5771,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-04-08 19:11:49.445000'),(5772,'Thank you for your rating, Katherine!','2019-04-15 05:37:22.612000'),(5773,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-04-15 05:36:31.187000'),(5774,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-04-15 05:08:53.118000'),(5775,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-04-11 05:41:09.313000'),(5776,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-04-10 06:49:53.829000'),(5777,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-02-20 12:16:53.727000'),(5778,'Thank you for your rating, Barbara!','2019-04-07 05:17:52.972000'),(5779,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-04-07 05:17:28.826000'),(5780,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-04-07 05:17:05.890000'),(5781,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-04-04 05:04:13.714000'),(5782,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you. Thank your brother on behalf of SignatureCare.','2019-04-01 05:53:31.652000'),(5783,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2019-04-03 06:23:02.143000'),(5784,'Thank you Itzela for your rating!','2019-04-02 07:14:12.345000'),(5785,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-04-02 07:13:38.090000'),(5786,'Thank you so much for your rating, Alexa. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-04-02 07:13:04.508000'),(5787,'Thank you for your rating, Brittany!','2019-04-02 07:12:28.080000'),(5788,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-04-01 05:54:52.311000'),(5789,'Thank you for your five star rating, Latashia!','2019-03-31 06:27:46.415000'),(5790,'Thank you for your rating!','2019-03-31 06:27:14.254000'),(5791,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-03-31 06:25:16.383000'),(5792,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-27 05:32:34.086000'),(5793,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-03-27 05:31:57.283000'),(5794,'Thank you for five star rating, Marissa!','2019-03-25 07:37:44.759000'),(5795,'Thank you for your rating, Mose!','2019-03-25 07:37:16.811000'),(5796,'Thank you for taking the time to let us know how we are doing. Hope your father is feeling well. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-03-24 06:54:07.785000'),(5797,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again, Maria! ','2019-03-24 06:51:40.882000'),(5798,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-24 06:47:04.359000'),(5799,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-24 06:45:54.096000'),(5800,'Thank you for 5 star rating!','2019-03-24 06:44:51.974000'),(5801,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-03-21 06:22:00.269000'),(5802,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-20 06:42:09.660000'),(5803,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your little one is feeling better. ','2019-03-19 06:54:37.225000'),(5804,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-03-19 06:53:01.641000'),(5805,'\nOur team, from the front desk to the doctors, aim to make your visit as quick and comfortable as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-18 06:04:54.989000'),(5806,'Thanks for your rating, Karla!','2019-03-18 06:03:46.982000'),(5807,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-03-18 06:03:24.349000'),(5808,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-03-18 06:00:25.037000'),(5809,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-03-18 05:59:28.166000'),(5810,'We are glad to know that you loved our team. We believe our staffs are the best in Texas. Thank you for recommending SignatureCare!','2019-03-18 05:57:31.309000'),(5811,'Thank you for your rating, Samantha!','2019-03-14 06:25:00.241000'),(5812,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-18 09:04:36.537000'),(5813,'We are glad to know that you loved our team. Thank you for your rating!','2019-03-13 06:06:36.459000'),(5814,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-13 06:09:19.586000'),(5815,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-03-10 09:26:07.142000'),(5816,'Thanks a lot for your valuable rating! Thank you for choosing SignatureCare!','2019-03-10 09:28:34.433000'),(5817,'We appreciate the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-10 09:28:29.840000'),(5818,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-03-10 09:40:02.938000'),(5819,'Thank you for choosing SignatureCare and good rating!','2019-03-10 09:42:05.990000'),(5820,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-03-10 09:43:18.628000'),(5821,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved our team --- We will make sure to let them know. ','2019-03-10 09:43:56.692000'),(5822,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-03-10 09:44:14.811000'),(5823,'Thanks for rating SignatureCare!','2019-03-10 09:44:48.519000'),(5824,'We appreciate your good rating. Thanks for visiting us!','2019-03-10 09:46:24.293000'),(5825,'Thank you for your kind words and for choosing SignatureCare!','2019-03-10 09:47:47.004000'),(5826,'We are glad to know that you loved our place. Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-10 09:51:33.441000'),(5827,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope princess is feeling better. ','2019-03-10 09:52:35.730000'),(5828,'Thank you for trusting us with the care of your kiddo. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-03-10 09:53:40.710000'),(5829,'Thanks for your rating and lovely words!','2019-03-10 09:54:09.867000'),(5830,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less. We pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-03-10 09:57:12.888000'),(5831,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-27 13:36:21.002000'),(5832,'Thank you for the great rating, Luvenia!','2019-02-27 13:35:28.782000'),(5833,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-26 12:49:24.721000'),(5834,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. Thanks for choosing us!','2019-03-10 09:38:47.127000'),(5835,'Thank you for the 5 star, Casey!','2019-02-24 10:23:09.216000'),(5836,'Thanks for the great rating, Real!','2019-02-24 10:23:25.886000'),(5837,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-24 10:24:11.174000'),(5838,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-24 10:25:26.885000'),(5839,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-24 10:25:45.817000'),(5840,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-24 10:27:23.618000'),(5841,'Thanks for leaving us a great rating, Raquel!','2019-02-24 10:27:41.528000'),(5842,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing SignatureCare for your emergency needs. ','2019-02-24 10:32:43.643000'),(5843,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-20 12:16:26.490000'),(5844,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-20 12:15:26.698000'),(5845,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-03 13:29:46.594000'),(5846,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-19 13:53:13.777000'),(5847,'Thank you for the 5 star, Janal!','2019-02-19 13:52:03.431000'),(5848,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-02-18 09:03:38.519000'),(5849,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-18 09:08:29.816000'),(5850,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughters\' care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughters are feeling better. ','2019-02-18 09:07:14.574000'),(5851,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-17 12:26:14.491000'),(5852,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-17 12:26:53.064000'),(5853,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-17 12:27:33.094000'),(5854,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-17 12:27:49.396000'),(5855,'Thank you for leaving a 5 star, Rana!','2019-02-17 12:28:10.420000'),(5856,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-14 10:53:43.595000'),(5857,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-02-13 12:42:59.693000'),(5858,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-02-11 12:50:45.363000'),(5859,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-11 12:51:24.593000'),(5860,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-02-11 12:51:40.366000'),(5861,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-02-11 12:53:18.110000'),(5862,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-02-11 12:50:07.419000'),(5863,'Our staff appreciates receiving comments like this, and we hope that you are feeling better. We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome, thanks for letting us know.. Thank you for choosing SignatureCare and for the nice review!','2019-02-06 13:35:30.469000'),(5864,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-02-05 13:43:05.082000'),(5865,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-05 13:43:28.494000'),(5866,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-02-05 13:51:09.235000'),(5867,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-02-04 13:17:33.200000'),(5868,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-04 13:17:03.686000'),(5869,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-02-03 13:29:13.205000'),(5870,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating. ','2019-02-03 13:28:34.326000'),(5871,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you and your mother comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-01-30 13:33:46.152000'),(5872,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-01-29 14:02:53.110000'),(5873,'Thanks for the 5 star, Eric!','2019-01-28 08:15:45.635000'),(5874,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great recommendation you gave us. Thank you for choosing SignatureCare!','2019-01-28 08:17:30.896000'),(5875,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-28 08:18:00.874000'),(5876,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-28 08:18:49.789000'),(5877,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-01-28 08:19:21.448000'),(5878,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-28 08:19:53.624000'),(5879,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We\'re glad our team was able to deliver an exceptional experience. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-23 14:33:05.389000'),(5880,'Thank you for trusting SignatureCare with the care of your child. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you, we will surely let them know.','2019-01-23 14:31:09.405000'),(5881,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-23 14:28:19.222000'),(5882,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great recommendation you gave us. Thank you for choosing SignatureCare!','2019-01-23 14:26:00.892000'),(5883,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-21 11:22:23.030000'),(5884,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-01-18 16:04:22.405000'),(5885,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. Thank you for choosing SignatureCare.','2019-01-17 06:56:54.972000'),(5886,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-01-14 10:19:14.514000'),(5887,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-14 10:21:13.702000'),(5888,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving SignatureCare your trust.','2019-01-14 10:20:39.287000'),(5889,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-01-13 12:45:51.906000'),(5890,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-01-11 17:45:35.256000'),(5891,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. We want everyone who walks through our doors to feel like a VIP. Thank you for the wonderful feedback!','2019-01-09 09:25:55.701000'),(5892,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you and that you loved your team. We will make sure to let them know. We appreciate the great review and rating.','2019-01-09 09:22:03.580000'),(5893,'Thanks for the 5 star review, Taco!','2019-01-07 16:57:15.578000'),(5894,'Thanks for the 5 star review!','2019-01-07 16:57:02.620000'),(5895,'Thanks for the 5 star review!','2019-01-07 16:56:57.711000'),(5896,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-03 16:55:13.221000'),(5897,'Thanks for the 5 star review!','2019-01-04 16:33:45.316000'),(5898,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-01-03 16:55:47.643000'),(5899,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-02 16:27:31.896000'),(5900,'Thanks for the 5 star review, Gerry!','2019-01-02 16:27:02.674000'),(5901,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when someone has to visit the ER, but we aim to make you as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope you\'re feeling better!','2019-01-02 16:28:32.278000'),(5902,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2018-12-27 18:05:51.463000'),(5903,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2018-12-27 18:05:33.688000'),(5904,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2018-12-26 16:26:21.601000'),(5905,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make your kiddo feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2018-12-21 22:23:38.541000'),(5906,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2018-12-21 22:24:02.557000'),(5907,'Thanks for the 5 star review, Shelby!','2018-12-21 22:24:28.856000'),(5908,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out. ','2018-12-21 22:22:49.241000'),(5909,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2018-12-20 19:20:57.977000'),(5910,'Thank you for the 5 star review!','2018-12-20 19:21:19.580000'),(5911,'Thank you for the 5 star review, Sadan!','2018-12-20 19:21:33.807000'),(5912,'Thank you for the 5 star review, Sanel!','2018-12-18 15:44:09.215000'),(5913,'Thanks for the 5 star review!','2018-12-17 16:20:28.172000'),(5914,'Thank you for the 5 star review, Itayethzi!','2018-12-10 16:28:45.243000'),(5915,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2018-12-10 16:28:19.325000'),(5916,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2018-12-05 16:25:41.386000'),(5917,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2018-12-05 16:25:30.652000'),(5918,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2018-12-05 16:25:15.461000'),(5919,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2018-11-28 16:16:48.122000'),(5920,'Thanks for the 5 star review!','2018-11-28 16:17:18.717000'),(5921,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2018-11-28 16:17:25.723000'),(5922,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2018-11-26 16:08:25.994000'),(5923,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2018-11-26 16:08:11.388000'),(5924,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2018-11-26 16:07:54.687000'),(5925,'Natalie, we are appreciative of your feedback regarding your recent visit to our center. All of our staff works hard to provide the best patient care. Glad that your daughter is on the mend.','2018-10-10 20:33:45.401000'),(5926,'Thank you for the great review! We appreciate your positive feedback about Neighbors\nEmergency Center. We hope you are feeling better.','2018-09-21 15:42:33.914000'),(5927,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-12-19 18:40:22.589000'),(5928,'Thanks for the 5 star review!','2018-12-19 18:40:56.446000'),(5929,'Hi Elzz, We understand that your Neighbors experience was not a positive one. At Neighbors our goal is to provide extraordinary care to each of our patients. We would appreciate you reaching out to our\npatient customer service specialist at 844-406-7263 or by email at Patients@neighborshealth.com ,\nso we can understand your experience with Neighbors and resolve any remaining issues.','2018-07-06 18:11:19.782000'),(5930,'Hi Andromeda. We are sorry to hear that you were not satisfied with our services at Neighbors Emergency Center Copperfield. We are a freestanding emergency room and bill just like a traditional hospital ER. We are happy to answer any billing questions that you may have at 844-406-7263 or by email at Patients@neighborshealth.com. We look forward to hearing from you soon.','2018-06-22 17:54:04.663000'),(5931,'Hi Chelsea! Thank you for the 5-star review! Thank you for taking the time to provide us feedback about your visit to Neighbors Emergency Center Copperfield. We will be sure to share your positive review with our staff so that they can continue serving the community with excellence!','2018-04-20 19:24:31.061000'),(5932,'Hi Alberto! Thanks so much for the 5-star review! Thank you for the great review! We appreciate your positive feedback about Neighbors Emergency Center. We hope you are feeling better.','2018-04-06 17:42:12.384000'),(5933,'Hi Eli and thank you for the 5-star review! We couldn’t be happier that you had an excellent experience at Neighbors Emergency Center. Thank you for taking the time to share it with us. We wish you a speedy recovery.','2018-03-16 18:43:09.333000'),(5934,'Hi Kashif! Thank you for the 5-Star review! Neighbors is thankful that you have shared your experience, and that you plan to do so with others as well! We greatly appreciate your confidence in sharing the services of Neighbors Emergency Center!','2018-02-23 21:15:39.603000'),(5935,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:37:33.866000'),(5936,'Hi Crystal, At Neighbors Emergency Center we want every interaction with our patients to be a positive one. We are concerned that this was not the service you experienced. Please contact our patient customer service specialist at 844-406-7263 or by email at Patients@neighborshealth.com, so that we can speak with you directly. We look forward to speaking with you. \n','2017-07-17 14:13:14.239000'),(5937,'Hi Rebecca! Thank you for telling us about your positive visit to Neighbors Emergency Center. We are grateful you trusted us with the care of your loved ones. We hope your dad is feeling much better! ','2017-07-03 18:36:05.730000'),(5938,'Hi Jenny. We sincerely appreciate your review. We\'re glad our staff could take excellent care of your daughter in her time of need. We wish her a speedy recovery! ','2017-06-28 15:42:14.555000'),(5939,'Hi Nichole. At Neighbors we want every interaction with our patients to be a positive one. We are concerned that this was not the service you experienced. Please contact our Patient Advocates at 844-406-7263 or by email at patients@neighborshealth.com so we can discuss this further. We look forward to speaking with you. ','2017-06-02 19:18:08.360000'),(5940,'Hi Sergio! Thank you so much for your feedback. We will be sure to share your review with our staff so that they can continue to serve the community with excellence!','2017-05-05 19:11:19.419000'),(5941,'Hi Lizbeth, We hate to hear that you did not have a positive experience at Neighbors Emergency Center. Please contact our customer service specialist at 844-406-7263 so that we can learn more about your experience, and resolve any issues. Thank you for your patience, and we hope to speak with you soon! \n','2017-03-01 16:31:46.262000'),(5942,'Hi Erica, Thank you for taking the time to provide us feedback about your visit to Neighbors Emergency Center. We will be sure to share your positive review with our staff so that they can continue serving the community with excellence! ','2016-11-23 22:16:37.001000'),(5943,'We hate to hear that you did not have a positive experience at Neighbors Emergency Center. Please contact our customer service specialist at 844-406-7263 so that we can learn more about your experience, and resolve any issues. Thank you for your patience, and we hope to speak with you soon! \n','2016-09-28 16:25:07.070000'),(5944,'Hi Autumn, Thank you so much for sharing your experience at Neighbors Emergency Center! We are glad you found the medical care provided by our doctors and nurses excellent. We hope you feel better soon. ','2016-09-28 16:24:25.757000'),(5945,'Thanks for the 5 star review!','2018-12-19 18:41:00.553000'),(5946,'Thanks for the 5 star review!','2018-12-19 18:41:04.853000'),(5947,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:37:52.661000'),(5948,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:38:01.413000'),(5949,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:38:11.995000'),(5950,'Thanks for the 5 star review!','2018-12-19 18:41:08.605000'),(5951,'Thanks for the 5 star review!','2018-12-19 18:41:12.341000'),(5952,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:38:31.580000'),(5953,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:38:21.016000'),(5954,'Thanks for the 5 star review!','2018-12-19 18:41:26.067000'),(5955,'Thanks for the 5 star review!','2018-12-19 18:51:46.840000'),(5956,'Thanks for the 5 star review!','2018-12-19 18:51:52.224000'),(5957,'Thanks for the 5 star review!','2018-12-19 18:51:59.213000'),(5958,'Thanks for the 5 star review!','2018-12-19 18:52:07.611000'),(5959,'Thanks for the 5 star review!','2018-12-19 18:52:11.660000'),(5960,'Thanks for the 5 star review!','2018-12-19 18:52:15.953000'),(5971,'Thank you so much for your five star rating!','2019-12-31 04:57:59.836000'),(5972,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-29 06:57:48.330000'),(5973,'So sweet of him! At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-12-29 06:57:34.576000'),(5974,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2019-12-29 06:55:08.166000'),(5975,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-29 06:54:58.088000'),(5976,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-26 08:16:24.395000'),(5977,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2019-12-23 08:17:10.044000'),(5978,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-23 08:16:59.009000'),(5979,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-22 08:50:03.583000'),(5980,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-12-22 08:49:47.253000'),(5981,'Thank you so much for your nice review. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-12-19 06:24:38.438000'),(5982,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-19 06:24:24.046000'),(5983,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-19 06:24:08.362000'),(5984,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-19 06:23:49.863000'),(5985,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-17 06:27:22.749000'),(5986,'Thank you so much for your nice review, David. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-12-15 07:21:23.021000'),(5987,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-26 11:07:21.256000'),(5988,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-15 07:21:06.643000'),(5989,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made your grandma comfortable and able to relax during her visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-15 07:20:28.956000'),(5990,'Thank you so much for your great rating, Kimberly!','2019-12-15 07:19:51.993000'),(5991,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 07:19:30.111000'),(5992,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-12-15 07:19:04.862000'),(5993,'Thank you so much for your nice review, Katja. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-15 07:18:49.806000'),(5994,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 07:18:27.268000'),(5995,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-12-15 07:18:15.105000'),(5996,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-02 06:59:44.126000'),(5997,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-02 06:59:32.041000'),(5998,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-12-01 08:41:53.663000'),(5999,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-12-01 08:41:25.530000'),(6000,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-01 08:41:00.939000'),(6001,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-28 07:52:33.314000'),(6002,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-27 06:49:14.774000'),(6003,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-27 06:49:42.908000'),(6004,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-27 06:48:59.826000'),(6005,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-26 05:48:09.988000'),(6006,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-26 05:47:58.560000'),(6007,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-11-24 07:09:02.854000'),(6008,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-24 07:08:54.082000'),(6009,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-11-20 06:18:36.741000'),(6010,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-11-19 06:24:10.885000'),(6011,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-18 05:58:20.666000'),(6012,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-17 07:20:42.460000'),(6013,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-11-14 10:05:43.498000'),(6014,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-11-13 06:44:07.666000'),(6016,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-11-11 07:41:55.956000'),(6017,'Thank you so much for giving us five star, Guadalupe!','2019-11-07 04:55:41.892000'),(6018,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-06 08:30:36.662000'),(6019,'Thank you so much for your great rating, Rosaira!','2019-11-06 08:29:39.404000'),(6020,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-06 08:29:09.631000'),(6021,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-06 08:22:19.074000'),(6022,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-03 06:37:21.608000'),(6023,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-03 06:37:02.628000'),(6024,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-31 09:58:05.996000'),(6025,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-31 09:57:50.193000'),(6026,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-30 05:49:24.561000'),(6027,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-29 05:54:41.792000'),(6028,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-10-29 05:54:07.183000'),(6029,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-10-29 05:53:46.622000'),(6030,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-29 05:53:24.429000'),(6031,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-27 08:40:57.868000'),(6032,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-27 08:40:30.520000'),(6034,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-27 08:40:19.214000'),(6035,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-24 08:44:40.116000'),(6036,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your kids are feeling better!','2019-10-23 06:51:07.136000'),(6037,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-23 06:50:17.445000'),(6038,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-10-23 06:49:57.426000'),(6039,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-21 07:10:34.551000'),(6040,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-10-20 06:47:07.756000'),(6041,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-20 06:46:44.811000'),(6042,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-20 06:46:21.846000'),(6043,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your husband feels better.','2019-10-17 08:19:55.274000'),(6044,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-17 08:19:21.767000'),(6045,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-10-17 08:19:04.601000'),(6046,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-10-15 06:48:21.244000'),(6047,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-10-13 07:40:10.506000'),(6048,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-13 07:38:44.747000'),(6049,'Thank you so much for your great rating, Gage!','2019-10-13 07:38:29.151000'),(6050,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-10 10:31:12.913000'),(6051,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-10-10 10:30:57.590000'),(6052,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-09 08:31:14.773000'),(6053,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review. Hope your husband is feeling well.','2019-10-09 08:30:57.003000'),(6054,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-09 08:30:18.422000'),(6055,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-09 08:30:05.896000'),(6056,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-10-09 08:29:52.005000'),(6057,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-09 08:29:43.077000'),(6058,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-29 06:14:26.676000'),(6059,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-25 06:11:06.439000'),(6060,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-24 06:41:20.331000'),(6061,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-24 06:41:02.740000'),(6062,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-19 09:26:39.178000'),(6063,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-19 09:26:26.887000'),(6064,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-09-19 09:26:16.214000'),(6065,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-15 05:16:40.307000'),(6066,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-09-15 05:16:18.962000'),(6067,'Thank you so much for your great rating, Roy!','2019-09-15 05:15:11.994000'),(6068,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-09-15 05:14:53.802000'),(6069,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-15 05:12:22.726000'),(6070,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-11 08:04:32.548000'),(6071,'Thank you so much for your feedback! Our goal is to always provide the abest care. Thank you for choosing SignatureCare.','2019-09-11 08:04:24.308000'),(6072,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-11 08:04:16.624000'),(6073,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-11 08:04:03.024000'),(6074,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-09-11 08:03:48.657000'),(6075,'We appreciate your great rating, Shannon! Thanks for choosing SignatureCare!','2019-09-11 08:03:27.556000'),(6076,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-09-11 08:03:09.787000'),(6077,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-11 08:02:57.239000'),(6078,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-11 08:02:44.577000'),(6079,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-08-26 05:10:06.231000'),(6080,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-08-21 08:34:00.984000'),(6081,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-08-18 06:47:48.812000'),(6082,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-08-18 06:47:37.104000'),(6083,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 06:47:21.607000'),(6084,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-08-18 06:47:09.327000'),(6085,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-08-18 06:45:56.480000'),(6086,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-18 06:45:42.831000'),(6087,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-08-18 06:45:32.406000'),(6088,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-08-18 06:45:14.445000'),(6089,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-08-18 06:37:14.454000'),(6090,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-18 06:36:28.302000'),(6091,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-08-18 06:36:05.807000'),(6092,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-08-18 06:35:38.520000'),(6093,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-08-18 06:35:14.748000'),(6094,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-08-18 06:34:57.570000'),(6095,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-08-07 22:10:32.133000'),(6096,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-08-04 05:46:31.215000'),(6097,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-08-04 05:46:12.174000'),(6098,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-04 05:45:23.364000'),(6099,'Thank you for your great rating, Franklin!','2019-07-31 06:53:34.881000'),(6100,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-07-30 06:28:39.550000'),(6101,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-28 07:22:35.816000'),(6102,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-28 07:22:18.873000'),(6103,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-28 07:22:05.447000'),(6104,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-07-24 06:45:03.733000'),(6105,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-07-24 06:44:43.262000'),(6106,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-24 06:44:23.845000'),(6107,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-21 06:20:18.401000'),(6108,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-16 05:36:37.198000'),(6109,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. Hope your wife feels better.','2019-07-16 05:36:13.094000'),(6110,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-15 07:08:41.151000'),(6111,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-14 06:22:29.640000'),(6112,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-14 06:22:01.640000'),(6113,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-14 06:16:57.192000'),(6114,'Thank you for your feedback!','2019-07-14 06:16:24.008000'),(6115,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-08 06:32:58.751000'),(6116,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust. Hope your cousin feeling better.','2019-07-04 07:40:05.801000'),(6117,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-04 07:39:33.324000'),(6118,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-07-04 07:39:10.068000'),(6119,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-04 07:38:53.951000'),(6120,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-04 07:38:25.668000'),(6121,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-07-04 07:38:09.442000'),(6122,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-04 07:37:34.391000'),(6123,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-02 06:47:08.232000'),(6124,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. Hope your boyfriend feels better!','2019-07-01 07:35:34.154000'),(6125,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-24 05:49:47.313000'),(6126,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-23 05:15:59.231000'),(6127,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-06-20 04:38:38.583000'),(6128,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-18 06:46:39.710000'),(6129,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care. Thank you for choosing SignatureCare.','2019-06-18 06:44:59.878000'),(6130,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-18 06:44:03.614000'),(6131,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-06-18 06:43:31.061000'),(6132,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-18 06:42:43.663000'),(6133,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-16 06:03:48.454000'),(6134,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-13 06:49:01.202000'),(6135,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-09 09:01:32.370000'),(6136,'Thank you for your nice review, Jodi!','2019-06-09 09:01:12.121000'),(6137,'Thank you for your review and your rating. We appreciate you choosing SignatureCare!','2019-06-09 08:58:08.493000'),(6138,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-09 08:57:45.673000'),(6139,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better. ','2019-06-09 08:57:34.274000'),(6140,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-09 08:57:06.390000'),(6141,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-06-09 08:56:54.275000'),(6142,'Thank you for your rating, Taylor!','2019-05-29 06:34:04.081000'),(6143,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-05-29 06:33:43.343000'),(6144,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-05-28 05:49:45.572000'),(6145,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-26 06:32:19.779000'),(6146,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-26 06:32:04.459000'),(6147,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-26 06:31:46.236000'),(6148,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-26 06:31:10.785000'),(6149,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-05-23 06:35:50.451000'),(6150,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-22 09:26:02.516000'),(6151,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-05-22 05:29:24.834000'),(6152,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-05-21 04:54:49.807000'),(6153,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-05-19 05:29:12.727000'),(6154,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-05-19 05:28:58.975000'),(6155,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-05-19 05:28:31.501000'),(6156,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-05-15 06:34:35.358000'),(6157,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-05-14 04:37:06.919000'),(6158,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2019-05-13 06:05:25.937000'),(6159,'Thank you for bringing this to our attention. We will definitely look into this more. We are glad you had excellent service otherwise. If you would like to provide us more information, feel free to reach out to us at info@ercare24.com.','2019-05-13 16:49:16.703000'),(6160,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-12 04:58:56.553000'),(6161,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-05-12 04:58:26.434000'),(6162,'Thank you for your kind words, Enilie!','2019-05-09 04:12:24.024000'),(6163,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-06 10:15:40.403000'),(6164,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-05 06:48:18.891000'),(6165,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better. ','2019-05-02 09:37:24.554000'),(6166,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-02 09:37:08.398000'),(6167,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-04-26 11:16:33.289000'),(6168,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-26 11:11:01.669000'),(6169,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-20 06:58:02.360000'),(6170,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-04-22 06:43:59.100000'),(6171,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-07 06:03:13.055000'),(6172,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-04-07 06:02:38.190000'),(6173,'Thank you so much for your nice review, Kendall. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-04-07 06:02:14.155000'),(6174,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-01 12:09:08.736000'),(6175,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of while treatment going on. Thank you so much for the nice review and great rating -- we appreciate it!','2019-03-31 06:49:44.326000'),(6176,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-03-31 06:48:36.068000'),(6177,'What a nice review! Thank you for taking the time to let us know how we are doing. At SignatureCare, our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-03-20 06:59:42.037000'),(6178,'Our aim is to make you and your family as comfortable as possible while waiting for diagnosis and treatment. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-03-18 06:46:28.371000'),(6179,'Thanks for your wonderful words. We appreciate your the rating you gave us!','2019-03-18 06:44:45.365000'),(6180,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-12 07:04:15.991000'),(6181,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-03-10 08:22:51.589000'),(6182,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-18 08:56:25.170000'),(6183,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. And the medical staff cares so deeply about all our patients. We hope you are feeling better!','2019-02-14 13:36:12.829000'),(6184,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-12 13:42:31.175000'),(6185,'Thanks for the great rating, Alia!','2019-02-12 13:44:02.459000'),(6186,'Thank you for the 5 star, Dillon!','2019-02-12 13:44:17.274000'),(6805,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-01-06 06:59:02.260000'),(6807,'We appreciate your great rating. Thank you so much for choosing SignatureCare!','2020-01-05 06:38:43.946000'),(6809,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you and your daughter, and are so glad to hear that you both are feeling better. Thank you for choosing SignatureCare. I have passed your suggestion onto our leadership team for their consideration. Thanks again for suggesting to be a better place.','2020-01-01 07:34:04.945000'),(6810,'We appreciate your great rating, Lois!','2020-01-01 07:30:05.585000'),(6811,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-01 07:29:39.736000'),(6812,'Thank you so much for giving us five stars, Kiwana!','2019-12-31 04:52:19.174000'),(6813,'We appreciate the great rating you gave us, Brenetta!','2019-12-31 04:51:44.906000'),(6814,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-31 04:50:49.615000'),(6815,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-03 11:07:39.883000'),(6816,'Thank you Nikki, for your great rating!','2019-12-31 04:50:32.823000'),(6817,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-31 04:50:10.396000'),(6818,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-31 04:50:04.505000'),(6819,'We appreciate your great rating, Amberly!','2019-12-31 04:49:42.985000'),(6820,'Thank you so much for your great rating, Dawson!','2019-12-31 04:49:21.504000'),(6821,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-31 04:48:33.234000'),(6822,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-29 06:22:52.438000'),(6823,'We appreciate your great rating, Jeremy!','2019-12-29 06:22:22.885000'),(6824,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-29 06:21:59.654000'),(6825,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-29 06:21:39.375000'),(6826,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-29 06:21:18.456000'),(6827,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-29 06:21:06.084000'),(6828,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-12-26 07:57:12.885000'),(6829,'Thank you so much Tanika, for your great rating!','2019-12-26 07:56:18.558000'),(6830,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-24 06:58:03.000000'),(6832,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-24 06:57:13.340000'),(6833,'Thank you Hannah, for giving us five stars!','2019-12-23 08:00:27.969000'),(6834,'We appreciate your great rating, Roger!','2019-12-22 08:20:55.581000'),(6835,'Thank you so much for your great rating, Ashlyn!','2019-12-22 08:20:39.783000'),(6836,'Children are our top prority and our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing SignatureCare for your emergency needs. ','2019-02-05 14:17:01.721000'),(6837,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-17 05:40:58.018000'),(6838,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-17 05:40:35.948000'),(6839,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-15 06:43:35.220000'),(6840,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 06:43:18.538000'),(6841,'Thank you so much for rating us five star, Adrienne!','2019-12-15 06:43:06.867000'),(6842,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-15 06:42:34.913000'),(6843,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-12-15 06:42:27.209000'),(6844,'We appreciate the great rating you gave us, Katherine!','2019-12-15 06:42:17.342000'),(6845,'Thank you for your rating, Kasonya!','2019-03-14 06:20:13.255000'),(6846,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-15 06:41:53.149000'),(6847,'Thank you for your great rating, Laura!','2019-12-04 07:09:23.574000'),(6848,'We appreciate your great rating, Josh!','2019-12-02 06:54:15.927000'),(6849,'Neighbors is thankful that you have shared your experience, and that you plan to do so with others as well! We greatly appreciate your confidence in sharing the services of Neighbors Emergency Center! ','2017-01-18 15:41:58.020000'),(6850,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-28 07:30:13.257000'),(6851,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-28 07:29:55.079000'),(6852,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-28 07:29:39.646000'),(6853,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-28 07:29:14.347000'),(6854,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-27 06:46:59.279000'),(6855,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-11-26 05:44:18.224000'),(6856,'Thank you so much for your great rating, Raven!','2019-11-26 05:44:00.809000'),(6857,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-24 06:58:43.301000'),(6858,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-24 06:58:30.052000'),(6859,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating. Hope your husband is feeling well.','2019-11-20 06:13:50.088000'),(6860,'We appreciate the great rating you gave us, Birriel!','2019-11-19 06:19:14.028000'),(6861,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Kids are adorable, and I can say, obviously they have enjoyed the time with your kids. Thank you for choosing SignatureCare and for the nice review!','2019-03-21 06:20:56.309000'),(6862,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-07-31 06:43:43.794000'),(6863,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-11-12 07:37:18.913000'),(6864,'Thank you for your five star rating, Ross!','2019-11-11 07:26:09.033000'),(6865,'We appreciate your great rating, Keywaysha!','2019-11-11 07:25:42.301000'),(6866,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-06 07:47:34.071000'),(6867,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-13 06:36:25.902000'),(6868,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-06 07:47:51.684000'),(6869,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-11-05 07:39:56.501000'),(6870,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-04 11:20:16.761000'),(6871,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-04 11:20:01.172000'),(6872,'Thank you so much for your great rating, Jasmine!','2019-11-04 11:19:41.741000'),(6873,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your little one\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your kiddo is feeling better.','2019-11-03 06:20:30.019000'),(6874,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-11-03 06:19:09.139000'),(6875,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-03 06:18:44.544000'),(6876,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-24 08:03:43.737000'),(6877,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-12 14:01:05.895000'),(6879,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-20 06:33:57.308000'),(6880,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-17 08:16:56.303000'),(6881,'We appreciate your great rating, Eden! Thanks for choosing SignatureCare.','2019-10-16 07:15:43.180000'),(6882,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-13 06:55:19.394000'),(6883,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-13 06:55:05.615000'),(6884,'Thank you for your five star rating!','2019-10-09 07:58:54.607000'),(6885,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-09 07:58:37.763000'),(6886,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-22 06:03:09.509000'),(6887,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-22 06:03:23.592000'),(6888,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-09-22 06:03:45.620000'),(6889,'Thank you for your review and rating. We appreciate you choosing SignatureCare!','2019-09-22 06:04:06.873000'),(6890,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-22 06:02:48.087000'),(6891,'We appreciate your great rating, Leah! Thanks for choosing SignatureCare.','2019-09-19 09:18:24.536000'),(6892,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-09-17 11:47:14.212000'),(6893,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-16 11:14:44.408000'),(6894,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-09-15 04:54:16.673000'),(6895,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-11 05:17:11.303000'),(6896,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-11 05:16:57.092000'),(6897,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-09-11 05:16:26.349000'),(6898,'Thank you for your great rating, Carrolynn! Thanks for choosing SignatureCare!','2019-09-11 05:16:15.434000'),(6899,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-09-11 05:15:05.013000'),(6900,'Thank you for your five star rating, Ginger!','2019-09-11 05:13:25.685000'),(6901,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-11 05:12:17.082000'),(6902,'We appreciate your great rating, Kaytlan! Thanks for choosing SignatureCare!','2019-09-11 05:11:40.352000'),(6903,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-08-28 05:54:26.301000'),(6904,'We appreciate your great rating, Necole. Thank you for choosing SignatureCare!','2019-08-27 05:00:19.771000'),(6905,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-26 05:06:04.887000'),(6906,'Thank you so much for your feedback. We appreciate the great rating you gave us, Mattison!','2019-08-25 05:12:54.599000'),(6907,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-21 04:46:45.595000'),(6908,'Thank you so much for rating us five star, Danielle!','2019-08-18 05:19:27.790000'),(6909,'Thank you for your review. We appreciate you choosing SignatureCare, Scott!','2019-08-25 05:15:37.320000'),(6910,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare, Malachi!','2019-08-25 05:15:59.668000'),(6911,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-18 05:18:26.316000'),(6912,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-08-18 05:17:33.783000'),(6913,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-18 05:17:17.852000'),(6914,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-08-18 05:17:05.081000'),(6915,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 05:16:26.177000'),(6916,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-08-18 05:15:59.184000'),(6917,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for the wonderful feedback!','2019-01-21 11:32:52.504000'),(6918,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-08 20:12:13.753000'),(6919,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-08-08 20:11:21.263000'),(6920,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-08 20:09:17.436000'),(6921,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-08 20:08:34.468000'),(6922,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-01 03:32:03.141000'),(6923,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-30 06:24:14.063000'),(6924,'Thanks for your 5 star rating!','2019-03-18 05:54:55.982000'),(6925,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-12 13:45:13.631000'),(6926,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-07-31 06:56:44.418000'),(6927,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-24 06:36:07.933000'),(6928,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-07-24 06:35:47.538000'),(6929,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-24 06:35:14.202000'),(6930,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-07-24 06:34:55.689000'),(6931,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-24 06:34:36.482000'),(6932,'We believe we have the very best staff in Texas. Thank you for choosing us!','2019-07-24 06:34:09.904000'),(6933,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-07-24 06:33:22.966000'),(6934,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-24 06:33:02.984000'),(6935,'We appreciate the great rating you gave us, Leah!','2019-07-24 06:32:47.103000'),(6936,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-23 05:38:04.732000'),(6937,'Thank you so much for your rating, Tamara!','2019-07-22 07:18:26.707000'),(6938,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your mom at ease and provide her with the best care possible. We hope your mom feels better.','2019-07-22 07:17:54.003000'),(6939,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-21 06:07:29.056000'),(6940,'Thank you for your great rating, Amy!','2019-07-21 06:07:12.088000'),(6941,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-18 05:58:47.007000'),(6942,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-07-08 06:21:07.211000'),(6943,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-07 07:20:39.206000'),(6944,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-07-07 07:20:24.159000'),(6945,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-06-26 06:20:32.494000'),(6947,'Thank you for your feedback. We are glad to know that you have received excellent care at our facility. Thank you for choosing SignatureCare!','2019-06-19 07:25:13.688000'),(6948,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-18 06:26:01.796000'),(6949,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-13 06:37:43.509000'),(6950,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-06-13 06:37:00.646000'),(6951,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-13 06:36:01.136000'),(6952,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-09 06:56:43.634000'),(6953,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-09 06:56:26.802000'),(6954,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-09 06:56:08.979000'),(6955,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-09 06:55:56.144000'),(6956,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-09 06:55:35.638000'),(6957,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-29 06:23:57.451000'),(6958,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-27 05:52:08.825000'),(6959,'Thank you for your rating, Ashley!','2019-05-27 05:51:32.793000'),(6960,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-26 06:19:54.627000'),(6961,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-05-26 06:19:33.486000'),(6962,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-26 06:19:17.993000'),(6963,'Thank you for your five star rating, Lonnie!','2019-05-14 04:30:38.612000'),(6964,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-05-09 04:04:21.922000'),(6965,'Thank you for your five star rating, Latonya!','2019-05-09 04:03:46.180000'),(6966,'Thank you for your rating, Tyler!','2019-05-07 04:11:43.563000'),(6967,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-05-05 06:29:16.842000'),(6968,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-05-05 06:27:58.757000'),(6969,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-05-05 06:27:19.994000'),(6970,'Thank you for your review and rating!','2019-05-05 06:27:04.748000'),(6971,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-02 09:00:38.710000'),(6972,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope she is feeling better. ','2019-05-02 09:00:11.769000'),(6973,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.\n','2019-05-02 09:07:55.157000'),(6974,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-22 05:59:09.330000'),(6975,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-04-22 05:58:04.536000'),(6976,'Thank you for your valuable rating, Trista!','2019-04-15 05:06:56.221000'),(6977,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-04-15 05:04:48.825000'),(6978,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-04-10 06:47:28.924000'),(6979,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-07 05:15:48.948000'),(6980,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-04-02 07:11:59.532000'),(6981,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-04-02 07:11:16.521000'),(6982,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-04-02 07:10:37.918000'),(6983,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-04-01 05:46:24.558000'),(6984,'Thank you for your rating!','2019-03-27 09:11:24.799000'),(6985,'Thank you for your great rating, Billy!','2019-03-25 07:35:56.576000'),(6986,'Thank you for rating us 5 star, Netra!','2019-03-10 10:05:24.223000'),(6987,'Thank you for your review and your recommendation, Matt!','2019-03-24 06:38:47.060000'),(6988,'Thank you for the 5 star, Kathy!','2019-01-29 14:18:31.209000'),(6989,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-03-20 13:31:43.476000'),(6990,'We are glad to know that you loved our team. We believe our staffs are the best in Texas. Thank you for recommending SignatureCare!','2019-03-18 05:56:19.316000'),(6991,'Our staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-18 05:54:23.476000'),(6992,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. Thank you for your review and rating!','2019-03-14 06:24:18.263000'),(6993,'Our doctors and nurses make us proud every day. Thank you for letting us know once again. We will pass them along. Thank you for choosing SignatureCare!','2019-03-14 06:22:40.139000'),(6994,'We are glad to know that you loved our team. Thank you for choosing SignatureCare!','2019-03-14 06:21:10.333000'),(6995,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-01-02 16:33:56.883000'),(6996,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-03-11 07:16:18.349000'),(6997,'We are glad to know that you loved our team. Thank you for choosing SignatureCare!','2019-03-12 06:41:10.133000'),(6998,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-03-10 10:07:58.285000'),(6999,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-03-10 10:04:32.461000'),(7000,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-03-10 10:02:08.208000'),(7001,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-03-03 11:08:01.129000'),(7002,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-02-27 13:43:09.176000'),(7003,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-25 12:50:36.721000'),(7004,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-25 12:50:55.750000'),(7005,'Thank you for the 5 star, Dana!','2019-02-13 12:29:52.353000'),(7006,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-02-20 12:08:12.534000'),(7007,'Thank you for taking time to leave us such a nice review and for your continued trust. Our staff appreciates receiving comments like this. The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-20 12:05:49.936000'),(7008,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-20 12:06:53.646000'),(7009,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-20 12:06:13.682000'),(7010,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing SignatureCare for your emergency needs. ','2019-02-18 08:35:01.683000'),(7011,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-18 08:32:51.396000'),(7012,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-17 10:21:07.761000'),(7013,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-02-17 10:21:37.760000'),(7014,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-17 10:21:55.674000'),(7015,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-02-17 10:22:16.050000'),(7016,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-17 10:22:32.160000'),(7017,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-17 10:22:52.224000'),(7018,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-13 12:40:10.704000'),(7019,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-02-13 12:30:45.475000'),(7021,'Thank you for the 5 star, Makinley!','2019-02-11 13:23:01.359000'),(7022,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-11 13:22:49.178000'),(7023,'Thank you for leaving a 5 star, Brandi!','2019-01-21 11:25:45.403000'),(7024,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-02-11 13:21:28.546000'),(7025,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-02-06 13:15:15.690000'),(7026,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-02-06 13:09:36.282000'),(7027,'Thanks for leaving a 5 star, DeLaine!','2019-02-06 13:05:31.705000'),(7028,'Thank you so much for your nice rating, Bobbie. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-02-04 13:58:23.092000'),(7029,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-02-03 11:53:00.606000'),(7030,'Thank you for rating us 5 star, Melinda!','2019-02-03 11:52:19.789000'),(7031,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-03 11:51:57.963000'),(7032,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-03 11:51:15.408000'),(7033,'Thanks for the 5 star, Karen!','2019-02-03 11:50:22.554000'),(7034,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-03 11:50:01.138000'),(7035,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. \n','2018-12-21 22:25:05.567000'),(7036,'Thank you for the great rating, Rejina!','2019-01-30 13:31:26.828000'),(7037,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-28 09:08:17.068000'),(7038,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-01-28 09:09:37.416000'),(7039,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-01-28 09:10:46.212000'),(7040,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-01-24 07:06:57.186000'),(7041,'Thank you for rating 5 star, Carlton!\n','2019-01-24 07:07:39.525000'),(7042,'Thanks for leaving a 5 star, Ashley!','2019-01-24 07:03:46.791000'),(7043,'Thank you for the 5 star, Lisa!','2019-01-24 07:03:27.847000'),(7044,'Thanks for the review and rating, Reginald!','2019-01-23 14:24:10.092000'),(7045,'Thank you so much for your nice review, Kristy. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-01-23 14:22:45.831000'),(7046,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-23 14:21:52.696000'),(7047,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating and recommendation you gave us. Thank you for choosing SignatureCare!','2019-01-23 14:20:38.772000'),(7048,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you, we will make sure to let them know. We appreciate the great review and recommendation.','2019-01-23 14:19:57.310000'),(7049,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-21 11:26:22.525000'),(7050,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-21 11:26:04.316000'),(7051,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-18 16:05:55.487000'),(7052,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-01-18 16:05:45.828000'),(7053,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback. ','2019-01-18 16:05:35.070000'),(7054,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-01-18 16:05:26.660000'),(7055,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-13 12:18:46.673000'),(7056,'Thanks for leaving a 5 star review!','2019-01-14 20:36:49.172000'),(7057,'Thanks for leaving a 5 star review!','2019-01-14 20:36:54.664000'),(7058,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2019-01-04 16:43:14.372000'),(7059,'Thank you for the great rating, Joshua!','2019-01-13 12:15:47.618000'),(7060,'Thanks for the 5 star, Jose!','2019-01-13 12:15:21.123000'),(7061,'Thank you for the great rating, Brandy!','2019-01-10 11:56:32.943000'),(7062,'Thanks for the 5 star, Mike!','2019-01-10 11:56:00.698000'),(7063,'We believe we have the very best staff in Texas. SignatureCare takes pride in our staff because they care so much about our patients and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-10 11:54:47.689000'),(7064,'Thank you so much for your feedback! We pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas and our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-10 08:26:27.693000'),(7065,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-07 18:48:47.824000'),(7066,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-07 16:58:31.725000'),(7067,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your family\'s emergency needs. Thank you for giving us your trust.','2019-01-04 16:43:53.685000'),(7068,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your family\'s emergency needs. Thank you for giving us your trust.','2019-01-04 16:43:47.373000'),(7069,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-01-03 16:56:45.162000'),(7070,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-03 16:57:03.423000'),(7071,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-01-02 16:32:35.092000'),(7072,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2018-12-19 18:57:29.127000'),(7073,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-02 16:33:09.772000'),(7074,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-01-02 16:38:17.942000'),(7075,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-02 16:34:15.126000'),(7076,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-01-02 16:38:45.592000'),(7077,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-01-02 16:38:33.689000'),(7078,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-02 16:36:51.187000'),(7079,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2019-01-02 16:36:30.120000'),(7080,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-01-02 16:37:12.186000'),(7081,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-01-02 16:35:23.733000'),(7082,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2018-12-26 16:28:28.746000'),(7083,'Thanks for the 5 star review!','2018-12-26 16:27:29.396000'),(7084,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2018-12-26 16:28:39.622000'),(7085,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2018-12-26 16:28:12.722000'),(7086,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Center is open 24/7, even on the holidays, and here anytime you need emergency medical attention. Thank you again for choosing us!','2018-12-26 16:55:24.241000'),(7087,'Thanks for the 5 star review!','2018-12-26 16:27:39.600000'),(7088,'Thanks for the 5 star review!','2018-12-26 16:27:25.393000'),(7089,'Thanks for the 5 star review!','2018-11-28 16:20:15.456000'),(7090,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2018-12-13 21:32:22.861000'),(7091,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2018-12-13 21:31:47.589000'),(7092,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2018-12-13 21:31:34.513000'),(7094,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2018-12-05 16:46:00.692000'),(7095,'We got all kinds of jokes at SignatureCare ;) Glad we could brighten your day!','2018-12-05 16:45:40.933000'),(7096,'Thanks for the 5 star review!','2018-12-05 16:38:04.581000'),(7097,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient\'s need is addressed as quickly as possible so you can get back on the road to great health, and back to enjoying your holiday. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2018-11-28 16:18:00.312000'),(7098,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-11-28 16:19:15.682000'),(7099,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2018-11-21 16:28:11.387000'),(7100,'Hi, Mildred! We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2018-11-20 17:27:19.170000'),(7101,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2018-11-20 17:26:56.691000'),(7102,'Thanks for the 5 star review!','2018-11-20 17:25:46.547000'),(7103,'We hate to hear that you are experiencing challenges regarding your insurance network. Please be\nsure to contact your insurance provider as they will be able to explain the specific parameters of your\ninsurance policy in relationship to your emergency room billing. We are also here to help. If you\nwould like to speak with a patient advocate from Neighbors Emergency Center please call\n844-406-7263 or email at Patients@neighborshealth.com.','2018-09-21 16:00:13.578000'),(7104,'Hi Eric. Thank you for sharing your experience at Neighbors Emergency Center Texarkana. Our goal is always to provide extraordinary care to all of our patients. We would like to discuss your experience with you at your earliest convenience. Please contact our patient customer service specialist at 844-406-7263 or by email at Patients@neighborshealth.com. We look forward to speaking with you.','2018-05-18 19:34:07.553000'),(7105,'Hi Freda! Thank you for your 5-Star review! Thank you so much for sharing your experience at Neighbors Emergency Center! We are glad you found the medical care provided by Dr. Yost and our staff excellent. We hope your granddaughter is feeling better! ','2018-03-23 16:32:01.965000'),(7106,'Hi Michelle! Thank you for your 5-star review. Please let us know if there is anything additional you would like to provide about your recent Neighbors experience. Thanks again!','2017-12-14 15:32:11.018000'),(7107,'Hi Shelton, Thank you for the kind words about Neighbors Emergency Center. We are grateful that we could help you with your medical emergency in your time of need! We wish you a speedy recovery. \n','2017-07-24 14:13:03.291000'),(7108,'Hi Sheila! Thank you for sharing your positive experience at Neighbors Emergency Center. We are happy you found our services fast and convenient. We wish you a speedy recovery! ','2017-07-12 14:30:04.103000'),(7109,'Hi Mimi! Thank you for taking the time to provide us feedback about your recent visit to Neighbors Emergency Center. We will be sure to share your review with our staff so that may continue to serve the community with excellence. Thank you!','2017-04-18 21:40:09.788000'),(7110,'Thank you for the great review! We appreciate your positive feedback about Neighbors Emergency Center. We hope you are feeling better. ','2017-01-18 15:42:09.515000'),(7111,'We are so glad your experience at Neighbors Emergency Center was a positive one! Thank you for taking the time give us feedback. We hope you are feeling better soon. ','2017-01-04 15:29:27.447000'),(7129,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-18 07:38:04.675000'),(7130,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-18 07:37:44.427000'),(7131,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-18 07:37:31.355000'),(7132,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 07:10:18.912000'),(7133,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. Hope you boyfriend is feeling better.','2019-12-15 07:10:07.103000'),(7134,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 07:09:25.937000'),(7135,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2019-12-15 07:09:04.072000'),(7136,'We love hearing stories like this! It reminds us that SignatureCare patients are our greatest assets and our greatest champions. Thank you so much for your nice words and for the great review. ','2017-05-03 15:12:51.868000'),(7137,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-04 07:19:00.811000'),(7138,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-11-25 06:57:24.031000'),(7139,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-25 06:57:38.004000'),(7140,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-24 07:06:27.911000'),(7141,'We appreciate the great rating you gave us, Tykeiah!','2019-11-19 06:23:33.329000'),(7142,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-11-17 07:19:34.435000'),(7143,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-17 07:19:21.689000'),(7144,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-17 07:19:11.782000'),(7145,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-17 07:18:53.486000'),(7146,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-17 07:18:43.496000'),(7147,'We appreciate your great rating, Cadi!','2019-11-11 07:40:24.952000'),(7148,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-04 11:23:17.471000'),(7149,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your wife. Thank you for choosing SignatureCare.','2019-11-04 11:23:03.202000'),(7150,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-03 06:34:35.402000'),(7151,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-31 09:53:08.973000'),(7152,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-11-03 06:34:54.211000'),(7153,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-29 05:52:24.889000'),(7154,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-27 08:39:18.544000'),(7155,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-10-20 06:43:25.777000'),(7156,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-10-20 06:43:03.473000'),(7157,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-20 06:42:42.532000'),(7158,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-17 08:18:48.013000'),(7159,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-17 08:18:35.304000'),(7160,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-13 07:36:50.925000'),(7161,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-13 07:36:40.593000'),(7162,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-13 07:36:29.907000'),(7163,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-10-10 10:29:58.331000'),(7164,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-09 08:27:11.123000'),(7165,'Thank you so much for your five star rating, Victor!','2019-10-09 08:26:50.399000'),(7166,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-09 08:26:23.644000'),(7167,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope your wife is feeling better.','2019-10-03 07:36:34.711000'),(7168,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-09-29 06:11:35.888000'),(7169,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-09-29 06:10:46.255000'),(7170,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-09-29 06:10:36.402000'),(7171,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-29 06:10:22.767000'),(7172,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-09-26 11:06:49.361000'),(7173,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-19 09:24:46.137000'),(7174,'We appreciate your great rating, Melvin! Thanks for choosing SignatureCare.','2019-09-19 09:24:27.958000'),(7175,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-19 09:23:36.060000'),(7176,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-09-17 11:50:28.569000'),(7177,'Thank you so much for your great rating, Emma!','2019-09-17 11:50:12.934000'),(7178,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-09-11 07:22:08.112000'),(7179,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-11 07:21:53.719000'),(7180,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-11 07:21:35.286000'),(7181,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-09-11 07:20:30.113000'),(7182,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-09-11 07:13:38.846000'),(7183,'Thank you so much for your feedback! Our goal is to always provide the abest care. Thank you for choosing SignatureCare.','2019-09-11 07:09:13.406000'),(7184,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-11 07:09:02.803000'),(7185,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-11 07:08:43.367000'),(7186,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-09-11 07:07:12.877000'),(7187,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! Hope your friend feels well.','2019-09-11 07:08:29.482000'),(7188,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-11 07:06:56.360000'),(7189,'Hi Jennifer, thank you for your feedback. We take it extremely seriously. We apologize you were unhappy with your experience, and we are looking into your claim. We will be in contact with you next week once we review. Thank you for your patience. ','2017-10-13 20:59:10.808000'),(7190,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-08-27 05:03:35.009000'),(7192,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-25 05:33:09.685000'),(7193,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-08-25 05:32:38.856000'),(7194,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-25 05:32:22.660000'),(7195,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-21 04:50:13.050000'),(7196,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 06:28:35.763000'),(7197,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-18 06:28:19.917000'),(7198,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 06:28:08.678000'),(7199,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-08-18 06:27:44.003000'),(7200,'Thank you for taking time out of your busy day to let us know how we are doing. SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are proud to get a chance to serve our community once again.','2019-08-18 06:27:18.081000'),(7201,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-08-18 06:14:34.833000'),(7202,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-08-18 06:14:22.992000'),(7203,'Thank you so much for rating us five star, Yolanda!','2019-08-18 06:14:03.649000'),(7204,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-18 06:13:45.392000'),(7205,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-04-24 05:48:11.681000'),(7206,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-08-18 06:13:26.199000'),(7207,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-08-18 06:12:53.681000'),(7208,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-18 06:12:29.679000'),(7209,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-18 06:12:03.583000'),(7210,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 06:11:38.499000'),(7211,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-08-18 06:11:15.351000'),(7212,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-08-18 06:11:03.802000'),(7213,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-08-18 06:10:36.083000'),(7214,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-18 06:10:18.677000'),(7215,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-08-18 06:09:30.471000'),(7216,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-08-18 06:08:38.525000'),(7217,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-18 06:08:14.218000'),(7218,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-08-18 06:07:47.295000'),(7219,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-08-18 06:07:33.227000'),(7220,'Thanks for leaving a review, Janetta! Please reach out to us at info@ercare24.com to let us know how we can earn those last two stars!','2019-08-18 06:07:23.470000'),(7221,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-08-18 06:06:51.505000'),(7222,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 06:06:41.300000'),(7223,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-18 06:06:20.714000'),(7224,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-08-18 06:05:43.122000'),(7225,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-08-18 06:05:21.209000'),(7226,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-08 15:05:46.641000'),(7227,'We\'re very glad to have helped save your friend\'s life. We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know.','2019-08-08 15:05:28.055000'),(7228,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-04 05:38:32.042000'),(7229,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-04 13:19:33.982000'),(7230,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-08-04 05:40:47.616000'),(7231,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and for the very nice review. ','2019-01-06 18:25:35.308000'),(7232,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-08-04 05:39:54.030000'),(7233,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-08-01 03:38:57.892000'),(7234,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-07-31 06:50:27.821000'),(7235,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-31 06:50:15.044000'),(7236,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. Hope you sister is feeling well.','2019-07-24 06:42:49.340000'),(7237,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-30 06:27:48.459000'),(7238,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-07-29 06:14:44.259000'),(7239,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-21 06:16:17.691000'),(7240,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your sister and nephew. Thank you for choosing SignatureCare.','2019-07-28 07:19:16.563000'),(7241,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-24 06:43:07.572000'),(7242,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-22 07:31:27.206000'),(7243,'Thank you so much for your rating, Gabrielle!','2019-07-22 07:31:19.718000'),(7244,'While we hope not to see you anytime soon, our board-certified doctors are here 24/7 for all your emergency needs. Thank you for taking the time to let us know how we are doing, and for choosing SignatureCare. We hope you are feeling better. ','2018-10-27 17:03:43.381000'),(7245,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-21 06:15:47.631000'),(7246,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-21 06:13:46.765000'),(7247,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-07-18 06:15:10.793000'),(7248,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-18 06:13:45.823000'),(7249,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-17 06:19:53.103000'),(7250,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-16 05:34:45.508000'),(7251,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-16 05:34:31.120000'),(7252,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-16 05:34:15.547000'),(7253,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-07-14 06:13:49.575000'),(7254,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-07-14 06:13:20.696000'),(7255,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-10 06:28:28.812000'),(7256,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-10 06:27:52.786000'),(7257,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-10 06:27:40.277000'),(7258,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-09 07:31:53.026000'),(7259,'Thank you so much for your nice review, Gabby. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-07-09 07:29:14.297000'),(7260,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-07-09 07:21:54.517000'),(7261,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-09 07:18:24.127000'),(7262,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-07-09 07:11:45.698000'),(7263,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-07-09 07:11:27.832000'),(7264,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-08 06:32:35.516000'),(7265,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-07-08 06:32:15.112000'),(7266,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-07-08 06:31:46.907000'),(7267,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-08 06:31:34.774000'),(7268,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-07 07:33:00.865000'),(7269,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-07 07:32:30.882000'),(7270,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-07-07 07:31:55.248000'),(7271,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-07 07:31:31.635000'),(7272,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-07 07:31:20.510000'),(7273,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-07-07 07:30:51.673000'),(7274,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-07-07 07:30:14.871000'),(7275,'Thanks for leaving a review! Please reach out to us at info@ercare24.com to let us know how we can earn those last two stars!','2019-07-08 16:35:40.269000'),(7276,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-07-07 07:29:37.282000'),(7277,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-04 07:36:21.903000'),(7278,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-04 07:36:13.014000'),(7279,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-30 05:54:41.731000'),(7280,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-06-27 06:07:13.000000'),(7281,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-06-27 06:06:48.843000'),(7282,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-26 06:43:57.895000'),(7283,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-26 06:43:23.552000'),(7284,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-26 06:42:43.382000'),(7285,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-26 06:42:05.370000'),(7286,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-26 06:41:33.784000'),(7287,'Thank you for your feedback!','2019-06-26 06:41:18.042000'),(7288,'Thank you for trusting us with the care of your wife. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-06-26 06:40:59.543000'),(7289,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-25 07:42:25.466000'),(7290,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-23 05:12:00.029000'),(7291,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-23 05:11:23.253000'),(7292,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-23 05:10:01.860000'),(7293,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-23 05:09:24.578000'),(7294,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-23 05:08:52.861000'),(7295,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-06-23 05:04:35.759000'),(7296,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-23 05:04:02.402000'),(7297,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-20 04:37:47.169000'),(7298,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-06-19 06:13:42.778000'),(7299,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2019-06-19 06:13:22.188000'),(7300,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-19 06:12:45.294000'),(7301,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-19 06:12:08.332000'),(7302,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-18 06:42:20.107000'),(7303,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-16 06:01:02.923000'),(7304,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-06-16 06:00:56.118000'),(7305,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-16 06:00:26.798000'),(7306,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-16 05:59:51.155000'),(7307,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-16 05:59:33.650000'),(7308,'Hello Doug. We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\nwith your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all reviews very seriously. \n','2019-06-18 14:06:45.965000'),(7309,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-16 05:59:11.252000'),(7310,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-12 06:22:15.609000'),(7311,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-12 06:21:53.777000'),(7312,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-12 06:21:30.998000'),(7313,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-09 08:09:40.796000'),(7314,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-06-09 08:08:59.832000'),(7315,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-09 08:08:34.646000'),(7316,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-28 05:48:47.803000'),(7317,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-27 05:58:36.991000'),(7318,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-05-26 06:28:40.947000'),(7319,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-05-23 06:34:25.646000'),(7320,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-23 06:34:07.238000'),(7321,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-21 04:54:29.113000'),(7322,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-20 05:10:49.280000'),(7323,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-05-19 05:26:58.829000'),(7324,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-13 06:04:01.079000'),(7325,'We believe we have the very best staff in Texas. SigantureCare is equipped with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for your review.','2019-05-13 06:03:43.180000'),(7326,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. Hope your dad feels better.','2019-05-12 04:55:57.859000'),(7327,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal! ','2019-05-13 15:11:04.547000'),(7328,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-08 05:23:12.804000'),(7329,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-08 05:22:36.267000'),(7330,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-05-08 05:21:58.031000'),(7331,'Hello, Jaden! Thanks for the positive feedback--was there anything else we could have done to earn those other three stars? Feel free to reach out to us with questions or comments at info@ercare24.com','2019-05-08 15:25:56.628000'),(7332,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-08 05:21:34.735000'),(7333,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-05-07 04:18:03.356000'),(7334,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-07 04:17:45.989000'),(7335,'We believe we have the very best staff in Texas. Thank you for your review and rating!','2019-05-07 04:17:12.933000'),(7336,'Thank you for your nice review and rating!','2019-05-07 04:17:08.769000'),(7337,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-05-07 04:16:22.021000'),(7338,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-05-06 10:15:05.591000'),(7339,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-06 10:14:48.328000'),(7340,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-05-06 05:57:23.915000'),(7341,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-05-06 05:56:35.906000'),(7342,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-05-05 13:47:53.695000'),(7343,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-05 06:47:20.645000'),(7344,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-05 06:47:05.227000'),(7345,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-05-05 06:46:22.668000'),(7346,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-05 06:45:52.913000'),(7347,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-05 06:45:40.336000'),(7348,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-05 06:45:21.761000'),(7349,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-05-05 06:45:08.157000'),(7350,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-05 06:44:54.052000'),(7351,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-05 06:44:41.373000'),(7352,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-02 09:33:30.267000'),(7353,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-02 09:32:49.821000'),(7354,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-04-23 05:50:32.628000'),(7355,'Thank you for your rating, Rishma!','2019-04-22 06:37:41.922000'),(7356,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-04-22 06:37:13.167000'),(7357,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-04-22 06:24:05.047000'),(7358,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-04-22 06:36:31.110000'),(7359,'Thank you Benson for your review and rating!','2019-04-22 06:35:45.100000'),(7360,'Thank you for letting us know that our team took great care of your friend. At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and rating.','2019-04-22 06:28:21.545000'),(7361,'Thank you for your great review and rating!','2019-04-22 06:25:38.367000'),(7362,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better!','2019-04-22 06:25:04.067000'),(7363,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-04-17 07:10:56.988000'),(7364,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-04-15 06:00:55.110000'),(7365,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-04-15 06:00:15.470000'),(7366,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-04-15 05:58:53.154000'),(7367,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-04-09 07:05:47.765000'),(7368,'We want everyone who walks through our doors to feel like a VIP. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-04-07 05:57:09.004000'),(7369,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-04-02 07:18:11.824000'),(7370,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. Thanks for understanding the difference. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-03-28 04:57:16.096000'),(7371,'Thank you so much for taking the time to let us know about your experience at SignatureCare Emergency Center. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-03-25 07:48:04.330000'),(7372,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. Please thank Townsend on our behalf. We appreciate the great review and rating.','2019-03-24 07:33:49.034000'),(7373,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-03-24 07:24:35.042000'),(7374,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-03-24 07:23:57.298000'),(7375,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-24 07:23:21.734000'),(7376,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your dad\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope he is feeling better. ','2019-03-21 06:34:19.380000'),(7377,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your little one is feeling better. ','2019-03-19 07:19:33.928000'),(7378,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-03-18 06:36:09.340000'),(7379,'We love hearing about the great experience our patients had at SignatureCare. Thanks for letting us know, and we hope your son is feeling better. ','2019-03-12 06:45:23.701000'),(7380,'Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating. Thank you for choosing SignatureCare!','2019-03-13 06:27:38.078000'),(7381,'There\'s never a fun time to visit the ER (especially the weekend and holiday), but we will make your visit with us as quick and as painless as possible. We are open 24/7, even on the holidays. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us. ','2019-03-13 06:25:01.981000'),(7382,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-03-12 15:33:30.452000'),(7383,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved our team --- We will make sure to let them know. ','2019-03-11 07:03:37.184000'),(7384,'We always appreciate positive feedback from our patients and thank you for trusting us with the care of your mom. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-11 07:08:22.900000'),(7385,'We appreciate you taking time from your busy schedule to write us such a positive review. Our first priority is to help you feel better. We are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2019-03-10 13:41:49.635000'),(7386,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-03-10 08:33:09.457000'),(7387,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-10 08:34:01.944000'),(7388,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-10 08:31:01.710000'),(7389,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-03-10 08:32:26.781000'),(7390,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-03-10 08:30:15.685000'),(7391,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-10 08:29:33.960000'),(7392,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-03-10 08:28:09.549000'),(7393,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-03-10 08:27:29.320000'),(7394,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare and recommending us!','2019-03-10 08:26:58.873000'),(7395,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-03-10 08:25:15.775000'),(7396,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback -- it helps us excel at our jobs. ','2018-10-07 17:39:43.286000'),(7397,'Thank you for your continued trust and taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-02-27 13:46:49.006000'),(7398,'We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-26 12:31:47.835000'),(7399,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient\'s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-02-24 11:11:57.901000'),(7400,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-19 13:34:29.978000'),(7401,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-19 13:34:10.214000'),(7402,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us, we will pass them along. Thank you for choosing SignatureCare!','2019-02-19 13:33:47.409000'),(7403,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-19 13:32:45.254000'),(7404,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-02-19 13:32:11.361000'),(7405,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-02-19 13:31:07.530000'),(7406,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-19 13:27:33.513000'),(7407,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating. ','2019-02-13 12:59:40.263000'),(7408,'Thanks for the 5 star, Jess!','2019-02-11 13:24:15.040000'),(7409,'We want everyone who walks through our doors to feel like a VIP. Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-06 13:24:12.142000'),(7410,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at tmoore@roundtmc.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-01-31 16:22:12.115000'),(7411,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-02-05 13:55:41.378000'),(7412,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-02-05 13:58:01.195000'),(7413,'Thank you for rating us 5 star, Aureona!','2019-02-04 13:20:14.203000'),(7414,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. We are glad to hear that we make each visit with us pleasurable and quick. Our staff thanks you for your nice review and great rating. ','2019-02-04 13:26:37.981000'),(7415,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare and for your recommendation.','2019-02-04 13:31:09.072000'),(7416,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-04 13:31:53.686000'),(7417,'Thanks for the 5 star, Marilyn!','2019-02-03 11:46:10.857000'),(7418,'Thank you for a great rating, Natalie!','2019-02-03 11:45:53.733000'),(7419,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-02-03 11:45:16.691000'),(7420,'Thank you for rating us 5 star, Desiree!','2019-02-03 11:44:42.534000'),(7421,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-03 11:44:22.090000'),(7422,'Thanks for leaving a great rating, Veronica!','2019-02-03 11:43:04.943000'),(7423,'Thank you for the 5 star, Marina!','2019-02-03 11:42:39.985000'),(7424,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-03 11:42:24.336000'),(7425,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-02-03 08:01:25.872000'),(7426,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-02-03 07:59:37.300000'),(7427,'We believe we have the very best staff and the newest and most sterilized emergency rooms in Texas. SignatureCare Emergency Centers take pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-02-03 07:03:02.755000'),(7428,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff cares so much about patients and appreciates receiving comments like this. They are always here and willing to meet all your health-care needs 24/7.','2019-01-31 15:19:02.886000'),(7429,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-03 07:01:10.688000'),(7430,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-02-03 06:59:12.696000'),(7431,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-02-03 06:58:24.258000'),(7432,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. And we have the newest and most sterilized emergency rooms in the state of Texas. We appreciate the great review and rating.','2019-02-03 06:57:19.594000'),(7433,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-03 06:54:35.070000'),(7434,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-03 06:50:36.343000'),(7435,'Thanks for the 5 star, Julio!','2019-02-03 06:52:53.428000'),(7436,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare and for your recommendation.','2019-02-03 06:52:35.218000'),(7437,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-02-03 06:51:26.603000'),(7438,'Thanks for rating 5 star, Silvia!','2019-01-30 13:26:37.688000'),(7439,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-01-30 13:26:16.025000'),(7440,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Our goal is to get you in and out quickly and back to good health. We hope you are feeling better! Thank you for the wonderful feedback and recommendation!','2019-01-30 13:25:31.904000'),(7441,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-01-30 13:21:02.398000'),(7442,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-01-30 13:18:37.623000'),(7443,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-30 13:18:02.824000'),(7444,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-30 13:17:38.085000'),(7445,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-29 13:58:44.256000'),(7446,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-01-28 08:29:05.607000'),(7447,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-28 08:28:04.714000'),(7448,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-28 08:27:34.199000'),(7449,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-28 08:26:48.310000'),(7450,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you and your sister. We appreciate the great review and rating.','2019-01-28 08:26:29.451000'),(7451,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-28 08:24:53.212000'),(7452,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-01-28 08:23:24.254000'),(7453,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-28 08:22:35.565000'),(7454,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-24 16:32:37.677000'),(7455,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-01-23 16:11:32.244000'),(7456,'We always aim to provide the best care, so we love hearing that this was your and your wife\'s experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-23 16:11:21.005000'),(7457,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-01-23 16:10:50.535000'),(7458,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-23 14:56:12.741000'),(7459,'Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. Its their compassion that makes our staff so caring towards every patient. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-01-23 14:55:49.483000'),(7460,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare and a recommendation.','2019-01-23 14:52:12.514000'),(7461,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-23 14:51:04.382000'),(7462,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-21 11:37:54.313000'),(7463,'Thanks for the 5 star, Melissa!','2019-01-20 10:05:46.725000'),(7464,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-20 10:05:22.534000'),(7465,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-20 10:04:35.362000'),(7466,'Thanks for the 5 star review!','2019-01-18 16:01:47.710000'),(7467,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-18 16:02:53.314000'),(7468,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-01-16 16:45:46.530000'),(7469,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-18 16:02:43.142000'),(7470,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-17 06:53:39.526000'),(7471,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-17 06:52:56.510000'),(7472,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-17 06:52:02.588000'),(7473,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-17 06:50:06.190000'),(7474,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job, we\'ll make sure to let them know. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare.','2019-01-16 07:49:00.655000'),(7475,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better. ','2019-01-16 07:42:54.752000'),(7476,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-16 07:46:02.244000'),(7477,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-16 07:45:40.490000'),(7478,'Thanks for a great rating, Brittney!','2019-01-16 07:45:14.903000'),(7479,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-01-16 07:44:35.256000'),(7480,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-15 11:14:47.945000'),(7481,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-14 10:14:55.706000'),(7482,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-14 10:14:07.607000'),(7483,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-13 12:51:56.487000'),(7484,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-01-11 17:43:55.240000'),(7485,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-01-08 14:20:18.822000'),(7486,'Thanks for the 5 star review!','2019-01-10 16:13:41.294000'),(7487,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-11 17:44:24.633000'),(7488,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-01-11 17:44:43.230000'),(7489,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-11 17:44:14.674000'),(7490,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out. ','2019-01-11 17:44:56.477000'),(7491,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-01-11 17:45:05.945000'),(7492,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-11 17:43:42.142000'),(7493,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-10 16:14:55.728000'),(7494,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-10 16:16:46.423000'),(7495,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-10 16:15:18.354000'),(7496,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-10 16:14:02.781000'),(7497,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. We want everyone who visits us to feel like family and our employees care so deeply for each patient. It\'s great to hear that our team made you feel welcome and relieved your hospital anxiety - thanks for letting us know. Also thank you for choosing SignatureCare and for the nice review!','2019-01-10 16:13:30.864000'),(7498,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thanks for the great review!','2019-01-10 16:05:30.421000'),(7499,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. It\'s their compassion for others that makes our employees so special. We appreciate you choosing SignatureCare and for recommendation. ','2019-01-10 15:08:29.210000'),(7500,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-01-10 14:19:15.018000'),(7501,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2019-01-10 15:00:18.778000'),(7502,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. It\'s their compassion for others that makes our employees so special. Thank you for choosing SignatureCare, time and again!','2019-01-10 11:18:56.813000'),(7503,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-10 08:28:51.951000'),(7504,'Thanks for the review, Churiah!','2019-01-10 16:14:11.690000'),(7505,'Thank you Maya for the great rating. We appreciate you choosing SignatureCare!','2019-01-09 07:50:31.620000'),(7506,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you Gerry for choosing SignatureCare!','2019-01-09 07:46:44.137000'),(7507,'Thank you Polly for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-09 07:42:58.184000'),(7508,'We believe we have the very best staff in Texas and our staff cares so much about our patients. \nWe want everyone who visits us to feel like family and serve you quickly and to your comfort. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. We will make sure to let them know. Thank you for choosing SignatureCare and for the nice review!','2019-01-08 11:58:04.417000'),(7509,'SignatureCare emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing us!','2019-01-07 18:59:24.742000'),(7510,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel as comfortable as possible and able to relax while your treatment and diagnosis are in process. Thank you for choosing us and for letting us know that we are doing a good job. Our community is important to us, so it\'s nice to hear. ','2019-01-07 18:58:58.723000'),(7511,'SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. Thank you for letting us know that they are doing a good job. We appreciate the great feedback. ','2019-01-07 18:56:49.090000'),(7512,'Our promise to all our patients to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room. Thank you for choosing SignatureCare and for the very nice review. We hope you are feeling better. ','2019-01-07 18:56:09.506000'),(7513,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-07 10:38:00.295000'),(7514,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-07 10:24:11.566000'),(7515,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! ','2019-01-06 18:27:32.233000'),(7516,'When we receive feedback like this, it helps us know we’re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for choosing SignatureCare and for the nice review. ','2019-01-06 18:27:17.302000'),(7517,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2019-01-06 18:26:47.779000'),(7518,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility. ','2019-01-06 18:26:19.804000'),(7519,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2019-01-05 19:08:03.531000'),(7520,'Thank you so much for taking the time to review us. I am so sorry to hear about your billing frustrations with us, and I invite you to speak with our billing director to see if he can come up with a solution for you. Please send him an email to tmoore@roundtmc.com with your full name, date of service and location of service, and allow him to review your file and reach out to you. I am sure he will be able to come up with a solution you will be happy with. Thank you for giving us the opportunity to work with you on this, and thank you so much for your review. We take all comments and reviews very seriously. ','2019-01-05 19:06:30.477000'),(7521,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you so much for choosing SignatureCare. ','2019-01-05 19:07:46.905000'),(7522,'Our team makes us proud every day with the way they care for our patients. Thank you for taking the time to let us know how we are doing. We appreciate the feedback. ','2019-01-05 19:07:22.782000'),(7523,'Thank you so much for your great feedback, Keyshawn. We appreciate the review and the five-star rating.','2019-01-05 19:06:51.278000'),(7524,'We appreciate the kind words and will be sure to pass them along to our team. Thank you for the nice review. ','2019-01-05 00:14:18.256000'),(7525,'Thanks so much for the feedback, Heather. And thank you for choosing SignatureCare. ','2019-01-05 00:13:56.456000'),(7526,'Thank you so much for the five-star rating, Melissa!','2019-01-04 03:47:46.373000'),(7527,'We always appreciate positive feedback from our patients. Our SignatureCare staff is always here and willing to meet all your healthcare needs 24/7. ','2019-01-04 03:47:35.485000'),(7528,'At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2019-01-04 03:46:37.992000'),(7529,'It is never fun when you get sick, but when you have an emergency, we are here to help! Thank you for your review and we hope you are feeling better. ','2019-01-04 03:46:05.806000'),(7530,'Our SignatureCare doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing us and for the fantastic review. ','2019-01-04 03:45:21.934000'),(7531,'We appreciate you taking time from your busy schedule to write us a positive review. Our ERs are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing us!','2019-01-04 03:44:41.431000'),(7532,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2019-01-03 17:35:40.618000'),(7533,'No one likes the ER, but at SignatureCare, we aim to make your stay with us as quick and as comfortable as possible. Thank you so much for choosing us and for the nice review. ','2019-01-03 17:30:53.449000'),(7534,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing us.','2019-01-02 16:43:25.399000'),(7535,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2019-01-02 16:43:01.240000'),(7536,'When we receive feedback like this, it helps us know we’re doing something right in our community. Thank you for choosing SignatureCare. ','2019-01-02 16:42:40.801000'),(7537,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. Thanks for the nice review!\n','2018-12-30 19:58:13.694000'),(7538,'Thank you so much for taking the time to let us know how we are doing. And thank you for choosing SignatureCare!','2018-12-29 17:42:41.227000'),(7539,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for trusting us with your care. ','2018-12-28 16:26:00.906000'),(7540,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was a positive one. Thank you for the nice review and we hope you are feeling better. ','2018-09-19 16:54:11.578000'),(7541,'Thank you so much for the five-star rating, Jennifer!','2018-12-22 14:34:01.066000'),(7542,'SignatureCare Emergency Centers boast wait times of 10 minutes or less -- thank you for letting us know we are exceeding our goals! We know you have a choice in emergency care, and we appreciate you choosing us. ','2018-12-21 03:18:33.302000'),(7543,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2018-12-20 18:35:59.000000'),(7544,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2018-12-19 16:56:41.059000'),(7545,'Our team makes us proud every day with the compassion and care they show our patients. Thank you for taking the time to let us know that they are doing a good job. We appreciate the great feedback, and thank you for choosing SignatureCare!','2018-12-19 16:37:53.893000'),(7546,'Thank you so much for the five-star rating! We appreciate the feedback. ','2018-12-19 16:37:02.890000'),(7547,'Thank you so much for taking the time to let us know how we are doing. We are sorry that you were not greeted warmly, but are very pleased to hear that the rest of our team made you feel welcome and well taken care of. Thank you for choosing SignatureCare and please consider us again should you have another emergency. \n','2018-12-14 16:54:43.516000'),(7548,'Thank you so much for the five-star rating, Brigette. We appreciate the feedback!','2018-12-14 16:40:50.742000'),(7549,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your wife\'s emergency needs with SignatureCare. ','2018-12-10 01:26:26.253000'),(7550,'Thank you so much for the good rating, Brandon. We hope if there is anything we could have done to earn a five-star rating, we hope you will let us know, as we aim for 100% satisfaction each time you visit us. Thank you for choosing us!','2018-12-05 02:44:54.685000'),(7551,'At SignatureCare Emergency Center, we love all our patients, and our number one goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans. Thank you for trusting us with your medical needs and for taking the time to let us know how we are doing!','2018-12-02 16:30:59.832000'),(7552,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are pleased to learn you see the benefits of an emergency room vs. the hospital and are very proud that you chose SignatureCare Emergency Center as your choice for care. Thank you so much for your wonderful feedback!','2018-12-02 16:30:19.714000'),(7553,'Thanks so much for the feedback and great rating. We appreciate it!','2018-11-27 15:38:29.223000'),(7554,'SignatureCare is open 365 days a year, 24 hours a day! While we hope not to see you anytime soon, we are here when you need us. Thank you so much for your nice review. ','2018-11-23 17:00:18.310000'),(7555,'We aim for 100% satisfaction at SignatureCare. Thank you for choosing us and for the nice review. ','2018-11-22 17:09:51.753000'),(7556,'Their dedication for helping others is why we love our doctors. Thank you so much for putting your faith in us, and thank you for the nice review. ','2018-11-18 16:26:35.086000'),(7557,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. Thank you for choosing us and for taking the time to rate our services. We appreciate it!','2018-11-15 16:16:03.816000'),(7558,'At SignatureCare Emergency Center, we love all our patients, and our number one goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to quickly diagnose patients and our board-certified doctors to implement treatment plans (or transfer to a hospital when necessary!). Thank you for trusting us with your medical needs and we hope you are feeling better. ','2018-11-12 15:55:19.600000'),(7559,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff try to make you comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the great review!','2018-11-13 16:36:55.146000'),(7560,'SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear that our team took good care of you and we hope you are feeling better. Thank you for choosing us!','2018-11-13 16:36:09.073000'),(7561,'What a nice comment! Thank you so much for taking the time to let us know how we are doing. We appreciate the feedback and great rating. ','2018-11-08 16:29:40.965000'),(7562,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we hope you are feeling better. ','2018-11-04 15:58:29.591000'),(7563,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here 24/7 if and when you have an unexpected emergency. ','2018-11-04 15:56:21.667000'),(7564,'We aim for 100% satisfaction at SignatureCare. Thank you so much for taking the time out of your day to review our services, and thank you for the great rating!','2018-11-01 20:25:18.925000'),(7565,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. Thanks for the great review. ','2018-10-27 17:04:46.754000'),(7566,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing us!','2018-10-26 16:13:02.687000'),(7567,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and thank you for choosing SignatureCare!','2018-10-26 16:12:30.893000'),(7568,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn about your positive experience with us. Thank you for the nice review!','2018-10-26 16:12:05.225000'),(7569,'Thank you for your kind words -- we will pass them along to our SignatureCare team. Thank you for choosing us and for trusting us with your care. ','2018-10-23 15:36:00.593000'),(7570,'Thank you for taking the time to review us. We take all comments very seriously and we are very sorry to hear about your billing frustrations. Please give us the opportunity to discuss this matter with you personally. I am positive we can come to a resolution. If you would please email our billing director at tmoore@roundtmc.com with your full name, date of service and location of service, Tray will review your bill and reach out to you with what I am sure will be an agreeable solution. Thank you for giving us the chance to make this right with you, Katherine. We appreciate the feedback and your time.','2018-10-21 20:27:57.855000'),(7571,'(Translated by Google) We appreciate your review and recommendation. Thank you very much for choosing SignatureCare.\n\n(Original)\nAgradecemos su revisión y recomendación. Muchas gracias por elegir SignatureCare.','2018-10-18 15:22:14.537000'),(7572,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. We are here 24/7 in case you need us again!','2018-10-14 14:24:08.534000'),(7573,'We know visiting the emergency room can be a scary experience. Thank you for letting SignatureCare put you at ease and provide you with the best care possible. And thank you for the great feedback. ','2018-10-10 15:54:05.157000'),(7574,'Your great feedback will help our team continue to do a good job in our community. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting us with your emergency needs. ','2018-10-10 15:52:21.055000'),(7575,'Thank you so much for your feedback! At SignatureCare, our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2018-10-07 17:42:33.432000'),(7576,'Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for taking time to leave us such a nice review. ','2018-10-07 17:42:13.123000'),(7577,'Thank you for your feedback. When we receive feedback like this, it helps us know we’re doing something right in our community. And thank you for choosing SignatureCare!','2018-10-07 17:40:38.957000'),(7578,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2018-10-07 17:40:08.870000'),(7579,'While we hope not to see you anytime soon, SignatureCare is open 24 hours a day, 7 days a week so you have peace of mind during your next emergency. Thanks for the great rating and nice review. ','2018-10-07 17:39:16.962000'),(7580,'Your positive experience means a lot to our staff. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2018-10-07 17:38:24.601000'),(7581,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2018-10-07 17:37:56.732000'),(7582,'Our emergency centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and SignatureCare\'s doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Thank you for the great review and rating, and we hope you are feeling better. ','2018-10-07 17:37:42.605000'),(7583,'Our doctors, nurses and medical staff aim to make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2018-10-07 17:36:17.256000'),(7584,'Thank you for giving us your trust time and again for your medical care. The ER is never fun, but we aim to make each visit as quick and as painless as possible. Thank you so much for the nice review. ','2018-10-07 17:35:35.112000'),(7585,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. Thank you for choosing us!','2018-10-07 17:35:02.237000'),(7586,'Visiting the ER is never fun, especially when you are out of town. We are sorry your visit to Houston led to food poisoning, but we are very glad to hear that our team delivered excellent care for you. Thank you for letting us know, and thank you for choosing SignatureCare. ','2018-10-07 17:34:35.846000'),(7587,'We appreciate the five-star rating, Cara!','2018-10-07 17:33:41.120000'),(7588,'Thank you so much for the five stars!','2018-10-07 17:33:28.847000'),(7589,'We are so very happy to hear you loved our staff. We will make sure to let them know. We hope you are feeling better and appreciate you choosing SignatureCare. ','2018-10-07 17:33:17.008000'),(7590,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and thank you for choosing SignatureCare!','2018-10-07 17:32:34.351000'),(7591,'Our doctors are board certified and have excellent bedside manners -- so we’ve been told numerous times. Thank you for letting us know that our doctor took such good care of you and that our team made your visit comfortable. And thank you for choosing SignatureCare! ','2018-10-07 17:31:46.779000'),(7592,'When you have an emergency, SignatureCare is open 24/7 and ready to help. Thank you for your review and and great rating.','2018-10-07 17:30:31.516000'),(7593,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you visit SignatureCare. Thank you for the nice review!','2018-09-18 16:27:18.786000'),(7594,'Thank you so much for the five stars! We appreciate and value your feedback. ','2018-09-18 16:26:27.807000'),(7595,'We get you in to see a doctor FAST so that you can feel better faster and get back on the road to good health. Thank you for letting us know how we are doing and for choosing SignatureCare. ','2018-09-17 17:05:24.140000'),(7596,'It’s great to hear that our staff was pleasant and that your experience with us was positive. Thank you for the fantastic review, and for trusting SignatureCare with your care. ','2018-09-16 22:40:38.782000'),(7597,'SignatureCare\'s doors are open 24/7 for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to us to hear that we’re doing a good job. ','2018-09-15 19:27:30.168000'),(7598,'Our team makes us proud every day. Thank you for letting us know that they are doing. good job, and thank you for choosing SignatureCare!','2018-09-14 21:04:59.190000'),(7599,'At SignatureCare Emergency Center, we love all our patients, and our number one goal is to treat and diagnose quickly and ensure you feel better faster. We do that by using our on-site state-of-the-art equipment to diagnose and our board-certified doctors to implement treatment plans. We appreciate your trust and the great review. ','2018-09-09 13:43:12.115000'),(7600,'We appreciate you taking time from your day to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2018-09-08 15:57:10.805000'),(7601,'Thank you so much for the feedback. We appreciate your comments and reviews, as we are always looking for ways to improve our services. Thank you for choosing SignatureCare!','2018-09-08 15:31:29.347000'),(7602,'Children are a top priority of our SignatureCare team. Children cannot always tell us what’s wrong like an adult, but using our state-of-the-art equipment and onsite lab services, we are able to quickly diagnose young children. We are here to help any time your child isn\'t feeling well. Thank you for your review and we hope your son feels better soon!','2018-09-07 16:16:47.993000'),(7603,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are glad to learn that you see the benefits of our freestanding emergency room vs. the hospital and are very proud that you chose our emergency room as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and great rating!','2018-09-07 16:14:48.313000'),(7604,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! And thank you for choosing SignatureCare. ','2018-09-03 14:53:41.759000'),(7605,'Our staff makes us proud every day with their dedication and compassion for others. Thank you for letting us know that they are doing a good job. We appreciate the feedback!','2018-08-31 16:14:58.395000'),(7606,'Thank you for your kind words -- we will pass them along to our team. Thank you for choosing SignatureCare!','2018-08-31 16:14:22.725000'),(7607,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We appreciate you giving us your trust during your recent emergency and for taking the time to let us know how we did. Thanks so much!','2018-08-28 14:38:44.658000'),(7608,'We are so happy to hear your experience was as it should always be when you visit SignatureCare. Thanks for letting us know and for the nice review. ','2018-08-26 17:01:41.056000'),(7609,'We have some of the best staff in Texas. SignatureCare Emergency Center takes pride in our staff, and we are so very happy to hear that they took good care of you. Thanks for the great rating and review. ','2018-08-25 16:52:57.416000'),(7610,'Thank you so much for the five-star rating!','2018-08-24 15:25:04.241000'),(7611,'SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we are proud to be a part of our community. Thank you so much for the nice review!','2018-08-20 15:21:14.242000'),(7612,'Having to bring a sick child to the ER can be a scary experience, but here at SignatureCare, we treat all children as if they are our own, with the utmost professionalism and care. Thank you for trusting us with her care and we hope she is feeling better. ','2018-08-19 17:18:58.380000'),(7613,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. ','2018-08-17 14:50:03.973000'),(7614,'Thank you so much for your feedback. It helps us excel at our jobs, and we appreciate it. ','2017-01-12 01:56:56.847000'),(7615,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you so much for choosing SignatureCare!','2018-08-17 14:49:15.364000'),(7616,'Our goal is to always provide the best care. Thank you for choosing SignatureCare. We are here 24/7 in case you ever need us again. ','2018-08-16 16:24:13.580000'),(7617,'Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. We appreciate the nice review and great rating. ','2018-08-16 16:23:39.372000'),(7618,'Thank you for your feedback -- it helps us excel at our jobs. We appreciate you choosing SignatureCare and the great review. ','2018-08-16 16:23:11.050000'),(7619,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, and thank you for choosing us!','2018-08-15 18:10:39.530000'),(7620,'Thank you for supporting us, and putting your trust in our SignatureCare medical team. We appreciate the nice review and great rating. ','2018-08-15 18:09:54.363000'),(7621,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you visit SignatureCare. ','2018-08-13 13:33:15.137000'),(7622,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. We appreciate you taking time from your busy schedule to write us such a positive review. Thank you again for choosing SignatureCare Emergency Centers. ','2018-08-14 15:46:09.715000'),(7623,'We appreciate the five star rating more than you know. Thanks so much for choosing SignatureCare!','2018-08-14 13:30:32.057000'),(7624,'Our SignatureCare team appreciates the great feedback. Thank you for choosing us!','2018-08-14 13:30:15.998000'),(7625,'Thank you for choosing SignatureCare and for the nice review. We appreciate the feedback. ','2018-08-13 13:33:56.178000'),(7626,'Thank you for the five-star rating! We appreciate the feedback. ','2018-08-12 16:17:40.367000'),(7627,'We appreciate and value your feedback. Thank you for your positive review, and we hope you feel better. Thanks for choosing SignatureCare. ','2018-08-12 16:17:24.593000'),(7628,'It is never fun when you get sick, but when you have an emergency, we are here to help! Thank you for your review and great rating. ','2018-08-12 16:16:42.281000'),(7629,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. Thanks for choosing SignatureCare!','2018-08-12 16:15:58.458000'),(7630,'We are so sorry to hear about your employee\'s recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for choosing us and we hope your employee is feeling better. ','2018-08-12 16:15:32.085000'),(7631,'We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for the nice review and great rating. ','2018-08-12 16:14:05.732000'),(7632,'We are so very happy to hear about your positive experience. Thank you for the nice review. ','2018-08-12 16:13:38.890000'),(7633,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers and for the great rating. ','2018-08-12 16:12:36.481000'),(7634,'Thank you for your kind words -- we will pass them along. Thank you for choosing SignatureCare!','2018-08-12 16:12:09.721000'),(7635,'We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. Thank you for choosing us!','2018-08-12 16:07:36.385000'),(7636,'It is never fun when you get sick, but when you have an emergency, we are here to help! Thank you for your review and we hope you feel better. ','2018-08-12 16:11:22.175000'),(7637,'We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2018-08-11 13:39:01.764000'),(7638,'When we receive feedback like this, it helps us know we’re doing something right in our community. Thank you for giving us your trust. ','2018-08-11 13:38:40.649000'),(7639,'We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. ','2018-08-11 13:38:18.403000'),(7640,'Thank you for letting SignatureCare help you and help you feel better! We hope we put you at ease and provided you with the best care possible. ','2018-08-11 13:37:57.391000'),(7641,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback and for choosing us!','2018-08-11 13:37:32.518000'),(7642,'Our doors are always open for those suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. ','2018-08-11 13:37:15.885000'),(7643,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. Thank you so much for choosing SignatureCare!','2018-08-11 13:36:45.245000'),(7644,'Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust and we hope you are feeling better. ','2018-08-11 13:36:20.796000'),(7645,'We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2018-08-11 13:35:44.548000'),(7646,'The board-certified team at SignatureCare cares deeply about all of our patients. We want patients to know they will be taken care of with the highest level of professionalism. Thank you for entrusting our team with your care. If you need peace of mind in the future, don’t hesitate to contact us. ','2018-08-11 13:33:36.195000'),(7647,'Thank you for the five-star rating. We appreciate the feedback!','2018-08-03 19:23:05.952000'),(7648,'Thank you so much for the great rating and feedback. We are open 24/7 in case you ever need us again. ','2018-08-11 13:33:56.991000'),(7649,'Our goal is to get you feeling better quickly so you can return to your busy life! Thank you for trusting SignatureCare with your care and for the great review. ','2018-08-11 13:34:50.458000'),(7650,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We appreciate the nice review and great rating.','2018-08-11 13:35:21.394000'),(7651,'Our staff makes us proud every day! Thank you for letting us know they are doing a good job. ','2018-08-09 16:40:52.948000'),(7652,'Thank you for your kind words. We will be sure to pass them along. Thank you for choosing SignatureCare for your emergency needs. ','2018-08-09 16:40:31.759000'),(7653,'Thank you so much for taking the time to review us. We appreciate the feedback. Thank you for choosing SignatureCare!','2018-08-09 16:40:09.094000'),(7654,'While we hope not to see you anytime soon, we want you to know that we are here 24/7 in case of any future medical emergency. Thank you for letting us know that our SignatureCare team is doing a good job -- we appreciate the feedback!','2018-08-09 16:36:55.973000'),(7655,'We appreciate the feedback and the five-star rating. Thank you for choosing SignatureCare!','2018-08-09 16:35:57.982000'),(7656,'We pride ourselves in having some of the best doctors, nurses and staff in Texas. Thank you for letting us know that they are doing a good job in our community. And thank you for choosing SignatureCare. ','2018-08-07 17:34:55.400000'),(7657,'Our patients are what keep us going strong. Thank you for your positive review, and thank you for choosing SignatureCare. ','2018-08-07 17:33:38.085000'),(7658,'We are so glad to hear about your pleasant experience with us. Thank you for choosing SignatureCare!','2018-08-07 17:29:46.142000'),(7659,'You are right -- NO ONE likes the ER! But we aim to make your visit as pleasant as possible. Our team works hard to treat each patient like a VIP, so it\'s great to hear that this was your experience with us. Thank you for taking the time to write a review. We appreciate your feedback and hope you are feeling better. ','2018-08-07 17:22:21.687000'),(7660,'Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. Thank you for choosing SignatureCare. ','2018-08-05 17:52:22.997000'),(7661,'Our staff makes us proud every day -- thank you for reminding us how great they are to their patients. We appreciate your trust and your feedback. ','2018-08-05 17:51:48.664000'),(7662,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. ','2018-08-04 16:38:14.009000'),(7663,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2018-08-04 16:37:41.322000'),(7664,'We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. And thank you so much for the nice review. ','2018-08-04 16:36:47.029000'),(7665,'We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. And thank you for choosing SignatureCare. ','2018-08-04 16:35:48.260000'),(7666,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2018-08-04 16:35:08.475000'),(7667,'Thank you for your kind words. We will pass them along to our team. Thank you for choosing SignatureCare!','2018-08-03 19:24:35.452000'),(7668,'We appreciate the feedback and great rating. Thank you for choosing SignatureCare!','2018-08-03 19:23:38.378000'),(7669,'Their compassion for helping others is why we love our staff. Thanks for letting us know that they are doing a good job. Thank you for choosing SignatureCare!','2018-08-03 19:22:52.622000'),(7670,'We aim to get you in and out quickly and on your way back to good health. Thank you for trusting us with your care and for taking the time to let us know how we did. ','2018-08-03 19:22:23.444000'),(7671,'Our community is important to us, so it\'s great to hear that we are doing a good job. Thanks for choosing SignatureCare!','2018-08-03 19:21:48.790000'),(7672,'We want all of our patients to feel like VIPs, so we are glad this was your experience with our facility. Thank you for your trust and for the very nice review. ','2018-08-03 19:21:26.725000'),(7673,'Thank you for the five-star rating!','2018-08-03 19:20:52.205000'),(7674,'Thank you for the great words about our staff. We are so glad they treated you so well and we hope you are feeling better!','2018-08-03 19:19:32.733000'),(7675,'We appreciate your feedback and any future recommendation. Thank you for trusting SignatureCare with your emergency needs, and know that we are here 24/7 in case you need us again. ','2018-08-03 19:20:10.790000'),(7676,'We aim for 100% satisfaction at SignatureCare, so we are so glad to hear about your positive experience. Thank you for your nice review. ','2018-08-03 19:20:39.582000'),(7677,'SignatureCare\'s board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for letting us know that we are doing a good job, and thank you for choosing us!','2018-08-02 15:37:27.605000'),(7678,'Thank you so much for your kind words -- we will pass them along! Our employees aim to make each patient feel appreciated and listened to, so it\'s great to hear that this was your experience with SignatureCare. Thank you so much for choosing us, and for the great, five-star rating. ','2018-08-01 16:35:52.535000'),(7679,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare. ','2018-08-01 16:36:47.223000'),(7680,'Thank you for your kind words and for giving us the chance to care for you. Thanks for the great rating!','2018-07-31 01:40:45.852000'),(7681,'Our SignatureCare team loves feedback like this. Our community is important to us, so it\'s great to hear that we are doing a good job. Thank you for choosing us and for the nice review!','2018-07-28 15:27:39.840000'),(7682,'We are very sorry to hear about your billing frustrations. We take all of our reviews and comments very seriously, and would like to have our Billing Manager, Tray Moore, look into your bill for you to see if we can come to a resolution. Would you please email tmoore@roundtmc.com with your name, date of service and location of service so that he can review your file and get back with you? We appreciate the chance to review your file and to make you a satisfied patient with SignatureCare. ','2018-06-01 17:26:34.128000'),(7683,'Thank you for the five-star rating! We appreciate the feedback. ','2018-07-26 14:43:21.489000'),(7684,'We appreciate you trusting us with your family\'s care. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare. ','2018-07-25 14:20:28.693000'),(7685,'We are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and thank you for choosing SignatureCare. ','2018-07-23 15:47:05.830000'),(7686,'We appreciate the great review. Thank you for choosing SignatureCare and we hope you are feeling better. ','2018-07-21 17:52:55.982000'),(7687,'We are sorry to hear about your wife\'s emergency, but are so glad you gave us the opportunity to care for her. Thank you for the nice review, and we hope your wife is feeling better. ','2018-07-19 15:14:49.274000'),(7688,'Thank you for taking time out of your day to let us know how we are doing. Our SignatureCare team appreciates the feedback and the great rating. We hope you are feeling better!','2018-07-20 16:56:02.570000'),(7689,'\nAt SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff aim to make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2018-07-15 15:59:49.990000'),(7690,'At SignatureCare Emergency Center, we love all our patients, and our number one goal is to treat and diagnose quickly and ensure you feel better faster. We are pleased that this was your experience with our facility. Thank you for trusting us with your emergency need!','2018-07-09 16:12:43.681000'),(7691,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and know that we are here 24/7 in case of any future medical emergency. ','2018-07-06 15:35:53.992000'),(7692,'Our goal at SignatureCare is to get you in and out quickly and back on the road to good health. Thank you for giving us your trust and for the very nice review. ','2018-07-06 15:36:25.968000'),(7693,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback!','2018-07-05 16:09:11.058000'),(7694,'Thank you for your kind words -- we will pass them along to our team. Thank you for choosing SignatureCare!','2018-07-02 17:27:42.167000'),(7695,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are so glad that you had a positive experience at our facility, and we appreciate the great review. We hope you are feeling better!','2018-06-27 14:12:53.802000'),(7696,'Thank you for letting us know how our team is doing. We appreciate any and all feedback, but enjoy hearing most when our patients have such a positive experience. Thank you for choosing SignatureCare!','2018-06-20 21:20:29.828000'),(7697,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2018-06-16 14:52:53.953000'),(7698,'We are so happy that you see the benefit of our emergency centers over a hospital emergency room. With shorter wait times, and staff that treats you like family, SignatureCare aims to be the community choice when it comes to emergency care. Thank you for giving us the chance to take care of you while you were feeling bed, and we hope you are feeling better!','2018-06-08 16:28:28.095000'),(7699,'I apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. We would love to discuss this incident with you and get more details so we can do better next time. Can you email jmartin@ercare24.com with the patient\'s full name, date of service and location of service so that we can review? We appreciate your feedback. ','2018-06-07 17:28:09.738000'),(7700,'Thank you so much for the feedback and great rating!','2018-06-06 15:27:09.468000'),(7701,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers and for the nice review. ','2018-06-04 16:28:54.197000'),(7702,'Hi Staan, it looks like, based on your star rating, that you did not have a very good experience with us. We would love to know why so that we can improve our services. Please give us some feedback so we can enter understand your experience. Thanks so much!','2018-05-28 18:30:39.433000'),(7703,'Our promise to all our patients is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit SignatureCare. Thanks for the great review!','2018-05-27 15:06:47.311000'),(7704,'We are sorry to hear about your recent emergency, but are glad to hear that our team took good care of you. Thank you for the nice rating and review. ','2018-05-09 16:45:38.589000'),(7705,'We appreciate you giving us your trust time and again for your emergency medical needs. Thank you for taking the time to let us know that our team is doing a good job. We will pass along your kind words to our team. Thanks again for choosing SignatureCare!','2018-05-08 15:54:23.235000'),(7706,'Thank you for taking time out of your day to leave us a nice review. We appreciate the feedback and thank you for choosing SignatureCare!','2018-05-07 17:07:32.847000'),(7707,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room. Thank you for choosing SignatureCare. ','2018-04-26 14:10:06.611000'),(7708,'Thank you for the five-star rating, Kesia! And thank you for choosing SignatureCare. ','2018-04-24 16:45:32.049000'),(7709,'We appreciate your continued trust. Thank you for taking the time to review our services, and for the great rating!','2018-04-19 17:28:18.881000'),(7710,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient\'s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare and thank you for the nice review!','2018-04-11 14:18:43.233000'),(7711,'It\'s great to hear that our staff was pleasant during your visit with SignatureCare. Thank you for letting us know that we are doing a good job, and for giving us the chance to take care of you. We hope you are feeling better!','2018-04-10 20:26:52.010000'),(7712,'We appreciate you taking time from your busy schedule to write us such a positive review. SignatureCare is open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us and for the very nice review. ','2018-04-07 16:01:24.113000'),(7713,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our team will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2018-04-03 13:51:15.229000'),(7714,'We are sorry to hear about your husband\'s emergency, but appreciate you choosing SignatureCare. Thank you so much for the feedback. ','2017-04-07 16:38:25.669000'),(7715,'It\'s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review and rating, and thank you for giving us the chance to care for you during your emergency. ','2018-03-20 15:07:35.389000'),(7716,'Thank you for the five-star rating, Jennifer. We appreciate the feedback. Thank you for choosing SignatureCare!','2018-03-20 15:06:37.249000'),(7717,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback and the great rating.','2018-03-18 16:43:33.300000'),(7718,'Our doctors have excellent bedside manners, and we have some of the very best nurses in Texas. SignatureCare Emergency Center takes pride in our staff, and we are very happy to hear that they took good care of you. Thank you for choosing us, and we hope you are feeling better.\n','2018-03-14 17:20:12.410000'),(7719,'\nWe are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you feel better. ','2018-03-09 17:02:54.974000'),(7720,'Thank you so much for your kind words and nice review. We will pass them along!','2018-03-06 16:20:27.050000'),(7721,'Thank you for taking time out of your busy day to review us and our team. We appreciate your feedback and the chance to care for you. Thanks for choosing SignatureCare. ','2018-03-01 17:45:12.526000'),(7722,'Our goal at SignatureCare is to get you in and out quickly sot hat you can get back on the road to good health (and good hearing!). Thanks for letting us know we are doing a good job. ','2018-02-27 16:59:15.138000'),(7723,'Thank you for letting us know how we are doing. We appreciate you choosing SignatureCare!','2018-02-21 22:13:06.628000'),(7724,'We are sorry to learn about your experience. I would like to have our manager reach out to you and learn more. Could you please send me your information at info@ercare24.com. Thank you and we hope you feel better. ','2018-02-15 23:13:24.221000'),(7725,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you so much for the great review and rating. ','2018-02-10 16:26:39.591000'),(7726,'Our community is important to us, so we are so pleased to hear that we are doing a good job. Our goal is to make patients and their guests comfortable while diagnosis and treatment are in progress. Thank you for trusting us with your boyfriend\'s care, and we hope he is feeling better. ','2018-02-06 16:35:55.220000'),(7727,'We appreciate the five-star rating, Jessica!','2018-02-05 17:29:14.361000'),(7728,'Our team appreciates hearing feedback like this -- it will help us continue to do a good job in our community. Thank you for choosing SignatureCare and we hope you are feeling better. ','2018-02-03 18:09:57.177000'),(7729,'Our staff cares so much about our community, and they continue to make us proud every day with their kindness and compassion. Thanks for letting us know that they are doing a good job. We appreciate the review and great rating. ','2018-02-01 21:08:02.843000'),(7730,'Thanks so much for letting us know how our team is doing. It\'s important that we take good care of our community. Thank you for choosing SignatureCare and for the great feedback!','2018-02-01 15:37:23.180000'),(7731,'Thanks so much for your feedback. We appreciate it, and the nice review. We hope you are feeling better. ','2018-01-27 17:07:04.309000'),(7732,'We will be sure to pass along your kind words to our staff. Thanks for your feedback, and for choosing SignatureCare ','2018-01-27 17:06:36.920000'),(7733,'Thank you so much for placing your trust in SignatureCare Emergency Center. We appreciate your feedback and the very nice review. We hope your ankle is better!','2018-01-26 16:17:53.628000'),(7734,'Thanks for the great review and rating!','2018-01-25 12:58:55.852000'),(7735,'Our SignatureCare team makes us proud every day with the care they offer to our community. We are so glad you trusted them to take care of you, and hope you will consider us next time you have a medical emergency. Thanks for the great review and rating. ','2018-01-25 12:59:44.104000'),(7736,'We are here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, and we appreciate your nice review. Thanks for choosing SignatureCare. ','2018-01-18 16:56:29.844000'),(7737,'We appreciate and value your feedback. Our patients are what keep us going strong. Thank you for your positive review, and for trusting us with your care. ','2018-01-12 16:30:42.822000'),(7738,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2018-01-07 19:29:16.093000'),(7739,'Thanks for the feedback and the great rating -- we appreciate it!','2018-01-07 19:29:45.937000'),(7740,'Thank you for the five-star rating, Stan!','2018-01-05 17:23:05.681000'),(7741,'Thanks so much for the great rating, Andrew. If there\'s anything we could have done to earn that fifth star, we hope you will let us know!','2018-01-03 15:55:41.618000'),(7742,'Thanks so much for the five-star rating. We appreciate the feedback!','2018-01-03 15:52:47.533000'),(7743,'Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2017-12-29 16:17:06.258000'),(7744,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-12-29 16:16:35.505000'),(7745,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We are glad to hear that we put you at ease and made your visit with us a pleasant one. ','2017-12-28 15:04:30.151000'),(7746,'Our patients are what keep us going strong. Thank you for your positive review, and for choosing SignatureCare. ','2017-12-27 19:40:28.277000'),(7747,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2017-12-26 19:07:45.043000'),(7748,'We are happy you had a great visit and we made you feel safe. Our goal is to provide excellent care and we are happy we did that for you. Feel Better','2017-12-14 23:01:28.474000'),(7749,'Thank you so much for the 5 Star rating. We hop you feel better!','2017-12-14 23:02:43.981000'),(7750,'Thank you for the positive 5 Star feedback!','2017-12-14 23:04:27.790000'),(7751,'Our staff aim for a short wait and we are glad you were well taken care of. If you need us we are here 24/7. Including the holidays! ','2017-12-14 23:05:47.744000'),(7752,'We appreciate your feedback! Thanks','2017-12-14 23:04:50.088000'),(7753,'Our goal is to provide excellent care, from the front desk to the doctors and nurses. We strive for patient satisfaction and are so happy that your visit reflected that. We will always be here if you need any medical attention in the future and we are humbled that you would refer us to your friends and family. We promise to take great care of them as well. Safe safe and well. ','2017-12-14 23:09:05.583000'),(7754,'Thank you Amanda. We are glad your daughter and you had a great visit. Although we do not hope to see you soon, we are here should you need us. :)','2017-12-14 23:04:12.393000'),(7755,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2017-11-28 17:53:47.953000'),(7756,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and at the nice review. Thanks for choosing SignatureCare. ','2017-11-27 19:53:34.296000'),(7757,'No one likes the ER, but at SignatureCare, we aim to make your visit with us as painless as possible. Thank you for the nice review. ','2017-11-22 14:42:54.882000'),(7758,'Our staff make us proud every day! Thank you for letting us know how they are doing. We will pass along your kind words. ','2017-11-22 14:42:28.217000'),(7759,'Thank you so much for the five-star rating, Rosemary!','2017-11-20 14:16:03.891000'),(7760,'Thank you so much for the feedback. We appreciate the five stars!','2017-11-14 19:10:34.405000'),(7761,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients first. We hope you are feeling better. ','2017-11-13 18:57:28.869000'),(7762,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-11-12 18:57:14.766000'),(7763,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, SignatureCare is here when you do have an unexpected emergency. ','2017-11-10 17:11:31.303000'),(7764,'SignatureCare Emergency Center takes pride in our staff because our staff cares so much about our patients. We are so very happy to hear you loved your medical team. We will make sure to let them know. ','2017-11-05 16:48:03.666000'),(7765,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-11-05 16:49:49.314000'),(7766,'We appreciate the feedback, Alex. Thank you for choosing SignatureCare. ','2017-11-04 15:16:44.077000'),(7767,'We are so glad to know that our certified medical staff were kind and patient. These are some of the very traits we looks for when hiring medical staff and we employ some of the best!. Thank you for visiting us and although we don\'t hope to see you soon, we are always here 24 hours a day if you do need us. ','2017-01-19 20:13:45.568000'),(7768,'We appreciate the five-star rating!','2017-10-30 01:31:53.362000'),(7769,'We will pass along your kind words! Thanks for letting us know that our SignatureCare team is doing a good job. ','2017-10-26 15:31:32.904000'),(7770,'Thank you for the kind words about our staff -- they certainly do us proud every day! We appreciate the feedback and the great rating. ','2017-10-26 15:30:44.763000'),(7771,'Thank you for the five-star review!','2017-10-25 16:34:21.467000'),(7772,'We appreciate this positive feedback, Leigh. Thanks so much for your kind words and for choosing SignatureCare. ','2017-10-20 20:45:18.410000'),(7773,'Thank you so much for the 5 star rating. We aim to please and provide emergency care 24 hours to everyone in the Montrose area. Thanks for Choosing SignatureCare','2017-10-19 14:56:51.008000'),(7774,'We are glad you had a good visit- When you need emergency care- we will be here. We hope you feel better. ','2017-10-19 15:00:02.998000'),(7775,'We appreciate you taking the time to rate us!','2017-10-14 15:40:21.517000'),(7776,'Thank you for the five-star rating. We appreciate it.','2017-10-14 15:40:07.359000'),(7777,'Thank you for the five-star rating!','2017-10-14 15:39:43.242000'),(7778,'Our SignatureCare team makes us proud every day with the way they care for our patients. Thank you for letting us know they are doing a good job. ','2017-10-12 14:02:55.763000'),(7779,'Thank you for the five-star rating, Tina!','2017-10-05 16:15:03.245000'),(7780,'Hi there -- I notice that your review says that you had a pleasant visit, and that our nurse called you afterward to ask how you were doing, but you only rated us 3 stars. Was there something that happened that caused you to give us a less-than-stellar rating? We would love to know about it because we always aim for 100% satisfaction when you visit SignatureCare. Please let us know what we could have done to make your visit better so that we can continue to improve. Thank you so much for taking the time to rate and review us. We appreciate the feedback.','2017-10-10 13:14:08.919000'),(7781,'The SignatureCare team makes us proud every day with how they take are of our patients. Thank you for letting us know they are ding a good job.','2017-10-10 00:03:57.335000'),(7782,'Short wait time (of 10 minutes or less) is our signature, and we also make sure every patient is seen by a board-certified physician. Every patient is a VIP at SignatureCare, and we are pleased to hear that this was your experience with our facility. Thank you for letting us take care of you and for the great review.','2017-10-09 00:07:46.305000'),(7783,'At SignatureCare Emergency Center, we understand that the ER is not anyone\'s favorite place, but our doctors, nurses and medical team will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2017-10-04 15:29:23.061000'),(7784,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. Thank you for letting us know they are doing a good job. We appreciate the great review.','2017-10-01 14:20:33.998000'),(7785,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-09-29 14:08:07.095000'),(7786,'We are sorry to hear that you had a less than stellar experience at our facility. We would like to learn more about what happened in your situation. Can you please email info@ercare24.com so that we can look into this further? We appreciate your help.','2017-09-25 19:17:25.571000'),(7787,'We appreciate the five-star rating!','2017-09-22 23:44:45.675000'),(7788,'SignatureCare Emergency Center takes pride in our work, and it\'s great to hear that our team took good care of you. We hope you are feeling better -- thanks again for choosing our facility. ','2017-09-19 02:45:52.297000'),(7789,'Thank you for taking the time to review our services, Paige. If there was anything we could have done to earn that fifth star, we hope you will let us know, as we aim for 100% satisfaction each time you visit SignatureCare. ','2017-09-16 14:25:43.186000'),(7790,'Our registration staff and nurses continue to make us proud. Thank you for trusting them to take care of you. We will pass along your kind words. ','2017-09-11 01:03:03.292000'),(7791,'Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2017-09-07 16:16:31.357000'),(7792,'No one likes the ER, but we hope our team was able to make you as comfortable as possible. It\'s great to hear that you are feeling better. We appreciate the great review. ','2017-09-06 16:01:38.651000'),(7793,'Thank you for taking time out of your day to review SignatureCare Emergency Center. We appreciate the feedback and the great rating. While we hope not to see you anytime soon, we hope you will consider us in case of a future emergency. ','2017-08-23 01:31:58.771000'),(7794,'Thank you for the feedback. We appreciate the five-star rating. ','2017-08-23 01:28:54.513000'),(7795,'We appreciate you taking time from your busy schedule to write us such a positive review. SignatureCare is open 24/7 and here anytime you need emergency medical attention. ','2017-08-16 01:15:11.912000'),(7796,'SignatureCare aims to make all of our patients feel like VIPs. It\'s great to hear that was your experience at our facility. We will pass along your kind words to our staff, and we appreciate the review!','2017-08-10 01:41:43.605000'),(7797,'We are sorry about your recent emergency, but are very pleased to hear our staff made you feel better. Thanks for the great review!','2017-08-01 01:25:59.438000'),(7798,'Thank you so much for the nice feedback, Michelle. We appreciate it, and the great rating.','2017-07-29 14:03:36.732000'),(7799,'It\'s great to hear that we are doing a good job in our community. Thank you for your nice review and for letting SignatureCare take care of you!','2017-07-25 01:53:00.332000'),(7800,'We are very sorry to learn about your experience and would like to speak with you. Please contact our Manager Tia Graves at tgraves@ercare24.com who would like to learn more about what happened. We take complaints very seriously. We hope you will contact Tia and consider our emergency rooms again in the future. ','2017-07-24 14:36:36.243000'),(7801,'Thank you for letting us know how we are doing. Our goals are to provide the best care possible to all patients and ensure you are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with SignatureCare. Thanks for the great review. ','2017-07-20 01:16:47.727000'),(7802,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-07-15 22:08:46.467000'),(7803,'Our signature is a short wait time -- usually 10 minutes or less -- and it\'s great to hear that was your experience at SignatureCare. Tahnk you for letting our team take good care of you, and we hope you are feeling better. ','2017-07-09 23:55:47.335000'),(7804,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-08-26 14:59:49.608000'),(7805,'We appreciate the five-star rating. Thank you for giving us the chance to take care of you.','2017-07-04 14:14:02.037000'),(7806,'We are very happy to learn your experience at SignatureCare was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2017-06-30 12:24:46.101000'),(7807,'Thank you for the fantastic review. We are always open and available when you have an unexpected emergency. ','2017-06-28 01:40:34.531000'),(7808,'We are sorry to learn of your experience attempting to use our restrooms. We have a policy in place as many other businesses do for the use of restrooms. We do not have public restrooms at our emergency rooms and have bathrooms for patients for security, and health reasons. We hope you will not hold this against us and visit our emergency room if you ever have a medical emergency, We also hope you understand!. ','2017-07-11 20:35:23.060000'),(7809,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2017-06-25 13:25:21.243000'),(7810,'Thank you for giving SignatureCare the chance to take care of you during your emergency. We appreciate your support. \n','2017-06-22 16:41:18.625000'),(7811,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-06-17 14:10:52.869000'),(7812,'We are sorry about your recent emergencies, but are pleased to hear our team took good care of you. Take care of yourself out there, because we don\'t want to see you anytime soon! We appreciate your feedback and the great rating. Thank you for trusting us with your emergency.','2017-06-14 02:07:47.151000'),(7813,'We appreciate the five-star rating!','2017-04-13 14:09:17.466000'),(7814,'Our goal is to take care of you quickly and to make sure you are comfortable during diagnosis and treatment. It\'s great to hear that this was your experience with our emergency room. Thank you for choosing SignatureCare. ','2017-06-01 19:11:02.124000'),(7815,'Thank you for the great rating -- we appreciate it!\n','2017-06-01 01:38:11.946000'),(7816,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-06-01 01:37:54.770000'),(7817,'Our goal at SignatureCare is to get you in and out quickly, and back on the road to good health. Thank you for choosing us and for the nice review.','2017-05-20 16:31:56.679000'),(7818,'Thank you for letting us know our SignatureCare team is doing a good job. We appreciate the review and rating.','2017-05-20 16:31:24.534000'),(7819,'Thank you for your review -- we appreciate it!','2017-05-20 16:30:54.860000'),(7820,'The SignatureCare team is always ready to take care of your emergency needs. Thank you for giving us your trust. ','2017-05-19 15:04:40.489000'),(7821,'We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. ','2017-05-19 15:03:52.706000'),(7822,'Thank you for the great rating -- we appreciate it.','2017-05-19 15:03:16.867000'),(7823,'Our team at SignatureCare knows that your time is valuable, so we appreciate you taking the time to leave us a nice review. Thank you so much for your positive feedback, we appreciate it. ','2017-05-18 00:56:17.805000'),(7824,'While we hope not to see you anytime soon, we appreciate that you would consider using us again because of your past experience. Thank you for the great review and rating.','2017-05-17 00:22:34.563000'),(7825,'We appreciate the five-star rating, Marissa!','2017-05-03 15:13:10.585000'),(7826,'Thank you so much for the five-star rating. We appreciate it. ','2017-04-20 15:07:19.423000'),(7827,'Thank you for the five-star rating, Forrest!','2017-04-30 16:04:08.693000'),(7828,'While we hate hearing about your emergency, we love hearing that our staff took good care of you while you weren\'t feeling well. Thank you for giving us the chance to serve you, and for the great review.','2017-04-28 16:34:06.248000'),(7829,'Thank you for the five-star rating!','2017-04-28 16:32:21.207000'),(7830,'We are very happy that you had good service. We strive for excellence at our emergency centers, as well as no long waits. Typically, your insurance would dictate your out of pocket expenses, we do not set these rates and it really depends on what insurance you have. Our facilities function exactly like a hospital ER, and then insurance benefits are billed the same way. It sounds like you received an EOB and not a bill from us. We would like to learn more about your specific situation. Please reach out to Tray Moore- if he has not already connected with you tmoore@roundtmc.com or 832-699-3777 and he would be happy to go over the exact billing for your experience. We appreciate you contacting them so that we can learn more specifically about your visit. Thanks and we hope you feel better. ','2017-04-28 19:44:45.823000'),(7831,'Thank you for the nice words and the great rating. We appreciate the feedback.','2017-04-25 01:12:11.194000'),(7832,'We appreciate you continuing to choose SignatureCare for your emergency needs and are pleased to hear our staff always takes good care of you. Thank you for the great review. ','2017-04-23 17:03:35.443000'),(7833,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the nice review.','2017-04-23 17:02:46.951000'),(7834,'Thank you so much for the positive feedback. We appreciate your comments and reviews. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2017-04-21 18:09:58.226000'),(7835,'Our team at SignatureCare appreciates comments like this. Thank you for the nice review.','2017-04-21 18:09:00.371000'),(7836,'It\'s feedback like this that assures us that we are doing a good job. Thank you for letting us know, and for the nice review. ','2017-04-20 15:08:19.972000'),(7837,'Thank you for the great rating. If there\'s anything we could have done to earn that fifth star, please let us know!','2017-04-20 15:07:44.184000'),(7838,'Update: We are sorry that you feel frustrated with the insurance company and the copays. We have no control over your insurance benefits. We do, however, understand that emergencies happen and that is why our billing company will always work with our patients on any balances owed, we also offer cash payments to those who have no insurance, so that everyone has access to emergency care. Again- we are sorry for the frustrations, but glad that we were able to take care of you quickly by our board certified physicians and wonderful staff. \n\nThank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2016-10-20 15:17:47.328000'),(7839,'Our goal at SignatureCare is to get you in and out quickly and back on the road to good health. Thank you for letting us take care of you during your emergency. ','2017-09-05 15:50:56.087000'),(7840,'We appreciate the five-star rating, and the great feedback. Thank you for choosing SignatureCare!','2017-09-05 15:49:51.315000'),(7841,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-04-16 18:59:11.732000'),(7842,'It\'s comments like that that help us know that we are doing a good job. Thank you for the feedback and for the great rating. ','2017-04-16 18:58:19.003000'),(7843,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2017-04-14 16:19:22.612000'),(7844,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us!','2017-04-14 16:19:02.742000'),(7845,'We are very proud of our staff at SignatureCare, and are pleased to hear that you felt they treated you so well. Thank you for the great feedback and rating. ','2017-04-13 14:09:48.309000'),(7846,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2017-04-12 01:01:33.969000'),(7847,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2017-04-12 01:01:19.790000'),(7848,'Thank you for taking the time to leave us a review and rating. We appreciate it.','2017-04-09 14:55:01.603000'),(7849,'We appreciate the five-star rating!','2017-04-07 16:38:37.280000'),(7850,'Thank you so much for the great feedback. It\'s comments like this that remind our staff that they are doing a great job. Thank you for choosing SignatureCare!','2017-04-07 16:37:51.722000'),(7851,'We know you have a choice in medical care, so we appreciate you choosing SignatureCare. Thank you for the feedback and the great rating.','2017-04-07 14:02:13.652000'),(7852,'SignatureCare wants parents to feel comfortable and know their children will be taken care of with the highest level of professionalism while visiting us. Thank you for entrusting our team with the care of your little one. And thanks for the great review!','2017-04-05 01:45:10.412000'),(7853,'We appreciate the five-star rating!','2017-04-04 01:35:12.337000'),(7854,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our staff aims to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and for the nice review.','2017-04-02 17:10:02.496000'),(7855,'We take great pride in our staff and their ability to make everyone feel like a VIP. Thank you for giving SignatureCare the chance to take care of you and for letting us know how we are doing. ','2017-03-30 01:19:03.175000'),(7856,'We very much appreciate the five star rating. Thanks!','2017-03-29 02:13:05.234000'),(7857,'We appreciate you taking the time to review and rate us!','2017-03-16 02:06:13.371000'),(7858,'Thank you for the great feedback and rating.','2017-03-16 02:05:57.919000'),(7859,'Thank you for taking the time to rate us. Let us know if there\'s anything we could have done to earn that 5th star!','2017-03-15 01:12:01.562000'),(7860,'SignatureCare Emergency Center is definitely open 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2017-03-13 16:19:58.658000'),(7861,'SignatureCare\'s goal is to get you in and out quickly, and on your way back to good health. We are glad you had a great experience with us. Thank you for the great rating!\n','2017-03-12 20:06:12.655000'),(7862,'Thank you so much for your feedback and rating. We appreciate it.','2017-03-11 14:57:22.134000'),(7863,'We appreciate your feedback. Thank you for the five stars!','2017-03-09 16:18:40.955000'),(7864,'We appreciate the kind words and great rating. Thanks for choosing us. ','2017-03-03 21:07:53.074000'),(7865,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the positive review.','2017-03-01 01:49:10.988000'),(7866,'Our doors are always open for anyone in our community suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. We appreciate your feedback and great rating.','2017-02-26 20:50:17.750000'),(7867,'You are most welcome, and thank you for your review and rating!\n','2017-02-25 03:36:48.043000'),(7868,'Thank you so much for the kind words and for the great rating. We appreciate your feedback!','2017-03-07 00:01:04.110000'),(7869,'Thank you for the fantastic review. We are always open and available when you have an unexpected emergency. ','2017-02-23 17:52:16.935000'),(7870,'Thank you so much for your nice review and rating. We appreciate your feedback!','2017-02-23 17:50:14.257000'),(7871,'Our staff appreciates comments like this; it\'s what makes us excel at our jobs. Thank you for your nice review.','2017-02-23 17:49:34.116000'),(7872,'Thank you so much for the positive feedback. Although we hope to not see you soon, we are always here when you do have an unexpected emergency. ','2017-02-21 23:36:07.163000'),(7873,'We appreciate feedback like this from our customers. It helps us excel at our jobs. Thank you for choosing us!\n','2017-02-21 01:02:05.892000'),(7874,'Our goal is to provide the best care possible to all patients. We are very happy to know this was your experience with our emergency room. ','2017-02-18 13:23:45.865000'),(7875,'We appreciate you taking time from your busy schedule to write us such a positive review. Thank you again for choosing SignatureCare Emergency Centers. ','2017-02-18 13:23:18.646000'),(7876,'SignatureCare Emergency Center takes pride in our staff, and we are glad to hear that they took good care of you. We will make sure to let them know. ','2017-02-18 13:22:41.200000'),(7877,'SignatureCare Emergency Center wants all of our patients to feel like VIPs. We are glad to hear that your experience with us was great. ','2017-02-18 13:21:32.562000'),(7878,'Thank you for the feedback -- we will let Mercy know she is doing a great job!','2017-02-18 13:20:39.725000'),(7879,'We are very sorry to learn about your experience. SignatureCare takes HIPAA violations very seriously. Someone from our management team will reach out to you to learn more about your specific situation and how you feel your rights have been violated. As for the billing you are probably referring to an EOB from the insurance company- This is NOT a bill from us. You are welcome to contact our billing Manager tmoore@roundtmc.com. Tray can walk you thru any bills that have been sent or are outstanding. Again, I am very sorry to learn you did not feel you had a good experience on this particular visit and hope you give us the opportunity to make things right. We are open 24 hours a day and staffed with board-certified physicians. ','2017-02-16 19:09:30.115000'),(7880,'First of all- I am sorry you had a negative experience at our facility. Our staff including nurses are all emergency room trained, very professional and we employ some of the best. I am not sure what happened when you visited us, but would like to learn more. We are glad to hear you are a returning patient and hope you will consider our ER again should you have an emergency need. If you provide me with your information, I will have the manager reach out to you and learn more about your specific situation. You can email me at info@ercare24.com and I will make sure someone contact you. Hope you feel better!','2017-02-16 19:22:27.179000'),(7881,'Thank you for your feedback. Our staff appreciates receiving these nice compliments, and we will be sure to let them know you said they did a good job. ','2017-02-13 18:02:59.668000'),(7882,'The SignatureCare Emergency staff appreciates receiving comments like this. We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us.','2017-02-11 23:47:20.055000'),(7883,'Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2017-02-10 17:24:05.386000'),(7884,'We appreciate the five-star rating. Thank you for taking the time to rate us!\n','2017-02-09 02:49:27.094000'),(7885,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the great review!','2017-02-06 16:51:42.285000'),(7886,'No one likes the emergency room, but we are glad to hear that SignatureCare Emergency took good care of you throughout your ordeal. Thank you for trusting us with your medical needs. ','2017-02-03 21:33:08.429000'),(7887,'It\'s comments like this that assure us that we are doing our jobs at SignatureCare Emergency Center. Thanks so much for the great review.','2017-02-03 21:32:36.405000'),(7888,'We appreciate the five-star rating!','2017-02-03 21:32:07.211000'),(7889,'Thanks so much for your kind words and the five-star rating!','2017-02-03 21:31:52.531000'),(7890,'Thank you so much for the great rating. We appreciate it!','2017-02-03 21:31:30.281000'),(7891,'We appreciate your feedback and rating. Thank you so much!','2017-01-30 02:28:40.776000'),(7892,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility.','2017-01-27 23:15:02.608000'),(7893,'Thank you so much for the five-star rating!','2017-01-26 18:07:04.838000'),(7894,'Thank you so much for your feedback! Our goal is to always provide the best care. We appreciate the great rating.\n','2017-01-26 18:06:48.152000'),(7895,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place. But we are glad to hear that our doctors, nurses and medical staff made you feel comfortable and able to relax while you were being treated. Thank you for choosing SignatureCare and for the fantastic review. ','2017-01-23 21:09:03.643000'),(7896,'Thank you for taking the time to leave us a five-star rating. We appreciate it so much. ','2017-01-23 20:33:27.952000'),(7897,'Thank you for the great review and rating. We appreciate it and will pass your kind words along to our staff. ','2017-01-21 15:57:16.050000'),(7898,'We are so glad to hear that your experience with SignatureCare Emergency was excellent, as it should be each time you visit our facilities. Feel better!','2017-01-21 15:56:47.341000'),(7899,'Great- We are so happy to learn that you had a good experience. We strive for excellence in all aspects of our ERs. Thanks for referring us to your friends and family. We promise to take great care of them as well should they visit our facility.','2017-01-19 20:15:51.060000'),(7900,'Thank You for the 5 Star Rating. ','2017-01-19 20:14:30.451000'),(7901,'Thank You for the 5 Star Rating! ','2017-01-19 20:14:10.858000'),(7902,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-01-16 15:27:43.193000'),(7903,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them. We hope you feel better. ','2017-01-12 01:56:07.846000'),(7904,'We appreciate you taking the time to rate us. Thank you so much for the five stars!\n','2017-01-12 01:49:11.024000'),(7905,'Hi Christopher, first of all, I hope your wife is feeling better. Thank you for writing a review for us although its not perfect, we appreciate the time you took to bring the billing frustrations to our attention. Our emergency centers accepts most insurance plans, but we have no control over the type of policy and the co-pays. Each persons bill varies depending on the type of insurance the have and deductibles. It sounds like you may have received an EOB from your insurance company, and this is not a bill from us. Although I am not sure of your specific circumstances I wanted to let you know that someone from our billing company is going to reach out to you and learn more of your specific situation. I hope you will give us the chance to speak with you and I hope you will consider our emergency centers in the future. We pride ourselves in little to no wait time and have excellent board certified physicians. I am glad we were able to help your wife in her emergency situation. ','2017-01-05 05:30:13.009000'),(7906,'We are so glad to hear that you had a great experience at SignatureCare Emergency. Thank you for your review and rating!','2017-01-10 01:02:02.107000'),(7907,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in SignatureCare!','2017-01-04 03:39:27.138000'),(7908,'We love hearing about the great experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-12-31 03:10:06.407000'),(7909,'Thank you for the review and great rating. We appreciate it!','2016-12-28 14:21:58.567000'),(7910,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2016-12-24 18:46:34.037000'),(7911,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2016-12-24 18:45:51.646000'),(7912,'Thank you so much for the positive feedback. We appreciate your comments and reviews. ','2016-12-20 01:27:13.945000'),(7913,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review.','2016-12-21 18:08:32.659000'),(7914,'Thank you so much for the five-star rating. We appreciate your feedback!','2016-12-20 01:27:55.919000'),(7915,'Thank you for the five-star rating!','2016-12-20 01:27:28.266000'),(7916,'It’s great to hear that your experience at SignatureCare Emergency Center was positive. Thank you for the great review.','2016-12-20 01:26:45.927000'),(7917,'At SignatureCare Emergency Center, our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2016-12-18 19:19:47.680000'),(7918,'Thank you for the five-star rating. We appreciate your feedback!','2016-12-18 19:14:37.698000'),(7919,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-12-17 15:46:14.471000'),(7920,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for choosing us!','2016-12-17 15:45:53.169000'),(7921,'We are so sorry to hear about your recent emergency, but we want you to know that SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency, and we will always put our patients and their families first. We hope your daughter feels better. ','2016-12-07 03:30:42.618000'),(7922,'We appreciate your positive comments and rating. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2016-12-05 16:09:33.442000'),(7923,'We are very sorry to hear about your experience. We would very much like to find out from you what happened when you visited our Montrose Location. Would you please email us your contact information so that we may address this immediately. We would be happy to contact you or please contact Alanna at acampbell@ercare24.com . We take complaints like this very seriously, and would like to opportunity to find out the details of why you felt the way you did. Thank you. ','2016-11-28 18:35:28.356000'),(7924,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2016-11-14 13:53:19.269000'),(7925,'Thank you for the four-star rating, Anne. If there is anything we could have done to make that a five-star rating, please let us know. We aim for 100% customer satisfaction!','2016-11-09 14:57:56.353000'),(7926,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2016-11-06 14:59:12.597000'),(7927,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2016-10-24 01:32:18.842000'),(7928,'Thank you for the rating and review, Amanda! We are happy we were able to provide you with excellent care and we hope you are feeling better.','2016-10-15 22:35:43.090000'),(7929,'Thank you for the five-star rating!','2016-10-12 00:45:54.835000'),(7930,'Thank you for the five-star rating!','2016-10-10 13:43:41.278000'),(7931,'The compassion and dedication for helping others is why we love our employees. Thank you for your kind words; we will pass them along. ','2016-10-02 18:47:46.624000'),(7932,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms.','2016-10-02 18:46:29.893000'),(7933,'Our doctors are board certified and have excellent bedside manners. Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was great and that you would recommend us. We appreciate it!','2016-09-29 20:30:36.740000'),(7934,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility.','2016-09-28 14:34:39.204000'),(7935,'We are pleased to hear that SignatureCare Emergency Center\'s staff took great care of you. We will pass your kind words along to them.','2016-09-28 14:33:14.718000'),(7936,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2016-09-22 22:49:53.447000'),(7937,'We always appreciate your positive feedback! Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-09-22 22:49:29.985000'),(7938,'Thank you for taking the time to rate us, Michelle!','2016-09-22 22:48:52.524000'),(7939,'We always appreciate positive feedback from our patients. Thank you for your review and rating!','2016-09-20 02:27:01.651000'),(7940,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2016-09-20 02:26:35.228000'),(7941,'Thank you for the five-star rating and kind words! We will pass them along to our staff. ','2016-09-16 13:32:44.396000'),(7942,'Thank you for the review and great rating! We are pleased you chose us and glad we were able to help. ','2016-09-08 23:21:12.379000'),(7943,'We are glad to know our staff took such good care of you! Thank you for the great review and rating.','2016-09-07 02:20:24.438000'),(7944,'Our staff is one of the most qualified emergency room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kinds words, and we will pass them along. ','2016-08-29 14:48:13.052000'),(7945,'Thank you David- SignatureCare Emergency Rooms have a much shorter wait time than a hospital; usually 10 minutes or less and our Doctors Are Board- Certified and can handle most of the same emergencies as a hospital. We are glad to learn you see the benefits of an emergency room VS the hospital and very proud that you chose SignatureCare Emergency as your choice for care. Feel Better!','2016-08-26 17:15:14.901000'),(7946,'Thank you Carlos for taking time out of your day to review SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2016-08-26 17:14:35.078000'),(7947,'SignatureCare Emergency Room is here 24/7 when an unexpected emergency happens. Thank you Jamila for your review!','2016-08-26 17:13:31.400000'),(7948,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER, but we are glad to be here when you need us. ','2016-08-23 01:39:03.300000'),(7949,'We always want to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with SignatureCare Emergency Center.','2016-08-23 01:38:15.200000'),(7950,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the positive review, and we are always available when you have an unexpected emergency. ','2016-08-23 01:37:08.368000'),(7951,'Thank you for your comments, and your five-star rating, Christina. We appreciate you choosing SignatureCare Emergency Center. ','2016-08-19 18:26:24.914000'),(7952,'Children are a top priority of all our staff and doctors at SignatureCare Emergency Center. It is never fun when your child gets sick, but when you have an emergency with your child, we are here to help. Thank you for your review and we hope your child feels better soon!','2016-08-18 02:07:39.017000'),(7953,'We are sorry to learn you felt there was some miscommunication regarding your benefits and billing. When you visit an emergency room, the billing is done afterwards and is based on your services and care provided. We at SignatureCare pride ourselves in being a reputable emergency room and would never be involved in unethical business and we are very sorry to hear you believe you were defrauded. Our billing dept. would be more than happy to explain in detail the EOB that you received from your insurance and discuss your bills. Please contact the billing manager Tray Moore at tmoore@roundtmc.com or 832-699-3777 ext. 124. He would be more than happy to discuss any issues you have. We hope you will consider our services again in the future.\n','2016-08-09 21:50:28.728000'),(7954,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review, and we are always here whenever you need us.','2016-08-04 13:56:09.916000'),(7955,'We would love more information about your experience and to know what we could have done to receive a five-star review. We appreciate your feedback!','2016-08-03 15:39:42.479000'),(7956,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2016-08-01 02:13:19.651000'),(7957,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all of your healthcare needs 24/7. ','2016-07-29 01:36:31.603000'),(7958,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your great review!','2016-07-29 01:35:02.919000'),(7959,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-07-26 01:37:13.744000'),(7960,'Thank you for the great review. SignatureCare staff loves their patients, and we are happy to know that they took good care of you. ','2016-07-11 22:49:13.709000'),(7961,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We hope you feel better. ','2016-07-04 12:08:12.922000'),(7962,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2016-07-11 22:53:27.999000'),(7963,'Thank you for the great review. If there is anything we could have done to make your visit a five-star review, we hope you will let us know. Feel better!','2016-07-11 22:54:50.085000'),(7964,'We are very sorry to learn you felt you had a less-than-positive experience at our facility. Our doctors are board-certified and work to diagnose and treat all emergencies, and a lot of times, follow-up is necessary with a family physician after any emergency room visit. Our emergency rooms, like any emergency rooms, are designed to treat emergencies and not provide ongoing medical care like you would receive from a family doctor. Again, we are saddened to learn that you felt this was not communicated effectively to you during your visit. We would be happy to discuss your particular visit with you. Please feel free to contact Alanna Campbell at acampbell@ercare24.com or by calling 281-479-3293. We hope you would reconsider our facilities again in the future.','2016-07-08 23:24:26.816000'),(7965,'Thank you for your five star review and for trusting us with your care!','2016-07-08 23:25:03.546000'),(7966,'We appreciate you taking time from your busy schedule to write us such a positive review; Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2016-07-07 02:05:26.511000'),(7967,'Our doctors are board certified and have excellent bed side manners -- so we’ve been told numerous times. Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be, when you visit an emergency room, specifically SignatureCare. ','2016-07-05 12:26:43.287000'),(7968,'Thank you for your five-star rating! It helps us to know that we are doing our job and to always strive to do our best.','2016-07-04 12:07:24.165000'),(7969,'Thank you for your five-star rating! We appreciate you taking the time to tell us how we did.','2016-07-02 01:14:00.707000'),(7970,'Thank you for letting us help you feel better! The most stressful time for anyone is during a medical emergency, and we are glad we help put you at ease. ','2016-06-29 01:30:26.434000'),(7971,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback; it helps us excel at our jobs. ','2016-06-29 01:29:27.414000'),(7972,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care and we appreciate you choosing SignatureCare Emergency Center. ','2016-06-28 01:33:02.158000'),(7973,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust with our medical team. ','2016-06-22 11:34:31.508000'),(7974,'Your positive feedback will help our team continue to do a great job for our patients. Thank you for trusting your emergency needs with SignatureCare. ','2016-06-22 11:33:12.312000'),(7975,'We understand that emergencies happen, and the ER is not anyone\'s favorite place, but we are glad to hear that our staff made your situation a little better. Thank you for choosing SignatureCare and the great review. ','2016-06-22 11:32:21.369000'),(7976,'Our registration staff are some of the best qualified Emergency Room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kinds words and we will pass them along. ','2016-06-21 01:37:03.648000'),(7977,'Our registration staff are some of the best qualified Emergency Room staff in Houston, but the compassion and dedication for helping others is why we love our employees. Thank you for your kinds words and we will pass them along. ','2016-06-19 23:13:20.512000'),(7978,'Thank you so much for the great feedback! We are always here to serve you in any emergency situation.','2016-06-18 00:04:22.393000'),(7979,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all of your healthcare needs 24/7. ','2016-06-18 00:04:43.909000'),(7980,'Thank you so much for the positive feedback. We appreciate your comments and reviews!','2016-08-26 14:54:19.313000'),(7981,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all of your healthcare needs 24/7. ','2016-06-16 00:44:04.163000'),(7982,'Thank you so much for the positive feedback! It\'s great to hear that our staff made you comfortable and happy. ','2016-06-16 00:45:09.280000'),(7983,'Thanks for your great feedback! We hope you will choose us again if ever another emergency arises. ','2016-06-15 01:59:00.072000'),(7984,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-08-26 03:17:01.620000'),(7985,'We appreciate your positive feedback! Our dedicated staff is always here and willing to meet all of your healthcare needs 24/7. ','2016-06-14 00:41:37.067000'),(7986,'Thank you for letting us help you feel better! We appreciate your great review. ','2016-06-12 15:10:21.242000'),(7987,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2016-06-12 01:30:22.841000'),(7988,'Thank you for the five-star rating!','2016-08-26 03:17:18.792000'),(7989,'Our goals are to provide the best care possible to all patients and ensure you are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. \n','2016-08-26 03:17:58.245000'),(7990,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-06-06 16:47:48.376000'),(7991,'Thank you for your feedback! I will pass it along to our team so we can continue to do a great job for our Montrose patients. If you need anything else, please let us know. ','2016-06-08 14:04:04.059000'),(7992,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-06-07 14:19:12.023000'),(7993,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and let us know if you have any further questions about your treatment. ','2016-06-06 16:49:26.847000'),(7994,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. And we will be sure to pass the message on to Dr. Braun!','2016-05-31 13:39:52.388000'),(7995,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-05-31 13:39:35.705000'),(7996,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-05-31 13:39:29.645000'),(7997,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-05-23 19:21:17.330000'),(7998,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2016-05-23 19:21:35.091000'),(7999,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust with our medical team. ','2016-05-24 19:29:08.770000'),(8000,'Thank you so much for the five-star rating. We\'re glad you enjoyed your experience at SignatureCare Emergency Center - Montrose.','2016-05-24 19:29:32.778000'),(8001,'Hi John. Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. While we can treat dental emergencies that happen when dental practice are closed, we do not have a dentist working on-site. Our team can assess the problem to find a solution that will serve as a bridge until traditional dental practices are open. We apologize for any miscommunication on our part. Thanks again for reviewing and don\'t hesitate to contact us with any questions.','2016-05-19 20:18:12.535000'),(8002,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. Our community is important. If you have any questions, or need help again, don’t hesitate to call. ','2016-05-24 19:29:49.431000'),(8003,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility and let us know if you have any further questions about your treatment. ','2016-05-24 19:30:07.294000'),(8004,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speed and comfortable. Thank you for trusting your emergency need with SignatureCare. ','2016-05-24 19:30:14.758000'),(8005,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-05-24 19:30:21.570000'),(8006,'Thank you for the five-star review, we appreciate it! ','2016-05-24 19:30:29.789000'),(8007,'Thank you for leaving feedback for our team. We\'re thrilled you had a great experience. ','2016-05-24 19:30:48.052000'),(8008,'Thank you for taking time from your day to leave this rating. We appreciate it. ','2016-05-24 19:30:59.283000'),(8009,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2016-05-24 19:31:05.444000'),(8010,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust with our medical team. ','2016-05-24 19:31:14.184000'),(8011,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speed and comfortable. Thank you for trusting your emergency need with SignatureCare. ','2016-05-24 19:31:20.910000'),(8012,'Thank you for the rating! It will help our team at SignatureCare Emergency Center - Montrose excel.','2016-05-24 19:31:40.828000'),(8013,'Thank you for your review. We\'re glad our team was able to deliver and exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2016-05-24 19:31:52.376000'),(8014,'Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. ','2016-05-24 19:32:43.330000'),(8015,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2016-05-24 19:32:33.162000'),(8016,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2016-05-24 19:32:26.952000'),(8017,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. ','2016-05-24 19:32:20.753000'),(8018,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2016-05-24 19:32:08.965000'),(8019,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2016-05-24 19:32:02.559000'),(8020,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2016-08-26 14:56:38.365000'),(8021,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for the fantastic review, and we are always open and available when you have an unexpected emergency. ','2016-08-26 14:57:06.786000'),(8022,'Thank you for the five-star rating!','2016-08-26 14:57:22.920000'),(8023,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-08-26 14:57:44.095000'),(8024,'We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2016-08-26 14:58:15.146000'),(8025,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2016-08-26 14:58:40.900000'),(8026,' SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! ','2016-08-26 14:59:16.535000'),(8027,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this. We want everyone who walks through the doors at SignatureCare to feel like a VIP. Thank you for supporting us, and putting your trust in our medical team. ','2016-08-26 15:01:05.808000'),(8028,'SignatureCare Emergency Center takes pride in our staff, and we are so very happy to hear you loved them. We will make sure to let them know. ','2016-08-26 15:02:58.558000'),(8029,'Our doctors are board certified and have excellent bedside manners -- so we’ve been told numerous times. Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit an emergency room, specifically SignatureCare. ','2016-08-26 15:03:19.579000'),(8030,'Thank you for the five-star rating!','2016-08-26 15:04:38.173000'),(8031,'Thank you for the five-star rating!','2016-08-26 15:04:52.178000'),(8032,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2016-08-26 15:05:25.566000'),(8033,'At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review!','2016-08-26 15:05:50.449000'),(8034,'Our goals are to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. ','2016-08-26 15:06:39.445000'),(8035,'Thank yo so much Arnold, for your five star rating!','2020-01-06 07:42:30.298000'),(8036,'Thank you so much for your great rating, Ramirez!','2020-01-05 06:54:16.322000'),(8037,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-04 07:20:27.628000'),(8038,'Thank you so much for your five star rating, Becky!','2019-12-31 04:59:55.834000'),(8039,'Thank you for trusting us with the care of your child. We appreciate the great feedback and are very glad to hear that our team took such good care of your kiddo.','2019-12-31 04:59:27.184000'),(8040,'Thank you for letting us help both of you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-26 08:19:19.266000'),(8041,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-26 08:17:02.556000'),(8042,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-26 08:16:46.554000'),(8043,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-12-24 07:08:31.132000'),(8044,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-22 08:50:42.082000'),(8045,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-22 08:50:29.297000'),(8046,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-19 06:25:02.255000'),(8047,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-18 07:39:03.637000'),(8048,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-18 07:38:50.900000'),(8049,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-18 07:38:40.770000'),(8050,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your child\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your kiddo is feeling better.','2019-12-17 06:30:36.320000'),(8051,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-12-17 06:29:55.289000'),(8052,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-17 06:29:47.430000'),(8053,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-12-17 06:29:37.820000'),(8054,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-17 06:29:29.556000'),(8055,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-17 06:29:18.157000'),(8056,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-17 06:29:11.419000'),(8057,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-17 06:28:44.890000'),(8058,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-17 06:28:36.845000'),(8059,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-17 06:28:29.572000'),(8060,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-17 06:28:14.299000'),(8061,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-17 06:27:45.113000'),(8062,'We appreciate the great rating you gave us, Kristi!','2019-12-15 07:24:54.846000'),(8063,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-15 07:24:32.685000'),(8064,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 07:24:12.516000'),(8065,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 07:24:23.210000'),(8066,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 07:24:06.464000'),(8067,'We appreciate your great rating, Matthew! Thank you for choosing SignatureCare!!','2019-12-12 07:42:08.323000'),(8069,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-15 07:23:49.659000'),(8070,'Thank you so much for your nice review, Janis. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-15 07:23:40.577000'),(8071,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-15 07:23:25.749000'),(8072,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 07:23:15.368000'),(8073,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 07:22:58.292000'),(8074,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-12-15 07:22:49.577000'),(8075,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 07:22:32.115000'),(8076,'Thank you so much for your great rating, Grissom!','2019-12-15 07:22:22.094000'),(8077,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 07:21:52.037000'),(8078,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-12-05 07:15:01.706000'),(8079,'Thank you for trusting us with the care of your child. We appreciate the great feedback, and are very glad to hear that our team took such good care of you kiddo.','2019-12-05 07:14:42.743000'),(8080,'Thank you so much for your great rating, Modesta!','2019-11-26 05:51:37.436000'),(8081,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. And we sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-26 05:51:01.483000'),(8082,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-24 08:26:36.917000'),(8083,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-11-24 08:26:09.034000'),(8084,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-24 07:11:36.010000'),(8085,'Thank you so much for your great rating, Tyler!','2019-11-24 07:11:14.855000'),(8086,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made your husband comfortable and able to relax during his visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-24 07:10:36.408000'),(8087,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review!','2019-11-24 07:09:50.042000'),(8088,'We appreciate the great rating you gave us, Rodd!','2019-11-20 06:19:18.971000'),(8089,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-11-20 06:18:50.867000'),(8090,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-19 06:24:23.266000'),(8091,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-17 07:21:47.413000'),(8092,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-17 07:21:39.041000'),(8093,'Thank you so much for your five star rating, Kellie!','2019-11-17 07:21:24.914000'),(8094,'We appreciate your great rating, Julia!','2019-11-14 10:06:17.777000'),(8095,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-11 07:42:32.115000'),(8096,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-11 07:42:20.689000'),(8097,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-06 08:31:04.584000'),(8098,'Thank you so much for your five star rating, Yoana!','2019-11-04 11:37:47.344000'),(8099,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-04 11:37:17.920000'),(8100,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-04 11:36:59.744000'),(8101,'We appreciate your great rating, Wiley!','2019-11-04 11:36:46.460000'),(8102,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-31 09:58:53.054000'),(8103,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-10-30 05:51:35.340000'),(8104,'Thank you so much for your feedback, Marlise. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-10-30 05:50:17.546000'),(8105,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-27 08:43:17.930000'),(8106,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your fiance. Thank you for choosing SignatureCare.','2019-10-27 08:43:02.438000'),(8107,'Thank you for your great rating, Toby!','2019-10-27 08:42:11.753000'),(8108,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-27 08:41:50.759000'),(8109,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-27 08:41:36.564000'),(8110,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-27 08:41:24.800000'),(8111,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us.','2019-10-24 08:44:57.807000'),(8112,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope you all are feeling better!','2019-10-23 06:52:06.264000'),(8113,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-22 06:40:18.868000'),(8114,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your boyfriend is feeling well.','2019-10-22 06:39:47.508000'),(8115,'Thank you for your five star rating, Kaity!','2019-10-20 06:48:45.962000'),(8116,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-10-20 06:48:26.616000'),(8117,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-17 08:20:08.618000'),(8118,'Thank you so much for your feedback, Lillie. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-10-14 06:30:25.340000'),(8119,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-14 06:29:46.830000'),(8120,'Thank you so much for your five star rating, Mary!','2019-10-14 06:28:54.103000'),(8121,'We appreciate your great rating, Rosie!','2019-10-14 06:29:19.373000'),(8122,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-13 07:40:41.788000'),(8123,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-10-13 07:40:35.406000'),(8124,'Thank you so much for your great rating, Austin!','2019-10-09 08:33:38.229000'),(8125,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-09 08:33:14.243000'),(8126,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-10-09 08:32:32.623000'),(8127,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your kiddo is feeling better!','2019-10-09 08:32:58.102000'),(8128,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-09-29 06:15:18.410000'),(8129,'Thank you so much for your nice review, Dylan. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-10-02 06:06:08.614000'),(8130,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-09-25 06:11:26.232000'),(8131,'Thank you so much for your feedback, Jina! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-23 05:44:06.458000'),(8132,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-23 05:43:27.640000'),(8133,'Thank you so much for giving us five star! Thanks for choosing SignatureCare.','2019-09-22 06:24:06.742000'),(8134,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-09-22 06:22:28.254000'),(8135,'We appreciate the great rating you gave us, Menchaca! Thanks for choosing SignatureCare.','2019-09-22 06:22:12.099000'),(8136,'Thank you so much for your five star rating, Claire! Thank for choosing us.','2019-09-22 06:21:11.840000'),(8137,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-22 06:20:30.476000'),(8138,'Thank you so much for your feedback. We appreciate your great rating, Orona!','2019-09-19 09:30:23.822000'),(8139,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-09-19 09:29:34.233000'),(8140,'Thank you so much for rating us five star, Alynna! Thanks for choosing SignatureCare ER.','2019-09-19 09:29:22.682000'),(8141,'We appreciate your great rating, Alena! Thanks for choosing SignatureCare.','2019-09-19 09:28:16.470000'),(8142,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-15 06:11:20.327000'),(8143,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-16 11:34:06.925000'),(8144,'We appreciate your great rating, Shelby!','2019-09-16 11:32:14.140000'),(8145,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-09-15 06:12:34.457000'),(8146,'Thank you for your feedback, Arlene! We appreciate your great rating.','2019-09-15 06:12:19.432000'),(8147,'Thank you so much for your great rating, Bryn!','2019-09-15 06:11:58.691000'),(8148,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-15 06:11:45.363000'),(8149,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-09-11 08:07:57.833000'),(8150,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-09-11 08:07:36.877000'),(8151,'Thanks for rating us, Candace! We appreciate you for choosing SignatureCare!','2019-09-11 08:07:18.411000'),(8152,'Thank you so much for your great rating, Bones!','2019-09-11 08:05:50.518000'),(8153,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-11 08:05:20.399000'),(8154,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-11 08:04:53.698000'),(8155,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-08-28 05:57:20.723000'),(8156,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-08-27 05:01:55.032000'),(8157,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-25 05:34:09.652000'),(8158,'Thank you so much for your nice review, Katie. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-08-21 04:50:51.411000'),(8159,'We appreciate your great rating, Yoanda!','2019-08-18 06:50:47.048000'),(8160,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-18 06:50:32.414000'),(8161,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-18 06:50:23.754000'),(8162,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 06:50:05.074000'),(8163,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-08-18 06:49:54.439000'),(8164,'Thank you so much for rating us five star, Tamara!','2019-08-18 06:49:29.045000'),(8165,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-08-18 06:49:13.485000'),(8166,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-08-18 06:48:49.840000'),(8167,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-08-18 06:48:33.272000'),(8168,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-08-18 06:48:13.985000'),(8169,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-04 05:50:02.752000'),(8170,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-08-04 05:49:14.790000'),(8171,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-08-04 05:48:21.594000'),(8172,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-08-04 05:47:59.701000'),(8173,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-04 05:47:42.607000'),(8174,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-01 03:40:57.161000'),(8175,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-28 07:26:42.061000'),(8176,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-28 07:26:28.263000'),(8177,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better. ','2019-07-28 07:26:03.142000'),(8178,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your kiddo is feeling better!','2019-07-28 07:25:44.330000'),(8179,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-28 07:24:45.696000'),(8180,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-07-28 07:24:56.215000'),(8181,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-07-28 07:23:51.176000'),(8182,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-07-28 07:23:30.517000'),(8183,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-28 07:23:11.542000'),(8184,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-24 06:45:20.773000'),(8185,'Thank you for giving us five star, Contreras!','2019-07-23 05:43:43.564000'),(8186,'Thank you so much for your rating, Methola!','2019-07-23 05:43:14.629000'),(8187,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-23 05:41:55.226000'),(8188,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-07-21 06:26:25.702000'),(8189,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-21 06:24:59.315000'),(8190,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-18 06:15:51.886000'),(8191,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-17 06:23:23.651000'),(8192,'Thank you so much for your great rating, Raullo. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-07-17 06:23:09.683000'),(8193,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-17 06:22:15.241000'),(8194,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-16 05:37:42.886000'),(8195,'Thank you Dorothy, for your wonderful rating!','2019-07-16 05:37:12.345000'),(8196,'Thank you so much for your nice review, Veronica. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-07-15 07:09:44.525000'),(8197,'Thank you so much for your wonderful rating, Jaymie!','2019-07-15 07:09:15.686000'),(8198,'Thank you for your feedback!','2019-06-26 06:44:56.304000'),(8199,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-07-14 06:37:46.691000'),(8200,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-07-14 06:35:20.275000'),(8201,'Thank you for your great rating, Nathan!','2019-07-14 06:35:04.583000'),(8202,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your kid\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your kiddo is feeling better. ','2019-07-14 06:37:33.126000'),(8203,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-14 06:26:37.858000'),(8204,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-08-04 05:50:53.217000'),(8205,'We appreciate your five star rating, Daniel!','2019-07-14 06:26:00.218000'),(8206,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-14 06:23:16.243000'),(8208,'Thank you for your rating, Sarah!','2019-07-14 06:24:58.951000'),(8209,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-08 06:33:09.363000'),(8210,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-07 07:35:27.065000'),(8211,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-07-07 07:34:14.897000'),(8212,'Thank you so much for your nice review, Bradley. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-07-07 07:33:51.955000'),(8213,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-04 07:40:48.647000'),(8214,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-07-04 07:40:29.094000'),(8215,'Thanks for your great rating, Leo!','2019-07-03 07:15:26.261000'),(8216,'Thank you so much for your rating, Destiny!','2019-07-01 07:36:17.830000'),(8217,'Thank you for your five star rating, Sherry!','2019-06-30 05:57:11.748000'),(8218,'Thank you for your rating, Phil!','2019-06-30 05:56:46.540000'),(8219,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-27 06:08:22.142000'),(8220,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-26 06:44:41.394000'),(8221,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-06-25 07:48:15.724000'),(8222,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-23 05:22:32.347000'),(8223,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-23 05:17:59.115000'),(8224,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-23 05:17:10.306000'),(8225,'Thank you for your rating, Robert!','2019-06-23 05:16:45.953000'),(8226,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-23 05:16:21.070000'),(8227,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-20 04:39:12.980000'),(8228,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-19 06:02:41.474000'),(8229,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better. ','2019-06-18 06:31:42.835000'),(8230,'Thank you for your rating, Daniel!','2019-06-18 06:29:34.928000'),(8231,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-18 06:29:17.989000'),(8232,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-16 05:48:53.116000'),(8233,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-16 05:48:30.683000'),(8234,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-16 05:48:13.551000'),(8235,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-16 05:47:55.380000'),(8236,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-13 06:40:19.982000'),(8237,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review! Hope your wife is feeling better.','2019-06-13 06:39:57.764000'),(8238,'Thank you for rating us five star, Garret!','2019-06-13 06:38:12.052000'),(8239,'Thank you for your great rating, Linda!','2019-06-12 06:04:41.810000'),(8240,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-06-12 06:04:23.440000'),(8241,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-12 06:04:00.303000'),(8243,'Thank you for your rating, Amy!','2019-06-11 06:04:23.981000'),(8244,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-10 05:45:55.854000'),(8245,'We appreciate your five star rating, Rosemary!','2019-06-09 07:02:43.811000'),(8246,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your kiddo feels better soon!','2019-06-09 07:01:50.341000'),(8247,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-09 06:58:45.173000'),(8248,'Thanks for your nice review and rating!','2019-06-09 06:57:36.614000'),(8249,'Thanks for choosing SignatureCare! We appreciate your lovely words.','2019-03-10 09:59:05.132000'),(8250,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-09 06:57:06.602000'),(8251,'We noticed you changed your review from a 5 star to a 1. Would you mind reaching out to us at info@ercare24.com so we can get some more information from you?','2019-05-30 17:46:57.826000'),(8252,'Thank you for your five star rating, Ronnica!','2019-05-29 06:25:23.280000'),(8253,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-05-29 06:24:18.621000'),(8254,'Thank you for your five star rating, Wanda!','2019-05-28 05:41:03.608000'),(8255,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-05-26 06:22:14.194000'),(8256,'Thank you so much for your rating, Alena. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-05-26 06:21:53.831000'),(8257,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-05-28 05:41:33.571000'),(8258,'Thank you for your rating, Andrea!','2019-05-26 06:20:54.691000'),(8259,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-05-26 06:20:19.181000'),(8260,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-05-23 06:31:55.977000'),(8261,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-23 06:31:40.742000'),(8262,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-05-22 05:26:37.646000'),(8263,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-22 05:26:20.340000'),(8264,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-05-22 05:26:09.638000'),(8265,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-05-22 05:25:48.208000'),(8266,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-05-21 04:11:29.008000'),(8267,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-05-21 04:11:12.937000'),(8268,'Thank you for your rating, Junkook!','2019-05-21 04:10:57.295000'),(8269,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-21 04:10:28.766000'),(8270,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-05-21 04:10:02.993000'),(8271,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-05-21 04:09:49.199000'),(8272,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-05-21 04:09:20.538000'),(8273,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-20 05:04:23.874000'),(8274,'Thank you for your rating, Ruth!','2019-05-19 05:14:38.926000'),(8275,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-05-19 05:14:05.452000'),(8276,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-05-19 05:14:22.576000'),(8277,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-05-19 05:13:39.427000'),(8278,'Thank you for your great rating!','2019-05-19 05:13:21.870000'),(8279,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for your review.','2019-05-19 05:12:55.069000'),(8280,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-05-16 06:35:35.025000'),(8281,'Thank you for much for your nice review and rating!','2019-05-16 06:34:25.224000'),(8282,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-14 04:30:58.120000'),(8283,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-05-12 04:47:57.714000'),(8284,'Thank you so much for your review and rating!','2019-05-09 04:05:43.937000'),(8285,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-05-07 04:13:14.495000'),(8286,'Thank you for your rating, Michelle!','2019-05-05 06:29:50.579000'),(8287,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-05-02 09:03:42.409000'),(8288,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-02 09:01:56.304000'),(8289,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team. Thank you for supporting us!','2019-04-16 06:04:25.231000'),(8290,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-04-15 05:08:08.554000'),(8291,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-04-10 14:47:49.524000'),(8292,'Thank you so much for your nice review, Eric. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-04-04 05:02:57.600000'),(8293,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-04-01 05:48:04.639000'),(8294,'We want everyone who walks through our doors to feel like a VIP. We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-03-31 06:22:26.050000'),(8295,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-03-27 15:57:06.380000'),(8296,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and rating!','2019-03-19 06:50:16.851000'),(8297,'Thank you so much for your nice review, Krystal, and sorry for the copay confusion. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-03-11 15:27:51.884000'),(8298,'Thank you for rating SignatureCare.','2019-03-10 09:59:33.382000'),(8299,'Thanks for your valuable rating!','2019-03-10 09:59:52.165000'),(8300,'Thank you for five star rating!','2019-03-11 12:24:32.284000'),(8301,'The board-certified team at SignatureCare Emergency Center cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-27 13:22:49.166000'),(8302,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-02-24 12:15:48.665000'),(8303,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-02-24 12:16:17.135000'),(8304,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-18 09:02:39.277000'),(8305,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-18 08:59:11.820000'),(8306,'Thanks for the 5 star, Steven!','2019-02-17 10:32:38.143000'),(8307,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-17 10:33:19.782000'),(8308,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-17 12:23:20.104000'),(8309,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-17 12:24:00.811000'),(8310,'We sincerely appreciate your continued trust. We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-02-17 12:25:19.371000'),(8311,'Thanks for the 5 star, Krystel!','2019-02-13 12:10:09.678000'),(8312,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-01-14 09:50:54.975000'),(8313,'Thank you for the 5 star, Maiya!','2019-02-05 14:04:24.908000'),(8314,'Thanks for rating us 5 star, Ascary!','2019-02-03 13:45:17.514000'),(8315,'Thank you for the 5 star, Meranda!','2019-01-30 13:11:31.656000'),(8316,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-01-24 16:33:38.908000'),(8317,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-01-23 14:44:13.073000'),(8318,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-23 14:43:37.238000'),(8319,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-21 09:08:09.752000'),(8320,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-01-20 12:16:44.651000'),(8321,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and recommendation','2019-01-20 09:20:16.640000'),(8322,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-01-20 09:19:09.676000'),(8323,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the recommendation. Thank you for choosing SignatureCare!','2019-01-20 09:11:04.058000'),(8324,'Thanks for the 5 star review!','2019-01-18 16:01:57.391000'),(8325,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-17 06:47:03.989000'),(8326,'Thanks for the 5 star, Reyna!','2019-01-14 09:45:20.706000'),(8327,'Thank you for the nice rating, Johnny!','2019-01-14 09:46:18.554000'),(8328,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-14 09:47:15.757000'),(8329,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our staff care so much about our patients. We appreciate your wonderful feedback. Thank you for choosing SignatureCare!','2019-01-14 09:50:10.818000'),(8330,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-14 09:51:24.909000'),(8331,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-07 16:58:15.419000'),(8332,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-01-02 16:35:52.029000'),(8333,'Thanks for the 5 star review!','2018-12-19 18:15:38.593000'),(8334,'Thank you for your 5 star review!','2018-11-27 17:23:11.056000'),(8335,'Glad we could ease your anxiety, Qingquig!','2018-11-26 16:10:23.886000'),(8336,'Thanks for the 5 star review!','2018-11-21 15:58:42.896000'),(8337,'We at SignatureCare are thankful for you taking time out of your day to give us 5 stars on our pages, Kanti!','2018-11-19 17:52:40.924000'),(8338,'Jeremy, we understand that your Neighbors experience was not a positive one. At Neighbors our goal is to provide extraordinary care to each of our patients. We would appreciate you reaching out to our\npatient customer service specialist at 844-406-7263 or by email at Patients@neighborshealth.com ,\nso we can understand your experience with Neighbors and resolve any remaining issues.','2018-10-10 20:27:19.411000'),(8339,'Thanks for the review!','2018-12-10 16:30:58.788000'),(8340,'Hi Bobby! Thank you for your 5-star review! Thank you for sharing your positive feedback. We greatly value your opinion, and want to be able to continue to provide great service to all of our patients. We wish you a speedy recovery.','2018-05-18 19:27:19.659000'),(8341,'Hi Emma. At Neighbors Emergency Center we want every interaction with our patients to be a positive one. We are concerned that this was not the service you experienced. Please contact our patient customer service specialist at 844-406-7263 or by email at Patients@neighborshealth.com, so that we can speak with you directly. We look forward to speaking with you.','2018-04-20 19:30:41.481000'),(8342,'Hi Kimber! Thank you for taking the time to provide us feedback about your visit to Neighbors Emergency\nCenter. We will be sure to share your positive review with our staff so that they can continue serving the community with excellence! ','2018-03-16 18:52:28.669000'),(8343,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:39:17.211000'),(8344,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:39:24.794000'),(8345,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-19 18:39:32.866000'),(8346,'Hi Karelli! Thank you for your review. We are glad you found the care by our staff to be excellent. We hope you are feeling much better. Thank you for choosing Neighbors. ','2017-11-27 17:28:44.459000'),(8347,'Hi Dalia! Thank you for your feedback. Glad you can count us on in your time of need. If you ever have any questions please contact our Patient Advocates at 844-406-7263 or by email at Patients@NeighborsHealth.com. We\'re here to help, even after your visit. ','2017-11-22 15:22:28.347000'),(8348,'Hi Christina! We sincerely appreciate you sharing your experience and that you plan to do so with others as well. We wish you a speedy recovery. ','2017-10-10 15:58:54.378000'),(8349,'Hi Sharon. At Neighbors Emergency Center we value you as a patient. We would be happy to answer any questions you may have. Please contact your Patient Advocate at 844-406-7263 or by email at Patients@NeighborsHealth.com. We look forward to hearing from you. ','2017-10-10 15:44:26.034000'),(8350,'Hi Elton, At Neighbors Emergency Center we want every interaction with our patients to be a positive one. We are concerned that this was not the service you experienced. Please contact our patient customer service specialist at 844-406-7263 or by email at Patients@neighborshealth.com, so that we can speak with you directly. We look forward to speaking with you. ','2017-08-23 18:34:36.609000'),(8351,'Hi Lisa, Thank you for sharing your experience at Neighbors Emergency Center. Our goal is always to provide extraordinary care to all of our patients. We would like to discuss your experience with you at your earliest convenience. Please contact our patient customer service specialist at 844-406-7263 or by email at Patients@neighborshealth.com. We look forward to speaking with you.\n','2017-08-07 14:10:33.072000'),(8352,'Hi Harmony, Thank you for sharing your experience at Neighbors Emergency Center. Our goal is always to provide extraordinary care to all of our patients. We would like to discuss your experience with you at your earliest convenience. Please contact our patient customer service specialist at 844-406-7263 or by email at Patients@neighborshealth.com. We look forward to speaking with you.','2017-07-12 14:50:02.784000'),(8353,'Hi Jason, Thank you so much for sharing your Neighbors Emergency Center experience! We are happy that you found our services convenient. We wish you a speedy recovery. ','2017-06-07 14:37:18.425000'),(8354,'Hi Tera! Thank you for taking the time to provide us feedback about your visit to Neighbors Emergency Center. We will be sure to share your positive review with our staff so that they can continue serving the community with excellence! We hope your daughter is feeling much better! ','2017-05-02 21:19:30.956000'),(8355,'Hi Donna, At Neighbors Emergency Center we want every interaction with our patients to be a positive one. We are concerned that this was not the service you experienced. Please contact our patient customer service specialist at 844-406-7263 so that we can speak with you directly. We look forward to speaking with you.','2017-04-12 14:33:45.195000'),(8356,'Thanks for visiting us Dorian. Glad we could get you back on your feet!','2016-08-15 17:05:48.334000'),(8357,'Thank you for sharing your positive feedback. We greatly value your opinion, and want to be able to continue to provide great service to all of our patients. We wish you a speedy recovery.','2017-03-29 15:19:06.542000'),(8358,'Hi Daniel. Thanks so much for reviewing us. We are glad we could take excellent care of you in your time of need. ','2016-08-19 20:27:35.389000'),(8359,'Hi William. At Neighbors Emergency Center we want every interaction with our patients to be a positive one. We are concerned that this was not the service you experienced. Please contact our patient customer service specialist at 844-406-7263 so that we can speak with you directly. We look forward to speaking with you.','2016-08-19 20:24:10.209000'),(8360,'Hi MaryAnne. So glad you were pleased with our services. Wishing your son a speedy recovery!','2016-08-15 17:11:19.053000'),(8361,'Hi Pam. We are very sorry for your recent experience. This does not reflect the culture of Neighbors Emergency Center. Please contact our patient customer service specialist at 844-406-7263 so we can understand your recent experience and resolve any remaining issues. Thank you.','2016-08-15 17:04:29.593000'),(8418,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-08-18 04:58:01.399000'),(8419,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-08-18 04:57:05.141000'),(8420,'Thank you for trusting us with the care of your husband. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-08-04 05:12:09.385000'),(8421,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-04 05:11:07.582000'),(8422,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-07-30 06:22:16.531000'),(8423,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-30 06:21:37.612000'),(8424,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-28 06:46:52.264000'),(8425,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-07-28 06:51:28.779000'),(8426,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-07-21 06:03:14.590000'),(8427,'Thank you for your great rating, Jhonee!','2019-07-21 06:02:37.148000'),(8428,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-21 06:02:00.146000'),(8429,'Thanks for the 5 star, Kandace!','2019-01-23 14:12:52.918000'),(8430,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-16 05:10:39.501000'),(8431,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-16 05:10:07.685000'),(8432,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-07-15 07:05:42.817000'),(8433,'We appreciate your great rating!','2019-07-14 05:58:54.442000'),(8434,'Thank you for your great rating, Caitlin!','2019-07-14 05:58:33.743000'),(8435,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-07-14 05:57:26.553000'),(8436,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-14 05:56:49.485000'),(8437,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-14 05:56:13.679000'),(8438,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-07-07 06:39:00.314000'),(8439,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-07 06:36:42.493000'),(8440,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-07-07 06:36:21.193000'),(8441,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-30 04:50:54.793000'),(8442,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-30 04:49:51.957000'),(8443,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-06-30 04:41:40.234000'),(8444,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-18 06:24:52.593000'),(8445,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-06-17 06:00:02.510000'),(8446,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-06-17 05:58:46.180000'),(8447,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-06-16 05:41:14.975000'),(8448,'Thank you for your review and rating. We appreciate you choosing SignatureCare!','2019-06-16 05:40:44.371000'),(8449,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-16 05:40:10.387000'),(8450,'Thank you for your fave star review, Ryan!','2019-06-16 05:39:50.690000'),(8451,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-16 05:39:28.857000'),(8452,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-16 05:38:44.224000'),(8453,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-13 06:33:04.678000'),(8454,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-12 05:57:07.318000'),(8455,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-12 05:56:49.636000'),(8456,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-06-11 05:59:29.217000'),(8457,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-10 05:45:19.400000'),(8458,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback. Thank you for choosing SignatureCare!','2019-06-10 05:43:46.043000'),(8459,'Thank you for your five star rating, Misty!','2019-06-09 06:31:29.837000'),(8460,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-09 06:30:59.096000'),(8461,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-06-09 06:30:29.777000'),(8462,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-06-09 06:30:16.976000'),(8463,'Thank you for your rating, Heather!','2019-06-09 06:29:39.106000'),(8464,'We are glad to hear that you liked our team. Thanks a lot for your review and rating!','2019-06-09 06:29:03.903000'),(8465,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-06-09 06:27:21.530000'),(8466,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-09 06:26:46.242000'),(8467,'We believe we have the very best staff in Texas. Thank you for your review and rating!','2019-06-09 06:26:12.659000'),(8468,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-30 05:31:37.260000'),(8469,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-05-30 05:30:04.154000'),(8470,'Thank you for your five star rating, Jordan!','2019-05-29 06:23:33.050000'),(8471,'Thank you for trusting us with the care of your kiddo. We appreciate the great feedback, and are very glad to hear that our team took such good care of your child.','2019-05-27 05:50:59.344000'),(8472,'At SignatureCare Emergency Center, elders are a top priority of all our staff and doctors. It is never fun when your parents get sick, but we are here to help. Thank you for your review and we hope your mom feels better soon!','2019-05-26 06:17:42.904000'),(8473,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-05-26 06:15:39.528000'),(8474,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-05-26 06:15:23.369000'),(8475,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-26 06:14:54.968000'),(8476,'Thank you for your rating, Heather!','2019-05-26 06:14:35.584000'),(8477,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-05-23 06:28:55.786000'),(8478,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-22 09:24:36.479000'),(8479,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-05-22 05:16:51.018000'),(8480,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-21 04:08:36.175000'),(8481,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-05-19 05:12:07.207000'),(8482,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-05-19 05:11:57.534000'),(8483,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-05-19 05:11:42.533000'),(8484,'Thank you for your five star rating, Jearmey!','2019-05-16 06:22:37.470000'),(8485,'Thank you for your rating, Jearmey!','2019-05-16 06:22:23.235000'),(8486,'Thank you for your nice review and rating!','2019-05-15 06:29:24.460000'),(8487,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-05-15 06:28:52.132000'),(8488,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-05-14 04:28:16.936000'),(8489,'Thank you for your rating, Joseph!','2019-05-13 05:56:35.750000'),(8490,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-05-12 04:44:58.735000'),(8491,'Thank you for your great review, Avi!','2019-05-12 04:42:22.056000'),(8492,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We love kids, don\'t hesitate to bring them here. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-05-12 04:41:41.184000'),(8493,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-05-07 04:10:48.805000'),(8494,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-05-06 05:53:41.604000'),(8495,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-06 05:54:01.002000'),(8496,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-05-05 06:22:53.104000'),(8497,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-05-02 08:56:02.607000'),(8498,'Thank you for your review and rating, Cade!','2019-05-02 08:55:27.515000'),(8499,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 08:55:06.563000'),(8500,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-05-02 08:54:45.903000'),(8501,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope your brother is feeling better!','2019-05-02 08:53:27.207000'),(8502,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-02 08:51:49.816000'),(8503,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-04-26 10:51:42.155000'),(8504,'Thanks for the 5 star, Lindsey!','2019-04-26 10:08:21.303000'),(8505,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-04-24 05:29:33.599000'),(8506,'Thank you for your rating, Carlos!','2019-04-22 05:54:46.575000'),(8507,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-04-22 05:54:23.097000'),(8508,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-04-22 05:53:48.207000'),(8509,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Hope you get well soon. Thanks for the great review!','2019-04-18 05:18:26.008000'),(8510,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-16 06:00:49.595000'),(8511,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you. Thank you for choosing SignatureCare!','2019-04-03 06:20:10.707000'),(8512,'Thank you for understanding the difference. We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing and recommending SignatureCare!','2019-04-02 07:09:46.088000'),(8513,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-03-31 06:19:37.304000'),(8514,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-03-31 06:18:51.384000'),(8515,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-03-28 04:49:18.265000'),(8517,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-03-27 05:22:36.185000'),(8518,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-27 05:21:32.682000'),(8519,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-03-27 05:20:33.536000'),(8520,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-21 06:15:43.725000'),(8521,'Thanks for a great rating, Brandy!','2019-02-11 13:09:59.227000'),(8522,'Thanks for five star rating, Stephen!','2019-03-21 06:15:09.567000'),(8523,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-19 06:32:55.811000'),(8524,'Thank you Dallas for rating us five star!','2019-03-19 06:30:45.417000'),(8525,'Thanks for your rating and review, Madeline!','2019-03-18 05:48:23.984000'),(8526,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-18 05:46:42.921000'),(8527,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-03-18 05:43:58.905000'),(8528,'Thank you so much for letting us know about your experience at SignatureCare. Thanks again for choosing us!','2019-03-18 05:43:01.316000'),(8529,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. We pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-03-14 06:17:00.425000'),(8530,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-14 06:12:42.423000'),(8531,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for choosing SignatureCare!','2019-03-14 06:14:34.776000'),(8532,'Than you for your rating, Shelby!','2019-03-14 06:07:55.266000'),(8533,'We believe that we have the very best staff in Texas. Our team makes us proud everyday by making the visit more comfortable and smooth for patients. Thank you for trusting SignatureCare!','2019-03-13 14:24:38.222000'),(8535,'We always appreciate positive feedback from our patients and thank you for trusting us with the care of your dad. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-12 06:46:05.006000'),(8536,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-03-10 10:38:57.465000'),(8537,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-03-10 10:40:39.008000'),(8538,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for continued choosing SignatureCare!','2019-03-10 10:42:13.851000'),(8539,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved our team --- We will make sure to let them know. ','2019-03-10 10:43:58.902000'),(8540,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-03-10 10:46:02.992000'),(8541,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-03-10 10:47:11.062000'),(8542,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-10 10:49:21.956000'),(8543,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-03-10 10:50:25.927000'),(8544,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-10 10:53:29.571000'),(8545,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-03-10 10:55:55.596000'),(8546,'Thanks for the 5 star, Karsyn!','2019-02-27 13:43:49.217000'),(8547,'Thank you for the great rating, Joseph!','2019-02-24 11:12:26.281000'),(8548,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-24 11:12:41.843000'),(8549,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-24 11:12:56.554000'),(8550,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Its their compassion that makes our staff exceptional, and the way they care about all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-20 11:56:41.908000'),(8551,'Thanks for the great rating, Desha!','2019-02-20 11:55:04.775000'),(8552,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-20 11:54:47.253000'),(8553,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-20 11:53:52.895000'),(8554,'Thanks for leaving a 5 star, Dylan!','2019-02-20 11:53:20.134000'),(8555,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-02-20 11:52:50.508000'),(8556,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-19 13:14:26.174000'),(8557,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-19 13:12:58.784000'),(8558,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-19 13:12:34.382000'),(8559,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-02-19 13:12:21.789000'),(8560,'Thanks for the 5 star, Tiffany!','2019-02-19 13:10:39.462000'),(8561,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-19 13:10:20.759000'),(8562,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-19 13:09:13.430000'),(8563,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your feedback. Thank you for choosing SignatureCare!','2019-02-18 08:38:10.792000'),(8564,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-18 08:36:45.183000'),(8565,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-17 10:23:16.877000'),(8566,'Thank you for the great rating, Tony!','2019-02-17 10:23:38.249000'),(8567,'Thanks for leaving a 5 star, Haley!','2019-02-17 10:23:55.015000'),(8568,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-17 10:24:23.389000'),(8569,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-13 12:27:10.609000'),(8570,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-11 13:11:18.731000'),(8571,'Thanks for the 5 star, Tamara!','2019-02-11 13:10:21.623000'),(8572,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-02-11 13:10:58.002000'),(8573,'Thank you for leaving a 5 star, Darren!','2019-02-06 12:20:02.545000'),(8574,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of priority and professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-31 15:10:32.990000'),(8575,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-30 13:34:35.416000'),(8576,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-01-29 14:01:20.445000'),(8577,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-01-29 14:00:35.958000'),(8578,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-28 08:32:13.185000'),(8579,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-28 08:31:43.659000'),(8580,'Thank you for leaving a 5 star!\n','2019-01-28 08:31:22.420000'),(8581,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-28 08:30:53.802000'),(8582,'Thank you for the great rating, Shekoya!','2019-01-23 14:17:49.472000'),(8583,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. We will make sure to let them know. Thank you for choosing SignatureCare!','2019-01-23 14:17:25.272000'),(8584,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-20 09:05:56.378000'),(8585,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out. ','2019-01-18 16:06:16.079000'),(8586,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-14 10:17:14.758000'),(8587,'Thank you for taking the time to let us know how we are doing. It\'s their compassion for others that makes our employees so special. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-01-13 12:24:43.153000'),(8588,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We want everyone who visits us to feel like family. We appreciate your wonderful feedback and your recommendation. Thank you, once again, for choosing SignatureCare!','2019-01-13 12:26:47.683000'),(8589,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-11 17:46:35.184000'),(8590,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-11 17:46:09.499000'),(8591,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-01-04 16:47:02.891000'),(8592,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team, from the front desk to the doctors, make us proud every day with the way they take care of our patients aim to make your visit as quick and painless as possible. It\'s great to hear that they took such good care of you. We appreciate the great rating, review and recommendation.','2019-01-10 14:33:02.777000'),(8593,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-01-10 14:25:57.011000'),(8594,'Thanks for the 5 star, Kim!','2019-01-10 08:41:43.967000'),(8595,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Our goal is to always provide the best care. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for the nice feedback!','2019-01-09 09:09:49.705000'),(8596,'Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your son is feeling better!','2019-01-09 09:00:40.699000'),(8597,'Thanks for the 5 star rating, Tatyanna!','2019-01-09 09:14:22.923000'),(8598,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-08 14:23:10.873000'),(8599,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-08 14:22:43.991000'),(8600,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-01-08 14:22:23.152000'),(8601,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-01-07 19:02:39.924000'),(8602,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-01-07 19:03:03.171000'),(8603,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-01-07 19:05:03.664000'),(8604,'Thanks for the 5 star review!','2019-01-07 16:57:27.450000'),(8605,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-07 19:05:15.059000'),(8606,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2019-01-07 18:58:25.351000'),(8607,'Thanks for the 5 star review!','2019-01-07 16:57:35.486000'),(8608,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope your grandmother is feeling better!','2019-01-07 18:49:26.207000'),(8609,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-01-04 16:45:17.596000'),(8610,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-04 16:45:45.929000'),(8611,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-04 16:45:29.311000'),(8612,'Thank you for your continued trust! And thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-01-04 16:46:14.934000'),(8613,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-01-04 16:46:26.504000'),(8614,'We know that having to stay for observation, and be hooked up to an IV drip for so long can be very stressful, so we are glad we could ease your worry and provide excellent care. It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2019-01-04 16:48:25.816000'),(8615,'Thanks for the 5 star review!','2019-01-04 16:42:39.448000'),(8616,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2019-01-04 16:46:42.235000'),(8617,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-01-03 16:33:20.445000'),(8618,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-01-03 16:51:04.861000'),(8619,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-01-02 16:30:33.306000'),(8620,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-01-02 16:30:51.268000'),(8621,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-01-02 16:31:16.629000'),(8622,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-01-02 16:30:06.768000'),(8623,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-02 16:31:36.588000'),(8624,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-01-02 16:31:54.687000'),(8625,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2018-12-26 16:27:01.144000'),(8626,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2018-12-26 16:26:49.529000'),(8627,'Thank you for the review, Kimberly!','2018-12-20 19:20:10.644000'),(8628,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2018-12-19 18:29:10.084000'),(8629,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-12-18 15:44:33.118000'),(8630,'Thanks for the 5 star review!','2018-12-17 16:20:50.100000'),(8631,'Thank you for trusting us with the care of your kiddos. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you. ','2018-12-10 16:29:34.918000'),(8632,'We\'ll be sure to let them know! Thanks for the 5 stars, Ainsley!','2018-12-10 16:29:54.129000'),(8633,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2018-12-05 16:37:06.389000'),(8634,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-12-05 16:44:42.033000'),(8635,'Thanks for the 5 star review!','2018-12-05 16:37:36.498000'),(8636,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2018-12-05 16:44:56.051000'),(8637,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2018-12-05 16:37:25.544000'),(8638,'Thanks for the 5 star review!','2018-12-05 16:37:51.636000'),(8639,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2018-11-27 17:22:54.163000'),(8640,'Thank you for the 5 star review!','2018-11-26 16:08:57.532000'),(8641,'Thanks for the 5 star review!','2018-12-19 18:27:25.497000'),(8642,'Thanks for the 5 star review!','2018-12-19 18:28:05.008000'),(8643,'Thanks for the 5 star review!','2018-12-19 18:27:58.837000'),(8644,'Thanks for the 5 star review!','2018-12-19 18:28:12.284000'),(8645,'Thanks for the 5 star review!','2018-12-19 18:28:20.533000'),(8646,'Thanks for the 5 star review!','2018-12-19 18:28:26.392000'),(8647,'Thanks for the 5 star review!','2018-12-19 18:28:33.530000'),(8648,'Thanks for the 5 star review!','2018-12-19 18:28:39.187000'),(8649,'Thanks for the 5 star review!','2018-12-19 18:27:33.078000'),(8650,'Thanks for the 5 star review!','2018-12-19 18:27:43.201000'),(8651,'Thanks for the 5 star review!','2018-12-19 18:28:48.992000'),(8652,'Thanks for the 5 star review!','2018-12-19 18:28:43.844000'),(8653,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-05 06:35:45.901000'),(8654,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-01-05 06:35:35.883000'),(8655,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-01-05 06:35:20.668000'),(8656,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-01-05 06:35:03.722000'),(8657,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-05 06:34:43.826000'),(8658,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-05 06:34:16.457000'),(8659,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-05 06:33:51.537000'),(8660,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-05 06:33:40.097000'),(8661,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-05 06:32:38.992000'),(8662,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-05 06:31:52.112000'),(8663,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-01-05 06:31:22.979000'),(8664,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your brother at ease and provide him with the best care possible. We hope he is feeling better.','2020-01-01 07:29:22.023000'),(8665,'We appreciate the great rating you gave us, Frankie!','2019-12-29 06:20:37.278000'),(8666,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-29 06:20:07.949000'),(8667,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-29 06:19:52.270000'),(8668,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-29 06:18:33.475000'),(8669,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-29 06:17:35.768000'),(8670,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-29 06:17:24.007000'),(8671,'We appreciate your great rating! Thanks for choosing us.','2019-12-29 06:17:09.703000'),(8672,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-29 06:16:37.247000'),(8673,'Thank you so much for your great rating, Michelle!','2019-12-29 06:16:11.038000'),(8674,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-12-26 07:55:12.939000'),(8675,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. Hope your wife is feeling better!','2019-12-26 07:54:13.548000'),(8676,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-24 06:56:46.381000'),(8677,'Thank you so much for your great rating, Alberto!','2019-12-24 06:56:26.035000'),(8678,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-24 06:55:46.442000'),(8679,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-24 06:55:27.696000'),(8680,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-23 08:00:00.428000'),(8681,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-22 08:08:34.937000'),(8682,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-22 08:08:21.137000'),(8683,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-22 08:08:03.410000'),(8684,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-22 08:07:39.328000'),(8685,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-22 08:07:19.747000'),(8686,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-22 08:06:59.474000'),(8687,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-22 08:06:45.622000'),(8688,'Thank you so much for your five star rating, Theriot!','2019-12-18 07:35:30.385000'),(8689,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-17 05:40:18.143000'),(8690,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-15 06:41:25.562000'),(8691,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 06:41:09.644000'),(8692,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-15 06:40:44.995000'),(8693,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-12-15 06:40:26.030000'),(8694,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-12-15 06:40:16.108000'),(8695,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 06:39:46.961000'),(8696,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-11-17 07:07:46.811000'),(8697,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-05 07:08:36.016000'),(8698,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-05 07:07:39.683000'),(8699,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-04 07:03:50.439000'),(8700,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-12-04 07:03:26.063000'),(8701,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-04 07:03:12.977000'),(8702,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-04 07:03:03.039000'),(8703,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-04 07:02:44.895000'),(8704,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-12-04 07:02:21.107000'),(8705,'We appreciate your great rating, Mareo!','2019-12-01 08:19:13.767000'),(8706,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-28 07:28:52.471000'),(8707,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-28 07:28:31.407000'),(8708,'Thank you so much for your great rating, Abdel Khalek!','2019-11-26 05:43:27.516000'),(8709,'We appreciate the great rating you gave us, Rolla!','2019-11-25 06:55:14.198000'),(8710,'Thank you for giving us five star, Kat!','2019-11-24 06:58:10.722000'),(8711,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-02-24 12:13:43.450000'),(8712,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-24 06:53:19.996000'),(8713,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-24 06:52:58.123000'),(8714,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-11-24 06:52:27.841000'),(8715,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-20 06:13:13.607000'),(8716,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-20 06:13:01.237000'),(8717,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. Hope your friend is feeling well.','2019-11-20 06:12:47.099000'),(8718,'Thank you so much for your great rating, Iliana!','2019-11-20 06:11:49.307000'),(8719,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-20 06:11:17.039000'),(8720,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-20 06:10:32.183000'),(8721,'Thank you so much for your nice review, Henry. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-11-17 07:11:25.586000'),(8722,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-17 07:10:50.596000'),(8723,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.','2019-11-17 07:10:39.212000'),(8724,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-17 07:09:58.707000'),(8725,'Thank you so much for your nice review, Kaeisha. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us! Hope your little brother is feeling well.','2019-11-17 07:09:40.959000'),(8726,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-11-17 07:08:53.240000'),(8727,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-17 07:08:29.640000'),(8728,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-17 07:08:21.051000'),(8729,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-17 07:08:11.005000'),(8730,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-17 07:07:59.691000'),(8731,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-17 07:07:03.102000'),(8732,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-17 07:06:37.670000'),(8733,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-17 07:06:24.052000'),(8734,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-17 07:06:06.290000'),(8735,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-14 10:03:50.389000'),(8736,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-13 06:39:45.873000'),(8737,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-11-12 07:36:47.579000'),(8738,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-12 07:36:22.639000'),(8739,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-11 07:25:07.309000'),(8740,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-11 07:24:28.882000'),(8741,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-11 07:24:12.551000'),(8742,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-06 07:47:10.379000'),(8743,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-06 07:47:00.402000'),(8744,'Thank you so much for giving us five star!','2019-11-06 07:46:46.938000'),(8745,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-06 07:46:27.065000'),(8746,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-11-06 07:46:17.070000'),(8747,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-06 07:45:46.511000'),(8748,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-11-05 07:39:35.640000'),(8749,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-06 07:43:22.368000'),(8750,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-05 07:39:05.142000'),(8751,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-11-06 07:45:32.753000'),(8752,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your friend at ease and provide her with the best care possible. We hope she feels better.','2019-11-06 07:44:21.968000'),(8753,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-11-04 11:18:43.782000'),(8754,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-04 11:18:21.468000'),(8755,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-03 06:18:14.015000'),(8756,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-11-03 06:17:56.361000'),(8757,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-03 06:17:33.141000'),(8758,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-03 06:17:20.564000'),(8759,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-31 09:51:05.911000'),(8760,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-31 09:50:53.870000'),(8761,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-03 06:18:26.030000'),(8762,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-30 05:45:31.725000'),(8763,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope your mom will get well soon.','2019-10-30 05:45:12.256000'),(8764,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-29 05:45:46.948000'),(8765,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-29 05:45:34.567000'),(8766,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-27 08:22:32.840000'),(8767,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-27 08:22:05.361000'),(8768,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-10-27 08:21:32.631000'),(8769,'Thank you for your great rating, Grecia!','2019-10-27 07:16:20.345000'),(8770,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-27 07:15:52.528000'),(8771,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-10-27 07:14:59.887000'),(8772,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-10-27 07:13:53.312000'),(8773,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-27 07:13:34.476000'),(8774,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-27 07:13:09.686000'),(8775,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-27 07:12:32.943000'),(8776,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. Hope your wife is feeling well.','2019-10-27 07:11:58.961000'),(8777,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-23 05:51:44.677000'),(8778,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-10-23 05:51:13.690000'),(8779,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-10-22 06:35:31.610000'),(8780,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-22 06:35:06.901000'),(8781,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-22 06:34:53.124000'),(8782,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-21 07:00:28.405000'),(8783,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-21 07:00:15.786000'),(8784,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-10-21 06:59:29.612000'),(8785,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare. Hope your girlfriend is feeling well.','2019-10-20 06:33:40.070000'),(8786,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-10-20 06:33:03.824000'),(8787,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-20 05:27:49.713000'),(8788,'Thank you for your five star rating, Leopold!','2019-10-20 05:18:16.354000'),(8789,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-20 05:17:47.292000'),(8790,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-10-20 05:17:22.703000'),(8791,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-20 05:17:00.678000'),(8792,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-20 05:14:16.175000'),(8793,'Thank you so much for your feedback, Eaglin. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-10-17 08:16:36.301000'),(8794,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-09 07:57:23.361000'),(8795,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-09 07:57:06.635000'),(8796,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-10-09 07:56:51.272000'),(8797,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-09 07:56:30.835000'),(8798,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-02 05:58:17.113000'),(8799,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating. Hope your husband is feeling well.','2019-10-02 05:57:52.635000'),(8800,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-29 05:57:33.267000'),(8801,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-22 06:02:27.499000'),(8802,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-09-22 06:01:59.882000'),(8803,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-19 09:17:24.970000'),(8804,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-09-19 09:17:04.436000'),(8805,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-09-15 04:52:06.466000'),(8806,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-11 05:10:57.157000'),(8807,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-11 05:10:40.424000'),(8808,'Thank you for your five star rating, Hilda!','2019-09-11 05:10:19.704000'),(8809,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-09-11 05:09:40.243000'),(8810,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your kiddo is feeling better.','2019-09-11 05:09:16.091000'),(8811,'We appreciate your great rating, Kim! Thanks for choosing SignatureCare!','2019-09-11 05:08:11.486000'),(8812,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-09-11 05:07:36.750000'),(8813,'Thank you so much for your nice review, Cosme. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-09-11 05:07:17.583000'),(8814,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-09-11 05:06:59.473000'),(8815,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-06-16 05:49:54.484000'),(8816,'Thank you so much for rating us five star!','2019-08-19 05:53:17.694000'),(8817,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-08-18 05:15:28.684000'),(8819,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-21 06:06:43.344000'),(8820,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. We would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-07-17 13:23:09.808000'),(8821,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-07 07:19:32.658000'),(8822,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-07-07 07:19:13.402000'),(8823,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-07 07:15:05.733000'),(8824,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-07-04 07:19:56.213000'),(8825,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-03 07:11:41.880000'),(8826,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-03 07:11:19.846000'),(8827,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-03 07:10:54.168000'),(8828,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-06-30 05:41:39.685000'),(8829,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-30 05:41:17.856000'),(8830,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-06-23 04:30:07.722000'),(8831,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-06-19 06:05:59.902000'),(8832,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-19 06:05:14.807000'),(8833,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-18 06:37:46.080000'),(8834,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-18 06:37:31.142000'),(8835,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-06-16 05:50:22.432000'),(8836,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-13 06:42:54.824000'),(8837,'Thank you so much for your nice review, Myles. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-06-10 05:51:37.089000'),(8838,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-06-09 07:08:31.397000'),(8839,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-30 05:32:47.446000'),(8840,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-30 05:32:38.947000'),(8841,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-05-28 05:43:43.201000'),(8842,'Thank you for your rating, Stacey!','2019-05-26 06:23:39.971000'),(8843,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-13 05:58:41.542000'),(8844,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-05-12 04:49:39.185000'),(8845,'Thank you for your rating, Lamont!','2019-05-02 09:14:07.232000'),(8846,'Thank you for your five star rating!','2019-05-02 09:13:56.161000'),(8847,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again! ','2019-05-02 09:13:35.409000'),(8848,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-05-02 09:13:11.689000'),(8849,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-05-02 09:11:58.604000'),(8850,'Thank you for your rating!','2019-05-02 09:11:39.775000'),(8851,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for your review.','2019-04-24 05:38:58.807000'),(8852,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2019-04-23 21:39:45.620000'),(8853,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-04-15 05:39:25.743000'),(8854,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-04-08 06:37:16.894000'),(8855,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-04-07 13:57:29.682000'),(8856,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2019-04-04 05:05:16.318000'),(8857,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-04-01 05:55:27.534000'),(8858,'Thank you for your five star rating!','2019-03-25 07:38:36.240000'),(8859,'Thank you for your great rating!','2019-03-20 06:42:38.883000'),(8860,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience sometimes like a zombie apocalypse. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-03-19 06:59:12.411000'),(8861,'Thank you for your rating, Lewis!','2019-03-18 06:07:10.561000'),(8862,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. We are ready to treat any kinds of emergency 24/7 even on the holidays.','2019-03-12 06:51:30.358000'),(8863,'We are glad to know that out team took an exceptional care and you loved out team. Thank you for trusting SignatureCare!','2019-03-12 06:49:13.722000'),(8864,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-03-10 09:22:27.144000'),(8865,'Thank you so much for your nice review. We always appreciate feedback from our customers. If there is anything more we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-03-10 09:24:56.014000'),(8866,'Thank you for the 5 star, Camilo!','2019-03-03 11:08:38.791000'),(8868,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-24 12:14:49.269000'),(8869,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-02-25 16:33:22.064000'),(8870,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-17 12:35:07.229000'),(8871,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-11 13:26:15.577000'),(8872,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-11 13:28:52.968000'),(8873,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-02-11 13:28:37.082000'),(8874,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. We also have the most caring staff in the state of Texas. Thank you for the wonderful feedback!','2019-02-11 13:28:27.034000'),(8875,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-02-11 13:27:32.181000'),(8876,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-11 13:27:06.774000'),(8877,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-02-11 13:26:45.237000'),(8878,'Thanks for rating us 5 star, Sandra!','2019-02-06 13:01:57.997000'),(8879,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-04 13:51:08.479000'),(8880,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2018-11-19 17:53:41.022000'),(8881,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-28 09:04:12.967000'),(8882,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-01-23 16:15:52.283000'),(8883,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-01-21 15:16:05.345000'),(8884,'Thanks for the 5 star.\n','2019-01-20 12:00:32.176000'),(8885,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-01-20 12:03:05.025000'),(8886,'Thank you so much for your nice review, Lecia. We always appreciate feedback from our patients. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-01-17 07:02:20.528000'),(8887,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-01-07 16:52:07.661000'),(8888,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-07 16:55:32.493000'),(8889,'Nobody likes being sick, but we always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-01-04 16:35:56.762000'),(8890,'Thanks for the 5 star review!','2019-01-04 16:33:39.797000'),(8891,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2018-12-26 16:24:42.425000'),(8892,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating. Staff','2018-12-26 16:24:31.456000'),(8893,'Hi, Chrisnatha! We hope the snacks were tasty (I like the Goldfish crackers!) and that we were able to assist you without taking up too much of your time. We know your time is irreplaceable.\nThank you for your shout out to each one of our amazing team members! We will let them know they are providing excellent service to our customers. Feel better soon!','2018-12-16 09:21:30.600000'),(8894,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-12-11 23:19:17.361000'),(8895,'Thank you for the 5 star review!','2018-11-26 16:07:10.095000'),(8896,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team, including Amy, took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare.','2018-11-20 17:23:17.823000'),(8897,'At Neighbors Emergency Center we want every interaction with our patients to be a positive one. We\nare concerned that this was not the service you experienced. Please contact our patient customer\nservice specialist at 844-406-7263 or by email at Patients@neighborshealth.com, so that we can\nspeak with you directly. We look forward to speaking with you.','2018-10-05 16:45:46.854000'),(8898,'Hi Kyle! Thank you for your 5-star review! We couldn\'t be happier that you had a good experience at Neighbors Emergency Center Bellaire. Thank you for taking the time to share it with us. We wish you a speedy recovery! ','2018-06-22 17:36:32.882000'),(8899,'Hi Matt! Thank you for your 5-star review! We appreciate your positive feedback about Neighbors\nEmergency Center Bellaire. We hope you are feeling better.','2018-06-08 16:41:05.301000'),(8900,'Hi Elmer! Thank you for your 5-star review! Thank you so much for sharing your Neighbors Emergency Center Bellaire experience! We are happy that you found our services fast and convenient. We wish you a speedy recovery.','2018-04-26 18:51:21.749000'),(8901,'Hi Amanda! THANK YOU for your 5-star review! Especially being the first review you have written. Thank you for sharing your positive feedback. We greatly value your opinion, and want to be able to continue to provide great service to all of our patients. We wish your son a speedy recovery!','2018-04-13 18:15:09.813000'),(8902,'Hi AJ! We are so glad your experience at Neighbors Emergency Center was a positive one! Thank you\nfor taking the time give us feedback. We hope you are feeling better soon.','2018-03-16 18:54:32.896000'),(8903,'Thanks for the 5 stars!','2018-11-12 16:07:00.844000'),(8904,'Thanks for your 5 star review!','2018-12-20 16:49:14.620000'),(8905,'Thanks for your 5 star review!','2018-12-20 16:49:22.944000'),(8906,'Thanks for your 5 star review!','2018-12-20 16:49:27.729000'),(8907,'Thanks for your 5 star review!','2018-12-20 16:49:33.252000'),(8908,'Thanks for your 5 star review!','2018-12-20 16:51:17.068000'),(8909,'Hi Martin. Thank you for your review. Please let us know if there is anything additional you would like to provide about your recent Neighbors experience. Thanks again!','2017-12-05 15:58:30.840000'),(8910,'Thanks for your 5 star review!','2018-12-20 16:51:21.167000'),(8911,'Hi Reid. We apologize for any inconvenience this has caused. We will review with the center directly as this is not how we treat patients. Everyone is welcome to seek care and treatment at Neighbors Emergency Center. We would appreciate you reaching out to our patient customer service specialist at 844-406-7263 or by email at patients@neighborshealth.com so we can understand your experience.','2017-09-22 14:11:59.301000'),(8912,'Hi Chantelle, Thank you for telling us about your positive visit to Neighbors Emergency Center. We are grateful you trusted us in your time of need. We wish you a speedy recovery. \n','2017-08-07 14:06:59.760000'),(8913,'Hi Chris. Thank you for rating Neighbors Emergency Center. Please let us know if there\'s anything additional you would like to provide. \n\n','2017-06-15 16:59:54.523000'),(8914,'Hi Dawn! We are so glad our staff took excellent care of you. We appreciate your feedback and agree that the patient comes first, no matter the situation. We hope you are feeling better! ','2017-06-02 19:11:57.903000'),(8915,'Hi Katrina, Neighbors Emergency Center is always here for you and your son\'s medical needs. Thank you for the positive review. We hope he is feeling better soon! \n','2017-05-17 19:05:49.524000'),(8916,'Hi Valentina! Thank you for the great review! We appreciate your feedback. ','2017-04-17 21:11:11.954000'),(8917,'Hi Elizabeth, Thank you for sharing your positive feedback. We greatly value your opinion, and want to be able to continue to provide great service to all of our patients. We wish you a speedy recovery.','2017-03-29 15:18:02.706000'),(8918,'Hi Jason, We understand that your Neighbors experience was not a positive one. At Neighbors our goal is to provide extraordinary care to each of our patients. We would appreciate you reaching out to our patient customer service specialist at 844-406-7263 so we can understand your experience with Neighbors and resolve any remaining issues. \n','2016-12-14 17:09:58.838000'),(8919,'Hi Lea. At Neighbors Emergency Center we want every interaction with our patients to be a positive one. We are concerned this is not the service you experienced. Please contact our patient customer service specialist at 844-406-7263 or email patients@neighborshealth.com. We look forward to speaking with you. ','2016-12-12 16:48:59.681000'),(8920,'Hi Eunice, Thank your for the positive feedback! We hope that you will feel better soon! \n','2016-11-16 15:26:51.979000'),(8921,'We hate to hear that you did not have a positive experience at Neighbors Emergency Center. Please contact our customer service specialist at 844-406-7263 so that we can learn more about your experience, and resolve any issues. Thank you for your patience, and we hope to speak with you soon! \n','2016-11-02 21:53:46.234000'),(8922,'Thank you for the great review! We appreciate your positive feedback about Neighbors Emergency Center. We hope you are feeling better. ','2016-06-21 18:33:53.097000'),(8923,'At Neighbors Emergency Center we want every interaction with our patients to be a positive one. We are concerned that this was not the service you experienced. Please contact our patient customer service specialist at 844-406-7263 so that we can speak with you directly. We look forward to speaking with you. ','2016-06-21 18:33:21.157000'),(8924,'Thanks for your 5 star review!','2018-12-20 16:51:26.203000'),(8925,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:44:14.438000'),(8926,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:47:01.311000'),(8927,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:47:09.935000'),(8928,'Thanks for your 5 star review!','2018-12-20 16:51:30.373000'),(8929,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:47:17.876000'),(8930,'Thanks for your 5 star review!','2018-12-20 16:51:34.680000'),(8931,'Thank you for your review!','2018-12-20 16:48:21.230000'),(8932,'Thanks for your 5 star review!','2018-12-20 16:51:41.345000'),(8933,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:47:28.669000'),(8934,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:47:35.800000'),(8935,'Thanks for your 5 star review!','2018-12-20 16:51:46.279000'),(8936,'Thanks for your 5 star review!','2018-12-20 16:52:19.939000'),(8937,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:47:43.723000'),(8938,'Thanks for your 5 star review!','2018-12-20 16:52:24.117000'),(8939,'Thanks for your 5 star review!','2018-12-20 16:52:48.395000'),(8940,'Thanks for your 5 star review!','2018-12-20 16:52:49.296000'),(8941,'Thanks for your 5 star review!','2018-12-20 16:52:50.070000'),(8942,'Thanks for your 5 star review!','2018-12-20 16:52:53.274000'),(8943,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:47:52.476000'),(8944,'Hi! Just wanted to let you know that this former Neighbors location has been taken over by new management. Allow me to introduce SignatureCare ER. Please stop in, take a tour, and allow us to give you excellent customer service. ','2018-12-20 16:48:05.471000'),(8945,'Thanks for your 5 star review!','2018-12-20 16:52:58.277000'),(8946,'Thanks for your 5 star review!','2018-12-20 16:53:01.905000'),(8947,'Thanks for your 5 star review!','2018-12-20 16:53:05.341000'),(8948,'Thanks for your 5 star review!','2018-12-20 16:53:09.944000'),(8949,'Thanks for your 5 star review!','2018-12-20 16:53:14.357000'),(9021,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-31 04:54:44.384000'),(9022,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-12-29 06:42:34.419000'),(9023,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made your husband comfortable and able to relax during his visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-29 06:42:19.864000'),(9024,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-22 08:35:57.571000'),(9025,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-22 08:35:48.878000'),(9026,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-22 08:35:41.471000'),(9027,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-12-22 08:35:33.244000'),(9028,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-22 08:35:21.763000'),(9029,'Thank you so much for your nice review, Alexis. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-17 06:13:30.365000'),(9030,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-15 07:05:13.344000'),(9031,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-15 07:04:59.279000'),(9032,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 07:04:26.988000'),(9033,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 07:04:03.847000'),(9034,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-15 07:03:50.207000'),(9035,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-15 07:03:37.187000'),(9036,'Thank you so much for your great rating, Aravinda!','2019-12-12 07:30:03.650000'),(9037,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 07:03:08.488000'),(9038,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-15 07:02:52.096000'),(9039,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-12-02 06:59:09.452000'),(9040,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-02 06:58:56.967000'),(9041,'Thank you for trusting us with the care of your kid. We appreciate the great feedback, and are very glad to hear that our team took such good care of your kiddo.','2019-12-01 08:39:19.344000'),(9042,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-01 08:38:31.473000'),(9043,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-12-01 08:37:59.335000'),(9044,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your sister. Thank you for choosing SignatureCare.','2019-12-01 08:37:45.275000'),(9045,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-25 06:56:33.755000'),(9046,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-24 07:05:59.460000'),(9047,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-11-19 06:22:26.711000'),(9048,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-11-18 05:57:28.007000'),(9049,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-11 07:37:08.720000'),(9050,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-11 07:36:49.781000'),(9051,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-07 04:53:55.570000'),(9052,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-03 06:33:49.065000'),(9053,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-10-27 08:38:23.490000'),(9054,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-10-27 08:38:04.745000'),(9055,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-10-27 08:37:50.948000'),(9056,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-24 08:05:06.334000'),(9057,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your girlfriend at ease and provide her with the best care possible. We hope she feels better.','2019-10-15 06:47:02.902000'),(9058,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of the both of you.','2019-10-13 07:32:32.580000'),(9059,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-13 07:32:14.393000'),(9060,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-10-13 07:32:03.450000'),(9061,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-10-13 07:31:56.227000'),(9062,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-13 07:31:41.120000'),(9063,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-10-13 07:31:18.913000'),(9064,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-10-13 07:31:04.819000'),(9065,'Thank you for trusting us with the care of your mom. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-10-03 07:33:14.458000'),(9066,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-10-03 07:32:49.758000'),(9067,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-09-29 06:07:39.167000'),(9068,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-09-29 06:07:24.020000'),(9069,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-16 11:28:26.106000'),(9070,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-09-15 04:57:44.001000'),(9071,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-09-11 05:48:50.544000'),(9072,'Thank you so much for your feedback! Our goal is to always provide the abest care. Thank you for choosing SignatureCare.','2019-09-11 05:48:28.241000'),(9073,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-09-11 05:48:15.770000'),(9074,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-08-22 05:48:01.840000'),(9075,'We appreciate your five star rating, Joel!','2019-08-22 05:47:30.213000'),(9076,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-08-22 05:00:12.821000'),(9077,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-08-18 06:01:20.768000'),(9078,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-08-18 06:01:11.281000'),(9079,'Thank you so much for rating us five star, Bonner!','2019-08-18 06:00:53.160000'),(9080,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-08-18 06:00:31.702000'),(9081,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-08-04 05:35:17.972000'),(9082,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\n with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2019-08-01 03:37:47.916000'),(9083,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-07-29 06:11:42.974000'),(9084,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-07-28 07:15:57.907000'),(9085,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-07-28 07:13:26.109000'),(9086,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-07-28 07:12:32.866000'),(9087,'Thank you so much for your nice review, Celeria. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-07-22 07:26:42.284000'),(9088,'Thank you so much for your nice review, Hollie. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-07-21 06:12:00.454000'),(9089,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-07-18 06:13:03.474000'),(9090,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-14 06:11:35.457000'),(9091,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-07-14 06:10:43.470000'),(9092,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-14 06:10:21.379000'),(9093,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-08 06:30:28.650000'),(9094,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-07-07 07:28:03.684000'),(9095,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. ','2019-07-07 07:27:47.052000'),(9096,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-07-07 07:27:25.377000'),(9097,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-07-07 07:27:00.432000'),(9098,'Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-07-07 07:26:41.106000'),(9099,'We appreciate your feedback and the great rating you gave us.','2019-07-07 07:26:08.910000'),(9100,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-07-07 07:25:31.159000'),(9101,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-07-07 07:25:13.638000'),(9102,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-07-07 07:24:53.610000'),(9103,'Thank you for your wonderful rating, Oluchi!','2019-07-04 07:33:37.052000'),(9104,'Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-07-04 07:34:50.799000'),(9105,'Thank you for the wonderful rating you gave us, Andrew!','2019-07-04 07:33:10.558000'),(9106,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-07-03 07:13:51.915000'),(9107,' Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-30 05:51:54.239000'),(9108,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-30 05:51:26.055000'),(9109,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-27 06:02:16.762000'),(9110,'Thank you for your five star rating, Erica!','2019-06-27 06:02:02.623000'),(9111,'Thank you so much for your feedback, Charla!','2019-06-27 06:01:36.672000'),(9112,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-06-26 06:35:28.327000'),(9113,'Thank you for your great rating, Joan!','2019-06-24 05:43:53.391000'),(9114,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously. ','2019-06-21 15:37:25.470000'),(9115,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-06-20 04:37:18.902000'),(9116,'Thank you so much for your nice review, Nidia. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-06-19 14:12:17.052000'),(9117,'We believe we have the very best staff in Texas. We are glad to know about your experience at our facility. Thank you for choosing SignatureCare!','2019-06-19 07:18:06.817000'),(9118,'Thank you for your review and rating. Thank again for choosing SignatureCare!','2019-06-19 06:10:53.336000'),(9119,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-06-19 06:10:09.401000'),(9120,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-06-19 06:09:45.707000'),(9121,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2018-11-07 15:40:36.258000'),(9122,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-06-17 06:33:46.450000'),(9123,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-06-16 05:54:34.887000'),(9124,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. ','2019-06-13 06:46:39.419000'),(9125,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-06-13 06:46:05.220000'),(9126,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-06-09 18:47:16.562000'),(9127,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-06-12 06:13:57.660000'),(9128,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-06-12 06:13:03.190000'),(9129,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-06-12 06:12:19.975000'),(9130,'We believe we have the very best facility in Texas with board-certified staffs, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-06-11 06:07:23.010000'),(9131,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. Hope your wife is feeling well.','2019-06-11 06:09:24.695000'),(9132,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-06-09 07:44:38.117000'),(9133,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-06-09 07:43:48.389000'),(9134,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-06-09 07:38:37.984000'),(9135,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-06-09 07:38:15.632000'),(9136,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-09 07:37:57.326000'),(9137,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-06-09 07:37:43.273000'),(9138,'We want everyone who visits us to feel like family. Thanks for choosing SignatureCare!','2019-06-09 07:37:24.664000'),(9139,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-05-27 05:58:03.783000'),(9140,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-05-21 04:18:59.702000'),(9141,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-05-19 05:24:56.873000'),(9142,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-05-13 06:01:00.538000'),(9143,'Thank you for your review and five star rating, Amanda!','2019-05-06 10:14:19.217000'),(9144,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-04-22 06:15:02.515000'),(9145,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better. ','2019-04-18 05:24:29.172000'),(9146,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-04-10 06:56:56.758000'),(9147,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-04-07 05:52:09.710000'),(9148,'Thank you for your rating!','2019-04-07 05:49:27.717000'),(9149,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs. ','2019-04-04 05:13:28.069000'),(9150,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-03-31 11:25:20.631000'),(9151,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Kids are the best creation in the world. We would love to pass time with your little one. Thank you for choosing SignatureCare and for the nice review. ','2019-03-27 05:52:00.381000'),(9152,'We are sorry for not being able to help you this time. SignatureCare is here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2019-03-27 05:46:06.776000'),(9153,'Thanks for your five star rating, Negin!','2019-03-20 06:50:11.027000'),(9154,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-03-18 13:31:55.695000'),(9155,'Thanks for your great words and recommending SignatureCare!','2019-03-18 06:17:57.923000'),(9156,'At SignatureCare, our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. Thanks for choosing us! ','2019-03-18 06:17:11.116000'),(9157,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-14 06:27:46.873000'),(9158,'Thank you for your five star rating, Manuel!','2019-03-12 06:43:55.515000'),(9159,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare and for the great review.','2019-03-10 13:49:33.260000'),(9160,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-03-10 08:18:34.417000'),(9161,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you and your fiancé comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs. ','2019-03-10 08:16:28.619000'),(9162,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-03-10 08:14:18.567000'),(9163,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-03-10 08:12:52.593000'),(9164,'We sincerely appreciate your continued trust. Our first priority is to make you feel better. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-03-10 08:11:45.356000'),(9165,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-03-10 08:04:42.359000'),(9166,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-03-10 08:03:01.723000'),(9167,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2019-03-10 08:02:23.933000'),(9168,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-03-10 08:00:03.200000'),(9169,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-03-10 07:59:54.333000'),(9170,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2019-03-10 07:59:40.941000'),(9171,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-03-10 07:47:36.048000'),(9172,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-02-24 12:12:58.110000'),(9173,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-24 12:12:42.921000'),(9174,'We are sorry that our prices were not to your liking, and regret the loss at the opportunity to provide you the quality care we strive to deliver to all our patients. We hope that you will consider us next time you have an emergency, and hope you are feeling better regardless of whom you sought treatment with. ','2019-02-20 20:33:28.040000'),(9175,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-20 11:47:48.768000'),(9176,'We want all of our patients to feel like VIPs, so it\'s great to hear that our SignatureCare team treated you so well. We appreciate the chance to help during your migraine and hope you are feeling better!','2018-05-01 18:00:38.348000'),(9177,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. ','2019-02-19 13:26:16.911000'),(9178,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Our goal is to get you in and out quickly and back to good health. Thank you for choosing SignatureCare, we appreciate your continued trust.','2019-02-17 10:01:29.221000'),(9179,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-02-17 10:02:06.871000'),(9180,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. Thank you for your review and your recommendation.','2019-02-14 13:40:31.497000'),(9181,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-02-11 13:05:56.911000'),(9182,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-02-11 13:05:35.162000'),(9183,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients and their compassion that makes our staff exceptional. It\'s great to hear that they took such good care of you and your husband. We appreciate the great review and rating.','2019-02-05 14:21:11.900000'),(9184,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-02-04 13:40:47.251000'),(9185,'Thank you so much for your nice review, Tam! We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2019-02-03 13:34:39.303000'),(9186,'We sincerely appreciate your continued trust. Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We take pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-30 13:44:02.044000'),(9187,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and we are glad to hear you are feeling better!','2018-02-19 22:03:10.116000'),(9188,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-01-28 09:05:35.346000'),(9189,'SignatureCare Emergency Center takes pride in our staff, and our staff cares so much about our patients. We are so very happy to hear you loved your team. We will make sure to let them know. ','2019-01-28 09:06:48.364000'),(9190,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-01-28 09:06:17.216000'),(9191,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-01-24 08:07:22.776000'),(9192,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. ','2019-01-14 10:23:51.154000'),(9193,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. ','2019-01-13 12:50:02.835000'),(9194,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved your team --- We will make sure to let them know. ','2019-01-11 17:46:19.791000'),(9195,'Thank you for letting us help you and help you feel better! Our goal is to always provide the best care and comfort. Thank you for choosing SignatureCare.','2019-01-10 11:46:42.466000'),(9196,'Thanks for the 5 star, Doug!','2019-01-10 11:38:22.833000'),(9197,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-01-10 08:34:25.220000'),(9198,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-01-07 16:50:18.259000'),(9199,'Thank you for trusting us with the care of your son time and again! We appreciate your trust and are very pleased to hear that our staff is always welcoming and accommodating. Thank you for choosing SignatureCare and for the great review. ','2017-10-24 15:16:59.588000'),(9200,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-01-03 16:51:51.705000'),(9201,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2019-01-02 16:24:17.526000'),(9202,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-01-02 16:23:52.342000'),(9203,'We are so please that our staff was able to provide you with excellent care and will pass on your feedback. Thank you for choosing SignatureCare!','2018-12-21 22:22:01.716000'),(9204,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-12-20 18:29:42.360000'),(9205,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2018-12-20 19:20:43.379000'),(9206,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2018-12-19 18:01:22.531000'),(9207,'Brian, we are so pleased that you had a positive, non-judgmental experience with our facility. We always strive to make patients feel like family. I will pass your kind words onto our doctors, nurses, technicians and intake staff. ','2018-12-16 09:13:57.270000'),(9208,'It\'s their compassion for others that makes our employees so special. We are so glad to hear that our team took such good care of you, and in a quick and efficient manner. Thank you for letting us know how we are doing, and thank you for choosing SignatureCare!','2018-12-13 21:29:02.630000'),(9209,'Hi Natalie! Glad we could provide excellent service! Thank you for your review and your recommendation.','2018-12-13 21:28:50.880000'),(9210,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2018-12-05 16:23:14.734000'),(9211,'Thanks for the 5 stars, Reba!','2018-11-28 16:13:55.615000'),(9212,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2018-11-26 16:06:57.902000'),(9213,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2018-11-26 16:06:25.790000'),(9214,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2018-11-26 16:06:44.959000'),(9215,'Thanks for the 5 star review!','2018-11-15 19:56:18.920000'),(9216,'Acute bronchitis is the worst! Glad you were able to be quickly diagnosed and treated! Take care of yourself, so that the bronchitis doesn\'t get worse!','2018-11-12 16:06:27.719000'),(9217,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we are glad your son is feeling better!','2018-11-07 15:39:56.162000'),(9218,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2018-11-07 15:40:22.751000'),(9219,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff aim to get you in and out quickly so that you can get back to feeling better. Thank you for choosing SignatureCare and for the fantastic review. ','2017-06-02 20:01:33.945000'),(9220,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email mhurwitt@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2018-11-05 15:27:45.559000'),(9221,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2018-11-05 15:28:56.100000'),(9222,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2018-11-05 15:28:39.856000'),(9223,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2018-11-05 15:26:51.714000'),(9224,'We are so pleased we could provide you comfort, Katelyn, and hope you are feeling better! ','2018-11-01 19:28:33.091000'),(9225,'Hi David! We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2018-10-22 14:56:37.329000'),(9226,'Thank you for your amazing review, Raven! We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers.','2018-10-11 14:34:49.700000'),(9227,'We will be delighted to pass on your glowing feedback to all of our staff, SaQwan! When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2018-10-11 14:35:34.609000'),(9228,'Hi there -- I see that you left us a one-star review, so I wanted to reach out to get some more details. Can you give us some feedback on why we received such a rating so that we can discuss with our team and make some improvements? We take all reviews and comments very seriously so we would love some more feedback on what we could do better. Thank you so much. ','2018-10-04 15:52:31.163000'),(9229,'Thank you so much for your kind review!','2018-10-10 15:58:09.861000'),(9230,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2018-10-02 15:27:38.148000'),(9231,'SignatureCare Emergency Center\'s board-certified doctors and state-of-the-art equipment are available 24/7 to evaluate and treat most medical emergencies. We are very happy to learn your experience with us was so good, as we strive for excellence each time you visit one of our emergency rooms. Thank you for taking the time to let us know. ','2018-09-30 15:26:09.500000'),(9232,'Thank you for your review and your recommendation. We appreciate and value your feedback. Thank you for giving SignatureCare your trust. ','2018-09-26 16:26:32.495000'),(9233,'We get a lot of great comments about our warm blankets! We hope the service you received was the best as well. Thank you for the great rating and for choosing SignatureCare!','2018-09-23 17:37:19.055000'),(9234,'We appreciate you taking time out of your busy schedule to let us know how we are doing. Thank you for the nice review and for choosing SignatureCare!','2018-09-22 16:31:53.161000'),(9235,'Thank you so much for the nice review and recommendation. SignatureCare is here 24/7 for all your emergency needs should you need us. ','2018-09-22 16:30:52.674000'),(9236,'While we hope not to see you anytime soon, SignatureCare is here 24/7 for all your medical emergency needs. Thank you for choosing us and for the very nice review. ','2018-09-20 16:55:50.071000'),(9237,'Thank you so much for taking the time to rate us. We appreciate the five stars!','2018-09-05 16:19:14.887000'),(9238,'Thank you so much for your feedback and for choosing SignatureCare!','2018-09-04 15:58:02.222000'),(9239,'We know that your time is valuable, so we appreciate you taking time out of your day to let us know how we are doing. Thank you for the nice review and we hope you are feeling better. ','2018-08-26 17:22:10.745000'),(9240,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. Using our state-of-the-art equipment and onsite lab services, we are able to quickly diagnose young children. It is never fun when your child gets sick, but when you have an emergency with your child, we are here to help! Thanks for the nice review. ','2018-08-25 16:56:54.873000'),(9241,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and hope you are feeling better. ','2018-08-21 15:26:53.730000'),(9242,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We are very proud that you chose SignatureCare Emergency Center as your choice for care and we hope you are feeling better. ','2018-08-21 15:26:27.327000'),(9243,'We appreciate and value your feedback. Thank you for your positive review, and we hope you feel better.','2018-08-20 15:23:36.641000'),(9244,'We appreciate you taking time from your busy schedule to review our services. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. ','2018-08-20 15:23:04.569000'),(9245,'The most stressful time for anyone is during a medical emergency. Thank you for choosing SignatureCare. We hope we put you at ease and provided you with the best care possible. ','2018-08-15 18:13:04.959000'),(9246,'Our goals are to provide the best care possible to all patients and ensure they are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. ','2018-08-13 13:35:41.354000'),(9247,'We are very happy to know this was your experience with our emergency room. Thank you for choosing SignatureCare. ','2018-08-12 16:20:41.736000'),(9248,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. We are pleased to hear about your positive experience and hope you are feeling better. ','2018-08-12 16:20:22.089000'),(9249,'We love hearing about the comfortable experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback and we hope you are feeling better. ','2018-08-11 13:40:26.467000'),(9250,'We know your time is valuable, so we appreciate you taking the time to review our services. Our community is important to us so it means a lot to hear we are doing a good job. Thank you for choosing SignatureCare and we hope you are feeling better. ','2018-08-09 16:43:56.001000'),(9251,'It is never fun when you get sick, but when you have an emergency, we are here to help! Thank you for your review and we hope you are feeling better. ','2018-08-07 17:32:24.047000'),(9252,'Thank you for entrusting our team with your care. If you need peace of mind in the future, don’t hesitate to contact us. ','2018-08-05 17:54:30.092000'),(9253,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers and for taking the time to let us know how we are doing. ','2018-08-03 19:25:23.818000'),(9254,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. We appreciate the feedback and hope you will consider us again if you ever have another medical emergency. ','2018-07-26 14:46:27.512000'),(9255,'What a nice review, especially from an RN! Thank you for choosing SignatureCare and for taking the time to let us know how we are doing. ','2018-07-21 17:58:20.334000'),(9256,'SignatureCare Emergency Center’s staff sets goals on patient satisfaction. Thank you for letting us know we’re one step closer to meeting them! Thank you for letting us put you and your daughter at ease and provide you with the best care possible. We hope your daughter is feeling better. ','2018-07-20 17:03:23.288000'),(9257,'Thank you so much for the feedback. We appreciate you choosing SignatureCare!','2018-07-20 17:01:42.085000'),(9258,'When we receive feedback like this, it helps us know we’re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust and for the very nice review. ','2018-07-17 12:46:52.276000'),(9259,'An emergency with your child can be a scary experience, but we are glad to hear that our team took good care of you and your family. Thank you for trusting SignatureCare with his care and we hope he is feeling better!','2018-07-16 16:34:30.879000'),(9261,'Thank you so much for the feedback, Helen. We appreciate it, and the five-star rating!','2018-07-08 17:47:33.228000'),(9262,'Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2018-06-17 17:06:37.781000'),(9263,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to good health. Thank you for choosing us, and we hope you are feeling better. ','2018-06-17 17:05:49.483000'),(9264,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us. \n ','2018-06-17 16:59:30.985000'),(9265,'Thank you so much for your feedback! Our goal is to always provide the best care. If you have any further questions, don’t hesitate to give our team a call. ','2018-06-05 19:04:58.340000'),(9266,'Thank you for taking the time to leave us such a nice review. We appreciate the feedback, as we are always looking for ways to improve our services at SignatureCare. Thanks for choosing us!\n','2018-05-20 17:24:59.745000'),(9267,'Thank you for your review, Crystal. We take all comments very seriously, as we aim for 100% satisfaction when you come into our facility. We are glad to hear your experience was good, and will pass your suggestions on to our team so they can do better next time. Thanks again for choosing SignatureCare. ','2018-05-31 15:25:19.967000'),(9268,'Thank you for trusting us with your family\'s medical needs. We hope that you both are feeling better. Thank you for choosing SignatureCare!','2018-05-18 15:48:20.718000'),(9269,'SignatureCare is here 24 hours a day, 365 days a year, when you do have an unexpected emergency. Thank you for trusting us with your medical needs, and we appreciate the great feedback. ','2018-05-18 15:47:27.729000'),(9270,'Thank you for choosing SignatureCare. We are here 24/7 for all your emergency medical needs. We appreciate you giving us your trust. ','2018-05-08 15:55:53.789000'),(9271,'We appreciate this nice feedback. Thank you for giving SignatureCare the chance to care for you. ','2018-05-07 17:07:56.600000'),(9272,'We appreciate the feedback, Alex. Thank you for choosing SignatureCare and for the nice review. ','2018-04-15 18:25:27.085000'),(9273,'SignatureCare wants all of our patients to feel like VIPs, so it\'s great to hear that our staff took such good care of you. Thank you so much for the great review and rating -- we appreciate the feedback!','2018-04-04 15:51:10.593000'),(9274,'Thank you so much for the five-star rating and nice review. We appreciate your feedback!','2018-04-03 13:52:19.188000'),(9275,'Thank you for taking the time to review our services and for giving us the chance to take care of you. We appreciate the nice review and great rating. ','2018-04-03 13:51:57.654000'),(9276,'At SignatureCare Emergency Center, we understand that the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the five-star rating!','2018-03-23 17:33:20.771000'),(9277,'Hi Bryan, thank you for taking the time to rate us. We take all of our reviews and ratings very seriously, so we would sincerely like to know why we only received a one star rating. Please give us a little more feedback so that we know how we can improve our services so that we do better next time. We appreciate your help!','2018-03-20 13:27:26.268000'),(9278,'Thank you so much for the five-star rating, Laiza. We appreciate the feedback. ','2018-03-17 15:17:21.009000'),(9279,'Thank you for the five-star rating. We appreciate it!','2018-03-15 15:51:15.400000'),(9280,'Thank you so much for your kind words. Our staff makes us proud every day, and we will be sure to pass along your comments. Thank you for choosing SignatureCare ','2018-03-12 17:49:09.486000'),(9281,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2018-03-06 16:21:57.533000'),(9282,'We love hearing about the great experience our patients had at SignatureCare Emergency Center. Thank you so much for the positive feedback. ','2018-03-03 15:20:17.944000'),(9283,'Thank you for the five-star rating! We appreciate the feedback. ','2018-02-20 18:20:39.635000'),(9284,'We love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting SignatureCare with your medical needs and we hope you are feeling better. ','2018-02-15 22:51:09.561000'),(9285,'Thanks so much for the five stars! We appreciate the feedback. ','2018-02-15 22:48:02.178000'),(9286,'We appreciate the five-star rating, Xavier!','2018-02-15 22:47:45.279000'),(9287,'Thank you for taking time out of your busy schedule to review our services. We appreciate your feedback, as our community is very important to us. Thanks so much for the great rating!','2018-02-15 22:47:30.498000'),(9288,'Our community is important to us, so it\'s great to hear that we are doing a good job for you. Thanks for choosing SignatureCare and for the very nice review. ','2018-02-14 23:19:24.623000'),(9289,'Thank you so much for the positive feedback. Although we hope to not see you soon, we are here 24/7 when you do have an unexpected emergency. ','2018-02-09 17:15:33.828000'),(9290,'Thank you so much for placing your trust in SignatureCare Emergency Center. Our board-certified doctors and staff aim to provide the best possible care for everyone that walks through our doors. Thank you for choosing our facility. ','2018-02-10 16:29:37.990000'),(9291,'Thank you for trusting us with your care. We always appreciate positive feedback from our patients, and our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare. ','2018-01-29 15:57:13.603000'),(9292,'Thank you for the positive review and great rating. We are always open and available when you have an unexpected emergency. ','2018-02-07 17:36:41.626000'),(9293,'We appreciate and value your feedback. Thanks so much for choosing SignatureCare, and we hope you are feeling better. ','2018-02-07 17:36:11.347000'),(9294,'We appreciate you giving us your trust time and again for your medical emergencies. While we hope not to see you anytime soon, we are open 24/7 in case you need us again. Thanks for the nice review!','2018-02-06 16:40:52.004000'),(9295,'Thanks so much for reviewing and rating us. We hope if there is anything we could have done to earn that fifth star, you will let us know, as we aim for 100% satisfaction at SignatureCare!','2018-02-06 16:40:03.323000'),(9296,'Thanks so much for your feedback -- we appreciate it. Thanks for choosing SignatureCare. ','2018-01-30 14:42:09.478000'),(9297,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2018-01-26 16:16:04.005000'),(9298,'Our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. It\'s great to hear that this was your experience with SignatureCare. Thanks for the review and great rating. ','2018-01-26 16:15:18.883000'),(9299,'Our team appreciates your feedback. Thank you for letting us know how we are doing and for the nice review. ','2018-01-26 16:14:16.660000'),(9300,'Our staff appreciates comments like this. Thank you for choosing us and for letting us know that we are doing a good job. ','2018-01-25 12:57:46.701000'),(9301,'Thank you for trusting SignatureCare with your emergency needs. We are a full-service emergency room that\'s open 24/7 when you need us. Thanks for the nice review!','2018-01-25 12:57:13.157000'),(9302,'Our SignatureCare locations generally have wait times of 10 minutes or less, so it\'s great to hear that this was your experience with our facility. Thank you for your review and we hope you are feeling better. ','2018-01-20 17:23:07.044000'),(9303,'Thank you for letting us know how we are doing. We appreciate your feedback. ','2018-01-19 16:53:43.936000'),(9304,'It\'s never fun visiting the ER with a child, but we are so pleased that our staff took good care of you both. Thanks so much for the nice review. ','2018-01-18 16:58:55.512000'),(9305,'Thank you for your nice review, and for any future referrals. We appreciate your feedback!','2018-01-17 16:52:07.656000'),(9306,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback and for the great rating. ','2018-01-16 16:08:48.947000'),(9307,'Thank you so much for the five-star rating!','2018-01-16 15:58:50.577000'),(9308,'Thank you for the great review and rating. Our staff appreciates receiving comments like this!','2018-01-14 16:49:59.378000'),(9309,'Thanks for the nice review and rating, Felicia. We appreciate the feedback. ','2018-01-13 14:39:57.133000'),(9310,'Thank you so much for the great rating, and for any future recommendations. We appreciate the feedback. ','2018-01-11 18:26:14.725000'),(9311,'It\'s great to hear that our team took such good care of you. Thank you for the nice review and great rating. ','2018-01-09 18:47:28.142000'),(9312,'Thanks so much for the feedback and great rating, William!','2018-01-03 15:42:58.062000'),(9313,'Our team appreciates positive feedback like this. Thanks so much for letting us know how we are doing and thank you for choosing SignatureCare. ','2018-01-01 18:40:28.317000'),(9314,'Children are a top priority at SignatureCare. We aim to make parents feel comfortable while their little ones are being treated. Thank you for trusting us with the care of your children!','2017-12-30 15:56:57.766000'),(9315,'I apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email Jennifer at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review. ','2017-12-28 15:03:34.780000'),(9316,'Thank you for your feedback. We apologize you had to wait a long amount of time during your visit. We would like to learn more about your visit so that we can do better in the future. Can you please email info@ercare24.com with your full name, date and location of your visit, so that we can review your case? Thank you so much for letting us know how we are doing. ','2017-12-26 20:53:11.745000'),(9317,'Children are a top priority of SignatureCare\'s team. We want parents to feel comfortable and know their child will be taken care of with the highest level of professionalism and care. Thank you for trusting us with your daughter\'s care and we hope she is feeling better. ','2017-12-24 18:25:26.093000'),(9318,'What a nice review! We appreciate you trusting us with the care of your child and are so pleased to hear that our team took such good care of you. Our community is important to us, so it\'s important to hear that we are doing a good job. Thank you for your trust, and we hope your child is feeling better. ','2017-12-24 18:24:17.920000'),(9319,'Thank you for your nice review and comment. We appreciate you letting SignatureCare take care of you during your emergency. ','2017-12-21 18:07:35.652000'),(9320,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your trust in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job.','2017-12-20 19:05:31.249000'),(9321,'Thanks so much for the great rating, Dolores. Let us know if there is anything we could have done to earn that fifth star -- we aim for 100% satisfaction each time you visit SignatureCare!','2017-12-20 00:00:34.726000'),(9322,'Thanks so much for your feedback, Denise. We appreciate you giving us your trust and for taking the time to review SignatureCare Emergency Centers. ','2017-12-18 17:40:35.430000'),(9323,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback, it helps us excel at our jobs. ','2017-12-17 18:40:32.157000'),(9324,'Thanks so much for the feedback! We appreciate the great rating.','2017-12-15 16:52:06.593000'),(9325,'SignatureCare\'s dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for your kind words -- we will pass them along to our team. ','2017-12-14 16:27:11.398000'),(9326,'Thank you for trusting us again and again for your family\'s care. Your positive review means a lot to our team. ','2017-12-14 16:25:35.732000'),(9327,'Thank you so much for the five stars, Veronica. We appreciate it!','2017-12-11 16:42:39.322000'),(9328,'Thank you so much for the five-star rating! We appreciate the feedback.','2017-12-07 20:44:31.489000'),(9329,'We appreciate the great rating. Thank you for choosing SignatureCare. ','2017-11-28 17:52:19.072000'),(9330,'Thank you for the five-star rating, and for choosing SignatureCare!','2017-11-28 17:51:58.013000'),(9331,'Thank you for trusting us with the care of your father. We love hearing how our team made you feel like family -- we will pass along your kind words to them. We appreciate the great review and rating!','2017-11-27 19:53:02.139000'),(9332,'Thank you for the five-star rating -- we appreciate it!','2017-11-27 19:50:55.400000'),(9333,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. It\'s great to hear that this was your experience with our emergency room. Thank you for the nice review. ','2017-11-26 16:59:53.175000'),(9334,'Our entire team aims to get you in and out quickly so you can get back to your life. Thank you for letting us know that we are doing a good job -- our community is important to us. ','2017-11-24 15:43:00.497000'),(9335,'Thanks so much for letting us know how we are doing and for the great rating. Thanks for choosing SignatureCare!','2017-11-24 15:42:01.754000'),(9336,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-11-24 00:10:06.490000'),(9337,'We appreciate and value your feedback. At SignatureCare Emergency Center, we are always looking for ways to improve our services. Our patients are what keep us going strong. Thank you for your positive review, and we hope you feel better.','2017-11-24 00:09:16.703000'),(9338,'Thank you so much for your kind words. We appreciate the feedback, and appreciate you choosing SignatureCare. ','2017-11-17 14:25:45.300000'),(9339,'Thank you for you taking time out of your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. ','2017-11-15 17:05:28.137000'),(9340,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but we are so glad to hear that our doctors, nurses and medical staff took good care of you while your treatment and diagnosis were in process. Thank you for choosing SignatureCare and for the fantastic review. ','2017-11-13 18:59:48.993000'),(9341,'Their compassion and dedication for helping others is why we love our employees. We are glad to hear that our SignatureCare team took such good care of you. Thanks for choosing our facility. \n\n','2017-11-07 16:50:33.064000'),(9342,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. ','2017-11-04 15:17:39.242000'),(9343,'Thanks for the five-star rating, Tina!','2017-10-27 15:48:25.203000'),(9344,'Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Centers. ','2017-10-18 15:45:00.108000'),(9345,'Thank you for the five-star rating -- we appreciate it!','2017-10-17 14:51:31.499000'),(9346,'It’s great to hear that our staff was pleasant and your experience at SignatureCare Emergency Center was positive. Thank you for choosing us, and for the great review. ','2017-10-17 14:45:59.466000'),(9347,'We know that you have a choice when it comes to emergency care, and we appreciate you choosing SignatureCare! Thanks for the nice review. ','2017-10-13 15:02:14.407000'),(9348,'Thank you for the five-star rating, Janie!','2017-10-13 15:01:35.471000'),(9349,'Thank you for sharing your experience. We apologize it was not perfect. Our team takes every review extremely seriously and we have spoken with our staff to improve communication and care. Please feel free to reach out to us at any time if you wish to discuss your visit or have additional concerns. ','2017-10-10 15:05:29.614000'),(9350,'Thank you for taking time out of your busy schedule to review us. We appreciate the feedback and the five stars. Thanks for choosing SignatureCare!','2017-10-07 14:37:11.897000'),(9351,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Centers. ','2017-10-06 13:55:40.986000'),(9352,'While we hope not to see you anytime soon, please know that we are here 24/7 if you need us. Thank you for choosing SignatureCare and for the great review. ','2017-10-04 15:30:40.132000'),(9353,'We appreciate nice feedback like this. Thanks for taking the time to let us know how we are doing. ','2017-09-29 14:09:24.864000'),(9354,'Thank you for letting us know that our staff is doing a good job. We appreciate the great review and rating!','2017-09-27 13:29:38.752000'),(9355,'We always want to get our patients in and out quickly so you can get back to your life and back to good health. Thanks for trusting SignatureCare with your emergency. ','2017-09-26 13:55:50.304000'),(9356,'Thank you for choosing our facility, and for giving us the chance to take care of you. We appreciate the nice review!','2017-09-22 23:43:58.058000'),(9357,'Hi -- thank you for your feedback. We take complaints very seriously, and would like to look into this matter further. Can you please email your contact information to info@ercare24.com so that we can contact you and learn more about this situation and what happened. Thank you so much.','2017-09-20 13:18:04.921000'),(9358,'Visiting the ER can be a scary experience, but our team aims to make your stay pleasant and comfortable as we quickly diagnose and care for you. It\'s great to hear that your experience with SignatureCare was a pleasant one, as we aim for 100% satisfaction each time you visit us. ','2017-09-19 18:27:28.928000'),(9359,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your positive review -- we are always here whenever you need us.','2017-09-17 14:15:25.133000'),(9360,'\nYour positive experience means a lot to our team. Thank you for choosing us, and for the great review. ','2017-09-17 14:16:09.221000'),(9361,'Their compassion and dedication for helping others is why we love our employees. Thank you for your kind words, and we will pass them along. ','2017-09-12 04:06:14.684000'),(9362,'We appreciate feedback like this -- it reminds our team that they are doing a good job. Thank you for choosing SignatureCare!','2017-09-12 04:05:10.938000'),(9363,'Thank you so much for the five-star rating. We appreciate it.','2017-09-08 14:58:20.702000'),(9364,'We aim for 100% satisfaction at SignatureCare, and it\'s really nice to hear that this was your experience with our emergency room. Thank you so much for the feedback. ','2017-09-05 15:54:48.985000'),(9365,'At SignatureCare Emergency Center, we love all our patients, and our goal is to make each and every patient feel like a VIP. Thank you for trusting us with your medical needs, and for the nice review.','2017-08-27 18:50:17.875000'),(9366,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place. But we are very pleased to hear that our doctors, nurses and medical staff made you feel comfortable and able to relax. Thank you for choosing SignatureCare, and for the fantastic review. ','2017-08-27 18:48:03.711000'),(9367,'We always appreciate positive feedback from our patients. SignatureCare\'s staff is always here and willing to meet all your healthcare needs 24/7. Thank you for the great rating. ','2017-08-23 01:38:14.661000'),(9368,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but the entire staff at SignatureCare aims to make you feel comfortable while your treatment and diagnosis are in process. Thank you for choosing our facility and for the fantastic review. ','2017-08-23 01:37:26.390000'),(9369,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. ','2017-08-14 13:31:30.870000'),(9370,'Thank you for taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare.','2017-08-08 22:43:54.726000'),(9371,'Thank you so much for the five star rating!\n','2017-08-08 22:42:36.617000'),(9372,'We appreciate your continued trust and patronage. We are happy to hear that you were pleased with your experience and hope that you are feeling better. ','2017-08-08 22:42:25.612000'),(9373,'We appreciate your kind words and your great review. Thank you for any future recommendations, and for giving us your trust. ','2017-08-07 02:01:32.158000'),(9374,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to ensure you feel better faster. Thank you for trusting us with your medical needs, and for the wonderful feedback. ','2017-07-28 19:10:18.954000'),(9375,'We\'re glad our team was able to deliver an exceptional experience. Thank you for letting us know, and for the great rating.','2017-07-20 01:19:35.577000'),(9376,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We are glad to hear that we put you at ease and provided you with the best care possible. ','2017-07-15 22:28:48.265000'),(9377,'Our goal is to get you in and out quickly and on your way back to good health! Thank you for trusting us with your medical needs. ','2017-07-15 22:28:15.058000'),(9378,'It\'s great to hear that our team took good care of you. Thank you for letting us know.','2017-07-15 22:27:39.000000'),(9379,'Thank you for trusting your emergency needs with SignatureCare. We appreciate the positive feedback!','2017-07-15 22:27:18.484000'),(9380,'The ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you and your family members feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2017-07-11 15:48:07.517000'),(9381,'We appreciate you taking time from your busy schedule to write us such a positive review. Thank you for choosing SignatureCare Emergency Centers. ','2017-07-11 15:47:14.021000'),(9382,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but SignatureCare\'s doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. ','2017-07-06 18:51:16.713000'),(9383,'We appreciate the five-star rating!','2017-07-01 15:34:41.944000'),(9384,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-07-01 15:34:24.445000'),(9385,'SignatureCare Emergency Center strives to treat you and get you on your way quickly. No one likes the ER, but we are glad to be here for you when you need us. ','2017-06-30 12:31:55.672000'),(9386,'Thank you so much for the positive feedback. Although we hope to not see you soon, we are here when you do have an unexpected emergency. ','2017-06-30 12:31:16.796000'),(9387,'We always appreciate positive feedback from our patients. Thank you for giving us the chance to take care of you.','2017-06-30 12:30:46.684000'),(9388,'Thank you so much for the great rating. We appreciate it.','2017-06-30 12:30:14.056000'),(9389,'Our team at SignatureCare knows that your time is valuable. We make our patients the number one priority no matter their emergency. Thank you so much for your positive feedback, we appreciate it. ','2017-06-17 14:15:34.885000'),(9390,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. Thank you for letting SignatureCare take care of you. ','2017-06-17 14:14:28.009000'),(9391,'We are very sorry to learn you felt your experience was negative. Our board certified physicians are highly trained and experienced in emergency room care. Our rates for those without insurance are 175 plus any tests necessary. We also offer payments for those who are deemed necessary and emergent, however there is no charge to be seen and evaluated and only if you choose to receive treatment would you receive a bill. Since we are an emergency room we are governed by federal standards. We take emergency medical care very seriously and I\'m sorry to learn you felt this wasn\'t your experience. We do always provide a free medical evaluation and then again if you proceed it\'s 175. I\'m sorry that you feel this was not explained to you prior. We would like the opportunity to earn your business in the future and I can have someone contact you if you would like to discuss further. We hope your daughter is feeling better. ','2017-06-18 22:06:30.741000'),(9392,'Thank you so much for the positive feedback. We appreciate it.','2017-06-17 14:13:34.274000'),(9393,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2017-06-14 02:10:33.331000'),(9394,'Our staff appreciates feedback like this -- it reminds them that they are doing a good job for our community. Thank you for choosing SignatureCare. ','2017-06-11 18:26:08.367000'),(9395,'Our SignatureCare team makes us proud every day. Thank you for letting us know they are doing a good job. And thank you so much for the nice review. ','2017-06-10 15:04:40.392000'),(9396,'We aim for 100% satisfaction at SignatureCare Emergency Center. Thank you for your feedback. It helps us excel at our jobs. ','2017-06-10 15:04:08.197000'),(9397,'We appreciate your feedback and great rating. Thank you for choosing SignatureCare. ','2017-06-08 14:26:32.058000'),(9398,'Our goals are to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with SignatureCare. Thank you for letting us know.','2017-05-24 15:07:56.873000'),(9399,'Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. We are glad to hear that they took good care of you, and we are proud that you chose SignatureCare for your emergency needs. ','2017-05-22 23:58:20.539000'),(9400,'SignatureCare aims to provide the best care possible to all patients and ensure families are comfortable while waiting for diagnosis and treatment. We are very happy to know this was your experience with our emergency room. ','2017-05-20 16:35:42.870000'),(9401,'Our staff appreciates receiving comments like this -- it helps us continue to do a good job. Thank you for letting us know. ','2017-05-15 14:40:41.340000'),(9402,'Thank you for letting us help you and help you feel better! The most stressful time for anyone is during a medical emergency. We hope we put you at ease and provided you with the best care possible. ','2017-05-12 20:01:03.721000'),(9403,'Thank you so much for your feedback! Our goal is to always provide the best care. We appreciate your support and the review.','2017-05-12 20:00:43.317000'),(9404,'SignatureCare Emergency is very pleased to be open in Stafford, and we are happy to hear that our team takes good care of you quickly. Thank you for choosing our facility and for the great review. ','2017-05-03 15:17:04.631000'),(9407,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-07 07:13:08.960000'),(9408,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-07 07:12:08.339000'),(9410,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-01-07 07:09:53.517000'),(9412,'Thank you so much for your great rating, Wesley!','2020-01-07 06:50:29.170000'),(9413,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-07 07:02:52.597000'),(9414,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-07 06:49:55.934000'),(9417,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-08 08:03:44.820000'),(9419,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-08 07:57:00.621000'),(9420,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-08 07:56:37.980000'),(9422,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-01-08 07:37:28.828000'),(9423,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-08 07:37:01.755000'),(9424,'Thank you so much for your great rating, Damien!','2020-01-08 07:36:49.339000'),(9425,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-08 07:36:24.196000'),(9426,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-08 07:36:07.840000'),(9427,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-08 07:35:48.437000'),(9428,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-08 07:35:55.946000'),(9429,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. We hope your spouse is feeling well.','2020-01-08 07:34:01.601000'),(9430,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-01-08 07:47:21.180000'),(9431,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-08 07:47:03.705000'),(9432,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-08 07:42:46.236000'),(9434,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-08 07:37:50.446000'),(9438,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-09 07:37:09.902000'),(9439,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-09 07:36:08.258000'),(9440,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-09 07:35:53.851000'),(9441,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-09 07:35:29.655000'),(9443,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-09 07:25:37.203000'),(9444,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your dad. Thank you for choosing SignatureCare.','2020-01-09 07:25:21.362000'),(9445,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-09 07:24:58.811000'),(9446,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-09 07:24:39.234000'),(9447,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-09 07:24:28.370000'),(9448,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-01-09 07:29:55.877000'),(9449,'We appreciate your great rating, Jackson!','2020-01-09 07:29:27.696000'),(9450,'Thank you so much for your great rating, Chris!','2020-01-09 07:29:08.602000'),(9452,'We appreciate your five star rating, Courtney! Thank you for choosing us as your emergency room.','2020-01-09 07:26:42.484000'),(9454,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-09 07:25:47.223000'),(9459,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-12 07:12:29.978000'),(9462,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-12 07:11:28.407000'),(9463,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-12 07:10:36.107000'),(9464,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-12 07:10:26.999000'),(9465,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-12 07:10:18.018000'),(9466,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-12 06:13:11.520000'),(9467,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your daughter feels better soon!','2020-01-12 06:12:24.994000'),(9468,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare! Thank you again for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-01-12 06:11:16.922000'),(9469,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-12 07:05:17.178000'),(9470,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-12 07:05:07.147000'),(9471,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare. Hope your dad is feeling better.','2020-01-12 07:04:53.634000'),(9472,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-12 07:04:21.781000'),(9473,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-12 07:04:02.300000'),(9474,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-12 07:04:08.826000'),(9475,'Thank you so much for your nice review, Brooks. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-01-12 07:03:50.077000'),(9476,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-12 07:03:32.383000'),(9477,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope he is feeling better.','2020-01-12 07:03:20.068000'),(9478,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-12 07:02:36.823000'),(9479,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your boyfriend. Thank you for choosing SignatureCare.','2020-01-12 07:02:08.384000'),(9483,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-12 06:28:15.871000'),(9484,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-12 06:27:40.868000'),(9485,'Thank you for trusting us with the care of your grandson. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-01-12 06:27:22.651000'),(9486,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-12 06:26:56.518000'),(9487,'Thank you for taking the time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2020-01-12 06:26:43.576000'),(9488,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-12 06:26:12.356000'),(9489,'Thank you so much for your great rating, Reina!','2020-01-12 06:23:46.881000'),(9490,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-12 06:23:21.319000'),(9491,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-12 06:23:09.516000'),(9492,'Thank you Wright, for your great rating!','2020-01-12 06:57:09.690000'),(9493,'Thank you so much for giving us five stars, Kendra!','2020-01-12 06:55:48.168000'),(9494,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-12 06:59:21.759000'),(9495,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-12 06:58:38.435000'),(9496,'We appreciate your great rating, Sandra!','2020-01-12 06:54:24.520000'),(9497,'Thank you so much for your great rating, Alejandra!','2020-01-12 06:53:56.133000'),(9498,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-01-12 06:52:25.400000'),(9499,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-01-12 07:00:22.661000'),(9500,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-12 07:00:05.397000'),(9501,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-12 06:59:45.693000'),(9504,'We appreciate your great rating, Morse!','2020-01-12 07:06:45.318000'),(9510,'Thank you Brittney, for giving us five star rating!','2020-01-12 06:52:05.981000'),(9511,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-12 06:51:32.394000'),(9518,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-12 06:36:48.067000'),(9519,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your husband. Thank you for choosing SignatureCare.','2020-01-12 06:36:32.399000'),(9520,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-12 06:36:06.662000'),(9525,'We appreciate your great rating! Thank you for choosing us.','2020-01-12 06:38:15.907000'),(9526,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-12 06:37:26.216000'),(9527,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-01-12 06:35:39.632000'),(9528,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-12 06:35:25.608000'),(9529,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review. Hope your husband feels better soon.','2020-01-12 06:34:36.126000'),(9530,'We want everyone who visits us to feel like family. It\'s great to hear that our team made your fiancé feel welcome and at home -- thanks for letting us know. Thanks for choosing SignatureCare! Hope Carrera gets better soon.','2020-01-12 06:33:39.703000'),(9534,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-12 07:10:06.829000'),(9535,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-01-12 07:09:56.119000'),(9536,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-13 07:06:01.529000'),(9537,'Thank you Carol, for your great rating!','2020-01-13 07:05:44.029000'),(9538,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-13 07:05:22.896000'),(9539,'Thank you for letting us help your boyfriend! We are glad to hear our team put him at ease and provided him with the best care possible. Thanks for choosing SignatureCare.','2020-01-13 07:04:50.675000'),(9540,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-13 07:03:55.353000'),(9542,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-13 07:02:20.633000'),(9543,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-13 07:02:03.846000'),(9544,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-13 07:01:52.931000'),(9546,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-13 06:53:00.761000'),(9547,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-13 06:52:42.339000'),(9548,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-13 06:52:12.885000'),(9549,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for your mom, and are so glad to hear that she is feeling better. Thank you both for choosing SignatureCare!','2020-01-13 06:51:59.372000'),(9550,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-13 06:57:59.866000'),(9551,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-13 06:57:39.203000'),(9552,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-13 06:57:22.236000'),(9553,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-13 07:00:04.294000'),(9554,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-13 06:59:25.604000'),(9557,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-13 06:57:03.720000'),(9558,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-13 06:56:35.819000'),(9559,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-13 06:54:51.514000'),(9561,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-13 06:54:27.711000'),(9562,'We appreciate your great rating! Thank you for choosing us.','2020-01-13 06:54:14.249000'),(9571,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-14 07:47:33.670000'),(9655,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-19 07:34:39.080000'),(9656,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-19 07:34:30.070000'),(9657,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-19 07:34:14.831000'),(9658,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-16 07:32:30.026000'),(9659,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-16 07:32:05.024000'),(9660,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-16 07:31:50.050000'),(9661,'We appreciate your great rating, Christian!','2020-01-14 07:48:52.562000'),(9662,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-14 07:48:33.042000'),(9663,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-14 07:48:08.609000'),(9691,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-01-16 07:29:29.596000'),(9692,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-16 07:29:17.428000'),(9693,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-16 07:29:01.989000'),(9694,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-16 07:28:53.619000'),(9695,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-16 07:28:41.915000'),(9696,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-15 06:28:11.898000'),(9697,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-16 07:28:19.130000'),(9698,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-16 07:28:04.601000'),(9699,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-14 07:45:58.481000'),(9724,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-19 06:33:27.110000'),(9725,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-19 06:33:16.295000'),(9726,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-01-19 06:31:05.718000'),(9727,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-19 06:29:42.766000'),(9728,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-19 06:29:05.755000'),(9729,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-19 06:28:40.999000'),(9730,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-19 06:28:29.597000'),(9731,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-19 06:15:24.104000'),(9732,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-19 06:14:12.253000'),(9733,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-14 07:40:00.962000'),(9734,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-14 07:39:19.542000'),(9735,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-01-14 07:38:53.039000'),(9736,'We appreciate your great rating, Sara!','2020-01-14 07:33:59.200000'),(9737,'Thank you so much for giving us five stars, Rodney!','2020-01-14 07:33:48.506000'),(9751,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-19 07:21:10.954000'),(9752,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-19 07:13:40.294000'),(9753,'Thank you so much for giving us five stars, Julianna!','2020-01-16 07:26:05.308000'),(9754,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-16 07:25:51.234000'),(9755,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-16 07:25:42.757000'),(9756,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-16 07:25:34.388000'),(9757,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-16 07:25:21.706000'),(9758,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-16 07:25:08.177000'),(9759,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-01-14 07:45:05.711000'),(9760,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-14 07:44:43.669000'),(9763,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-01-19 07:25:13.843000'),(9764,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-16 07:27:20.789000'),(9765,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-16 07:27:04.701000'),(9766,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-01-16 07:26:52.163000'),(9767,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-16 07:26:32.185000'),(9768,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-01-14 07:45:24.843000'),(9785,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-01-16 07:24:52.318000'),(9786,'Thank you so much for giving us five stars, Bernie!','2020-01-16 07:24:23.560000'),(9809,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-19 07:07:24.330000'),(9810,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-19 07:06:58.577000'),(9811,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-16 07:08:24.716000'),(9812,'We appreciate your great rating, Alana!','2020-01-16 07:23:43.338000'),(9813,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-16 07:23:32.060000'),(9814,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-16 07:23:23.536000'),(9815,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-16 07:23:05.575000'),(9816,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-16 07:23:10.662000'),(9817,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-16 07:22:52.964000'),(9818,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-16 07:22:36.924000'),(9826,'We appreciate your great rating, Gina!','2020-01-16 07:23:59.211000'),(9829,'We appreciate your great rating, Savannah!','2020-01-16 07:08:08.591000'),(9830,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-01-16 07:07:49.000000'),(9831,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-16 07:07:37.363000'),(9832,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2020-01-16 07:07:24.694000'),(9833,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-16 07:07:16.981000'),(9834,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-16 07:06:55.164000'),(9835,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-16 07:05:20.152000'),(9836,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-14 07:44:18.957000'),(9852,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-01-14 07:47:56.834000'),(9853,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-14 07:47:43.082000'),(9907,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-20 06:26:14.430000'),(9908,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-19 07:30:34.038000'),(9909,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-01-19 07:30:23.654000'),(9910,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your wife and daughter. Thank you for choosing SignatureCare.','2020-01-19 07:30:01.347000'),(9911,'Thank you for trusting us with the care of your stepson. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-01-19 07:29:31.608000'),(9923,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2020-01-19 07:24:53.242000'),(9939,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-01-22 19:10:25.373000'),(9940,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-01-21 07:00:17.573000'),(9941,'Thank you so much for giving us five stars, Jasmine!','2020-01-20 06:39:22.575000'),(9942,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your brother is feeling well.','2020-01-20 06:38:47.736000'),(9943,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-20 06:37:44.969000'),(9944,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-20 06:37:27.723000'),(9945,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-20 06:37:13.835000'),(9946,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-20 06:35:34.038000'),(9966,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-01-21 06:58:18.565000'),(9967,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-21 06:57:55.704000'),(9969,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-01-20 06:07:55.285000'),(9970,'Thank you Bill, for your great rating!','2020-01-20 06:08:21.836000'),(9971,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-01-21 06:54:30.326000'),(9972,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-21 06:53:39.680000'),(9973,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-21 06:53:21.122000'),(9974,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-21 06:53:10.718000'),(9975,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-20 06:24:46.947000'),(9976,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-20 06:23:50.559000'),(9977,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-20 06:21:17.237000'),(9978,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-20 06:20:46.005000'),(9980,'We appreciate your great rating, Madhurima!','2020-01-21 06:56:31.147000'),(9981,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-20 06:25:46.572000'),(9982,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-20 06:25:24.987000'),(9983,'We appreciate your great rating, Amanda!','2020-01-20 06:25:07.414000'),(9987,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-01-20 06:19:13.769000'),(9988,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-19 07:13:25.294000'),(9989,'Thank you so much for giving us five stars, Bill!','2020-01-19 07:13:07.454000'),(9990,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-01-19 07:12:57.360000'),(9991,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you both feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-19 07:12:39.538000'),(9992,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-01-19 07:12:07.338000'),(9993,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-19 07:11:32.570000'),(9994,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-19 07:11:21.791000'),(9995,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-19 07:11:04.779000'),(9996,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-19 07:10:55.705000'),(9997,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-19 07:10:48.146000'),(10001,'We appreciate your great rating, Deann!','2020-01-21 06:51:48.478000'),(10002,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-21 06:51:22.874000'),(10003,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-21 06:51:03.637000'),(10004,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-21 06:50:41.166000'),(10005,'Thank you so much for giving us five stars!','2020-01-20 06:18:35.050000'),(10006,'Thank you Jamaya, for your great rating!','2020-01-20 06:18:16.837000'),(10007,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-19 07:10:25.477000'),(10008,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-19 07:10:09.704000'),(10013,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-01-19 07:06:36.500000'),(10018,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-19 07:37:12.536000'),(10019,'Thank you so much for your nice review, Ivar. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-01-19 07:36:59.468000'),(10020,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-19 07:36:47.372000'),(10021,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-19 07:36:36.184000'),(10022,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-19 07:36:28.022000'),(10023,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-19 07:36:17.998000'),(10024,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-19 07:36:04.835000'),(10025,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-19 07:35:56.941000'),(10026,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-01-19 07:35:44.844000'),(10027,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-19 07:35:28.466000'),(10028,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-19 07:35:19.920000'),(10029,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-01-19 07:35:03.770000'),(10030,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when kids get sick, but we are here to help. Thank you for your review and we hope your nephew feels better soon!','2020-01-19 07:29:01.488000'),(10031,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-19 07:27:55.217000'),(10032,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-19 07:27:38.844000'),(10033,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-19 07:27:31.853000'),(10034,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-19 07:27:23.049000'),(10035,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-19 07:26:49.579000'),(10036,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-19 07:26:32.660000'),(10037,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-19 07:26:23.723000'),(10043,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-19 07:06:19.607000'),(10044,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-19 07:06:02.476000'),(10045,'We appreciate your great rating, Garland!','2020-01-19 07:05:50.168000'),(10046,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-19 07:05:23.331000'),(10047,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-19 07:05:13.108000'),(10048,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-19 07:04:54.243000'),(10049,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-19 06:58:44.019000'),(10050,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-01-19 06:58:33.929000'),(10051,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-19 06:58:10.594000'),(10052,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-01-19 06:56:21.392000'),(10053,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-01-19 06:48:09.681000'),(10055,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-19 06:41:49.349000'),(10056,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-19 06:41:33.360000'),(10057,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-01-19 07:24:40.685000'),(10058,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-19 07:24:30.947000'),(10059,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better! Hope your friend is feeling better.','2020-01-19 07:24:01.557000'),(10060,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-19 07:23:26.951000'),(10061,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-19 07:23:32.312000'),(10062,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-19 07:23:13.402000'),(10063,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-19 07:23:03.665000'),(10064,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.','2020-01-19 07:22:52.544000'),(10065,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-19 07:22:36.426000'),(10066,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-01-19 07:22:17.114000'),(10067,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-19 07:21:45.262000'),(10068,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-19 07:21:32.761000'),(10069,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-19 07:25:32.432000'),(10070,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-01-19 07:25:23.126000'),(10074,'Thank you so much for your great rating, Keeley!','2020-01-19 07:09:57.668000'),(10075,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-19 07:09:33.184000'),(10076,'We appreciate your great rating, Mahoney!','2020-01-19 07:09:09.212000'),(10077,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-19 07:08:45.751000'),(10078,'Thank you so much for giving us five stars, Casandra!','2020-01-19 07:08:28.401000'),(10079,'Thank you Justin, for your great rating!','2020-01-19 07:08:05.338000'),(10080,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-01-19 07:07:51.024000'),(10082,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs. Hope your wife is feeling better.','2020-01-30 06:11:34.483000'),(10083,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-30 06:10:39.246000'),(10084,'Thank you for trusting us with the care of your mom. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-01-30 06:09:49.085000'),(10085,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 11:24:50.188000'),(10086,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your girlfriend. Thank you for choosing SignatureCare.','2020-01-29 11:24:31.807000'),(10087,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 11:23:54.999000'),(10088,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-29 11:23:44.951000'),(10089,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 11:21:29.388000'),(10090,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 11:18:46.983000'),(10091,'Thank you so much for giving us five stars, Dunn!','2020-01-29 11:16:13.094000'),(10092,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-01-29 11:15:56.720000'),(10093,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-29 11:15:42.659000'),(10094,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-01-29 11:14:48.698000'),(10095,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 11:14:38.550000'),(10096,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your girlfriend. Thank you for choosing SignatureCare.','2020-01-29 11:14:18.958000'),(10097,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 11:13:57.721000'),(10098,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 11:13:44.296000'),(10099,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-29 11:13:35.269000'),(10100,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 11:13:25.584000'),(10101,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 11:13:06.598000'),(10102,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 11:43:03.395000'),(10103,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 11:42:48.675000'),(10104,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 11:42:33.996000'),(10105,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your girlfriend. Thank you for choosing SignatureCare.','2020-01-29 11:42:18.543000'),(10106,'Thank you so much for your nice review. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-01-29 11:41:44.215000'),(10120,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-29 10:56:27.405000'),(10121,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 10:56:11.670000'),(10122,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 10:55:45.509000'),(10123,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-29 10:55:34.045000'),(10124,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-29 10:55:24.711000'),(10125,'We appreciate your great rating, Miya!','2020-01-29 10:54:15.753000'),(10126,'Thank you Francis, for your great rating!','2020-01-29 10:54:00.790000'),(10127,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-29 10:53:43.567000'),(10128,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-29 10:53:34.264000'),(10129,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 10:53:22.268000'),(10130,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-01-29 10:53:08.776000'),(10131,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-29 10:51:29.601000'),(10132,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-01-29 10:51:10.592000'),(10133,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 10:50:58.573000'),(10134,'Thank you for taking the time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2020-01-29 10:50:45.647000'),(10135,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 10:50:32.104000'),(10136,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 10:50:22.780000'),(10137,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 10:50:02.631000'),(10138,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 10:49:45.034000'),(10139,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 10:49:23.089000'),(10140,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 10:49:05.163000'),(10141,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 10:34:51.547000'),(10142,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-29 10:34:37.858000'),(10143,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 10:34:14.189000'),(10144,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-29 10:33:55.592000'),(10145,'We appreciate your great rating, Manuel!','2020-01-29 10:33:11.799000'),(10146,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-01-29 10:33:42.008000'),(10147,'Thank you so much for your great rating, Nancy!','2020-01-29 10:32:48.771000'),(10156,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-30 05:25:42.423000'),(10157,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-30 05:25:28.207000'),(10158,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-01-30 05:25:13.825000'),(10159,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-01-30 05:25:00.591000'),(10160,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-30 05:24:50.815000'),(10161,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-30 05:24:34.601000'),(10162,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-01-30 05:23:54.265000'),(10163,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-30 05:23:29.344000'),(10164,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-01-30 05:23:02.408000'),(10165,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 07:50:29.559000'),(10166,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-01-29 07:50:11.321000'),(10167,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 07:48:32.543000'),(10168,'Thank you for taking the time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2020-01-29 07:48:08.042000'),(10169,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 07:47:32.514000'),(10170,'Creemos que tenemos las mejores instalaciones en Texas con personal certificado por la junta, equipos de última generación y un ambiente limpio. ¡Gracias por elegir SignatureCare!','2020-01-29 07:46:09.821000'),(10171,'Nuestros médicos y personal nos enorgullecen todos los días. Gracias por sus amables palabras y las transmitiremos. ¡Gracias por elegir Signature Care!','2020-01-29 07:46:54.230000'),(10172,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-01-29 07:44:18.390000'),(10173,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-29 07:43:52.246000'),(10174,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 07:43:39.371000'),(10175,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 07:43:17.664000'),(10176,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-29 07:43:27.487000'),(10177,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2020-01-29 07:41:48.019000'),(10178,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-29 07:41:35.103000'),(10179,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 07:41:11.975000'),(10180,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-29 07:40:51.637000'),(10181,'Thank you so much for your nice review, David. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-01-29 07:40:24.245000'),(10182,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 07:40:04.888000'),(10183,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-01-29 07:39:47.694000'),(10184,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-29 07:39:35.575000'),(10185,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 07:38:46.807000'),(10186,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 07:38:59.269000'),(10187,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 07:29:10.034000'),(10188,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 07:28:53.504000'),(10189,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 07:28:45.379000'),(10190,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-29 07:28:27.686000'),(10191,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-29 07:26:01.665000'),(10192,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2020-01-29 07:24:16.426000'),(10193,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 06:54:39.726000'),(10194,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 06:54:17.241000'),(10195,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-29 06:51:44.051000'),(10196,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-29 06:51:06.609000'),(10197,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-29 06:50:53.032000'),(10198,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 06:50:15.585000'),(10199,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 06:49:51.889000'),(10200,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-29 06:49:41.743000'),(10201,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 06:49:25.696000'),(10202,'Thank you so much for your great rating, Deon!','2020-01-29 06:49:03.170000'),(10203,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 06:47:37.547000'),(10204,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-01-29 06:47:23.380000'),(10205,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-01-29 06:47:04.955000'),(10206,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-29 06:46:53.978000'),(10207,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-29 06:46:38.092000'),(10208,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 06:46:22.887000'),(10209,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-01-29 06:45:58.193000'),(10210,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 09:30:11.608000'),(10211,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 09:30:01.893000'),(10212,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-29 09:29:29.802000'),(10213,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 09:29:09.150000'),(10214,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-01-29 09:28:39.071000'),(10215,'Thank you so much for your nice review, Max. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-01-29 09:28:19.571000'),(10216,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-29 09:27:33.726000'),(10217,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 09:27:15.657000'),(10218,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 09:27:06.419000'),(10222,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-01-29 09:36:29.161000'),(10234,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-29 09:31:37.657000'),(10238,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-29 11:01:36.836000'),(10239,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 11:01:14.733000'),(10241,'Thank you so much for giving us five stars, Mark!','2020-01-29 10:57:51.314000'),(10244,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 09:21:43.282000'),(10245,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 09:21:24.055000'),(10246,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 09:20:41.610000'),(10247,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 09:20:14.479000'),(10248,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-01-29 09:19:43.120000'),(10249,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-01-29 09:19:18.356000'),(10250,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-29 09:16:50.334000'),(10251,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-29 09:16:37.103000'),(10252,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-29 09:16:16.200000'),(10253,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-01-29 09:15:40.669000'),(10267,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-30 05:38:37.716000'),(10268,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about your experience. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-01-30 05:39:15.714000'),(10269,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 09:09:15.744000'),(10270,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 09:08:34.487000'),(10271,'Thank you so much for giving us five stars, Canah!','2020-01-29 08:56:11.869000'),(10272,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-01-29 08:55:54.282000'),(10273,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-29 08:55:22.307000'),(10274,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-29 08:54:59.515000'),(10275,'We appreciate your great rating, Craig!','2020-01-29 08:54:35.147000'),(10276,'Thank you Haley, for your great rating!','2020-01-29 08:54:17.136000'),(10277,'Thank you so much for your great rating!','2020-01-29 08:53:52.878000'),(10278,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 08:53:22.671000'),(10279,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 08:53:11.116000'),(10280,'We appreciate your great rating, Keeley!','2020-01-29 08:52:54.731000'),(10281,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 08:52:29.940000'),(10282,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-29 08:52:21.579000'),(10283,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 08:52:11.324000'),(10284,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-01-29 08:51:58.018000'),(10285,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 08:51:39.924000'),(10286,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 08:51:28.632000'),(10287,'Thank you so much for giving us five stars, Christina!','2020-01-29 08:50:24.090000'),(10288,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 08:49:56.975000'),(10289,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 08:49:35.408000'),(10290,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-01-29 08:45:56.419000'),(10291,'Thank you so much for your great rating, Alexis!','2020-01-29 08:45:32.580000'),(10292,'Thank you Tom, for your great rating!','2020-01-29 08:45:13.039000'),(10293,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-29 08:44:53.578000'),(10294,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-01-30 06:05:06.449000'),(10310,'Thank you for trusting us with the care of your grandson. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-01-29 09:15:15.163000'),(10311,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 09:14:47.246000'),(10312,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-01-29 09:14:37.983000'),(10313,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 09:13:18.697000'),(10326,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-29 08:15:41.799000'),(10327,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare! Hope your boyfriend is feeling better.','2020-01-29 08:15:26.795000'),(10328,'Thank you so much for your nice review, Jonathan. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-01-29 08:11:40.033000'),(10329,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-29 08:11:12.307000'),(10330,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 08:10:00.807000'),(10331,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-29 08:09:06.041000'),(10332,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 08:08:50.529000'),(10333,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.','2020-01-29 08:05:12.105000'),(10334,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 08:04:22.008000'),(10335,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 08:04:11.125000'),(10336,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-29 07:59:50.603000'),(10337,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 07:58:26.866000'),(10338,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-29 07:58:02.956000'),(10339,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.','2020-01-29 07:57:51.871000'),(10340,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-29 07:57:22.114000'),(10341,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 07:57:09.977000'),(10342,'Thank you so much for your great rating!','2020-01-29 07:55:41.942000'),(10343,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-29 07:55:27.539000'),(10344,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-29 07:54:59.398000'),(10345,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 07:54:39.959000'),(10346,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 07:50:58.334000'),(10365,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-29 11:41:22.428000'),(10366,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-29 11:25:48.701000'),(10368,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-03 07:29:59.040000'),(10369,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-03 07:29:46.628000'),(10370,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-03 07:29:40.636000'),(10371,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-03 07:29:29.829000'),(10372,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-03 07:29:17.963000'),(10373,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 07:28:54.169000'),(10374,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-03 07:28:43.501000'),(10375,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-02-03 07:28:35.152000'),(10376,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your girlfriend. Thank you for choosing SignatureCare.','2020-02-03 07:28:14.502000'),(10377,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-02-03 07:27:51.153000'),(10378,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-03 07:27:34.215000'),(10379,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-03 07:27:13.492000'),(10408,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-02-03 06:57:16.125000'),(10409,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-03 06:57:01.930000'),(10410,'Thank you so much for giving us five stars, Josie!','2020-02-03 06:56:32.819000'),(10411,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 06:56:22.124000'),(10412,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-03 06:55:42.009000'),(10413,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-03 06:54:39.672000'),(10414,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-03 06:54:22.148000'),(10415,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-03 06:54:09.697000'),(10416,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-03 06:53:55.674000'),(10417,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-03 06:53:42.088000'),(10418,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-02-03 06:53:10.294000'),(10419,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-03 06:45:45.759000'),(10420,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-03 06:41:59.821000'),(10423,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-03 07:13:14.267000'),(10424,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-03 07:12:54.028000'),(10425,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 07:12:42.302000'),(10426,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-03 07:12:22.974000'),(10427,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-03 07:12:08.908000'),(10428,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-03 07:12:00.526000'),(10429,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-03 07:11:49.805000'),(10430,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-03 07:11:38.454000'),(10431,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 07:11:16.113000'),(10432,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-02-03 07:11:05.027000'),(10434,'We appreciate your great rating, Jaxson!','2020-02-03 07:10:26.287000'),(10443,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-03 07:10:01.191000'),(10444,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-02-03 07:09:51.040000'),(10445,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-02-03 07:09:40.339000'),(10461,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-03 07:06:18.223000'),(10462,'Thank you so much for giving us five stars, Kayla!','2020-02-03 07:06:03.586000'),(10463,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-02-03 07:05:49.245000'),(10464,'Thank you Todd, for your great rating!','2020-02-03 07:05:11.657000'),(10465,'We appreciate your great rating, Kingsley!','2020-02-03 07:04:52.695000'),(10466,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-03 07:04:33.978000'),(10467,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-03 07:04:24.652000'),(10468,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-03 07:04:14.041000'),(10469,'Thank you so much for your great rating, Meagan!','2020-02-03 07:03:55.365000'),(10470,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-02-03 07:03:42.595000'),(10471,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-02-03 07:02:23.024000'),(10472,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-03 07:01:53.946000'),(10473,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-03 07:01:37.233000'),(10484,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 07:08:58.334000'),(10503,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-04 05:42:58.884309'),(10505,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-04 05:43:51.317085'),(10516,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-04 05:50:11.364001'),(10525,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-04 05:58:17.224552'),(10526,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-04 05:58:36.789415'),(10528,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-05 07:56:22.350866'),(10529,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-05 08:08:34.202000'),(10530,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2020-02-05 08:08:17.149000'),(10531,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-02-05 08:08:06.612000'),(10532,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-02-05 08:07:57.475000'),(10533,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-05 08:07:37.541000'),(10534,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-02-05 08:07:20.053000'),(10535,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-05 08:07:04.346000'),(10545,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-02-05 07:59:27.038000'),(10546,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-05 07:59:14.685000'),(10547,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-02-05 08:01:52.153000'),(10548,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-05 08:01:44.273000'),(10549,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-02-05 08:01:19.766000'),(10554,'Thank you so much for giving us five stars!','2020-02-05 08:01:01.740000'),(10563,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-06 07:05:57.769190'),(10567,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-06 07:08:42.408262'),(10568,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-06 07:09:06.722696'),(10578,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-02-06 07:16:34.232751'),(10581,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-02-06 07:18:35.467167'),(10582,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-06 07:19:09.877573'),(10583,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-06 07:19:33.627278'),(10584,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-06 07:22:06.801968'),(10599,'Thanks for the 5 star review Byron!','2020-02-06 09:00:44.726782'),(10603,'Thank you for the great review Jalyn! We appreciate your positive feedback about Neighbors Emergency Center. We hope you are feeling better.','2020-02-09 06:03:16.316149'),(10605,'Thank you for the five-star rating Santos! We appreciate your feedback.','2020-02-09 06:03:22.048666'),(10610,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 06:49:14.600326'),(10611,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-09 06:49:36.708470'),(10615,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-09 06:51:03.533720'),(10621,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 06:54:52.887890'),(10622,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare. Hope your wife is feeling better.','2020-02-09 06:55:58.428505'),(10623,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-09 06:56:17.267874'),(10624,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2020-02-09 06:56:41.019831'),(10625,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 06:56:53.301839'),(10628,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-09 06:57:49.829059'),(10629,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-02-09 06:58:11.941820'),(10630,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-02-09 06:58:25.051172'),(10635,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-09 07:00:26.927407'),(10637,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your girlfriend. Thank you for choosing SignatureCare.','2020-02-09 07:01:12.206966'),(10638,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:01:24.502758'),(10640,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:01:52.360144'),(10641,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your brother. Thank you for choosing SignatureCare.','2020-02-09 07:02:25.965421'),(10643,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-09 07:03:11.841272'),(10646,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-09 07:03:50.354330'),(10647,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:04:01.000790'),(10649,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:04:29.684760'),(10650,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-09 07:04:43.615783'),(10651,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-09 07:04:57.540424'),(10660,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-09 07:09:34.407946'),(10668,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-09 07:11:26.694612'),(10674,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-09 07:12:55.174003'),(10675,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-09 07:13:07.666987'),(10681,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-02-09 07:18:07.712138'),(10685,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-09 07:19:02.183498'),(10686,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-09 07:19:15.282723'),(10687,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-02-09 07:20:00.346363'),(10688,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-09 07:20:12.794440'),(10690,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:20:33.631625'),(10691,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-09 07:20:51.138237'),(10692,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:21:03.611005'),(10694,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-09 07:21:24.926109'),(10695,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:21:37.838224'),(10700,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-09 07:23:15.319974'),(10701,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-09 07:23:28.431145'),(10707,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-09 07:24:47.885296'),(10708,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-09 07:24:59.972758'),(10710,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-10 05:44:23.614815'),(10713,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-10 05:46:40.423189'),(10714,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-10 05:47:04.992035'),(10715,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-10 05:47:18.108370'),(10717,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-10 05:47:43.522219'),(10721,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-10 05:48:26.103073'),(10727,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2020-02-10 05:50:24.899370'),(10730,'Thank you so much for your feedback S.r.c! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-11 07:17:18.491532'),(10734,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-11 08:04:44.300644'),(10738,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-11 08:16:59.704305'),(10755,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-12 06:51:56.299068'),(10756,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-12 06:52:36.150640'),(10768,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-12 06:56:37.001393'),(10769,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-12 06:56:48.469624'),(10770,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-12 06:57:22.058013'),(10771,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-12 06:57:36.798623'),(10799,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-02-13 07:39:58.623955'),(10800,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-13 07:40:12.622341'),(10802,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-13 07:40:37.813105'),(10803,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-13 07:40:53.384246'),(10807,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-13 07:41:47.431820'),(10811,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-13 07:42:37.413033'),(10865,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-20 06:28:10.615000'),(10866,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-20 06:15:18.738000'),(10867,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-20 06:14:36.119000'),(10868,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-20 06:12:58.176000'),(10869,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-20 05:14:10.507000'),(10870,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-20 05:12:52.798000'),(10871,'Thank you for the great review! We appreciate your positive feedback about Neighbors Emergency Center. We hope you are feeling better.','2020-02-20 02:03:09.816000'),(10872,'Thank you Deavon for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-20 02:03:07.170000'),(10873,'Thank you for the five-star rating. We appreciate it.','2020-02-19 02:06:22.292000'),(10874,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-19 05:13:54.415000'),(10875,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-18 06:28:17.714000'),(10876,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-16 08:45:01.920000'),(10877,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-02-16 08:43:16.987000'),(10878,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-16 08:04:51.959000'),(10879,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-16 08:03:46.829000'),(10881,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-16 06:24:26.713000'),(10882,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2020-02-16 06:21:28.540000'),(10883,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-16 06:20:35.492000'),(10884,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-16 06:05:43.866000'),(10904,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-19 05:02:47.249000'),(11060,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-23 10:08:33.958000'),(11061,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-23 10:04:33.651000'),(11062,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-23 09:54:52.175000'),(11063,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-23 08:28:51.854000'),(11064,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-23 08:18:09.084000'),(11065,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-23 08:01:15.037000'),(11074,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-23 09:57:30.701000'),(11293,'Thank you for the five-star rating Dakota! We appreciate your feedback.','2020-02-29 02:06:08.304000'),(11428,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-03-08 07:13:24.213000'),(11504,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-08 06:59:30.751000'),(11625,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2020-03-05 06:55:45.215000'),(12121,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback.','2020-03-15 06:24:42.397000'),(13305,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-09 05:17:40.285000'),(13306,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-09 05:17:08.923000'),(13307,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-03-08 07:06:13.522000'),(13308,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-08 07:04:19.009000'),(13309,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-12 07:12:19.379000'),(13310,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-05 06:48:41.478000'),(13311,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-08 06:56:52.164000'),(13312,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-08 06:54:56.225000'),(13313,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-08 06:13:58.917000'),(13314,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-08 05:33:17.997000'),(13315,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-05 06:57:50.289000'),(13316,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-03-04 05:57:44.474000'),(13317,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-04 05:46:47.419000'),(13318,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-04 05:45:34.999000'),(13319,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-03-04 05:41:36.966000'),(13320,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-03 05:27:54.227000'),(13321,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-03 05:15:53.008000'),(13322,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-03-02 06:33:43.905000'),(13323,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-02 05:53:23.490000'),(13324,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-02 05:52:39.866000'),(13325,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-01 08:34:01.354000'),(13326,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-01 08:33:16.017000'),(13327,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-03-01 08:30:23.710000'),(13328,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-01 08:29:33.063000'),(13329,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 08:11:56.226000'),(13330,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-27 07:26:17.302000'),(13331,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-01 07:00:14.242000'),(13332,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-27 07:30:52.587000'),(13333,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-27 07:29:44.683000'),(13334,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2020-02-27 07:29:31.933000'),(13335,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-27 07:27:37.965000'),(13336,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-27 07:27:21.163000'),(13337,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-27 07:26:56.138000'),(13338,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-27 07:26:39.997000'),(13339,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-27 07:26:00.255000'),(13340,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-27 07:21:40.601000'),(13341,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-27 07:12:15.656000'),(13342,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-26 07:39:58.085000'),(13343,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-26 07:38:53.193000'),(13344,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-02-26 07:34:15.206000'),(13345,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-26 07:33:39.234000'),(13346,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-26 07:32:24.113000'),(13347,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-26 07:32:00.308000'),(13348,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-09 07:06:32.445000'),(13349,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-02-25 07:22:42.119000'),(13350,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-02-24 04:54:52.497000'),(13351,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-24 04:53:28.647000'),(13352,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-02-24 04:53:14.285000'),(13353,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-02-24 04:51:46.307000'),(13354,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-23 10:12:31.161000'),(13355,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-23 10:08:50.279000'),(13356,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-23 10:06:57.573000'),(13357,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-23 08:23:02.437000'),(13358,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 08:20:04.807000'),(13359,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-23 08:17:13.449000'),(13360,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-02-23 08:10:49.552000'),(13361,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your girlfriend is feeling well.','2020-02-23 08:10:04.783000'),(13362,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-20 05:07:54.835000'),(13363,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your mom is feeling better.','2020-02-20 05:06:47.247000'),(13364,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-19 05:14:21.895000'),(13365,'Thank you so much for your feedback Mona! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-19 02:06:13.844000'),(13366,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-19 05:05:47.707000'),(13367,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that your mom is feeling better. Thank you for choosing SignatureCare!','2020-02-19 05:05:33.114000'),(13368,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-12 06:53:11.168000'),(13369,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-17 07:15:10.763000'),(13370,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\n with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-01-12 07:11:59.217000'),(13371,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-16 08:50:52.539000'),(13372,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-16 08:44:35.339000'),(13373,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-16 08:41:58.598000'),(13374,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-16 08:02:41.071000'),(13375,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-16 06:09:55.670000'),(13376,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-16 06:05:27.834000'),(13377,'Thank you so much for giving us five stars, Jevon!','2020-02-13 07:46:08.913000'),(13378,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-13 07:45:48.211000'),(13379,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2020-02-13 07:34:41.496000'),(13380,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-13 07:32:34.732000'),(13381,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-13 07:32:22.424000'),(13382,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-02-13 07:20:40.695000'),(13383,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-12 07:00:03.945000'),(13384,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-12 06:59:47.624000'),(13405,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-03-02 06:23:43.022000'),(13406,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-01 08:33:52.389000'),(13407,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-01 08:33:43.109000'),(13408,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-01 08:30:37.352000'),(13409,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare! Hope your mom is feeling well.','2020-03-01 07:06:37.984000'),(13410,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your friend. We appreciate the great review and rating.','2020-03-01 06:59:43.242000'),(13411,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-23 10:12:16.973000'),(13412,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-19 05:14:33.681000'),(13413,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-18 06:27:33.731000'),(13414,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-02-17 07:18:44.294000'),(13415,'We appreciate your great rating, Rebecca!','2020-02-17 07:18:01.630000'),(13416,'Thank you so much for giving us five stars, Kris!','2020-02-17 07:17:51.321000'),(13417,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-17 07:17:37.447000'),(13418,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-17 07:17:13.772000'),(13419,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-17 07:16:44.773000'),(13420,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-16 08:50:34.762000'),(13421,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-16 08:47:06.825000'),(13422,'Thank you for the great review Amanda! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-02-23 09:02:32.539000'),(13423,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-16 08:44:01.930000'),(13424,'Thank you Jessica for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-15 02:02:46.131000'),(13425,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-13 07:43:16.519000'),(13426,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-12 06:58:15.877000'),(13427,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-12 06:55:17.271000'),(13428,'Thank you for the five-star rating Ryder. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-02-11 07:17:15.990000'),(13429,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-24 06:35:40.241000'),(13430,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-09 07:18:43.152000'),(13431,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:14:59.552000'),(13432,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-09 07:14:43.032000'),(13433,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-09 06:40:54.243000'),(13434,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2020-02-09 07:09:59.608000'),(13435,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-09 07:09:49.167000'),(13436,'Thank you for the five-star rating Cameron. We appreciate it.','2020-02-09 06:03:18.007000'),(13437,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-09 06:40:18.444000'),(13438,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-09 06:58:42.242000'),(13439,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-06 07:30:42.677000'),(13440,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-04 05:37:50.554000'),(13441,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-03 06:37:29.466000'),(13442,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son, as well as you are feeling better!','2020-02-03 06:32:53.112000'),(13443,'Thank you so much for giving us five stars, Lynzi!','2020-02-03 06:31:55.159000'),(13444,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-03 06:31:39.724000'),(13445,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 06:31:27.578000'),(13446,'Thank you so much for your great rating!','2020-02-03 06:31:19.011000'),(13447,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-02-03 06:31:03.721000'),(13448,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-03 06:30:47.249000'),(13449,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-03 06:30:09.966000'),(13450,'Thank you Edward, for your great rating!','2020-02-03 06:29:43.501000'),(13451,'Thank you for your five star review, Sofiebella!','2019-06-16 05:43:43.807000'),(13452,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-02-03 06:28:36.130000'),(13453,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 06:31:10.694000'),(13454,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 06:30:44.915000'),(13455,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 06:30:36.510000'),(13456,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 06:30:19.190000'),(13457,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 06:29:47.314000'),(13458,'Thank you so much for giving us five stars, Jackie!','2020-01-21 06:48:52.850000'),(13459,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-29 06:29:09.963000'),(13460,'Thank you so much for your great rating, Bryce!','2020-01-29 06:28:45.660000'),(13461,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 06:28:15.762000'),(13462,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-21 06:50:02.393000'),(13463,'We appreciate your great rating, Thomas!','2020-01-21 06:49:06.339000'),(13464,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-01-21 06:48:13.859000'),(13465,'Thank you Jack, for your great rating!','2020-01-21 06:47:37.343000'),(13466,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2020-01-21 06:47:22.365000'),(13467,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your wife is feeling better.','2020-01-21 06:46:55.727000'),(13468,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-21 06:46:27.092000'),(13469,'Thank you so much for your great rating, Daniel!','2020-01-19 06:12:42.641000'),(13470,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your brother. Thank you for choosing SignatureCare.','2020-01-19 06:13:00.396000'),(13471,'We appreciate your great rating, Eduardo!','2020-01-19 06:12:25.765000'),(13472,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-01-19 06:12:09.775000'),(13473,'Thank you so much for giving us five stars, Ava!','2020-01-19 06:11:50.665000'),(13474,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-19 06:11:37.194000'),(13475,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-01-19 06:11:25.788000'),(13476,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-19 06:11:09.817000'),(13477,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-01-19 06:10:53.697000'),(13478,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-19 06:10:42.139000'),(13479,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare! Hope your husband is feeling better.','2020-01-19 06:10:30.745000'),(13480,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-01-19 06:10:05.473000'),(13481,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-16 07:04:02.191000'),(13482,'Hi, Sheila, I\'m sorry you had this experience and we\'d like to look into it more on our end. Can you send an email to info@ercare24.com so that we can reach out to you for more details and try to make this right?','2020-01-15 16:23:10.877000'),(13483,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-01-14 07:33:22.911000'),(13484,'We appreciate your great rating! Thank you for choosing us.','2020-01-13 06:50:46.431000'),(13505,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-02 06:39:58.833000'),(13506,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-02 06:38:08.639000'),(13507,'Thanks for the 5 star review Margaret!','2020-03-02 02:02:54.432000'),(13508,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 08:34:33.613000'),(13509,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-27 07:33:31.245000'),(13510,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-02-27 07:11:22.676000'),(13511,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-27 06:56:09.625000'),(13512,'Thank you for the five-star rating Sheanise. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-02-26 02:05:03.274000'),(13513,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-24 04:44:12.602000'),(13514,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 10:10:41.182000'),(13515,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. Hope your husband is feeling well.','2020-02-23 10:10:20.155000'),(13516,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-23 09:55:09.850000'),(13517,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-02-23 08:24:43.923000'),(13518,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-20 05:12:21.591000'),(13519,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-19 05:18:37.293000'),(13520,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that your sister is feeling better. Thank you for choosing SignatureCare!','2020-02-19 05:17:54.225000'),(13521,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-19 05:04:38.449000'),(13522,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-02-18 06:37:51.037000'),(13523,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2020-02-18 06:37:31.197000'),(13524,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-18 06:37:01.620000'),(13525,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-02-18 06:34:35.033000'),(13526,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your mom\'s medical needs. Hope she is feeling better.','2020-02-18 06:36:34.728000'),(13527,'Thank you for the five-star rating Lorraine. We appreciate it.','2020-02-18 02:02:46.746000'),(13528,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-02-18 06:30:49.691000'),(13529,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-02-18 06:30:25.170000'),(13530,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-17 07:03:39.656000'),(13531,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-16 08:50:27.531000'),(13532,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-02-16 08:44:21.439000'),(13533,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-16 08:43:32.359000'),(13534,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-13 07:42:01.537000'),(13535,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again! Hope your husband is feeling well.','2020-02-12 06:59:36.848000'),(13536,'Thank you so much for your nice review, Destinee. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-02-16 06:11:37.935000'),(13537,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-11 08:20:28.357000'),(13538,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-02-11 08:20:12.310000'),(13539,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-11 08:19:54.522000'),(13540,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-11 08:19:32.078000'),(13541,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-11 08:17:41.056000'),(13542,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-10 05:50:09.096000'),(13543,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-09 07:24:36.851000'),(13544,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-02-09 07:23:43.709000'),(13545,'Your positive experience means a lot to our team at SignatureCare Emergency Center. Thank you for choosing us, and please consider us next time you are experiencing a healthcare emergency. ','2016-06-06 16:49:46.181000'),(13546,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-06 07:23:08.008000'),(13547,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-09 07:21:54.750000'),(13548,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:12:02.508000'),(13549,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:11:51.891000'),(13550,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:10:17.622000'),(13551,'Thank you for the five-star rating Susake! We appreciate your feedback.','2020-02-09 06:03:12.242000'),(13552,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-09 06:57:12.917000'),(13553,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-09 06:49:55.193000'),(13554,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-06 07:30:12.628000'),(13555,'Thank you for letting us help your sister and help her to feel better! We are glad to hear our team put her at ease and provided her with the best care possible. Thanks for choosing SignatureCare.','2020-02-06 07:25:49.360000'),(13556,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-06 07:22:37.780000'),(13557,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-05 08:05:13.603000'),(13558,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-02-05 08:04:57.397000'),(13559,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-02-05 08:04:46.542000'),(13560,'Thank you so much for your nice review, Candice. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-02-05 08:04:38.086000'),(13561,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2020-02-05 08:04:14.225000'),(13562,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-05 08:03:58.267000'),(13563,'Thank you Anthony for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-06 09:00:35.921000'),(13564,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-04 05:55:29.022000'),(13565,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-04 05:47:57.579000'),(13566,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your mom. We appreciate the great review and rating.','2020-02-04 05:46:25.917000'),(13567,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your friend. Thank you for choosing SignatureCare.','2020-02-03 07:23:11.053000'),(13568,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Hope your wife is feeling better.','2020-02-03 07:22:52.062000'),(13569,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-02-03 07:22:16.697000'),(13570,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-03 07:22:01.854000'),(13571,'Thank you so much for giving us five stars, Richard!','2020-02-03 07:21:46.633000'),(13572,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-02-03 07:21:31.597000'),(13573,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-03 07:21:24.920000'),(13574,'We are so very happy to hear about your positive experience at SignatureCare. Thanks for letting us know how we are doing. ','2017-10-31 21:03:06.312000'),(13575,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-03 07:21:13.896000'),(13576,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 07:21:03.434000'),(13577,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-03 07:20:22.446000'),(13578,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-03 07:20:09.625000'),(13579,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-03 07:19:53.993000'),(13580,'Thank you for trusting us with the care of your child. We appreciate the great feedback and are very glad to hear that our team took such good care of your kiddo.','2020-02-03 07:19:42.125000'),(13581,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-30 06:03:37.727000'),(13582,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-30 06:02:53.032000'),(13583,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 10:56:49.966000'),(13584,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 10:56:40.804000'),(13606,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-09 06:49:00.504000'),(13607,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2020-02-06 07:32:09.581000'),(13608,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-02-05 08:06:32.258000'),(13609,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-05 08:06:15.364000'),(13610,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-05 08:05:45.941000'),(13611,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-04 05:45:43.937000'),(13612,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. we hope your mother in law is feeling better.','2020-02-04 05:45:30.298000'),(13613,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-03 07:26:59.532000'),(13614,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-03 07:26:47.453000'),(13615,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-03 07:26:40.544000'),(13616,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-03 07:26:29.016000'),(13617,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 11:12:01.505000'),(13618,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-01-29 11:11:46.391000'),(13619,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 11:11:33.987000'),(13620,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-29 11:11:10.337000'),(13621,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 11:10:45.515000'),(13622,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-29 11:10:37.369000'),(13623,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 11:10:25.168000'),(13624,'Thank you so much for your great rating, Alexis!','2020-01-29 11:10:12.175000'),(13625,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-21 06:59:26.910000'),(13626,'Thank you for the kind words. We will let our staff know that you were pleased with your experience. Thank you for giving SignatureCare the chance to take care of you. ','2017-03-21 01:11:04.685000'),(13627,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-01-19 07:33:59.879000'),(13628,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-19 07:33:43.947000'),(13629,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-19 07:33:36.461000'),(13630,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-19 07:33:26.241000'),(13631,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-19 07:33:16.556000'),(13632,'Thank you Rosalinda, for your great rating!','2020-01-19 07:33:03.738000'),(13633,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-16 07:31:16.762000'),(13634,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-16 07:30:39.644000'),(13635,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-01-13 07:03:23.682000'),(13636,'We appreciate your great rating, Guardado!','2020-01-12 07:09:25.409000'),(13637,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-12 07:09:01.882000'),(13638,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-12 07:08:36.898000'),(13639,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-09 07:36:42.470000'),(13640,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-01-08 08:02:04.232000'),(13641,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-07 07:11:46.308000'),(13642,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-06 07:19:13.256000'),(13643,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-06 07:18:50.331000'),(13644,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-05 06:47:08.282000'),(13645,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-31 04:56:15.013000'),(13646,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-29 06:51:53.150000'),(13647,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-29 06:51:45.807000'),(13648,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-29 06:51:17.424000'),(13649,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-24 07:05:01.478000'),(13650,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your friend at ease and provide him with the best care possible. We hope he feels better.','2019-12-23 08:15:13.295000'),(13651,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-12-23 08:14:10.977000'),(13652,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-22 08:45:02.265000'),(13653,'Thank you so much for your great rating, Morenos!','2019-12-22 08:44:51.309000'),(13654,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-22 08:44:25.719000'),(13655,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-22 08:44:07.901000'),(13656,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-12-15 07:11:29.556000'),(13657,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2019-12-15 07:11:12.753000'),(13658,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-12-15 07:10:58.464000'),(13659,'We appreciate your great rating! Thank you for choosing SignatureCare.','2019-12-05 07:13:58.401000'),(13660,'Thank you so much for your great rating, Erika!','2019-12-04 07:19:38.612000'),(13661,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2019-11-24 07:06:45.627000'),(13662,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-11-21 06:57:22.128000'),(13663,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-11-19 06:23:52.040000'),(13664,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-11-17 07:19:48.761000'),(13665,'Thank you so much for your nice review, Leslie. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-11-07 04:54:58.064000'),(13666,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-11-07 04:54:39.872000'),(13667,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-11-06 08:05:56.535000'),(13668,'Thank you for your great rating, Norma!','2019-11-03 06:35:56.179000'),(13669,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2019-11-03 06:35:27.663000'),(13670,'Thank you so much for your nice review. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-10-29 05:52:50.717000'),(13671,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us.','2019-10-23 06:48:05.322000'),(13672,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-10-20 06:44:14.329000'),(13673,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2019-10-20 06:44:06.047000'),(13674,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-10-16 07:24:47.633000'),(13675,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-10-14 06:28:03.031000'),(13676,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-13 07:37:03.761000'),(13677,'We appreciate your five star rating, Ana! Thanks for choosing us.','2019-10-10 10:30:41.480000'),(13678,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-10-09 08:27:53.002000'),(13679,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-09 08:27:42.752000'),(13680,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-10-09 08:27:23.238000'),(13681,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-10-01 06:23:57.380000'),(13682,'We appreciate your great rating, Jose!','2019-10-01 06:23:13.087000'),(13683,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2019-09-29 06:12:22.542000'),(13684,'Thank you so much for your five star rating, Teresa! Thanks for choosing SignatureCare.','2019-09-24 06:40:38.942000'),(13705,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for your partner, and are so glad to hear that your partner is feeling better. Thank you for choosing SignatureCare!','2020-03-15 06:56:37.928000'),(13706,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-15 06:45:45.592000'),(13707,'Thank you for the five-star rating Raquel. We appreciate it.','2020-03-15 05:37:18.139000'),(13708,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-15 06:09:33.028000'),(13709,'Thank you so much Monica for your great rating!','2020-03-12 02:05:54.486000'),(13710,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-12 05:32:23.049000'),(13711,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-12 05:28:42.558000'),(13712,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-04-12 06:52:32.357000'),(13713,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-03-12 05:16:35.369000'),(13714,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-11 04:56:44.387000'),(13715,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-10 05:39:55.663000'),(13716,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-10 05:38:53.894000'),(13717,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-10 05:33:35.998000'),(13718,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-10 05:32:55.120000'),(13719,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-16 07:16:56.873000'),(13720,'Thanks for the 5 star review!','2020-03-10 02:04:56.352000'),(13721,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-10 05:27:27.392000'),(13722,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-08 06:37:30.550000'),(13723,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-08 06:33:21.453000'),(13724,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-08 06:16:07.207000'),(13725,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-08 06:06:42.705000'),(13726,'Thank you Taylor for the 5 star review. We are glad you had a good experience. Feel Better!','2020-03-06 02:03:51.198000'),(13727,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-08 05:55:11.185000'),(13728,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-08 05:43:52.369000'),(13729,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-05 07:24:18.210000'),(13730,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-05 07:22:34.728000'),(13731,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-05 07:18:48.887000'),(13732,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-05 07:16:43.074000'),(13733,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-05 07:03:31.484000'),(13734,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-05 07:00:53.884000'),(13735,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-05 07:00:16.572000'),(13736,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-05 06:56:12.733000'),(13737,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-05 06:54:29.587000'),(13738,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-04-12 06:53:08.835000'),(13739,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-04 05:55:06.364000'),(13740,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-04 05:52:10.848000'),(13741,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-04 05:51:39.842000'),(13742,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-09 05:16:17.362000'),(13743,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-04 05:44:36.710000'),(13744,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-03 05:44:17.492000'),(13745,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-03 05:43:01.718000'),(13746,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-03 05:37:49.109000'),(13747,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-03 05:35:01.763000'),(13748,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-03 05:30:35.374000'),(13749,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-01 08:32:11.085000'),(13750,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-01 08:27:17.121000'),(13751,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-01 07:52:08.443000'),(13752,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 07:49:46.557000'),(13753,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-01 07:47:19.750000'),(13754,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-09 05:15:27.333000'),(13755,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-01 07:44:38.002000'),(13756,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-03-01 07:44:18.693000'),(13757,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-01 07:43:01.047000'),(13758,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-01 07:16:39.162000'),(13759,'Thank you so much for your feedback Nathaniel! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-27 02:06:15.097000'),(13760,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-27 07:28:22.058000'),(13761,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-27 07:24:52.567000'),(13762,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-27 07:23:28.515000'),(13763,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-27 07:20:52.056000'),(13764,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-27 07:20:23.664000'),(13765,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-26 07:33:53.334000'),(13766,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-25 07:51:45.399000'),(13767,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-24 06:32:38.761000'),(13768,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-02-24 06:31:23.648000'),(13769,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-24 05:05:10.918000'),(13770,'Thank you so much for your nice review, Cesar. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-02-24 05:04:35.443000'),(13771,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-24 05:04:00.632000'),(13772,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-02-24 04:57:07.386000'),(13773,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-02-24 04:55:23.684000'),(13774,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-01-19 06:47:53.206000'),(13775,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-24 04:52:15.669000'),(13776,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-23 10:14:37.571000'),(13777,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-23 10:14:21.330000'),(13778,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your fiancé is feeling better.','2020-02-23 10:13:22.055000'),(13779,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-23 10:12:02.853000'),(13780,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 10:11:47.839000'),(13781,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 10:11:31.289000'),(13782,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-02-23 10:11:04.992000'),(13783,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-23 10:09:38.152000'),(13784,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 10:09:24.165000'),(13805,'Thank you Robert for the 5 star review. We are glad you had a good experience. Feel Better!','2020-03-06 02:03:52.849000'),(13806,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-08 05:47:28.290000'),(13807,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-08 05:44:24.840000'),(13808,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-02 06:32:52.236000'),(13809,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-02 06:10:46.682000'),(13810,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-03-02 06:10:06.741000'),(13811,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-02 06:06:58.368000'),(13812,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-03-02 06:05:28.064000'),(13813,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-02 06:03:30.900000'),(13814,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-02 05:51:34.266000'),(13815,'Thank you Marielle for your five star review and for trusting us with your care!','2020-03-01 02:04:53.081000'),(13816,'Hello Matthew! We sincerely apologize for your experience. Our call centers are open 24/7 to help our patients. We’d like to invite you to email our manager we so can better understand the situation and assure you a better service. If you would please email info@ercare24.com with the date of your calling, possible time of calling and the location you have called. Thank you for the review -- we take all comments and reviews very seriously.','2020-03-01 08:26:05.558000'),(13817,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-01 08:16:28.852000'),(13818,'Thank you for the five-star rating Dylan. We appreciate it.','2020-02-29 02:06:06.561000'),(13819,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-01 08:02:35.801000'),(13820,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-03-01 07:59:53.849000'),(13821,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-03-01 07:48:11.392000'),(13822,'Thank you so much for your feedback Frank! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-28 02:03:07.879000'),(13823,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-01 07:00:28.014000'),(13824,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-03 07:10:41.882000'),(13825,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-27 07:31:52.016000'),(13826,'Thanks for the 5 star review Alexandra!','2020-02-27 02:06:23.232000'),(13827,'Thank you for the great review Maggie! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-02-27 02:06:17.833000'),(13828,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-27 07:23:51.377000'),(13829,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-26 07:39:44.192000'),(13830,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-26 07:39:14.025000'),(13831,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-23 09:56:45.745000'),(13832,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 09:56:06.335000'),(13833,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-23 08:06:37.224000'),(13834,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-23 08:03:53.639000'),(13835,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your friend is feeling well.','2020-02-23 08:03:13.495000'),(13836,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-08-18 05:56:04.342000'),(13837,'Thank you Essie for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-21 02:03:02.311000'),(13838,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-23 08:01:32.330000'),(13839,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-23 07:58:53.835000'),(13840,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-20 06:28:35.383000'),(13841,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your husband. Thank you for choosing SignatureCare.','2020-02-20 06:23:34.202000'),(13842,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-20 06:19:46.594000'),(13843,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-20 06:17:54.244000'),(13844,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-20 06:16:29.436000'),(13845,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-20 05:13:51.430000'),(13846,'Thank you for your nice review and for taking the time to let us know how we are doing. We appreciate your feedback and comments. ','2017-12-20 00:00:01.477000'),(13847,'Thank you for the five-star rating Jacquelyn. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-02-19 02:06:16.612000'),(13848,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-17 07:14:25.249000'),(13849,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-17 07:12:03.560000'),(13850,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-17 07:07:03.711000'),(13851,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-16 08:52:10.650000'),(13852,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-16 08:52:00.244000'),(13853,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-16 08:51:51.207000'),(13854,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-16 08:51:33.794000'),(13855,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-16 08:46:34.740000'),(13856,'Thank you Spencer for your five star review and for trusting us with your care!','2020-02-14 02:02:43.811000'),(13857,'Thank you Carly for your five star review and for trusting us with your care!','2020-02-13 05:45:34.298000'),(13858,'Thank you so much Kensi for your great rating!','2020-02-13 05:45:31.885000'),(13859,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-13 07:40:28.747000'),(13860,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-13 07:31:08.345000'),(13861,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-13 07:22:51.923000'),(13862,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-13 07:22:22.194000'),(13863,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-12 07:03:41.111000'),(13864,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-12 07:03:02.797000'),(13865,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-12 06:55:37.882000'),(13866,'Thank you for the great review Lauren! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-02-23 09:09:59.175000'),(13867,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-12 06:53:42.133000'),(13868,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-12 06:53:28.484000'),(13869,'Thank you so much Karen for your great rating!','2020-02-11 07:17:22.458000'),(13870,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-11 08:18:12.762000'),(13871,'Our front desk receptionists are some of the best out there, not only do we employ board certified physicians, we have some of the best medical staff period. Glad you are feeling better and we are here 24 hours should you need us. ','2017-01-19 20:25:39.733000'),(13872,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-09 07:23:06.776000'),(13873,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-09 07:22:57.158000'),(13874,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-09 07:17:28.626000'),(13876,'Thank you Robinson for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-09 07:16:14.513000'),(13877,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-09 06:50:39.232000'),(13878,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2020-02-06 07:17:10.917000'),(13879,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-06 07:16:15.152000'),(13880,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2020-02-06 07:12:40.617000'),(13881,'Thank you for your review and your great feedback. We appreciate you choosing SignatureCare!','2020-02-04 05:49:47.322000'),(13882,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-04 05:49:12.925000'),(13883,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-02-03 07:13:42.045000'),(13884,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-03 07:13:32.358000'),(13905,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-03-10 04:48:46.767000'),(13906,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-09 05:31:46.283000'),(13907,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-03-09 05:22:08.463000'),(13908,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-08 07:03:00.098000'),(13909,'Thank you Kenneth for your five star review and for trusting us with your care!','2020-03-08 02:03:51.776000'),(13910,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare again and for the nice review.','2020-03-08 06:54:29.030000'),(13911,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-08 06:48:53.144000'),(13912,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-08 06:36:27.589000'),(13913,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. We hope your brother is feeling better now. Thank you for your review and your recommendation.','2020-03-08 06:27:52.998000'),(13914,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-08 06:25:15.633000'),(13915,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-08 06:09:56.566000'),(13916,'Thank you for taking the time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2020-03-08 06:09:18.532000'),(13917,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-08 05:56:37.187000'),(13918,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-08 05:53:30.063000'),(13919,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-05 07:21:22.403000'),(13920,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-03-05 07:17:24.848000'),(13921,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-03-03 05:08:37.834000'),(13922,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-03-02 06:01:47.134000'),(13923,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-02 05:56:06.807000'),(13924,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-03-01 08:31:12.444000'),(13925,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-01 08:31:00.982000'),(13926,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-01 08:30:12.866000'),(13927,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-02-27 07:22:27.594000'),(13928,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-26 07:36:06.535000'),(13929,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. Hope your husband is feeling well.','2020-02-26 07:23:29.617000'),(13930,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-26 07:20:29.299000'),(13931,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-25 07:53:01.065000'),(13932,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-02-25 07:51:21.374000'),(13933,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-25 07:43:02.725000'),(13934,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-25 07:21:33.875000'),(13935,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-23 08:26:25.579000'),(13936,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-02-23 08:23:57.692000'),(13937,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 08:18:49.660000'),(13938,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-02-23 08:08:37.045000'),(13939,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-23 07:59:15.311000'),(13940,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-23 07:57:34.848000'),(13941,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-23 07:56:02.150000'),(13942,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-20 06:20:53.484000'),(13943,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-20 06:16:13.863000'),(13944,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-19 05:02:59.760000'),(13945,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-19 05:02:29.113000'),(13946,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-18 06:24:03.034000'),(13947,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-18 06:23:29.651000'),(13948,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-17 07:14:57.927000'),(13949,'Thank you for the five-star rating Paula. We appreciate it.','2020-02-17 02:03:46.466000'),(13950,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-16 08:01:44.495000'),(13951,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-02-16 06:04:56.795000'),(13952,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-12 06:57:56.166000'),(13953,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-12 06:52:54.732000'),(13954,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-11 08:18:34.198000'),(13955,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-11 08:17:21.614000'),(13956,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-02-09 07:24:13.218000'),(13957,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your kiddo feels better soon!','2020-02-09 06:54:31.712000'),(13958,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-06 07:14:24.143000'),(13959,'Thank you so much for your feedback Grace! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-06 09:00:37.909000'),(13960,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-04 05:50:33.555000'),(13961,'Thank you for letting us help your sister! We are glad to hear our team put her at ease and provided her with the best care possible. Thanks for choosing SignatureCare.','2020-02-03 07:15:50.834000'),(13962,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-03 07:15:12.740000'),(13963,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-03 07:14:53.074000'); INSERT INTO `review_reply` VALUES (13964,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope your mom is feeling better.','2020-02-03 07:14:38.700000'),(13965,'Thank you so much for giving us five stars, Anne!','2020-02-03 07:14:16.354000'),(13966,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-03 07:14:05.358000'),(13967,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 07:13:57.679000'),(13968,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-30 05:57:34.557000'),(13969,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-01-30 05:56:31.810000'),(13970,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-29 09:37:41.313000'),(13971,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 09:36:05.967000'),(13972,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 09:35:55.077000'),(13973,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2020-01-29 09:35:39.053000'),(13974,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-01-29 09:35:29.045000'),(13975,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 09:33:16.541000'),(13976,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-29 09:33:05.932000'),(13977,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-01-29 09:32:50.060000'),(13978,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2020-01-29 09:32:28.926000'),(13979,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 09:32:12.194000'),(13980,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 09:32:02.911000'),(13981,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-01-29 09:31:51.406000'),(13982,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-29 09:30:53.450000'),(13983,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 09:30:34.406000'),(13984,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-01-21 06:56:56.706000'),(14005,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-27 07:25:30.769000'),(14006,'Thank you so much for your feedback Jacques! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-26 02:05:00.241000'),(14007,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-25 07:50:54.892000'),(14008,'Thank you for trusting us with the care of your grandson. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-02-25 07:42:39.819000'),(14009,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-24 04:52:56.283000'),(14010,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-02-23 10:15:50.628000'),(14011,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 10:14:50.241000'),(14012,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 09:54:32.410000'),(14013,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-23 08:13:54.061000'),(14014,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-02-23 08:05:02.410000'),(14015,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-23 07:56:29.881000'),(14016,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-20 06:37:03.308000'),(14017,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-20 05:12:39.263000'),(14018,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-24 06:39:41.554000'),(14019,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare. Hope your girlfriend is feeling better.','2020-02-16 08:54:24.520000'),(14020,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-16 08:43:50.828000'),(14021,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-13 07:42:14.333000'),(14022,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-09 07:25:16.504000'),(14023,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-09 07:24:23.871000'),(14024,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your mom is feeling better.','2020-02-09 07:22:48.914000'),(14025,'Thank you for your five star review and for trusting us with your care!','2020-02-09 06:03:27.086000'),(14026,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-02-09 07:04:13.054000'),(14027,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:02:56.169000'),(14028,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-09 07:01:35.859000'),(14029,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-09 07:00:15.544000'),(14030,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-09 07:00:00.714000'),(14031,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-09 06:57:29.463000'),(14032,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-09 06:54:43.026000'),(14033,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your grandmother. Thank you for choosing SignatureCare.','2020-02-06 07:44:24.719000'),(14034,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know. Hope your wife is feeling better.','2020-02-06 07:35:40.479000'),(14035,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-06 07:32:21.953000'),(14036,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-06 07:13:58.263000'),(14037,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-06 07:04:27.443000'),(14038,'We appreciate the five-star rating Ebiere!','2020-02-06 09:00:41.003000'),(14039,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-03 07:23:24.777000'),(14040,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2020-01-29 11:04:52.549000'),(14041,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-01-29 10:58:12.715000'),(14042,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 10:57:24.623000'),(14043,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-29 10:57:08.567000'),(14044,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-19 07:31:33.177000'),(14045,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-19 07:31:26.020000'),(14046,'Thank you so much for giving us five stars, Melissa!','2020-01-19 07:30:51.709000'),(14047,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-16 07:30:02.257000'),(14048,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-16 07:29:51.143000'),(14049,'Our patients are what keep us going strong. Thank you for your positive review, and for choosing SignatureCare. ','2017-11-20 14:15:12.586000'),(14050,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-14 07:46:35.127000'),(14051,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-01-13 07:02:47.333000'),(14052,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-12 07:07:09.517000'),(14053,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-12 07:06:57.471000'),(14054,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-12 07:06:30.143000'),(14055,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-12 07:06:09.713000'),(14056,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-12 07:05:59.502000'),(14057,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-12 07:05:50.271000'),(14058,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-12 07:05:37.731000'),(14059,'Thank you Stacy, for your five star rating!','2020-01-08 08:01:35.383000'),(14060,'Hi Jodie! We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-12-31 04:55:36.987000'),(14061,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-31 04:55:56.388000'),(14062,'We appreciate your great rating, Panama!','2020-01-08 08:01:04.907000'),(14063,'Thank you so much for your great rating, Keyla!','2019-12-29 06:49:42.339000'),(14064,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-29 06:49:22.685000'),(14065,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\n with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2019-12-29 06:48:10.118000'),(14066,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-22 08:38:19.121000'),(14067,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2017-03-05 15:13:38.300000'),(14068,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-12-18 07:37:14.801000'),(14069,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 07:08:46.344000'),(14070,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-01 08:40:24.154000'),(14071,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-12-01 08:40:13.068000'),(14072,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-01 08:40:02.066000'),(14073,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-20 06:16:59.577000'),(14074,'We appreciate the great rating you gave us, Trish!','2019-11-19 06:22:52.829000'),(14075,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2019-11-17 07:18:16.670000'),(14076,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-11-11 07:39:45.042000'),(14077,'Thank you for letting us know how we are doing. SignatureCare sets goals on patient satisfaction, so it\'s great to hear that we are doing a good job. Thanks for choosing our facility. ','2018-01-16 16:07:27.380000'),(14078,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2019-11-04 11:22:30.837000'),(14079,'Thank you for your great rating, Nerys!','2019-10-29 05:51:33.087000'),(14080,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-10-24 08:41:44.153000'),(14081,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-10-24 08:24:35.601000'),(14082,'There\'s never a fun time to visit the ER (especially the weekend), but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us.','2019-10-22 06:38:30.106000'),(14083,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-10-16 07:24:02.882000'),(14084,'Thank you so much for your great rating, Negin!','2019-10-13 07:36:12.265000'),(14105,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-08 05:42:13.331000'),(14106,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-08 05:35:01.109000'),(14107,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-05 05:37:05.955000'),(14108,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-05 05:36:13.560000'),(14109,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-05 05:35:34.902000'),(14110,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-03-05 06:54:08.301000'),(14111,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-03-05 05:23:15.181000'),(14112,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-05 05:14:19.835000'),(14113,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-04 06:03:12.614000'),(14114,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. We hope your wife is feeling better now. Thank you for choosing SignatureCare!','2020-03-04 06:02:21.853000'),(14115,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-03 05:23:29.005000'),(14116,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-03 05:22:39.670000'),(14117,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-03 05:10:26.818000'),(14118,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-03 05:09:50.963000'),(14119,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-02 06:06:05.351000'),(14120,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-02 06:03:00.138000'),(14121,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 08:05:25.357000'),(14122,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-01 08:03:26.584000'),(14123,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-01 08:03:08.101000'),(14124,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-26 08:00:35.543000'),(14125,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-25 07:52:17.738000'),(14126,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-25 07:22:25.022000'),(14127,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-25 07:22:01.825000'),(14128,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-24 06:35:33.667000'),(14129,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-24 06:34:32.777000'),(14130,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-24 06:33:53.136000'),(14131,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-24 06:33:33.697000'),(14132,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-24 06:33:14.139000'),(14133,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-24 06:32:02.402000'),(14134,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-24 04:55:05.012000'),(14135,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-24 04:52:40.227000'),(14136,'Thank you for the five-star rating Madison. We appreciate it.','2020-02-24 02:06:02.695000'),(14137,'Thank you so much Yadira for your great rating!','2020-02-24 02:05:59.849000'),(14138,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-23 10:07:15.034000'),(14139,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-23 10:06:42.537000'),(14140,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-23 08:26:04.583000'),(14141,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-23 08:19:30.724000'),(14142,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-23 08:19:10.281000'),(14143,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-23 08:18:20.382000'),(14144,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 08:16:54.232000'),(14145,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 08:15:41.348000'),(14146,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-23 08:15:21.373000'),(14147,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-02-23 08:15:05.520000'),(14148,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-23 08:14:47.420000'),(14149,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-23 08:08:12.081000'),(14150,'Thank you for your rating, Briona!','2019-05-20 05:06:52.428000'),(14151,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-23 08:00:11.473000'),(14152,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-20 06:36:49.804000'),(14153,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2020-02-20 06:36:39.548000'),(14154,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-02-20 06:29:30.775000'),(14155,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-20 05:09:00.556000'),(14156,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-20 05:07:18.627000'),(14157,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-20 05:05:50.436000'),(14158,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-20 05:05:39.400000'),(14159,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-20 05:05:24.913000'),(14160,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-20 05:04:05.416000'),(14161,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-20 05:03:25.224000'),(14162,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-20 05:03:09.444000'),(14163,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-18 06:23:48.124000'),(14164,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-18 06:19:43.019000'),(14165,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-18 06:19:22.922000'),(14166,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-18 06:17:38.651000'),(14167,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-18 06:17:26.071000'),(14168,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-18 06:16:23.578000'),(14169,'Thank you for the five-star rating Heaven. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-02-17 02:03:50.651000'),(14170,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-16 07:10:28.415000'),(14171,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-16 06:26:28.897000'),(14172,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-16 06:26:01.208000'),(14173,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-13 07:41:10.454000'),(14174,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-13 07:34:09.982000'),(14175,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your wife. We appreciate the great review and rating.','2020-02-13 07:33:52.332000'),(14176,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-12 07:04:19.664000'),(14177,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-02-12 07:04:00.640000'),(14178,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-12 07:03:31.209000'),(14179,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-02-10 05:49:32.287000'),(14180,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-09 07:00:43.385000'),(14181,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-21 04:49:43.788000'),(14182,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-09 07:10:36.465000'),(14183,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:09:18.657000'),(14184,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-02-09 07:06:21.824000'),(14205,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better. Hope your mom is feeling better.','2020-03-01 08:05:00.203000'),(14206,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-03-01 07:09:46.504000'),(14207,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-27 07:24:36.368000'),(14208,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-25 07:51:04.842000'),(14209,'We appreciate your great rating, Lasaige!','2019-11-12 07:46:50.264000'),(14210,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-24 06:34:58.854000'),(14211,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-24 06:34:49.131000'),(14212,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-02-24 06:32:24.229000'),(14213,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-24 06:31:38.573000'),(14214,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-24 04:54:26.023000'),(14215,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-24 04:54:08.702000'),(14216,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-24 04:53:57.819000'),(14217,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-24 04:53:46.940000'),(14218,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-23 10:09:05.280000'),(14219,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-23 10:07:36.160000'),(14220,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-23 09:53:22.929000'),(14221,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 08:11:25.545000'),(14222,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-23 08:11:03.981000'),(14223,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-02-20 06:27:59.614000'),(14224,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\r\n with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-02-20 06:15:46.982000'),(14225,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-02-19 05:17:07.263000'),(14226,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-19 05:15:39.523000'),(14227,'Thank you so much for your feedback Makayla! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-19 02:06:24.855000'),(14228,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-19 05:12:54.459000'),(14229,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-19 05:08:47.158000'),(14230,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-17 07:14:36.641000'),(14231,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-17 07:04:09.868000'),(14232,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-16 08:45:56.517000'),(14233,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-16 08:45:40.618000'),(14234,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-16 09:10:58.496000'),(14235,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-16 08:02:14.829000'),(14236,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-16 06:25:47.385000'),(14237,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-12 07:03:21.431000'),(14238,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-12 07:01:29.404000'),(14239,'Thank you so much for your nice review, Rodriguez. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-02-13 07:59:24.173000'),(14240,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-02-12 06:54:23.194000'),(14241,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-12 06:54:06.847000'),(14242,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-11 08:17:56.624000'),(14243,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-11 08:16:39.541000'),(14244,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-02-11 08:05:03.788000'),(14245,'Hi Fred. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-01-08 08:04:36.756000'),(14246,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-10 05:47:35.865000'),(14247,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-09 06:42:45.699000'),(14248,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:18:34.940000'),(14249,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:18:21.784000'),(14250,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-02-09 07:05:21.137000'),(14251,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-02-06 07:06:45.919000'),(14252,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again! Hope your wife is feeling better.','2020-02-05 07:58:55.075000'),(14253,'Thank you so much for your nice review, Janet. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-02-05 07:58:16.458000'),(14254,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-04 05:57:38.437000'),(14255,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-04 05:57:21.285000'),(14256,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-03 06:41:10.479000'),(14257,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-02-03 06:40:09.588000'),(14258,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-03 06:38:43.931000'),(14259,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-03 06:38:30.164000'),(14260,'We appreciate your great rating, Marriana!','2020-02-03 06:38:10.103000'),(14261,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-03 06:37:56.716000'),(14262,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-30 05:22:39.911000'),(14263,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 06:45:08.565000'),(14264,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 06:44:51.075000'),(14265,'Thank you so much for your great rating, Kayden!','2020-01-29 06:44:11.029000'),(14266,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 06:38:40.787000'),(14267,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-01-29 06:37:53.148000'),(14268,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-29 06:37:06.552000'),(14269,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made your niece comfortable and able to relax during her visit. Thank you for trusting SignatureCare.','2020-01-29 06:35:55.500000'),(14270,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-20 06:06:54.234000'),(14271,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-20 06:06:24.787000'),(14272,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-16 07:04:17.914000'),(14273,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-12 06:22:27.145000'),(14274,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-12 06:20:25.974000'),(14275,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-01-07 07:14:01.187000'),(14276,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-06 07:41:40.404000'),(14277,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-05 06:51:56.729000'),(14278,'Hi Emily! We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-01-05 06:52:45.582000'),(14279,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-05 06:53:45.083000'),(14280,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency. Hope your father is feeling better!','2020-01-05 06:53:29.258000'),(14281,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-05 06:52:59.241000'),(14282,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2019-12-31 04:58:39.571000'),(14283,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-12-31 04:58:31.360000'),(14284,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2019-12-31 04:58:15.284000'),(14302,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-03-03 05:45:17.053000'),(14303,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-03-03 05:36:16.784000'),(14304,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-03-03 05:34:06.101000'),(14305,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-03-03 05:24:51.953000'),(14306,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-02 05:59:12.420000'),(14307,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-02 05:57:46.365000'),(14308,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-02 05:56:45.242000'),(14309,'Thank you so much for your nice review, Shelby. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-03-01 08:31:53.571000'),(14310,'We appreciate the five-star rating Brittany!','2020-03-01 02:04:54.699000'),(14311,'Thank you so much Kc for your great rating!','2020-02-29 02:06:12.897000'),(14312,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-03-01 08:29:15.183000'),(14313,'Thank you so much Dexter for your great rating!','2020-02-29 02:06:10.117000'),(14314,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-03-01 08:28:43.485000'),(14315,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-01 08:27:59.890000'),(14316,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 08:27:48.978000'),(14317,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-03-01 08:27:34.298000'),(14318,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-01 08:26:51.316000'),(14319,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-01 08:14:36.129000'),(14320,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-01 08:14:20.035000'),(14321,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-01 08:11:42.524000'),(14322,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-03-01 07:50:27.501000'),(14323,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-01 07:48:22.265000'),(14324,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-03-01 07:14:51.875000'),(14325,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-01 07:14:19.219000'),(14326,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-03-01 07:12:20.992000'),(14327,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2018-12-13 21:31:07.099000'),(14328,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-26 07:36:49.313000'),(14329,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-25 07:52:36.830000'),(14330,'Thank you so much for your feedback Michelle! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-24 02:06:05.321000'),(14331,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-24 04:43:40.831000'),(14332,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-11 13:23:32.041000'),(14333,'Thank you Aaliya for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-22 02:04:10.524000'),(14335,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-23 08:09:14.660000'),(14336,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-23 08:08:57.384000'),(14337,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-02-23 08:07:26.233000'),(14338,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-23 07:55:20.574000'),(14339,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-20 05:13:39.818000'),(14340,'Thank you so much Tracy for your great rating!','2020-02-19 02:06:19.504000'),(14341,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-19 05:13:36.101000'),(14342,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-02-19 05:12:39.678000'),(14343,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-19 05:10:49.664000'),(14344,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your mom. We appreciate the great review and rating.','2020-02-19 05:10:02.487000'),(14345,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-19 05:07:09.411000'),(14346,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-18 06:27:11.763000'),(14347,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your sister in law. Thank you for choosing SignatureCare.','2020-02-18 06:26:46.744000'),(14348,'Thank you so much Jason, for your great rating!','2020-01-05 06:36:41.697000'),(14349,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-16 08:50:08.759000'),(14350,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-18 06:23:01.482000'),(14352,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-18 06:22:27.584000'),(14353,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-18 06:21:08.977000'),(14354,'We appreciate the five-star rating Lashardae!','2020-02-18 02:02:40.766000'),(14355,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2020-02-17 07:15:38.939000'),(14356,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-17 07:10:41.352000'),(14357,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-17 07:07:24.638000'),(14358,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-16 08:46:47.601000'),(14359,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-16 08:46:08.555000'),(14360,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-16 08:45:16.257000'),(14361,'Thank you for trusting us with the care of your brother. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-02-16 08:42:48.544000'),(14362,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-16 08:42:12.374000'),(14363,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-16 08:01:10.685000'),(14364,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-13 07:45:13.614000'),(14365,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-13 07:32:57.337000'),(14366,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-09 07:12:36.974000'),(14367,'Thank you for the five-star rating Madison! We appreciate it.','2020-02-09 07:07:24.468000'),(14368,'Thank you so much for your nice feedback, Kaylyn. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-12-24 06:57:47.941000'),(14369,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-02-09 06:48:43.458000'),(14370,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-02-05 08:00:06.596000'),(14371,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your wife. Thank you for choosing SignatureCare.','2020-02-05 08:00:43.632000'),(14372,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-04 05:49:01.534000'),(14374,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-02-04 05:47:21.596000'),(14375,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-04 05:46:52.877000'),(14376,'Thank you so much for your great rating, Sam!','2020-02-03 07:08:41.702000'),(14377,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-03 07:08:24.897000'),(14378,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-03 07:08:18.330000'),(14379,'Thank you so much Teresa, for rating us five star!','2020-01-05 06:37:22.112000'),(14380,'We appreciate your great rating, Angela!','2020-02-03 07:07:57.686000'),(14381,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-03 07:07:43.705000'),(14382,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-02-03 07:07:27.915000'),(14383,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you and your sister. Thank you for choosing SignatureCare.','2020-02-03 07:07:17.010000'),(14384,'Thank you for trusting us with the care of your stepdaughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-03 07:06:42.755000'),(14405,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 08:02:13.308000'),(14406,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-23 07:56:56.776000'),(14407,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 07:53:28.709000'),(14408,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-20 05:10:41.254000'),(14409,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-20 05:08:23.680000'),(14410,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-19 05:15:14.409000'),(14411,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-19 05:11:50.924000'),(14412,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your wife\'s medical needs.','2020-02-18 06:38:29.890000'),(14413,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-18 06:22:05.493000'),(14414,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-18 06:17:03.321000'),(14415,'Thank you so much for your nice review, Christopher. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-02-16 09:11:57.426000'),(14416,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-13 07:41:39.388000'),(14417,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-13 07:39:43.978000'),(14418,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-10 05:49:56.906000'),(14419,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-10 05:49:02.728000'),(14420,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-10 05:48:39.013000'),(14421,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-10 05:48:04.613000'),(14422,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-10 05:47:55.401000'),(14423,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-09 07:20:24.080000'),(14424,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-09 07:10:48.744000'),(14425,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your husband. We appreciate the great review and rating.','2020-02-09 06:51:31.362000'),(14426,'Thank you for the five-star rating Hamza! We appreciate your feedback.','2020-02-06 09:00:46.369000'),(14427,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-06 07:13:42.866000'),(14428,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-05 08:05:33.152000'),(14429,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-03 07:26:11.108000'),(14430,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare! Hope your friend is feeling well.','2020-02-03 07:25:56.219000'),(14431,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-03 07:25:12.464000'),(14432,'We appreciate your great rating, Jamaria!','2020-02-03 07:24:59.209000'),(14433,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-03 07:24:36.596000'),(14434,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-03 07:24:29.681000'),(14435,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-03 07:24:20.987000'),(14436,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-03 07:24:10.666000'),(14437,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 07:24:00.953000'),(14438,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-02-03 07:23:45.294000'),(14439,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-30 06:04:11.317000'),(14440,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-08-25 05:33:24.492000'),(14441,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-29 11:09:46.075000'),(14442,'Thank you for taking the time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2020-01-29 11:09:33.681000'),(14443,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-29 11:09:14.866000'),(14444,'We appreciate your great rating, Anah!','2020-01-29 11:08:50.429000'),(14445,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 11:08:36.985000'),(14446,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-01-29 11:08:15.741000'),(14447,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-29 11:07:41.324000'),(14448,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 11:07:23.027000'),(14449,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-01-29 11:07:07.708000'),(14450,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 11:06:55.463000'),(14451,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-29 11:06:39.837000'),(14452,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-29 11:06:15.123000'),(14453,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-29 11:05:40.770000'),(14454,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 11:05:16.015000'),(14455,'Thank you Bill, for your great rating!','2020-01-19 07:32:45.271000'),(14456,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-19 07:32:32.309000'),(14457,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-19 07:32:06.899000'),(14458,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-01-19 07:31:57.743000'),(14459,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-01-16 07:30:19.809000'),(14460,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-01-14 07:47:14.578000'),(14461,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-14 07:46:59.961000'),(14462,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-12 07:08:18.011000'),(14463,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-12 07:08:10.671000'),(14464,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-01-12 07:07:55.641000'),(14465,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-12 07:07:41.613000'),(14466,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-01-09 07:36:30.297000'),(14467,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-07 07:10:14.354000'),(14468,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-01-05 06:46:49.487000'),(14469,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-05 06:46:28.764000'),(14470,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2019-12-29 06:51:02.433000'),(14471,'We appreciate your great rating, Carson!','2019-12-29 06:50:40.068000'),(14472,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2019-12-26 08:10:31.442000'),(14473,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\n with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2019-12-26 08:11:03.921000'),(14474,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2019-12-23 08:13:51.235000'),(14475,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-12-23 08:13:31.757000'),(14476,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-23 08:13:22.784000'),(14477,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-12-23 08:13:08.104000'),(14478,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2019-12-23 08:13:06.128000'),(14479,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2019-12-23 08:13:04.645000'),(14480,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-12-23 08:13:02.525000'),(14481,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2019-12-23 08:13:00.286000'),(14482,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-23 08:12:58.348000'),(14483,'Thank you for your feedback. We appreciate you choosing SignatureCare! Hope your husband is feeling g better.','2019-12-22 08:38:54.148000'),(14484,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-12-18 07:38:15.352000'),(14505,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-08 06:02:31.139000'),(14506,'Thank you for the five-star rating Peter. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-03-05 02:04:02.508000'),(14507,'Thanks for the 5 star review Lily!','2020-03-05 02:04:00.849000'),(14508,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-05 06:51:45.086000'),(14509,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-04 06:01:31.285000'),(14510,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-04 06:00:05.862000'),(14511,'We appreciate the five-star rating Xavier!','2020-03-04 02:04:07.318000'),(14512,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-04 05:59:31.890000'),(14513,'Thank you for the five-star rating Victoria. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-03-04 02:04:04.177000'),(14514,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-04 05:54:01.284000'),(14515,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-04 05:53:06.136000'),(14516,'Thank you for the great review Abigail! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-03-04 02:03:55.310000'),(14517,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-03-04 05:50:18.832000'),(14518,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-04 05:49:37.807000'),(14519,'Its their compassion that makes our staff exceptional, and we take pride on their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-06-11 06:04:47.137000'),(14520,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-04 05:49:10.151000'),(14521,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-03-04 05:48:23.822000'),(14522,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-04 05:43:02.286000'),(14523,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-04 05:40:13.638000'),(14524,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-04 05:39:12.560000'),(14525,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-02 06:26:15.524000'),(14526,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-02 06:22:45.038000'),(14527,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-02 06:22:03.988000'),(14528,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-02 06:08:31.176000'),(14529,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 08:29:01.850000'),(14530,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-01 08:28:30.575000'),(14531,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-01 08:28:17.862000'),(14532,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-03-01 08:17:20.909000'),(14533,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 08:12:58.259000'),(14534,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-01 08:12:45.381000'),(14535,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-01 07:51:50.498000'),(14536,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-01 07:46:37.121000'),(14537,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-01 07:44:01.752000'),(14538,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-01 07:43:42.898000'),(14539,'Thank you for the five-star rating Skyler. We appreciate it.','2020-02-28 02:03:12.623000'),(14540,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-03-01 07:18:04.417000'),(14541,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-03-01 07:17:18.687000'),(14542,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-03-01 07:15:48.952000'),(14543,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-27 07:11:45.182000'),(14544,'Thank you for the five-star rating Keith. We appreciate it.','2020-02-26 02:05:07.866000'),(14545,'Thank you Miranda for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-26 02:05:06.011000'),(14546,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-26 07:31:33.980000'),(14547,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-26 07:30:51.267000'),(14548,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-26 07:30:14.900000'),(14549,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-26 07:16:32.814000'),(14550,'Thank you Theresa for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-25 02:03:59.805000'),(14551,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-25 07:23:14.754000'),(14552,'Thank you Morgan for your five star review and for trusting us with your care!','2020-02-24 02:06:07.851000'),(14553,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-24 06:37:19.666000'),(14554,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-24 04:57:43.774000'),(14555,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-24 04:51:56.708000'),(14556,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your fiancé. Thank you for choosing SignatureCare.','2020-02-24 04:49:34.226000'),(14557,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-24 04:45:26.410000'),(14558,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your granddaughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your granddaughter is feeling better.','2020-02-24 04:45:00.910000'),(14559,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 10:16:30.182000'),(14560,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-23 10:16:11.065000'),(14561,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-23 10:13:42.250000'),(14562,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 09:56:58.298000'),(14563,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-23 09:52:57.879000'),(14564,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-23 08:05:24.721000'),(14565,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-23 08:15:57.874000'),(14566,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-23 08:05:50.668000'),(14567,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-23 08:04:36.977000'),(14568,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-23 08:03:32.988000'),(14569,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-23 08:01:51.161000'),(14570,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of your boyfriend. We appreciate the great review and rating.','2020-02-23 07:54:50.077000'),(14571,'Thank you for rating us five star, Kristina!','2019-07-14 06:25:30.374000'),(14572,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-20 06:28:56.675000'),(14573,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-19 05:07:35.915000'),(14574,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-18 06:27:54.504000'),(14575,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-18 06:20:11.566000'),(14576,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-16 07:11:27.377000'),(14577,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-16 06:25:29.235000'),(14578,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-16 06:25:11.105000'),(14579,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-16 06:23:20.110000'),(14580,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-16 06:21:52.975000'),(14581,'Thank you for the five-star rating Jessica. We appreciate it.','2020-02-14 02:02:45.533000'),(14582,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-16 06:14:16.595000'),(14583,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-02-12 06:56:21.953000'),(14584,'Thank you so much for your feedback Andres! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-11 07:17:25.358000'),(14605,'Thanks for the 5 star review Kathy!','2020-02-20 02:03:15.723000'),(14606,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-20 06:14:10.085000'),(14607,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-20 06:13:21.516000'),(14608,'We appreciate the five-star rating Mary!','2020-02-20 02:03:11.503000'),(14609,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2019-03-13 06:04:20.696000'),(14610,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-20 05:14:30.449000'),(14611,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-17 07:07:42.286000'),(14612,'Thank you Brandie for your five star review and for trusting us with your care!','2020-02-17 02:03:48.114000'),(14613,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-12 06:55:00.883000'),(14614,'We appreciate the five-star rating Brooke!','2020-02-11 07:17:20.032000'),(14615,'Thank you Michele for the 5 star review. We are glad you had a good experience. Feel Better!','2020-02-11 07:17:14.297000'),(14616,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-11 08:16:52.211000'),(14617,'Thank you for the great review Kim! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-02-23 08:58:52.149000'),(14618,'Thank you Kel for your five star review and for trusting us with your care!','2020-02-10 05:45:25.954000'),(14619,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-10 05:48:15.318000'),(14620,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-09 07:21:17.303000'),(14621,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-09 06:39:18.501000'),(14622,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-06 07:23:44.844000'),(14623,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-02-05 07:57:52.868000'),(14624,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 06:25:01.013000'),(14625,'Thank you Lara, for your great rating!','2020-01-29 06:22:53.711000'),(14626,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-03-27 05:23:18.607000'),(14627,'We appreciate your great rating, Laura!','2020-01-14 07:32:56.764000'),(14628,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-13 06:49:43.061000'),(14629,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-01-06 06:56:11.766000'),(14630,'Thank you so much for your five star rating, Sierra!','2020-01-06 06:55:59.308000'),(14631,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-05 06:17:19.838000'),(14632,'We are glad to learn that you see the benefits of an emergency room vs. the hospital and very proud that you chose SignatureCare Emergency Center as your choice for care. Our doctors and medical staff thank you for your wonderful feedback and the great rating.','2020-01-01 07:27:59.855000'),(14633,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-01 07:26:55.529000'),(14634,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-01 07:26:35.681000'),(14635,'Thank you so much for your great rating, Janet!','2019-12-29 06:05:00.614000'),(14636,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-26 07:31:15.276000'),(14637,'We appreciate your great rating, Preston!','2019-12-26 07:30:28.016000'),(14638,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2019-12-23 07:52:26.091000'),(14639,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-18 07:14:10.088000'),(14640,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review and your recommendation.','2019-12-18 07:13:55.727000'),(14641,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-12-17 04:23:04.782000'),(14642,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2019-12-17 04:26:07.362000'),(14643,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2019-12-17 04:25:36.986000'),(14644,'Thank you for your feedback We appreciate you choosing SignatureCare!','2019-12-17 04:25:24.217000'),(14645,'Thank you for trusting us with the care of your child. We appreciate the great feedback and are very glad to hear that our team took such good care of your kiddo.','2019-12-17 04:24:29.126000'),(14646,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-17 04:23:56.761000'),(14647,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-12-17 04:23:26.882000'),(14648,'Thank you for your review. We appreciate you choosing SignatureCare!','2019-12-15 06:10:05.810000'),(14649,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2019-12-15 06:10:32.638000'),(14650,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-12-15 06:09:47.212000'),(14651,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-15 06:09:38.932000'),(14652,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-12-15 06:09:24.478000'),(14653,'We appreciate the great rating you gave us, Chadlee!','2019-12-15 06:09:12.633000'),(14654,'Thank you so much for your great rating, Dillard!','2019-12-15 06:08:43.893000'),(14655,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-12-15 06:08:15.957000'),(14656,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2019-12-15 06:07:56.909000'),(14657,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-11-19 05:39:13.897000'),(14658,'We appreciate your five star rating, Jennifer!','2019-11-14 10:01:29.643000'),(14659,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-14 10:01:07.806000'),(14660,'We appreciate your great rating, Shelby!','2019-11-12 07:34:17.827000'),(14661,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-11-11 07:02:45.792000'),(14662,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-11-03 06:07:45.902000'),(14663,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment and clean environment. Thank you for choosing SignatureCare!','2019-10-27 07:00:44.240000'),(14664,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually 10 minutes or less -- and our doctors are board certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2019-10-27 06:32:58.124000'),(14665,'Thank you for your great rating, Holli!','2019-10-27 06:32:22.240000'),(14666,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-10-20 05:08:50.647000'),(14667,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2019-10-17 07:58:29.052000'),(14668,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-10-13 06:41:05.328000'),(14669,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2019-10-09 07:36:41.151000'),(14670,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-10-02 05:54:42.696000'),(14671,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2019-10-01 06:06:24.600000'),(14672,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-09-29 05:46:56.183000'),(14673,'Thank you so much for your nice review, Lane. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2019-09-29 05:46:23.116000'),(14674,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-09-29 05:41:04.191000'),(14675,'Thank you for your feedback, Nelson! We appreciate your great rating.','2019-09-15 04:49:24.740000'),(14676,'Thank you so much for your great rating, Lynze!','2019-09-15 04:48:32.805000'),(14677,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-09-15 04:47:59.409000'),(14678,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2019-09-11 05:00:42.209000'),(14679,'We appreciate your great rating, Decker! Thanks for choosing SignatureCare!','2019-09-11 05:05:06.172000'),(14680,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2019-09-11 04:59:44.409000'),(14681,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2019-08-26 05:05:34.804000'),(14682,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-08-21 04:45:48.155000'),(14683,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-19 05:52:02.904000'),(14684,'Thank you so much for rating us five star, Vickie!','2019-08-18 04:59:36.921000'),(14705,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-08 06:21:06.547000'),(14706,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-08 06:16:53.444000'),(14707,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-03-08 06:13:07.241000'),(14708,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-08 06:08:15.494000'),(14709,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-08 06:08:00.380000'),(14710,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-05 07:18:10.605000'),(14711,'Thank you for the five-star rating Felipe! We appreciate your feedback.','2020-03-03 02:02:44.027000'),(14712,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-03 05:42:30.941000'),(14713,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-03 05:41:34.212000'),(14714,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-02 06:37:20.233000'),(14715,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-02 06:35:45.759000'),(14716,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-02 05:49:26.528000'),(14717,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-01 08:33:03.074000'),(14718,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-01 07:50:41.489000'),(14719,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 07:49:30.973000'),(14720,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-01 07:48:48.721000'),(14721,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-01 07:15:26.597000'),(14722,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2019-08-18 05:15:17.924000'),(14723,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-01 07:13:45.600000'),(14724,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-01 07:10:59.805000'),(14725,'Thank you for the five-star rating Kintra. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-02-27 02:06:20.544000'),(14726,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-27 07:22:42.182000'),(14727,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-02-27 07:14:16.440000'),(14728,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-27 07:13:23.872000'),(14729,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-27 07:13:01.771000'),(14730,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your husband is feeling better.','2020-02-26 07:33:23.280000'),(14731,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-26 07:32:56.186000'),(14732,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-26 07:31:09.993000'),(14733,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-02-26 07:27:45.640000'),(14734,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-02-18 06:20:50.351000'),(14735,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-23 09:55:26.105000'),(14736,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. Hope your brother is feeling well.','2020-02-23 09:54:07.528000'),(14737,'We appreciate the five-star rating Haley!','2020-02-22 02:04:15.788000'),(14738,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-23 08:28:41.381000'),(14739,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-23 08:28:03.717000'),(14740,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-23 08:27:47.610000'),(14741,'Thank you Barbara for your five star review and for trusting us with your care!','2020-02-22 02:04:13.224000'),(14742,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your husband. Thank you for choosing SignatureCare.','2020-02-23 08:22:41.110000'),(14743,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-23 08:20:31.976000'),(14744,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-02-23 08:17:53.747000'),(14745,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 08:02:26.068000'),(14746,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-20 06:20:35.517000'),(14747,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-19 05:09:35.333000'),(14748,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-02-13 07:42:27.400000'),(14749,'Hello Scott! We are open 24/7, 365 days a year. Because emergencies do not have a schedule. I would love to discuss the incident with you and get more details so we can make it right. Please email us at info@ercare24.com so that we can look into this further.','2020-02-12 06:51:12.486000'),(14750,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-02-11 08:22:10.243000'),(14751,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-11 08:21:10.542000'),(14752,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-11 08:20:40.469000'),(14753,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare! Hope your sister is feeling well.','2020-02-11 08:19:07.445000'),(14754,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 06:50:27.515000'),(14755,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-06 07:17:39.517000'),(14756,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-06 07:15:26.814000'),(14757,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-06 07:12:14.494000'),(14758,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-06 07:11:08.765000'),(14759,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-06 07:10:50.834000'),(14760,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-06 07:08:06.942000'),(14761,'Thank you for the five-star rating Catherine! We appreciate your feedback.','2020-02-06 09:00:42.676000'),(14762,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-06 07:07:30.965000'),(14763,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-05 07:12:52.321000'),(14764,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-04 05:57:58.203000'),(14765,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-04 05:56:17.396000'),(14766,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-04 05:43:21.797000'),(14767,'Our team, from the front desk to the doctors, aim to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2019-02-24 12:14:13.218000'),(14768,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare! Hope your friend is feeling better.','2020-02-03 07:01:03.239000'),(14769,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-03 07:00:28.880000'),(14770,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-03 06:59:35.708000'),(14771,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-03 06:59:12.387000'),(14772,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-03 06:57:57.797000'),(14773,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-02 04:49:58.987000'),(14774,'We appreciate your great rating, Andrew!','2020-02-03 06:57:41.373000'),(14775,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-01-30 05:38:09.932000'),(14776,'Thank you so much for giving us five stars, Jacqueline!','2020-01-30 05:37:40.472000'),(14777,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-01-29 08:44:04.266000'),(14778,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 08:42:43.622000'),(14779,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-01-29 08:42:30.087000'),(14780,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 08:42:19.878000'),(14781,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-01-29 08:42:08.194000'),(14782,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-29 08:16:16.100000'),(14783,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-29 08:15:56.766000'),(14784,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-29 08:15:46.851000'),(14792,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-03-08 06:53:33.063000'),(14806,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-02-26 07:34:35.154000'),(14807,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-23 10:08:20.305000'),(14808,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-23 10:07:47.495000'),(14809,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-23 08:28:28.116000'),(14810,'Thank you for the five-star rating Celinda. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-02-22 02:04:07.872000'),(14811,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-23 08:14:07.001000'),(14812,'Thank you so much for your nice review, Marcella. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-02-23 08:04:26.137000'),(14813,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-23 07:57:08.245000'),(14814,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-20 06:19:33.421000'),(14815,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-02-20 06:18:21.417000'),(14816,'Thank you for the great review Tron! We appreciate your positive feedback about SignatureCare Emergency Center. We hope you are feeling better.','2020-02-20 19:37:33.954000'),(14817,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-19 05:12:22.956000'),(14818,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-19 05:10:18.228000'),(14819,'Thank you for the five-star rating Rob. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-02-18 02:02:44.216000'),(14820,'Thanks for the 5 star review Osvaldo!','2020-02-18 02:02:42.458000'),(14821,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-18 06:19:01.145000'),(14822,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-02-18 06:18:45.147000'),(14823,'We are open 24/7/365. Are you sure you have the right facility? There is a Prime Urgent Care down the street that does have business hours that closes in the evening. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-02-18 16:05:33.169000'),(14824,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-17 07:05:20.774000'),(14825,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-17 07:04:22.038000'),(14826,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your kiddo is feeling better!','2020-02-16 08:49:41.499000'),(14827,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-16 08:46:21.662000'),(14828,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-16 08:01:28.293000'),(14829,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-16 07:11:00.007000'),(14830,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-16 06:19:25.365000'),(14831,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-02-16 06:05:15.696000'),(14832,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-13 07:43:05.793000'),(14833,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-13 07:42:55.298000'),(14834,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-02-09 07:15:15.020000'),(14835,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-09 07:12:15.692000'),(14836,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-09 07:11:42.049000'),(14837,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:11:19.199000'),(14838,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-09 07:11:06.755000'),(14839,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:09:03.197000'),(14840,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:08:21.276000'),(14841,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-09 07:08:05.792000'),(14842,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-09 07:03:42.014000'),(14843,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-09 07:03:25.540000'),(14844,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-09 06:52:53.246000'),(14845,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2020-02-09 06:51:54.165000'),(14846,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-05 08:03:29.136000'),(14847,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-02-05 08:03:15.398000'),(14848,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-05 08:03:04.425000'),(14849,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-05 08:02:53.045000'),(14850,'Thank you so much for your nice review, Rosevelt. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-02-05 08:02:25.477000'),(14851,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-03 07:18:51.565000'),(14852,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-03 07:18:39.598000'),(14853,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-02-03 07:18:29.168000'),(14854,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-03 07:18:22.962000'),(14855,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-03 07:18:13.667000'),(14856,'(Translated by Google) Thank you very much for your kind review. We will pass your comments to our staff!\n\n(Original)\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-02-03 07:17:47.245000'),(14857,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-03 07:17:32.604000'),(14858,'We appreciate your great rating, Whit!','2020-02-03 07:17:11.019000'),(14859,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-03 07:16:57.357000'),(14860,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-03 07:16:36.722000'),(14861,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-03 07:16:15.336000'),(14862,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-30 05:58:13.412000'),(14863,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-01-29 10:32:16.305000'),(14864,'Thank you so much for your great rating, Brittani!','2020-01-29 10:31:51.311000'),(14865,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-29 10:31:31.698000'),(14866,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-01-29 10:31:06.710000'),(14867,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-01-29 09:41:15.287000'),(14868,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-01-29 09:40:09.926000'),(14869,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-29 09:38:39.969000'),(14870,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-29 09:38:29.340000'),(14871,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-19 07:26:07.079000'),(14872,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-01-19 07:25:56.760000'),(14873,'Thank you so much for giving us five stars, Terrie!','2020-01-16 07:27:38.519000'),(14874,'Our doctors and staffs make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-01-13 07:01:33.699000'),(14875,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-01-13 07:01:16.169000'),(14876,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for your husband, and are so glad to hear that he is feeling better. Thank you both for choosing SignatureCare!','2020-01-13 07:01:00.721000'),(14877,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-01-12 07:01:13.818000'),(14878,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-01-12 07:01:01.619000'),(14879,'Thank you so much for your great rating, Vivek!','2020-01-09 07:35:08.575000'),(14880,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-01-09 07:34:45.219000'),(14881,'Hi Sharia. We are sorry to hear that you were unhappy with our billing processes and none have reached out to you. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing.','2020-01-09 07:34:25.167000'),(14882,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-01-05 06:44:15.517000'),(14883,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-01-05 06:43:36.085000'),(14884,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review. ','2019-07-07 07:26:29.727000'),(14924,'Thank you for the five-star rating Lisa! We appreciate your feedback.','2020-03-02 02:02:51.826000'),(14944,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-03-02 06:40:50.984000'),(15141,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare.','2020-03-03 05:18:31.049000'),(15142,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Hope your mom is ok now. Thank you for giving us your trust.','2020-03-03 05:14:47.735000'),(15143,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-25 07:37:12.647000'),(15175,'Thank you for the five-star rating Christy. We appreciate it.','2020-02-25 02:03:58.136000'),(15203,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-15 06:57:26.805000'),(15223,'Their compassion and dedication for helping others is why we love our employees. Thank you for choosing SignatureCare and for the nice review. ','2018-05-27 15:07:33.016000'),(15243,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you for choosing SignatureCare Emergency Center.','2020-03-11 05:04:59.511000'),(15282,'Thanks for the 5 star review Carlota!','2020-03-08 02:03:49.297000'),(15283,'Thank you for the great review Melanie! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-03-06 02:03:49.029000'),(15322,'Thank you for the five-star rating Daxton. We appreciate it.','2020-03-04 02:03:57.019000'),(15323,'Thank you for the great review Kathy! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-03-04 02:03:52.441000'),(15342,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-02-26 07:35:11.324000'),(15343,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-24 06:36:03.009000'),(15403,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-08 06:30:41.453000'),(15422,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-26 07:37:41.761000'),(15423,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-26 07:36:24.871000'),(15582,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-11 05:13:24.504000'),(15602,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-27 07:30:40.402000'),(15682,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 07:12:59.759000'),(15760,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-01 06:58:06.797000'),(15937,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-01 07:47:05.797000'),(16461,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-09 05:23:57.976000'),(16462,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-03-09 05:20:26.151000'),(16502,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-03 05:21:27.497000'),(16620,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-01 08:02:52.962000'),(16663,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-01 08:13:51.779000'),(16783,'Hi Necitha. We are sorry to hear that you were unhappy with our billing processes and none have reached out to you. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing.','2020-03-02 16:43:56.392000'),(16998,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-02 06:24:28.821000'),(17155,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-03 05:11:40.076000'),(17174,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-04 05:31:31.354000'),(17213,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-12 06:51:32.144000'),(17233,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-15 07:01:13.008000'),(17273,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-11 05:13:53.177000'),(17369,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-03-01 07:42:37.792000'),(17370,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-01 07:18:17.018000'),(17371,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-01 07:13:31.095000'),(17391,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-03-08 06:03:18.362000'),(17444,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-05 06:52:16.718000'),(17445,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-03-03 05:26:35.900000'),(17446,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-02 06:09:22.953000'),(17447,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-02 06:01:05.079000'),(17448,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-03-01 08:34:10.326000'),(17449,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-01 08:26:42.561000'),(17450,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-01 08:13:29.274000'),(18231,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-03-15 07:02:56.677000'),(18430,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-03-05 07:16:14.186000'),(18449,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-03-05 07:09:22.525000'),(18838,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-16 06:33:23.187000'),(18839,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-16 06:32:48.151000'),(18840,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-16 06:30:09.488000'),(18841,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-16 06:29:10.302000'),(18842,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-16 06:28:52.199000'),(18843,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-16 06:28:11.987000'),(18844,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-12 05:15:46.100000'),(18845,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-11 04:52:11.312000'),(18846,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-11 04:47:26.322000'),(18847,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-10 04:45:10.474000'),(18848,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-10 04:44:09.889000'),(18849,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-10 04:40:50.621000'),(18850,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-03-10 04:40:21.776000'),(18851,'Thank you so much for your nice review, Maria. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-03-09 07:07:47.317000'),(18852,'We appreciate the five-star rating Jordan!','2020-03-09 02:05:51.938000'),(18853,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-08 06:51:06.421000'),(18854,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-03-08 06:50:33.625000'),(18855,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-08 05:48:33.480000'),(18856,'Thank you for the five-star rating Caitlyn. We appreciate it.','2020-03-04 02:04:02.259000'),(18857,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-04 05:42:31.551000'),(18858,'Thank you so much for your feedback Chris! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-02 09:05:36.371000'),(18859,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-01 08:37:54.059000'),(18860,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-01 08:37:25.628000'),(18861,'Thank you so much for giving us five stars, Terra!','2020-03-01 08:36:20.335000'),(19321,'Thank you Gabrielle for the 5 star review. We are glad you had a good experience. Feel Better!','2020-03-08 02:03:44.139000'),(19378,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-10 04:41:16.408000'),(19423,'Hi Kevin. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-18 07:41:49.511000'),(19517,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-08 06:24:24.612000'),(20064,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-10 04:41:43.340000'),(20191,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for your husband, and are so glad to hear that your husband is feeling better. Thank you for choosing SignatureCare!','2020-03-08 06:58:18.313000'),(20274,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:34:39.745000'),(20311,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-13 07:41:25.287000'),(20331,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-03-15 07:11:46.093000'),(20351,'Thank you so much for your feedback Kate! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-08 02:03:46.774000'),(20536,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-08 06:58:45.236000'),(20799,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-04 05:58:34.373000'),(20818,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-01 08:06:31.337000'),(20819,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-01 08:06:10.683000'),(20877,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-03-09 05:18:01.499000'),(20898,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-06-21 07:19:36.005000'),(20899,'Thank you for the great review! We appreciate your positive feedback about SignatureCare ER. We hope you are feeling better.','2020-06-21 06:51:15.730000'),(20900,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 07:14:50.297000'),(20901,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We hope your mom is feeling better. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-16 06:41:48.888000'),(20902,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-15 07:33:27.925000'),(20903,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that your husband is feeling better. Thank you for choosing SignatureCare!','2020-03-15 07:14:05.424000'),(20904,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-15 07:10:54.526000'),(20905,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-15 07:10:24.198000'),(20906,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-03-15 07:09:25.943000'),(20907,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-15 07:00:26.181000'),(20908,'Thank you for trusting us with the care of your son. We appreciate the great feedback, and are very glad to hear that our team took such good care of him.','2020-03-15 06:15:35.257000'),(20909,'Thank you so much for your nice review, Chris. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-03-15 06:08:22.741000'),(20910,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-12 05:32:01.872000'),(20911,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-12 05:14:56.710000'),(20912,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-12 05:12:16.187000'),(20913,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-11 04:54:20.075000'),(20914,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-11 04:46:48.909000'),(20915,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-11 04:45:59.920000'),(20916,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-10 05:20:01.175000'),(20917,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-10 04:49:08.964000'),(20918,'Thank you Jennifer for the 5 star review. We are glad you had a good experience. Feel Better!','2020-06-21 06:51:28.761000'),(20919,'Thank you for taking time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2019-11-12 07:34:46.554000'),(20920,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-04-08 06:16:21.141000'),(20921,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-15 07:36:50.192000'),(20922,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-15 07:34:29.315000'),(20923,'Thank you so much for your feedback Ivan! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-15 05:37:10.605000'),(20924,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-12 05:32:52.651000'),(20925,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-11 05:02:16.466000'),(20926,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-11 05:00:10.983000'),(20927,'Thank you Maria for your five star review and for trusting us with your care!','2020-03-10 02:05:01.794000'),(20928,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-11-19 05:39:51.613000'),(20929,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-03-10 05:26:32.981000'),(20930,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-09 05:23:10.158000'),(20931,'Thank you Nichole for your five star review and for trusting us with your care!','2020-03-06 02:03:47.393000'),(20932,'Thank you for the five-star rating Launa. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-03-05 02:04:04.298000'),(20933,'We appreciate your great rating, Lindsey!','2020-01-29 06:30:01.580000'),(20934,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-03-05 06:50:22.954000'),(20935,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-03-05 05:31:19.409000'),(20936,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-03-04 05:38:24.090000'),(20937,'Thank you for the great review Brooks! We appreciate your positive feedback about SignatureCare ER. We hope you are feeling better.','2020-03-15 05:37:08.362000'),(20938,'Thank you for your five star review and for trusting us with your care!','2020-06-21 06:51:26.573000'),(20939,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:30:17.746000'),(20940,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-17 10:20:58.632000'),(20941,'Thank you so much for your feedback! Thank you for choosing SignatureCare.','2020-06-17 10:20:09.791000'),(20942,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-06-17 10:18:52.343000'),(20943,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-06-17 10:18:20.171000'),(20944,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-03-15 07:22:06.208000'),(20945,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-03-15 06:54:57.712000'),(20946,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-15 06:21:47.943000'),(20947,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-12 05:36:58.031000'),(20948,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-03-12 05:30:05.025000'),(20949,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-03-10 05:37:02.719000'),(20950,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-09 05:28:48.898000'),(20951,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-08 07:08:40.764000'),(20952,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-08 07:01:59.807000'),(20953,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-08 06:05:52.081000'),(20954,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-05 07:23:02.029000'),(20955,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-05 07:21:53.676000'),(20956,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-05 05:13:21.542000'),(20957,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-03-05 05:12:44.364000'),(20958,'Thank you so much for giving us five stars, Aguilera!','2020-06-23 06:35:54.546000'),(20959,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:34:44.174000'),(20960,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:34:55.825000'),(20961,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:34:21.559000'),(20962,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-06-17 10:24:56.448000'),(20963,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put your husband at ease and provide the best care possible. We hope your husband is feeling better.','2020-03-18 05:44:01.854000'),(20964,'Thank you for the five-star rating Kari! We appreciate your feedback.','2020-03-18 02:03:53.783000'),(20965,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-18 05:34:39.238000'),(20966,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-03-18 05:30:19.354000'),(20967,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-03-18 05:29:25.552000'),(20968,'Thank you Elizabeth for your five star review and for trusting us with your care!','2020-03-17 02:05:46.924000'),(20969,'Thanks for the 5 star review Lucas!','2020-03-16 06:03:01.507000'),(20970,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-03-16 06:39:47.797000'),(20971,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-16 06:38:36.701000'),(20972,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. We hope your wife is feeling better now. Thank you for choosing SignatureCare and for the nice review.','2020-03-16 06:38:19.427000'),(20973,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-03-16 06:36:28.586000'),(20974,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-03-16 06:35:56.805000'),(20975,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-16 06:35:29.575000'),(20976,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-03-16 06:35:03.348000'),(20977,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-16 06:34:08.015000'),(20978,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-06-24 07:29:22.281000'),(20979,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:33:05.903000'),(20980,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-16 06:46:50.343000'),(20981,'Thank you for the five-star rating Reece. We appreciate it.','2020-03-15 05:37:12.500000'),(20982,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-15 06:10:30.312000'),(20983,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-12 05:18:46.918000'),(20984,'Your positive feedback will help our team continue to do a great job for our patients. Our staff aims to make every patient’s experience speedy and comfortable. Thank you for trusting your emergency needs with SignatureCare. ','2017-09-30 14:08:27.462000'),(20985,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-01 08:27:04.171000'),(20986,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-01 08:26:28.873000'),(20987,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-01 08:26:18.905000'),(20988,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-27 07:09:13.319000'),(20989,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-26 07:29:44.818000'),(20990,'Thank you so much for your feedback Irina! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-25 02:04:02.378000'),(20991,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-23 09:55:43.578000'),(20992,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-02-23 08:21:13.649000'),(20993,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-18 06:25:22.185000'),(20994,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-18 06:19:54.941000'),(20995,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-18 06:18:23.100000'),(20996,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-18 06:16:38.685000'),(20997,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-17 07:05:45.839000'),(20998,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.\n1. Antigen Test- Results typically back in 15 mins\n2. Antibody Test- Results typically back in 1 to 2 days\n3. PCR Test- Results typically back in 1 to 2 days \nThese three types of test we are providing now.','2020-06-24 06:29:13.328000'),(20999,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:22:39.138000'),(21000,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:22:34.605000'),(21001,'Hi Taylor. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-18 07:45:02.236000'),(21002,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-04-08 06:12:05.511000'),(21003,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-04-08 06:06:13.846000'),(21004,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-04-08 06:04:50.010000'),(21005,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-19 05:03:54.550000'),(21006,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-18 05:45:29.535000'),(21007,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-18 05:41:43.472000'),(21008,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-18 05:40:52.109000'),(21009,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-18 05:38:00.151000'),(21010,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-18 05:35:11.581000'),(21011,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-18 05:13:44.707000'),(21012,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-18 05:13:01.490000'),(21013,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-18 05:11:52.395000'),(21014,'Thank you for the five-star rating Norma. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-03-16 06:03:04.124000'),(21015,'Thank you for taking time out of your day to review your experience with SignatureCare Emergency Center. Our goal is to make sure every patient’s need is addressed as quickly as possible so you can get back on the road to great health. We are open 24 hours so you have peace of mind during your next emergency. Thanks again!','2019-09-23 05:53:10.082000'),(21016,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-03-15 08:04:02.507000'),(21017,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-15 07:12:40.305000'),(21018,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. \n\nWe apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-06-24 07:26:25.353000'),(21019,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-22 13:27:44.279000'),(21020,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2019-11-03 06:32:09.805000'),(21021,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-04-08 06:15:23.342000'),(21022,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-04-08 06:04:09.695000'),(21023,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-04-08 06:02:06.538000'),(21024,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-18 05:26:29.107000'),(21025,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-18 05:22:26.274000'),(21026,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-18 05:18:15.907000'),(21027,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-18 05:12:19.018000'),(21028,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-16 06:42:19.379000'),(21029,'Thank you for the great review Robin! We appreciate your positive feedback about SignatureCare ER. We hope you are feeling better.','2020-03-15 05:37:22.996000'),(21030,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-15 06:59:42.826000'),(21031,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-09 05:18:27.928000'),(21032,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-08 07:14:19.347000'),(21033,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-03-08 07:13:46.834000'),(21034,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2019-12-22 08:27:03.219000'),(21035,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-08 06:57:15.340000'),(21036,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2019-12-15 06:56:59.819000'),(21037,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-03-08 06:29:28.462000'),(21038,'Thank you for the five-star rating. We appreciate it.','2020-06-21 06:51:22.340000'),(21039,'Hi Sabrina. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-18 07:45:44.216000'),(21040,'Hi Stefanie. We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-06-17 10:15:54.010000'),(21041,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-04-08 06:11:09.097000'),(21042,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-04-08 06:03:21.773000'),(21043,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-19 05:08:59.368000'),(21044,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-19 05:06:54.769000'),(21045,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-18 09:50:05.337000'),(21046,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-18 05:48:30.086000'),(21047,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved our team --- We will make sure to let them know.','2020-03-17 16:23:11.390000'),(21048,'Thank you for the great review Cookie! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-03-17 02:05:41.881000'),(21049,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-16 06:42:56.502000'),(21050,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2019-11-06 08:04:59.775000'),(21051,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-15 07:24:19.064000'),(21052,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-15 07:23:52.596000'),(21053,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-15 06:54:09.106000'),(21054,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-15 06:20:45.730000'),(21055,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-12 05:27:34.039000'),(21056,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-12 05:28:07.932000'),(21057,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-03-12 05:20:45.563000'),(21058,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:36:46.893000'),(21059,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:36:53.121000'),(21060,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:37:00.884000'),(21061,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-03-18 05:15:15.519000'),(21062,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-15 07:38:24.416000'),(21063,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-15 06:51:16.689000'),(21064,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We appreciate the chance to care for your boyfriend. We are so happy to hear you loved our team. Thank you for choosing SignatureCare!','2020-03-15 06:50:06.917000'),(21065,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-15 06:06:23.150000'),(21066,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-11 05:04:00.202000'),(21067,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-10 04:42:28.120000'),(21068,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-08 07:09:33.145000'),(21069,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-08 06:55:45.894000'),(21070,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-05 07:23:37.837000'),(21071,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-05 06:56:44.902000'),(21072,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-03-04 05:47:42.153000'),(21073,'Thank you so much for your nice review, Mirza. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-03-03 06:08:51.996000'),(21074,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-03 05:29:11.811000'),(21075,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-03-02 05:51:57.519000'),(21076,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-01 08:30:00.985000'),(21077,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-01 08:05:55.613000'),(21078,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.\nWe appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-24 07:23:18.256000'),(21079,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-23 06:30:30.116000'),(21080,'We sincerely apologize for the service you received at SignatureCare. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-06-18 07:47:59.617000'),(21081,'Hi Hedi. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-17 10:15:19.254000'),(21082,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-04-08 06:26:21.374000'),(21083,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-04-08 06:24:18.557000'),(21084,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-04-08 06:20:17.325000'),(21085,'We appreciate your great rating, David!','2020-04-11 13:29:24.048000'),(21086,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-18 07:48:56.271000'),(21087,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-18 05:49:00.367000'),(21088,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-16 06:47:44.770000'),(21089,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-16 06:40:28.107000'),(21090,'Thank you for the five-star rating. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-03-15 05:37:20.274000'),(21091,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-03-15 06:51:48.494000'),(21092,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-15 06:12:44.717000'),(21093,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-15 06:05:03.655000'),(21094,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-11 04:58:31.813000'),(21095,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-03-11 05:56:50.643000'),(21096,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-10 05:36:38.397000'),(21097,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-03-10 04:42:57.264000'),(21098,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-06-23 06:34:55.691000'),(21099,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-06-23 06:35:22.476000'),(21100,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:33:55.714000'),(21101,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-21 07:18:34.565000'),(21102,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-06-17 10:24:12.223000'),(21103,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-17 10:23:18.864000'),(21104,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-17 10:22:47.846000'),(21105,'Thank you for the five-star rating Ariel! We appreciate your feedback.','2020-06-21 06:51:17.893000'),(21106,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-21 07:17:24.745000'),(21107,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-04-08 06:17:36.614000'),(21108,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-18 05:36:37.166000'),(21109,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-03-18 05:32:15.315000'),(21110,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2019-10-27 08:40:04.836000'),(21111,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-16 06:45:11.815000'),(21112,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-03-16 06:44:45.505000'),(21113,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-15 06:53:27.206000'),(21114,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-15 06:46:07.687000'),(21115,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-15 06:26:41.294000'),(21116,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-03-15 06:12:12.736000'),(21117,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-12 04:58:52.020000'),(21118,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-03-08 06:44:00.199000'),(21119,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-08 06:07:19.839000'),(21120,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-04 05:56:57.639000'),(21121,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-04 05:54:34.808000'),(21122,'Thank you for the five-star rating Caitlyn! We appreciate your feedback.','2020-03-04 02:03:59.513000'),(21123,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-04 05:50:59.784000'),(21124,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-03 05:25:25.033000'),(21125,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-06-17 10:13:02.775000'),(21126,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-17 10:14:10.001000'),(21127,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2019-07-31 06:43:52.166000'),(21128,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-02-18 06:22:40.538000'),(21129,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-04 05:47:35.434000'),(21130,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-04-08 06:18:04.770000'),(21131,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-19 05:09:50.399000'),(21132,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-03-15 08:05:01.258000'),(21133,'Thanks for the 5 star review!','2020-03-15 05:37:27.916000'),(21134,'Thank you for the five-star rating Bek. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-03-15 05:37:14.850000'),(21135,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-11 04:48:06.952000'),(21136,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-03-10 05:37:44.037000'),(21137,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-10 05:35:10.086000'),(21138,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-10 05:30:50.678000'),(21139,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-09 05:19:38.801000'),(21140,'Thank you for the five-star rating Shanice. We appreciate the feedback, and appreciate you choosing SignatureCare.','2020-03-05 02:03:58.264000'),(21141,'Thanks for the 5 star review Dusty!','2020-03-05 02:03:55.645000'),(21142,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you and your bestfriend. We appreciate the great review and rating.','2020-03-05 05:29:01.839000'),(21143,'Thank you Mandy for the 5 star review. We are glad you had a good experience. Feel Better!','2020-03-05 02:03:53.135000'),(21144,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-23 06:32:46.561000'),(21145,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:32:36.887000'),(21146,'Thank you so much for your feedback Nicole! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-21 06:51:24.064000'),(21147,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:32:44.400000'),(21148,'Thank you so much for your nice review, Jesus!. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-06-18 07:43:58.982000'),(21149,'Hi Michael. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-18 07:41:13.664000'),(21150,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-04-08 06:13:51.583000'),(21151,'At SignatureCare Emergency Center, we pride ourselves for having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-03-17 16:29:08.420000'),(21152,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so very happy to hear you loved our team --- We will make sure to let them know.','2020-03-17 16:22:57.283000'),(21153,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-18 05:27:37.047000'),(21154,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-18 05:22:40.622000'),(21155,'Thank you so much for your nice review, Brigeda. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-03-18 05:16:44.824000'),(21156,'Hi Niki. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-03-15 08:02:15.530000'),(21157,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-03-15 07:58:24.669000'),(21158,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-12 05:19:48.360000'),(21159,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-08 06:56:04.790000'),(21160,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-08 06:36:49.344000'),(21161,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!\r\nHope your sister is well now.','2020-03-02 05:50:44.609000'),(21162,'Thank you for the great review Melissa! We appreciate your positive feedback about SignatureCare ER. We hope you are feeling better.','2020-06-21 06:51:20.070000'),(21163,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-18 05:47:58.316000'),(21164,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-03-18 05:45:49.715000'),(21165,'Thank you for the five-star rating. We appreciate it.','2020-03-17 02:05:44.360000'),(21166,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2019-08-04 05:50:25.383000'),(21167,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-15 07:39:04.622000'),(21168,'Our doors are always open for community members suffering a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope daughter is feeling better.','2020-03-15 07:08:37.976000'),(21169,'Thanks for the 5 star review Eric!','2020-03-15 05:37:25.510000'),(21170,'Hi Ricardo. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-03-15 08:00:56.948000'),(21171,'Thanks for the 5 star review Carol!','2020-03-12 02:06:00.070000'),(21172,'Thank you for the five-star rating! We appreciate your feedback.','2020-03-12 02:05:57.407000'),(21173,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-12 05:19:12.375000'),(21174,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-03-10 05:29:55.691000'),(21175,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-03-10 04:44:42.519000'),(21176,'Thank you Ray for the 5 star review. We are glad you had a good experience. Feel Better!','2020-03-10 02:04:54.680000'),(21177,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-09 05:25:25.848000'),(21178,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-09 05:16:41.421000'),(21179,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-03-08 06:59:15.181000'),(21180,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-03-08 06:34:10.892000'),(21181,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. We hope your coworker is feeling better now. Thank you for choosing SignatureCare and for the great review.','2020-03-08 06:32:34.670000'),(21182,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-03-15 07:39:22.556000'),(21183,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-15 07:31:31.648000'),(21184,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-15 07:01:45.830000'),(21185,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-15 06:01:39.850000'),(21186,'Thank you for the five-star rating Cailin. We appreciate it.','2020-03-11 02:05:53.539000'),(21187,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-08 07:12:07.182000'),(21188,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-08 06:30:04.928000'),(21189,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-03-08 06:20:44.966000'),(21190,'Thank you for the five-star rating Amoret. We appreciate it.','2020-03-05 02:04:06.873000'),(21191,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-05 06:52:47.784000'),(21192,'Thank you Johnna for your five star review and for trusting us with your care!','2020-03-02 02:02:50.244000'),(21193,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-01 08:33:26.982000'),(21194,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-27 06:55:51.554000'),(21195,'Thank you for trusting us with the care of your grandson. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-02-26 07:37:10.077000'),(21196,'Thank you for the five-star rating Tiffaney! We appreciate your feedback.','2020-02-26 02:05:10.450000'),(21197,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-25 07:37:21.657000'),(21198,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-25 07:23:33.575000'),(21199,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-23 10:00:16.811000'),(21200,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-23 08:26:48.261000'),(21201,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-23 08:24:12.455000'),(21202,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-24 06:54:25.265000'),(21203,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-06-24 06:55:57.741000'),(21204,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-22 13:22:56.320000'),(21205,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-06-17 10:10:37.341000'),(21206,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-19 05:07:55.444000'),(21207,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-03-19 05:06:22.166000'),(21208,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing SignatureCare!','2020-03-17 16:34:15.561000'),(21209,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-03-18 05:28:11.961000'),(21210,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-15 07:20:03.547000'),(21211,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-15 07:18:55.445000'),(21212,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-02-05 07:59:42.784000'),(21213,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-03-15 06:54:39.741000'),(21214,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-12 05:37:58.497000'),(21215,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-03-12 05:30:24.012000'),(21216,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-03-12 05:17:25.086000'),(21217,'Thank you so much Maria for your great rating!','2020-03-10 02:04:59.169000'),(21218,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-09 05:31:19.800000'),(21219,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-03-09 05:30:50.448000'),(21220,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-03-09 05:19:17.421000'),(21221,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-06-23 06:31:30.955000'),(21222,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-22 13:28:20.580000'),(21223,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare.','2020-06-21 07:24:22.443000'),(21224,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-06-21 07:25:26.440000'),(21225,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-21 07:26:06.048000'),(21226,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-06-21 07:27:22.592000'),(21227,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-21 07:28:12.696000'),(21228,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-06-21 07:30:03.035000'),(21229,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-22 13:29:49.395000'),(21230,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-21 07:21:39.861000'),(21231,'Thanks for the 5 star review!','2020-06-18 12:05:21.048000'),(21232,'Hi Masha. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-18 07:46:44.034000'),(21233,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-06-18 07:42:13.411000'),(21234,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-03-15 08:04:21.886000'),(21235,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-03-15 06:52:59.765000'),(21236,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-03-15 06:52:32.899000'),(21237,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-03-15 06:46:52.039000'),(21238,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-03-10 05:35:23.717000'),(21239,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-03-10 05:34:27.019000'),(21240,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-03-09 05:22:30.955000'),(21242,'Thank you so much for your nice review, Sandy. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-06-28 10:49:15.561000'),(21243,'Thank you so much for your nice review, Alonso. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-06-28 11:05:40.397000'),(21244,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 11:01:03.388000'),(21245,'Hi Jose! Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 11:01:26.087000'),(21246,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-28 10:31:04.754000'),(21247,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-06-28 10:30:38.399000'),(21248,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-28 10:27:27.973000'),(21249,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-28 10:29:28.225000'),(21250,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-28 11:04:10.511000'),(21251,'Hi Rasoul. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 10:48:07.744000'),(21252,'Hi Kate! Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 11:03:24.660000'),(21253,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 10:46:00.777000'),(21254,'Hi Debra!. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-28 11:05:01.088000'),(21255,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 10:44:11.050000'),(21256,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-06-28 10:10:09.005000'),(21257,'Hi jake! We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-28 10:58:51.509000'),(21258,'Hi Daniel! Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 11:03:04.700000'),(21259,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 10:06:38.676000'),(21260,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-06-28 10:28:46.886000'),(21261,'Hello Stephanie! Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 10:58:06.096000'),(21262,'Hi Claire. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-28 10:39:27.652000'),(21263,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-06-28 10:26:01.635000'),(21264,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-28 10:09:02.111000'),(21265,'Hi Vivian!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 11:11:54.673000'),(21266,'Hello Rigo! Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 10:57:55.284000'),(21267,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 11:00:35.900000'),(21268,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-06-28 10:47:12.576000'),(21269,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-28 10:59:52.608000'),(21270,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-06-28 10:46:35.163000'),(21271,'Muchas gracias por tu amable reseña.','2020-06-28 10:41:09.685000'),(21272,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-06-28 10:08:32.813000'),(21273,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-25 09:42:27.405000'),(21274,'Hi Cory. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-25 10:20:21.986000'),(21275,'Thank you so much for your nice review, Roberto. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-06-25 10:19:05.705000'),(21276,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-06-25 10:28:53.816000'),(21277,'Thank you so much for your great rating, Lynn!','2020-06-25 10:25:47.566000'),(21278,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-25 10:29:35.977000'),(21279,'He Cristal. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-25 10:23:29.283000'),(21280,'We appreciate your great rating, Adrian!','2020-06-25 10:12:56.412000'),(21281,'He luis. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-25 10:23:13.493000'),(21282,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-25 10:08:25.491000'),(21283,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-25 10:12:15.920000'),(21284,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-06-25 10:31:10.622000'),(21285,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-28 10:42:18.563000'),(21286,'Thank you Anael, for your great rating!','2020-06-25 10:22:21.770000'),(21287,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-25 10:21:45.295000'),(21288,'We are currently taking walk ins. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-25 10:09:45.125000'),(21289,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-25 10:19:38.171000'),(21290,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. \n\nWe aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-06-25 09:43:29.901000'),(21291,'We appreciate the five-star rating Mona!','2020-06-24 15:33:56.127000'),(21292,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-25 10:24:56.614000'),(21293,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-25 10:24:18.118000'),(21294,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-07 10:25:02.904000'),(21295,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-07 10:25:48.213000'),(21296,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-07 10:18:59.649000'),(21297,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-07 09:22:26.578000'),(21298,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-07 10:19:38.573000'),(21299,'Hi there. We are sorry to hear that your son didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your son\'s experience. Can you email us at info@ercare24.com with full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-07 09:29:55.792000'),(21300,'Hello lester!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-06 05:15:34.211000'),(21301,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review','2020-07-07 09:30:32.476000'),(21302,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-07 10:26:31.155000'),(21303,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-07 09:17:41.569000'),(21304,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-07 09:35:26.309000'),(21305,'Hello Cameron!. We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-07 09:43:34.203000'),(21306,'Thank you so much for your nice review, catrin!. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-07 10:22:49.678000'),(21307,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-07 09:49:35.582000'),(21308,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-07 09:16:57.230000'),(21309,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-07 10:27:26.276000'),(21310,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-07 09:21:21.833000'),(21311,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-07 09:19:29.847000'),(21312,'We appreciate your great rating, Bladimir!','2020-07-07 09:20:43.134000'),(21313,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-07 09:48:35.198000'),(21314,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-07 09:35:52.949000'),(21315,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-07 10:16:12.790000'),(21316,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-07 09:20:01.181000'),(21317,'Thank you Jocelyn, for your great rating!','2020-07-06 05:08:38.089000'),(21318,'We appreciate your great rating, Rebecca!','2020-07-06 05:06:40.894000'),(21319,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-07-06 05:12:38.051000'),(21320,'Thank you so much for giving us five stars, Claudia!','2020-07-06 05:10:29.645000'),(21321,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-06 05:16:28.049000'),(21322,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-06 05:16:57.046000'),(21323,'Thank you so much for your great rating, Lily!','2020-07-12 06:31:29.515000'),(21324,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 06:52:20.165000'),(21325,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 06:33:27.392000'),(21326,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 06:34:23.656000'),(21327,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-12 06:24:11.381000'),(21328,'Thank you so much for giving us five stars, Janie!','2020-07-12 06:24:40.956000'),(21329,'Thank you so much for giving us five stars, Oscar!.','2020-07-09 06:54:06.231000'),(21330,'Thank you so much for your great rating, Steve!','2020-07-09 06:54:26.742000'),(21331,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-09 06:58:19.307000'),(21332,'We appreciate your great rating, Tamara!','2020-07-09 06:54:51.928000'),(21333,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-09 06:56:27.656000'),(21334,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-08 08:09:48.397000'),(21335,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-08 08:08:11.142000'),(21336,'Thank you so much for your great rating, CHAD!','2020-07-06 05:11:44.161000'),(21337,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-06 05:14:19.685000'),(21338,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-07-05 12:11:35.950000'),(21339,'Thank you so much for your nice review, Isaiah!. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-05 12:08:30.175000'),(21340,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-05 12:09:46.730000'),(21341,'Thank you so much for giving us five stars, Yasir!','2020-07-05 12:10:28.599000'),(21342,'We appreciate your great rating, Leah!','2020-07-02 07:23:15.669000'),(21343,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-02 07:24:05.435000'),(21344,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-02 07:26:30.712000'),(21345,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-02 07:27:57.577000'),(21346,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-02 07:28:51.468000'),(21347,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-29 08:32:13.883000'),(21348,'Thank you so much for your great rating, Mary!','2020-07-06 05:01:09.856000'),(21349,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-06 05:02:25.823000'),(21350,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-05 10:30:28.785000'),(21351,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-05 10:29:50.079000'),(21352,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-05 10:28:49.073000'),(21353,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-05 10:25:45.270000'),(21354,'Hi Claire!. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-01 09:18:54.198000'),(21355,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-01 09:20:24.967000'),(21356,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-30 06:29:57.234000'),(21357,'Hello Allen. We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-06-29 07:56:05.132000'),(21358,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-01 09:21:16.491000'),(21359,'We appreciate your great rating, Chito!','2020-07-12 06:25:02.518000'),(21360,'Thank you so much for your great rating, Patricia!','2020-07-12 06:25:18.988000'),(21361,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-12 06:27:48.517000'),(21362,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-12 06:28:39.913000'),(21363,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-07-12 06:29:32.676000'),(21364,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-12 06:30:16.398000'),(21365,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-12 06:31:01.921000'),(21366,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-09 06:50:43.115000'),(21367,'Thank you so much for giving us five stars, Aaron!','2020-07-09 06:51:09.198000'),(21368,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-08 08:22:59.998000'),(21369,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-08 08:23:36.017000'),(21370,'Thank you Steven, for your great rating!','2020-07-08 08:21:39.571000'),(21371,'We appreciate your great rating, Mariah!','2020-07-08 08:21:53.581000'),(21372,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-08 08:28:27.051000'),(21373,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-08 08:28:38.761000'),(21374,'We appreciate your great rating, Stephanie!','2020-07-06 05:08:03.747000'),(21375,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-05 11:48:45.957000'),(21376,'Thank you Juan!, for your great rating!','2020-07-05 11:47:40.990000'),(21377,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-05 11:48:15.486000'),(21378,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-07-01 09:32:03.543000'),(21379,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-09 07:00:28.743000'),(21380,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-09 07:00:55.788000'),(21381,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-09 07:01:20.951000'),(21382,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-08 08:05:31.761000'),(21383,'Thank you so much for your review, Karina. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-08 08:04:44.115000'),(21384,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-05 12:03:52.319000'),(21385,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-05 12:04:29.658000'),(21386,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-05 12:04:44.799000'),(21387,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-05 12:05:45.181000'),(21388,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-05 12:06:22.048000'),(21389,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-02 07:30:54.125000'),(21390,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-02 07:29:33.448000'),(21391,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-01 09:34:44.609000'),(21392,'Hello Rhonda!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-29 08:35:48.863000'),(21393,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-06-29 08:36:33.237000'),(21394,'Hello Courtney!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-29 08:34:57.564000'),(21395,'Hello Carla!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-29 08:33:12.495000'),(21396,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-09 06:53:23.142000'),(21397,'Thank you so much for giving us five stars, Jaquelyn!','2020-07-05 12:00:58.780000'),(21398,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-05 12:01:56.750000'),(21399,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-02 07:22:37.768000'),(21400,'Thank you Marvin, for your great rating!','2020-07-02 07:21:12.214000'),(21401,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-06-30 06:47:53.963000'),(21402,'Thank you so much for giving us five stars, Demi!','2020-07-09 06:31:27.501000'),(21403,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-05 10:33:13.895000'),(21404,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. \n\nThanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-05 10:34:22.357000'),(21405,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-05 10:38:55.103000'),(21406,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-05 10:35:24.630000'),(21407,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-05 10:37:19.803000'),(21408,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.\n\nWe are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-05 10:36:50.297000'),(21409,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. Thank you so much for your great rating, Jojo!','2020-06-30 06:31:41.345000'),(21410,'Hello Genevieve!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-29 07:57:09.245000'),(21411,'Thank you so much for giving us five stars, Mark!','2020-07-02 07:14:52.839000'),(21412,'Hello Leah. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-29 08:27:00.007000'),(21413,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-06-29 08:26:22.386000'),(21414,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-08 07:44:51.187000'),(21415,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-05 11:34:57.779000'),(21416,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback. Thank you for choosing SignatureCare!','2020-07-05 11:37:19.608000'),(21417,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-02 07:15:50.587000'),(21418,'Hello Lisa!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-01 09:25:19.738000'),(21419,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-30 06:37:01.278000'),(21420,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-08 08:11:46.981000'),(21421,'We appreciate your great rating, Priscilla!','2020-07-08 08:10:38.478000'),(21422,'Thank you Cristal, for your great rating!','2020-07-08 08:10:20.943000'),(21423,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-05 11:55:58.043000'),(21424,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-06 05:09:54.879000'),(21425,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-05 11:50:29.493000'),(21426,'We appreciate your great rating, Michael!','2020-07-05 11:49:18.774000'),(21427,'Thank you so much for your nice review, Shireen!. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-02 07:16:31.334000'),(21428,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-02 07:17:48.643000'),(21429,'We appreciate your great rating, Catherine!','2020-07-01 09:32:54.493000'),(21430,'Hello Sara!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-30 06:39:42.144000'),(21431,'Hello Richard!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-30 06:38:57.603000'),(21432,'Hello Emily. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-29 08:27:56.422000'),(21433,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-09 06:40:52.926000'),(21434,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-08 07:48:53.088000'),(21435,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-05 10:56:57.597000'),(21436,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-05 10:56:12.374000'),(21437,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-01 09:24:08.199000'),(21438,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-06-30 06:34:23.477000'),(21439,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-06-29 07:58:40.442000'),(21440,'Thank you so much for giving us five stars, Nick!','2020-07-07 09:43:58.274000'),(21441,'Thank you so much for giving us five stars, Matthew!.','2020-07-09 06:58:59.636000'),(21442,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-09 06:59:30.856000'),(21443,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-08 08:06:46.555000'),(21444,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-06-30 06:44:10.760000'),(21445,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-09 06:30:47.193000'),(21446,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-06 05:05:55.923000'),(21447,'Thank you so much for giving us five stars, Dee!','2020-07-06 05:03:26.699000'),(21448,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-02 07:12:36.814000'),(21449,'Hello Danisha!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-02 07:09:09.599000'),(21450,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-06-29 07:54:44.657000'),(21451,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 06:37:37.828000'),(21452,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-12 06:38:13.336000'),(21453,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-12 06:38:59.769000'),(21454,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 06:39:51.223000'),(21455,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-12 06:41:14.072000'),(21456,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 06:43:24.922000'),(21457,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-12 06:43:47.558000'),(21458,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-12 06:44:33.908000'),(21459,'Thank you so much for giving us five stars, Mary!','2020-07-12 06:45:19.477000'),(21460,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-12 06:45:31.277000'),(21461,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-12 06:48:33.711000'),(21462,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-12 06:47:43.800000'),(21463,'Thank you so much for your nice review, Dennis. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-12 06:46:11.167000'),(21464,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-12 06:47:08.661000'),(21465,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 06:50:00.248000'),(21466,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-09 06:40:02.993000'),(21467,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-08 07:55:41.724000'),(21468,'Thank you so much for your nice review, Jacqueline!. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-01 09:23:05.520000'),(21469,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-09 06:52:40.511000'),(21470,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-06 05:10:57.176000'),(21471,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-05 11:56:43.481000'),(21472,'Thank you so much for your great rating, Lillian!','2020-07-05 11:57:17.271000'),(21473,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-05 11:58:44.601000'),(21474,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-05 11:59:28.549000'),(21475,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-02 07:20:42.810000'),(21476,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-02 07:18:34.922000'),(21477,'Hello Michael!. Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-06-30 06:40:34.664000'),(21478,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-05 10:31:50.379000'),(21479,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. \n\nWe aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-06-30 06:33:34.385000'),(21480,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-06-29 07:59:28.686000'),(21481,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-06-29 08:00:44.219000'),(21482,'Thank you so much for your great rating, David!','2020-07-01 09:17:49.822000'),(21483,'Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your kids are feeling better!','2020-07-12 06:23:22.212000'),(21484,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-09 06:32:14.085000'),(21485,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-05 10:52:18.362000'),(21486,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-05 10:53:38.649000'),(21487,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-05 10:54:38.519000'),(21488,'Thank you so much for giving us five stars, Sane!','2020-07-07 09:36:25.916000'),(21489,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-09 06:49:42.327000'),(21490,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-07-09 06:43:29.971000'),(21491,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-09 06:42:48.280000'),(21492,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-08 07:58:15.703000'),(21493,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-08 07:59:02.161000'),(21494,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-08 08:02:08.106000'),(21495,'Thank you so much for giving us five stars, Shi!','2020-07-08 07:59:42.148000'),(21496,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-08 08:01:04.158000'),(21497,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-07-05 11:39:15.080000'),(21498,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-05 11:40:37.206000'),(21499,'We appreciate your great rating, John!','2020-07-05 11:42:06.600000'),(21500,'Thank you so much for giving us five stars, Junior!','2020-07-05 11:42:58.770000'),(21501,'Thank you Letsy!, for your great rating!','2020-07-05 11:43:40.110000'),(21502,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-05 11:46:26.028000'),(21503,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-01 09:29:22.794000'),(21504,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-12 14:43:53.109722'),(21505,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 14:44:16.537473'),(21506,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-07-12 14:44:50.461405'),(21507,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-12 14:45:24.120048'),(21508,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-12 14:46:03.854577'),(21509,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-12 14:47:01.770822'),(21510,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-12 14:48:02.791239'),(21511,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 14:48:31.316432'),(21512,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-12 14:50:06.084804'),(21513,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-12 14:50:32.593089'),(21514,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-12 14:50:55.496639'),(21515,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 14:51:38.366301'),(21516,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 14:52:00.324962'),(21517,'Thank you so much for your review, Guanakillo!. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know, and thanks for choosing us!','2020-07-12 14:54:17.364799'),(21518,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 14:54:34.332040'),(21519,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 14:55:11.865636'),(21520,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 14:56:00.845293'),(21521,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-12 14:56:24.105050'),(21522,'Thank you so much for your feedback. I hope you will let us know why you gave us a three-star rating so that we can learn from our mistakes! We always want our customers to be 100% satisfied, so please let us know what we could have done better at info@ercare24.com. Thank you again for your time and feedback.','2020-07-12 14:56:55.406164'),(21523,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback.','2020-07-12 15:00:11.337485'),(21524,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\r\n with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:00:42.994896'),(21525,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:01:09.049337'),(21526,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:01:36.423346'),(21527,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:01:47.728670'),(21528,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 15:02:02.281427'),(21529,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-07-12 15:04:07.153697'),(21530,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\r\n with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:04:31.698936'),(21531,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:04:55.373626'),(21532,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:05:25.118314'),(21533,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:05:42.196686'),(21534,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:06:59.168528'),(21535,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-12 15:07:36.103974'),(21536,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-12 15:07:59.027869'),(21537,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-12 15:08:24.739894'),(21538,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-12 15:08:39.145771'),(21539,'Thank you so much for your nice review, Lezlie. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-12 15:09:24.063886'),(21540,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 15:09:52.866774'),(21541,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:10:20.915783'),(21542,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-07-12 15:10:50.004932'),(21543,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:11:15.843202'),(21544,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-12 15:12:02.049262'),(21545,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-12 15:12:18.616704'),(21546,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 15:12:46.142343'),(21547,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:13:18.444706'),(21548,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 15:14:26.373764'),(21549,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:15:11.799414'),(21550,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 15:19:20.395806'),(21551,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:19:43.465228'),(21552,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-12 15:19:59.794144'),(21553,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-12 15:20:14.318482'),(21554,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-12 15:20:27.146271'),(21555,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 15:20:41.635706'),(21556,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-12 15:20:54.581530'),(21557,'Thank you so much for your nice review, Patrick. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-12 15:21:17.149005'),(21558,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:21:39.661516'),(21559,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:21:54.180883'),(21560,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:22:17.458053'),(21561,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:22:38.005544'),(21562,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:22:50.555556'),(21563,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-12 15:23:36.599410'),(21564,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-12 15:24:02.108810'),(21565,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:24:34.391676'),(21566,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:24:44.422230'),(21567,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:24:54.462502'),(21568,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-07-12 15:26:10.452726'),(21569,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-12 15:26:42.490484'),(21570,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:27:08.068026'),(21571,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:27:23.767360'),(21572,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:27:41.762968'),(21573,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:28:12.785518'),(21574,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-12 15:28:36.377275'),(21575,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 15:28:50.938158'),(21576,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-07-12 15:29:06.420949'),(21577,'Thank you so much for your nice review, Emily. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-13 06:42:45.361000'),(21578,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-13 06:41:43.550000'),(21579,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-13 06:40:05.793000'),(21580,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-07-12 15:29:06.240000'),(21581,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 15:28:50.763000'),(21582,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-12 15:28:36.208000'),(21583,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:28:12.635000'),(21584,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:27:41.623000'),(21585,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:27:23.632000'),(21586,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:27:07.929000'),(21587,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-12 15:26:42.374000'),(21588,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:24:54.395000'),(21589,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:24:44.357000'),(21590,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:24:34.314000'),(21591,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-12 15:24:02.038000'),(21592,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-12 15:23:36.536000'),(21593,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:22:50.478000'),(21594,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:22:37.922000'),(21595,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:22:17.380000'),(21596,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:21:54.095000'),(21597,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:21:39.571000'),(21598,'Thank you so much for your nice review, Patrick. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-12 15:21:17.011000'),(21599,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-13 14:26:52.070328'),(21600,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-13 14:27:16.503471'),(21601,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-13 14:27:42.569938'),(21602,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-13 14:27:58.965116'),(21603,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\r\n with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-13 14:28:32.062264'),(21604,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-13 14:28:57.762514'),(21605,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-13 14:29:22.284985'),(21606,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-13 14:29:40.688446'),(21607,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-13 14:30:12.115412'),(21608,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-13 14:30:28.760295'),(21609,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-13 14:30:46.568958'),(21610,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your daughter. Thank you for choosing SignatureCare.','2020-07-23 07:37:51.264000'),(21611,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-23 07:38:52.979000'),(21612,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-22 03:50:16.289000'),(21613,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-22 03:50:38.104000'),(21614,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-22 04:02:53.623000'),(21615,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-22 04:03:21.289000'),(21616,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-22 04:03:38.586000'),(21617,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-22 04:06:09.983000'),(21618,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-22 04:07:09.803000'),(21619,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-22 04:07:35.414000'),(21620,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-22 04:09:37.798000'),(21621,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you and your mom. Thank you for choosing SignatureCare.','2020-07-22 04:10:03.912000'),(21622,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-22 04:54:45.090000'),(21623,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-22 04:55:21.396000'),(21624,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-22 04:55:49.925000'),(21625,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-22 04:47:39.838000'),(21626,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-22 04:47:20.538000'),(21627,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-22 04:46:58.628000'),(21628,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-22 04:46:33.300000'),(21629,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-22 04:45:21.175000'),(21630,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-22 04:46:11.317000'),(21631,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-22 04:45:46.528000'),(21632,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-22 04:44:52.290000'),(21633,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-22 04:44:31.607000'),(21634,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2020-07-22 04:44:18.341000'),(21635,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-22 04:43:33.969000'),(21636,'Thank you for your review . We appreciate you choosing SignatureCare!','2020-07-22 04:42:34.389000'),(21637,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-22 04:42:16.969000'),(21638,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-22 04:41:51.264000'),(21639,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-22 04:41:02.352000'),(21640,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-22 04:40:14.306000'),(21641,'Thank you so much for your nice review, Rebecca. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-22 04:40:02.817000'),(21642,'Thank you so much for your great rating, Priya!','2020-07-22 03:49:36.500000'),(21643,'Thank you Chris, for your great rating!','2020-07-21 05:34:09.655000'),(21644,'We appreciate your great rating, Will!','2020-07-21 05:33:55.936000'),(21645,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-21 05:34:49.493000'),(21646,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-21 05:36:24.498000'),(21647,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-21 05:36:42.815000'),(21648,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-21 05:36:01.847000'),(21649,'Thank you so much for your great rating, Virgil!','2020-07-21 05:33:37.878000'),(21650,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-21 05:38:04.555000'),(21651,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-21 05:37:11.653000'),(21652,'Thank you so much for giving us five stars, Kelaiah!','2020-07-21 05:33:10.871000'),(21653,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-21 05:39:25.677000'),(21654,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-21 05:32:22.371000'),(21655,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-21 05:39:48.401000'),(21656,'Thank you so much for your nice review, Mia!. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-21 05:40:29.460000'),(21657,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-21 05:40:52.386000'),(21658,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2020-07-21 05:39:06.136000'),(21659,'Thank you so much for your great rating, Kate!','2020-07-21 05:31:17.635000'),(21660,'Thank you so much for giving us five stars, Grace!','2020-07-21 05:31:04.547000'),(21661,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-20 18:15:38.037000'),(21662,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-20 18:15:57.064000'),(21663,'Thank you so much for giving us five stars, Christopher!','2020-07-20 18:16:20.691000'),(21664,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-20 18:17:14.651000'),(21665,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-20 18:17:38.430000'),(21666,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review','2020-07-20 18:18:24.757000'),(21667,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-20 18:18:40.141000'),(21668,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-20 18:18:59.209000'),(21669,'We appreciate your great rating, pedro!','2020-07-20 18:19:15.515000'),(21670,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-20 18:20:07.096000'),(21671,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-20 18:40:26.504000'),(21672,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-20 18:40:45.884000'),(21673,'Thank you April, for your great rating!','2020-07-20 18:41:05.264000'),(21674,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-20 18:41:48.351000'),(21675,'Thank you so much for giving us five stars, Raul!','2020-07-20 14:15:33.179000'),(21676,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-20 18:49:19.982000'),(21677,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-20 14:23:43.394000'),(21678,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-20 18:50:20.358000'),(21679,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-20 14:23:28.455000'),(21680,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-20 18:50:58.413000'),(21681,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-20 14:22:50.804000'),(21682,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-20 14:22:09.194000'),(21683,'We appreciate your great rating, Nichole!','2020-07-20 14:21:05.556000'),(21684,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-20 14:21:44.736000'),(21685,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-20 19:26:08.004000'),(21686,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-20 19:27:09.903000'),(21687,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-20 19:27:34.005000'),(21688,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-20 19:27:47.420000'),(21689,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-20 19:28:21.210000'),(21690,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-20 19:29:10.978000'),(21691,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-20 19:30:03.643000'),(21692,'Thank you for trusting us with the care of your son. We appreciate the great feedback and are very glad to hear that our team took such good care of him.','2020-07-20 19:30:51.837000'),(21693,'Thank you so much for giving us five stars, Kirstyn!','2020-07-20 18:54:46.189000'),(21694,'Thank you for your review. We\'re glad our team was able to deliver an exceptional experience. If you have any additional questions, don\'t hesitate to reach back out.','2020-07-20 19:31:28.000000'),(21695,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-20 20:01:54.692000'),(21696,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-20 20:02:38.339000'),(21697,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-20 20:03:04.012000'),(21698,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-20 20:04:04.699000'),(21699,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-20 20:03:40.416000'),(21700,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-20 20:04:27.519000'),(21701,'Thank you so much for your nice review, Paula. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-20 20:05:04.368000'),(21702,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-20 20:05:19.505000'),(21703,'Thank you so much for your review, Monica. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-20 18:54:07.834000'),(21704,'Thank you so much for your great rating, Victoria!','2020-07-20 18:53:38.872000'),(21705,'Thank you so much for giving us five stars, Miranda!','2020-07-20 18:53:24.701000'),(21706,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-20 20:05:57.953000'),(21707,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-20 20:06:32.032000'),(21708,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-20 20:07:02.231000'),(21709,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-20 20:07:20.553000'),(21710,'Thank you J , for your great rating!','2020-07-20 18:53:00.327000'),(21711,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-20 20:08:02.305000'),(21712,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-20 20:08:23.296000'),(21713,'We appreciate your great rating, TW!','2020-07-20 18:52:44.052000'),(21714,'Thank you so much for your great rating, Stephanie!','2020-07-20 18:52:25.496000'),(21715,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-20 20:09:17.685000'),(21716,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-20 20:09:37.970000'),(21717,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-20 20:10:09.707000'),(21718,'Thank you so much for giving us five stars, Heather!','2020-07-20 18:52:07.981000'),(21719,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-19 06:17:35.653000'),(21720,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-19 06:18:05.514000'),(21721,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-19 06:18:32.542000'),(21722,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-07-19 06:19:15.075000'),(21723,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-19 06:20:13.214000'),(21724,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-19 06:19:54.394000'),(21725,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-19 06:21:53.744000'),(21726,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-19 06:21:12.563000'),(21727,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-19 06:21:32.406000'),(21728,'Thank you so much for your great rating, Caden!','2020-07-19 06:22:11.504000'),(21729,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-19 08:02:43.894000'),(21730,'Thank you so much for giving us five stars, Arayuvit!','2020-07-19 08:03:00.900000'),(21731,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-19 08:03:36.664000'),(21732,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-19 08:05:16.271000'),(21733,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-19 08:04:40.524000'),(21734,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-19 08:05:52.506000'),(21735,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-19 08:06:37.990000'),(21736,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-19 08:07:09.341000'),(21737,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-19 08:04:11.268000'),(21738,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-19 08:24:50.384000'),(21739,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-19 08:23:28.350000'),(21740,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-19 08:24:03.653000'),(21741,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-19 08:22:15.147000'),(21742,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-19 08:22:33.444000'),(21743,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-19 08:09:20.511000'),(21744,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-19 08:21:42.296000'),(21745,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-19 08:20:33.907000'),(21746,'Thank you so much for your nice review, Madi. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-19 08:19:46.363000'),(21747,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-19 08:19:07.215000'),(21748,'We appreciate your great rating, laura!','2020-07-19 08:08:33.657000'),(21749,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-19 07:55:54.998000'),(21750,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-19 07:56:27.975000'),(21751,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-19 07:56:57.501000'),(21752,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-19 07:57:14.275000'),(21753,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-19 07:59:07.410000'),(21754,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-19 07:59:49.488000'),(21755,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-19 07:58:29.871000'),(21756,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-07-19 08:00:45.607000'),(21757,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-19 08:01:16.749000'),(21758,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-19 08:01:50.873000'),(21759,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-13 14:27:42.352000'),(21760,'Thank you so much for giving us five stars, Johnny!','2020-07-16 07:03:34.238000'),(21761,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-15 06:38:58.628000'),(21762,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-13 14:30:28.596000'),(21763,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-13 14:27:16.368000'),(21764,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-13 14:26:51.927000'),(21765,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-12 15:20:27.038000'),(21766,'Thank you renemunoz, for your great rating!','2020-07-14 20:48:33.815000'),(21767,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-12 15:08:38.953000'),(21768,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-12 15:07:35.920000'),(21769,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-15 07:17:04.197000'),(21770,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-15 07:17:35.936000'),(21771,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-15 07:17:56.155000'),(21772,'We appreciate your great rating, Syra!','2020-07-14 20:48:50.061000'),(21773,'Thank you so much for your great rating, Christina!','2020-07-14 20:49:08.140000'),(21774,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-15 07:18:55.256000'),(21775,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-15 07:19:30.934000'),(21776,'Thank you so much for giving us five stars, Frediculous!','2020-07-14 20:49:26.446000'),(21777,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-15 07:20:33.045000'),(21778,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-15 07:21:50.109000'),(21779,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-15 07:22:09.866000'),(21780,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-15 07:23:05.919000'),(21781,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-15 07:24:09.265000'),(21782,'Thank you Lynn, for your great rating!','2020-07-14 20:50:11.364000'),(21783,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-07-15 07:25:38.862000'),(21784,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-07-15 07:27:09.923000'),(21785,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-15 07:34:51.912000'),(21786,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-15 07:33:46.632000'),(21787,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-15 07:34:05.140000'),(21788,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 16:33:13.422000'),(21789,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 16:33:03.127000'),(21790,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-08-09 16:32:52.323000'),(21791,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-08-09 16:32:45.028000'),(21792,'Thank you so much for giving us five stars, Sara!','2020-08-09 16:32:29.976000'),(21793,'Thank you Jennifer, for your great rating!','2020-08-09 16:32:17.052000'),(21794,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 16:31:54.869000'),(21795,'Thank you Vesta, for your great rating!','2020-08-09 16:31:41.626000'),(21796,'We appreciate your great rating, Javier!','2020-07-28 16:43:37.867000'),(21797,'Thank you so much for giving us five stars, Mena!','2020-07-26 15:02:48.322000'),(21798,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-26 15:02:31.015000'),(21799,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-23 07:40:21.945000'),(21800,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-23 07:39:17.094000'),(21801,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-23 07:41:03.260000'),(21802,'Thank you so much for giving us five stars, Adriana!','2020-07-22 03:48:52.810000'),(21803,'We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-21 19:59:21.518000'),(21804,'Thank you so much for your great rating, Lucy!','2020-07-21 05:18:05.235000'),(21805,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-20 05:53:27.698000'),(21806,'There\'s never a fun time to visit the ER, but we will make your visit with us as quick and as painless as possible. Thank you for letting us know that our SignatureCare team is doing a good job -- it means a lot to us.','2020-07-19 06:36:01.412000'),(21807,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-16 07:02:41.647000'),(21808,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-13 14:29:22.132000'),(21809,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 15:14:26.128000'),(21810,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:11:15.626000'),(21811,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-12 15:08:24.555000'),(21812,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-14 20:29:13.647000'),(21813,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-08-09 15:22:08.582000'),(21814,'Thank you so much for giving us five stars, Faye!','2020-08-09 15:20:26.163000'),(21815,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 06:22:30.144000'),(21816,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-09 06:23:17.458000'),(21817,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-09 06:27:06.566000'),(21818,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 06:24:51.762000'),(21819,'Thank you so much for giving us five stars, Brennan!','2020-08-09 06:25:13.189000'),(21820,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 06:26:54.658000'),(21821,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-09 08:21:11.033000'),(21822,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-09 08:22:40.694000'),(21823,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 08:24:40.747000'),(21824,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-09 08:26:27.069000'),(21825,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-09 08:28:38.164000'),(21826,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 08:29:39.765000'),(21827,'Thank you so much for your nice review, Marco. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-08-09 08:29:58.221000'),(21828,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 09:09:37.187000'),(21829,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you and your wife. Thank you for choosing SignatureCare.','2020-08-09 09:10:12.015000'),(21830,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 09:10:32.425000'),(21831,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 09:12:47.628000'),(21832,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-08-09 09:14:39.047000'),(21833,'Thank you so much for giving us five stars, Kristin!','2020-08-09 08:26:49.245000'),(21834,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 09:14:02.390000'),(21835,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-08-09 09:20:16.979000'),(21836,'Thank you Anaya, for your great rating!','2020-08-09 08:27:49.656000'),(21837,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-09 09:21:08.809000'),(21838,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-09 09:17:54.356000'),(21839,'We appreciate your great rating, Enrique!','2020-08-09 08:27:31.893000'),(21840,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 09:17:10.055000'),(21841,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-08-09 09:16:06.943000'),(21842,'Thank you so much for your great rating, Casey!','2020-08-09 08:27:17.015000'),(21843,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 09:15:52.503000'),(21844,'Thank you pepe, for your great rating!','2020-07-28 11:45:33.410000'),(21845,'We appreciate your great rating, Rebeca!','2020-07-28 11:45:48.044000'),(21846,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-07-27 16:05:42.114000'),(21847,'Thank you so much for your nice review, Mark. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-26 14:44:34.152000'),(21848,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-26 06:33:24.114000'),(21849,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-07-23 06:29:27.393000'),(21850,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-19 05:04:07.751000'),(21851,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-19 05:04:52.730000'),(21852,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-16 06:45:55.337000'),(21853,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-15 06:50:30.651000'),(21854,'We appreciate your great rating, Liz!','2020-07-15 06:49:59.967000'),(21855,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 15:57:42.415000'),(21856,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:57:34.096000'),(21857,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 15:57:23.751000'),(21858,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-27 16:28:53.796000'),(21859,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-09 15:57:13.353000'),(21860,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-08-09 15:57:01.899000'),(21861,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 15:56:55.111000'),(21862,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-09 15:56:48.224000'),(21863,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-29 14:32:52.687000'),(21864,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-07-28 16:42:33.545000'),(21865,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-27 16:28:34.397000'),(21866,'Thank you Armando, for your great rating!','2020-07-27 16:28:18.097000'),(21867,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-26 14:58:08.565000'),(21868,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-26 14:57:55.631000'),(21869,'Thank you so much for giving us five stars, Michael!','2020-07-26 14:57:36.868000'),(21870,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-26 14:57:15.595000'),(21871,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-26 14:56:44.429000'),(21872,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-23 06:58:26.151000'),(21873,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-23 07:16:28.375000'),(21874,'We appreciate your great rating, Jenna!','2020-07-23 06:56:53.665000'),(21875,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-23 07:17:22.771000'),(21876,'Thank you so much for your great rating, Jose!','2020-07-23 06:56:31.845000'),(21877,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-23 07:18:00.018000'),(21878,'We appreciate your great rating, faze!','2020-07-22 03:46:46.854000'),(21879,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-22 03:47:54.672000'),(21880,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-21 05:19:41.242000'),(21881,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-21 05:20:15.560000'),(21882,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-19 05:55:22.580000'),(21883,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-19 05:56:44.155000'),(21884,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-07-19 05:58:41.559000'),(21885,'We appreciate your great rating, Stephanie!','2020-07-19 05:57:08.829000'),(21886,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-15 06:55:28.276000'),(21887,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-15 06:57:36.380000'),(21888,'We appreciate your great rating, Zulma!','2020-07-14 11:56:33.887000'),(21889,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-13 14:28:57.605000'),(21890,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-12 15:19:59.675000'),(21891,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-09 16:36:39.952000'),(21892,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-08-09 16:36:33.681000'),(21893,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 16:36:15.305000'),(21894,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 16:35:57.910000'),(21895,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-09 16:35:49.146000'),(21896,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 16:35:34.248000'),(21897,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-09 16:35:22.480000'),(21898,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-09 16:35:06.658000'),(21899,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 16:34:51.846000'),(21900,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-08-09 16:34:29.635000'),(21901,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-09 16:34:07.468000'),(21902,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 16:33:48.053000'),(21903,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 16:33:40.384000'),(21904,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-29 14:33:23.952000'),(21905,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-29 14:33:11.144000'),(21906,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-28 17:06:37.361000'),(21907,'Thank you so much for giving us five stars, Elvin!','2020-07-28 17:03:49.263000'),(21908,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-28 17:03:32.214000'),(21909,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 16:31:17.055000'),(21910,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 16:30:58.643000'),(21911,'We appreciate your great rating, Ana!','2020-08-09 16:30:46.293000'),(21912,'Thank you so much for giving us five stars, Luis!','2020-08-09 16:30:23.210000'),(21913,'Thank you so much for your great rating, Karina!','2020-08-09 16:30:12.374000'),(21914,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-09 16:29:55.421000'),(21915,'Thank you so much for your nice review, Ally. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-08-09 16:29:31.215000'),(21916,'We appreciate your great rating, Kokeb!','2020-08-09 16:29:10.011000'),(21917,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-09 16:28:56.071000'),(21918,'Thank you Erlinda, for your great rating!','2020-08-09 16:28:41.619000'),(21919,'We appreciate your great rating, Maria!','2020-08-09 16:28:24.727000'),(21920,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 16:28:12.208000'),(21921,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-09 16:28:02.565000'),(21922,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-09 16:27:54.177000'),(21923,'Thank you so much for your nice review, Griselda. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know, and thanks for choosing us!','2020-08-09 16:27:39.184000'),(21924,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-09 16:26:50.604000'),(21925,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 16:26:37.815000'),(21926,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-09 16:26:26.339000'),(21927,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 16:26:20.199000'),(21928,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-09 16:26:09.861000'),(21929,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-09 16:25:52.525000'),(21930,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-09 16:25:39.596000'),(21931,'We appreciate your great rating, Nick!','2020-08-09 16:25:28.713000'),(21932,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 16:25:15.160000'),(21933,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 16:25:00.885000'),(21934,'Thank you so much for your great rating!','2020-08-09 16:24:44.163000'),(21935,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-09 16:24:31.191000'),(21936,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-09 16:23:52.424000'),(21937,'Thank you so much for giving us five stars, Morgan!','2020-08-09 16:23:32.406000'),(21938,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 16:23:15.779000'),(21939,'Thank you so much for your great rating, Meagan!','2020-08-09 16:22:34.196000'),(21940,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 16:22:08.505000'),(21941,'Thank you Raven, for your great rating!','2020-08-09 16:21:55.298000'),(21942,'Thank you so much for giving us five stars, Nguyen!','2020-08-09 16:21:40.789000'),(21943,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 16:21:18.651000'),(21944,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-08-09 16:21:08.744000'),(21945,'We appreciate your great rating, Evrin!','2020-07-27 16:30:02.245000'),(21946,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-26 15:02:06.283000'),(21947,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-26 15:01:55.423000'),(21948,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-19 06:36:42.825000'),(21949,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-16 07:01:45.433000'),(21950,'Thank you so much for giving us five stars, Poiised!','2020-07-15 07:03:01.944000'),(21951,'Thank you so much for your nice review, Daphne. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-15 07:05:19.165000'),(21952,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-14 12:04:29.290000'),(21953,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 15:09:52.667000'),(21954,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-29 14:29:24.960000'),(21955,'Thank you so much for giving us five stars, Carlos!','2020-07-28 16:36:55.967000'),(21956,'Thank you so much for your great rating, Antonio!','2020-07-28 16:36:39.904000'),(21957,'Thank you Heidi, for your great rating!','2020-07-27 16:06:59.599000'),(21958,'We appreciate your great rating, Tania!','2020-07-23 06:34:52.150000'),(21959,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-23 06:35:16.362000'),(21960,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-19 05:10:35.236000'),(21961,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-19 05:08:53.966000'),(21962,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-19 05:07:46.416000'),(21963,'Thank you so much for your review, mavis. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-19 05:07:05.369000'),(21964,'Thank you so much for giving us five stars, Jeanie!','2020-07-14 09:45:41.202000'),(21965,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-12 15:20:14.194000'),(21966,'Thank you so much for giving us five stars, Rebecca!','2020-07-13 06:43:55.632000'),(21967,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 15:19:20.258000'),(21968,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:01:36.375000'),(21969,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-13 07:00:58.783000'),(21970,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-13 07:01:23.655000'),(21971,'We appreciate your great rating, Margaret!','2020-07-13 07:01:43.535000'),(21972,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-13 07:02:04.979000'),(21973,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-13 07:02:24.095000'),(21974,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-13 07:02:40.570000'),(21975,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-13 07:03:01.432000'),(21976,'Thank you tre, for your great rating!','2020-07-13 07:03:29.942000'),(21977,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-07-13 07:04:42.074000'),(21978,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 15:43:16.647000'),(21979,'We appreciate your great rating, Jennyfer!','2020-08-09 15:42:49.671000'),(21980,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:42:34.909000'),(21981,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 15:42:14.836000'),(21982,'Thank you so much for giving us five stars, Stormie!','2020-08-09 15:41:38.025000'),(21983,'Thank you so much for your nice review, Martha. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-08-09 15:41:19.004000'),(21984,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-08-09 15:40:49.015000'),(21985,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-09 15:40:21.518000'),(21986,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-09 15:39:56.764000'),(21987,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-09 15:39:16.212000'),(21988,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 15:38:25.227000'),(21989,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 15:38:12.405000'),(21990,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-09 15:38:01.007000'),(21991,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 15:37:53.355000'),(21992,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 15:37:45.765000'),(21993,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 15:37:34.693000'),(21994,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 15:37:12.826000'),(21995,'We appreciate your feedback and the great rating you gave us.','2020-08-09 15:37:22.019000'),(21996,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:36:53.110000'),(21997,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-09 15:36:42.592000'),(21998,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-08-09 15:36:28.589000'),(21999,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 15:35:54.005000'),(22000,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-09 15:35:35.623000'),(22001,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 15:33:55.448000'),(22002,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:33:11.782000'),(22003,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-08-09 15:33:41.381000'),(22004,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 15:33:25.656000'),(22005,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-29 14:30:45.350000'),(22006,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-29 14:30:26.698000'),(22007,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-29 14:30:20.234000'),(22008,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-29 14:30:12.559000'),(22009,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-07-29 14:30:01.369000'),(22010,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-07-29 14:29:52.173000'),(22011,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-07-28 16:40:26.170000'),(22012,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-28 16:40:06.345000'),(22013,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-28 16:39:41.328000'),(22014,'Thank you so much for your great rating!','2020-07-28 16:39:23.742000'),(22015,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-28 16:38:57.805000'),(22016,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-27 16:26:33.433000'),(22017,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-27 16:14:37.094000'),(22018,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-27 16:14:24.320000'),(22019,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-27 16:14:14.069000'),(22020,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-07-27 16:14:01.672000'),(22021,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-27 16:13:37.691000'),(22022,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-27 16:13:50.964000'),(22023,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-27 16:13:21.167000'),(22024,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-27 16:13:05.940000'),(22025,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-26 14:54:33.446000'),(22026,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-26 14:54:21.090000'),(22027,'Thank you so much for your great rating, Pedro!','2020-08-09 15:48:39.206000'),(22028,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 15:47:47.834000'),(22029,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-09 15:47:03.552000'),(22030,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-09 15:46:16.478000'),(22031,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-08-09 15:46:01.489000'),(22032,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 15:45:13.940000'),(22033,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-26 07:00:52.959000'),(22034,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\r\n with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-13 14:28:31.919000'),(22035,'Thank you so much for your great rating, Lopez!','2020-07-20 05:36:04.661000'),(22036,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-19 05:01:40.851000'),(22037,'Thank you so much for your great rating, Mostafa!','2020-07-19 05:00:46.366000'),(22038,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-07-16 06:58:09.213000'),(22039,'Thank you so much for your great rating, McKinley!','2020-07-14 09:43:05.791000'),(22040,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-13 14:30:11.956000'),(22041,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-07-12 15:04:07.036000'),(22042,'Thank you so much for giving us five stars, Katherine!','2020-07-14 09:43:32.862000'),(22043,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:01:47.677000'),(22044,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 14:55:11.866000'),(22045,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 14:52:00.312000'),(22046,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 14:51:38.364000'),(22047,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-12 14:50:32.583000'),(22048,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-12 14:50:06.066000'),(22049,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 14:48:31.287000'),(22050,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-12 14:48:02.767000'),(22051,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-12 14:47:01.710000'),(22052,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-12 14:46:03.838000'),(22053,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-12 14:45:24.072000'),(22054,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-07-12 14:44:50.436000'),(22055,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 14:44:16.499000'),(22056,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-12 14:43:53.076000'),(22057,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-14 11:22:33.574000'),(22058,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-14 11:25:25.460000'),(22059,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-14 11:25:49.201000'),(22060,'We appreciate your great rating, Delta!','2020-07-14 09:43:58.467000'),(22061,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-14 11:26:14.144000'),(22062,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-14 11:26:30.596000'),(22063,'Thank you so much for giving us five stars, Paiz!','2020-08-09 15:58:12.122000'),(22064,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-09 15:58:00.463000'),(22065,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-28 16:42:56.677000'),(22066,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-28 16:42:48.963000'),(22067,'Thank you so much for giving us five stars, Mariam!','2020-07-27 16:29:23.651000'),(22068,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-26 14:59:03.505000'),(22069,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-21 05:28:46.946000'),(22070,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-21 05:29:35.577000'),(22071,'Thank you Agnes, for your great rating!','2020-07-19 05:59:39.262000'),(22072,'Thank you so much for giving us five stars, Nalu!','2020-07-16 06:52:33.150000'),(22073,'Thank you so much for your great rating, Cindy!','2020-07-16 06:52:52.767000'),(22074,'Thank you so much for giving us five stars, Monica!','2020-07-15 06:21:47.618000'),(22075,'Thank you Michael, for your great rating!','2020-07-14 11:58:50.120000'),(22076,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-14 11:59:13.815000'),(22077,'Thank you so much for giving us five stars, Cyndy!','2020-07-14 11:59:29.621000'),(22078,'Thank you so much for your great rating, Kizzie!','2020-07-14 11:59:43.721000'),(22079,'We appreciate your great rating, JOHN!','2020-07-14 11:59:57.937000'),(22080,'Thank you Daisy, for your great rating!','2020-07-14 12:00:18.276000'),(22081,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\r\n with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:00:42.986000'),(22082,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-15 06:26:16.403000'),(22083,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-15 06:26:40.157000'),(22084,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-15 06:27:47.136000'),(22085,'Thank you so much for giving us five stars, Uyenlee!','2020-07-14 20:52:19.460000'),(22086,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-15 06:28:09.637000'),(22087,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-15 06:29:23.785000'),(22088,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-15 06:28:38.086000'),(22089,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 15:32:37.552000'),(22090,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:32:24.420000'),(22091,'Thank you so much for your nice review, Lee. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us! Hope your mom is feeling well.','2020-08-09 15:31:59.687000'),(22092,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-28 16:38:25.098000'),(22093,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-28 16:38:01.610000'),(22094,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-23 06:37:20.051000'),(22095,'We appreciate your great rating, Nadia!','2020-07-19 05:35:21.767000'),(22096,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-15 06:58:31.359000'),(22097,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-23 06:37:10.298000'),(22098,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:15:11.556000'),(22099,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-12 15:05:24.976000'),(22100,'We are so sorry to hear about your recent emergency, but SignatureCare is here 24 hours a day, 365 days a year when or if you need us. Thank you for giving us the chance to care for you and for your nice review. We appreciate and value your feedback.','2020-07-12 15:00:11.340000'),(22101,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-12 14:56:24.106000'),(22102,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-14 10:54:51.758000'),(22103,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-14 10:55:21.226000'),(22104,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2020-07-14 10:57:16.935000'),(22105,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-14 10:58:10.895000'),(22106,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-14 10:58:27.249000'),(22107,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-14 10:58:55.256000'),(22108,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-14 10:59:40.388000'),(22109,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 09:24:34.399000'),(22110,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-09 09:23:43.499000'),(22111,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-29 14:29:08.202000'),(22112,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-29 14:28:53.988000'),(22113,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-28 16:36:06.650000'),(22114,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-27 16:06:08.981000'),(22115,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-26 06:33:54.729000'),(22116,'Thank you so much for giving us five stars, John!','2020-07-23 06:29:58.827000'),(22117,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-23 06:30:19.745000'),(22118,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-21 05:04:59.002000'),(22119,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-20 20:13:17.503000'),(22120,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-20 05:38:45.498000'),(22121,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-19 05:06:18.002000'),(22122,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-16 06:46:54.067000'),(22123,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-13 14:30:46.395000'),(22124,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-13 06:38:14.574000'),(22125,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last three stars!','2020-07-19 05:12:06.823000'),(22126,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-15 06:52:07.975000'),(22127,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-12 15:02:02.204000'),(22128,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope your son is feeling better!','2020-07-13 07:12:50.381000'),(22129,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-14 10:45:28.638000'),(22130,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-14 10:45:53.770000'),(22131,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-14 10:46:32.992000'),(22132,'Thank you so much for your review, Skylar. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-14 10:47:01.667000'),(22133,'Thank you so much for your nice review, Mona. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-14 10:47:32.438000'),(22134,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 16:19:58.746000'),(22135,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-08-09 16:19:32.533000'),(22136,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-09 16:19:10.137000'),(22137,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 16:18:59.622000'),(22138,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-09 16:18:35.192000'),(22139,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 16:18:19.232000'),(22140,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 16:18:06.512000'),(22141,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-09 16:17:38.219000'),(22142,'We appreciate your great rating, Justin!','2020-08-09 16:17:16.621000'),(22143,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-09 16:16:52.323000'),(22144,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 16:16:33.127000'),(22145,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-08-09 16:16:14.576000'),(22146,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 16:15:26.624000'),(22147,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 16:15:08.139000'),(22148,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 16:14:22.453000'),(22149,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-28 16:43:17.655000'),(22150,'We appreciate your great rating, Vanessa!','2020-07-27 16:29:50.238000'),(22151,'Thank you so much for giving us five stars, Olga!','2020-07-26 15:00:55.026000'),(22152,'Thank you Debi, for your great rating!','2020-07-26 15:00:41.274000'),(22153,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-07-26 15:00:14.283000'),(22154,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-26 14:59:49.959000'),(22155,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-26 14:59:28.784000'),(22156,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-23 07:43:34.845000'),(22157,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-23 07:42:59.368000'),(22158,'Thank you so much for your great rating, Alexis!','2020-07-23 07:41:34.521000'),(22159,'Hi there. We are sorry to hear that you were unhappy with our billing processes. We’d like to get more information about your experience. Can you email our billing manager at info@ercare24.com with your full name, date of service and location of service so that he can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-21 05:17:42.699000'),(22160,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-20 05:50:50.456000'),(22161,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-19 06:48:55.898000'),(22162,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-07-19 06:49:45.135000'),(22163,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-19 06:50:17.078000'),(22164,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-19 06:50:54.892000'),(22165,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-16 07:01:02.368000'),(22166,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mother. Thank you for choosing SignatureCare.','2020-07-15 07:00:58.020000'),(22167,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-15 07:02:36.095000'),(22168,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-14 12:02:06.163000'),(22169,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-13 14:29:40.531000'),(22170,'Thank you jesus rafael, for your great rating!','2020-07-14 12:01:23.515000'),(22171,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-12 15:20:54.462000'),(22172,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 15:20:41.528000'),(22173,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-12 15:12:01.826000'),(22174,'Thank you so much for giving us five stars, Ashle.','2020-07-14 12:02:33.119000'),(22175,'Thank you so much for your great rating, rjz!','2020-07-14 12:02:46.214000'),(22176,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:10:20.710000'),(22177,'Thank you so much for your nice review, Lezlie. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-12 15:09:23.866000'),(22178,'Thank you so much for your review, Clarissa. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-08-09 09:26:36.477000'),(22179,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-08-09 15:30:55.582000'),(22180,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 15:30:43.645000'),(22181,'We appreciate your feedback and the great rating you gave us.','2020-08-09 15:30:30.885000'),(22182,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 15:30:16.987000'),(22183,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-08-09 15:30:08.335000'),(22184,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 15:29:51.250000'),(22185,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-08-09 15:29:40.327000'),(22186,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 15:29:26.447000'),(22187,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-09 15:29:13.652000'),(22188,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-08-09 15:28:54.019000'),(22189,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:28:27.536000'),(22190,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:28:33.861000'),(22191,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 15:27:30.585000'),(22192,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 15:27:19.026000'),(22193,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 15:27:05.227000'),(22194,'Thank you Dahila, for your great rating!','2020-08-09 15:26:46.154000'),(22195,'We appreciate your great rating, Kayla!','2020-08-09 15:26:27.497000'),(22196,'Thank you so much for giving us five stars, Paula!','2020-08-09 15:26:10.186000'),(22197,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 15:25:48.175000'),(22198,'We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center. Thank you for the very nice review.','2020-08-09 15:25:37.984000'),(22199,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 15:25:27.898000'),(22200,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-09 15:24:54.581000'),(22201,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:23:25.839000'),(22202,'We appreciate your feedback and the great rating you gave us.','2020-08-09 15:23:01.370000'),(22203,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-27 16:12:45.915000'),(22204,'Thank you so much for your great rating, Rocky!','2020-07-27 16:12:32.020000'),(22205,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-27 16:12:04.335000'),(22206,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-27 16:11:54.410000'),(22207,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-27 16:11:38.990000'),(22208,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-27 16:11:30.290000'),(22209,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-07-27 16:11:22.905000'),(22210,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-27 16:11:04.897000'),(22211,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-07-27 16:10:40.793000'),(22212,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-27 16:10:16.045000'),(22213,'We appreciate your great rating!','2020-07-27 16:08:04.132000'),(22214,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-26 06:40:01.249000'),(22215,'Thank you so much for your great rating, jaylee!','2020-07-26 06:39:18.514000'),(22216,'Thank you so much for giving us five stars, Julio!','2020-07-26 06:39:04.726000'),(22217,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-26 06:38:38.019000'),(22218,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-26 06:38:04.778000'),(22219,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-26 06:37:21.264000'),(22220,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-26 06:36:43.302000'),(22221,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-22 03:39:37.049000'),(22222,'Thank you so much for giving us five stars, Inez!','2020-07-21 05:06:16.466000'),(22223,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-21 05:06:47.835000'),(22224,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-21 05:07:55.910000'),(22225,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-21 05:07:20.070000'),(22226,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-21 05:12:04.084000'),(22227,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-21 05:13:49.816000'),(22228,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 06:15:15.250000'),(22229,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 06:15:29.119000'),(22230,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 06:16:41.567000'),(22231,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-09 06:17:28.839000'),(22232,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-08-09 15:20:01.404000'),(22233,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-28 16:35:43.463000'),(22234,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-26 06:31:07.889000'),(22235,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-20 20:12:12.844000'),(22236,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-20 05:38:22.013000'),(22237,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-09 09:36:08.212000'),(22238,'Thank you so much for giving us five stars, Edward!','2020-08-09 09:36:53.981000'),(22239,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-09 09:37:36.275000'),(22240,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 09:38:19.183000'),(22241,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2020-08-09 09:39:38.389000'),(22242,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-28 16:37:30.647000'),(22243,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-26 06:35:22.833000'),(22244,'Thank you so much for giving us five stars, Crystal!','2020-07-26 06:34:19.948000'),(22245,'Thank you so much for giving us five stars, Olivia!','2020-07-23 06:35:53.678000'),(22246,'Thank you so much for your great rating, Taha!','2020-07-23 06:36:11.138000'),(22247,'Thank you so much for giving us five stars, Aaron!','2020-07-22 03:38:53.423000'),(22248,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-21 05:05:30.307000'),(22249,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-19 05:11:10.540000'),(22250,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-15 06:51:30.860000'),(22251,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-14 09:46:08.695000'),(22252,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-14 09:46:48.572000'),(22253,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-07-12 15:10:49.796000'),(22254,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-13 07:08:37.138000'),(22255,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-13 07:08:41.410000'),(22256,'We appreciate your great rating, Trenae!','2020-07-13 07:08:57.967000'),(22257,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-13 07:10:44.597000'),(22258,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 15:56:29.451000'),(22259,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-09 15:56:20.913000'),(22260,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-09 15:56:14.161000'),(22261,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-09 15:56:01.932000'),(22262,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 15:55:53.396000'),(22263,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 15:55:38.722000'),(22264,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 15:55:26.322000'),(22265,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-09 15:55:12.322000'),(22266,'We appreciate your feedback and the great rating you gave us.','2020-08-09 15:54:52.160000'),(22267,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 15:54:34.709000'),(22268,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-09 15:54:20.519000'),(22269,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-09 15:54:06.422000'),(22270,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 15:53:38.228000'),(22271,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-09 15:51:29.399000'),(22272,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 15:50:40.381000'),(22273,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-08-09 15:50:01.873000'),(22274,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-09 15:49:34.169000'),(22275,'Thank you so much for your great rating, Emma!','2020-08-09 15:49:08.504000'),(22276,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-29 14:32:37.115000'),(22277,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-29 14:31:58.707000'),(22278,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-29 14:31:46.001000'),(22279,'Thank you so much for giving us five stars, Blanca!','2020-07-29 14:31:27.755000'),(22280,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-29 14:31:12.041000'),(22281,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-28 16:42:02.244000'),(22282,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-28 16:41:50.067000'),(22283,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-28 16:41:39.130000'),(22284,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-28 16:41:11.696000'),(22285,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-27 16:27:55.692000'),(22286,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-27 16:27:34.753000'),(22287,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-27 16:27:23.005000'),(22288,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-27 16:27:17.635000'),(22289,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-27 16:27:10.026000'),(22290,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-27 16:27:01.417000'),(22291,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-27 16:26:49.084000'),(22292,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-26 14:56:23.202000'),(22293,'Thank you so much for giving us five stars, Dawn!','2020-07-26 14:56:11.045000'),(22294,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-26 14:55:52.154000'),(22295,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-26 14:55:43.498000'),(22296,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-26 14:55:33.386000'),(22297,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-26 14:55:19.311000'),(22298,'Thank you so much for your great rating!','2020-07-26 14:55:03.333000'),(22299,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-23 07:22:02.211000'),(22300,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-23 07:22:21.477000'),(22301,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-23 07:23:12.030000'),(22302,'Thank you so much for your great rating, Jakara!','2020-07-23 07:23:38.697000'),(22303,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-23 07:24:08.083000'),(22304,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-23 07:24:50.071000'),(22305,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-23 07:25:06.387000'),(22306,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-23 07:25:44.050000'),(22307,'We appreciate your great rating, Carla!','2020-07-23 07:26:04.841000'),(22308,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 16:57:18.472590'),(22309,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 16:57:42.514565'),(22310,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 16:57:54.944434'),(22311,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 16:58:17.600184'),(22312,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 16:58:40.167282'),(22313,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 16:58:55.710278'),(22314,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 16:58:57.474695'),(22315,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 16:59:18.160330'),(22316,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 16:59:33.358895'),(22317,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:00:01.670093'),(22318,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 17:00:23.279788'),(22319,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:00:37.736792'),(22320,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2020-08-09 17:01:36.063898'),(22321,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-09 17:01:52.905352'),(22322,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:02:13.782704'),(22323,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-08-09 17:02:46.602129'),(22324,'Thank you so much for your nice review, Susan. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us! Hope your son is feeling well.','2020-08-09 17:04:18.055251'),(22325,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:04:34.410912'),(22326,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-09 17:04:46.904353'),(22327,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 17:05:08.432895'),(22328,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 17:05:40.327240'),(22329,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 17:06:23.511066'),(22330,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:06:48.816505'),(22331,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:07:03.836949'),(22332,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team m','2020-08-09 17:07:56.849291'),(22333,'Thank you so much for your nice review, Jackson. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-08-09 17:09:17.688133'),(22334,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-08-09 17:09:45.147487'),(22335,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:10:01.444961'),(22336,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-09 17:10:13.939970'),(22337,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 17:10:32.891682'),(22338,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:11:13.607392'),(22339,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:11:29.271618'),(22340,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:11:43.938859'),(22341,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 17:12:02.666332'),(22342,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-09 17:12:32.597937'),(22343,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-09 17:12:51.544800'),(22344,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 17:13:09.833577'),(22345,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:13:28.033557'),(22346,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 17:14:13.229820'),(22347,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:14:38.033615'),(22348,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-09 17:15:13.505972'),(22349,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-09 17:15:41.800615'),(22350,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:16:06.591453'),(22351,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-09 17:16:27.683256'),(22352,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-09 17:16:43.475275'),(22353,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-09 17:17:07.344029'),(22354,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 17:17:32.445614'),(22355,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:17:51.021169'),(22356,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-09 17:16:27.642000'),(22357,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-09 17:15:41.638000'),(22358,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-09 17:15:13.424000'),(22359,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:14:37.984000'),(22360,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 17:14:13.173000'),(22361,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:13:27.982000'),(22362,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 17:13:09.786000'),(22363,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:17:50.988000'),(22364,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 17:17:32.360000'),(22365,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-09 17:17:07.308000'),(22366,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-09 17:16:43.429000'),(22367,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:16:06.548000'),(22368,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 14:48:33.488391'),(22369,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 14:48:54.125557'),(22370,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-08-10 14:49:27.599017'),(22371,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-08-10 14:49:59.788885'),(22372,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 14:50:13.401117'),(22373,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-08-10 14:50:44.912127'),(22374,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 14:51:12.394528'),(22375,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-08-10 14:51:26.581840'),(22376,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 14:51:38.773654'),(22377,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 14:52:00.500980'),(22378,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 14:52:22.098374'),(22379,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 14:52:44.414748'),(22380,'Thank you for your review and rating. We appreciate you choosing SignatureCare!','2020-08-10 14:53:18.700538'),(22381,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-10 14:53:52.909124'),(22382,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 14:54:06.990144'),(22383,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-10 14:54:26.502003'),(22384,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 14:54:42.481539'),(22385,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 14:54:56.445338'),(22386,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-10 14:55:20.925040'),(22387,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 14:55:36.456067'),(22388,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 14:55:53.988772'),(22389,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-10 14:56:08.480523'),(22390,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-08-10 14:56:27.052043'),(22391,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 14:56:38.459085'),(22392,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 14:56:58.885138'),(22393,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-10 14:57:21.130276'),(22394,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 14:57:42.095527'),(22395,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 14:57:55.586635'),(22396,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 14:58:07.579332'),(22397,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 14:58:20.636997'),(22398,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 14:58:29.680840'),(22399,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-08-10 14:58:52.316954'),(22400,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 14:59:06.500440'),(22401,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 14:59:17.550652'),(22402,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-10 14:59:33.338398'),(22403,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-08-10 14:59:44.851434'),(22404,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-10 14:59:56.273318'),(22405,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-10 15:00:06.871282'),(22406,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 15:00:16.533959'),(22407,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-10 15:00:37.103995'),(22408,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-10 15:00:47.552456'),(22409,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 15:01:13.315452'),(22410,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 15:01:25.523645'),(22411,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 15:01:35.817846'),(22412,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 15:01:46.570157'),(22413,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 15:02:00.753270'),(22414,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 15:02:16.609978'),(22415,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-10 15:02:28.342799'),(22416,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-10 15:02:38.053624'),(22417,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:02:57.610803'),(22418,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:03:08.584974'),(22419,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 15:03:26.345753'),(22420,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 15:03:47.219056'),(22421,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-10 15:04:01.807806'),(22422,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 15:05:38.112251'),(22423,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-10 15:05:49.929528'),(22424,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 15:06:08.749003'),(22425,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2020-08-10 15:06:31.484248'),(22426,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 15:07:57.229346'),(22427,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:08:12.931087'),(22428,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 15:08:46.295929'),(22429,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-08-10 15:09:17.132007'),(22430,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 15:09:49.588436'),(22431,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 15:10:19.090753'),(22432,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 15:10:55.977315'),(22433,'Thank you for your review and rating. We appreciate you choosing SignatureCare!','2020-08-10 15:11:34.346449'),(22434,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:11:55.059892'),(22435,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-10 15:12:22.925913'),(22436,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 15:12:49.514851'),(22437,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:14:03.421729'),(22438,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 15:14:33.599245'),(22439,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 15:14:50.531535'),(22440,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:15:07.162225'),(22441,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:15:20.622957'),(22442,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 15:15:39.708100'),(22443,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-10 15:16:00.191601'),(22444,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. Hope your husband is feeling well.','2020-08-10 15:16:26.574927'),(22445,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:16:39.401969'),(22446,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 15:16:53.812125'),(22447,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 15:17:19.267412'),(22448,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 15:17:40.693295'),(22449,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-08-10 15:18:05.919450'),(22450,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:18:35.492303'),(22451,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 15:19:01.497966'),(22452,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-10 15:19:20.078102'),(22453,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 15:19:35.214357'),(22454,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:19:46.351650'),(22455,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:19:58.899571'),(22456,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:15:20.482000'),(22457,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 14:54:34.317000'),(22458,'Thank you so much for your review, Guanakillo!. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know, and thanks for choosing us!','2020-07-12 14:54:17.367000'),(22459,'Thank you so much for your great rating, Larry!','2020-07-14 12:06:07.195000'),(22460,'We appreciate your great rating, Jacques!','2020-07-14 12:06:23.103000'),(22461,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-14 20:31:47.950000'),(22462,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-12 06:57:38.098000'),(22463,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-12 06:57:23.529000'),(22464,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-12 06:56:49.882000'),(22465,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-12 06:56:38.324000'),(22466,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-12 06:52:37.591000'),(22467,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-10 05:47:07.172000'),(22468,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-09 07:25:02.227000'),(22469,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-02-09 07:20:01.943000'),(22470,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-09 07:19:04.528000'),(22471,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-09 07:13:09.986000'),(22472,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-09 07:11:28.085000'),(22473,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-09 07:04:59.996000'),(22474,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-09 07:03:13.310000'),(22475,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your brother. Thank you for choosing SignatureCare.','2020-02-09 07:02:27.454000'),(22476,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:01:54.721000'),(22477,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-02-09 06:58:14.365000'),(22478,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-04 05:58:38.172000'),(22479,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-04 05:58:19.487000'),(22480,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-04 05:43:53.443000'),(22481,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-04 05:43:01.205000'),(22482,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-01-29 11:25:24.753000'),(22483,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-08-10 15:18:05.781000'),(22484,'We appreciate your great rating, Jana!','2020-08-10 15:28:06.995000'),(22485,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-05 07:56:25.159000'),(22486,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:06:58.998000'),(22487,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com\r\n with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-12 15:04:31.574000'),(22488,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-14 11:58:04.968000'),(22489,'Thank you so much for your nice review, Mary. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-14 11:58:28.901000'),(22490,'\nMuchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal! ','2019-05-13 15:10:55.941000'),(22491,'Nuestras salas de emergencia están abiertas las 24 horas del día, los 7 días de la semana, y aquí en cualquier momento necesita atención médica de emergencia. Gracias de nuevo por elegir SignatureCare Emergency Centers.','2018-09-29 16:21:36.161000'),(22492,'Agradecemos sus comentarios. ¡Gracias por elegir SignatureCare y por la agradable reseña!','2018-09-27 15:43:46.334000'),(22493,'Agradecemos sus comentarios. ¡Gracias por elegir SignatureCare!','2018-09-14 21:06:14.303000'),(22494,'Sabemos que tiene una opción cuando se trata de atención de emergencia, y estamos muy orgullosos de que haya elegido SignatureCare. ¡Gracias por la genial retroalimentación!','2018-09-08 15:30:14.603000'),(22495,'Agradecemos los excelentes comentarios. ¡Muchas gracias por elegir SignatureCare!','2018-09-08 15:29:08.928000'),(22496,'Muchas gracias por los excelentes comentarios. Nos complace estar aquí para sus emergencias médicas y apreciamos que elija SignatureCare.','2018-09-07 16:25:55.206000'),(22497,'Thank you for the nice review and any future recommendations to our facility. We sincerely appreciate it.','2017-06-01 19:12:45.752000'),(22498,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 15:32:42.722000'),(22499,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-10 15:30:51.024000'),(22500,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 15:19:35.073000'),(22501,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-10 15:19:19.938000'),(22502,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 15:19:01.312000'),(22503,'We appreciate your great rating!','2020-08-10 15:34:41.000000'),(22504,'Thank you so much for giving us five stars, Erendira!','2020-08-10 15:33:21.358000'),(22505,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 15:16:53.670000'),(22506,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-10 15:16:00.051000'),(22507,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 15:15:39.575000'),(22508,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:15:07.025000'),(22509,'Thank you for your review and rating. We appreciate you choosing SignatureCare!','2020-08-10 15:11:34.202000'),(22510,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 15:10:55.751000'),(22511,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 15:10:18.952000'),(22512,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 15:09:49.440000'),(22513,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-08-10 15:09:16.990000'),(22514,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 15:08:46.159000'),(22515,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:08:12.785000'),(22516,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2020-08-10 15:06:31.332000'),(22517,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 15:06:08.598000'),(22518,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 15:03:26.206000'),(22519,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:03:08.449000'),(22520,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:02:57.465000'),(22521,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-10 15:02:37.910000'),(22522,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-10 15:02:28.204000'),(22523,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 15:02:16.472000'),(22524,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 15:02:00.610000'),(22525,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 15:01:46.425000'),(22526,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 15:01:35.671000'),(22527,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-10 15:00:36.966000'),(22528,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 14:59:17.409000'),(22529,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-08-10 14:58:52.169000'),(22530,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-08-10 14:51:26.444000'),(22531,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-08-10 14:49:59.647000'),(22532,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-08-10 14:49:27.459000'),(22533,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-28 17:03:21.192000'),(22534,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-28 17:03:13.612000'),(22535,'We appreciate your great rating, Raul!','2020-07-28 17:03:00.487000'),(22536,'Thank you so much for your great rating, Yasmine!','2020-07-28 17:02:49.128000'),(22537,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-28 17:02:32.657000'),(22538,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-28 17:02:11.743000'),(22539,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-28 17:02:00.778000'),(22540,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-28 16:48:34.083000'),(22541,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-28 16:48:26.244000'),(22542,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-28 16:48:18.165000'),(22543,'Thank you so much for your nice review, Brooke. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-28 16:48:07.428000'),(22544,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-28 16:47:47.455000'),(22545,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-28 16:47:39.894000'),(22546,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-28 16:47:33.100000'),(22547,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-28 16:47:14.663000'),(22548,'Thank you so much for giving us five stars, Shelby!','2020-07-28 16:46:48.439000'),(22549,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-28 16:46:35.139000'),(22550,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-07-28 16:46:22.487000'),(22551,'Thank you so much for your nice review, Anna. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-28 16:46:06.341000'),(22552,'Thank you Michelle, for your great rating!','2020-07-28 16:45:48.384000'),(22553,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-28 16:45:27.815000'),(22554,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-28 16:45:02.470000'),(22555,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-28 16:44:50.890000'),(22556,'We appreciate your great rating, Rusty!','2020-07-28 16:44:35.598000'),(22557,'Thank you so much for your great rating, Gayla!','2020-07-28 16:44:23.679000'),(22558,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-28 16:44:03.641000'),(22559,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-07-27 16:33:47.728000'),(22560,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-27 16:33:07.150000'),(22561,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-27 16:31:42.799000'),(22562,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-27 16:31:02.262000'),(22563,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. I would love to discuss the incident with front desk and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. Thank you for choosing SignatureCare!','2020-07-26 15:13:22.698000'),(22564,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:11:43.853000'),(22565,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:06:48.722000'),(22566,'Thank you so much for your nice review, Susan. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!Thank you so much for your nice review, [NAME]. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us! Hope your son is feeling well.','2020-08-09 17:04:17.949000'),(22567,'Thank you so much for giving us five stars, Jean!','2020-07-26 15:10:13.937000'),(22568,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 16:59:17.915000'),(22569,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 16:58:55.539000'),(22570,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 16:58:39.972000'),(22571,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-09 16:58:17.427000'),(22572,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 16:57:54.771000'),(22573,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 16:57:42.260000'),(22574,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 16:57:18.292000'),(22575,'We appreciate your great rating!','2020-08-10 15:29:57.473000'),(22576,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-08-10 15:29:35.608000'),(22577,'Thank you so much for your feedback. I hope you will let us know why you gave us a three-star rating so that we can learn from our mistakes! We always want our customers to be 100% satisfied, so please let us know what we could have done better at info@ercare24.com. Thank you again for your time and feedback.','2020-07-12 14:56:55.410000'),(22578,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 14:56:00.849000'),(22579,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-14 12:05:14.609000'),(22580,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare.','2020-07-14 12:05:36.866000'),(22581,'Thank you so much for your nice review, Vickie. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-13 07:05:16.973000'),(22582,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-13 07:05:49.320000'),(22583,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-13 07:07:06.724000'),(22584,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-13 07:07:32.054000'),(22585,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-23 10:17:21.862000'),(22586,'Thank you for the great review! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-02-23 09:04:44.406000'),(22587,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-13 07:42:39.610000'),(22588,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-13 07:40:55.746000'),(22589,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-13 07:40:40.052000'),(22590,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-13 07:40:14.909000'),(22591,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-02-13 07:40:00.867000'),(22592,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-12 06:51:57.602000'),(22593,'Thank you so much for your feedback S.r.c! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-11 07:17:18.308000'),(22594,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-02-11 08:17:02.044000'),(22595,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-11 08:04:46.105000'),(22596,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-10 05:48:27.547000'),(22597,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-10 05:47:45.704000'),(22598,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-10 05:47:20.391000'),(22599,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-02-10 05:46:41.708000'),(22600,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-10 05:44:25.964000'),(22601,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-02-09 07:23:30.718000'),(22602,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-02-09 07:23:16.703000'),(22603,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:21:39.200000'),(22604,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-09 07:21:26.326000'),(22605,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:21:04.995000'),(22606,'Thank you for your review. We appreciate you choosing SignatureCare!','2020-02-09 07:20:52.542000'),(22607,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:20:35.950000'),(22608,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-02-09 07:20:14.165000'),(22609,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-09 07:19:16.724000'),(22610,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-02-09 07:18:09.092000'),(22611,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-02-09 07:12:57.425000'),(22612,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-09 07:09:35.782000'),(22613,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-02-09 06:58:27.471000'),(22614,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-09 06:57:51.308000'),(22615,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 06:56:55.625000'),(22616,'At SignatureCare, we are open 24/7, 365 days a year, because emergencies do not have a schedule. Thank you for your review.','2020-02-09 06:56:42.595000'),(22617,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-02-09 06:56:19.702000'),(22618,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare. Hope your wife is feeling better.','2020-02-09 06:56:00.881000'),(22619,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 06:54:55.272000'),(22620,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-09 06:51:04.976000'),(22621,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-02-09 06:49:38.134000'),(22622,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 06:49:16.955000'),(22623,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-02-06 07:22:08.260000'),(22624,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-06 07:19:35.900000'),(22625,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-06 07:19:12.041000'),(22626,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-02-06 07:18:37.693000'),(22627,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-02-06 07:16:36.483000'),(22628,'Thanks for the 5 star review Byron!','2020-02-06 09:00:44.546000'),(22629,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-02-06 07:08:44.760000'),(22630,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-02-06 07:05:59.991000'),(22631,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-02-04 05:50:12.820000'),(22632,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-01-30 05:23:54.265000'),(22633,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-01-29 07:44:18.390000'),(22634,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-01-19 06:58:33.929000'),(22635,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-01-19 06:31:05.718000'),(22636,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-01-19 06:28:11.615000'),(22637,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-01-19 06:27:56.592000'),(22638,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-12-01 07:55:35.355000'),(22639,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-11-21 06:38:55.406000'),(22640,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-11-03 06:16:10.832000'),(22641,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:16:39.263000'),(22642,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:11:13.535000'),(22643,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 17:10:32.249000'),(22644,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-09 17:10:13.814000'),(22645,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:10:01.301000'),(22646,'Thank you so much for your nice review, Jackson. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-08-09 17:09:17.590000'),(22647,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team m','2020-08-09 17:07:56.762000'),(22648,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:07:03.746000'),(22649,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 17:05:40.226000'),(22650,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 17:06:23.427000'),(22651,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:02:13.645000'),(22652,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:00:37.588000'),(22653,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:00:01.471000'),(22654,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-26 14:48:44.952000'),(22655,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-07-26 14:48:10.135000'),(22656,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-26 14:47:43.389000'),(22657,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-26 14:47:27.163000'),(22658,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-26 14:47:09.393000'),(22659,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-26 14:47:01.037000'),(22660,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-07-26 14:46:28.956000'),(22661,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-26 14:46:09.512000'),(22662,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-23 07:19:05.944000'),(22663,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-23 07:19:37.798000'),(22664,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-23 07:20:09.943000'),(22665,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-23 07:20:28.583000'),(22666,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-23 07:20:53.727000'),(22667,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-23 07:21:18.111000'),(22668,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-20 05:42:10.370000'),(22669,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-07-20 05:41:33.430000'),(22670,'Thank you so much for giving us five stars, Raford!','2020-07-19 05:43:21.893000'),(22671,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-19 05:43:48.847000'),(22672,'Thank you so much for giving us five stars, DeLissia!','2020-07-14 11:14:13.352000'),(22673,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-14 11:14:56.668000'),(22674,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-14 11:15:24.248000'),(22675,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-14 11:16:00.501000'),(22676,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-14 11:16:34.205000'),(22677,'Thank you so much for your great rating, Edelmira!','2020-07-14 11:16:54.544000'),(22678,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was as it should always be when you visit us. Thanks for letting us know.','2020-07-14 11:17:14.941000'),(22679,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-14 11:19:08.655000'),(22680,'Thank you Jeff, for your great rating!','2020-07-14 11:17:32.967000'),(22681,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-14 11:18:28.573000'),(22682,'We appreciate your great rating, TexMex!','2020-07-14 11:18:02.696000'),(22683,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-14 11:20:42.839000'),(22684,'Thank you Jessica, for your great rating!','2020-07-14 09:44:15.906000'),(22685,'Thank you so much for giving us five stars, Sibo!','2020-07-14 09:44:29.970000'),(22686,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-14 11:26:52.619000'),(22687,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-14 11:27:10.810000'),(22688,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-14 11:27:30.621000'),(22689,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-07-14 11:28:10.704000'),(22690,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-14 11:36:21.569000'),(22691,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-14 11:37:19.991000'),(22692,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-14 11:38:13.737000'),(22693,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-14 11:38:57.653000'),(22694,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-14 11:45:47.581000'),(22695,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-14 11:46:39.574000'),(22696,'Thank you Lauren, for your great rating!','2020-07-14 11:47:17.417000'),(22697,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-14 11:50:05.331000'),(22698,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-14 11:49:27.053000'),(22699,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-14 11:48:18.969000'),(22700,'Gracias!','2019-04-23 21:32:42.429000'),(22701,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-03-05 06:54:08.301000'),(22702,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-02-09 07:04:46.074000'),(22703,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:04:31.071000'),(22704,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-02-09 07:04:02.460000'),(22705,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-02-09 07:03:51.791000'),(22706,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-02-09 07:01:25.934000'),(22707,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your girlfriend. Thank you for choosing SignatureCare.','2020-02-09 07:01:13.714000'),(22708,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-02-09 07:00:28.444000'),(22709,'Thank you for the great review Jalyn! We appreciate your positive feedback about SignatureCare. We hope you are feeling better.','2020-02-23 09:08:49.116000'),(22710,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-02-06 07:09:08.952000'),(22711,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-11-14 10:04:16.754000'),(22712,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-11-06 07:49:01.928000'),(22713,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-10-23 06:33:27.671000'),(22714,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2019-08-18 05:33:35.998000'),(22715,'Gracias por confiarnos el cuidado de su esposo. Apreciamos los excelentes comentarios y nos complace saber que nuestro equipo cuidó bien de su esposo.','2019-07-24 06:41:06.958000'),(22716,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 15:17:40.557000'),(22717,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review. Hope your husband is feeling well.','2020-08-10 15:16:26.431000'),(22718,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 15:14:50.362000'),(22719,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 15:14:33.462000'),(22720,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:14:03.276000'),(22721,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 15:12:49.377000'),(22722,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-10 15:12:22.777000'),(22723,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:11:54.918000'),(22724,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 15:07:57.072000'),(22725,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-10 15:05:49.791000'),(22726,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 15:05:37.967000'),(22727,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-10 15:04:01.671000'),(22728,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 15:03:47.076000'),(22729,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 15:01:25.382000'),(22730,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 15:01:13.175000'),(22731,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-10 15:00:47.362000'),(22732,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 15:00:16.383000'),(22733,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-10 15:00:06.733000'),(22734,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-10 14:59:56.128000'),(22735,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-08-10 14:59:44.702000'),(22736,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-10 14:59:33.191000'),(22737,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 14:59:06.354000'),(22738,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 14:58:29.527000'),(22739,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 14:58:20.500000'),(22740,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 14:58:07.436000'),(22741,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 14:57:55.445000'),(22742,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 14:57:41.961000'),(22743,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-10 14:57:20.991000'),(22744,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 14:56:58.738000'),(22745,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 14:56:38.312000'),(22746,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-08-10 14:56:26.909000'),(22747,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-10 14:56:08.343000'),(22748,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 14:55:53.833000'),(22749,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 14:55:36.293000'),(22750,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-10 14:55:20.781000'),(22751,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 14:54:56.308000'),(22752,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 14:54:42.341000'),(22753,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-10 14:54:26.362000'),(22754,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-10 14:54:06.843000'),(22755,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-10 14:53:52.769000'),(22756,'Thank you for your review and rating. We appreciate you choosing SignatureCare!','2020-08-10 14:53:18.562000'),(22757,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 14:52:44.270000'),(22758,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-10 14:52:21.959000'),(22759,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 14:52:00.357000'),(22760,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 14:51:38.633000'),(22761,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 14:51:12.245000'),(22762,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-08-10 14:50:44.766000'),(22763,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 14:50:13.263000'),(22764,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-29 14:37:32.195000'),(22765,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 15:38:30.784000'),(22766,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-29 14:40:40.508000'),(22767,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-07-29 14:40:32.267000'),(22768,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-29 14:40:23.177000'),(22769,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-29 14:40:03.921000'),(22770,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-29 14:39:59.821000'),(22771,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-29 14:40:15.051000'),(22772,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-29 14:39:34.475000'),(22773,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-29 14:39:28.914000'),(22774,'We appreciate your great rating, Sajiree!','2020-07-29 14:39:12.146000'),(22775,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-29 14:38:54.422000'),(22776,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-29 14:38:33.926000'),(22777,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-07-29 14:38:23.163000'),(22778,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-29 14:37:53.187000'),(22779,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-29 14:37:20.571000'),(22780,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-29 14:37:00.174000'),(22781,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-29 14:36:38.349000'),(22782,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-29 14:36:29.298000'),(22783,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-29 14:36:17.019000'),(22784,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-07-29 14:36:08.146000'),(22785,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-29 14:35:41.860000'),(22786,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-07-29 14:35:20.290000'),(22787,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare!','2020-07-29 14:34:58.778000'),(22788,'Our doors are always open for community members suffering from a medical emergency. Thank you so much for putting your daughter\'s care in the board-certified doctors, nurses and staff at SignatureCare. It means a lot to hear that we’re doing a good job. We hope your daughter is feeling better.','2020-07-29 14:34:32.216000'),(22789,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-29 14:34:09.779000'),(22790,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-07-29 14:34:04.843000'),(22791,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-29 14:33:55.388000'),(22792,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-29 14:33:50.135000'),(22793,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-28 17:11:02.253000'),(22794,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-28 17:10:48.183000'),(22795,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-07-28 17:10:40.283000'),(22796,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-28 17:10:32.855000'),(22797,'Thank you so much for your nice review, Cole. Our goal at SignatureCare is patients satisfaction. Any kind of suggestion will help us to earn five stars. If there is anything we could do for our patients, please let us know and thanks for choosing us!','2020-07-28 17:10:23.322000'),(22798,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-28 17:10:05.934000'),(22799,'At SignatureCare Emergency Center, children are a top priority of all our staff and doctors. It is never fun when your child gets sick, but we are here to help. Thank you for your review and we hope your son feels better soon!','2020-07-28 17:09:36.906000'),(22800,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-28 17:09:13.130000'),(22801,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-28 17:08:57.537000'),(22802,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-28 17:08:51.243000'),(22803,'Thank you so much for giving us five stars, Omar!','2020-07-28 17:08:32.479000'),(22804,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-28 17:08:18.498000'),(22805,'Thank you so much for your great feedback.','2020-07-28 17:07:48.805000'),(22806,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-28 17:07:26.158000'),(22807,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-28 17:07:08.442000'),(22808,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-27 17:05:59.236000'),(22809,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-27 17:05:51.081000'),(22810,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-27 17:05:35.454000'),(22811,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-27 17:05:23.813000'),(22812,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-27 17:05:11.927000'),(22813,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-27 17:04:59.883000'),(22814,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-27 17:04:41.566000'),(22815,'We appreciate your great rating!','2020-07-27 17:04:27.356000'),(22816,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-07-27 17:04:14.222000'),(22817,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-27 17:03:59.676000'),(22818,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-27 17:02:32.166000'),(22819,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-07-27 17:02:08.457000'),(22820,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-27 17:01:14.934000'),(22821,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-27 16:59:38.734000'),(22822,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-27 16:59:28.130000'),(22823,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-07-27 16:58:46.930000'),(22824,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-27 16:54:09.639000'),(22825,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-27 16:52:27.067000'),(22826,'Thank you for trusting us with the care of your sister. We appreciate the great feedback and are very glad to hear that our team took such good care of her.','2020-07-27 16:45:47.573000'),(22827,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-27 16:45:24.493000'),(22828,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-07-27 16:43:11.024000'),(22829,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-27 16:43:03.842000'),(22830,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-28 17:11:17.163000'),(22831,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-27 16:42:31.512000'),(22832,'We appreciate you giving SignatureCare your trust time and again for your medical emergencies. No one likes the ER, but we are glad to hear that we make each visit with us pleasurable and quick. Thank you so much for your nice review and great rating.','2020-07-27 16:38:50.827000'),(22833,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-07-27 16:38:21.529000'),(22834,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-27 16:34:37.367000'),(22835,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-26 15:21:21.912000'),(22836,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-09 17:12:51.486000'),(22837,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-07-26 15:20:41.187000'),(22838,'Thank you so much for your great rating, Daniel!','2020-07-26 15:20:21.110000'),(22839,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-09 17:12:02.604000'),(22840,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-09 17:11:29.206000'),(22841,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-26 15:19:20.509000'),(22842,'Thank you Juana, for your great rating!','2020-07-26 15:18:49.186000'),(22843,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-08-09 17:05:08.333000'),(22844,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-09 17:04:46.754000'),(22845,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-09 17:04:34.298000'),(22846,'At SignatureCare Emergency Center, we understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the fantastic review.','2020-08-09 17:02:46.470000'),(22847,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-09 17:01:52.771000'),(22848,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. We are very happy to learn your experience was pleasant, as we strive for excellence each time you come to one of our emergency rooms. Thank you for choosing us, and we hope you are feeling better!','2020-08-09 17:01:35.799000'),(22849,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-09 17:00:23.066000'),(22850,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-26 15:15:53.245000'),(22851,'We appreciate your great rating, Thomas!','2020-07-26 15:15:22.141000'),(22852,'Thank you so much for giving us five stars!','2020-07-26 15:15:05.928000'),(22853,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-26 15:14:45.546000'),(22854,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-07-26 15:14:28.109000'),(22855,'We appreciate your feedback and the great rating you gave us. Thank you for taking the time to let us know how we are doing, and thank you for choosing SignatureCare.','2020-07-21 05:30:27.247000'),(22856,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-21 05:30:08.432000'),(22857,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-20 05:56:36.308000'),(22858,'Thank you Raul, for your great rating!','2020-07-19 06:33:45.935000'),(22859,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-19 06:34:25.128000'),(22860,'Thank you so much for giving us five stars, Lesly!','2020-07-14 20:50:45.535000'),(22861,'Thank you so much for your great rating, Ray!','2020-07-14 20:50:58.804000'),(22862,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:13:18.215000'),(22863,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you feel comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-12 15:12:45.923000'),(22864,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-12 15:04:55.234000'),(22865,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-12 14:50:55.480000'),(22866,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-07-15 06:32:16.036000'),(22867,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-15 06:33:59.698000'),(22868,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-15 06:34:25.774000'),(22869,'We appreciate your great rating, Chloe!','2020-07-14 20:51:18.975000'),(22870,'Thank you Devin, for your great rating!','2020-07-14 20:51:35.200000'),(22871,'Thank you so much for giving us five stars, Robert!','2020-07-14 20:51:51.173000'),(22872,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-15 06:35:08.682000'),(22873,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 15:18:34.164000'),(22874,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:01:09.023000'),(22875,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-14 12:03:42.261000'),(22876,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal! ','2019-05-13 15:11:04.547000'),(22877,'Agradecemos su revisión y recomendación. Muchas gracias por elegir SignatureCare.','2018-10-18 15:22:14.537000'),(22878,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-07-21 05:14:13.341000'),(22879,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-20 05:40:07.417000'),(22880,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-19 05:12:45.889000'),(22881,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-19 05:15:45.086000'),(22882,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-19 05:16:47.717000'),(22883,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-19 05:17:44.389000'),(22884,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-07-19 05:18:40.346000'),(22885,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating','2020-07-19 05:19:55.681000'),(22886,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-19 05:20:26.470000'),(22887,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-07-19 05:20:57.492000'),(22888,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-07-19 05:21:54.275000'),(22889,'Thank you so much for giving us five stars, Mary!','2020-07-19 05:22:14.883000'),(22890,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-19 05:28:08.451000'),(22891,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-07-19 05:28:32.973000'),(22892,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-07-19 05:29:49.394000'),(22893,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-19 05:30:13.934000'),(22894,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-07-19 05:30:57.582000'),(22895,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-19 05:31:36.336000'),(22896,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-19 05:34:08.384000'),(22897,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-19 05:34:50.850000'),(22898,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-19 05:33:32.690000'),(22899,'Thank you so much for your great rating, Eric!','2020-07-19 05:32:20.990000'),(22900,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-19 05:15:22.184000'),(22901,'We apologize that you didn’t have a perfect experience at SignatureCare. We strive to make our entire patient base feel like VIPs and give them the best care possible. I would love to discuss this incident with you and get more details so we can make it right. Please email us at info@ercare24.com with your full name, date of service and location of service so that we can look into this further. We would like to review your case with our team so that we have an opportunity to do better next time. Thank you for your review.','2020-07-12 15:19:43.342000'),(22902,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-14 10:48:24.274000'),(22903,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-14 10:50:00.425000'),(22904,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-07-14 10:51:35.037000'),(22905,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-14 10:52:31.737000'),(22906,'Thank you for trusting us with the care of your daughter. We appreciate the great feedback, and are very glad to hear that our team took such good care of her.','2020-02-10 05:50:27.146000'),(22907,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-02-09 07:24:49.208000'),(22908,'Thank you for the five-star rating Santos! We appreciate your feedback.','2020-02-09 06:03:21.377000'),(22909,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:19:58.751000'),(22910,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 15:19:46.214000'),(22911,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-08-10 15:17:19.126000'),(22912,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-10 14:48:53.988000'),(22913,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-10 14:48:33.347000'),(22914,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of your mom. Thank you for choosing SignatureCare.','2020-01-16 07:06:06.863000'),(22915,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-07-23 07:26:46.048000'),(22916,'We appreciate you taking time from your busy schedule to write us such a positive review. Our emergency rooms are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing SignatureCare Emergency Center.','2020-07-23 07:27:58.449000'),(22917,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-07-23 07:28:54.829000'),(22918,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-23 07:29:24.046000'),(22919,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-23 07:29:51.744000'),(22920,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-20 05:48:36.885000'),(22921,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-19 05:51:57.926000'),(22922,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-07-19 05:53:34.516000'),(22923,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-19 05:54:37.986000'),(22924,'Due to unusual patient volume and a severe shortage of medical personnel our front-line medical team is experiencing unprecedented wait time. We are tirelessly working towards providing better care for our community. We sincerely apologize for any delay in care you may have experienced.','2020-07-14 11:51:13.478000'),(22925,'Thank you so much for your great rating, Lizzy!','2020-07-14 11:51:29.958000'),(22926,'Thanks for leaving a review! Would you please reach out to us at info@ercare24.com to let us know more about the incident. We aim for 100% satisfaction at SignatureCare. Your suggestion will help us to develop our services and make ourselves able to earn those last two stars!','2020-07-13 14:27:58.828000'),(22927,'Thank you so much for giving us five stars, moises!','2020-07-14 11:51:50.510000'),(22928,'We appreciate your great rating, Ingrid!','2020-07-14 11:52:04.747000'),(22929,'The board-certified team at SignatureCare cares deeply about patients of all ages. We want parents to feel comfortable and know their children will be taken care of with the highest level of professionalism. Thank you so much for the nice review and great rating -- we appreciate it!','2020-07-12 15:12:18.394000'),(22930,'Thank you so much for your nice review, Natasha. We always appreciate feedback from our customers. If there is anything we could have done to earn that fifth star, we hope you will let us know, since we aim for 100% satisfaction at SignatureCare. Thank you for choosing us!','2020-07-14 11:53:13.021000'),(22931,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-07-15 06:16:53.335000'),(22932,'SignatureCare has a much shorter wait time than a hospital/ER -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-07-15 06:17:17.763000'),(22933,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-07-15 06:18:41.656000'),(22934,'We always aim to provide the best care, so we love hearing that this was your experience with us. Thank you for choosing SignatureCare and for the nice review.','2020-07-15 06:18:16.324000'),(22935,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that we can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-07-15 06:19:48.828000'),(22936,'Thank you so much for giving us five stars, master!','2020-07-14 11:53:45.612000'),(22937,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-15 06:20:35.965000'),(22938,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-07-14 11:54:08.854000'),(22939,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-07-15 06:11:32.885000'),(22940,'Thank you so much for giving us five stars, Jacqueline!','2020-07-14 11:54:30.313000'),(22941,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-07-15 06:12:00.435000'),(22942,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-07-15 06:12:26.008000'),(22943,'Thank you so much for your great rating, Seba!','2020-07-14 11:54:49.184000'),(22944,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-07-15 06:13:50.651000'),(22945,'We believe we have the very best staff in Texas. SignatureCare Emergency Center takes pride in our staff because they care so much about our patients. We are so happy to hear you loved our team --- We will make sure to let them know.','2020-07-15 06:14:41.199000'),(22946,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-07-15 06:15:10.989000'),(22947,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-02-03 07:17:47.245000'),(22948,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-08-10 16:53:26.328889'),(22949,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 16:53:48.017165'),(22950,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-08-10 16:54:36.742537'),(22951,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 16:55:25.271512'),(22952,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-10 16:56:43.722429'),(22953,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-08-10 16:58:23.833060'),(22954,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-10 17:12:20.708549'),(22955,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review.','2020-08-10 17:13:54.795468'),(22956,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 17:14:09.096453'),(22957,'Thank you for your review and your rating. We appreciate you choosing SignatureCare!','2020-08-10 17:14:32.213331'),(22958,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 17:14:46.993804'),(22959,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 17:15:05.701584'),(22960,'Thank you for your review and great rating. We appreciate you choosing SignatureCare!','2020-08-10 17:15:37.370799'),(22961,'Thank you for your review and five star rating. We appreciate you choosing SignatureCare Emergency Center!','2020-08-10 17:16:25.751343'),(22962,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 17:16:37.745494'),(22963,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-10 17:16:49.003187'),(22964,'Thank you for taking time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-10 17:17:05.789613'),(22965,'Thank you for your feedback and great rating.','2020-08-10 17:17:36.560460'),(22966,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-10 17:17:55.661067'),(22967,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-10 17:18:16.255019'),(22968,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-10 17:19:05.923436'),(22969,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-10 17:19:29.123231'),(22970,'Thank you for taking the time to let us know how we are doing. We appreciate the feedback and love hearing about the comfortable experience our patients had in our facility. Thank you for choosing SignatureCare and for the great review. We hope you all are feeling better.','2020-08-10 17:21:07.399669'),(22971,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-10 17:22:09.166480'),(22972,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-10 17:22:24.667343'),(22973,'When we receive feedback like this, it helps us know we\'re doing something right in our community. Our trained staff is always ready to take care of your emergency needs. Thank you for giving us your trust.','2020-08-10 17:22:40.295253'),(22974,'Thank you for letting us help you and help you feel better! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-10 17:22:57.185037'),(22975,'Thank you so much for your feedback Thomas! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-10 17:25:05.942504'),(22976,'Thank you Holly for the 5 star review. We are glad you had a good experience. Feel Better!','2020-08-10 17:25:07.203315'),(22977,'We appreciate the five-star rating Amy!','2020-08-10 17:25:09.088311'),(22978,'We appreciate the five-star rating Consuelo!','2020-08-10 17:25:10.936895'),(22979,'Thank you Anna for your five star review and for trusting us with your care!','2020-08-10 17:25:12.746767'),(22980,'Thank you so much for your great rating!','2020-08-10 17:25:14.614127'),(22981,'Thank you Kim for your five star review and for trusting us with your care!','2020-08-10 17:25:15.768160'),(22982,'Thank you Raquelin for your five star review and for trusting us with your care!','2020-08-10 17:25:16.924942'),(22983,'Thank you for the five-star rating Lamar. We appreciate it.','2020-08-10 17:25:18.803783'),(22984,'Thank you so much for taking the time to let us know about your experience at SignatureCare. Our team makes us proud every day with the way they take care of our patients. It\'s great to hear that they took such good care of you. We appreciate the great review and rating.','2020-08-23 06:32:39.633000'),(22985,'We appreciate your great rating, Macy!','2020-08-23 06:27:37.401000'),(22986,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director so we can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that he can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-08-23 06:08:59.645000'),(22987,'We appreciate your great rating, Cristal!','2020-08-23 06:09:20.949000'),(22988,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-23 06:34:32.549000'),(22989,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-08-23 06:10:08.992000'),(22990,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-23 06:08:03.793000'),(22991,'Thank you for taking time out of your day to write us such a positive review. SignatureCare Emergency Centers are open 24/7 and here anytime you need emergency medical attention. Thank you again for choosing us!','2020-08-23 06:08:18.484000'),(22992,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-23 06:33:29.930000'),(22993,'Thank you so much for your great rating, Misty!','2020-08-23 06:27:54.147000'),(22994,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-23 06:36:04.781000'),(22995,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-23 06:37:11.304000'),(22996,'We appreciate your great rating, Deanna!','2020-08-23 06:34:58.406000'),(22997,'What a nice review! Thank you for taking the time to let us know how we are doing. Our community is important to us, so we love hearing that our team is doing a good job. It\'s never fun when a parent has to visit the ER, but we aim to make you and your family as comfortable as possible while waiting for diagnosis and treatment. Thank you for choosing SignatureCare and we hope the child is feeling better!','2020-08-23 06:05:34.755000'),(22998,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-23 06:31:01.632000'),(22999,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-23 06:31:42.035000'),(23000,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-08-23 06:35:27.288000'),(23001,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-17 20:11:27.477000'),(23002,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-17 20:11:09.143000'),(23003,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-17 20:10:50.298000'),(23004,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-17 20:10:41.572000'),(23005,'Thank you Dennis, for your great rating!','2020-08-17 20:10:14.033000'),(23006,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-17 20:10:31.019000'),(23007,'Thank you so much for giving us five stars, Thomas!','2020-08-17 20:09:56.115000'),(23008,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-08-17 20:09:42.470000'),(23009,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-17 20:08:05.055000'),(23010,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-17 20:07:57.953000'),(23011,'Muchas gracias por tu amable reseña. ¡Pasaremos sus comentarios a nuestro personal!','2020-08-17 20:07:38.158000'),(23012,'Thank you for letting us help you! We are glad to hear our team put you at ease and provided you with the best care possible. Thanks for choosing SignatureCare.','2020-08-17 19:17:36.482000'),(23013,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-17 19:52:13.488000'),(23014,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-17 19:52:02.368000'),(23015,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-08-17 19:51:33.561000'),(23016,'Thank you so much for giving us five stars, Kaneez!','2020-08-17 20:29:31.352000'),(23017,'We understand that emergencies happen and the ER is not anyone\'s favorite place, but our doctors, nurses and medical staff will make you feel comfortable and able to relax while your treatment and diagnosis are in process. Thank you for choosing SignatureCare and for the nice review.','2020-08-17 20:29:18.345000'),(23018,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-17 20:29:04.347000'),(23019,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-17 20:28:43.548000'),(23020,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-17 20:28:31.367000'),(23021,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us!','2020-08-17 20:28:13.419000'),(23022,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-17 20:28:06.288000'),(23023,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-17 20:27:50.682000'),(23024,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-17 20:27:35.354000'),(23025,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-17 20:26:56.937000'),(23026,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-17 20:26:19.845000'),(23027,'SignatureCare Emergency Centers have a much shorter wait time than a hospital -- usually, 10 minutes or less -- and our doctors are board-certified and can handle most of the same emergencies as a hospital. We appreciate your wonderful feedback and your recommendation. Thank you for choosing SignatureCare!','2020-08-17 20:21:57.114000'),(23028,'At SignatureCare Emergency Center, we love all our patients, and our number #1 goal is to treat and diagnose quickly and ensure you feel better faster. Thank you for trusting us with your medical needs.','2020-08-17 20:21:01.263000'),(23029,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-08-17 20:20:53.227000'),(23030,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-17 20:20:40.305000'),(23031,'Thank you so much for giving us five stars, Johanna!','2020-08-17 20:20:01.881000'),(23032,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-17 20:19:45.627000'),(23033,'Thank you so much for your feedback and your recommendation. We appreciate you choosing SignatureCare!','2020-08-17 20:17:47.764000'),(23034,'We believe we have the very best facility in Texas with board-certified staff, state-of-the-art equipment, and a clean environment. Thank you for choosing SignatureCare!','2020-08-23 06:32:58.907000'),(23035,'Thank you so much for giving us five stars, Sinthia!','2020-08-17 20:05:15.454000'),(23036,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-17 20:04:17.260000'),(23037,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-17 20:03:33.406000'),(23038,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-17 20:03:09.019000'),(23039,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-17 20:01:48.235000'),(23040,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-17 19:55:15.398000'),(23041,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-08-17 19:20:14.641000'),(23042,'SignatureCare Emergency Center\'s staff sets goals on patient satisfaction. Thank you for letting us know we\'re one step closer to meeting them! We know visiting the emergency room can be a scary experience. Thank you for letting us put you at ease and provide you with the best care possible. We hope you feel better.','2020-08-17 19:20:03.638000'),(23043,'We want everyone who walks through our doors to feel like a VIP. Thank you for supporting us, and putting your trust in SignatureCare.','2020-08-17 19:19:18.167000'),(23044,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-17 19:19:03.288000'),(23045,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-17 19:18:56.823000'),(23046,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-08-17 19:18:43.959000'),(23047,'Thank you for taking the time out of your busy day to let us know how we are doing. We appreciate the chance to care for you, and are so glad to hear that you are feeling better. Thank you for choosing SignatureCare!','2020-08-17 19:39:35.227000'),(23048,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-17 19:39:05.574000'),(23049,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-17 19:38:52.661000'),(23050,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-17 19:38:41.253000'),(23051,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-17 19:37:09.912000'),(23052,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-17 19:36:52.000000'),(23053,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-17 19:35:52.284000'),(23054,'Our team, from the front desk to the doctors, aims to make your visit as quick and painless as possible. We appreciate your feedback and the great rating you gave us. Thank you for choosing SignatureCare!','2020-08-17 19:35:16.308000'),(23055,'We sincerely appreciate your continued trust. Thank you so much for taking the time to let us know that our team is doing a good job -- we appreciate the feedback. Thank you for choosing SignatureCare, time and again!','2020-08-17 19:34:47.363000'),(23056,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-17 19:34:55.873000'),(23057,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-17 19:42:35.924000'),(23058,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-17 19:42:00.247000'),(23059,'We always appreciate positive feedback from our patients. Our dedicated staff is always here and willing to meet all your healthcare needs 24/7. Thank you for choosing us! Hope you both are feeling well.','2020-08-17 19:41:44.813000'),(23060,'At SignatureCare Emergency Center, we pride ourselves on having the newest and most sterilized emergency rooms in the state of Texas. Thank you for the wonderful feedback!','2020-08-17 19:41:07.952000'),(23061,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-17 19:40:06.779000'),(23062,'We appreciate your great rating, Rekha!','2020-08-17 19:52:36.778000'),(23063,'Our doctors and nurses make us proud every day. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-17 19:30:14.906000'),(23064,'We want everyone who visits us to feel like family. It\'s great to hear that our team made you feel welcome and at home -- thanks for letting us know. Thank you for choosing SignatureCare and for the nice review!','2020-08-17 19:30:01.585000'),(23065,'Thank you so much for giving us five stars, Sidney!','2020-08-23 06:28:22.367000'),(23066,'Thank you Teresa, for your great rating!','2020-08-23 06:28:38.712000'),(23067,'We appreciate your great rating, Bren!','2020-08-23 06:29:00.859000'),(23068,'Thank you so much for your great rating, Hunter!','2020-08-23 06:29:26.578000'),(23069,'Thank you so much for giving us five stars, Tanner!','2020-08-23 06:29:40.005000'),(23070,'We are here for you whenever the medical emergency need arises. We know you have a choice in emergency room care, and we appreciate you choosing SignatureCare Emergency Center.','2020-08-17 19:18:15.661000'),(23071,'Thank you for your review and your recommendation. We appreciate you choosing SignatureCare!','2020-08-17 19:18:01.527000'),(23072,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-17 19:17:55.408000'),(23073,'It is their compassion that makes our staff exceptional, and we take pride in their care towards all our patients. Thank you for your kind words and we will pass them along. Thank you for choosing SignatureCare!','2020-08-17 19:20:28.598000'),(23074,'Hi there. We are sorry to hear that you didn’t receive the highest level of medical care you were expecting when you visited SignatureCare. I have passed these concerns onto our leadership team and they will be addressed. We’d like to get more information about your experience. Can you email us at info@ercare24.com with your full name, date of service and location of service so that she can review your file? We will then reach out to you to discuss this. Thank you for the chance to make this right with you, and for taking the time to let us know how we are doing. We take your reviews and concerns very seriously.','2020-08-17 19:53:47.413000'),(23075,'Thank you for taking the time to leave us such a nice review. Our staff appreciates receiving comments like this, and we hope that you are feeling better. Thank you for choosing SignatureCare!','2020-08-17 19:53:01.070000'),(23076,'We sincerely apologize for the service you received at SignatureCare during your visit. We aim to make sure that everyone leaves our emergency room feeling better and without complications. We’d like to invite you to email our medical director we so can better understand the situation and review procedures with our team. If you would please email info@ercare24.com with your full name, date of service and location of service so that we can review your file and reach out to you, we would appreciate it. Thank you for the review -- we take all comments and reviews very seriously.','2020-08-17 19:21:02.645000'),(23077,'Thank you so much for giving us five stars, Taylor!','2020-08-17 19:20:48.553000'),(23078,'Thank you so much for giving us five stars, Chelsea!','2020-08-17 07:38:51.517000'),(23079,'Thank you for taking the time to leave us a nice review! We appreciate your feedback and love hearing how our staff took such good care of you. Thank you for choosing SignatureCare.','2020-08-17 07:39:34.103000'),(23080,'The most stressful time for anyone is during a medical emergency. We are glad to hear that our staff made you comfortable and able to relax during your visit. Thank you for trusting SignatureCare with your emergency needs.','2020-08-17 07:40:05.166000'),(23081,'SignatureCare Emergency Center is here 24/7 when an unexpected emergency happens. Our board-certified doctors and state-of-the-art equipment are available to evaluate and treat most medical emergencies. We are very happy to learn your experience was pleasant, as our entire team strives for excellence each time you come to visit us. Thanks for the great review!','2020-08-17 19:49:42.006000'),(23082,'Our promise to all our patients and families is to treat you like you are our ONLY patient. We are so happy to hear your experience was pleasant, and we thank you for choosing us for your emergency needs.','2020-08-17 19:49:27.951000'),(23083,'Thank you for your feedback. We appreciate you choosing SignatureCare!','2020-08-17 19:49:15.610000'),(23084,'Thank you so much for your feedback! Our goal is to always provide the best care. Thank you for choosing SignatureCare.','2020-08-17 19:49:08.462000'),(23085,'Our goal at SignatureCare Emergency is to get you in and out quickly and back to good health. We hope you are feeling better!','2020-08-17 19:48:53.360000'),(23086,'Your positive experience means a lot to us. Thank you for choosing SignatureCare, and please consider us next time you are experiencing a healthcare emergency.','2020-08-17 19:43:05.050000'); /*!40000 ALTER TABLE `review_reply` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_review` -- DROP TABLE IF EXISTS `review_review`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `review_review` ( `review_id` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `comment` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_time` datetime(6) NOT NULL, `update_time` datetime(6) NOT NULL, `star_rating` int(11) NOT NULL, `reviewer_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `reviewer_photo` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `location_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `reply_id` int(11) DEFAULT NULL, PRIMARY KEY (`review_id`), UNIQUE KEY `reply_id` (`reply_id`), KEY `review_review_location_id_880b431e_fk_gauth_location_location_id` (`location_id`), CONSTRAINT `review_review_location_id_880b431e_fk_gauth_location_location_id` FOREIGN KEY (`location_id`) REFERENCES `gauth_location` (`location_id`), CONSTRAINT `review_review_reply_id_fac28b62_fk_review_reply_id` FOREIGN KEY (`reply_id`) REFERENCES `review_reply` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_review` -- LOCK TABLES `review_review` WRITE; /*!40000 ALTER TABLE `review_review` DISABLE KEYS */; INSERT INTO `review_review` VALUES ('AIe9_BE-WkHUQvYNuVhjQlzNta9L8oQZ_nAT3p0422N9N9xPyDMCIXbHCcWeVLnLBMzQybnBbg7swAWMQZrkZaH4CO_wThmyft64JTI-ijfuNIqaSM-1Q1c','I had a really good experience here with Dr.omalley and Alvean chanell they helped me with a really painful cyst and im grateful for chossing this place !!😁😁','2020-01-22 00:09:15.471000','2020-01-22 00:09:15.471000',5,'I Dizzy','https://lh6.googleusercontent.com/-41ySaUBA5Co/AAAAAAAAAAI/AAAAAAAAAAA/DEfttzSSFqc/c-rp-mo-br100/photo.jpg','16389487648212004696',10197),('AIe9_BE-WkHUQvYNuVhjQlzNta9LdjFcbNpEztGwU67SLi9z4x8MyNrDn99ratNp2IW7DoYiKslDQgsWmV3CZhj4-PfTHhKFHppgT0Mhi5gWv2fCtL71HqY',NULL,'2019-01-10 21:13:51.484000','2019-01-10 21:13:51.484000',5,'Medic Healer Council','https://lh3.googleusercontent.com/-NN95qoMbKbI/AAAAAAAAAAI/AAAAAAAAAAA/kLmkRGASLfQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7486),('AIe9_BE-WkHUQvYNuVhjQlzNta9LdMN2pffEkX6HIja75DoR-t5kmqIyGiFKROtqqkjaPV1jf6EcjOyGi9ycYetkELCmiPjlhkfYtQEQWJU0BzdKE8yut9o','Staff was informative and friendly','2020-07-23 20:33:58.097000','2020-07-23 20:33:58.097000',5,'William Kirchner','https://lh3.googleusercontent.com/-MOJ44-Id7JY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmvu5kc52kemJQCpj9lGhMX3ku-CA/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22220),('AIe9_BE-WkHUQvYNuVhjQlzNta9LECvGf93emwEUYYcZnzVRaEgp-8qrZUFTDdvG666EkcUhr-JgiTt_TbXUc_NvMSnniTWje60LIefgi18yvUQa1aM_ilM','Really pleased with this staff! Will go back!!','2020-02-11 20:59:20.168000','2020-02-11 20:59:20.168000',5,'Landry R','https://lh3.googleusercontent.com/-0HEvFN58SmY/AAAAAAAAAAI/AAAAAAAAAAA/cpwjzWxHe2c/c-rp-mo-br100/photo.jpg','16590124370714063921',13865),('AIe9_BE-WkHUQvYNuVhjQlzNta9LeoFopRFAOEPcdZqpfIeEODq62U_NE4dCtYgFkPrQQ-FltO4QnPzvUYIYUBNfP1NvFWGaPipFJPWcDnRJzmQ7B0Ab8z0','They took care of my wife in a timely manner, it\'s the second time I\'m here, and they are always sharp and attentive. Receptionists are ready to help, and have a great personality. Thank you, Dr. Pham, Susan, Angel, Tanishia, And Evelyn.','2020-03-04 01:47:41.403000','2020-03-04 01:47:41.403000',5,'Moises Guzman','https://lh5.googleusercontent.com/-aLt-kEvZkUY/AAAAAAAAAAI/AAAAAAAAAAA/ut1ePzYuaWE/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',14114),('AIe9_BE-WkHUQvYNuVhjQlzNta9LkfsGrgcUN7HpCm2UGlCQC-D4G4pA2UGMZsnY4pb_1ORcWZosoqgEuKTgy4M-J6jYZONkT-La6_6yUz7vnFBgGKCeqac','This place is the best! They are very patient and very kind. To be honest they saved my life! They stayed on my about making time to actually take care of myself and for that I am forever grateful!','2018-12-23 12:17:53.902000','2018-12-23 12:17:53.902000',5,'Vanessa Hall','https://lh6.googleusercontent.com/-mVEqmpsm2iQ/AAAAAAAAAAI/AAAAAAAAAAA/cNaW5q9_7Lo/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7540),('AIe9_BE-WkHUQvYNuVhjQlzNta9Lko6W3leup7Idgaooan8C9cX3rlsCuUgxMTszuRuq7_jC3pS12Nb1NyLWaV0qVx5IEm0YGg5D01LF1b-uBW0llOX2kfU','Signature care emergency center here in Midland Texas is one of the best medical experiences I\'ve ever had. The registration person Maria was very kind and awesome and welcoming. The nurse Krystal was also very nice welcoming and very helpful and very professional when she was helping me. The radiology Tech Sedoni Was very knowledgeable and explained a lot to me about what she was doing which made me very comfortable and reassuring that I was in the right place. She was very kind in seem to take her job very seriously and explain to me what she was doing. Doctor Huerta Was one of the nicest doctors I\'ve ever seen he helped me understand what was going on and gave me all the information I needed to get well. Andrew got me all checked out it was very nice and also very knowledgeable by explaining to me my medications and where I could go since I was from Ata town to get the prescriptions field. I would recommend this urgent care to anyone who comes to the area and just found out and was also explained by Andrew that there was a signature care in my Hometown and Colleen Texas if I need any other type of emergency assistance I will definitely be using signature urgent care in calene I want to thank you guys for hiring such great people in staff to make me feel comfortable and I hope that others feel the same way to because they are actually good people thank you again and God-bless','2019-02-04 18:08:36.585000','2019-02-04 18:08:36.585000',5,'leslie jean','https://lh5.googleusercontent.com/-wxfoPXEmmi0/AAAAAAAAAAI/AAAAAAAAAAA/cyXRrtcYlj8/c-rp-mo-br100/photo.jpg','13486358490203335051',1074),('AIe9_BE-WkHUQvYNuVhjQlzNta9LujM78lM3EdRCn36HfapygaK48CpzCEiUwQ6QdZc7OtNiH5Wm7M1482HtXNCcXpySYg8wDRsBw9JS0bF1TZYX2Bh3aeI','Everyone we encountered at Signature Care ER Center was amazing! We were greeted and sent to a room quickly by a very kind gentleman. Nurse Katie went above and beyond to make us feel welcomed, informed, and updated on the patients status and checking in to see how he was feeling frequently. Dr Dewall was very knowledgeable and kind as well! I can\'t thank everyone there enough for making us feel welcomed and at home in a situation that was less than ideal. Thanks again. We are return customer for life... but hopefully not too many times ha.','2019-03-25 15:02:05.937000','2019-03-25 15:02:05.937000',5,'Caroline Crockett','https://lh5.googleusercontent.com/-j21pI-XGKyA/AAAAAAAAAAI/AAAAAAAAAAA/CuJIaboQpYA/c-rp-mo-br100/photo.jpg','16891069708558046635',4316),('AIe9_BE-WkHUQvYNuVhjQlzNta9LUzxpwnPm48QotR7Mi10J0cDOA6vJA3Us_Tpup-USwo-Zc54bgQ-kK6f1mIEU-lWwoHLQwjoFEvIDkxoArk7Cz0n5RbM','Chelsey, Kathryn, Tina, Christina were very helpful during this very stressful time. Great service!','2020-06-10 22:33:59.818000','2020-06-10 22:33:59.818000',5,'McAyla Chavez','https://lh3.googleusercontent.com/-Q3ASBzTcHsc/AAAAAAAAAAI/AAAAAAAAAAA/pwAqCG2hvD4/c-rp-mo-br100/photo.jpg','16891069708558046635',22057),('AIe9_BE-WkHUQvYNuVhjQlzNta9LYXnQFB-NlmEUBP1nuSJaUlud4isZsh3REId1dz79ur86dodpygcXSD4GqsGHbHmeL3rs4WjYVt9u5dc9I0aL18zIR1U','Thank you Graciela, Melissa and Andrea! Great team fast friendly and caring','2020-02-15 05:46:38.848000','2020-02-15 05:46:38.848000',5,'Oscar A','https://lh4.googleusercontent.com/-EPlsT6-4zqU/AAAAAAAAAAI/AAAAAAAAAAA/8xGFo2D7o6Y/c-rp-mo-br100/photo.jpg','16389487648212004696',10876),('AIe9_BE-WkHUQvYNuVhjQlzNta9LzCmuUXkxC5lC1lSOU68q1jtvrgvu2tYQTKu38oDUH9sMs2bVCbgNCd7psYeEfuXqgci5j4dODlzY6_gBj03cV_fj0_g','The most helpful staff, accommodating to me and my grandma. Jocelyn is very warm in her greeting even though I walked in miserable, was seen within minutes and the nurses ( Jani, Brittany and Selina) all kept me up to date with everything. Dr.O’Malley (that’s actually his name) is very kind and explained every possible thing I could test for and what he could do for it. Overall best experience in a clinic ever.','2019-11-09 19:30:00.173000','2019-11-09 19:30:00.173000',5,'Alex Manrriquez','https://lh5.googleusercontent.com/-7ut0fF3XxFE/AAAAAAAAAAI/AAAAAAAAAAA/AgT68-wDeg0/c-rp-mo-br100/photo.jpg','16389487648212004696',2720),('AIe9_BE-WkHUQvYNuVhjQlzNta9LZfI4vTJ7xNw0OVdhjOyMFiikLDfWCJ8y5MS-jb1eZ8SIfsNVqc4dlk4KVvDEcY98USqiWz4HiSGOF1y1VnnuJkLqf1w',NULL,'2016-06-26 12:13:50.734000','2016-06-26 12:13:50.734000',5,'Leandria Walker','https://lh5.googleusercontent.com/-f1zJAQVBUiw/AAAAAAAAAAI/AAAAAAAAAAA/XeOdRa-BDio/c-rp-mo-br100/photo.jpg','17394740196501090048',5231),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ_eV6o_x3QtZdDTiQXWPU9t7s8kouAXmnBepddT7-ydpxHsWUkIe23NAFMW9Xz1m24Bs6O73U_5V3_LZnEwcPIxC8f6o','Addressed my problems right away and made me feel better in an excellent amount of time. Keera the receptionist was very kind and helpful!','2018-01-04 22:54:00.025000','2018-01-04 22:54:00.025000',5,'Katelyn McDonald','https://lh6.googleusercontent.com/-7kHS2_EmzbY/AAAAAAAAAAI/AAAAAAAAAAA/29W2xdL8bKg/c-rp-mo-br100/photo.jpg','16590124370714063921',3887),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ_f6qMinuhSqUgdWGE6hnxY7RXMQMb5EIkrbpyGQqy1LjXj6CiB8McXtgjlT_wxxiDb6IiJiZniykoLhapYE1H6BCfjc','Excellent service. \nEileen had me registered in minutes. Dr. Ellsbecker was friendly & thorough in his approach to my treatment. Shelly the nurse was attentive to all my needs & concerns. Linda who started my IV had such a gentle touch and kept me calm through the entire process. Chris was great on checking on me often and seeing if I needed anything . Thank you all for treating me so well and making me feel soooo much better.','2019-10-14 17:19:17.133000','2019-10-14 17:19:17.133000',5,'Townesend Turner','https://lh5.googleusercontent.com/-yuvwi1KoQy0/AAAAAAAAAAI/AAAAAAAAAAA/7CKpNIgNvAQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4182),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ-aMfHboZzm_wYUutBcJZ486X7G8tRGuPH22U4Q698q1mWUQ1hMYnJDAs8DKdg6YGrKVdIpkZh3sLbf1BlZ1JqWu3bXA','Thanks Dr. Henderson, you were amazing.','2020-01-01 15:04:00.313000','2020-01-01 15:04:00.313000',5,'Hanuman','https://lh5.googleusercontent.com/-nyySfyQZgsU/AAAAAAAAAAI/AAAAAAAAAAA/XHLqCpoyM_g/c-rp-mo-br100/photo.jpg','17898197009688164559',5312),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ-lxmZSxdXgJPYU1xisLP0SHebpth_AQa9wFOOPLJmg_zO4cTRazGO7MZtJg4E3RfW5nbsIJVqKOR6nfpowGiA5yHMtc','Staff is doing a great job amidst all this chaos!','2020-06-18 23:05:33.109000','2020-06-18 23:05:33.109000',5,'George Mavridis','https://lh3.googleusercontent.com/--DEJ1xY6FwM/AAAAAAAAAAI/AAAAAAAAAAA/_g7S2JlB_lE/c-rp-mo-br100/photo.jpg','12541597562633926366',20898),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ-Xedh1FOPYttMmft8v6tc5csyvuv1GzyyplsXDQEDS8rx3bz-f6HzGz9dgIp1grl9whkct4bZ4CbTvmnlQcuvwxJAt8','Great experience and super helpful staff!','2019-04-02 17:59:52.220000','2019-04-02 17:59:52.220000',5,'Daniel Martinez','https://lh4.googleusercontent.com/-TjRAsd2wBHI/AAAAAAAAAAI/AAAAAAAAAAA/3QTCxi_lBD0/c-rp-mo-br100/photo.jpg','16891069708558046635',4307),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ3rPmy_mWc6gzhgQOESRPzU2tH2AZudilhhXInszJQNXgfrzIRW_GDnpgT5NhfAIllWl5LSNGchKXHAkLit6MawPD6MA','When I came in here I was 5 days into at ear infection. I had been misdiagnosed from another facility and put on the wrong type of antibiotics which allowed my infection to get worse and worse. My ear and half of my face was swollen and I was in tears from the pain. Every. Single. Person. that we came into contact with at this facility was amazing. Malissa at the front desk was nice and explained how their self-pay worked. She got me back into a room within seconds of sitting down in the waiting area. When we got to the room our nurse, was waiting for us. She was amazing. She was compassionate and sympathetic of my pain. She offered a warm blanket and you could tell she truly cared. When Dr. Henderson came in, he explained that I had been misdiagnosed previously. He knew exactly what was wrong and explained that I would need 2 new types of antibiotic and pain meds. He administered the first dost of antibiotics ear drops for me and explained clearly how to do it properly. Since I was in a lot of pain, they got me pain medicine promptly. Then the nurse explained my home care instructions, and made sure I understood when to take each medication (since there were 4) and I was discharged. I came in scared, crying from the pain, and frustrated and left relieved to have finally gotten quality care. I must’ve been in an out within an hour. It was extremely fast and quality service. I would 100% recommend Signature Care Sugar Land- Mission Bend to any of my friends and family and will definitely come back for my future emergency medical needs.','2019-12-17 23:16:28.679000','2019-12-17 23:16:28.679000',5,'Bryanna Hudspeth','https://lh6.googleusercontent.com/-klzbkimj2T4/AAAAAAAAAAI/AAAAAAAAAAA/-knil0uhr2Y/c-rp-mo-br100/photo.jpg','17394740196501090048',14068),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ6x_w7F1Jjsx13r5rHsguNq7dauHuXx7rwclAkueCIC3DFEuPZwdzPNSAt7N78Mhca4xuNZNLo6ldvQgMMEClHwO-534','Absolutely, hands down extremely satisfied with my visit from beginning to end. Staff Jocelyn, Marcus, Graciela and Dr. Lindsay were all so personal, amazing bedside manners and listened to what I had to say and made me feel comfortable. No wait time, was in and out of there. Would definitely recommend this facility for any of your urgent care needs.','2019-12-17 19:13:52.568000','2019-12-17 19:13:52.568000',5,'Lizabeth Ligon','https://lh5.googleusercontent.com/-oJgurdSZgXM/AAAAAAAAAAI/AAAAAAAAAAA/dJzU627lzRo/c-rp-mo-br100/photo.jpg','16389487648212004696',2538),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ7UELpdD-JIDBWf1TrVnmEWG9w_oj3dFYo_R39fPzEyzs5KDYeKS36TsG5ZOnQ2ULl2EUe8duK_XP7EYneoO828WmiV0','Very thankful for Dr.Sylvester and nurse Selina Franco for the awesome job they do. Definitely would recommend them for your needs they re extremely attentive. - Lily leyva','2020-01-29 02:31:12.466000','2020-01-29 02:31:12.466000',5,'Thalia Gasamanes','https://lh4.googleusercontent.com/-277rrqUUzdA/AAAAAAAAAAI/AAAAAAAAAAA/UWSLq52tlys/c-rp-mo-br100/photo.jpg','17394740196501090048',14040),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ9Ihe9SEkQgyocPD191mbK1HpcWP91Ei8eHuUcjN3YQzruwFgRJd04dZ4ZY1Bhadxer8uM9khWwJmOFYfSADpeWol00A',NULL,'2019-06-09 18:36:44.511000','2019-06-09 18:36:44.511000',5,'Cedric Fowler','https://lh3.googleusercontent.com/-4sxEpvFqBHo/AAAAAAAAAAI/AAAAAAAAAAA/59aLqdTs7nc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BE2uvj37J0NSRdDbsf5-SBJ9oIbWDhG_0UAbnb9u5rhL99StYtqEhIc9K_qfRA5YNYgKQe60l6BX2VxJbswn4f5EOxIQ4SGaK78EWFdiNPgBObr8eM',NULL,'2019-03-20 14:18:55.951000','2019-03-20 14:18:55.951000',5,'Brandy Bellamy','https://lh6.googleusercontent.com/-JRNaKHAaTXc/AAAAAAAAAAI/AAAAAAAAAAA/5nFE-6Ow9iE/c-rp-mo-br100/photo.jpg','8626688543755174284',8521),('AIe9_BE2uvj37J0NSRdDbsf5-SBJa-_djYVgVQbtxSrAyr5oHvEFvFt26FcU2FTLYq6eVNYVyvAdw7Z1_AmOQnjN2TB_EJ0FklUF4lTD3WR3VgZjQIS0Fuc','Nice and friendly staff and Dr Ashbrook Listened to all my concerns.and they took excellent care of me ..','2020-01-05 16:14:05.503000','2020-01-05 16:14:05.503000',5,'Elisa Burt','https://lh6.googleusercontent.com/-BZ5_UrfXGZs/AAAAAAAAAAI/AAAAAAAAAAA/AjT2d6X3spE/c-rp-mo-br100/photo.jpg','3272657195432704501',6805),('AIe9_BE2uvj37J0NSRdDbsf5-SBJA2RSYhlgNjq7OnznNzE_XalaTA4xmpwiSMyFJgZiVmFR6y4xBXjfWO3zmUtZqhvS4zu774CuJzUlmK2jYwFHMA10K6Y',NULL,'2019-07-22 03:46:27.365000','2019-07-22 03:46:27.365000',5,'Tamara Sims','https://lh3.googleusercontent.com/-uqatt7vNFXE/AAAAAAAAAAI/AAAAAAAAAAA/ZoddKcy42Yk/c-rp-mo-br100/photo.jpg','3272657195432704501',6937),('AIe9_BE2uvj37J0NSRdDbsf5-SBJAcN670VpkCfJQtj5XJVkR36u8sxex7d_d5MXoW8v2V9XyWipupxPIQ7WTWVNVwHkkiXXCp_-XMEDua5wPZ4ciN_tPSo','Awesome staff! Maria was very nice at the front and David in X-ray treated me great! Andrea the Ultrasound tech was so sweet!! Would recommend everyone to come here!!','2019-03-27 01:18:37.313000','2019-03-27 01:18:37.313000',5,'Jaime Pepper','https://lh4.googleusercontent.com/-zKUAtasSqTk/AAAAAAAAAAI/AAAAAAAAAAA/GL5mB80PuWc/c-rp-mo-br100/photo.jpg','13486358490203335051',1050),('AIe9_BE2uvj37J0NSRdDbsf5-SBJbkp-4_SK-govleBXeeQJ8o5dQy1ea1b0AZyK5RDkNjK7sD5bl-GXnoH29BZxEoVeul9w8V81aVIRLmG7DA8aKgMixdw','Awesome facility! Anthony RN, Morgan on the x-ray , And the Doctor were all absolutely amazing:) thank you guys','2019-01-25 18:06:27.504000','2019-01-25 18:06:27.504000',5,'Katelynn Brooks','https://lh6.googleusercontent.com/-GPFnPV_lDZI/AAAAAAAAAAI/AAAAAAAAAAA/iKqjSPO2808/c-rp-mo-br100/photo.jpg','16590124370714063921',3578),('AIe9_BE2uvj37J0NSRdDbsf5-SBJbqX4L4-hxpe4uEwMo3EadHXx_jFxaXEmmjeUN7qHddsemtkG3QmNWuHMW_tRKWNitIBb68aqYikqkXhndNkn56GdaWs','Dr Pham, Nurse Alvean ,Tech Micheal, and Jocelyn Where very helpful and kind to me and my Girlfriend they Got us in and out within 20 minute time span and helped my Girlfriend with her Wrist Problems Great place to Go !!!! I’ll recommend anyone here','2019-06-23 19:16:38.707000','2019-06-23 19:16:38.707000',5,'Willie Brown','https://lh4.googleusercontent.com/-kw__fCqN0Eg/AAAAAAAAAAI/AAAAAAAAAAA/9yoqVUhfGyE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BE2uvj37J0NSRdDbsf5-SBJEgRYa-cUVv1QhPNfVFmsHstxr-A5t4csMzUQPWXkaMLfjruq1Dgz4nGiZZfEhj-zkdej573Ona3a78CZ8Jxv89fHg7Q','Excellent care. Very nice staff and know what they are doing. Did not wait long. Extremely clean facility . ','2017-02-07 11:58:32.544000','2017-02-07 11:58:32.544000',5,'Joe Lewis Ortiz','https://lh5.googleusercontent.com/-Kb8oDRXvaEs/AAAAAAAAAAI/AAAAAAAAAAA/hCh7tLNqECk/c-rp-mo-br100/photo.jpg','14567670160750071148',1893),('AIe9_BE2uvj37J0NSRdDbsf5-SBJEtB1hSX65B9Ry78vXBxaYfbNrwgGC60Aqc1Uml4mGrhuT9KTqcGQU340avGojq2wAPqd1SiKmSqTHy7G7GnElLNeSkg','Everyone was amazing I walked in super sick and was greeted by Delicia and then was quickly brought back to the room where Dr Cavazos and Blake were waiting for me. They were very sweet with me and took their time to understand. Son Le Drew my blood and was gentle \nI left still sick but I know that they did their very best for me and were so very kind.\n\nIf I am sent to the dr again from work I will be coming over here.','2019-11-19 16:20:31.708000','2019-11-19 16:20:31.708000',5,'misti juarez','https://lh6.googleusercontent.com/--_rztgHxjds/AAAAAAAAAAI/AAAAAAAAAAA/R6ZGntlt7SY/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',8719),('AIe9_BE2uvj37J0NSRdDbsf5-SBJfhQhSpiEQcIpH0TYihJl1_R9pmg_3qKEqq0yr04wj0p2J56QInYETxikrMrcoZHzCYkzLE96d1LPaA0lu4LSujvZ7Vs',NULL,'2019-08-09 18:55:09.631000','2019-08-09 18:55:09.631000',5,'Lino Gongora','https://lh5.googleusercontent.com/-qJwBlip8kTU/AAAAAAAAAAI/AAAAAAAAAAA/9ckMw_MFqpY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BE2uvj37J0NSRdDbsf5-SBJGL_ntrf4VKYrnbOBLMfqRlS9MzZ0lZndeaieezVG_AA7cOXeA2CNcrZiSuzHrThudEHobzUJt7EV2NwW4W53LlVcQ_g','Great place and close to the house. Very friendly staff, Jani and Marcus were great and received a warm welcome from Anthony at the front. Dr. Nguyen gave me good advice and helped out a lot. I\'ll be back again if I need to.','2019-05-07 20:52:48.151000','2019-05-07 20:52:48.151000',5,'Chris Orr','https://lh4.googleusercontent.com/-t3y_arpOUng/AAAAAAAAAAI/AAAAAAAAAAA/BVQMdnfe1Wo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BE2uvj37J0NSRdDbsf5-SBJiYS_eNn02ivQ7ZsEUthWrCaM994T4bWBfOZ3C8ukesuFsDk6TWeY95yakceXo60RdrR7_UJwqnr7BexKazTHPZ1XWUk','The receptionist Keera was amazingly very friendly and polite as well as the nurse Fanny. Amazing visit per usual','2019-10-15 15:20:49.802000','2019-10-15 15:20:49.802000',5,'kayla nelson','https://lh3.googleusercontent.com/-5mdIc3VF8S0/AAAAAAAAAAI/AAAAAAAAAAA/QjCHmskIwmI/c-rp-mo-br100/photo.jpg','17394740196501090048',14083),('AIe9_BE2uvj37J0NSRdDbsf5-SBJkipMYfPwvOirS7g7aSGlIug-anR03ARuK8FT42Rpb-D09aJuo865cz20hgiqMn6rmH1y8NUuTe-xuQ-4w0usdjiLcPc','I took my 10 month old with a 103 fever to this location. There was no wait whatsoever and the nurse was attentive to all our needs and super gentle with my baby. The doctor answered all my questions and concern with patience and no rush. They were able to run both the flu and RSV tests in-house and got immediate results. We were out the door in about an hour. Be advised that they do take all insurance and you\'re charged your ER copay, but you may still get billed for additional costs. My initial EOB stated that I might be responsible for additional costs, but I got a follow up call from SignatureCare and they said they would be working with my insurance to rectify that. At the end of the day, I just paid the ER copay. Overall a great experience!','2018-02-07 15:54:58.640000','2018-02-07 15:54:58.640000',5,'Angela L','https://lh4.googleusercontent.com/-0mZeiTqKEm4/AAAAAAAAAAI/AAAAAAAAAAA/mLq3VE48nI0/c-rp-mo-br100/photo.jpg','14567670160750071148',1659),('AIe9_BE2uvj37J0NSRdDbsf5-SBJlmbdSwLNp_CucbBUxZNeZyiCo_87gj8tAxOyuLWvVERKUYPF5FjKDJ4MYiFLPdzo_5qCO2AXHNnpqtYkwTMmIxBDioU','They were all very nice and professional!!! Alvean made us feel comfortable and offered us snacks while waiting for results of tests. Jesus checked us in very rapidly. We did not wait more than two minutes in waiting room. Dr. Patel ordered a CT scan and Marcus did it right away. Everyone was professional and Olivia was prompt wit taking vital signs. I wish I could give this place a billion stars. We are working out of state from our home town and asked God\'s guidance on where to go and He led us to this place which is AWESOME! !!','2019-07-28 19:39:39.712000','2019-07-28 19:39:39.712000',5,'Roberta Hebert','https://lh6.googleusercontent.com/-TsaSvHXaMEk/AAAAAAAAAAI/AAAAAAAAAAA/PxD1mj9YvkA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BE2uvj37J0NSRdDbsf5-SBJlvbiUTosDeue1aPgqv7xVsQ6Jv5bQMNT7hxsNLLQqJRcFekckCgD_Whszuw4xvtTlXYTOG6quQ85iAK-P6B1X27uH78',NULL,'2019-01-10 00:02:33.908000','2019-01-10 00:02:33.908000',5,'Brandy Griffis','https://lh6.googleusercontent.com/-aGsT_M-6F3U/AAAAAAAAAAI/AAAAAAAAAAA/0cl-872EDxQ/c-rp-mo-br100/photo.jpg','3272657195432704501',7061),('AIe9_BE2uvj37J0NSRdDbsf5-SBJLxIW3gpqMQA6cDBpM2eQPRrzyHAnAnHU5ljjKsXh98_ffesHJjovYvUegID5SqnrfIKEY0ejM-jWm7steXaqGlCIZ8o','Whenever I need emergency or minor emergency services I can always count on Signature Care. Dr. Zhen, Kristina, Quyen, John and Genesis took great care of me while I was there. They always make sure that they are about patient care first. Thank you for all that y’all do... GREAT EXPERIENCE!!!!','2020-02-04 20:07:30.751000','2020-02-04 20:07:30.751000',5,'Mirenda Langston','https://lh6.googleusercontent.com/-YMez7jS11i8/AAAAAAAAAAI/AAAAAAAAAAA/atdjiaPRJqs/c-rp-mo-br100/photo.jpg','12541597562633926366',10532),('AIe9_BE2uvj37J0NSRdDbsf5-SBJNuouKkvscGLRW8Etg_WqY2Mdef0jL5nuDqLbagq_-qm15LKN3JKuoPT6VhDy7OHh7ApbTffOdIFVPT7lT9oh6NPoI8Y',NULL,'2019-08-24 02:11:42.058000','2019-08-24 02:11:42.058000',5,'Emily Bryant','https://lh6.googleusercontent.com/-_-96OhZiAv4/AAAAAAAAAAI/AAAAAAAAAAA/-ZAlVZai-Z0/c-rp-mo-br100/photo.jpg','16590124370714063921',3241),('AIe9_BE2uvj37J0NSRdDbsf5-SBJoCGVdlvUzSvqrRSfuk60wkdOZCIYJifrL7pF_7FknkTQxo_fdjPTEYi-3bIZO1zA2Esf3HV-Ejf684XBCURHW8_jdHA','I had a great experience, everyone was helpful .','2019-07-12 09:22:51.432000','2019-07-12 09:22:51.432000',5,'Niecy Dobbins','https://lh4.googleusercontent.com/-f1vbCb-ozts/AAAAAAAAAAI/AAAAAAAAAAA/xYFXyZtLp4M/c-rp-mo-br100/photo.jpg','8918455867446117794',9092),('AIe9_BE2uvj37J0NSRdDbsf5-SBJOvxQQleR7vi0mq25BaIsKJJdbjuW11idyDyWbpPYuoowT2pTJOEtjUWb0-k5tMyJoVFybysNSXubx3CkwSAleruo3gk','They were so fast! Everyone was so nice and helpful!','2020-07-22 14:01:04.597000','2020-07-22 14:01:04.597000',5,'Lori Khan','https://lh5.googleusercontent.com/-gT6QMzZcSmA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclNnpEnmDL8XEgcXa0PAAVElKvM5A/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21800),('AIe9_BE2uvj37J0NSRdDbsf5-SBJqCRhf2jzpxjfxg6VGBgZwlzTwOkRMo5DJuuykkjXdnGKJFpKcWm0HsDEdiWo-yrsJ5yT1g','Excellent service, staff, and the building was extremely clean. Would recommend to anyone.','2017-06-21 20:05:47.944000','2017-06-21 20:05:47.944000',5,'Kristi Hardy','https://lh5.googleusercontent.com/-KK8fDlm7W9g/AAAAAAAAAAI/AAAAAAAAAAA/32Gnfx5tEPQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7810),('AIe9_BE2uvj37J0NSRdDbsf5-SBJQdLCGu8NYR55wwDNzTyvtjOpiKlam8ottz2FfkHU7AFHGHwnetnMUcyVuyyEbpPk4paI_1QU4S2KDhvqPsSqExGhy4w','They took great care of me and were quick, kind and informative! Thank you Dr. Singla, Leslie, Hamzah, Olivia, Jessica & Agnes!','2018-08-25 18:01:31.060000','2018-08-25 18:01:31.060000',5,'Fepher Ayala','https://lh6.googleusercontent.com/-LnYQOCN8dvU/AAAAAAAAAAI/AAAAAAAAAAA/PHwUrcdaZN0/c-rp-mo-br100/photo.jpg','3511292162159714121',7608),('AIe9_BE2uvj37J0NSRdDbsf5-SBJqEkGCu0aNEOjk9o3VESlsYepyZab45ta7MsmlfKVULPnfGmfbl4bfZaVSGqaE0eL2XD7d1zvCgLdKV7g0SyiLV_pMsE','Went in today and everyone made me feel like they were there to help me as soon as i walked thru the door i knew i was going to be given the best care thank you Jessica, Senidia, and Keira','2020-03-04 01:32:42.643000','2020-03-04 01:32:42.643000',5,'Tamara Porter','https://lh3.googleusercontent.com/-lIE0_pQZH8g/AAAAAAAAAAI/AAAAAAAAAAA/hgT2M94lJu8/c-rp-mo-br100/photo.jpg','6521947413723274945',14509),('AIe9_BE2uvj37J0NSRdDbsf5-SBJqERQZcbzpFYJUTuUM6UOwHBJSbQAsbAqaqHlFsYmKyzFI2DHA3Gw4QG9NZco7Lks7D_kj6TNiQB_6k3nZNICY6gwDz0','I\'ve always seen this Emergency Center since I live close by. Never thought I would have to attend it, but unfortunately after my dog accidentally bit me I had to rush to this center. I felt very welcomed as soon as the register, Tanishia, signed us in. It wasn\'t long before the nurse, Susan, showed me to my room and attended me. Shortly after, Dr. Nguyen took a look at the bite and diagnosed it. He told me everything I needed to know and gave me my prescription faster then I could finish filling out forms from checking in still. Very neat, clean and respectful office. Would definitely recommend if needed','2019-12-04 05:52:32.818000','2019-12-04 05:52:32.818000',5,'Aimee Sanchez','https://lh4.googleusercontent.com/-QG8kCCL5zrE/AAAAAAAAAAI/AAAAAAAAAAA/l6gJDGz36ZM/c-rp-mo-br100/photo.jpg','17898197009688164559',5382),('AIe9_BE2uvj37J0NSRdDbsf5-SBJVswialeSsUBC-KuO7gJ54Ex0fgPy2gGleJfIdPFSB9I2oIzqxIl9zeGAgMsXxwXR5EEwC_Jm1vMNWCQk9493N2b4mA0','It was an excellent clinic especially Tanishia W. Was great on the front desk','2019-08-12 04:42:31.287000','2019-08-12 04:42:31.287000',5,'Fidel Cantu','https://lh6.googleusercontent.com/-oYv7gV3EKBw/AAAAAAAAAAI/AAAAAAAAAAA/soHKTZ1lRB0/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5595),('AIe9_BE2uvj37J0NSRdDbsf5-SBJxUT8sCUpKtJZ70vXFscYAG6vN2SD5LDpc5xA0ZcYvnYiVaX5Ow8MYIkFR7MkDg5gvHZOPOWQZ2YpD-w_50vIHSKmZuA','Very friendly fast efficient service. Thank Joselyn, Alvean, Marcus, Jordan, and Dr. Dang!','2020-03-16 16:18:46.543000','2020-03-16 16:18:46.543000',5,'Justus Davis','https://lh4.googleusercontent.com/-bUuHX847Krw/AAAAAAAAAAI/AAAAAAAAAAA/Dr3BwglldBM/c-rp-mo-br100/photo.jpg','16389487648212004696',21011),('AIe9_BE2uvj37J0NSRdDbsf5-SBJzU-_g7Pdx-5kYvRgKqE6oQHyjjt7xhaDK44fHDmf88MtYMnYbWlFgfxShxkXDeZGEmMqsQypS3dYpFQ0JjnIuLEoyy8','BEST ATTENTION IN EMERGENCY ROOM!!!!','2016-05-20 16:43:51.524000','2016-05-20 16:43:51.524000',5,'MONICA TORRES','https://lh5.googleusercontent.com/-_PAA-hA4F4c/AAAAAAAAAAI/AAAAAAAAAAA/FCjAvxLcG2o/c-rp-mo-br100/photo.jpg','17394740196501090048',5255),('AIe9_BE56IzJoRhed3TiZU5ElcSd-nhReVpF5MGH0--t-XProeXC4lFoGaOtfXlLRIH4fbiPFuz_x_513kZdKo7lIZO4llZMwQ1zTOuymhZBm_a59yNniIo','This place is amazing!!','2018-01-12 23:28:40.310000','2018-01-12 23:28:40.310000',5,'Felicia Kinsey','https://lh3.googleusercontent.com/-FWq9XrHC-Ac/AAAAAAAAAAI/AAAAAAAAAAA/uRtoDgVn-eg/c-rp-mo-br100/photo.jpg','8918455867446117794',9309),('AIe9_BE56IzJoRhed3TiZU5ElcSdcheLZUk89ZfCCOx-f7_xcvNlM4uJTl7dlAKP17VpMCbv8kQ-46C5BDtm-bdRCtQ5rnvSf5LQsPd37LGbKUYUGcH1RU0','At registration Karly was friendly and welcoming and quick to get me in to the room. My nurse was Jenifer, she was really comforting throughout the process of calming my nerves and administering treatment. When the tech, Brooke, came in she was calm and efficient in explaining to me everything that would be done in a way that I understood and didn\'t worry. I am grateful for the care that they provided.','2019-07-05 05:11:59.844000','2019-07-05 05:11:59.844000',5,'Johnathan Brown','https://lh6.googleusercontent.com/-_MHHtEP8Wqk/AAAAAAAAAAI/AAAAAAAAAAA/jrqy32kh3t0/c-rp-mo-br100/photo.jpg','8626688543755174284',8438),('AIe9_BE56IzJoRhed3TiZU5ElcSdPagCTDhRjOWZiAvvtGgfxkpIlLIsmOnGdlNxnK15UH_M-AixoVSnmllyJgaQhAX0De5y1DWvKWilyKRg_rRvRpDQAWw',NULL,'2019-05-25 15:51:11.241000','2019-05-25 15:51:11.241000',5,'Taylor Stephens','https://lh4.googleusercontent.com/-BLMAfv6CdSU/AAAAAAAAAAI/AAAAAAAAAAA/XeYFBfVp494/c-rp-mo-br100/photo.jpg','13486358490203335051',997),('AIe9_BE56IzJoRhed3TiZU5ElcSdTbHUDWZObZXe6ilvel9BGHDeUexIE_FGy5Dp0cLyF-NrTS3ac_B2vQxyyGGV43PfyV430QmxdNaVJUVsSz0-5p7jIsQ','They were awesome! They took us in and informed us on what insurance would cover and if there was a copay. Every staff member was extremely friendly and inviting. The front had coffee, a variety of cold drinks (sodas & Gatorade etc) as well as snacks. The facility was clean and pretty cool looking, it didn\'t make you feel like a cold miserable place. They offered us a hot blanket too. Major shout-out to our nurse Pam, and Dr. Sylvester for being professional, and answering all of our questions.','2019-07-29 02:04:44.386000','2019-07-29 02:04:44.386000',5,'Jessica West','https://lh5.googleusercontent.com/-1gQ3q7ipZXs/AAAAAAAAAAI/AAAAAAAAAAA/KHSX-aLeG44/c-rp-mo-br100/photo.jpg','8918455867446117794',9083),('AIe9_BEAgUIalCkcXZnurOUpP4uA_f0QJLee_h-Jkq0wQSqFdAJfhN7KQDp8f80YGOJ8467_U0Ylnt3Y54gCafy5JWzpFFQTpIEN7sF5p3MfD05_sYeKaEU','Awesome experience, very attentive very friendly Dr. Pham and he’s team Sarah, Fatima Daniel and Tanishia at front desk was very lovely. We absolutely recommended anytime.','2019-10-02 01:32:25.680000','2019-10-02 01:32:25.680000',5,'Zulma Romero','https://lh6.googleusercontent.com/-0XR5vVOYjAg/AAAAAAAAAAI/AAAAAAAAAAA/DYabs449kL0/c-rp-mo-br100/photo.jpg','17898197009688164559',5527),('AIe9_BEAgUIalCkcXZnurOUpP4uA_F52vNCkITTjja5b3pSFkz8U7H2KvG9NfbFtjDGYlBepfHwoY8x2IYy0I9bhUNryPmlb9a5TWGhc57h4Q_NNn0X-V1Y','This place is a scam. Make sure you lie about your symptoms or else they charge you $175 for a COVID19 test. What a great idea to enforce!','2020-08-17 21:37:15.274000','2020-08-17 21:37:15.274000',1,'Alex Park','https://lh3.googleusercontent.com/-Yolf-k7_NeM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckGCYcfdsxUoWa7rYYPtdTPaQLsXw/c0x00000000-cc-rp-ba2/photo.jpg','14567670160750071148',23000),('AIe9_BEAgUIalCkcXZnurOUpP4uA_KQiQ8_-9eU3i9MKbTPXmCIbTKZMaMvSq0y8jmcBbq6apAech6pZVuaTGBxxjNpTkX-oCKfJbYGFfun14Few7NE8i-U','I had a great experience here at this emergency room the people working there Dr. Ashbrooks, Luke, Kim, and Sherri are very professional and just great people','2019-04-25 14:03:02.721000','2019-04-25 14:03:02.721000',5,'Dalton Teague','https://lh5.googleusercontent.com/-eFndODSr7HU/AAAAAAAAAAI/AAAAAAAAAAA/zD5of2Gy8_w/c-rp-mo-br100/photo.jpg','3272657195432704501',6973),('AIe9_BEAgUIalCkcXZnurOUpP4uA_MP9Y-AvJ9rEvmdxZL7_vnP21p9PnRvzOQrESyZDQUwQSG1x2K9zaT4WtlIHZFpu070ozhnK8MXfty4VrcRVZahNEFE','Great experience! Short wait and great nurses and dr!','2020-02-17 03:01:42.975000','2020-02-17 03:01:42.975000',5,'Nikki Jones','https://lh6.googleusercontent.com/-H6LKefxZ2sk/AAAAAAAAAAI/AAAAAAAAAAA/sxFdML1heEo/c-rp-mo-br100/photo.jpg','13486358490203335051',13419),('AIe9_BEAgUIalCkcXZnurOUpP4uA_oe2qD5AhH0KT21csjwhxbSOb1z02YeSzs9Ff9vdeaCrg6Shk13yabfH7Dio0fJLRaC3I1MZqI_WP92MU9_2PX8CeeQ','As soon as i walked up to the countet the receptionist could see I was in a bad spot and got me a wheelchair immediately and let my gf handle the paperwork. Everything they did was prompt and on point. Dr. Miller was everything I needed as far as bedside manner and his ability to keep me calm and stitch me up at the same time. They were even ok with my attempt at post concussion style humor. 10 out of 10 times I\'d return there.','2017-07-21 16:22:16.550000','2017-07-21 16:22:16.550000',5,'Wesley Mauro','https://lh4.googleusercontent.com/-t_ycc1RDRKg/AAAAAAAAAAI/AAAAAAAAAAA/9dMovKUHaIY/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1789),('AIe9_BEAgUIalCkcXZnurOUpP4uA_pPG45HKLX4pusCVodhFC7MuCpzqsjKyqvLMwrXmfVrAIjmMel2fFXC1RfrWq4HEzPDhRrKmrDityWjOgV7zuey5ElM','Great to have such a great place close to home. Full service very friendly staff.','2020-01-19 14:02:00.335000','2020-01-19 14:02:00.335000',5,'Janet Troxell','https://lh5.googleusercontent.com/-IVZpkcSDFqc/AAAAAAAAAAI/AAAAAAAAAAA/NPJToPqic8k/c-rp-mo-br100/photo.jpg','16891069708558046635',9982),('AIe9_BEAgUIalCkcXZnurOUpP4uA_PRi4__ulivcmLE9JrXiRvsFysHySkZzeUS1pA-xkwBb-d4LVyYiQysm7TxUmylpFBQ6_jRWErhVRlpRBI4Ti2ulR7k','I visited SignatureCare Emergency center on 11 March 2020 and besides the discomfort I went in for it was a good visit, I feel like they came and checked on me every 5 minutes. My nurse(Alvean A) was nice and explained everything she was doing. My radiologist (Marcus B) was really good and informative on the cat scan I was there for and also shared jokes about wedding rings. Dr Ortiz came in way more than I’m use to seeing a doctor check on his patients and the registration nurse (Jocelyn A)was nice and offered us snacks the whole time. Overall they’re a great emergency room to go through my wait wasn’t long at all. Great ER to go to','2020-03-11 16:25:46.673000','2020-03-11 16:25:46.673000',5,'Zachary Woods','https://lh4.googleusercontent.com/-1d8GFvIDQ5c/AAAAAAAAAAI/AAAAAAAAAAA/BrM6itaumSc/c-rp-mo-br100/photo.jpg','16389487648212004696',13712),('AIe9_BEAgUIalCkcXZnurOUpP4uA-i8w7YQ3W1IrvqAZxZl0V30WGn_EMqBfYfcbY2JaZAfH-y_2-vCBWd_mKP-SeiQPS-zqTPOTerpHaxXPu7lYv2-F6Us','Was seen and treated quickly. Left feeling much better. Staff members were very attentive and kind. EDIT: Glad I have my own medical license now and can call in my own Zofran prescription, because there isn\'t a facility fee for that.','2019-01-30 07:41:05.030000','2019-01-30 07:41:05.030000',5,'Nancy Rice','https://lh5.googleusercontent.com/-8q1JUc-reHA/AAAAAAAAAAI/AAAAAAAAAAA/lkWAw2q1KOc/c-rp-mo-br100/photo.jpg','8918455867446117794',9187),('AIe9_BEAgUIalCkcXZnurOUpP4uA-JOkSmlyNQdcNtobKApLaNvFtUArc5yqpL3a_GVlCQW0gHa-FrHvmM4cmwiLWTN-k-g9N_PkzSaNaZjTFGOSoUWjxPE',NULL,'2020-01-17 16:27:30.091000','2020-01-17 16:27:30.091000',5,'Justin Hunter','https://lh4.googleusercontent.com/-7JNR2cRtK_A/AAAAAAAAAAI/AAAAAAAAAAA/TLxX7ZqgJvg/c-rp-mo-br100/photo.jpg','3272657195432704501',10079),('AIe9_BEAgUIalCkcXZnurOUpP4uA-JolUFLo4OGKGucyEmP0hpkZbQTRRK1-7_PGwFeZLt3Xb2ptLki7aO2tJ0QY-3dMyE6sqwjLk0ZpNLRzEgLc3cy0JTY',NULL,'2020-02-22 02:00:16.440000','2020-02-22 02:00:16.440000',5,'Haley Chance','https://lh5.googleusercontent.com/-Jh3uMOBbiXc/AAAAAAAAAAI/AAAAAAAAAAA/EHur2KPMU4k/c-rp-mo-br100/photo.jpg','8679688254631342173',14737),('AIe9_BEAgUIalCkcXZnurOUpP4uA-K_XUvo5uevYlstCy2FoNcgJ7Ut9B8nzPZqMEZARcfO-xMD-wyvUEHqvZEk9czh352WWoyQBPi1nC9ZCnYgotacpZR0','Awesome medical team. At a moment when I desperately needed urgent medical care, I was very well cared for by the SignatureCare team. Thank you for being there!','2017-09-28 14:26:08.133000','2017-09-28 14:26:08.133000',5,'Noel Grant','https://lh6.googleusercontent.com/-u-0-0GtOLC8/AAAAAAAAAAI/AAAAAAAAAAA/vuJZVx9GmsE/c-rp-mo-br100/photo.jpg','3511292162159714121',7785),('AIe9_BEAgUIalCkcXZnurOUpP4uA-LEGqAZj1JQ_V2FNNwQ6hTxc_Bwn2eRfqoHjrnxZycNQRk6dTffEfjXwVsbENbsJEKljKC1hGNQv7yFHgKCmFGoSyzI','Treated with friendliness and respect. Thanks to Amy.','2019-07-04 17:07:35.162000','2019-07-04 17:07:35.162000',5,'Peter Manning','https://lh6.googleusercontent.com/-aq13eDt8oNY/AAAAAAAAAAI/AAAAAAAAAAA/9r02km3c6-U/c-rp-mo-br100/photo.jpg','8679688254631342173',8821),('AIe9_BEAgUIalCkcXZnurOUpP4uA04ljX4ncp8ne86lBSq0gOeG5RbTV7Jez-kcE9Zw2CdbhTwI2a-wIhE5b4sqdp-AE_DJxAyvldvaHrVkOxpcIYyA1QWI','Came to get my son checked out. Friendly, quick service. Nurse and doctor were great with my little one. Felt very well taken care off. Would recommend!','2019-09-12 20:39:28.233000','2019-09-12 20:39:28.233000',5,'Isabel Tobin','https://lh6.googleusercontent.com/-Lm0Ma717EM8/AAAAAAAAAAI/AAAAAAAAAAA/-6FF9O85rKg/c-rp-mo-br100/photo.jpg','2694018788013845459',6068),('AIe9_BEAgUIalCkcXZnurOUpP4uA05AIDOIStxepGBzt_uRNPh9NFvU8y2TzRzi7A5QXjI14ce5jTFmCvWM7mka_UL92Brdlk4jilOXNdps7Z66uNDX0HSo','They were awesome they took really good care of me nice staff they made sure my site my cast was done right ms stephanie was really nice','2019-09-13 22:36:48.132000','2019-09-13 22:36:48.132000',5,'Tasha Malbrew','https://lh5.googleusercontent.com/-_kXiUrgzogQ/AAAAAAAAAAI/AAAAAAAAAAA/iWxYOgN0_Fs/c-rp-mo-br100/photo.jpg','17898197009688164559',5549),('AIe9_BEAgUIalCkcXZnurOUpP4uA0dgujN2xezDT2MKtaKZ1ZYYSg4aD3eV7FtKTJtKDDcoWmTQw-JBrC9oMAheh5EA53T0yaJAmW3nny4h2LuY3Dh0oSHE','Rn: Mollie \nRad: Eric \nReg: Tobie and Doctor Yost were great','2019-12-30 04:47:02.996000','2019-12-30 04:47:02.996000',5,'Cedriaunna Kelley','https://lh3.googleusercontent.com/-YhQra3ZSLfE/AAAAAAAAAAI/AAAAAAAAAAA/Gz4olqsd4AA/c-rp-mo-br100/photo.jpg','3272657195432704501',6814),('AIe9_BEAgUIalCkcXZnurOUpP4uA0xRNyrjDhwngHKsaucHMkuUoddIJ-BYCR4g-AOz9_jKlUnUi7DY-x1gFoG0m42oDEiPNRLm8A7d1lbZAgjifyYwdDiQ','Thank you for the great service, Dr. Edwards, Sara, Carly and Tino','2020-02-03 04:29:58.751000','2020-02-03 04:29:58.751000',5,'Shawn Humphries','https://lh4.googleusercontent.com/-gYK4qiUm2_A/AAAAAAAAAAI/AAAAAAAAAAA/7MIG8w7zwM8/c-rp-mo-br100/photo.jpg','12541597562633926366',10369),('AIe9_BEAgUIalCkcXZnurOUpP4uA1-NODdG1BSPlMcSMUJtzEbUrSUX0bfEjBKaOxS61QWz9zNBzdn3v5-iryJ4vW1xblP52t6gg3nY-Syclg8ziUODZ8Cw','I had the best experience at Signature Care. All of the staff ( Austin, Jennifer, John, Dr. Jorden) was amazing and helpful. I will be back for any future needs.','2019-06-07 18:41:29.955000','2019-06-07 18:41:29.955000',5,'Jimi Smith','https://lh6.googleusercontent.com/-n3MrIJjIEEQ/AAAAAAAAAAI/AAAAAAAAAAA/vITzbQiDfGU/c-rp-mo-br100/photo.jpg','8626688543755174284',8462),('AIe9_BEAgUIalCkcXZnurOUpP4uA159kD4dM3ysdkNAlG8HKT_JLsvKroVVJqU4VEmSsfh6un8JM-BcqIFGtr2H0kKo_-HNVhHpYxj8FckPt92RSexfDdpI','West chase signature care is the best always friendly get you in and out thank you dr Denny','2020-03-08 20:38:48.417000','2020-03-08 20:38:48.417000',5,'Krisslynn Fountain','https://lh4.googleusercontent.com/-X9RXsRH1CD0/AAAAAAAAAAI/AAAAAAAAAAA/m0QyKPQf9qc/c-rp-mo-br100/photo.jpg','12541597562633926366',16461),('AIe9_BEAgUIalCkcXZnurOUpP4uA17gCPW0lo-2PPakA-w5nbv54s2i8a88F3bAHBeeyva9iCqoTr6I1HJQQPrrzYuNGEmrZOaJhyaFw4tow8SImzOW90HM','My second visit at SignatureCare - Montrose was just as convenient, friendly and successful as the first experience. \n\nThe Brenda R. and the rest of the staff is incredibly friendly and professional, making my check-in an absolute breeze—no lines, no wait times, and ultimately an easy check-out. \n\nAs for the actual care, my nurse and attending physician were phenomenal. Churia was attentive and inquisitive, listening to my symptoms and full story then relaying that exact message to the physician. And Fast forward to the treatment, Churia was caring and efficient. \n\nDr. Sylvester was collected and engaged, having reviewed the nurse’s notes, picked up in the symptom threads immediately, and respected my experience and pain through the process. His diagnosis matched accordingly and he prescribed the proper medication and regimen to get through this episode. He ended our consult with a handshake, which is always appreciated as a patient. \n\nAll in all, fully recommend Signature Care - Montrose for your convenient and local Emergency Center.','2019-05-25 13:59:16.789000','2019-05-25 13:59:16.789000',5,'AJ Franklin','https://lh5.googleusercontent.com/-T0pVa9SCCCg/AAAAAAAAAAI/AAAAAAAAAAA/Sazsain3Jw8/c-rp-mo-br100/photo.jpg','3511292162159714121',7318),('AIe9_BEAgUIalCkcXZnurOUpP4uA1cffdLKUkvi7t8D_4ULmhRujOKHgftoZQptCCkxmCVQstWl2bBbfF05L05OtnhMHeQBtCsOdFylI6PU7l4P3jvy3zco','Staff is friendly and great location. Dr. Ding, Nurse Rachel, and tech. Ralph were all great!','2018-09-29 04:20:25.467000','2018-09-29 04:20:25.467000',5,'Lili V','https://lh6.googleusercontent.com/-3NTgJ-2mFxA/AAAAAAAAAAI/AAAAAAAAAAA/aPjpzSpRVQY/c-rp-mo-br100/photo.jpg','17394740196501090048',4783),('AIe9_BEAgUIalCkcXZnurOUpP4uA1j7ElSgQCLQgEb0yUniy1e-wPFqrq2gSXPKIzS34tcrTUrh08JBx4ZWoNTdOcBCpKTH3tsVEID0fl5i1_zI3JGTdwUc',NULL,'2017-02-01 14:31:02.653000','2017-02-01 14:31:02.653000',5,'John Ferruzzo','https://lh4.googleusercontent.com/-Zb8-QiJqRt4/AAAAAAAAAAI/AAAAAAAAAAA/j-GCfe8SoSY/c-rp-mo-br100/photo.jpg','14904078213800803294',2420),('AIe9_BEAgUIalCkcXZnurOUpP4uA1Mh4rbRDXVVzMXDGC4G3t_zlyx9NnQUxZJE61dVXDFv1QtRIXvdcjrp_xb-Tqwv4hUCSjkc1TgJzAgVWAfKN7-RH0tU','Keera, the front desk receptionist was very kind to me and went out of her way to help and assist me. Juan was very kind to me and provided at home care regiments for me. Nurse Tammi was very kind to me and humorous. Dr Grinblatas was funny kind and knowledgeable. Wasn’t in the ER long at all maybe less than hour total. Great place to go if you need medical help.','2019-06-23 15:23:33.972000','2019-06-23 15:23:33.972000',5,'Prince Paul','https://lh3.googleusercontent.com/-7Uu5wl4zYhM/AAAAAAAAAAI/AAAAAAAAAAA/NTBGoEtCZus/c-rp-mo-br100/photo.jpg','17394740196501090048',4654),('AIe9_BEAgUIalCkcXZnurOUpP4uA1x8zBa0Zfnko5rFUCNnxuKYchy5Se2TynteEFC6HQpNhVF6vvZOH5doDp1dzAwBDzjEfjjPQRraAktGuaju1pmqHU4g','I waited on the phone for an hour and a half and was told to come in at 10pm to get a wristband so that I could get a covid test the next day. I arrived at 9:30pm and they told me that I was supposed to register online and all the tests for the next day are gone.','2020-06-30 05:12:25.908000','2020-06-30 05:12:25.908000',1,'Sara Ali','https://lh3.googleusercontent.com/a-/AOh14GgQj4CH777CQuWv0LmH-LmkhSdlLsWw03OLT4EAYA=c0x00000000-cc-rp','17394740196501090048',21430),('AIe9_BEAgUIalCkcXZnurOUpP4uA23uTq-2osqIs_ttwNZvCgx5YaRwr2GOC9hs69rYJVShWyWGmMGs6H1nnHziklCUuweEtOhF03Jh2_f8H77sopSj0WMw','My wife had a serious back issue and the staff was so friendly and great to deal with. They also got us out in under 2 hours and that is a record for the 24 hour emergency centers. Special thanks to Nilang Patel, awesome to work with, best attitude we have ever encountered. THANKS','2019-10-24 19:51:29.205000','2019-10-24 19:51:29.205000',5,'Rob Beckerman','https://lh5.googleusercontent.com/-GprwfB_B3pI/AAAAAAAAAAI/AAAAAAAAAAA/cM5pMU56Txg/c-rp-mo-br100/photo.jpg','8679688254631342173',8776),('AIe9_BEAgUIalCkcXZnurOUpP4uA2JA3ltCgtaeDbfg0pvQX_6O4D-RTPS4vHFME009Cq2iMF0gZFLZugJFaM4aT_q600fBzGYNp57pTjPI4KVLt9gZ2yA8','Great experience & very helpful & amazing staff.','2019-12-29 02:00:23.183000','2019-12-29 02:00:23.183000',5,'Breanna Stubblefield','https://lh4.googleusercontent.com/-kAQSKlkVvFw/AAAAAAAAAAI/AAAAAAAAAAA/ITINSjLuSN8/c-rp-mo-br100/photo.jpg','12541597562633926366',290),('AIe9_BEAgUIalCkcXZnurOUpP4uA2LndflTiC24dcYy3t8QxSBpIlDLcg8fMcbeNbwEDq-chT-f48p1yhVD2w1--o0ycfFo35oOvUEhNxsdUwF_U7j6zJq4','The staff is very friendly, the facility is very clean, the atmosphere is calming & the customer service was exquisite. Leslie & Eve took good care of me through the registration process. Leslie answered all my questions. I drove myself to the ER center b/c I injured my ankle and Eve had a wheelchair brought out to me IMMEDIATELY & I was taken to a room IMMEDIATELY. I will DEFINITELY come back...if I have a medical issue. Dr. Grinblatas is friendly & has a calming nature. My nurse Churiah was attentive & friendly. The Raditation tech Olivia was gentle & kind. Thank You Montrose location for everything.','2019-07-15 17:27:13.441000','2019-07-15 17:27:13.441000',5,'Taylor Roy','https://lh3.googleusercontent.com/-ySOFMfNMf7A/AAAAAAAAAAI/AAAAAAAAAAA/5B6GkrSZZ2A/c-rp-mo-br100/photo.jpg','3511292162159714121',7252),('AIe9_BEAgUIalCkcXZnurOUpP4uA2SFEvX7EzMPfOFey-NLytKmZtEYi3zT3kU8N7Ha7JucudF_DQ6A5BrwII4GZo_870V6IGpSfQtgd5RElh_hkTQTtJwA','Because of a reaction my body had to a medication, I needed to get somewhere quickly where my problem could be diagnosed and resolved. The Signature Care Emergency Center took the time to analyze the problem and to make the appropriate recommendations. I was treated quickly, with respect, and cared for as though I were family. I can\'t recommend this Emergency center more highly!','2017-07-18 23:38:42.198000','2017-07-18 23:38:42.198000',5,'Roy Brooks','https://lh4.googleusercontent.com/-ihc33MHOzs4/AAAAAAAAAAI/AAAAAAAAAAA/Dpli5cykjvA/c-rp-mo-br100/photo.jpg','3511292162159714121',7801),('AIe9_BEAgUIalCkcXZnurOUpP4uA3_rLJfxb1qHqpFQsMHrjN-znfdMjID5vB4RjbEW0ripiwlnn1rywQXZrXdvH9HMXLfB2s-lcASyrx6JQZLwxDVBzMDc','By far the best service. Jerry and Taylor were very helpful with my pain and made my visit a lot more comfortable.','2017-02-10 07:04:35.958000','2017-02-10 07:04:35.958000',5,'Jake Wilkes','https://lh5.googleusercontent.com/-716hTpSwipw/AAAAAAAAAAI/AAAAAAAAAAA/zJ24_rsafMU/c-rp-mo-br100/photo.jpg','16590124370714063921',4061),('AIe9_BEAgUIalCkcXZnurOUpP4uA38sFL22YTkEsCrVxnXq62vU_NDAsOw07X0oKTfF5WSriOJi3BX7F9AQdC8lG26PVvIiQir-2CguchmpKjyYa2SnZm5k','Dr.Singla was very friendly and took good care of me along with the nurses Sarah and Fahme the radiology tech Hanh is very sweet. Carl and Genesis was very fast and nice I will be returning for any issues.','2020-08-15 15:26:20.107000','2020-08-15 15:26:20.107000',5,'Airel Wooten','https://lh3.googleusercontent.com/-7JrGjSXT0fU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckOKG9HKI5_MBE8Z0UDN6DcVJGvFw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',23003),('AIe9_BEAgUIalCkcXZnurOUpP4uA3JT6nv7kO2PyvbBNaVlo4ZLYaTPA4DlEgbnkJ7-lCpPn8aB2Qx6tV_b1SoYP_N9CLM-Bt3EOv0hAwZOr4DreO218y-s','Had a deep gash on forehead speedy staff and very nice people took care of me on timely manner','2019-08-20 03:42:25.185000','2019-08-20 03:42:25.185000',5,'Waqas Ashraf','https://lh5.googleusercontent.com/-n_VAfBTWkn0/AAAAAAAAAAI/AAAAAAAAAAA/4gE9xsSRMZM/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEAgUIalCkcXZnurOUpP4uA3Sz3YGAftWuTBE7ACug1_rZoIe0tcJc9zYRGyRX2gIGCtK4mxnRZKBANJz8LHkpt_Fpmv3yH9q9XE-HHNgwNht_HwgE','Very professional and excellent service.','2020-08-04 02:55:13.123000','2020-08-04 02:55:13.123000',5,'Matthew Singer','https://lh3.googleusercontent.com/a-/AOh14GhioKH6GzOIRyv1oFmfeExnIg2YJ1pNKB5rOtyX=c0x00000000-cc-rp-ba2','2694018788013845459',22109),('AIe9_BEAgUIalCkcXZnurOUpP4uA3ZAhNszOUlOtXo-r6EiIhJyc8mp4V-3ddmZwqfgwLuAaOvYg5kwUUP4K49xGndieBoGyxo6exZVNKpGFdk9RUjr8Jl4','Tanishia made the place very quick & friendly 💗 I will be coming back because she rocks .','2019-11-22 00:42:03.480000','2019-11-22 00:42:03.480000',5,'kayycee clark','https://lh3.googleusercontent.com/-arviofFmk-Y/AAAAAAAAAAI/AAAAAAAAAAA/E9Zy6W9kRLg/c-rp-mo-br100/photo.jpg','17898197009688164559',5409),('AIe9_BEAgUIalCkcXZnurOUpP4uA40oUmtgu98dH0DANnIl3cxLmCfP1y3nIPqd6NFyi9jt0wbNHRJ5-pqWNubV0Rem8dTu2ttP8u3CGDt4SOVi1C3Y5c6w','The staff was great. The building is brand new and looks it. The doctor was really helpful and down to earth. My only criticism is that when I walked in, there was no one at the front desk. Being an emergency center, they may want to make sure that someone is ready to receive people in distress. \nEverything else was great though and I would go back. ','2017-06-17 19:49:20.519000','2017-06-17 19:49:20.519000',4,'Devin Martin','https://lh5.googleusercontent.com/-_blDq9fqDPE/AAAAAAAAAAI/AAAAAAAAAAA/PaT1bdktbL0/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1808),('AIe9_BEAgUIalCkcXZnurOUpP4uA48a83PJhsEFC3QTst-plig8e747HWGsXI-9oiXtlrIrprYEaXx0iha0vu8kekFAOg1VsnkMMR-NfrwIRT1NmPUdV1uA','Alyssa p Shawn k y’all are soo awesome thanks for helping me','2020-01-24 21:49:55.689000','2020-01-24 21:49:55.689000',5,'Alexzanderia Starghill','https://lh6.googleusercontent.com/---Tzm2_ZJUg/AAAAAAAAAAI/AAAAAAAAAAA/R_UwrrveLmI/c-rp-mo-br100/photo.jpg','8918455867446117794',14867),('AIe9_BEAgUIalCkcXZnurOUpP4uA4aYslM4Xlk4cqFwmAZtm-1l1q6wi346mePikNGS9UAnttNlIQ5atL9QGT_ymLUUYpFlxTG5qgD2N90WlMrMH6UQAjcc','Everyone was very nice and answered all my questions.','2020-08-18 23:35:12.639000','2020-08-18 23:35:12.639000',5,'Geri Castaneda','https://lh3.googleusercontent.com/a-/AOh14GhwV58AGjU1OTWUxuDnqTK7icmAlcpOMhpRp29e8Q=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BEAgUIalCkcXZnurOUpP4uA4ivKIOlIEqiZ6EMFArcVSd9t8gERvHkzZXaE__hsup2pDtNntE8oijZODzJqN2W9YQIBddda5VIwNf2ess3ewhWSPrI','Went for drive thru covid19 test and they were very organized and professional. Would definitely recommend.','2020-07-28 20:15:10.943000','2020-07-28 20:15:10.943000',5,'Tammy Reese','https://lh6.googleusercontent.com/-eTJ4AYwUaYY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnj0WpDxLX5nrcpjh63o0mI6glqFA/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21863),('AIe9_BEAgUIalCkcXZnurOUpP4uA5bWjydtXBvTNo2bU7T8KX5jfaz9Nb4TKQO97bppy19NrenRatDAOVIrraVyt1ZneFOfAsjPhaf92to7MFOpirbUiMeU','At least 5 people showed up in the room to check out my wife. Very thorough and professional. Highly recommend this facility.','2020-01-19 23:03:49.035000','2020-01-19 23:03:49.035000',5,'Tony Davis','https://lh4.googleusercontent.com/-0td-_CQQx9k/AAAAAAAAAAI/AAAAAAAAAAA/UuUnFmZVDwk/c-rp-mo-br100/photo.jpg','13486358490203335051',13467),('AIe9_BEAgUIalCkcXZnurOUpP4uA5jEtMsxxD-7h8PaqLdsacDB3jcybDKupLMPbjEl_5ziPDR-sMxeRqWEn6JHqhUICIusKkXyGZ6LvzahmvBsk4M2W4Dw','Everyone was amazing from Mercy greetings us at door to entire stuff that helped Brandon. Highly recommended for urgent care!!','2017-02-27 17:54:21.819000','2017-02-27 17:54:21.819000',5,'Denise Flores','https://lh3.googleusercontent.com/-HmIqpPBr8ro/AAAAAAAAAAI/AAAAAAAAAAA/-OZHbxHvwyg/c-rp-mo-br100/photo.jpg','14904078213800803294',2397),('AIe9_BEAgUIalCkcXZnurOUpP4uA5q9HySvTnzqfq_v3dgOOVVzGTwNaLKY0KumLZg5ZnkLZ-mUJRyAfKbgrjl6nNpKa-iR4p4i56TvDwmj3TZi4S2rSd_w','I had a Great experience at the signaturecare. Very friendly nurses and staff . Especially Gina and Olivia','2019-07-15 21:16:49.158000','2019-07-15 21:16:49.158000',5,'Josh Williams','https://lh4.googleusercontent.com/-FT_h6CXevBo/AAAAAAAAAAI/AAAAAAAAAAA/rGXu_ynnClE/c-rp-mo-br100/photo.jpg','3511292162159714121',7251),('AIe9_BEAgUIalCkcXZnurOUpP4uA5VAr0uRdkVSpBfxvU8VJPPN6FtCACAO1xxZk_Ew3Ycof_GRJLRp_EF-cMhnEbRMuAw9UKqX2g72U_Dul0_CKQFCctGE','Took my 7-year-old daughter to the Austin SignatureCare ER the other night and couldn\'t be more impressed with the facility and staff. My daughter was seen by Dr. Lingan and nurse Christina. They were exceptionally calm and professional and got us home before bedtime. Big bonus on a school-night! Thanks again.','2019-11-18 16:57:09.615000','2019-11-18 16:57:09.615000',5,'Eric Begley','https://lh5.googleusercontent.com/-o7ZTziJnB8Q/AAAAAAAAAAI/AAAAAAAAAAA/QBroomvHe-0/c-rp-mo-br100/photo.jpg','16891069708558046635',4145),('AIe9_BEAgUIalCkcXZnurOUpP4uA6j4E2QUm1SSD8bDdZXwuoLf5PmWjcs3ddD_2QGfXsLEQXRIVlH7eCLxHaGTC2EuxsMctbqSDs8E-hiC0AB6wXupPWJQ','The staff was amazing, courteous and very attentive to my every need. Great service in a great location!','2018-05-14 15:46:29.556000','2018-05-14 15:46:29.556000',5,'Susan Willi','https://lh4.googleusercontent.com/-j69PPUzGbT4/AAAAAAAAAAI/AAAAAAAAAAA/3rm0sDEql4U/c-rp-mo-br100/photo.jpg','16891069708558046635',4482),('AIe9_BEAgUIalCkcXZnurOUpP4uA6s_un-uDUV2o8i9UHAlR2y3CW1sFsRmLJ7xb6TYVADrpJt0JsTdHTpLlLchzqKPJH80cjjQSdxAk3Tuis3OcsYmKero','Great staff Registration Ashley, Nurse Erica, and Tech Ashley K were great and made me feel very comfortable. Service was speedy and treatment was speedy as well. Great job and I\'ll definately be back for my urgent care needs.','2019-07-26 21:03:42.855000','2019-07-26 21:03:42.855000',5,'shaneika moore','https://lh5.googleusercontent.com/-qIv1PQ02Iz4/AAAAAAAAAAI/AAAAAAAAAAA/hPwF5hTf76g/c-rp-mo-br100/photo.jpg','8626688543755174284',8424),('AIe9_BEAgUIalCkcXZnurOUpP4uA6X64Fihhco6Ldn0YFNA06VdkPayfer0bRpaL3tkfa4OcC2ErzLws2VwEa7dgclnjifltb6iOhwHuSJBxxxmtC2kYED4','Great service checking in. Cody made me very comfortable prior to meeting with physician. Provided very good care. \nJohn F','2020-08-03 21:12:28.551000','2020-08-03 21:12:28.551000',5,'john fearheiley','https://lh3.googleusercontent.com/-EqQSZxJROy4/AAAAAAAAAAI/AAAAAAAAAAA/b9fD4C4iJic/c-rp-mo-br100/photo.jpg','2077061009497551125',22745),('AIe9_BEAgUIalCkcXZnurOUpP4uA76wlqwAOH0Yl6cMvEr1kL2bdiRKXeEDCRQOLzx4g40pRy9DcmmlYcm32snGOcJwzqFV6p2w2jAjqdm-C4XZj96yaFX4','Amy the registration, Dr. Patel and Bryan E. RN were very helpful..','2019-05-04 06:41:22.276000','2019-05-04 06:41:22.276000',5,'Jasmin Cruz','https://lh3.googleusercontent.com/-aKtfWrIg0VQ/AAAAAAAAAAI/AAAAAAAAAAA/iMy-vaj4Ydg/c-rp-mo-br100/photo.jpg','14567670160750071148',1327),('AIe9_BEAgUIalCkcXZnurOUpP4uA78H_MiCFHL81FSR3W5egxFM_QtWijTBC1Ya-2By5s_L-Hl95DkG0k749ExlKuj7e-iOYh2-X2rXp4gOYNJUOWqe1-7E','Awesome place, great energy! Friendly faces, loved speaking with Keera she was very helpful.','2019-05-30 22:05:37.076000','2019-05-30 22:05:37.076000',5,'Alexes Green','https://lh5.googleusercontent.com/-_SunZR5waf4/AAAAAAAAAAI/AAAAAAAAAAA/Se1aX4ppvAY/c-rp-mo-br100/photo.jpg','17394740196501090048',4676),('AIe9_BEAgUIalCkcXZnurOUpP4uA7bDwVjtwcDMoSYHiDksmB9qQKmosLiUAJ6nPoAi87WqvNDUjhRX0ALR_lptxTe-YJfA5eXuzQeIQJWlTyJBEna69fLk',NULL,'2019-08-22 16:43:53.471000','2019-08-22 16:43:53.471000',5,'Cary Todd','https://lh4.googleusercontent.com/-PE_KI8LvV2M/AAAAAAAAAAI/AAAAAAAAAAA/T28mXOoBIk8/c-rp-mo-br100/photo.jpg','16590124370714063921',3244),('AIe9_BEAgUIalCkcXZnurOUpP4uA7jOazgXhqavSieZveScjr5RVMacm-8i6mYJEGY2zKkg3X8b0xWEjbeJaCHHSAU4BZUPpznY2hKUYqn17FMU_QtAxpxg','This was my first time visiting signature care and it was amazing. Ms. Sindy at the front desk was very helpful and nice. The paperwork was not confusing and the wait time was short. My nurses Gina and Vivian and the techs Diem and JB were extremely helpful and efficient with taking my vitals. Dr. Singla was efficient and forthcoming with all the information and immediately knew what to diagnose me with. I had a wonderful experience at the signiture care and will recommend it to everyone I know in need of medical attention.','2020-01-24 20:07:51.258000','2020-01-24 20:07:51.258000',5,'Willie Gonzalez','https://lh3.googleusercontent.com/-Qu_la0t3LgI/AAAAAAAAAAI/AAAAAAAAAAA/W91__1eRdRY/c-rp-mo-br100/photo.jpg','14567670160750071148',10130),('AIe9_BEAgUIalCkcXZnurOUpP4uA7qWKh6irZov3PwpSXandJhMFinAFZZbQW-7gxerBLQjLi2FFlwr07wHr1nBanYNzB7zRm6ViwIvSMqKcnA927hD6vuQ','The Doctor Kotg and the nursing staff Bryan and Fatima were amazing!! Great place and great staff','2019-02-10 01:32:55.868000','2019-02-10 01:32:55.868000',5,'Karla Ulloa','https://lh5.googleusercontent.com/-200OH4qZOlc/AAAAAAAAAAI/AAAAAAAAAAA/OG5lQfkPRnk/c-rp-mo-br100/photo.jpg','8679688254631342173',8873),('AIe9_BEAgUIalCkcXZnurOUpP4uA7xRuBXTtiEw3RG5w_Xwv88eSvKW4h2P5ShNbrotenodj-o8tqC6MPBqP1QJLhmy1OpTKY4O0699HIyLrJl5M2i8fnDk','The staff was very professional and the wait time is little to none. Great experience!','2019-12-31 04:49:39.229000','2019-12-31 04:49:39.229000',5,'Terrielle Harrison','https://lh4.googleusercontent.com/-NOXGieUYMFo/AAAAAAAAAAI/AAAAAAAAAAA/enG-LmXMb28/c-rp-mo-br100/photo.jpg','12541597562633926366',282),('AIe9_BEAgUIalCkcXZnurOUpP4uA8H7AQaWk5vqLfWu_XeNBYJSqwKmxRcnDzCK-Ca7tvicD80SDOuw3gfjrK5Z-_TQwU086-MyE1NPeGXxuI1hJ-ZRaQ-Y','Staff was amazing and very friendly, went in for COVID-testing with 6 people, they got us processed quickly and we were in the back in less than 10 minutes and out in less than 15. Great experience. I would recommend this facility to anyone!','2020-06-20 21:51:03.989000','2020-06-20 21:51:03.989000',5,'Jeff','https://lh6.googleusercontent.com/-mzcvBLWs4D0/AAAAAAAAAAI/AAAAAAAAAAA/dwW77ZF780k/c-rp-mo-br100/photo.jpg','8918455867446117794',21226),('AIe9_BEAgUIalCkcXZnurOUpP4uA8ugLazZZWHwNxUHUa_XiRnDUxQuat_S9TCxfM9GGqH14DeI5o7GtZSEIDvbSnNOXvzzMQI644hTWBHZtyg-M2mw01hU','Thank you so much to Dr. Rose, Christina, Linda and Ricardo for taking such great care of me this past Sunday. \nI’ve never liked going to the emergency room for any reason but this was actually a good experience! The place was so clean and the staff just amazing. I was seen within 10 minutes of completing paperwork...that would never happen in a traditional ER! Signature care is definitely the way to go if you ever need ER care in the South Austin area!','2020-01-28 20:15:54.920000','2020-01-28 20:15:54.920000',5,'K Hayward','https://lh6.googleusercontent.com/-0h7G1OEp3mQ/AAAAAAAAAAI/AAAAAAAAAAA/mtBmM_TnsBw/c-rp-mo-br100/photo.jpg','16891069708558046635',13970),('AIe9_BEAgUIalCkcXZnurOUpP4uA8zFpUluvzQ574yXAkNrgSZk5Dg3d9D1h0aCJ4ngeeq2mqQSstsAykdeex1koJOOhD0QDKlxyjcCc82EzYG04epIla_k','AWESOME','2019-02-26 18:51:15.075000','2019-02-26 18:51:15.075000',5,'luvenia king','https://lh4.googleusercontent.com/-IrJbVjNW5-A/AAAAAAAAAAI/AAAAAAAAAAA/1DKyVf3T8G8/c-rp-mo-br100/photo.jpg','17898197009688164559',5832),('AIe9_BEAgUIalCkcXZnurOUpP4uA9-_au985reFBuVtfcOJwGc_hQNqymCZ4fzbCg4dOj8KwGUrXMk_EnKvNimwHj2piThV5yvT6JvzBkCtLlYciw_B-abs','Great job Anthony and the entire staff!','2018-09-16 15:59:41.793000','2018-09-16 15:59:41.793000',5,'Julie Cunningham','https://lh3.googleusercontent.com/-Ttqb6_xRdQ8/AAAAAAAAAAI/AAAAAAAAAAA/ryoASFacS50/c-rp-mo-br100/photo.jpg','16590124370714063921',3723),('AIe9_BEAgUIalCkcXZnurOUpP4uA90EITtXEUJpEzo8vcNZUMpEXfA0GBkApfkoIw_8zkAcLZTV4_dzve1Hgtc3x7R4GS5ls_G36v12eTtcY-NJMoLttShQ','My husband has a terrible case of bronchitis and didn\'t want to wait until Monday to see his doctor. We tried stopping at another urgent care facility but they kept us waiting for 30 minutes and had tons of paperwork for him to fill out, so we left. Signature Care Emergency Care is in our neighborhood--they saw us right away, had only a few minutes of paperwork to complete, and unlike the other urgent care facility, which was staffed with a Nurse Practitioner, my husband was able to see an MD and get a chest X-ray. From now on, we won\'t go anywhere else.','2017-10-08 21:57:16.332000','2017-10-08 21:57:16.332000',5,'Margaret Miller','https://lh4.googleusercontent.com/-4sZFNZM5yaQ/AAAAAAAAAAI/AAAAAAAAAAA/mHUjoPOQfKk/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7782),('AIe9_BEAgUIalCkcXZnurOUpP4uA9Iy0NqxHGKwftlCqeP2_drzoy8R1Ou7xBW2dJ2f4xE8iJ10wj-i9IEPjFn6_jma56TcGb623MogijgWjqhFk5onqYWY','Amazing service and staff!','2019-01-12 00:50:08.144000','2019-01-12 00:50:08.144000',5,'Pamela Gonzalez','https://lh3.googleusercontent.com/-b6VIOqNMVwE/AAAAAAAAAAI/AAAAAAAAAAA/umgapLC9br8/c-rp-mo-br100/photo.jpg','17394740196501090048',4743),('AIe9_BEAgUIalCkcXZnurOUpP4uA9KUdygi6WeFmrUnXucwFoaZk5-rXdpK2euH03PCUdfGYzYcsOQABecv9OdGyN9ZvbbzQUAHlwbIvCVuV7Xrz9mhvVBM','Fast, pleasant, professional. Results were clearly explained. Can\'t ask for better service. I would recommend.','2016-06-04 02:56:25.069000','2016-06-04 02:56:25.069000',5,'K Wills','https://lh5.googleusercontent.com/-QLB13OHEVwY/AAAAAAAAAAI/AAAAAAAAAAA/5D1rLwh70C8/c-rp-mo-br100/photo.jpg','17394740196501090048',5244),('AIe9_BEAgUIalCkcXZnurOUpP4uA9lalUHEQjqZlO4_i-BAiDS1MtEIZEIGC2glHIaijpXz69WGiC2pKmCObOQBCVtQ_JRy2jmasWPXXer8gppI8ZLHqsNc','Good experience. Prompt service. We were seen by Dr. Mauldin, Alvean, Jose, and Patrica\nPatricia.','2020-01-25 19:41:24.728000','2020-01-25 19:41:24.728000',4,'David Oakley','https://lh5.googleusercontent.com/-aH_zD_1oqfI/AAAAAAAAAAI/AAAAAAAAAAA/uKn3WvxpxZE/c-rp-mo-br100/photo.jpg','16389487648212004696',10181),('AIe9_BEAgUIalCkcXZnurOUpP4uAa_ee9APSj0fsdauPDSJNYq5sSA-WRym0omQ5pc4f6HOtteiPSOKpWluaJwYZ-PQJxEIju8VzYzsZBX1wDdHUK__mjTs','Maya at the reception was great and helpful!','2019-12-14 20:02:11.205000','2019-12-14 20:02:11.205000',5,'Margo Branch','https://lh5.googleusercontent.com/-tSv87GtWu1w/AAAAAAAAAAI/AAAAAAAAAAA/tck13no7y7Q/c-rp-mo-br100/photo.jpg','12541597562633926366',345),('AIe9_BEAgUIalCkcXZnurOUpP4uAa4oPsaSJ6wrO8v-k55vbK61BW-nlhnxm2Js3a4ur100mav0qboG3PoXygSf94P9iDxWFSQYKiaOV7Hu0WJcEPtHQvnQ','Regi. Vy, nurse Rachel, & Doctor nguyen a the best! Absolutely appreciate their service and taking care of me as good as they did','2020-02-09 15:09:02.139000','2020-02-09 15:09:02.139000',5,'Kelsie','https://lh4.googleusercontent.com/-GnvMj-QO1ak/AAAAAAAAAAI/AAAAAAAAAAA/oEeWzCDSfM0/c-rp-mo-br100/photo.jpg','17898197009688164559',14181),('AIe9_BEAgUIalCkcXZnurOUpP4uAAeCZCW8O0s7WcnvluE3Z9OEt0_olf87yhwELDsKmt78NVkee61W4NQsRit0lGF06paJPby9Vmnd_7pJPo-veYuOA2Zk','Dr. Dang (great and great bedside manners), Alvean A-Nurse, Marcus B-Radiology, both very professional, knowledgeable and attentive and Elida Jasmine-very welcoming at Registration, all in all it was a very good experience. Would strongly recommend if there is a need for it as I had.','2019-09-11 15:09:13.350000','2019-09-11 15:09:13.350000',5,'C K','https://lh3.googleusercontent.com/-HBqUbrWRiI0/AAAAAAAAAAI/AAAAAAAAAAA/gabxvQPb9_s/c-rp-mo-br100/photo.jpg','16389487648212004696',2923),('AIe9_BEAgUIalCkcXZnurOUpP4uAag1AvJOSEq2sAcrPfRW6ZB70LNu1FKVYKdojGkw5kZ0gNxIfOKPaCwDnf_892G3FXend8VT0ai_iIS7CZKFOHdldjGY','The nurses and doctor\'s are great.','2018-04-03 00:25:01.221000','2018-04-03 00:25:01.221000',5,'Brandon Haley','https://lh4.googleusercontent.com/-jUo1j58Ckvk/AAAAAAAAAAI/AAAAAAAAAAA/ThdxcCUsjZ8/c-rp-mo-br100/photo.jpg','8626688543755174284',8645),('AIe9_BEAgUIalCkcXZnurOUpP4uAaSybQ-mBWO9Ig2XZzUWXNw6CwYTBGJESqWwEmxi4z2fv393Rrj-5MxW7sg50B6-W6OTMVbXPDbzXi8WoUT30ViiBl6M','The folks at SignatureCare are remarkably kind and helpful. I went here due to a medical emergency, and the wait time to see a doctor was only a few minutes. The doctor and attendants were kind, professional, and supportive. Brenda, the receptionist, was phenomenal! They also worked with me to make the visit affordable. Thank you so much!','2019-05-22 15:48:19.749000','2019-05-22 15:48:19.749000',5,'Johnny Motley','https://lh6.googleusercontent.com/-wglsk4S6Oa0/AAAAAAAAAAI/AAAAAAAAAAA/Kb1I8usNxDY/c-rp-mo-br100/photo.jpg','3511292162159714121',7320),('AIe9_BEAgUIalCkcXZnurOUpP4uAaTRkm0APqlhhyHCqW72x9JRO3q8ibLh6_JmRXeBjLAN-_V5H3KvpZH6ubm6FGfVCrcWGffIiS3rf4gAUIblBKQX7PXk','Very quick and efficient with clean facilities. Bretnie (rn) was very kind and helpful.','2020-07-26 14:13:53.348000','2020-07-26 14:13:53.348000',5,'Seth Cook','https://lh6.googleusercontent.com/-TDx2JkSgx9Q/AAAAAAAAAAI/AAAAAAAAAAA/WQYEd8Pe9ZE/c-rp-mo-br100/photo.jpg','16590124370714063921',22025),('AIe9_BEAgUIalCkcXZnurOUpP4uAAxS1smbCGKp44STEFJEsrIkwt3-M4Yz8ZtpZqXoFuXB4_qfLO8dcubLvY7qOGEgvaRT1TGPrt99J3bYSGShf9ybTnc4','They were also nice starting with registration with Carly! Dr wang answered all my questions in our Rn Sarah was wonderful even the tech Thelma and radiology Sherman was great!','2019-12-24 01:28:59.225000','2019-12-24 01:28:59.225000',5,'Bunny Evans','https://lh5.googleusercontent.com/-uE-jLv3_m4k/AAAAAAAAAAI/AAAAAAAAAAA/B61cox7hcoM/c-rp-mo-br100/photo.jpg','12541597562633926366',312),('AIe9_BEAgUIalCkcXZnurOUpP4uAaZyP3OV6De3xyiSmezJZ1nLHh1v5hSE_5TF9qL5g78t-MtegspQI7_TUuhzS7WNFzMKk01bkz3piOYAjVyOQYarRigY','Dr.Grinblatas is a true hero.I walked in my anxiety was next level he ease my anxiety he was very professional kind hearted.He is a An extraordinary human being I was pacing my room waiting for my results and heard him fighting to save a life.I admire this human being and he went above and beyond to save a life and under the pressure of being on the front line he continued to make patients feel at ease.It was eye opening to me.I have such Admiration for Dr.Grinblatas and praying for him and most of all Thank Him.He is a Angel on Earth.Blessings to him','2020-07-09 08:48:27.375000','2020-07-09 08:48:27.375000',5,'Kathy Green','https://lh3.googleusercontent.com/-r8jLlqqbSZ8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnc9Jzf-6Zs2-VLZGqceWdy_y5a1A/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21812),('AIe9_BEAgUIalCkcXZnurOUpP4uAbMI99Luzc9Kn8fyL3wtVhSKWsdCOKv6rI9VPKfn5LCwfaPJNOa52LXomNO4EoyeIAaXMaLYG-ksIl2yYi3YSP4O5YHo','Thank you signature care for helping my girlfriend when she got sick this morning they were quick helpful and friendly','2020-01-23 17:08:15.254000','2020-01-23 17:08:15.254000',5,'Angel Tzunux','https://lh5.googleusercontent.com/-wQ9VbG7xp7U/AAAAAAAAAAI/AAAAAAAAAAA/w5itFlbrUO8/c-rp-mo-br100/photo.jpg','12541597562633926366',10105),('AIe9_BEAgUIalCkcXZnurOUpP4uABMNym9-82MvZJPHYEh6urgkNZZbtzBQKnA52YCiyDdW5Lbj90RSto3IMN2kHp8uvUXFmUSgSXJeOjUDk_5LCu3rWlmY',NULL,'2017-02-09 23:33:49.973000','2017-02-09 23:33:49.973000',5,'Saul Ben-Yaacov','https://lh4.googleusercontent.com/-RmGMBFsWxAU/AAAAAAAAAAI/AAAAAAAAAAA/D8k4pzdpGdQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2415),('AIe9_BEAgUIalCkcXZnurOUpP4uAbp2sy1NrQMphlAZLYJgOSCo906MDJhI3wOciC5aK6uWBt1FYNaKMDGbopYM5_r-TRimdfmkHBWo_k8XaSArbWkPgHoM',NULL,'2020-07-14 21:18:22.295000','2020-07-14 21:18:22.295000',1,'Matthew Merritt','https://lh5.googleusercontent.com/-z96xEXB2GDA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclf379Cx__u-iHHb0TuHfNdQbuGGw/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21853),('AIe9_BEAgUIalCkcXZnurOUpP4uABqbRgd0YEWVnD1qMzC4Gxwy_kzzhRug3zY4XwbzIKezRQrDNULMMJqqVBSTm2mU5lRxqD5BdVBJUQ5Jtkoox1BbbOa4','Doctor Angela was great, informed and was very helpful!','2020-08-10 11:33:02.556000','2020-08-10 11:33:02.556000',5,'Ellaa Bellaa','https://lh3.googleusercontent.com/a-/AOh14Gi33ifFtz5o8KH9wm1DiRHh10hEZyKKz6GShVH3-g=c0x00000000-cc-rp','14748677429039074158',22501),('AIe9_BEAgUIalCkcXZnurOUpP4uAbqzH8F4PnUdZSbrgk6DYFRNbTB1pV3AQ5-4d4Ab7y9rpCpIAyTazUoznAqghflrvCT4QUtFEbJG6TE_4p1eVqrQemVs','Great customer service!! They took great care of me! I’m feeling sooo much better','2019-01-27 23:31:43.835000','2019-01-27 23:31:43.835000',5,'LookatNikki S','https://lh6.googleusercontent.com/-hAWGW_gn2kE/AAAAAAAAAAI/AAAAAAAAAAA/j8cfhK-7SAg/c-rp-mo-br100/photo.jpg','3511292162159714121',7448),('AIe9_BEAgUIalCkcXZnurOUpP4uABu_KhuTJxRpgTshARCFCyGHEpj7qop8PL8WE2WcSYZrU8Gt-sQQmrZq0SgRvjh3sUzMO6fgugcrn_J4js8TX_ZwuA7c','The staff and Sindy treated us with excellent care. Everything was explained to us thoroughly and they took their time in reviewing our status.','2020-01-08 18:53:40.179000','2020-01-08 18:53:40.179000',5,'Lydia Clifton','https://lh4.googleusercontent.com/-RsdJ10snPrY/AAAAAAAAAAI/AAAAAAAAAAA/yoPJZsYRuVE/c-rp-mo-br100/photo.jpg','14567670160750071148',9440),('AIe9_BEAgUIalCkcXZnurOUpP4uAbwcyD1kboXKUEXhlDzVDniFJTUr-gPlrYLc3j4GaXxg0q655oNeLPKlpYXXXI6yOyGvBki-Z8lBMhFylhBYRnm0gnjc','The doctor was in a rush to diagnose me with allergies. The first nurse I saw was very stiff and her questions towards me sounded rehearsed. I left with a fever and aches but was prescribed with allergy zyrtec. Will NOT be coming here again.','2019-03-12 03:19:19.006000','2019-03-12 03:19:19.006000',1,'victor guzman','https://lh4.googleusercontent.com/-l7qN9Wd-qzE/AAAAAAAAAAI/AAAAAAAAAAA/Jg2d71Z7cXg/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7382),('AIe9_BEAgUIalCkcXZnurOUpP4uABwI5WxLFO03AjJLwUjR1RGjSa3hzcInfhtrDnaavDcLEZ9aDtmhKFAXhxscJC21HLD-x__sgDfdVPAdJios9MviiKNk','Always an enjoyable experience with them!','2019-05-23 17:10:58.024000','2019-05-23 17:10:58.024000',5,'Shelby Huggins','https://lh5.googleusercontent.com/-lEmHyrC7kjo/AAAAAAAAAAI/AAAAAAAAAAA/SihMDC4VwRI/c-rp-mo-br100/photo.jpg','3272657195432704501',6961),('AIe9_BEAgUIalCkcXZnurOUpP4uAbZb6EK16TZOvMtwaBBCbrTNIjOrlwONN3L4bN0FIeD6zw1h0Vb1quUYVnjWIQ7tAMzhu4yOaKsQIhP7W9HgBwPBLQiE','SignatureCare Emergency Center exceeded my expectations. The check in process with the front desk was fast and easy and i was promptly taken to the room by my nurse who was so compassionate and caring. She took her time to make sure she understood all the problems i was experiencing and made me very comfortable. In less than 5 minutes the doctor came into the room and not once did i feel like he was rushed. He was as well very compassionate and made me feel like he was genuinely concerned with the issue i was having. They had onsite imaging and i was able to get a CT to properly evaluate me. I will definitely be back again if the need for emergency care arises.','2018-01-13 14:25:38.947000','2018-01-13 14:25:38.947000',5,'Echo McCain','https://lh6.googleusercontent.com/-uy4PrWAVqi0/AAAAAAAAAAI/AAAAAAAAAAA/lY9yz9CZvGQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4900),('AIe9_BEAgUIalCkcXZnurOUpP4uAc9i-a7J8OcaLuleHI7CpilFDFswKgz_pxHE2r104j-mswTX9ksxp7GcS4XnVhN_xEwQhNJ17NM_idy4j7QxBiCYrKLA','I came in with chest pains and I was seen immediately. Brenda at the front desk greeted me with a smile and was genuinely concerned. Once I was taken to the back, everyone jumped in to make sure all my needs were met. Naureen, thank you for your excellent bedside service. All of you were great!!','2019-07-26 22:17:22.016000','2019-07-26 22:17:22.016000',5,'Tracy Arceneaux','https://lh6.googleusercontent.com/-sMlFTrky2AQ/AAAAAAAAAAI/AAAAAAAAAAA/YqEsVbOv8cg/c-rp-mo-br100/photo.jpg','3511292162159714121',7239),('AIe9_BEAgUIalCkcXZnurOUpP4uACoJIex1Cmr-eyjA8JpvsGwMQokU6BKWJs_1VYlAvNUv6ZU6-0nnrHXd8UR0a6v1Rjp_x1_qN9F9-nrsClUMG7n8CB8A','Skyler, Courtney, and Lucas have all been amazing and helpful! The doctor was great and knowledgable and we were seen quickly.','2019-12-17 03:12:32.519000','2019-12-17 03:12:32.519000',5,'Candace Penn','https://lh5.googleusercontent.com/-bZ3dnAswOK4/AAAAAAAAAAI/AAAAAAAAAAA/sDl5ySe0_dY/c-rp-mo-br100/photo.jpg','8626688543755174284',14641),('AIe9_BEAgUIalCkcXZnurOUpP4uACQLW4BsU-oxaLefdcGAGtjhKBNKMXM_hLB1kjOTxiIGcs6Fl9DHHHSimhSQrpp4szraEzOUnntBbVB123o8W-1xoGog',NULL,'2017-09-06 14:41:21.400000','2017-09-06 14:41:21.400000',4,'Girlpower4life Gamer','https://lh4.googleusercontent.com/-feD7naNPw4w/AAAAAAAAAAI/AAAAAAAAAAA/bi6SCOeJyDE/c-rp-mo-br100/photo.jpg','17394740196501090048',4982),('AIe9_BEAgUIalCkcXZnurOUpP4uACxnch9_Ou8ygff7y3WdkWAfg4lqwMF_wqhb39LD1mXBPqSN-HjjMArfgkgYWqsaMlVzAqTzArzbPqX-OSp6wAbtaOYQ',NULL,'2018-12-17 06:24:43.784000','2018-12-17 06:24:43.784000',5,'Eric Nguyen','https://lh6.googleusercontent.com/-MuB-in21cGo/AAAAAAAAAAI/AAAAAAAAAAA/iDnLk8mafKo/c-rp-mo-br100/photo.jpg','17898197009688164559',5913),('AIe9_BEAgUIalCkcXZnurOUpP4uAD-UWEc5cx8hZhCUG0xmkJQRACNq2bT0gNwNZbkC51pvYLC7oMpa_P3w8qnSZBscWLEwzxZtLzAYtWSKWkpE8dZiUs2E','Staff was great and overall friendly. They went above and beyond for my medical needs. Even though it was due to a fracture tooth they help me with getting rid of my pain. It was around midnight when i went into see them knowingly they are not a dentist. They were sincere and kind. Will come back if more medical attention needed. A+ work!!!','2017-11-26 07:41:47.982000','2017-11-26 07:41:47.982000',5,'Bobby Twoclap','https://lh5.googleusercontent.com/-_-ry1ZKxn_k/AAAAAAAAAAI/AAAAAAAAAAA/vpQS0irpxhg/c-rp-mo-br100/photo.jpg','14904078213800803294',2309),('AIe9_BEAgUIalCkcXZnurOUpP4uAdbkpFnwNQt-DXRalwn5_6rFQrXThRC4NDj2AHW9JIlFgekPAIHRdapxdKeF5CxL_2J-bjkLBFOWo2nyL_sOxT6-dPFI','I would recommend. They are very fast and friendly','2016-08-14 19:02:53.743000','2016-08-14 19:02:53.743000',5,'Andrew Lai','https://lh5.googleusercontent.com/-rK2vTgcRNU0/AAAAAAAAAAI/AAAAAAAAAAA/JlIzYYjVDrw/c-rp-mo-br100/photo.jpg','14567670160750071148',1992),('AIe9_BEAgUIalCkcXZnurOUpP4uAdgainXMgfy8SpayXSqgqIdXhnOmlOftIgSzCIQWRLsjmfvbAH2-GUTlMzoW6dE_q8bPRKavkOYt2pjegyxBM8Lo3yyU','This is the second time I have come to signature care and I always get treated with care. Nurse Nadia and Dr. Chowdehery are very attentive and will make sure you are in great hands.','2020-08-05 21:14:06.738000','2020-08-05 21:14:06.738000',5,'christian gonzalez','https://lh6.googleusercontent.com/-cIQZBBt6OFk/AAAAAAAAAAI/AAAAAAAAAAA/hbbbRDYmhXY/c-rp-mo-br100/photo.jpg','14748677429039074158',22522),('AIe9_BEAgUIalCkcXZnurOUpP4uAdNcGVhQXvrImwHWUicueQMbjlemRj7ydJobsRSZMPLco-6Pr6NoibqZFMhb8Iox-iDTzgW_SFBws11oOgbLGmIWrulY','The staff was excellent! Olivia was very helpful at the front desk & went above & beyond the call of duty. Because of her I will be back. Milly, Tiffany, Jonathan, & Dr. Castaneda all made the visit pleasurable and fast. They diagnosed my problem correctly & I am returning to normal again. Thank you so much. Ya\'ll are wonderful!','2018-03-15 14:24:33.501000','2018-03-15 14:24:33.501000',5,'Mr. Bohannon','https://lh6.googleusercontent.com/-b5EfBCBEUQE/AAAAAAAAAAI/AAAAAAAAAAA/dng5TxXkyLI/c-rp-mo-br100/photo.jpg','14904078213800803294',2271),('AIe9_BEAgUIalCkcXZnurOUpP4uADo9x0Ici9TG5kXsreCXq9htG6vbIGXJBVF5Lfpou3N2DNzw_glsFKATVJNatRPMzRb0iygrLjBeCnEQC4WDB9XtkKT4','I came in for a quick check up and I must say Doctor M.Wang , Patty from registration , nurses Rachel & Rommel , the radiologist Fatima and the Er Tech Nikia were AMAZING !!!','2019-08-29 05:15:48.559000','2019-08-29 05:15:48.559000',5,'nancy aburto','https://lh5.googleusercontent.com/-utVozchNN78/AAAAAAAAAAI/AAAAAAAAAAA/ib73UdTObc8/c-rp-mo-br100/photo.jpg','17394740196501090048',4613),('AIe9_BEAgUIalCkcXZnurOUpP4uADQhcxt-d0S0vJGaPWEbxd7v56d1n17tTIiX2UGSOb1YNWCd_zGjQwaq8yH_xoNsSsqKC3j9oCB7Gp6gePyMNk1FlOr4','Came here for COVID testing. Despite the long wait (not their fault) the experience was awesome. Super nice and attentive while waiting for an appointment. We got water bottles and other treats during the middle of the night and when it started raining they even set up a tent for us. Security guards and the main person outside (I believe his name was Nick) were great! Our nurse, Sedrick, was awesome as well. Super friendly. Thank you everyone, we will definitely recommend to all my friends and family.','2020-06-24 21:42:39.048000','2020-06-24 21:42:39.048000',5,'Sandra Hernandez','https://lh4.googleusercontent.com/-D9k16-EdURg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckrmQiVeBKT6mkC2p1tK_M13xoSmw/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21283),('AIe9_BEAgUIalCkcXZnurOUpP4uAdsE8l_gEiCTe4xQhWG2p8z1cbCyjWEz3PgJCwwhjMnIWWs6WK477S10YrOjteEjsY4kfyPfaljgEPzXtczEMcQSQSRM','Excellent customer service. Very professional. Our 18 year old daughter was getting tested coming back from camp where she was exposed to 2 different trainers who tested positive. As a mother, I was nervous sending her into the center by herself. However, the staff was great and guided her through the process. Then after the testing, the nurse came out to our car, shared she tested positive and provided clear, concise on directions and next steps. Thank you to the incredible staff for helping a nervous mom and daughter get through this process. God bless.','2020-07-22 15:42:10.164000','2020-07-22 15:42:10.164000',5,'Debra Henry','https://lh6.googleusercontent.com/-LUxjRYgV8-A/AAAAAAAAAAI/AAAAAAAAAAA/0n1gwIFYkIw/c-rp-mo-br100/photo.jpg','14748677429039074158',21610),('AIe9_BEAgUIalCkcXZnurOUpP4uAdssR9AuWTpUHncw1sbP5gXDH0nu7K3j5SiJoi8MFC8AxlduiCgJbnBiTw0mSINL1rNaHqQTLj7IAzGy7tCNK-u7ebfA','All I have to say is that they are very nice when it comes to being treated & also, the wait time is literally less than 10 minutes 🤩','2020-01-28 00:04:10.342000','2020-01-28 00:04:10.342000',5,'Melanie Ramirez','https://lh3.googleusercontent.com/--HGl_1mVgBk/AAAAAAAAAAI/AAAAAAAAAAA/VLlMDGcW-Vk/c-rp-mo-br100/photo.jpg','14904078213800803294',13619),('AIe9_BEAgUIalCkcXZnurOUpP4uADvoHSOu5fRQonJKR_2H3zTdJm5Vysj_Bh7uQ71FnYyJPBqXI_8DgWjNQqQQld7GHpyO4ATraANYFOUGxQ0FgIJCI6lU','WORST place to get COVID tested!!!! It took 4 hours and the workers give horrible instructions. I had to get out of my car multiple times to see what was going on. Try a weekday if possible if not go somewhere else!!!!!!!','2020-06-13 19:09:09.124000','2020-06-13 19:09:09.124000',1,'nancy hernandez','https://lh5.googleusercontent.com/-M5KXV_u0pAI/AAAAAAAAAAI/AAAAAAAAAAA/n6MPsIqCdE0/c-rp-mo-br100/photo.jpg','12541597562633926366',22457),('AIe9_BEAgUIalCkcXZnurOUpP4uAdvUjXxoh-iZCpG0VwRnUY0wxbc2Ej2k7Xa_EU4OslguCrtYIvRN2SpVhsZqkeaq07Up0eae1xt_HZpuHSfc-KA6yAEg','My fiancé had a knee injury and we visited this location. From the staff to the facility, everything was excellent and professional. Hopefully we won’t have another ER but if so, we would definitely visit this location.','2019-09-25 04:47:26.004000','2019-09-25 04:47:26.004000',5,'Wendy B.','https://lh4.googleusercontent.com/-jqRv7UYoR1I/AAAAAAAAAAI/AAAAAAAAAAA/4SlqmFAAOHA/c-rp-mo-br100/photo.jpg','16389487648212004696',2882),('AIe9_BEAgUIalCkcXZnurOUpP4uAe2FvA_Twr8svHOxQ2UkaGS4hcvCoFZZbEVepjB4u7moULIPFr_LrDGqxEyh8aMfQae0PClUsWHrjz1LeubK6X-4gCpc',NULL,'2017-02-27 16:45:15.184000','2017-02-27 16:45:15.184000',5,'Carter Houston','https://lh6.googleusercontent.com/-GPgcxudM7Po/AAAAAAAAAAI/AAAAAAAAAAA/_f_5onQajxM/c-rp-mo-br100/photo.jpg','14904078213800803294',2399),('AIe9_BEAgUIalCkcXZnurOUpP4uAE5gOAUPaAMa-NHqvjJIcI8zA9JlbcRLXvp9xDakLp1dfxDbbldIEaNjG-N9-ko4FVanG132KhPRP9GoAJRggNJoleGk','Quick, easy, and super helpful','2019-04-08 12:43:35.984000','2019-04-08 12:43:35.984000',5,'Val N','https://lh3.googleusercontent.com/-_AC45CHij4s/AAAAAAAAAAI/AAAAAAAAAAA/AdLzbVCvsGc/c-rp-mo-br100/photo.jpg','16590124370714063921',3438),('AIe9_BEAgUIalCkcXZnurOUpP4uAedHXjlrBYhVoT8R7oe_1Wd8ZhRZdJBqRqQKpFGXrw6smqUKsCE80C6m9UBbwaUZFlNCxmHMS61rz-dvIJtOZCkZ0SxU','Great and friendly staff.','2020-02-21 15:55:28.543000','2020-02-21 15:55:28.543000',5,'Russell Buckwald','https://lh5.googleusercontent.com/-DNupnHYSmlY/AAAAAAAAAAI/AAAAAAAAAAA/yi6oU9M1n6s/c-rp-mo-br100/photo.jpg','17898197009688164559',14143),('AIe9_BEAgUIalCkcXZnurOUpP4uAEdiuf8OwJnwsULijYGrVGKR3ai-6WX38t9uhNNzUGc_ebkbD9nBrvAZQGzu-XoCMtJ1_JGtMkfoW7tZwojPBrwcncuY','I. Love. This. Place!!! During my visit I was taken care of by: \nDR. AKUNYILI, MD, EDOZIE J \nNurse: Melissa   H \nRadiology Tech: Richard   F \nFront Desk: Jocelyn   A\nEvery last one of them were kind, patient, and professional. They also followed up with me to make sure I was healing just fine. They were very informative and worked with me on my payment and let me tell you they were AWESOME about the payment. I came here before and let me just tell you that they were just as good as they were before, if not better.There was absolutely NO wait time. And they offered me a warm blanket as soon as I sat down. If you ever get the chance choose Signature Care, you won\'t regret it!!!!','2018-12-02 19:50:12.165000','2018-12-02 19:50:12.165000',5,'Eunice Dotson','https://lh3.googleusercontent.com/-pXr3LYtxgcA/AAAAAAAAAAI/AAAAAAAAAAA/K4sgCbaZp0w/c-rp-mo-br100/photo.jpg','14567670160750071148',1452),('AIe9_BEAgUIalCkcXZnurOUpP4uAel6CX-NJz-w4BR5vjQpZ0pvQXsY2szfgxgZhsqrTJtg_gmyVcfMnpwzThsmja0zw0vZ2n1g9XcqCHO6ZPf0NFiWVC-8',NULL,'2020-07-08 16:06:26.698000','2020-07-08 16:06:26.698000',5,'Tamara Bryant','https://lh3.googleusercontent.com/-rKIaPlpVuFg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmr0klljE3udtC5qYSkI387ZB51JA/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21332),('AIe9_BEAgUIalCkcXZnurOUpP4uAEMwmYH0_VzAp6KJNocskqzRC99lh9iNZVNeyCxUX9MGqRth7Rhl6YS4zTOYPIy9o5w40niG5ODblMEtrlV6Wf2vNglk',NULL,'2019-02-19 02:43:32.406000','2019-02-19 02:43:32.406000',5,'Samantha Ramirez','https://lh3.googleusercontent.com/-rBrgYIlwksI/AAAAAAAAAAI/AAAAAAAAAAA/QviQWi092UQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1384),('AIe9_BEAgUIalCkcXZnurOUpP4uAeRNYBDFwIdkRjFP6E4yqeLkWswb5fYhDKXbwf87r1g1OtNI4Zu79_nm8Uijf_WqQTi4GYw7hHqCaCLw81x2PYO5i8Lg','I came here tonight with a level 10 migraine that had lasted almost 3 days. Not only was the staff fast and friendly, they actually asked what worked for me, as well as what didn’t and then LISTENED to me, instead of just writing me off as a drug seeker. As a chronic migraine sufferer, this is a very difficult thing to have to go through with every visit to the ER. They were courteous and professional, and I will DEFINITELY be coming back!','2018-01-12 04:52:48.929000','2018-01-12 04:52:48.929000',5,'Jennifer Cameron','https://lh6.googleusercontent.com/-hamp_oKwLs0/AAAAAAAAAAI/AAAAAAAAAAA/dKXu11dKuKY/c-rp-mo-br100/photo.jpg','8679688254631342173',8907),('AIe9_BEAgUIalCkcXZnurOUpP4uAeSAEoSHcwqZT6W5ETqpbMD2U-qtrjaY5FqxVFuvsU4OjbOQjkT3aAjq6MotVSUc0z0KqYBH9g5BuTkREd4KMt8w8d3o','The folks here were super quick, friendly, and professional. We went here to get everything checked out after a fender bender. The facility is much more pleasant than a regular hospital ER. My X-ray tech, Chris, was super chill, which was great for me because I get nervous having X-Rays done. Patricia at the front desk made sure we got coffee and made the paperwork easy. Alvean, our nurse, kept everything running smoothly. And Dr. Mauldin was efficient and professional with our physical exams.','2020-01-25 19:58:59.169000','2020-01-25 19:58:59.169000',5,'Lindsey Jones','https://lh5.googleusercontent.com/-N7wL2VCz05k/AAAAAAAAAAI/AAAAAAAAAAA/9_grN6GGGR8/c-rp-mo-br100/photo.jpg','16389487648212004696',10180),('AIe9_BEAgUIalCkcXZnurOUpP4uAetlR-yoeAlNviooL-u5cvoz3EA-QOwaZWBz4_evPyJjJbn0zigfb78b4Hv_rlyXTclF4gc6yTJCrwTxv9adysbLGbLE','I went in today because I wasn’t sure if I sprained my foot. They were attentive, funny, and made my visit fun. I didn’t have one moment that upset me, even though I was in agonizing pain. I will always go there if I have an emergency.','2018-05-12 00:22:45.035000','2018-05-12 00:22:45.035000',5,'Britney Mixon','https://lh4.googleusercontent.com/-V2PS-U5M5ow/AAAAAAAAAAI/AAAAAAAAAAA/aOsH-8QnXH0/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2255),('AIe9_BEAgUIalCkcXZnurOUpP4uAeW-Xux-paqvqZxWg7zhBqrW6Y3eGNGaxi4XEkl1qqb8MapDy5ZU-p-CA_WYeJJso3FKRI7Y5CwIM_9ETH308hFRsLNQ','First, kudos to the staff who did a fine job taking care of my daughter, who had almost debilitating stomach cramps, which we assumed was going to turn out to be appendicitis. The place is clean, comfortable, and professionally run. And the accounting department and even the owner of the facility intervened to ensure the billing was covered by our insurance','2016-12-15 10:27:06.070000','2016-12-15 10:27:06.070000',4,'Hellbender','https://lh5.googleusercontent.com/-SE4JS23dXfc/AAAAAAAAAAI/AAAAAAAAAAA/W6OC4rZdPK4/c-rp-mo-br100/photo.jpg','16891069708558046635',4558),('AIe9_BEAgUIalCkcXZnurOUpP4uAf3cO1TYAuueqVdtt12xfG8fMd81xGuSxmVYFpwsqPZTfCNUIRDljkRNvZlBYxQV6bXNlTS6TeMSHe4fhHzmJEsdGP5U','Quick, quality care with a smile. No complaints at all. :) even got a warm blankie while I waited. Lol. Everyone was great, the doctor even gave me some warnings I wasn\'t aware of. Very helpful!','2020-02-09 23:33:50.455000','2020-02-09 23:33:50.455000',5,'Lexie','https://lh6.googleusercontent.com/-U8JkhJ51cX0/AAAAAAAAAAI/AAAAAAAAAAA/RhHwGLk77NE/c-rp-mo-br100/photo.jpg','17898197009688164559',14179),('AIe9_BEAgUIalCkcXZnurOUpP4uAf3Jkd2iw-zOYoEIwWemhTtalRzXTdMW-t48HlB98cUaTVnhJf8noRNG3cP9CwUzRczbB-I2ManyzQFDMaR9EwI64E0I','The entire staff was extremely helpful and did everything they could to make me more comfortable. Dr. Vakey did everything he could to manage my symptoms and make the horrible day I had much less horrible. I would definitely go back!','2020-02-20 22:36:28.128000','2020-02-20 22:36:28.128000',5,'Kennadi Strawser','https://lh6.googleusercontent.com/--_y1u-Q_fg0/AAAAAAAAAAI/AAAAAAAAAAA/w6jqonSLNRI/c-rp-mo-br100/photo.jpg','16590124370714063921',13833),('AIe9_BEAgUIalCkcXZnurOUpP4uAFqjShplxU5i9g_m7y50mgDUlsCOMc3yUrRBrLpwjBPKId-JcaOccqNCeZ0WNYmZDZx8Uo4Xwr9-TsejIMg2u8Q6YqeI',NULL,'2019-06-26 22:09:36.092000','2019-06-26 22:09:36.092000',5,'Erica Brown','https://lh6.googleusercontent.com/-xyv_WNpnDe0/AAAAAAAAAAI/AAAAAAAAAAA/tp3xBSONOQ4/c-rp-mo-br100/photo.jpg','8918455867446117794',9110),('AIe9_BEAgUIalCkcXZnurOUpP4uAfvnWyjwgLzKbV3lB5b7idRAaE3qC0JtcQ2lAlhizhLpIqm0GJLBC3C4i7IuRpwmfEnBtLsnc9TBLdMZyJ8Q8I2QXwfE','Kendra is so much help!','2020-03-08 01:32:44.898000','2020-03-08 01:32:44.898000',5,'Jackson Roberson','https://lh6.googleusercontent.com/-qwqlNVsEX4Y/AAAAAAAAAAI/AAAAAAAAAAA/2ZS3drU6YHA/c-rp-mo-br100/photo.jpg','16590124370714063921',21033),('AIe9_BEAgUIalCkcXZnurOUpP4uAfzSzFvoKUQoxk2-u2EgqbBhvUl23Q0fPfuKnuUY0A_-UZ5HGLXdRCTT2mcFQV8d11e9hxJ9kLqEI9lTQiRIRz9t2abI','Neat and tidy\nfriendly staff. Answers all our concern\nQuick checkin and well mannered staff\nWe like the way our kid felt at home. He was happy and staff kept him happy.','2020-03-10 15:31:23.567000','2020-03-10 15:31:23.567000',5,'Sibin Silvy','https://lh6.googleusercontent.com/-2joLVKj5zY0/AAAAAAAAAAI/AAAAAAAAAAA/iEEOm2bEfgg/c-rp-mo-br100/photo.jpg','14748677429039074158',18845),('AIe9_BEAgUIalCkcXZnurOUpP4uAG1KVRWDTM0ETrZR9xHsxkYNLV2m8rgvBeqcaj_iK9UOVI5AtvouKiTksGXyJWY7TPJORuwkCc7wGACq5l3-aoCFKoT0',NULL,'2018-12-04 04:24:37.158000','2018-12-04 04:24:37.158000',4,'Brandon Adams','https://lh6.googleusercontent.com/-e2BG5A4qCHE/AAAAAAAAAAI/AAAAAAAAAAA/YFwYluWhpoE/c-rp-mo-br100/photo.jpg','3511292162159714121',7550),('AIe9_BEAgUIalCkcXZnurOUpP4uAgiJ_AXaKOXfsFOWjMV2WiSAsrLeB4WHiCRsmBR3c7kKlz2-a6EpAavr-mT1EWSFN25GABl1Lkq24Fdmx_otM-MxGuNk',NULL,'2019-02-12 11:54:43.517000','2019-02-12 11:54:43.517000',5,'Norma Morin','https://lh4.googleusercontent.com/-xItpQuurOjA/AAAAAAAAAAI/AAAAAAAAAAA/nL4LXHoQa88/c-rp-mo-br100/photo.jpg','16590124370714063921',3560),('AIe9_BEAgUIalCkcXZnurOUpP4uAGn5n-5wI4_aXppFzESnbqKJ1i4gGCj8DKOSND3r3qF7SqV7YZkEewygUmwb4LbRFYPZYn-0GVlFWYPFZ99L_UmbJLZs','Short wait time and great customer service!','2016-03-17 21:08:48.266000','2016-03-17 21:08:48.266000',4,'Adam Robertson','https://lh4.googleusercontent.com/-zeIsFny7OsI/AAAAAAAAAAI/AAAAAAAAAAA/xWPPnW013xk/c-rp-mo-ba5-br100/photo.jpg','14567670160750071148',2045),('AIe9_BEAgUIalCkcXZnurOUpP4uAgoopmpkuJF5WBbgHGjPoHmIqy0yPuBfNKdxQuoQCglOofL6T77Nkv1-PaCBrZOQLBLwrgXxoAH9SK5AAne12wDWCyhU','They treat everyone so nice here I love the staff very friendly people','2019-01-02 08:12:14.578000','2019-01-02 08:12:14.578000',5,'Tasha Malbrew','https://lh5.googleusercontent.com/-_kXiUrgzogQ/AAAAAAAAAAI/AAAAAAAAAAA/iWxYOgN0_Fs/c-rp-mo-br100/photo.jpg','12541597562633926366',577),('AIe9_BEAgUIalCkcXZnurOUpP4uAGpxYOIP8oHN02ELZak_ArSAAEHA-bmUktrTMblr6IeaS4hFNqDMRXwY1YUDIAgmhnUQvs0Wdb8epfE8N7dvz5fYqmdI','We brought our 3 year old son here and we were immediately ushered to a Toy Story themed room. The staff was extremely friendly and professional. My son actually had fun in an ER room, not sure how many kids can say that. Ian (pedi RN) gave my son stickers, a puzzle, bubbles, and a popsicle to send us on our way. We’ll definitely be back in the future (hopefully not too soon though 😬).','2018-03-14 23:01:31.209000','2018-03-14 23:01:31.209000',5,'Lan Denson','https://lh3.googleusercontent.com/-Z3M2WMajb-I/AAAAAAAAAAI/AAAAAAAAAAA/5uRcyPvbS98/c-rp-mo-br100/photo.jpg','16891069708558046635',4498),('AIe9_BEAgUIalCkcXZnurOUpP4uAGRipBrJYzkKi-m9MvigDSX3cK79VGKl-gW1uYxhmTLjZSjr48R3ieGcjcAdyr-qUAAdvoZaUdYYZN9P2iOeOaQN2ad0','I have never been cared for the way I have here at ERCare!! Rachel, Dr.Kotey, Monica,Diem,Jessica,Ralph, and Amelia were all more than great! Made me feel so comfortable through out my whole visit and asked constantly checked on me and my sister if we needed anything! Definitely recommend for medical care!','2018-10-04 01:30:31.906000','2018-10-04 01:30:31.906000',5,'G. T. A.','https://lh4.googleusercontent.com/-f7jmIUDfLVM/AAAAAAAAAAI/AAAAAAAAAAA/aW7mJvlOwyw/c-rp-mo-br100/photo.jpg','17394740196501090048',4776),('AIe9_BEAgUIalCkcXZnurOUpP4uAgTUH9cYJRcVIYkftrtzLKHwnvpECeFhuZAb7ieRqgbhbJGoM63RdoCB8R5U6f7Im7lS4QxllyVIrqioyS-yWPmjkhFg','So friendly, professional, and FAST! Thanks to Alicia, Erica, and Ashley K! We appreciate you taking such great care of us.','2019-07-04 16:53:55.565000','2019-07-04 16:53:55.565000',5,'Ty Prestridge','https://lh4.googleusercontent.com/-JHww3MIG2Bk/AAAAAAAAAAI/AAAAAAAAAAA/xgReY-UFsAA/c-rp-mo-br100/photo.jpg','8626688543755174284',8439),('AIe9_BEAgUIalCkcXZnurOUpP4uAgV1f7AZwOa5KAlzVquc8h9oeVSb5H00rtK6zkzODRP6w3P-CdpB_mi_-QWWF9PiAYChEhMjzLr7BA_yly3nAJCsQq9M','I highly recommend SignatureCare Emergency Center. Thank you Dr. Miller and everyone else that attended to me.','2017-04-27 23:28:22.716000','2017-04-27 23:28:22.716000',5,'Juan Juarezf .','https://lh6.googleusercontent.com/-nBwu9RabWeY/AAAAAAAAAAI/AAAAAAAAAAA/X1e0TXnD-oY/c-rp-mo-br100/photo.jpg','14567670160750071148',1836),('AIe9_BEAgUIalCkcXZnurOUpP4uAh--8g0aEi-4G9FGAYfg1DOovnylmUaty-uUwhfLk44kHm7WuKzUwdrwXjMUMXiqzawJbiaylX1tT54uCDItrDX4IJ64','I felt like I was in the best of care there in the hands of Shawn(Rn) and Sarah(MD) I was treated right away and I felt like they truly cared and enjoyed their job!!! THANK YOU','2020-08-22 01:28:29.819000','2020-08-22 01:28:29.819000',5,'Melissa R','https://lh3.googleusercontent.com/a-/AOh14GgAZkseMn5ldmrPIOG2laszmqwEKO7nSV7wXhyt=c0x00000000-cc-rp','8918455867446117794',NULL),('AIe9_BEAgUIalCkcXZnurOUpP4uAHIv2O2HF7TCZuKZkorEK3iu4NkCfBt09BppCvrIpT8KvQ2QapSFW73FIcnT0q-aipQPPK1WIVfnIJkIkPtv1Sb5zuSs','Thanks to the amazing team that was here treating my daughter. Thanks to Dr. Lindsay, Tanishia, and Sarah.','2019-12-06 01:37:01.617000','2019-12-06 01:37:01.617000',5,'Mikki Storm','https://lh4.googleusercontent.com/-F6fxe411kqk/AAAAAAAAAAI/AAAAAAAAAAA/VEd6sHGnap8/c-rp-mo-br100/photo.jpg','17898197009688164559',5376),('AIe9_BEAgUIalCkcXZnurOUpP4uAHNICh7_WTYDzd4H1daKfWN2goe0JCigJU0kJNp1tfT9Sa1lq73CdUvCKm6clxLT3p0vilGuQ07R5mPTm-w5uXYYPXWo','Came in for a traumatic hematoma on my leg. They fixed me up just fine. Just might enter the Boston Marathon this year. \nThanks Rad Bryan & Rec Amanda!!!','2019-01-09 03:21:14.024000','2019-01-09 03:21:14.024000',5,'RIO WALLING','https://lh6.googleusercontent.com/-bfNuxUD0tiI/AAAAAAAAAAI/AAAAAAAAAAA/WTVfMob__qU/c-rp-mo-br100/photo.jpg','14567670160750071148',1429),('AIe9_BEAgUIalCkcXZnurOUpP4uAhnngpyBv4Yow9-AsgeeEOASHrRSy_BUdtjsDHjjnDsoXvXL_RXfxNb-_ILxNhPixs_Xym3BrqOe8xS9ZFqaAB8ehqXw','Amazing service. Keera and Anthony were very kind and attentive. Was attended very fast! Definitely recommend coming!','2019-08-12 21:37:09.980000','2019-08-12 21:37:09.980000',5,'Mariana Carrera','https://lh4.googleusercontent.com/-1N9GzIZUw9A/AAAAAAAAAAI/AAAAAAAAAAA/ioH4OL-jWqg/c-rp-mo-br100/photo.jpg','16590124370714063921',3257),('AIe9_BEAgUIalCkcXZnurOUpP4uAHU-_h5Mx4Y5pOqmyYVHuGoWVDzyStdZjL2-_cPIwDmoSpDup4oExRL9m_CRvlFTZNZ447yNnn6u23H50m78ydpl6lyc','.. They were wonderful special thanks to Brittany 😗😌😘😎','2016-06-14 22:23:24.338000','2016-06-14 22:23:24.338000',5,'Amee Jay','https://lh6.googleusercontent.com/-77i3agkIc5Q/AAAAAAAAAAI/AAAAAAAAAAA/S-6gj93CZbs/c-rp-mo-br100/photo.jpg','3511292162159714121',7983),('AIe9_BEAgUIalCkcXZnurOUpP4uAhWiqc9_ATE8LXF8q9EI2cmEuEbqSj2v2FTlIfQ0DQR6FR6uEMkLoGKkjkK9ydy70oY65k2n5lWl7yR6lPtqwUZPi4hA','Doctor and staff were great, I was in and out no long wait times.','2019-05-27 03:46:55.561000','2019-05-27 03:46:55.561000',5,'Hiram Johnson','https://lh4.googleusercontent.com/-M41vbyB7ZYc/AAAAAAAAAAI/AAAAAAAAAAA/utIxFHTj3X0/c-rp-mo-br100/photo.jpg','17898197009688164559',5721),('AIe9_BEAgUIalCkcXZnurOUpP4uAIdc41ql7-tCQoFrToPvfeAqi-JlLX5C4C_4bkJCRoU4MHAm9_5oDmW3mEO9gHpRBqvUYcjMECgWsSLvz4nvJuDuXvDg','I had excellent service and I was seen by the doctor very quickly! Overall experience was above and beyond! Thank you! Oscar.','2017-09-22 22:09:32.356000','2017-09-22 22:09:32.356000',5,'wavvy eliie','https://lh6.googleusercontent.com/--RVfSRk5ZNI/AAAAAAAAAAI/AAAAAAAAAAA/Nv4RhSCA0L8/c-rp-mo-br100/photo.jpg','8918455867446117794',9356),('AIe9_BEAgUIalCkcXZnurOUpP4uAIFvZYpWKCGDHfoksvLM2xvmsTSs6ooCqxavf1dWl6I5CEPZdPkSj54xJs98IK3Kp3WqdCYQWVej_09oWvLUPy46FT8Y','Great customer service warm welcoming. Staff will go beyond to make sure you are ok and comfortable. I will consider coming to this ER.','2020-03-12 17:34:08.431000','2020-03-12 17:34:08.431000',5,'davron duffan','https://lh5.googleusercontent.com/-bCBKJB95oug/AAAAAAAAAAI/AAAAAAAAAAA/3JN7evl16-A/c-rp-mo-br100/photo.jpg','14748677429039074158',18843),('AIe9_BEAgUIalCkcXZnurOUpP4uAig2Gys0a0is8SSVgIxF1KnfUBDvN6_ZSNyxKgrbV7JJ7sCs5vqXBOYLkSGmIQigCxAWv7DiCfg8897bTLZbaj23Ft2M','There was some chick at the front Regina and Dee I Think . They were really awesome and made me feel better before being seen.','2018-08-09 19:09:49.970000','2018-08-09 19:09:49.970000',5,'R J','https://lh4.googleusercontent.com/-Vf33LGOB1qk/AAAAAAAAAAI/AAAAAAAAAAA/IqXrU0tYuhM/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7645),('AIe9_BEAgUIalCkcXZnurOUpP4uAiiWAatqSuLIdlEKQsjugkUizSwkQZ1lc1UM64kc-7mn2gCYZ2jKOGz1YwWK3f2VKBvsBJYM5HiC_vXWuQUyOWuMUsz8','Dr. Boester, Churiah, Gina, Ke’Aire, Dion, and Anastasia were very attentive and nice!','2018-09-20 02:42:39.413000','2018-09-20 02:42:39.413000',5,'Fabiola Serrato','https://lh3.googleusercontent.com/-Pby-rFHnK5I/AAAAAAAAAAI/AAAAAAAAAAA/QqPjh34_Whs/c-rp-mo-br100/photo.jpg','3511292162159714121',7590),('AIe9_BEAgUIalCkcXZnurOUpP4uAIkQAyUmf39Y9M53yK7_iC6C7Dzte2AbBidjpTGXZWFUgcNp0Ilu8Cb5yEKn_f8V9buHD-bZZI52ZHlaLKLNj3dOcqFc','Had a great experience! I did not have to wait to be seen and the doctors and nurses were very attentive and caring! Thank you all for your help!','2017-01-16 00:34:46.951000','2017-01-16 00:34:46.951000',5,'Maria Chavez','https://lh3.googleusercontent.com/-7l50b-9BGTY/AAAAAAAAAAI/AAAAAAAAAAA/JL-7Nye6gfY/c-rp-mo-br100/photo.jpg','14904078213800803294',2428),('AIe9_BEAgUIalCkcXZnurOUpP4uAir8zZ4JhJtfb09DgKKOJGF2vmhrod-7OVyhIpRxhMEUWfcKQujJy_fl2k3pXPsCcw0IJbge0f3XPRJ8__2kl9ZjEcK4','Highly recommended!','2020-03-08 04:32:37.052000','2020-03-08 04:32:37.052000',5,'Larissa Schot','https://lh6.googleusercontent.com/-xU_alAinYyc/AAAAAAAAAAI/AAAAAAAAAAA/F36YGf0SL2g/c-rp-mo-br100/photo.jpg','8679688254631342173',20877),('AIe9_BEAgUIalCkcXZnurOUpP4uAIReBNTrax2N11EEEyyE3rFNB4S47qvOE-eHzDa-R8Ml-eLNv7bxBIejNfG-YqigejBu0jhjjJhvJ5_FxWjFnbBQf_54','Great place, super fast and helpful, they got me right in and out. 🖤','2019-02-21 05:41:27.764000','2019-02-21 05:41:27.764000',5,'Brittany Taylor','https://lh6.googleusercontent.com/-7FOE8xh18c4/AAAAAAAAAAI/AAAAAAAAAAA/I2wnAIPtNgQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5839),('AIe9_BEAgUIalCkcXZnurOUpP4uAIwV5WCbU2qwJS4QDT-VRHlFx3YmFKe0GiU8tB8nAzeLJAaKBnRXpdUrlhRHexgkjXXyHPrudnOgkkd2f6JMy9sg0Uk8','Wonderful staff! Everyone that assisted us was super helpful and friendly. Will definitely return if I ever have another medical need.','2018-08-16 02:47:43.284000','2018-08-16 02:47:43.284000',5,'Ximena Carrera','https://lh4.googleusercontent.com/-oe95ebKIWlA/AAAAAAAAAAI/AAAAAAAAAAA/zCVq_hXlbSc/c-rp-mo-br100/photo.jpg','16891069708558046635',4448),('AIe9_BEAgUIalCkcXZnurOUpP4uAIz8aIZ2PqgfZiXas-UYSykdwDVYY768dZzgSZ88dwi93D7ejdLY_7vZVTAoysaK9uIcKR-KdWCLi2u9cklL1I2NZP18','Short wait time, nurse was nice and attentive.','2020-08-06 16:43:04.686000','2020-08-06 16:43:04.686000',5,'Yuleidis Dominguez','https://lh3.googleusercontent.com/a-/AOh14Gi-cPUrv3q7ANp_qRW4VOEYpVAPNhcJ4fYrEnNhTJE=c0x00000000-cc-rp','12541597562633926366',21794),('AIe9_BEAgUIalCkcXZnurOUpP4uAJ3a-d_vL4lIsbOEdEPYkybSWFVCa_8gNzuIs4mcol0EFFEZe_rMFJqWzx7DurI7Smzxrs9YS2bI6eDGSObYCLVg_O_Q','Norma and the ER staff was amazing and made me feel comfortable. The facilities are top notch and I received excellent care!','2020-01-08 03:46:22.715000','2020-01-08 03:46:22.715000',5,'Lakesha Winfree','https://lh3.googleusercontent.com/-VBQT8JUQwOQ/AAAAAAAAAAI/AAAAAAAAAAA/dYxbmj6YxpA/c-rp-mo-br100/photo.jpg','16389487648212004696',9422),('AIe9_BEAgUIalCkcXZnurOUpP4uAJ4M3NoR42w_bKZ9zTWTk2UeMgpOJQQyRgI3c1jtdAb5NPzIqpZyjbbj56wc_74pWHtCYE9UYq1yzU3EVyKZ9az0RWV8','Very kind staff. Worked to get me in quickly and were very informative.','2020-03-06 18:41:14.003000','2020-03-06 18:41:14.003000',5,'Andrew Lidsky','https://lh5.googleusercontent.com/-jM6tlqi9xlE/AAAAAAAAAAI/AAAAAAAAAAA/N5yhWE2bdL4/c-rp-mo-br100/photo.jpg','3511292162159714121',21160),('AIe9_BEAgUIalCkcXZnurOUpP4uAjC7IkD_5qY4lvGaP3UzpluiTnC3akd-MXBakC70T5D1_3ek_MZck2DdnWWDn7-UXOo_qOb_mJsMxlUJLa9HYROsEar0','I had the best possible experience here. The staff were knowledgeable, caring, and went above and beyond. The staff took the time to explain the procedures to me. You could tell how much each of the staff truly loved helping others around them. I would recommend this ER 100%! Thank you for everything you did for us!','2019-03-04 03:08:50.506000','2019-03-04 03:08:50.506000',5,'shamber miller','https://lh6.googleusercontent.com/-p70Y0Wdl9JY/AAAAAAAAAAI/AAAAAAAAAAA/OV1-Nz-EHRI/c-rp-mo-br100/photo.jpg','16891069708558046635',4334),('AIe9_BEAgUIalCkcXZnurOUpP4uAJm-t3mjJex8c95L-YszG_pq327xYIKFU1OFzgmAzBZK_nvuwYPFEDVsqqaBDGMj2xC77Ayuo8XEPjdqhw3sx2ov-wqk',NULL,'2019-09-28 03:10:23.563000','2019-09-28 03:10:23.563000',5,'Katelyn Welch','https://lh4.googleusercontent.com/-u3ed62hFvSA/AAAAAAAAAAI/AAAAAAAAAAA/21ehZ4BijS8/c-rp-mo-br100/photo.jpg','13486358490203335051',807),('AIe9_BEAgUIalCkcXZnurOUpP4uAJnpb1LIapbvbA3_fLIsM1ohThAECikmYeIGg_AEeOP-PDl8_OlgVPxigG7L7spLw1LHXSz_H74UuEbM5EaL0X1KmQCg',NULL,'2020-01-08 16:55:42.656000','2020-01-08 16:55:42.656000',5,'Chris Robertson','https://lh4.googleusercontent.com/-N0hRcJ-dFmg/AAAAAAAAAAI/AAAAAAAAAAA/czq3LayTUO4/c-rp-mo-br100/photo.jpg','17898197009688164559',9450),('AIe9_BEAgUIalCkcXZnurOUpP4uAJunLCka_LjoBJw0gjszNDxLZQusDQjSz0C3V8jPUosFfUh1BG5Niz59LsEeqoQ4f3j0aawQQ544idkWlY3m36tmOH-g',NULL,'2019-05-24 13:55:58.787000','2019-05-24 13:55:58.787000',5,'AndreaTehM Cruzfeyhg','https://lh5.googleusercontent.com/-qvMNOzCLxyM/AAAAAAAAAAI/AAAAAAAAAAA/GToc0c-jMHU/c-rp-mo-br100/photo.jpg','6521947413723274945',8258),('AIe9_BEAgUIalCkcXZnurOUpP4uAJuPv8j2MSRvU2ShU-ry8gkyoFlUkkUsU_VZ4tq2IUuDcESg2Gg2sk9TOc9CR5NMPulhtSSl4J-A3owBAtSwKyr5BOis','Some people there are douches, think they’re better than everyone type of character. Shady. Especially the front desk receptionist, you can tell she hates her job. You can definitely tell their kindness is all an act. Overall treatment is good though. My visit was during night shift.','2019-03-18 21:22:23.329000','2019-03-18 21:22:23.329000',4,'Paco Franco','https://lh6.googleusercontent.com/-BHCFhhIjYuI/AAAAAAAAAAI/AAAAAAAAAAA/14sU8tYqR9Q/c-rp-mo-br100/photo.jpg','17394740196501090048',4709),('AIe9_BEAgUIalCkcXZnurOUpP4uAJv4mWNtXPtPUs2zsDJkNB_Ycuyrt5VGto3JBAH3Ngkdiq6E1VK5zrX_uAjF3EcLUHt8-WtCPQdSip6dPHVg1VbRiiZs','Love them Maya was perfect! Quick with check in! Dr.Golla, Nurse Fahme and Laura were all super sweet! I think her name was Christine that was there that let me get some really nice snacks! Awesome visit','2020-02-26 21:49:17.751000','2020-02-26 21:49:17.751000',5,'Shawna Brown','https://lh4.googleusercontent.com/-SP7IWKKn0KE/AAAAAAAAAAI/AAAAAAAAAAA/o3cfp1qtBgw/c-rp-mo-br100/photo.jpg','12541597562633926366',13337),('AIe9_BEAgUIalCkcXZnurOUpP4uAJvmRJzAJEyAhUms4fi2tg1yw5yMpTjsReOms061_bfEvi1zn6CnDp6tUExx1Y183b8kPaZR9xFqg80LMxtNbw4XaX48','The staff here were very professional. They took good care of my daughter and her issue with her eye. Dr. DO, EKATERINI S(NURSE), Melissa E at registration was super helpful and nice. Bram D. The tech as cool and very friendly. \n\nDefinitely will be returning for our ER needs.','2019-11-19 01:40:22.173000','2019-11-19 01:40:22.173000',5,'Kathy Cooper','https://lh5.googleusercontent.com/-6NMFMBP-QqM/AAAAAAAAAAI/AAAAAAAAAAA/_U5LQFctdJE/c-rp-mo-br100/photo.jpg','16389487648212004696',2664),('AIe9_BEAgUIalCkcXZnurOUpP4uAJvu1UXC-ZSLVgkRfR8CdCcW14A0xHpSwYJMYZy6S92XzMHEIZEPry62VTc_Zduv0w0hDa1i9hGUXxLqSzhrg68mpIIc','Christina,osieke,Eliza and magali they were very responsive and iterative and were very good and professional while doing there job','2019-09-26 14:36:18.918000','2019-09-26 14:36:18.918000',4,'Dylan Gardner','https://lh5.googleusercontent.com/-W2dXY6eTj5E/AAAAAAAAAAI/AAAAAAAAAAA/xnqBqrPk_ek/c-rp-mo-br100/photo.jpg','6521947413723274945',8129),('AIe9_BEAgUIalCkcXZnurOUpP4uAjYkZ6WqU1TM56keXsLf_CuwBHCmn0F6dkU05iccEzF9AOA0T-drgMztnnDIycm5Bw0H0QjTr14n1jwWsUP_xhW-hYdQ','The staff makes you feel like you are a family member. From the receptionist, nurses, and doctor (Dyveliz, Juan, Rebecca, Jacob, and Dr. Harjai). They ensured we were properly educated on care and gave us a list of physicians that could help with issue. I highly recommend this clinic for any of your medical emergencies.','2019-08-07 22:30:38.974000','2019-08-07 22:30:38.974000',5,'michael thomas','https://lh6.googleusercontent.com/-ucjPUTqzkUI/AAAAAAAAAAI/AAAAAAAAAAA/B3z65tiE67s/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3264),('AIe9_BEAgUIalCkcXZnurOUpP4uAk_a2-7ZUs0VdQm9HMXugGSahjzP7oEZoWQoT3LUyEDmaSK4ZCiw0q5emA2NS0cRpCuZHCBeJ4-r41hXpbxm11YSjyeo','Such a great level of care from check in to check out. I greatly appreciated the helpful, kind staff at my visit. Also, It was very reassuring to see the level of cleanliness and organization of treatment rooms. Thank you for making my visit stress free!','2019-09-17 16:37:05.303000','2019-09-17 16:37:05.303000',5,'Genevieve Sykora','https://lh3.googleusercontent.com/-BVi1Zr_Vwqk/AAAAAAAAAAI/AAAAAAAAAAA/m7CJjegHetw/c-rp-mo-br100/photo.jpg','14567670160750071148',1235),('AIe9_BEAgUIalCkcXZnurOUpP4uAK5OCZPQgXny3VpuSp98oAZ2pdNLRIRxfUq7-36fFHFa9RAUdtLWNeUZ5cXPqh1ZD0DZ7CS47N90-0XV22S70WPKtoZA','Everyone was so kind. The Registration Darnisha was very informative. I was treated very well by Dr. Spangler, Nurse Tristan, and Radiology Tech Quyen.. Great group I felt very welcomed. There was no wait time, I was seen very quickly. The facility was very clean and comfortable.','2018-09-11 14:19:31.366000','2018-09-11 14:19:31.366000',5,'Courtney Sneed','https://lh6.googleusercontent.com/-mBnLFwh7Dd0/AAAAAAAAAAI/AAAAAAAAAAA/6qA_-pmRWbw/c-rp-mo-br100/photo.jpg','12541597562633926366',607),('AIe9_BEAgUIalCkcXZnurOUpP4uAKdrzZ8so6uFtyVyMpsKUgNFDK-61Qy1hgudl83KVIci6Y1DYTW_RLeP2I5bsZRWgU9koF_Ki0MezZSLfGdm3Tpk5dX8','I was thoroughly impressed with the fast service from this establishment I checked in with Aileen and filled out paperwork and was seen all within 45 mins. I was having some sort of allergic reaction or rash that Dr. Elsbecker assessed and treat immediately - he was perfect! The dream team he brought with him consisted of Adam my nurse who administered a shot in my tushie I barely felt. Chris and Drew were awesome in asking question and taking my vitals. I was comfortable and the warm blanket made my visit even better. Highly recommend this place and the care they provide! Thank you SignatureCare!','2020-02-20 05:54:44.952000','2020-02-20 05:54:44.952000',5,'Shaunda Hill','https://lh6.googleusercontent.com/-w-M9xufxB74/AAAAAAAAAAI/AAAAAAAAAAA/y9QsekufSqs/c-rp-mo-br100/photo.jpg','16891069708558046635',13940),('AIe9_BEAgUIalCkcXZnurOUpP4uAkEeByYvIPglQXfe1UwCCvYHRZq5eZxlk3Hz26cCaKBE19ZmcLRlqJPA5nYbA7injMXDJ2LVxUW_EoGFfV6jVHp-PopU','Amy Jones was amazing! She was SO helpful. I always come here!','2019-06-08 00:12:29.419000','2019-06-08 00:12:29.419000',5,'Bruce DeVoogd','https://lh5.googleusercontent.com/-I64HYuJdHtM/AAAAAAAAAAI/AAAAAAAAAAA/lP0TXv7zVPQ/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2133),('AIe9_BEAgUIalCkcXZnurOUpP4uAki5ZWwkFLlWgE0uuw9OufBnB7ZFqQywKM-kpDqrMo2HxsX482-NH_2zsaXxQbtg2_N6F2ZTvTK4-4Ap5aCk134HLQfU','This places is the best I’ve ever been in years. Front desk Clarissa, Tiara,Jasmine were so nice and very helpful. Back staff Alvean, Gracie, Marcus, Ann were such wonderful people very caring and made sure everything was done properly. Doctor was great the best doctor O’Malley . I definitely recommend everyone to come here . Thank you so much guys everyone was beyond awesome','2020-08-16 16:46:24.909000','2020-08-16 16:46:24.909000',5,'J. Subias','https://lh6.googleusercontent.com/--0mvq8PP3WQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclgJDpbxjBYUng6beTRzbsa1bGURA/c0x00000000-cc-rp/photo.jpg','16389487648212004696',23042),('AIe9_BEAgUIalCkcXZnurOUpP4uAKIRXouTc4Fn68e6P60lS17PgweHtqbKdVMggwd12gnU9duRzlznDmmclKcpYLVK7WeenNAfthwdvRazZJkGFdH_It3Q','Great place to be treated. Jennifer Diggs, Erica,Valerie great job','2019-01-03 15:05:01.617000','2019-01-03 15:05:01.617000',5,'Tyler Ashton','https://lh4.googleusercontent.com/-JdksVTpuwtc/AAAAAAAAAAI/AAAAAAAAAAA/I4A-hMDE2PQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8617),('AIe9_BEAgUIalCkcXZnurOUpP4uAKT8P9bLlgkaueOI_FXlYeNedT027UZgi5e-2bU-BKNOkHjXuMW6ecZb2Q8qt73y8Pd08QhAYjw-Qv6Nzi3dtW1WV2so','I am not pleased with the wait time, if they require appointment why are they making me wait over an hour and a half. Would recommend to check with another facility that covers Medicare/Medicaid patients because here they don\'t.\nAt the end of the day back staff is amazing took care of my grama.','2020-07-15 22:54:56.232000','2020-07-15 22:54:56.232000',3,'Yolanda Graciano','https://lh4.googleusercontent.com/-qmvAV26gySs/AAAAAAAAAAI/AAAAAAAAAAA/TaSRLf7rOHk/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',21759),('AIe9_BEAgUIalCkcXZnurOUpP4uAl5jdAx_3VVI55thEvI1lE3AUjDD-cj57eszqNBMacv_eXFJpfYjRtFdNrkXk3uFmUDfXS3i7pCJ3gBujWYZikmCJcJQ','Keera was super polite and efficient with all questioning. Very professional and answered all my questions in detail. Would definitely recommend to a friend/come back','2017-12-07 14:50:25.242000','2017-12-07 14:50:25.242000',5,'Rohre Voss','https://lh4.googleusercontent.com/-bjZaGwPJM9o/AAAAAAAAAAI/AAAAAAAAAAA/iXGLqvPrCAA/c-rp-mo-br100/photo.jpg','16590124370714063921',3901),('AIe9_BEAgUIalCkcXZnurOUpP4uAla9XaytwwSH9KnHFc1lCVcD6GgDsGbz63-baiV4zaRniNE-mtZo434Z8_cfkZNtlIpp7Il2zTN2nVpOjoarBtLuF2Tg','The process was super quick and easy. I had a lot of questions and Amanda and Lorena answered them immediately! The test was easy and Matt and Morgan did a great job. Dr. Cabaniss was very nice and Morgan was a great rad tech!','2020-07-25 17:27:48.184000','2020-07-25 17:27:48.184000',5,'Madison Pickard','https://lh5.googleusercontent.com/-PZiFno3IEHo/AAAAAAAAAAI/AAAAAAAAAAA/DM93zaFT2Tw/c-rp-mo-br100/photo.jpg','16590124370714063921',22644),('AIe9_BEAgUIalCkcXZnurOUpP4uALCK2cBKnNMaJhfTYKPzQRFlb3yq2wLY1hSB1vkvzwlALCQOsCbj-hIWremilVE-giKJ7Samf5S57z77qKGe_CJ1rL5M','I had to go in early Monday morning 4/15 with an intense back spasm, it was the worse pain I have ever felt. The doctors, nurses, and staff were friendly and efficient, but most importantly they were fast!','2019-04-16 17:57:01.859000','2019-04-16 17:57:01.859000',5,'Danielle Bulgarelli','https://lh4.googleusercontent.com/-1fJ9Rqhlzfw/AAAAAAAAAAI/AAAAAAAAAAA/hwRXA4IePTc/c-rp-mo-br100/photo.jpg','16891069708558046635',4302),('AIe9_BEAgUIalCkcXZnurOUpP4uAldbqU00by-5WKL-Yw_RAo2QVst6bFvziKyoWm1qzM8wGChEqE8JS0be7GyfPk97elom91NQjwF0YyZvDTObA2rEjrG0','Excellent care and seen quickly. Thanks','2019-01-09 15:34:05.434000','2019-01-09 15:34:05.434000',5,'Albert Macon','https://lh3.googleusercontent.com/-6kIZ9wzgwNk/AAAAAAAAAAI/AAAAAAAAAAA/O-2MD160YQo/c-rp-mo-ba4-br100/photo.jpg','8918455867446117794',9197),('AIe9_BEAgUIalCkcXZnurOUpP4uAlGuIJPjNl2PU-s8NgZuUFROFQ55W2VeUz7xMDSmQxb_GHzehWR61WeR9K_vtkK-G-VvnRidNh6MJouo3vqV4KrcV0MY','one of the best Emergncy rooms!! And Hiba front desk clerk was the best!!','2016-12-01 04:55:42.684000','2016-12-01 04:55:42.684000',5,'Ijeoma Okeke','https://lh4.googleusercontent.com/-mmm9YBVLNH4/AAAAAAAAAAI/AAAAAAAAAAA/EZL75x6wzEI/c-rp-mo-br100/photo.jpg','17394740196501090048',5155),('AIe9_BEAgUIalCkcXZnurOUpP4uALJ-DRG6DBHtlk6XNs0giOr--o24slDyzXzViEAc-mVWcESG3hIvwTkYU6Wmgi-2Gq_E-DyRDgBrQ4ovcqX8Hh8vfkwE','Visiting from out of town and our middle child was complaining of ear pain. We walked in were checked in within 5 mins, seen by amazing staff (Anthony, Natalie, and Naomi) with comfort items for the three year old and Dr Anders within 15mins. He was efficient, informative and kind. If we need them we’ll be back!!','2019-03-23 20:20:38.563000','2019-03-23 20:20:38.563000',5,'Alex Shaw','https://lh6.googleusercontent.com/-9DECPBqa7mg/AAAAAAAAAAI/AAAAAAAAAAA/BrXfcP1AdW8/c-rp-mo-br100/photo.jpg','16590124370714063921',3488),('AIe9_BEAgUIalCkcXZnurOUpP4uALJkM8z1emDwfEKitF_KATmRC8e-GAcSwYSx-AJOykpPIAz4tmmKrVvLkZnX4JuI8uKXTulpQaQ1EDSb0RjG19K7OS9M','I had a very good experience and very friendly and helpful staff. Thank you y’all for making this testing thing so easy!','2020-07-24 18:23:56.691000','2020-07-24 18:23:56.691000',5,'fabiolaa calderon','https://lh3.googleusercontent.com/-eAQdEeLhhgI/AAAAAAAAAAI/AAAAAAAAAAA/1bu5zfLLrwk/c-rp-mo-br100/photo.jpg','2077061009497551125',22850),('AIe9_BEAgUIalCkcXZnurOUpP4uAlvj4dOmVvefruahe-kbjoP9ed9QnEoyVRVRJQOZ610KER7lV6GzD0iyZ6Eg-rM6MyJffYIQamLpM87bbzZWytlyksTc','The staff were professional and pkeasant to deal with. The receptionist (Amy I think) was amazing. I expected a long wait time and tons of paperwork but she was very attentive got us in quick and with little paperwork.','2019-03-26 15:34:53.099000','2019-03-26 15:34:53.099000',5,'Jolene Akery','https://lh4.googleusercontent.com/-u7fIvI-zwgw/AAAAAAAAAAI/AAAAAAAAAAA/qGSN3HBHh4Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1356),('AIe9_BEAgUIalCkcXZnurOUpP4uAlzzqz7-6zeaFjMoOU9xScA7Xc6Xc2i_KlIWb6opLbtPJHF6ADfmtYxP8YkKQmgjBbrysjUzc_vrV_L9bTaXUhsyDKwg','excellent!! very caring staff and friendly ambiance','2018-05-30 00:11:04.586000','2018-05-30 00:11:04.586000',5,'praveen kumar','https://lh6.googleusercontent.com/-h9QNcC3sZ2s/AAAAAAAAAAI/AAAAAAAAAAA/Nh0V8dd0qJU/c-rp-mo-br100/photo.jpg','14904078213800803294',2249),('AIe9_BEAgUIalCkcXZnurOUpP4uAm1Yzr0OxaDTgO04DbQ4LCmaKjI1Nog8Llqvo4ZPjUBOuJpk23CXkA1rReNLwMsmtcEJqYjrWDc9s_bMNw-Q5Sd9ALdw',NULL,'2017-04-07 15:06:06.107000','2017-04-07 15:06:06.107000',5,'Amro Darwish','https://lh3.googleusercontent.com/-aUiMCLn6ROs/AAAAAAAAAAI/AAAAAAAAAAA/bUakTdytFiw/c-rp-mo-br100/photo.jpg','3511292162159714121',7849),('AIe9_BEAgUIalCkcXZnurOUpP4uAMe6j2OdnyXAvBHVF1TbxcTr0tDTZxZk7_N0R30Nk3l2DNm0huEVHCzzRF5x82wv6IaguABZ8qUNcscBlGMPx-hjNjUE','I just visited SignatureCare for the first time and I was highly impresse . Dustin, Dr. Das, and the Radiologist Tech were fantastic. The level of customer service at SignatureCare was wonderful. I would definitely recommend this clinic.','2020-07-26 18:38:51.383000','2020-07-26 18:38:51.383000',5,'R Dub','https://lh6.googleusercontent.com/-W_u38-Ys_2E/AAAAAAAAAAI/AAAAAAAAAAA/mgMwm4AQGGU/c-rp-mo-br100/photo.jpg','14748677429039074158',22560),('AIe9_BEAgUIalCkcXZnurOUpP4uAMImjPr8DwxNhia4Us3W0_q3R2iKbAquvhXaq2a3c6O6zQA65bNnsmpb7M5taDfFo6a9PmmpJIotWNMCEJuIzyp7Z_5M','Anthony and Patrick were amazing! I feel so much better','2019-04-26 04:25:29.706000','2019-04-26 04:25:29.706000',5,'Kyler Beaton','https://lh6.googleusercontent.com/-7YXQbexCoJk/AAAAAAAAAAI/AAAAAAAAAAA/0NGex0FRnWs/c-rp-mo-br100/photo.jpg','16590124370714063921',3404),('AIe9_BEAgUIalCkcXZnurOUpP4uAMlo-8ml9u00L2beZFkUbg71TM4qq0RQVVa0A5hqnNoeCRN6TD_yAjEYOJyrtLbQApk9yyYlgaknX-gnGqNRAwj25xw8','Very pleased with my visit at ERcare24. Very professional and curtious not to mention that the facility there is very big and comforting. Thanks to the great staff. Dr. Patel, Alvean A -Nurse, Brian C. - Radiology, Jocelyn A - Registration','2019-10-23 13:13:35.210000','2019-10-23 13:13:35.210000',5,'Joe Lopez','https://lh5.googleusercontent.com/-BPpWayTEnkU/AAAAAAAAAAI/AAAAAAAAAAA/Szgpbixd1f8/c-rp-mo-br100/photo.jpg','16389487648212004696',2794),('AIe9_BEAgUIalCkcXZnurOUpP4uAmmLcvxn6eyVtBbyQd4dQAdiB1GxoQaqFmM8Uk0G47quJrTsxeCnYi9POTWfrLNZC2x7ro67I5jx7z6bIz9tayoTQghI','DO NOT Visit this ER, they will BALANCE BILL YOU. Which means they will tell you that they accept your insurance and then balance bill you for the remaining amount! They told us that they took our insurance last fall when we went for my son\'s concussion. Then the next day when I called (my husband took my son in) they said technically they don\'t take any insurance however must accept payment based upon in network for emergencies so to not worry. Our insurance paid based upon in network as it was a true emergency. We are now being billed over $5000 under what is called balance billing. The billing people at this ER keep stating that this is our deductible. It is NOT our deductible as our deductible is $2500. We visited another free standing ER the year before and had no issues whatsoever.','2019-07-19 15:04:17.085000','2019-07-19 15:04:17.085000',1,'Mary Villamil','https://lh4.googleusercontent.com/-VbWl2z6e-t0/AAAAAAAAAAI/AAAAAAAAAAA/0lgh9bMkViU/c-rp-mo-br100/photo.jpg','17394740196501090048',4625),('AIe9_BEAgUIalCkcXZnurOUpP4uAmMrVTGuuZZIlkpOoe9ptcIH0YLurn7_u8at9PI4m5K_mMMATjbA0c9Ji_Q63H4pDt05T53ka-kgXI4jFk7odFX26w84','The staff, nurses, and Dr were very friendly, caring, knowledgeable, and professional! We were in and out with a strep test! We will be back.','2020-03-14 00:44:27.430000','2020-03-14 00:44:27.430000',5,'jaketez09','https://lh5.googleusercontent.com/--0dhNUB7ED0/AAAAAAAAAAI/AAAAAAAAAAA/SLKuNat3fm0/c-rp-mo-br100/photo.jpg','14748677429039074158',18839),('AIe9_BEAgUIalCkcXZnurOUpP4uAMmwUpR4y2nhgC9bqAHzI7V8hHyHe8M3Anq_HsAMfuKF2eywCrhZbba0GuyvYeMIUVsm-RATyaZ3Kq0Hydx8Fn7dl0ls','I was treated very well. The staff was friendly and very helpful. I am comfortable going to Signature Care','2020-08-06 17:28:32.797000','2020-08-06 17:28:32.797000',5,'User User','https://lh3.googleusercontent.com/-6i2Db0v7CN8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckDx0KQ_eAxa451DmHOA3wWD3HPJA/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22180),('AIe9_BEAgUIalCkcXZnurOUpP4uAMnmXzqoykOJpnflaREFEN8uoyCkYxbAkddBemn_SBklzI6qrte0LCOmKb1G055KCV-3d1wVSAg7gOCtnLEkT7qjVlO4','Dr.souman was very thorough and very gentle with helping my son get something out of his nose the nurse cris was super sweet and Amy was also very helpful would recommend to anyone!','2019-04-19 01:13:16.692000','2019-04-19 01:13:16.692000',5,'Sam Cuellar','https://lh6.googleusercontent.com/-JmHhXBP0BxM/AAAAAAAAAAI/AAAAAAAAAAA/ZuKbqaHuS48/c-rp-mo-br100/photo.jpg','3511292162159714121',7362),('AIe9_BEAgUIalCkcXZnurOUpP4uAMT1zVs32pYQT_vXLKuqNSAJDiWS0QTzeaS7fAbqKpaX0rpCCVyG8XZ8zJ6G72Tpol7qQoBJpu4JN_PVWhhletwVd3DA','I came to the Signature Care facility in College Station with my roommate. The staff member, Rebecca V., at the front entrance, got us in and registered super quickly. The facility itself had a comfortable and clean and they even had snacks for us while we were waiting. They got my roommate in and out really quickly as well. All in all it was a very helpful place','2019-10-12 01:20:45.664000','2019-10-12 01:20:45.664000',5,'Moriah Withem','https://lh4.googleusercontent.com/-DMWb7jhwpco/AAAAAAAAAAI/AAAAAAAAAAA/CwWCyAOFOQE/c-rp-mo-br100/photo.jpg','16590124370714063921',3149),('AIe9_BEAgUIalCkcXZnurOUpP4uAmZqswohaaaglBb8Fs2Unh-rvXPYvqUbDAZdv3RBtCyhQEOM5N0mPwu8LhfXPz_5G-ElcH5JC-4LN_dmffcWh6xqjmBU',NULL,'2017-05-02 14:15:09.001000','2017-05-02 14:15:09.001000',5,'Marissa Peterson','https://lh6.googleusercontent.com/-RCpxGJnoNQg/AAAAAAAAAAI/AAAAAAAAAAA/I2AGgufSCpE/c-rp-mo-br100/photo.jpg','3511292162159714121',7825),('AIe9_BEAgUIalCkcXZnurOUpP4uAn_oDdZYgqGWxhLJ-6x2EoLKWY7eQrJFdb3vCzivmmo7KZqOmeFGYwmLvKycLr11wrfqszEDf6AVpASDMSgXkDDI2BcA','Great care! Our nurse was Anthony, ER Technician was Natalie, Physician was Dr Vakey, and Radiology Technologist was Laura. Everyone was super kind and took great care of us. Anthony made us laugh! A great way to bring light to a not fun situation. Doctor Vakey was attentive and communicated well. Will come back again if needed!','2018-11-06 01:13:02.459000','2018-11-06 01:13:02.459000',5,'Ashlyn Workman','https://lh5.googleusercontent.com/-vVMblt6EaV4/AAAAAAAAAAI/AAAAAAAAAAA/v7VKdM36vKk/c-rp-mo-br100/photo.jpg','16590124370714063921',3668),('AIe9_BEAgUIalCkcXZnurOUpP4uAn4HUpWWN8G7eW2b2E86WpZItFjYthc2UmtG3NCLMrLe4LmhZxGX2KRTWrhc68M5gT55VVg1ikCZNlwK2VvP8kaJGMt0','I see Dr. Singla every time I’m sick, he’s awesome. The nurses are really attentive and nice. RN Laura was so sweet :)','2019-01-10 14:26:04.518000','2019-01-10 14:26:04.518000',5,'Bailey Kimbell','https://lh3.googleusercontent.com/-Ys5qbYs1goU/AAAAAAAAAAI/AAAAAAAAAAA/XHRdoUPlirQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7493),('AIe9_BEAgUIalCkcXZnurOUpP4uANCuG35UW1TOMvFVTJKnIzKJPhobPCFedMacIj0aAGPlVdkuSyGukJZm9xjGRqWvA8blwPtni4JR0sxjTZYP9ahxw72M','Today I brought my 4 year old daughter in because her eyes were getting swollen and she was draining in her eyes. Come to find out she had the pink eye. My daughter loved the kids room very much. But I do have to give a shoutout to the staff that were there around 1:30 to 2 today. Not only did they make sure my daughter was smiling none stop they actually put a huge warmth in my ♥. I actually think the lord above for what you did. You put some happy tears on my face. God bless all of you. I will always recommend everyone to go here. Thank you so much. Jenny and Desirae','2017-06-27 23:37:19.438000','2017-06-27 23:37:19.438000',5,'Jenny Fuentes','https://lh6.googleusercontent.com/-eIha__fZPCE/AAAAAAAAAAI/AAAAAAAAAAA/OYdrcrwyPK8/c-rp-mo-br100/photo.jpg','17898197009688164559',5938),('AIe9_BEAgUIalCkcXZnurOUpP4uANFL9hiIC5ZMF4osmKSwvghymg9yAiKL6WsEYfk_QZwKg3sYi4rD8-pSfKE8IJyHilmuGnl83YXdE8i_rP891LmSPFxc','Great service. Had to come in for a rapid COVID test and the help line was good getting me online to schedule the appointment and the staff was extremely kind. Very a accommodating and the facility is great. I even got to be in the Finding Nemo room while I waited!','2020-07-09 15:02:45.204000','2020-07-09 15:02:45.204000',5,'Lacy Hamilton','https://lh3.googleusercontent.com/-yfvv3ejChRU/AAAAAAAAAAI/AAAAAAAAAAA/TgV88YSycfM/c-rp-mo-br100/photo.jpg','14904078213800803294',21953),('AIe9_BEAgUIalCkcXZnurOUpP4uAnGVD8FhOPK9Erq8GfmRJlj45I3xZQ7M3OsQ8SSM9RZ303xMGP7b99jE9HJ_iL3ZJnIpyuLyZGbvn4sIqIhx48ORkT68','They are excellent and very responsive! Shaunda and Aileen were extremely professional and kind! Chelsea and Fernando were also professional as well as Shelli. Dr. Miller was very thorough!','2020-01-04 23:27:20.886000','2020-01-04 23:27:20.886000',5,'Renae Davis','https://lh3.googleusercontent.com/-1_c4_9mUg4Y/AAAAAAAAAAI/AAAAAAAAAAA/fmgiA2t4Lt8/c-rp-mo-br100/photo.jpg','16891069708558046635',4096),('AIe9_BEAgUIalCkcXZnurOUpP4uANlin3MpB8Pl7uac9iSuat4VASchMxzFssw-Nzqzstt2FMWzGbR2RAPckvm59WSa6_Hb25S0JBZc0fk2QHR2kKYEJGFA','Incredible doctors that are very kind and awesome at their jobs. Will always recommend this place!!','2017-04-29 16:36:01.133000','2017-04-29 16:36:01.133000',5,'Grace Bonnet','https://lh4.googleusercontent.com/-0tp3c2jX7yY/AAAAAAAAAAI/AAAAAAAAAAA/AR0gLOlk4f8/c-rp-mo-br100/photo.jpg','16590124370714063921',3996),('AIe9_BEAgUIalCkcXZnurOUpP4uAnnqe97tLkUcgNxdIblM37decFc1MqBO1BUvOtr3RA91QH1CT0cUE8qa99r63nJiqOgWdqxTp_Q15monfj4SBW18rQ1c',NULL,'2017-10-17 00:03:53.254000','2017-10-17 00:03:53.254000',5,'Paige Schock','https://lh3.googleusercontent.com/-mVbfws-7rrw/AAAAAAAAAAI/AAAAAAAAAAA/cm8IzUIzlZY/c-rp-mo-br100/photo.jpg','14904078213800803294',2318),('AIe9_BEAgUIalCkcXZnurOUpP4uANnZTz_NgMGVH5SJtS-YO9Y3zh2vm0foC4_1-BTmcc4IiJmLudOcJyuwmxtetaeLQi_22VCSSNER2QJmXQ40fLeatqcY','Great service and care given by Lorena T, Jacob, Rebecca W. And Dr. Ortiz. I will be returning!!','2019-12-22 20:30:04.014000','2019-12-22 20:30:04.014000',5,'Rebekah Elizabeth McManus','https://lh6.googleusercontent.com/-unSN_3rXdSQ/AAAAAAAAAAI/AAAAAAAAAAA/UOPTiKM_JgY/c-rp-mo-br100/photo.jpg','16590124370714063921',3012),('AIe9_BEAgUIalCkcXZnurOUpP4uAnuObDod_IwM7Is78OFJA0J6dEOUaIoS0sXZSunCbWD_7hR6fWPYi9TSNE9cV-Rifi5yE-to_WrSA_K81HYviRBqEWrM','had the best experience with\nDr.pham, Alvean A,Marcus b and Jocelyn a','2019-11-06 17:10:42.392000','2019-11-06 17:10:42.392000',5,'devo htx','https://lh6.googleusercontent.com/-tAZLyiWOm0s/AAAAAAAAAAI/AAAAAAAAAAA/3M-MUaXlT88/c-rp-mo-br100/photo.jpg','16389487648212004696',2727),('AIe9_BEAgUIalCkcXZnurOUpP4uANVt7bqPWEYGCuBBMFqIJ-BIWpnkZHA08qlqGD4B-NkMqQFuyXzu7jo4yc8_t8Qa3UfLqUaEweIR92CKgvfC6xfQ4a9I','This place is a God send for anyone without insurance. I had to get a CT scan and they only charged me $500 for the visit, prescription, and CT scan. Any other place literally would have charged me $5000+. On top of that they were super quick and friendly. Can\'t recommend high enough!','2019-09-19 21:40:49.868000','2019-09-19 21:40:49.868000',5,'Sergil Rahmtulla','https://lh5.googleusercontent.com/-nrBZSzcix7k/AAAAAAAAAAI/AAAAAAAAAAA/Idr38YDb7nU/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4604),('AIe9_BEAgUIalCkcXZnurOUpP4uAnXuxPU0RCHGU8Sv0qAVlz-Qp8tmoFTs0t_Sty8l_PUIeIBubZJVHkGZ1KTiDiOTCqQGXq6o9x9v7ZVC6W5Gf7sErzWo','I had a wonderful experience despite my illness. I would like to brag on Jennifer with registration, my nurse John & my physician Dr.Veloso for the prompt and professional care I received. I was well taken care of.','2018-12-05 01:02:46.658000','2018-12-05 01:02:46.658000',5,'lauren huff','https://lh5.googleusercontent.com/-2JJb2TUzH_0/AAAAAAAAAAI/AAAAAAAAAAA/hQH_T1OojMg/c-rp-mo-br100/photo.jpg','8626688543755174284',8633),('AIe9_BEAgUIalCkcXZnurOUpP4uAnZV-klBZtEar0IL0DyX-_OqCihRtjGv6NNE3Tr_n8kLbQiFwEOvRWZUstKWNgbY4h3EqguQmasP0U5uCNeh-MrpztEA','They do take Blue Cross/ Blue Shield of Texas. They checked me in quickly, they made sure I was comfortable. They were attentive, if I had a question they responded. They never looked as if they were bothered. From the front desk to the nurses to the Dr and so on and so forth. The whole staff was great. I hope I don\'t have to visit an emergency room again, but if I had to it would be this one.','2018-08-19 15:16:49.349000','2018-08-19 15:16:49.349000',5,'20cantu','https://lh4.googleusercontent.com/--qvx1AoiYuE/AAAAAAAAAAI/AAAAAAAAAAA/1vaVDBYlxZg/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1559),('AIe9_BEAgUIalCkcXZnurOUpP4uAO3Dqfz42zuMk7ZOCTAgK-ZfK33vU5jBiGCaZN6RY4v1bQ8DdN9CzqutUz4xYmOVPK1hjkfUPGQWFwCFdw5zzPTMxMPA',NULL,'2020-08-06 19:42:59.500000','2020-08-06 19:42:59.500000',5,'Jennifer Martinez','https://lh3.googleusercontent.com/a-/AOh14GiIvV9i2AF6Z4m2Er8_6WxX8mjYV04QncCaahwRyg=c0x00000000-cc-rp','12541597562633926366',21793),('AIe9_BEAgUIalCkcXZnurOUpP4uAOCcuM6vYPeThM8mSXJF9O-mQD5zW4yrC0MrKu6kKctF85jpzQpqzowwqdXRiZX0vUFqmW0SXpfEXZSmCmR-GMXrQ-Uw','The whole staff was great. The girl at the front, Okarys, the nurses Gabe and Jerry and Stephanie. Dr. Daniels was really good as well. The facility itself was neat and clean.','2019-12-07 03:25:37.961000','2019-12-07 03:25:37.961000',5,'Holly Hubert','https://lh5.googleusercontent.com/-rE7OPt3NqOY/AAAAAAAAAAI/AAAAAAAAAAA/DORFYzczpGw/c-rp-mo-br100/photo.jpg','16590124370714063921',3047),('AIe9_BEAgUIalCkcXZnurOUpP4uAognDw5AUsVVxDVUE7Z04LGKGHAoHI_AsaVG1tsrsRRBw3GngglYlYByP5QwvyvAPgWWBRd_qrSqLJfAZQqdT59FCsWM','The staff at Signatures is phenomenal! Lucas and Dr. Curtis were absolutely amazing and so helpful.','2020-02-17 17:54:14.661000','2020-02-17 17:54:14.661000',5,'Kaci Thomas','https://lh4.googleusercontent.com/-I2-bbaGhQz0/AAAAAAAAAAI/AAAAAAAAAAA/qCwFyQA96qU/c-rp-mo-br100/photo.jpg','3272657195432704501',14350),('AIe9_BEAgUIalCkcXZnurOUpP4uAOh2O810kGjug-3h8w1WEfJl29TRz8cOudZtJOd_0rysVIlC3RQPWrN8PacJ6nlER9nLP8vGXueriO_tl0egvTTldEiQ','Took my son to Signature Care. Anthony our RN quickly made my son and myself comfortable so he could check him out. I would highly recommend the ER Services to the BCS community','2019-03-27 17:57:55.039000','2019-03-27 17:57:55.039000',5,'Curtis Pryor','https://lh6.googleusercontent.com/--LkIPi5LKcY/AAAAAAAAAAI/AAAAAAAAAAA/YXRQvcEavgI/c-rp-mo-br100/photo.jpg','16590124370714063921',3478),('AIe9_BEAgUIalCkcXZnurOUpP4uAOP-8b8Kxbxa98O5RD15FJIKboYoddBgGsNBPyUiUVtkcOPCs192PAp-uXJyB1A_77y9TKzt8LcHGh6datLZRmRs-AYM','Great staff members and excellent care! Dr Golla was awesome. Thank you!','2016-04-19 01:55:57.802000','2016-04-19 01:55:57.802000',5,'Hanh Nguyen','https://lh3.googleusercontent.com/-kuINAm_FKX0/AAAAAAAAAAI/AAAAAAAAAAA/3NIyZoTJxm8/c-rp-mo-br100/photo.jpg','17394740196501090048',5265),('AIe9_BEAgUIalCkcXZnurOUpP4uAoSVKTaUWbeF5QzynwNv0gqeRM9GzZk8-1kwXpTXs5_nI-o-I7PBzll9jzIiue9kTarSMmUOrcpqqHAxJEV2LqrNWX4E','Had a great experience. Dr Yusuf, Leslie, Laura, and Gina took great care of me and had me feeling better in no time.','2019-01-16 16:42:48.465000','2019-01-16 16:42:48.465000',5,'Sarah H','https://lh6.googleusercontent.com/-WlPqpng64qs/AAAAAAAAAAI/AAAAAAAAAAA/7TJ2WXSK9YI/c-rp-mo-br100/photo.jpg','3511292162159714121',7473),('AIe9_BEAgUIalCkcXZnurOUpP4uAOwbk0_uzyuETL4pcIfI_E_rbkRSnsmrRQfX5KeNtOE2W1XqhENtFxjvnDSY46cMxl3SuwTMlCLFaw40JbICSCrBjQ-8','My dad when in cause he was having some complications after a hernia surgery. Dr. Ding was very informative and worked through his issues. Dion, the radiation tech, even let him see his own CAT scan. The entire operation was first class and he got special attention from Amy at the front desk and Agnes the RN.','2019-05-12 02:57:36.648000','2019-05-12 02:57:36.648000',5,'Caroline Kaylor','https://lh5.googleusercontent.com/-LltE2jkAPKs/AAAAAAAAAAI/AAAAAAAAAAA/7YokeJk-MVc/c-rp-mo-br100/photo.jpg','3511292162159714121',7326),('AIe9_BEAgUIalCkcXZnurOUpP4uAOzaJ9cQxArat3hvBOLIMgtKwpYMS_svEXyibjePG97ALgZOw2aU-yS6mKv1i1_ziaX8NMZzAFev6RgD0_61Fh4y1SC4','Nice staff and they did everything very quick and professional ','2016-01-28 01:42:03.053000','2016-01-28 01:42:03.053000',5,'Saoud Albader','https://lh5.googleusercontent.com/-c616CMVlUGM/AAAAAAAAAAI/AAAAAAAAAAA/EbkSDIRjAxo/c-rp-mo-br100/photo.jpg','8679688254631342173',8924),('AIe9_BEAgUIalCkcXZnurOUpP4uAOZgQ2pief9xi6k9Fmoty2b0YLEiWOhRS_NcipLvFdoXIaAreojDlsMUNzAUdFLkSYjf478oTMHEBtObzGErMafXrpBg','The staff were all extremely nice and welcoming! While waiting in the back to be seen by the doctor I was given a warm blanket, a remote to watch TV on any channel I wanted, and the nurse propped up the bed so I could sit back. The receptionist helped tell me which pharmacies were still open. My vital signs were taken when I first got there, and before I left to make sure I was okay. I was given meds while I was at the office, so they made sure I had someone else to drove me home. They even had that person sign me out. I would highly recommend this facility to anyone!','2018-01-24 16:03:18.582000','2018-01-24 16:03:18.582000',5,'Sarah Kirby','https://lh6.googleusercontent.com/-X9NDMShGx9I/AAAAAAAAAAI/AAAAAAAAAAA/_tlK3gM1cLk/c-rp-mo-br100/photo.jpg','16590124370714063921',3873),('AIe9_BEAgUIalCkcXZnurOUpP4uAP2E_yXsX2Sd9gtggssUKVuExPITjpLW3Xfb3WYLM1Ao95k-V44lOdw8fxqFtzNs9b7WWeAjDcnlmcUu-Pg36-napNIk','Best place quick and stress relief','2018-05-21 00:17:24.864000','2018-05-21 00:17:24.864000',5,'Astrosam27','https://lh3.googleusercontent.com/-VDzBsek3548/AAAAAAAAAAI/AAAAAAAAAAA/2K7z4aaCw2g/c-rp-mo-br100/photo.jpg','14567670160750071148',1621),('AIe9_BEAgUIalCkcXZnurOUpP4uAp3VGk8K861YDsCnIsWJ6t-s86GqrIBxeu8aTGqgX7s88iwPg4ibYKkxdmzUavKyg2M0mvChn3pYAobY6xWt1bRgVlV4','The emergency care center was really nice and the staff really made me feel comfortable even though I was pretty nervous about being there. Definitely recommend this emergency care center for anyone in the area!','2017-06-01 17:39:07.181000','2017-06-01 17:39:07.181000',5,'Jessica Xixitla','https://lh6.googleusercontent.com/-wlAeYZlvY_4/AAAAAAAAAAI/AAAAAAAAAAA/NDAqjsVgxNU/c-rp-mo-br100/photo.jpg','3511292162159714121',7814),('AIe9_BEAgUIalCkcXZnurOUpP4uAP70mgtB5bLrK_uWrHZ-JyYx_WUR9OknnUez0f6SKop9Y6B-eqvC46AZrEXkN3M6-QJQZe-513RfhGIEnvB6PBTw_F38','Very fast and quick to see you and take care of you. Make you feel very comfortable with everything they are doing!','2019-02-24 17:18:30.965000','2019-02-24 17:18:30.965000',5,'Jose Escobar','https://lh4.googleusercontent.com/-gVTKAsZZ4B4/AAAAAAAAAAI/AAAAAAAAAAA/_vB_IB0IXVI/c-rp-mo-br100/photo.jpg','14567670160750071148',1381),('AIe9_BEAgUIalCkcXZnurOUpP4uAPQ6aIbFqAFVJIL7zIAAEaw3r3-KM5uRRok50AqFwx9qYu1q44_2QryVSIE5qMklxZcYv4Lndnhz4A124fEpJx5qds-8','I wish there was more than a five star rating. Great service and such a clean environment. I was paranoid about getting tested for COVD. I stopped by here, and I am so glad I was able to get my COVD test done here. Everything was so organized and clean! All of the medical staff are so NICE! Right when I walked in, I was greeted and provided the upmost high level care. For COVD- 19 testing, I simply went on the website and scheduled a appointment. Everything was so organized online as well.I had to fill out a quick form at the clinic. This place is EXCELLENT, and they are strictly following the social distancing guidelines. Everyone was so friendly and caring. I was taken into the room, and my vitals were checked. I had the nasal swab testing done, and It did not HURT at all. After that, I was told to wait in my car outside, and the results will be given to me. Everything was so comforting here! If you need COVD testing done, please go here! Apart from COVD- Testing, if you need any medical services, please visit them. This place is awesome, and they will make sure to take care of ALL your needs. Thank you Signature Care!','2020-07-31 03:41:14.114000','2020-07-31 03:41:14.114000',5,'Nayab Sayed Ali','https://lh3.googleusercontent.com/a-/AOh14GgZ0Ddvpyd8rRlxIHsdmGtNP_N2vHRFBxlSCvZD_w=c0x00000000-cc-rp','8918455867446117794',22271),('AIe9_BEAgUIalCkcXZnurOUpP4uApWI6QC9X36wbuelPFgyBqPo-gb93G0Kl80pos6VmDj8XbFDI4z1SDQc9J2dXsicuT9bUBlrZl3Ak9c_WNgOApC_kltw',NULL,'2017-10-13 10:16:17.481000','2017-10-13 10:16:17.481000',5,'Janie Swolley','https://lh5.googleusercontent.com/-qHbZLhkRklk/AAAAAAAAAAI/AAAAAAAAAAA/HM6FPHGpVGQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9348),('AIe9_BEAgUIalCkcXZnurOUpP4uAq6mXY4KaDcMdsXKCSlwGKZ1p6NpEDTP2DXj7ng-W-viwwoGd5kVCyXtNEnYn29D4VMmQ2ZNuc5oOKElvUJ4S1bjjR6I','My name is Donald Turner and I was a patient at e care 24 in Midland and I have to say that it was one of the most cleanest facilities I\'ve ever seen the staff was amazing from registration Maria was very kind very polite and very professional nurse Savannah was very nice very polite and very gentle radiology tech Jamie was very kind and helpful and dr. Rozycki is awesome the staff here is amazing and I recommend anyone to come here the wait 10 minutes I told him visit 30 minutes and they took great care of me Midland you care is definitely tops in my book Thank You staff for all your help.','2019-01-15 22:55:50.681000','2019-01-15 22:55:50.681000',5,'Stonewall Turner','https://lh4.googleusercontent.com/-1PjbUVkQrfA/AAAAAAAAAAI/AAAAAAAAAAA/aY114u_S2wg/c-rp-mo-br100/photo.jpg','13486358490203335051',1112),('AIe9_BEAgUIalCkcXZnurOUpP4uAQcR1GeLTu2JS9Ocs3JJTeppW3s1QkSJ17dzJNbRKtDhLn7jLnK8WhCSdEmidB44TgurBj7OImslVooFXYt_7_JP9UqA','Anthony , Morgan , & Dr. Vakey were so friendly and helpful !!','2019-06-12 16:44:57.881000','2019-06-12 16:44:57.881000',5,'Destiney Zellers','https://lh3.googleusercontent.com/-OuZM38o8ZG0/AAAAAAAAAAI/AAAAAAAAAAA/-jG2RTWyYLo/c-rp-mo-br100/photo.jpg','16590124370714063921',3356),('AIe9_BEAgUIalCkcXZnurOUpP4uAQD_z5t_gKoIt_6_IZYFTgVsFIDbjSqT30qoSC8j7FjqY5hDxbja_4yQDnssmJPRVMZzClX2pbU3JhoFCjRzMzrLf13c','I had a fast, personal, and great experience @ Signature. I would like to thank each employee personally for the help and approach towards my needs.\nDR. Zheng, Ke, MD \nNurse: Palma,Brenda \nFront Desk: Cruz,Genesis','2017-06-09 17:52:05.549000','2017-06-09 17:52:05.549000',5,'Demetra Mathis','https://lh6.googleusercontent.com/-HzhcV05DnGs/AAAAAAAAAAI/AAAAAAAAAAA/7p8Hkva0MJA/c-rp-mo-br100/photo.jpg','8918455867446117794',9395),('AIe9_BEAgUIalCkcXZnurOUpP4uAQELtqKtqNHDnrTMGLmeoOmO4cwes_KQsxZanUqfwerowQgjD_ibntp0ge0JuVcMzhxQtp8lurLrKKwmQxBUzqQlBoUw','Very clean, very caring staff. Excellent medical care.','2017-11-24 07:25:58.425000','2017-11-24 07:25:58.425000',5,'Karelli Arenivas','https://lh3.googleusercontent.com/-1sXqCtLvr0k/AAAAAAAAAAI/AAAAAAAAAAA/Xmv7X017pCY/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8346),('AIe9_BEAgUIalCkcXZnurOUpP4uAQFoeaWn6y_TSubyEksaWzClgN76J-aCZY5DoXYu2ZFfhkjbyzgqGV5jvjN9zA_oU86WCRBEU7Gh6k-zt3jThR9ad0d0',NULL,'2019-12-05 03:48:12.048000','2019-12-05 03:48:12.048000',5,'Matt Segovia','https://lh3.googleusercontent.com/-7B4_kxmVlBA/AAAAAAAAAAI/AAAAAAAAAAA/X4ZzqbX0tvs/c-rp-mo-br100/photo.jpg','16389487648212004696',2578),('AIe9_BEAgUIalCkcXZnurOUpP4uAQjpzohQ7hfr8T7SXzbJdQcIlGf2oVAWjlWwBqbt1UNCgtH6Z54s3mWWBn3lTMJJX5to794S2h42Xs5De8x5iTsKITLU','I’ve used y’all several times but what y’all did after our last visit truly amazed me. I left my drivers license there. I thought I lost it at home or at the bank but it never crossed my mind that I left it there. Whoever took the time to mail it to me, I really appreciate it! Y’all have a customer fo life! 😊','2019-03-06 21:41:50.523000','2019-03-06 21:41:50.523000',5,'Kelli McDonald','https://lh4.googleusercontent.com/-4YxK2W0N7h0/AAAAAAAAAAI/AAAAAAAAAAA/Ug3IY8ef8S4/c-rp-mo-br100/photo.jpg','8626688543755174284',8538),('AIe9_BEAgUIalCkcXZnurOUpP4uAqm9JyMFa0Wg14k2dFQXLbShUj3DdjlWzfcoqnHc8O9fT2nWwDCwCC_DwHdXOgdVk5KHPcY-KKxIOHnEPqcnBud74YbA',NULL,'2019-10-17 05:36:20.077000','2019-10-17 05:36:20.077000',5,'Nickolas Tijerina','https://lh3.googleusercontent.com/-xgXGs4sPrF4/AAAAAAAAAAI/AAAAAAAAAAA/my1N0Ol3r94/c-rp-mo-br100/photo.jpg','13486358490203335051',774),('AIe9_BEAgUIalCkcXZnurOUpP4uAQP5SERf999a74Oq-fht2sxZc2BMaxCrgfRNwl88XE-0B_GyQ3rpjVPyqd-VPiSMe2Kk_Fy4HLu2aXLLFLpkO7-yQDkU','Friendly staff... great results','2018-12-19 20:45:40.551000','2018-12-19 20:45:40.551000',5,'Carolann Mansfield','https://lh4.googleusercontent.com/-gi8v-USp-Wg/AAAAAAAAAAI/AAAAAAAAAAA/ICLxwdMiAjM/c-rp-mo-br100/photo.jpg','16590124370714063921',3605),('AIe9_BEAgUIalCkcXZnurOUpP4uAQU4dIlywFDtzuYVM8abm1A7yO4gcNY5AnsLjhpnT-PPu8W41i_p4yAGiz6bxNmV4ghHyIl3b_huxoCkEwuJKxIUpu1A','Real Heroes work here! Thank you so much for the best service when I’m was badly sick on thanksgiving! Thankful for this heroic team!','2019-11-28 20:14:00.133000','2019-11-28 20:14:00.133000',5,'Henry Martinez','https://lh4.googleusercontent.com/-1eqMjbKXF6U/AAAAAAAAAAI/AAAAAAAAAAA/GmT3FVjpTIo/c-rp-mo-br100/photo.jpg','17394740196501090048',14071),('AIe9_BEAgUIalCkcXZnurOUpP4uAqVdH8D2TppYxpT5BQvM2gxMGLKUQEKf-EnjjAUf4tzCcSDUM5wc_1XuSI2Ce7mAUY_StnwvGR-IUKKzlpWvnGe7ti2g','Great staff! I was always greeted and treated very kindly here..came twice for covid 19 testing and both experience were easy and fast.again friendly and courteous staff make all the difference thank you Dr.Qureshi , Nurse Jessica Rad tech Jonathon and Hoan also Cynthia and Brandi.','2020-08-10 13:50:06.247000','2020-08-10 13:50:06.247000',5,'TRE BLIG','https://lh3.googleusercontent.com/a-/AOh14Gi9bAqD721SM3fHU12WDz1BwyUY5dFvPshOPaw01g=c0x00000000-cc-rp','14904078213800803294',22576),('AIe9_BEAgUIalCkcXZnurOUpP4uAQxeaoHELbxDwT1W_9fUUW0SJYRFjyB97reoK2c39Jn6vpa1VNii4mzMSzJHa2F45M7WmB6wgVegSumz6lTwSqqElonQ','Absolutely phenomenal. Dr Garcia/ Dr Daniels really care about their patients and cater to their patient\'s needs. The warm blankets make the experience comforting. Thank you all for saving my life and bringing a new comfort to medical emergencies. \nThank you \nDr. Garcia/Dr. Daniels \nNurses: Nicole, Pam, Shobna \nER Tech: Chris, Brandon \nFront desk: Natalie, Sibienne \nRad Tech: Grace, Gustavo','2019-10-09 00:19:29.080000','2019-10-09 00:19:29.080000',5,'King Stony','https://lh3.googleusercontent.com/-mNzlo-SyOA4/AAAAAAAAAAI/AAAAAAAAAAA/o3qMAo94SYY/c-rp-mo-br100/photo.jpg','8918455867446117794',9063),('AIe9_BEAgUIalCkcXZnurOUpP4uAQY3j1wTxFe1SzFLykoY03yHJlBHzJtw5XvxinvTGLCRohFcxZnldYyynj_IiDj3Ok3nvl9jxC0t5TnvlZza8Nh4yHgQ','Never been to an ERCare before. Wasn’t expecting or planning to spend my 4th of July here. But since that was the case, I must say it was a great experience. Beautiful facility throughout, very clean! Staff was wonderful, very caring and comforting, asked and answered a lot of questions, and didn’t make me feel rushed. Luke,Sherri and Kim you’re amazing! Thank you so much for taking great care of me and getting me on my way. Long story short my experience felt like a spa resort with a medical team. I would definitely recommend this location to anyone!','2019-07-05 02:33:21.003000','2019-07-05 02:33:21.003000',5,'Erica Muldrew','https://lh5.googleusercontent.com/-jqcljbVG6qk/AAAAAAAAAAI/AAAAAAAAAAA/RJVsc5LU5uU/c-rp-mo-br100/photo.jpg','3272657195432704501',6944),('AIe9_BEAgUIalCkcXZnurOUpP4uAR9Xo9FtZkS7agfIlzISEHXAWLJxTRaXoSOvEnWO0v6IH08En-lDMHKIKeNpo9_lUdaTQ7p5RAJw65fhfSyTnFWKR1FE','Awesome place. The staff was both polite and caring in regards to my condition. I hope I dont get sick again but if I do I will definitely come back','2020-01-07 03:35:39.596000','2020-01-07 03:35:39.596000',5,'Random Chit','https://lh5.googleusercontent.com/-DHNQFuqXOIE/AAAAAAAAAAI/AAAAAAAAAAA/EYJ8Cx4_AZk/c-rp-mo-br100/photo.jpg','2694018788013845459',14275),('AIe9_BEAgUIalCkcXZnurOUpP4uAraJRxTMu6S_JEJvI4NuEfWzHYR6VPfzznE6KCHWUrFQ0hTtsCHd1gbnni_aqx1yZoaGVvSvh08U8W10oBVuaKW4-6EE','Great place and great people!','2019-06-25 18:37:39.830000','2019-06-25 18:37:39.830000',5,'Ada Santos ExecutiveAssistant','https://lh5.googleusercontent.com/-sqapy1YqwAI/AAAAAAAAAAI/AAAAAAAAAAA/k2jCTLK0cro/c-rp-mo-br100/photo.jpg','3511292162159714121',7287),('AIe9_BEAgUIalCkcXZnurOUpP4uARE0aW8eW9cnkasdA-AzX6BQMoukqxO0iflOdHxhz_XulExUUFpuW48-VtzlwOu7evYbcewlHXnFZP8FKt4gGuGpVhFc','The service here is quick and easy. I wasn\'t even done filling out my paperwork by the time I was called back. Dr. Henderson ordered a strep test & flu test for me. The facility was very clean and the staff was very polite and friendly.','2020-01-28 16:20:12.206000','2020-01-28 16:20:12.206000',5,'Annie Wilson','https://lh6.googleusercontent.com/-9lPBOyp2L_Y/AAAAAAAAAAI/AAAAAAAAAAA/kDNoelq8XwM/c-rp-mo-br100/photo.jpg','14904078213800803294',13617),('AIe9_BEAgUIalCkcXZnurOUpP4uArgZ-C7oJL_QrNE-SmXqnb8psH9GijVncNPTBQdn9Cd9YoZ8XxL4-s6Gbyy_zis7c6qhEkA','I brought my toddler in this past weekend after he burnt his hand. We were taken care of immediately and they eased his pain as fast as possible. They were so kind and thorough. As a parent, it\'s so difficult to see your child in pain, and they understood and acknowledged that. Really, they made a difficult situation as comfortable and efficient as possible. I\'m SO grateful for the care we received, and my son is healing great.','2017-05-15 21:20:07.615000','2017-05-15 21:20:07.615000',5,'Katrina Kokoska Corona','https://lh4.googleusercontent.com/-eKLifxhU-bE/AAAAAAAAAAI/AAAAAAAAAAA/a-jZpbGW1Zs/c-rp-mo-br100/photo.jpg','8679688254631342173',8915),('AIe9_BEAgUIalCkcXZnurOUpP4uARhr0PVa7FFPJoPCps_DHXEyDu9Esb9M_McoNMFm4Gzq7G3pY47ahGY8AKJr_lXqpzvMS33YLfAMEt-N_i3tGE2XlH_k','Great team who is very attentive and kind. Jennifer Diggs is super amazing and will go above and beyond for her patients.','2019-03-29 20:49:14.704000','2019-03-29 20:49:14.704000',5,'Brandy McRae','https://lh5.googleusercontent.com/-CZ-eSgYNpwY/AAAAAAAAAAI/AAAAAAAAAAA/z-gE4QzBUec/c-rp-mo-br100/photo.jpg','8626688543755174284',8513),('AIe9_BEAgUIalCkcXZnurOUpP4uArLS7sCEpl8Bo1jM1ysH5Li52dV8pNujTH28PXq7BzKPhXjzJXrTIco7o0_8gAcWVRzt6txUjw4Ci5SC_XQBTGYg8V_0','This is my to go emergency center never a long wait, the staff is absolutely helpful and very informative! Doctors are really nice and self conscious about your health and symptoms\nDr Ybarra was great in treating my husband and Natalia was very nice the nurse Rollie was very gentle','2020-02-25 04:18:42.242000','2020-02-25 04:18:42.242000',5,'lizbeth bello','https://lh3.googleusercontent.com/-vuEJYapy0Uc/AAAAAAAAAAI/AAAAAAAAAAA/7_pM0KCtSpU/c-rp-mo-br100/photo.jpg','8679688254631342173',14732),('AIe9_BEAgUIalCkcXZnurOUpP4uARnYEHbWIvhDAlzlqwmLANXjnpYY_S7ivqV2FIHDblyNw3d_WLic2XNkIE4buu-dpcvBkUqiHIlgzT9tj4nkCRIechX0','This er care facility was excellent. Staff and doctors were very concerned and helpful. Made you feel like home. Waiting time was great, was helped very quickly. I would definitely recommend this ER care facility to anyone. Also, they provided you with snacks, drinks that\'s a bonus plus!!!!!','2018-03-13 20:07:01.406000','2018-03-13 20:07:01.406000',5,'Cindy C','https://lh6.googleusercontent.com/-TDkeTQatrVU/AAAAAAAAAAI/AAAAAAAAAAA/6K0HhXLq0Ew/c-rp-mo-br100/photo.jpg','17394740196501090048',4872),('AIe9_BEAgUIalCkcXZnurOUpP4uAroBJyU5f10qA_uKvCeMvasAcfBZBNRFomCGqaJ4KqHUyJsLBmXgOdPe9ypBou3bO1zurRSLuDR-oS_ghUm6IZhmqU2A','Very friendly and nurturing staff. I definitely recommend them to anyone.','2019-08-16 13:54:30.116000','2019-08-16 13:54:30.116000',5,'Rodriguez Miller','https://lh4.googleusercontent.com/-T8E4YbjuyNA/AAAAAAAAAAI/AAAAAAAAAAA/eNb7KqAVNLk/c-rp-mo-br100/photo.jpg','17898197009688164559',5581),('AIe9_BEAgUIalCkcXZnurOUpP4uARQtS9fC_qQiJQxLuzRmjCLyrWnsQn1rYhg694jF9ZWaRnyPczjpkcq1XwuGDl4J4Za96O1grRPrMbWGFZe_xJJK_xvk',NULL,'2020-07-28 02:33:55.298000','2020-07-28 02:33:55.298000',5,'Shelby Turner','https://lh6.googleusercontent.com/-WWyZP__HrWY/AAAAAAAAAAI/AAAAAAAAAAA/ydXVfxb--Ic/c-rp-mo-br100/photo.jpg','14748677429039074158',22548),('AIe9_BEAgUIalCkcXZnurOUpP4uARWehLbze59oWCCSCc13Zsz4myJggbqpxfooGHX5cFx-46jUttopygTpuC5F-7XmKAGaix4byrBNiDJDXPv2wXUCj-2c','Patricia and Alvean was so professional!! They took great care of me! Excellent service!','2019-12-28 18:03:07.880000','2019-12-28 18:03:07.880000',5,'Lisa Morgan','https://lh3.googleusercontent.com/-F_DmlDyXkNg/AAAAAAAAAAI/AAAAAAAAAAA/7S3ilbfpxks/c-rp-mo-br100/photo.jpg','16389487648212004696',2503),('AIe9_BEAgUIalCkcXZnurOUpP4uARxAJu7ytvBwsx-LVbvOCLtikJQcNSL91pHnzCaCEqhGTDOvqjK3WphJuzyubaG4wPBHncNBfGNUpOh1SYWKZAAo7msM','Great experience from the moment I walked in the receptionist, Kimberly, took care of me and any concerns I had. My nurse brad and Rad. Tech Morgan were very polite and personable. They were careful to listen to my symptoms and comforted me with knowledge and experience.','2017-02-21 14:24:09.035000','2017-02-21 14:24:09.035000',5,'Victoria Lutt','https://lh5.googleusercontent.com/-hJQipFezB0M/AAAAAAAAAAI/AAAAAAAAAAA/U7bpWGvnKDo/c-rp-mo-br100/photo.jpg','16590124370714063921',4052),('AIe9_BEAgUIalCkcXZnurOUpP4uArXEbLo198SGhVPqVBtDeZAHM-VKU5rJRtssClENTB0WGfMpJ1jrIPDatPZD_FygJDZb6pOhZPhiRajrydHvLJByLLtQ','Fast and friendly, clean facility, Nurse Teresa went above and beyond to take of us.','2019-05-21 01:40:15.272000','2019-05-21 01:40:15.272000',5,'Aracely Porras','https://lh5.googleusercontent.com/-3GfMeNzkruY/AAAAAAAAAAI/AAAAAAAAAAA/EQMoBwBa9ZU/c-rp-mo-br100/photo.jpg','6521947413723274945',8267),('AIe9_BEAgUIalCkcXZnurOUpP4uAsIrLP5cDhp6CZffpjGfA495Ku7GqBvLOGj6ZXDKjRD1Ll4x5agBb3-XpyNhNhiSdDPs8wfb5qrqCOth35goWCi4KVe8','Friendly and courteous staff. Got me in and out with no issues. Thank you Sam, Cody, JD and all the other awesome members of the SignatureCare Team.','2020-07-28 15:47:23.030000','2020-07-28 15:47:23.030000',5,'Metal Bender','https://lh4.googleusercontent.com/-9lVvckgJdvo/AAAAAAAAAAI/AAAAAAAAAAA/ahgB7Xbvv5w/c-rp-mo-br100/photo.jpg','2077061009497551125',22796),('AIe9_BEAgUIalCkcXZnurOUpP4uASjjVVIu-FuXlr8m89iKFaPvCxFZfjcWLAnQXTjwCGHGfnydrau-oYPExjBY2MZ340EvEfLuDLF78FAKvBeKqmybWdzI','The care I had during my visit was excellent from nurses especially Dr. P. Golla who was professional and very caring. I appreciated the check up call a day after my visit. I am expressing my gratitude to the entire staff and thank you.','2015-06-07 23:41:59.289000','2015-06-07 23:41:59.289000',5,'Obiajulu Onyeachonam','https://lh3.googleusercontent.com/-ypGfrgpQtRY/AAAAAAAAAAI/AAAAAAAAAAA/lmf28LshxgY/c-rp-mo-br100/photo.jpg','17394740196501090048',5297),('AIe9_BEAgUIalCkcXZnurOUpP4uASPjUHw3o3h1c90xTMzGjrlYny9gXZLJDenxqC9ys_H8746rLtBKwbntrkUWVJCj603wWZVBQPMQG3eKxM142dOVJawo','The staff were friendly, helpful. I would definitely go back if needed. Dr. Thomas, nurse Sarah G., Rad Tech Laura H., Er Tech Daniel B. Registration Tanishia W.','2019-11-20 08:29:10.220000','2019-11-20 08:29:10.220000',5,'Diana Montes','https://lh6.googleusercontent.com/-hVI_HHRjUNE/AAAAAAAAAAI/AAAAAAAAAAA/Adzhq845m6o/c-rp-mo-br100/photo.jpg','17898197009688164559',5413),('AIe9_BEAgUIalCkcXZnurOUpP4uAsUZuujPhCB4OYRpzuXYx-h3mddayJTrFog3tWw22oT4JL4Apd9_SwUfbHVt4yeCVa_bFtgfuSxbBysM_jx6I_0uTwTg','loving that place for so many reasons! never had to wait, great service, kids love to come as well! Dr Leung, Kathryn, Townsend, Amanda and Chris & Andrew were all awesome!','2020-02-26 15:07:56.149000','2020-02-26 15:07:56.149000',5,'Anne Guerrero','https://lh6.googleusercontent.com/-aNjRULpHkVI/AAAAAAAAAAI/AAAAAAAAAAA/hzhHgrWe8Dk/c-rp-mo-br100/photo.jpg','16891069708558046635',13927),('AIe9_BEAgUIalCkcXZnurOUpP4uAt4dC9pFEhub5vMDbLknLl6woDwGaGkhxkBa8iDojL4b0B5R61xJMqHOxxrngkjOC3_qBQZsjdcnY55lTLG4jtOEze70','Great staff. They were very fast and efficient!','2020-07-22 17:22:43.622000','2020-07-22 17:22:43.622000',5,'Mallory Gardner','https://lh6.googleusercontent.com/-2s6AHLXbSfA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnnoMZpdWPSDvPBeDl46iXxPve4pw/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21873),('AIe9_BEAgUIalCkcXZnurOUpP4uATc1xjKifFdkwN8bmfyBPU2jQ1OK7E6xFtDqeaCOau5qBz-No2dI1EvsDhZgC8KA8QXS0OxPQzAKnvxLHDUicHEnYeFo','They helped my husband pass a kidney stone at 4AM in the morning! Thank you Dr. Huerta, Vanessa, David, and Daniel for helping my son and me with everything during our stay!','2019-11-03 11:38:44.257000','2019-11-03 11:38:44.257000',5,'Kate Edgar','https://lh3.googleusercontent.com/-f2S4buMtwBs/AAAAAAAAAAI/AAAAAAAAAAA/v2Vi9XDvv50/c-rp-mo-br100/photo.jpg','13486358490203335051',753),('AIe9_BEAgUIalCkcXZnurOUpP4uAtDzaK7m2H_SchpHaRv8DDZ0U9LqfvrQvoOPY9xQH-u4ORZoryMUxEtfbr5cgNvjZWtFtasgONmomOtRAxJMlUJ5PhvU',NULL,'2020-01-20 19:53:59.225000','2020-01-20 19:53:59.225000',5,'Deann Clark','https://lh6.googleusercontent.com/-fJjkIwEOcWU/AAAAAAAAAAI/AAAAAAAAAAA/pC_IfzfYQDA/c-rp-mo-br100/photo.jpg','3272657195432704501',10001),('AIe9_BEAgUIalCkcXZnurOUpP4uATeHP3_rfTsNUcbQIlf7G22l8R_8yAm0iwkYVFglROKR1dFLrYAOLb7cRpE6rJa7SDt1gef5uaoED4_xx9YAIbk8kLQY','What a nice place for treatment. We moved to Texas a year a go and had not had great experience with other medical places. My wife was in a lot of pain and I searched Google for a great er. This place had five stars listed. I personally can testify that they earned it. The receptionist Jacquie got the paperwork done quickly. The doctor was prompt with all the test as if my wife was the queen of the world. The rn nurse Keira was very down to earth and comfortable to speak with. The tech Megan, very awesome person. The place might be small, but the staff has huge hearts. They treated us like family. Thank you. J.Duncan','2020-05-25 03:33:04.095000','2020-05-25 03:33:04.095000',5,'Jimmy Duncan','https://lh5.googleusercontent.com/-_6GsImqW8kw/AAAAAAAAAAI/AAAAAAAAAAA/yNqkONil7X8/c-rp-mo-br100/photo.jpg','6521947413723274945',22904),('AIe9_BEAgUIalCkcXZnurOUpP4uAtFLFHKUGQSLtlL6aLflm9LWAxKVDigNEnLDn88rLInbp5HkJqg3DmBCYNRA3sju-dHOzqtvljA1PCLN9anIkNSZakxI','On 7/31/2018 I went to SignatureCare because of symptoms that included vomiting, weakness, 3 days of diarrhea. The level of care was outstanding starting with the simple and fast check-in procedure, I was immediately sent to a room. I was asked questions by the attending nurse on duty. A doctor attended me immediately, assessed my conditions and ordered a liquid contrast MRI. I have had a colostomy and reversal but had an diverticulitis episode. The medical staff were quick to assess and provide me immediate care so I could travel to El Paso. \n\nI was required to stay overnight. The overnight room they have was not available, however, the staff was quick to provide a thicker mattress for a very comfortable overnight stay. I thoroughly trust their medical team and facility and highly recommend it for immediate care and assessment. If they can provide the appropriate health care needs, they will do so with utmost professionalism and with friendly staff even after a shift change. \n\nIt was an overall outstanding experience and I was traveling to El Paso 2 days later. If you have to go to an ER facility, don\'t think twice about going to SignatureCare. You will be thankful you started at SignatureCare. Thank you SignatureCare for the medical attention I needed, no more no less, and for the friendly, professional ER care.','2018-09-25 05:21:05.477000','2018-09-25 05:21:05.477000',5,'Norma Priscilla Chavez','https://lh3.googleusercontent.com/-O2mDYzuzRvk/AAAAAAAAAAI/AAAAAAAAAAA/TQCzjhGmHzQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4427),('AIe9_BEAgUIalCkcXZnurOUpP4uAtiluWkd20dQR2Yy8nLRjfIYKmL2TQAf1mWQTc6NhIKg8yyEfLKhfKk272pAs8hrCEJximiSYTLyD8oOLhhw0rNkTw9A','Patrica at the front desk was very nice and helpful, and Dr.Nguyen was very helpful as well and very welcoming, as nurse Jani, I do recommend this clinic.','2019-12-20 17:31:02.574000','2019-12-20 17:31:02.574000',5,'Gfggff Hggrth','https://lh3.googleusercontent.com/-AUpOohrgJfI/AAAAAAAAAAI/AAAAAAAAAAA/8kiuYszK16g/c-rp-mo-br100/photo.jpg','16389487648212004696',2527),('AIe9_BEAgUIalCkcXZnurOUpP4uAtm4aa-PQtlNxXvXvWdKuC6nBxdzLxLIfcuhpmtvTeUcG9tBml9Nc9yZ4dQvgthrAEjLMFdagOgzJylcKSI1t6g_NowA','Ms. Alvean was my nurse and she was very direct and to the point which I love ms. Tricia made sure I was looked after as soon as possible and Dr.Nguyen got to me and helped almost immediately I love this location would recommend highly','2020-03-04 17:45:15.303000','2020-03-04 17:45:15.303000',5,'Jazmine Johnson','https://lh5.googleusercontent.com/-OoVW2-Rw_BI/AAAAAAAAAAI/AAAAAAAAAAA/1IpGqVR1RIw/c-rp-mo-br100/photo.jpg','16389487648212004696',13737),('AIe9_BEAgUIalCkcXZnurOUpP4uATORK5Rad-Qjd1buGjeKvkpUJ3dDhwdKawmsx1vHNtIi17jd8PGysqX81OPWD8I0MFUDotuIfHM0w0psDuGmwKmUE71E','Fairly quickly multiple doctors nice people. Literally no wait.','2017-10-11 20:21:37.206000','2017-10-11 20:21:37.206000',5,'Hereforthedubs','https://lh3.googleusercontent.com/-bG8Hz9Di5iE/AAAAAAAAAAI/AAAAAAAAAAA/mNfqo59xFtI/c-rp-mo-br100/photo.jpg','14567670160750071148',1748),('AIe9_BEAgUIalCkcXZnurOUpP4uAtr2c0Vo_kB_vQEW8cjKk0PiTd3xZTwcBNthLMwgKEXF_nfrXNHgXaOb264aOHazNlywf56e7_A7h9ZH_4Aa7tjBXBW0',NULL,'2019-02-28 11:28:12.633000','2019-02-28 11:28:12.633000',5,'Barbara Williams','https://lh6.googleusercontent.com/-C2CfvA9PRXA/AAAAAAAAAAI/AAAAAAAAAAA/opiVHaX_AMI/c-rp-mo-br100/photo.jpg','12541597562633926366',541),('AIe9_BEAgUIalCkcXZnurOUpP4uATr5cE1tTzvcoFVI6XSCsH6xqS9EAUUbLVNOD11GpL6CxWqmFmnvJYj4eWYx-I5c6hf1cprrst9yBjTyQjLjEAGsJGEE','I had such a wonderful experience at Signature care. The staff was so attentive and helpful. Dr. Miller was great and made me feel so safe. I will definitely be recommending to my family and friends.','2019-06-04 02:24:44.329000','2019-06-04 02:24:44.329000',5,'Estela Carrillo','https://lh4.googleusercontent.com/-5mdn6jwBlQ8/AAAAAAAAAAI/AAAAAAAAAAA/4kHCduyzEKQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1316),('AIe9_BEAgUIalCkcXZnurOUpP4uAU9Lya-Lftl0yQNl-fWSHYmDZGWyYcDGcLwmV240BPYOmIbobcaNEQVQkyJ1mR1phfUVnzyq732EDHMGXn7KhaavdgRQ',NULL,'2019-04-06 23:40:34.429000','2019-04-06 23:40:34.429000',5,'DatRippedAzn','https://lh6.googleusercontent.com/-_lF7U8mrgsU/AAAAAAAAAAI/AAAAAAAAAAA/-k6R9EqeRao/c-rp-mo-br100/photo.jpg','16590124370714063921',3447),('AIe9_BEAgUIalCkcXZnurOUpP4uAUbBIoxZTq1-GsOxRuUh2k5Fi69lAaT10_dzZ1k1fbt0fLMROZHkSU0z-_lhacP7KIus2CSFt-VTmK_t_7EIyITNm96k','Staff was very friendly and showed concern.The visit was quick, and I left feeling confident with the diagnosis for my son’s shoulder! Thank you all so much!','2020-02-27 23:05:52.879000','2020-02-27 23:05:52.879000',5,'lol chop pata chops Opboy','https://lh6.googleusercontent.com/-nJiCPE7P2N8/AAAAAAAAAAI/AAAAAAAAAAA/KtIv7wa_ghs/c-rp-mo-br100/photo.jpg','3272657195432704501',14322),('AIe9_BEAgUIalCkcXZnurOUpP4uAubMZPcP3yCzr0gsEQj9rylEY0QJ6iWd7PvIVj1N9ZMQdaxs4bO1HypDEca-vSpf1Bu3bjO472xfQAJ-CkFlzIPOa74g','They were very helpful and very informative Dr. Edwards is very nice and have a great staff the nurses, Rad Tech, ER Tech and Registration made everything simple and easy. I was in and out which is the part I like the most.','2019-01-05 23:11:36.345000','2019-01-05 23:11:36.345000',5,'chelbi richardson','https://lh6.googleusercontent.com/-vKCHD-hTEGQ/AAAAAAAAAAI/AAAAAAAAAAA/2VqIbZLfU9c/c-rp-mo-br100/photo.jpg','17394740196501090048',4748),('AIe9_BEAgUIalCkcXZnurOUpP4uAUDU1ztCp5NTU_p6xOfB6-YuYuzVPXsB7-6Ab6jzIFCRH2zj5wEIKZ1TyIVSnl0zpwTzhCasKO13py7JY3GNbLWYzRPI','Great service and great people. \nMs. Keera was very helpful.','2019-06-20 14:06:56.257000','2019-06-20 14:06:56.257000',5,'Karen Villasenor','https://lh6.googleusercontent.com/-dPU2gpJq3bw/AAAAAAAAAAI/AAAAAAAAAAA/BQTk3TFAmsQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4659),('AIe9_BEAgUIalCkcXZnurOUpP4uAUqU1Yxx2jHbtc2WfDAq4HEvQuv8QtAU9SKAQSczthJI6ypG5YesgsrdDJaRd3A2psBme2XQA_cPtf_LbzCvbrlwNT5Y','I had a great experience! Maria at the front desk was so sweet and helpful. Krystal the nurse was great and got everything taken care of so fast. Jamie and Andrew were also caring and helped get everything done quickly! I would highly recommend Signature care in midland to friends and family.','2018-12-26 23:21:58.849000','2018-12-26 23:21:58.849000',5,'Sheridan Fields','https://lh6.googleusercontent.com/-FnhamhR6U4k/AAAAAAAAAAI/AAAAAAAAAAA/eLCs1XH9D20/c-rp-mo-br100/photo.jpg','13486358490203335051',1119),('AIe9_BEAgUIalCkcXZnurOUpP4uAursG-6S7EpbD7ZEPeX6tUrFQPg76fAxC-2Gz3IKRo8lADipwAx63eT039ielR8qq8WJ6DSb-Ukac1RhkHJKR7EE6xEk','I was visiting from out of town and had a medical emergency. Signature care had me feeling better within an hour! The staff, nurse Gabriel A. and Frank G from radiology were so sweet and caring. Dr. Dewaal was so patient and was ready to help. Thank you for everything!','2018-10-20 18:03:14.571000','2018-10-20 18:03:14.571000',5,'Heather Cubas','https://lh4.googleusercontent.com/-6taWfBqHq0Q/AAAAAAAAAAI/AAAAAAAAAAA/l-uM6FxPXEk/c-rp-mo-br100/photo.jpg','16891069708558046635',4412),('AIe9_BEAgUIalCkcXZnurOUpP4uAusL-rqEeSdDrGaIjMduQ2SIocjSSrdZvqM7gVG3SuIkBiARzUUqARJe0fz2S9DuPWtGnnSfcc2Sa6oi6Akyq7hMvfU8','Very helpful and polite. quick and easy process.','2020-07-20 20:15:30.344000','2020-07-20 20:15:30.344000',5,'Mark Mitchell','https://lh5.googleusercontent.com/-MpwjyMbRx_8/AAAAAAAAAAI/AAAAAAAAAAA/Pa5Qc91r03M/c-rp-mo-br100/photo.jpg','2077061009497551125',22855),('AIe9_BEAgUIalCkcXZnurOUpP4uAUsYL3gD7RsDAb12S9str1S8NQ6TXNM-I8ZQ42lzAr59uDAFrTRGKkni2a6b2nrEdhmBTPkJZ2jjVDf4NM1q928tO2OI',NULL,'2017-12-11 21:45:46.281000','2017-12-11 21:45:46.281000',5,'Scott Smith','https://lh5.googleusercontent.com/-ShJ_AdVW8JE/AAAAAAAAAAI/AAAAAAAAAAA/jjd4pQM3dJ4/c-rp-mo-br100/photo.jpg','14567670160750071148',1714),('AIe9_BEAgUIalCkcXZnurOUpP4uAUvKtdI_T4fwIphpvyv5YI6C8w1Ns825gqcQRroCLCb-rlYEC4kvj65sxKvVao_VhlCmOe5HvcQd49WU9ouc_-kEGLLA','This emergency center is so fast! And amazing staff. They actually helped me and listened to Me. Dr.Cavazos,Alvean,Thuy An & Jocelyn were great!!!!','2020-02-12 23:12:15.175000','2020-02-12 23:12:15.175000',5,'Brianna CNA','https://lh5.googleusercontent.com/-StKIbwq2BbI/AAAAAAAAAAI/AAAAAAAAAAA/QX0hMQT7vrI/c-rp-mo-br100/photo.jpg','16389487648212004696',22587),('AIe9_BEAgUIalCkcXZnurOUpP4uAuYUOlEEIs0KoAi2BvoQ7ifg-RmIq5mkZxO1F-AWkNf8IjQs-PC8skcbLCMnjubA_KHnqQ_VSiXbp826q37m159dft9c','Came in today and was very impressed with the level of care the doctors and staff offer a big shout of to Jessica, Senidia and Keira','2020-03-04 01:29:01.419000','2020-03-04 01:29:01.419000',5,'Tomas Gonzales','https://lh5.googleusercontent.com/-EXTT1PseCyQ/AAAAAAAAAAI/AAAAAAAAAAA/ksuAEayZoNI/c-rp-mo-br100/photo.jpg','6521947413723274945',14510),('AIe9_BEAgUIalCkcXZnurOUpP4uAUzh4W9swhP8qgETvDgUczm1vPo2Dz7xt1J0J2c6Gcs7CLvdFrdJ7itMwomlsFW-Y51RwNwWPEtBJZLmDaVzc_3jx_U8','My time here went fast and easy. Everyone working there at the time, Matt, Rachael, Maryann, Jessica, and Dr. Ortiz treated me with the upmost care and respect. Will be visiting again if I ever need to.','2019-08-19 18:43:21.196000','2019-08-19 18:43:21.196000',5,'Tyler Cleboski','https://lh5.googleusercontent.com/-xN2vMyB0ugw/AAAAAAAAAAI/AAAAAAAAAAA/nQxOqGZBgS8/c-rp-mo-br100/photo.jpg','17898197009688164559',5577),('AIe9_BEAgUIalCkcXZnurOUpP4uAv_5eYvuHguEUp8VmLuXs6ZcgJRGL8-6wFG3pWdXCDUYJ5k3885rqOlBvrp2u3ex4l4oeTSG7sepHAVZ1EZw98FPZ43A','Kimberly was very nice and helpful, Brad knew what he was doing. Overall great care.','2017-03-21 21:22:18.347000','2017-03-21 21:22:18.347000',5,'Phillip McKinney','https://lh4.googleusercontent.com/-Sxh29QcxTcI/AAAAAAAAAAI/AAAAAAAAAAA/iM2Tq9KdFp0/c-rp-mo-br100/photo.jpg','16590124370714063921',4026),('AIe9_BEAgUIalCkcXZnurOUpP4uAvIPorv8dtFjBb41U-fGO5UifQrR76bsWG1NF3v0Hsml1rr9Pm_oBfhwyRxuKv15boSdUMfgJygwzDlwbZejwNKos7I0','I had an excellent experience at SignatureCare today! I was greeted by Delicia who was super welcoming and then was promptly care of by Dr. Ybarra, Nurse Blake, and Son Le. Everyone was very kind, informative, and professional. I would highly recommend this place to anyone in the area!','2020-01-24 20:11:34.866000','2020-01-24 20:11:34.866000',5,'Nico Young','https://lh3.googleusercontent.com/-43DClOCq6lQ/AAAAAAAAAAI/AAAAAAAAAAA/4hy3AHLEe98/c-rp-mo-br100/photo.jpg','8679688254631342173',10336),('AIe9_BEAgUIalCkcXZnurOUpP4uAvJDGlPFYPxcDHcROoqTcBB0SQKzRjsPtIPF1HkWtEYlLiRMIGKz8oZZDRhOnpKH0xzHDagC8XVwYHh3TLVSryv8GSa4','Staff was great. Very clean and up to date. Will go again if I need to.','2020-01-21 07:55:52.893000','2020-01-21 07:55:52.893000',5,'Sharla Enlow','https://lh6.googleusercontent.com/-hcp_ulkOZqY/AAAAAAAAAAI/AAAAAAAAAAA/JfCwT8BhnTQ/c-rp-mo-br100/photo.jpg','16389487648212004696',10208),('AIe9_BEAgUIalCkcXZnurOUpP4uAvOVeCghu5z-qaFIcA6JWH-BmPMIMTkmIerKHiGGvWD4-wlja-j9lS0jKK-0fMBDz2Lt_Vp4rnHpZ_f8Yo6QxyyOU3n0','Quick, Get the job done!!! Wonderful staff','2016-06-04 16:14:44.821000','2016-06-04 16:14:44.821000',5,'Theresa Wallace','https://lh6.googleusercontent.com/-IWl4gwk6RP4/AAAAAAAAAAI/AAAAAAAAAAA/HkWZdkmtVJM/c-rp-mo-br100/photo.jpg','17394740196501090048',5243),('AIe9_BEAgUIalCkcXZnurOUpP4uAVrle6Fauxu0x3OjDZVs6U8JT0Va00XZmAU0mxKidIYZnYyq7xrsfe2tay7J81e5aPEw0E_pysc61rFFtF0qBXysGLqI',NULL,'2020-02-13 06:29:20.379000','2020-02-13 06:29:20.379000',5,'Jevon Pressley','https://lh4.googleusercontent.com/-3trhQK-9d30/AAAAAAAAAAI/AAAAAAAAAAA/sHoLC_u7mbE/c-rp-mo-br100/photo.jpg','12541597562633926366',13377),('AIe9_BEAgUIalCkcXZnurOUpP4uAvSvLTJjMm7C22bVJlMYg3V5Qb3hM-P6QtlQzs0GmqNPZ9Gb1CfE5_In2QKRK4LMSxKmw8E36tRcrLDvAWDgvGknY2hU','SignatureCare Cypress is very friendly!!! Dr. O’Omally and his team will quickly get you back on the road to a healthy life! Thanks SignatureCare','2019-06-02 04:11:22.499000','2019-06-02 04:11:22.499000',5,'Chris Graham','https://lh5.googleusercontent.com/-ohS8HO3pXlM/AAAAAAAAAAI/AAAAAAAAAAA/ZOPmbOxJxus/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEAgUIalCkcXZnurOUpP4uAvv7kyYlaBHpdq9Dz8U5OypNt1xKPh9JiYqXXvQb3lXLC2r_iAWASetfjTsGA_1Gk5NCgXIwWbO4GgLB4B592IDFwC6E','Adam, Andrew, Dr. DeWaal, and Christina are very friendly and did a good job of making me feel comfortable and taken care of!','2019-11-16 23:05:50.268000','2019-11-16 23:05:50.268000',5,'Kirsten Novinger','https://lh4.googleusercontent.com/-bRHGdWIlPPY/AAAAAAAAAAI/AAAAAAAAAAA/Zy45vrFwhFw/c-rp-mo-br100/photo.jpg','16891069708558046635',4149),('AIe9_BEAgUIalCkcXZnurOUpP4uAw_wmQxqKC5yeZvFkZtOVtlVXoxlcXQfXlHD7UACp4YXCf3Ak4FO2f69sOst5ZzK0i6GFHUeWHoQAlgP1-Bw96wrFhH4','I came in after I messed up my finger over the weekend & was more than attended and comforted by Anthony (RN), Dr. Vakey, Morgan (X-Rays) and Dyvalese (Reg). I couldn\'t have gone anywhere else to get better, faster care!','2018-11-19 22:53:11.549000','2018-11-19 22:53:11.549000',5,'Anne Choate','https://lh3.googleusercontent.com/-DOfRrKdXowQ/AAAAAAAAAAI/AAAAAAAAAAA/DQ3kFF3L0aY/c-rp-mo-br100/photo.jpg','16590124370714063921',3642),('AIe9_BEAgUIalCkcXZnurOUpP4uAW8BvCtDAyfgB4_sMEFRyPJA899SvE43ZjRKER7U9HeY4T7btFHPO_DIeSN-BJ09A8rtNI06bwwqesBRS11mJUJeKi9o',NULL,'2019-01-28 20:26:41.370000','2019-01-28 20:26:41.370000',5,'Desha Ball','https://lh3.googleusercontent.com/-On5L9JomZew/AAAAAAAAAAI/AAAAAAAAAAA/PhS28lX297Q/c-rp-mo-br100/photo.jpg','14904078213800803294',2178),('AIe9_BEAgUIalCkcXZnurOUpP4uAwiP_hlcZDj_4Cwxnx7VMEME7rlHWZW1yw72IV1pk1zykfoiaTSHqZu6uvfVb0xEld4TbTIsTgLL3tLDvEDfMoMQtdAw','The facility was clean, the staff was very attentive, timing also excellent. Overall, for an ER thumbs up!','2019-05-28 23:08:33.173000','2019-05-28 23:08:33.173000',5,'Sunny B','https://lh6.googleusercontent.com/-yp4HhU6ztoI/AAAAAAAAAAI/AAAAAAAAAAA/dMb3w2y3R-I/c-rp-mo-br100/photo.jpg','2694018788013845459',6143),('AIe9_BEAgUIalCkcXZnurOUpP4uAwMuHbT4bQcW3a8rV_Bzo04N2LSBkbrMopQhilBGiLYScuDVtE-g85ND2WkP1IvEdqM7iGp592xqErpr-4oOGvp8F5qc','The people here were so nice definitely the one at the counter in all black','2019-05-11 16:04:05.475000','2019-05-11 16:04:05.475000',5,'yc. Dehboo','https://lh6.googleusercontent.com/-ciKvUxfKN_Q/AAAAAAAAAAI/AAAAAAAAAAA/EPd1B--amVY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEAgUIalCkcXZnurOUpP4uAwmumhBjiBr-fT7KrnQxzTeQKBv6_6O6uFVgAY7XKMpS6BkstWowko2ZtsTO7CM9Ugc0YcOVVau7sevctw3fbORYZvsg','Had Excellent experience everybody was nice and they took care of me very quickly Dr. Anderson ,Alvean.A nurse,Tricia ,B ,Radiology And Jesus-registration Thank you all very much','2019-08-16 13:31:04.275000','2019-08-16 13:31:04.275000',5,'EFRAIN QUINTERO','https://lh6.googleusercontent.com/--_JMA0lvxMM/AAAAAAAAAAI/AAAAAAAAAAA/bpgq9p9nLDw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEAgUIalCkcXZnurOUpP4uAWO1u2C7VCtRm83-SRcGeiKB0eNkju9GSrAXQE-HaktmlBq7GHArinQpES6up2WQUrfA13Jx4uekFG04aOezMLP0nCuU','Very nice and friendly staff. We have had nothing but the best service there. Highly recommend!','2020-01-06 14:31:44.002000','2020-01-06 14:31:44.002000',5,'Nicole Burd','https://lh3.googleusercontent.com/-fcXAGttpIkA/AAAAAAAAAAI/AAAAAAAAAAA/I9oNb1Hc2HY/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',9414),('AIe9_BEAgUIalCkcXZnurOUpP4uAwWoe8PMEGuh6UyW50DHs7-Cj2rliii_46laTlNwYmUllMA66nIYklvZFDRh9BFqK59HFCrnNXQNlMvZ0T46hFze8jg0','The office staff and nurses here were amazing and Dr Haynes was through and explained everything with great bedside manner. Would recommend. There was no wait to be seen.','2020-05-23 19:27:44.713000','2020-05-23 19:27:44.713000',5,'Cody Winnett','https://lh4.googleusercontent.com/-NVof3t-nufs/AAAAAAAAAAI/AAAAAAAAAAA/sKkoNvh2ybY/c-rp-mo-br100/photo.jpg','14748677429039074158',21784),('AIe9_BEAgUIalCkcXZnurOUpP4uAWzkzi50b-OJjIFgropVVFEWPbHIAZmxeU6NdcMlE0AA33ejQvGfxFj3d4x291Z2o7xmYu-rM4rbXWfeOq-riCxqaZbc','I was treated with respect and was out quickly with the help of Dee Saldivar 🙂','2019-01-29 23:32:10.225000','2019-01-29 23:32:10.225000',5,'Beatriz Cienfuegos','https://lh5.googleusercontent.com/-3A_eNLMT6Kg/AAAAAAAAAAI/AAAAAAAAAAA/oFJz6vvX4mg/c-rp-mo-br100/photo.jpg','3511292162159714121',7439),('AIe9_BEAgUIalCkcXZnurOUpP4uAxg5bLpNLfQNhECeUwBeRnick5qRM71pv9AZyQx86T7R5Z-3Mii3uH-OPRrAu9qCDVciJJA6Zjl8I1VTwqKXxW72iqSA','Thank you to Sita and Lisa in registration for being kind and greeting me while I was in pain. Thank you for Dr.Datta and Dr.Dendy for helping me and getting me into the doctor for my follow up. Thank you to Jose RN, Krystal RN and Carolyn and Jamie for being so kind and helpful. If you ever need a place to go this is the best place in town!','2019-07-08 15:53:12.629000','2019-07-08 15:53:12.629000',5,'Allison Lemon','https://lh3.googleusercontent.com/-d9dHfPmmn58/AAAAAAAAAAI/AAAAAAAAAAA/vESph1RkkV8/c-rp-mo-br100/photo.jpg','13486358490203335051',898),('AIe9_BEAgUIalCkcXZnurOUpP4uAXLBysWavLDZQ0_nzpu8dCkLDiiH0IK1uCddShRpQLufBpix-8x9MAUdfTy_4ohzaaor4wFoHMPaSNuEcwCa9t4smcwk','Be ready for wait 5 hrs to get the covid-19 Test.\n At least !!!','2020-06-11 23:18:16.135000','2020-06-11 23:18:16.135000',1,'Jorge Daniel','https://lh5.googleusercontent.com/-BJ4S_cs4ZKU/AAAAAAAAAAI/AAAAAAAAAAA/woZTuYum9wM/c-rp-mo-br100/photo.jpg','8679688254631342173',22254),('AIe9_BEAgUIalCkcXZnurOUpP4uAxnfMOjD6dWP16ya9O4U55_1Vh1Utx-2SGYeNrrlARfimysptjvgZ7To0l11KNHmDM82lpuCSry-jrG--SZpgWy4hr7c','Absolutely sensational service… Not a fan of being sick but if I do get sick again I will be returning to this office. They took care of me in a very timely manner. I was in and out, and even before my medication I feel 10 times better. Shout out to Dyveliz, Brad, JR, Morgan & Dr. Troy were phenomenal!!!!!','2017-08-23 21:08:48.695000','2017-08-23 21:08:48.695000',5,'Torian Fields','https://lh4.googleusercontent.com/-TewX0a1s5p0/AAAAAAAAAAI/AAAAAAAAAAA/Fvo4Ul57oIA/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3948),('AIe9_BEAgUIalCkcXZnurOUpP4uAxq2g46RoXGWUM3Pu3m_bhZ2Z4olNWCxIM8RdUYeh_-UrbXA5_GhprYmvwDw0d2AWjBnHZDZFJ_f3nOTinSIlakXhW-o','Love the staff at this location! Very knowledgeable, patient and kind! Thank you Chunah, Norma, Dr. Faig, Carletta and Dee! Will be back when need be!','2019-08-14 16:35:20.103000','2019-08-14 16:35:20.103000',5,'Melissa Koy','https://lh4.googleusercontent.com/-jY-JSQ4RYSA/AAAAAAAAAAI/AAAAAAAAAAA/ElhYSUaGZec/c-rp-mo-br100/photo.jpg','3511292162159714121',7208),('AIe9_BEAgUIalCkcXZnurOUpP4uAXuqVS44Is200LYYvqieiC5h4sH9I4mcubVNaBYVugHvN51ybtopvgZoS9u2k0Lq0HH3aDBnEjKJgVadr5X-TaRDq82A','Dr Straface was amazing. She took the time to sit down with me and listen to my concerns and you could actually tell she cared about my well being. She made a bad day much better and got me on the path to recovery very quickly. This was the best emergency room visit I’ve ever had to make.','2020-07-18 21:11:03.881000','2020-07-18 21:11:03.881000',5,'sum 88','https://lh6.googleusercontent.com/-xpXv5O1wcY4/AAAAAAAAAAI/AAAAAAAAAAA/GWB4y443Bxw/c-rp-mo-br100/photo.jpg','14748677429039074158',21722),('AIe9_BEAgUIalCkcXZnurOUpP4uAxv9SvqqreGjnU_XGXTXnZ1proj613YhsxPK0MS6E6L_vPps5O6_fEr2xSY2-YkySDlJn4l65_0TzffpyF62NH5WfIqU','We visited SignatureCare ER late at night for my five year old son. Considering the situation, we had a great experience and I was so impressed by the care my son received. They were patient with my son and made him feel comfortable throughout the entire process. Every person we encountered from the front desk, to the nurse, the X-ray tech, to the Doctor were amazing. They were kind, professional and efficient. I give them five thumbs up and they are now at the top of my list for emergency care.','2019-06-11 22:13:01.744000','2019-06-11 22:13:01.744000',5,'paige moore','https://lh4.googleusercontent.com/-D4fTewW4rDU/AAAAAAAAAAI/AAAAAAAAAAA/PU34iLWzmLo/c-rp-mo-br100/photo.jpg','16891069708558046635',4255),('AIe9_BEAgUIalCkcXZnurOUpP4uAY2U2xMbENW46rbxnVp5jr-LC8CYOzWTAKZQZb0EEapoKCmiTuZsv0GZn3W7W-k1jiLQuIh0Sv9_0I5dhKfe6diZiRa8','Quick and accommodating. Dr Angela is great!','2020-07-19 14:38:07.292000','2020-07-19 14:38:07.292000',5,'Mindy Ham','https://lh3.googleusercontent.com/a-/AOh14Ghhk9-UXJUsk66LFFRfNMZ9lYHxYFWFqNNjDX3Q=c0x00000000-cc-rp','8626688543755174284',22236),('AIe9_BEAgUIalCkcXZnurOUpP4uAy4SosD2jY-o8ml8KWE92dwa9OvXWD6Bk3Ax2rZ9B5L6YwhyAhYTHUQ6Gcce9oNawzlf5hjeLwUksBKKfy8QOQrYfi-Q','This place is awesome and very convenient. Dr. Das was great and very informative with any questions I had. If needed I will go back.','2020-08-14 04:24:15.617000','2020-08-14 04:24:15.617000',5,'Michelle Sosa','https://lh3.googleusercontent.com/a-/AOh14Ggm4_UbsGBHyAu1CgWA23o2Pfu9figS8SRm1ZVxGw=c0x00000000-cc-rp','14748677429039074158',23021),('AIe9_BEAgUIalCkcXZnurOUpP4uAyF6ALAbtk3uWsE5SRd2gQVPQjX3wxuUvnw8bKpoGqXUUCzR7vMKO9lFgOZkiLK6RvAyhcI8cBD2tpAjlDgBqtSgMSHU','I’ve been here twice and every time I come they always give me incredible service. Nurse: Churiah and Agnes were so great and patient with all my questions. The techs as well. Shay, Lisa, Dion and Keaire are AMAZING!!','2018-10-26 00:55:39.218000','2018-10-26 00:55:39.218000',5,'Carlos A. Rodriguez','https://lh3.googleusercontent.com/-RqixPVEGbTo/AAAAAAAAAAI/AAAAAAAAAAA/Qm-ni0U1vDU/c-rp-mo-br100/photo.jpg','3511292162159714121',7567),('AIe9_BEAgUIalCkcXZnurOUpP4uAYQ2SPloQbafRURp9YprwdqpBbwG_fEkeMWE2iKCZJGvHBMBR9yi4AflCFfhGjw4wzhOlYdvAp3oJsICBp4f_qS7NMC0',NULL,'2019-05-08 12:02:07.476000','2019-05-08 12:02:07.476000',5,'Lauren Beal','https://lh6.googleusercontent.com/-hWwl0ZNmWgI/AAAAAAAAAAI/AAAAAAAAAAA/WRZDtMz0Cxg/c-rp-mo-br100/photo.jpg','16590124370714063921',3392),('AIe9_BEAgUIalCkcXZnurOUpP4uAYqLfSvwiG5MfAyM-AIM1IxySXDIEpVFCytgF_9WK_10sNgglY-msshEjl0TJe5L_wJ7nx5zVXuIe0VlTlQR-XnVOkeQ','Went to this location to get a COVID test. I had to wait several hours, which was long and not fun, but once I got back there Alex took care of me and was incredibly kind! I have a phobia against things being in my nose and when I told her she was very gentle and kind despite what seemed to be a very long day for them! Also, I was negative! Overall, very impressed with their staff!','2020-07-05 01:35:30.156000','2020-07-05 01:35:30.156000',5,'Ally Pigmon','https://lh4.googleusercontent.com/-Zp7MqqB71Vs/AAAAAAAAAAI/AAAAAAAAAAA/gg3Mz9D_Gw0/c-rp-mo-br100/photo.jpg','14748677429039074158',21384),('AIe9_BEAgUIalCkcXZnurOUpP4uAyTYLTL6_O19oORB0fLzPCN-45aLFrkPEywoLCcIYHunFZA2DbEXnxc_x3yM4l8fblNKVv-edVbrQS0MDNscUTrClZPg','The team at SignatureCare EC took great care of me. Dr. Ybarra gave me all my options and answered all of my questions. Very caring group, the even followed up to see how I was doing after the visit.\n\nI don\'t go to ER\'s a lot, but when I do, I will be going to SignatureCare Emergency Center','2019-12-27 05:57:13.424000','2019-12-27 05:57:13.424000',5,'Stephen Estrada','https://lh4.googleusercontent.com/-kfOgl4hBMx4/AAAAAAAAAAI/AAAAAAAAAAA/bHQ4MMnO5-s/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5322),('AIe9_BEAgUIalCkcXZnurOUpP4uAyUOp8cILPjRiV5hIwk5Q6kIswzBxJv2HxAzcHTHQVsctR2KYHdzkXC_lI72zfqVBNtsFm2fqQwCXg40Yp06Ac4Vp2Bo','My infant son was vomiting excessively and they took us in right away. 0 wait time. Staff was Dr. Harjai, Alvean, Trae, Elida, and Brian. Thanks for being so quick and to the point. Also, this is a very clean and nice facility. The lobby is very inviting.','2019-10-16 16:34:51.528000','2019-10-16 16:34:51.528000',5,'Cindy Argueta','https://lh4.googleusercontent.com/-r3xm-dpWla8/AAAAAAAAAAI/AAAAAAAAAAA/lBbXCBfQn6E/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2816),('AIe9_BEAgUIalCkcXZnurOUpP4uAyYUcU9wntKbEPcoD02AM4njacs1ROII4adihoHxfg_Bb3TWU81HWeuVxQ2ZjsA56bii-leWfGelYImanrfYwgoqofjI','Dr Huerta took the time to discuss my care as Krystal, Andrew, & Aaron cared for me each especially professional & caring. It was nice being greeted as I walked by maria D G! Would definitely recommend this facility.','2019-04-13 17:44:11.123000','2019-04-13 17:44:11.123000',5,'Danny Sperl','https://lh6.googleusercontent.com/-aKcVWHpvpOI/AAAAAAAAAAI/AAAAAAAAAAA/kpL-1ihch44/c-rp-mo-br100/photo.jpg','13486358490203335051',1038),('AIe9_BEAgUIalCkcXZnurOUpP4uAZE24c6QhIrRNgOOgcoadw0ZUZmVd_dVIw5cTSKOF1onSPnwOyOyfq1lJVNk0dPXGd286KuoNDRDmTLfE3EX0ddn0gPs','Dr Miller RN.Meredith..Rico..Bryan..Darnisha...they are all a great staff..Glad I came they are the #Goats..very professional and caring😍😍','2018-07-28 02:06:35.935000','2018-07-28 02:06:35.935000',5,'Miriam Brown','https://lh5.googleusercontent.com/-gFKO2M6x1S4/AAAAAAAAAAI/AAAAAAAAAAA/TtAa9htLDLs/c-rp-mo-br100/photo.jpg','14567670160750071148',1582),('AIe9_BEAgUIalCkcXZnurOUpP4uAZgovmSGPhatB7Pz25ULhAP7G-qS8AIEPIaaB-ypdJcfGAVzg9EVLj16OACbfpSBf-tCxKe6rBK8XtmL5QXxkcF0XelI','This was a great & fast experience. Will always come here for emergencies. No wait to get a room, great doctors, great nurses, & snacks.','2019-06-20 18:55:32.816000','2019-06-20 18:55:32.816000',5,'Katrena Marsh','https://lh4.googleusercontent.com/-uwBD40DolNk/AAAAAAAAAAI/AAAAAAAAAAA/pMI_ZqPD7lo/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1292),('AIe9_BEAgUIalCkcXZnurOUpP4uAzhBY1h2KIZApBj2Ooqdv1lY1OwwgKnUiKS2nYkxXiVFHGXoWCqXempagboxF3Sf6PD1EI6h1hWfccuyflynWDk5h1Ys','Big thanks to the entire team at SignatureCare Emergency Center! Dr. Grinblatas, Veronica , Dawn, Norma, and Jaqueline all made me feel very comfortable and well taken care of. A++','2020-02-18 18:12:55.637000','2020-02-18 18:12:55.637000',5,'Logan Keslar','https://lh6.googleusercontent.com/-Tby5QnaAaNI/AAAAAAAAAAI/AAAAAAAAAAA/FrhQNYm6bbo/c-rp-mo-br100/photo.jpg','3511292162159714121',14411),('AIe9_BEAgUIalCkcXZnurOUpP4uAZITd-I2NtvLqv66qQI-YMOR5Uk6hwXjxvt4-OLnblRMvylxpF_C8tILlS8xRyeiEzFXdH-9nN5VIELl8ktf-Y7WqRT8','Quick and great service!','2020-01-09 09:57:35.788000','2020-01-09 09:57:35.788000',5,'Karson Brown','https://lh3.googleusercontent.com/-c1mBPAtDyiQ/AAAAAAAAAAI/AAAAAAAAAAA/ETVPufjFm8M/c-rp-mo-br100/photo.jpg','3272657195432704501',9520),('AIe9_BEAgUIalCkcXZnurOUpP4uAZMR6c2lLilqrLn4UNTsP4NKd7Zc0cf5PaZld7hodxBUnc_KB_wFQ92xJq3qUhkXC7JcLu2OXZfcHDULEmqJW6UZfAeM','By far the best ER experience that I’ve had since Washington state. Highly recommend them for any situation you need. Very kind and caring and knowledgeable.','2019-05-15 02:33:41.902000','2019-05-15 02:33:41.902000',5,'victoria Hinen','https://lh5.googleusercontent.com/-GoTJAYtB4Nk/AAAAAAAAAAI/AAAAAAAAAAA/srHKDjKNAhA/c-rp-mo-br100/photo.jpg','2694018788013845459',6156),('AIe9_BEAgUIalCkcXZnurOUpP4uAzwTizKi33pyU26esESLezYPbCCsN_pqlu4J8M9P4IsLY-J08ACDulWSG9EGhYb8dS3_D9b4C6mCr_E469ukiO_8BemU','Best place ever, Ashley was awsome when she register us, she was super nice, and took care of us from the beginning, the nurses sarah and Fatima and Doctor Thomas was great...','2019-10-28 04:27:44.947000','2019-10-28 04:27:44.947000',5,'Hazel Alvarado','https://lh4.googleusercontent.com/-6dz86ufaHPo/AAAAAAAAAAI/AAAAAAAAAAA/iokCYFaP87A/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5472),('AIe9_BEAgUIalCkcXZnurOUpP4uAZXHv_JtueX3B4RPCxm0n53NLU8bvd1V0RL15JuZ1j8IILZyj5HIyYCWwgJLVoP0OWIjedIz8UoQAqpNZfGSd7VkUvjc','We just came back from this emergency center and it was a wonderful experience. I felt at ease with the staff being very caring and attentive. Highly recommend.','2019-06-15 06:10:02.075000','2019-06-15 06:10:02.075000',5,'Imelda Juarez','https://lh3.googleusercontent.com/-YO15_vWSnPQ/AAAAAAAAAAI/AAAAAAAAAAA/89__egfkyG8/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEAnPPiIhKHDN-RMyOGcF_t46qmnoGSbJgy7k6l8NpIHddP9_I_z7KapW2J-0tknWT7i6GXMbk9sxME10tTRYNHfY1_NlDNdpENpoDTTIQqJ51K4hc','The service was very quick or time efficient. I did not have to wait too long in order to get help. The nurses and doctor’s in a comforting tone. They offered plenty of solutions to ease to pain. Even though I was diagnosed with an illness that they had not experienced, they still seemed to understand the pain that I was going through. The area was super clean and relaxing the whole time. I would most certainly recommend this to people I know.','2019-01-24 02:37:57.378000','2019-01-24 02:37:57.378000',5,'Justin Chukwujekwu','https://lh4.googleusercontent.com/-DN6ckzLWAm0/AAAAAAAAAAI/AAAAAAAAAAA/TwCoDz5AycE/c-rp-mo-br100/photo.jpg','8918455867446117794',9191),('AIe9_BEAnPPiIhKHDN-RMyOGcF_tao3dN28O5jS0yHT9r7zhfr6piSibARS_3fefQ8hLrGBGo43R6wFXHwu7D-DNVh06Gj5WtoKdfutvS_4ElO32-wE_5Vk','Signature Care Emergency Room was simply amazing. I ended up there with my daughter needing assistance twice in one week -- once during the day for a migraine and two nights later for the stomach flue. Both times we were helped immediately and it was good, solid assistance. The second visit, in the middle of the night Ashley met us at the registration desk with a very friendly smile and she was instantly all about getting us inside as quickly as possible. She did too! She was caring but extremely focused and boy did I appreciate that. Dr. Wang was very compassionate and articulate and he immediately knew what the issue was. He talked person to person to my daughter. Dawn his Nurse was so sweet and she stayed calm so we calmed down. The Copperfield ER staff is truly amazing and are a well trained, extremely efficient group. I will go there every single time I have a choice for any future medical emergencies with confidence.','2019-04-29 00:53:59.545000','2019-04-29 00:53:59.545000',5,'Tricia Campbell','https://lh6.googleusercontent.com/-7bw8brbn_pM/AAAAAAAAAAI/AAAAAAAAAAA/OWewFhXXiK8/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5757),('AIe9_BEBcVOWRCE5ZPt6avotYlG-2g34VPjS9MdwHIKjcEedjO1CdJfrauldwFchZTPK2ogFq0XShl2wN9x7A-pmR4qXlHd3-U9z1BuLzozhTdyuyIgeCzI','Very good not a long wait, very nice and clean, emergency room thatlooks like an urgent care, but even better, why do i say this because the next day i received a call from a nurse just to make sure i was ok and never in my life have i gotten that it wasn\'t to say pay us it was really true kindness, thanks again!','2017-07-22 20:23:28.783000','2017-07-22 20:23:28.783000',5,'Jennifer Martinez','https://lh3.googleusercontent.com/-b7hRVv1xQkY/AAAAAAAAAAI/AAAAAAAAAAA/FkPAk99HPx8/c-rp-mo-br100/photo.jpg','17394740196501090048',5015),('AIe9_BEBcVOWRCE5ZPt6avotYlG-5tXDhchwEMtispmXvO-xcrKOrtqFmk5rlZWEkxv-yFlm2lwwr0FhhhllM6k7dsEMLlf5cstjD7N458R9-Spk_uFfsBI',NULL,'2020-02-08 04:54:52.251000','2020-02-08 04:54:52.251000',5,'EliteRoyal GroupHouston','https://lh5.googleusercontent.com/-sNoKTA3AHzs/AAAAAAAAAAI/AAAAAAAAAAA/a-aY0oYdwLQ/c-rp-mo-br100/photo.jpg','17394740196501090048',14025),('AIe9_BEbD7s9WogGGoUKrs9ntcOgzPr917PrAlQY1WxCN-pJmfJ0R8Eop7VKIoEdIelE4MCvtxCHp63XeB-Bi9iICF8FFSr4jrb-Nl8gueFG9lJjM4q0_CE',NULL,'2019-09-08 21:39:09.222000','2019-09-08 21:39:09.222000',3,'Gina Rodriguez','https://lh3.googleusercontent.com/-Xqk32IVYWuE/AAAAAAAAAAI/AAAAAAAAAAA/jNALCGzdQrA/c-rp-mo-br100/photo.jpg','16389487648212004696',2937),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4s-DgMGNVnKb5IIEtnSAM7RpR5xClXM1gu0swGKGKMErnBj8AK0UZP4a8fsIpcmlG-cj7tFe_56ydQgyGVOicnXr9-IWo','The RN Anthony was very attentive and friendly. Natalie the Tech was very welcoming and friendly. They were so fast the doctor came in right away.','2018-08-22 21:41:17.978000','2018-08-22 21:41:17.978000',5,'Caroline Grace','https://lh3.googleusercontent.com/-F_U6XKoEBkI/AAAAAAAAAAI/AAAAAAAAAAA/xqyTktWOJmc/c-rp-mo-br100/photo.jpg','16590124370714063921',3770),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4s-n6xUpNB6ucZhsOv-B8en4OafaCwQsYHUJm122ABl39fcd8KnQHrmSvyupv697CVonbb3Wwqo_SIYRmRnhzMpySvd_0','Amy was at the front desk and was amazing! My COBRA wasn’t showing up thanks to my awful HR person. I was freaking out because I read bad reviews of other places that run up huge bills. That was not the case here at all. Amy assured me that any charges would be transparent (and they were) and upfront. All the staff were super nice, treatment was quick and Dr Souman has an amazing bedside manner and was so sweet and went over everything with me and was very detailed and interested in providing excellent care. Olivia was my tech and Jessica and Agnes were my nurses. Again can’t say enough good things about the staff here. I highly recommend','2019-07-07 12:23:06.794000','2019-07-07 12:23:06.794000',5,'Opt Out','https://lh5.googleusercontent.com/-U0-CU3GMtLg/AAAAAAAAAAI/AAAAAAAAAAA/48RC-8hTxfU/c-rp-mo-br100/photo.jpg','3511292162159714121',7267),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4s2qPT6HIc6OSwAxjuSNC9qDsDguzonGiwy2FqGAPhQVrA6bdrIlxrZqaG9yuOJHCrRptuP4IvyH0xYi5PTzVd_xlrTAM','I had a very good experience here! Came in due to breathing issues and someone seen me right away!. Very professional!','2019-02-26 23:41:40.533000','2019-02-26 23:41:40.533000',5,'Sequoya Wison','https://lh3.googleusercontent.com/-DNNt8Ttq8Aw/AAAAAAAAAAI/AAAAAAAAAAA/nrFApJ6LumA/c-rp-mo-br100/photo.jpg','3272657195432704501',7002),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4s4Ww5IZzjQnG9U5Y7osrwIgOQ5SPIgbDHJNbxJ1cTxbL0Qr5yikyX0aXIdOKcdJmtKt2_7l7hcFpUg-_8ESed2-_98lU','I brought my husband months ago with the flu the service was fast and very professional and successful. my recommendation is to have bilingual staff.','2020-03-13 22:44:17.584000','2020-03-13 22:44:17.584000',5,'Sasha Rivera','https://lh6.googleusercontent.com/-a3D-uiJA3lE/AAAAAAAAAAI/AAAAAAAAAAA/QS-N2bhJQeY/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',20903),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4s6JrasO7cra1HaB7JcIM4BdfUkmbLB6OwaOvMEwXpLKWlGBfrQYU_cHErfHbPdoGPFcsfEZSqmU2ZAwMC2bKfT-PSVRA',NULL,'2020-07-18 19:31:06.432000','2020-07-18 19:31:06.432000',5,'Arayuvit Fernandez','https://lh6.googleusercontent.com/--pBxv0piziQ/AAAAAAAAAAI/AAAAAAAAAAA/GLa2ZeC6_tQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21730),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sAnn2s72T2wpajCtQXzsex3Z-QPqy7X_Inc0Fx5tsbp4VdtLj88tqHCPccz22rsb7K_AJoFuHpi5k9b9w0BIgatywTCE','Came here about a month ago and they were awesome. They’re quick, attentive and explain everything they’re doing. This morning I brought my brother in law in and he was very happy. They got him in a room quick and helped him with his pain. Savanna, Jaime, Maria and Dr.Huerta we’re really awesome!','2019-05-22 15:07:58.273000','2019-05-22 15:07:58.273000',5,'Lupita Correa','https://lh4.googleusercontent.com/-1KfjuVZ6jFo/AAAAAAAAAAI/AAAAAAAAAAA/UD5rHU0muxw/c-rp-mo-br100/photo.jpg','13486358490203335051',999),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sBG03UJvjXBQe-jR_6yutWjEI-DCJhIjHz_257TitwmX2-rHEJvD1U71PoZBFSMmqRkCeCjiFHf_POVG4jAgcp95JkTc','We were greeted by Rebecca, with wonderful pace and ease. Stephanie helped us to our rooms. Gabe helped us out alot with calming down. Dr. Bare, diagnosed us and helped us through our predicament quickly and methodically.','2020-01-11 05:57:03.409000','2020-01-11 05:57:03.409000',5,'Joshua M M','https://lh4.googleusercontent.com/-jcpi5qjr37I/AAAAAAAAAAI/AAAAAAAAAAA/KCBJDvc3iPg/c-rp-mo-br100/photo.jpg','16590124370714063921',9494),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sdCRDAvOR8Gv9OlZE4XSp_Ul6bDEM7QivNnBgF57VzaWhyHloUtL-DfFYD0STpgXUX_8j-I_smpExfk1VSK3w1S3eLQ0','Very Quick response times and incredible bedside manner. Once all was said and done the billing department was willing to work with me to make sure I could afford the treatment. I definitely recommend this clinic!','2017-05-05 18:30:15.114000','2017-05-05 18:30:15.114000',5,'Sergio Diaz','https://lh4.googleusercontent.com/-Z2zfC7SB_Xs/AAAAAAAAAAI/AAAAAAAAAAA/2-1V4MG6JjI/c-rp-mo-br100/photo.jpg','17898197009688164559',5940),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sG-lk0dbX8XXzIJ4VZRoZIuYNZaPgP2l-UTH54petqqP51D5ox9j8gUYvSDdK2XzHBc_rQjz9YFn2kdZpIEbI1aEwUJ0','This a great place!! The level of service and attention to detail is an example, other places should follow.\n\nThanks to Rommel, Jonathan, Adolfo and Singla for taking good care of us.','2020-02-05 01:22:14.308000','2020-02-05 01:22:14.308000',5,'Abe Massuttier','https://lh3.googleusercontent.com/-YfM9ONzQQaI/AAAAAAAAAAI/AAAAAAAAAAA/C1F1OhN8lPg/c-rp-mo-br100/photo.jpg','14904078213800803294',13608),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4shS746Q1Cn1FnBQ7J_NQqZfnTpxLa5anaQWkGvWJUp9k_QbdOJNjgVnPCpiRs6xj8XNyuePegAyr5jW-9ixXViMnFJ64','Thank you! Leslie,Jaslyn,Eve, Churiah, & Dr. Pham for making me feel comfortable, I highly recommend Signature Care Emergency Center 1007 Westheimer Houston, TX.','2020-07-09 15:30:32.019000','2020-07-09 15:30:32.019000',5,'Eva Ybarra','https://lh4.googleusercontent.com/-rE7qFojvX2o/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl90KGy64d6UQdpE9BTMaimQby8-w/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22176),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4siMpdiP-Jc_U95ad5FXc9AzTg6NMAnJRGisFDcrPpeNFytogCN2kMTGgy6_8PjXTg63hqwkexSzY-nmPbhDbUSGqih5c',NULL,'2020-07-30 02:36:22.157000','2020-07-30 02:36:22.157000',5,'Thomas Clyburn','https://lh3.googleusercontent.com/-AN7pTj4FK-A/AAAAAAAAAAI/AAAAAAAAAAA/0Hwza9Yz-Bc/c-rp-mo-br100/photo.jpg','2077061009497551125',22975),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sJ1OBZf0MiVXtLZc18bH6H8spHrrhxTUcgU8ACaZEv8dIN2fusFTQdZontp3pWQWpz5AMyhfGwRNvf-Dmv04x-pZbgMc','Wow! Results were quick and easy. Checking in was a breeze , we got helped by Okarys who was able to translate for me! She was caring and showed interest in making sure I knew what to expect before getting seen. She was sweet and very patient with us!!! While there staff made sure to check up on us. Place was following guidelines and was clean.','2020-07-10 22:37:55.787000','2020-07-10 22:37:55.787000',5,'Nitzya Mendez Medrano','https://lh3.googleusercontent.com/a-/AOh14GhTF9lJnGe0eTdeqvqyryD-QcmUfIbJE7jhLsM=c0x00000000-cc-rp','14567670160750071148',21594),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4slYzUAwWrBciTcN_DLaYmumj1XXowiRIaMpTuFsO3-4CinhCfOqmXQj2K9lfW5YcKWxxxAHw1zeeeDwB-4_aSis2kEpk',NULL,'2017-09-04 02:52:29.943000','2017-09-04 02:52:29.943000',5,'Tierra','https://lh5.googleusercontent.com/-AxdbrHG_4RI/AAAAAAAAAAI/AAAAAAAAAAA/50tI5T9WKO8/c-rp-mo-br100/photo.jpg','17394740196501090048',4984),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sQttqeQlRlfBcnawVyCEH3zyNES8-rZwIElMe6e3dvXiLiW8hhSbQqjQd2l3ry6d5zwLMbPijURevcxz_d4ipqvQaviA','Wonderful experience! I came here on a Friday morning in severe pain with a sore and swollen throat. What an urgent care clinic wrote off as allergies the morning before, had become about 4 times worse. Once swallowing and talking became excruciating, I knew I had to go somewhere else. I arrived to this office with no wait and the staff was nothing but accommodating. My pain was managed immediately, followed by a steroid shot. A CT scan was done and all results were read and explained by Dr. Elsbecker. All of this was done in about two hours. I walked out feeling immensely better, able to swallow and talk again, and comforted knowing they actually cared about my pain and didn’t make me feel crazy or written off. I’m still on the mend but I would recommend this ER facility to everyone. The facility is very nice and the rooms are private and comforting. I forgot to mention drove here on a Friday morning in rush hour up Mopac. I live off S 1st and know I have other choices near me, especially when feeling miserable, but they had the best reviews and for good reason. Highly recommend! ⭐️⭐️⭐️⭐️⭐️','2020-02-23 09:57:30.701000','2020-02-22 11:31:32.135000',5,'Jenna Lent','https://lh3.googleusercontent.com/-Z5kv-GFMb4Y/AAAAAAAAAAI/AAAAAAAAAAA/MHAxzyfgemY/c-rp-mo-br100/photo.jpg','16891069708558046635',11074),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sR-9pqXZ0K955S3Tkb3VX7L1gSaKwA3rue9qhkK5xgjwPuf6UD3yYTSafuaB-7oXxsanuVPxubqkT28aFr6EeZbTUOeQ','Delicia was very welcoming and friendly!\nBefore I could lay on the bed Blake had me a warm blanket.\nDr. Alloju was very understanding and thorough!\n\nThanks!!!!','2019-12-02 19:15:32.717000','2019-12-02 19:15:32.717000',5,'Dinesha Guillory','https://lh4.googleusercontent.com/-bX9Npx10sDw/AAAAAAAAAAI/AAAAAAAAAAA/9we107-yZ3s/c-rp-mo-br100/photo.jpg','8679688254631342173',8702),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sSe0yE_CZVAkfoltWNdM6oV0taFHVSxuaA2QmbvV8YuMIui0oUKsT02Ib-MfioayTc48ms6Y58uCsJgLDfMPCnS7FzUE','The best it’s the Dr. outside taking care of the people.','2020-07-28 05:37:07.707000','2020-07-28 05:37:07.707000',5,'Xavier Cruz Viana','https://lh6.googleusercontent.com/-9jXa269-uuQ/AAAAAAAAAAI/AAAAAAAAAAA/RDBVRXONyKI/c-rp-mo-br100/photo.jpg','14748677429039074158',22537),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sT9PLwBjkqC4KGrjDUvGZVOxyEUHymV0q48QzOTBLOzQlsxAaV1Yqh-4wsxCi0ts8BCRjK55P2b-l5-vRgsNdldIt554','The site was very clean and welcoming. All of the staff was affirming and attentive, and once my insurance was confirmed, I was taken care in the most caring way.','2020-06-05 02:35:50.299000','2020-06-05 02:35:50.299000',5,'LaVera Collins-Okoh','https://lh4.googleusercontent.com/-mYa4f12Lgug/AAAAAAAAAAI/AAAAAAAAAAA/_ky4P5mjYII/c-rp-mo-br100/photo.jpg','16590124370714063921',22674),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sTATyaa5TjvAYXIat54uLFOr_4icSC_GINCXCnovOWOUiOsg8RrsMVBR-YO36JKfnbkSv3jPtam72Fb929ThpiwFHg20','Nice facility, the nurses and doctors are very accommodating and helpful. Fast service as well','2019-08-08 16:33:06.374000','2019-08-08 16:33:06.374000',5,'Alejandro Ramirez','https://lh3.googleusercontent.com/-rxU1DiL7tXk/AAAAAAAAAAI/AAAAAAAAAAA/xLVHg00T6HI/c-rp-mo-br100/photo.jpg','3511292162159714121',7219),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sVtZbaSSQSVbm1d-5o8T8RZ4ba3lSHSYNViBytF4lL_NeiD38uqDRY7LdIpw0OduO6D5ZjzaHMZJZA1dTkwbVScHaUIE','These guys rock. Definitely recommend. Especially coming from Hawaii, they know how to show \"aloha\". Mahalo.','2020-08-10 02:05:56.361000','2020-08-10 02:05:56.361000',5,'Tammy Viliamu','https://lh5.googleusercontent.com/-e1y8Cs2XXHk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmyJGmIUPBq1pXLA9yWKrLAsWfurQ/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22873),('AIe9_BEcsqFw5ZXjJ1YdcBn5-w4sZ0F3hSsR8XIfNmvhjrVZw8t4xtbj8PIXuPxQ90pCbku-7UMFHEaTTnOgZEQVG_AhE_M3TFMNtQLz3Rh6Ehb9KE-HxXA','Thanks Dr Patel, Alvean, Ezequiel, Jocelyn and Sean such professionalism not a long wait time and very compassionate.','2019-09-07 18:50:31.129000','2019-09-07 18:50:31.129000',5,'Crystal Johnson','https://lh3.googleusercontent.com/-U6r0vaR9Pac/AAAAAAAAAAI/AAAAAAAAAAA/wDWCF-mazsY/c-rp-mo-br100/photo.jpg','16389487648212004696',2943),('AIe9_BEdqwa--_5Us_sQK6GZEuDYdpASKYpn_bfzmA3QvU3xRWFoyY8bw7m9h4ykvIW_Xtoq-EanRMk7iu6Vl-A579uyDlPGjQ','I had excellent service in this facility. I was greeted and checked in promptly. Shortly there after, I was ushered back to a room were all of my concerns and symptoms were noted by the nurse. The Doctor entered the room quickly thereafter and after examination, developed a course of action. After several test, an X-Ray, a shot and a Breathing treatment, I was on my way with 4 prescriptions. Total time at the facility the facility was just over an hour. I began feeling better once I arrived home, and with starting my prescriptions today, am rapidly on my way to a speedy recovery. The staff if very friendly and attentive. The facility is very modern and up to date. I would highly recommend this facility for any of your emergent medical concerns.','2018-01-15 18:48:38.630000','2018-01-15 18:48:38.630000',5,'Ryan Ward','https://lh5.googleusercontent.com/-TG0dqR9RDuE/AAAAAAAAAAI/AAAAAAAAAAA/T4ud6EglSzo/c-rp-mo-ba4-br100/photo.jpg','8918455867446117794',9306),('AIe9_BEEpHXKTx5hUnp7_k-b8ar92ITW1zivw8a5Qfgppc6M58uIg98DYnfDzae54UObkJ2Cha6Bubf2rbIPM0SSv32QUwCL5eftuvoNmY9dR6kf1ZF5B2k','It was very nice. There was no wait, and they had you in and out of there in no time! The staff was very considerate and cared about you. The best part was- they were fast!','2017-04-30 05:21:11.393000','2017-04-30 05:21:11.393000',5,'Skyler Blount','https://lh5.googleusercontent.com/-Vr2x9xWFLmg/AAAAAAAAAAI/AAAAAAAAAAA/oPnkVtkxaPQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5069),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9Ea63EdNdnbBVfuUjJ4IjGzxXyCN7oileOaGwNmj-Op-un65DeItwXo40RzTDv16AGlfal3YOd9mu7wF5aVcMrPD49aU','Dr. Jordan and crew Linda, Kara, and Christie were great. Came in on Christmas day with a dog bite they treated me with kindness and in a timely manner. I will refer them in the future.','2018-12-26 00:26:36.231000','2018-12-26 00:26:36.231000',5,'A Wherry','https://lh3.googleusercontent.com/-3kV-HEn3dJI/AAAAAAAAAAI/AAAAAAAAAAA/OVjedQUrBMI/c-rp-mo-br100/photo.jpg','3272657195432704501',7085),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9FrAtKMvxEKEku2bvPxCyfGFL76h0nejzOIzdAC7wic2cEp3dt4pIvjqCvrCLHUJHx1biYcWV34tEqS34b_GUqZvrFGs',NULL,'2019-01-12 11:45:06.376000','2019-01-12 11:45:06.376000',5,'Jose Velasquez','https://lh6.googleusercontent.com/-9a9cl7bQ3X8/AAAAAAAAAAI/AAAAAAAAAAA/pYGhguH59tI/c-rp-mo-br100/photo.jpg','3272657195432704501',7060),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9J48m1Nz8qIarBSCbSRpoLcurJsLqJ9520uT-_MiUj_VbUC02wAAANY8oebyt6UNpMDrfLYP2BMQuPWNWjFyun87pl6k','Everyone was very helpful and super nice.','2018-12-22 15:32:40.181000','2018-12-22 15:32:40.181000',5,'Tamika Monique Merriweather','https://lh6.googleusercontent.com/-MZv4436j1gU/AAAAAAAAAAI/AAAAAAAAAAA/wvTyns0QOV0/c-rp-mo-br100/photo.jpg','16590124370714063921',3604),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9jF9zTSNx9HS8mnYADPlIKJmFuzCXtp8kAJBgnLVff4XkS_k6Q9M-jU_1xM4k7njqlDYUXd1mYwKa2Zr9GwLzy4-ZZ9w','I recently visited this establishment and was amazed at the exceptional care and service that I was provided with. I felt heard and understand and ended up feeling like a new person after meds. Dr. Rose, Christina R., Linda, Christina C., Adam and the whole team did outstanding! I felt the utmost compassion and respect from this wonderful team. I would recommend this place to family and friends and everybody!!! 10 out of 10 phenomenal service!! Thank you so much for making me feel apart of the family ☺️','2020-01-23 22:56:40.105000','2020-01-23 22:56:40.105000',5,'Chelsey Michael','https://lh4.googleusercontent.com/-i4CNo_7s6LY/AAAAAAAAAAI/AAAAAAAAAAA/eMXebvTFmxg/c-rp-mo-br100/photo.jpg','16891069708558046635',13976),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9lZbQG19OEH2oseQ7K1UBV2Yx9Iuh0fMthJf2nQtL4WgJ7PwJeyN7s4A6WD0n1chZi7i8bSnGnXalOssy32L0WyaOXdk','Jocelyn, alvean, Marcus, Ann were super nice, everyone was helpful and fast. Great customer service!','2020-06-03 14:07:11.810000','2020-06-03 14:07:11.810000',5,'Ana GArcia','https://lh3.googleusercontent.com/-iunGRBH44kU/AAAAAAAAAAI/AAAAAAAAAAA/KlZUXeGpNDg/c-rp-mo-br100/photo.jpg','16389487648212004696',21973),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9MCcVlQPbTpsaiNOO4G5JNgce-hZ_gScF21_6iQTMDOSoz7OBwWG6dL46Dqr1lo29rxO4igUwEZMce9x4SkCQdCcZC40','My experience was great. The staff is very friendly and professional. I didn\'t have to wait long at all to be called. I was very comfortable waiting for my blood work and ultrasound results. I was able to watch tv while I was waiting. I would recommend Signature Care Emergency Center, great service','2016-05-26 10:39:17.181000','2016-05-26 10:39:17.181000',5,'Myshelette Hayward','https://lh4.googleusercontent.com/-DCy0okJiqRg/AAAAAAAAAAI/AAAAAAAAAAA/Vfgzct4Jh4M/c-rp-mo-br100/photo.jpg','14567670160750071148',2030),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9Pp9_E-AVroA7VVzxJorZtNzijL9hAhRd6ec8JtNNcXZnZU0gjenzS_HhsDB6d5HiVb58G65cUyT1-Ul90HPYFIaebOk','Mrs.T was great and fast 👍🏻','2020-08-10 16:36:31.564000','2020-08-10 16:36:31.564000',5,'Alejandra Rmz','https://lh3.googleusercontent.com/a-/AOh14GgsBU9MI6btHA5NTuClw-WRzTLFD5MhCN4epinGmA=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9pV7X47mPfdSSF6AuYjIli2j522T5Iguhv_ReuIy76zN7VUWOfd7mOGKiy_R8NO_hK5M8YVS4kUxFqhbQLyFa2UyMAIY','Anthony, Natalie, and Dr.Harjai were all so respectful and caring! Highly recommend coming here.','2019-04-03 17:55:28.639000','2019-04-03 17:55:28.639000',5,'katelyn thompson','https://lh3.googleusercontent.com/-SXrFIwfcurU/AAAAAAAAAAI/AAAAAAAAAAA/HsaC50Zhir8/c-rp-mo-br100/photo.jpg','16590124370714063921',3458),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9QjuuOSWsNOpAiu7jM4sJqty3wo3BKuFboISPfTfaM_NBp-COZYVFiKHfjW9966PNzg5DnNgI_CT_ha1Wj5lVlc8QDJs','A bit pricey as the service was considered out-of-network, but very convenient, friendly staff, and I didn\'t spend the entire day there like I would have if I had gone to a hospital Emergency Room.','2018-03-15 01:33:05.035000','2018-03-15 01:33:05.035000',4,'Jeffrey Moore','https://lh6.googleusercontent.com/-kGfJv500nEU/AAAAAAAAAAI/AAAAAAAAAAA/Iy926hcpk1Y/c-rp-mo-br100/photo.jpg','14904078213800803294',2272),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9TX_xEQ4SFDpdztPkcznDR7xhBqfM33ZJZEZALqF9TcEevRgau9hsJm3CCEFgTwmbifIJGaDDFH9d-fZNEUF0_bntyL8','First rate treatment 110% all the way. The facility is extremely clean, organized and efficient. From start to finish , I was treated immediately with expert care and compassion. The staff is friendly, informed and and very clear in aftercare and direction. I was not zero pressure and I knew I was in great hand. This office has a great vibe and it resonates thru staff. Thank you Lingan,Martin,Linda,Christina C. And Chelsey. Your Urgent Care is by far the best I\'ve experience including CA. Arizona NY and Colorado. Hey Life happens when we work hard. I\'m thank to have found Signature Care EC.','2020-02-05 20:17:36.371000','2020-02-05 20:17:36.371000',5,'Ron Matty','https://lh3.googleusercontent.com/-Hd_RuENyvTg/AAAAAAAAAAI/AAAAAAAAAAA/t1JQXS4jFFY/c-rp-mo-br100/photo.jpg','16891069708558046635',13958),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9X3qs-dEJ0xnKAV86nZgAE1czOhCiyRhiKD8xzOEiozkWKSpmwvaWCiQgxWAV1nhtw8O3u-K8OeDuK1EI8BnKdLUsMos','The nurses here are actually very friendly & actually care ! . Definitely would recommend !','2020-07-09 12:48:53.210000','2020-07-09 12:48:53.210000',5,'Paola Granados','https://lh3.googleusercontent.com/-AgdmLIDKBhM/AAAAAAAAAAI/AAAAAAAAAAA/9bCl9H2a8hU/c-rp-mo-br100/photo.jpg','14748677429039074158',21767),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9yl0FwhxbFGnLXMmzpWq9uSGyGR0Q1mCzdNsALQE0QXUEdcapX17DbukvVTTK4eGQ4m0vhKmyvtqJG30wVz7yuyo6oko','Everyone is nice here they give my kids a good experience and help them to not be scared or worried to be there and the doctors always know what’s going on with the kids','2018-04-27 17:06:55.372000','2018-04-27 17:06:55.372000',5,'berry Ortiz','https://lh3.googleusercontent.com/-6hXx9lje400/AAAAAAAAAAI/AAAAAAAAAAA/gIVju41k-5Y/c-rp-mo-br100/photo.jpg','14567670160750071148',1627),('AIe9_BEEpHXKTx5hUnp7_k-b8ar9z6YgXL7Bt-VXdkRyIluSGSMbnaLgB5-gtza4IN3VnHoL7hSMKvAgExdJJC6XrMRf6cy7dkPZhU8rRMUKjBIwDQQEqUU','The best emergency center in town! Service is quick, staff is exceptional and facility is clean and comfortable! Atmosphere is welcoming and they have all the equipment necessary for your situation. Nurse Kat and Dr. Joseph are the best! Highly recommend!','2019-10-10 05:13:41.896000','2019-10-10 05:13:41.896000',5,'Roselyn Santiago','https://lh3.googleusercontent.com/-22RWqzyx_Vo/AAAAAAAAAAI/AAAAAAAAAAA/WZbLvPy4bw0/c-rp-mo-br100/photo.jpg','2694018788013845459',6050),('AIe9_BEFNTldkTTPt50U3I6egp68_p0NCH_NWAf5LtfYpb74xOdgrt_49AS6RTOu8nhslCeiq2GXEWPyCFzwlDX_mzCt0_V3apO3cI4mvF6F01IlHJ6FW9g','In to see the doctor in less than 5 minutes. We had a nurse and a doctor to treat my basic sinus infection. Very nice and respectful of myself, my wife, and our opinions. \nExtremely clean and from what little I know, it seemed to be well equipped. Price was good for level of care. We even received a phone call from the doctor the next day just to see how the treatment was progressing. I don’t get that from my regular doctor back home!\nSo yes, 5 BIG STARS.','2019-12-15 17:44:27.328000','2019-12-15 17:44:27.328000',5,'Roland Feemster','https://lh5.googleusercontent.com/-4Oe2RNFQmD8/AAAAAAAAAAI/AAAAAAAAAAA/Yr3xl1TrUeI/c-rp-mo-br100/photo.jpg','8626688543755174284',14647),('AIe9_BEFNTldkTTPt50U3I6egp686xKQthtsn77EEATs8BUfw-LESOleCU7OS1lKFvxsjwGgybfnNjwDtwd9AkI7tePxGkPBgcVYet-xdCK8tKNfVvaK_Gs',NULL,'2017-10-09 13:47:30.433000','2017-10-09 13:47:30.433000',5,'June B','https://lh3.googleusercontent.com/-on1a6b6JtZE/AAAAAAAAAAI/AAAAAAAAAAA/8-GAH19jmxk/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4954),('AIe9_BEFNTldkTTPt50U3I6egp68bwbij7OgU2wBMCASibNLW5Fk4ZfSVNyXjf7Ql4iyD4hSiZhfgHFULPpwhmW1gx0jhH6HMFswocVsabZFEa-NCMHbRzc','Amazing experience during a stressful time. The staff, nurses, technicians and our doctor were extremely professional while also being comforting. Thank you for everything!','2019-08-18 01:59:04.997000','2019-08-18 01:59:04.997000',5,'Danielle Martinez','https://lh4.googleusercontent.com/-73yzpPhgC5M/AAAAAAAAAAI/AAAAAAAAAAA/TUvlWUwgWO4/c-rp-mo-br100/photo.jpg','2694018788013845459',6081),('AIe9_BEFNTldkTTPt50U3I6egp68CaJE7ZpdG7z1Dar6DwqjxNWs8_s6jszYx3WdAo88tzt3y0_q_ikEOr1Ut_diqUnHr0YYpAVAVNqC1RhXibgKuo2eZNI','Best urgent care ever! Jasmine was really nice and you can tell she was trying to help us! Staff was kind and helpful as well.','2016-08-06 03:57:09.829000','2016-08-06 03:57:09.829000',5,'Brigitte Quinones','https://lh6.googleusercontent.com/-ARVpKbXldr4/AAAAAAAAAAI/AAAAAAAAAAA/VO1UgJq3XYM/c-rp-mo-br100/photo.jpg','14567670160750071148',1997),('AIe9_BEFNTldkTTPt50U3I6egp68HrMZdlI3gyFA6ME0TkbpL2J_KEB2IUIrxA9vUzNkLlmJ-IojgREzcvXpILvb25rnsyJR0JmyqLhDT0oFMshD0DLL2O4','The staff is very nice and professional. Ashley the Receptionist is amazing love her spirit! I would definitely recommend this facility to someone.','2019-09-02 14:51:10.982000','2019-09-02 14:51:10.982000',5,'Reena Trotter','https://lh5.googleusercontent.com/-hpfholmltIs/AAAAAAAAAAI/AAAAAAAAAAA/b5SjoIlZ57A/c-rp-mo-br100/photo.jpg','17898197009688164559',5563),('AIe9_BEFNTldkTTPt50U3I6egp68j9Bj0G56Z1MaHfcpV3NvAltZje85O_2fiIMuSsrWs0HgfgNnxD3QHR_rcfLuxj4YMclbzckXZc0s6lyd6xqlDnuIRoI','Brought my son who had something on his ear and Dr. Cavazos was very helpful, he explained to me what was going on and it gave me relief. The team was really nice and I didn\'t feel in a rush (which is a plus for all parents out there). Thank you to the staff and Dr for being patient and caring.','2019-06-03 16:13:13.252000','2019-06-03 16:13:13.252000',5,'Perla Luna','https://lh6.googleusercontent.com/-ZIm0x_KtXoQ/AAAAAAAAAAI/AAAAAAAAAAA/Cu8TQXHruPk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEFNTldkTTPt50U3I6egp68K_Ws22TeSKOFMlT_o0o468MO1W3bbJ2dfPZS3stWRJaFuTO3nwo2PCrtMv1sHmpE6XwZEL1FjSSXSA53rc_xSXxbruY','The staff was wonderful. Very sweet happy and positive. Very short wait time if any. Dr Carpenter was very sweet and funny the RN Karen Jeniffer the rad. And Tobie and Kelly where the best I will most definently go back and refer them to everyone. Thank y\'all so much for your help.','2019-01-27 00:58:18.178000','2019-01-27 00:58:18.178000',5,'Cecilia Milligan','https://lh5.googleusercontent.com/-iX__5qAxt0s/AAAAAAAAAAI/AAAAAAAAAAA/WsWRqxskJOE/c-rp-mo-br100/photo.jpg','3272657195432704501',7037),('AIe9_BEFNTldkTTPt50U3I6egp68kZnVXcmWdhoqdlW2zSgpcX16XxOT3saGA3mREvtCwUOdpyJBa2OArBxPcS0Tu02fM85dOmXVpSYvaG7n0omPyIuzhQQ','I walked into the Montrose SignatureCare ER and they IMMEDIATELY went to work on me. Brenda took great care of me at the front desk and got me in right away. They treated me kindly and did all of the work necessary to ensure I was being treated/diagnosed properly. Nurses Karen and ER tech Carmella took great care of me and worked fast and efficiently. Dr. Daniels was fantastic! She was genuine in her conversation with me and made me feel at ease, while informing me of my symptoms/diagnosis. Dion was also great as well when I had my X rays done. Overall this is one of the best health centers I’ve been too. Would recommend them to anyone in the Houston area!','2019-08-09 02:22:22.661000','2019-08-09 02:22:22.661000',5,'Sean Johnson-Bey','https://lh4.googleusercontent.com/-SX5MbV13Zcc/AAAAAAAAAAI/AAAAAAAAAAA/49yWLHbBizw/c-rp-mo-br100/photo.jpg','3511292162159714121',7218),('AIe9_BEFNTldkTTPt50U3I6egp68n75gmqP5T-DR19z0qYcptcVW1AGFjtaoIe0hQDJg5pSjN55N05w1Z9ovM_Xf1Q0HxIU7YvDFMON1Fsie5b-iqHI5XiU','Jocelyn, alvean, thuy an were friendly and hospitable.','2020-06-03 15:57:04.255000','2020-06-03 15:57:04.255000',5,'Austin Floyd','https://lh4.googleusercontent.com/-Dwd8jlKUKiY/AAAAAAAAAAI/AAAAAAAAAAA/OvIAhv49LeE/c-rp-mo-br100/photo.jpg','16389487648212004696',21972),('AIe9_BEFNTldkTTPt50U3I6egp68NhaEGYa1kC6N2ccuqVd5x8l7WoMV8yTQcvieOPGmbMeyCCYpt0NVVeW_fqG-4Am4ROXd0F4FvUbj7h52dUuw9AiWdpE','I came in with swollen gums under a tooth I had gotten a root canal on a few months back . My pain level was definitely a 10 / 10 . Mercy greeted me apone entrance at the front desk and gathered all my information. She was super nice , she talked to me about payment plans, etc. and got me seen almost instantly. I had been suffering for the past week with a toothache on this tooth . The nurse, Agnes was very kind and gentle while examining me , she ask a few questions & in less then 5 minutes later the Dr. Yusuf came in and begin examining my gums & talking to me about treatment options. He was very patient with me , he knew the amount of pain I was in. After the treatment was over , I felt better . The nurses, Mercy & Agnes talked to me about where to get my meds & went over the daily dose with me . My over all experience was amazing! I’ll definitely be referring them to all of my friends and family!','2018-01-17 19:55:03.731000','2018-01-17 19:55:03.731000',5,'Tytiana Taylor','https://lh5.googleusercontent.com/-lA5wbfgkErc/AAAAAAAAAAI/AAAAAAAAAAA/Fx0aaUy2mF8/c-rp-mo-br100/photo.jpg','3511292162159714121',7736),('AIe9_BEFNTldkTTPt50U3I6egp68s7gGPVAOah1nX3-CmENzs07qm-Vc_X59PxR-ZbryAJN92EJ5SLSX4xIoh2uKOJ8K-dx2zefi2HLaRWUFyiOaCCnXDZ0','The staff were really great and friendly . Dr. Jolly , Nurse Kristina , Rad : Laura , and Reg : Malissa made my visit very pleasant and was very informative explaining any questions I had in mind with my health and billing process . I will recommend anyone to visit this urgent care for any healthcare needs . Thank you for your awesome services . \n\nVanessa Williams','2018-11-17 14:51:08.403000','2018-11-17 14:51:08.403000',5,'Vanessa','https://lh6.googleusercontent.com/-OD0IwXmVxX4/AAAAAAAAAAI/AAAAAAAAAAA/ktjYff_RVOA/c-rp-mo-br100/photo.jpg','12541597562633926366',590),('AIe9_BEFNTldkTTPt50U3I6egp68vQHWRgDQfVK2EoZ017hmRn43O5CYtMmLz11uCDjkMiMqrHYM_kNrAdXKCUGWFJspsQ25hetgVRMrk_27ViMwO85GEoo',NULL,'2017-05-04 01:42:45.490000','2017-05-04 01:42:45.490000',5,'Christian Briones','https://lh4.googleusercontent.com/-_lgnCxAr0dk/AAAAAAAAAAI/AAAAAAAAAAA/smBJvhNvQ8A/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1831),('AIe9_BEFNTldkTTPt50U3I6egp68W72SuVzggraNJCjXfTDzcDcBPfnYbqI5BlfOguoXvV71MY1OJWhTkI2WSZI74zdFUsCRU7xi7Z8HUNXJkOd0JeWLUOM','Dr. Miller, Maya, Laura, Kristina, and An were very kind and helpful. No waiting and overall a Great Experience! I would recommend! 👍🏻👍🏻','2020-01-31 19:10:43.211000','2020-01-31 19:10:43.211000',5,'Val_htx','https://lh3.googleusercontent.com/-j-xYBhAp28k/AAAAAAAAAAI/AAAAAAAAAAA/K2ydN1JOC3U/c-rp-mo-br100/photo.jpg','12541597562633926366',10377),('AIe9_BEFNTldkTTPt50U3I6egp68Zf3S9vd72oQOyemdG1cSlKxDGr3qd_wehv56hSl-XpmGJBuwvzOipVGM535A33i5J0SuY6BcESpFQwMD6gvZG0eYvbo','Worst experience I have had with any kind of medical facility. I came in a couple months ago for an incredibly painful ear infection to get some relief around 2-3 in the morning so that I could get to class that day. The doctor was not very understanding and did not appear to know what he was talking about. In addition, the staff gave no indication that a ten minute consultation with a doctor would amount to about a $2,000 bill (very little of which was covered by insurance)! As a young, broke college student, it would have been nice to know that the only thing they could do for me was tell me to get some pain medication over the counter, without having to spend $2,000. At the very least, they could have lowered the emergency room fees because I did not use any of the equipment and I was not in the building for longer than 30 minutes (including wait time). I would not recommend this place to anyone unless you want to pay an exorbitant amount of money for substandard service. You may as well go to an actual hospital, it would be cheaper and probably better service.','2019-07-04 03:42:46.546000','2019-07-04 03:42:46.546000',1,'Jae Johnson','https://lh4.googleusercontent.com/-j40eQTICRH8/AAAAAAAAAAI/AAAAAAAAAAA/m8NUnTjwRu0/c-rp-mo-br100/photo.jpg','16590124370714063921',3318),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_5_nZLO1D0AXMUzxklA2uMs33chScbTeuqvEZSqAnjLjhbjubOibLzC5MII9dCq54Ezrt--aduwsCOhMjz5nZ2LOnIw','I came in and they were extremely helpful. I didn’t have to wait I came in and went straight to the back. Thank you signature care for helping me!','2019-12-19 19:28:56.424000','2019-12-19 19:28:56.424000',5,'Kane Beltran','https://lh5.googleusercontent.com/-hRwgKWTY6vI/AAAAAAAAAAI/AAAAAAAAAAA/NR-ktL4kW-c/c-rp-mo-br100/photo.jpg','2694018788013845459',5979),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_f6MTVhaT7NskxjWvcn5Or7ucpQL6byDbhbZjgyqcDUXJwoAlh5WndJqgE7uRFi3NU7Xu8kjjbmeGm26rscrYy0Wrgo',NULL,'2017-02-08 16:12:51.635000','2017-02-08 16:12:51.635000',5,'KRITI SHANDILYA','https://lh6.googleusercontent.com/-rERrjkhVKds/AAAAAAAAAAI/AAAAAAAAAAA/JwRPQ3c52W0/c-rp-mo-br100/photo.jpg','3511292162159714121',7884),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_FAsypL34IAoEaBs-7wKNOzY1pObg_v8pFEtMrd1eopltiLk6nqvzwaJL4cL94UAtP-2RVJjC1KXKJuggce1BeF6d1w',NULL,'2020-02-01 00:43:25.321000','2020-02-01 00:43:25.321000',5,'Model Whit','https://lh6.googleusercontent.com/-DFWfBYkitPo/AAAAAAAAAAI/AAAAAAAAAAA/CNIuej1SZkU/c-rp-mo-br100/photo.jpg','8918455867446117794',14858),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_GLJEAx4SV8jW8teBbJQ7clMCZ1Uzclp5tDeXu612H22rihTBgXrlomoxUS6L6G0xBBznParigzFXq6GXck8NoqQPg4','Extraordinary treatment and facilities, delightful people. Happy we came here for care, and highly recommend to others!','2019-05-22 23:10:33.652000','2019-05-22 23:10:33.652000',5,'Cliff Eversdyk','https://lh6.googleusercontent.com/-fAaBoopBS2I/AAAAAAAAAAI/AAAAAAAAAAA/B2n2LZE0lBI/c-rp-mo-br100/photo.jpg','16891069708558046635',4272),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_LBn5XPIhZZYClkNifIay24T5KwKh_5sBHTI2toqFHis0KmGe5dG3EiYsXz6MqeiOeA6flOPUbVdt01GEtaFFdG5-PU','Very amazing service Jennifer did a great job with registration John and Matt and the Dr did amazing made me feel like I was being well taken care of','2019-01-27 21:32:35.080000','2019-01-27 21:32:35.080000',5,'Dena Cline','https://lh6.googleusercontent.com/--wqZq2wP0Jo/AAAAAAAAAAI/AAAAAAAAAAA/rBQfH_RUoM0/c-rp-mo-br100/photo.jpg','8626688543755174284',8579),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_m6XoQmTnXibGSYXLMFtTPZun3H8waX2dNv_722-odFouAmw04BlOpf8kDCO4mIQ8BqDos3_KWPgxjHQvz2-m6XN2Y0','I came by to check on my family and registration Vanessa G was great and friendly!','2019-12-22 02:47:20.328000','2019-12-22 02:47:20.328000',5,'Ricardo Roberts','https://lh6.googleusercontent.com/-I82R8WwsUOk/AAAAAAAAAAI/AAAAAAAAAAA/N0JaqTNmV-8/c-rp-mo-br100/photo.jpg','14567670160750071148',1168),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_ScP4Z9Hz9LfyTDkPyY_XHHbT47O-_JBvAGjvZampZfAW9Cdh2ZTpC3ozuzGrHzuBrGkALkmEPiUpJscwPyUAgVrI1A','The staff was friendly and personable. The service was quick!','2020-07-16 00:55:36.271000','2020-07-16 00:55:36.271000',5,'NETOSHIA PENDLETON','https://lh4.googleusercontent.com/-T0gV7rL54e8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucluwcMtDBIT0PQUJvuLNnPoYm7eKw/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22122),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_VGpvlxEWORR_p5D7lwcLh4_gUpHp_acTxOrXhWbCybWaCunNSdDCXyGBXdKWvf3YcieLDx4n_HHZCj1KsH341skLeI','I never have to wait long in the waiting Rooms, The staff is very friendly and they give you a warm blanket,, The doctor explains everything to you so that you fully understand what\'s going on, They definitely make a hard time a little more bearable','2018-07-24 03:02:11.893000','2018-07-24 03:02:11.893000',5,'Crystal Carr','https://lh5.googleusercontent.com/-7EpGht8A-6A/AAAAAAAAAAI/AAAAAAAAAAA/jNLSauRjvDg/c-rp-mo-br100/photo.jpg','17394740196501090048',4824),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_Wc-NTVx7SpZ1d4VpyKCa1FqMQpvHfDIt8AegmJv8WI2ipoGdfz-i30JHdqFuvDKOvvLspSqloNwSPIBQICHlk8Jd7E','We had a phenomenal experience here. My little one went in needing stitches after a fall. I was moments away from passing out and/or getting sick and everyone was so kind toward both of us in handling the situation. We were put in a room immediately, the front desk offered us water and assisted in making us comfortable. The doctor and nurses both had excellent bedside manner in discussing treatment, follow up, and at home care plans. We were checked on constantly and did not have any long wait times. I would highly recommend this emergency center, especially if you have little ones.','2019-07-31 17:32:55.158000','2019-07-31 17:32:55.158000',5,'Courtney Staley','https://lh4.googleusercontent.com/-xWB2OewiHY0/AAAAAAAAAAI/AAAAAAAAAAA/fXNNtyQp8Io/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4231),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp_xzF64QrRAw12SNUlMB-zj31s3XSPhhaI_J5M9AopoanEso0sah8SASIvj-cYMn36BzxKnMQSZCxyPy7bkS-xi9zrho','Thank you\' Samantha! Awesome service. Professional employees and great options for treatment even if you don\'t have insurance. Thank you for treating us like people. I definitely recommend this facility if you need medical attention.','2020-03-02 04:59:55.029000','2020-03-02 04:59:55.029000',5,'My Random Life','https://lh4.googleusercontent.com/-jHmsbaVYoyw/AAAAAAAAAAI/AAAAAAAAAAA/ygjUuLiCCrA/c-rp-mo-ba6-br100/photo.jpg','14567670160750071148',16502),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp-Aebvj-MtqCMpweL9cvpE4uYW44_NDxOJLbuy5IlLUypmXLIm4SjxYqL0Fi0v1YOsMsDKwxIITKEqFHbU1D76I7UJY0','Easy online appointment process; staff was friendly and quick to handle my paperwork upon arrival and explain insurance coverage. Great service by Amy, Jas, Chris, and Dr. Rodriguez.','2020-08-01 21:16:30.028000','2020-08-01 21:16:30.028000',5,'Elizabeth Reza','https://lh3.googleusercontent.com/a-/AOh14GgjQDONh4LusTtnBy3bsdOlj4J5z2llNiwpiYCzicI=c0x00000000-cc-rp','8679688254631342173',22363),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp-bKc-vjYeTgLiIaR2qGWSNCQ786t52NEgyLD3ZlmegoEi9Zq_fTxp8u-tQiks56OERxOWjz3DfG1RPSqljJpJhHwwQU','Super quick and friendly staff; no hidden costs or fees. It is a free evaluation and they will let you know the costs of tests before doing them if you are not having a serious emergency. Doctor Nguyen was super honest and straight forward with what he recommended for me. By far the best experience, I’m super grateful and relieved. He gave me a piece of mind. \nWould definitely recommend. 11/10','2020-02-23 16:05:17.047000','2020-02-23 16:05:17.047000',5,'Ailia Khan','https://lh6.googleusercontent.com/-e9hPe2-mm7Y/AAAAAAAAAAI/AAAAAAAAAAA/oL-zVAqxgwg/c-rp-mo-br100/photo.jpg','12541597562633926366',13351),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp-cXLmw-zFoKUUUTZbEEn2Q0NEjUplMapwM07XLOKc9rze9-fKPBj6vL2ovEq3U_3VyAMCNV-Y_NMSO0RadPQ21nhap0','Service was great and everything was done in a good timely manner.','2020-03-12 22:14:07.694000','2020-03-12 22:14:07.694000',5,'Kirsten Hedrick','https://lh3.googleusercontent.com/-zyqIiHU6KOI/AAAAAAAAAAI/AAAAAAAAAAA/mzO0nqoYWa0/c-rp-mo-br100/photo.jpg','2694018788013845459',21114),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp-LWEDoipc4jRYGkT4ZEb95uOUgtAGSnqJi2tSogb0xRz_u_AK9bfp6zWzMrx1Y7mhZxMnS_JVxR4K0Y7ddV_hJltHsI','Great service , came to get tested twice and both times get in/out fast. Awesome costumer service and the staff is great , specially Cody and Nydia. Thank you all .','2020-07-26 16:14:25.471000','2020-07-26 16:14:25.471000',5,'Lainey F','https://lh4.googleusercontent.com/-52hRFuDGAzo/AAAAAAAAAAI/AAAAAAAAAAA/FTEZ9Qq8onc/c-rp-mo-br100/photo.jpg','2077061009497551125',22832),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp-NWORN-XsRHkunAk8BVrV-J822mUXqlX2OXsNcbKgIMRA_dPdcwhwIQY67Exg5wyAqg__GDSAB2WGAodwj9LPFiXSRo',NULL,'2020-01-22 23:36:43.498000','2020-01-22 23:36:43.498000',5,'Bryce Keeler','https://lh3.googleusercontent.com/-qhOo3sE_U1I/AAAAAAAAAAI/AAAAAAAAAAA/51PD9zXoSuQ/c-rp-mo-br100/photo.jpg','13486358490203335051',13460),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp-OfbokyJctBp41hal08DJH3cYTCvsaOhwrfOle02wi-Da_7Dhu4IiwvZkB19gHNeyrpfp9019x4I3wZnK_afgYhulDc','I had the most outstanding service at the SignatureCare ER Center in Killeen. From the moment that I entered to the facility and from the time of my discharge. They all were very friendly and courageous. I certainly recommend them.','2020-08-17 00:02:13.584000','2020-08-17 00:02:13.584000',5,'Annette Williams','https://lh3.googleusercontent.com/a-/AOh14GhkLTvswkPEb3eUgiE8XPomM-RLV9MYSwhGRBVOLg=c0x00000000-cc-rp','2694018788013845459',23070),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp-WulqWGT2mHeBKlnk5OIiFMuGX0XLN1edbThUSNZbIZkD-XwfGQEJ03hJrC7H9G-feJnlO7A--enuWUZwqjLWoE4Z78',NULL,'2018-02-11 01:13:39.453000','2018-02-11 01:13:39.453000',5,'Lex Air','https://lh5.googleusercontent.com/-YklBo8u-VqU/AAAAAAAAAAI/AAAAAAAAAAA/nbgAo8OEygw/c-rp-mo-ba5-br100/photo.jpg','17394740196501090048',4885),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp0ASVwKwiyGdtGw96E2APZGA14es8LG7RkfXXhy9cK5M0lTHkjIfY92orudt-SCczo2vkki6JoTjgc0U2xyxImgWSKMg','I really appreciate the kindness of the entire staff. The nurse and Doctor took the time to explain in detail what was happening and answer any questions I had. I was very scared but they made me feel comfortable and at ease. Thank you very much guys.','2018-02-16 21:27:40.846000','2018-02-16 21:27:40.846000',5,'Allyson Pillow','https://lh3.googleusercontent.com/-FkXDfHvLVeY/AAAAAAAAAAI/AAAAAAAAAAA/OnSVKhCNziM/c-rp-mo-br100/photo.jpg','14904078213800803294',2283),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp0l1lo6OXxRHAyFiMLqH3ejvclUwoE6mQMWwrk660wiZgXIch3yinPvPvNNNrFjvyXIBTFD_0J8tQ8UgFLXqQ7Obk-Ps','I made my appointment that Friday, for Tuesday (earliest they had). There’s a line OUTSIDE which I didn’t like ONLY because it was sooo hot but overall THEY WERE WONDERFUL! They were nice, security was nice, it was sooooo clean, they were very prepared, very protective of us patients which I absolutely LOVED! They have you to sit on the bench by yourself and only the patient can be in the clinic unless it’s a minor. The place is humongous, rooms really spacious and they were very very sweet and kind and didn’t treat us as if we already HAD COVID. My test was only $10 and I’ve paid $80 before so I was very pleased.','2020-07-02 05:54:55.879000','2020-07-02 05:54:55.879000',5,'Williesha Robins','https://lh3.googleusercontent.com/-IVw43qe2hbM/AAAAAAAAAAI/AAAAAAAAAAA/2QbUgoyWXmU/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',21475),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp0qElQbwiAqqTrGFPA_x5xmfCl_cvIZIUmXIn8XR-NBndrSksa5QUhv0jwzlj6fB-8XCRYgLOV0MdBBnW5vRmLOM9zMU','The staff is very kind and willing to listen to any problems you are having. I got all my questions answered. Great people to be around if you dont feel well','2019-04-18 20:22:41.608000','2019-04-18 20:22:41.608000',5,'Alyssa Llanes','https://lh6.googleusercontent.com/-Ousoy7d_2Hk/AAAAAAAAAAI/AAAAAAAAAAA/e-e-Gcb4Xbo/c-rp-mo-br100/photo.jpg','8918455867446117794',9144),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp0S3-tZnwIxP2yA_asdxqQlC2qh0_Tg4pG3U1t97aan_GOuDaCVoKFBGU9YhfZ2nKDTtKZr4wCcFM3zv-P-k0riIABYc','The staff was great. Jocelyn was perfect with check in. Marcus got me back right away. I couldn’t have asked for a better experience. Nurse Alvrwn and Dr. Chukwuma were perfect.','2019-07-01 20:33:05.572000','2019-07-01 20:33:05.572000',5,'Nicole Wardsworth','https://lh6.googleusercontent.com/-u6Fmp3eVWBc/AAAAAAAAAAI/AAAAAAAAAAA/f4EJuWeXIeU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp0W_7FFvmEsX6zFidBYdHQFQkhzw1_uxnMH1KqBZhCiszPx-NC49a6u5Invt6JHUPTnhDadALM1l-2u7xW6333SVrSkY','The staff was a great help, I was seen very quickly and was out of there in no time. Anthony was also extremely sweet and kept checking up on me to see if I needed anything.','2019-05-31 21:37:34.442000','2019-05-31 21:37:34.442000',5,'Kazzy Alaniz','https://lh6.googleusercontent.com/-w8YovlBfPcE/AAAAAAAAAAI/AAAAAAAAAAA/8I-IgHYoSVk/c-rp-mo-br100/photo.jpg','16590124370714063921',3371),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp17n6m9ahaWTETtbBl9ouQiVxMvh3mVdMCPgYN_tIZb0fN9BLNKosh4kRX8hNaYeW6RoCjQG7hLNjgYsjbijU-8aZ3UE',NULL,'2020-01-18 22:12:01.145000','2020-01-18 22:12:01.145000',5,'Garland Vennus','https://lh5.googleusercontent.com/-M3O0kf-OdYY/AAAAAAAAAAI/AAAAAAAAAAA/7HhqomLraHE/c-rp-mo-br100/photo.jpg','16389487648212004696',10045),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp1eXktJlJD5aZK5euUUYD6CUeU2MoEQdk-SllxMkhBwVstTEAf0ygOYOGQXfJDj2Nk26p4p4YdlD5LfpRylhFgiwRAAY','Very good and friendly staff. Thanks Dr. Ybarra, Stephanie, Rollie, and Natalie for being good to my daughter!!','2019-10-22 05:53:10.127000','2019-10-22 05:53:10.127000',5,'Shirley Ward','https://lh6.googleusercontent.com/-SChtERPwj54/AAAAAAAAAAI/AAAAAAAAAAA/P5ApNl7idrE/c-rp-mo-br100/photo.jpg','8679688254631342173',8779),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp1NVDZ1ZuM598LYqz4xDaoTLOD79XtfxW5CrmTEuYNZsYBSotJpTwHKmAZ-jPVm3sI-vHBIdag8iZjRaP_kswUJ5jzkA','It doesn\'t matter what time, it can be 1 a.m. or 9 a.m. the staff, nurses and doctors are all professional and friendly. We are thankful to have such a clean and wonderful facility in such a convenient location. Ashley B. and nurse Erica took great care of me. There is nothing worse than feeling awful, having to fill out paperwork and wait to see the doctor. But this wasn\'t the situation here, Ashley B. was friendly and accommodating. This facility has so much to offer! Thanks Signature Care!','2019-01-02 14:39:25.009000','2019-01-02 14:39:25.009000',5,'Colby Moffatt','https://lh3.googleusercontent.com/-oChJKhdMBYI/AAAAAAAAAAI/AAAAAAAAAAA/3OhAp4aoQq8/c-rp-mo-br100/photo.jpg','8626688543755174284',8619),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp2A9Gx2tXZZHWqIGAIBa8Q4MthSN63wvjCU-5KuUlWDfhC13ER0zgbl4-xvI81Ghc2TbegNuludC0_Qz717Oc8jOed90','The staff at signature care emergency center was super friendly from Shania in the reception to the Nurse Alexis and Leah the tech they all moved very quickly to see what was wrong with my son. Dr .Thomas was in to see us within minutes of us getting into the room. I definitely would recommend and would come back especially for after hour emergency care.','2019-12-19 06:43:12.189000','2019-12-19 06:43:12.189000',5,'dianagee27','https://lh4.googleusercontent.com/-h7IXwP6ANLk/AAAAAAAAAAI/AAAAAAAAAAA/BNVqtTYH-Fk/c-rp-mo-br100/photo.jpg','13486358490203335051',685),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp2b8EqX946Ja8Rn4-veOhDbcC08gGd6fS-pZMzXBnpSU-rm5zL2WADhZ2--Vpn4diQxVkSVFJDiZpx_Fx82ew4b3lAoQ','Dr o’malley Patricia & ekaterini were great! Great customer service! Got my partner in & out in no time! 10/10 recommended!','2020-03-13 13:15:25.233000','2020-03-13 13:15:25.233000',5,'Destanee\' Daniels','https://lh5.googleusercontent.com/-hG_mAnwJN5s/AAAAAAAAAAI/AAAAAAAAAAA/ALnyd5lIdw0/c-rp-mo-br100/photo.jpg','16389487648212004696',13705),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp2BxrCKi46u0alH4-IlFjqlL5lyjqbJJt-3-7KmDtVW-bF9taW78cxQpQKujXi0eUWQiezxX8CrnkSJFxKhgpRv0uMio','Dolores, Johnny, Bryan, James and Dr Grinblatas were all so very nice and welcoming, I recommend anyone to come to this location.\nThanks again \n\nVictor','2019-02-12 15:30:53.757000','2019-02-12 15:30:53.757000',5,'Victor Perez','https://lh4.googleusercontent.com/-_MqMYf0JbDU/AAAAAAAAAAI/AAAAAAAAAAA/HZDTUJkpRGg/c-rp-mo-br100/photo.jpg','14904078213800803294',2171),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp2nxwz4PbsFJ-lmXv6bpkmLRyFEry8S_7t-cn6VS7sRqDwX-lm_-TPNatZ_iGaYRa6pQgo7gg4pjQDZO4wXtundCLgrg','We brought my scared 10 yr old in with an infection this evening and received excellent care. The nurse, Mollie, and Dr. Henderson, were both so kind and gentle with her. They worked to comfort her through the whole process and communicated every step they made. Both thoroughly explained her at-home care and we left very satisfied with her treatment. We have found our new er facility!','2019-11-05 04:02:33.658000','2019-11-05 04:02:33.658000',5,'John Schumacher','https://lh3.googleusercontent.com/-O0cO9YjQAFY/AAAAAAAAAAI/AAAAAAAAAAA/o98w8dx1fVE/c-rp-mo-br100/photo.jpg','3272657195432704501',6869),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp3kOQ3KQmB9gg0QPUFWjSkxcWkKBebOXp4ZXB_PCgsIv-boVmb3i_Fy1lD9Xla-bLAYVTICeVsPmUy9-Q6OjVHrYBc24','Everyone was really friendly and communicated everything in a clear and concise way! Glad I was in good hands while feeling unwell. Anthony was my nurse and he was awesome!!!','2019-06-03 22:11:49.649000','2019-06-03 22:11:49.649000',5,'Katie Gauntt','https://lh6.googleusercontent.com/-6CHr_a2JWfQ/AAAAAAAAAAI/AAAAAAAAAAA/hIMh7iCGe4o/c-rp-mo-br100/photo.jpg','16590124370714063921',3369),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp3mj0O_rXSenvX-mwq80KEuL0wIZyx-w70S6T-FtlVAzzo8JlDeqOHiSqHs_kHVpTGvazD0Dkz0nHDubM9wFLTGR3eWM','I went into this clinic in the middle of the night last week with severe abdominal pain. Nurses Ian and Towsend and Dr. Miller were competent, skilled and compassionate. They diagnosed my problem and arranged for transport to the hospital with the utmost priority being my comfort. I would highly recommend this business!!','2019-01-12 16:49:13.421000','2019-01-12 16:49:13.421000',5,'Bette Whalen','https://lh4.googleusercontent.com/-ZANBK7v9MXI/AAAAAAAAAAI/AAAAAAAAAAA/UVA9EK1ylN0/c-rp-mo-br100/photo.jpg','16891069708558046635',4370),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp3wsfL2IR8lIAmdHK-3gxk-AC6tDwBauIykuvCHLmzn84mbX-bddErF8POcwY1oXkuiAMCEgI7s6wu1fqlQMd25WgCiU','Thank you to Dr. Patel and all of the nurses/staff on duty today that helped take care of my daughter. This has been the most professional and caring experience that we could have had. Nurse Tammi / Charlotte thank you for the attentiveness you gave my daughter. Nanci, Norma, and Vy, thank you for your part in checking my daughter in and getting tests done. I highly recommend your facility for minor emergencies.','2020-02-23 23:22:50.513000','2020-02-23 23:22:50.513000',5,'Mona','https://lh3.googleusercontent.com/-drXrVn4wGUM/AAAAAAAAAAI/AAAAAAAAAAA/BB5jU0atEOQ/c-rp-mo-br100/photo.jpg','17898197009688164559',14130),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp4fU7-VVRV3Z-ZVKbACZUU8v60jpHGrw1hhjr-wCpibkfA2Tdj3W8NkLQd3iMwda4bExfqdIoUFSw_65BWF8wNijeK2I','I am very pleased with my experience at SignatureCare yesteday. I came in a crying, in pain mess and I was taken care of immediately. They took my information and I was called back before I could even finish my paperwork. The staff listened to my concerns and took them very seriously. Making sure I was comfortable was their first priority. They made sure I was out of pain before anything else happened. I was informed of all the tests that they were planning to run on me and they made sure I knew what was going on the whole time. They got me warm blankets, water, offered me snacks, offered my friend and fiance water and snacks. They called me today to make sure that I was still doing okay. I highly recommend. Dr. Wang, Nurse Jacob, Radiology Tech Juan and Kendra made my experience very pleasant.','2019-10-10 22:12:04.806000','2019-10-10 22:12:04.806000',5,'Jesse','https://lh5.googleusercontent.com/-loEZVnltPdY/AAAAAAAAAAI/AAAAAAAAAAA/67pREg1Wp_Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3153),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp4XU5JOb4ILyQ9-1XY8C7EBOJLACD9wvvSbYtViSBKoHVOD_qsTLVfILFEfPniirAFZs3ZWhXZEujWk2IncSf23EZGvM','An amazing emergent care. I was turned away from other 2 redi-clinics around the montrose area. This may be a bit more expensive but the amount of care and attention that the friendly staff here gave me I will always be eternally great full. Thank you so so so much. ','2016-09-19 21:19:11.748000','2016-09-19 21:19:11.748000',5,'Jonathan Russell','https://lh3.googleusercontent.com/-50M6klHZkOY/AAAAAAAAAAI/AAAAAAAAAAA/dnOrCr3cEqs/c-rp-mo-br100/photo.jpg','3511292162159714121',7940),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp52J7ZbiCGXC8CaH_wzjsJswoPIch-WNcV8AIB_pNsV1T-cXbGR6iPkMh0QHYgTHhL9tZzOChkKyJvWgq8nl9FLfaA1A','I had a great experience here! The staff was super sweet from front office to back office! The doctor’s bedside manner was excellent !! I drove 35 minutes to come to this ER and will do it again!!! They got me in and out also! Thanks again for taking such good care of me.','2020-07-29 12:48:47.607000','2020-07-29 12:48:47.607000',5,'Mahogany Sneed','https://lh5.googleusercontent.com/-9WQ-00UqlNE/AAAAAAAAAAI/AAAAAAAAAAA/QMGiGW7Qu4c/c-rp-mo-br100/photo.jpg','14748677429039074158',21904),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp5bCbR36apXpeC_98yl6kO7oMSHNOo_i4ybMYXljrO0yLBPFGp7hvA8a1CF4xwY_uk73lxKAKI5O-1Rd9D3oyv6CUs1E','Everyone displayed good customer service. Even though my situation was minor I constantly checked on and was out of there less than an hour. I was given proper medication and felt better hours later with the treatment that given. Highly recommended','2019-05-16 04:27:02.232000','2019-05-16 04:27:02.232000',5,'Coco Latoi','https://lh5.googleusercontent.com/-LMiaIX86D_M/AAAAAAAAAAI/AAAAAAAAAAA/iy1MppOSqzY/c-rp-mo-br100/photo.jpg','12541597562633926366',505),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp5TMY6kMXshDRw8Pz2dWqfWJxvAOrCm2gZB_-jeeduf6apRSawdkVDIbEKMRTtq7RnHjh1xFaC7bOYYnZb2lw_3fSdO4',NULL,'2019-11-05 17:05:14.179000','2019-11-05 17:05:14.179000',5,'Rosaira Torres','https://lh3.googleusercontent.com/-lOXmilKk1ow/AAAAAAAAAAI/AAAAAAAAAAA/8U9-rTtmiuI/c-rp-mo-br100/photo.jpg','2694018788013845459',6019),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp5VzOCyAZDOfElHtSJEeqa_UzlK8UG2TfM8Cod66Dn54zUumRcTgVO-wudndjAeM3kJn4L2Sw6uFqPWDcTH6h-PNm5cE','It was a Saturday and I woke up in excruciating pain. I’m one of those that hate going to the doctor, let alone hospitals and emergency rooms. However, with the counsel of my wife and the pain obviously not going away I knew I needed to do something. I pulled up google and noticed the two nearest ER urgent care centers closest to me had horrible reviews, I understand that people who have negative experiences are the first to post a review but these were bad. So I decide to look further and found this Signature Care ER. I was ready to go. From the moment we called to let them know we were coming I could tell we picked the right place. They met me outside with a wheel chair and wheeled me in directly to my room, no wait. The nurse Jessica and tech John were extremely friendly and caring. Dr. Boester took no time to quickly diagnose my symptoms and relieve my pain. I’m very satisfied with the care I received, and although I hope I never need to see them again I know exactly where to go if I do.','2019-04-21 13:59:18.660000','2019-04-21 13:59:18.660000',5,'Samuel Peterson','https://lh4.googleusercontent.com/-iXNkTL2_Efo/AAAAAAAAAAI/AAAAAAAAAAA/04UTrzbJAU8/c-rp-mo-br100/photo.jpg','14904078213800803294',2147),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp5Xth4gRzzuOTBmdhfdc3RKGiUBPcLB_EcLaf4Dh6t-XpMW6wdDSdej_kywxsTyMoE2444dm7Fmt8L0D4ebTCtGx2g-U',NULL,'2019-01-16 16:08:21.950000','2019-01-16 16:08:21.950000',5,'Jackie Jaiyeoba','https://lh4.googleusercontent.com/-3LxDrinjTPk/AAAAAAAAAAI/AAAAAAAAAAA/xO_pO5HiNhM/c-rp-mo-br100/photo.jpg','17394740196501090048',4736),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp6B-4zwdvRPRsS0p86myH4bVPZKJ7wdB1e5JiiStxunJu-NOPf8CL6sKKDzB9s1TIKUmZaIy04DvYqha0pYnZmO_JMfk','Danna, Tricia, Jordan, and Patricia Everyone was extremely polite and amazingly informative I will definitely come back if needed','2019-11-15 19:03:59.697000','2019-11-15 19:03:59.697000',5,'P3 Music','https://lh5.googleusercontent.com/-HIAYaaQlJ50/AAAAAAAAAAI/AAAAAAAAAAA/HsIp9e3Q0tE/c-rp-mo-br100/photo.jpg','16389487648212004696',2690),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp6b6PD_EERDX6pLyt577xiJAmCETwSJ1Ou3NrNEuYpeJwY5fpWVqM3Pt_eTuIFFa9A6qiGRXxXEKpHia6bXkIv7YBkzo','Nurse Alvean and Patricia provided great customer service as always. Always friendly, fast and on point.','2020-01-30 14:12:03.980000','2020-01-30 14:12:03.980000',5,'Jose Angel Betancourt','https://lh6.googleusercontent.com/--ovjKhltU8I/AAAAAAAAAAI/AAAAAAAAAAA/0T1zP7wCDmA/c-rp-mo-br100/photo.jpg','16389487648212004696',10419),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp6bCw0ewlbrEKwlTEGAZ7bu51L1MmR8WO7XeETsBcIaJAs3kTV3FSxgT4sRemRseTBcgbaZdwii9F1fhbcz1j7CnF91M','Went in for a knee injury, stupid hard floor. 🤣They are always quick and courteous here and the facility is super clean! Thank you to the following folks for making my visit awesome. 😊\nAnthony - RN\nMorgan - X-Ray Tech\nNatalie - Tech\nand Dr. Jaber','2019-04-01 23:16:22.003000','2019-04-01 23:16:22.003000',5,'D\'Nita Broussard','https://lh4.googleusercontent.com/-2fxn37Zc3ZI/AAAAAAAAAAI/AAAAAAAAAAA/rzh7k2NIrqI/c-rp-mo-br100/photo.jpg','16590124370714063921',3467),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp6P-hham6QkHvDOOSzCZ_Ac7nhBUMss71eII4NZSF8E0S9ZIwMcy4wgThoCxgQffpquk1-AAmORS35CpHqE4KJLCCItI','Wow ! This place was amazing,great service from start to ending . They made you feel good to be in there hands','2017-09-17 04:46:35.816000','2017-09-17 04:46:35.816000',5,'Chino','https://lh4.googleusercontent.com/-zynKhaQxAvU/AAAAAAAAAAI/AAAAAAAAAAA/fWEMHjJP5s8/c-rp-mo-br100/photo.jpg','8918455867446117794',9359),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp6tsPmo_Oap63hcjZEHR8fkneCmrl-gGTt4YtCSzdnlKrwY7mfpRH21Dn5FsGbM-FEq56pRShcIIqsg8Gwe68irs58JY','The staff was very nice and friendly very timely help to me from the car from beginning to the end very nice. The doctor and nurses and exray tech were awesome. Thank you Kat, Graciela Luisa and Dr. Cavasos, I really appreciate you all for helping me feel better','2020-02-01 12:34:17.861000','2020-02-01 12:34:17.861000',5,'Shay Nation','https://lh6.googleusercontent.com/-0o6RXh5leGI/AAAAAAAAAAI/AAAAAAAAAAA/4zptxj5emnI/c-rp-mo-br100/photo.jpg','16389487648212004696',10412),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp6UZtweGusNRwbcAx84dmCifCaBAysQ4F9-Lm4JK_yhUXRN4a8wSl3JpATE3AVXT7HpEJtvPRS_Z4uqRQNQfdfl3nYAM','Incredibly fast and efficient service! A very warm, welcome environment where the patient is clearly at the center of everything they do. The facility was pristine, the billing/payment process was transparent, and the next day follow-up was a nice touch. Great experience amidst and an unfortunate set of circumstances.','2019-08-06 18:03:15.489000','2019-08-06 18:03:15.489000',5,'R Coleman','https://lh6.googleusercontent.com/-c7suy4cttcE/AAAAAAAAAAI/AAAAAAAAAAA/Dne8Qfyglxc/c-rp-mo-br100/photo.jpg','2694018788013845459',6095),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp6vfuucHWvL7vqnhYpVPpoA6tLmZxDtYTTzqT9OAI657v75OPK-j9Tkg3-evR3GMIUqz_z3hkt6DMZdOfyfpFp1mrHoo','This was my first visit to SignatureCare and I was very pleased with my experience. Alvean greeted me and my spouse with a warm friendly smile and Marcus was quick when it came to my vitals and xrays.','2020-01-07 19:17:00.882000','2020-01-07 19:17:00.882000',5,'Julia Martinez','https://lh4.googleusercontent.com/-r9jaRzQY8iI/AAAAAAAAAAI/AAAAAAAAAAA/yjaHk8F-neo/c-rp-mo-br100/photo.jpg','16389487648212004696',9429),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp6VgnXfPX7a9Vd5QQQU0CU_f8If2CFo1CO6rCqjRHUrsWEMH95XuebZUPo1PjOwqeNOdkOn9Eyf_U8N5u44T7SYbKzg4','Amy help me so much I had trouble find my insurance but she help me til I got it','2018-11-20 06:58:35.451000','2018-11-20 06:58:35.451000',5,'Jermaine Washington','https://lh3.googleusercontent.com/-BW_Yw1muFpc/AAAAAAAAAAI/AAAAAAAAAAA/D0-gd6yIrAo/c-rp-mo-br100/photo.jpg','8679688254631342173',8896),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp7BBC7zHDFDSVUSlRLynNRfGcvX1JZfvEnb6gScGPBxmjoW5Jrk7JSKYHu1aEsRvoezOcTLloG7tX394SgQgZKBsq1_M','I was immediately welcomed and checked in by Rebecca and Monica. They quickly provided me with paperwork to take back into the room. I waited maybe no more than a minute or two until I was greeted by Cat. She was very welcoming and got me into a room and quickly assessed me. Shortly after Jacob came in to assist and also offered me a warm blanket. I felt very comfortable with anyone that came in and they all explained what they were doing and what to expect. Rachel came in to do my EKG and she was very respectful as she had to put electrodes all over me. Stephanie also came in to assist with getting the EKG set up and they both made sure to be gentle as I had an IV in one of my arms. After doing the EKG, Rachel offered me a drink and anytime someone left the room, they would also ask if I needed anything. Lastly, I appreciate Dr. Herbert taking the time to fully hear me out regarding my symptoms. She didn\'t dismiss anything I said and addressed all of my concerns. Thank you to the ENTIRE team that assisted in my care and thank you to Rebecca and Monica for making the check-in/check-out process as smooth as possible. I was very thankful to leave there not in pain.','2020-07-28 12:30:04.753000','2020-07-28 12:30:04.753000',5,'Amanda Christon','https://lh3.googleusercontent.com/-rxkt7uT29Gc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnAohD7V5FnqZNZooX-iSc7jJr2wQ/c0x00000000-cc-rp-ba3/photo.jpg','16590124370714063921',22011),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp7CqUKADtgdQcvNz71B1NL1X0LvMLWXV9QygzQ0W5q4b5j6Z8o-hZdabR4IIQy41rBWVRmPL_bKKJZSPwcE6r7Es44sI',NULL,'2019-09-11 15:25:26.195000','2019-09-11 15:25:26.195000',5,'Lynze Coleman','https://lh5.googleusercontent.com/-rqj_0oR88nM/AAAAAAAAAAI/AAAAAAAAAAA/yO2HpuhlV5A/c-rp-mo-br100/photo.jpg','8626688543755174284',14676),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp7gm5OInrxfqGJ9mP4Y-najK3-e5M3KdwRMAnF-sMObxnyg1DvkV_Yf8Hbm1_TNki_Xad5WT8iRRraFKBikXuDgkNQYM',NULL,'2020-03-09 14:25:26.384000','2020-03-09 14:25:26.384000',5,'La\'Tasha Carter','https://lh3.googleusercontent.com/-rpZvnmRZr9Q/AAAAAAAAAAI/AAAAAAAAAAA/Iwag1kCrLMU/c-rp-mo-br100/photo.jpg','16389487648212004696',13720),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp7K1AGYCBF7nUrKp8XDXgbRU9J-NWFOMwiOSP3xXJdd6Tu2k1wvabLciJ0Sylt8v7PP5CmE_9KB_NIwKYoH8LK62NMJc','They are very friendly as soon as a walked in. Super fast. Nurse Amy and Sam listen to my symptoms made it a great experience. Made me feel very comfortable.','2020-08-04 15:02:15.430000','2020-08-04 15:02:15.430000',5,'Brenda Martinez','https://lh4.googleusercontent.com/-9OZdtpHEZqk/AAAAAAAAAAI/AAAAAAAAAAA/MAp3t06syyk/c-rp-mo-br100/photo.jpg','2077061009497551125',22734),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp7q3jNCfaES9CtKxZoDK1LbExL7o6G6QfKcelCBGtVCg0kX-K_Z47e-M6717IcKysxHiYUj7SYEeOsMDo-0YzdO3cTHw','I had good service at this Signature Care with Dr. Ding, Anastasia my tech, Agnes my nurse, Dion and Amy at the front desk!','2019-05-12 08:12:19.686000','2019-05-12 08:12:19.686000',5,'Brandon W','https://lh4.googleusercontent.com/-_DHVrJquwTY/AAAAAAAAAAI/AAAAAAAAAAA/Cap0kD1HPzI/c-rp-mo-br100/photo.jpg','3511292162159714121',7324),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp8BezDi7JDn9j6_IiSyfjYs8WHdrRcNfd3GmU2YA01gmPpoQRARh_Y9CJpyThn204zolhxKbLrnSX24ncNu1iZcPGPcc','My husband was in a lot of pain and from the moment we came in we had a great experience. Anna was very warm and friendly and got us registered very quickly. Thelma got us situated in our room and helped ease any anxiety that we had. His nurse Erving was awesome. He really made our visit go so smoothly. He was super nice, very attentive to both my husband and I, and he was more then happy to answer all of our questions, and was so relatable and just made the situation feel so comfortable and calm. Dr. Tran really went out of her way to help us find a specialist for us to see on Friday night and was great at thoroughly explaining all of the treatment she recommended. It was super clean and they have awesome snacks. Overall great experience, best urgent care/ER I have ever been too.','2019-10-19 02:46:57.119000','2019-10-19 02:46:57.119000',5,'Extra-Ordinary Events','https://lh4.googleusercontent.com/-QF4HSpBhvlU/AAAAAAAAAAI/AAAAAAAAAAA/BRmDcTVDQ_Y/c-rp-mo-br100/photo.jpg','12541597562633926366',397),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp8duCayi31vdfRZZuLZic_Lr9eQPlcV-PyDZLHy7QM_WmkljzLgp9lYPToFYB2XAdPtmOITO8fKAwBv4c1RsDDjMlo6s','My whole crew here was amazing from start to.finish. my nurse Frankie was patient and cool. Radio. Tech was very considerate and had the lights off due to my massive headache. And Malissa signed me in and out fast !','2019-04-06 22:59:35.813000','2019-04-06 22:59:35.813000',5,'CANDACE SUMLER','https://lh3.googleusercontent.com/-etHq2QRFbOY/AAAAAAAAAAI/AAAAAAAAAAA/dqAxx98gKws/c-rp-mo-br100/photo.jpg','12541597562633926366',520),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp8fZ85Jw8zQuRRk8LlUKKuQuM3GlUiEmUq4y2a-feU2BU1lRDvvdMgFJqDQqLx8Yi-2ETYz8HIgZLDU79r2TwYCdFxhU','Hands down the best ER, been here multiple times. There isn’t much of a wait, once checked in by Keera, you are call back and I was seen by the nurse Eda They run the necessary test and results come back with in 30min to an 1hr. Once results are in the doctor comes and to see you for your treatment and medication. I’m in and out of the facility with in the hour. Thank you so much for being the best!','2019-08-17 21:44:34.705000','2019-08-17 21:44:34.705000',5,'Cindy Huynh','https://lh3.googleusercontent.com/-yLfhTbV3fcQ/AAAAAAAAAAI/AAAAAAAAAAA/KDNRt3tSnRA/c-rp-mo-br100/photo.jpg','17394740196501090048',4617),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp8m6N5HexK4L3oicdO2gUB6Y8fn8RtO8NC4rJahHQSTnNfOuLlbWnAQtcZxw5Bwevjq8uufEULYlSAacxzki8zJ7op8g','Dr. Vakey and nurse Remington did an amazing job helping me. Everyone in the office was kind and professional, I was in and out in an hour, I was seen as soon as I arrived!','2020-05-26 20:20:19.298000','2020-05-26 20:20:19.298000',5,'Madeleine Frere','https://lh4.googleusercontent.com/-y-5iJR8GVnI/AAAAAAAAAAI/AAAAAAAAAAA/2sZ3TEoQ804/c-rp-mo-br100/photo.jpg','16590124370714063921',22681),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp8ojtdV6lNtwgKcYNddwFLFQrr2YLwRwbEgiWHJC4ZmtLCFYNsLFlKCOHn9Z_MZ8D1U8qBpEk85s4KqDx9SGRkkDYvS8','The staff were very informative, helpful, patient, friendly, fast and caring. I want to send a special thank you to all staff including:\nDr. Faig\nRegistration: Ana\nRadiology Tech: Tino\nE.R. Tech: Thelma\n\nI appreciate you all.','2019-12-23 03:43:40.298000','2019-12-23 03:43:40.298000',5,'Lacretia Richards','https://lh3.googleusercontent.com/-z3Csb5nzKHE/AAAAAAAAAAI/AAAAAAAAAAA/zICuNZz6_S0/c-rp-mo-br100/photo.jpg','12541597562633926366',321),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp8rpW1W3cdkqP3GBUlo9Mz9r070X1s0KSfdha5yXl-By_uDzDIbAeKfdOaRTqEY8FB8OYQgYmu19CDrD55DJ1EQeSuDA','i love this place staff is friendly , prices are reasonable .','2020-01-27 12:47:49.453000','2020-01-27 12:47:49.453000',5,'Jonathan Flores','https://lh6.googleusercontent.com/-3bMu8ifNdSc/AAAAAAAAAAI/AAAAAAAAAAA/X4V-KkG4soU/c-rp-mo-br100/photo.jpg','8679688254631342173',10329),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp8UuXhKKP7XOcaVdrv_EIAxToHhT6A-DI1ZK6lSLrc6n9XwhbEEge_zm0t6CsF2iK_2N8MMi5cUyjkHRHKPkohLkfcVY',NULL,'2020-01-31 01:53:19.147000','2020-01-31 01:53:19.147000',5,'Edward Marquez','https://lh5.googleusercontent.com/-2hK-1A6YteQ/AAAAAAAAAAI/AAAAAAAAAAA/Vc5QKk3F5QQ/c-rp-mo-br100/photo.jpg','13486358490203335051',13450),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp97ErDdKQhjpp-l8nV7rTq22mt0kx2W7pHkoNFDCGl-a3SBxAPUax-_rUimPmWE_lKI9yWhSp6fnUjtbVivsQBtVmvRg','They got my mom in and seen by the ER doctors so quickly than it would any other ER hospital! The ladies at the front desk were super helpful and so patient with us. Very much satisfied with how our visit was.','2017-08-23 22:48:27.996000','2017-08-23 22:48:27.996000',5,'nadia suleiman','https://lh6.googleusercontent.com/-0FUNygvaLEU/AAAAAAAAAAI/AAAAAAAAAAA/YDg-1dlZKxw/c-rp-mo-br100/photo.jpg','14904078213800803294',2332),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp9pvHc2sPYVCjGjCmjGVt8nmjNuV65J9KoW9Lakm0E2QMNGj7CtbQElHPQyhiANyISiD2qHwl5BDIBj5kdOAqqLHpeso','My nephew had a great experience here. Taylor helped out a lot and was the best. The doctor was helpful too. ','2017-03-31 06:19:16.620000','2017-03-31 06:19:16.620000',5,'Emmanuel Hernandez','https://lh4.googleusercontent.com/-AcRxYKY5Bdo/AAAAAAAAAAI/AAAAAAAAAAA/ZUUYWTn0f-M/c-rp-mo-br100/photo.jpg','16590124370714063921',4015),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp9SUSFE2qggAVti0yJt5dMHIPf7_4e5X0QN8fgVgPtVUPr44D_-PO5zs71LmNbrCPR1WZdp0NkaK3jSnuhS999HruDVs','I came in with an infected toe..GROSS.. Nour was the first person I came in contact with. She was welcoming, sweet, and expeditious which is totally important in an ER. Brad was the one I had the most contact with and he was awesome. He handled my machines without missing a beat. Also, he was informative and put me at ease. This place is awesome. In n out in a flash... Best service ever!','2019-05-30 18:42:07.850000','2019-05-30 18:42:07.850000',5,'Lindsay Thomas','https://lh4.googleusercontent.com/--WoICEmqDnc/AAAAAAAAAAI/AAAAAAAAAAA/mxqZmfH-WZ4/c-rp-mo-br100/photo.jpg','16590124370714063921',3374),('AIe9_BEHZ7lh7y1sP-UInhkpmlIp9THaARjebFUcpOvfxUBj9vCBLsj5hAjteb9AemakWRxVxzoZFx_G_78-QwRA6Ua-3bBqnHPPpGS8D7Tr6iF9TJh0zJY','Good experience at this location. Prompt and polite service. I will recommend and visit again.','2019-11-03 22:17:05.847000','2019-11-03 22:17:05.847000',4,'Jerry Forrester','https://lh3.googleusercontent.com/-XcGcyDjBodc/AAAAAAAAAAI/AAAAAAAAAAA/Y-DkIPQLqps/c-rp-mo-br100/photo.jpg','16389487648212004696',2729),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpA2yHOKBuMbLuZJjpS2CX7daoANircYcqcN-VyHW13bICmw578NDD9lO2V4vxvdBPl_gw8kwIkXPhHkwZ52maEyN2ib4','The entire staff at The Heights branch took great care of us. Dr. Thomas was extremely thorough in her examination. Sindy got our paper work fast and into the room quickly. Gina and Diem explained all instructions thoroughly to us.','2020-01-08 18:37:08.946000','2020-01-08 18:37:08.946000',5,'Anna M Garcia','https://lh3.googleusercontent.com/-ljSIoJKhMso/AAAAAAAAAAI/AAAAAAAAAAA/oF9BUFsEXcM/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',9441),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpA3IFCRfn45hdnSZK5tIHFP5kj9Oaf11b4iLpyWvGFDMUli5YPBUYGhbpaRRllbwFY6Nrjw3qMdcAKo0ihBW_AdWO7Q4','Had a great experience great staff dr patel, mark dolores kevin and arron were great in getting me and out with my sick 3 year old very pation and attentive highly recomendable','2019-01-09 16:35:15.047000','2019-01-09 16:35:15.047000',5,'Stephanie Garcia','https://lh4.googleusercontent.com/-s3UlUDF83XM/AAAAAAAAAAI/AAAAAAAAAAA/fBEL02lhLkY/c-rp-mo-br100/photo.jpg','14904078213800803294',2184),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpa69VOQsW5VIe9QsCbbKk8ob_RV2EpYpEyNmY7-3K5hQlCZsuoTrGhj21EeBtvPG3-PAjUlqUlHf69vI_OVpsJMmmYPI','I\'ve visited this facility twice. Both times, there was no wait time. The front receptionist was very kind and helpful. The doctor and nurses assisted us in record time. And the checkout process was a breeze.','2020-02-10 19:38:03.445000','2020-02-10 19:38:03.445000',5,'Jasmine Z','https://lh3.googleusercontent.com/-7ckcCHfU0Y8/AAAAAAAAAAI/AAAAAAAAAAA/dFTRvkrC2uY/c-rp-mo-br100/photo.jpg','16389487648212004696',22594),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpaa4u2ginA8A18UyHaVSBigkSAYJPHGRB7mHZ8soh16j0d34Q_PXMw8oOqd2GI3MsTRhl4Dtq0_30IzJ2AIeVIX7wNaY','I arrived for a ankle injury and was met by Ashley at the front desk who was very kind in helping my mother and I. We were seen very quickly by nurse Maynard and doctor Anders. My injury was then x rayed. Overall, I was treated with kindness and was not too uncomfortable during my relatively short visit.','2019-02-06 19:09:46.915000','2019-02-06 19:09:46.915000',5,'J3nni Potato','https://lh4.googleusercontent.com/-yL7tDNF19hA/AAAAAAAAAAI/AAAAAAAAAAA/ycbpg_XOSfo/c-rp-mo-br100/photo.jpg','17394740196501090048',4722),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpaBz_vMTGeFL-E5RDZrmyD_Wt5q13E_rd8hcl2TgS7eXtndvHAW_lmbS3l4zpC7IwNL7EHQPZ0jsIn2DgHxL1cMU-yew','Beautiful facility and excellent staff...Dr. O\'Malley, Nurse Jani, Erick in Radiology and Jesus at registration... thank you all for taking excellent, thorough care of my mom!','2019-05-18 13:22:54.632000','2019-05-18 13:22:54.632000',5,'Erica J','https://lh3.googleusercontent.com/-f9RVKKVz7OE/AAAAAAAAAAI/AAAAAAAAAAA/Nq1dmr5bcH0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpADTzcB-MnJUE-1BRoQ1krRpIWJ4vru07t5hHfoHviZvDih7FvGqlXNOmBaEzxrEwGhH8c-CZ99hCz-pRuYX9s882RI8','I had a great experience here. Recommend it to anyone. S/o Tera and Rene!','2017-02-17 17:46:58.193000','2017-02-17 17:46:58.193000',5,'Ricardo Alvarado','https://lh3.googleusercontent.com/-4FJeK1k-2T4/AAAAAAAAAAI/AAAAAAAAAAA/-XWj_IGmeuo/c-rp-mo-br100/photo.jpg','17394740196501090048',5113),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpajx52mC8KCCJ7lh4K9CpV2EiSNy2ILC9K9SgRE_8hFjaICfM_GWPN5s-gNTtvCBZCu26LguZZRGluHB1DdXeWSDvaiQ','Everyone that took care of me at Signature Care was extremely caring, thorough, and so informative. I was in a treatment room less than 5 minutes after I arrived. i felt so much better when I left. It was my first time having to go to an emergency clinic in the three years that I\'ve been here and this was the best experience I could\'ve had. Thank you so much to everyone, especially Gabe who was an angel.','2017-10-24 13:55:55.482000','2017-10-24 13:55:55.482000',5,'Christine Canales','https://lh6.googleusercontent.com/-c978iP8OzJY/AAAAAAAAAAI/AAAAAAAAAAA/Ejhf4rsgI80/c-rp-mo-br100/photo.jpg','16590124370714063921',3914),('AIe9_BEHZ7lh7y1sP-UInhkpmlIparfYGOyb8YqHsY3LA1J8Nf3ewz3sbflrSyAyxpM45G2lnbs6wg_sLCX_nt3ozjODlU7jM_bBpvNyf4YqVzPm_w-T0_4','This place is amazing. They got right to work without waiting for me to finish a bunch of paperwork. The nurse let me finish while they were taking action! Very comfortable and they let me keep the robe. Super soft. If anybody has had severe wisdom tooth pain, then you know how frustrating it can be for people to move slow. They never moved slow and they treated me like a priority! Dont look elsewhere this place is amazing and a blessing to the community.','2019-05-05 15:18:43.123000','2019-05-05 15:18:43.123000',5,'Stefon Jones','https://lh6.googleusercontent.com/-yPG7fuArHbk/AAAAAAAAAAI/AAAAAAAAAAA/oBoE1L3mahQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4287),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpASROmVj2doRfV89AJpeI6Sjy9funuC7QWrivGJUYDtFwNxUWCEGx6VETXgEpfnkL7WDqNMXs0jWw5KUrv2pyl5cWJ90','I personally didn’t get treated here BUT I took my friend and they were all so nice and helpful in a timely manner. If I need treatment in the future I would definitely chose this place!','2020-01-21 15:18:51.383000','2020-01-21 15:18:51.383000',5,'Paige Hanna','https://lh4.googleusercontent.com/-UxCLfBhorKI/AAAAAAAAAAI/AAAAAAAAAAA/vj3OkiZv5FE/c-rp-mo-br100/photo.jpg','16891069708558046635',13983),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpATuwH07PFimAy1xvYaNeG38nOWI_NlMDZecmHza8lzfkaiY2jp_rPEgQv0ilP-zHR5W9j96YWcVuomlJbkdV_NlNnqA','I visited SignatureCare for an x-ray and was in and out in under an hour. They took me to a room and were checking me before I could even finish my paperwork. The nurses, doctor, and x-ray tech were all very kind, attentive and professional. The facility was very clean, quiet, and my son enjoyed the snacks in the waiting area. I would highly recommend this ER Center and wouldn\'t hesitate to return again if, God forbid, I have another injury.','2017-05-09 11:49:49.769000','2017-05-09 11:49:49.769000',5,'Kristi Callaway','https://lh3.googleusercontent.com/-lbj42b0jd90/AAAAAAAAAAI/AAAAAAAAAAA/H2rdCi3PDhE/c-rp-mo-br100/photo.jpg','14904078213800803294',2361),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpavn9latBkUukOY4fs2y56vAlhxSQJrRQiOnyZclZGUAhhNqXaSPpo4ZP7Ln0lIH5PtyP7cHn6lkH0XQ1EYSeCA6mby0','Dr Elsbecker, Gabriel, Chris and Earl were all very pleasant and worked well as a team. Highly recommend.','2019-09-06 12:02:09.854000','2019-09-06 12:02:09.854000',5,'Gary B','https://lh5.googleusercontent.com/-ZcJto5fmEXo/AAAAAAAAAAI/AAAAAAAAAAA/1RqdJtUGOMU/c-rp-mo-br100/photo.jpg','16891069708558046635',4207),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpB3YXnaTgj9I2dF-dCZpavp7GIS8k5m7l4K1e3fIsK4QahQF1FF2_JT3OMdje6xyBHYMeOxGUtQqi_jKzE28k8mtfm2U','Tobie, RN Mollie, and Eric were so nice and made it a breeze getting us checked in and in a room!','2019-12-29 08:47:15.713000','2019-12-29 08:47:15.713000',5,'Christie Scott','https://lh6.googleusercontent.com/-z33DkZOIcVk/AAAAAAAAAAI/AAAAAAAAAAA/Ru0ZXLafTOY/c-rp-mo-br100/photo.jpg','3272657195432704501',6817),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpb5M394rTGxp7oG94v5DAK7Ija8D_h5zo2phkXMefZKn5X6s-DDF7KMbuhsD36tVJjStotMBh29RC1-6s_jqNMDkKyyM','The team at this particular er was fast and very friendly helpful and met all my concerns I would like to thank this team for how awesome you guys are Jasmine, Marcus,Alvean,and Dr. Vaagenes continue doing the best you can and be blessed always','2019-07-30 15:34:34.186000','2019-07-30 15:34:34.186000',5,'Winter Gibson','https://lh4.googleusercontent.com/-UQNOGaCvH9U/AAAAAAAAAAI/AAAAAAAAAAA/dWHwUevnwjU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpbGPLBfS2s9ESCcuyOHCGqiP57A3n_6OuQuboiegD1iWRwy7lQIxQI7-VRU9RFZnDcWmCh54hlDQODlgovh4MEfLXhTA','Maya was really excellent in getting me and my girlfriend through quickly with no hassle. I definitely recommend attending this place if you have an immediate need you have to attend to.','2020-02-21 00:04:07.662000','2020-02-21 00:04:07.662000',5,'D Mitchell','https://lh4.googleusercontent.com/-HQvMRAgySXE/AAAAAAAAAAI/AAAAAAAAAAA/ERnEvtMv2Rw/c-rp-mo-br100/photo.jpg','12541597562633926366',13361),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpbh0A8sCb0_oP5ZKjeSXTSS-XSPbjNcIqKUrgEvxZgmMpwvG1r2I8bRdUn-TV10hBwTuP3YsNMsrPCg-GgSwMuqOmceE','Great care, very helpful team!','2018-08-11 00:24:32.483000','2018-08-11 00:24:32.483000',5,'Matthew Thoen','https://lh5.googleusercontent.com/-duyE66FT934/AAAAAAAAAAI/AAAAAAAAAAA/AyXZfsCKXwI/c-rp-mo-br100/photo.jpg','3511292162159714121',7637),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpbL-K9vaWLid7kMd4vuBeGCzoIacWrOd5QfVx0Xeds8BM66hnc5PZBIdt0ILMO114GkZ4nUJ8snTHaDfQ-DyYCq6ysms','Brought my son and had the best experience with the friendly staff. Thank you Dr Patel, Ekaterini S, Jessica M, and Luisa R.!','2019-11-27 02:22:31.989000','2019-11-27 02:22:31.989000',5,'Vanessa Garcia','https://lh4.googleusercontent.com/-kKCzFLd372E/AAAAAAAAAAI/AAAAAAAAAAA/veiAaf0WdzQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2620),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpbNAcyNwOzUTiDAcdqUzJR_BW8w8ypQO2l--W-mAYhXxic43FxsWfW4cGdKy2PqgrWiSEAnIkRrlh-Dq6OvpT4vvps4o','Everyone here is so nice and welcoming, and the service was so quick! Definitely recommend! Dyveliz and Kim at the front are awesome!','2018-03-21 22:32:17.622000','2018-03-21 22:32:17.622000',5,'Shannon Moscon','https://lh6.googleusercontent.com/-2Dav0ijhUKU/AAAAAAAAAAI/AAAAAAAAAAA/jJgkzUIWYXM/c-rp-mo-br100/photo.jpg','16590124370714063921',3846),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpBZ790dv9_79qneL7q_AQqk3S6Ci_X7HXTf0yP1mS0FT7VXg1CfmfJrPxP_xehMOkW90ojYHLd72AX0UDhnSIw_asMuw','I was seen by Dr. Waal, Nurse Christina R, Radiology Chad Y, Registration Aileen L,\n\nThey were all great as usual and I recommend this location to anyone needing to be seen for any health issues, these people are so kind.\nKeep up the good work \n\nThank you all\n\nVictor','2019-02-24 20:41:23.156000','2019-02-24 20:41:23.156000',5,'Victor Perez','https://lh4.googleusercontent.com/-_MqMYf0JbDU/AAAAAAAAAAI/AAAAAAAAAAA/HZDTUJkpRGg/c-rp-mo-br100/photo.jpg','16891069708558046635',4342),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpBzrwDSY7nosbZ_XvxREwiU7dU_hlw19BISizIXNPxAbYYnSq99Sz0SVizlsZPvcUdLXEOe7GalSZhRHQczlT1MPKGbQ','Anthony, RN and Natalie, Tech were both amazing and so helpful!! Dr. Lingan was very informative!','2018-12-07 22:20:34.246000','2018-12-07 22:20:34.246000',5,'Kaden Callihan','https://lh4.googleusercontent.com/-Zo4f5mmbJxk/AAAAAAAAAAI/AAAAAAAAAAA/rfq3V1Abp6g/c-rp-mo-br100/photo.jpg','16590124370714063921',3622),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpC19Q2gxuiyNbtNFechT9EIu3vjZD976-z2vpmc43Vu_RYRai0I_-axDboFXv7BntfTuUAfqVJWkEeXu2uJaPzVx_QFY','Very good costumer service provided by registration Jocelyn & Daniel \nMy nurses Lisa V & Kristina \nMy Radiolgy tech Allison \nAnd my Doctor Dr alcanter','2019-10-13 00:04:59.032000','2019-10-13 00:04:59.032000',5,'jose gallegos','https://lh5.googleusercontent.com/-P1td1vfLZ-s/AAAAAAAAAAI/AAAAAAAAAAA/zpse5bjMoTw/c-rp-mo-br100/photo.jpg','13486358490203335051',782),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpCAfpdboQYKGjR9SDOKpBMjyq-SHAgaqLlJtM-u3BJZHSGqZWYYopnDmJhZnCwusbpKo9l3Y_Sp0komwh5uiN28mOtpk',NULL,'2019-08-24 18:57:09.899000','2019-08-24 18:57:09.899000',5,'Amy Solano','https://lh5.googleusercontent.com/-0Kx3wzMstbM/AAAAAAAAAAI/AAAAAAAAAAA/UVsq0wWAkuc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpcHFZNI_SzmzCqTf6g7EEeeEE3wyfIlUMIVWtnOPr3zB9fNMKwqyAS0Fg-kHTaAe-ODm4rME-pwiCCjIk708quTb1K28','There\'s not a lot of instances you\'d be happy about going to an ER, but this place makes it as painless (ha!) as possible. I came in on the night of Easter Sunday with a horrible bout of food poisoning that had developed into gastritis. My nurse, Melissa, was so helpful and sweet, constantly checking on me and making sure I was comfortable and had warm blankets. I saw Dr. Ioram immediately, and she told me exactly what they would be giving me and how I should expect to feel, without being the least bit rude or presumptuous. They both kept me around long enough to test my hydration levels after giving me multiple bags of saline. I walked out feeling like a new person, armed with prescriptions in case the gastritis flared up again. I can say with ease I have never had such a pleasant experience at any medical office. I\'d recommend this place to anybody.','2017-04-19 14:34:46.435000','2017-04-19 14:34:46.435000',5,'s hanusch','https://lh5.googleusercontent.com/-ONTAL5S8Di8/AAAAAAAAAAI/AAAAAAAAAAA/uDCrw_4u75k/c-rp-mo-br100/photo.jpg','14567670160750071148',1844),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpciNMd4kT2bIvPE0MQvui4mVWopDv94DNtEZQ4SUmxsM1wfeN7Bb20bBrNRu6dhq0-yYMrqTEuTvgg1cZ3mriYX8kZOg','I love the friendly staff and clean place! Always sparking clean! I hate when my children are sick, but they are always welcomed here. Calli is one of the best nurses I’ve ever met! Always willing to help and it’s with a smile. No other ER like this one! You are In and out in NO time! I came at 10:02 pm & left at 11:15 pm. I love it! Best in killeen and surrounding areas by a long shot!','2020-02-24 05:26:57.441000','2020-02-24 05:26:57.441000',5,'LaSaige Sibley','https://lh3.googleusercontent.com/-N6CS8OFCie0/AAAAAAAAAAI/AAAAAAAAAAA/Oxb9s0RMbAM/c-rp-mo-br100/photo.jpg','2694018788013845459',14209),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpCMPaO-aDVO8tjDe7MhFNp_gHtrgQULvqGfOiJ-OormAoVHdsCaFcSzKaEAn3ly3dpY1A2f-SY7yVIoCmShmGa4dXOKo',NULL,'2019-02-23 19:33:27.016000','2019-02-23 19:33:27.016000',5,'Eric Cadondon','https://lh3.googleusercontent.com/-FXrGkpw3-FM/AAAAAAAAAAI/AAAAAAAAAAA/hgrkzB46OHM/c-rp-mo-br100/photo.jpg','16590124370714063921',3527),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpcQJAoPt3blYKrBUzJz_quZ-FxxQyqMiXOtB9vPUW4dli0VNjRaojGyygxaDOhx5xalco9c7bfjBZS84ffH2EAhhhTcY','I had a great experience! The staff was very friendly especially Rebbeca W. The staff made me feel welcomed and took away any pain that I had in a timely manner.','2019-07-21 20:02:04.957000','2019-07-21 20:02:04.957000',5,'Alex Wallace','https://lh6.googleusercontent.com/-c9yTSJ2s3cY/AAAAAAAAAAI/AAAAAAAAAAA/TYKkCmODtGU/c-rp-mo-br100/photo.jpg','16590124370714063921',3284),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpCWSxgEjq-G5m5eTwieYI4LM--1ljGQwlW9kiEYgv9PxRjja1Mt6H0LS7Je75MQO3aNAF3fOrzSn7fUK8ju0XqKt4PcI','This place is not only fast but efficient. The wonderful woman in the front Tanishia was warm and welcoming and got us taken care. Daniel and Fatima took care of us in the back! They are great!','2019-10-02 03:51:22.424000','2019-10-02 03:51:22.424000',5,'Kat R','https://lh3.googleusercontent.com/-u0ENH5-HRzI/AAAAAAAAAAI/AAAAAAAAAAA/ukTOCGpigN4/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5526),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpCwUB0XRpRCkMTsRzeir7QU8_cvdB-lDn6Ig01CRPB6J8vwPRQBngcxqIG3udqCmkyyJwaoMunbS2Md8gDsie4xtFMKg','Everyone involved were very helpful!','2020-02-25 17:12:31.703000','2020-02-25 17:12:31.703000',5,'Frank Mitchell','https://lh3.googleusercontent.com/-4bbsk7BGm7s/AAAAAAAAAAI/AAAAAAAAAAA/Z_tnhY1IcQc/c-rp-mo-br100/photo.jpg','16389487648212004696',13765),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpCXfvJ7ibv8byOO7MKZB2WewyyxZbzmW64fa24IpRMqajrhOw8pRE2FiUSATZzm-5qSAewgM64vXI2yRApJFf34uNozY','Shawn and Alyssa where helpful and really nice.','2020-02-13 19:37:22.055000','2020-02-13 19:37:22.055000',5,'Crystal Garcia','https://lh3.googleusercontent.com/-fjDnshN19C4/AAAAAAAAAAI/AAAAAAAAAAA/1xkrz9D_oEQ/c-rp-mo-br100/photo.jpg','8918455867446117794',14830),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpD5G0INumdx6ncyv1sStEI7swRFgcTZdHGrYknfAn8hEq_6CaX9OlpKVbhT1BPiUspIYtRm6hdZLKsEyABWaox08Xgi0','From the time we walked in staff was great and helpful! Shania was great and getting us checked in and to the back right away. \nLeo, Lisa V, Julie, Allison and Dr Huerta we all great at taking great care of my husband and getting him to feeling better.','2019-10-14 01:09:21.668000','2019-10-14 01:09:21.668000',5,'Jennifer Saenz','https://lh3.googleusercontent.com/-_F-8vnnfSuQ/AAAAAAAAAAI/AAAAAAAAAAA/MKLVXgJ-slw/c-rp-mo-br100/photo.jpg','13486358490203335051',779),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpDDyGjnIOpi-YLeO7wtSohSZ_H2fl5Po67jbgVXsKZ4B1YoH-a4fhJhGZUdCzozRi9akVQt6-15z9ZhMc0-_GIn0pQvk','Hands down the best Urgent care I ever been to!! Dr Harjai and his staff was amazing','2019-07-04 02:56:51.531000','2019-07-04 02:56:51.531000',5,'Linda Serrato','https://lh5.googleusercontent.com/-2PalJ1EkYU8/AAAAAAAAAAI/AAAAAAAAAAA/FlvHeHhFktU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpdeOsNruWq10yCSToNH-ebJbGpdaK0NgzWH1GkURJ0GpF1z3RjrFtzmFmBe0W2t7NNhzv5h4rzk9o0BLaIlEwm-cKCpI',NULL,'2020-02-02 04:24:05.284000','2020-02-02 04:24:05.284000',5,'Lynzi Morgan','https://lh5.googleusercontent.com/-9yKrAaIf3Vs/AAAAAAAAAAI/AAAAAAAAAAA/tSQkw7MQbEQ/c-rp-mo-br100/photo.jpg','13486358490203335051',13443),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpdf236WBQ9Kt2WyZHyZruh0UgaQ_7RhX67YpMqnwvCBSkAQeTdI6chCuGk8DcrQV_k1lAQEpkw1sPiZprj32-U6dPF_A','No waiting time. Amy was friendly at check-in and hand sanitizer and soap readily available. Social distancing observed with all staff. Professional and attentive From ER tech Brian to Nurse Mina. Thank you for your help.','2020-08-03 15:35:13.250000','2020-08-03 15:35:13.250000',5,'haaya123','https://lh4.googleusercontent.com/-oyj3aLbBquc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck6x9uKaJQDSNoZGhqgqaJI2KzHNQ/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22141),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpDQjCXyBxg0avu3IIcnImrn8Yk4Xm2lRz57Sm_4DO6R-Y-C8ztCE6l-_BM2jK6x72enXP3re9GgmJvT3H19uLWpofwY4','They are all very sweet and help you get better and tell you what to do','2019-06-06 22:24:20.381000','2019-06-06 22:24:20.381000',5,'Sam Hernandez','https://lh4.googleusercontent.com/-yxu_Szj8LKg/AAAAAAAAAAI/AAAAAAAAAAA/zDYVDI40EiM/c-rp-mo-br100/photo.jpg','6521947413723274945',8249),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpdVU3iUZjQ2c8kf9D6oRxm77pLsBo4Wu2qlBpIERAJOKbREihb8-oBcldwVO6bBtBwOw6vDpiT1AFw5Mv9pArTIgKE0g','Very clean, quiet, and friendly place. I was very surprised with the amount of equipment on hand too! They are also very good with giving you the resorcres to follow up with your regular physician. Definitely will be keeping this place in mind if an emergency occurs again.','2019-01-26 20:03:09.248000','2019-01-26 20:03:09.248000',5,'Amanda Ackerman','https://lh5.googleusercontent.com/-q1fe2GD57fA/AAAAAAAAAAI/AAAAAAAAAAA/PyfmC60opo8/c-rp-mo-br100/photo.jpg','16590124370714063921',3575),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpdYw6WipFLGopxj_RVyXkkfh6n2IPL-xHcQrW7-z9bKFj4HJAkCIY_b8FOf_QpOwhKFhYOc_ANVNirE6jr3HiqpLAhtU','The whole staff was amazing and they took very good care of me. The dr. was very nice he actually stopped and talked to me instead of just treating me and leaving. All the nurses were very sweet. My visit was faster then a regular dr visit. I definitely recommend this place.... oh yeah the warm blanket was AMAZING!!!','2019-02-15 21:49:13.892000','2019-02-15 21:49:13.892000',5,'jasmine Smith','https://lh6.googleusercontent.com/-8O4ks3q-laY/AAAAAAAAAAI/AAAAAAAAAAA/VVb8JL7UxPo/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9179),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpE3TR40YIA7z63etyqSFwlCCnVwYU9rh4QSYp_UmW2dkaMib6UwGst9q8cHzNfuOO0Yo9Ou0YOqDqgwSBCSLC1s_xKbY','I had a great experience! My friend was able to be taken care of in a timely manner. Kendra, nurse Jacob and doctor Vakey are very professional and super nice!!! Would recommend coming here!!','2020-01-18 22:02:26.271000','2020-01-18 22:02:26.271000',5,'Morgan Kingsbury','https://lh4.googleusercontent.com/-kWDmgbYpPLA/AAAAAAAAAAI/AAAAAAAAAAA/vEgNh28i1dI/c-rp-mo-br100/photo.jpg','16590124370714063921',10059),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpE5xUm6mTPkTYi0VCQM6TstNtqXrzHnK7B8r6orWrFvCu6s4no3vALaP8a8JJxatf_YH1em5CK30QoytTx29-De4_OTc','My family and myself went to go get tested for Covid-19 and the staff wore all polite, kind and answered all our questions and concerns. I will highly recommend this facility and we received or results in 20 min.','2020-08-05 13:22:01.697000','2020-08-05 13:22:01.697000',5,'Oliveth Flores','https://lh3.googleusercontent.com/a-/AOh14GitMnuIPyPhnLc1Gq7FOzVLz0FLpwnd850jNGC_3A=c0x00000000-cc-rp','14904078213800803294',21928),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpeatrUYZDE1iiVk-GiRA9neGb1_2ridI8isglYMHpV23H9rKFDlTRUMsqod4IRc2Pb9WyHwVKvEPCtAEfn2ISw_DqVkU','Rn Calli and Rn Laura asked me some questions and took my vitals today in the nicest manner and were very professional and kind','2020-08-23 23:31:49.928000','2020-08-23 23:31:49.928000',5,'Albert Sedillo','https://lh4.googleusercontent.com/-Y-82MCv8xfY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckBsGeq00NgJdvhk7JhLJNwcLeQSQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpEDZr7hGTIaHR5OLfO1abj_7MY7P20wa2QdUBtM24GkHzv0Xko8sfHjgNCnpnzIymrdz_lZWch61ZzHvEjzIXOY-X9yk','Anthony, Natalie and Dr.Pham were so down to earth and very helpful! Wonderful experience and very efficient.','2019-01-26 21:37:41.248000','2019-01-26 21:37:41.248000',5,'Lexi Taryn','https://lh5.googleusercontent.com/-G2zaRWVBVys/AAAAAAAAAAI/AAAAAAAAAAA/JtmWVmSDHTA/c-rp-mo-br100/photo.jpg','16590124370714063921',3573),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpefReNdGUSmWUK2emiPnJAwD-B_OWvxOSPLOo_kD97jlwVfz-5ca0eQV5R_YqJubYHmNqAY1YfqwY8pb0569v_qp4QVk','Honestly, I had my doubts about this place. I saw the amount of reviews and the rating and it completely threw me off. I’ve had bad experiences at the hospital ERs in town so when I had to go to the ER I figured I might as well try this place. SO GLAD I DID. check in was quick. The front desk staff was nice. The doctors, paramedic, and nurse made all the difference. I wish I could remember the names of everyone who took care of me because they were amazing. They were extremely attentive, caring, and professional. It was the best experience I have EVER had with medical care. Hopefully I don’t have to visit an er for a long time but if I do this is my first choice','2018-02-28 05:07:15.424000','2018-02-28 05:07:15.424000',5,'Mina Heldich','https://lh6.googleusercontent.com/-6Zs7yI9ikQc/AAAAAAAAAAI/AAAAAAAAAAA/kSXf6Ne1ZbQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3855),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpeI4Hxbvl1KheuomQ9Mkpm7om1sU9BzpK3eSp-eX2N2r5EjE6MAEtaJvC-7FLxA1Ly8d3s4lvK-0mVykbmuSG4UxaqhM','Awesome staff....Deanna and Alyssa were great at the front desk.... prompt and courteous, and the Lee the officer was super....thanks Signature ER!!','2019-11-14 03:36:13.299000','2019-11-14 03:36:13.299000',5,'Kena Ware','https://lh5.googleusercontent.com/-zULAzXzYo20/AAAAAAAAAAI/AAAAAAAAAAA/PwNU7-T_s7g/c-rp-mo-br100/photo.jpg','16389487648212004696',2709),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpeMGPUE9s_NzMggzOxoRFU4k4m33QNqbDOpKQF08Fe1CIvrRvF1-GajFh7_5ioDHUrEFcSZpiQUKrEBkK3JUrFwyOfy8','The staff was fast and friendly when getting me seen by a physician and getting the care I needed. I wasn’t feeling well and had an infection which was taken care of swiftly and with smiling faces. Thank you guys (Churiah, DrSoli, Kelly, and Jasmine)','2018-08-04 00:59:21.978000','2018-08-04 00:59:21.978000',5,'ilan','https://lh3.googleusercontent.com/-F6-sQme2S8I/AAAAAAAAAAI/AAAAAAAAAAA/rXAbTMxhGKY/c-rp-mo-br100/photo.jpg','3511292162159714121',7665),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpeP0_Fk3jyQOc0O744ZMRogijBaqgtsiQ43WabmaoQxZ0_ja96SdWyTkx_rH58leGssmS_n2H2IH8CwRI2uT8oo9BQMw','Friendly staff, loved the nurse that helped me','2020-07-28 05:16:02.079000','2020-07-28 05:16:02.079000',5,'Maddy Martinez','https://lh6.googleusercontent.com/-hk6-j3VMNSM/AAAAAAAAAAI/AAAAAAAAAAA/nhpfFlRMmP4/c-rp-mo-br100/photo.jpg','14748677429039074158',22539),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpePWoNh6jKaU42HpzE9YxxWCzEBP7MPZRAv2SdSvuNye7gmFvkuEcdSgCWj4MTdkNF5uV37Bz-Ddle6NHJHk0JL05il0',NULL,'2017-08-15 19:24:32.941000','2017-08-15 19:24:32.941000',5,'Buthaina Shaqsi','https://lh6.googleusercontent.com/-iWTa3yMw-yI/AAAAAAAAAAI/AAAAAAAAAAA/NEhaSMzF0iI/c-rp-mo-br100/photo.jpg','16590124370714063921',3966),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpeSjU2fGZFmX-ySoFyT9-BAkX0SXn290eZY99KODKff903X022K9GPpI1dCg8WyoPW96v-EcKbzrjVF2QIgeYgtQLYKw','The staff here were so warm and engaging! I’ve never been to an ER or hospital in my life and had questions about insurance and procedure and they were able to answer them all and put my mind at ease! My wait was so short I hadn’t even started the first page of patient info before I was placed in my room and met Laura my radiology tech, and Bretnie my Nurse! They talked and made great convo to put me at ease as we got through to the root of my problem! Dr. Vakey, came in and was very thorough on my issue and found a solution. I loved my experience here, it definitely felt like the real world Grey’s anatomy patient care I dreamed of!','2020-03-02 00:23:54.358000','2020-03-02 00:23:54.358000',5,'Shayla Houston','https://lh4.googleusercontent.com/-i3_GAd1-I9M/AAAAAAAAAAI/AAAAAAAAAAA/JIlJwjndvfA/c-rp-mo-br100/photo.jpg','16590124370714063921',13808),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpexSM9hKk_DyLPmJNHgKQTvd-nBBORbHXCdP0_KXbphKO1TjzcBz5fZPSEVIjYwNhRxUnsSeLBOgn4KDxRikAxNlCfgU','Dr. Leavitt and Nurse Karen were great. No wait, great friendly service. Came in with flu like symptoms and left feeling much better. Hands down best care you can get in Houston!','2019-11-22 16:13:17.931000','2019-11-22 16:13:17.931000',5,'Dallas Griffin','https://lh5.googleusercontent.com/-3-rwAh-PQtA/AAAAAAAAAAI/AAAAAAAAAAA/wkA3gWHiYPY/c-rp-mo-br100/photo.jpg','8679688254631342173',8712),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpEyKMJ42bittXpotZ8crM59uT-xC40lBRFsVeGRPW3bc2kd1EFZP66aI2sXIRCeURoMT2lfXYBonP0hD-bCXl26DLO_I','All the doctors were super friendly the ones who attended me were Kimberly P, Vivienn N, and Katherine L. Everything went by pretty quickly and smoothly, totally recommended.','2019-10-12 16:17:19.117000','2019-10-12 16:17:19.117000',5,'Leslye Sanchez','https://lh5.googleusercontent.com/-bSh9b-tVgz0/AAAAAAAAAAI/AAAAAAAAAAA/UxaMZfqTAkw/c-rp-mo-br100/photo.jpg','14567670160750071148',1221),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpF1nCH7gpovZplMKF-sO7_yH08v3DEQYVhJ1fk1XxacV1svOgEjnfTuzXhvbaOm25XVuUlzts_u-VTaEYSG0oiWDEtf0','Kimberly P, Nicole G, Brandon W and Dr. Lindsey were great- very accommodating and quick service!','2020-01-25 09:01:00.929000','2020-01-25 09:01:00.929000',5,'Bailey Crowell','https://lh4.googleusercontent.com/-NG-UAaNkOVo/AAAAAAAAAAI/AAAAAAAAAAA/YtfBHGyrjyo/c-rp-mo-br100/photo.jpg','14567670160750071148',10127),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpf1PEBJ30ZneeRdUvq9md0yHkp4Q_XEYkS2705xRUx0aqz_clR0EA-efOFdcCgzfzkRVmwdGhxHfyaw3jCGiAe8vlTwg','My experience with signaturecare was a 10/10! Anthony was fantastic and made sure i was taken care of. The staff genuinely cares for the well being of their patients, i would no doubt go back and recomend signaturecare to anyone!','2018-06-02 07:03:48.064000','2018-06-02 07:03:48.064000',5,'Hunter Cotton','https://lh3.googleusercontent.com/-yQNHAoLZSgg/AAAAAAAAAAI/AAAAAAAAAAA/kUWUkk1xPBw/c-rp-mo-br100/photo.jpg','16590124370714063921',3823),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpfEx9BX0Ayygfq5YdZd24RCJK_4n6G0e44f7uCyFQt7o0c2nZeoeuq_jmRmj6L7mrCH0BoILAOs1A8n2-WOchqZhTRys','I\'ve been here a couple of times now and the staff is always very professional and quick to help. Special thanks to Adam, Andrew, Eric, and Dr. Lingan for being awesome.','2019-12-20 01:27:00.544000','2019-12-20 01:27:00.544000',5,'Stephen Frank','https://lh6.googleusercontent.com/-5e8pCCsQjXE/AAAAAAAAAAI/AAAAAAAAAAA/AXQ2AoLtZCI/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4108),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpFI7XmstLjEkfMvn8N6Ztilcq_51ElvFxanYIwt-Wusl2wGhvQA7T7urxXZVLhcKCMJXC3daxLCCvmPg-V3YDRhEl81o','This location was nothing short of amazing! Despite the circumstance and stress of having to take my 6 month old son to the ER due to a high fever, this facility and staff made the whole process, comfortable. We were greeted as soon as we walked in the door, & my son\'s vital signs were taken by a nurse within 5 minutes of arriving. I was expecting a very long wait to be seen by the attending Doctor, however it was the opposite. The Doctor saw us withing 15-20 min at most after his vital were taken. The entire staff, Nurse staff, and Doctor were compassionate, informative, and attentive to us on every level. My son was discharged around 10:30PM & the nurse even took it upon herself to walk us to the car & help us with our things, which was one of the kindest things a medical professional has ever done for me.','2018-09-14 19:24:54.774000','2018-09-14 19:24:54.774000',5,'Holly Pulido','https://lh5.googleusercontent.com/-uFP_qELNlcA/AAAAAAAAAAI/AAAAAAAAAAA/JEne9Yc-XVA/c-rp-mo-br100/photo.jpg','3511292162159714121',7597),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpFj11P_JfbGYjnw60STNAC80vYZJy6OJ9N7ygmHw4wIiVpNFfv0bxLjByAC0NZ9ZF7OHiaPeV6BbBv0KYI9ysPu5y8u8','Cindy the receptionist was very nice and friendly. Dr. Edwards Shelise was great, she was clear about everything. Very helpful and caring staff','2019-06-27 04:07:21.798000','2019-06-27 04:07:21.798000',5,'Rukhsar Mahmood','https://lh6.googleusercontent.com/-niQlgHtT4bI/AAAAAAAAAAI/AAAAAAAAAAA/MwQu0V3hUN8/c-rp-mo-br100/photo.jpg','17394740196501090048',4644),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpfP-nEKrqgsdzZu_SXbfU3tcJY0ZoxjEZ4w3Rh2bnCMBgEFxn-rMwGu0YyBV64JhtkZfVSLnaWhMq6kMMVqiGWeEh_YE','They have a state of the art facility with great medical center doctors! Would strongly recommend it to anyone!','2014-02-18 04:17:00.332000','2014-02-18 04:17:00.332000',4,'Kathleen Perley','https://lh3.googleusercontent.com/-NSyHKVIKa7k/AAAAAAAAAAI/AAAAAAAAAAA/PNl8N0AWEKk/c-rp-mo-br100/photo.jpg','17394740196501090048',5306),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpFZcMITGWK3iE6QbdYzBliv68w6RwadU735adu0-yfcnQSHfQcRkH1TxB27vkOkMp9AfJpX1c7NEd2UuTDJB_RFT5Rrs','Hands down the most satisfying customer service I\'ve ever experienced. When I went in there was no wait, the nurse at the front was very nice & helpful, and I saw a doctor right away. The doctor was very friendly & genuinely cared about my well being. ','2016-08-21 05:29:55.887000','2016-08-21 05:29:55.887000',5,'Daijah Sanchez','https://lh4.googleusercontent.com/-aQXxRxhUXhg/AAAAAAAAAAI/AAAAAAAAAAA/eZTmgZR_NmU/c-rp-mo-br100/photo.jpg','14567670160750071148',1988),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpFzj59Ku9FcOjOz-WEpIAT7GFI2mdf-DFl7r7hFct56C5Gaz-2bqOnijK0vyn7UVsYJJxyg','Came in with a friend who broke their arm. They were quick to get X-rays and immediately put the arm in a splint. The staff was friendly and checked on us multiple times while we were waiting for splint to set. Followed up with us and provided excellent recommendations for the necessary surgery he needed. The facilities are incredibly nice, clean, and they have a lot of the equipment an emergency room at a hospital would have., including X-ray and CT machines. Have been to several clinics similar to this and this was by far the best.','2016-02-08 03:42:37.756000','2016-02-08 03:42:37.756000',5,'Gabby Alred','https://lh6.googleusercontent.com/-CJSL043bq5Y/AAAAAAAAAAI/AAAAAAAAAAA/S4XKH-SAsEo/c-rp-mo-br100/photo.jpg','3511292162159714121',8025),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpG7RlzliJx5NccHqabBk6vndHlpR2tqAFIC0Y9nU1Qdf2e1p8znRUl3iK0R9ENsIM0Bvk4ADvQxMSFCpnxcr7xp4G0aE','Had a great experience! The staff (Dr. Elsbecker, Delfino and Katie) were great. They listened to my concerns and were very prompt. They made sure I was completely comfortable. I would definitely recommend this place to my friends.','2019-05-23 16:46:57.494000','2019-05-23 16:46:57.494000',5,'Sona Singh','https://lh3.googleusercontent.com/-LcDuICisWYM/AAAAAAAAAAI/AAAAAAAAAAA/FBKCU4vckYE/c-rp-mo-br100/photo.jpg','16891069708558046635',4271),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpgA5A4EqZHK0IISFtW3_FzUKYJg3Ns3XZkJ1KHOtlERyY6F8BSEkvkoge7c0buSPdnkLM46W300SYOl7IZqVP54Q5Jc0',NULL,'2019-05-20 21:08:42.076000','2019-05-20 21:08:42.076000',5,'Stephanie Salas','https://lh4.googleusercontent.com/-cnanq-R48sw/AAAAAAAAAAI/AAAAAAAAAAA/XgGhgd-CIqE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpgAqxsUnGnfzjTl92eUxQLuZzpz3OUaOB6ifbO3NE5m-qv__SF9B-i4lHAoyWmLnXPzFu-uwKs2NsN0EVNdWpJXru7JY','I came in and Patricia checked me in right away, the nurse Alvean kept me updated during the wait to get my test results and made me comfortable while I was there. The service was thorough and I got the help I needed.','2020-02-27 20:57:48.212000','2020-02-27 20:57:48.212000',5,'Maxine Monroe','https://lh6.googleusercontent.com/-YQ6dFr1pSKY/AAAAAAAAAAI/AAAAAAAAAAA/DvgOAH_Fxgc/c-rp-mo-br100/photo.jpg','16389487648212004696',13754),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpGfb2ClGKfQQhxvhdxwuhJytsEc7P1veUQv8ZKNY7gBMC1t3ZudX1Vhtg-u637qS8CogUUwFSyOw_S4J4rq3-fuS1fE4','This place is amazing! Super fast and love the staff! Dr. Lim was great... Luisa was super friendly and helpful.... Nikaela was super nice! Jordan was helpful as well. Thank you for a great visit!','2020-05-23 18:04:46.439000','2020-05-23 18:04:46.439000',5,'Jesse Montano','https://lh4.googleusercontent.com/-GH6lOsGRat0/AAAAAAAAAAI/AAAAAAAAAAA/odE1l7g6zF4/c-rp-mo-br100/photo.jpg','16389487648212004696',22583),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpgfVC2jbab3uAF5Vfipvvi-1KjIVfpqsqTCYYXgmQpMtUf3CFDvkzdYbPN5_7X565VEpd1xtztUUcgLfCcJnalA5d3Ro','The staff at SignatureCare Emergency Center were attentive, prompt, professional and most importantly very thorough when going through our reason for the visit and what they were going to be doing in regards to treatment. We were very pleased with the level of care we received from the moment we walked into the door until we left. The bonus to it all, there was no wait. Our Nurse, Shawn was very friendly and engaged with my 12 year old to understand his injury. Dr. Do was great! Brenda at the front desk was so pleasant and made us feel comfortable and welcomed. Thank you for your great care!','2020-01-31 14:39:03.469000','2020-01-31 14:39:03.469000',5,'Stephanie Diaz','https://lh6.googleusercontent.com/-c0LkP0l2UdM/AAAAAAAAAAI/AAAAAAAAAAA/HPFXBpSjWxg/c-rp-mo-br100/photo.jpg','8918455867446117794',14859),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpGG5eOszBLqcaXNemXlnb8HvWHu5LWDJqyC_E6F9LnXdItUBe1Zqm3vtxl-cJtoOJu0jUMYyx84AaL_VaP90vtvDbMwA','This is by far the best ER I have ever been to. The wait was very short and all staff took great care of me. Shanna was really helpful with my insurance questions and answering all questions. Go here they brink you snacks too!','2019-06-15 02:29:40.088000','2019-06-15 02:29:40.088000',5,'Mikey Winsby','https://lh5.googleusercontent.com/-KRsibd7fXac/AAAAAAAAAAI/AAAAAAAAAAA/EH_nqxMoh4k/c-rp-mo-br100/photo.jpg','6521947413723274945',8232),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpGIMYfGePajh-aCM16bxGa-U3Hc13mE0ipoDfVlgAkWoOYuKrxe5PB5rcN1i-13kDdNxyxc3EieQjwNuFCn6GaZpE79o','The service was very helpful and thanks to olivia and dr sylvester for going above and beyond.','2018-08-07 15:43:23.761000','2018-08-07 15:43:23.761000',5,'Grayson Pupelis-Sprott','https://lh6.googleusercontent.com/-dOpk95lwXC0/AAAAAAAAAAI/AAAAAAAAAAA/mNFclgWd_yw/c-rp-mo-br100/photo.jpg','3511292162159714121',7655),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpGIyHNVjue6hVR7XFHlA1eYPa2nDl4IUxt44edcpsEBLHPSOLn6lNFhilPHiI_LpfdCEI307jiE3xMK8QdWy6PpoHmC8','Best place ever super kind and make sure you get better in the quickest way possible.','2019-10-12 03:08:09.681000','2019-10-12 03:08:09.681000',5,'Kayleen Bustos','https://lh4.googleusercontent.com/-ZpDzI_4HUE0/AAAAAAAAAAI/AAAAAAAAAAA/J8fdG_lSQ0g/c-rp-mo-br100/photo.jpg','17394740196501090048',4585),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpGJPn4SRxXiOnicdzOkBVWru7zVA6u96QTHshhK0lPkj-jowSzaM3kdc6mnwoCfZCjxdkl8-Q-EyEDjBcuTEHVqCUN2Q','From first walking in I was greeted by Jocelyn A at registration and offered drinks and snacks, I was then taken back to a private room where I met Dr. Iheme, Alvean the nurse, Marcus from Radiology, and Brian the ER tech who were all amazing they really turned my bad situation into a good experience, I highly recommend this location!!','2019-11-20 20:23:35.457000','2019-11-20 20:23:35.457000',5,'Tressa Cain','https://lh6.googleusercontent.com/-qH-7h1-Jtko/AAAAAAAAAAI/AAAAAAAAAAA/QD1o9U0vP5s/c-rp-mo-br100/photo.jpg','16389487648212004696',2648),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpgo6aqGQZJFkZgLByJi4NSVIhuCoWRkjTOoddvhr3ImuzfPCmTe---mn7tfQzIIwHop9r3bXUzZPTN46Yrk9a0DSN9fo',NULL,'2016-12-29 15:29:48.916000','2016-12-29 15:29:48.916000',4,'Briana Wilson','https://lh5.googleusercontent.com/-7UrumDmaxYw/AAAAAAAAAAI/AAAAAAAAAAA/p-qOOp0zqkY/c-rp-mo-br100/photo.jpg','17394740196501090048',5143),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpgQLNOI-_vefl2pN47qDzr_5bsh3DhFBLUxkIKW9uEV5Q16N59e4zdektkQAf3AXONwGAjecG_DcykEb8SiI7eTcrn80','2nd time that I have visited this location when I was very ill and in need of good care after hours. I am self pay so the options that are quick, good and don\'t cost a fortune are limited. These guys are ALL of the above. I was seen by DR. SOUMAN, MD, ASEM\nNurse: Christine M M\nRadiology Tech: Sharesa A W\nFront Desk: Tatiana G D. They were perfect in every way. Thank you!','2019-12-05 19:23:09.920000','2019-12-05 19:23:09.920000',5,'Sista Whitenoise','https://lh3.googleusercontent.com/-zIvOTFKf8Sw/AAAAAAAAAAI/AAAAAAAAAAA/lymCXZMsLBg/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1184),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpgvelCLx5XZ-jXkzdM2aYKMiN3SlcuOFGfO-tWCn6t_2s3tY8PGOMD8uZx_UdH450PuJ6AEV_1GkpSURJNp4wDb7MxqI','I arrived feeling really sick and the registration lady Ashley was super kind and helpful, then nurse Rachel B was really nice professional and savy and finally dr Faig was super knowledgeable patient, explained everything real well, gave my several options and was very kind and professional . Great team super clean location I strongly recomend them!','2018-12-26 19:41:15.318000','2018-12-26 19:41:15.318000',5,'Vanessa Lee','https://lh3.googleusercontent.com/-rHIbW2iMw70/AAAAAAAAAAI/AAAAAAAAAAA/GKse2sf6mxg/c-rp-mo-br100/photo.jpg','17898197009688164559',5902),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpGXEZu7PybNCG6v5ZL6Q2548Te_Slz0t_yt4i6Jhy6TrFT2rce1o5v3xijO2La9LgJKijdDSYdhS5xAvpQtYp5Zmvpnw','The staff that helped my daughter were very nice and quick getting us out way quicker than a normal ER. Thanks to dr Miller and his staff Jose, lisa, jolynn, and paige.','2019-10-25 01:24:53.427000','2019-10-25 01:24:53.427000',5,'Stacy Barker','https://lh4.googleusercontent.com/-gHkWRO7lQe4/AAAAAAAAAAI/AAAAAAAAAAA/2arRyQ0ih20/c-rp-mo-br100/photo.jpg','13486358490203335051',768),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpH4E2tjp3t0gArYynTibULGc9QtXjI6hlZ4X876dwaTVCyskdlVhH00C7IZnDFBdJa3KpP_lZBW5pdKTyntU2X_6ss3A','This place is truly an emergency care center. I\'ve been here twice now and can say that my experiences have consistently been excellent. The first time I came was when I busted my head open on a brick wall. Covered in blood, we rushed to the Methodist emergency care center first where we were told that I had a 2-hour wait. Ain\'t nobody got time for that! So we then decided to go to SignatureCare where within seconds I was taken to a room and seen by friendly nurses. My family was taken to the guest waiting room where they were offered a buffet of drinks and snacks. I have never met nicer nurses or doctors. Even the receptionist was a sweetheart. They asked me if I needed a warm blanket because the room was cold. Not just any blanket...a pre-heated blanket!!! I was given a snack and Gatorade. The doctor gently stapled my head back together and kept me under observation for about an hour. We left with a bag full of aftercare info, a Starbucks gift card, and even a teddy bear. Can\'t tell you enough how awesome this place is. I wish all hospitals were like this. It\'s my first choice for emergency care centers.','2017-07-09 12:26:45.990000','2017-07-09 12:26:45.990000',5,'Jennifer Mizulski','https://lh3.googleusercontent.com/-tKHJ-1sQXm4/AAAAAAAAAAI/AAAAAAAAAAA/kgsfzvQgxyE/c-rp-mo-br100/photo.jpg','3511292162159714121',7803),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpH9v9sfxS9Ad42o__p8Q6REbVD1bfaJbyZS6UEYI6c1CkdNbROR0iRi47v0lVPDGeO8Sbdcs_HcxTHjlcEmtLhpWHxS8','Signaturecare was great. Fast and respectful. Clean and neat. The most amazing staff, very respectful. We were in and out in no time. Highly recommended.','2020-03-14 03:18:29.348000','2020-03-14 03:18:29.348000',5,'Robby Rodriguez','https://lh5.googleusercontent.com/-uyYp_6AWto0/AAAAAAAAAAI/AAAAAAAAAAA/cPdAdDrNqMA/c-rp-mo-br100/photo.jpg','14748677429039074158',18838),('AIe9_BEHZ7lh7y1sP-UInhkpmlIphDlVCSuTTGc05MfqUHNA-Lf08T-L0zaRFNMSQvp_LSXXandmQ2d42Rfc3AjlYWphz8OYWDZYnCOufjPxlyfBL-WCq6k',NULL,'2019-05-06 16:05:31.529000','2019-05-06 16:05:31.529000',5,'Tyler Mcbride','https://lh5.googleusercontent.com/-Gqsu7iTGtrM/AAAAAAAAAAI/AAAAAAAAAAA/G2_EH-pOFL8/c-rp-mo-br100/photo.jpg','3272657195432704501',6966),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpHe4m8VbzLNNSxdKwyFM24njdS9wJG8TPC0U_EUzm4JoaNVubiHhrIbdkOc5KF3OIqjp2_uy4aG0DxtKecuBEUFF-4_U','This was not the first time I have been to this Montrose SignatureCare ER but every time they excel my past experience. From the moment I walked in greeted by Kearie, everyone was so friendly & helpful. Got me back to see Dr. Golla within minutes!! I came in for a suspected concussion and the entire staff couldn’t have been more accommodating & attentive. Leslie, RN & Olivia, TECH along with Dr. Golla constantly made sure I was comfortable. I knew I was in great hands the entire time. They gave me genuine & amazing care! Thank you all so much!!','2020-01-17 15:32:49.781000','2020-01-17 15:32:49.781000',5,'sharon gomez','https://lh5.googleusercontent.com/-aRzVMULfK5s/AAAAAAAAAAI/AAAAAAAAAAA/iQJun3xnad4/c-rp-mo-br100/photo.jpg','3511292162159714121',14458),('AIe9_BEHZ7lh7y1sP-UInhkpmlIphjGBHHbbsDwb4fiTX_H4MSWEu3S8pLjSeOTN5m4I8ayu-e6fdOJSJwO3nBirvldy52--UPAIf5VlMuMK62uvJfmyXeo','We had to visit the ER tonight for my wife and for a really awful problem that we will have to deal with the staff made the situation as amazing as possible! Dr. Nguyen, Troy and Bennett, Jessica in radiology, Luisa at the front desk and Stephanie the ER Tech all made us feel so at ease and Dr. Nguyen was so calm and took his time making sure we understood everything he was talking about. The whole staff went way above and beyond to make my sweet wife feel at ease. Thank you everyone at SignatureCare on 1960!','2019-09-17 06:25:16.490000','2019-09-17 06:25:16.490000',5,'Jamie Kubiak','https://lh4.googleusercontent.com/-yaybrC2dOA4/AAAAAAAAAAI/AAAAAAAAAAA/b1N0rT-twLM/c-rp-mo-br100/photo.jpg','16389487648212004696',2906),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpHL6FMP99vP_LuvqAYAvv31J0SQJNBKb0MQKn-QsSPQMAoDAxdTLpJJ5b3J_5id4MWvOWVIDfSWimjDY6HWRF174XhFk','thank you to the staff Okarys, Dr. Daniels , Nurses Gabe and Jerry, and Stephanie W!! They were super helpful and nice!!','2019-12-07 06:11:01.211000','2019-12-07 06:11:01.211000',5,'Abbigail Lanham','https://lh5.googleusercontent.com/-zxfIRQaZb-I/AAAAAAAAAAI/AAAAAAAAAAA/uZiHKxclBFI/c-rp-mo-br100/photo.jpg','16590124370714063921',3044),('AIe9_BEHZ7lh7y1sP-UInhkpmlIphmVul1LatxkCBG543ad37EHEhTEt5jgxj2phOOHokLJhfYDGko2T6zXfIJBkeBkPfHt2w3sf5Wio6jvh9oCX0Hdvcao','Came for Covid testing for our company. Theresa M was great. Made us feel comfortable about getting swabbed. Great attitudes, especially with all the added stress with all this.','2020-07-20 19:59:11.806000','2020-07-20 19:59:11.806000',5,'Brandon Rollins','https://lh3.googleusercontent.com/-ZNcJX8d0umY/AAAAAAAAAAI/AAAAAAAAAAA/9iXCutbHugA/c-rp-mo-br100/photo.jpg','6521947413723274945',22225),('AIe9_BEHZ7lh7y1sP-UInhkpmlIphovCAUW-kfJmT0hpG8hHiSzHOX0TyQI690IqrbwQXLkhBM9HXAcnLZfrWwGbECXucjEZRpxtuFqY-TnhQe7BpAGZDYM','The staff here has been amazing!! Chunah, Norma, Carletta and Dee were so kind and made me feel very comfortable with everything. Dr. Faig was very helpful and easy to talk to!','2019-08-14 15:38:52.850000','2019-08-14 15:38:52.850000',5,'Megan Koy','https://lh3.googleusercontent.com/-vS-DMedlWjE/AAAAAAAAAAI/AAAAAAAAAAA/sNbftzYA4EU/c-rp-mo-br100/photo.jpg','3511292162159714121',7209),('AIe9_BEHZ7lh7y1sP-UInhkpmlIphx7u6fE-pzVmSnRwTUiQZIUIdjdlXskExM2LqplktmHT2-gVVfa8aISjcsimWVC8tjpIDATcPMdDN_ShXBcqpOXiWiU',NULL,'2018-10-04 18:56:20.182000','2018-10-04 18:56:20.182000',5,'Lauren Rohloff','https://lh5.googleusercontent.com/-gI41Wz2UYIQ/AAAAAAAAAAI/AAAAAAAAAAA/N6pj_Yu-Uwo/c-rp-mo-br100/photo.jpg','16590124370714063921',3715),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpI_s1LeZ6XPACQM4dZV_kgwLSelWidTvbTPM74XE4sXSKi50xMXkj7X_WZYt2EFTUYANMmpoYEKZ_SZ-K7f7fLaWehIc','Great care! Staff was super friendly and personal, including Alexis!! Will definitely be back!','2017-09-10 00:04:32.889000','2017-09-10 00:04:32.889000',5,'Kaley Ayers','https://lh4.googleusercontent.com/-mAoRmJAc7tI/AAAAAAAAAAI/AAAAAAAAAAA/4vXoTDLMCio/c-rp-mo-br100/photo.jpg','16590124370714063921',3939),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpi1eG-_is1JnISiOZTp7p_C8WAiWDcj13TiBdQoMdekDJvL9vc16CVcv0sba3vilazzhGm4jIAXiY9sM0Z4YZayjnsCQ','I had a great experience with Kendra! She checked me in very fast. They took great care of me here:)','2019-11-30 14:47:28.214000','2019-11-30 14:47:28.214000',5,'Amy Wagner','https://lh6.googleusercontent.com/-Jekl6LQYcEM/AAAAAAAAAAI/AAAAAAAAAAA/I3znwGeLCms/c-rp-mo-br100/photo.jpg','16590124370714063921',3062),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpiAKZ2ax8FSz_I1QzyD48X4EWqHtcZVe-EzUv_HyUWB6LvWUIUviv3hnB_9SLtMhMeywyWVDZps6a8yz9svEV_caP6ZQ',NULL,'2019-11-09 19:04:16.649000','2019-11-09 19:04:16.649000',5,'Kirsten Moore','https://lh5.googleusercontent.com/-Y6drOSBaoRQ/AAAAAAAAAAI/AAAAAAAAAAA/aQNTe-lceGQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3094),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpiCPituDAIVmsq_DzIC_lg-oWpvQje_ezO03uzX7oy8pkpDi9aeruhbqFodONtL4XOT_ObBHGB6Rk_k11IJK2D0t1rkg','They took care of me, made sure I got what I needed','2016-03-14 16:02:08.508000','2016-03-14 16:02:08.508000',5,'flysam6','https://lh6.googleusercontent.com/-JKbYYBbMYT0/AAAAAAAAAAI/AAAAAAAAAAA/IazM2QNa2cM/c-rp-mo-br100/photo.jpg','17394740196501090048',5272),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpig6ze1YcLRY3C93Cb7uQnC8AUVWMDRYYJ7alerb2_mw21PbR8XpPs56Kt5Esv5gElBzp4bVvmoKlGOTi_0qp5gwbwN0','I love this facility. I came for stitches. I was greeted by Jasmine immediately when I arrived. Quick and friendly from the beginning. Minimal wait time. Dr. Miller is awesome: easy to talk to, and does excellent work. RN Meredith is amazing-kind and a pleasure to be around. Tech Ricardo is funny and helpful. RAD Bryan always attentive and caring. The entire team is outstanding! Highly recommend 💗','2018-09-08 02:25:13.187000','2018-09-08 02:25:13.187000',5,'Bridgett Brumbaugh','https://lh4.googleusercontent.com/-D_ubWO9wEYI/AAAAAAAAAAI/AAAAAAAAAAA/TS69kUvwF0I/c-rp-mo-br100/photo.jpg','14567670160750071148',1519),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpIjVO9w8EJi9iexdIxJVd6w_T2VqWwTTOkYVaXdn8XPtpH2_eC3u_5YRx4oYJ98l_Swnr_WxfbIAYH6kejVadGAMJM0M','I came in very early in the morning with an issue in my eye. Service was very quick and staff were very nice. They were very knowledgeable and explained everything they were doing. I would definitely recommend coming here!','2019-10-16 13:55:37.389000','2019-10-16 13:55:37.389000',5,'Victoria','https://lh5.googleusercontent.com/-1O5u5T6V47w/AAAAAAAAAAI/AAAAAAAAAAA/3ajQnIToPnk/c-rp-mo-br100/photo.jpg','2694018788013845459',6045),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpiOYpmfHtu10FgwbANKARmvwprC6K7LgwsJB0a8UszT9t6Pt9Kcku5cwvuA2JXHXQ3i2hSKNUc3_jeSe3ZglJnV7pdMs','Great staff! They were very efficient and worked on me in a timely manner. Everyone was very professional.','2019-08-14 13:30:46.354000','2019-08-14 13:30:46.354000',5,'Sigrid Hernandez','https://lh4.googleusercontent.com/-3_8dGvamPik/AAAAAAAAAAI/AAAAAAAAAAA/q6t5xUs3YHw/c-rp-mo-br100/photo.jpg','16891069708558046635',4221),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpit5fIMA98cS83KwPzgyBkNQNPjaYWBHI4b8ZzOF-YZj7FwHF5LQFlGv6JRzVyPV-R5362dH1JyNIBNlrmomosfcM4gY','The staff was quick to come out and explain everything in detail. Would definitely use again if needed','2020-08-02 22:23:33.248000','2020-08-02 22:23:33.248000',5,'Criselda Galvan','https://lh6.googleusercontent.com/-SOnu6JZgdUM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnXAUUyXxnnxnyQyLnDwIhBWI0KkQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22185),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpiTVkxhwCnfq_I7I4NxNHvPtIsvDZx67_61_tG1AYJLvrGES5kjQcTqrt1Q-uTZ4A1NxKTFj6XI8MvC9zWNcBo4wtp_M','Great service, amazing staff. Dr Rose, Adam, Linda, and Christine are all amazing, friendly, knowledgeable and great people..','2019-10-28 19:04:53.853000','2019-10-28 19:04:53.853000',5,'Jemery Jones','https://lh3.googleusercontent.com/-nkaQs8PXfXs/AAAAAAAAAAI/AAAAAAAAAAA/LfiQ229YA8w/c-rp-mo-br100/photo.jpg','16891069708558046635',4170),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpJ8WQANK29ZefmeRGPifqkpca2kkSW-X9jpwoDUt_dfqDyXILF-u_aX66uNt2fqngouH76_lLtyES0li9J9yA3hUIsmM','The nurses and doctor were very caring and patient with my son. I highly recommend this emergency room from check in to check out the experience is always pleasant and efficient.','2019-12-11 04:32:28.410000','2019-12-11 04:32:28.410000',5,'Melissa Meow','https://lh4.googleusercontent.com/-vx4CQKOmV5I/AAAAAAAAAAI/AAAAAAAAAAA/xX-b2xcqS2o/c-rp-mo-br100/photo.jpg','14904078213800803294',13657),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpjF7-J8EuCJ5aEm6agm56dWtvhoC5Uw1zPsT9Ld6oDviVvpkKGBkyxzuAEPIlPMzIlP_z9TH1Tcq5T0nRY2v_zDtJjo0','The staff here was amazing. They quickly got me in and had my pain under control fast. Savanna got the IV in with no problem at all.','2019-05-22 15:04:42.043000','2019-05-22 15:04:42.043000',5,'Julian Correa','https://lh6.googleusercontent.com/-rDV9WzLwBvA/AAAAAAAAAAI/AAAAAAAAAAA/1T-TSi-Vimo/c-rp-mo-br100/photo.jpg','13486358490203335051',1000),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpjR5PN_erXTUeqx90UtVkrjDhxrsI48r35hOrRuVNzLxyYfOjBsdKEgmymXl47FtiodMxjexZ48lLymJP0AniSYSLaow','Cody and John was a amazing..','2020-08-17 17:44:13.325000','2020-08-17 17:44:13.325000',5,'Taralee Perry-Cleveland','https://lh3.googleusercontent.com/a-/AOh14GiorYcCQa_sm5o9dMfatRi8Z8XgTzF-b1h0FfV4vA=c0x00000000-cc-rp','16891069708558046635',23057),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpjWcN05EdAhvpi_1VLLlIVUxmjQPkE66xUGYThy0VtaElHyTpQ-OZfCcxyjdd66I7Ymw46FreX83Q-WZZ6qDEn3R36oo','Was very satisfied with the customs service I received from y\'all . Keep up the good work!','2017-05-19 03:54:53.669000','2017-05-19 03:54:53.669000',5,'Thea Luna','https://lh6.googleusercontent.com/-NADeKaJOZW8/AAAAAAAAAAI/AAAAAAAAAAA/QKi6C8BT8x8/c-rp-mo-br100/photo.jpg','17394740196501090048',5050),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpJztHKvBYXo-Cqy-g-g5mJxgcPgMw5eB3qNgzhDygJwltMo9C_qQagRZNfQn9PLxPhDIiMvSps2eBPJkU51SWEQsSLUc','Great service, great location and super friendly efficient staff','2017-05-19 22:00:53.057000','2017-05-19 22:00:53.057000',5,'Valerie Raymond','https://lh6.googleusercontent.com/-bMonWvVlJPE/AAAAAAAAAAI/AAAAAAAAAAA/2CAvm3OKB5Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7819),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpK1aDCv6YHqaP8t8brPVp4ZMFFwN1z8omH9d_SjGzesEweTAMAnZ5FVsChr-pw0nC5EVRS-M82Pgh_IXOHDvUpQwbH9I',NULL,'2020-06-05 16:18:21.357000','2020-06-05 16:18:21.357000',5,'Nick Hamilton','https://lh4.googleusercontent.com/-DSuTa2wkEYA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnTs7S_wBn-7ZhDbKatILznwiVhFQ/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21440),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpK4JOu_p12S87u5Eq6aNvM--THBA-CiEivUAoc6v12DKwul53hYE9Ksa_vvjdFAccKrw3Dolv-ZXWAQ2U2QSMyvlugGQ','Soon as I walk thru there door Jocelyn welcome me with a big Smile, they been on top of everything making sure I was comfortable. Marcus Thank you so much even thou I was in pain you kept a smile in my face. Truly Thank You Dr. Chukwama','2019-06-05 20:47:50.069000','2019-06-05 20:47:50.069000',5,'tyrisha thomas','https://lh5.googleusercontent.com/-7XgpEMLhwIY/AAAAAAAAAAI/AAAAAAAAAAA/FIxnLcCTmOI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpkafWFbdlYBQMnHmhN7PgAFKDd1EblVIExf4EHcDG_Vf7kjMHAcFKHVv3c8nzOt2Kmp-e0jJQfx6x_9LKQd7sTEA4vos','I had to take my Wife because she was dealing with back spams and thanks to the help of Dr. Faig and nurse Leslie we felt they were there for us. They prompt quick to attend to my wife testing was done in a timely manner. The installations were great and up to date. Keep up the great work!!!','2020-01-30 04:25:54.885000','2020-01-30 04:25:54.885000',5,'jaime Osorio','https://lh3.googleusercontent.com/-ahX_7O00UKw/AAAAAAAAAAI/AAAAAAAAAAA/TyQkwPR4Dmk/c-rp-mo-br100/photo.jpg','12541597562633926366',10082),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpKdonOtwDy2nNnzuiJo1g4cBwcWcG_3R1i0RyiHPqmgChRfZujFhtAR6Ev4x_G0kUJhEUPaJJJ--XoKlxaBoTfpfVDqU','This place is Awesome. I usually have anxiety when I come into an Emergency room but, this place is setup like your home and the staff is do nice especially Alvean and Tricia. Thanks guys for taking care of me!!','2019-05-09 16:19:07.624000','2019-05-09 16:19:07.624000',5,'Adam Newsome','https://lh5.googleusercontent.com/-AhBkkZESagY/AAAAAAAAAAI/AAAAAAAAAAA/DmtcesixDuw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpkK8t3pfV6_x1lNleyw6uH_DR-jaL5gW2pTbzOkO6HWNjYXaCsYi-AiNtLzlW2tgNCgEp11IUtYoJ-zeJrxdyUt_uM04','The people here took very good care of me at 2 am when i had a Kidney Stone the size of a boulder!! Thank y\'all so much for everything!','2015-10-20 15:59:09.891000','2015-10-20 15:59:09.891000',5,'Jesse Lemos','https://lh5.googleusercontent.com/-hN8k1_gl-JQ/AAAAAAAAAAI/AAAAAAAAAAA/Y2LfmaP-5T4/c-rp-mo-br100/photo.jpg','16891069708558046635',4559),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpkNk97gBBUXBgKFVv5vAk99c1ybRkEmJuhBz5njY6YIiHqcVLto07k1PUlUzExACWmFJs_LzwwHxuFgHfqlHJwSIKMqg','Super quick staff. My visit lasted less then an hour. Brad was the nurse whom helped me out on my visit. Dr. Pham explained what was to happen. Lastly Laura did my vitals. Really quick and professional staff. Everything went really smooth and pain free. I strongly recommend this medical facility for any medical care!','2019-02-23 16:15:58.141000','2019-02-23 16:15:58.141000',5,'Robert Sustaita','https://lh5.googleusercontent.com/-1RV9_UUpF3E/AAAAAAAAAAI/AAAAAAAAAAA/NYwLe8uFbIA/c-rp-mo-br100/photo.jpg','16590124370714063921',3529),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpKQSzaQxkTIeNZKzQEUHxTktYWe4FTSUzhDbo-lDLRw0CkaJpCneUHZrMMBaLoCV70g_q7QzxVe1uLT7gsiFUdUu5YBI',NULL,'2017-06-28 14:15:45.632000','2017-06-28 14:15:45.632000',5,'Jennifer Charles','https://lh5.googleusercontent.com/-R3OZkuDdBdk/AAAAAAAAAAI/AAAAAAAAAAA/YupxRPTOD1k/c-rp-mo-br100/photo.jpg','14904078213800803294',2343),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpKrPBG_uJBdUb6Lzoe-Do4FRfLxiN2jnsU7pF7nJOA-Z6zR_xEL_2IX4MZJD82PPz7JdeNFR9QAF--2KRYPFzHxxCmEw','They staff were nice and friendly. Within 2hrs l was taken care of. My thanks goes to Dr. Werzanski, Jessica, Lia, Stacy and Lonnie.','2017-07-10 05:27:17.043000','2017-07-10 05:27:17.043000',5,'Charles c Chukwu','https://lh5.googleusercontent.com/-E8bBj63hYSk/AAAAAAAAAAI/AAAAAAAAAAA/IW8EPGFFJ1E/c-rp-mo-br100/photo.jpg','8918455867446117794',9381),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpkst92vVQ57Ej5QAR7NOsEIOO_nFZ1kb_Myf8HXV2_GWFFZn4829I-EMO-nOx6LJR8h-GUf8aNNJmEIO-cFhoTcClx6Q','I think I will start this review with full disclosure: I have been an RN for over 41 years & while I was still performing \"hands on\" nursing care, I worked in my employer\'s urgent care center (UCC) as well as ER for over 10 years, so I feel pretty well acquainted with basically \"how the system works\". But what I didn\'t expect was just how well this particular system works! As my husband & I walked into the front door, we were immediately greeted by the front desk staff who got paperwork to us quickly. I waited less than 2 minutes before I was taken back into a room & introduced to Nurse Rachel. She was phenomenal throughout the appt & as we left the facility, I told my husband that with nurses like Rachel, we old war horse nurses should feel confident that yet another generation of nurses can carry on the nursing traditions of kindness & compassion. As for Dr. L, he was one of nicest and compassionate of any doctors with which I have the pleasure of dealing-EVER. Considering that it was my own stupidity that brought me to the ER, there was no \"tsking\" or \"you should know better than that\" from the staff (wish I could say the same about my family-LOL). So when, not if, my family needs urgent/emergent care again, we will go right up to Signature. They are all Rock Stars 🤘🏻Thanks 🙏🏻 Jan','2016-07-11 22:41:47.517000','2016-07-10 23:32:28.419000',5,'Trebuchet1066','https://lh4.googleusercontent.com/-MA309KowTsA/AAAAAAAAAAI/AAAAAAAAAAA/iYDJxlRqKR0/c-rp-mo-br100/photo.jpg','17394740196501090048',5226),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpkY2bL6StQOgqVDDVf16KV_0DZ72sGpcVjDZ-o-aeJbtSaVUYgOryh0tuYhB1uS7kg9ZlDPpDYybBkfHpKPNqhddLq-E',NULL,'2020-02-28 23:01:40.898000','2020-02-28 23:01:40.898000',5,'Dexter Young','https://lh4.googleusercontent.com/-R-uSnKxL0kA/AAAAAAAAAAI/AAAAAAAAAAA/MdMWA1G7jz4/c-rp-mo-br100/photo.jpg','3272657195432704501',14313),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpLc41zywuHuJohc54iWcGf92rf-W36ycOjWcyzsYHecF4CMwAAX5Zw0lhbVoNPOfgIDwIImCo4V9eumc9sm6dHVAkgt4','Very helpful. Great treatment. Dr. Miller is very knowledgeable about medicine. Sindy in reception was extremely charming and helpful. Natalie was attentive and courteous throughout. And Gina’s delicate approach made me feel very comfortable.','2020-01-16 07:29:29.596000','2020-01-15 21:48:25.879000',5,'Simbai Mutandiro','https://lh3.googleusercontent.com/-KSfNv6kfqiU/AAAAAAAAAAI/AAAAAAAAAAA/qopJ40aXzA8/c-rp-mo-br100/photo.jpg','14567670160750071148',9691),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpLciRecPC-ZKmkwFT_zF7k5q00L8MS5ufLkhOuXz9ivkoGTrQUI-j9lvblRpbMIzd86P8jm-b-h94pbtJxMyJnrf2y00','Brought my sister in for an ear infection. They took her in really quickly and the doctor came in within minutes of being put in a room. The staff was really nice and understanding.','2019-08-11 05:52:13.168000','2019-08-11 05:52:13.168000',5,'Maritza Durwesh','https://lh5.googleusercontent.com/-R2nacY2kwxg/AAAAAAAAAAI/AAAAAAAAAAA/vn99wjfXYWQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpLXO3uuDWxRR0t96dHweivFgC5gzFzxzEGV9fiT5jxZUKPIeyDCl6euhkif48V5W-PpQuYKhYLbB6AlvXmRv43LjpY-A','Very professional and caring. Dr. DeWaal, Nurse Katie, Frank & Earl make a wonderful team.','2018-07-30 02:01:42.299000','2018-07-30 02:01:42.299000',5,'taylor ireland','https://lh4.googleusercontent.com/-z2Zp1-JaZ20/AAAAAAAAAAI/AAAAAAAAAAA/zMRi9Zw_g-o/c-rp-mo-br100/photo.jpg','16891069708558046635',4455),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpMEvR8F5K_4tssV_TtNcTNgUWysu8OcIR7oa_MPzhbmjWRAGkCZCT8X5hmjsGp14BUM7qi__sUggAfBANTYXSPJbbshE','Amazing experience when coming in for flu-like symptoms! Especially great care from Jacob the RN! Talked us through different options and how we should carry them out. Definitely recommend this location for all ages.','2019-09-15 17:51:51.870000','2019-09-15 17:51:51.870000',5,'Nathan Andrew Martinez','https://lh6.googleusercontent.com/-O_UfI1gX9ro/AAAAAAAAAAI/AAAAAAAAAAA/N7RrvsJisrY/c-rp-mo-br100/photo.jpg','16590124370714063921',3205),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpMGafa0ePB2-KDRmFWju23YERRQY97jlMNtn0btN4AHXucFbh2N2SiUsW6bXvoRo03rYWvA8Z-dC5BL2CqN0OmqUSEvU','Super friendly staff! My nurse was Lucas and he made sure I had everything i needed! Receptionist Carla was so sweet! Had some xrays done by Eric and it was in and out. Dr. Henderson saw me for a foot injury and was wonderful! Even got a goodie bag for my birthday in a few weeks! Where I\'ll be going from now on!','2020-03-01 13:49:37.386000','2020-03-01 13:49:37.386000',5,'Chalon Rogers','https://lh4.googleusercontent.com/-5PcJplmjBcc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn6oVpUoFNAkGnlCl22lE41sfwZTw/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14307),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpmGY5MuWelWtHt1Wzbqvv5iS_yYxgRcqRrohJiQUmm1DKMyKn93q6I9PNgMw1q2L8qvAghGrSXYN0HrfzFh5NOydLC5o','Jessica sanchez was wonderful. Got us checked in and taken care of right away. Made the whole experience a little more bearable','2020-07-21 16:09:08.014000','2020-07-21 16:09:08.014000',5,'jennifer nasanga','https://lh4.googleusercontent.com/-qeUhvi96KAo/AAAAAAAAAAI/AAAAAAAAAAA/uhSc0-dDq3w/c-rp-mo-br100/photo.jpg','14748677429039074158',21620),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpmKbW7w8gi0ENZe5nDM9ujrTZyTcbGRS4CyRAx-c3RfFHHrEJ2KPSqzbDgvYIjI9CTshc5bpmotb0OP-_gEOct4S9MIg','Dawn and Norma are the best ever along with dr yusef!','2019-10-10 17:10:44.361000','2019-10-10 17:10:44.361000',5,'Danenon Hawkins','https://lh6.googleusercontent.com/-szdpZyEfs3k/AAAAAAAAAAI/AAAAAAAAAAA/Kfo_VCULjb4/c-rp-mo-br100/photo.jpg','3511292162159714121',7161),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpMLaKkp80k8CdnzhnluOp3nIA18cHfFwkyR2T2X58m7FamandAa3xYq96Kxn0iFeSf-cw1Lvedx8v1VBKmtpLR7iUj0E','thank you so much for your help!! y’all made me feel much better and made me feel like home. \nregistration- robin\nNurse-jennifer C\nTech- valerie','2019-05-26 01:52:11.864000','2019-05-26 01:52:11.864000',5,'Ja\'Kirah Franklin','https://lh4.googleusercontent.com/-wPfQdF-iH1w/AAAAAAAAAAI/AAAAAAAAAAA/UNPXIX6VJAE/c-rp-mo-br100/photo.jpg','8626688543755174284',8473),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpMoROSI2KNz8bC3ME8SnVjrlYAolpHq3J4nyYvNOjX8eS7G2WbXl41flu1mI8rZz3D44a3dDPKhqegDQE-AyaJga6M5c',NULL,'2016-05-06 01:20:36.274000','2016-05-06 01:20:36.274000',5,'Manar Hindi','https://lh6.googleusercontent.com/-ditHY6b972U/AAAAAAAAAAI/AAAAAAAAAAA/7jvCke6lTH4/c-rp-mo-br100/photo.jpg','3511292162159714121',8007),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpmUO3HBeyeZLeTafgLT2C8osGul9c6UeOvcDO4aPw2iNc2GswtBgQAq5EsDBpCwsp_kNBo6ll0kWB3oq2-W6eSlqCcvY','Great people great atmosphere the receptionist Samantha got us in quick','2019-12-09 04:14:17.491000','2019-12-09 04:14:17.491000',5,'Rubi Cabrera','https://lh5.googleusercontent.com/-UfD-n8g7xgQ/AAAAAAAAAAI/AAAAAAAAAAA/WZ3aH2z45DY/c-rp-mo-br100/photo.jpg','14567670160750071148',1179),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpMuSYH6M87TEaPV8QZ2SquYF8NcENgIvfXyzZIPpHNsO9zQ3cpr2uNzfw35FESTEE9RzhuAKE7Zo0F9jz_8uQR8jXQLo','Service was great no wait time.','2020-01-27 04:25:53.761000','2020-01-27 04:25:53.761000',5,'James Corr','https://lh5.googleusercontent.com/-DmoGXC1gKKg/AAAAAAAAAAI/AAAAAAAAAAA/eWPkVsEttzE/c-rp-mo-br100/photo.jpg','2694018788013845459',14264),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpMZoIFCW-thxrKFwNajDR83-OCabhNuKxuL_AkutTSFoYCdgbXfURwrr5J6ZH-mGZea3KcFEZFlBfiXjrbcarewCz8D8','My first experience with Signature Care and it was awesome, Dr. Elsbecker really made me feel as though my issues really mattered.. unlike most Physicians I’ve seen since moving here. My nurses Michelle/Konya were super sweet and took very good care of me.. Thank you all for your help!','2020-02-23 17:00:22.395000','2020-02-23 17:00:22.395000',5,'Esha Cole','https://lh4.googleusercontent.com/-U6gdKnqhZ1E/AAAAAAAAAAI/AAAAAAAAAAA/2YXPT0Epr3k/c-rp-mo-br100/photo.jpg','2694018788013845459',14216),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpnKSHeDVqnlrOxt6eADhuVS2KqDYRUkAck-h4jSwgRiq-aqGkb1qVpIB5nuGE3U7Khhl6EeXp_-7cE-_qAdCvqyAfxgs','Great service from Dr. Souman, who quickly came in to explain the injury and how to prevent it. \n\nElizabeth (front desk) was helpful, warm, and engaging. Maureen and Josh were extremely helpful in their care and very engaging. Joey made the medical procedure seem like another step of the visit–which was relaxing.','2020-01-26 00:56:21.750000','2020-01-26 00:56:21.750000',5,'Alen Andrews','https://lh5.googleusercontent.com/-wmR0Z-oGd_4/AAAAAAAAAAI/AAAAAAAAAAA/ey8hdTwK_-k/c-rp-mo-br100/photo.jpg','3511292162159714121',14446),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpnvz1zmMz3OCohz6BIcIFLbmbqUkBVc_FCwgky3G_Oz2-WviY39Oz-G9n7BBZGhVC5_ogoqbBPvixs9g4rHMKy1g5hnM','Fast and friendly staff!','2020-07-02 20:32:03.782000','2020-07-02 20:32:03.782000',5,'Areail Manning','https://lh6.googleusercontent.com/-ViAZqM3UMm4/AAAAAAAAAAI/AAAAAAAAAAA/SPcFTyVXYDM/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',21353),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpNX88Q3sKOftHW1hrlX-d4AwLH98q7eYTDAd7WmPahZzsxcqVJ9j4CunCwYJbfDJRP54VGrW-zRVAleQUwzvcFB6kodg','Sindy was very friendly upon registration and answered all the question I had. Dr.Guharoy and Stephanie were very knowledgeable and understood all of my concerns, and Quyen got my lab results back very quickly...no one likes to go to the E.R. but when you can get in about out in a timely manner it makes all the difference!!!','2020-01-13 21:51:37.769000','2020-01-13 21:51:37.769000',5,'Monique Glover','https://lh4.googleusercontent.com/-FmosS5AVYBA/AAAAAAAAAAI/AAAAAAAAAAA/6f_2F0y4NI4/c-rp-mo-br100/photo.jpg','12541597562633926366',9852),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpNXhVCBkiP8JIbk-yUP7Iz2cXjlXYUiqjY58jku5SGpahNnC_T-hHy5rOPqtVqFuBgyY8ZGgY1fgP78gWUu-H56frAx8','I was recommended here by my aunt and though no way for all the things she said, but when I walked in it was The best atmosphere I have ever seen from the moment I walked in, security was very sweet and nice was ready to help me get to a wheelchair and all my nurses and doctor is the best Dr. Grinblates and my nurse Meredith the sweetest caring person I have ever meet, you can see her kind heart in her face just happy to help, Brian in radiology very helpful he went above and beyond and Ricardo my tech was such great guy. They are all a great team, I was so amazed that they even acknowledge my husband and made sure he was ok, I can’t believe that I didn’t come here before. Watch out you other 24 hour emergency locations they’re here to stay and they’re going to take over.','2018-07-21 02:32:53.911000','2018-07-21 02:32:53.911000',5,'DIANA RODRIGUEZ','https://lh5.googleusercontent.com/-kdawlnHlZRg/AAAAAAAAAAI/AAAAAAAAAAA/ErFYyQh-p9k/c-rp-mo-br100/photo.jpg','14567670160750071148',1593),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpnY2mqJ9-e4ydDSP0oUlbJsqMJjaLR2gmT__WYugLXMcb4lA2Ix9c9UJiRszQxNCETKVuY481L_Qw1jVlHe7NlZH39vM','Had an amazing experience! Anthony was very thorough in taking care of us and Dr.Vakey was great at explaining the different options available. Would definitely come again.','2019-05-20 21:26:02.082000','2019-05-20 21:26:02.082000',5,'Taelor Deike','https://lh3.googleusercontent.com/-Y6DdfDMVxiA/AAAAAAAAAAI/AAAAAAAAAAA/kK__wbu6tjY/c-rp-mo-br100/photo.jpg','16590124370714063921',3382),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpo2ASwu2aHAIRRB9iVoEVEOBcQkmfg5YNPWuf0I005DE9y-8M_68BGhPA6--dddxnga-xDqC0bK9k2QZY_1cLjnJpy3A','Very clean facility nice nurses and doctors very little to no wait I highly recommend coming here. Dr. Thomas, Vivienne, Joseph, Erica , Travis and Natalie they\'ll get you taken care of and on your way.','2020-02-03 17:18:25.885000','2020-02-03 17:18:25.885000',5,'Soul Good','https://lh5.googleusercontent.com/-BxWynVO9zh8/AAAAAAAAAAI/AAAAAAAAAAA/z5fuwKcixcY/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',13565),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpOC8lXXMdIZtV83WDsgtspmwdL3kruSJnPTJIs4f_Mmn8bCWKy4Z6BUTg5CYv8gLK5qm_LefNmSHnwO04EECuvG6kKC0','I had a great experience at this clinic. It is clear that the folks here care about their community! I was received kindly and even though I did not receive any treatment today I was invited to rest in the beautiful lounge area and help myself to a drink and snack. Due to the amazing hospitality here, I would recommend this ER for sure!','2019-05-23 18:02:38.761000','2019-05-23 18:02:38.761000',5,'Gemma Louise','https://lh6.googleusercontent.com/-rfoShY7VWpc/AAAAAAAAAAI/AAAAAAAAAAA/SVlK2Q-IHps/c-rp-mo-br100/photo.jpg','16891069708558046635',4269),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpOEDIWQt5Nor2pLYAPuiegen0eK6dPspcvb8yAkQyst38mweD7tgFFy1gG0HSr3Sr4D-WLgVnOUKRQARmy5agm35YmKc','The ENTIRE staff was warm and friendly and make me feel safe! Walked in in tears for severe throat pain etc and left smiling. If I’m ever sick again i definitely want to come back here! :)','2017-12-13 12:08:13.254000','2017-12-13 12:08:13.254000',5,'Megan Coleman','https://lh4.googleusercontent.com/-cgFyKJqVAtk/AAAAAAAAAAI/AAAAAAAAAAA/W6nIjSywgrU/c-rp-mo-br100/photo.jpg','3511292162159714121',7748),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpOHyIkqI00nYLm_6eFANstVos3KNCNLYEmXvzCGk7ZuOt8PVEQ4k3UAwTa47BPmkr6un1bK6iUeS1nmFEfpbP23ehiSA','Great place.','2017-03-15 13:20:16.436000','2017-03-15 13:20:16.436000',5,'Alicia Baumgartner','https://lh6.googleusercontent.com/-UhpsKLM4bU8/AAAAAAAAAAI/AAAAAAAAAAA/VW018KmO8HA/c-rp-mo-br100/photo.jpg','14904078213800803294',2387),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpoINJIntQEms_VAfmxT9Fci2KraUW0O1TECo8bPoVxspb-32eQpAag_ItBT21hlXVlXJVNfFno1IX9jkRAiG3A_6UhzM','Dr Healy, Marissa, Bailey, Holly, Carl, Ana and Kandi were all so welcoming and caring thank you so much!','2020-08-14 08:51:14.335000','2020-08-14 08:51:14.335000',5,'Amanda Owen','https://lh3.googleusercontent.com/-fTtcYu3GLME/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck2R3aJaH5B-KWntmIiGhqDWhur7g/c0x00000000-cc-rp/photo.jpg','12541597562633926366',23006),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpOjEMsXoxqPxa1d3FUaBDtbRSd4h2x1IWQGFgXb-IjIsAG-153w9ktoILYWd06LHDGxIFEjkliVxAwxctqak6CaAZTB0','This has been hands down the best clinic I have visit in the Killeen area. The staff were very nice and their service was fast. The nurse was very polite and loved what he was doing. No waiting to be called and went direct to the point of my illness.','2020-01-27 10:35:09.021000','2020-01-27 10:35:09.021000',5,'Jose Guzman','https://lh5.googleusercontent.com/-xO_f4e9PrPY/AAAAAAAAAAI/AAAAAAAAAAA/M33qLZZeD9o/c-rp-mo-br100/photo.jpg','2694018788013845459',14263),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpOkvmtGGL6jVNmATn-mK-ApnyC_3ihBBhXMKtOhFbm13LEkB1rn2PXgSgEy9lxcKIvG8ltVKUMjf6N8YMWkyyEXKwNjo','On December 10 ,2019 \nFell fractured my left malleus bone and Was in severe pain. \nWas not in good mood obviously and was very short with Maya at the desk. \nMaya was very professional, kind And understanding with me\nEveryone was excellent !!!! \nFrom Dr jolly , Catherine , Scott ,and Queen. \nMerry merry Christmas \nThanks again for all you do for us !!!','2019-12-10 19:04:23.420000','2019-12-10 19:04:23.420000',5,'Anita Rich Salazar','https://lh4.googleusercontent.com/-IAPo1VOdq-8/AAAAAAAAAAI/AAAAAAAAAAA/H3bpjBJ3Kqc/c-rp-mo-br100/photo.jpg','12541597562633926366',356),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpOP9AwVOlBNzj3lvlJNQ8PXOzgCvyvYX2FOdkYBu2hLNi_mD7muAmr1B3LlMAOsf9AHroHMI-nO0rDPwpk0rnC7OKT14','The best ER hands down!\nEspecially the staff Dr. Golla, registration Keera nurse Selina!!!','2019-07-02 18:38:10.273000','2019-07-02 18:38:10.273000',5,'shadow','https://lh3.googleusercontent.com/-IQb8LSnNkG0/AAAAAAAAAAI/AAAAAAAAAAA/Ay5bb9nN3BM/c-rp-mo-br100/photo.jpg','17394740196501090048',4641),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpOu4EEM2PEdZn0CFMWyfBZ6orQKEhOeOwebsKFzgV4I65ru3QcJ3oF1Qka8LOomR74GUYwkizVVGOXQZEOtq7OjL_Xr0',NULL,'2020-02-10 15:36:18.175000','2020-02-10 15:36:18.175000',5,'MICHELE TERMIN','https://lh3.googleusercontent.com/a-/AOh14Gju1erQwQskknImZvJyRxz9Hos4VTAp7T-L4Wa6Xg=c0x00000000-cc-rp','8626688543755174284',14615),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpOuNZRJKOYYl2XosgAZbR9LBpAdqBCstxISurlZG18lT8F6n6aLPhfTvmuv6OCmm4jeO_0_A28aBgzJDdmD5njbpuZno','The team at SignatureCare Emergency Center was very professional. Cody and Kelsey were also excellent','2020-08-03 18:52:44.063000','2020-08-03 18:52:44.063000',5,'student Tyler Clifton','https://lh3.googleusercontent.com/-X8bGO1uIcD4/AAAAAAAAAAI/AAAAAAAAAAA/aL4ykbsjue0/c-rp-mo-br100/photo.jpg','2077061009497551125',22748),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpp0vkxxuMb_Lv-aa8upt9hKcgFmFQ-FDsJngUNBHhEPXVcwO8N55K1bEX3_m1JESKWkMCrzRadD1O_3nTveeLblkNV2w','Great care. Very proactive on getting what I needed.','2020-02-01 18:59:09.247000','2020-02-01 18:59:09.247000',5,'Dareion Evans','https://lh3.googleusercontent.com/-3A22Y97NQrA/AAAAAAAAAAI/AAAAAAAAAAA/1ajtvcYzV7M/c-rp-mo-br100/photo.jpg','8918455867446117794',14855),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpP2hNDWLQuyic8MbH3nhzq9lKD7BpOZEXYmlB9e80jyG8_CHsayhb0008VEyj_ePCL4Nd-4eyTJ2pCLtUi3yJoMziA20','Signature care provides the best care in Houston. The staff is very attentive and friendly. Amazed with how up to date the facility is. Would come back again.','2018-08-11 19:20:19.851000','2018-08-11 19:20:19.851000',5,'reena thomas','https://lh3.googleusercontent.com/-L9yBh-31zW8/AAAAAAAAAAI/AAAAAAAAAAA/5Wgr_W2zLGk/c-rp-mo-br100/photo.jpg','3511292162159714121',7629),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpPeg3zxw80swkNqrD_r_HxhJMQGfdVRsgR2uGePELz9vzIYwkZREn-ItaEhijGUIUIcuSxMiOmQIFUKa2qJDPbraCXl4',NULL,'2019-03-29 21:52:32.667000','2019-03-29 21:52:32.667000',5,'Latashia Brooks','https://lh6.googleusercontent.com/-BfWlStCcEG0/AAAAAAAAAAI/AAAAAAAAAAA/nNdgiWKkmhU/c-rp-mo-br100/photo.jpg','17898197009688164559',5789),('AIe9_BEHZ7lh7y1sP-UInhkpmlIppex7znVUYjadbVPjwN6ficw9OvTWkuugbGG-0mJ6wBvBYJTHaK1lt4NQ1IxzFyEgI_nvHWw6Los_1TuGQK3M_HlqQr8','Super fast and super friendly. Great facility in the neighborhood.','2019-01-13 00:43:05.048000','2019-01-13 00:43:05.048000',5,'Rachel Lloyd','https://lh3.googleusercontent.com/-Tc9kPfLOjK0/AAAAAAAAAAI/AAAAAAAAAAA/NLSQF4qXzGE/c-rp-mo-br100/photo.jpg','14567670160750071148',1421),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpph8XOpzITOHk1WJes2s1vA6jhltn_o6247jVm-Clys3BaTj5U4NVH44GirLFQNZSijHTVe3m5PrHkT5NPqkZTXZ-Ncs','Anthony, Brad, Natalie, and Dr. Vakey were excellent and took care of all my needs. Recommend Signature Care to anyone in the area!','2019-02-18 23:57:38.704000','2019-02-18 23:57:38.704000',5,'Hannah Tweedel','https://lh4.googleusercontent.com/-nT6sM0HfkvI/AAAAAAAAAAI/AAAAAAAAAAA/8Rgz3ZZXHyk/c-rp-mo-br100/photo.jpg','16590124370714063921',3544),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpPJ12wbVJKx2EliDIWNXeMlqw-i69TxFuSA8r5c2_smgDHBgMablyeZdlxpaNTCE0WxkDtAR4GKF39MHFPt2lN5IIK-I','Visited late night for an injury. Really impressed with the staff. Tatiana was swift at the front desk. Nicole and Chris were great nurses, even the techs were fantastic. Dr Patel does a great job explaining things. Would definitely come back for another emergency','2020-01-23 08:01:32.505000','2020-01-23 08:01:32.505000',5,'Christopher Smith','https://lh5.googleusercontent.com/-2qmNauoI740/AAAAAAAAAAI/AAAAAAAAAAA/R_2cdi42WRE/c-rp-mo-br100/photo.jpg','14567670160750071148',10140),('AIe9_BEHZ7lh7y1sP-UInhkpmlIppq8iC0x2l5q-p3_mI5SMO7vtrRhljBS5kc_NkHa-wxpevR_BzBzkaki7F0mPNffKnsEIXJzCYWFCyJvQpXJd9jpW-tA','Very nice staff here. Waited about 10 minutes and we came right back. The doctor and the nursing staff were so nice to my son. Love this place','2019-11-01 04:21:37.356000','2019-11-01 04:21:37.356000',5,'Heather Roberts','https://lh4.googleusercontent.com/-T0ip8TRUJKU/AAAAAAAAAAI/AAAAAAAAAAA/3QrzcNEs5Ck/c-rp-mo-br100/photo.jpg','13486358490203335051',755),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpPUoUBXElzqNDzEE3gP7v8D-8PMmIN_AIEAjyIQpoidYB7b9HZw2qBOC2p7KjjOwWS4-KJ3vK2UrecnTPTPEURy6Ao0c',NULL,'2020-01-25 13:47:12.646000','2020-01-25 13:47:12.646000',5,'Miya Parker','https://lh6.googleusercontent.com/-7Iemw36CD3w/AAAAAAAAAAI/AAAAAAAAAAA/vM-DuxF1CpE/c-rp-mo-br100/photo.jpg','14567670160750071148',10125),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpPy7mUTDSTRQuOd_S7IJm2vRwpwBUKWAr4scjKEPNJS3mk_crk0SLO5l7PrCQ6MLFJ0trZKY9IN1qPW_enkna2ghao6U','The service was amazing, they made me feel very comfortable especially during this time.','2020-07-29 03:04:48.844000','2020-07-29 03:04:48.844000',5,'sebastian tablas','https://lh5.googleusercontent.com/-ecIxNVQFXOc/AAAAAAAAAAI/AAAAAAAAAAA/dlFp3wsQIYg/c-rp-mo-br100/photo.jpg','2077061009497551125',22776),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpPz4qsJNZIBDh1E9Twndv4ss7OvOSJN-BF9--0BsaNjEnFb9mVseRgurdKbHklxW2mdtveyF24LW34_XfDbbltd7WOfQ','Staff seem professional and nice. Went in to try and get tested for Covid but they do not offer mouth testing (as I was Told by CDC info that I need to take ) for those with nasal issues. I have Severe nasal polyps and unfortunately cannot do the swab through the nose since nothing goes in nor out. \nThere are different sites that will do it so don’t stop searching.\nUpdate: I apologize, I meant to give a 5 star review at first. I was not careful when submitting.','2020-06-30 03:25:01.823000','2020-06-30 03:25:01.823000',5,'Sandy Ventura','https://lh5.googleusercontent.com/-mtjWBTskDmc/AAAAAAAAAAI/AAAAAAAAAAA/39c3Spj8vqs/c-rp-mo-br100/photo.jpg','8918455867446117794',21242),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpPZq_nPQOUhaMbO-WP81bagMDId0x8gl2xEfnwRFrheuaVCqkr_frsyc5MmMDsNuA9s1ccQ4tCtaiG7L9D1z8Jw_2WMI','Dishonest billing and clearly fradulent Google reviews (please tell me what ER has 600 LEGIT reviews?!?!). They overcharged me on facility fees, doctor fees, medications, AND did unnecessary tests to run up the bill. Do not be fooled!','2020-07-01 05:43:01.487000','2020-07-01 05:43:01.487000',1,'Claire Deacon','https://lh4.googleusercontent.com/-zCIzQktett8/AAAAAAAAAAI/AAAAAAAAAAA/tYaDlnZ_y6o/c-rp-mo-br100/photo.jpg','13486358490203335051',21354),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpq796atJjb0yMjz1plctiPh9-AeDeJgzvjqvrrGBlKUDsXK2_SGMBTLqTxlcuwO0FDu2kz-o3wsmVB5HuyBgxdLfetO4','Dr dang nurse trying and Jessica last but not least Luisa where very helpful during my vist','2019-09-15 23:54:13.174000','2019-09-15 23:54:13.174000',5,'jaime carmona','https://lh3.googleusercontent.com/-vvx0bw4TN68/AAAAAAAAAAI/AAAAAAAAAAA/PcGL7-Ej-0Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2908),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpqE7PPIpOVBfp9qtIzTGAlEMu56ylTDCVN1JNXDBHRuAVhRMauUHC_io55GHB0H6nrs-09g_LkYQVoklmRVF5d66WpmE','Very caring Staff. Service was timely. I went in with a severe tooth ache 🤕 that was causing unbearable pain. Thank you Dr. Castaneda and Nurse Irving. You guys are superstars.','2020-01-09 03:34:21.790000','2020-01-09 03:34:21.790000',5,'LT Lawson','https://lh3.googleusercontent.com/-9mFSejkCrVg/AAAAAAAAAAI/AAAAAAAAAAA/d2oeI972_Mg/c-rp-mo-br100/photo.jpg','12541597562633926366',9438),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpQMJJ8WxKq7m_WkABYefVQMCX3WUu1yHQB0HVmPFnWK0hJkY3ztEaZmRbMBm-gtU_dEvIIWOEF-c6yq2Qejyk9jqRtQQ','Came in for a severe stomach pain which eventually led to a pretty severe ulcer discovery in the upper antrum of my stomach. Evelyn, Waldo, Duke, & Dr. O\'Malley were excellent in care from the first minute of my visit up until the time when i walked out. There was no hesitation in questioning my symptoms but rather an informed consensus between caregiver and patient about what to do, and figure out what could be going on while keeping cost in mind. Top notch care, great team. writing this 2-3 month late but because i remember the experience from time to time & how pleasant it was. The bill, not so much, of course, But whats hard to come by is quality care.','2019-05-12 17:48:33.358000','2019-05-12 17:48:33.358000',5,'Edgar Vidal','https://lh3.googleusercontent.com/-mVGVHoVxoqU/AAAAAAAAAAI/AAAAAAAAAAA/rdMdcZ_ub6U/c-rp-mo-br100/photo.jpg','8679688254631342173',8843),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpqp3JxUb7MkPRsk0tJQZ5JvhbbYkpPEce3vGd6-gmAOxYlOqDvyv8xB7epDHAFOcVsarzrnKNfp1GNtQUKbimc0tMGQM','All of the staff was wonderful throughout the whole visit!! Thanks a lot to Dr. Yost, Kara, Gunner, and Courtney.','2020-01-14 23:08:40.054000','2020-01-14 23:08:40.054000',5,'Dakota Bloyd','https://lh6.googleusercontent.com/-3gaGrbQdmF4/AAAAAAAAAAI/AAAAAAAAAAA/DBTvHfTMP48/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',9816),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpqs77QuTUtc90H7Tfsm17HjSd4Kvtob1FW5rEJobhy-KHvZLHzPG_KBGLTWEIVD9c77mT6GKKRvQwSxyWBpcWov3I0wQ','Very nice and helpful staff! I didn\'t have to wait at all. I would recommend them and will definitely return if an emergency arises.','2016-07-23 19:32:32.174000','2016-07-23 19:32:32.174000',5,'Angela Olmstead','https://lh5.googleusercontent.com/-tIos-mFx2uY/AAAAAAAAAAI/AAAAAAAAAAA/IChStcngtvg/c-rp-mo-br100/photo.jpg','14567670160750071148',2002),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpQTB9ej523w3jIIPi5JU7Om4DBgDhVsraj1CTcBsa3ldUxGm-ARLdFeNeQH5btPWtFSPrmkl_UXALU1HWrfwMnMv29pI','Sita, Kristina, Allison, Leah, and Dr. Chambers took such great care of us! All of them were so kind and friendly. It is such a great place.','2020-02-17 03:06:25.577000','2020-02-17 03:06:25.577000',5,'Anne Conder','https://lh6.googleusercontent.com/-4meCQ15wNvg/AAAAAAAAAAI/AAAAAAAAAAA/kpa9t0mgiHM/c-rp-mo-br100/photo.jpg','13486358490203335051',13417),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpQW_MlYX8DIGhe-GS270j4bYzMldfDGmyHAhlRHEalgjXWvlcRg4lhds07i5HDl-mnlk1ygxvuuBqN12U-Ue9UjRhd5w','The staff here was very kind, helpful and informative. The facility was very nice and clean. Thank you signaturecare.','2018-08-21 15:04:11.857000','2018-08-21 15:04:11.857000',5,'Lenita Whited','https://lh3.googleusercontent.com/-efecAnROXEA/AAAAAAAAAAI/AAAAAAAAAAA/VjxeoFGieKk/c-rp-mo-br100/photo.jpg','16590124370714063921',3784),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpQyy4VQ22zsWsIIq5DGfCJkCzWY0NRFfVrP9-91-TEhcXh0C-xZ7eX9yWvk1USgEuxTxSIuD-Mg7XAvt72U6hSFIIEQA','Fast quick service. Super friendly. Nurse Sarra is super friendly and doctor Dang is calming and nice.','2020-03-01 06:59:58.240000','2020-03-01 06:59:58.240000',5,'Lil’ POP Decor','https://lh4.googleusercontent.com/-6eZIeGGykUg/AAAAAAAAAAI/AAAAAAAAAAA/sIeTJ28lqog/c-rp-mo-br100/photo.jpg','12541597562633926366',13324),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpr_4wGMYObQtA2tUg3ewLffiDW24cjPCGvsDJGNGedYMGQ5EfTeOHbjGBG0KmncuS_U-atna1jUrXXUKCZzT0lakhrMM','My wife took my 3month old son because he had a nasal congestion and after they did x-rays on him they told my wife that he had abscess on the back of his throat and that was going to need surgery on his throat ASAP. We immediately got worried because our baby\'s health was in danger. They told us that he needed to be transported to Texas Children\'s hospital immediately.....1hr later the ambulance arrived. \nOnce we arrived at the Children\'s hospital they diagnosed him only with a stuffy nose and hoarseness(not critical) and told us that Dr. in Signature Urgent Care over looked at the X-rays and gave us a wrongful assessment....it was a scary moment that Signature made us go through...not happy with them. Can\'t wait till I see the bill from them and the ambulance 😕','2018-01-16 14:58:14.829000','2018-01-16 14:58:14.829000',1,'Alex','https://lh5.googleusercontent.com/-cOmo9alG_ag/AAAAAAAAAAI/AAAAAAAAAAA/-fKBPhuKq3o/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1680),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpR9r4uSEHO1AQBoQWUj8nvtDQYYsSynlmgj3EDSpO8jY_eE3dtcBleLC4I9Lllgk2DRJroEWgjGNWXgrvrftA_C2CExw','Jessica S was awesome!','2020-07-20 15:59:12.344000','2020-07-20 15:59:12.344000',5,'Mercedes Armijo','https://lh4.googleusercontent.com/-guDWHJNZFxY/AAAAAAAAAAI/AAAAAAAAAAA/7JleQye5kwM/c-rp-mo-br100/photo.jpg','14748677429039074158',21667),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpreigYaKoiv8-W_9p8hpV6kSlZj3FlFfGxYeirYL7V7KNWlNCfpl_fBG9Rcv_bAmJtX0y98Ik_h4MZijA_3LxuadbwXU','Loved signature care and how quick they were to get me in and out! Highly recommend!!','2018-10-19 01:43:47.466000','2018-10-19 01:43:47.466000',5,'Jessica Polkinghorn','https://lh4.googleusercontent.com/-3Agvx2kHWfU/AAAAAAAAAAI/AAAAAAAAAAA/hZZULhkRWhs/c-rp-mo-br100/photo.jpg','16590124370714063921',3698),('AIe9_BEHZ7lh7y1sP-UInhkpmlIprfNB7HZHyVh-zlGsNOfXiHUBtD4Wt9D3sKBUhhSXBiVAPm8RmI4G93-eZ9eZulR2clQXgEeLZ3WXOf1WV14Hcm-YksI','Dana, Was very nice she made me feel really welcomed and comfortable during my COVID-19 test thank you for being on the front line of this pandemic you are truly a HERO!!! (Shot Out to my boy Cody, for being patient with six women all talking at once trying to get Starbucks cards)','2020-07-29 16:55:54.871000','2020-07-29 16:55:54.871000',5,'Tigre White','https://lh6.googleusercontent.com/-E6UZNZq2uNU/AAAAAAAAAAI/AAAAAAAAAAA/00yj--vzXxo/c-rp-mo-br100/photo.jpg','2077061009497551125',22954),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpRhA-fKR_-0NM0J2ornNHfHvk-QJ81T6FUzCyY3iALpgpn4bkGb6_Tj6rifI2eV_tSx_LlcV4r9QC9kCopiQ-Cfwy3Cg','I never thought that going to the emergency room would be a positive experience until I visited SignatureCare.\n\nThis is where you need to go when you are ill and desire VIP service.','2016-02-14 02:57:04.115000','2016-02-14 02:57:04.115000',5,'Adrianne M','https://lh4.googleusercontent.com/-he4iZ8KyN4s/AAAAAAAAAAI/AAAAAAAAAAA/bZqaQDv3ibo/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',8024),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpRiOAKRRJKneqG-UPh9KAOj6Pt3Gcu8E7kuGasaWEeJKJcvpnjAiXd-2KVdZ3ZeOiU6W4tF0rHuAmjd_qkuOCFsopsYY','Very prompt and detailed. Very clean. Seen by Dr. O\'Malley. Explained thoroughly. Luisa at registration was very nice. Nurses Jessica was nice as well','2019-05-28 01:25:17.048000','2019-05-28 01:25:17.048000',5,'Claudia Nava','https://lh5.googleusercontent.com/-dOWNaJ4oNCQ/AAAAAAAAAAI/AAAAAAAAAAA/3Cn1Lox2CM0/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpriUKEF0R_mVcJuSyiFCzBYzgCg_sky598-NRSCoPPxwIcrfA47xHLlBewEYmWqQGC89dNM39PEcaNNRV5QlA88An3-c','Excellent staff and superb experience from check in to check out.','2020-01-30 03:20:09.806000','2020-01-30 03:20:09.806000',5,'Kat','https://lh5.googleusercontent.com/-6nQ4RUE8V84/AAAAAAAAAAI/AAAAAAAAAAA/vmba4CbbFt0/c-rp-mo-br100/photo.jpg','16891069708558046635',13968),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpRMTM6dCrFeYM4vL4DyjTPaHjLyltgKlj1Bx-iB2xiC64jbK5t5rKjhquxj3vRqZSSge2aRocl_XSwhuHBC6ooNfdxTs','Everyone was very friendly and welcoming. We had a five star experience and that is saying a lot when you are dealing with a sleepy 2 year old! Kimberly, Brad and JR were on duty and we highly recommend them! Thank you!!','2017-03-21 18:13:08.348000','2017-03-21 18:13:08.348000',5,'Beth Koons','https://lh5.googleusercontent.com/-dK9azFh5-YI/AAAAAAAAAAI/AAAAAAAAAAA/YVHjQ-cgXUM/c-rp-mo-br100/photo.jpg','16590124370714063921',4029),('AIe9_BEHZ7lh7y1sP-UInhkpmlIprno4lp4Hzs4LZU6pANhqaiBrd-cOzevG_zNKsPKo5l4ln1WDLqTKomXMKa2THK0lvB8p4QozxL2Yod6exaAFB1csAI8','Great service, friendly staff and professional. Everything ran smoothly. Thanks to all of you!','2020-07-17 12:57:22.040000','2020-07-17 12:57:22.040000',5,'Sam Knight','https://lh3.googleusercontent.com/a-/AOh14GjtuTDhG2Uv3CiRt2lwGGh4SH37ZnquEWXyOFRBsQ=c0x00000000-cc-rp','3511292162159714121',22164),('AIe9_BEHZ7lh7y1sP-UInhkpmlIprTgzOj5pacez7HfrUeFxnx0PW3sBlsPhQEdBNkdxEFU7onuT5dwEZxwHzMeoy5C0q0ly_W4jHDU6v8KkGVO3AdJgodI','Great experience! Staff members were wonderful. Thank you very much Dr. Sullivan, Kim, Lisa, Mr. Bancroft and Sita.','2019-10-01 02:35:50.152000','2019-10-01 02:35:50.152000',5,'Barbara Gomez','https://lh4.googleusercontent.com/-oVCCKIgeYgk/AAAAAAAAAAI/AAAAAAAAAAA/zTzgrecz11g/c-rp-mo-br100/photo.jpg','13486358490203335051',795),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpRU2PerGCF5tOC6AHvrKYyGYMBp5nwnE2R7AN19XN1EzNGfGNKfhEXgFtaNkp9s_7HCc7ErZYDvbE_j_JtvOr91bPkfg','Very clean, friendly and fast service','2020-02-04 20:37:50.691000','2020-02-04 20:37:50.691000',5,'Shawn','https://lh4.googleusercontent.com/-YkT-4mk-Pxo/AAAAAAAAAAI/AAAAAAAAAAA/rubrzgmakP0/c-rp-mo-br100/photo.jpg','14567670160750071148',13559),('AIe9_BEHZ7lh7y1sP-UInhkpmlIprueeqGOE-QpMyZ-j3CiwS82QN80U1PbIDS9nPtAiynIZ19sZTpjlWcxFhp7-SacCaymIYZctVGj4wWkXwMn6lIUs-bQ','This unfortunately is the 2nd time I am here this week. The first time this week was with my son who was involved in an accident. Doctor and staff was amazing and showed so much concern for my son. The 2nd time today for myself. As soon as I walked in I was greeted and everyone is friendly, I was seen right away, and let me tell you. I was cold and Marcus B. saw that and brought me over a warm blanket. Nurse Alvean A. Was amazing and shots were not painful. Dr. Pham was knowledgeable and showed compassion. Great team way better than traditional ERs.','2019-11-19 22:10:29.348000','2019-11-19 22:10:29.348000',5,'Veronica Pina','https://lh3.googleusercontent.com/-f-kLGXzPcWQ/AAAAAAAAAAI/AAAAAAAAAAA/U6NLdpVxqsM/c-rp-mo-br100/photo.jpg','16389487648212004696',2659),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpSP8ARUKwaN7aaGCGwraD4_5ae0NabmJ0fAudPwC6-z-v4Up4s1JcrdepuFCKTkiCGtGlsYoHF8gjYyyD-xVYUNaSEyA','Came to signaturecare for a routine checkup. The staff including KAT, Denise, Dr O’Malley and Patricia were fantastic and very welcoming. I will definitely be back in the future.','2020-02-21 15:25:51.007000','2020-02-21 15:25:51.007000',5,'Sandy Ceazer IV','https://lh3.googleusercontent.com/-rYoT0jJ0SIw/AAAAAAAAAAI/AAAAAAAAAAA/EGalmelJnxI/c-rp-mo-br100/photo.jpg','16389487648212004696',11064),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpSSfT1pCjTpf3OSs0RLBa8nk1dVi2RgltUGaMqsCXRTZNv3aEni8pbu-W0FZd_Hbac_hFibxaHb104xJJiRT8XRHIbWw','Best staff ever!! From the moment I walked in, registrar, Ashley S. greeted me with smile and was so welcoming. Both nurses, Racheal B. and Tammy W. were so nice and took great care of me, as well as rad tech Jessica N.!!\nDr. A. Nyland was awesome! She took her time examining me and after results were in, she clearly explained everything and made sure all my questions were answered! Never felt rushed. I loved this place and the team! Will definitely recommend👍🏼👍🏼','2019-04-24 22:24:22.090000','2019-04-24 22:24:22.090000',5,'Nancy Villarreal','https://lh3.googleusercontent.com/-NoKSmaSZIhM/AAAAAAAAAAI/AAAAAAAAAAA/e-ARrH0H00A/c-rp-mo-br100/photo.jpg','17898197009688164559',5759),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpstuQlzexrmFIIzslgLx1PSFnskT_SG1acP_CDu5H-R6jVntDiCBJ_ryZ3QFsW2dK8SR-GPsdKh2UxUcTS6isFzmNt7w','Everyone was kind, patient and efficient. Registration with Malissa. The radiation tech Laura was great as was nurse Kristina and Dr. Frausto. I was quite shaken after a car wreak and they all provided great care. Thank you','2019-01-25 21:40:54.568000','2019-01-25 21:40:54.568000',5,'Stephanie Cutts Cheney','https://lh6.googleusercontent.com/-Dn51bye6cOY/AAAAAAAAAAI/AAAAAAAAAAA/FVc_jU9LVIc/c-rp-mo-br100/photo.jpg','12541597562633926366',559),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpT4bsSFcn-CNiKZMHx6epx1gcc0SkM319rrUfgpPNr4OhtEPqbvl2-HHAqeK1jsUR8IN3Li3mJVnzIApZmZFQdwPm9lY','Good service and very helpful and kind staff there','2020-07-29 05:24:27.605000','2020-07-29 05:24:27.605000',5,'Oscar Garcia','https://lh3.googleusercontent.com/a-/AOh14GhdgFzJav7xqp2JeBlynSogdhiWouSzP0Ve1CxI=c0x00000000-cc-rp','8918455867446117794',22280),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpT4n1lkov3CmUXM-qiCLveCAbBDVm2M8vRnhXldKngZ16FM4A3yi9incQiAQaaiy3uHWs-Nd-lt6NhbOsVF-2Mgi1LHQ','It was a great experience. Very clean and new place, friendly stuff. Way helpful and fruitful visit than my regular physician office. I am thankful that this place is here. Dr Daniels, Kristina, Mayra, malissa and Scott','2019-08-02 15:30:03.252000','2019-08-02 15:30:03.252000',5,'jafar rezai','https://lh5.googleusercontent.com/-ulpXlCSWoeM/AAAAAAAAAAI/AAAAAAAAAAA/ZlrgQbKZDHU/c-rp-mo-br100/photo.jpg','12541597562633926366',468),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpTAjvyywQj4c5V0zJDOtQy7__uwRbYWxH4PF4FNYT7uAUA8xxRgjnBhGhq4s1ELl3H-dg1DWWK9SX3zKS53JpJ9tMmKY','No respect for the people waiting. We waited for 3 hours and when we got to the front of the line, we were told that they had cut testing off right when we got there.... 3 hours ago!!! \n\nHave some decency and let the people wasting their time no. Joke of a staff and services.','2020-06-18 18:35:50.762000','2020-06-18 18:35:50.762000',1,'Uriel Quintanilla','https://lh6.googleusercontent.com/-qMBiCKtVo1k/AAAAAAAAAAI/AAAAAAAAAAA/lonLyVB9QMg/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',20939),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpTCpJcLpvsBqUJgBURxfwRs3v7ORWFHHU4_SLrDw2vbs5265_X6-t05Dd5GC_TzU5i-ujmzLzy_ES3slQXkBkKz5MVdY','Great experience!','2019-06-26 16:45:23.807000','2019-06-26 16:45:23.807000',5,'Charla Ozenne','https://lh4.googleusercontent.com/-FJFtRiPGog0/AAAAAAAAAAI/AAAAAAAAAAA/KWSp_ptNkqs/c-rp-mo-br100/photo.jpg','8918455867446117794',9111),('AIe9_BEHZ7lh7y1sP-UInhkpmlIptM9zXy2jKNYrSPciK6G8kIxpMeZk_BWSuhSXUCd3DH3cNPOXyyeh9aRlKeRAe0CWglPPoDK_y3h8aQ1ZUXgWruKw5q4','The wait was exactly fast I was seen asap. the location was very clean and was giving exceptional customer service to all employees that helped me when I came in will definitely tell others about you !!! thank you for all you do . If anybody needs care and want to be seen and took care of in a respectful manner come see \n\nDr.Dang\nKeaire\nChuriah \nNorma\n& Eve','2019-11-01 16:48:13.107000','2019-11-01 16:48:13.107000',5,'jalecia nealey','https://lh5.googleusercontent.com/-R847QwBosu4/AAAAAAAAAAI/AAAAAAAAAAA/oZ-WpFC6AP8/c-rp-mo-br100/photo.jpg','3511292162159714121',7150),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpTVXzZ41EO5xFUvbbamVa5esZrUkVB7wcv-ZeZc5vTJwXoGb6CXGBKILiq8xB9cFnX16eZzG8bz4oxJQrMzOIzrujJN4','I had a great experience bringing in an employee. Lisa H was very helpful making sure we were well taken care. Cory and Krystal took us back quickly and insured we were comfortable. Dr. Hueta came in with a great bedside manner. He was very pleasant to be around. Our radiologist Aaron quickly took the pictures and had a prompt report. Outstanding visit!','2019-07-20 21:37:12.192000','2019-07-20 21:37:12.192000',5,'Dean Browning','https://lh4.googleusercontent.com/-8K6miv3cDkU/AAAAAAAAAAI/AAAAAAAAAAA/dNkhDxVzcbE/c-rp-mo-br100/photo.jpg','13486358490203335051',888),('AIe9_BEHZ7lh7y1sP-UInhkpmlIptxNJ1WL3wxrr_Sa-tZYSZflox9g_4bOboS8vJ_fyOIr29p8YBdv0G6w1V3VflMpArveOX_TZVU0hu565lUecbesH888','Came in with what I thought was abdominal pains while pregnant.. little did I know I was having contractions. The staff worked together and was able to help deliver my precious baby girl which I know they weren\'t prepared for at all. I thank theme for doing what they did','2016-09-05 22:43:33.083000','2016-09-05 22:43:33.083000',5,'Razna Khan','https://lh5.googleusercontent.com/-RtrMnsy_Mvc/AAAAAAAAAAI/AAAAAAAAAAA/QtdOWrblbzw/c-rp-mo-br100/photo.jpg','17394740196501090048',5206),('AIe9_BEHZ7lh7y1sP-UInhkpmlIptyG84-UYeGXzuW5-mw_QWxZ8068ct6xO6WPSeBCFuBkk2afEUBHXmcSGNINndUiUef6pnKiGy-mrilJzy8VTzCRWq50','This facilities was great Dr. Farooqi and Rollie were a great help. Natalia was kind enough to offer a blanket as well!! The receptionist Amy was great and welcoming!!!','2019-06-18 02:45:36.692000','2019-06-18 02:45:36.692000',5,'Jonathan Mendoza','https://lh6.googleusercontent.com/-KZiL43i-JJ4/AAAAAAAAAAI/AAAAAAAAAAA/lUVf1Tu-Yc4/c-rp-mo-br100/photo.jpg','8679688254631342173',8834),('AIe9_BEHZ7lh7y1sP-UInhkpmlIptzl_jnF4WMNp7owVhd4rVenGmz1wXnv1zZaQtbFZqibE5RppvLCLlO9o9M6GwM8g3eFemdT8ku9NYy45ynLAq5CDaJ0',NULL,'2018-01-16 18:48:37.219000','2018-01-16 18:48:37.219000',5,'D.J. Azaryah','https://lh3.googleusercontent.com/-PDlDccTuNfQ/AAAAAAAAAAI/AAAAAAAAAAA/O9H8WhcbECM/c-rp-mo-br100/photo.jpg','8679688254631342173',8905),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpu2kffdcQU4JNApf1d8j2I2jXjsDgT-_evO2lGG68FJMnZelPJhiBDflBEutGo2jlYRlPIpjuN2djoOhmFwgu0wFhZEA','Friendly and helpful team. Quick and easy to get in and out of. No long lines.','2016-11-07 13:52:05.614000','2016-11-07 13:52:05.614000',5,'Ian Palmer','https://lh4.googleusercontent.com/-6iJ0Q8JDp4k/AAAAAAAAAAI/AAAAAAAAAAA/3MI-tRYw4LA/c-rp-mo-br100/photo.jpg','14904078213800803294',2447),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpudYYr12Q4-iOl2ONt42wtYKCVNBHlIB7a7d-Lccv85TPCUwrYVIyRgLkhvStv6--Kesm5P2dlSo9ieAeCIN7Pk4IqzM','Always a great experience when we come here! Never for a good reason though.','2019-07-04 02:23:13.457000','2019-07-04 02:23:13.457000',5,'Mckayla Wisdom','https://lh3.googleusercontent.com/-1BZtSQzusOQ/AAAAAAAAAAI/AAAAAAAAAAA/wI0ZEgziI0M/c-rp-mo-br100/photo.jpg','16590124370714063921',3320),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpuESOcZ5EdvYdmIxQ0cSO8y23yfTRnXh_DyKt3I76S6Um-c33iXqEBaEIewU7z6EpP_YSPq1pfJw6CAe67ZlwH0z-csY','Went here today..service was great and fast. I was greeted with a smile by Patricia C. in registration. The staff was welcoming and attended to my needs. Would definitely come back again! Highly recommend!','2019-12-30 22:59:19.972000','2019-12-30 22:59:19.972000',5,'Chymreva Allen','https://lh4.googleusercontent.com/-qKRiKP_gkBo/AAAAAAAAAAI/AAAAAAAAAAA/zl9be9WKnzM/c-rp-mo-br100/photo.jpg','16389487648212004696',2496),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpuhOc9yvb1mpyRUlp0tHmR40wcebISyc9uvrHWS7rxoc_qzGigkf6d-_JQMZa_DQdhd_5mUtTLRQpgd1i1Y7PFgIv0DQ','Great team of experts. Quick and clean facility. Dr O’Malley, Nurse Alvean A, radiologist Tricia B, ER tech Jordan N, and registration Patricia were all great.','2019-11-30 22:55:38.590000','2019-11-30 22:55:38.590000',5,'daIsuke gibson','https://lh5.googleusercontent.com/-GrtzQ988m3o/AAAAAAAAAAI/AAAAAAAAAAA/URcqS7Gs-fM/c-rp-mo-br100/photo.jpg','16389487648212004696',2600),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpuPBmxZYZM1RraNisl8qyZdu4uDTzcc8N6SA5TdwW08dIDMUX1NHu22iuYywslgKqOR82RKi-ly9SvypzG2CJ0ix_fo4','We received excellent care from Dr. Patella and nurse Sarah. The receptionist Tanishia was awesome! Loved talking to you. Thank you Signature Emergency Copperfield!','2019-11-27 09:45:25.914000','2019-11-27 09:45:25.914000',5,'OffTheTrack Woods','https://lh3.googleusercontent.com/-ebQOlBfLyqI/AAAAAAAAAAI/AAAAAAAAAAA/DzkLHjqx9Qs/c-rp-mo-br100/photo.jpg','17898197009688164559',5395),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpuQF-HpzUm5VG907AIpqLDvF1xB5C53TynBp9HMkfL22JDCzIuXJaDeqegDnzto3iORxeFFaAB3q6mg-73CIhctDrk0s','Dr.O’malley,Ekaterini s,Marcus b,Luisa r thank you y’all did a good job','2019-10-13 02:59:36.280000','2019-10-13 02:59:36.280000',5,'Sandra Collins','https://lh4.googleusercontent.com/-jaexXMo41rs/AAAAAAAAAAI/AAAAAAAAAAA/J4se0_B6kwY/c-rp-mo-br100/photo.jpg','16389487648212004696',2824),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpURLenKncbB1llFFq95dMOQ4dThBp2_tNa7wTVVFKhX1vExLybKF7SUkSmSs8nkXdgAlC85bcH0H0DF5A-2-ULHekbOA','Great service! I was seen by nurse Betty right after I checked in. Karen at the front desk was very nice. Dr. Edwards made sure I got the correct treatment and I feel much better! I definitely recommend this emergency center 🙂','2017-12-30 19:11:19.441000','2017-12-30 19:11:19.441000',5,'Kayla','https://lh6.googleusercontent.com/-PyEC_2ciFQs/AAAAAAAAAAI/AAAAAAAAAAA/DRFoGan6CvM/c-rp-mo-br100/photo.jpg','17394740196501090048',4909),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpUzfhA8Ykckin50lRe73rTe3eZxvj1Uaz1pkYEmPFElB_nKZV3Gi-E2FJmCe5BaiXMJOw1OEoiRkSjnpVikzDwnbFqnI','Amy is an excellent receptionist. Dr. Wren and I became real close real fast. There were smiles and tears had. Though the tears were mine. 😅','2019-04-21 06:30:36.729000','2019-04-21 06:30:36.729000',5,'Eidyn Gloria','https://lh4.googleusercontent.com/-s3cExD4_MPk/AAAAAAAAAAI/AAAAAAAAAAA/uYTR4uGm7FY/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7356),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpv_RS3gY0CCYq3z8Yp7RHu98sUEDpcQ_Daa9-bmcHFuSgBYDQsMepBfLoLKlm8dfcZBoiWEKHLxY4o7wJRr7u7rUDLsI',NULL,'2019-07-20 21:37:43.101000','2019-07-20 21:37:43.101000',5,'gamingwithpeyton 0','https://lh5.googleusercontent.com/-ljUBmehQCBI/AAAAAAAAAAI/AAAAAAAAAAA/emhLgsOhIQs/c-rp-mo-br100/photo.jpg','3272657195432704501',6940),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpv1bh9LmmmCZSMsVN2KnCx46vBMkMQAS3_YdGgYhD8nfASRIDU92aIZWG3lCJBGCWVBZmbTTP6PokLy62HC0iVivnUrU','This emergency clinic was very quick and took care of my husband within 2 hours. Would highly recommend this place to anybody in the stafford area. Big ups to Dr. Singha, brenda, shoba, marcia and dawald!!! Yall are doing a great job :)','2020-01-12 07:11:03.920000','2020-01-12 07:11:03.920000',5,'xavier mendoza','https://lh3.googleusercontent.com/-LatXwneLcYA/AAAAAAAAAAI/AAAAAAAAAAA/1Jv6EMcNy_I/c-rp-mo-br100/photo.jpg','8918455867446117794',14876),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpV2e-J9LQaaufhNqzasSagaHj2vUAILkT-mBxIaYfNxVtatHPhFw7_0uRo5BebT8sLkrbVMKqnwvmSIsZ5m4oHHANKgY','Excellent service and fast service. Knowledgeable, caring, and make you feel welcoming.','2019-04-29 02:25:40.408000','2019-04-29 02:25:40.408000',5,'bj walton','https://lh6.googleusercontent.com/-TI8FI5mClYI/AAAAAAAAAAI/AAAAAAAAAAA/0Q2oeEMoa7s/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',510),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpv43I96RogL1Goo9Hr4k9KbEATuWG_D_WAuno1EQl792Cxglw3nxFtdVLn45Hcaib4JP1bS9hjGvpyd3_1cA3Dpqw3Do','I had a great experience at this ER. Nurses were great especially Rebecca W. She was always joking with me and my roommate and also checked on us very often!! Very thank fil for these guys!!','2019-07-21 20:02:40.668000','2019-07-21 20:02:40.668000',5,'Annlyn Ritchie','https://lh6.googleusercontent.com/-3vfYznSRybI/AAAAAAAAAAI/AAAAAAAAAAA/zQueO2DlzsU/c-rp-mo-br100/photo.jpg','16590124370714063921',3283),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpvBa8ayOZ9XnZTDpHtVJAJQgr49RwT2_KgixDFsMnsC3oDxOs_h9C_zZ6m-F_xXk8t0moaCxI5RejVBx790ZVhZ2IVn4','Real nice and fast service. Holly Christian and Irvin were great help. 5 stars any day','2020-03-10 06:51:53.967000','2020-03-10 06:51:53.967000',5,'Richie','https://lh6.googleusercontent.com/-tFxiihVfEdc/AAAAAAAAAAI/AAAAAAAAAAA/RWlWzsX4QGs/c-rp-mo-br100/photo.jpg','12541597562633926366',20915),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpVgtWwttM848QrJF6Qf74MHOv0xyJ9a9n76AVkhOgQgqT09gimbYzKtNgPW0FbkktTpyEGJau_gRnGm3WE9bzSkUUBlA','They are super friendly and very warm welcoming. Melissa was so sweet when we first walked in very helpful. Kristina was THE BEST NURSE ! Scott was so firendly, and Mayra had us cracking up too. they all were so sweet. THE BEST URGENT CARE IVE BEEN TOO nobody had snotty attitudes or anything they were awesome and they took great care of my friend. ! Thank you all soo much. btw she is very dramatic lol','2019-07-26 21:42:28.131000','2019-07-26 21:42:28.131000',5,'Taijhana Jenkins','https://lh3.googleusercontent.com/-w4xOefjDrKo/AAAAAAAAAAI/AAAAAAAAAAA/-tZS0KNTCyo/c-rp-mo-br100/photo.jpg','12541597562633926366',478),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpVi-M38EdnlmpaFGctc56yZUBnaCbNr63TRstHHxlt9AFMYlNqICu3aUAOP444UyZBcgFG_8oS1Q_PfoJ-AlFnRvAXPY',NULL,'2020-07-20 15:29:10.013000','2020-07-20 15:29:10.013000',5,'pedro genaro','https://lh6.googleusercontent.com/-GiU9ZqcOBNk/AAAAAAAAAAI/AAAAAAAAAAA/D-XuDdrVzns/c-rp-mo-br100/photo.jpg','14748677429039074158',21669),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpvOyuef1MLW3oKglBgPyh6EA2ZF4OUF0XEyTn_ToNovB80CNHfX7dAFpUpypqL0Kahh_wvOMZB3ibtWkBWNdcvBtI7MI','Highly recommend! Called the other day for information and Dee was very helpful! Will be going to this facility if need be.','2019-06-26 20:50:16.480000','2019-06-26 20:50:16.480000',5,'Kayleigh Thomas','https://lh5.googleusercontent.com/-dBxl0L4RYdQ/AAAAAAAAAAI/AAAAAAAAAAA/RPuqmFr9fEk/c-rp-mo-br100/photo.jpg','3511292162159714121',7281),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpvRAfYHDoZe7glaJ1BBkazMoxbHvW5CiIpM4EIM_QZstYc7ptJKVFSMw7via1lUn7hSzJ3RVvtiLKw5XDSYZL9vJI_o8','Great service and great staff. Dr Jones and Justin were really helpful and kind.','2019-09-06 14:59:16.710000','2019-09-06 14:59:16.710000',5,'Wilbryam Perez','https://lh3.googleusercontent.com/-3ZS2NTotZOw/AAAAAAAAAAI/AAAAAAAAAAA/S_gJwH7Du_8/c-rp-mo-br100/photo.jpg','2694018788013845459',6071),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpvufpEjOQ301k2jrbC_LM5nFis_m294M4BHFS0Rlh_ZxfpgD7yN_Dwt0zx0h6Oz6AMVI4kdOQNhUQLwqi0Vhc1vbmstI','Very good service, clean and helpful','2019-08-19 03:05:47.789000','2019-08-19 03:05:47.789000',5,'Diana Rivera','https://lh4.googleusercontent.com/-Ep4TOXZuujE/AAAAAAAAAAI/AAAAAAAAAAA/SRbP6vHZNL8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpVwPmUr_puQ25jBW1WX1DY0lG0SgFyspwRiONK6jSIEZXyuAbKCwIfjir20bujqk8yCanmcjQoXD_B7Vgp1Zt3fgbBLM','I burned my hand pretty bad on a Saturday night and lucky for me, SignatureCare is open 24 hrs! The staff was very nice and attentive, and I received care almost immediately after I arrived. Also, they took their time to explain the proper care and what I should look out for with my particular injury. \n\nThank you for the best ER experience that I have ever had. I really appreciate the humane treatment that I received.','2017-05-21 14:01:00.903000','2017-05-21 14:01:00.903000',5,'Alejandro Velez','https://lh6.googleusercontent.com/-CfNBnxyTmTU/AAAAAAAAAAI/AAAAAAAAAAA/TQmz9fZjFqA/c-rp-mo-br100/photo.jpg','16590124370714063921',3982),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpVxDPbMpJ8dgswhNcvOU3qFck3qVMG7SbECaI3cgVGCr8vse7RK8elj5J1fN-YAoFqotNWIYGflpMyn7XLstcGv10zSU','Theirs a very welcoming friendly staff they offered me a warm blanket, coffee, or water while I wait for the doctor. Waiting time had a positive experience and it was a nice pleasant change from what I\'m use to.','2018-03-19 22:49:45.712000','2018-03-19 22:49:45.712000',5,'Corey Wood','https://lh6.googleusercontent.com/-qjnLbrQn6P4/AAAAAAAAAAI/AAAAAAAAAAA/w-0y8cmU3co/c-rp-mo-br100/photo.jpg','3511292162159714121',7715),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpw0qxK8wu4F44U-sVUahcAlaO0wa7GXIjsOQOnb76PxJ3OQjqlYLY_HNcy719pwBYDxi6SUK8FzCj-drbRjqyahwXm1E','Best place to go','2017-06-21 21:35:10.647000','2017-06-21 21:35:10.647000',5,'Samuel Almeyda','https://lh5.googleusercontent.com/-6Kbi1xigy0M/AAAAAAAAAAI/AAAAAAAAAAA/BLJmNzG6PqU/c-rp-mo-br100/photo.jpg','17394740196501090048',5029),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpW7RyKiVUhnHvr-bVV_VpjNZpQvCZBNVqsczJ_Wm4_azr6lfMu8ja_MvYnd441C3cm4K8YAg8CJ0yPvm1RiJZNYqtdGs','Great hospitality','2019-06-14 19:06:23.746000','2019-06-14 19:06:23.746000',5,'Kashmere West','https://lh5.googleusercontent.com/-62jh03Hb2AY/AAAAAAAAAAI/AAAAAAAAAAA/OwvWVAd1BPo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpWD6c0koo0774J3s57817EjemX97ZjLUwCc09l5k4KIno5nhthzwMlNQHg3ytl6cnJctG_l8-tReRU5822qakeKR-nec','Great staff! Super caring! Jennifer Diggs is kind and listens! Keep up the good work.','2019-03-29 20:43:05.761000','2019-03-29 20:43:05.761000',5,'J Diggs','https://lh3.googleusercontent.com/-BcOHp2ewshg/AAAAAAAAAAI/AAAAAAAAAAA/TEjNRPPgKrs/c-rp-mo-ba4-br100/photo.jpg','8626688543755174284',8514),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpWdn25oEurVQrcyaeDxRp-RM7butFi4g0loi40u5X_YZiGPMIdk2uMa4vKlJX-6VYti-wSQa4t3tp6Ey1ZtgmUivoUOw','Everyone was very friendly and made sure you were comfortable, very fast with service, love those warm blankets','2019-12-12 15:11:52.999000','2019-12-12 15:11:52.999000',5,'Crystal Carr','https://lh5.googleusercontent.com/-7EpGht8A-6A/AAAAAAAAAAI/AAAAAAAAAAA/jNLSauRjvDg/c-rp-mo-br100/photo.jpg','8918455867446117794',9034),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpwfrc5CgruAGbFYv4768J9slxA-96bD6LSkRWoKgBhFO8GlllcNos8EMW2uzo5jwYchdFuOra1BaromZHOugpf9prRbU','This was the best emergency room experience I received in a long time. NO WAIT! Check in process was fast and extremely helpful. The staff was extremely knowledgeable and answered all my questions.','2019-02-23 04:18:35.347000','2019-02-23 04:18:35.347000',5,'Yolanda Williams-Bobino','https://lh5.googleusercontent.com/-iY4_TbnaLmY/AAAAAAAAAAI/AAAAAAAAAAA/5g-IC8B-8bw/c-rp-mo-br100/photo.jpg','8918455867446117794',9172),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpWRopCAOCxgVngErP7OGH58Srgb5DZMEa4o0xdjuiTAbfRAU7otzp9cdK2i_XqYX3n68rdQSHrvJmcIZKjEwTdUqEnpo','I went to signature care on a Friday night for something that has been bothering me, that my wife said I couldn’t put off any longer. From the moment I arrived until the moment I left everybody I saw made me feel comfortable and they were all super friendly. I couldn’t of asked for a better experience. They will be highly recommended by me for anyone needing emergency care and is the only place myself and my family will go moving forward.','2019-08-19 17:39:24.773000','2019-08-19 17:39:24.773000',5,'Jordan Thomas','https://lh5.googleusercontent.com/-NPRrpM_rjCQ/AAAAAAAAAAI/AAAAAAAAAAA/Hi3L0sXQ1iY/c-rp-mo-br100/photo.jpg','16590124370714063921',3249),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpWvmWEKWtQTrL-1V1RuZjABJFqeRHmyYYvJjSvN-maKG6iDrb4myc3Vyv73yaUanhjinNcPuwAhvG3rFwWRgdYgsmge4','I understand that with the whole Corona Virus, everything is backed up. I came because my husband had twisted his ankle, and it was nearest to us. They denied entry for AN HOUR. Because they simply assumed that we were there for Covid testing, for which you have to wait. I finally argued with them that I was not there for testing and so they took us in. They then didnt want to attend us because we didn’t have the full amount to pay, we offered to pay $250 and do the rest in payments, but they said they couldn’t accept that because it wasn’t “life or death” situation. RIDICULOUS. We had to leave and go elsewhere.','2020-06-29 20:47:15.560000','2020-06-29 20:47:15.560000',1,'Evellin Carrion','https://lh6.googleusercontent.com/-yBZuKQAcDfE/AAAAAAAAAAI/AAAAAAAAAAA/yP-I3CEBf6Y/c-rp-mo-br100/photo.jpg','14904078213800803294',21401),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpWYQN2T58QbLi4JC19FSsW8kA02FOzi11mULaJUD6BPGCUMjnRwTkDsV2Dt4mnWcW1ie5AFiRa3Pg3XNgr1EuAM4Ctm0',NULL,'2019-11-23 05:02:18.445000','2019-11-23 05:02:18.445000',5,'James Wilson','https://lh3.googleusercontent.com/-LH8yiCIKWSU/AAAAAAAAAAI/AAAAAAAAAAA/MWSCfjF6ZS4/c-rp-mo-br100/photo.jpg','13486358490203335051',725),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpx-euly8Ql6bsNdGWUKb2G2Jh8O-x7v1BGdZXFKCdHMgOeDOYiQfIcKYF2MdXi8e9ebkxppaCnDNYucCeDRCc2TcDfsw',NULL,'2020-06-19 20:52:55.582000','2020-06-19 20:52:55.582000',5,'Melissa Ruiz','https://lh5.googleusercontent.com/-4042F_V_dLc/AAAAAAAAAAI/AAAAAAAAAAA/L617rD_SbGY/c-rp-mo-br100/photo.jpg','6521947413723274945',21162),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpX552nEuDwPiRptfVsWlgHZ37v2sHgtLCVTdo5eNwoB4JY7zv3SmH6-VVjulFeeCDxI-N5_iaZFjckm-c2Z6jlIO_vWw','Quick service, clean lobby. Alexis took quick care of my friend and we were satisfied with the service. Would recommend.','2019-02-14 04:48:40.388000','2019-02-14 04:48:40.388000',5,'Adam Cearley','https://lh5.googleusercontent.com/-uOaB0fogo0o/AAAAAAAAAAI/AAAAAAAAAAA/CZFHmDpt4Os/c-rp-mo-br100/photo.jpg','16590124370714063921',3551),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpxayjEsnXq26qH8exTTny3uK67Ite1GSMcFGUI36sNSbmPMVa_u7klrKWDs141MOM03uB8Y-kIxFbqDs0BjIL_d3fUus','First time at SignatureCare Emergency and I am glad I went there!\nFrom registration to treatment everyone there was so friendly, helpful, & caring. This is a first class facility & staff. Thank you Dr. Jones, nurses, techs, & receptionists.','2019-09-23 23:06:49.946000','2019-09-23 23:06:49.946000',5,'Tom Stewart','https://lh4.googleusercontent.com/-2cpG0lGjTEA/AAAAAAAAAAI/AAAAAAAAAAA/7dSTU0DXhFU/c-rp-mo-br100/photo.jpg','16891069708558046635',4194),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpXe6SlSdDbwanJ5uNqC7AyM6scG-XglDbviIPaVnvTJB3z7EK0RwjiheW9QoUC5grQf1eKsnPZIpKSKp6Dhy37tElFOI',NULL,'2020-07-13 21:34:52.643000','2020-07-13 21:34:52.643000',5,'McKinley Michalowski','https://lh3.googleusercontent.com/a-/AOh14GisjRINHOIdV-4JOYCo0FTHCkiEJ-cil0rQ8rV2nw=c0x00000000-cc-rp','16891069708558046635',22039),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpxi_AYCZbHBxzq00O9pczy-Qasc_K1d9GndDM_qQQoYRft5WECM-tqLUZnPfvovk8mq7qYS4pU6-o2E7QYG2yP8KK9A0','I went in for my pregnancy and was well taken care of by the doctor and staff , I’ve gone three times and 2 were for my pregnancy and once for hives all over my body really enjoy this er .','2019-05-19 22:55:05.871000','2019-05-19 22:55:05.871000',5,'Bianca Ariza','https://lh3.googleusercontent.com/-Fbg4t5WZMNc/AAAAAAAAAAI/AAAAAAAAAAA/do1Acqj7xiA/c-rp-mo-br100/photo.jpg','17898197009688164559',5734),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpxjYbdps4oYEI7--_JxWyG1z7d-AgtUJeCL1MxIsyaFqnyz5NEiB_dYl9Kv2BjWW8ACdDBbJCpiLFbbC0oDer6IV7z5U','The Staff took such Great Care of me. I felt Safe. ! \nDr. Thomas\nSure Jani\nTech Nanci and\nThe Register Jesus, Were all Patient. most of all they Took action right away . I Wouldn\'t recommend any other place.','2019-03-07 22:49:02.579000','2019-03-07 22:49:02.579000',5,'b s','https://lh4.googleusercontent.com/-9m7KT77Vq0k/AAAAAAAAAAI/AAAAAAAAAAA/I37FywXmrlA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpXlKXq4vP_EjcYkGfxial4-flVYamoqytsTE27dUjLBtgz6ojALHp1OIpMlYsiurZI878mbWGpdlJkEJdKkwZSMv8V0Q','Best place for emergencies. Everyone was sweet, kind, and welcoming. Thankfully our reason coming here was not a huge emergency, but everyone treated us really kindly! We even got warm blankets! Price was reasonable as well.','2019-07-12 03:49:19.411000','2019-07-12 03:49:19.411000',5,'Sofia Elisavel Palacios','https://lh3.googleusercontent.com/-fxnZyDys730/AAAAAAAAAAI/AAAAAAAAAAA/4X1Q8Rtb6js/c-rp-mo-br100/photo.jpg','17898197009688164559',5641),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpxn6CbBe5Tu-JAWzM8AuKhZmjzbmVIeE-3cMmKegl5fHamUm1AgQigBtRzeohPo_pv-QzxyroIRCy_B3ih3SXEOl37Xc',NULL,'2019-02-23 19:57:51.205000','2019-02-23 19:57:51.205000',5,'Natalia Guerrero','https://lh4.googleusercontent.com/-Qx1krgD7Y4E/AAAAAAAAAAI/AAAAAAAAAAA/D9htj4WGiOg/c-rp-mo-br100/photo.jpg','16590124370714063921',3525),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpxYPc-aO42WhwNy16lOhpfac1_x2cTow_0x2AIYcSZyFBLsD0oRflnEUEmUPltXJqYrUIM4FOfECl2jlPRESSLoaneoc','I woke up at 3 am with extreme lower abdominal pain. I tried to wait until my GP\'s office opened at 8 am, but the pain kept getting worse and I finally decided to go here because I couldn\'t wait any longer. It turns out I had a simple bladder infection. They wrote me a script for an antibiotic and azo standard. A few weeks later, I get a bill for $1600 (with insurance)! \nWOW. A super rip off. I\'m a full time student trying to put myself through college. They should have warned me that the visit would cost over $1000. I feel like I would have decided to wait for my GP. \n\nI forgot to mention - the restrooms were so disgusting. There were urine/fecal stains all over the seat. I had to clean it with those alcohol cloths before I could sit down. Gross!','2014-03-26 17:35:12.228000','2014-03-26 17:35:12.228000',2,'Tiffany Vawter','https://lh4.googleusercontent.com/-HDEYalEraXI/AAAAAAAAAAI/AAAAAAAAAAA/DbAE762l9_4/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8943),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpy1Uej26G_Sc20w-sQNjo-I7eSMOW82LfKsZw72JjmnqGyPny-Nle7Hyago63OIgzEqDT3VjQuy6fqBnEkoZaRJ7beMw',NULL,'2020-08-08 15:16:13.546000','2020-08-08 15:16:13.546000',4,'Clarissa Payan','https://lh3.googleusercontent.com/-wbe7RsobTEI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclBKYiq4DC3sHZVWawRZd8PlZhXrQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22178),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpybTfDh9CGaJILTFBcWHh4wQed-1_NCcTAAsag5hdq85wXYc-2UmAr19-2Xx_KKWl4SgSLAD9nPTpoR_VqBBNrwyQrFE','This was a one of a kind experience. I was so nervous about coming but am glad now i did. The woman at the front desk was so polite. Konya was very helpful and so very nice. Doctor Jolly was amazing and very thorough and detailed and he kept me laughing the whole time. Thank you for this experience.','2019-09-12 17:34:05.934000','2019-09-12 17:34:05.934000',5,'Loraina Camacho','https://lh5.googleusercontent.com/-EJf3xEEwqUc/AAAAAAAAAAI/AAAAAAAAAAA/4L6WTxa0KP4/c-rp-mo-br100/photo.jpg','2694018788013845459',6069),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpyBxRYH33OcqhphX8z-3dFlRgSRoR1ifQ_K-KVxSnKLExAV7XC8cAbOAuWDmdZybTKcrgFFW45FQ5OIgxJgBs-rjnweo','I went there today because I was in severe pain associate with strep throat. I was desperate and next to labor pains in the most horrid pain I’ve ever experienced. I had been here once before a few months ago with my seven year old son when he had influenza. I am so pleased with the service and care I received. Both times I was treated quickly, efficiently and saw the doctor instantly. I’m so glad they are my neighbors. The facility is clean, the nurses were informative, compassionate and tended to each symptom I described. I left in two hours with all my testing done, feeling ions better and with prescriptions to address issues at home. Excellent experience.','2018-06-23 23:55:51.930000','2018-06-23 23:55:51.930000',5,'Karleana Farias','https://lh4.googleusercontent.com/-3KPOH1A91XQ/AAAAAAAAAAI/AAAAAAAAAAA/SW3QW-qagC0/c-rp-mo-br100/photo.jpg','14904078213800803294',2245),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpYbyuOBSZOXTfd-eVMOwdczWXLoKRbyqfRtJbosVgK_IuHIYx6SqDumYdH9hAb3ED7ojDidCw47wv72V1I8Rqukgjsqw','It was a plesure to visit your clinic ,there customer service was very good ,an i will recommend the clinic to anyone .','2016-11-16 17:47:53.588000','2016-11-16 17:47:53.588000',5,'sandria christie','https://lh4.googleusercontent.com/-ECqjaODDIoo/AAAAAAAAAAI/AAAAAAAAAAA/xuQzoLvV-GI/c-rp-mo-br100/photo.jpg','17394740196501090048',5167),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpYd8pCuVLx-w0L8Rm0tdd7HM4QrfiiqJP7xINR6xPz8HevAyLAYM4uVq_EZZ8s1KwDScSj5X0aLjg1R0-C2YMWSm2PUA','Everyone was very nice and kind. The faciltiy was very clean and modern.','2018-02-14 22:46:51.076000','2018-02-14 22:46:51.076000',5,'Ashley Lemons','https://lh3.googleusercontent.com/-vKvE3XPEvqw/AAAAAAAAAAI/AAAAAAAAAAA/-5ksa7rOD64/c-rp-mo-br100/photo.jpg','14567670160750071148',1654),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpyfdbOh4TaSEDGrxUXWtzn4ltP7euf-XqIeOkd4fRwNsqF4sf0zrzSf-Vszmki7R59JL3upHJpovGqPX1hqEZpJzSAps','very nice , polite, attentive, fast , and reasonable \n\nadrianna \njared \nElsbecker\ntheresa \nmagali','2020-02-28 15:37:06.166000','2020-02-28 15:37:06.166000',5,'Sera Bernard','https://lh6.googleusercontent.com/--YQW_ASYzB0/AAAAAAAAAAI/AAAAAAAAAAA/XLMkIpmMsBk/c-rp-mo-br100/photo.jpg','6521947413723274945',14533),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpyjtK7U2QX_geUCDaTrmhkMQyCoM8xlgMmJ1GwUPhJuKAFouLF2aGWgypISaj0BdaYKl8Unu4_i4pKBgb7smK5nKxavE',NULL,'2020-01-31 16:33:03.772000','2020-01-31 16:33:03.772000',5,'Todd Richardson','https://lh5.googleusercontent.com/-P1eftL0Jypk/AAAAAAAAAAI/AAAAAAAAAAA/Txoc5igO45U/c-rp-mo-br100/photo.jpg','3272657195432704501',10464),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpYl1j7fZSuQgSBEP9N_f0cia7ZMM4FQk6bN-kr1G_hb7kYqeTxYR7rJ8cVlxkpD-9n-MS1CWILsbYT3fX4JJFxbGkh5E','I had a great experience with my visit. Right off the start miss Elida at the registration desk greeted me in a pleasant way and was very helpful with my registration process. I was there for 5 min and they called me to the back. The tech, Marcus, was friendly and funny. He offered me a warm blanket which was the best! The nurse that treated me Ekaterini explained very well everything they were doing and answered all my questions. Everyone made me feel welcomed and made my experience one to come back to. All the staff I saw on my visits went beyond and I’m thankful for their assistance','2020-02-04 13:17:18.902000','2020-02-04 13:17:18.902000',5,'liliana medina','https://lh3.googleusercontent.com/-PRK_83J0frk/AAAAAAAAAAI/AAAAAAAAAAA/PwVAbrcimrY/c-rp-mo-br100/photo.jpg','16389487648212004696',10546),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpYLSFpDdLPL3pmGTx25MqGbiqFMS4KpoLhNRMUmls4uDa0lhMJQoZyCuUJfhseS3KVlxUULQivDtYnX5tz-lICamc_OY','(Translated by Google) Dr. Vaagnes Amy Sharesa Brian E\n\n(Original)\nDr Vaagnes Amy Sharesa Brian E','2020-02-08 23:42:07.004000','2020-02-08 23:42:07.004000',5,'ULOVE CHANI','https://lh6.googleusercontent.com/-dn9lQOu6dCg/AAAAAAAAAAI/AAAAAAAAAAA/m9MU32gETkU/c-rp-mo-br100/photo.jpg','14567670160750071148',13544),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpyoXHgmTZ2W8LnylweuRTS2PWF8-77CJO_KBRFyPY5qzm17_mjH2YhSq5JEw6LnoxKpSNFwCg00Azz0D0BcEIKXvVue8','My wife called this center which took 30 minutes to get connected to check the schedule for COVID-19 test. The person on the phone told her to just come to the center and register. Once she arrived, the staff behind the counter told her that she needs to register online(???). It was not possible since website keep saying there\'s no available slot. She wasted time to call, drive there, waiting at the center. She ended up going different facility. Avoid this facility, slow process, mixed communications.','2020-07-02 16:27:26.627000','2020-07-02 16:27:26.627000',1,'Kyle Lee','https://lh4.googleusercontent.com/-qz_tivo9D5w/AAAAAAAAAAI/AAAAAAAAAAA/tVwXufCsFcQ/c-rp-mo-ba4-br100/photo.jpg','14748677429039074158',21388),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpYq5OPAVTCctk1M9Qv02G4lxw3EBbm5pI1CRQdyelTpC51kDz1FkrFJ_NsNJ0Xnk8qTu9DH0KXZ2unIgUOHg0kszxFzk','I went to Signature Care with a broken hand. I was in a room in under 20 minutes and out the door in under a hour and a half. The ENTIRE staff was beyond accommodating. From the front desk, to the radiologist, physician, and nursing staff thank you for taking care of me. This would have been more than enough but Andrew went WAY above and beyond with a ton of assistance from everything with insurance explanation to help with scheduling follow up appointments. Care of this level is rare and when I am treated as I was I feel it\'s important for those responsible to know and receive the praise deserved.','2019-03-14 18:44:44.423000','2019-03-14 18:44:44.423000',5,'Jimmy Cox','https://lh3.googleusercontent.com/-t4Wf0DdX5q8/AAAAAAAAAAI/AAAAAAAAAAA/PriV3l0gOhI/c-rp-mo-br100/photo.jpg','13486358490203335051',1059),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpYuflWI6hmm3GDdIpkquI16bUCOA50JDOO1tD8CixpUYPMjoKEyrp_W7B1ciQRG2uW85QVgi_s2klZSyn8_R5GMpZCpQ','Great service and attention for the patients. Aviane the nurse was great, she make you feel comfortable. \nClean environment','2019-03-19 21:35:13.331000','2019-03-19 21:35:13.331000',5,'Kathia Chacon','https://lh4.googleusercontent.com/-diSE-HoNQ4w/AAAAAAAAAAI/AAAAAAAAAAA/A7enWiSMpm4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpYZ5M2fkv3_xt1luHNXrMtfyMKrKSs7RA13KZjURZMBZBbZJkO6rVm1u7D__ich9Gh50AAsBc6aQNnIST5EZzm9A_UQo','kendra did a great job checking in the patient in a quick and timely manner!','2019-11-23 02:49:56.655000','2019-11-23 02:49:56.655000',5,'Tori Fuller','https://lh6.googleusercontent.com/-d_MQlcCFRvQ/AAAAAAAAAAI/AAAAAAAAAAA/LyCw1gRn02A/c-rp-mo-br100/photo.jpg','16590124370714063921',3086),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpyZAwxC5vOugR27op7UDHvCMc4N3idLLuxOHdxiqkw7byQpxbRnojOkwuu3D-tAhMeWL2KtSxoAm4Pr6233fiGzgW2tE','my appointment was 3:00 am for covid testing everything was in order\n the nurse was very courteous I wait for 30 mins for the result was negative. I will give this clinic for five star..','2020-07-06 17:41:27.927000','2020-07-06 17:41:27.927000',5,'Danilo Lofranco','https://lh5.googleusercontent.com/-w6W5X3ltB5U/AAAAAAAAAAI/AAAAAAAAAAA/cK6KmC-Iu1Q/c-rp-mo-br100/photo.jpg','12541597562633926366',21309),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpz4vSbRytsUazz4TPX3cbx-F11uMI9hsSIr3u1S5AVvH0SEVdNBeni6hIObdNe5zfhibwkTe12ITGVbtvv0f6OTGhR7s','You guys are incredible! Churiah, Dion, and Dr. Soli took care of me and kept me laughing the whole time! You guys are awesome!!','2018-08-04 07:22:38.157000','2018-08-04 07:22:38.157000',5,'Todd Tanner','https://lh4.googleusercontent.com/-zVaildS7WRQ/AAAAAAAAAAI/AAAAAAAAAAA/a74AY73sI6c/c-rp-mo-br100/photo.jpg','3511292162159714121',7663),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpZ6KmYQPklmrIs8QUEt9ACYfOcn6sOg_TFRzMMSooiTl0jgmjeVggUnwA1hXGKtlHhG1t32tn47XDgGcjfPweZ5j-yVg','It was very quick and efficient! Super nice\nKeera','2017-12-07 16:30:08.987000','2017-12-07 16:30:08.987000',5,'Lauren Sinkinson','https://lh5.googleusercontent.com/-SkBw_6a18Xw/AAAAAAAAAAI/AAAAAAAAAAA/Jy7lmQzkSmA/c-rp-mo-br100/photo.jpg','16590124370714063921',3900),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpz7rXGTTO48dhsUnJKMiTk3q5NXu0O2Ao2UAVWR5fzyxivt58-L_YeH_NEyZaYMZc_eEsXaJ2dVZ2nlZGE_AcDZ475c0','Would recommend that you come here if you are feeling sick. Very clean and respectful staff. Very fast moving pace. To help you as soon as they can. You walk in and right away you feel welcomed. Love this place.','2020-03-15 21:07:34.429000','2020-03-15 21:07:34.429000',5,'Michaela Carter','https://lh3.googleusercontent.com/-nbi_zV7luFk/AAAAAAAAAAI/AAAAAAAAAAA/3HjYYvnILRM/c-rp-mo-br100/photo.jpg','2694018788013845459',21112),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpZbs6xYYsYSFhaD0VWBoAn97Q3VxrgMz8iCjGGT7vDfkrNyUU9NmOEERh2hMLwCwQYWkI6DANqh436B4Zh4pAOfFJfRU',NULL,'2017-01-17 13:16:30.354000','2017-01-17 13:16:30.354000',5,'Amanda Thornton','https://lh5.googleusercontent.com/-9LEy3eaZuTo/AAAAAAAAAAI/AAAAAAAAAAA/cOdedXB2zM8/c-rp-mo-br100/photo.jpg','3511292162159714121',7900),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpzEbNpQTORSvJPhd451A2M09u5_1AM4qfGzkIKcA585zDmM4_i2TrDVG0jHvKT6YoPXrn9HmW-3KNtF64IsDakaRJyWQ',NULL,'2018-11-27 00:36:44.820000','2018-11-27 00:36:44.820000',5,'Sophia Berry','https://lh5.googleusercontent.com/-ktF4CEPqUn0/AAAAAAAAAAI/AAAAAAAAAAA/arPFQZi0BrI/c-rp-mo-br100/photo.jpg','16590124370714063921',3640),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpzJ3Jy8iTYngG-VwUOa08UukxfdU5eGjtkOr6JTqGextN-EPguNgoqD2pdfJN905Udd4-dbuWKtps5-rYAEgn90iMowU','My experience here so far has been very comfortable. I have my 5 year old with me and the staff is extremely nice and accommodating, making sure we were taken care of. Thank you Kristina, John, Hanh, Veronica and Nguyen!','2020-02-23 17:21:35.336000','2020-02-23 17:21:35.336000',5,'Rayne Smith','https://lh6.googleusercontent.com/-yb_DT6M31OI/AAAAAAAAAAI/AAAAAAAAAAA/6CWlWAYJCKo/c-rp-mo-br100/photo.jpg','12541597562633926366',13350),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpznOtQAtpo_zPWbshb7N7ifdSrpdFS-objI4uUuT6h34VK_LzchG1vRFU3Q8KX3q6DOMPRUkBPygYgyH4s-PRuINY46s','Great staff, very efficient, and polite. Front desk Alyssa P great personality. Thank you guys.\nDR. JABER, MD, NOOR M\nNurse: Nichole M F\nRadiology Tech: Trisha   B\nFront Desk: Alyssa   P','2020-05-21 21:48:11.753000','2020-05-21 21:48:11.753000',5,'joanne west','https://lh6.googleusercontent.com/-_ZFtSSYM8_Y/AAAAAAAAAAI/AAAAAAAAAAA/hcVH-2_A9r0/c-rp-mo-br100/photo.jpg','8918455867446117794',9122),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpzsI-2BWL6W4tthdqDY1KCeyChK8mvTHJtRMGePkfvBKn2vG2zssmk84e9ijfgiM78lHs_ZzYZ8eIq0tLZUJdM9PJ04Y',NULL,'2019-06-22 06:19:19.323000','2019-06-22 06:19:19.323000',5,'Brandon Keith','https://lh4.googleusercontent.com/-WnvOiAcb5YM/AAAAAAAAAAI/AAAAAAAAAAA/kUwEUNKxA3Q/c-rp-mo-br100/photo.jpg','13486358490203335051',939),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpZwtK0AXBZGt4EgUlow-L9SKzU8FJxB0rw4lZfB9YO_vROEQwzUuFsUPIpQcbNYbtNssn1x4L6Zbc5q5YM1M0P8exG4k','Lisa P at the front has the best personality! Dr Chambers, Leo, Adrianna, Delpha and Beatrice all took great care of me and made me feel so at home!','2019-07-14 20:32:47.076000','2019-07-14 20:32:47.076000',5,'S McD','https://lh4.googleusercontent.com/-qIx0QInntvE/AAAAAAAAAAI/AAAAAAAAAAA/QznJrFTBBPQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8198),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpzxXr2GghbD6rQZp90B0qmBo8MifFnLyDwTwhwiAypatmSmlThFx2HjNeLuohkImlB3tMwYVc5cPDW42XIVmKYRHkzu0','I came in and I want to specifically thank DR.SMITH, ALVEAN, TRICIA and NATALIE for their time and care they give to help! Thank y’all keep up the amazing work!','2019-08-08 16:52:49.860000','2019-08-08 16:52:49.860000',5,'Carla Torres','https://lh6.googleusercontent.com/-PqNa5ZDIz5o/AAAAAAAAAAI/AAAAAAAAAAA/t_Ze4x88ci4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEHZ7lh7y1sP-UInhkpmlIpzy7hFd7WQxTuKUJHG2P6fPKPy2QDR3Jp7HiNEnkgoUDJY1wcBfKL0w-O9aGjNKhmLT4geZktRHVxlrnqFrtRvSSwv70','The staff is always so kind and punctual when it comes to treatment. This time I had Dr. Vakey, Jacob as my nurse, and Rebecca as my tech. Kendra and Dyveliz were great with getting me registered and Morgan was ready to do my chest X-ray. I was in and out in 20 minutes!','2019-10-22 16:36:36.196000','2019-10-22 16:36:36.196000',5,'Kate Blevins','https://lh4.googleusercontent.com/-TF4UEXLIS18/AAAAAAAAAAI/AAAAAAAAAAA/JM9E94TRepM/c-rp-mo-br100/photo.jpg','16590124370714063921',3125),('AIe9_BEiFy08TzwTWjxjllyE-B2E15BjQv4U7lm619v1iFBqGoxb7t4BdvNsi-s7ROJQEO_uroG_xF6jA-ZFRdeFmvM-zrBYsa9zExnLBdSbvDNldbkeymI','I was a amazed at the level of care my husband and I got here. We went in and were seen quickly. Within 15-20 min of walking through the front doors(never been here before) we were taken to the back...Within 30 min we were being treated. We were there, maybe a total of 1.5 hours and received 4 shots, 2 X-rays and an EKG between the two of us. Not bad at all! They were very polite and very through.','2019-12-25 12:19:19.686000','2019-12-25 12:19:19.686000',5,'Regina Choate','https://lh5.googleusercontent.com/-dVIDSTSLWdM/AAAAAAAAAAI/AAAAAAAAAAA/hjGaDhrOVTk/c-rp-mo-br100/photo.jpg','6521947413723274945',8040),('AIe9_BEiFy08TzwTWjxjllyE-B2E1D7pEXRMAMMD8HSeGeJRBGwPaoxjqFqiN8lz3s2C8SjWIG1iGOHUnm3y3YnLRdOdGpq1lI5XqimK1nEPdlLKuWcUnpU','I went here last week and had a wonderful experience. Such fast service you forget you\'re in an ER. The facility was very nice and extremely clean. The staff was very pleasant and never made me feel like they were rushed or bothered. Everyone from the front desk to nurses, techs and physicians were all friendly and over the top with caring demeanors. Hopefully I never need their services again but if I do this is without a doubt where I’ll be going.','2020-06-14 00:29:30.868000','2020-06-14 00:29:30.868000',5,'Brent Bell','https://lh3.googleusercontent.com/a-/AOh14GjDgiPF5VXZzxRx1hC-RvUBKuSxtWriDY0rbsM=c0x00000000-cc-rp-ba3','16891069708558046635',22044),('AIe9_BEiFy08TzwTWjxjllyE-B2E1zrA6vr6PyE4hWPeIcjXVeJ1IUS1hCSzbKeapc6X7p7JTR13xOzhZo6mM56v0M3dLao5KRNMMIeVJj55mUurH5AxS2k','Excellent care at this facility, The staff was very friendly and informative. I would recommend this facility to family and friends.','2018-04-14 15:19:39.585000','2018-04-14 15:19:39.585000',5,'Alex Macias','https://lh6.googleusercontent.com/-SdgRo1PeeGU/AAAAAAAAAAI/AAAAAAAAAAA/XiyRMsbepIY/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9272),('AIe9_BEiFy08TzwTWjxjllyE-B2E3R565GhP96AbQdiqyr2q3pMqQgfb4EC5GUvh8ypBnsX6n8EvibMhURXAfYqcydvBZSgrn6hAShS6pcxHTso4VDvIJJE','Came here for COVID-19 Testing. They were very efficient and made this experience less frightening. They tested us very quickly. It wasn’t painful and they were very kind. They sterilized everything, as well.','2020-07-24 17:25:47.231000','2020-07-24 17:25:47.231000',5,'deena jarwan','https://lh4.googleusercontent.com/-LZFZ8ICkSrg/AAAAAAAAAAI/AAAAAAAAAAA/IqS_VivONoU/c-rp-mo-br100/photo.jpg','16590124370714063921',22657),('AIe9_BEiFy08TzwTWjxjllyE-B2E9uDEWnuW9hm6B5fFeTVi3auPNg1l4PBBaUwXN9VEZ9g3WN2ptvpdGpWJnqEgqKamlCDKPABErl04TegUib80dcgvnls','The most efficient and professional emergency medical place in this entire town! I feel I need to name these amazing professionals. My nurses were Danny and Sadie, they not only took care of my medical issues they addressed all the emotions that go along with a serious illness. Andrew was my tech. he personally made sure all my needs were met, both medical and he even copied all my paperwork to ensure my primary care Doc had everything. The radiology tech Jamie stepped out of her role in X-ray to help the rest of the staff. I have rarely seen this kind of teamwork, just to make sure I had the best care possible. \nDR. Chambers deserves his own paragraph. He made sure I understood everything that needed to be done. He went so far as to allow me to participate in making a plan, that would make sure I continued to heal well after I left. I don’t know where he’s from, but he is a no nonsense honest man. \nWhen I was instructed to get emergency care, I had a lot of doubts. This outstanding staff of medical professionals, have renewed my confidence in Midlands Emergency Clinics','2019-04-07 21:44:01.001000','2019-04-07 21:44:01.001000',5,'Mike Hutt','https://lh6.googleusercontent.com/-ByQRHkb-cYA/AAAAAAAAAAI/AAAAAAAAAAA/NjfK_lAHxZM/c-rp-mo-br100/photo.jpg','13486358490203335051',1046),('AIe9_BEiFy08TzwTWjxjllyE-B2EAGFDRN7nYLiXCrFiu9KCDOs__tRHc80DqiUNblguZJ2RrTSsr_gsjmLx0n1xzvWrORruWDQUReQO5Tq2Gelg0wDyX30','Excellent services\nPatel,Md\nSarah G.\nDaniel B.\nTanishia W.','2019-12-11 08:01:23.500000','2019-12-11 08:01:23.500000',5,'Tyrell Wiggins','https://lh5.googleusercontent.com/-927EwLOkMEc/AAAAAAAAAAI/AAAAAAAAAAA/jDzMq6dALZI/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5361),('AIe9_BEiFy08TzwTWjxjllyE-B2EbQ4-_QVwzQmGoPxvvBkVPWyFqvBIoHrA1l3ygIX3HqzLHBrXjX6sgEpRJ6s81oiPIpNbx_cQZB0TY3RA-8qJusr9Uj4','Nurse Jacob and doctor Vakey were extremely helpful','2020-01-20 22:09:01.678000','2020-01-20 22:09:01.678000',5,'Sean Wilburn','https://lh6.googleusercontent.com/-20Cy-zt3Izk/AAAAAAAAAAI/AAAAAAAAAAA/WAOEfe_J3ok/c-rp-mo-br100/photo.jpg','16590124370714063921',3433),('AIe9_BEiFy08TzwTWjxjllyE-B2EBxSl6mrsEuzI2ABlKP7kuSjwbT2G2b2qdQGhwo3wqy1NN_l6DNdEzviPtAEpmvtXixyU60QyqnAqssTwV9-5WGLq58g','Quick and Easy Results Super Fast. Almost no waiting w/ an appointment.','2020-07-31 21:55:47.935000','2020-07-31 21:55:47.935000',5,'Tammy Sanderson','https://lh3.googleusercontent.com/a-/AOh14Gh8SJ9EKV7aC8eQgDLZy7HJ98u9qx3CnQ8AlEUhYg=c0x00000000-cc-rp-ba2','16891069708558046635',22030),('AIe9_BEiFy08TzwTWjxjllyE-B2Ed0WVi_Y_HNU-e0XKz4g3CVfO0BUWe-V-s2xYcqz1g6HLxcL7HkuJp-Zi-RL6-RCROQyL8Y_oZ3PqIYQcBvLupnN-trA',NULL,'2019-03-13 15:17:32.629000','2019-03-13 15:17:32.629000',5,'Shelby Langehennig','https://lh4.googleusercontent.com/-VZOomBQKSKo/AAAAAAAAAAI/AAAAAAAAAAA/nvI7_xyUiQk/c-rp-mo-br100/photo.jpg','8626688543755174284',8532),('AIe9_BEiFy08TzwTWjxjllyE-B2Edb_EEcrm4ox46dqSQskz4eeH1vSIBZvKuW_kSFu0uxNlbIgZnt9ZiVeBkMoHSCeTuHi9BbfIoP8yVvjwE3bioR9H3YE',NULL,'2019-07-04 04:24:58.589000','2019-07-04 04:24:58.589000',5,'Faez Kamal','https://lh3.googleusercontent.com/-Selzk9kOj_g/AAAAAAAAAAI/AAAAAAAAAAA/ypH4dZU4VfM/c-rp-mo-br100/photo.jpg','8918455867446117794',9105),('AIe9_BEiFy08TzwTWjxjllyE-B2EEpHU0juGcINhik1MgLn_PwRBM7_9LwEDdHuyPRX86ddwBrk894q8t1_ch8cwzAZ5yd5i3TBIAUU6luSqQS0yvWTmFN4','These folks make a genuine attempt to treat you like a customer who has a choice, rather than just a patient who must simply endure. If you have to go to an urgent care facility you are likely in some discomfort. This place minimizes that discomfort and it is obvious that there is a culture of caring that is probably supported via management and policy. I won\'t bother going anywhere else should, God forbid, I need an emergency room again.','2016-09-28 01:33:51.879000','2016-09-28 01:33:51.879000',5,'Bobby Hitt','https://lh5.googleusercontent.com/-_y0QxojyiVc/AAAAAAAAAAI/AAAAAAAAAAA/g-gWAX0a72Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7934),('AIe9_BEiFy08TzwTWjxjllyE-B2EExnl224o1nsSRihPoDnI1uqX0ZGHnAgSoQgXJSDTPoBbYybl1UGz_o0C6FSiTOdXMJTNnHLfOldprHCMG3dZW6czmX4',NULL,'2020-08-13 02:26:50.364000','2020-08-13 02:26:50.364000',5,'Taylor hope','https://lh4.googleusercontent.com/-iUysfR0yckg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm_328d29R5H7sOhrK4dLQLp0N2Rg/c0x00000000-cc-rp-ba3/photo.jpg','6521947413723274945',23077),('AIe9_BEiFy08TzwTWjxjllyE-B2EGnUS8-XEzw_5Di8ozeNOgHMhK33KWw5RtlNGVstLnmJRo6vyHu8ULdAxh_Jc72qd-2neuOmmjloyJc9l6k5suodgQ-I','Lorena and Amanda at the front desk were very friendly! And Matt and Rachel were highly professional. The process was very quick and easy!','2020-07-25 19:43:45.697000','2020-07-25 19:43:45.697000',5,'Laura Orellana','https://lh6.googleusercontent.com/-oCcx2HWId24/AAAAAAAAAAI/AAAAAAAAAAA/TX4KTGjGyGw/c-rp-mo-br100/photo.jpg','16590124370714063921',22026),('AIe9_BEiFy08TzwTWjxjllyE-B2EGXU7gH4WGwi4XDYtW9t4fyIA8W-55uj4GKTszsFiYEo9BtpasllusVGBJKZlDXw39Qwh-fKcu9NakA6M7FCeuRcEt3I','Very kind , explain detail by detail , and very quick . I love this place !','2019-06-14 17:20:50.409000','2019-06-14 17:20:50.409000',5,'Champaign Marie','https://lh6.googleusercontent.com/-XNdAxB2nTb8/AAAAAAAAAAI/AAAAAAAAAAA/7QGgFM5XbZk/c-rp-mo-br100/photo.jpg','14567670160750071148',1307),('AIe9_BEiFy08TzwTWjxjllyE-B2Ehy7BRDcYkvqsGc0mQjo9ezsncGXPiEhhknwUw-jlvpB-ECtDKxFru5o0YkTpemZ1RIJcecMZqFMdFHEDbkjjBoUENEM','Excellent service. As soon as I walked in Tanishia W served us. Very friendly & nice. Very short waiting time. Doctor Nguyen, R M.D went over my daughters diagnosed as explained everything very clearly. And the nurses were very polite. Thank you! 😊','2019-12-04 07:32:55.348000','2019-12-04 07:32:55.348000',5,'Magaly Hernandez','https://lh6.googleusercontent.com/-0eTEsQQ-CV8/AAAAAAAAAAI/AAAAAAAAAAA/TX8AEX5ALp8/c-rp-mo-br100/photo.jpg','17898197009688164559',5381),('AIe9_BEiFy08TzwTWjxjllyE-B2EPRwWwnOXxU8JZkurgJwTx96ZDL-O3-1TI6N0SdrqhwLLlLwJPgyh4jG4-Uvzji6P84RCcHUx88t_7pUvhhbCASm4fbE','Went here for Covid testing. It was at night so the wait wasn’t too long, maybe a little over 2 hours. Staff was super kind and quick and efficient!','2020-07-07 02:59:06.166000','2020-07-07 02:59:06.166000',5,'Gabrielle Bishop','https://lh3.googleusercontent.com/a-/AOh14GjRo3Ivh6aAkfeU5LZH7MQdTDxmQIzBtVB7s_dd=c0x00000000-cc-rp','16389487648212004696',21297),('AIe9_BEiFy08TzwTWjxjllyE-B2EpUW4E-UC5mrnK8tX149g0u2it2a1JZFjROXtDAB0bq_Mz2XwWMdkYGkNR2zwkDuon2KBL6jE9AAysamJkS1VKnksLpY','Very helpful staff and they do take care on time. I would highly recommend this ER','2016-10-03 23:19:04.937000','2016-10-03 23:19:04.937000',5,'Faraz Khan','https://lh5.googleusercontent.com/-HOh35A5CGJk/AAAAAAAAAAI/AAAAAAAAAAA/iUNdSwe_KJU/c-rp-mo-br100/photo.jpg','17394740196501090048',5193),('AIe9_BEiFy08TzwTWjxjllyE-B2EqVsvhN8OZNZEc2KTEX0SRKkxsomM6cR2o3gcuiCbb7up1iZdGxWlSkltbcQfM57geWL8jEPZavtQl2qs_VwlktM4j0o',NULL,'2020-07-09 00:52:52.181000','2020-07-09 00:52:52.181000',5,'Oscar E. Perez','https://lh3.googleusercontent.com/a-/AOh14Gix7GgiAahc4o87QCuPAxmXioYJ7u086R6EJkkK=c0x00000000-cc-rp','12541597562633926366',21329),('AIe9_BEiFy08TzwTWjxjllyE-B2ER6zO3V8dS91mW85UBDIO-dzyiHFq_8jAMBDFMI4csqUkt-_HomYv_SR6zMiGa2euX03p3jtk9vs01yp3lmSbKxyhif8','Nice and easy process! Everyone was very kind, friendly, and professional! Dr. Dunn, Lynn, Fatima, Daniel, and Tanisha :)\nThank you for taking great care of me','2019-11-11 03:30:36.285000','2019-11-11 03:30:36.285000',5,'Amneris Palacios','https://lh6.googleusercontent.com/--mJcCThVEqk/AAAAAAAAAAI/AAAAAAAAAAA/HxxKgFMREmY/c-rp-mo-br100/photo.jpg','17898197009688164559',5448),('AIe9_BEiFy08TzwTWjxjllyE-B2ERKPOSDeYqOmtsj74wwFdnjxFZGRxEj0gFQ17_Ic5v8HOB_K7XV4HcLsJmzOPduW1NOTBq7f5PYeAlqgnEJ4nddo8xfE','Let me tell y\'all this is absolutely BEST ER I\'ve ever been too. I live down the street and would attend Memorial Herman but today I decided to try this place out, and i dont regret it all. I went in feeling horrible and left like nothing ever happened. The Dr and nurses there are the BEST!!! They made me feel super comfortable and at ease. They did everything they could to make sure I left feeling 100% an I DID!! I cant really remember all the names only because at the time I wasn\'t feeling to well to remember but every single person who works their gave me their full 100% and for that Iam very grateful to have met such a wonderful team. Will definitely go again if it\'s ever needed . I recommend this place over any other place.','2019-02-09 22:38:26.894000','2019-02-09 22:38:26.894000',5,'Felicity Cruz','https://lh6.googleusercontent.com/-6A1mBMiF6uk/AAAAAAAAAAI/AAAAAAAAAAA/jRNWx_wIlr8/c-rp-mo-br100/photo.jpg','14567670160750071148',1390),('AIe9_BEiFy08TzwTWjxjllyE-B2ESfU1RACmVhFyXhqMtHzQegbyULSfNKOS_6FtqjZXpHeoyf_qjCcvh1YXqKdH9N8kOGE1JA6NPgF1uusyAoxjNxlt5Jo','Alvean A was very nice and took care of us very well. Dr. O’Malley was super fun and helped get us situated. Patricia, Jordan N, Tricia B were also very cheerful and happy.','2019-11-30 22:56:38.954000','2019-11-30 22:56:38.954000',5,'Jaquille Trishell','https://lh6.googleusercontent.com/-hFaFGNXi-i8/AAAAAAAAAAI/AAAAAAAAAAA/Qj9FBd3vMpw/c-rp-mo-br100/photo.jpg','16389487648212004696',2599),('AIe9_BEiFy08TzwTWjxjllyE-B2ETIyy2Zqs00o8tnXyV_GAspYtdB1wqvqhn1HgpOgOzlN-gSi26q6kAIBF-PXueMQYpMqXgStTEXowruVFANRf2sg0J9k','Staff was great. Lucas and Dr. Curtis took our daughter straight in. Quick diagnosis.','2020-06-09 03:25:12.990000','2020-06-09 03:25:12.990000',5,'Bill Thomas','https://lh3.googleusercontent.com/-7xWLAJtWayc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmjYrDRW9PwKv08LOfEcYxxH86eeg/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21128),('AIe9_BEiFy08TzwTWjxjllyE-B2EuQZ2qalv35Zqru-doTyodY7lLOfLsRsUIdvXrfk0ndcdeT_f3QKrnL8hXWgmGy8q7-odaiwXuLsEbaojq-nTnD4xTM4','Quick and great care! All the staff was courteous and helpful. I recommend this place if you need to see an urgent care.','2020-02-20 18:18:22.003000','2020-02-20 18:18:22.003000',5,'Glo','https://lh3.googleusercontent.com/-JpDpEtqZTv8/AAAAAAAAAAI/AAAAAAAAAAA/_H6_ZPi-MYA/c-rp-mo-br100/photo.jpg','6521947413723274945',14569),('AIe9_BEiFy08TzwTWjxjllyE-B2EUULycy-VoV19Pg72v9VEKgBfpC_LAk4lfM5IiPmL7DEh-6_ADLv2X8Ijh5k-Nh5vlBuueakkywSIWeRcBTM-nYz5LKQ','I came in because I was feeling really sick. Tanishia greeted us and was so warm and welcoming! I was quickly brought to the back where Sarah, Fatima, Leslie and Elaine took such good care of me. Thankfully not too much was wrong with me and I was able to get in and out!','2020-02-07 05:01:55.675000','2020-02-07 05:01:55.675000',5,'Lauren Spriggs','https://lh5.googleusercontent.com/-WQLfTgzcOD0/AAAAAAAAAAI/AAAAAAAAAAA/FzUT_GKRrAc/c-rp-mo-br100/photo.jpg','17898197009688164559',22705),('AIe9_BEiFy08TzwTWjxjllyE-B2EW17eABT5UBxUQ-QYnjcwp27uJAlAK7XHUUXe7gujgaekQhLeVHGYe1Y1TqphWi1EsXkzuODWO108UYefUFf8tkrfDCo','Great and pleasant urgent care. Friendly staff and super quick service!! Bryan, the radiology tech was funny, friendly and very quick. Front desk Jasmine was courteous and assembled my paperwork quickly. Doctor came to see my daughter quickly. The magic word at midnight with three little kids in tow is QUICKLY!!! Thank you.','2018-08-26 05:07:13.509000','2018-08-26 05:07:13.509000',5,'Anessa Le','https://lh4.googleusercontent.com/-fhRpH5xjka8/AAAAAAAAAAI/AAAAAAAAAAA/q8GoxnYo9iM/c-rp-mo-br100/photo.jpg','14567670160750071148',1550),('AIe9_BEiFy08TzwTWjxjllyE-B2EW9Q1uifaH6dwYcIt7gJCFWGcwwRZR7obWXmo5k3j3zQbNXGKf5Ih8owMrNqO0XRFfnsIXsBg3vQvy-rLuw25yGG18X0','Couldn’t ask for a better experience. Everyone was so nice and helpful. John Bell was a great nurse and made sure I had everything I needed.','2019-02-18 15:05:14.552000','2019-02-18 15:05:14.552000',5,'Angela Rember','https://lh3.googleusercontent.com/-iZNXgR0KVwQ/AAAAAAAAAAI/AAAAAAAAAAA/9d640IUXChs/c-rp-mo-br100/photo.jpg','8626688543755174284',8562),('AIe9_BEiFy08TzwTWjxjllyE-B2EwHWZ0KizaaNujAlE-gaWeicufjBgg9mahXT_3-xMGihnGB8Z72Ciz_kpPIW6RF5g9nZzIus6jyMeDkCspf5aQDow8dw','I love it Nurse Anthony was the best','2019-05-31 18:07:38.280000','2019-05-31 18:07:38.280000',5,'Jessie Conley','https://lh5.googleusercontent.com/-oFzAs1Xj1TI/AAAAAAAAAAI/AAAAAAAAAAA/N9GZuX1kWng/c-rp-mo-br100/photo.jpg','16590124370714063921',3373),('AIe9_BEiFy08TzwTWjxjllyE-B2EwWUAXV0fXYgzvqCUMmFIknNFxW5uXW3yzk9j1i9jsagntiv8Chtk_eypvQB55NsxUuD4qCMHamnMeUAO5qyXO9A4Iss','Excellent place to get treated in a very clean, quiet atmosphere.\nThe front desk personnel is fast and efficient.\nThe Doctors and nurses where profecional and very sweet, they showed support and diligence.\nThey have good prices and offer payment options.','2019-10-09 11:37:37.780000','2019-10-09 11:37:37.780000',5,'Saira Navarrete','https://lh5.googleusercontent.com/-wEqrOcTdNig/AAAAAAAAAAI/AAAAAAAAAAA/7KFSj25E84Y/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9062),('AIe9_BEiFy08TzwTWjxjllyE-B2EzpqG5kRqCFOmylFpJJGZVTgZ9HVaFssdf5BmRmescBj5uAzBZqpchOBO4CIF9z74DqI34oHRR-_NTYUfwmRIBejv4mc','I’d like to take the time to write this review and thank the staff at signature care specifically Skyler for the prompt and courteous check in, Brooke for the awesome snap shots(x-rays), Tammy for being an outstanding nurse and Dr.Simmons was an absolute delight. She thoroughly explained everything and very courteous. Will definitely be coming back to signature care instead of any other ER.','2019-12-10 04:02:33.157000','2019-12-10 04:02:33.157000',5,'Kevin Reily','https://lh5.googleusercontent.com/-dnflask_umE/AAAAAAAAAAI/AAAAAAAAAAA/HJnknqmmj9I/c-rp-mo-br100/photo.jpg','8626688543755174284',14656),('AIe9_BEiFy08TzwTWjxjllyE-B2EZVDfNoD7dhzLMXoZMmeo77sKVm8uuZulp1h3_BCzAm5kRG7m4Ajk6Gw05A5WQ7jfrqtx_2SjvpBr2gHuvgPI-VAdLiI',NULL,'2018-04-23 04:00:40.324000','2018-04-23 04:00:40.324000',5,'Sarah Clark','https://lh6.googleusercontent.com/-1D4vQf2qNE4/AAAAAAAAAAI/AAAAAAAAAAA/e6tZkJD55GY/c-rp-mo-br100/photo.jpg','16590124370714063921',3832),('AIe9_BEjL8GlZLzWC88r4N2XQbJo_aQY8OtCN1H-qTRCTd1Af24_pGNhM9Noj6oiUkDCq3a9Ytq-FT-WVmcgMA6PJY-lwQqfYXY8NahArb-3lFZaTTXVPkk','Wonderful, pleasant, professional staff. The facility is clean and well maintained. I recommend it','2018-01-07 16:04:38.836000','2018-01-07 16:04:38.836000',5,'Colby Wilson','https://lh6.googleusercontent.com/-06YVrx5zXW8/AAAAAAAAAAI/AAAAAAAAAAA/qZNBCwgInFo/c-rp-mo-br100/photo.jpg','3511292162159714121',7739),('AIe9_BEjL8GlZLzWC88r4N2XQbJo_LLwsrxxyWK9FXv-tmOs9uE3Bkm47dhKXjvAk8VnlUNS5vdVmnHk9Z9bnyMaS1A5EmdAMgLWnv2uoPswagSFAe9lzFo','Nurses and doctors could not have been more friendly. Really impressed with the care provided and the professionalism of the ER. Thanks all! ','2016-02-03 13:55:57.246000','2016-02-03 13:55:57.246000',5,'Cecilia Brenner','https://lh6.googleusercontent.com/-0fkcKoWih-U/AAAAAAAAAAI/AAAAAAAAAAA/5pcEionaMO4/c-rp-mo-br100/photo.jpg','17394740196501090048',5288),('AIe9_BEjL8GlZLzWC88r4N2XQbJo0a54CvULGeTtdXXCykaT_NZMpTPIesFuCZgv1qf0Cpxl8BuaZBM8enfwAxGmoILNdNHVWq7bR4eoXKBtv4WfvX3Pa6I','Taylor was the receptionist and she was very nice and helpful. I had Kelly as a nurse and she was very informative and friendly. Overall a great experience!','2017-02-11 03:10:03.389000','2017-02-11 03:10:03.389000',5,'Christy Turner','https://lh3.googleusercontent.com/-rrVsrglqAqU/AAAAAAAAAAI/AAAAAAAAAAA/t1r63neRoMk/c-rp-mo-br100/photo.jpg','16590124370714063921',4054),('AIe9_BEjL8GlZLzWC88r4N2XQbJo2XnmHkaYJOZuo6ZJOzwkIQ_vRHERXAgysYabsgAc6IzC1xDvCUtlmWAY9lcBs-UU83MTUJqt0r0-OvBcooW0xIqWVZM',NULL,'2019-11-23 17:45:42.331000','2019-11-23 17:45:42.331000',5,'coby west','https://lh6.googleusercontent.com/-sxW7qewkeWA/AAAAAAAAAAI/AAAAAAAAAAA/0zd4kVaeugQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2638),('AIe9_BEjL8GlZLzWC88r4N2XQbJo3BAD42bjmnf4D3cq2HY9j6Q5Cvpj8_xXQTZLGSFe149AlXtN3Sj5YCaz20cwhOkwnjypLRmCcLyYRCaP7ZDqHXnLsFU','Very welcoming and very good at listening to your concerns and treating you accordingly. You leave understanding your ailments rather than still having questions.','2019-05-21 13:41:04.522000','2019-05-21 13:41:04.522000',5,'Payton Staskywicz','https://lh5.googleusercontent.com/-kZgebnRO3yQ/AAAAAAAAAAI/AAAAAAAAAAA/zXlFNd27GN4/c-rp-mo-br100/photo.jpg','13486358490203335051',1004),('AIe9_BEjL8GlZLzWC88r4N2XQbJo6hvJpcVBGsXITcWmmjKQDnv5jWM6OyaoZ7-TVJjdjVZVL12Jq32CO8oI3_1tIwThA-Y3TeL6MobrXAVpx9iK8Sr9z-E','A great experience and a great staff','2019-02-25 01:13:22.417000','2019-02-25 01:13:22.417000',5,'Trent Jones','https://lh4.googleusercontent.com/-XIzHnJsqXwk/AAAAAAAAAAI/AAAAAAAAAAA/aIVvm63WTTU/c-rp-mo-br100/photo.jpg','16891069708558046635',4341),('AIe9_BEjL8GlZLzWC88r4N2XQbJo70ANmPiMmymSYaSf2NM_Bh6ZtK8WC_PbVmVlnMqBhuf8UzC7mrcAvRjAqfo_3hTGbzj8pActhvVHeTZ0pL712qpVpq8','great help got me in and helped quickly. staff were friendly and very helpful','2019-09-19 03:59:53.409000','2019-09-19 03:59:53.409000',5,'L Herron','https://lh3.googleusercontent.com/-Jsw_VbzXEV0/AAAAAAAAAAI/AAAAAAAAAAA/hRLJVm12ClQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5542),('AIe9_BEjL8GlZLzWC88r4N2XQbJo7y3jaMTF8nsHkTL4QT-_ZNosrQmcAjr3AniiIqRm5gWfQG_mEhSkfyrSEGcG5uZQNJpl6w0CbwwB7kwhOr4ybeD_wkY','Carly was absolutely amazing! I can’t imagine the crazy people she deals with on a regular basis. She was very professional and so beyond helpful. A+ customer service!! I will recommend those place to all family and friends.','2020-07-01 10:45:18.684000','2020-07-01 10:45:18.684000',5,'Delaney O\'Brien','https://lh4.googleusercontent.com/-KDwlk3EtvY8/AAAAAAAAAAI/AAAAAAAAAAA/6s-PQrpkzME/c-rp-mo-br100/photo.jpg','12541597562633926366',21346),('AIe9_BEjL8GlZLzWC88r4N2XQbJo8YMGwonUQpdDYwRk0KnN1ibFM8nEPcET2KxRi2DkBpCL1JsX-uZFCxZfs-scYGx5Hq0vaOWMwvcYABq4S1HeQJoXneA','Billy. Courtney. Robin. Awesome job','2019-06-12 02:25:07.807000','2019-06-12 02:25:07.807000',5,'JOHNSON_3636','https://lh3.googleusercontent.com/-7mXdIt5zYv8/AAAAAAAAAAI/AAAAAAAAAAA/JnzgVfZgXrU/c-rp-mo-br100/photo.jpg','8626688543755174284',8454),('AIe9_BEjL8GlZLzWC88r4N2XQbJo9Wa3OvCRfcigmsjJ9-1PzQze_OOFD4cbrEsv2yVEJ3plxRwZvl7UF12oxgDEKnTDZTggTvDMeEL2ly8lbfk4zg6gAgg','Dr. Mauldin was amazing an got me in and out quickly and the nurse Alvean A. Was very sweet an helped just as much as well as their registration Patricia C.!! All around great experience this morning and wonderful staff!!!','2020-01-25 13:54:46.587000','2020-01-25 13:54:46.587000',5,'Samantha D','https://lh3.googleusercontent.com/-U58MFsXLRdY/AAAAAAAAAAI/AAAAAAAAAAA/CWeit_yHNm0/c-rp-mo-br100/photo.jpg','16389487648212004696',10182),('AIe9_BEjL8GlZLzWC88r4N2XQbJob8SajZaJeRMyRU0NS7EhJGDeuzvU4_yH-OQjA6baeUvFlcQSK9pXUu9TnXjLPthBqHwI4A4kyhPJxpliDYt-EG7jxPs','Had a great experience here with Stephanie the registrar, RN Rollie, Rad Tech Natalia, and Dr. Daniels. Super fast and painless Covid testing.','2020-08-12 01:21:10.600000','2020-08-12 01:21:10.600000',5,'Kate Kortum','https://lh3.googleusercontent.com/a-/AOh14Ghl44628AGNAXudKaARTq2o3170-q9uIkB_aKLr=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BEjL8GlZLzWC88r4N2XQbJodGJ30Z_K0DfRa5r692dbV1AUEVhdH8o4mWuYU1pWZZzKgH0H_DlVhCLhZ8wePtuo5pFgcQw8QYADoWBOFEqSexZ-JdI','This place was very fast and efficient, faster than the hospitals I’ve been to. (: Love it here.','2019-11-07 22:27:45.986000','2019-11-07 22:27:45.986000',5,'june june','https://lh4.googleusercontent.com/-XKzVEGc6X1w/AAAAAAAAAAI/AAAAAAAAAAA/U9WHt540bDo/c-rp-mo-br100/photo.jpg','16389487648212004696',2722),('AIe9_BEjL8GlZLzWC88r4N2XQbJoIHGKkgsoZE6IoeE7Q5EB31DAKLk5lZvARLPbcRTGDoyYoOBUl6Y1h8K1LA5Dmhm9oB6jHD2C_UQ6JcqJo5zvuhyIW4Y','They had quick and excellent service everyone’s goal there is to make sure you leave better than you came in.','2019-02-19 17:05:49.748000','2019-02-19 17:05:49.748000',5,'La Fuego','https://lh4.googleusercontent.com/-4VtgmfCt1EM/AAAAAAAAAAI/AAAAAAAAAAA/mNrxibm0EEo/c-rp-mo-br100/photo.jpg','16590124370714063921',3539),('AIe9_BEjL8GlZLzWC88r4N2XQbJoiiCxWWlJ4zzIHuNv6uOCMnx69IAPncHgNEhD4B2xT3PNY9eW9YNkxE8RV64OtPU0lvqg6BOvORZgmMPqxMnabaPHirM','I received excellent care here. I recommend family and friends to this location. Dr. Lindsay, Niki my nurse and Amy were very nice to me.','2019-03-12 00:32:15.730000','2019-03-12 00:32:15.730000',5,'Freda Edwards','https://lh3.googleusercontent.com/-bSky9uGiASU/AAAAAAAAAAI/AAAAAAAAAAA/-PgU7wRLCck/c-rp-mo-br100/photo.jpg','14567670160750071148',1372),('AIe9_BEjL8GlZLzWC88r4N2XQbJoIZ4nbMr2Rmubuo1LCu_Cpnfj5lwrk-htBN2PUozmY3N9fpHMRC-P1vExihtwv7MZAVh2c-9MMFMN4D5u3p7iTpp4XIE','Came in sick with trouble breathing and Dr. Elsbecker and staff took such good care of me. Got the tests, diagnosis, and treatment right there close to home. Thank you to my nurse Adam, radiology tech Linda, and Aileen at check in for all your help and care. I really appreciate everything you did. Thanks again. 🙂','2019-11-04 15:27:28.385000','2019-11-04 15:27:28.385000',5,'Laura Miller Garon','https://lh3.googleusercontent.com/-1eJvbLOlvmI/AAAAAAAAAAI/AAAAAAAAAAA/mlFHihkjIUg/c-rp-mo-br100/photo.jpg','16891069708558046635',4164),('AIe9_BEjL8GlZLzWC88r4N2XQbJoJLYrS0KUo44VuQv3JlqmYZFmV7CrSUDw5zXqiUo_d7XGDv3yjpSXRTbFoXy9twPG88cMGmtSxUcMa0i3Br9PsBQ2xtA','This was literally the best ER experience I have ever had. I was greeted with smiling faces and a sense of calm when I was feeling absolutely terrible. From the lovely receptionist Christina, to my nurse Marty, director Adam, ER tech Andrew, Dr. Leung, and Rad tech Christina I was treated with compassion and controlled urgency. I left within an hour of my arrival time, feeling worlds better. Thank you Signature Care!!','2020-03-15 04:55:43.352000','2020-03-15 04:55:43.352000',5,'Ashli Wittmuss','https://lh3.googleusercontent.com/-T4iS_rrnVOM/AAAAAAAAAAI/AAAAAAAAAAA/SjoSWeyg8tQ/c-rp-mo-br100/photo.jpg','16891069708558046635',21050),('AIe9_BEjL8GlZLzWC88r4N2XQbJoKuyxUx5AMq_XrZW-eZdORwF1f0t3AI8XjlYB1J-Czn_Gk0LmDh-T6euo3UPzd5-aKUrqvLk3W70N2Q6swT3-7omDfKk',NULL,'2017-12-13 16:42:38.283000','2017-12-13 16:42:38.283000',5,'Michelle Harmon','https://lh6.googleusercontent.com/-HJBFVuKH5cs/AAAAAAAAAAI/AAAAAAAAAAA/PyNJFP_cpXY/c-rp-mo-br100/photo.jpg','3272657195432704501',7106),('AIe9_BEjL8GlZLzWC88r4N2XQbJokVpu3cnZmmd3_8sFWllWLh7qjUYtv8pua1uZZAH7ET3O43a1hoPIx-7C1EQEJkwzLxvDvk0lnbCOd1pFKxv8DhelKz4','Great experience','2017-04-03 21:53:24.628000','2017-04-03 21:53:24.628000',5,'Tokyo Christine','https://lh5.googleusercontent.com/-6FNO_45l_o8/AAAAAAAAAAI/AAAAAAAAAAA/Eb6w8n87yBA/c-rp-mo-br100/photo.jpg','3511292162159714121',7853),('AIe9_BEjL8GlZLzWC88r4N2XQbJoLN8d1hOSBxGLyI4Bh5yNa9vbXagsU7bCjnRNW27GrWiZFWzRPT3EFymfks4_aJRHgJcgf7w9xX83E3S7_ntBXQymopo','I contacted you days ago as suggested below at the email address provided, I am still waiting on my answer. I would give your facility another 1 star if I could. Again, eagerly awaiting your response....please advise. \n I attempted COVID-19 testing at this facility. I checked in early in the morning and received a text message about 8 hours later. I then reported back to the facility and was informed that there would be another indefinite wait period, possibly hours before the testing could be completed. Because I have a job, I was unable to stay but was informed that my chart was on file and I could return whenever I had time, show them the text message, and be tested. I returned the next day and did as the front desk person had instructed but was informed that I needed to come back the following day at 6 AM in order to be placed on the wait list. Their policies changed effective immediately and the text message confirmation is now invalid. Good luck getting tested at this facility.','2020-06-21 21:44:03.856000','2020-06-21 21:44:03.856000',1,'Kevin Cobb','https://lh3.googleusercontent.com/-UXxJ8Mz9yZQ/AAAAAAAAAAI/AAAAAAAAAAA/pYPhPXZgr3k/c-rp-mo-br100/photo.jpg','3511292162159714121',19423),('AIe9_BEjL8GlZLzWC88r4N2XQbJoLRxkZTbEzzJS-Qz5WvWxyFuryuUAC2r4pyxXSkBFxx4iA4wnHNB5VCowGWx3zngggG1DdbsWcqGnRWWKw2-h3rtA3TM',NULL,'2019-09-18 05:54:46.177000','2019-09-18 05:54:46.177000',5,'Leah Phillips','https://lh5.googleusercontent.com/-oGnq0b3pT6U/AAAAAAAAAAI/AAAAAAAAAAA/-4msUP7_Lrs/c-rp-mo-br100/photo.jpg','3272657195432704501',6891),('AIe9_BEjL8GlZLzWC88r4N2XQbJon-2EoP4Jv1UZnIe1rRB6v4rEYESMD4Ysy2fwZ_rEjXO4jPuALQ3WCblFafHMc20BFlzOKwF5-PlV-Z_shnHeZeeuTws',NULL,'2020-07-03 12:13:38.639000','2020-07-03 12:13:38.639000',5,'Michael Ross','https://lh3.googleusercontent.com/a-/AOh14GjhG_TlKCND2lQh579-jfW_VTAGG2PZyHM7hANI=c0x00000000-cc-rp','17394740196501090048',21426),('AIe9_BEjL8GlZLzWC88r4N2XQbJoRMAQCqufZhlyu4_CrCkea6NjMSG8_N6R5zpaCEoyDgNyY9VB6jmhkjdrHsfs5zSUVAyEcxDOQhtuSpScs8uzVpggG2I',NULL,'2020-01-04 01:21:48.265000','2020-01-04 01:21:48.265000',5,'Liberty Barnard','https://lh5.googleusercontent.com/-fOtolgWe19M/AAAAAAAAAAI/AAAAAAAAAAA/HOoNAZ5DQ3Q/c-rp-mo-br100/photo.jpg','3272657195432704501',6807),('AIe9_BEjL8GlZLzWC88r4N2XQbJospA67xfFCZeruDxQUOqGefQpAlIXe2PtV1PDflK6keOrx-NCHh9Z5eDdQfhlMxcocfq-6d5AZr24oahV92ZRFLIM5o0','Dr Smith was quick and efficient. Kat S came in frequently to check on me. Luisa was fast and friendly. I would definitely recommend this place to anyone I know','2019-05-25 00:16:43.068000','2019-05-25 00:16:43.068000',5,'Kaytlin Cooke','https://lh5.googleusercontent.com/-BwkeGvjIpkA/AAAAAAAAAAI/AAAAAAAAAAA/bslr0oqrX-I/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEjL8GlZLzWC88r4N2XQbJot1xgURsWBTCaVyEJU9kgPTjDfL-64xJGGywihATI5Rv9Y4kdrMQsct8l_gd0Mz-FOvrE183SLIldRAviVi3Gmk0fBCg',NULL,'2019-07-04 16:40:59.074000','2019-07-04 16:40:59.074000',4,'Bradley Bergt','https://lh5.googleusercontent.com/-CngrlUM4z3Q/AAAAAAAAAAI/AAAAAAAAAAA/smcXouREXIA/c-rp-mo-br100/photo.jpg','6521947413723274945',8212),('AIe9_BEjL8GlZLzWC88r4N2XQbJotFyu1wu8pAIB8DgBKgMtJBQxTs-S2D586LK_W-I-oQUzf5axbGv1V7wXZa2R1GguK-AaF3Nju37NNAT4f-8WHJLy050',NULL,'2019-11-30 23:24:42.572000','2019-11-30 23:24:42.572000',5,'Nick Aaron Joshua','https://lh5.googleusercontent.com/-za1z0UJ5aUc/AAAAAAAAAAI/AAAAAAAAAAA/2qldUoWfQiU/c-rp-mo-br100/photo.jpg','16389487648212004696',2598),('AIe9_BEjL8GlZLzWC88r4N2XQbJoTlbA6mbzkgM35RIJc_wNOE-LSJ3aXgf3eQ2tSQuCGzCehjFLlme41w4W2A4NmN9EBbnluqkbbFdhIcVPqALLoC_OrjI','What a great experience. I was seen quickly, the staff and dr were so caring and even though I feel horrible, I feel so much better after coming here.','2019-08-07 17:06:50.097000','2019-08-07 17:06:50.097000',5,'Amanda','https://lh4.googleusercontent.com/-d7z9rJ-xdy0/AAAAAAAAAAI/AAAAAAAAAAA/qPwvpIbyx_0/c-rp-mo-br100/photo.jpg','2694018788013845459',6093),('AIe9_BEjL8GlZLzWC88r4N2XQbJouTzj41RSKgb59JCZMvV_9MdEbUJR3B-XqlPaWpUgzS3HDONNwoza_qoCjL-b5xeFyzsbi2diQaJ1NuA8dKA2dfyWXgw','Everyone was so amazing. They had a lot of patients at the time I came in but we never felt rushed or abandoned, as you sometimes do in the ER. Brenda at the front desk was very friendly and helpful. Dr. Estevez took the time to explain everything not only to me but my child as well. Nureen the nurse was very kind.','2020-01-13 17:12:18.015000','2020-01-13 17:12:18.015000',5,'Jessica Vickers','https://lh5.googleusercontent.com/-vwuN_PQZWQY/AAAAAAAAAAI/AAAAAAAAAAA/jJTZRKBrugw/c-rp-mo-br100/photo.jpg','3511292162159714121',14460),('AIe9_BEjL8GlZLzWC88r4N2XQbJovcWd8ZYsEVvMGDHGMOouPdjANLh1Kx0Kpl0QvDnfZ1S5wHCrVASmM6fEK6yPnJVRsMaQtUC3NseK65HqsFNBlo_m-VQ','My experience here was great! Starting from the receptionist Tanishia who was very polite and helpful. The nurse Shelley was also very great as well as Dr. Pham and the 2 techs who helped.','2019-03-18 02:59:46.782000','2019-03-18 02:59:46.782000',5,'Krista D\'Cid','https://lh5.googleusercontent.com/-Nx5M4JfKaFI/AAAAAAAAAAI/AAAAAAAAAAA/TPP9vpn6YYU/c-rp-mo-br100/photo.jpg','17898197009688164559',5805),('AIe9_BEjL8GlZLzWC88r4N2XQbJoYHFNHN4JeF2Wz86b9V2LaIwst8mGy_XIc5vB478CMbaNgzeCz7U0S8H-9JpF6YQBARvi9cCFyacf_Nml_Dgs7Bae8QE','Very good service. Staff was very nice and we got complementary drinks. Very fast service as well.','2019-08-24 18:58:41.116000','2019-08-24 18:58:41.116000',5,'mark solano','https://lh3.googleusercontent.com/-KU-H3bI4aoc/AAAAAAAAAAI/AAAAAAAAAAA/YlLdynhoi8w/c-rp-mo-br100/photo.jpg','16389487648212004696',2980),('AIe9_BEjL8GlZLzWC88r4N2XQbJoZBL4hIfXWb2iV2fdVqDqsmYUbu9z8-LqZ_9Jcfh180ZNokxfqiA7Eu3nlv5ADqe3-VzI-lAn3nAV8mtj_Is4Wy0v8zI',NULL,'2019-09-29 01:12:16.061000','2019-09-29 01:12:16.061000',5,'jackson Weber','https://lh5.googleusercontent.com/-GXOZmSz7OpE/AAAAAAAAAAI/AAAAAAAAAAA/PqYf4r-B_n0/c-rp-mo-br100/photo.jpg','13486358490203335051',804),('AIe9_BEmpcTvgvesPfTDNuRWkAOfP3Xb2q5hKeq_1kZdbKMrVVY9fNfgg7InPSgp97mWv_-XPLy_bWy9C5y74TOfavxxvQKIsp71svYCUXAbsNZojVtJifM','This group of doctors and nurses are the best . please try to receive your care here if needed.','2019-10-26 12:54:48.331000','2019-10-26 12:54:48.331000',5,'Angelo Covalt','https://lh4.googleusercontent.com/-rxVPiay5dec/AAAAAAAAAAI/AAAAAAAAAAA/kZPR64kgjms/c-rp-mo-br100/photo.jpg','8679688254631342173',8770),('AIe9_BEmpcTvgvesPfTDNuRWkAOfr2qtBjSa6v8KdjEYZX4pURAIUqAwKD-KwpvKl6cxajPSTN9gQj6orcrEIlKMmAohXERVfQ','I drove in at a low moment, sick, tired and feeling horrible. Im sure I didn\'t look great either. The staff was fast, kind, friendly and treated me with respect. Honestly, they were amazing. They took great care of me all day and helped me recover from my sickness. Very clean facility also. I would not hesitate to go here again and would highly recommend.','2020-03-04 22:16:12.343000','2020-03-04 22:16:12.343000',5,'Colin Kaslow','https://lh4.googleusercontent.com/-EOAalZUWZlM/AAAAAAAAAAI/AAAAAAAAAAA/ypZDRa5IO6w/c-rp-mo-br100/photo.jpg','16891069708558046635',13919),('AIe9_BEn45H0sgXnQcZ6CdFCnIZNcgTIwO5bJH5E9wUwn4jVycHjnD28hjyax7vvQfAREQx3Q1K_q1--mBi_utdfqCOwe4GFAyZtHMIO-rBvTy0Nbtj5BRU','I had a great experience here at signature care ER!! So much quicker than any other hospital! The nurse Kate was very friendly and courteous! And Dr Mauldin did everything to make sure I was comfortable and pain free before going home. I had no problems checking in thanks to Deanna at the front desk! Also thank u to the radiology tech Joshua for his kind service.','2019-06-13 08:47:36.130000','2019-06-13 08:47:36.130000',5,'KaY KaY','https://lh5.googleusercontent.com/-nHXmLDsz3Jg/AAAAAAAAAAI/AAAAAAAAAAA/wa8Gm5I1sPg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEn45H0sgXnQcZ6CdFCnIZNDfXOvn28I9aanZs5enlKSj7J5atsmTlY6ZSyr1XKX19yBX3SFOk6uThqDChLIusRkfV-Pw','This is my second time here and this one has been just lovely they have asked me multiple times if I needed anything if I was ok. I\'d recommend coming here','2020-07-08 19:52:30.548000','2020-07-08 19:52:30.548000',5,'Caira Bodine','https://lh3.googleusercontent.com/a-/AOh14Ghmk_rIphidSs2gveG2mI2FRcw3hY4JsR1lNXuz=c0x00000000-cc-rp','2694018788013845459',21445),('AIe9_BEn45H0sgXnQcZ6CdFCnIZNHiF7PgWuGqTR2zvT9yE3J81NW_1FV_OyLy60rfc20cKdF2ajYy0IjLB4IRAAWlYXiMFm951J1P-r0a_ZdT9gj0gs9A8',NULL,'2019-12-04 20:45:15.837000','2019-12-04 20:45:15.837000',5,'Heather Westerfield','https://lh5.googleusercontent.com/-oekFMkTGNGM/AAAAAAAAAAI/AAAAAAAAAAA/AXT81eCJp8Q/c-rp-mo-br100/photo.jpg','14904078213800803294',13659),('AIe9_BEn45H0sgXnQcZ6CdFCnIZNRtywO0GkDUYuuLrFgMGmYapm_jtZSFFJ9BC_KHg-ozOT_Z1WZVh3itjv0XZe3d21ESp7mg','I had a really great experience this evening. Very fast service. Dyveliz and Rayven were very respectful and helpful.','2020-02-12 03:40:05.921000','2020-02-12 03:40:05.921000',5,'Maurice Ruth','https://lh6.googleusercontent.com/--42SmD37zq0/AAAAAAAAAAI/AAAAAAAAAAA/ZrIlGNqsdqs/c-rp-mo-br100/photo.jpg','16590124370714063921',13864),('AIe9_BEnlrilJwxTnmTZGPtDRBajbSO2ES7JDJ-4T_ELFmP810WoFbxyjW_LJiCnsxe_qswy6uJ-2bz9i4g4Truo5FRuLcbTy9XqCRQJ4V14SWPEijCJ9C8','Awesome experience, very thorough, very prompt,Jennifer Diggs was so pleasant, and John Bell, and Matt were soo kind, thank you','2019-01-01 18:25:49.787000','2019-01-01 18:25:49.787000',5,'Jennifer Seimer','https://lh4.googleusercontent.com/-icx4vO6SfAE/AAAAAAAAAAI/AAAAAAAAAAA/2zaLjo6UoME/c-rp-mo-br100/photo.jpg','8626688543755174284',8621),('AIe9_BEnlrilJwxTnmTZGPtDRBajCNAr4YHqhrh_S3OaeWwxhjr77-fv9zBsPJx_oQbz2U3OnrGYWSIIE-emMVJyKT40_6nWUFk5zK9jXDsecFKMiB-Xp20',NULL,'2016-04-30 17:06:15.612000','2016-04-30 17:06:15.612000',5,'Jessica Rivers','https://lh5.googleusercontent.com/-xS567Jk1iXo/AAAAAAAAAAI/AAAAAAAAAAA/JHwGpM0jf7U/c-rp-mo-br100/photo.jpg','17394740196501090048',5259),('AIe9_BEnlrilJwxTnmTZGPtDRBajeyykZjXy4BhdsEprtvYSsfKeAVC2v3--N6M6w39eS2rz_4HL9lNeQGOWDteWgwM8BXNqekeZwT8UrtNiCl1pgPZcyP4','The Doctors and staff at signature care were so amazing to us. They went above and beyond just to make sure our little girl was comfortable! They made sure we were informed about everything they were going to be doing which gave my wife and I peace of mind. We cant thank them enough for all their help!','2018-04-16 16:54:33.861000','2018-04-16 16:54:33.861000',5,'Pablo Riera','https://lh5.googleusercontent.com/-D801OnrjHxg/AAAAAAAAAAI/AAAAAAAAAAA/YsvppvjWqdk/c-rp-mo-br100/photo.jpg','16891069708558046635',4487),('AIe9_BEnlrilJwxTnmTZGPtDRBajfNLwJkLFjo950s2mhmK8VCL07wGoJBt11EehsuqHKB5kkC8aFvJlEEinTbF37FBGsNCi_FGUIhW_8ma4qitW7LEaX_U','I had a hard time, but they helped me. Also they called me the next day to ensure that I’m doing fine. Very nice place and people.','2017-11-06 07:58:33.363000','2017-11-06 07:58:33.363000',5,'Ahmed Almunawir','https://lh6.googleusercontent.com/-gt3-UTl8sRY/AAAAAAAAAAI/AAAAAAAAAAA/R2BwBRUVSYQ/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',3909),('AIe9_BEnlrilJwxTnmTZGPtDRBajFUghqveX4JV7QgWhR9yCZn6t5QjxExV4aTkwDhnOmekIqX9A0tCcXaWlAS0D6SJmFdN0y0kkTulIRuxxQ-DGOAsbpuc','I just got here but this place is awesome. So clean and inviting and everyone is so nice. Not your typical ER at all. I hope I don\'t need their services again but if the need arises this is where I\'ll be going.','2017-01-27 14:38:18.957000','2017-01-27 14:38:18.957000',5,'Monique Swaby','https://lh4.googleusercontent.com/-o8V7awae5pQ/AAAAAAAAAAI/AAAAAAAAAAA/xddkXJ02aQs/c-rp-mo-br100/photo.jpg','14567670160750071148',1903),('AIe9_BEnlrilJwxTnmTZGPtDRBajI2EX1DW_bIzMntJZQvAvkyIu6cK-NuH479wlkcYumav1flw62T9teQ12Qsv5l3_zWkhwy0Kdpah6nKcdFT9a3pnUj7w','Great experience! Thank you all, Rita, Dr.levitt, Danny and Jordan (:','2019-08-05 05:25:28.385000','2019-08-05 05:25:28.385000',5,'Vanessa G. Zavala','https://lh4.googleusercontent.com/-zYWuARl_APc/AAAAAAAAAAI/AAAAAAAAAAA/uQMz46m8dME/c-rp-mo-br100/photo.jpg','14904078213800803294',2105),('AIe9_BEnlrilJwxTnmTZGPtDRBajJzpnADbN-78zFcpexPUGGYnlXE_-9DQtlLBEgYTIx-hd2c0R6v4r6KK8B0OyCZaLA9Kiw7lX1bNVoV-rW72Z6OD3B8w','This emergency center is great. The Doctor, nurses and staff were very friendly, reassuring and lighthearted! I went in early morning with severe abdominal pain and what I thought was a stomach bug after battling it for 2 days I was at my breaking point. The front desk was friendly and QUICK. I probably waited for about 2 minutes before I was called back. I was seen by a nurse as well as Dr Akunyili and was instantly taken care of. Within the hour they had done a urine test, taken my blood and had me hooked up to the appropriate IVs. They also had me do a CT scan and taken xrays. I was diagnosed and offered either to stay and be monitored for 24 hours or to be sent home with the proper antibiotics and medication. I opted to go home. I received a call the next day checking up on me. If, God forbid, anything happens to me again or my family, I will most definitely go back to this Emergency Center!','2016-09-06 17:56:59.812000','2016-09-06 17:56:59.812000',5,'hana ab','https://lh3.googleusercontent.com/-UxArTYQCSec/AAAAAAAAAAI/AAAAAAAAAAA/MmY4WvvCtas/c-rp-mo-br100/photo.jpg','14904078213800803294',2459),('AIe9_BEnlrilJwxTnmTZGPtDRBajmsC_gXLqJP1Q4Wmf8m7qmGGUcZc5J_EHsAFcY-vC-ZPrRQt0T3nAj_W8NwlWOPxMISj9qIDaqK_Pd3-pbyi7Ye7m-Yk','I had a wonderful experience! They were so quick and thorough. Dr. Grinblatas was extremely warm and knew what was wrong with me immediately. I saw him within minutes of arriving thanks to Karen getting me in a room as soon as I arrived. Once in the room, Kristen and Diem took fabulous care of me. The warm blanket was lovely as well. Thank you to all of you for what you do!!!','2019-02-05 23:52:57.636000','2019-02-05 23:52:57.636000',5,'Korinne Kirk','https://lh3.googleusercontent.com/--rEnvJq-m6Q/AAAAAAAAAAI/AAAAAAAAAAA/OyW4-_b12Wc/c-rp-mo-br100/photo.jpg','14567670160750071148',1392),('AIe9_BEnlrilJwxTnmTZGPtDRBajP3iIF0DIlfpwea7YpJhVboexjY9w3VVES3XkGrBMvqC_6aMu90HQD6oZPh4KHy1TAXpgT7rPN3htMafyKZTGlHQLvE0','I could not be more impressed with the facility and the care givers. I had just been mugged and had head injuries and body injuries. I went to the hospital near by and it was just terrible. I checked in and gave all my information, they gave me a wrist band and told me it was going to be a few hour wait. \n\nAfter a few minutes, my son commented that we had gone to the wrong place. I got on my phone to see what else was near by and found SignatureCare Emergency Center. I called them to see if they had an X-Ray since I suspected I had broken ribs. They told me they did have X-Ray. I asked how long was the wait and they told me 5-10 Minutes. I stood up, walked up to the check in nurse and told them I was leaving and to cut the band off my wrist.\n\nUpon arrival at SCEC, I walked right in, they took some information, gave me a wrist band and took me on back. They took my vitals and a blood sample. Shortly thereafter I met with the doctor and she examined me and I shared my complaints. A few minutes later I was wheeled into the CAT scan room. They did a CAT scan with and without contrast. Less than 30 minutes later she came back and confirmed I had 3 broken ribs. \n\nI was literally in and out of this fabulous facility in about an hour. They took all my insurance information and filed for me. \n\nI cannot say enough good things. I asked them why was anyone going to that hospital ER down the road? They said they advertise but people just don\'t know. I told them to stick a sign out next to the hospital telling them to turn around and come to SCEC. I do not give praise easily but these people are top notch and it is a mistake to go anywhere else.','2019-02-14 01:04:40.790000','2019-02-14 01:04:40.790000',5,'Kirk Wiggins','https://lh5.googleusercontent.com/-gaHyfyPsa4Q/AAAAAAAAAAI/AAAAAAAAAAA/qupe-pTCnr8/c-rp-mo-br100/photo.jpg','12541597562633926366',549),('AIe9_BEnlrilJwxTnmTZGPtDRBajRXB5NQYL5c1ewlwlF34NKqrs_wxG6thnS6sdQvqZhQcCibblyOcmgOu-4qIJLxoRpWL34n3ivImyU85zN1JbQUKFW28','Brittany was Awesome! She kept me informed about my family member there eventhough I wasn\'t able to be there with her. Thank you Brittany and Signature Urgent Care for being there!!!!','2020-08-04 18:25:46.926000','2020-08-04 18:25:46.926000',5,'Deanna Spinks','https://lh6.googleusercontent.com/-twd79alujFs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl6tpXfYbzRP24DLF_5bIpc5nIZOw/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22090),('AIe9_BEnlrilJwxTnmTZGPtDRBajSfugcD8pSyGTL9PSphFIw_XNqImsRL7Ubwct0N0C2JZ_K9MrKeVwbfSgkcc9NjHD8pIqKtiETxVOhPz9Awg0KP_JgGk','The staff was very friendly and helpful. Was in and out very quickly.','2019-05-18 19:18:42.133000','2019-05-18 19:18:42.133000',5,'Tina Glines','https://lh4.googleusercontent.com/-Te-vTEUCe4g/AAAAAAAAAAI/AAAAAAAAAAA/BGK6lNEuT1Y/c-rp-mo-br100/photo.jpg','6521947413723274945',8276),('AIe9_BEnlrilJwxTnmTZGPtDRBajUhRcPS_H4kUu6kTKwOiiZrPdyhbovYN-ChA17CBVYID60v--VfodYmAYsPr8x0-hDCpBmd8IryMQfUV588xEYUfC-Mg','Great experience! Friendly staff! Doctor was very friendly and reassuring.','2020-07-05 03:40:38.010000','2020-07-05 03:40:38.010000',5,'Celina Feffer','https://lh3.googleusercontent.com/-BuQkLH4WC40/AAAAAAAAAAI/AAAAAAAAAAA/u7V4mGM7QA4/c-rp-mo-br100/photo.jpg','8679688254631342173',21485),('AIe9_BEnlrilJwxTnmTZGPtDRBajVIizyCaMNRmeNtEYkhjJl2yHY4XDTB9CoN18hfvKSiEfVn6YVvFWrP7PWTXpqGBdVD-4wujW9hl5HhOTFIZsP0iYEJE','Great service that staff is always great and Dr. Patel was pleasantly nice and caring.','2018-09-19 17:17:07.488000','2018-09-19 17:17:07.488000',5,'John Henry','https://lh6.googleusercontent.com/--Ptw1sKXN6k/AAAAAAAAAAI/AAAAAAAAAAA/iWqnyZN8qD0/c-rp-mo-br100/photo.jpg','17394740196501090048',4794),('AIe9_BEnlrilJwxTnmTZGPtDRBajvWtOppYdUhJ7NSF1EVTEMsb6v8LFfx448GnwdrN2DaTCtm796057ECJo760IpiEB9PdC3zUGn72dzI1tW5M34nGV2Pg','I came in on a Sunday afternoon feeling horrible. The moment I walked in I was greeted by a friendly professional staff. I greatly appreciate the staff at the Montrose clinic.','2017-07-30 22:45:01.840000','2017-07-30 22:45:01.840000',5,'Monique Meshioye','https://lh5.googleusercontent.com/-mZEIH9W0a5s/AAAAAAAAAAI/AAAAAAAAAAA/0r3o_FVr9eU/c-rp-mo-br100/photo.jpg','3511292162159714121',7797),('AIe9_BEnlrilJwxTnmTZGPtDRBajWD8MUsd_ARzV5dnyks5Rn5hsTwfQX0yEQmh3rkeegH59Xq5bOkzw1cwi2yMCwlab-_G3kn6Q5UkaHEiBb9ZfrBNTzac','I was very happy with the service I received Dr.Daniels. Rollie Natalia and Stephanie','2020-01-25 06:14:25.420000','2020-01-25 06:14:25.420000',5,'Ashley Johnwell','https://lh4.googleusercontent.com/-zTPLaQTc-2c/AAAAAAAAAAI/AAAAAAAAAAA/2aD_B1rO3h8/c-rp-mo-br100/photo.jpg','8679688254631342173',10335),('AIe9_BEnlrilJwxTnmTZGPtDRBajWdRIDW_4f4FU1Z1LrHDdUjcva-hh_ySuzpTiC-8aL2yqikibFZ0lApVjY0LbDD91rb7fP7jMw67TSRXE5qTzlEcrj-s','Dr. Tran, Amy the nurse; Shaunda and Thai were very professional and courtious, they tended to my needs and made sure that the problem can and will be solved.','2020-02-10 20:59:30.206000','2020-02-10 20:59:30.206000',4,'Robert Gaines','https://lh4.googleusercontent.com/-gqp2XYe9iRk/AAAAAAAAAAI/AAAAAAAAAAA/voNT-GIXDss/c-rp-mo-br100/photo.jpg','2694018788013845459',14242),('AIe9_BEnlrilJwxTnmTZGPtDRBajxqUuLJju3OZ0azNLIkeeiWXjMRl2W91w5fN6KgZ-PriiQhf1LA-83UP9t09uJiEQc9cIU0Np03OC615gYb4DmnnxqWc','Awesome, friendly staff! Such great care and made everyone so comfortable! Very accommodating! Thank you!','2019-08-24 02:22:40.872000','2019-08-24 02:22:40.872000',5,'Katie Orona','https://lh4.googleusercontent.com/-NcG5gzRRBlw/AAAAAAAAAAI/AAAAAAAAAAA/wA1e9dfrWd4/c-rp-mo-br100/photo.jpg','16590124370714063921',3240),('AIe9_BEnlrilJwxTnmTZGPtDRBajXr_sXPJuTAk7s-kp00XwMpCtQjMc2w42k0jk_RO-DROOs6ncvfSHZJtBpwlHnvM68r1WwdjxwlcZy5MVN3e2C3asB5E','Everyone is too nice and the customer service is excellent. I do recommend it 100%','2020-02-18 01:19:57.734000','2020-02-18 01:19:57.734000',5,'Monica Nuñez','https://lh5.googleusercontent.com/-U_71f9QAPZA/AAAAAAAAAAI/AAAAAAAAAAA/wl2qyTAm0Rc/c-rp-mo-br100/photo.jpg','14567670160750071148',13528),('AIe9_BEnlrilJwxTnmTZGPtDRBajxS9Wj9ZCRapUb3FHarTSf4pU83kzaxjFxNoAQSWnR8mbRXmxY_i1qzq6kSfb-Yc4PVm2lz15-Y_hs75kxsAGZQyHVXQ','I had a great experience at Signature Care at the Memorial City location. I was kindly greeted and they diligently showed me through the paperwork. They took me back quickly, gave a thorough examination, and walked me through my next steps. The staff actually remembered me from a visit I made in January! I was offered water, snacks, and even a warm blanket during my visit. They were attentive to my needs and were cooperative in order to meet my requests. Thank you Signature Care!','2019-09-30 19:48:04.798000','2019-09-30 19:48:04.798000',5,'Abigail Neuman','https://lh5.googleusercontent.com/-fAeI5f0xULA/AAAAAAAAAAI/AAAAAAAAAAA/kAYZ0GL4onw/c-rp-mo-br100/photo.jpg','14904078213800803294',13681),('AIe9_BEnlrilJwxTnmTZGPtDRBajY-52T183IcJ9tgHUzhffZlg9oe-VoQTTixqKfy-F7_xjHLi3zpbtH9NvsQBcKzNgvjPaZjPQgXL3NBwRb9XjcWTny_0','FRIENDLY! VERY CLEAN! I APPRECIATE THE CONVO MS. ASHLEY B','2019-01-08 21:18:21.658000','2019-01-08 21:18:21.658000',4,'Joshua Henry','https://lh5.googleusercontent.com/-NdpLBCp-upg/AAAAAAAAAAI/AAAAAAAAAAA/CWUdQXOsGTU/c-rp-mo-br100/photo.jpg','8626688543755174284',8595),('AIe9_BEnlrilJwxTnmTZGPtDRBajZzCTj-HPaHiXU9qrnawuwSRC4zUGWWmbi4H8haDoqw2xLbINUM3Oqh32C33T8KB1-2R6IQ','Love this place they always take good care of me and my family come in sick and we leave feeling better 🥰','2019-11-18 19:19:56.203000','2019-11-18 19:19:56.203000',5,'yesi agui','https://lh4.googleusercontent.com/-OFhGLqeu9KE/AAAAAAAAAAI/AAAAAAAAAAA/pPMqzn9ZUqQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8090),('AIe9_BErE-Rgn8jVHi3E8XDhCwyEkfx9wmFHY7g52MqxzrUeb55aeq0-0sbd7ChKxSqEVwE1QwZMhZJB5Ug5wUK4fgJuOoH_1A','They should change the “15 minute” advertisement to 6 HOURS. I DROVE ONE HOUR TO SIT HERE AND WAIT FOR 6. IF THAT SOUNDS FUN TO YOU, come on by!! It’s feels like a joke at this point','2020-06-12 21:52:55.267000','2020-06-12 21:52:55.267000',1,'Toni Pavlovic','https://lh3.googleusercontent.com/-Zdd4RQgxIHA/AAAAAAAAAAI/AAAAAAAAAAA/hwHevgIbsGc/c-rp-mo-br100/photo.jpg','2077061009497551125',22865),('AIe9_BEtr-1H2yEDwUdLS9nPaZGhFit-4JBGwo1e1iWEJJBMzguHFZ-qmBteJZWBjn2uT-7sb3a2RibDho3BA7ik23SFg2QUgQ','My niece came to Signature Care and was admitted very quickly. The staff and doctors were friendly and attentive to her needs and concerns. The doctors were able to control her pain quickly and made her comfortable. We were also informed about what the plan was for her while she was in their care. \nThe facility is very nice and clean. \nI would recommend this Signature Care facility.','2020-01-21 20:21:40.707000','2020-01-21 20:21:40.707000',5,'Barbara McCullough','https://lh5.googleusercontent.com/-UHS7mAtG0s0/AAAAAAAAAAI/AAAAAAAAAAA/6S5tYu_enmk/c-rp-mo-br100/photo.jpg','2694018788013845459',14269),('AIe9_BEtr-1H2yEDwUdLS9nPaZGhUDb65nSRLJyDYoBp2rhPPrRyPKYqWfXKYKnAHBNEBbOK5T91gZ2D7NkkxWQ6-ZHdFBl1kWkKVREynyeVdguP1IsN3JQ','I came here with my mom and had a great experience. We really enjoyed interacting with the staff here! They were all so nice and took time to make sure we were well taken care of. Angela, Amy, Kat and Frank made our time here fun and that says a lot for an ER! The wait times were also very short.','2019-08-10 05:19:21.546000','2019-08-10 05:19:21.546000',5,'Raegan Lane','https://lh5.googleusercontent.com/-_laC8n9Zgxw/AAAAAAAAAAI/AAAAAAAAAAA/emDU_Rb9_JQ/c-rp-mo-br100/photo.jpg','2694018788013845459',6089),('AIe9_BEuFX7PcAP2nNY_ju84FoFS-_1AXPwWDABOZ20Ac5EtCHmFD6-nav6NXEIeND_9ScC53fzBm1fe1Fi0ogxIW9RbDPnB2n-39sSiD1A5yb7euz08e58',NULL,'2019-08-19 04:45:27.143000','2019-08-19 04:45:27.143000',5,'K G','https://lh6.googleusercontent.com/-9yWBKUpiEAI/AAAAAAAAAAI/AAAAAAAAAAA/npL3fLzZrHM/c-rp-mo-br100/photo.jpg','8679688254631342173',8816),('AIe9_BEuFX7PcAP2nNY_ju84FoFS0w1QRMaqrOckSPY7g7W75uyVUKps1h3oW-7tRsyKszKu-IGGOj4Ha-iQwjFngiqeiVIpC-9W88wMZO-q8bea7coT5kc',NULL,'2020-01-08 03:31:00.231000','2020-01-08 03:31:00.231000',5,'Damien Brito','https://lh3.googleusercontent.com/-SIKB_p0p9Ss/AAAAAAAAAAI/AAAAAAAAAAA/aoMetFR5uQk/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',9424),('AIe9_BEuFX7PcAP2nNY_ju84FoFS1Dx_8G6FcoJPrkMtE3Up_Wc6uJU0ohwOdF5v6YrznnLA750NyuZarbtdKW39GJUNcvMVGM0XdJ2Kw7EG_lMj1GrZF0U','This place is wonderful and friendly they take such good care of you when your down even if it\'s just a bad cough!! Thank you Daniel,Patel, Susan, Careltta, and Briseida','2020-03-05 03:45:21.180000','2020-03-05 03:45:21.180000',5,'Jessica Lee','https://lh6.googleusercontent.com/-InQ2TcwZXJU/AAAAAAAAAAI/AAAAAAAAAAA/LDG44dLEgXw/c-rp-mo-br100/photo.jpg','17898197009688164559',14105),('AIe9_BEuFX7PcAP2nNY_ju84FoFS4v2V9M5UsfXwjNncJb3oLZAVcZI9zaGhcHpeeJh2xxEd-96wtdHEB4gj4-nWODowK--f4NVAW7edbu28dwYEsnP9a-4','I was a patient at this ER last week and all i could say is that i received the best care and service. The front receptionist, the technicians, nurse and Dr. Faig were amazing! The service was really prompt and I got reassurance that my illness was not serious after my evaluation. Thank-you!!','2018-06-27 16:30:10.877000','2018-06-27 16:30:10.877000',5,'J C','https://lh4.googleusercontent.com/-moyzfFCbiRk/AAAAAAAAAAI/AAAAAAAAAAA/wxIn7ztGQfg/c-rp-mo-br100/photo.jpg','14904078213800803294',2244),('AIe9_BEuFX7PcAP2nNY_ju84FoFS5dQowkrrD-KdGMFsY6_v7xhVSh3xbcNKGzppNvqaUEAwPIe6oqoCNca4eJXmulmmAncxEQOTQsUOjjpDZKN-2H28i8I','I’ve been here a few times and each time it’s a great experience. The staff is so nice and accommodating. Service is usually quick and everyone makes sure you understand exactly what’s happening with you. A great place overall.','2019-02-18 14:28:41.214000','2019-02-18 14:28:41.214000',5,'Stephany Hill','https://lh4.googleusercontent.com/-YVZjuRhFPr8/AAAAAAAAAAI/AAAAAAAAAAA/2K-jQMimTME/c-rp-mo-br100/photo.jpg','3511292162159714121',7405),('AIe9_BEuFX7PcAP2nNY_ju84FoFS6DIQmPnBfneRM0UUCdIdy10YvRlGTByh5cX9fZ08LdqBDRMe5ohIfmY4R6TuHB0g1Bo08CSz6TqF5tf8biQMXTtAGik','The best doctors and nurses I’ve ever dealt with. Everyone there is caring and attentive at all times. Seriously guys. This is a gem. I go here for everything. Had Dr. Yusuf (who’s always wonderful), Leslie, Hamzah, John, and Jackie last time and they just solidified how great this place is.','2018-08-06 21:52:52.387000','2018-08-06 21:52:52.387000',5,'Chance Sanger','https://lh3.googleusercontent.com/--9uaBTl885w/AAAAAAAAAAI/AAAAAAAAAAA/eZymvnmPpfw/c-rp-mo-br100/photo.jpg','3511292162159714121',7656),('AIe9_BEuFX7PcAP2nNY_ju84FoFS80Z0IlxtF6xjc2KEaIyHTgA0Xvr3bUOGbByGvPSPtGLNfMZ0E-gmspyJq74vljlik-hpXPzAZaHE7q1L6BAjsLV3yY8','Complete waste of time. Left with same symptoms I went in with. I haven\'t slept well since Sunday and they say I\'m fine to drive (Ialmost hit 3 cars and my garage door. I should give then the bill for that. So I tell them I\'m extremely winded still just from walking to car to front door and they ask me to come in again. After I just told them I obviously can\'t drive. Never again.','2017-05-26 14:46:33.328000','2017-05-26 14:46:33.328000',1,'Crysanna Hone','https://lh6.googleusercontent.com/-9VR39FSjRrY/AAAAAAAAAAI/AAAAAAAAAAA/O_19kn5sYV4/c-rp-mo-br100/photo.jpg','14567670160750071148',1819),('AIe9_BEuFX7PcAP2nNY_ju84FoFS9qmX8MWn-6mYtLPffRu530xItSOg4SaHGQ5QE4cQyF5-aJX1rrkMZgt0gLiI4Eil6blds48YyKOxpWdlWIFzkp9t4_Y','Great service - fast, friendly and professional! Highly qualified medical team that makes sure you are taken care of. Brought my son and he even got snacks after his stitches! He loved it!','2019-09-07 19:32:34.511000','2019-09-07 19:32:34.511000',5,'Richard & Katherine Brooks','https://lh5.googleusercontent.com/-cDaOGPsNFJQ/AAAAAAAAAAI/AAAAAAAAAAA/RoKZzjXB7Rs/c-rp-mo-br100/photo.jpg','17898197009688164559',5556),('AIe9_BEuFX7PcAP2nNY_ju84FoFSAsdU9au-N3qvX0TtfjafiIRrD4bpRLdO4aVJO0h7kv39nhoTrT6iWoJ0VcY1ZNyrnyQFdl7GHxYDIM0CAcCkA-E1Iko','I’ll try and keep this short and sweet. On Thursday the 9th I woke up with a slight headache and back pain I didn’t think anything of it...throughout the day the pain started to get a little worse. I thought to myself...maybe I slept wrong. So, I’m at work on my grind. Later that night The fam and I go to my nephews football game. A nice cool wind chill had just pushed through my body was slowly starting to shut down. Again, not thinking anything of it I simply say to myself take a nice hot shower and go to bed early. I did just that and after a hot shower I felt great!!! Well, Friday morning I wake up. My headache is even worse!!! I took some quick pain meds and was off to work. Throughout the day my back pain gets even worse. I finish the day go home take a nice hot bath and immediately after I take some Motrin!!! I wake up feeling fantastic. I go back to work on Saturday...two hours in Im ready to call it a day. The pain is simply unbearable from an excruciating headache to extreme back pain. I go home ready myself for another hot shower and this time take a serious shot of NyQuil. I knock out and at exactly 3:35 a.m. I feel as though someone has just hit me in the head repeatedly with a hammer or a bat!!! I knew I had to get up and take care of this immediately!!! I had heard from several people and even drove by this emergency care facility on several occasions. Believe me when I tell you that this is by far the best place I have ever been to for immediate care!!! Starting with the administrative staff Jocelyn up front!!! She was very informative over the phone and in person. The other three care providers that blew me away were Allen whom took excellent care of me and Informed me of every little action in extreme detail. Then there was Pam my nurse!!! She went above and beyond the scope of caring for me. She too explained every move she made in extreme detail and leaving no question I asked unanswered. Last but not least of course was Dr Ding...handling me with extreme care and making sure I was extremely comfortable for an excruciatingly painful procedure she was about to perform on me. We shifted about five time before we both found our comfort zones to do my spinal tap!!! I am extremely grateful to those who had informed me of this emergency care center. More than anything I love that I didn’t even feel like a patient. It was very intimate and comforting to the point where I felt like I was in my bed at home and family was taking care of me!!! THANK YOU ALL SO MUCH!!! BEST CARE I’VE EVER HAD!!! At the request of Dr Ding and Nurse Pam I was instructed to find a primary care physician but I’d much rather come here than to any PCP!!! I highly recommend this emergency care center!!!','2017-11-13 13:29:12.628000','2017-11-13 13:29:12.628000',5,'DOE DOE','https://lh6.googleusercontent.com/-lqAz14cqc-g/AAAAAAAAAAI/AAAAAAAAAAA/pUTiU0yS9pw/c-rp-mo-br100/photo.jpg','8918455867446117794',9340),('AIe9_BEuFX7PcAP2nNY_ju84FoFSbOQHz0Wq7WNrGfqS8FiN91uuiR1DVrKJQbNDbdAkkBSbFhY-LNh7u5qQsAena157XIOsSL_wCDKwhcIsc4cGJKiXMP4','Very good service. Took care of my mom right away thanks to Sita, Rhonda and Allison.','2019-12-24 01:52:22.939000','2019-12-24 01:52:22.939000',5,'Linda Garcia','https://lh5.googleusercontent.com/-2d2RfK__NNQ/AAAAAAAAAAI/AAAAAAAAAAA/ZodC4RyzUrI/c-rp-mo-br100/photo.jpg','13486358490203335051',663),('AIe9_BEuFX7PcAP2nNY_ju84FoFSbwE-1kqV9pT4aoPw7kWWgfCwSblHvqPFh0xg9SFauV_pCf12rOrCo_7d5hG7XISpyhN7WPvlfZ7caODiKUydgwHYSk8','I have always had very positive experiences at the signature emergency center in montrose. The staff has always been very nice, warm and attentive. I’ve always had very thorough follow discharge instructions. I’m very grateful this center is so close and open when I’ve needdd it because I wake up very early for work and most urgent care centers are not open.','2019-02-27 11:46:20.057000','2019-02-27 11:46:20.057000',5,'Lara','https://lh4.googleusercontent.com/-hPkmnzFdtuU/AAAAAAAAAAI/AAAAAAAAAAA/Hmz4Zq6V_0s/c-rp-mo-br100/photo.jpg','3511292162159714121',7397),('AIe9_BEuFX7PcAP2nNY_ju84FoFSCICoZG2oiHTmAHTfD0dWKTuiH5r0QEJJKqLuDJvo90dJGrahIMTanmr5XNdGFhI-vA0taMIHog6O03RDW6wf_VbHqTg','The best experience for an ER clinic ever! I was offered a warm blanket twice while I was there. It took under an hour including with xrays. Everyone was friendly especially Dr. Patel. Very caring staff and even better because of my insurance I didn\'t pay anything!!! Will definitely use this place again. Thank you!\n\nUpdate: I used them again this week cause I\'ve been sick with a virus. This place never disappoints 😊','2019-09-21 02:55:08.871000','2019-09-21 02:55:08.871000',5,'Jennifer','https://lh5.googleusercontent.com/-OMFsFsg9A1g/AAAAAAAAAAI/AAAAAAAAAAA/wkzk5eua9lw/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',415),('AIe9_BEuFX7PcAP2nNY_ju84FoFSCK6ocTXeAsZagimeRhsflkCBcChk0F98RfJFE0PzHI0vK5QrpLNVFP7yaGmEm54EV060PjsqQPfKjF0mopa4wb_HgLc','Everyone is so nice and helpful','2020-07-28 21:36:49.434000','2020-07-28 21:36:49.434000',5,'Christina Lunkwitz','https://lh6.googleusercontent.com/-bXP0SgkYGBs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclicGRw1y0xaZImwbpc6ckVUtCR4g/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22111),('AIe9_BEuFX7PcAP2nNY_ju84FoFSCMkQMAFIRyS2aEjgeEDd0qIYKu4ZuO3reZ0ae0GaoH94kx2QoRPvNDpU16bn0wNckwu384QX-oCscCbQjZfkOTDe-GQ',NULL,'2017-06-17 20:05:48.852000','2017-06-17 20:05:48.852000',5,'Vanessa Crockett','https://lh5.googleusercontent.com/-9WTctDRWZ9A/AAAAAAAAAAI/AAAAAAAAAAA/sZ1HqLMe90Y/c-rp-mo-br100/photo.jpg','17394740196501090048',5033),('AIe9_BEuFX7PcAP2nNY_ju84FoFScqJg58Zqw05kUELRBKgWwsM_ZGtxvQV5VvYrZznkC-8h12pV90gC3cGkegPayfZnAVNiqCop0tHjv37O58VmCG_GO7Y','Kendra at the front desk was quick assist my needs, got me in to see Gabe and Dr.Kimball ASAP. Definitely recommend this place.','2019-11-23 03:05:57.177000','2019-11-23 03:05:57.177000',5,'Jack Greer','https://lh4.googleusercontent.com/-Z6pLipriHyk/AAAAAAAAAAI/AAAAAAAAAAA/ENnFUhCJInI/c-rp-mo-br100/photo.jpg','16590124370714063921',3082),('AIe9_BEuFX7PcAP2nNY_ju84FoFScsoUkWmWDW7BzNYKCpD9ey0z0ctbnavU6KFstgBxJV0yG5RNDShHOzeiNuohxPTdJOdpz1vlqSew-kDq9jBrSnX1vOQ','Awful service, they are more worried about the money than the patients\' wellbeing and they don\'t accept medicare.','2019-08-11 18:34:35.495000','2019-08-11 18:34:35.495000',1,'FEDERICO CERDA','https://lh6.googleusercontent.com/-99w1SAKzQEs/AAAAAAAAAAI/AAAAAAAAAAA/GlQx2-m9F5w/c-rp-mo-br100/photo.jpg','17394740196501090048',4618),('AIe9_BEuFX7PcAP2nNY_ju84FoFSEBVAHns_Y8sB0utSLBfBxEvubEbv1E_77etUA6F384BB6I1dg-5QuudgXG8jIEAvM2vgdwSR-WjbpxPUCjeo1g5lNn8','I\'m not a fan of emergency centers, but I must say this one is different. My sister was evaluated and admitted and the staff was great through the entire process. Nicole, Dustin, and Ricardo were amazing. All three made sure we were comfortable while we waited for her.','2020-02-06 02:33:08.320000','2020-02-06 02:33:08.320000',5,'Katrina Baines','https://lh3.googleusercontent.com/-olfIu3j4WkY/AAAAAAAAAAI/AAAAAAAAAAA/RtolrMwLaaI/c-rp-mo-br100/photo.jpg','14567670160750071148',13555),('AIe9_BEuFX7PcAP2nNY_ju84FoFSf83k599z2vsgekCCCoTuMXPDWljmvmk62F3PkGXJ_B7uXi2HXI_Z13xV8vUS0AwRhBwTcQFPdmooBs2iWbIom48WMus','I was seen in less than 5 minutes, EXCELLENT customer service from the moment I walked in, Jennifer at the front desk was so friendly and helpful, as well as all of the staff members I interacted with. My nurse, Adam, was fantastic! Doctor Elsbecker was also incredible. Thank you for such an easy and pleasant experience!','2019-11-25 15:45:06.824000','2019-11-25 15:45:06.824000',5,'Anna Okerlund','https://lh3.googleusercontent.com/-S8zJ7PSKaaY/AAAAAAAAAAI/AAAAAAAAAAA/hnoBTJbALlE/c-rp-mo-br100/photo.jpg','16891069708558046635',4140),('AIe9_BEuFX7PcAP2nNY_ju84FoFSFrqHG5iCXjejf__JC8L_gcbGSARbscZTpQLd_7ItWJ0IxZ5eXjek1xEHQzJFOuNLT4uGBTFE4jLqDo-C8rc-gyqJknU','Phenomenal Service!','2019-06-02 15:07:26.343000','2019-06-02 15:07:26.343000',5,'Jeniffer Rojas','https://lh5.googleusercontent.com/-SpXQLzabyuQ/AAAAAAAAAAI/AAAAAAAAAAA/imUhj3EefLM/c-rp-mo-br100/photo.jpg','14567670160750071148',1317),('AIe9_BEuFX7PcAP2nNY_ju84FoFSgXPOSMpLwqVGQV4nsPr8jyH6x7iqnoQdshjKSTR6rkmJLdBddc8_uEC0aRvU_d6Ke8k5V14i6Zus9QzL3LWEZ8ibP1I','Great service by staff ! Treated me well and kept me comfortable at every step! Especially Patricia and Alvean A.','2020-01-16 21:24:55.958000','2020-01-16 21:24:55.958000',5,'Omar Rios','https://lh6.googleusercontent.com/-8mPiS0Hb9WE/AAAAAAAAAAI/AAAAAAAAAAA/osnusCaLH9Y/c-rp-mo-br100/photo.jpg','16389487648212004696',10055),('AIe9_BEuFX7PcAP2nNY_ju84FoFSincYksandukQZ6wbjUr-RRrrtNSZ3uOLu_sxV4W6k7c0nOMa4qSyc_cfQGdSEYVNx1KjTg1lpU4VJZRrA6f76koWFaU','Expedient and courteous.','2016-07-11 12:28:51.674000','2016-07-11 12:28:51.674000',4,'Johnny Bodman','https://lh3.googleusercontent.com/-2ZqC9URuADU/AAAAAAAAAAI/AAAAAAAAAAA/NZcmkws8iS4/c-rp-mo-br100/photo.jpg','3511292162159714121',7963),('AIe9_BEuFX7PcAP2nNY_ju84FoFSivdOXy9h4mqvNVskMgUPAJghNX4_gydEMBsjd-4j31Iv_9_f8Q_ZSZWeGtCEx63yZa-3WPEZ38u9UEuDv6gP3CAIIcs','I visited SignatureCare with horrible abdominal pain a while back. The front desk was very welcoming, the doctor took his time explaining my options and the nursing staff was outstanding. Thank you Ke\'Aire, Norma, Churiah and Dr. Yusuf!','2020-02-09 18:41:47.988000','2020-02-09 18:41:47.988000',5,'Martha Trevino','https://lh5.googleusercontent.com/-IOOTdiSbALk/AAAAAAAAAAI/AAAAAAAAAAA/xX7xEt_YSeg/c-rp-mo-br100/photo.jpg','3511292162159714121',14421),('AIe9_BEuFX7PcAP2nNY_ju84FoFSIZii3plTCuZB16dKdIQdx43SRFcin9CD6uUdJWwwZ1qYxzCP9HgMe2JTBdRoxGBhpY3zBOjfzAJCQ9nZTYyjwSNF_VA','The staff were really friendly and efficient. They worked ima timely manner to get me out of there and with a valid diagnosis. I love going there. So much better than the hospital emergency room!','2019-12-11 14:47:50.162000','2019-12-11 14:47:50.162000',5,'Amber Pollard','https://lh6.googleusercontent.com/-JYexysloWYU/AAAAAAAAAAI/AAAAAAAAAAA/31IfLyx3E6k/c-rp-mo-br100/photo.jpg','14567670160750071148',1177),('AIe9_BEuFX7PcAP2nNY_ju84FoFSK0dxtdtv2akvWpnvJnVGjeZTZoNIzfsDwYca_5-AQdPBAVwK16fTkyKijWAYhT8sFyJsomwFSyLbu7jTHmZLdTdMIoY','Devin, Aileen, Christina, Lauren and Dr. Rose were working hard outside in the heat to treat patients while we waited Safely in our cars. They were all very friendly and helpful. I got in line at 8:30 and was getting tested by 1 on a Friday afternoon. Get here early if you can and bring something to do in your car while you wait, results ready in 15 min.','2020-06-12 17:38:44.669000','2020-06-12 17:38:44.669000',5,'Lisa Whaley','https://lh3.googleusercontent.com/a-/AOh14GhmofL-sM7x263diNzC6KNAqNGIGiWRo3ZjSW0=c0x00000000-cc-rp','16891069708558046635',22051),('AIe9_BEuFX7PcAP2nNY_ju84FoFSkAOrQTtyxTVzn08YN8aXMRj1of-B5B75eY4b9DpuyjCHR3jhhq-FpKWb57gMBjNYBpp5EA_5f3bMz3mwil0oMR453dY','Every one is extremely nice. Fatima the rad Tech quickly helped us. Thanks to Sarah and Tanishia.','2019-11-13 02:42:44.064000','2019-11-13 02:42:44.064000',5,'Denine Bailey','https://lh4.googleusercontent.com/--uBj_oBdkbM/AAAAAAAAAAI/AAAAAAAAAAA/r2LKZFwwgJM/c-rp-mo-br100/photo.jpg','17898197009688164559',5439),('AIe9_BEuFX7PcAP2nNY_ju84FoFSkIbU0oSJp6AEVpwes-yY0SdsgkhxjehmMOCWbM3yZzch_TlZ3SK82SKYbFeebUGLk41RdYTggHJFbjViJf9VFLjHTUQ','My experience at 24 emergency care was great. ( Nitza ) was very kinda and made sure that I got good service . My doctor who help (Patricia ) was good too also she made everything clear for and I was in and out with in 10 min','2020-01-09 15:56:03.027000','2020-01-09 15:56:03.027000',5,'Angel Dixon','https://lh3.googleusercontent.com/-ccu6TrB6Uyg/AAAAAAAAAAI/AAAAAAAAAAA/y8GMOhilLAc/c-rp-mo-br100/photo.jpg','16389487648212004696',9491),('AIe9_BEuFX7PcAP2nNY_ju84FoFSl7BhCPE90YIZKi8Aqwe45hQ_5KEAQNtodzqEMZrFw7h1jYldlRmusyEr4hWSj1m_VtxONeD6n6lDvscppMC4vmxDZgg',NULL,'2020-01-31 16:18:19.255000','2020-01-31 16:18:19.255000',5,'Kingsley Cummings','https://lh5.googleusercontent.com/-pw_8YrTp6Cs/AAAAAAAAAAI/AAAAAAAAAAA/TpTvPuBpkZ4/c-rp-mo-br100/photo.jpg','3272657195432704501',10465),('AIe9_BEuFX7PcAP2nNY_ju84FoFSlb6K-tm4SjKUbcoWuIwp3xwZodscTIzGXrdmiUjbHTjc9b6oAPzSA-a3Gsg905BoSoHSdqQWYWg35lWD2inmiwdGBU0','The staff was very friendly and helpful. We were very pleased with the service. The next day Neighbors called to check on my son and then sent a thank you note in the mail. Who does this? NEIGHBORS does!','2016-07-21 17:09:35.815000','2016-07-21 17:09:35.815000',5,'MaryAnne Martin','https://lh4.googleusercontent.com/-1hQ02v4wW6Y/AAAAAAAAAAI/AAAAAAAAAAA/qq2Ic1_HbWE/c-rp-mo-br100/photo.jpg','6521947413723274945',8360),('AIe9_BEuFX7PcAP2nNY_ju84FoFSlLYJnb7dH0I6DN1B43EIwc2PaR4MV5jAhVxQiEsnMYCFtbE5Xf0oQHronQ8EoxvtAovMsqCFqu6j2OzYayJJFkN28ys','Had a great experience here! Staff was very attentive. Kara, Courtney and Gunnar were all so sweet and even made me laugh. I need that. Thanks!','2020-03-09 18:28:49.845000','2020-03-09 18:28:49.845000',5,'Linzi Johnson','https://lh3.googleusercontent.com/a-/AOh14GgLlfE1t1UxDP5SzrzaFtLVa6eaSkaKjTYf_0p1=c0x00000000-cc-rp','3272657195432704501',21137),('AIe9_BEuFX7PcAP2nNY_ju84FoFSM4ADFdHyLAqXsbvZSinHObsjEHGgfgOJqJmjDfNO7SobJvfd1MyNhx_bPqJauP3fCcflD0Qn9bU2q8IMkUaDdFQxU6k','Great and speedy service. Excellent care from Dr. Zheng and her team. Shout to Maya for being professional and expedite when we first arrived.','2020-01-05 16:04:09.493000','2020-01-05 16:04:09.493000',5,'Unapologetic Politics','https://lh4.googleusercontent.com/-SYEDSUE6IDc/AAAAAAAAAAI/AAAAAAAAAAA/zdb-_5MxEZQ/c-rp-mo-br100/photo.jpg','12541597562633926366',252),('AIe9_BEuFX7PcAP2nNY_ju84FoFSMH7ZdT4VFDNYiJi6npLX0D6fXIpqcBBHtv2ZdQGdAj6J7yQaAc8gVRaApMYMKjqjYD-CeUXm-6BUIFbhlv9pHUSqCGU','All of the staff at this facility were great. Very professional, knowledgeable and attentive. Nurse Dawn was very kind and went above and beyond to make my sons experience a positive one.','2019-10-20 02:48:49.260000','2019-10-20 02:48:49.260000',5,'Lorenda Maddox','https://lh5.googleusercontent.com/-ATWkU3yxJDY/AAAAAAAAAAI/AAAAAAAAAAA/HO_QNdGl2Po/c-rp-mo-br100/photo.jpg','3511292162159714121',7155),('AIe9_BEuFX7PcAP2nNY_ju84FoFSOinDS_j_vdGD49ZqrOe0quAVrS5eiPibbjW8L8_sa9VmntZsrhOlhAu8zJof6jbixWvZWY8Wei2KIrKJbxLv3y_byjE',NULL,'2020-07-18 03:57:04.640000','2020-07-18 03:57:04.640000',5,'Raford Hargrove','https://lh5.googleusercontent.com/-Ss0Hjc5Zya0/AAAAAAAAAAI/AAAAAAAAAAA/BWei_nX_8TA/c-rp-mo-br100/photo.jpg','16590124370714063921',22670),('AIe9_BEuFX7PcAP2nNY_ju84FoFSP7cNK6l4LpufcWHvk6F9yW_q_PHTeOLR8M4xJwGPG5Ls_Ys32xjGclzmwtZRx84rhGUU9BVvOYtfZDxIWvj_3RNyC6o','Fast and friendly service! Kimberly, Brad, and JR were great 👍','2017-03-02 18:37:37.637000','2017-03-02 18:37:37.637000',5,'Mike Hulick','https://lh5.googleusercontent.com/-CCA6aR6feOc/AAAAAAAAAAI/AAAAAAAAAAA/UzaVg27pdfI/c-rp-mo-br100/photo.jpg','16590124370714063921',4044),('AIe9_BEuFX7PcAP2nNY_ju84FoFSPk7pKSF_IdcDl-LyuqWq6HPWkMhRPLVE0kRF8EkNtQczXDRtrklEjw0H1LaoGYNLDYkCBEZ-cXB0Telh5RcvNefz_h4','My mother in law had abdominal pain, took her to signature care er in montrose location, dr. Kimbell has one of the best bedside manners you could imagine along with Eve and every staff member there. they diagnosed her with acute cholecystitis, they contacted their surgeon dr. Vega and she arrived quickly and made the determination for surgery. surgery was scheduled same evening. now my mother in law made full recovery back at home. I cannot say how happy the patient and family are with the care at signature care. Ive never imagined how streamlined the process for surgery can be arranged as they have done for her. thank-you signature care.','2016-03-17 16:57:57.961000','2016-03-17 16:57:57.961000',5,'J C','https://lh4.googleusercontent.com/-moyzfFCbiRk/AAAAAAAAAAI/AAAAAAAAAAA/wxIn7ztGQfg/c-rp-mo-br100/photo.jpg','14567670160750071148',2046),('AIe9_BEuFX7PcAP2nNY_ju84FoFSpXohDOpJuOnXbZEb0xx7lnuxJIZMU_OdbkdVE8uWpdVJ__1i-zK45QSJdzEWKty_PdRU4lZq1vebBTcwHoG-2zzL1iQ','Very helpful, second time going treated with kindness. Made me feel comfortable.','2019-10-14 15:36:59.811000','2019-10-14 15:36:59.811000',5,'vincent espinosa','https://lh3.googleusercontent.com/-2-h3WW0zKTk/AAAAAAAAAAI/AAAAAAAAAAA/eKoFCZYJTwY/c-rp-mo-br100/photo.jpg','12541597562633926366',401),('AIe9_BEuFX7PcAP2nNY_ju84FoFSpZs6LBapEGhg4SUqKLkyQY_0Sk9Z74UcUcck1OPflY7ThvN4_0qXxTX1BLUq2q8tb-zezxGPzWUE3VtN7e4NL02EFbI','Awesome experience with Dr. Herbert, Remington, Laura, and Jeri! Very accommodating and understanding. Thank you.','2019-12-08 13:17:27.345000','2019-12-08 13:17:27.345000',5,'Sarah M','https://lh3.googleusercontent.com/-fYb3OqQGri4/AAAAAAAAAAI/AAAAAAAAAAA/lJ43tPjw1G4/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3038),('AIe9_BEuFX7PcAP2nNY_ju84FoFSQsdN8O2EGK7CV5Oo3Ck2uqYBS5354iDOTR4EXlyAGi-FH7og660sB_wwdpl3CESXS4JEhqd8O1Hpycu7T66EORvQi3s','A really clean facility with really nice staff. Literally no wait and everything went so smooth. My nurse was Dawn and she’s so attentive and nice! Dr Yusuf was also really kind and informative. Helped solve the issue very quickly. Everyone made me feel really comfortable. I’d recommend this location.','2019-07-18 14:47:05.905000','2019-07-18 14:47:05.905000',5,'Candace Gracia','https://lh4.googleusercontent.com/-G3NNSts-nrk/AAAAAAAAAAI/AAAAAAAAAAA/OKDwAwhxlGI/c-rp-mo-br100/photo.jpg','3511292162159714121',7245),('AIe9_BEuFX7PcAP2nNY_ju84FoFSSWSeIrYLUm7VwRBavgndfHZIzTSQOJFlLm5V8eQpzVzWo9OGzgL_L9PeOPgHJEooj4jnN18GvUaZrU9hsHJTwcdWOr4','everyone from the front desk to the doctor were awesome. Jocelyn took care of me and helped me understand everything great staff!','2019-01-14 23:30:29.043000','2019-01-14 23:30:29.043000',5,'Rodney Jr','https://lh5.googleusercontent.com/-YU8yKe8vLHk/AAAAAAAAAAI/AAAAAAAAAAA/9WvWuZoaCoA/c-rp-mo-br100/photo.jpg','14567670160750071148',1413),('AIe9_BEuFX7PcAP2nNY_ju84FoFStcXSHXc_VYLawso82ekEC82o3IxPKwe6H95L9_U6W_Lii4TN-0A9Q6E3z6LQzLrW6c599FGEE7Jolq60ISaC5QA7tjg','I am very satisfied with this ER. I went in for a lower back pain and hardly could walk. They took me inside in less than five minutes and their treatment was very professional. I am really impressed and I would give them 10 stars if I could. I mean, I was treated and in about an hour I was out and walking.\n\nThank you so much!\n\nYou guys are great!!!','2019-05-20 12:26:52.599000','2019-05-20 12:26:52.599000',5,'Alicia Figueroa','https://lh5.googleusercontent.com/-Y9vdlFSesxI/AAAAAAAAAAI/AAAAAAAAAAA/ttV7P8vebQ4/c-rp-mo-br100/photo.jpg','8918455867446117794',9140),('AIe9_BEuFX7PcAP2nNY_ju84FoFSTibgDxj-6l22MlX5FJ2alsINioHaA4aG0rgfM0cHCyIbLy6LWKhTG07SDaBBflbAfam9Ov69BXN1ZnifHjzSI6c9MZU','A few months back I was having pains and went to a hospital But they didn’t help me figure out what was going on \nI found them went in got attended really quick and took test and found what was wrong am thankful for their caring attitude and helping figure out my situation','2019-07-31 16:29:25.500000','2019-07-31 16:29:25.500000',5,'Yuli Hernandez','https://lh4.googleusercontent.com/-g1ymuDKl7bg/AAAAAAAAAAI/AAAAAAAAAAA/SKHGlN6THPs/c-rp-mo-br100/photo.jpg','14567670160750071148',1261),('AIe9_BEuFX7PcAP2nNY_ju84FoFSTTpzChjyLw1M6Rqlxc8ZDFoNf-vNdlhOwhhzoH0bHBdUFei12AZWfO66LwC4joO3nesIvwy1b846Id4APiclJaWVAv4','Johnny is such an excellent nurse. He\'s very attentive to my concerns and needs. He\'s the best!','2020-01-11 17:26:03.989000','2020-01-11 17:26:03.989000',5,'Samantha Sampilo','https://lh5.googleusercontent.com/-hpcmIPwl-Fw/AAAAAAAAAAI/AAAAAAAAAAA/DrTxZXQ0ZU8/c-rp-mo-br100/photo.jpg','14904078213800803294',13637),('AIe9_BEuFX7PcAP2nNY_ju84FoFSX2gfNzPBLDxbJf-8B_ThCNxkN71QlBiC4zFqnTy9SfsHdk7CXagPV1RZe4p54GR4RUWP1M_tOmcMZ17GNJNUfpHvvd4','Friendly and welcoming staff here at Signature Care Westchase!','2020-01-03 15:47:58.476000','2020-01-03 15:47:58.476000',5,'Deklon Smith','https://lh5.googleusercontent.com/-7kqaHGWIK90/AAAAAAAAAAI/AAAAAAAAAAA/6KcBlHwYmd0/c-rp-mo-br100/photo.jpg','12541597562633926366',260),('AIe9_BEuFX7PcAP2nNY_ju84FoFSy0wxP-LCDpQ3e7sVmEGKuqChQRhcQeVNXKdcBxmVPxAZ7zQDL_K0MPUMbeR3WwOE6JcJ5KLA95xl7KH_9kwoE_-E7vM','Excellent staff fast friendly service the doctor explained everything they were doing','2019-05-24 00:50:50.497000','2019-05-24 00:50:50.497000',5,'Karly Badgley','https://lh4.googleusercontent.com/-EdBIhUjGVME/AAAAAAAAAAI/AAAAAAAAAAA/N6RPqyhERXI/c-rp-mo-br100/photo.jpg','17898197009688164559',5726),('AIe9_BEuFX7PcAP2nNY_ju84FoFSygpON2sue0CUzcGquhoweizzzRTpJFM63-NAAaqlrXP_-8L4-rQG3YpD1c9zWSIMWmybdlQkSK7GaZ8iqcmaQ9SUqFU','Wonderful care. Staff very friendly and knowledgeable. Easy to register with Amy. Nikki was a wonderful nurse. \nDr. O\'Malley is very knowledgeable and has a great bedside manner.','2019-03-11 01:48:49.540000','2019-03-11 01:48:49.540000',5,'Robert Conn','https://lh6.googleusercontent.com/-u7nJMfqvIEE/AAAAAAAAAAI/AAAAAAAAAAA/r2aZ8pfZhIk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7-uZ067JV0ieejFsKPR630CLYNXc47Eyw4lCKlSAHbCELktvlBB2uC0a7RjcIn0HkfKpHs465Amm2YzaXBfyKuOWVGj4','Great service, clean facility and no wait time. Very happy with my experience!','2018-07-09 21:26:58.901000','2018-07-09 21:26:58.901000',5,'Hilary Bonilla','https://lh5.googleusercontent.com/-lYtKrIZ8zo8/AAAAAAAAAAI/AAAAAAAAAAA/mjkWK23pnfY/c-rp-mo-br100/photo.jpg','16590124370714063921',3807),('AIe9_BEUgL1r3GxZ6pSpn17DD2M72Dj3xgoSdxQaIylXYNQiPT16Are6ggBbkh_Ses-xYUjufhXImYD6DwYEuW64AY0T9SZVQaM2r1G5kYkuCpVvX_hmYfc','No wait at all. Staff is very friendly and experienced. Would definitely recommend.','2017-06-16 14:07:33.993000','2017-06-16 14:07:33.993000',5,'Hoan Huynh','https://lh6.googleusercontent.com/-DGkJHIOqqMY/AAAAAAAAAAI/AAAAAAAAAAA/UrL-k7M_0NM/c-rp-mo-br100/photo.jpg','8918455867446117794',9390),('AIe9_BEUgL1r3GxZ6pSpn17DD2M74fuIMLyhm0HJTiw_GFubQB4S5LSviPPrPmZ3EobgujrzbJgZSpUvMZFXJPM4Qc0ODqkvvJPCvPRsVjPb5cXcmDZnU1w','Went for COVID testing. They did a good job of keeping people distanced. Place was clean, staff was nice. Longest part of entire process was check in, which was understandable as they are overloaded right now. Would return','2020-07-09 19:16:42.709000','2020-07-09 19:16:42.709000',5,'Travis Colvin','https://lh3.googleusercontent.com/-UU9_83K0gUM/AAAAAAAAAAI/AAAAAAAAAAA/5Eery_zU764/c-rp-mo-ba2-br100/photo.jpg','2077061009497551125',22863),('AIe9_BEUgL1r3GxZ6pSpn17DD2M77PLbTGKPfIO4ndr5oq8EcqRHsKmm43aIzAU0L7yxC3yHiiU3pph7QHs9hLDgogabhqdgLi7ZhGLckEfCC5G-mkKDYnU','I had strep and thought I was dying! But the team that helped me made me feel relaxed and comfortable so the pain was not as bad. The best part is how close you guys are to my house and how fast I was in and out and no longer have any pain! And one extra touch is that I left late at night and the security officer walked me to my car to make sure I got home safe. I love SignatureCare!','2019-04-19 17:09:07.457000','2019-04-19 17:09:07.457000',5,'Brandie McGee','https://lh3.googleusercontent.com/-iUYrEDQJuPs/AAAAAAAAAAI/AAAAAAAAAAA/rP9fcpVa-QU/c-rp-mo-br100/photo.jpg','12541597562633926366',515),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7bJ9iNNHM6Ca8VeCwCyEMQ4zem0FVl9EOhFc1nZ40dTkgJSkapD2t3hr3K9Xzlx9gZExbUZEtMj-PIQ3jsg5S9IxWnCU','It was a great experience made me feel better and everyone was so kind','2019-01-15 01:02:03.555000','2019-01-15 01:02:03.555000',5,'Dorothy Tolbert','https://lh4.googleusercontent.com/-bSRGVVau6bc/AAAAAAAAAAI/AAAAAAAAAAA/_Gizq360b6A/c-rp-mo-br100/photo.jpg','14567670160750071148',1411),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7DlqOIC27VNDlpjA3v7SdyMf6NqbmTN8mgfzhHi9CAdm8YrAStDqjMRgFZ5ERv9uRwGCxeW3mRf1GXcNPg_BkfMgYIPU','Very quick and kind. Had warm blankets if you get cold and refreshments and TVs for while you wait for results!','2019-06-17 08:35:22.579000','2019-06-17 08:35:22.579000',5,'Ethan Ohl','https://lh4.googleusercontent.com/--X4d7vISyQM/AAAAAAAAAAI/AAAAAAAAAAA/8oDwZueu7CQ/c-rp-mo-br100/photo.jpg','2694018788013845459',6132),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7eBd2t5S_8Mtl615cey_VE1_8OclzIt4eYD3tKvInWWb4zJsLykllvpchFJrMom4cqJznsAGcV9cO18TZTBK4z5blVPg','Absolutely horrible! I came here a few years ago with a chief complaint of a prolonged cough with blood-tinged sputum. The doctors and nurses didn\'t even auscultate my lung or anything. He just diagnosed me with bronchitis and sent me on my merry way.','2020-07-24 16:12:21.958000','2020-07-24 16:12:21.958000',1,'Jessica Haynes','https://lh4.googleusercontent.com/-BWkuiocfIb0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclRy9BOQf6NnBpbKOcD81L_1YNzOw/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22068),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7EOEQ8-J9ljVRx8WlQhbRo6mJi-U6Vfsl7cxfAxtU9OPYKkIYm8NG8bRme2FTW09WEk8VE2QQ9vLt_X55gYCDJ6ZrgoY','Lucas, Kim, kimmie,and Dr Ashbrook was excellent with my wife. They made sure that she was feeling better.','2020-02-04 15:40:30.580000','2020-02-04 15:40:30.580000',5,'Oliver Webster','https://lh5.googleusercontent.com/-PzJUoZpICow/AAAAAAAAAAI/AAAAAAAAAAA/NK9k4YV-Qlw/c-rp-mo-br100/photo.jpg','3272657195432704501',14371),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7fm5NvAQ4YD7jz6diWpDLILbpAG6yF_Kx85YTI8DEu2qG8Sh7kk6pPm1RForejpTkKwGNqMf8hDrrMtpHVXeVvNF_q7Q','Good service and fast. Very nice nurse and receptionist. Doc was good as well.','2019-09-21 20:30:41.184000','2019-09-21 20:30:41.184000',5,'Ernesto Tijerina','https://lh5.googleusercontent.com/-tGTVu-e_jxA/AAAAAAAAAAI/AAAAAAAAAAA/xkwSwB99XHQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8134),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7g_wW4bO857ua8RCkkzKWSkKSfdrM2ab731i8ANJaJrPHri0--CzfdGoA_W1dFXQCOuPqheF4795rIPCtbJWB5LxUeCw',NULL,'2016-12-28 18:59:54.956000','2016-12-28 18:59:54.956000',5,'Raisa Kirksey','https://lh6.googleusercontent.com/-ut25IWOuOsg/AAAAAAAAAAI/AAAAAAAAAAA/2MSFK0vTaZw/c-rp-mo-br100/photo.jpg','17394740196501090048',5144),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7gQnD_Ngz2l0kMhv4ehm_b2LJpfjUo_3JfkABZe7yhRzRemWaoX1GiGwTO3HUC331EwbTzZsyLWy1RqAo8fTqiI5591M','Great Experience with Dr. Morrical, Nurse Irving and Holly the tech. They were friendly and made us feel at home.','2019-09-16 00:07:57.768000','2019-09-16 00:07:57.768000',5,'shelle taylor','https://lh6.googleusercontent.com/-XX333vrzwW0/AAAAAAAAAAI/AAAAAAAAAAA/bEYBEFs49s8/c-rp-mo-br100/photo.jpg','12541597562633926366',421),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7j7o7fh_5svVgUt6MPCcBn-IOuA1rVjy_VP0g6LEPoAQm0egtWAAMS98THy1eS1wKn5JN68e8iidOfdFgV156QziGhSg','So, I was not there for myself. A friend of mine had to come in after getting a cut on his face, deep and long enough to require stitches. They got him in quickly and I could see how clean the place was. The staff was very kind, giving him calming words since he was nervous with needles. They even joked with him for comfort. They were efficient in their work. Seriously, they are all awesome. While we all hope it is not needed, I would come here if I am hurt.','2019-07-04 01:02:29.637000','2019-07-04 01:02:29.637000',5,'Jamie Nolt','https://lh4.googleusercontent.com/-Mg-4TZAd3zs/AAAAAAAAAAI/AAAAAAAAAAA/cFxl7J1gX9Y/c-rp-mo-br100/photo.jpg','2694018788013845459',6122),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7kayKNklJG654Kl5COuA-5X2ja4VphnFhlnaawkAOOMVAobW96VVrMYCvQ1yJCdeIjDJfG6LzvIO-S7zWUn5VuTyk-r8','The staff is excellent here which is why I gave them 2 stars, but my problem stems from corporate offices... I got an antibody test done a week ago after being exposed to COVID-19 and was told my results would be back in \"2-5 days\" and to \"call if there\'s any problems.\" After day 4, I started to get a feeling that maybe my info wasn\'t put in correctly and my test results were just floating around in the system which is why I haven\'t heard anything via phone/email/labcorp portal, so I started to reach out. First I tried via phone. While I was there in the waiting room, the phone rang constantly with no one answering it, but I didn\'t think anything of it until now. I realize they just aren\'t answering phone calls at this time, but are still instructing patients to call? There isn\'t even an alternate phone number listed on any of the paperwork I received. I then tried email with no luck, so I started to reach out via social media. I hate being this person, butI I honestly feel like I have no choice. The social media manager was the only person I talked to who was understanding and tried to push me through to customer service who simply said \"I can\'t help you.\" Never had I asked for a HIPPA violation, but just some information on how I can get help with my problem. I hoped they could pass my info along, and the facility could contact me, but nope! I completely understand and sympathize with health care professionals during this pandemic, don\'t get me wrong, but how this situation has been handled is unprofessional. My suggestion would be for them to put in voicemail services and have a designated person answering triaged voicemails once an hour. I honestly believe my rapid test and antibody tests were scams at this point and have demanded a refund so I can go get my test done somewhere else. I\'ve heard of Spectracell giving results back in hours, so they will be who I end up going to as I should\'ve done in the first place. Do not come here for anything COVID-19 related.','2020-06-20 17:28:36.633000','2020-06-20 17:28:36.633000',2,'Micaela LaPeer','https://lh5.googleusercontent.com/-lBraICUa40k/AAAAAAAAAAI/AAAAAAAAAAA/-0TkEBSGnAE/c-rp-mo-br100/photo.jpg','3511292162159714121',21145),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7krUop9Rg_8c8KE4NIz9Rou_dDdBjRZsPfFBxcbcssbBBi7rG95-3IpKjqej_J_P8KYl8kymW19gydQZKW00LNQYxZ8Y','The service and staff was amazing...very warm and helpful!','2019-11-12 06:40:20.450000','2019-11-12 06:40:20.450000',5,'Lizzie Lou','https://lh4.googleusercontent.com/-LjfBz1LT_UM/AAAAAAAAAAI/AAAAAAAAAAA/CxltemrLjC0/c-rp-mo-br100/photo.jpg','14567670160750071148',1193),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7LbBszQ_zSTGwXsLFjCOcDNFSzj6xxkbTCu6xeyrFOT2J-wYJwc7p35DAJZ8FXmJny0hDwOIWch-QKxxvyYVTbQZ0jCE',NULL,'2018-12-03 04:13:28.757000','2018-12-03 04:13:28.757000',5,'Leslie Spangler','https://lh4.googleusercontent.com/-eMz65HDb0vM/AAAAAAAAAAI/AAAAAAAAAAA/Gu3EB4RRY2Y/c-rp-mo-br100/photo.jpg','8626688543755174284',8635),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7nQPGUQf2bkH5i8utwtIpSBW8HBhxichj5KEKzTad42w_VWI5aUXhrikFPT21lvRgKj2NCizoJO87q_97vE3ZTEnGMLM','Took my husband in for care due to a head injury and he received excellent care. He was seen by the staff within 10 minutes of arrival. The staff were very friendly, attentive and excellent in making him feel comfortable. The Dr. was VERY personable and completely explained everything to us. \n\nThis is the 2nd time I have taken a family member to this location and each time was a great experience.','2017-08-15 09:14:03.320000','2017-08-15 09:14:03.320000',5,'Terri Johnson','https://lh3.googleusercontent.com/-MUeuLWUUz8Y/AAAAAAAAAAI/AAAAAAAAAAA/eDhFTcYQmZ8/c-rp-mo-br100/photo.jpg','17394740196501090048',4994),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7QgRrUp-LQkGurX4qOnHYgcHv6zGtyaWAU05CbyOKjdvNDpufyCuOo9R5cUz1Zs5U-lrOf7JxWsosVTd2oci17WUSLkc','Best place to go for emergency care. Know waiting staff very friendly and professional. Love this place.','2019-08-01 11:58:18.036000','2019-08-01 11:58:18.036000',5,'barbara watt','https://lh3.googleusercontent.com/-KlwXhCkIk0g/AAAAAAAAAAI/AAAAAAAAAAA/CqhQIqWXBJk/c-rp-mo-br100/photo.jpg','17394740196501090048',4621),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7qLsVCtkIFt7rD7N2dfGCYN6NRgtfbQtbJQ8-MD9X8iHsevGi-Sd2yy_RqhvKZheaAvuaausClbr-Jnmx5pKn4MqC0yc','Very nice people, the help was right on time. Very fast service and all. Thanks to all the staff. They all worked together as a team','2019-03-22 04:21:52.596000','2019-03-22 04:21:52.596000',5,'Aaron Jamal Purvis-Moore','https://lh4.googleusercontent.com/-J1i7iSNz5tY/AAAAAAAAAAI/AAAAAAAAAAA/Vy2foEora6U/c-rp-mo-br100/photo.jpg','17898197009688164559',5798),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7RraolVo7fDnJZ_L2VBq-QOlxZ8riHgGn00SsL9HugJYwf1BYtaRZZk_gXSLeSBff6muBBNokG_z8WUZX5mSo7ekdJiQ','Mercy was great host','2017-03-04 21:05:31.938000','2017-03-04 21:05:31.938000',5,'Dymond Hanks','https://lh4.googleusercontent.com/-RbgnUNNxmFI/AAAAAAAAAAI/AAAAAAAAAAA/0qEuvHDsbrQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5101),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7T2zMbJtEwkLQFUllEjqYcnef7Q2erc-6wTieHZoHgI1m5OaRdvA4uKhmpoZIkAHb4vVKMkklng1fmq7VDXvAMkX2XZQ','The dr and staff were absolutely amazing. I give this facility 5 stars!','2019-05-06 16:56:10.277000','2019-05-06 16:56:10.277000',5,'The Next Level of Bliss','https://lh3.googleusercontent.com/-5PMd087oNX8/AAAAAAAAAAI/AAAAAAAAAAA/kr3AzbdNtgo/c-rp-mo-br100/photo.jpg','16891069708558046635',4285),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7t50rgSHZNn9L-W23NTxVOCQ_JtnOZLrWNjtWayV4JTJG0pmc66N2qec6Ky8K9eZPa5aGvjS-BG7Rk5GDm0IOd8OnZbQ','Awesome . The people here are the nicest ..','2019-11-10 15:39:09.589000','2019-11-10 15:39:09.589000',5,'Skoobs3082 Rubio','https://lh4.googleusercontent.com/-w6cuXcvvjP8/AAAAAAAAAAI/AAAAAAAAAAA/XGZx4L38iyk/c-rp-mo-br100/photo.jpg','13486358490203335051',747),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7XLU8Rnjmt1pJEtV2cPvg8_eiwbdXsSYRGdp_bMRz5K_MbEvidAFrm5p9FWDcoFUl8QuHQaR2DxO-ecgvd5lTU6O8e7M','From out of town and received the best care from Dr Tran, Blake, Delicia and Tech Son Le. I wish we had these facilities in Florida.\n\nThank you all so much! 😊','2019-11-14 23:59:17.059000','2019-11-14 23:59:17.059000',5,'Kim Pittman','https://lh5.googleusercontent.com/-xWcbMh3S3Cs/AAAAAAAAAAI/AAAAAAAAAAA/zZDxWLJo7vo/c-rp-mo-br100/photo.jpg','8679688254631342173',8734),('AIe9_BEUgL1r3GxZ6pSpn17DD2M7ZhDNGtTCXtwWpo2-4US0toVnUig3OoX1x1FoHBaMNxmx1M3gP8LMMy0obcdFJLQawvXEHUlhUMBanYosO9OXWRskOPU','The staff was very friendly I was greeted by Rebecca v and the service was quick I recommend coming here if you can’t get to your local doctor. Thank you to the nurse Remington and the er tech Rebecca w.','2019-12-16 05:04:17.104000','2019-12-16 05:04:17.104000',5,'Breanna peterson','https://lh5.googleusercontent.com/-nhzU6sZHKTc/AAAAAAAAAAI/AAAAAAAAAAA/bNFojCVUHOY/c-rp-mo-br100/photo.jpg','16590124370714063921',3020),('AIe9_BEV1VP1woYvuPRixSBHlWg4__bmLsIozEzDgV9YKdwNPeQmvFOXeGXgT-O3cb9883f24yryYrkCGtoVMUIjgnsQ5TPukJwuiaiUsZb9hFRNKmT-FCI','Everyone we spoke with was kind and responsive, great care. Brad, JR, Itza, and Dr. Vakey were awesome!','2019-07-12 14:03:19.960000','2019-07-12 14:03:19.960000',5,'Kayla Powell','https://lh6.googleusercontent.com/-w5TtHqc1RIg/AAAAAAAAAAI/AAAAAAAAAAA/V-RzMSpkxpE/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3301),('AIe9_BEV1VP1woYvuPRixSBHlWg4_hiPEDpaaqNxcyXCYtjUR54wEOq-sYhwcIVwQuDyHzUUcTvsg9kTrAA2Cyz4p-r4M7MwSa1b2AL1s12Io14sqHEYcQo','The staff was incredibly caring and understanding. They went out of their way to make sure we felt welcomed and cared for from the time we were greeted by the receptionist to seeing the doctor. I’d definitely recommend going here for medical service.','2017-10-09 12:22:46.390000','2017-10-09 12:22:46.390000',5,'Michael Dykes','https://lh3.googleusercontent.com/-aei065YLURc/AAAAAAAAAAI/AAAAAAAAAAA/y_QfObV2Eyg/c-rp-mo-br100/photo.jpg','3511292162159714121',7781),('AIe9_BEV1VP1woYvuPRixSBHlWg4_Q_snKq2_zKuMKGYKVzyOUbuZNOgBn3XZIycLCuZVjYo58IlEzBI_fwhY-cwqR0bcb9CTDTrn-zuMmzDjqNH60LeANg','Was a fast and easy visit was in and out would definitely come back','2019-10-10 05:05:30.085000','2019-10-10 05:05:30.085000',5,'KeKe 50','https://lh6.googleusercontent.com/-ZhjLGxJJUR4/AAAAAAAAAAI/AAAAAAAAAAA/kKredHugE4U/c-rp-mo-br100/photo.jpg','8918455867446117794',9059),('AIe9_BEV1VP1woYvuPRixSBHlWg4_TmF7nKgLmaK23tMm0IOEKPG7xSomHTBfLmsjdsyZLbX4DXspcW8mm54DEZ-Y65xcYfq3iblIHGcjrqaWz0wd4aHi5o','I just left there today. In/out. Gone. They gave me a folder with my condition and causes in it and printed scripts...took a bit to do that but service overall good. I\'ll report back if the meds he gave me don\'t work...','2018-02-18 15:38:36.977000','2018-02-18 15:38:36.977000',5,'Denyce Sanders','https://lh3.googleusercontent.com/-fZ-PDD_lhyw/AAAAAAAAAAI/AAAAAAAAAAA/kSQTBwzZ5jM/c-rp-mo-br100/photo.jpg','14904078213800803294',2281),('AIe9_BEV1VP1woYvuPRixSBHlWg4_UKdA7rDM4ATd-r09Ohb9LkVr9_BAB1wJqoHLlkPI8cI5ojpYecHfFB_Cs6tqFcXwsuTqeFx_hUOBUCdJlgmVMI3trg',NULL,'2020-03-17 15:26:48.720000','2020-03-17 15:26:48.720000',5,'Kari Marshall','https://lh6.googleusercontent.com/-BdkfqXX-oQM/AAAAAAAAAAI/AAAAAAAAAAA/QJN0xmliCSU/c-rp-mo-br100/photo.jpg','14748677429039074158',20964),('AIe9_BEV1VP1woYvuPRixSBHlWg4-2I4fLEsVt8YnKcDfa_dAhFrRpIrgNH2X_S18mQllAuSe0k4YtrlxZ9VvxvUyK5BYqOEakRIHXhzuVxf3fS7hWfk8k4','The entire staff was awesome!! Very clean & everyone was friendly & helpful. Dr. Chukwuma Nurse Shelley, Heather G, Danny, & Tanishia W are THE BEST!!! Highly Recommended','2019-05-10 00:12:45.186000','2019-05-10 00:12:45.186000',5,'destiny jackson','https://lh6.googleusercontent.com/-PEa4kGiHTtc/AAAAAAAAAAI/AAAAAAAAAAA/4-MHKIoPOtE/c-rp-mo-br100/photo.jpg','17898197009688164559',5748),('AIe9_BEV1VP1woYvuPRixSBHlWg4-KgKSxIOS8HKLlFXTRGfmqYTrcYKthvrYs5Wdf59OSq5L2GTli6iiLZXJrIS8seqGeI3MG0f60T1e3UOh0Yv1b9iY8o','Came here on a Friday night since I wasn’t feeling well. Vanessa G at the front was very nice and helpful. Once I was in the patient room I was greeted by the nurse Nicole G. And rad tech Dustin. They were both very nice and accommodating. After a few questions, they left and I was seen by Dr. Patel. He was very thorough in asking questions and explaining what I may have. I would definitely recommend this urgent care! It’s very nice and clean. They have warm blankets! They also have some snacks and drinks in the lobby area.','2020-01-18 03:59:02.355000','2020-01-18 03:59:02.355000',5,'Yusra Mumtaz','https://lh4.googleusercontent.com/-5Er1DF1hHDc/AAAAAAAAAAI/AAAAAAAAAAA/OC0eiu_SFO8/c-rp-mo-br100/photo.jpg','14567670160750071148',10033),('AIe9_BEV1VP1woYvuPRixSBHlWg4-y9cZrn7MS1Q2RwCN55LJdyoz8tQGlWS2SMRv7RXcsku5lJYLyCfYEt03QW8O6NR678AQVk1YDsmubS8_9rV1lh5RdQ','(Translated by Google) Dr cavazos\nDelight\nDuke\nWaldo\n\n(Original)\nDr Cavazos \nDelicia\nDuke\nWaldo','2020-02-05 17:55:33.852000','2020-02-05 17:55:33.852000',5,'Tanner Justice','https://lh5.googleusercontent.com/-FYEMvSikdno/AAAAAAAAAAI/AAAAAAAAAAA/91jgK2_Y-FM/c-rp-mo-br100/photo.jpg','8679688254631342173',14759),('AIe9_BEV1VP1woYvuPRixSBHlWg40-IEEKH4avLsea7V7VAA1r61JmgjsCwrydD2uVoBKB-i7WBN3CKU-oor92Clo0dT0awVRxLKaPJCmOfYcBSqBZn02gU','Everyone that I encountered was very nice and did everything possible to make my son comfortable. Dr. O’Malley made sure to provide me with all the information about my son and medications. Alvean A, Marcus B and Jocelyn A. we’re very accommodating throughout the entire visit!','2019-05-08 16:25:50.967000','2019-05-08 16:25:50.967000',5,'Cerissa Triggs','https://lh6.googleusercontent.com/-Qnlfwj2AYno/AAAAAAAAAAI/AAAAAAAAAAA/ET9cMG9LuH8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEV1VP1woYvuPRixSBHlWg400Vka4Bie3OqvPy6LpiTmw4sQzuABoqH7P6QjdtZ9WX7ItdWflu3eSgfL82vAHiuxQcj3NC2JCLjcBton4BOdfpAF3E','We had the best experience at Signature Care in Paris with our little boy! Ashley B. at registration was so welcoming and friendly. The facility was very clean and accommodating. Our nurse, Erica, and the tech, Ashley K, were so nice. Erica made sure we understood everything the doctor said and was so great with the kids! I highly recommend them, and we will definitely be back!!','2019-08-18 20:09:01.387000','2019-08-18 20:09:01.387000',5,'sanorwood10','https://lh5.googleusercontent.com/-6WWAvBzCxZI/AAAAAAAAAAI/AAAAAAAAAAA/B4ej2khGBP8/c-rp-mo-br100/photo.jpg','8626688543755174284',14683),('AIe9_BEV1VP1woYvuPRixSBHlWg405Iy_2fepO29OqUnGwuFiR6XWkSkQ4mFHEjbz6WUhjYI_EFhERNYNHk87QHFGvlPhkyi-aQwvS_4odbYnoB72b1BKJI','Tricia, Alvean, and Jesus were great! Dr. Mauldin our hero! It was my second time back this week with my 7 year old son. They were very informative and courteous the entire visit. Truly a pleasure at times like these. They will always be my first choice when having to attend the ER . Thank you!','2019-04-04 15:13:47.141000','2019-04-04 15:13:47.141000',5,'Dee Ayoola','https://lh6.googleusercontent.com/-IZFqbdYHJio/AAAAAAAAAAI/AAAAAAAAAAA/SelPkJminx8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEV1VP1woYvuPRixSBHlWg40B92LjW-Lmy6zoiBuYak6mXs-BaZPa_VAmuOinqXP_AugIcksUxm5FqXTYYbdr562LMF5lzwe-yL-gJO2neMwF6fmxY','I absolutely love the level of service and care at SignatureCare Mission Bend location! Dr. Edwards is the best; she\'s very thorough, patient, sits down and actually talk/explains test results, etc., to you. This is my 2nd visit to this location in over a year! The nurses, Selina & Eda was very patient with me during the examining process. Front desk receptionist, Keera is very nice and explains billing, insurance as well as answer any questions you may have. Tech, Ralph and CT-Scan Janet stayed with me every step of the way during the entire process. I came home feeling much better than when I arrived at SignatureCare! You will feel very comfortable going here for your urgent health care needs. Everyone is very professional! The best part...no waiting!','2019-08-18 00:09:32.963000','2019-08-18 00:09:32.963000',5,'Vickie Davis','https://lh6.googleusercontent.com/-SLFTxJzmmkI/AAAAAAAAAAI/AAAAAAAAAAA/UKwWyuNSvGU/c-rp-mo-br100/photo.jpg','17394740196501090048',4616),('AIe9_BEV1VP1woYvuPRixSBHlWg40eJk03bX_xssIDgqEQxfaCyxS3ucUzDHuBdGT-vXQdqovAGeRhtY2_yAhoWneNzSw1_47c0fnHtfntlN1HfjI7YyRas','Very helpful and patient! I was helped by DR: Kimball, nurses Gabriel and Remington, ER tech Patrick, and RAD tech Morgan.','2020-02-02 18:10:47.402000','2020-02-02 18:10:47.402000',5,'Becca Curry','https://lh6.googleusercontent.com/-fYRcrtnWGJk/AAAAAAAAAAI/AAAAAAAAAAA/ZLLGgUzq8yQ/c-rp-mo-br100/photo.jpg','16590124370714063921',10425),('AIe9_BEV1VP1woYvuPRixSBHlWg40JHuMjBbvMUl11kUMwzdqJyuz1Tilgo453bgQ-KFrQc6YKUHkAK__wdg9j6xM6RbHeSpkvmCzqRa6opYMs46a0R_lwc','Had great time with Natalie the nurse, and Dr.Vakey very kind and considerate, took really great care of my friend!','2018-10-29 02:44:59.347000','2018-10-29 02:44:59.347000',5,'Toni Perez','https://lh6.googleusercontent.com/-Pz5Uo17Vv3A/AAAAAAAAAAI/AAAAAAAAAAA/HtyCqpBSm18/c-rp-mo-br100/photo.jpg','16590124370714063921',3684),('AIe9_BEV1VP1woYvuPRixSBHlWg40nhZoRbtu8G3pfiNrVnsqlH853xiOzz4dwtm7R3_tcJwO2VZj36bWQn0qyLIiNPAKaYoxS5lNe6479Ofl4zTS2YvHpY','Thank you Dr. Jaber, Chantel, Laura, Daniel and Tanishia for the professional service. The entire staff was friendly and prompt. The facility is top notch. Thank you all!','2019-10-21 05:18:56.644000','2019-10-21 05:18:56.644000',5,'Carmen Gonzales','https://lh5.googleusercontent.com/-46YAcZEbzBE/AAAAAAAAAAI/AAAAAAAAAAA/uzccTUfF7Gk/c-rp-mo-br100/photo.jpg','17898197009688164559',5495),('AIe9_BEV1VP1woYvuPRixSBHlWg40o0cVcQM4rUsHqMPIXYmoFG7X1dgHE2gyKBgeaaevJXZMicRrkkmcQ0SGqv8-dTX_1SR8Jdi2kWQrajEvVfCcGC2PBI','Had a great experience. Was in and out super fast and the staff was very friendly especially Anthony, RN, Nathalie-tech, and Dr. Jaber!','2019-03-25 18:33:10.108000','2019-03-25 18:33:10.108000',5,'Haley Edwards','https://lh3.googleusercontent.com/-yPFLPizJoXI/AAAAAAAAAAI/AAAAAAAAAAA/q7mu0UW58ZY/c-rp-mo-br100/photo.jpg','16590124370714063921',3483),('AIe9_BEV1VP1woYvuPRixSBHlWg415sV30iiC-hiD8_4mn2UJjWxfAXdpVoPyu0nprndPMQlj4XG1ZVx-f5rZVU-hMlMqZQvfSva9OuIyMZFjh6XEFnSRbY',NULL,'2018-12-10 16:57:29.506000','2018-12-10 16:57:29.506000',5,'Trevor Brown','https://lh3.googleusercontent.com/-9tEUZ1Vjqqc/AAAAAAAAAAI/AAAAAAAAAAA/lYVRvpPUSxg/c-rp-mo-br100/photo.jpg','16590124370714063921',3617),('AIe9_BEV1VP1woYvuPRixSBHlWg417YgHdXNg_InBtKiK11S2b2F5Jqm6hJHm4OE82SjtBuh_Dcd_qUOIbkQeaZ_Bb1XqSbS6aOohrs21qv52-41GLjcCvo','I definitely recommend Signature Care. Very friendly and helpful staff. They are so fast and no wait time. Gabe was so helpful and full of information! Natalie and Rebecca V were so sweet and bubbly. I had a wonderful experience.','2020-03-01 05:54:19.283000','2020-03-01 05:54:19.283000',5,'Autumn Johnson','https://lh5.googleusercontent.com/-mxikF8j9OOk/AAAAAAAAAAI/AAAAAAAAAAA/cUu3NIdhsfs/c-rp-mo-br100/photo.jpg','16590124370714063921',13814),('AIe9_BEV1VP1woYvuPRixSBHlWg41MJD0wdBQw4lz5kXG8yGLb5t_dGvAEppCQY2F9_4Yb1XtoxS__V0IKg6gaNx3InWf5Qge5jEPDKgwN_MyzwIDhMtkao','The best Emergency Center in our opinion! Everyone was very kind from the moment we walked in. Sindy was so helpful and patient with us! Dr. Boester took his time to explain everything and we liked that very much. The nurses Vivieanne and Larhanda were amazing! Thank you!!','2019-12-21 17:50:31.056000','2019-12-21 17:50:31.056000',5,'Richard','https://lh4.googleusercontent.com/-AKJGlnaTh9I/AAAAAAAAAAI/AAAAAAAAAAA/h2v3LJYa8iE/c-rp-mo-br100/photo.jpg','14567670160750071148',1170),('AIe9_BEV1VP1woYvuPRixSBHlWg41O70epmrnwdUmx5dNGq0-jknw3dmfY-xaEJ9KnJXmEV0xorGIIjl9tuKd801-n7XygyetWc6iWpGuMX878bYydCFaTM','The staff are very friendly and the doctors are very informative','2016-09-04 01:46:00.967000','2016-09-04 01:46:00.967000',5,'KimB','https://lh4.googleusercontent.com/-bMZSFhUjZyk/AAAAAAAAAAI/AAAAAAAAAAA/dylir80rvGc/c-rp-mo-br100/photo.jpg','17394740196501090048',5209),('AIe9_BEV1VP1woYvuPRixSBHlWg41om3wIyyJNaIEbBfcrhfRYHU_Y9gfcrDBQ_KCLyqz_m1jQE5ddg3jN_logb2kJqdtVpMzBmI1Z7Ck8REss-4d6tho-c','Thanks for the care','2016-10-04 17:14:05.108000','2016-10-04 17:14:05.108000',4,'JO MENDOZA','https://lh4.googleusercontent.com/-rOUOsTQXLJI/AAAAAAAAAAI/AAAAAAAAAAA/gN7R1bntfIM/c-rp-mo-br100/photo.jpg','17394740196501090048',5191),('AIe9_BEV1VP1woYvuPRixSBHlWg41x19tQ8eg7VC978Tu_3PFkZQny52OlpOorfsAmSzLccSvtls2QYJGDnHr0ZdiT008JvUJr8jRVM3DXZpGCn8mwf0tnY','I was welcomed very fast and friendly by Naomi, Gabe and Remington were excellent and overall had a quick but very helpful time with amazing people! Dr. Wang helped me and you could tell he knew what he was talking about! Natalie and Morgan were awesome! Would definitely recommend!','2019-06-23 00:30:09.618000','2019-06-23 00:30:09.618000',5,'Josey Moreau','https://lh3.googleusercontent.com/-jnLUO_tJTVs/AAAAAAAAAAI/AAAAAAAAAAA/Ev_OkGNkots/c-rp-mo-br100/photo.jpg','16590124370714063921',3339),('AIe9_BEV1VP1woYvuPRixSBHlWg426H8y99BQBjYXqRuPSvRaCbAoXcgiYqnebdkRYr-9dkrzl8FbaeeVp1TuDA7DZRmbnPjb1lXdTIVR-cktA1cgNTzlUQ','Fast service, no wait time. Awesome and friendly staff. ','2017-04-23 04:54:50.391000','2017-04-23 04:54:50.391000',5,'Vaibhav Patel','https://lh6.googleusercontent.com/-13lQwhxDCF8/AAAAAAAAAAI/AAAAAAAAAAA/CpfQbN-cufo/c-rp-mo-br100/photo.jpg','17394740196501090048',5073),('AIe9_BEV1VP1woYvuPRixSBHlWg42dv2cTUrh-JIboxXtReko2oGsApj5zyZnftZXez35j1LMJ3MeGTnNFH8jQ4L_awj9lqB5K620myfxHrJGuCWmgd2gC4','Great staff! The customer service was top notch. They were very attentive and it didn\'t hurt that they were good looking as well.','2016-09-21 21:25:05.617000','2016-09-21 21:25:05.617000',5,'Doug Johnson','https://lh6.googleusercontent.com/-yDo9qyS9E_Y/AAAAAAAAAAI/AAAAAAAAAAA/9HQNHiiPtjk/c-rp-mo-br100/photo.jpg','14567670160750071148',1968),('AIe9_BEV1VP1woYvuPRixSBHlWg42FCWH3P9-39ix97J7h3xkoFxxF9y6VJSDiIIXpmO9GJj9hbTI_zD6kX4siGTE8AZ8G5DgxphMf2wfkZPxsvxlNxylKk','I was always able to talk to someone on the phone. Speedy & helpful.','2020-07-19 20:45:01.818000','2020-07-19 20:45:01.818000',5,'Alex Parsons','https://lh3.googleusercontent.com/-Fd8MCAh3ZsA/AAAAAAAAAAI/AAAAAAAAAAA/Nzzu3dndQiE/c-rp-mo-br100/photo.jpg','14748677429039074158',21694),('AIe9_BEV1VP1woYvuPRixSBHlWg42FZojzBEKNdcKaOKX6-HlYclRB8Bqhb__COPjPD8pOxK5gf-BXY1fofRf_GGfBAs-t3TloXyVIXk_KZxUoqOWQ9_UAY','Dr Pham, Jocelyn, Erika, Jordan and Ezequiel were great! Timing was great and definitely recommend!','2019-12-13 18:16:12.956000','2019-12-13 18:16:12.956000',5,'Darline Davis','https://lh4.googleusercontent.com/-fkurB2e2kEM/AAAAAAAAAAI/AAAAAAAAAAA/9-m4L-Rs18A/c-rp-mo-br100/photo.jpg','16389487648212004696',2546),('AIe9_BEV1VP1woYvuPRixSBHlWg42QKA994Qf3GAU_xbuwPcLHLvrrcUQ05M0I5wNQTr1rDb1Ir_9d0RU7z93ieqC-W_xUAs22XPi1Uni8lwYNs8umocavA','They are very kind and get you taken care of as soon as you get there.','2017-10-03 13:39:01.794000','2017-10-03 13:39:01.794000',5,'Magdalena Pizana','https://lh4.googleusercontent.com/-7wYrutsCPmg/AAAAAAAAAAI/AAAAAAAAAAA/LHNl7sMSdH0/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4960),('AIe9_BEV1VP1woYvuPRixSBHlWg42rq6zdS9-czE0rqCHieiSpsWSkog7mBk-9AFBoDcNUf1yb3NdqUj_81HYvhgrNxhArXj1U2ycApr73ZJaIKbrFufuJA','I was impressed by both the reception and the facilities and staff. \nVery welcoming and efficient. \nPlease see Brenda at the reception Nd she will set you right.','2019-06-02 19:19:45.197000','2019-06-02 19:19:45.197000',5,'Jan Erik Johansson','https://lh5.googleusercontent.com/-bKLGaI3PgEY/AAAAAAAAAAI/AAAAAAAAAAA/nCfedFPd618/c-rp-mo-br100/photo.jpg','3511292162159714121',7313),('AIe9_BEV1VP1woYvuPRixSBHlWg42Rygf_WrixnIsQ-nUP1UuYFL2xiO2w9Uv2Szb4u1jW9u4VoS5_f7K1WHPQh4vIrEH7XSpC3uczrJB-D1Q0vxoQk-uuw','Everything about this place is great from Tanishia at the front desk to the doctors and nurses level of care! Laura is THE BEST rad tech I have ever met! Even with them being super busy I was never neglected in my care and pain. This is my first time here and if I need emergency care again I\'ll be back at my first choice!','2019-06-19 13:19:45.640000','2019-06-19 13:19:45.640000',5,'Be\'shup Rae','https://lh4.googleusercontent.com/-zXN83DlnkFE/AAAAAAAAAAI/AAAAAAAAAAA/woQqrdkD8UU/c-rp-mo-br100/photo.jpg','17898197009688164559',5689),('AIe9_BEV1VP1woYvuPRixSBHlWg42UKYFZheKX35c03DMPIkt2tyeHEcVMMAKXuXcoSe0q6zvKv85zxOwbjDm_PkDE18rVJDKYnnkQM2nDm58QBHsfGZ4Js','Great place very quick and friendly staff','2019-05-19 04:03:06.663000','2019-05-19 04:03:06.663000',5,'Martin De La Riva','https://lh5.googleusercontent.com/-sFur7l5mR0I/AAAAAAAAAAI/AAAAAAAAAAA/mSBx24W5Ga4/c-rp-mo-br100/photo.jpg','2694018788013845459',6153),('AIe9_BEV1VP1woYvuPRixSBHlWg43EzHZBlukfvj_jIamIzJIwR8oG1dKxGPrb0j2KQDbf1WVlUHJy-cmTTcswm3hWLzb7Fu0hZpKrLIGjz-dhcbzXZodMQ','The staff and Dr\'s were all very caring....I would recommend this er to anyone ...','2016-11-15 03:42:58.988000','2016-11-15 03:42:58.988000',5,'Veronica Martinez','https://lh5.googleusercontent.com/-9zplZqsaoB0/AAAAAAAAAAI/AAAAAAAAAAA/uwf1lI1qewQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5168),('AIe9_BEV1VP1woYvuPRixSBHlWg43yUyfJibHWf_NF2J5BB4f8btq_auLn9D4wa-GhRCDgih3qfpyXIfj2QyjBLfmI4IGy84ZVdaHTxQLDT3deWpjxNZmQo',NULL,'2016-11-04 01:14:15.365000','2016-11-04 01:14:15.365000',1,'Stephen','https://lh6.googleusercontent.com/-qTURiTwjHm8/AAAAAAAAAAI/AAAAAAAAAAA/5lT6T3K2KLU/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',1135),('AIe9_BEV1VP1woYvuPRixSBHlWg443fbFbtjHxAYOMTTo-NA5Ks-q1TgXl-QQxeP3WTPkr2X56QdC1vNFbIs4ZJsoa1uqkVkc2YAmmZjDRtlEOcvy_TE6Q0','Excellent!','2017-01-25 21:48:15.254000','2017-01-25 21:48:15.254000',5,'redmonkey redmonkey','https://lh4.googleusercontent.com/-VxwLiHKAwWY/AAAAAAAAAAI/AAAAAAAAAAA/JBbONhdf08Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7893),('AIe9_BEV1VP1woYvuPRixSBHlWg443gYt5dQp4L8KgJGjLpjO5JyRSnIkL6BnpTcMn0nqSwNu6hH-0OftdPKeVBsnM0bSTZb99Bbq6OAaApgc_5JTYLxW6g','Very nice staff, Rebecca, Kelly and Kathleen took great care of me!','2017-08-29 01:26:25.600000','2017-08-29 01:26:25.600000',5,'Abbie Owens','https://lh5.googleusercontent.com/-ohhRoP-SWAk/AAAAAAAAAAI/AAAAAAAAAAA/5x7bIq52EQ4/c-rp-mo-br100/photo.jpg','16590124370714063921',3947),('AIe9_BEV1VP1woYvuPRixSBHlWg444ARvVQqxCvFwbgOASriIQtOnl2IkISfxva__IyOPlYLbKYLY4zkoa63F8wzLCz0ZiTUatHIMfScFZRb_GQl43YOACI',NULL,'2017-12-05 07:17:49.821000','2017-12-05 07:17:49.821000',3,'Martin Gomez','https://lh3.googleusercontent.com/-b-HTgg_0E8g/AAAAAAAAAAI/AAAAAAAAAAA/m_6NM_w-ZAI/c-rp-mo-br100/photo.jpg','8679688254631342173',8909),('AIe9_BEV1VP1woYvuPRixSBHlWg44fctRoOGX9BW8P2SgxEvAcfkmzHpUqBdtJqGqQnIL1Zh4mcvETXjsWbE38eTctQiAm9cDNx8VBrGK5PpynFv6FnpCqg','The emergency care center is the best care center in killeen. I would advise anyone to come here over any other faculty.very nice staff clean building.','2020-02-21 00:06:53.639000','2020-02-21 00:06:53.639000',5,'Kieara Robbins','https://lh3.googleusercontent.com/-MJkdraqeazI/AAAAAAAAAAI/AAAAAAAAAAA/uVVfgfjubWc/c-rp-mo-br100/photo.jpg','2694018788013845459',14222),('AIe9_BEV1VP1woYvuPRixSBHlWg44sqFhk_jWiiUeqesoLNKZhqSEPE7Lk0FgWdCWNb1ckUN-M4VybiVr4byBf9XF8rv36Br1Hy_xLegZwquwPkyhi6JuUQ','Friendly staff, doctors, and nurses. Nadia, Sam, JD, and Cody took care of us. They were so great with our kids - made them feel comfortable and made it fun for them. Quick and easy. Asked a few intake questions and entire process was over quickly. Great experience and I highly recommend for all health needs.','2020-07-28 20:19:12.208000','2020-07-28 20:19:12.208000',5,'Angela Chan','https://lh3.googleusercontent.com/-EQ5i30gzVjQ/AAAAAAAAAAI/AAAAAAAAAAA/1ca-Ot9VWUk/c-rp-mo-br100/photo.jpg','2077061009497551125',22787),('AIe9_BEV1VP1woYvuPRixSBHlWg45--7fBpHVv_mD5NxlVUMtZiG5_iMp6TjOZIICE1wmoaEDy-25fK33l6LJUqxtASoJlNgPL5QzG9dKc_l669n0RkLZgs','We had Erica as our nurse & Valerie as our technician & they were both outstanding! Quick & efficient patient care! Will definitely be back if needed!','2019-09-29 18:30:13.912000','2019-09-29 18:30:13.912000',5,'Hilliary Baker','https://lh3.googleusercontent.com/-JcMY4gnuljo/AAAAAAAAAAI/AAAAAAAAAAA/4zCgJFLhd7c/c-rp-mo-br100/photo.jpg','8626688543755174284',14671),('AIe9_BEV1VP1woYvuPRixSBHlWg45AjaLTp7NzNGq2KizDK4nGTS6msqLfWD6hTmX2SjCgwQ6_twP_WC3dt0y0HKrT1Us4ZoNurdUbGzJyOshD8risZSsgc','The place is very sanitary and I didn\'t wait for long before I was seen, everyone was so friendly Especially Mercy at the front desk, They ran all kinds of tests to rule out all of my concerns and they all made me feel better during my visit.','2017-03-20 21:11:20.212000','2017-03-20 21:11:20.212000',5,'A Afia','https://lh3.googleusercontent.com/-qNZgxSb8ta0/AAAAAAAAAAI/AAAAAAAAAAA/2y_xxrxTxiI/c-rp-mo-br100/photo.jpg','14904078213800803294',2384),('AIe9_BEV1VP1woYvuPRixSBHlWg45gT9X5ZEEX_UxW46n3UHRyOmoBzS9SUL_TVQqqEoMA1b_88wP_82c7KEH7ovn06lk8hxvRsCCmO6_N6wUQnZM7-jXVQ',NULL,'2018-02-12 18:16:47.397000','2018-02-12 18:16:47.397000',5,'neoojelade','https://lh3.googleusercontent.com/-ETlEHAhhoEI/AAAAAAAAAAI/AAAAAAAAAAA/3HRaET24BMM/c-rp-mo-br100/photo.jpg','17394740196501090048',4882),('AIe9_BEV1VP1woYvuPRixSBHlWg45lqNOgq5ElMZlB6f79p_UYOSz7We5yecqs7ANqhaHIdx4z7yt78nSxpzfrsXQiAatm-iOXW6cyaFQRKPALl9xSQBFeU','The staff was extremely friendly & very attentive to my daughter. This is always my first choice when her primary doctor isn\'t available.','2019-02-08 14:34:23.234000','2019-02-08 14:34:23.234000',5,'RAVEN GREER','https://lh4.googleusercontent.com/-segMZYVKf1w/AAAAAAAAAAI/AAAAAAAAAAA/N2iR66ZOvZo/c-rp-mo-br100/photo.jpg','8626688543755174284',8572),('AIe9_BEV1VP1woYvuPRixSBHlWg45r3odXtsuePCecGe3WvLFOxLx_5-Oq73cyEuk-STGarB0nCYdhicU_WgOtQYv0TIC5iELwlsNlO8IQPZcCit3KZq6yU','The service was great! I was treated in a timeline fashion and the the professionalism was great!','2019-12-16 22:49:33.653000','2019-12-16 22:49:33.653000',5,'Anthony Artis','https://lh4.googleusercontent.com/-4bxrf63YBeM/AAAAAAAAAAI/AAAAAAAAAAA/fFPXkaAAhno/c-rp-mo-br100/photo.jpg','12541597562633926366',340),('AIe9_BEV1VP1woYvuPRixSBHlWg45SXV3ulfN6FXsd0UQ4RA7e6YdzEmNKTi5u5C65EHHNVtvgw6QyvnISmLNTIasdjZxa3vX4TPDj4IdRBHSirdiKtQ_-U',NULL,'2020-07-28 01:15:20.895000','2020-07-28 01:15:20.895000',5,'michelle allen','https://lh6.googleusercontent.com/-mABP0u1GlWA/AAAAAAAAAAI/AAAAAAAAAAA/34xdIsjtc3M/c-rp-mo-br100/photo.jpg','14748677429039074158',22552),('AIe9_BEV1VP1woYvuPRixSBHlWg45TutcSZq7oDnawfV78SmL6IniZQmacVqP5v5w3DyrffBIA4kQonjDWIlic_qW55Q9Yhv0vhGn78AJPqfTcgvhE9Z9Ws','Such a beautiful ER and a wonderful staff. All of the staff treated me so well. Laura and Agnes are amazing nurses. Jessica is a great Radiology tech. Olivia a great ER tech and Dr Singla was very friendly and Leslie has a warm and friendly greeting. Thanks for being a great ER in the Montrose community!’','2019-01-10 18:42:01.335000','2019-01-10 18:42:01.335000',5,'Mario Angel','https://lh3.googleusercontent.com/-D6PzEghH1AY/AAAAAAAAAAI/AAAAAAAAAAA/iT6yCSPJUqE/c-rp-mo-br100/photo.jpg','3511292162159714121',7492),('AIe9_BEV1VP1woYvuPRixSBHlWg45xpmRnFpc8HOvq4DhLHxG4t8JukWknZHHggb0yZGRTDgw2BdhINvgkwQdPpHcoeczNVcW8FzkF9TWafj_MeQQPUdFg8','Everyone from Jennifer in registration, to our nurse Susie and tech Matt were awesome!!!!','2020-02-16 16:57:53.828000','2020-02-16 16:57:53.828000',5,'Jacob Copeland','https://lh5.googleusercontent.com/-YGaBIPV1j-8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclYNVrpD4hqh39hOVDwqo74vfT1iw/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14611),('AIe9_BEV1VP1woYvuPRixSBHlWg464rwi1b6fpnyesGwNHbk_RdNhvcvp8EQoIHjxjnJ6zZNcyRrvWcKN8sb-3osbkZVC7aOFNhWk2qN4pP4nUFPuEllF-g','Have had two positive experiences with sick or injured kids. They are friendly, caring and efficient.','2020-06-07 17:37:06.167000','2020-06-07 17:37:06.167000',5,'Brock Blassingame','https://lh6.googleusercontent.com/-b9I_GjbQnvA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckrJrRWbgp_a12b6qoGeP4sj7Pp-g/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21483),('AIe9_BEV1VP1woYvuPRixSBHlWg46clGMNMHyBBOi18cnmL6in9AyGAftGtiYpIxpuC6WtYWH4wV5MspCx6iHF-N_Zt4zBmRZydNZ379dyZ-Nx9FmyocAfs','Went online made and appointment. Same day, they called about an hour before and said they could get me in early if I wanted. I did. Went in clean fast and easy like I like most things;)\nThis was for a covid test. \nI left about 30 min later less $160 bucks and a smile.\nGreat place if I get hurt I’m hitting them up again!','2020-08-04 05:39:47.645000','2020-08-04 05:39:47.645000',5,'Matt waite','https://lh6.googleusercontent.com/-pc2mDxIMizk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmCAB4R2HT_8Oh5qY8l1iTv6fhkZw/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22136),('AIe9_BEV1VP1woYvuPRixSBHlWg46JUmff_ukT-XATWSH2EjdC1bWVG4hoxmOqCWDz4SCqVYPs6f29X_AD5YlCrU4B474Rc7KQyAQUCTPK-89WnSmEmF008','The staff at SignatureCare in Texarkana were all excellent and caring. They are also fast and friendly.','2019-03-11 23:15:15.759000','2019-03-11 23:15:15.759000',5,'Shannon callicott','https://lh4.googleusercontent.com/-9sG2i4Y-Kj4/AAAAAAAAAAI/AAAAAAAAAAA/3a56fpHAKW4/c-rp-mo-br100/photo.jpg','3272657195432704501',6996),('AIe9_BEV1VP1woYvuPRixSBHlWg46k3K2tvb0KBhiA5YlEFuCOokizUSrn_19fhhT28OmlET_9L05eVv_7xFWohnFZ_Nnm4M0xAlrgLPo0BJoPqCMHVgAyw','Very professional and courteous to the patients needs. They display caring and compassion and really treat the patients with love.','2017-11-07 13:55:46.601000','2017-11-07 13:55:46.601000',5,'Jermel James','https://lh5.googleusercontent.com/-OM4kQNfXqIU/AAAAAAAAAAI/AAAAAAAAAAA/NcjB_adWmYU/c-rp-mo-br100/photo.jpg','8918455867446117794',9341),('AIe9_BEV1VP1woYvuPRixSBHlWg46tv471RUmf7mufzUy8hmeAx1ZuRtlVESipZe9y-iwjSdnLrFGnNl-zIY2VlqqHA0Ypf21JVoG6Rh53NYYpY4p0rCRU0',NULL,'2020-01-11 18:39:05.264000','2020-01-11 18:39:05.264000',5,'Kendra Cortez','https://lh6.googleusercontent.com/-itNnhF1EjB8/AAAAAAAAAAI/AAAAAAAAAAA/44XHVxaj_Gs/c-rp-mo-br100/photo.jpg','16590124370714063921',9493),('AIe9_BEV1VP1woYvuPRixSBHlWg46vdHT3c8EG4badKX4DkAWV8oM3TNFgmwAs6K-83mHwDKles-eNOPbq5H8xWisBk7XulwfAawSvFhVoeCOYoNnbTHJmI',NULL,'2019-08-17 02:00:03.755000','2019-08-17 02:00:03.755000',3,'arnoldo trejo','https://lh5.googleusercontent.com/-mjkG7uEVwUI/AAAAAAAAAAI/AAAAAAAAAAA/rtXMkZ9RQOY/c-rp-mo-br100/photo.jpg','13486358490203335051',856),('AIe9_BEV1VP1woYvuPRixSBHlWg47MSKWeKo2fgidyAKhAb8tuk8wDIsH0GCfx0ergzf3GMtbd0UMqnNZzULn9YjMtoVnUbaISrqkQqFvxbXsxqA6r0mhGw','I went in last night for really bad chest pains and from the moment I walked in the building, I was treated with kindness! It was no lines in there, the receptionist was super sweet and patience with me and my mom. I went into the back and the room was really clean and comfortable. I hate going to the ER but the two nurse that helped me relax are the best there! The doctor was super sweet and attentive to my needs as well. I\'m feeling a lot better thanks to them! No more hospital for me!!!','2018-04-03 22:47:24.876000','2018-04-03 22:47:24.876000',5,'Brenita Davis-Evans','https://lh6.googleusercontent.com/-8GIAUW96-cY/AAAAAAAAAAI/AAAAAAAAAAA/lQZ5GV4SNi8/c-rp-mo-br100/photo.jpg','17394740196501090048',4864),('AIe9_BEV1VP1woYvuPRixSBHlWg47vZzw1jef2zUCriA7FsCu8HmCzT2ZsPtav7qVBZDVGiNCMfw7fpiRIAlOIgGaLfMuAB2iZb4JGQ_9JtmYbD1WB9GXDA','Everyone here is seriously so nice. This is my second time being here, and I don’t want to go to another er ever. Kim checked us in super quickly and was so kind! We seriously waited like 7ish minutes (if even that long) before our nurse, Lucas, came and got us situated in a room. These rooms are so spacious and cozy. Dr. Edwards was awesome! He came in like 5ish minutes after getting into the room. He did an awesome job and was super knowledgeable and very kind! The staff and physicians are knowledgeable and friendly!','2020-02-28 16:33:27.209000','2020-02-28 16:33:27.209000',5,'Sara Gilliam','https://lh6.googleusercontent.com/-BqD1wEYSSVA/AAAAAAAAAAI/AAAAAAAAAAA/5g1NJsxXJgA/c-rp-mo-br100/photo.jpg','3272657195432704501',14320),('AIe9_BEV1VP1woYvuPRixSBHlWg481rZx8J4Pih3iufuKX9hcaYebbkic8v6jo63xTahcp6P7WBSsqPhE3gCn8-lLGVMXKTrTjjIBoSZURW_vpoVYD4KK88','Came in for pain and the staff is amazing. They have made my care easy and they are very professional and caring. I recommend this place above all else.','2018-12-27 18:01:12.598000','2018-12-27 18:01:12.598000',5,'tmatthies523','https://lh5.googleusercontent.com/-myJge6NhQS0/AAAAAAAAAAI/AAAAAAAAAAA/o3KE3RDlpPM/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2188),('AIe9_BEV1VP1woYvuPRixSBHlWg48o_CP3m_5-FCeCYqkPHkHgqjRaXJyXc9HJTgWTXE_-DXH18XvYGlJTZ9jLTnGDisAlxWh_xbFSMCdizGHnbOhzl5IM4','Very helpful and attentive staff along with super nice/clean facilities make this an excellent place to come. Anthony was awesome and we will definitely be coming back if necessary.','2018-11-01 02:12:05.242000','2018-11-01 02:12:05.242000',5,'William Easton','https://lh3.googleusercontent.com/-z6i-u8tjjsM/AAAAAAAAAAI/AAAAAAAAAAA/5pkW0C7v_IU/c-rp-mo-br100/photo.jpg','16590124370714063921',3677),('AIe9_BEV1VP1woYvuPRixSBHlWg49A0nT0rs0KGSOhG1-clrifFrmL8mH0f91pfwe5hIsYNufXX2J0RaQvm4jl9U6V5U7LMVhKxCozsZeFBnz_AQXVfHDrg','(Translated by Google) Signature care emergency center was a very good experience, I had a very fast and efficient attention in another word was, EXCELLENT, very friendly and friendly doctors. Thank you!!!!!!\n\n(Original)\nSignature care emergency center fue una muy buena experiencia , tuve una atención muy rápido y eficiente en otra palabra fué, EXCELENTE, Doctores muy amables y amistosos. Gracias!!!!!!','2018-09-26 19:06:03.847000','2018-09-26 19:06:03.847000',5,'Martha Flores','https://lh5.googleusercontent.com/-wo5-RJiEtLA/AAAAAAAAAAI/AAAAAAAAAAA/SZPDrv7yFuA/c-rp-mo-br100/photo.jpg','14567670160750071148',22492),('AIe9_BEV1VP1woYvuPRixSBHlWg49ADyS44-_VGFu2U1V5v2eGFwrSpEwZrYKp-XA5-j2NxtlfyKjDN4xbmJB2mgEev3tE7FigLLNzeWnQh3VU5lSx1Tyfk','They were very helpful to me. They listened to my concerns. They made me feel welcome.','2018-04-07 20:47:11.015000','2018-04-07 20:47:11.015000',5,'Nicole Payne','https://lh6.googleusercontent.com/-8FDMNK0PtH4/AAAAAAAAAAI/AAAAAAAAAAA/WX0I3SYR0WA/c-rp-mo-br100/photo.jpg','16891069708558046635',4491),('AIe9_BEV1VP1woYvuPRixSBHlWg49dwDiCYylOBOeV6GXh1KIIQPF-BJ4ogEU-yVXADjAjU4JbFU-iDjq5LgsEPujmfyj1JNWEg8GbMF_uWvgEHoUCXMzDI','I love this place. I had great care from Jasmine at the front desk to the nurse Lia to the doctor. Lia was the most helpful and understanding. She was very caring. Jasmine also came into check on me although she didn\'t have too. The virus I had was horrible and I felt like the world had come against me because they couldn\'t find anything wrong but they made sure to take care of me for dehydration, high fever and fatigue. I love this place! Thank you!!','2018-04-11 06:45:24.214000','2018-04-11 06:45:24.214000',5,'Yolanda Martinez','https://lh4.googleusercontent.com/-rAwQ4syzgYM/AAAAAAAAAAI/AAAAAAAAAAA/8_efXotOJ2M/c-rp-mo-br100/photo.jpg','14567670160750071148',1635),('AIe9_BEV1VP1woYvuPRixSBHlWg49KWL1aVuISvRGvwL2rf3syWp58Nogx5r9xkvmlP7MeGqc26Qg99zjxdEC26xsFRoAb7mucTjFvq-Qav-pLQt07URNzo','Great experience! Quick and easy! Dustin,Kevin and Nadia were awesome!','2020-08-05 20:45:34.895000','2020-08-05 20:45:34.895000',5,'ashlynn singletary','https://lh6.googleusercontent.com/-hg--kV4b2jA/AAAAAAAAAAI/AAAAAAAAAAA/q1uLPanzMx8/c-rp-mo-br100/photo.jpg','14748677429039074158',22524),('AIe9_BEV1VP1woYvuPRixSBHlWg49Pr2sTQIOr10jH5uxX83M95H8yzvyP0V0l5qHsOfeIFQwML4yEZ36H_S7xPOBqZbznrGJLS7JMW77o3U4JuyWIIqrTo','This is the best ERI have ever been to. Dee and doctor singla are the best','2019-06-19 00:34:52.781000','2019-06-19 00:34:52.781000',5,'Cryst quinn','https://lh3.googleusercontent.com/-Ce9WP69hsLs/AAAAAAAAAAI/AAAAAAAAAAA/aJqg1HEGYTQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7299),('AIe9_BEV1VP1woYvuPRixSBHlWg49WoBna-ylN-YPFcFJf2-jJxSALbg_QODiyUwAtdQvIbB9wih94yAYHVXtKy7C-p09y2elZdA_JBvmpZ70AQnvvpUHUk','I had such a great and speedy experience. Martin Lewis is so great. They got me in right away, took care of me and such a clean great and efficient facility!','2020-03-11 00:55:25.837000','2020-03-11 00:55:25.837000',5,'Danielle Daneshjou','https://lh6.googleusercontent.com/-2AKbhrV3ptU/AAAAAAAAAAI/AAAAAAAAAAA/cQKCgPkmm9M/c-rp-mo-br100/photo.jpg','16891069708558046635',15582),('AIe9_BEV1VP1woYvuPRixSBHlWg49zQ32Yg_ap_QxG0KDf66U7ZXIp60Jz7F2E_f3AmE3JF-V7th6jtiH4ZJbRfOPBD3JSwrYLgRZBD8c8n5ZLKYQ5K_nxE','Staff was super nice and service was really great and fast. Thank you Dr. Boester, Churiah, Ke\'Aire,Dion, and Anastasia.','2018-09-20 02:49:59.729000','2018-09-20 02:49:59.729000',5,'Sherrelle Thomas','https://lh4.googleusercontent.com/-Y5P9CfKBEiU/AAAAAAAAAAI/AAAAAAAAAAA/XyWDiLSELsg/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7589),('AIe9_BEV1VP1woYvuPRixSBHlWg4A1bLsFvaTu7gQtj3bT1oaQ3NNJlWfIsP9Fqm5_wnXsL0R770l8FyUAobOCpBSwUvganZtTAHgAHl8kfmxzi3HOga4gc','When I took my son they were great, when I went in it was all different staff and not a good experience, after a complaint on a survey for service, I received a call, and an apology. They are striving for great customer service and I am very pleased at how they handled the situation, they went above and beyond to try to make it right. You just don\'t see businesses do that any more. I truly appreciate what they are trying to do and I will recommend and use them again if needed.','2018-03-29 17:55:50.673000','2018-03-29 17:55:50.673000',5,'Amy Hicks','https://lh4.googleusercontent.com/-KTxaxJtsQEw/AAAAAAAAAAI/AAAAAAAAAAA/HoiIUp-2-mQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3845),('AIe9_BEV1VP1woYvuPRixSBHlWg4A8dVnAwKCkga9vCtFdyZQLUTvMsV24z-beGzHYrPycai5tjcfropcUgu7QoOBC3uXvRVd68CX1tOpzXm1M0VER_WTQM','Fast service and friendly staff. Receptionist Chelsea, Dr. Jordan Smith and Nurse Nicole Jackson were extremely professional and kind given I was a bit nervous and apprehension during my visit.','2017-07-26 02:49:16.555000','2017-07-26 02:49:16.555000',5,'Derrick Jenkins','https://lh4.googleusercontent.com/-RLgnsnyxfIQ/AAAAAAAAAAI/AAAAAAAAAAA/wz-e3tqLpws/c-rp-mo-br100/photo.jpg','14567670160750071148',1785),('AIe9_BEV1VP1woYvuPRixSBHlWg4A8NOTZSBoToiEx4ajqPaR3Ash4sEwundUkd3DbrlaHO6BgdCtcMnUElcudu4VzeikJRdCY3DObP9ndFYGGTygRE3IC0','The facility was clean and the staff was very helpful. I felt well cared for during my entire visit and my nurse, John Bell, was especially attentive and made sure I was comfortable and had everything I needed. Would definitely recommend SignatureCare to friends and family.','2019-02-18 19:01:49.052000','2019-02-18 19:01:49.052000',5,'Janeese Bene','https://lh3.googleusercontent.com/-vs6uOJ_XQWs/AAAAAAAAAAI/AAAAAAAAAAA/jhlQphpxAcI/c-rp-mo-ba3-br100/photo.jpg','8626688543755174284',8559),('AIe9_BEV1VP1woYvuPRixSBHlWg4AbaunoCIdPGlYeXfhTNhQjKLRb50yMiLvBi1jAdDdyCP7dOnJkW1PYZUAYDc0ydkNXhjNDlfiHZXH0a6_HNsdzac_bk','Fast, friendly staff. In and out ','2017-05-30 16:16:14.562000','2017-05-30 16:16:14.562000',5,'sal maldonado','https://lh6.googleusercontent.com/-WjXQ_H789YE/AAAAAAAAAAI/AAAAAAAAAAA/u1kllTh1rPk/c-rp-mo-br100/photo.jpg','3511292162159714121',7815),('AIe9_BEV1VP1woYvuPRixSBHlWg4ai_D8M0FHEaIa0DAO54UBeg9aMEDkcZF4P8ixlIhH5CO2sqHZochd5GuzdbrseJurkWW8pVKdBH_H3zCKJybJWMrvIE','Everyone there were total sweethearts (Carly , Sara, Holly and Thelma)','2019-12-25 07:16:21.565000','2019-12-25 07:16:21.565000',5,'Melody Salamanca','https://lh6.googleusercontent.com/-zQqSHsU2pdA/AAAAAAAAAAI/AAAAAAAAAAA/7L73hA-Jo64/c-rp-mo-br100/photo.jpg','12541597562633926366',306),('AIe9_BEV1VP1woYvuPRixSBHlWg4ain2m6kmLfMrzJDO5R6YLQ0HWAWIsNUFT8A1mfr3EzS7T2DO-Q0j0Xcg1e7RqrC8DKDFUGRDjeDR_g2DNZ20xRLc0Dk','Great staff and Facility! \n\nThere was no wait and I was taken back before I had finished filling out all the admission paperwork.\n\nThey have everything short of an MRI machine so they were able to verify my kidney stones on site.\n\nWill definitely use them for any future ER needs.','2018-11-09 14:46:59.853000','2018-11-09 14:46:59.853000',5,'Chris Connally','https://lh4.googleusercontent.com/-wP2VrPGZpds/AAAAAAAAAAI/AAAAAAAAAAA/1fexrTDeF7k/c-rp-mo-br100/photo.jpg','16891069708558046635',4403),('AIe9_BEV1VP1woYvuPRixSBHlWg4Aqq3iLey5qy28VTF7TddqvySy2hdCWBISeuIsVYlCHxRFPTZ-yTb7gT4IVYeR6k0cUf-dIvtvUkugkRRsEO75d1tXac','Amazing experience! Very caring !','2019-08-29 20:14:47.545000','2019-08-29 20:14:47.545000',5,'CroozWitMe','https://lh6.googleusercontent.com/-yPL6DN3xYO4/AAAAAAAAAAI/AAAAAAAAAAA/a_VyDsxnSOI/c-rp-mo-br100/photo.jpg','16389487648212004696',2967),('AIe9_BEV1VP1woYvuPRixSBHlWg4B2BuUXKnBJcAKlw7yMrBpChR1QnuvdCXfe9oGisuzfk9e0FTrQoE6j3UmRFjLUucXg6Rs1YPaqQogOknxwaDzMOnZsc','The staff and Dr were all wonderful. Really enjoy experience however not the cost \nI do feel it was better than going to major hospital ER','2019-11-03 22:08:26.206000','2019-11-03 22:08:26.206000',5,'Deputy Lawson-Haugabook','https://lh3.googleusercontent.com/-am1MB3RP7Hk/AAAAAAAAAAI/AAAAAAAAAAA/jIjbOWQNxfM/c-rp-mo-br100/photo.jpg','16389487648212004696',2730),('AIe9_BEV1VP1woYvuPRixSBHlWg4B6nCJ7PeQO5cAoFfC0HcOJoUru1K9WKsb6wUmV0Co65fl-bswZPgEgtSnMsEar8sl4kHNFXEXkA9r2zvRnZvohNnNFQ','Tanisha w Henderson \nSarah \nDaniel \nLaura \nWere great','2019-12-02 04:22:12.617000','2019-12-02 04:22:12.617000',5,'Jason greensage','https://lh6.googleusercontent.com/-sxOINL2DZ68/AAAAAAAAAAI/AAAAAAAAAAA/SD8NmbiFoJc/c-rp-mo-br100/photo.jpg','17898197009688164559',5388),('AIe9_BEV1VP1woYvuPRixSBHlWg4BAyNhz4gi-j6JE8EpwWl0SMV16U5qUvTTlh8b0vLuWXFQOrAa_1_QnJBnl21iEH5P1v4IPzz8npW19bJ3qfLTWyuFbA',NULL,'2018-05-02 23:25:12.109000','2018-05-02 23:25:12.109000',5,'arely Lopez','https://lh4.googleusercontent.com/-O8aILFfx5D8/AAAAAAAAAAI/AAAAAAAAAAA/5NCnVRzM3QA/c-rp-mo-br100/photo.jpg','17394740196501090048',4855),('AIe9_BEV1VP1woYvuPRixSBHlWg4BF_WdaxzpuGMRDHYiJeTPSrBd1fyOEvVchQHtWuyx1sans1iEaP5tj56hqK7yI5lXeuRzRCNk-9nVGF9UoDPwtVtrkg','By far the best ER experience ive ever had. Came in for a bad cut on my ankle they had me in and out in less than a hour. Follow up visit was just as good. Got the stitches out super quick and painless. Both Drs ive seen were great! I wont go anywhere else in town!','2019-05-21 17:20:25.145000','2019-05-21 17:20:25.145000',5,'Ryan Jordan','https://lh3.googleusercontent.com/-Yu-7LYPN1AE/AAAAAAAAAAI/AAAAAAAAAAA/iH-LrjM9s9k/c-rp-mo-br100/photo.jpg','6521947413723274945',8265),('AIe9_BEV1VP1woYvuPRixSBHlWg4bJcP9ZRDzAUYL5PXwK_cGDwJWjYfSnTo15RNkVI4Jwd91bqBCies7x6PEHPWDipRlRk7jpZl0GBRHxAWOFwp-tWKT3w','Very pleased with my visit to this clinic. The office staff are professional and so are the medical team. The doctor was very friendly and thorough with the next steps in helping with my situation. There wasn\'t a long wait time and the center was sparkling clean. I will visit here in the future if whenever I have a medical need.','2019-11-17 14:06:51.775000','2019-11-17 14:06:51.775000',5,'Alisa Elliot','https://lh3.googleusercontent.com/-0-uncYc3b4s/AAAAAAAAAAI/AAAAAAAAAAA/4douxfIiy_E/c-rp-mo-br100/photo.jpg','16389487648212004696',2677),('AIe9_BEV1VP1woYvuPRixSBHlWg4btFmTIX2OY3fwglPIqZNIbStwOreleSJ0uzpgNxcDk4GbeMUK0cYS4h3Gh8FExZi8hDERcxu-0LNGzkN7oCbzpa0MTc','I had a wonderful experience. Everyone from the techs, nurses, radiologists and doctor was kind and helpful. Everyone was very knowledgeable and made sure you understood everything that was going on of about to happen to you. I didn\'t leave the hospital till they knew what was wrong with me. They went above and beyond. Not that I want to return anytime soon but I would definitely go back to this place if I had to.','2019-10-14 00:40:28.547000','2019-10-14 00:40:28.547000',5,'Nichole Infante Le\'Blanc','https://lh6.googleusercontent.com/-USGcwmHBLwY/AAAAAAAAAAI/AAAAAAAAAAA/X2L1Re9GnOA/c-rp-mo-br100/photo.jpg','16389487648212004696',2822),('AIe9_BEV1VP1woYvuPRixSBHlWg4c8_A6P5TIIBer9EaO_Wnkpt4FWDXMDEEL_MXewd8elffHBHBN9Pt50nMt2aPJDgWDv10DHmP9NOMIHeEiAxP-dDzVxs','Awesome staff and dr\'s really took good care of my daughter as soon as we walked in. She had to stay over night and they made sure we were comfortable throughout the night. Highly recommend them.','2019-12-18 02:10:37.364000','2019-12-18 02:10:37.364000',5,'Miguel Reyes','https://lh4.googleusercontent.com/-5tTC-tBtkOI/AAAAAAAAAAI/AAAAAAAAAAA/ZI1tbCpZjjo/c-rp-mo-br100/photo.jpg','6521947413723274945',8048),('AIe9_BEV1VP1woYvuPRixSBHlWg4CExgI6xmw3MJABwA2TfeKeKX6enME4IMqlT7zswdVSBZSwIA4q4g-L9yeY3GJXFxXdz83LKAAX5-ZGknnMd0k_4sDZI','Ive come as a guest while my mom was in the er and ive had the best experience they take care of there pacients and they are the best to laugh with and talk to love them so much','2020-03-02 03:14:20.143000','2020-03-02 03:14:20.143000',5,'babygurll periodt','https://lh5.googleusercontent.com/-hSQg7aVUYSs/AAAAAAAAAAI/AAAAAAAAAAA/WOmfSleyxp0/c-rp-mo-br100/photo.jpg','14567670160750071148',15142),('AIe9_BEV1VP1woYvuPRixSBHlWg4cmGH30fyrJDamylj0NVALMeGXwvSPOoDE51stZRxKdsVfpEUqzlEl0yDbop6_uvSywNsFzWBAoN_-5fz5dCnQlv8Fn4','amazing, caring and funny staff! took care of me and made me feel at home. if you need an er come here!','2019-03-06 02:38:00.950000','2019-03-06 02:38:00.950000',5,'Haley Morales','https://lh5.googleusercontent.com/-BR2ykvx7b9g/AAAAAAAAAAI/AAAAAAAAAAA/oD1AoqNP6Oo/c-rp-mo-br100/photo.jpg','17898197009688164559',5822),('AIe9_BEV1VP1woYvuPRixSBHlWg4cOcMkB5G7CjuoGFGc4pXz3jkHyfpSbUjIfZ1DJ1xclTg8rFwlMZ2wyF0yOhQFgjqBWZ6AdDhDFkeTy1RNBhEK3F9w3s',NULL,'2017-08-23 13:49:09.605000','2017-08-23 13:49:09.605000',3,'Carlos Escobar','https://lh3.googleusercontent.com/-jPmtHJJbIcU/AAAAAAAAAAI/AAAAAAAAAAA/uM1P9XlqFBM/c-rp-mo-br100/photo.jpg','17394740196501090048',4991),('AIe9_BEV1VP1woYvuPRixSBHlWg4cW7N1jyeH3lmQ5MwbV_oX0HVKC_9mZGKcwH6FQqoRpr4U0RmB2p-j_CC9YPWEba4eokrC4HEEOqA-OxBKCXpCCJW-ZM','(Translated by Google) Thank God for having known this place and thank you very much to people like Patricia and Alvean for being so kind and professional I recommend God bless each one of his staff\n\n(Original)\nGracias a Dios por haber conocido este lugar y muchas gracias a las personas como Patricia y Alvean por ser tan amables y tan profesionales se los recomiendo Dios bendiga a cada uno de su staff','2020-01-15 22:05:29.537000','2020-01-15 22:05:29.537000',5,'Kenny Aldea','https://lh3.googleusercontent.com/-lSaS74aQb8A/AAAAAAAAAAI/AAAAAAAAAAA/BIxzZEoUbdU/c-rp-mo-br100/photo.jpg','16389487648212004696',22635),('AIe9_BEV1VP1woYvuPRixSBHlWg4cXC8j7hppXXb6Pgnqy0WoPw9QU44b-GGFlG_ccy1wPXbPg2UvKBNJrbfhASJ-0LObxwAwmfd-LsgEUowmN9bwhLLFfk',NULL,'2019-06-12 12:17:06.715000','2019-06-12 12:17:06.715000',5,'Garret Dunham','https://lh3.googleusercontent.com/-TVvYrugvEo4/AAAAAAAAAAI/AAAAAAAAAAA/wHzso-UCWz0/c-rp-mo-br100/photo.jpg','6521947413723274945',8238),('AIe9_BEV1VP1woYvuPRixSBHlWg4CYmJladkvZBoZOl40m1WhhghOVsHE71Rs33jyvzVnHeEQwJglEDBqBFxuty_p4H42jrMj1CekmeJWh0QcmrL0Y7CnwQ','Dr.Yusef\nAmy \nChuriah \nNorma\n\nThey were very helpful and made this a pleasant visit and very quick and efficient','2020-01-24 17:24:55.501000','2020-01-24 17:24:55.501000',5,'Jason Richards','https://lh3.googleusercontent.com/-Dlube7DBl7E/AAAAAAAAAAI/AAAAAAAAAAA/qKECyEH-ujg/c-rp-mo-br100/photo.jpg','3511292162159714121',14451),('AIe9_BEV1VP1woYvuPRixSBHlWg4d6V34w0BERisO9EL79sGlINgRzwQ3MaxGHi6czT4fSCYtKt1za30T9rxOyooPBV7ISLP6GQ6V2TxzINI-TY0fohGhN0',NULL,'2017-08-23 17:44:08.603000','2017-08-23 17:44:08.603000',5,'Shannon McConkey','https://lh5.googleusercontent.com/-DkSB6bw_QGI/AAAAAAAAAAI/AAAAAAAAAAA/bs8WqAhfDrY/c-rp-mo-br100/photo.jpg','16590124370714063921',3949),('AIe9_BEV1VP1woYvuPRixSBHlWg4d89lFAP8jwuoQBWys19V5hHfrtB-JJ17-B8quM4A844IafsAKUFVMQ2DSVtKQh9v1WGEGqM0aesZ4x5TOI71_xjVqkA','Thanks Norma and the entire staff for your care. Dr. Nguyen provides a very calm and clear explanation. If you have something urgent, come here.','2020-02-21 17:49:06.866000','2020-02-21 17:49:06.866000',5,'Brian McCarthy','https://lh4.googleusercontent.com/-eGJP_d8wIfo/AAAAAAAAAAI/AAAAAAAAAAA/3eWLrJJwCQ0/c-rp-mo-br100/photo.jpg','17898197009688164559',14142),('AIe9_BEV1VP1woYvuPRixSBHlWg4dAEvhasu_CoDDjXIlcHRfj8myK4tPaTU-94DWZv9u1E2dHkBXvU7URHVZ9juaHQibGvBWn3ZwFFHrG_60wzWVuIb8Es','Best healthcare experience my wife and I have ever had. Just a wonderful experience, staff, waiting room, doctors, nurses and on and on. 10 Stars','2019-06-04 17:29:05.790000','2019-06-04 17:29:05.790000',5,'Freddy Qaqish','https://lh6.googleusercontent.com/-jwaAHnXvnlQ/AAAAAAAAAAI/AAAAAAAAAAA/HMfWAu_vuw4/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4262),('AIe9_BEV1VP1woYvuPRixSBHlWg4DbNIqWun3YyN3eOyogV8V1FwoflfnJnuq8h-wMgz11wc8nnHxBoR9Hz1sULyIMNXgLnrDb0w7K4GXj_S9gpIwQ7cJ7o','Such a amazing staff: Dr. Ashbrooks RN: Mollie Rad/Lab: Eric Reg:Tobie‼️ After a month of seeing several doctors and Er physician; this staff cared enough to get me the proper care that’s needed of the illness that I’ve been fighting. Forever grateful','2020-02-20 03:47:28.793000','2020-02-20 03:47:28.793000',5,'shemeka davis','https://lh3.googleusercontent.com/-0z8PtR9bW88/AAAAAAAAAAI/AAAAAAAAAAA/V79GHSmz3F0/c-rp-mo-br100/photo.jpg','3272657195432704501',14338),('AIe9_BEV1VP1woYvuPRixSBHlWg4dbZto3b-fW4oDhnFGdI-iCGrR-ImouebbNWtu2MQsq3drvZ6H6ug_W9JjdFXc9NV4gBuQbevqZ0VaOASMUAqXLY1Wqo','Been here several times now and each experience has been nothing short of excellent. Dr Sylvester was very thorough, the nurses Meredith and Sherri were very attentive and kept us laughing. Bryan, Ricardo were very quick in getting us in and out of X-ray and the receptionist Brenda was again receptive and quick to get us in and out. We appreciate the kindness and care under the circumstances.','2018-07-29 03:38:47.711000','2018-07-29 03:38:47.711000',5,'zach jacob','https://lh5.googleusercontent.com/-G-MjpCVj1n0/AAAAAAAAAAI/AAAAAAAAAAA/20yD0AcN3-0/c-rp-mo-br100/photo.jpg','14567670160750071148',1580),('AIe9_BEV1VP1woYvuPRixSBHlWg4Dc0E4KlF8iCyxPSxdOYtokqYsGHOWRB99azhvqTp4bs6XsqRdrShT1vMMeZXyoyJm1Tq9qP_Yw2TB4s3d8lGiX5-Smc','This emergency center is literally the reason that I am still alive!!! The astute doctors and nurses here took my abdominal pain seriously and found several ovarian cysts that were cutting off my blood flow and got me transferred for emergency surgery. Nurse John Bell has the best bedside manners I\'ve ever experienced and Jennifer D., the receptionist, has the most sincere empathy. This is the only emergency room in Paris, TX that I will go to.','2019-04-17 22:18:20.469000','2019-04-17 22:18:20.469000',5,'JoAnna Snowton','https://lh5.googleusercontent.com/-KSLwL0z-Dgg/AAAAAAAAAAI/AAAAAAAAAAA/w7QTKgBuXYs/c-rp-mo-br100/photo.jpg','8626688543755174284',8509),('AIe9_BEV1VP1woYvuPRixSBHlWg4DE5jWI12Y0bT0TOu-p62alpBdtFnl0ZK5SyhiOxUdt8UbJ363KscUUsmTmn7eWYvMiX_Un-o4Adim1cPgnBKYB-UeXI','Dr. Cavazos, nurse Dana, and Tricia were absolutely wonderful and patient. Took care of my son and explained everything.\n\nRegistration with Jesus was very quick and painless! He was very sweet and had a smile. The place is very pretty and clean! Very impressed!','2019-06-14 17:02:25.046000','2019-06-14 17:02:25.046000',5,'Elaine Aparicio','https://lh4.googleusercontent.com/-W9vPxq5L3QY/AAAAAAAAAAI/AAAAAAAAAAA/3-65LNRARmI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEV1VP1woYvuPRixSBHlWg4DIaFNAe2OVr6Ji0y9ResqP5o4op2fBcm5eadGsYg-m6LgMN2oDXfQDfIniAxrhdnJojSnD8QQal-ISlpNHCz1M6vc2w','Fast and friendly. They are very thorough and wonderful. I even got a green tea.','2019-05-16 16:59:05.126000','2019-05-16 16:59:05.126000',5,'Olivia Valery-Thompson','https://lh6.googleusercontent.com/-iYo1_zNU6b8/AAAAAAAAAAI/AAAAAAAAAAA/TxJMBwr4bHo/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4279),('AIe9_BEV1VP1woYvuPRixSBHlWg4dU9zSxYS2YAg0YEmY0lBLNUmUXt9Z8D5Y5UdzINf3ALAkDKDs4JvLaHLUfzdajFgDKrLqsI4FamO7IW92qrfy_UsqGw','This clinic is awesome. They accommodated me immediately and in a timely manner. All staff were very polite, professional, and informative. The lady administering the test was gentile but effective.','2020-07-20 20:14:24.492000','2020-07-20 20:14:24.492000',5,'cristine05mvp','https://lh3.googleusercontent.com/-0QVTYJWIEOQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmAs4PBxNhABKnHx3d0ZfYyxAyOlA/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22223),('AIe9_BEV1VP1woYvuPRixSBHlWg4dWs0HW3HwjqYxE926yRoS3Q0hJ6YVbuJucxsiTGia6hLBJIbCv6_Ny3Rx0vTIU2h96JwI6upThT-soRZNx-8ZazdX28','Great experience and the front desk person Mercy was a huge help! Definitely recommend and we were in and out in 30 minutes !!!','2017-02-12 20:19:37.933000','2017-02-12 20:19:37.933000',5,'Nicole Sitz','https://lh5.googleusercontent.com/-npZstZ87wcQ/AAAAAAAAAAI/AAAAAAAAAAA/Iuhucgr2cLk/c-rp-mo-br100/photo.jpg','14567670160750071148',1886),('AIe9_BEV1VP1woYvuPRixSBHlWg4Dyp3eWISY8QK8GGyVs1ezeZk484wGj7jBAl4vRH7NC9Z1IJikSTlDmioP9zawccNiGTMKoGbNW-fY952QNRtuvgNf_w','Always a hoot!','2018-11-26 19:45:46.805000','2018-11-26 19:45:46.805000',5,'craig hlavaty','https://lh4.googleusercontent.com/-WBkwYU8JSfw/AAAAAAAAAAI/AAAAAAAAAAA/5LCby4k862A/c-rp-mo-br100/photo.jpg','3511292162159714121',7553),('AIe9_BEV1VP1woYvuPRixSBHlWg4DYvRm2135p-dFxZ4mI_Z8LH4IY3YqXzVunWchpXGrHQlYmNnc2-kA5QseQ4e2aX51RSXgwJMEL-j6uHlUeDt5aMoWSs','I would highly recommend this place especially \nAlvean\nJoscelyn \nTraevis','2020-02-05 22:26:32.176000','2020-02-05 22:26:32.176000',5,'Gabrielle Francis','https://lh6.googleusercontent.com/-mDg6IEntJxU/AAAAAAAAAAI/AAAAAAAAAAA/aA9ydREZYKg/c-rp-mo-br100/photo.jpg','16389487648212004696',22626),('AIe9_BEV1VP1woYvuPRixSBHlWg4ehhhkon8z4NkU75lp8QKoqMfsFUqGxFCUJtD69KKY7FOIZ6KloFhV_FHYz73-XVi9em0JlPLbrQD2XDP4pr1vdNtGic','Dr. Dang , Keaire, Olivia, Jessica, and Eve did an outstanding job.','2019-08-17 15:03:05.986000','2019-08-17 15:03:05.986000',5,'Cristian Jiglau','https://lh6.googleusercontent.com/-IsswFZC6B0E/AAAAAAAAAAI/AAAAAAAAAAA/D9nrkDvZgJ0/c-rp-mo-br100/photo.jpg','3511292162159714121',7196),('AIe9_BEV1VP1woYvuPRixSBHlWg4ElF-rv4qHaaK2f10oj83EPeAzGsv4jVkJqVrHAXBEXYfiuU7S64WdVXSlqI-jfSXorgrPUj-n7FD5cw2uOAJcDNYxko','GREAT service! If your looking for the quick rapid Covid test, come here! Staff is very friendly & you’ll be out in no time! HIGHLY RECOMMEND!!! And let’s not forget the mention the sweet ladies at the front desk Mrs. Lorena & Mrs. Amanda, super sweet ladies!','2020-07-25 13:01:00.675000','2020-07-25 13:01:00.675000',5,'Kaylei Mallard','https://lh4.googleusercontent.com/-Cu9_HLwVIf4/AAAAAAAAAAI/AAAAAAAAAAA/72UCyO7Vxr8/c-rp-mo-br100/photo.jpg','16590124370714063921',22649),('AIe9_BEV1VP1woYvuPRixSBHlWg4Eq3ydIAOLwXWlka0vW2-K_zdE_PcR0rtmll4ChfWBLjrw8EzGHsO5s6eTDMpR0N01FtIaxu39pJzJq9RzWAn0tw41CQ','I am extremely impressed with this urgent care clinic. They were understanding and although I was there the whole night they always kept in touch with me on what was going on. I also appreciated the call a couple days later making sure I followed up with my doctor and if I had any other questions. As well as, I just received in the mail a thank you card explaining that I should soon be receiving an EOB (explanation of benefits) from my insurance provider. The attention to costumer service is by far the best I have seen in a long time. I highly recommend this urgent care.','2016-11-22 04:13:22.798000','2016-11-22 04:13:22.798000',5,'Erica ann','https://lh5.googleusercontent.com/-jma7p_OmCDY/AAAAAAAAAAI/AAAAAAAAAAA/U_y6-r2xSMA/c-rp-mo-br100/photo.jpg','17898197009688164559',5942),('AIe9_BEV1VP1woYvuPRixSBHlWg4evBfLLdJAcUKV9ctTmKGhjJ8ueNC3w-fgpj_K1ZTgo7-273OoxB8a2qwItSl_2WP2Qfw1Yt-BnujrMRbMik8lbGOp2U',NULL,'2018-02-02 16:11:58.393000','2018-02-02 16:11:58.393000',5,'Terri Esco','https://lh5.googleusercontent.com/-Use8nntNDz4/AAAAAAAAAAI/AAAAAAAAAAA/RK5kcf5Wjrs/c-rp-mo-br100/photo.jpg','14567670160750071148',1665),('AIe9_BEV1VP1woYvuPRixSBHlWg4EVSB5SE79n6pvTpPIVf6tzkFRNwQs2ZkrF-qL1PzVCQVlM0IcxyeZifG3OUB5DmpWf3DqOujzi6mwQ-YcvDbB-QLwQE','Everyone was extremely friendly. Great service!','2017-02-04 22:42:07.845000','2017-02-04 22:42:07.845000',5,'Saira Martinez','https://lh4.googleusercontent.com/-Ywjh2bN4Ij0/AAAAAAAAAAI/AAAAAAAAAAA/osYoaaholOM/c-rp-mo-br100/photo.jpg','17394740196501090048',5120),('AIe9_BEV1VP1woYvuPRixSBHlWg4FA0wWs1kKB9bDhrRBjay0gVPuW3HgLIf-HEnXSETahwJIH8Yw-Y3GC0HOxheeZVnl_luDESRiQq6Q_tJHlu0nI8SlRs','Clean, elegant facility. Super friendly staff that actually CARED about my pain. Most ER staff are \"so busy\" that you are just a number to them-AND they seem irritated with people who\'s injuries aren\'t \"trauma\". At SignatureCare everyone from the lady at the front desk, to the X-ray techs, to the nurse(s) and doctors...they all expressed a genuine concern for me. This place is by my work-nowhere close to my house-but I will DEF make the drive to come here for any emergencies that may arise. I barely waited 10min!! At any other ER I\'m sure I\'d have waited over 2-3 hours! (I went in with a broken wrist)','2017-08-10 12:53:08.613000','2017-08-10 12:53:08.613000',5,'Vanessa O\'Kelley','https://lh6.googleusercontent.com/-xyoGdYZXKgY/AAAAAAAAAAI/AAAAAAAAAAA/ZP77M2f7vKA/c-rp-mo-br100/photo.jpg','14567670160750071148',1775),('AIe9_BEV1VP1woYvuPRixSBHlWg4FAhaQdxJ_Qms03sM3RowYnICOl3yj7YLSPfZtXgi9agt0E30eNFceIyjMUvyZPKGocqeSMY9Jtt2HV1M23xfBEIotHY','Lizzie was prompt with the check-in process and there was a warm blanket waiting. Rad tech Eve was funny and friendly. Nurses Dawn and Agnes amazing , and Dr. Faig great bed side manner.','2019-07-08 20:12:24.492000','2019-07-08 20:12:24.492000',5,'Walter lafnette iv','https://lh4.googleusercontent.com/-d0ZhH21QmGA/AAAAAAAAAAI/AAAAAAAAAAA/nl13zB14WDQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7261),('AIe9_BEV1VP1woYvuPRixSBHlWg4FceM1k0SjgI4Se5lw8ZOR3H-qB_l1YIJRz8m2dLV7lmA5SNygEMRsADX_jP9OGmfh_gPoAPhLy-gpyE7SJUR-CTqePw','All was ok at my visit but I had tests ran and after calling for a week I was told that my samples were stored improperly and were not able to be tested. Luckily it was nothing too serious.','2019-05-30 00:35:01.301000','2019-05-30 00:35:01.301000',1,'Letta510','https://lh5.googleusercontent.com/-BNQkjktYBU0/AAAAAAAAAAI/AAAAAAAAAAA/7uiqMc4XoZ8/c-rp-mo-br100/photo.jpg','6521947413723274945',8251),('AIe9_BEV1VP1woYvuPRixSBHlWg4ffOVg2RFV0vQZMiFMegR_WwfYm4L0EIeSo_dcbupBdSwkS3aTqMmCv8mYe_Rb6datbUBoAZhD-5IzMnGxyZIMdMX_oE','Awesome and efficient service. Thank you Dr. Vakey and your staff!','2020-03-16 19:43:55.981000','2020-03-16 19:43:55.981000',5,'angela johnson','https://lh4.googleusercontent.com/-iyKW0mx5kkA/AAAAAAAAAAI/AAAAAAAAAAA/V49p7s2mKZM/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',21026),('AIe9_BEV1VP1woYvuPRixSBHlWg4GA75KZmUcyYuKl1pAYF7JwC3K-v9IJDOE3ivlQCEnxXuVC_7KuA4drC5eHlS6VVTUftzNUjpIMqqFCWsALba_CVsdek','Dr.o’malley, Alvean, Tricia, sibienne and Bryan all helped me out today and we’re very nice!','2019-11-14 22:17:20.403000','2019-11-14 22:17:20.403000',5,'MADISON SHERMAN','https://lh4.googleusercontent.com/-l1-F52lV45A/AAAAAAAAAAI/AAAAAAAAAAA/VEA9lkHjPbs/c-rp-mo-br100/photo.jpg','16389487648212004696',2699),('AIe9_BEV1VP1woYvuPRixSBHlWg4GBd-lMnFy0k9GsxvbSJRfwlY0XjP3-jSqmUdIPR_hbCCOl5-Z8_9JKSKmWhaHH2AT64ndN4qTaPBZ4EJ3ophf-OKOMo','Place is very good excellent work they treated my mother in law perfect','2019-05-27 23:43:22.492000','2019-05-27 23:43:22.492000',5,'Jesus Rodriguez','https://lh5.googleusercontent.com/-ALFKLI12DCY/AAAAAAAAAAI/AAAAAAAAAAA/HkwtcFTfWmI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEV1VP1woYvuPRixSBHlWg4ggASzq00PEAMmc_7xIoIOhRsiMAY3n3euwuxYR3GYcJxzg3vVyyL0na7cjaRRaRLzjtob5frLhjy_9XtYbqL5DlSutI','Facilities were clean and the staff was friendly. I appreciate how efficiently SignatureCare worked to get me checked in. It is clear that they care for their patients, especially Karen C., Dalia R., Lauren S. and Katelyn W..','2020-08-06 15:39:28.865000','2020-08-06 15:39:28.865000',5,'Bethany Holub','https://lh6.googleusercontent.com/-Hw3v5cvbREc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmdfSBSGgaZrq0YhpOG3ig61cDWzg/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22261),('AIe9_BEV1VP1woYvuPRixSBHlWg4gGntjjYatpgSwJF11QKbIjOsSGUP1UuF8xSG4pdRdQQoT2CbOQfyUI9AQBnWk0lrs4vvrXGYPiyF0lHhFUwHFu0opSU','Best staff ever, specially Dr Mauldin and nurse Dawn without forgetting the rad tech Jacqueline and registration Joanne \nI didn’t wait at all, they are very welcoming and efficient team, the clinic is very clean and kids friendly environment they even offer snacks and water & jus bottles for kids , I loved this place and definitely recommend it','2019-03-17 01:34:34.715000','2019-03-17 01:34:34.715000',5,'fatima mokrani','https://lh3.googleusercontent.com/-NPD5igyLpq4/AAAAAAAAAAI/AAAAAAAAAAA/FheWBn2pwig/c-rp-mo-br100/photo.jpg','17898197009688164559',5807),('AIe9_BEV1VP1woYvuPRixSBHlWg4GJkyNxGf6Y5CAZVH7vbtgjCzatgGFHQvkuh2JbQmpGCJGT5EFOveUTFyNXZQCFbmRbR6gvUq1ZIsX-JFUnbmmGLTgtE','First time coming to Signature Care, and it was a pleasant experience. We were welcomed by Sindy and Angela at the front. There was no wait time to be seen and everyone was very nice, especially Selina the nurse. I would recommend coming here if you\'re ever in need of an emergency room.','2020-02-06 21:33:15.109000','2020-02-06 21:33:15.109000',5,'Ulises Montes','https://lh4.googleusercontent.com/-O5rv0eDTuCY/AAAAAAAAAAI/AAAAAAAAAAA/ZpdJVaXkkDE/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',14031),('AIe9_BEV1VP1woYvuPRixSBHlWg4GxNyVI3tPRUzaG72sp1q0z5oafkAwhjx0N9jDq5Dt73pRdRI62m6Kmc2iFHTMogHZNTy2Jv50GkkcoofpD4Y9DETJH4','Had 2 kiddos in Texarkana ER today. \nBoth saw Dr.Yost and we had a whole team of pp. Courtney,Kara,Kara,Gunner and Tracy.\nThey were all supper wish they would take all kind of inc. I sure would be using them and not setting in hospital ER.. Everyone was so nice and made sure we had anything we needed. To make our visit the best it could be. This is want health care should be like again were they listened to the pt and not just putting everything in the computer. And listening to pt that knows there body better than anyone else. Thanks to the Texarkana stuff for getting everyone felling better.','2020-02-20 23:08:05.663000','2020-02-20 23:08:05.663000',5,'Teri Swanger','https://lh4.googleusercontent.com/-0cjODpaMgLs/AAAAAAAAAAI/AAAAAAAAAAA/hp9jYjAAXe8/c-rp-mo-br100/photo.jpg','3272657195432704501',14337),('AIe9_BEV1VP1woYvuPRixSBHlWg4gZel8wYCgrWqj69mqeu-fe80GIIxFTs5lUEbQCqwN3zSyarD1fQimCndoAAt0NXECG9ZKi8AKLOhosyG3POjsRQx9Yg','Great place. Have taken care of my family and I with the utmost respect and care anyone could ask for. The staff is very attentive and helpful with any and all needs.','2020-02-07 22:25:39.794000','2020-02-07 22:25:39.794000',5,'jose magana','https://lh5.googleusercontent.com/-GH3Tj5fdopg/AAAAAAAAAAI/AAAAAAAAAAA/Ss3GseF9L9o/c-rp-mo-br100/photo.jpg','8918455867446117794',14836),('AIe9_BEV1VP1woYvuPRixSBHlWg4h9zbUDltcN0FsVIW6MD_1X5vTumuM5DLHQB__RDt06OC1pzmS5Nzz8e8AJXJ26M6j-ilh26RZxVUAsTproYiSM2qwVQ','The place was very clean and the service was the fastest ive ever seen. The staff was very nice and even offered drinks and things of that sort. The language used was professional and immediately understandable. The went to all lengths to make sure you were comfortable. The team that helped me was amazing. (Dr. Nguyen, Nurse Robert H., Tricia, and Patricia.)','2019-08-30 15:36:16.408000','2019-08-30 15:36:16.408000',5,'Betanick','https://lh6.googleusercontent.com/-lhn3s0YfmJU/AAAAAAAAAAI/AAAAAAAAAAA/ei6coxCdx-Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2964),('AIe9_BEV1VP1woYvuPRixSBHlWg4HBYeZPoxyQjJ3xeNC_oeZIirJYKXDNsaZnOlar_hhrzHlpma9AshqgtwGr7-mDSQlmAhj_kTOR4giaJw5PUV-jgf1jg','Brought my Nephew with a high fever at night time and Kimberly P made sure we felt at ease with her patience and professionalism. Thank you Kimberly for being an outstanding representative of The Heights location. Highly recommended! \n\n- Tristan','2019-12-23 01:29:43.583000','2019-12-23 01:29:43.583000',5,'Tristan Morales','https://lh4.googleusercontent.com/-70PBHdarzNc/AAAAAAAAAAI/AAAAAAAAAAA/d-oylmLGOFw/c-rp-mo-br100/photo.jpg','14567670160750071148',1164),('AIe9_BEV1VP1woYvuPRixSBHlWg4hD_XVlezuEUXSzXok4R6dd9nM_z9uOfRw-MD2_fjrytiX7gVFizYdyZkOfaERJxxuybo6H2goQ0s6XYuk8-vXgdoGeQ','Awesome customer service from Brenda, Pam and Dr. Garcia! Super quick we went to the back in less than five minutes. Will definitely return!','2020-02-07 04:04:18.506000','2020-02-07 04:04:18.506000',5,'Ashley haywood','https://lh6.googleusercontent.com/-LTgVXZ5222k/AAAAAAAAAAI/AAAAAAAAAAA/iJzkVYxi2xI/c-rp-mo-br100/photo.jpg','8918455867446117794',14843),('AIe9_BEV1VP1woYvuPRixSBHlWg4hKs8EQV2R55wh7cXcZKVSHudwVJNcT3odHMhVXyNt46JvexBIDyyKc8KQxktJxJa9uabmoxfUh_43xBdVWZqjbvNRCM','The receptionist, nurses and doctors went above and beyond!','2019-07-25 03:34:32.826000','2019-07-25 03:34:32.826000',5,'Claudette','https://lh5.googleusercontent.com/-RXvezykZwmU/AAAAAAAAAAI/AAAAAAAAAAA/Jawlrem-d30/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1271),('AIe9_BEV1VP1woYvuPRixSBHlWg4hNZE1f4h264y_RobzjnZKbG2rtVw_Jc72opDS2-F6OPeBkTxq7OVXEKcagmuiOpRvDLOJmIfOg0BYmKNnEsT0cG9A8g','Great service and helped me more than I could ask for!','2019-08-09 10:00:58.404000','2019-08-09 10:00:58.404000',5,'Aj Martinez','https://lh4.googleusercontent.com/-rFYxck7qoCQ/AAAAAAAAAAI/AAAAAAAAAAA/0d7zHxEVHOE/c-rp-mo-br100/photo.jpg','16590124370714063921',3262),('AIe9_BEV1VP1woYvuPRixSBHlWg4Hxqzf2PP9auqLaqgoKl9Fya6F2Tze1MH7sMf8-GWcGSJgOCIWf-z44Nfyc4zG9Jlo23Kh4z4qhbtbqF8uIL28otVy-8','This was by far one of the best emergency centers I\'ve ever been to. The front desk clerk, Mercy, was extremely sweet and greeted me immediately as I walked in. The rest of the staff was cheerful and very kind. And the facility was spotless!','2017-04-16 17:30:26.992000','2017-04-16 17:30:26.992000',5,'Cody Taylor','https://lh4.googleusercontent.com/-FaAhlR6TG60/AAAAAAAAAAI/AAAAAAAAAAA/I1O0_xuh90o/c-rp-mo-br100/photo.jpg','3511292162159714121',7841),('AIe9_BEV1VP1woYvuPRixSBHlWg4iav23XRkPzpHQQMucYHn51NDb0a8-e5OamxE9MD3iUkhc-zTd7MirUYced8mN8twMPDMhlkN9FQwaq7HSLcspnXgay8','I have been to several urgent cares and ER’s in my life and this place doesn’t even compare. From beginning to end the staff made it clear I was a top priority. It is easily the best medical environment I have ever been in. The staff clearly love what they do and where they work and it shows. I won’t ever be using any other facility ever again. I would recommend them 100 times over. There’s not enough good things to say about this emergency room.','2020-08-01 21:07:32.213000','2020-08-01 21:07:32.213000',5,'Baylie Gomez','https://lh3.googleusercontent.com/-L-h9nEel59M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnMhx5-eehzfGB67BDJn8KXKoC_7w/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22110),('AIe9_BEV1VP1woYvuPRixSBHlWg4IbAhstyJwq-rv9Fn1bNffpAiFyXCFELuR99nokQwXZI6Zr2XJfT92IcQnqgDt1ZjzefQOYbAmjjjbyizN1kjRpbagL0','Everyone here was super friendly! The rooms were nice and there was practically no wait time.','2019-12-18 21:09:11.702000','2019-12-18 21:09:11.702000',5,'Mark','https://lh6.googleusercontent.com/-6i-uJIfAPD0/AAAAAAAAAAI/AAAAAAAAAAA/VLPLbsJ-Eh0/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4113),('AIe9_BEV1VP1woYvuPRixSBHlWg4ifT2vW0zKdpYEVzhLS55R4A5kh8PF3ChFCCfCwCZRJoLvLyLZ4b-yRc9nrmvfiVKH9mzRrs1i2eJnzTz9zKjaj9KSa0','Rebecca and Dyveliz at the front desk were very helpful and calming during a stressful situation','2019-08-30 01:57:34.917000','2019-08-30 01:57:34.917000',5,'Arianna Tijerina','https://lh5.googleusercontent.com/-ZpJFnIZCJUA/AAAAAAAAAAI/AAAAAAAAAAA/JdPZdT8D7o0/c-rp-mo-br100/photo.jpg','16590124370714063921',3231),('AIe9_BEV1VP1woYvuPRixSBHlWg4iiGQBnbkBe5_KFLecKme15z3WSb22VgBgPZBbx7qjcXbFc0LPcraiRhY7WYZcxb7hGEm6djPtOuKDLOSpibveR8l9zI','The staff here is just so sweet and kind. From the start Tanisha was kind and caring. Dr. A wrench was quick with her care, Shelly was sweet and gave great advice and Heather was gentle when she did the xray. Thank you ladies for making my bad day better.\nPlace is so great came back for a second time, lol. Seriously though love he staff here.shout out to Ashley, Dr. Cavasos Shola, Jessica, and Matee! Everyone was so so nice.','2019-04-05 23:20:10.905000','2019-04-05 23:20:10.905000',5,'Jamie Freed','https://lh3.googleusercontent.com/-tZx9birDtoc/AAAAAAAAAAI/AAAAAAAAAAA/sy3s6YfdtMs/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5777),('AIe9_BEV1VP1woYvuPRixSBHlWg4iJNyvEktTMf9qpZmKTbvttd6FaHjoBOLbeR6LDi-N2s2A7N-Yg7Afe_511e9P02gi9VRyIZXkp42T3gacNCnwUhR23g','Excellent care and service. As soon as you walk in and as you leave. Thank you to all the staff. Dr Patel. Tammi. And Norma','2020-02-23 17:47:13.054000','2020-02-23 17:47:13.054000',5,'Fernando Garcia','https://lh6.googleusercontent.com/-wWbbRwjPguk/AAAAAAAAAAI/AAAAAAAAAAA/TqOW6GptZTM/c-rp-mo-br100/photo.jpg','17898197009688164559',14134),('AIe9_BEV1VP1woYvuPRixSBHlWg4ikApRVFZlxXC6QxfxIN1YP6r2PVX0ArzhV2o0ZH3S0-zrYuW6mDsWCKgLAQrhE66M0tXNmj-TLw0HzBLf4RPcCHTQL4','I was seen immediately! Luke took his time and made me feel comfortable and get to know me! The rest of the staff Kim Davidson and Kim Domanski did the same! Thank you for making me comfortable while I wasn\'t feeling myself! Its hard to find that today!','2020-05-21 15:46:26.723000','2020-05-21 15:46:26.723000',5,'Danielle Mitchell','https://lh3.googleusercontent.com/a-/AOh14GiD7hrOoioqgVGTHmWhiWhlJkWQgj61qQI8mr2L=c0x00000000-cc-rp','3272657195432704501',21129),('AIe9_BEV1VP1woYvuPRixSBHlWg4IKcjgfh06uE7J0sJvB8T1cb7GRuZzy9M7qvtQJ_6oWVIm-oQ82ttCgEbGTQ2J1CE6jKBeHplRIH-ESTJif356wsasdU','(Translated by Google) It is the best place for the corona virus 19 tex and it is the one with the fastest and most effective results to give 1 like\n\n(Original)\nEs el mejor lugar para el tex del corona virus 19 y es el que tiene los resulted mas rapidos y eficases to le doy 1 like','2020-06-25 16:54:00.398000','2020-06-25 16:54:00.398000',5,'Jose Sanchez','https://lh6.googleusercontent.com/-J5m9YvpEK24/AAAAAAAAAAI/AAAAAAAAAAA/_hjldsNM2O8/c-rp-mo-br100/photo.jpg','16590124370714063921',21271),('AIe9_BEV1VP1woYvuPRixSBHlWg4IkiQnFmoKhu5Wl1n8Ejm0YcOYHyRaifdpHPAhUPvg3R7CsPffpOgil9Pi-1_5OS3qsQ2Av3BVAtpkefY2EeYJMJTU10','Fantastic staff, prompt service, I felt very well taken care of.','2016-09-27 13:04:03.736000','2016-09-27 13:04:03.736000',5,'Erin Grubbs','https://lh6.googleusercontent.com/-juMdB1aIM7w/AAAAAAAAAAI/AAAAAAAAAAA/smpy_CDLj7c/c-rp-mo-br100/photo.jpg','3511292162159714121',7935),('AIe9_BEV1VP1woYvuPRixSBHlWg4iLFX69qDkbe-aTK2DlsGZ4uau9-nsmLGdt-86xPKVjDW_-j2L4l9YXkjRmoup57kq564DXUI_Y_zaaUsyupz-RzSCpo',NULL,'2017-08-03 09:25:38.703000','2017-08-03 09:25:38.703000',5,'ava Nasrollahi','https://lh6.googleusercontent.com/-tCoyMP-o0ZY/AAAAAAAAAAI/AAAAAAAAAAA/1UxR3_yf0Lc/c-rp-mo-br100/photo.jpg','17394740196501090048',5005),('AIe9_BEV1VP1woYvuPRixSBHlWg4IPiaV4rVRsqfQUY7cTNtbu7jucW3q7QTW7juCWUjq8rz8esFAhqDhzAPflZZuG3mVaAsg4NiwyDhzh-KvwTB_4l8lP4','They were so nice and attentive to my daughter needs','2020-01-29 10:37:44.306000','2020-01-29 10:37:44.306000',5,'Comosha Thomas','https://lh3.googleusercontent.com/-F06SuW2HUrI/AAAAAAAAAAI/AAAAAAAAAAA/tvg05ZSONzA/c-rp-mo-br100/photo.jpg','16389487648212004696',10164),('AIe9_BEV1VP1woYvuPRixSBHlWg4iT7gvzEByKpO7sjSTUQwTqK5dpZBQ87zRqRbs9qQQy49v1EhonDXDBKa4yb0k3uqZ1JLa_LuHbO26iQm69mMeSd_T3k','I\'d just like to start off by saying that when I arrived to the emergency room it was very busy and the staff was still able to maintain friendly faces along with bedside manners. I explained to the register that I was in no hurry to get the other patients checked in which she did. Dr Ibarra, Mark, Richard, Veronica, and Yasmina were all very helpful and made me relaxed and less nervous. I just wanna say thanks and you guy\'s were excellent!!!','2020-01-02 16:04:26.017000','2020-01-02 16:04:26.017000',5,'Delicia Malveaux','https://lh4.googleusercontent.com/-T2H1i6PxQwI/AAAAAAAAAAI/AAAAAAAAAAA/HgKtOamkK6I/c-rp-mo-br100/photo.jpg','8679688254631342173',8663),('AIe9_BEV1VP1woYvuPRixSBHlWg4J_Cz9pSfARqOg-r6hzN5Vy3BMnb7u3D-wYm5O9kEBowJLeKo21RwEsfTihytM5dBc1BVSLjgc7AtKXa-SQL5jV_IcfM','Went for an unexpected illness and was treated very kindly and professionally by the staff here! Dr. Sylvester was very informative and calming during the whole process and very caring! Agnes (RN) and Kelsey (ER Tech) were equally as understanding and i formative during the process. They also offer CT scans and Tino was very professional and kind during the process. Lastly, Leslie the receptionist was able to help me set up payment plans and helped me understand the insurance process for billing. Thank you to the amazing staff here in helping me recieve medical treatment!!','2019-01-26 22:01:52.705000','2019-01-26 22:01:52.705000',5,'Val Salas','https://lh3.googleusercontent.com/-4LqHEobTn4w/AAAAAAAAAAI/AAAAAAAAAAA/3KlvKATaGP8/c-rp-mo-br100/photo.jpg','3511292162159714121',7451),('AIe9_BEV1VP1woYvuPRixSBHlWg4Jc3BTMxUChl2qNKlD1Ah-fW8400ZUlnBB5lZNSrpI8wUN6O2aNBuuu1hVu_x-SxGj5ocI80BeQgbZA52mWosQfUWXFE',NULL,'2020-07-26 20:29:52.060000','2020-07-26 20:29:52.060000',5,'armando rojas','https://lh3.googleusercontent.com/a-/AOh14GgSRQNxdJDSYgbyZDvgV6TTPADPre0RuvQOLjVI4g=c0x00000000-cc-rp','14567670160750071148',21866),('AIe9_BEV1VP1woYvuPRixSBHlWg4jEMnm2c68X27d0ac6mLgAVQoR9wRyc7BLAOgxDR542lwW6FLRswKtaLxbcouxPvIifmUYoadtjDi_e4eZUcgsqy3F6Q','Fast n friendly very helpful thanks to the hold staff that work tonight','2019-08-17 04:04:24.105000','2019-08-17 04:04:24.105000',5,'Bigg Lenn','https://lh6.googleusercontent.com/-T7tMSKDFOWM/AAAAAAAAAAI/AAAAAAAAAAA/4Who4KfogDQ/c-rp-mo-br100/photo.jpg','13486358490203335051',855),('AIe9_BEV1VP1woYvuPRixSBHlWg4jhI9H-YUklqeX1ihvqGrQhOJD4KQi0-fE42wJTBJboJ6KN3yjnfcXTTCGqaaqk-hyX9qS6saaoep8XGEQZin36DWrKM',NULL,'2019-06-25 02:55:55.907000','2019-06-25 02:55:55.907000',5,'Ageia Watkins','https://lh4.googleusercontent.com/-GMhBuPLuH3M/AAAAAAAAAAI/AAAAAAAAAAA/q34ar4DV3lA/c-rp-mo-br100/photo.jpg','12541597562633926366',491),('AIe9_BEV1VP1woYvuPRixSBHlWg4Jhp8s1Y7W6o8zYJK1rRGYc7Kd7h4LPPViMwPsFJXVfywpVltyXesCtfk9Ghnv5_KWarVchYZC6ZQXNgLoj6Huy-iNhY','Alvean and Sheresa and Tiara were all really great during my visit today! They were kind,attentive, and caring even during the chaos of the pandemic. Thank you so much for all your help!','2020-08-15 20:53:14.908000','2020-08-15 20:53:14.908000',5,'Molly Comeaux','https://lh6.googleusercontent.com/-ArfydwWrfbQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck0n8KEBGfUXiWpAZydqogR1g29dw/c0x00000000-cc-rp/photo.jpg','16389487648212004696',23046),('AIe9_BEV1VP1woYvuPRixSBHlWg4Jj1a_V7553_zwCtxe-Jgu0JtD8Ql239mBTnG2wxTFM9p-ycYaLKB2ZkhOet8twul38Cl1SmeAKyp5FuKBVRpTJ5A7kA','The staff at Signature Care Cypress couldn\'t be compared to any other Emergency facility. They are fast and friendly. Ms. Patricia C. was very sweet while signing in. She answered all my questions and let me know all the options I had in terms of payment. Dr. O’Malley was great as well he answered all my questions and listened to all my concerns. I would definitely recommend visiting them with any Emergency you have.','2019-12-27 19:47:43.830000','2019-12-27 19:47:43.830000',5,'GG Torrez','https://lh3.googleusercontent.com/-jVGTIrBkWsY/AAAAAAAAAAI/AAAAAAAAAAA/gEYGmSaJH-c/c-rp-mo-br100/photo.jpg','16389487648212004696',2507),('AIe9_BEV1VP1woYvuPRixSBHlWg4jl4lBOCHPGENJeiNCVu2E5-pi9DMJH032f4AukOZc0CsmZwU7R1jFBl5Bq8d3dvxTTzmUfHtmk9wplYonmsFe6rGisM',NULL,'2018-08-23 22:26:55.224000','2018-08-23 22:26:55.224000',5,'Layne Schmerin','https://lh6.googleusercontent.com/-69Lo3zFnXik/AAAAAAAAAAI/AAAAAAAAAAA/1jsaLOo_0W8/c-rp-mo-br100/photo.jpg','3511292162159714121',7610),('AIe9_BEV1VP1woYvuPRixSBHlWg4JQRqkR8nAenbUqIwVMZPYATHdGEvDn18sXWEk43WwoJ4WlYI5_KtUyXvknTRRmj01kQqQ6tGqg1eyiN5z37aK1-hkNE',NULL,'2019-09-22 22:07:59.205000','2019-09-22 22:07:59.205000',5,'Jina Vargas','https://lh5.googleusercontent.com/-G9ab7uKop4s/AAAAAAAAAAI/AAAAAAAAAAA/Z0ALqn-6khA/c-rp-mo-br100/photo.jpg','6521947413723274945',8131),('AIe9_BEV1VP1woYvuPRixSBHlWg4JvlL_ljvWc9B3Dxi9C37y-qInLf51jDLFgxqD_viiCY9AntQXSA_VeKlehGrc8w-_0TZE7N5IpckQRziV0jaT2UVEvA','My experience was better then any other hospital that has service me . Shouts out to Marcus, Dr. Wang, and Ekaterini .','2020-02-03 21:46:08.798000','2020-02-03 21:46:08.798000',5,'Morgan Alewine','https://lh6.googleusercontent.com/-j4hBhmYu2ik/AAAAAAAAAAI/AAAAAAAAAAA/K1Vcg9BhSYE/c-rp-mo-br100/photo.jpg','16389487648212004696',22631),('AIe9_BEV1VP1woYvuPRixSBHlWg4JXqtE-4hnslyOLX8vBy0EBW29xTl-fqEFdJeohTqM19ibiI6TKk2FE8yD2Qtx3F8tPiLmDx0yuaCR8ZhjXcJJxgYlL0','Great ER!!! Very professional and nice front desk.','2018-12-23 17:34:40.409000','2018-12-23 17:34:40.409000',5,'Jerall Farris','https://lh5.googleusercontent.com/-Uyyw4MtI8BE/AAAAAAAAAAI/AAAAAAAAAAA/e-xOdtL3_Os/c-rp-mo-br100/photo.jpg','13486358490203335051',1121),('AIe9_BEV1VP1woYvuPRixSBHlWg4jXwFm3R87_3pM9YJkepTYcdhH44Si73EIaE9zlKi1z8YY-TIgGCKYjo5ipBcfKjDJwYQCwg4Sy4CB-VAIu2SP4QbgCU','The staff was so helpful and kind. All procedures, and why they were doing them, was fully explained. The staff this morning was great! Delicia, Blake, Sonle, and Dr. Alljou. The staff last night was also wonderful, especially the nurse and Dr. Ali. I highly recommend this facility!','2019-10-18 14:13:40.634000','2019-10-18 14:13:40.634000',5,'Janis Donegan','https://lh5.googleusercontent.com/-BuaZVlVSXBo/AAAAAAAAAAI/AAAAAAAAAAA/17fKixQVMhA/c-rp-mo-br100/photo.jpg','8679688254631342173',8790),('AIe9_BEV1VP1woYvuPRixSBHlWg4kbj6Dq3Yjpay8_iCnmKlajV0V-7Tt_7BzPEiECJqNR_TB4EqkOU3ln13B3uebQF_VBfubv_8LDQpbvJzwhaR2cWaClM','The staff quickly emitted me, and started the procedure for my foot injury before I even had time to sit and fill out paper work! I was in and out in about an hour. The nurses and doctor were professional and courteous and the building was well lit and clean. Excellent!','2018-11-28 14:40:17.749000','2018-11-28 14:40:17.749000',5,'Colby Wulf','https://lh6.googleusercontent.com/-ghWibAHgdvo/AAAAAAAAAAI/AAAAAAAAAAA/nMNEQpWI78I/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1454),('AIe9_BEV1VP1woYvuPRixSBHlWg4KjaOU-RNW2v4CrHx6lb1dpalRZN5RkLeL-IyEGdDZqYne_a_Cl-whIooXEcWeOSCANYdNzgLGszGeq8RwuWtEnzQPTg','I\'ve been here a few times and every time i come they are always so helpful and kind with my children.\n\nToday Dr.Nguyen was fast in his diagnosis of my sons strep throat and flu virus. Other employees were very nice Rollie,Natalia,and Theresa.','2020-01-12 04:05:05.593000','2020-01-12 04:05:05.593000',5,'Lily Mejia','https://lh5.googleusercontent.com/-olcVl-160C4/AAAAAAAAAAI/AAAAAAAAAAA/Gm0H3DLe4C8/c-rp-mo-br100/photo.jpg','8679688254631342173',9527),('AIe9_BEV1VP1woYvuPRixSBHlWg4Ko79xW3E6h7G5a-L93n654xZJh6btWsEN1-dGo3f8DIo4bCVkyjlVEsGonFrD0QlkknR8Mq9dD-kH2n_0AEcoy8gCGE','The people here were rly nice and helpful! Everything was excellent! And I appreciate Ms Carly for helping us out! ❤️','2020-07-07 07:30:31.222000','2020-07-07 07:30:31.222000',5,'Jocelyn Clifford-Hood','https://lh3.googleusercontent.com/a-/AOh14GiWSXRLDb_4IJ1v7D0x8IAib44yCts4pXomlcvyCPM=c0x00000000-cc-rp','12541597562633926366',21295),('AIe9_BEV1VP1woYvuPRixSBHlWg4koKkukknOeOYMRplyj-PVgMnsFstN0KP6R8owAZshLG0QjFjkU6bZlhGgFjl01nBJIFnzIIrdyfui6L_aL7J7r0XY8k','Dr. Cavazos, Delicia, Duke, Yasmina, and Waldo are truly welcoming and spot on. I highly recommend. In and out service.','2020-02-05 20:30:20.771000','2020-02-05 20:30:20.771000',5,'Jacinda Lister','https://lh5.googleusercontent.com/-4VsibQIpuH0/AAAAAAAAAAI/AAAAAAAAAAA/O4gfoUmFFsE/c-rp-mo-br100/photo.jpg','8679688254631342173',14756),('AIe9_BEV1VP1woYvuPRixSBHlWg4kr8tO1gEoKZKzySEgWrz-X-2eOTFSKm8-YQvLp13KXVcyQjDBUPiI7LHC8n2unCt3LolAG2pnyomxGuv5VBmGEiocfE','Great staff friendly & quick!!','2019-10-28 01:43:56.009000','2019-10-28 01:43:56.009000',5,'Brianna Guzman','https://lh6.googleusercontent.com/-feVnYziczEs/AAAAAAAAAAI/AAAAAAAAAAA/yQUpB196FrY/c-rp-mo-br100/photo.jpg','13486358490203335051',760),('AIe9_BEV1VP1woYvuPRixSBHlWg4kRdqNT8yDvOmIFcLlGigGH2aM1FPLxolvbk4phy9Ctn5HBDbQON81cwF19iWkzUlG4007s7Xro9jMTrbtHMOjdCELUU','Great experience from the moment you walk in it has a family atmosphere all the staff had a welcoming smile and was more than willing to answer any questions. We only had to wait about 5 minutes to get treated. Highly recommend this place. The great staff was Cristina and doctor Jones, Shaunda with registration and Linda and Christopher great staff all of them.','2020-01-12 16:37:35.564000','2020-01-12 16:37:35.564000',5,'Samantha Martinez','https://lh6.googleusercontent.com/-bCHWSHGn9Tk/AAAAAAAAAAI/AAAAAAAAAAA/LVoAmOcF_n0/c-rp-mo-br100/photo.jpg','16891069708558046635',9554),('AIe9_BEV1VP1woYvuPRixSBHlWg4KRfEXf3aTLj0vuxd_yycgFsWCZbApcUL3vbtrDOi-KbcFljuo4js5h6SvA59Ptr2mrqEAg-Khk-4ehg_SezLZyoSNSQ','Awesome staff!! Very friendly and considerate, they did take a little while but overall an awesome experience','2020-01-28 00:44:01.563000','2020-01-28 00:44:01.563000',5,'Zierre Spencer','https://lh5.googleusercontent.com/-XgbqLO4T6Mc/AAAAAAAAAAI/AAAAAAAAAAA/UHMHIKw1yCw/c-rp-mo-br100/photo.jpg','3272657195432704501',10270),('AIe9_BEV1VP1woYvuPRixSBHlWg4kRTTzGs74jC0NLVK1nrGbeIYJWjDdgtpLPnx3vofdNUd0Cr9iQC5Tp5kXsdh5HpXPNpEzHxhjc8DYpZUM9UrORfKLYE','Greeted carside by uniformed security if I needed help or wheelchair. In-processing was a breeze. Taken back before I could fill out paperwork. Waiting room is smaller (10 people) but clean. Clean and updated rooms for examination. Prompt service, friendly, and informative. Check-out was even easier. In and out in 40 mins for 2 stitches. Will come here from no on when Urgent care can\'t complete ER tasks. **Side note: urgent care can\'t do stitches to the face and claim an ER or surgeon needs to do these. ** Apparently the security company is brand new for 2017 and the ER staff love them.','2017-02-01 04:34:47.773000','2017-02-01 04:34:47.773000',5,'Chip','https://lh6.googleusercontent.com/-nXRnWG9CIX4/AAAAAAAAAAI/AAAAAAAAAAA/FwRbKL7X6SM/c-rp-mo-br100/photo.jpg','14567670160750071148',1900),('AIe9_BEV1VP1woYvuPRixSBHlWg4kTbTsWVVaM55P0Yw9PD6a86P5JMXufdPzUOLbNEXaxINmfjhgVxqosoCwUCcH7rLW4iZWvDQFCdT7mFjeZ5HJjDqM5s','Maya the receptionist was so warm and welcoming def recommend! Will be back!','2020-02-28 14:36:20.561000','2020-02-28 14:36:20.561000',5,'Z Diamond TV','https://lh5.googleusercontent.com/-jA4dBg8N3p8/AAAAAAAAAAI/AAAAAAAAAAA/xqUixJ0jEwc/c-rp-mo-br100/photo.jpg','12541597562633926366',13329),('AIe9_BEV1VP1woYvuPRixSBHlWg4ku2sEzEDIEM-5FaoSCcz8Rpa-uX5hCxXTDOUxI15sMfEqxf2ZEfTYUBOuqH4z--ZqsTmSwwW5On_eiYMgHuohSzjlGM','My experience here was great the environment was nice, and my nurse manny made staying here be more comfortable when he always checked on me and to make sure if I needed anything or not.','2019-01-22 18:15:16.548000','2019-01-22 18:15:16.548000',5,'johnny johnson','https://lh5.googleusercontent.com/-qk58qtqnGHI/AAAAAAAAAAI/AAAAAAAAAAA/4AGlSWUlljY/c-rp-mo-br100/photo.jpg','6521947413723274945',8317),('AIe9_BEV1VP1woYvuPRixSBHlWg4KU53Iql_HA5lnOVP-UtaPb-A-QymvfG0YrwN9GssaUyIwjZ4nUGoxa9jEb41XHXb-sCpePS-7qFXLxX8wC6VpOQAIVc','Doctor Huerta came in and spoke with us five times during our hour and a half visit. Nurse Savanna explained everything she was doing and was very sweet. The rest of our team did a great job and we would recommend this location to our family/friends.','2019-05-22 14:31:52.787000','2019-05-22 14:31:52.787000',5,'Jennifer Gentile','https://lh4.googleusercontent.com/-EAAQD3kDWqw/AAAAAAAAAAI/AAAAAAAAAAA/Rbw5gLtHE1Q/c-rp-mo-br100/photo.jpg','13486358490203335051',1002),('AIe9_BEV1VP1woYvuPRixSBHlWg4kWoDH4lMaEpOlejZ2NnTgVfGVVQqPx4MnR6c7L_KkrG_9CRVAVXJ5ZdxK387vieOBSGNguTAfmLCI3lu8szwo06Sc6Q',NULL,'2018-09-18 00:28:03.783000','2018-09-18 00:28:03.783000',5,'Nezar Akbar','https://lh6.googleusercontent.com/-SgeXj2B0bX8/AAAAAAAAAAI/AAAAAAAAAAA/_vJrLL-akyk/c-rp-mo-br100/photo.jpg','3511292162159714121',7594),('AIe9_BEV1VP1woYvuPRixSBHlWg4l2P8V0IgZKkRbH9FWNkN1nLBEjKI0JK6D8Cy1yTBX-3bJTEHr3_BaYAxZ4OVjU0fNUJrSMpfH0VO10V2byND0JV0FMc','Dr Spumante was very concerned about my well being beyond the visit. Gina and Natalie are great nurses who made me feel welcome and well taken care of. I have been to other Signature Care locations this is the best one yet','2019-09-17 21:55:13.042000','2019-09-17 21:55:13.042000',5,'Kayla Peavy','https://lh4.googleusercontent.com/-C5qc1QnJLXE/AAAAAAAAAAI/AAAAAAAAAAA/OwTi7CFCy8c/c-rp-mo-br100/photo.jpg','14567670160750071148',1234),('AIe9_BEV1VP1woYvuPRixSBHlWg4L55veLy8F9yiNsgu5Zovx4Kimlcn71OWUlg_njdAGzdS7PhoviKbpWMllV85uRCfljGW-DalIogmz0nX6j0tOv5ukI8','Fast care. Really great docs and staff. Much better than a trip to the ER.','2020-02-01 14:51:30.434000','2020-02-01 14:51:30.434000',5,'Clete Goetz','https://lh5.googleusercontent.com/-YS6W-gNAHbM/AAAAAAAAAAI/AAAAAAAAAAA/kOWuGnSCNcM/c-rp-mo-br100/photo.jpg','2694018788013845459',14258),('AIe9_BEV1VP1woYvuPRixSBHlWg4LdjSF6qO5E67LOQcDdJZpXDKvHcovW9VnbFRQ4tvvdiLBWLZdCfQoUmy5WF7CJh8AqNG4igfMsWGwG-i7kycFczfnOA','The staff was very friendly and Lucas was very helpful','2020-01-20 12:53:07.035000','2020-01-20 12:53:07.035000',5,'charles beasley','https://lh6.googleusercontent.com/-K14wUiV5wWk/AAAAAAAAAAI/AAAAAAAAAAA/fvDB-MYsKVo/c-rp-mo-br100/photo.jpg','3272657195432704501',10004),('AIe9_BEV1VP1woYvuPRixSBHlWg4LEGsPpapEdM6BpGYy99TxFwjUXU2hTcySagh9Q8MaY3PRV_BfORpxfeyBSGtaUm5tr0F0ZGcofFeYeXRMVm6CxLrofw','I hate going to the emergency room, but this staff was amazing and made my time here enjoyable. Kat was so sweet and friendly. Diamond and Natasha at the front desk were friendly and patient. Dr. Jones was funny and caring. Frank was great as well.','2019-07-04 03:56:11.496000','2019-07-04 03:56:11.496000',5,'Kristian Stewart','https://lh5.googleusercontent.com/-pHt87m4WWvE/AAAAAAAAAAI/AAAAAAAAAAA/BB9wGTf0OAE/c-rp-mo-br100/photo.jpg','2694018788013845459',6118),('AIe9_BEV1VP1woYvuPRixSBHlWg4lErEEzaIOgHsTSI01NFBHH_0FGrriA26sHGx9l3gsnWKWdRIBd715dKx_HLl-nb42E-FsYhh4aYiCGx84-c3pRhI7XU','Thank you so much to Dr. Faig, Nurse Kristina and Radiology Tech Quyen for your fabulous service and care for me!\n\nYou all were very nice and made me feel at ease even while I was in pain from my accident. Thank you, thank you. I will recommend this place to my friends and family.','2019-12-31 20:26:21.175000','2019-12-31 20:26:21.175000',5,'Cam Chau Hoang Nguyen','https://lh4.googleusercontent.com/-x8Z1mdtqbDI/AAAAAAAAAAI/AAAAAAAAAAA/TTbMuccSDUA/c-rp-mo-br100/photo.jpg','12541597562633926366',275),('AIe9_BEV1VP1woYvuPRixSBHlWg4LopV-WveaOLJ1RBhfbarvMavi7R4OPbiIIN5L7lnBUGWccAfD8WxnZbPnabjWJfs1CyMVh-g2-I5AvftGSid_-EMLpk','This is my second visit and let me tell you its been nothing but amazing doctors and staff are very friendly and caring','2019-07-09 07:33:07.549000','2019-07-08 14:49:57.854000',5,'Joel Rey','https://lh6.googleusercontent.com/-_zlH_GtgLok/AAAAAAAAAAI/AAAAAAAAAAA/S_pDUSUb1gw/c-rp-mo-br100/photo.jpg','14904078213800803294',2117),('AIe9_BEV1VP1woYvuPRixSBHlWg4Lqvv76gzNf7SKx0qUz-pc75-zAh9t0FIkeqQ5DiztsIchPbcU6UzaLOTugNimRuAnZiCmIRikageve7FycZ7GKM4_jA','Very friendly people in general. The waiting time was awesome , I had not even finished with the paperwork and they called me in. If I\'ve ever have an emergency again I will go there without a doubt!','2017-02-22 03:59:41.644000','2017-02-22 03:59:41.644000',5,'Rosmary Jimenez','https://lh4.googleusercontent.com/-_L6wfwCfY6Q/AAAAAAAAAAI/AAAAAAAAAAA/H7iBVJJjAuI/c-rp-mo-br100/photo.jpg','17394740196501090048',5108),('AIe9_BEV1VP1woYvuPRixSBHlWg4lRVmXxR_pYljWbsP1OwJZ8tptBeM0deLBAC_1JA2LsRDPNUgtWmKyC3c3aZoCNgP84SBKubCz6PJce9plSnpzv6OWrg','Friendly, helpful and thoughtful staff. They went above and beyond and we were definitely impressed.','2019-12-16 21:02:15.340000','2019-12-16 21:02:15.340000',5,'Shannon Campbell','https://lh6.googleusercontent.com/-LQUJQhuPHzA/AAAAAAAAAAI/AAAAAAAAAAA/lAmT9hyjzso/c-rp-mo-br100/photo.jpg','16891069708558046635',4117),('AIe9_BEV1VP1woYvuPRixSBHlWg4LvxKsmrmeZM-W5ZjzdyUVUlH22IrYTgdZN8SubGFENwATBaVEEY9wLagyhvGgRuFQnBxK6A87TahZsIO3WR5Kd9Buu4','I had a wonderful experience here. Usually some physicians do not really acknowledge you when you walk into their office/clinic, but at this location, everyone including the physician greeted me as soon as I walked in until it was my turn to be seen. The nurses, x-ray tech, front desk, (whoever else I unintentionally left out sorry lol) were all welcoming, kind, and always smiling. That\'s what patients need to see to ease their pain and malaise. I\'m so happy I chose to come to this location and do not regret it one bit. Even better, I soon as I sat down it was already my turn! Most importantly, everyone including the physician did an amazing job because I came to the ER with pain and left pain free and joyful so you know they are also very experienced! I recommend this location to everyone and wish I could give it like 10 stars. Last but not least, this location is extremely clean!','2018-04-09 05:07:56.953000','2018-04-09 05:07:56.953000',5,'Tracy Chanthavong','https://lh4.googleusercontent.com/-V1pxL1CoNMs/AAAAAAAAAAI/AAAAAAAAAAA/KxZh63l5phk/c-rp-mo-br100/photo.jpg','17394740196501090048',4862),('AIe9_BEV1VP1woYvuPRixSBHlWg4M-Wd6izhpTCj39rwfi2gB36I71ZzC-z7bSOHD05dsUOPvFeOqvnMEsxmBrIJ4Zi5eT1eLwAzcQldJ2Nz5XwZ_cXg1B4','Great and Friendly staff. They were quick to get me in a room and got my vitals within seconds everyone working is very kind and caring. They also ran x rays and an ekg to make sure my heart was ok. Thank you Doctor Pham Nurse Sarah, Laura, Elaine and Tanishia you all made me feel at home and comfortable in dire situation.','2019-10-18 09:25:09.654000','2019-10-18 09:25:09.654000',5,'SBC TheLostTapes','https://lh6.googleusercontent.com/-LvXELHTou04/AAAAAAAAAAI/AAAAAAAAAAA/e2MwgLyFb-c/c-rp-mo-br100/photo.jpg','17898197009688164559',5498),('AIe9_BEV1VP1woYvuPRixSBHlWg4MGkpyVlVFTsXr3dyIe-hdc1Ri7mfzmhQsl4WoED8XRE7GU4JGOzsIEEBAFqthqYbeWVZxiaeRz6zCtxvnQBmSVkbuZI','The team was very nice and we were attended quickly. The facility is clean and the Doctor, nurse and tech were very helpful.','2019-08-24 22:01:13.939000','2019-08-24 22:01:13.939000',5,'Judy Lopez','https://lh4.googleusercontent.com/-sMwUuEDZBpI/AAAAAAAAAAI/AAAAAAAAAAA/gyTD-0GI6T8/c-rp-mo-br100/photo.jpg','16389487648212004696',2979),('AIe9_BEV1VP1woYvuPRixSBHlWg4MK0QfimFW1bSb-VlYkN1N1fIt5sX6B8ZrG-1s8i8PKFZ_tg1zi_wQmVvtDnkfFnhGQFWtQto1ASVWkkFPKnWSskVNu8',NULL,'2020-03-17 15:21:05.534000','2020-03-17 15:21:05.534000',5,'Kari Marshall','https://lh6.googleusercontent.com/-BdkfqXX-oQM/AAAAAAAAAAI/AAAAAAAAAAA/QJN0xmliCSU/c-rp-mo-br100/photo.jpg','8679688254631342173',21208),('AIe9_BEV1VP1woYvuPRixSBHlWg4Mq07aLq9m5ZsVo2X13OvhvNrobIXpNyWf9rf1GzZkuXYbrz6T1Ie1wqbojaiKX7RbDemUz2KB9m51qsOoxM5iQhDzXU','SINCE IVE BEEN IN HOUSTON IVE HAD THE WORSE EXPERIENCE WHEN IT COMES TO ER, TODAY I TRIED SIGNATURECARE CYPRESS LOCATION.. I WAS IN AND OUT IN 20 MIN THE WHOLE STAFF WAS AMAZING DR. IHEME, ALVEAN, MARCUS, JOCELYN, and OLIVIA... I WILL DEFINITELY BE BACK IF I HAVE ANY MEDICAL ISSUES THANKS GUYS','2019-12-04 15:04:38.390000','2019-12-04 15:04:38.390000',5,'LaSedrick Toles','https://lh3.googleusercontent.com/-c5FQTiW_WII/AAAAAAAAAAI/AAAAAAAAAAA/WUGROKwu1rM/c-rp-mo-br100/photo.jpg','16389487648212004696',2584),('AIe9_BEV1VP1woYvuPRixSBHlWg4msqRnUTL175mmeaUKFe2VL2sjxl0Y3N-9Uv-j-3_EeYXzIXTbii41ajxZom8Hg0bC7NDbflR4cRHzPgaiZ9Wab1xFaw','I was treated with nothing but kindness and they were very fast. Okarys, Rebecca, and Rebecca V we’re all very friendly.','2019-12-06 00:50:09.245000','2019-12-06 00:50:09.245000',5,'Kaylyn Smith','https://lh6.googleusercontent.com/-3XgeBc6Uk_g/AAAAAAAAAAI/AAAAAAAAAAA/H-MmK5JfTPs/c-rp-mo-br100/photo.jpg','16590124370714063921',3054),('AIe9_BEV1VP1woYvuPRixSBHlWg4N02Y354dC8VxVAMIvS_0OUuRppBagbs5KRQF5HEk8nhjQICbTKH4ANedW78DoPApAalEEHC-cnLaMU19DV5z8_sFk_0','I came in with a very bad cut on my foot and the staff was so sweet and nice ! Amy was so sweet when i walked in was very helpful getting me a wheelchair. Nurse Rommel was VERY helpful with cleaning up my wound and dressing it. Dr Patel was great with doing my stiches and helping me out!!! They radiation tech and the er tech were also very sweet !!!','2019-05-07 05:02:04.919000','2019-05-07 05:02:04.919000',5,'Lil Tiaa','https://lh3.googleusercontent.com/-ylEvkki1C7U/AAAAAAAAAAI/AAAAAAAAAAA/3gYLv9x57oo/c-rp-mo-br100/photo.jpg','3511292162159714121',7332),('AIe9_BEV1VP1woYvuPRixSBHlWg4n0gZE7mMzneaEkGZ2c2QSkFSprugOp5qfH0h6jvQfh7jNiq2UO4WNWUOKjhgLamJgHgoCnbWuBwMTUKQIEWx2JzwXUI','My wife and I had a great experience at the Westchase location. The medical staff (Dr Nguyen, Kristina, Tino, Nelson, and Maya) was very professional and kind to us. They took care of us promptly and effectively, and gave us all the information we needed at check-in and during the medical evaluation. The location is new and clean. We would definitely come back whenever we have to.','2020-02-22 15:19:25.563000','2020-02-22 15:19:25.563000',5,'Jose Villa','https://lh3.googleusercontent.com/--NJe9v_tJFQ/AAAAAAAAAAI/AAAAAAAAAAA/aR05llcHdjU/c-rp-mo-br100/photo.jpg','12541597562633926366',13356),('AIe9_BEV1VP1woYvuPRixSBHlWg4n4KYAOvHOwUWBLAQvThnS7IN40IWBUV1MvaSe3lURIJW19OT5HIPoboqqvLheOYOdKFbfkuiSlGiCumAh6WFdnsJe1o','Everyone was very professional and caring. No waiting like a hospital ER. They treat you in a timely manner and send you home to rest. I will recommend this place to friends and family.','2019-12-19 18:40:24.371000','2019-12-19 18:40:24.371000',5,'Pamela Cornelius','https://lh3.googleusercontent.com/-M7YMsBE8ZhQ/AAAAAAAAAAI/AAAAAAAAAAA/KbIiNvRjf-k/c-rp-mo-br100/photo.jpg','2694018788013845459',5980),('AIe9_BEV1VP1woYvuPRixSBHlWg4NaYhZ_swE2tJ50P3U0kNUmkL2a5_ph-pwgNRBwts_5rERJ_BqCxprJ6NnE2u3zvsnL42rQ6Ic5NBWaH651_P6Gj2mbY','Made an unexpected visit to the ER and although the circumstances were bad, the experience was amazing! Everyone was so friendly, informative, and respectful. The receptionist, Rebecca greeted me with a smile and quickly got my paperwork together and had me back in no time! Thank you Gabriel and Kathleen for taking such good care of me, you guys are awesome!','2018-02-05 07:01:54.870000','2018-02-05 07:01:54.870000',5,'Matthew B','https://lh4.googleusercontent.com/-HuK8G2mHzDU/AAAAAAAAAAI/AAAAAAAAAAA/L9yeQ0SiQSo/c-rp-mo-br100/photo.jpg','16590124370714063921',3866),('AIe9_BEV1VP1woYvuPRixSBHlWg4NbxO67p6rQ2H9nOYRfubnM-ry2OB1rGov5FEwhFvHSKIyWnZMoNkciyNvHZBoQbpQ37H6-l4Fae0A5L441HDUcCnsFk','Gus was very Funny end quick. John was very Professional ans Doctor Chen was helpful ans sichere.','2017-06-17 03:36:58.236000','2017-06-17 03:36:58.236000',5,'Germaine Obas','https://lh6.googleusercontent.com/-VvEpam6LUr0/AAAAAAAAAAI/AAAAAAAAAAA/eDUmRa0oOxY/c-rp-mo-br100/photo.jpg','17394740196501090048',5034),('AIe9_BEV1VP1woYvuPRixSBHlWg4nDgw92H-ZvHU7W5DsQkwftNVNDK9LP0CXdiKTmWJnis_qfOWIrwf7zsDQR1Ixtbmn2QwV6LIguZwjvHEeuUfkunEt18','My experience here was so great! Big thank you to all the nurses, doctor and Earl Hines for getting me in and helping me out quick. I totally recommend this ER and would definitely come back if needed!!','2019-05-27 07:10:47.645000','2019-05-27 07:10:47.645000',5,'Estafany Marenco','https://lh4.googleusercontent.com/-JW63S8bZchY/AAAAAAAAAAI/AAAAAAAAAAA/2s0by7vPYfM/c-rp-mo-br100/photo.jpg','16891069708558046635',4266),('AIe9_BEV1VP1woYvuPRixSBHlWg4NDPQy5n4YnOLJbtL5Qt7AxjTHhhOgso6Pr4BUhSEeV8_4xwU_tZtY7pBQ0FjIbqiEQYLBJz2-4xf1rVvZJ5NPwsdGNc','Took good care of me after accident. The team of Doctor Cavazos, J: Nurse Sarah G.: Rad Tech, Grace: ER Tech Elaine, M and Registration , Tanishia, W. work to provide great care during my time of pain and suffering from the injury. Job well done. Keep up the good work.','2020-02-20 14:16:12.798000','2020-02-20 14:16:12.798000',5,'Peter HL Farquharson, DBA','https://lh3.googleusercontent.com/-NMmXxlc1mJ0/AAAAAAAAAAI/AAAAAAAAAAA/gaFVq3odisg/c-rp-mo-br100/photo.jpg','17898197009688164559',14151),('AIe9_BEV1VP1woYvuPRixSBHlWg4ngzSAyge6ev_rz0tIJzvn1eSNRt0ilSfC1VKcOnJkbu-Hxht4DTiCcf0kOcVy7Sv8Y4Kj3OFdTnf3DVmZxsJWelCGLM','Very good service','2019-08-11 02:59:48.941000','2019-08-11 02:59:48.941000',5,'H. Mesopotamia','https://lh4.googleusercontent.com/-uTl7F2i_A2Y/AAAAAAAAAAI/AAAAAAAAAAA/sIiAsD4Tkas/c-rp-mo-br100/photo.jpg','12541597562633926366',461),('AIe9_BEV1VP1woYvuPRixSBHlWg4nPRoFI2JqSXQD1PqzggcHluIUoTX_M_-eHaU9rYREhmcdrPCZLsOn-9xXip-VJe57w-2gAKIxD9zgIJRJlGsBHb74q0','Fast professional and helpful thank you Vanessa','2020-06-03 00:25:56.062000','2020-06-03 00:25:56.062000',5,'Jose Vasquez','https://lh4.googleusercontent.com/-axdUIz0u7s8/AAAAAAAAAAI/AAAAAAAAAAA/qgP_SDc0_98/c-rp-mo-br100/photo.jpg','16389487648212004696',21974),('AIe9_BEV1VP1woYvuPRixSBHlWg4nsdaj1ZXPp1jSJtCOPe0MH4XWYr-INgIcvOfJn3jsKOgSaEVb6ftSljMksvyan4j87nYnOWPSsyQHRoS3pDJN97O5rg','All the staff was very friendly and caring.would recommend everyone to visit if u need urgent care..seen by doctor within 5 minutes.gr8 job by other staff as well.Thx.','2018-01-26 16:50:20.947000','2018-01-26 16:50:20.947000',5,'Mathew Thomas','https://lh3.googleusercontent.com/-y1cu3bOGumg/AAAAAAAAAAI/AAAAAAAAAAA/xyqOXvn5RN0/c-rp-mo-br100/photo.jpg','8918455867446117794',9297),('AIe9_BEV1VP1woYvuPRixSBHlWg4nT2TnV1Tol3eTgz8IPCrzKBPhpGjoqgPHiYDt0oe12BjP5fSjZfK4_gFMe-BMEs-fisSGBOV6dsUNIEQNeIwsEi45Mk','Went here for a hand issue...everyone was great... saw dr yubarra who is super friendly and caring','2019-10-28 01:06:57.698000','2019-10-28 01:06:57.698000',5,'elizabeth arroyo','https://lh6.googleusercontent.com/-incxV-nCK3E/AAAAAAAAAAI/AAAAAAAAAAA/Smxt1ful7Hw/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',8765),('AIe9_BEV1VP1woYvuPRixSBHlWg4ntzb6hwBCmQyxaQsRiOVHXP2OxxWIAQcQbsCURZSIB2EZvPC1Tsrre8HJgFBv5evwmQL3qY1MLD75bvv_fGYB0EqKks','Everyone was extremely nice and I was seen super quick! They were very professional and really made me comfortable during my visit. I highly recommend this Urgent Care.','2020-01-30 12:48:38.215000','2020-01-30 12:48:38.215000',5,'jasmine fennell','https://lh4.googleusercontent.com/-t5XF6hUaC8g/AAAAAAAAAAI/AAAAAAAAAAA/0mIrSdkGkUI/c-rp-mo-br100/photo.jpg','17898197009688164559',10445),('AIe9_BEV1VP1woYvuPRixSBHlWg4nVWWzaVOBOYI4qPtYTckApjtH_7wnTQGcd7yLcr6qErv2uiSspROUYJJSS6uwW8j8HVTeVjK3WqSZjkTVXnKp4DTfDw','First time visit was as a visitor and the doctor was very sweet and understanding with my mother. My second time was as a patient and we received the same quality care.','2017-01-06 17:56:20.661000','2017-01-06 17:56:20.661000',5,'Cassandra Garcia','https://lh5.googleusercontent.com/-4_PYHZsJHnE/AAAAAAAAAAI/AAAAAAAAAAA/6sD0W9iPDq4/c-rp-mo-br100/photo.jpg','14567670160750071148',1922),('AIe9_BEV1VP1woYvuPRixSBHlWg4NzWPfE8oHqMwvOrR-MGQpGZr4foGJbzDrfmcnJv0vp_W1e33F0MO_LJKfsET0cxpHlslqSkExTQiuCBn-0P3SUJiWY8','Had to come here for the dreaded corona test . The staff( Dr Angela 😊) is super friendly and understanding. They were as gentle as I can imagine you can be with the testing . And the results came within about 10 mins . Thank you signature care !!','2020-07-18 21:44:54.048000','2020-07-18 21:44:54.048000',5,'Sherri Ray','https://lh4.googleusercontent.com/-9Q_lLKWu24g/AAAAAAAAAAI/AAAAAAAAAAA/h5Wxsb8w7NQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21721),('AIe9_BEV1VP1woYvuPRixSBHlWg4o015rCjMtONKKp_fS4cQmeun7JDxR4--Sad4synaDQaJHXOpIao7Ro6cXuM5wSU40WQOJIs_h5q2q70wXZG4GYu1OHE','(Translated by Google) Thank you Cody and Peggy very kind excellent service\n\n(Original)\nGracias Cody and Peggy muy amables exelente servisio','2020-07-29 15:21:56.086000','2020-07-29 15:21:56.086000',5,'Lorena S','https://lh3.googleusercontent.com/-AuiU-GYjl5Q/AAAAAAAAAAI/AAAAAAAAAAA/xMWtdaW9f24/c-rp-mo-br100/photo.jpg','2077061009497551125',22948),('AIe9_BEV1VP1woYvuPRixSBHlWg4o24tZCa_lfU6jp6IWAYVILlyJNXW3g4WhgVM0r2GIMvPB4Pd4OkH3Qw4fogzmgRyXbVeZ-kqMIzIOjf5sOoQyeGSf-Q','Took my partner in for a broken ankle. Staff was very nice and allowed me to be present to assist him and make him comfortable.','2018-08-02 20:51:54.446000','2018-08-02 20:51:54.446000',5,'Danny Hamilton','https://lh4.googleusercontent.com/-soR_ZKHtFmg/AAAAAAAAAAI/AAAAAAAAAAA/2Ub5KaVV8OE/c-rp-mo-br100/photo.jpg','3511292162159714121',7672),('AIe9_BEV1VP1woYvuPRixSBHlWg4O4G85ojilaeJNgPE8GVnSfnjIu_B2tUhM8YC21LLIxv70GiqBGfIoeFvin5rZDalDAU_R5SkTkPPENWxLTo3kbfk-cc','Although I was treated extremely well as soon as I walked through the door. Everyone was upbeat and very welcoming and accommodating. The procedure went well ( I went in for stitches), I notified the doctor about my fear of needles and the staff helped walk me through the procedure, which I kept my eyes closed the entire time for. The time flew by because of the environment I was in. I would visit this facility again if the need arises, or recommend to a friend if they were caught in an unfortunate situation.','2017-05-01 13:08:20.676000','2017-05-01 13:08:20.676000',5,'Quin Silva','https://lh5.googleusercontent.com/-WI0cnETsAHU/AAAAAAAAAAI/AAAAAAAAAAA/R0Kedc1O_HU/c-rp-mo-br100/photo.jpg','17394740196501090048',5067),('AIe9_BEV1VP1woYvuPRixSBHlWg4O8q0zGMOAxHAPJHHqV6v7DFgEvgo1H28iGzWHf-siUuD8Yg4lUPwPFR6o_OTIxjquylmB-Xo50wnYX0mrIiRizt1fvg','Made an appointment online. Had a very little wait time. Staff was friendly. Would recommend!','2020-08-03 19:03:14.492000','2020-08-03 19:03:14.492000',5,'Sadie Pleason','https://lh6.googleusercontent.com/-FrwFjlrvtm8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck7rZSqQXYDwQjigAx9nkSffWDl6g/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22137),('AIe9_BEV1VP1woYvuPRixSBHlWg4OBixKc9Xd6xjtgYYapHzoBFhzklN2CDk_JSVqLP9MowOhLfCc_tTPE2X6QcBK-oZCHWCmk_ZmxJxKNfFkDe-z8GQCCs','Fast service and friendly staff. Highly recommend coming here for your emergency needs.','2019-06-18 03:18:00.831000','2019-06-18 03:18:00.831000',5,'Kendra Denton','https://lh6.googleusercontent.com/-686zEIlBsVc/AAAAAAAAAAI/AAAAAAAAAAA/mMgK2pvQYuA/c-rp-mo-br100/photo.jpg','14567670160750071148',1295),('AIe9_BEV1VP1woYvuPRixSBHlWg4ocbo4MtSbeVXy-VfVnASqOjiDU-bG0KJWCFTsBucqrgIol4sF8_Ed4qErZ82JpwbNpIvJ0P4cRu6UhUL0-ihRN51GG4','Quick service. Friendly staff. Took great care of us. Highly recommend this facility','2019-04-28 04:56:10.645000','2019-04-28 04:56:10.645000',5,'Ina Flores','https://lh6.googleusercontent.com/-XXIjlDTDj30/AAAAAAAAAAI/AAAAAAAAAAA/rR074aUVKLA/c-rp-mo-br100/photo.jpg','12541597562633926366',511),('AIe9_BEV1VP1woYvuPRixSBHlWg4oj28ClyWUVYPzN-ybsc0wxYG_qjnkzFWxRK0FQhHWYt1Q1MAEKir8LxZ09lH9jEIdiqzADTheBtEbLbv1TdWMAhTtEI','Never tough coming to the ER at night can be great. As soon as we walked in we was greated, minutes later we got called. The nurses, tech and doctor are great and attentive. Never in the times I been to the ER felt welcome... they provide SNACKS and even offer me a blanket while they check my boyfriend. My sister is waiting in the lobby and they gave her the tv control, and snacks! What facility does this.','2020-02-18 04:48:37.196000','2020-02-18 04:48:37.196000',5,'Reyna Zapata','https://lh3.googleusercontent.com/-dFPv3qSi1zU/AAAAAAAAAAI/AAAAAAAAAAA/1cx5cWUeWec/c-rp-mo-br100/photo.jpg','14567670160750071148',13522),('AIe9_BEV1VP1woYvuPRixSBHlWg4OJP19uPRVCVeSaM-E6gFuopSPLfV9MwcZSaR60ZpN5hNP-Abm7oIqSck_A6GZNlgkVlieU2p75KwftUFZieNA0C9V5o','They are simply amazing from the time u walk in til u get out. Wonderful Staff..... thank you sooooo much.... if u have to go o the ER please do urself a favor and come here tgey make u feel better even if ur feeling horrible..... ','2017-05-27 15:14:54.401000','2017-05-27 15:14:54.401000',5,'kelly williams','https://lh3.googleusercontent.com/-VN5bcUYAq6c/AAAAAAAAAAI/AAAAAAAAAAA/Gw7lzqiTCzk/c-rp-mo-br100/photo.jpg','14567670160750071148',1818),('AIe9_BEV1VP1woYvuPRixSBHlWg4ONx2FbphVq92K4s1_MLoI3c42C40ZBPQ7MVMAGtgVj9n7trEUccbpRoyi3htAah8yf6g1wGznBD_SApt6IUu0PSDqyY','Thank you to Dr. Hehman, nurse Nicole and Melissa, Tech Lonnie and all ladies in registration for a quick and safe experience with COVID testing.','2020-07-26 17:31:20.160000','2020-07-26 17:31:20.160000',5,'jessie glendening','https://lh3.googleusercontent.com/a-/AOh14GhWTUklP_jmQdKUquBpt0trbzXIlntlVzKsDIwUUw=c0x00000000-cc-rp','8918455867446117794',22286),('AIe9_BEV1VP1woYvuPRixSBHlWg4oOQQcNetPZROCYGzH26Cb11FV7OH2z0CGMBeN2Y-RTqRgXC8RXWfYh6T4P_XHC8T2lmwT5_eDJFysEdlnvSaHalp4CI','We’ve been here twice with both our kids, all the nurses and doctors are amazing and treat the kids awesome!! Almost no wait time at all anytime we’ve been in!','2019-10-23 03:26:57.534000','2019-10-23 03:26:57.534000',5,'Nick Lapp','https://lh6.googleusercontent.com/-HNjBLMcpFKM/AAAAAAAAAAI/AAAAAAAAAAA/mRinD1w0pkM/c-rp-mo-br100/photo.jpg','2694018788013845459',6036),('AIe9_BEV1VP1woYvuPRixSBHlWg4OqueV2__EqmO8sZ6gl-LDzXGbIqCZAgN3G5ccGtuS4eCSJ5l8rINjRTUiy5rZafF3i4R7NzXO1gTMVcwODDZQ2zL3Jg','Came in to bring my mom.\nEvery one was great.. Sarah such a lovely. RN.\nAlexis Reg.. Michael Rt. All as well.\nVery fast. Very adviceable.. Every thing they did was on point.. Very clean and neat . \nResults was fast. Excellent service . Thank you Guys.','2019-09-05 06:52:19.967000','2019-09-05 06:52:19.967000',5,'Carol Thompson','https://lh5.googleusercontent.com/-8kdKTSt4k7w/AAAAAAAAAAI/AAAAAAAAAAA/1_2_eIC7xPk/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5560),('AIe9_BEV1VP1woYvuPRixSBHlWg4Ot-j1QLmAElK7C0u3zHHxvGWx0FX0Q2U0N_ZKzJoc2y-2hRzBI09vhx-YsErXu5udTSiwBOAGpViVle2Ftv_sVv6qOA','Front desk person could have been better, He didn\'t even tell me what I was signing .. Just started handing me papers & pointing out the fact that I didn\'t make a payment .. Everyone else was GREAT!','2019-03-23 14:07:39.892000','2019-03-23 14:07:39.892000',3,'Netra Matthews','https://lh4.googleusercontent.com/-q0hUq7MbACg/AAAAAAAAAAI/AAAAAAAAAAA/tfUNZKBE8RQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6986),('AIe9_BEV1VP1woYvuPRixSBHlWg4Ovk5GM-56NHPAFC6SI7CdUxJGH2MK1iIJY3ZMpLfD7OG7q9b-S5tbUMuT28zMWwRAD-jwGzlvONuxPoXCc4psw_AAkE','The staff was wonderful and went above and beyond to make my experience as comfortable as possible.','2018-01-31 18:55:47.800000','2018-01-31 18:55:47.800000',5,'Claire Ata','https://lh3.googleusercontent.com/-bry8qr7JtHY/AAAAAAAAAAI/AAAAAAAAAAA/CTsQ9GIaaR0/c-rp-mo-br100/photo.jpg','3511292162159714121',7730),('AIe9_BEV1VP1woYvuPRixSBHlWg4OZac06mG5NL2P3Az8tv85bSILCSV6CIfDLC89_otKrF70fqoeltzlfgGzjoQaFJn8bcX1vaEvqaGfsws6ZMR1wuekL0','This is a fantastic place, especially for first responders and their dependents! Fast and friendly! Manny and Dr. Alcander were wonderful!','2019-10-13 20:20:53.553000','2019-10-13 20:20:53.553000',5,'Libby Wilhite','https://lh6.googleusercontent.com/-9Yf0Io1bSiQ/AAAAAAAAAAI/AAAAAAAAAAA/sxkRPbKboFU/c-rp-mo-br100/photo.jpg','6521947413723274945',8119),('AIe9_BEV1VP1woYvuPRixSBHlWg4P_exwbh7WX7wfC-0xbuGKXTCCNneuHkZQ0zt7gAxxipbrVObxGtGlIRoayTxGTygmZVE_sxB2H98q26gogeetGB7L_Y','I was in the room being evaluated before my husband could finish filling out paperwork. They were very quick and so nice. Since I was the only patient at the time there was no wait, but if we had to wait there was complimentary drinks, snacks, and a children\'s area. If we ever need a ER, we will be going back! ','2016-08-23 11:15:08.863000','2016-08-23 11:15:08.863000',5,'Whitney Rubin','https://lh3.googleusercontent.com/-PD-TAXuRDBM/AAAAAAAAAAI/AAAAAAAAAAA/1ch0om8r0fo/c-rp-mo-br100/photo.jpg','14567670160750071148',1984),('AIe9_BEV1VP1woYvuPRixSBHlWg4P_Jak279E2soUdNfc3bsPDYAjWTav0Qgs-3L7mH9_wyReban6J36e8ElbqL8hhtPA8h7_JKGYuaPdJlBn1hBADEHSgE','always friendly and helpful and fast','2020-01-30 18:36:19.411000','2020-01-30 18:36:19.411000',5,'Cierra Benavides','https://lh4.googleusercontent.com/-O2iH1nVGEiY/AAAAAAAAAAI/AAAAAAAAAAA/BqDwP5eDq3k/c-rp-mo-br100/photo.jpg','14567670160750071148',13577),('AIe9_BEV1VP1woYvuPRixSBHlWg4P-6bR7nTqnjtRZ3IpPCBiU94W6u0fpTMRAnl4fljHv0gL5wdbLyr191EPC2a5oxSORRpyJRQp595M2i4FSntRlxVd24','Everyone at the facility was awesome! I am from out of town and suddenly experience quite a bit of pain. From the front desk, nurses, tech and doctor everyone was incredibly comforting and focused on helping me feel better. Highly recommend this facility!','2020-03-06 03:08:14.703000','2020-03-06 03:08:14.703000',5,'Shannon Savitz','https://lh5.googleusercontent.com/-03LMKsbeeQ8/AAAAAAAAAAI/AAAAAAAAAAA/3syjfNVyCBQ/c-rp-mo-br100/photo.jpg','8679688254631342173',14707),('AIe9_BEV1VP1woYvuPRixSBHlWg4p-HFO4ihe0G2pZy79RSmi_yabzFScA-2p2PNTAUbXxCCuV9mae2v0Jkz9PYZZ-MW_ZLLI0z05l-in0t8cWpMqfsz4xU','Good treatment!! I didn’t have to wait very long in registration Jolynn was nice.Every one was friendly and attentive the nurse kim was nice, Allison from radiology was very kind.Would highly recommend coming here.','2019-09-12 23:51:27.774000','2019-09-12 23:51:27.774000',5,'Nerea Bena','https://lh6.googleusercontent.com/-lamMIvYy1fs/AAAAAAAAAAI/AAAAAAAAAAA/uHaatVVVx4I/c-rp-mo-br100/photo.jpg','13486358490203335051',835),('AIe9_BEV1VP1woYvuPRixSBHlWg4P41HRDr6EIQYS3zcbvh8ldfaQqEb3JUOfTaAh4ag_n8TjTkCMyKIbLh2cwmv6DMpM1I_ROW1TqnmWT_4kcob2_pZ6Ko',NULL,'2020-06-15 19:50:36.928000','2020-06-15 19:50:36.928000',5,'Chito','https://lh5.googleusercontent.com/-KD8b9IGRtJI/AAAAAAAAAAI/AAAAAAAAAAA/P0atZfHeNMs/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',21359),('AIe9_BEV1VP1woYvuPRixSBHlWg4P7HMRRXVLGWXUttoqlUzD5U1uUBhlL9rav9TKqVGhKoqNc_M-rCf20iCgbYyI2R_DyeBB1ha6cne2MtvGHaZVXXgOXo','Everyone went out of their way to make me comfortable during a super stressful time. Visit was quick. Clean office. Thank You so much Dr.Tran!','2017-05-11 15:46:14.838000','2017-05-11 15:46:14.838000',5,'Donna Henriquez','https://lh3.googleusercontent.com/---chpLfXjjw/AAAAAAAAAAI/AAAAAAAAAAA/duR2xC2BtD0/c-rp-mo-br100/photo.jpg','8918455867446117794',9403),('AIe9_BEV1VP1woYvuPRixSBHlWg4PELTZPEle6BlQmLy2q7PAARDNH7-Ol3L6BeW2tuXOOsoCqwSfgdnNdB87W8Aw-UpIFtxyv0XRhNSsb9tXmuBAkhIkgU','Wanted to share my wonderful experience while at Signature care, it was the best. Thanks to Jasmine, Jani, Marcus &Dr. Appiah','2019-05-28 16:03:16.596000','2019-05-28 16:03:16.596000',5,'iva guillory','https://lh4.googleusercontent.com/-3SqAepyZHXc/AAAAAAAAAAI/AAAAAAAAAAA/VVgI2lHI0Ts/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEV1VP1woYvuPRixSBHlWg4Pg23evPXZWlKpEA-IlcIQDs3K0z5xMTFtEIVt0aknbUsySbf3cjpWYZRa7eNqZ9UBkb6lfaZBoqaLOh34glAbKEoVKw','I had a great experience. The staff were great and very professional.','2018-11-01 12:10:37.873000','2018-11-01 12:10:37.873000',5,'Elizabeth Flores','https://lh6.googleusercontent.com/-P6EXvwtHaec/AAAAAAAAAAI/AAAAAAAAAAA/97I4TLFKR5g/c-rp-mo-br100/photo.jpg','14567670160750071148',1464),('AIe9_BEV1VP1woYvuPRixSBHlWg4phS2Xg6b2mMinFkLepBqYGtYEC4cZ6VxfcukZ1OofVKTLm6aBMv4r-qjomHdfvlvG9JIEWSCcCveBkrCVVflny1j5Dc','A visit to the emergency room is never considered to be a pleasant experiencee.\n\nNonetheless, the stress and worry began to peel away from the moment I walked through the door where I was immediately greeted. To me, this is an important first step under any circumstance.\n\nThe wait was virtually non existent as I was called minutes after sitting down to to fill out paperwork. There was no pressure to get it filled out before being checked in, called back, or being seen.\n\nThe Nurses were genuine and extremely accommodating and professional. Throughout, they checked on me regularly, I was never waiting wondering what was next, even through a shift change.\n\nDr. Thomas listened and was on top of the entire process, and her prognosis was clear. The tests ran (on site) were swift and led to what I believe an appropriate diagnosis and then some.\n\nI cannot say enough, that SignaturCare\'s facilities and staff are everything one could hope for under seemingly dire circumstances. Professionalism, CARE, and a worry free and satisfactory experience.\n\nThank you for everything.','2016-10-24 18:56:50.911000','2016-10-24 18:56:50.911000',5,'Jonathan Nunnery','https://lh5.googleusercontent.com/-NOzwK998Op8/AAAAAAAAAAI/AAAAAAAAAAA/8GiGRmiis8U/c-rp-mo-br100/photo.jpg','14567670160750071148',1955),('AIe9_BEV1VP1woYvuPRixSBHlWg4pPnZPxN8Kh6L8te3Ti8IAJXRt4k6Hp4z8MM5wY3ADvxjf9btqElh4Nj7L9sIOvoeTI6xP4cqgWNcG9EcPGMntdTHSiQ','They Doctors were amazing the really helped my friend stay alive and said if we had not come in that day he would have passed away. They brought his blood pressure up and were constantly cleaning him of excrement because he was severely dehydrated!! Thank You Guys so much!!!Thank You... Dr. Patel, Naureen, Agnes, and Joey!! You all were troopers!!! Brenda was also very helpful in the front because we had many trips in and out and she kept us situated... Thank You my friend is a repeat visitor and will continue to come ur way if anyway thing else occurs hopefully NOT tho!!!!! Blessings to you all!!','2019-08-05 04:28:06.992000','2019-08-05 04:28:06.992000',5,'Fly Y. Red','https://lh4.googleusercontent.com/-h7mbDbi6pxg/AAAAAAAAAAI/AAAAAAAAAAA/vjqiqoU4wHc/c-rp-mo-br100/photo.jpg','3511292162159714121',7227),('AIe9_BEV1VP1woYvuPRixSBHlWg4PUkaPTpOFuyLa1ih_RS_JpD8xWe8cGg50qwwiYQy6SXi3lpoqS6ZAm0kwNCpZEb_U89EigRLNyhnwOZg9UBXJhCkmys','It was a great experience. Fast- quick and very through.','2018-10-04 01:23:07.484000','2018-10-04 01:23:07.484000',5,'Corinne Dunn','https://lh5.googleusercontent.com/-LZhjG5PimSQ/AAAAAAAAAAI/AAAAAAAAAAA/vLAjITBE1O4/c-rp-mo-br100/photo.jpg','14567670160750071148',1481),('AIe9_BEV1VP1woYvuPRixSBHlWg4Pz58SjsPshNGr80XGkAXub8LGd1tP89iF9u1_eHWystb63KVYAsuFhcJktE2yILZFtMFbvqgyUfOg37zYIDAEyflEKo','Nice place thanks Dana Tricia Jordan and Patricia','2019-11-15 15:25:46.303000','2019-11-15 15:25:46.303000',5,'Angela Polanowski','https://lh6.googleusercontent.com/-amc6MuT_0Cw/AAAAAAAAAAI/AAAAAAAAAAA/fmRVt3MN5Do/c-rp-mo-br100/photo.jpg','16389487648212004696',2693),('AIe9_BEV1VP1woYvuPRixSBHlWg4PZD5TFTAxd6V-SfsDGDGlWAoD5E3kjw72lYDSQHEyA229axIyCYxc3OInRjHo1SNaaxo_xXrOMVhNSekCJlkNcFjbRw','Very convenient. Quick, easy and great services! Would recommend to anyone.','2020-05-30 20:38:43.166000','2020-05-30 20:38:43.166000',5,'Jessica James','https://lh4.googleusercontent.com/-Up9NxUdWd70/AAAAAAAAAAI/AAAAAAAAAAA/rYOEmmccsPo/c-rp-mo-br100/photo.jpg','8918455867446117794',22937),('AIe9_BEV1VP1woYvuPRixSBHlWg4q4oQZvQeg3WUqwfJ0wLQV_vKjc6ZmD7J9_zqjoIa0-BAG4H4FSUmnywGx_BQGq70HeKcaZ7YcsQJRIMI0xhkbj2GkJQ','My scheduled appointment was supposed to be at noon. It’s now 13:05, and they haven’t called me to come take my C-19 test. I’m disappointed that people that have come in after me are getting their tests before me. Next time, I’ll go elsewhere.','2020-07-18 18:07:49.773000','2020-07-18 18:07:49.773000',1,'Mike Viscusi','https://lh6.googleusercontent.com/-0L5kM0RZzRE/AAAAAAAAAAI/AAAAAAAAAAA/t0M6tvCWmrA/c-rp-mo-br100/photo.jpg','14748677429039074158',21738),('AIe9_BEV1VP1woYvuPRixSBHlWg4Q9SJ1df-xrdHlO7vOiWI71CHinwygu44OlGfLEG-opfOT2N_o6HSEdTFzos-AHNdDY-KNdfh8OEwHv_scNZBvyiAo1Y',NULL,'2018-04-16 20:11:24.303000','2018-04-16 20:11:24.303000',5,'Taylor A.','https://lh5.googleusercontent.com/-ZqjSFz6johA/AAAAAAAAAAI/AAAAAAAAAAA/XHwnSmYRv3w/c-rp-mo-br100/photo.jpg','16590124370714063921',3836),('AIe9_BEV1VP1woYvuPRixSBHlWg4qEdLmkiaZhHRdaYuhXMlEt06hpfqj6wTh71iiuv0j-ma9XDbvBgyuedpswUOo5numPYt8xhD_JxRuN-vFoWwcdxMlNg','Fast and wonderful care. My team of caregivers from the front to the back were extremely nice and attentive.\nDr. Tran\nIrving Sherwin and Bram\nThank you all.','2020-01-02 04:55:28.618000','2020-01-02 04:55:28.618000',5,'sonja Bradley','https://lh4.googleusercontent.com/-TOKoszrewpU/AAAAAAAAAAI/AAAAAAAAAAA/eQ-0RQQ_4lk/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',267),('AIe9_BEV1VP1woYvuPRixSBHlWg4Qh2u1YGymnTS68QL5kyr0pqv2-BhdAguSdbClLNHYno1zFZUqenhpkeDWSfDDGBHV3DNpOpMw01cHw5HCzvcFt1BvAY','All went well.','2020-08-07 14:57:07.810000','2020-08-07 14:57:07.810000',5,'Leddy Carder','https://lh3.googleusercontent.com/-hW6iYE6Hqoc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckh3K3EbyXAAgeBguJjrCk9gIU3-g/c0x00000000-cc-rp/photo.jpg','8626688543755174284',22228),('AIe9_BEV1VP1woYvuPRixSBHlWg4Qh4zvtIgKOO1NQ_rVQaPt_7LpqcOLwogTeLe5jnnW_rB2ssuspV6DprdU_GTIeN_0gucuX-s2tv1Tm0vMPjTb42KgAI','I recently received emergency medical attention at the south Austin location. My experience was without a doubt the very best medical treatment I have ever experienced. From the moment I arrived I was treated with the utmost kindness , compassion,and respect that seems to be lacking in the traditional ER setting. The entire team went above and beyond with my care and was meticulous about every detail. The nurse supervisor, Adam, called me multiple times (even when he was not working) to check on me and help me with continued needs. The physician I saw, Dr. De Waal, had amazing bedside manners , actually listened, and provided excellent medical care. If myself or my family ever need urgent medical care, I refuse to go anywhere other than Signature Care ER .\n\nSincerely,\nSarah','2018-08-16 16:40:37.398000','2018-08-16 16:40:37.398000',5,'Sarah C','https://lh6.googleusercontent.com/-dG_5_h4H5wg/AAAAAAAAAAI/AAAAAAAAAAA/SKl0iqiDaTA/c-rp-mo-br100/photo.jpg','16891069708558046635',4446),('AIe9_BEV1VP1woYvuPRixSBHlWg4QMt8-I_HvmZ6vR5_FHss202Nt0xls1IK7OZQDWXAC1OO9tLayXbBTDI06N9-gK9XTl5fVCT8a9GFMvjwAz4U76BStI0','Friendly and quick..','2020-07-26 17:29:56.518000','2020-07-26 17:29:56.518000',5,'Ida Medellin','https://lh6.googleusercontent.com/-HYaFQtabMWE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckk6z5jWbLnePduG3zsyWLmXPO0YQ/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22287),('AIe9_BEV1VP1woYvuPRixSBHlWg4r24MHfLo4wKhwpUe6Xn7syi4R9t7E-Vr7qrjV44RmrC7q04w2ZDVrJmH0dIBJ-hMQ7nnf8ELdn_KdhCMN3O1Q6I6Cbg','Everyone was very patient and attentive to me throughout my entire experience. Rebecca- who works in the front register- could not have been kinder. Both of the nurses Gabriel and Remington were professional and asked me on several different occasions if I needed anything -from a warm blanket to water. Dr. Vakey also went out of his way to assess all my symptoms and explained that the payment process in terms (me, a college student) would understand clearly. ER tech Patrick was also incredibly nice and professional. Overall, each of employees have a genuine, honest nature to them and made me feel comfortable through a time I was severely uncomfortable to start out with.','2020-02-02 01:31:09.910000','2020-02-02 01:31:09.910000',5,'Caroline Lydick','https://lh4.googleusercontent.com/-R13u-6kjW0Q/AAAAAAAAAAI/AAAAAAAAAAA/LaCH22CRFO8/c-rp-mo-br100/photo.jpg','16590124370714063921',10429),('AIe9_BEV1VP1woYvuPRixSBHlWg4RcerUfORHKiiNMsqBuEJ5zjFe9F1SXWAxnTgXzetEpA0ZmJ6brGqSveKB350l2M1OJYqXVqlAXSYlycR7Uno75lzhNw','They quickly took care of us and we were out in an hour. Everyone was nice and caring especially Evelyn the receptionist!','2019-09-18 20:34:35.725000','2019-09-18 20:34:35.725000',5,'Cesar Carrillo','https://lh5.googleusercontent.com/-ciwICRfLj9c/AAAAAAAAAAI/AAAAAAAAAAA/SH3OfdM_60w/c-rp-mo-br100/photo.jpg','17898197009688164559',5543),('AIe9_BEV1VP1woYvuPRixSBHlWg4ry-uGhnsMDaJk9urx7p-1PViMR3YcxgoxuCl3kRmIAGTdBYqoQCAlmNb_-_UlotYJERzMgfbJu6Ep6d3s17iyRXBpPY','Nice place. We drove across town to get there. Will do it again without hesitation. Fair prices.','2017-11-01 23:12:41.066000','2017-11-01 23:12:41.066000',5,'kenneth Forano','https://lh3.googleusercontent.com/-6V3bUbMi_Ng/AAAAAAAAAAI/AAAAAAAAAAA/ciH_lQPsea8/c-rp-mo-br100/photo.jpg','14567670160750071148',1737),('AIe9_BEV1VP1woYvuPRixSBHlWg4rzjd02vn6RSScYcgIzbkeDzToAmStMFjTENJ8EUkNZrrpx2E07uYVDtGuQE5SKDV2CEjLEMvKWK8vcpYhdU045QxI9Y','They have great workers who are super nice and comforting. I went in with a bloody face and they got me in right away and stitched me up.','2020-03-05 16:21:15.555000','2020-03-05 16:21:15.555000',5,'Lauren Walk','https://lh6.googleusercontent.com/-cEh1VoaA3NM/AAAAAAAAAAI/AAAAAAAAAAA/OyD0m6SeLAw/c-rp-mo-br100/photo.jpg','16891069708558046635',13918),('AIe9_BEV1VP1woYvuPRixSBHlWg4s2VKNrWBgVgRIuR7gy-hmGXkEu7pVZFX9k4gWURR_msRHVpztXcRBV-nqGV1Gsv3rWhIDrYEO0Y0CEyyjDnaX00zRb0','Everyone was very kind and considerate, they answered my questions patiently.','2020-08-01 22:24:59.162000','2020-08-01 22:24:59.162000',5,'Kelsey Mussio','https://lh3.googleusercontent.com/-9bsS4WaSYF0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnPVsLFk9yiLB2UgftVr7TC8J7T0w/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21938),('AIe9_BEV1VP1woYvuPRixSBHlWg4SB7BgVUp3bQsPGe2bpAgt6-NHEizK_KGSEJASdHDsu-mTZ_3ry2W1FnjrdHS2sXuGdATWi--EaU2qbRZ4YvK8phXhgA','Nurse: Jacob\nDoc: edozie\nRegistration: Liz\nTech: Morgan\n\nThey took great care of my daughter!','2019-02-20 15:39:36.977000','2019-02-20 15:39:36.977000',5,'PATRICIA DUKE','https://lh3.googleusercontent.com/-f0egvc2J20A/AAAAAAAAAAI/AAAAAAAAAAA/-2NAVaWiJqw/c-rp-mo-br100/photo.jpg','16590124370714063921',3535),('AIe9_BEV1VP1woYvuPRixSBHlWg4SEkuJ8KFd9Z2k-Frd1RDU-9boR8rmiivkf2CQUos4IRh96sWXNlBV7R8ogn1V1BwWODHgOJPlLs5LD4PAl8E5tLRUAU','I went in there because I had chest pains and the very friendly staff gave me the correct medication to help me feel better in a pretty quick timespan.','2017-04-24 03:10:11.817000','2017-04-24 03:10:11.817000',4,'Alex Metzger','https://lh3.googleusercontent.com/-hQg2ic7wfqU/AAAAAAAAAAI/AAAAAAAAAAA/L5wcrJefeiE/c-rp-mo-br100/photo.jpg','16590124370714063921',4001),('AIe9_BEV1VP1woYvuPRixSBHlWg4SMJyOuJRv28Z_iPkthjF67Imf5FE949u0mEhaUPSZcj82J0tysX0bWDOZhOdQT7ohDNLLumUMG9L4bbq__elhA4jmJk','Absolutely wonderful staff and quick amazing service. I needed immediate care as I arrived and Tanishia W. at registration saw that I was taken care of quickly. She was very kind and when I was ok to go home she made sure if I had any questions to ask her; she is very welcoming. Nurse Shelley D. was there talking with me and making sure I was comfortable and taken care of as well as the RAD Tech Heather G. I was able to relax even in my situation because of them; I am so grateful. Doctor Q. Henderson was quick and had me patched up in no time. He took care of me and also gave me great advise for my future in case anything were to happen again. I was able to go home as I was not only luck but because I was given such quick amazing care and I am so glad I was taken here. If anything were to happen again I wouldn\'t hesitate in my choice as I would absolutely pick SigatureCare. Everyone here is so kind and I had such an amazing experience thanks to them.','2019-05-29 02:02:34.713000','2019-05-29 02:02:34.713000',5,'Amber Plant','https://lh5.googleusercontent.com/-LKU-juhW0x8/AAAAAAAAAAI/AAAAAAAAAAA/wAhUQycusS0/c-rp-mo-br100/photo.jpg','17898197009688164559',5719),('AIe9_BEV1VP1woYvuPRixSBHlWg4smNGucSngYJlBkOuj9bN9lVR0q2COp_W0yY1NKMLVvAl1dvahbpZ4bA9ZOUuqdXe3hW-8iRuHrb1ZPM-o0AjUlZgq2o','Very fast and the workers here are very nice I highly recommend.','2018-09-08 20:53:17.092000','2018-09-08 20:53:17.092000',5,'Cortez Wright','https://lh6.googleusercontent.com/-7jBIe90x6m0/AAAAAAAAAAI/AAAAAAAAAAA/O_Jd1-vEOVE/c-rp-mo-br100/photo.jpg','12541597562633926366',611),('AIe9_BEV1VP1woYvuPRixSBHlWg4Sru368BQp29bX-AigfBkThadGSQ88xlZPQAlYFcFxGAUMan1jYNAo2qig2DoosmfR4xOAwQGlauUMKlvLnsomAC7FpI','It was great! The good crew they were to me in time of need were Keo and Karen. I was ill and I felt well when I left. They have great, friendly personalities that can welcome anyone to the ER! Thanks a lot! I will be back if in need again.','2018-11-19 22:40:17.711000','2018-11-19 22:40:17.711000',5,'mildred scott','https://lh6.googleusercontent.com/-l6toO7jSkyk/AAAAAAAAAAI/AAAAAAAAAAA/TUQuiWcq6Ss/c-rp-mo-br100/photo.jpg','3272657195432704501',7100),('AIe9_BEV1VP1woYvuPRixSBHlWg4sUAn9gz4BUiAigNjc46m0vSakZZ7Vu2cwAe9vzjwWOfEDXiGU7Y4Z317GBp6nW-EiyO2PolDECUv5b0BvtSrw3QeRwM','Best experience in an emergency room I\'ve ever had. I appreciate the staff, N Patel, Sarah, Fatima, Daniel, and Tanishia. You guys were great for both my initial visit and follow up as well. WILL DEFINITELY RETURN. Great. Fantastiv6','2019-11-27 02:42:29.348000','2019-11-27 02:42:29.348000',5,'Carla Lopez','https://lh6.googleusercontent.com/-1BZbHxQPE1c/AAAAAAAAAAI/AAAAAAAAAAA/eVTsWrYUnPQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5402),('AIe9_BEV1VP1woYvuPRixSBHlWg4Sw_UgFtTTcKxktuUbTSBr47EQTW1dLr7O-ySpVVqXGn8zfcuUMvL0LzYeS-PA2RXUFXqizWoVZuhMk7zv5Y5lGtU1Go','I had a really good experience here at signature care anavel welcomed us in and was sooo nice and we were taking back very quickly the nurse Jennifer and tech dion were very nice offered me a blanket and took really good care of my boyfriend and dr Das was very helpful and gave us the best care I’ve had in a while. It’s not over priced at all which really helped out! Definitely will be coming back','2020-03-09 04:23:54.781000','2020-03-09 04:23:54.781000',5,'Kaitlyn Dalton','https://lh6.googleusercontent.com/-oF6TfQ1nVoM/AAAAAAAAAAI/AAAAAAAAAAA/mtLuWQDAhX4/c-rp-mo-br100/photo.jpg','14748677429039074158',18848),('AIe9_BEV1VP1woYvuPRixSBHlWg4SWtqd9CrEl9SVr8KnMBZ26kIavHs8g2dyI40Mcw71HxkZytkMpnvrBUsP5SUh-s4GA2NoQ4y0T7kLZkX5MZXW3LsgmE','Had an awesome experience at Signature Care, Alvean and Patricia were awesome. No wait time.','2020-02-23 22:39:14.747000','2020-02-23 22:39:14.747000',5,'lizbet gomez','https://lh4.googleusercontent.com/-pEpQIm7U6oE/AAAAAAAAAAI/AAAAAAAAAAA/w1DaHT1LChs/c-rp-mo-br100/photo.jpg','16389487648212004696',13767),('AIe9_BEV1VP1woYvuPRixSBHlWg4t0dd1bLEg4JbPZ_MYb-dHsnJTKwufbATaTH4oeHf-1Fe15pJAnzjldKzRBw6cAibucNPAEG5soAwIA9sAb82G_riH4M','I didn\'t even have to wait 10 minutes to be seen! (I once waited 9 hours at Ben Taub with a broken toe.) The entire staff was friendly and smiling. I feel like they really love what they do. (NO grouchy, rude nurses at this place!!) They weren\'t pushy and quick to get me back out the door, but they were quick to make sure I felt better and was ready to leave when I felt up to it. All in all it was a good visit, i left feeling well taken care of and I\'d choose them again if I\'m in Montrose.','2018-10-01 13:56:20.180000','2018-10-01 13:56:20.180000',5,'Regina Villarreal','https://lh4.googleusercontent.com/-nFMQ1_2bx28/AAAAAAAAAAI/AAAAAAAAAAA/KL_GZ3tk_0g/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7582),('AIe9_BEV1VP1woYvuPRixSBHlWg4T4tf-eXdzIU6pOCmhBsafvsvPvK97BDw7ezJ4GIWP21UyzM14yyOyV7o2kEcpTSIGICxt4RKyP6Ko8T-JRTaLRj8RyQ','Dr Miller and his staff are Fablous, My experience and care was the most Satisfying CARE I have ever expereienced & received @ an Emergency Walk-in-Clinic. My wait time was less than 5-minutes in the Lobby & in the room. \nI HIGHLY Recommened this clinic to all.','2016-10-15 20:45:14.362000','2016-10-15 20:45:14.362000',5,'REIA KIDDER','https://lh6.googleusercontent.com/-u8o_BBou9b0/AAAAAAAAAAI/AAAAAAAAAAA/qpnYrPU1uEI/c-rp-mo-br100/photo.jpg','14567670160750071148',1957),('AIe9_BEV1VP1woYvuPRixSBHlWg4TkMywvUk0BlV-RuwiUEHGd4JPsBv0EfmfgfDkWLobYdPzJc1OBiNMDkVJA6mmh3ZzrCoC5fhX54d5DU9b0IZG2KRKFI','Signature care is the best ER! I’m an employee but today I’m a patient. I work alongside some of the best doctors, nurses and techs in the city. So when my family or myself get sick I come to work for treatment. I know I’m in good hands and I’m going to get top notch care!! Thanks for taking care of me today!! Dr. Akunyilli who is awesome to work with and an excellent doctor with great bed side manner!! Thanks Laura, she is a wonderful nurse who is very knowledgeable! Thanks Jackie you made my x-ray so comfortable!! Olivia and Christian are amazing ER techs! Thanks Leslie for getting me registered quickly with a smile!! You are all amazing!!','2019-01-09 13:16:33.424000','2019-01-09 13:16:33.424000',5,'Churiah Moore','https://lh6.googleusercontent.com/-dJVqnf_tTVE/AAAAAAAAAAI/AAAAAAAAAAA/9z9S1kSZAhQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7504),('AIe9_BEV1VP1woYvuPRixSBHlWg4tMjUoVBAo6_MPn-ZSmlOIeQLVM5Wi21UtW2sbRChGkt0HHhUqmoGRxu19zaERjYBcjeGvYlv-ct_m_REFP2WwzdnqI0','Fast and efficient....no wait . Friendly staff !! Oh and GREAT service','2019-12-05 03:46:53.377000','2019-12-05 03:46:53.377000',5,'Isabel Hernandez','https://lh6.googleusercontent.com/-SeIv6Iz_JHg/AAAAAAAAAAI/AAAAAAAAAAA/Vd_IOfcRCzQ/c-rp-mo-br100/photo.jpg','13486358490203335051',706),('AIe9_BEV1VP1woYvuPRixSBHlWg4toL-v-HrgK76iEU2_AiWosc3MU6EoBVESw3n2vnczt81AoyWSqAQjSN5nNXYO_uTHMypT3fhdjJjo0R78Vxgm63bm00',NULL,'2020-03-04 20:49:52.921000','2020-03-04 20:49:52.921000',5,'Amoret Sellers','https://lh5.googleusercontent.com/-DGJ2ikaPk6Y/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl2SdzlPGN7dU-z9gLCMvu43f-4rA/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21190),('AIe9_BEV1VP1woYvuPRixSBHlWg4tQtfxIz97jEtGvqdB8ZC1HfAUpWZYzfJ1cNBqZSuEs4hX2NQU6Yo60dFcidzUE62Jw3WKeD517k_VbVjUW_xcyYPYqI','Doctor Golla was awesome! As well as the rest of the staff Nurse Laura, Eve, Richie & Mercy! Thanks you guys!','2017-05-18 14:04:13.373000','2017-05-18 14:04:13.373000',5,'Bria Charles','https://lh5.googleusercontent.com/-eDVfgLvnyLc/AAAAAAAAAAI/AAAAAAAAAAA/qvHBuIRsbv0/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7821),('AIe9_BEV1VP1woYvuPRixSBHlWg4TWtseVVVgcSnPJshcpBeenIIASg868z0a0bi5RSNq5w98brebWYG3pVbbIpuBM13ridPv_jMPzz0JY7BkSNSH2_1ZHM','Thank you Jessica in reception, Savanna B. RN, Aaron O. R.T, Lisa V. RN, David K. Paramedic, and Dr Frausto for taking excellent care of me, and treating me with kindness and respect. All staff here are friendly and treated me like they would their own family member. Wonderful experience!','2019-07-26 19:50:52.037000','2019-07-26 19:50:52.037000',5,'ZXMegazero','https://lh6.googleusercontent.com/-dUg6TOsGPso/AAAAAAAAAAI/AAAAAAAAAAA/dW1BJWdwqAU/c-rp-mo-br100/photo.jpg','13486358490203335051',880),('AIe9_BEV1VP1woYvuPRixSBHlWg4Tyq4ymJfsLkqn-e_pWD85n806eDO5GW6owq9ZG1b1JvvV8-YEqn7T4vy4UlZwyB92Lkk3bLL_keGnJUwcnePtr70lWM','True Professionals - After suffering with food poisoning all night, the doctor and nurses at Signature did a great job of giving me immediate attention and helping me to begin to recover. Kind, consider and extremely professional with a focus on patient care. Way to go!','2017-01-30 03:18:06.315000','2017-01-30 03:18:06.315000',5,'Jeffrey Hubbard','https://lh3.googleusercontent.com/-6WTjwLYv2NU/AAAAAAAAAAI/AAAAAAAAAAA/2dAF7PlBB5k/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2422),('AIe9_BEV1VP1woYvuPRixSBHlWg4tyukpgwyl1wsNJ6VKbYlyrV4r1sAGH7pLgP0IeAaCuCziKth91iJRInNBmcSaA11WfNGSuc5j7v31Ga0uM4WSniNNWs','Received excellent care. The doctor had a great sense of humor!! I broke my thumb so the distraction was welcomed! Would recommend Signature to my family and friends.','2017-03-20 18:37:36.958000','2017-03-20 18:37:36.958000',5,'Mona Jackson','https://lh6.googleusercontent.com/-sRLekXQbLXs/AAAAAAAAAAI/AAAAAAAAAAA/b8Y43udHIpg/c-rp-mo-br100/photo.jpg','17394740196501090048',5091),('AIe9_BEV1VP1woYvuPRixSBHlWg4u3V3f1FsxESi6TfJPo6Ju49f3XPUvkUy7LkRRHo3j-8rjaXDxdH2fY_g4fTEhUZDIFsA6wPV6bJTFs2qEQyCXFaFcwI',NULL,'2019-12-23 05:11:56.298000','2019-12-23 05:11:56.298000',5,'James Bentley','https://lh4.googleusercontent.com/-MN8XThfFBGA/AAAAAAAAAAI/AAAAAAAAAAA/Vtsq84fyfe0/c-rp-mo-br100/photo.jpg','13486358490203335051',665),('AIe9_BEV1VP1woYvuPRixSBHlWg4U6_nBKJZ155O5RU55T4E66lMIaFjmAWjYEknyZoPczAtfVPDOkwUX_E793Mzz3I329lSwW6kPMXa3xq2-_G7XjYKtPA','Terrible and ill-equipped facility to handle Medical Care.\nAfter my visit a week ago they have failed to call for results my personal Physicians has attempted to call them for 3 days in a row as as I and they don\'t answer the phone.\nI\'m in quarantine and I had to finally get up out of bed and go up there in person and they have no record of my test being sent out','2020-06-18 19:51:43.943000','2020-06-18 19:51:43.943000',1,'john rod','https://lh5.googleusercontent.com/-k4b9wUQ3H54/AAAAAAAAAAI/AAAAAAAAAAA/L_31oRtM0f4/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',21533),('AIe9_BEV1VP1woYvuPRixSBHlWg4u6CtEI6E7qpwsEcfe1wVEzas9IqOBE9otuT6oeC6byv5iPKNBm-Bws6ZHlMmYvagjt0MMRJLNdQ4K5bLemxMLCLCQxc','(Translated by Google) Good attention\n\n(Original)\nBuena atencion','2019-08-08 12:17:43.034000','2019-08-08 12:17:43.034000',5,'Marta Casillas','https://lh3.googleusercontent.com/-nvWQn7pogh4/AAAAAAAAAAI/AAAAAAAAAAA/XdSYn-uI9Eg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEV1VP1woYvuPRixSBHlWg4U9k_Thn7lXNfM_8rNXSBmsc8In6ZwN6VnvXKxjw6qMISOxj3jaFoTbak3I9itygMDEn3eQa7QIAlB2iZFvLn1FOEGsg','I had a great experience at Paris ER, they were fast and friendly! Ashley Burton, was very helpful as well!','2019-03-01 19:52:08.111000','2019-03-01 19:52:08.111000',5,'Kelsey Mitchell','https://lh6.googleusercontent.com/-CHV2z01gqu0/AAAAAAAAAAI/AAAAAAAAAAA/nIYqKXArh0g/c-rp-mo-br100/photo.jpg','8626688543755174284',8543),('AIe9_BEV1VP1woYvuPRixSBHlWg4UbFq_i1lNJ0CjLluXACMJrRcH1Bd8MQZXy_sQMY6EPM1LwqyjKnqX3CKxbL2LaFPaYsMHC7hKNAwCfz5Db3uHFD1LvA','The Staff was very attentive and took the extra measure to make sure I felt comfortable during my visit. I became light headed at a point and they made sure I was taken care of to the fullest! This is my 2nd visit, and I will have a 3rd if I\'m in need of an emergency visit.','2019-01-07 16:00:52.855000','2019-01-07 16:00:52.855000',5,'Doug Walters','https://lh3.googleusercontent.com/-qOlATZisCq8/AAAAAAAAAAI/AAAAAAAAAAA/6rfc-PbXIwo/c-rp-mo-br100/photo.jpg','14904078213800803294',2186),('AIe9_BEV1VP1woYvuPRixSBHlWg4Ul3OwD4dzPfQHeUwMzBV8yqmJujKiloPrz9s0RH9OVqidT-BClBRier1LJB-Wxu5DqWwL1fzWSoJUjS3vl9lSvAUd9c',NULL,'2017-04-03 15:35:24.318000','2017-04-03 15:35:24.318000',5,'Jenny Wang','https://lh3.googleusercontent.com/-sSWyAvAkjD0/AAAAAAAAAAI/AAAAAAAAAAA/I066_QbvuLc/c-rp-mo-br100/photo.jpg','16590124370714063921',4014),('AIe9_BEV1VP1woYvuPRixSBHlWg4uMzSOmDTqop5YapzT_QslOjg9gjNcYwnR4jCCopBp6etVn2htkzT6F3S2Qf44Y5rUq-zmI8fP3xcqE2ME1YQaMBU1Ps','WOW We finally have an emergency center that I HIGHLY RECOMMEND!\nI walked into the Odessa Neighbors Emergency Center Saturday night.. around 8pm.. was taken care of and out within an hour! Amazing Customer Service from EVERYONE... the Dr. was VERY informative and helpful... THANK YOU NEIGHBORS!!!! GLAD YOU ARE HERE','2016-05-02 20:48:16.143000','2016-05-02 20:48:16.143000',5,'Denise Hanson','https://lh5.googleusercontent.com/-u2GqkUS0Bk0/AAAAAAAAAAI/AAAAAAAAAAA/txWeqKICEXk/c-rp-mo-br100/photo.jpg','13486358490203335051',1141),('AIe9_BEV1VP1woYvuPRixSBHlWg4uP1Bt6xetqn1iXwrLokV6gir6dBQigF8BNR6IET_wbURXDueXKvkaF7C6AMGBd0Yyd-uySv5__5rxr0s1viM1qGnPQ8','Nurse Stephanie , dr Chen, reg malissa was great and took good care of me got me in and out fast , would highly recommend this ercare 😁😁😁','2019-08-01 18:19:25.649000','2019-08-01 18:19:25.649000',5,'T Barbie','https://lh4.googleusercontent.com/-8oxkECrSfd8/AAAAAAAAAAI/AAAAAAAAAAA/IUhauazyXKc/c-rp-mo-br100/photo.jpg','12541597562633926366',470),('AIe9_BEV1VP1woYvuPRixSBHlWg4UpcN4Vj_fvlmSrYLQLUWrsnNcPd4AOysSLSAA0VyILKQoUMSSZtct0gnqt3BFw4bCAM42VMvpDVpufvbuawKQQ28F_s','Great customer servixe mt mom Estephanie Garcia was treated very well. The registration process was smooth thanks to Ms. Malissa great customer servics. Dr Faig very professional. Nurse Stephanie very nice and gentle. Rad tech Laura very patient and professional. Mr john er tech very nice. Keep up the good work .','2019-05-23 17:34:13.715000','2019-05-23 17:34:13.715000',5,'ruby garcia','https://lh5.googleusercontent.com/--TDP-b4qqcM/AAAAAAAAAAI/AAAAAAAAAAA/pWPBY69My8o/c-rp-mo-br100/photo.jpg','12541597562633926366',503),('AIe9_BEV1VP1woYvuPRixSBHlWg4UV_zOzopWayYAQfQ0XI-R2gIt3EtUNU9uYlXQt_FlHYiCv8L_ckHruOOcqn0jO1tdMF5FlYWM18nQwdpL8GQQfAu1ns',NULL,'2020-07-01 23:49:18.565000','2020-07-01 23:49:18.565000',5,'Mark Fly','https://lh4.googleusercontent.com/-htgex3pzW24/AAAAAAAAAAI/AAAAAAAAAAA/JqP1c_gBBZM/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',21411),('AIe9_BEV1VP1woYvuPRixSBHlWg4uy63FgacML93axHLJxW2mKDzFRC4kIrTuhwvIDeymuf1ExOX3cq6XbQzIOk87GiOlE271tfLM1WWne-LbXF57hsPP-M','Derek Lowery , they were awesome. This is the only er I trust.','2019-01-12 00:59:54.585000','2019-01-12 00:59:54.585000',5,'Derek Dwayne','https://lh6.googleusercontent.com/-3fkS6gMgANA/AAAAAAAAAAI/AAAAAAAAAAA/ampd-oZZLG0/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2183),('AIe9_BEV1VP1woYvuPRixSBHlWg4V3MHEMwuggQzT-kU8kN3vSJxPG2Nc-C8vwS6hIoGVo2-JYpwN3zvpNEQ9ZSCFyCH4jKBrRn6_--COaouJigBQI3pdgw',NULL,'2019-04-01 18:15:47.754000','2019-04-01 18:15:47.754000',4,'Alexa Bazzano','https://lh3.googleusercontent.com/-Oka-uP4EW-0/AAAAAAAAAAI/AAAAAAAAAAA/m0Y2HpTnLF0/c-rp-mo-br100/photo.jpg','17898197009688164559',5786),('AIe9_BEV1VP1woYvuPRixSBHlWg4V3z6jNaFPSM4B3Z9lVrmqHXxSzM3FMWvQeQZAFmb2hkGuU6L0fDO1fExHMfu5rdoKhrEEHADOvpiswKiXL_SnejITFA','When I first walked in the front desk greeted me with a warm welcome. Angelina helped me\nwith the paper work and had a great spirit. My nurse Seleni was one of a kind and was very attentive and patient. She brought me a water and a blanket which made me feel extremely comfortable. Dr. Wang, I kid you not was an awesome doctor and had a great sense of humor. He smile the whole time, laughed and reassure everything was going to be ok. Thank you so much signature care! I’ll always come back because y’all are one awesome team!','2020-01-10 23:13:48.503000','2020-01-10 23:13:48.503000',5,'Mark Camacho','https://lh6.googleusercontent.com/-6FB_s3fwUQQ/AAAAAAAAAAI/AAAAAAAAAAA/tvT3Do8VuSw/c-rp-mo-br100/photo.jpg','17394740196501090048',14054),('AIe9_BEV1VP1woYvuPRixSBHlWg4vAM5NXyCw6zJGhh97KB3Gd8r3rRA1IKk3_gSIq3EMQjBnD9-vPXoiSKq9gwoNzgpYibwzsfNExg-agWm0Zr9JaInPcI','Great Service From Counter to Room Tanishia got us In quickly and also provided us with whatever we needed Nurse Susan and Dr.Patel made me forget I was in an emergency room with the care and detail shown to me. Thank You All So Much And Shoutout To Laura For the quick and easy xray','2019-10-04 16:04:22.740000','2019-10-04 16:04:22.740000',5,'O.T.W R.E.M.E OTWEnt','https://lh4.googleusercontent.com/-PM10lJdVAzM/AAAAAAAAAAI/AAAAAAAAAAA/WbDe6JBIQfU/c-rp-mo-br100/photo.jpg','17898197009688164559',5516),('AIe9_BEV1VP1woYvuPRixSBHlWg4vD4r3mvOhPZe2nnsQLXAUnMmz8Jq5h9eSzPjCpg_RaUnhdImNtR2NFkpuAmprSmzJ4oqjpVGw1az5_8-XJmuPsF726c','everyone was great! came to be checked for flu like symptoms and was being discharged within an hour. The nurses and doctor were very thorough and made me feel comfortable.','2020-02-15 05:45:02.880000','2020-02-15 05:45:02.880000',5,'C N','https://lh4.googleusercontent.com/-yTN2m9noadQ/AAAAAAAAAAI/AAAAAAAAAAA/3IYIZtu1lOQ/c-rp-mo-br100/photo.jpg','12541597562633926366',13372),('AIe9_BEV1VP1woYvuPRixSBHlWg4VFiILZHpdkL-3poe2REC1H_Q6mIEthY15N3xbiq-j0QYzRJuiTNVpYN426Tg1w3cRXx4UDUI1kj9B2N2sq_unAl1Lt8','Loved my visit Lorena and Victoria at the front desk are very polite and professional quick and easy no long waits nursing staff is awesome as well Very much recommend this ER care','2020-07-26 17:05:23.776000','2020-07-26 17:05:23.776000',5,'Olga Pacheco','https://lh5.googleusercontent.com/-2nzNcGAtEig/AAAAAAAAAAI/AAAAAAAAAAA/GvdcvZArFfk/c-rp-mo-br100/photo.jpg','16590124370714063921',22019),('AIe9_BEV1VP1woYvuPRixSBHlWg4vgoVa_ydC1beZRqysUg7mo1yuklJDc3Tp7roedDqXEtvLDLob4L9T9ZBuV3qJctZ0mPF2VoJzaUBzvLmOhaYgmsAvb0','Open and took my friend immediately to the back to see the doctor and came out with a wheelchair to the side of the car. Dr. Kimball and the RN Anthony were so nice and very helpful!','2019-08-12 03:00:16.302000','2019-08-12 03:00:16.302000',5,'Caleb Cable','https://lh3.googleusercontent.com/-1TZvOswt-DI/AAAAAAAAAAI/AAAAAAAAAAA/HOUDrcDmPkY/c-rp-mo-br100/photo.jpg','16590124370714063921',3259),('AIe9_BEV1VP1woYvuPRixSBHlWg4vh4dkjMfv0mMX-QmmpWk6beF4UL3SR-KHOB5UrB2EIUIYmjWVwv7_02D2whQXvLPk9fqq3hA1uyhkYx7sLZcAF4ZafA','My friend came in with an ovarian cyst and was in IMMENSE pain. The staff was so helpful and kind and the facility was top notch. It was great! Thanks so much for the wonderful care. Leslie and D are wonderful at their jobs','2019-02-28 20:23:52.541000','2019-02-28 20:23:52.541000',5,'Texas Lee Cook','https://lh6.googleusercontent.com/-O5MQIG4mFZg/AAAAAAAAAAI/AAAAAAAAAAA/DdzabjMmXZ0/c-rp-mo-br100/photo.jpg','3511292162159714121',7395),('AIe9_BEV1VP1woYvuPRixSBHlWg4viYrdX94WIddl5RAJD0apn1fnMuUpDOLBlXABRvURE8UX_vI23H4m_bISj-36LjnXcXid9hKX0u-p0jjV8lGhcfUC48',NULL,'2020-02-07 16:08:37.401000','2020-02-07 16:08:37.401000',5,'Cameron Kan','https://lh5.googleusercontent.com/-Nl7cfUD5ozA/AAAAAAAAAAI/AAAAAAAAAAA/i-RLQK9WUCU/c-rp-mo-br100/photo.jpg','13486358490203335051',13436),('AIe9_BEV1VP1woYvuPRixSBHlWg4VklFx0o_xa8mA8kL1xeetTbasMRYVzJJRkv3qtXwkF99UbOyPFbLyQzzBsZhFBAfZ35KLk6JTf90_YnUCP0K3Ee5Fbg','Nurse: Eda \nRegistation: Amy\nDoctor: Dr. Grinblatas\nThe service here is amazing. The doctor was very nice and asked before doing anything to see if i was ok. 5 out of 5. Recommend to anyone.','2019-03-23 14:30:18.750000','2019-03-23 14:30:18.750000',5,'WakManiak','https://lh5.googleusercontent.com/-n97LJ6SU5tg/AAAAAAAAAAI/AAAAAAAAAAA/ZFSsb2nEw24/c-rp-mo-br100/photo.jpg','17394740196501090048',4705),('AIe9_BEV1VP1woYvuPRixSBHlWg4VLkRWghwKJNcDppXOWZGMOKjRln29tT4jdzyXCELLn6mQqm8RRG01W630Bl_zP_qMiO5pcBQVwHqixiGYiWFhWFaeFk','I like the professionals that are here they are fast and caring. DR. Lindsey Alvea Tricia and Elida was great...','2019-11-07 16:24:21.129000','2019-11-07 16:24:21.129000',5,'Rudysia Blocker','https://lh5.googleusercontent.com/-oBCldq-vsJ4/AAAAAAAAAAI/AAAAAAAAAAA/qGEasvesrLM/c-rp-mo-br100/photo.jpg','16389487648212004696',2724),('AIe9_BEV1VP1woYvuPRixSBHlWg4vnFnIF73WTrenXtKuzqiYTCa7jj8V-Xr-Jn6i6XSsMjFPDzrbeLPXd2j4uBTEMisS0wcEWGx5rWG5RpgjQf0ct7jgWk','Amazing facility and staff. So quick, clean and accommodating.','2019-02-03 23:40:56.514000','2019-02-03 23:40:56.514000',5,'Tanya Smalling','https://lh3.googleusercontent.com/-GaV1fcbH5oI/AAAAAAAAAAI/AAAAAAAAAAA/fbIX9eCduY0/c-rp-mo-br100/photo.jpg','14904078213800803294',2173),('AIe9_BEV1VP1woYvuPRixSBHlWg4vpoboOuMwgsDDLhpY5VuN-XUaBUAxvsAHh4iJyJYPINxQv14M3ChqbFrgNhZTwmzIw6CV6tx8pH7oZOfac0GsTBgPdo','Dr. Boester and the others at this emergency center were very attentive in my care. I felt they really listened to me and my concerns about my condition. \nThey also made the other aspects of my visit quick and easy (e.g. paperwork and cost concerns). No wait, but I was the only patient there at the time.','2019-11-23 04:33:24.247000','2019-11-23 04:33:24.247000',5,'Daniel Putt','https://lh6.googleusercontent.com/-CzBwNIZIsKw/AAAAAAAAAAI/AAAAAAAAAAA/stOnTbebLgU/c-rp-mo-br100/photo.jpg','3511292162159714121',7140),('AIe9_BEV1VP1woYvuPRixSBHlWg4vS78pMOuqdkI4nL3sdLSl7VhAfZE07HjvQbmuhYD0yw2dBjV7qxpL8WKace7G4IhsIiBmaIz07zr-y-SN8c3Y03hv-M','I took my wife in to the center early in the morning. Dee had us in an exam room within 2 minutes. The registration process was simple and easy as well. The room was clean and comfortable with a warm blanket waiting. Olivia got her vitals really fast and helped make us feel comfortable. My wife passes out at the sight of blood. Dawn, our RN had an iv going comfortably without my wife even noticing. Eve took her CT scan quickly and brought her a fresh warm blanket. Doctor G was knowledgeable, warm and comforting. He reassured us that she would be fine. Overall great experience and wonderful staff.','2019-10-02 14:51:13.851000','2019-10-02 14:51:13.851000',5,'Connor Elliott','https://lh6.googleusercontent.com/-VoOCFz-5jfI/AAAAAAAAAAI/AAAAAAAAAAA/weiTCRrwtKo/c-rp-mo-br100/photo.jpg','3511292162159714121',7167),('AIe9_BEV1VP1woYvuPRixSBHlWg4vzdp7Jz1wPjSkR2fsYNBPU0mQgtNGS0bdXIGjgYbsKj-qFCyyUQw441kiuseUG3KyFzKt2D2WSFyfQxRDb57DqvYUf4','Unbelievable experience. I walked in, and was seen by a Dr within 5 minutes of arriving. I live in Cypress but will drive to this ER for any future needs.','2018-02-27 15:27:37.998000','2018-02-27 15:27:37.998000',5,'Ian Milefchik','https://lh6.googleusercontent.com/-EYlsfpbSHbM/AAAAAAAAAAI/AAAAAAAAAAA/ZcTBaofi8PU/c-rp-mo-br100/photo.jpg','14904078213800803294',2278),('AIe9_BEV1VP1woYvuPRixSBHlWg4W_GgDjTYxpMRttot4QWerxxxsmoK7nRC6IVraECIZmLK0WT-wFFvVPskooBgh8IN-g8F0HTxK_VESg4XvIJ7XVFLFCk','I had a great experience with my 2 year old. They had great bedside manner and the lack of a long wait was wonderful. Clean, compassionate and caring!','2016-04-24 15:36:10.250000','2016-04-24 15:36:10.250000',5,'Mandie Eichenlaub','https://lh4.googleusercontent.com/-kFVAZGCzCpw/AAAAAAAAAAI/AAAAAAAAAAA/HLhH2zuTj_U/c-rp-mo-br100/photo.jpg','14567670160750071148',2039),('AIe9_BEV1VP1woYvuPRixSBHlWg4w0w4hrOfeZDKsbWD9P_OsTs1lVl9uNeN1UUBEabmXICri7DWAtJgTp0_GwA1ZLkFGnUiczVQNh-HMBzHRZ1eOc6Kry0','Very nice and organized','2020-07-20 13:12:39.249000','2020-07-20 13:12:39.249000',5,'Juhi Mansukhani','https://lh5.googleusercontent.com/-E3EqR-bkqTE/AAAAAAAAAAI/AAAAAAAAAAA/fP0ubvzE-mk/c-rp-mo-br100/photo.jpg','14748677429039074158',21679),('AIe9_BEV1VP1woYvuPRixSBHlWg4wcoDYuw4AAvqQfMsnUh2TiETMQ0DWP80IduiHmuFrfIpno0aSJ7ZhOMqCO2bO15KfZ8_ZR7czlUagsrxrxHSN4hhaSE','Staff was awesome! Took my 4yo with an ear ache and he was seen in less than 10mins from when we walked in. He was terrified to go in there since he had just gotten his 4yr old shots less than a month ago and he forgot about it once they started treating him with toys :) they were great..even walked us to our car with an umbrella because it was raining!','2015-03-31 01:17:56.285000','2015-03-31 01:17:56.285000',5,'Karina Tristy','https://lh6.googleusercontent.com/-IGYjWzxnP9k/AAAAAAAAAAI/AAAAAAAAAAA/5qoMP1JoReE/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5956),('AIe9_BEV1VP1woYvuPRixSBHlWg4wd7yjhJtlqcdxu5y_9QnAGDaNA1HFiZk3_UCAt0g7Q2Gki4vF4MufBIko4mphXOVRyMnAo2CeKPo5JN0LqxO5LllbvE','Amazing and helpful staff. One of a kind','2017-11-26 15:06:09.857000','2017-11-26 15:06:09.857000',5,'Dimonique Smith','https://lh6.googleusercontent.com/-JN6Xu9f_l-c/AAAAAAAAAAI/AAAAAAAAAAA/NXqyEnr8qF8/c-rp-mo-br100/photo.jpg','14904078213800803294',2308),('AIe9_BEV1VP1woYvuPRixSBHlWg4WDZUPKuxC-glXTvpP3c9HpHB4gz-1PqivxTG2SPo4l_2EthSW7JeEoX5xzpPMqAS49su-TEUkKfSl9LBIBC6i_9jkb4','Great experience staff was very kind and helpful','2019-03-10 22:23:36.578000','2019-03-10 22:23:36.578000',5,'Elijah Martin','https://lh3.googleusercontent.com/-BPaxe4NzMS8/AAAAAAAAAAI/AAAAAAAAAAA/ppHsQs3hyu4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BEV1VP1woYvuPRixSBHlWg4wiPBg3YcdWfGHEqAgGVpYhEZqyz62XaN5LmkDpYJeFKxVM8kTm7aH8UjnGfpha_zr52kpSkRoA0oF9pxUFTuZw2ZNlo','The doctor was very knowledgeable. The nurses were AMAZING! Quick and painless. I had Dr Jones, Nurses Kim and Sherri','2019-03-13 22:18:46.384000','2019-03-13 22:18:46.384000',5,'Brandi Eason','https://lh3.googleusercontent.com/-jCeiDWZxaa4/AAAAAAAAAAI/AAAAAAAAAAA/0XYNVjee-TI/c-rp-mo-br100/photo.jpg','3272657195432704501',6993),('AIe9_BEV1VP1woYvuPRixSBHlWg4woXfwo2QIi5FpfMxrAGQdnhtRWbq-qfsdcPCSxSyHdUWJ7NjC0Ago7gpzetWS5m1Mj7UDcE2lxvk63y20YVMQ1yzaYc','I had a wonderful experience they took care of me very well . I went home feeling way better , my doctor Dr. Edwards was very helpful. As well as my nurse Gina,Natalie.','2020-02-12 21:27:52.309000','2020-02-12 21:27:52.309000',5,'Savanna Alaniz','https://lh6.googleusercontent.com/-DB040_Bulxs/AAAAAAAAAAI/AAAAAAAAAAA/2j3o3kfrZ18/c-rp-mo-br100/photo.jpg','14567670160750071148',13534),('AIe9_BEV1VP1woYvuPRixSBHlWg4Wpn1J3gDCnN8Sy-OVXkvW3A6sfGb3CMPfdtg2eiZjWIspzh2askSF0XOLaQHk74MRn-iqAvaKYkgVLRV4b6B9JEckyM','Dr.Ashbrooks, Courtney, Luke and Kim we\'re all wonderful! It\'s very clean and a comforting experience! Thank you!','2019-11-25 23:28:38.819000','2019-11-25 23:28:38.819000',5,'melissa baker','https://lh6.googleusercontent.com/-cjRQ_OYbp54/AAAAAAAAAAI/AAAAAAAAAAA/4cpo7qVKCU4/c-rp-mo-br100/photo.jpg','3272657195432704501',6855),('AIe9_BEV1VP1woYvuPRixSBHlWg4wpvP1D3mMGM9o11NXTm54OogKRlK8z-ULJD-4SDX22N-Nj0iufeYqa7FPT1W101TMY_LIR71Ldd07Fxz5stphurmnNw','The facility is clean, the front desk staff were very kind, and the nursing professionals were awesome as well. I\'ve never had such a positive experience while sick that compares to this visit.','2018-05-12 19:36:58.957000','2018-05-12 19:36:58.957000',5,'Lena','https://lh5.googleusercontent.com/-gN-wH8pTQ2w/AAAAAAAAAAI/AAAAAAAAAAA/rz9k5U7ZIvc/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3826),('AIe9_BEV1VP1woYvuPRixSBHlWg4Wq1TOBJDLJSoPs6Ah_CbRwI17Uw7Rs6FhKn615rVrS4FqkBbZ4S0lR4xAechwURp4csk5vTPmbrKSAsdNrM3pk57ZXI','Wow! What amazing and fast treatment we received here! We had to bring my 4 year old daughter in for an asthma attack, they took her straight back into the “really cool” kid room! The nurses came straight in and immediately made her feel comfortable!! Dr. Jones was amazing with her and was very knowledgeable and comforting! Thank you to all staff who helped out today you guys are tremendous!!!','2018-04-15 01:57:54.764000','2018-04-15 01:57:54.764000',5,'Chelsea Jones','https://lh6.googleusercontent.com/-P6fhQaa7hPE/AAAAAAAAAAI/AAAAAAAAAAA/7VjFGk1mP4M/c-rp-mo-br100/photo.jpg','17898197009688164559',5931),('AIe9_BEV1VP1woYvuPRixSBHlWg4WRiuJPfKs1FZ3RzvyVvjpdjj3hIt4VQ4TzDaRDa0iiKf6cUsUMNA6-KBK5AZO_BBL9QDxCqJAA4qF-CRdm-0NezKKsU','Extremely pleasant atmosphere, very friendly and attentive nurse, technicians and doctor! I will recommend this place to everyone.','2018-10-05 14:31:47.124000','2018-10-05 14:31:47.124000',5,'Dianne Jolivet','https://lh3.googleusercontent.com/-BoKEdJwx8OA/AAAAAAAAAAI/AAAAAAAAAAA/jwV2vU65ieM/c-rp-mo-br100/photo.jpg','14567670160750071148',1477),('AIe9_BEV1VP1woYvuPRixSBHlWg4WudxqjaVzk0k8WKKMOb18UwCxkpBYhu7aLrpuHZFUXisH2f70Je7Y9r5WzGEb8EtftoDbYwmppjdM4AmOZItMcyQXUc',NULL,'2019-01-12 19:53:03.247000','2019-01-12 19:53:03.247000',5,'Joshua Turner','https://lh4.googleusercontent.com/-mOhexrLZLQM/AAAAAAAAAAI/AAAAAAAAAAA/bRBWOsZSCyc/c-rp-mo-br100/photo.jpg','3272657195432704501',7059),('AIe9_BEV1VP1woYvuPRixSBHlWg4xDfO5RPBG3VwlNq9JjIDjK930lcqz9qQf7tpa6oMII1MLL36EbM2E7xxk2cqh_RRRiNw0S2fbsgbL86awgZ2OtODn2U',NULL,'2020-07-20 21:07:55.374000','2020-07-20 21:07:55.374000',5,'Inez Galvan','https://lh4.googleusercontent.com/-R2bzFXsTpKk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck9vRgJyBBlDpRCC0XU7kWoP9PgNA/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22222),('AIe9_BEV1VP1woYvuPRixSBHlWg4xiBt_XFjjdV7P6JVAwQggeSPclmwZx7nXk3SqxaTqeSz-pBM3M-GIbEbGYnl6du-mOEBAILpc1DZKJCcTVWjN4FKuRo','Very professional and friendly atmosphere. Which is exactly what a person needs when in pain. I didn’t know my blood pressure was elevated when I came in and they didn’t alarm me. They took care of needed to be taken care of and by the time i had to take my exit vitals, my blood pressure was back to normal. I’d recommend them for any small emergency. They are well equipped for it. Hopefully I never have to see them again lol but if a minor emergency comes up, this will be the place I got to for treatment.','2019-02-18 20:31:00.504000','2019-02-18 20:31:00.504000',5,'Dee Thompson','https://lh4.googleusercontent.com/-IEodWklPCQg/AAAAAAAAAAI/AAAAAAAAAAA/22uHsvIgdcs/c-rp-mo-br100/photo.jpg','3511292162159714121',7404),('AIe9_BEV1VP1woYvuPRixSBHlWg4Xqg34CG6zeT3sa8q_ByRRBHCuEU6aceg-b_ZYgDp6jEapT2R6ZGSE4Jhu2CwbY2DxwQx6JoN0HgGq_Yx0sO5XQRb9HQ','Very great, was quick, nice staff, helped me with my problems Dr. Christopher Wang & Nurse Cody Irving','2020-08-24 04:33:24.424000','2020-08-24 04:33:24.424000',5,'Leslye Washington','https://lh5.googleusercontent.com/-BbC9Ea7NzXg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclUeWI_-T7q3bg89ezxMB3XjWM0bQ/c0x00000000-cc-rp/photo.jpg','12541597562633926366',NULL),('AIe9_BEV1VP1woYvuPRixSBHlWg4xQTdydypHTE2HpHvH6IX8nRetS3Gs8vzKKsqnmf3HNIts1t3bHntqdX2OI6_y1B5CR8bKxjZBbEMtECmwNT0nmyQkg0','Very poor service didn\'t know what thy were talking about had to call another hospital for advice equipment doesn\'t work just over all a nice looking clinic thats it','2020-01-02 00:30:45.208000','2020-01-02 00:30:45.208000',1,'Stacey M Ruffin','https://lh4.googleusercontent.com/-yBTTnWYMvH4/AAAAAAAAAAI/AAAAAAAAAAA/AkUCpV1CvFs/c-rp-mo-br100/photo.jpg','12541597562633926366',268),('AIe9_BEV1VP1woYvuPRixSBHlWg4XUaZN_U95697kMLYBzJXyuK0LUUUmjYICrfzjYuh_5kAW2Thc1To99nVVbdZpYLmKIhGGg3FCtNesRGvioo0-pPO_f0','Had a accident went to Signature Care. The staff was very friendly and caring.\n\nThanks to :\nJennifer\nErica\nValerie \nAnd the doctors','2019-01-03 16:54:09.914000','2019-01-03 16:54:09.914000',5,'C Russell','https://lh5.googleusercontent.com/-ZZWKMtJTzAc/AAAAAAAAAAI/AAAAAAAAAAA/55CME7aT0vw/c-rp-mo-br100/photo.jpg','8626688543755174284',8616),('AIe9_BEV1VP1woYvuPRixSBHlWg4xv-yv00ys7ZETMmPt7SwlXvP5Y04Pu7l8x8JRSRJ5KoIgtTiwesGwX0f8URt0LPnnLV-w26VCmAAurD8HbXT53j0Gt8','This ER claims they “have a right” to charge whatever they want, and doesn’t tell you until months after the visit. Charged me over $3000 for a couple numbing shots and xrays.','2020-01-10 01:19:50.477000','2020-01-10 01:19:50.477000',1,'chase','https://lh4.googleusercontent.com/-TWj2y1zgM9U/AAAAAAAAAAI/AAAAAAAAAAA/dTXL4jz_j6w/c-rp-mo-br100/photo.jpg','16590124370714063921',9498),('AIe9_BEV1VP1woYvuPRixSBHlWg4y2EvggBWhUd-G6Nt-9mBh2bKZR2FFz3UxHesxCZR5rVzpqvDN4IYZD9yMHRV2oMxSTVSdkEZvi9fRSsV5hHJMxtV1ME','The entire staff was very nice and welcoming. They got me in and out really fast while treating my problem!!','2019-10-01 00:19:57.919000','2019-10-01 00:19:57.919000',5,'Jasmine Gowdie','https://lh4.googleusercontent.com/-q4ocZLg15Og/AAAAAAAAAAI/AAAAAAAAAAA/HNFzLtM2AE0/c-rp-mo-br100/photo.jpg','16590124370714063921',3160),('AIe9_BEV1VP1woYvuPRixSBHlWg4yc8jhUxzyZWrnoAaJn8VvqR-wcBgA1IE8XXmVAQzoMrHBxvUM6Roue-qZH_zpI6XMPjXL0AhLjN2rFIvmGdAZsxJRXI',NULL,'2020-08-03 00:19:39.176000','2020-08-03 00:19:39.176000',1,'Hoang Le','https://lh3.googleusercontent.com/-0LlYey1vi58/AAAAAAAAAAI/AAAAAAAAAAA/mbe1W2KQgyQ/c-rp-mo-br100/photo.jpg','14748677429039074158',22532),('AIe9_BEV1VP1woYvuPRixSBHlWg4YcWBdB0VqomkibavPIT_kdbwpyBoH4JWqkr05BHFkK2eJ5EVCAZPnxqZAL_WovUPEshIeQT4Zf7oIFAcsQ1GXu7KqN8','Great experience. Service was very quick but by no means rushed. Great care from the staff , nurses, and doctors on site as well! \n\nWould definitely recommend.','2017-03-30 19:31:52.228000','2017-03-30 19:31:52.228000',5,'Willie Dennis','https://lh5.googleusercontent.com/-FUvZScd9qkM/AAAAAAAAAAI/AAAAAAAAAAA/0K4D4A0BTvc/c-rp-mo-br100/photo.jpg','16590124370714063921',4016),('AIe9_BEV1VP1woYvuPRixSBHlWg4yE1XZOn8QhkMpOCnmBf4uJaOAdwkjAT7wvPuUnv15YyUTRR7WMpFFV7E8SzD53i7kva7S4B5SOXwI_6BVE7jeKJTGPQ','First, the receptionist was so kind and professional! Sindy, Gina, Marone and Dr.Wang are the BEST! I know I was not dying BUT I was uncomfortable having to be taken to the facility by my mother as I could not drive nor stop coughing yet these individuals were not judgmental. They were amazing!','2020-01-17 23:37:46.398000','2020-01-17 23:37:46.398000',5,'Tina Nelson','https://lh5.googleusercontent.com/-QSR8fgHTngA/AAAAAAAAAAI/AAAAAAAAAAA/sXXl5iUIFJI/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',10035),('AIe9_BEV1VP1woYvuPRixSBHlWg4ygdGZzS2-dObnaxnapCndPj9p7Rtyo0SyZ_-iQ3DLCjq3mjEVPU7vV1EAVA7H75TW0Pd0tyMErslK_HRzTxSWaf12E8','Leslie was very professional and made our day a whole lot better. Hamzah was also a great staff member!!!','2019-01-27 23:35:13.450000','2019-01-27 23:35:13.450000',5,'Catchem Landry','https://lh5.googleusercontent.com/--_n_7HtgG5E/AAAAAAAAAAI/AAAAAAAAAAA/B3XJkwwJ5Dc/c-rp-mo-br100/photo.jpg','3511292162159714121',7447),('AIe9_BEV1VP1woYvuPRixSBHlWg4yGRVd8ZgTqX3XYlznYDbGmjyKV-quVjvBYACVYy_psNJghnMmWQiFBSN7UoGAyCsjtFTSDxF-aqj7vMe9B-heTNQf7E','Amy, Dr Dang, Dion, Josh T and Erika were every welcoming and was treated by our facility unirse evryrhkng was nice','2020-01-11 05:34:31.104000','2020-01-11 05:34:31.104000',5,'Barbara Okorafor','https://lh5.googleusercontent.com/-GgECN4KArnM/AAAAAAAAAAI/AAAAAAAAAAA/AxejKO8txgE/c-rp-mo-br100/photo.jpg','3511292162159714121',14462),('AIe9_BEV1VP1woYvuPRixSBHlWg4YLyoQdwMMGq12Z1eECApszej5PbbxL0KvUmjTL-Ay6GVuQAyn5-le4A1k_witwzc9Sogk3H1WwcSMVi3gFYQH0PuqI0','Great customer service friendly employees at fast and efficient timely manner service provided','2019-09-06 11:50:48.418000','2019-09-06 11:50:48.418000',5,'Gina Donaldson','https://lh6.googleusercontent.com/-yuPjI9Ba_j0/AAAAAAAAAAI/AAAAAAAAAAA/V1dM2rhxU0Y/c-rp-mo-br100/photo.jpg','2694018788013845459',6072),('AIe9_BEV1VP1woYvuPRixSBHlWg4yM1nytBaIItFH78AETr1uTqEi-wcaFp6L0_1vsTlrPqjzH-37s8NAjNH078b9VWKSy6fuzTOGwsISYdLvU5vRH24qbM','Very fast and effective service, no long waits and great customer service!','2018-08-26 03:53:54.759000','2018-08-26 03:53:54.759000',5,'Natasha Rawana','https://lh5.googleusercontent.com/-3ieWhnt-dbw/AAAAAAAAAAI/AAAAAAAAAAA/RSgw0maIDxM/c-rp-mo-br100/photo.jpg','14567670160750071148',1551),('AIe9_BEV1VP1woYvuPRixSBHlWg4YYaZ2iGt97ZVl-QUCpWpC4R7EYlOMq7H1z6tXcaMdMB638T5YGkH3NnoFE_47uWJd6ElGvoaKyosiIPH73R69EBxlBc','Great staff! Thanks Dr Iheme, Nurse Alvean, and desk administration from Jocelyn was awesome. Y’all rock!','2019-12-05 06:39:12.762000','2019-12-04 19:15:48.084000',5,'Allison Bevis','https://lh4.googleusercontent.com/-25ZSLndUwLo/AAAAAAAAAAI/AAAAAAAAAAA/d9Vqjr7juwk/c-rp-mo-br100/photo.jpg','16389487648212004696',2579),('AIe9_BEV1VP1woYvuPRixSBHlWg4z6p548BVuRMkEh596ufXiJb5TBY5NorgSfyUC9aQ92ZrE1eW6GVTCwf658BrJJls0HF0Dyw7wgxWvYqvItnWKP518Tg','very nice and profesional staff. Andrew,Danny and Kim were very attentive. Would recommend this place.','2019-04-10 02:45:57.518000','2019-04-10 02:45:57.518000',5,'Mayra Gonzalez','https://lh5.googleusercontent.com/-AVBapddslNU/AAAAAAAAAAI/AAAAAAAAAAA/ShSB_QReVHE/c-rp-mo-br100/photo.jpg','13486358490203335051',1044),('AIe9_BEV1VP1woYvuPRixSBHlWg4zCpVLX-Om2e29VGIGvArOC-Ajusw9EMCX0KFaN01s-IkWWO83Lrz0JseGsfFJlIKNJ4ABwLURPwigO1XihDRadIu1Fk','They are all very nice people and very well mannered i loved it and my tummy feels good.🤝🖤Dr.Henderson,Mrs.Sarah,Angel,Laura,and Mrs. Tanisha yall are awesome!🤟🏽🌌','2020-02-14 07:33:57.885000','2020-02-14 07:33:57.885000',5,'TTG Broonex-','https://lh3.googleusercontent.com/-Trk9HbjqUTo/AAAAAAAAAAI/AAAAAAAAAAA/XWqPiiCq8DI/c-rp-mo-br100/photo.jpg','17898197009688164559',14170),('AIe9_BEV1VP1woYvuPRixSBHlWg4ZCY0xXDJXa53noLx4gcvgmcaOHYrZVEG0nHwvDXFv5oJxPb8KH-fwcM2LKUCnFdjRGldFCX5zZfY06UWiQ_zH-YiMuM','This is a great place to be seen for medical issues. I was greeted promptly by the front desk, and seen immediately by Nurse Jessica and Dr. Daniels who not only treated my wound but also educated me on what might have caused it. Made me feel comfortable. Very Thankful that this establishment is close to my home.','2019-11-25 00:44:18.530000','2019-11-25 00:44:18.530000',5,'Kammeoso DeVille','https://lh4.googleusercontent.com/-aWeOoQHu60Q/AAAAAAAAAAI/AAAAAAAAAAA/ePk8F9Bzs6c/c-rp-mo-br100/photo.jpg','8918455867446117794',9045),('AIe9_BEV1VP1woYvuPRixSBHlWg4zDG9F9j9UkCWq2KwZmSgoBXBuv_XpgThsBR5JAqJhqRwztNG7Z6H15r7-J-tT2XOYe6f5fUybO4mGOrPO-e74dyHCDw',NULL,'2016-11-08 18:22:47.230000','2016-11-08 18:22:47.230000',4,'Anne Hause','https://lh6.googleusercontent.com/-QsSrGzBiK5Y/AAAAAAAAAAI/AAAAAAAAAAA/2Ol1UldRKuQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7925),('AIe9_BEV1VP1woYvuPRixSBHlWg4zDWvYPq4IpIdtjIm2dgpmEgZilFbGP2QJff1PSagnpw7bDsWUJU5Gt45eDgKGCDdZa72XIWaWV4LW25DFBfXRenR2V4','Everyone at SignatureCare was very professional and courteous. Making our stay pleasurable during this unfortunate time. Thank you Dr. Vakey, Nurse Brad, and Rad Tech JR','2020-01-16 13:30:08.873000','2020-01-16 13:30:08.873000',5,'Mark Rodriguez','https://lh3.googleusercontent.com/-mxVcM0VxFzI/AAAAAAAAAAI/AAAAAAAAAAA/upcSbXm6cvc/c-rp-mo-br100/photo.jpg','16590124370714063921',9752),('AIe9_BEV1VP1woYvuPRixSBHlWg4Ze4D6B-6X_8RFylpGNFAHApGlytq67g_I0aXLRlxdAdVhAv6dwpLW4CagFfpDf6iYaQtsPjC6lcYR09TucRJH4Bp6wg','My daughter was brought in just as a precautionary due to bumping her head in a car accident. We usually go to North Cypress for all of our emergencies but thought we would try Signature since they are closer to us. All of the staff were professional and very informant. The Dr explained everything to us several times and gave us several opportunitIes to ask questions.\n\nI know ER’s can get chaotic and everyone is spread thinly leaving you feeling like you are in the way and possibly over reacting. Not here! They make you feel important regarding your concerns and welcomed to be there. \n\nThank you Signature Care Emergency! This is definitely our “go to” emergency room from now on. 🤗','2020-01-15 16:32:19.817000','2020-01-15 16:32:19.817000',5,'charolette lemier','https://lh6.googleusercontent.com/-ztEVBVoAtwY/AAAAAAAAAAI/AAAAAAAAAAA/fPnE5AcoXds/c-rp-mo-br100/photo.jpg','17898197009688164559',9785),('AIe9_BEV1VP1woYvuPRixSBHlWg4ZIrM0umc17Zzxk_0HfAxGr94EaZbseDxrCkhJnhFXZNwUMBhAnIAq0gdNuA-GoT-CHxP8WBP-FGWZSg5LPpyFh_zTMk','Ashley, Erica, and Valerie all did an awesome job when we brought my GMaw in to this center.','2019-01-04 17:45:36.963000','2019-01-04 17:45:36.963000',5,'gage heck','https://lh3.googleusercontent.com/-5ZYYHzE8R_U/AAAAAAAAAAI/AAAAAAAAAAA/TWFLQmG_m-Y/c-rp-mo-br100/photo.jpg','8626688543755174284',8608),('AIe9_BEV1VP1woYvuPRixSBHlWg4zoMHGKabc0aCkViCogNd6K-ir5XNRadmFspNMetEfyMSFWvUzRU_69_N64V3pLtyu1Zkhi81T6hLRLm-BDqI-9PMrPE','I had a great experience with Alvean ,Patricia and Thuy An. They all treated me very friendly and professional.','2020-02-13 22:06:52.241000','2020-02-13 22:06:52.241000',5,'Reyna Hernandez','https://lh5.googleusercontent.com/-asf2Tq_GWHM/AAAAAAAAAAI/AAAAAAAAAAA/D8p_BW7AqNM/c-rp-mo-br100/photo.jpg','16389487648212004696',10881),('AIe9_BEV1VP1woYvuPRixSBHlWg4zPXcNoOWpzimZoqddk8IMloPUfnN0oDFwsscv3BSFn_noeAIU9152rNZDQj5ss5zQbRSJP7YuN4jR6lrMBOVvNcUpEA','Patricia and Alvean A did a wonderful job to get me in and out quick with the doctor. Very friendly staff and helpful.','2020-01-15 19:05:05.202000','2020-01-15 19:05:05.202000',5,'Victoria Cook','https://lh6.googleusercontent.com/-Ksrw0igYank/AAAAAAAAAAI/AAAAAAAAAAA/acFJgdzW_p4/c-rp-mo-br100/photo.jpg','16389487648212004696',9728),('AIe9_BEV1VP1woYvuPRixSBHlWg4ZSbWeuJWPsPW5c_fUiZhzJZ1OlYk3EtfifTWzoDL74i01QEdwCTXU3LL7zVFw0XSUwwEQLtcjdWqwqQLox5kyHUsack','I went in because I felt that I had strep. The environment was clean and beautiful. The staff was friendly, patient, and professional. From the receptionist to the physician, I felt that each person genuinely cared about my well being. Thank you! I highly recommend Signature Care in Texarkana.','2019-11-23 12:53:04.414000','2019-11-23 12:53:04.414000',5,'Amber Merrick','https://lh6.googleusercontent.com/-UF-CUilqdnw/AAAAAAAAAAI/AAAAAAAAAAA/5udDFnqR-Ng/c-rp-mo-br100/photo.jpg','3272657195432704501',6857),('AIe9_BEV1VP1woYvuPRixSBHlWg4ZWhApmcbI5uu3V8GNaSLkQSouVick2qBsmme_CSc1B9lvKpOTHaUV3t4AulU_s5j-dqKki7KyCFY9O9_5ZkXdKhSHBE','Service was fast and staff was very friendly and attentive.','2019-10-25 03:52:10.575000','2019-10-25 03:52:10.575000',5,'Lory Cherry','https://lh3.googleusercontent.com/-Hhm3tkUB8WE/AAAAAAAAAAI/AAAAAAAAAAA/EUehk3H7BfY/c-rp-mo-br100/photo.jpg','13486358490203335051',767),('AIe9_BEV1VP1woYvuPRixSBHlWg4ZzWWX0g0wZn_f6J_XBHfmxpMop9epPf0n_awPqBqg8E8eTVqCtV9T3lk595_kTFP5pzY-AyOTpcgL3drBF8nrNuDAR4','I came in to receive a covid test, my nurse Dana was very helpful and kind. She made sure to explain everything and make us very comfortable. I appreciate all their hard work during this pandemic.','2020-07-29 16:46:47.942000','2020-07-29 16:46:47.942000',5,'Baylie Navarrot','https://lh4.googleusercontent.com/-pJVPNs6GXzc/AAAAAAAAAAI/AAAAAAAAAAA/GABN15KfpHE/c-rp-mo-br100/photo.jpg','2077061009497551125',22952),('AIe9_BExcxslmE1rr7n5jMcadSKe_1N0mzJJ8Fe9uzPf8B1t04nDgE4OqnIZ3kt0yaClBHXbAzmofo0_7NooAaZbcgwH-SVGJDGi849Ifs33WWEdx6eQn60','They very nice and respectful','2020-08-17 01:09:00.761000','2020-08-17 01:09:00.761000',5,'grizzcruddy','https://lh3.googleusercontent.com/a-/AOh14GibUfX5yY11NfLJsiynyXAW2JP4JFO4Qs6hXCSG=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKe_3wRcFpqvrW-gDqbkuaZoiB1Kc-72EcBODIkrOq4SdMYY7BvWAmj-RypyUqUMSSmi975uDlFu2UWHhA8mqontXd6w1c','Highly recommend!','2019-03-23 13:21:49.446000','2019-03-23 13:21:49.446000',5,'Matt Crouch','https://lh4.googleusercontent.com/-sxzSRp6V61o/AAAAAAAAAAI/AAAAAAAAAAA/JNrV2RJ9f-M/c-rp-mo-br100/photo.jpg','3272657195432704501',6987),('AIe9_BExcxslmE1rr7n5jMcadSKe_5CbD8-qZqvcaANa2NfX3uCiESaaILGAKhDJVMti3Lf-XYUADrL5-pqqi68IezezuVfklFeQLCI233d9jnIBxc18b5g','What a wonderful experience during a stressful time','2019-03-07 04:38:22.189000','2019-03-07 04:38:22.189000',5,'Robert Dupree','https://lh4.googleusercontent.com/-Qnae8Po5_pE/AAAAAAAAAAI/AAAAAAAAAAA/ymxU4BBr13M/c-rp-mo-br100/photo.jpg','14567670160750071148',1375),('AIe9_BExcxslmE1rr7n5jMcadSKe_DRUyrgDVtRe52Seq0NB8wf64UCmNfwEI_xZbL-6o-iieoIjQ9-oX0Lqi2GQn85HYIgpa6CYX6_C77X5fjmTRuKHZRY','Amy and josh T, dion, josh M helped me out very well. They were very patient and determined that I was seen today. Thank you all for the great service.','2020-01-11 02:50:08.255000','2020-01-11 02:50:08.255000',5,'keasha collins','https://lh4.googleusercontent.com/-MOB3Dtho4Yo/AAAAAAAAAAI/AAAAAAAAAAA/LSLMj-rU2Mg/c-rp-mo-br100/photo.jpg','3511292162159714121',14463),('AIe9_BExcxslmE1rr7n5jMcadSKe_fStD7pWUpU7R2NL61b1bPK8oAr2AZHlnp5RGSq-4Yq5izpgUVY0ornx11t7UJS6Fy_QyoTXYJTbc00Lcimxt1INztE','I always have the best team to take care of me...','2019-12-07 09:43:09.584000','2019-12-07 09:43:09.584000',5,'Kasonya Brown','https://lh6.googleusercontent.com/-tspWxC9H77k/AAAAAAAAAAI/AAAAAAAAAAA/UQMAtpF0hb8/c-rp-mo-br100/photo.jpg','3272657195432704501',6845),('AIe9_BExcxslmE1rr7n5jMcadSKe_iJCRzqMzqN0HV_H6yPJNEeyp42S1oG0fm4PXP_43-6mPhk8VDyDreKmU61j_Ejw0gPm26urnCD8ZyRVG8kTgdp0y6M','The service was great Jani, Marcus Patricia and aurora were great from beginning to end. No waiting.','2019-12-08 18:02:54.747000','2019-12-08 18:02:54.747000',5,'Teresa Davis','https://lh4.googleusercontent.com/-A5Nvxar4Olg/AAAAAAAAAAI/AAAAAAAAAAA/s7uLLKqJhQM/c-rp-mo-br100/photo.jpg','16389487648212004696',2564),('AIe9_BExcxslmE1rr7n5jMcadSKe_LZK9VyaUeEvpzvWMulpiYna3pZVfDbV0Bqb3i5uoDUBrp_8-JuYYMfMS71F8InfqnMlCUjt-mj0ZbYwLjN9Yjz1Vvc','We had the best experience here!!! They treated us like family! A very big thank you to Karen, Courtney, and Gunnar, yall were very helpful through our experience!!!','2019-01-01 17:47:14.950000','2019-01-01 17:47:14.950000',5,'Dominique Packard','https://lh4.googleusercontent.com/-gDvlhfT0txo/AAAAAAAAAAI/AAAAAAAAAAA/bVxo_fN_vKk/c-rp-mo-br100/photo.jpg','3272657195432704501',7072),('AIe9_BExcxslmE1rr7n5jMcadSKe_tIMxrkuIiriWojP-CT_sBLPLkLZ1iuOA0uGg18-HB7AN95_1botGietQjwboomFQhEKpmztpTOTIkGxPx_HDCjKsTQ','Lorena and amanda had some of the best customer service 10/10 would recommend','2020-07-25 12:52:27.704000','2020-07-25 12:52:27.704000',5,'James Brunson','https://lh4.googleusercontent.com/-p1EWqyJ7Yz4/AAAAAAAAAAI/AAAAAAAAAAA/Q6PIP40xHzM/c-rp-mo-br100/photo.jpg','16590124370714063921',22650),('AIe9_BExcxslmE1rr7n5jMcadSKe-N-tvXzmXgruymfr_ORNPVyAkeO2HyppnJ3nIbVrgyW_h-KIL5yqs0WpUmbCcVW9TXLHgHS2ph2KWeWWDcp3NVxJCs8',NULL,'2017-10-11 15:48:08.760000','2017-10-11 15:48:08.760000',5,'Mary Anzeldi','https://lh4.googleusercontent.com/-6n5vkwEhwEg/AAAAAAAAAAI/AAAAAAAAAAA/yDeG0YWHuWQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4951),('AIe9_BExcxslmE1rr7n5jMcadSKe-PSLsfKTK1AZq8BumPBew8JMaqc4NjwzWO-sIF0wjZLkqjsS54D82nVzb9S4VxEgsfG7Ia3zLuazQUY-oq1i25CtTxY','Kim, Karen, gunner, and dr Edwards provided excellent service from the time we checked in until we were discharged. Highly recommend signature care!','2019-11-27 17:32:33.055000','2019-11-27 17:32:33.055000',5,'Abel Osuna','https://lh3.googleusercontent.com/-fdyB-l1rxPw/AAAAAAAAAAI/AAAAAAAAAAA/a8AGcuHx8ls/c-rp-mo-br100/photo.jpg','3272657195432704501',6852),('AIe9_BExcxslmE1rr7n5jMcadSKe-tz4wuwSQPjWhpm1gSXtqzModSc-UE05yW4dFaJGsdbMLRTv3UdaofPW_xnMA4zpfJGp8m8q33eZOumt_kuM8cOdfUw',NULL,'2020-01-15 18:48:20.442000','2020-01-15 18:48:20.442000',5,'savannah ephriam','https://lh4.googleusercontent.com/-iAYkrw3CFKY/AAAAAAAAAAI/AAAAAAAAAAA/U7LTlSS1bpM/c-rp-mo-br100/photo.jpg','8679688254631342173',9829),('AIe9_BExcxslmE1rr7n5jMcadSKe-VFsa4kp8t3uDuHk9CLusOZ43424eGaHY759BmnVvj7Nf0F9Dcp-qHpHw6L4SklRul3nUZbDC8FSWesQ3ZEex4bQVvo','Absolutely great experience, I was assisted immediately. The team was attentive , it felt excellent to get in and feel that they were doing all they could to make me feel better.','2018-12-01 15:23:14.343000','2018-12-01 15:23:14.343000',5,'lilibeth martinez','https://lh4.googleusercontent.com/-c4fLINkswSQ/AAAAAAAAAAI/AAAAAAAAAAA/hutLiLCVQtw/c-rp-mo-br100/photo.jpg','14567670160750071148',1453),('AIe9_BExcxslmE1rr7n5jMcadSKe-W59U53Z7MQVwKAI0CCien4yqrG5G8EPuJyM1jSEsbyrH_ywK6Mu2edgm-rEJn_QdEfTC25x5woHodI0_ba2A1sOopk','Made an appointment online and there was no waiting. Every single staff member was respectful and caring. They listened to me amd took the time needed to explain what they felt was my diagnosis. I was included in the decision of what my they could do to assist me and assured me that they were available if we needed to come back again if I still was not feeling better. We are traveling from out of the state so it was wonderful to have such a caring team available to take care of my needs.','2019-11-12 12:08:56.025000','2019-11-12 12:08:56.025000',5,'Shannon Morrissette','https://lh4.googleusercontent.com/-NNfJ7NI-WEs/AAAAAAAAAAI/AAAAAAAAAAA/-_bBcE8m9Jc/c-rp-mo-br100/photo.jpg','8679688254631342173',8736),('AIe9_BExcxslmE1rr7n5jMcadSKe-XGjDely9m51PO2HqgEuacEO5hX53qYNhNj1V4s-t-kbXbsQD2oTI4oyeNJCKfq7KteDMc6ETQYjsqNhItqvrzmNhAU','Checking in was easy, no waiting. Clean facility and fantastic staff from registration with Tanishia to meeting the ER tech and nurse, Daniel and Lynn to the doctor who saw my nephews, dr. Thomas. My nephew loved him and wanted to follow him everywhere!! My first time here and absolutely loved it.','2019-10-07 00:56:21.125000','2019-10-07 00:56:21.125000',5,'Irene Fatheree','https://lh5.googleusercontent.com/-JnPIXVMSVBs/AAAAAAAAAAI/AAAAAAAAAAA/oh4EKc8JtF0/c-rp-mo-br100/photo.jpg','17898197009688164559',5513),('AIe9_BExcxslmE1rr7n5jMcadSKe-xz62LrVr79b5-z55VakiSClGA1O5ze9iP5yL20ntUa34qJJWaw0l5dDjn05utsSNJ9HAYeHTFTUkj1Q1tm2YBRPF48','Definitely one of the better ER experiences I’ve had. Almost no wait time, necessary pain meds were given almost right away, tests and results were very quick. We had Dr. Thomas, nurse Kristina, radiology tech Hanh, er tech John, and Veronica checked us in. \nGoing to the er is pretty scary but they made everything feel calm and got us out quickly.','2020-02-09 17:51:55.130000','2020-02-09 17:51:55.130000',5,'Clarissa Lara','https://lh3.googleusercontent.com/-SDOFnxsZyzg/AAAAAAAAAAI/AAAAAAAAAAA/uH3k8dHo0S4/c-rp-mo-br100/photo.jpg','12541597562633926366',22467),('AIe9_BExcxslmE1rr7n5jMcadSKe-YqQwrHH1jaep0JK6RBp9BUuB5fxBLLqNTLcua29TWH_-WNc6D8sUFddauaNPt20Cz-ez53wcyKWIqtmpzE4Nhydx9o','OMG!!! Literally the best Group of medical professionals I\'ve ever met.. Other places are so rude and abrupt... but not Kim, Lucas and Eric... they make you feel like you are important and they go the extra mile to ensure that you receive the best care plan available...\n\nThe atmosphere settled my spirit and ket me know my mom was in great hands during my absence!!!!!.\n\nThanks soooooooo much!!!!!','2020-02-18 17:27:34.716000','2020-02-18 17:27:34.716000',5,'Crush Brown','https://lh3.googleusercontent.com/-VO1xkQJ7yJY/AAAAAAAAAAI/AAAAAAAAAAA/OTEhp4HedS4/c-rp-mo-br100/photo.jpg','3272657195432704501',14344),('AIe9_BExcxslmE1rr7n5jMcadSKe0nkVp7BB7mfc3VosZaFUgybXogmZy7yplngv8vkCkx40XVEDRC8-Wy9_PRfBDzKFNoOsinCUJ45aNMwxNIgodCcQr2I','My family went to SignatureCare on July 10 for COVID pcr testing for vacation to Jamaica. We had an appointment at 10am and we weren’t seen until noon. There were more workers than patients. We repeatedly stated we needed a PCR COVID test. We were swabbed oral and then our test were sent off. My husbands results came back in 2 days and he was tested for NAA and antigens and he was negative. My test came back on July 16 and states negative for antigens which I didn’t ask to be tested for and still no PCR test. Antigens is a rapid test that could have been done at the facility but this still didn’t send up any red flags. My daughters test was labeled wrong per lab Corp and lab Corp had attempted to reach out to signature care multiple times to get the test changed. They ordered antibody test yet sent no blood and sent a swab. Today is July 20,2020 and still no results. I have spoke with signature care ER a total of 8 times since the July 14th and have been on hold for hours to get no where. Each person I spoke with gives me the run around. We had to postpone our vacation by a week to attempt to get the testing done and then we canceled again by 2 days in hopes that signature care Er would be able to do their job. BUT, today is Monday and we had to cancel vacation because signature care Er couldn’t order the pcr test that we drove an hour one way to get. This facility was completely incompetent and unprofessional.','2020-07-20 16:37:39.539000','2020-07-20 16:37:39.539000',1,'Mandy Pennington','https://lh5.googleusercontent.com/-Ipfmis3JbXY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn2ukBGIJNbVQI-0825x6kL8tu9HA/c0x00000000-cc-rp/photo.jpg','8626688543755174284',22235),('AIe9_BExcxslmE1rr7n5jMcadSKe14Gj834Id77rwkDd5jpepsnbG3FQaTPczXwv6FuooMaGwmg2ZlDk0E0tLXSkh4G0CYcgeNFx5SFiXQJHynPBveHqHfw','Staff is best in town \nThanks for the crew that took such awesome care me Dr Ashbrooks and Dr Yost,Ryan,Jennifer W.-RN;Sherri-RT and Tobie-regis.','2020-07-01 01:46:11.306000','2020-07-01 01:46:11.306000',5,'Kim Domanski','https://lh3.googleusercontent.com/-uy7padQ-4KI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucneV82Qlf6dTNtmKzyFqnPVn6h1Fg/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14370),('AIe9_BExcxslmE1rr7n5jMcadSKe1D6PGQSOrgfifH6YONzDDna6u47hLzzt0GTN7EVkUsPHzsmpFh64IRbmsUMzb2aWnu5Vr_vQS890c8vv4eBZzjls9IY',NULL,'2016-07-07 12:26:36.057000','2016-07-07 12:26:36.057000',5,'Andrea Hain','https://lh3.googleusercontent.com/-2QQYibqnifk/AAAAAAAAAAI/AAAAAAAAAAA/gvp0GwP4OL0/c-rp-mo-br100/photo.jpg','3511292162159714121',7965),('AIe9_BExcxslmE1rr7n5jMcadSKe1LrNCopbj3l6zb6207Y9gyB2t287r7NFwrbVXVURy0H-UnBRBHy7yBuBlRgVsh0W3emAfwk7nydnqLZ2SDZiR3GykwA',NULL,'2019-04-03 20:35:22.580000','2019-04-03 20:35:22.580000',4,'Eric Palma','https://lh6.googleusercontent.com/-FvmHSHhdY_U/AAAAAAAAAAI/AAAAAAAAAAA/qxOdnLiLSxs/c-rp-mo-br100/photo.jpg','6521947413723274945',8292),('AIe9_BExcxslmE1rr7n5jMcadSKe1mJNEMrh6NzJERtHON6qglJwRHHjK25TzNIY8k1ZXLnMusEx-APbymZeDol0w0LvyIbh_7XH4O1QkTYIr1ovCiTRuWY','Thanks to Dr.Appiah and Nurse Alvina for a first class experience.','2019-05-22 21:45:59.874000','2019-05-22 21:45:59.874000',5,'Anthony Brewer','https://lh4.googleusercontent.com/-6TMFfBYP78Q/AAAAAAAAAAI/AAAAAAAAAAA/A11UP9f6_ZI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKe1NUe9rZGuKsf9rfNLjn9nEIlyFtKRlp8DtimN5L-MkVmKMrC3Y6zej8HqugZP6k-dAr35Y8sAtpaB8uwnGqRKkXPNE4','I came to your facility tonight with my daughter. I had never seen her in the shape she was in before. The care she received was astounding. Her nurse Keira explained everything and took care of her. She made sure she was comfortable considering what she was going through. The doctor Anders was thorough and listened. Meghan did the CT and explained her process. I was highly impressed with this facility and would return here if needed.','2020-02-24 08:41:12.385000','2020-02-24 08:41:12.385000',5,'Georgina Foust','https://lh3.googleusercontent.com/-AIDBjxqqliA/AAAAAAAAAAI/AAAAAAAAAAA/PivAP-ZDlro/c-rp-mo-br100/photo.jpg','6521947413723274945',14551),('AIe9_BExcxslmE1rr7n5jMcadSKe1PC6vA2AGYrYlvJRWUJ6hk-8K1TFhcUuCdYj7bz_wbHLuApTodhRIlawMerJUsxSLIyG1ha7k7re9EAYJ7lYpWvXNIk','Dr. Ybarra, greets you at the door RN Katrina give special care ER Tech Cedrick made me feel like I was right at home Rad Tech very supportive Reg: Therisa was very patient, kind, and offered good hospitality Overall they were a wonderful team','2020-01-04 02:46:37.774000','2020-01-04 02:46:37.774000',5,'S.O.K.D','https://lh4.googleusercontent.com/-F7snCywZojs/AAAAAAAAAAI/AAAAAAAAAAA/ZagUY2ntL1Q/c-rp-mo-br100/photo.jpg','8679688254631342173',8656),('AIe9_BExcxslmE1rr7n5jMcadSKe1pcrDIMPjNCkyQGh5onlQcaE88nRoL-YvP9CsavawJE-YXxO-_Q4HC0Wg0sUL0Pp2Eu3WD5JI89fc_0t2x-Fa1zOej8',NULL,'2019-11-26 03:37:03.543000','2019-11-26 03:37:03.543000',5,'Modesta Vela','https://lh4.googleusercontent.com/-YSAVtnHyUvg/AAAAAAAAAAI/AAAAAAAAAAA/Qw4YOH5M020/c-rp-mo-br100/photo.jpg','6521947413723274945',8080),('AIe9_BExcxslmE1rr7n5jMcadSKe1YE6t9uw9zl0JPyu-nSSlAPlR4Rz6DrmN6QKQJ44hcdtEZW8kIp11lX68GQD0bIqfCScpTOsdTmZOu3nIu9TRJePuAY','I had an incident in the kitchen two weeks ago Tuesday night. I ended up slicing a bit more than more than just my chicken. \n\nOnce I failed to stop the bleeding, I googled for the nearest ER and I was on my way.\n\nWhen I arrived I was promptly greeted by the concerned registration staff. There was virtually no wait time and I was taken back minutes upon arrival.\n\nThere I was met by a Dr. O\'Malley and his nurse and ER tech. They were all very calm, professional, and made sure I was comfortable as I was preparing to and the \"installation\" of my stitches.\n\nThe process did not take long,and all of my paperwork was explained upon request.\n\nThat was two weeks ago on 11/12/2019. \nToday, 11/26/2019 I have made a return visit to the same ER for the removal of my stitches.\n\nThis time I was greeted by Ms. Elisa Jasmine. She had me signed into the system before I could start my paperwork.I was escorted back to a room by Ms. Aurora she asked me a few questions and put me at ease as she set the room for the doctor. \n\nDr.Pham introduced himself, he was very humble,spoke gently and apologized for every stich that he had to take out. He was assisted by Ms. Tricia who supported him by distracting me and ensuring that the doctor had any tool or supply he needed. \n\nOnce my procedure was completed Dr. Pham answered all questions that I had, then he sent in the Nurse Alvean to follow up with me regarding any further questions I had, checking Dr. Pham\'s work, and completing my outpatient work. \n\nOverall, I am very satisfied with my experience ( otherwise I would not be writing a book about it) and I will be telling friend and family about this location if they are in need.','2019-11-26 21:17:52.744000','2019-11-26 21:17:52.744000',5,'blues clues','https://lh3.googleusercontent.com/-Q71ypoVKqwY/AAAAAAAAAAI/AAAAAAAAAAA/1XRn5xDGdpk/c-rp-mo-br100/photo.jpg','16389487648212004696',2623),('AIe9_BExcxslmE1rr7n5jMcadSKe253qWHXZVMeyQeojGr5TTx-z_TP2XArfqdhe7KP45g9cHpTBMeyplhweUsSbWaGWD0UC2B5qzMEBticPAJlmDnhjntM','Dr. Vakey and nurse Jacob were so nice and helpful, made me feel a lot better. The tech Juan was amazing as well. Highly recommend coming here for any emergency','2019-10-14 17:08:22.406000','2019-10-14 17:08:22.406000',5,'Anon.','https://lh5.googleusercontent.com/-5cP3KhNZn14/AAAAAAAAAAI/AAAAAAAAAAA/x3vjRtOttcM/c-rp-mo-br100/photo.jpg','16590124370714063921',3144),('AIe9_BExcxslmE1rr7n5jMcadSKe28jVaqnanJqBK5LzRAUbOYMRDHi2ATkFX1Rgun3tXkHzkaO1VtRTlhMRn7O2j9s82z5SDTLNsJo4DxK86m0m4ljULms','Always polite! Always professional! Always patient! Always positive! I\'m so happy to have this ER center near. We have been 4 times now, and every visit is PERFECT! I wish this was a regular facility because we would make it our primary care. Thanks Signature Care!','2016-04-27 11:21:07.303000','2016-04-27 11:21:07.303000',5,'Melodi Wyatt','https://lh5.googleusercontent.com/-ekv337RRDvE/AAAAAAAAAAI/AAAAAAAAAAA/K4ZdjyGPhMQ/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5260),('AIe9_BExcxslmE1rr7n5jMcadSKe28zIVAoMFSuakA88cdw31cb95AC_SpE2zblipMpT22gvsq3qg1p4KxP7LSWmGpD5l8bFC9l65OtJ_nU_fMeIOUPrli4','Experience was great','2017-01-24 13:02:26.979000','2017-01-24 13:02:26.979000',5,'A Google User','https://lh6.googleusercontent.com/-Rl24IBNduBU/AAAAAAAAAAI/AAAAAAAAAAA/2Ll-QBYjOrM/c-rp-mo-br100/photo.jpg','17394740196501090048',5126),('AIe9_BExcxslmE1rr7n5jMcadSKe2cKEdxTJhd6rpn7O4iI9hZIlxdW13WBRNNxmT2ACrubvwDPwmnc7hj8im0TzUAnU8oR8Z3mv9HdnUQdKqGwIpcgJwow','Such a wonderful experience here! Alexis was extremely helpful in assisting and the staff was so friendly and caring. Beautiful facility with a warm vibe','2017-12-08 01:15:26.932000','2017-12-08 01:15:26.932000',5,'Maa Greee','https://lh5.googleusercontent.com/-hVzg0g_StZg/AAAAAAAAAAI/AAAAAAAAAAA/05cWJmSjTAE/c-rp-mo-br100/photo.jpg','16590124370714063921',3897),('AIe9_BExcxslmE1rr7n5jMcadSKe2FbvO61o-poKL4pNW43RDq0IXEVWEcs80DbAHnNb6oYEktjrA5j9wKccqdyXtq_cXMwYrYfbjPMWEc7iIuQz6S9bQwE','This place is awesome great place to come when u need medical attention. NURSE Alvean and Jani great','2019-05-09 16:01:06.663000','2019-05-09 16:01:06.663000',5,'Anthony Larry','https://lh5.googleusercontent.com/-AWDgKtANxvQ/AAAAAAAAAAI/AAAAAAAAAAA/PwBR_OAsO7o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKe2kaBnKHGxIZiHN29MUn1syCUJfiD8ts7ZmuXGgeU_HEGu4qQfSJ1vN_33qUz3g5xn-qVjq3lMja4h2OsqsERqUa6c2Q','Friendly staff!! Took wonderful care of my daughter in her distress.','2019-12-13 20:06:34.741000','2019-12-13 20:06:34.741000',5,'Sierra Dominguez','https://lh3.googleusercontent.com/-hiC7vauEGIs/AAAAAAAAAAI/AAAAAAAAAAA/N2N0S3wjN1A/c-rp-mo-br100/photo.jpg','6521947413723274945',8063),('AIe9_BExcxslmE1rr7n5jMcadSKe2mwIfk-nRVaw138EbD6FeUyfXKpl6yQwESIGGxALDht_XZYUfEdGaxcJyzbNNVCKE7_t04HJg-AHVSbp73aj0Dg193c','Leslie, Churiah, Olivia, Jacqueline, and Dr. Siddiqui provided excellent care. I got in in a matter of minutes and was treated very quickly.','2019-12-17 15:55:01.882000','2019-12-17 15:55:01.882000',5,'Matt Russell','https://lh4.googleusercontent.com/-blTCeUo0N5I/AAAAAAAAAAI/AAAAAAAAAAA/gas6TJ_c9KU/c-rp-mo-br100/photo.jpg','3511292162159714121',7131),('AIe9_BExcxslmE1rr7n5jMcadSKe2oT3prXcfKYxJcOCYPvio1i4rr4qECkxsoIv93Tel2qjjtngXjmT2LhF2kj1jUsK_r1-aQK-ZTJMnd6a-A1vOApIhvk','(Translated by Google) Excellent service, doctors, and nurses .. super recommended! Thanks Tanishia, Leslie, and Dr. Wang.\n\n(Original)\nExcelente servicio, Doctores, y enfermeras.. super recomendado! Gracias Tanishia, Leslie, and Dr. Wang.','2020-02-28 04:29:37.936000','2020-02-28 04:29:37.936000',5,'Milena salazar','https://lh5.googleusercontent.com/-7rIkAmmSzqo/AAAAAAAAAAI/AAAAAAAAAAA/PDgE9SwtQ0E/c-rp-mo-br100/photo.jpg','17898197009688164559',14122),('AIe9_BExcxslmE1rr7n5jMcadSKe2YoqAcNewzb3quKeJEmBfmcUHDxaopkGLRLiaAvsNubFBKWjCUT5uiSgKn7yNxJOfIZ556NCGZgHAEgw6iJz-16chSE','Everyone is so helpful and caring here! They make sure you get the best care you need.','2019-10-31 22:05:26.961000','2019-10-31 22:05:26.961000',5,'Crystal Longoria','https://lh4.googleusercontent.com/-ptJHLyzR3Bo/AAAAAAAAAAI/AAAAAAAAAAA/FO6QTfsjE1E/c-rp-mo-br100/photo.jpg','8918455867446117794',9052),('AIe9_BExcxslmE1rr7n5jMcadSKe32nHNSk8-GgHopeZyKQD8iELpiWFxNGeZ0ojfiNsUpYRZ4Jz6vO3dO3Fr9l5Zd9XevJE0YsoyUs1Y7aYt60oF6I7fag','Going to the ER is never fun, but I have to say that my initial visit was about as good as it can get. There were about four patients ahead of me with more serious problems. I got there about 10:40PM and was able to leave by 2AM (with a new set of stitches!). Not bad, all things considered. Everybody was very friendly. There was some issue with billing and what exactly my co-pay was. I still have to fix this. My follow-up visit was even better. I never felt rushed or like I was nuisance. I\'ve only been to one ER as a near mid-aged adult and this was it. I would happily recommend Signature Care EC.','2018-08-06 18:19:36.320000','2018-08-06 18:19:36.320000',5,'Dan Flores','https://lh4.googleusercontent.com/-THnA0TXo5r8/AAAAAAAAAAI/AAAAAAAAAAA/M6WLx7sry24/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7659),('AIe9_BExcxslmE1rr7n5jMcadSKe3HV4_As0Emm3OZFQ4oHtfCBOp2utyTPHxoSr6dhmP0zQ5Kczbpy8SCcGqYuPK7Sa8lS5E9h39ZsHB_SJ6DlB-g9YBOY','Great service and staff! Dr. Miller, Ashli W, Eric P. , Felicia D., Chelsey were very helpful!','2020-03-14 02:46:09.767000','2020-03-14 02:46:09.767000',5,'Shumaila Lakhani','https://lh3.googleusercontent.com/-C6c7ypvwG2M/AAAAAAAAAAI/AAAAAAAAAAA/iCY238FLOU8/c-rp-mo-br100/photo.jpg','16891069708558046635',21051),('AIe9_BExcxslmE1rr7n5jMcadSKe3qH-CX1tsQFPTjMSMy7pXbdnqqsK8X5wCStWso6nU4CEVZM8RTFfrdF_dC_n1HuaVFa76YwxrF5O0MG6iNXhwvOqmx0','It\'s probably cheaper to take an ambulance and go to a major hospital than it is to go to SignatureCare as a walk-in. I was diagnosed with mono at Memorial Hermann after SignatureCare could not diagnose the problem. After a few tests, and an IV, I had a whopping bill of over $9,000 and ended up having to pay $1,200 out of pocket after insurance. I was there for no more than 5 hours. They waited almost a year to contact me about my balance. Never going back.','2019-08-26 16:50:33.895000','2019-08-26 16:50:33.895000',1,'Jonathan Scofield','https://lh6.googleusercontent.com/-Tv9xDE1CW1c/AAAAAAAAAAI/AAAAAAAAAAA/xT5tCAfZV5A/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7190),('AIe9_BExcxslmE1rr7n5jMcadSKe3r-a9W43FsTAoW7kvZ2vRZXJmt3zcD0Bg09lwiZbJmQqb5DdflfaVc2ComusAlZNAtMz92c5GuDiZA9bG_0ooc-Ib3Q','Was here a couple weeks ago with my husband who had gout in his knee. The receptionist, nurses and Dr made him as comfortable as they could. They all was very nice. Hope we don\'t have to deal with gout anytime soon, but if we do, would definitely go back here. Thank y\'all so much.','2019-11-21 13:34:44.261000','2019-11-21 13:34:44.261000',5,'Monica Corley','https://lh4.googleusercontent.com/-Ob5-60kFmu4/AAAAAAAAAAI/AAAAAAAAAAA/CFHnfHz4HE0/c-rp-mo-br100/photo.jpg','6521947413723274945',8086),('AIe9_BExcxslmE1rr7n5jMcadSKe3rQyVAIARuooVHgD2qUPNkTP8gJFmDMqBvNyLbzjtVyJREybL9DLNKKO1u6WwW_XqZvLxGRTL1vPoTvXeq58arFE1tw','Thank you Jennifer Diggs, Erica, and Valerie. There service and care was excellent!','2019-01-04 02:08:17.453000','2019-01-04 02:08:17.453000',5,'Linda Hammond','https://lh5.googleusercontent.com/-ez_iMKCv2bs/AAAAAAAAAAI/AAAAAAAAAAA/4FolRZXf4fY/c-rp-mo-br100/photo.jpg','8626688543755174284',8611),('AIe9_BExcxslmE1rr7n5jMcadSKe3t1CXBVUEOLXpdxsgR-eoMjIo6rYrITwejW_i5aWftfT4hOS9pmcgpbQhhaRKezi8-t4QA7orE3y6GsjBxj81ErZYSw','I went here and found the people to be prompt, on task, and effective. When I followed up with a phone call regarding a complication, the problem with handled promptly and efficiently. The staff were very friendly and attentive, which is hard to find in my opinion. I had very specific questions about billing that were answered. I haven\'t seen a bill. But, if there are any inaccuracies or misinformation, I\'ll revise my review. The one thing I wish they would work on is the parking lot - it isn\'t lit very well. Other than that, I have no negative remarks. It is a standalone center. So, of course, you need to use some judgment about your particular emergency and where to go.','2015-03-12 04:12:18.922000','2015-03-12 04:12:18.922000',5,'Scott Chapman','https://lh3.googleusercontent.com/-_Huwtu0gZVA/AAAAAAAAAAI/AAAAAAAAAAA/4O-Lj4QHzMI/c-rp-mo-br100/photo.jpg','8679688254631342173',8932),('AIe9_BExcxslmE1rr7n5jMcadSKe3YqCa2AffU7mDwkl4hZYAQDlM5GIwWiRqNLp0UqHR7LIjxiVUb3uCqMqw5Q05WyyienxZ-hYjj9r2DiDAVgTc0A-j4U','I have been here twice recently for pretty serious reasons, and the staff here is outstanding. Doctors, nurses, radiology techs, front desk staff are all extremely competent, friendly, efficient, and all around great. No wait either visit, even though both were on weekends. Very nice facility. Free snacks. This is a great ER facility.','2020-03-07 03:38:29.150000','2020-03-07 03:38:29.150000',5,'Sally Gustafson','https://lh5.googleusercontent.com/-EJlxZPuu0rc/AAAAAAAAAAI/AAAAAAAAAAA/5mcwi6DsWqI/c-rp-mo-br100/photo.jpg','16891069708558046635',13910),('AIe9_BExcxslmE1rr7n5jMcadSKe3Z8RP2eIdl2nPL9mgJYDK-9Y2h7VXAwwpnaI2YpZN7TrkUEhhvJlsDM9cnkAzRPFRHq3b1UPdiLlr9kU4Hd2OdIHvIw','You get to see someone within 10 mins of walking in. The staff is super friendly and understanding. The doctors really care about you and your health.','2019-01-09 04:55:07.577000','2019-01-09 04:55:07.577000',5,'Olga Filoyen','https://lh3.googleusercontent.com/-U4fC2cdp7v8/AAAAAAAAAAI/AAAAAAAAAAA/yetAYq_eI9I/c-rp-mo-br100/photo.jpg','14567670160750071148',1424),('AIe9_BExcxslmE1rr7n5jMcadSKe476To5Tvk8CxnohKsz1g6GYWNAuTQXCoZUpfZqM_JFH7skDQM4VUovJfQlOPSE_sJZkX1J6mTdC3OuWm8_KHjANCF08','They are always great. I have been there several times for things such as abdominal pain (it was an 8 mm kidney stone) and Chest pain ( it was pneumonia).','2017-10-13 01:37:49.018000','2017-10-13 01:37:49.018000',5,'Alexandria Kelley','https://lh6.googleusercontent.com/-ECwvSrcpa60/AAAAAAAAAAI/AAAAAAAAAAA/ryLV5qDE9i4/c-rp-mo-br100/photo.jpg','14567670160750071148',1746),('AIe9_BExcxslmE1rr7n5jMcadSKe4ADZjXItU-dBMUok2vJLHUwgWaPS6zTQh2SEb9vvp1k2mzQVpvBgEcOdY80MpX9CfOwDiYnGJWQdFEDI1iPtGraETt8','Best ER in the Killeen area! Very caring staff','2020-05-26 21:02:19.565000','2020-05-26 21:02:19.565000',5,'Felicia Josephson','https://lh4.googleusercontent.com/-hdyjUC4WTt0/AAAAAAAAAAI/AAAAAAAAAAA/l_oOyHA-_a0/c-rp-mo-br100/photo.jpg','2694018788013845459',21462),('AIe9_BExcxslmE1rr7n5jMcadSKe4agBmOO3iJpLGBPAH6IEeFNPlaCRe2Ji8lim1PSOLmPhd5WuH5VcKOVl42xIqxpKES6v6h2Nq78hjQI5J0Rb7OSFBIY','Here to support a family member. Service is great and they have been very attentive to their needs.','2019-07-21 13:38:46.934000','2019-07-21 13:38:46.934000',5,'Lisa Human','https://lh5.googleusercontent.com/--BCoeFwLKlw/AAAAAAAAAAI/AAAAAAAAAAA/GX2cMRHnh9w/c-rp-mo-br100/photo.jpg','3511292162159714121',7242),('AIe9_BExcxslmE1rr7n5jMcadSKe4bn_tf6ottPbV5Hn6j_QnMtPyA_Y1tjNXdWW28Mc1hUO61Ivspz2q4vaf3kv2PhpkH-ObZPC5Ra_359Soc12a6tHOj8','Such a seamless and pleasant experience! I am here from out of town and got food poisoning. I was seen right away by a knowledgeable and attentive staff! beautiful and clean faculty with great equipment and fast service. Highly recommend','2019-06-29 14:05:07.651000','2019-06-29 14:05:07.651000',5,'Karen Sheikh','https://lh3.googleusercontent.com/-U_KxRVqrQeg/AAAAAAAAAAI/AAAAAAAAAAA/hXqbFox2LTY/c-rp-mo-br100/photo.jpg','16891069708558046635',4241),('AIe9_BExcxslmE1rr7n5jMcadSKe4cdAWuLs-HQrvZbkmWKwYm4Iuig2jrJ4l3d6sF4FFPHP9JWHequ4f0WvnLnFw8shetTcTeAVr63vmt1bHIC6n-7aRP0','The facility is very nice and clean. The staff is attentive and efficient. Aerial at the front desk was very sweet and pleasant, she explained the entire process.','2018-09-01 01:10:53.383000','2018-09-01 01:10:53.383000',5,'Trice Palmore','https://lh3.googleusercontent.com/-4WFoFGE1-Zo/AAAAAAAAAAI/AAAAAAAAAAA/8Fw-19WxJkw/c-rp-mo-br100/photo.jpg','12541597562633926366',615),('AIe9_BExcxslmE1rr7n5jMcadSKe4gOhz3xbdM-kWzD0nr4zsSic2WN4l1t4RLhya-xP-Gj1TPK6qeG6f9j7-53Vups5-VWRSbM89E9zqWIBANYVczcfvDw','I have gone to this location twice now and both experiences were GREAT. There\'s no wait time at all. As soon as I walked through the door (both times) I was greeted politely and immediately attended to. The facility it\'s self is well kept and the staff there is amazing. They all show a lot of concern and the doctors definitely do their due diligence.\n\nI just had to return to this facility this morning due to having bronchitis. As always, the nurses and doctor worked diligently to get me some relief from a terrible cough. What I love about all of their employees is everyone genuinely cares and will work hard just to get you some relief. Thank you again to the doctors and nurses. You all are the best and great at what you do.','2019-04-07 13:07:17.741000','2019-04-07 13:07:17.741000',5,'Alethea Nelson','https://lh5.googleusercontent.com/-SRd9yW00UKQ/AAAAAAAAAAI/AAAAAAAAAAA/Txi34FDaEbY/c-rp-mo-br100/photo.jpg','17394740196501090048',4697),('AIe9_BExcxslmE1rr7n5jMcadSKe4HXG5RwUx2X1xgwT6lS6kbdZl7Sz009YKkKI4ZcetRlHb_w1Z7HhSWi9O2pM7j_JIh_raYXfp-Q7XJHh8iy12qHzFJQ','My name is Kemarrian Love i was very pleased on how well the nurse\'s take pride in their job. They interact very good with the patience. Small details like asking for blankets water stuff in that nature. You guys do things that big hospitals don\'t do. Take pride and confidence in what you do. Bigger and amazing blessings will come your way. Thanks Signature Care Emergency Center','2019-12-13 16:38:53.444000','2019-12-13 16:38:53.444000',5,'Kemarrian Love','https://lh6.googleusercontent.com/-pde1gc5SlJQ/AAAAAAAAAAI/AAAAAAAAAAA/XkREy_c7nbo/c-rp-mo-br100/photo.jpg','2694018788013845459',5988),('AIe9_BExcxslmE1rr7n5jMcadSKe4Km2rfUOMS3MNTkGrVeIWP5zGsUq7yzLCzynNU4wrW-EWDQhaIeXdzV1CKjlrnRElYLOFP60qAOi8OP-YXzUwXRtDh8','I Karen C. and Dalia R. made my experience at signature care smooth. I was in and out in no time! Definitely recommend!','2020-08-06 18:12:52.391000','2020-08-06 18:12:52.391000',5,'Marquitta Booker','https://lh5.googleusercontent.com/-tjlUuLfClnM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck3KBtXiMU7yyE5Rc4p7yoyMfla_g/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22260),('AIe9_BExcxslmE1rr7n5jMcadSKe4q37TNWPIkJlJe8dWwmmVCKN0V7AiAXkdEB_gVEhJ0LyJEmztRlnlFW8bk-jJBWjMHuxossrZ5cxrwsDNPsGs-UrTKc','I was there last week. Krystal the nurse was very helpful and informative.','2019-06-16 04:26:37.710000','2019-06-16 04:26:37.710000',5,'Yvette Hinojos','https://lh5.googleusercontent.com/-R76tTwVW3t0/AAAAAAAAAAI/AAAAAAAAAAA/oH88viD2lVo/c-rp-mo-br100/photo.jpg','13486358490203335051',956),('AIe9_BExcxslmE1rr7n5jMcadSKe4sdAbRM8TiLVfMCbUhFcUa7i3AxVg-Ph5pY6lVIjS1BhhCVUtVwG5WuT5Fmq2q5PofWnwwXrldNd5CSRCin2b3PcLeA',NULL,'2019-01-29 15:55:46.822000','2019-01-29 15:55:46.822000',5,'Meranda Chavira','https://lh6.googleusercontent.com/-pggp9oyvjTI/AAAAAAAAAAI/AAAAAAAAAAA/zVuwF2AiSqM/c-rp-mo-br100/photo.jpg','6521947413723274945',8315),('AIe9_BExcxslmE1rr7n5jMcadSKe4tk1KffixzxeM9U7FzNKDlZbV0SP5-AZZBsa6yPMqsSYAcZksp5es-jnI7r89zxPqzupc1sPnczbuZDyDo7Hj27J5xY','The level of care was amazing. Our nurses, Manny, Teresa, and Pete were great. Lisa at the front desk was very helpful. Dr. Osiecki and Dr. Wang were very knowledgeable and kind. I was blown away by the kindness and care we received. We will definitely use them again in the future','2019-05-06 15:38:21.352000','2019-05-06 15:38:21.352000',5,'Angela Shrum','https://lh6.googleusercontent.com/-ou7RcDGR-kU/AAAAAAAAAAI/AAAAAAAAAAA/Opkm2v7u4aw/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8285),('AIe9_BExcxslmE1rr7n5jMcadSKe4wd0Dpq0g38DPEYOBLj5_UL3WPXI2douFy5J8CrrkdvpW1B_99Ubcu2DyHsJ0CJmzaQZy9JUM3v6Wy4KAHYDvRsLYeQ','Dr. Kimball and Nurse Jacob at Signature Care College Station were great! They were very knowledgeable and helped me understand the diagnosis. They each had a great bedside manor and made me feel comfortable throughout my visit.','2019-04-06 17:22:29.926000','2019-04-06 17:22:29.926000',5,'Lundy Porter','https://lh6.googleusercontent.com/-y8lgX1OIvGc/AAAAAAAAAAI/AAAAAAAAAAA/nKu4me8SLz4/c-rp-mo-br100/photo.jpg','16590124370714063921',3450),('AIe9_BExcxslmE1rr7n5jMcadSKe57CD026PXgACMt8AZJSMRLwK_DwlS-TfEpu9EWvOQGAksX9oiVIltdP-fvwHcEtS-Jhqm4hmFVMi_R_zIja08EQSAgs','The staff was great well treated definitely recommended..i was treated by Dr.Zhen and my nurse kristina was great and the er tech scott is patience. They answered all my questions and made me feel comfortable. Even from the moment i walked in diana help me and acknowledge me right away.','2019-12-27 19:00:27.728000','2019-12-27 19:00:27.728000',5,'Juan Vega','https://lh6.googleusercontent.com/-MwoFKiGo4Ws/AAAAAAAAAAI/AAAAAAAAAAA/qM2Gbsbu-wo/c-rp-mo-br100/photo.jpg','14904078213800803294',13648),('AIe9_BExcxslmE1rr7n5jMcadSKe5BVIvTuxF8VxZmeLgTVAprZlADBwQpnikz3-57m1N8QPH6bFBLVggnuEiPt2kkhAWm5zEmLnfUw9VqcX69eqAQ065eI','Dr.Patel, Amy in registration and Bryan E. RN \nGreat care and fast!','2019-05-04 06:41:18.441000','2019-05-04 06:41:18.441000',5,'azucena sanchez','https://lh3.googleusercontent.com/-vqcfjPJzd58/AAAAAAAAAAI/AAAAAAAAAAA/JAZFGPJRrgw/c-rp-mo-br100/photo.jpg','14567670160750071148',1328),('AIe9_BExcxslmE1rr7n5jMcadSKe5EvznhBGN3qALZmcqwq_wiQiXKViySPo13V6clMwiOFlDpGmt8da_noQ49zi2lYHW5wYBrPnGaE1-q2UFoa5_ZnNJsY','When I arrived to get tested today, I was super nervous but the minute I was greeted by the 3 employees (Manny, Ector and Casey) conducting test, I felt a lot better. The experience was awesome, I am definitely coming back when I need help !!!','2020-08-04 21:23:02.988000','2020-08-04 21:23:02.988000',5,'B0xerBoy00','https://lh3.googleusercontent.com/a-/AOh14GjcvZK44ZnhPmryNG_QAzd_-gubwaAa6zTcE6nqmQ=c0x00000000-cc-rp','6521947413723274945',22183),('AIe9_BExcxslmE1rr7n5jMcadSKe5gHBEf-lGaqg4lKNONC1a0TYpHivJUSmfhnr5yOPN-AcJp9NkIEVRa0RpSMfEDcNOhQmAWSV2AgLJyTzuGBtgGQn7Bc','Great staff','2020-08-04 20:28:11.443000','2020-08-04 20:28:11.443000',5,'arash saberi','https://lh6.googleusercontent.com/-FJC2gEEMvlM/AAAAAAAAAAI/AAAAAAAAAAA/RLy_U6iFiv4/c-rp-mo-br100/photo.jpg','2077061009497551125',22732),('AIe9_BExcxslmE1rr7n5jMcadSKe68NOhlblFIjT2OB8iLcXKyDTMP29JcubmxptpxHhbntEfPN3Q_4XFIom_smkLih4kmt2-HXOAQorsaogurDcNyPavq0','Love it !!! Kenda Christine and Nicole G. Bre Brandon will dr. Sylvester','2020-01-01 04:56:28.348000','2020-01-01 04:56:28.348000',5,'Miranda Flores','https://lh4.googleusercontent.com/-6ufAukLEK4E/AAAAAAAAAAI/AAAAAAAAAAA/xvbL1REBMbk/c-rp-mo-br100/photo.jpg','14567670160750071148',1151),('AIe9_BExcxslmE1rr7n5jMcadSKe6hXLtBrQQNrCG9XveAF6uDJtT6qvu7I5ron2rNS1IMYWq18Kx89JTJjtykoV62VJ0I_xNUDZHpwumJJSDiVEA0VLu3U','Had a great experience with nurse Nicole and Dr Lim. They provided fast and thorough care. Highly recommend Signature ER.','2020-01-05 04:36:32.487000','2020-01-05 04:36:32.487000',5,'Paul N','https://lh3.googleusercontent.com/-ZTeFsN6igps/AAAAAAAAAAI/AAAAAAAAAAA/ZtGnraZvjGI/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1146),('AIe9_BExcxslmE1rr7n5jMcadSKe6IdXpvsAT_uwG2QjaqybmrWwkQNPBMFgtMxLrai3ZpNX87AjYRanz4F4CKOtgLI5WvP2vklbqAINaF3uuganJxBD_ok',NULL,'2016-11-21 03:22:15.947000','2016-11-21 03:22:15.947000',5,'Jefre Stubbs','https://lh3.googleusercontent.com/-ry9Y4ok0w_8/AAAAAAAAAAI/AAAAAAAAAAA/9UUynBcdeiI/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5164),('AIe9_BExcxslmE1rr7n5jMcadSKe6lfqlru7nmY0ESQLYS8ZkEx7pD2EsMr4daei4mnPThkG21rt_QlFrptyBdw098uHk_vfC4c7khn8pDpC_j2wbgNxdI4','Fast, clean, friendly, and caring staff. For every emergency I always go to signature Care. Down the street and convenient.','2019-06-09 23:47:02.322000','2019-06-09 23:47:02.322000',5,'j Amaya','https://lh3.googleusercontent.com/-maMnvQ29QNY/AAAAAAAAAAI/AAAAAAAAAAA/T93mWnS-TXM/c-rp-mo-br100/photo.jpg','17898197009688164559',5706),('AIe9_BExcxslmE1rr7n5jMcadSKe6pigLy2i8LdFLS1g18z3ba9Gaa528JZmS_5WP97zhTq79tDF1cyKdQN33r1xnVzAH2IvwxbIFMdUWP1Wrm9YIKZqevM','Always a pleasant experience at Signature Care. The staff is very knowledgeable and quick. I don\'t enjoy going to the ER but it is nice to know that this one exists if I need it.','2020-01-11 17:00:55.676000','2020-01-11 17:00:55.676000',5,'JK Hernandez','https://lh5.googleusercontent.com/-hIpVjbdPTiI/AAAAAAAAAAI/AAAAAAAAAAA/H1S2pvh3pZE/c-rp-mo-br100/photo.jpg','14904078213800803294',13638),('AIe9_BExcxslmE1rr7n5jMcadSKe6SKbZdiB4vt6NMBW54noPyTQ3EfKe8F6oTYTGjjrncKFpEHkcmsjBOhIVuu8aF-px7D42wfVc3xtWZDClYCTooe4n4Y','i have been to signature care several times and they have always been fast, caring, and professional! my latest visit i had dr. baker and she was so helpful and made me feel safe and cared for!! mrs lorena at the front desk was so nice, helpful and comforting! thank y’all so much, 10/10 would recommend!!','2019-10-05 08:53:27.974000','2019-10-05 08:53:27.974000',5,'Madeline Mehling','https://lh5.googleusercontent.com/-LsyWX2oFwbw/AAAAAAAAAAI/AAAAAAAAAAA/E5P4Mtyjp1I/c-rp-mo-br100/photo.jpg','16590124370714063921',3155),('AIe9_BExcxslmE1rr7n5jMcadSKe6XPylwzDzquCbha-fbjsFCL14vjiW-_fFrkFVjTJEC8znX09Q4Hhijg7uwKMeTZP6pqrD5nK7xRIJq1LQFHZfvYpymA','The best ER experience!! We didn’t mind hanging out here for a night with all the wonderful staff and Excellent service.','2018-07-21 03:17:04.626000','2018-07-21 03:17:04.626000',5,'Isabella Luna','https://lh6.googleusercontent.com/-ri_8cNEIu0I/AAAAAAAAAAI/AAAAAAAAAAA/F7_n-pllx1c/c-rp-mo-br100/photo.jpg','14567670160750071148',1590),('AIe9_BExcxslmE1rr7n5jMcadSKe6Z9_Eqdq9Jk3B3YjkCLboAAX4KsssVhXUTWnR1mSYSZLPcq2TpBT44FtdvaMgDukOLHbCCvKBEwalt7zx7qiHkLIW_Y',NULL,'2017-11-25 21:45:41.663000','2017-11-25 21:45:41.663000',5,'Londonk Weeks','https://lh4.googleusercontent.com/-xVfbBz-2Z-w/AAAAAAAAAAI/AAAAAAAAAAA/BWDQ1CwOaho/c-rp-mo-br100/photo.jpg','17394740196501090048',4929),('AIe9_BExcxslmE1rr7n5jMcadSKe6Zd6DvirT-gjL7yK-e6ODfPsO90DpwKHA-6iQijIYOaW_cmPQDRjUT37STpDNeBl7vo54507ANdGflSG17uEPXEGW2U','I had to get tested for Covid and I also got tested for strep throat. Neither of those tests are pleasant and they made it as painless and tried not to make you uncomfortable for very long.. will go back again.','2020-08-02 14:23:50.760000','2020-08-02 14:23:50.760000',5,'Kailey','https://lh3.googleusercontent.com/a-/AOh14GhlANJ0zPKQ8u84vs7y_LRuvN-rDV9FZ_Itmf1pnw=c0x00000000-cc-rp','6521947413723274945',22198),('AIe9_BExcxslmE1rr7n5jMcadSKe6zKiReYYMPWAMnJjAzXagP3RSueQPY_ra_4UxzGnjzNNNoEMm-SSBtUqLeODwtBy7zcv_jca1zpiYm6E8D5hb_A7zzo','I walked in and was promptly tended to with a smile. Check in was easy and fast without a ton of paperwork. I was seen quickly and everyone was very friendly and showed concern for me. I was offered a warm blanket and my problem was addressed quickly with clear explanations and the doctor took time to really listen and answer all my questions. I would highly recommend to anyone in need!','2017-11-26 13:09:37.849000','2017-11-26 13:09:37.849000',5,'Diane Cahill Bedford','https://lh6.googleusercontent.com/-y64uQCSULmE/AAAAAAAAAAI/AAAAAAAAAAA/HhTQUaqmb_A/c-rp-mo-br100/photo.jpg','16590124370714063921',3904),('AIe9_BExcxslmE1rr7n5jMcadSKe73MxXUmlEs8f5E63V_LqtN0MpW0bGVhd-30Ikn2PSeBGtv5_9W6X3ATEyBt6NLsCpz2kKshaSr5TVFYSqk5I0SwBGRI',NULL,'2020-01-22 17:33:56.711000','2020-01-22 17:33:56.711000',5,'Alexis Doyle','https://lh6.googleusercontent.com/-94Pc1ldWUnY/AAAAAAAAAAI/AAAAAAAAAAA/hA_VvdIGorQ/c-rp-mo-br100/photo.jpg','14904078213800803294',13624),('AIe9_BExcxslmE1rr7n5jMcadSKe7bdO6LSbS-lOT6JyJCp1xmCTpN2ZvdftwBST-jDJaC6cqHllMFFF7aIG7sQnbxLwmQAZU5SnNQgEcizFdrDJzRJTwPo','Came in with no insurance but the receptionists Kim and Dyveliz told me about great options and still got checked by Nurse Remington. Everyone was extremely nice and made me feel very well cared for❤️👌🏻','2018-08-29 22:46:12.540000','2018-08-29 22:46:12.540000',5,'Lizbeth Martinez','https://lh3.googleusercontent.com/-yU_UoUwYY-0/AAAAAAAAAAI/AAAAAAAAAAA/GH01Pgsadx8/c-rp-mo-br100/photo.jpg','16590124370714063921',3759),('AIe9_BExcxslmE1rr7n5jMcadSKe7Eptm1faIpdkoEf6-nRrTecN7xt_eSaSp2qjSM8fImgw-4QrzE3D-3p-_ln5Vot-FWYRxjCSqyfwNKttv-61rIrZVlc','My experience here was the best I ever had at a Emergency room! From the moment I walked in the door Jocelyn was friendly and super welcoming. Before I could finish registration paper work I was called to the back! Super fast! My nurse Nikaela was super nice and knowledgeable. Dr. Cavazos was the best hands down! He was quick, listened, ,addressed all my issues, and explained everything in plain English! I can appreciate the friendly staff and quick turn around time! I will be coming back for sure!','2020-01-18 21:52:15.004000','2020-01-18 21:52:15.004000',5,'Landria Manuel','https://lh5.googleusercontent.com/-DpqTt7HLWnc/AAAAAAAAAAI/AAAAAAAAAAA/WPye2evywrQ/c-rp-mo-br100/photo.jpg','16389487648212004696',10047),('AIe9_BExcxslmE1rr7n5jMcadSKe7K1OuOz9W9J2RZiLucHPNGqJ6vNbNNqmk7uV5oAOYewEwEEk2W2kpAUupiUF0uiAXwCIAFEZZhtqcJ0h22pOyvFJ1Wc',NULL,'2019-09-14 15:16:31.977000','2019-09-14 15:16:31.977000',5,'Arlene Cuellar','https://lh6.googleusercontent.com/-7cA5R_8m3xY/AAAAAAAAAAI/AAAAAAAAAAA/o7IrQqIeRFY/c-rp-mo-br100/photo.jpg','6521947413723274945',8146),('AIe9_BExcxslmE1rr7n5jMcadSKe8-6RzX886lP9lSTdV3UAxnXfg8R89qv_Lsyo_RY_AZdzQOrDcE9nslsatBD-lFvVZaubWt2-wwz6TBs5_R7UqM6D5f8','The staff is always very attentive, you are treated with a sense of urgency, always asked if you need a warm blanket the atmosphere is conducive to your urgent care needs.','2019-06-14 11:30:31.524000','2019-06-14 11:30:31.524000',5,'Ken Roopchand','https://lh4.googleusercontent.com/-uXeC2dAURnc/AAAAAAAAAAI/AAAAAAAAAAA/hqW1ZlvRGTw/c-rp-mo-br100/photo.jpg','8679688254631342173',8835),('AIe9_BExcxslmE1rr7n5jMcadSKe8-J-_kQ_3PU900xVKW9BDSM7NT7u-eB6RaQbvwHLU1aq6J543SUTBHcXXeIXzWZEQerF5Yl98OFAuCOiZG1ux2fzlT8','My daughter was treated very well by their staff. I was waiting by the phone expecting the call for a big sum of money. Her injury was minor but it wouldn\'t stop bleeding. They helped her out and sent her on her way! I didn\'t have to loose sleep over my daughters well being or the cost! I will not hesitate to send my daughter there again should anything arise! Peace of mind is priceless when you child is off to college and there is a place you can trust to take care of your child!','2018-10-19 02:01:21.662000','2018-10-19 02:01:21.662000',5,'Trish Polkinghorn','https://lh4.googleusercontent.com/-6PYja4DGVRM/AAAAAAAAAAI/AAAAAAAAAAA/hQNPU7imU2w/c-rp-mo-br100/photo.jpg','16590124370714063921',3696),('AIe9_BExcxslmE1rr7n5jMcadSKe84PhlMQvcGDzbFyWzLhDDv0Rul6dAJjTXLu1DqAE9nhlql-JULNDBSeVH2_8JUKKDzUkJ7SuV3aJuaJtdaeNIxixJuk','Dr. Wang actually listened to what i had to say and his team was super sweet and understanding, Kristina, Tino and Veronica than you so much for all your help!','2020-03-14 19:46:46.408000','2020-03-14 19:46:46.408000',5,'Anahi Hammad','https://lh3.googleusercontent.com/-Uf8WEpWiafQ/AAAAAAAAAAI/AAAAAAAAAAA/EI8-sviPcHw/c-rp-mo-br100/photo.jpg','12541597562633926366',20902),('AIe9_BExcxslmE1rr7n5jMcadSKe8ABfzbPjmOXyYuLCMCWLaIOGrIpHAYm1m3NMU16SCZauXaJJ53nGFVoZf4SD2Lm4bg2MRX-Jn1KBXkod2RGZsaJj7jE','Very good service Jose and Patricia were very kind and patient with us, and fast.','2020-02-09 20:48:36.896000','2020-02-09 20:48:36.896000',5,'Demetria Darjean','https://lh6.googleusercontent.com/-Zt63BTS92Hs/AAAAAAAAAAI/AAAAAAAAAAA/LDpr7Wum1lM/c-rp-mo-br100/photo.jpg','16389487648212004696',22596),('AIe9_BExcxslmE1rr7n5jMcadSKe8cKKyF061l05Q10BRwT5hFSSjAN-v0E52--LeZPstDYLXORigMkOZur-sLsPuuZdsUK7Z408YCQj_0Bwf8fs0xRuhME','Thank you by giving back to the community by for hosting a free CPR class.','2020-01-24 01:25:16.275000','2020-01-24 01:25:16.275000',5,'Kim Delgado','https://lh4.googleusercontent.com/-h3Qw_Bbwjek/AAAAAAAAAAI/AAAAAAAAAAA/eRgGN5VeVO4/c-rp-mo-br100/photo.jpg','3511292162159714121',14452),('AIe9_BExcxslmE1rr7n5jMcadSKe8f9LnJbVy0InEtR2iEBM5MxAo-_FiXmVkR3jwsByJh0IxEyS95uMsufRJnYt9MPahYuDKELvhtXsa5gBWFuxqyNeOTs',NULL,'2020-01-19 12:50:27.513000','2020-01-19 12:50:27.513000',5,'Bill Iroh','https://lh6.googleusercontent.com/-8t_fncb3I68/AAAAAAAAAAI/AAAAAAAAAAA/9ahEVkLDO0A/c-rp-mo-br100/photo.jpg','16389487648212004696',9970),('AIe9_BExcxslmE1rr7n5jMcadSKe8SmCO82oK0fkHQ5d4_NFcCmJa4T0QJ8Pk-Hm3gFkYPxWuyOoketucHzt2cD_8wG1SPasbKYPSkXXWIZWsgaQ7WHJnKk','Great experience at this place! The staff was kind and prompt to assist, with clear attention to safety and COVID-19 protocols.','2020-07-21 03:51:43.670000','2020-07-21 03:51:43.670000',5,'Dallas Crilley','https://lh6.googleusercontent.com/-5exg_V1eY3s/AAAAAAAAAAI/AAAAAAAAAAA/2odkgPJTsIU/c-rp-mo-ba4-br100/photo.jpg','14748677429039074158',21650),('AIe9_BExcxslmE1rr7n5jMcadSKe8zUpggrysor6jfgaCbVXy028Hsft6u6_GtUBh5PR5s8bHTAxY9ndbWjg-quW-HP2W_b-eAHt2CWyBo5m6bxERAQZ9lY','Great customer service,Thanks Maya for helping my wife find her ID!','2019-12-06 21:41:04.167000','2019-12-06 21:41:04.167000',4,'Hartsvoice! Hartsvoice!','https://lh5.googleusercontent.com/-Q_s7wT0hrVQ/AAAAAAAAAAI/AAAAAAAAAAA/6b_cC0mpCWw/c-rp-mo-br100/photo.jpg','12541597562633926366',360),('AIe9_BExcxslmE1rr7n5jMcadSKe9-J2vean2-Hfgj_r6YFNz4RK2cVeul_ZT_fd-QyIJjV0Cv1cyVCC7u1IAg7dkwisli5KbZbWPJvIbO7GxgOIgTUbRFA','The service that I received by Dr Lingan , Tech, Frank, and Nurse Gabriel was great. They was not about to continue helping me but give me some advice for help at home. Also while checking in and out Reg. Earl H. Was very nice and caring while checking me in and helping me fill out the forms.','2019-03-21 04:18:47.195000','2019-03-21 04:18:47.195000',5,'Phyllis Kelly','https://lh4.googleusercontent.com/-pCO4JFYxxwk/AAAAAAAAAAI/AAAAAAAAAAA/ADCSLYBzgZs/c-rp-mo-ba4-br100/photo.jpg','16891069708558046635',4318),('AIe9_BExcxslmE1rr7n5jMcadSKe95A92W98zmW6GCwq2DeqdEeodTl6s0owS_Wx7BS0YRy3wg1C3yD8IW9KVnhQdXEoIKOv9TmWoPYWTeJ4KcxFiKbV2y0','I was referred to SignatureCare after a visit to minute clinic for back pain. I was expecting the same experience as your usual emergency room visit (chaos, long waits, unclean waiting rooms). I was pleasantly surprised when I walked in. I was greeted by super friendly Jocelyn. The waiting room was pristine. Within 5 minutes I was taken back to the see nurse Tricia. I was offered a warm blanket while I wait (omg seriously?!?) as well as a beverage and a snack!! If I weren’t in so much pain I might have mistaken it for a spa! Dr. Nguyen and nurse Alvean both had excellent bedside manner. SignatureCare Cypress will now be my go to for any future urgent care needs.','2019-10-02 17:17:39.979000','2019-10-02 17:17:39.979000',5,'Davotney Rodriguez','https://lh3.googleusercontent.com/-4sVump7ggJM/AAAAAAAAAAI/AAAAAAAAAAA/S5ONjlPJqQU/c-rp-mo-br100/photo.jpg','16389487648212004696',2864),('AIe9_BExcxslmE1rr7n5jMcadSKe97luCsI0ukJzeKYIp5ELHcs29I02enyoBmxNjlh3h43K_yR7vqRYCbJ4o2BKEkvz5LFil6FMIA3ljqIWuSywJY9IOXU','I was seen today at SignatureCare because I was in a great deal of pain from a recent automobile accident that I was involved in. First of all, I\'m terrified of hospitals and the experiences I have had there in the past weren\'t good. I\'m not one to really write reviews, but I had to share my experience with SignatureCare. From the moment I walked through the door I was given First Class service. I was greeted by Jesus, who made me feel very warm and welcomed! I just couldn\'t believe it, I had to pinch myself because I thought I was dreaming!! From the young man named Jesus that greeted me at the front door, to the Radiologist named Tricia who I must add brought me a warm blanket and she offered me more warm blankets throughout the entire visit. Her attitude and sense of humor was out of this world! Then I met Dr. Appiah, who was very thorough in explaining what exactly was going on with me, and I felt for a moment that he could actually feel my pain too. I can\'t believe I\'m saying this, but I actually loved this Doctor visit. I will never go to another hospital, It will definitely be SignatureCare for me if I need to see a Doctor in the future.','2019-07-14 22:41:32.828000','2019-07-14 22:41:32.828000',5,'Tandra Graham','https://lh3.googleusercontent.com/-DYGbtribXxA/AAAAAAAAAAI/AAAAAAAAAAA/rTUYfblDgok/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKe98uNY36VOBbSPr9gcqS9jZ5hCqhH8bvcfIe4q1Us1_ZxMvrIOdlGxR2Flyb2U6PNN-JghtpR6YUD2HR4rW-RVN3CbIU',NULL,'2019-07-08 14:19:56.424000','2019-07-08 14:19:56.424000',5,'Ayesha Smith','https://lh4.googleusercontent.com/-59V8WcOrLWY/AAAAAAAAAAI/AAAAAAAAAAA/ePkdVUwwVDw/c-rp-mo-br100/photo.jpg','17898197009688164559',5657),('AIe9_BExcxslmE1rr7n5jMcadSKe9BOg1rBZG55JwZ_Z05H0zDnBbzMqPkSQuOhvL7avRrymVaTQt1JQHpDIm6EeOTMH3N4VyZ2B2sU2WGON86ePvaGtI5I','You can\'t find another ER that will go above and beyond for its patients like the doctors and nurses do here. There was no wait time, quick access to X-ray and CT, and the staff genuinely cares about the patients. Even once discharged from the ER, Dr. Braun and RN Melissa still willingly went out of their way to follow up and listen to any concerns and help set up appointments with necessary specialists which otherwise could\'ve taken weeks.','2016-02-08 03:34:20.287000','2016-02-08 03:34:20.287000',5,'Brandon Alred','https://lh6.googleusercontent.com/-Gax9Q5Ttk3c/AAAAAAAAAAI/AAAAAAAAAAA/zs3fK0krxaA/c-rp-mo-br100/photo.jpg','3511292162159714121',8026),('AIe9_BExcxslmE1rr7n5jMcadSKe9k-CLvV8IGPNy7Vd-mTvZhlolP0AtIRcWB-SI_gguFbTEu6mmHoOvB3oKBwEPTUUIXp4FpfDdtbgwFH_OsuX6vzAKLY','The staff is very wonderful they were right on it gave me the information I needed to take care of me right away make sure that I felt very comfortable in knew what was going on kept me informed I would like to thank Tanisha, Andre RN, Dr Henderson, William rad Tech. KUDOS','2018-12-21 02:58:34.133000','2018-12-21 02:58:34.133000',5,'S Byrd','https://lh5.googleusercontent.com/-3q3Nk5PEWfU/AAAAAAAAAAI/AAAAAAAAAAA/ODTIetOWbbk/c-rp-mo-br100/photo.jpg','17898197009688164559',5908),('AIe9_BExcxslmE1rr7n5jMcadSKe9l6Bvl_J2q0N3KWscdKRCIx9NblNbrSQrc2m24y7iuHvnLZVlZKYEir0ajzHhEyKfSIj8wJk2n0Ep2K1WcrF-bfstlc','Amazing service quick to processing, Sarah and James were amazing super cool and had wonderful bedside manner','2019-08-06 05:04:07.472000','2019-08-06 05:04:07.472000',5,'Tiffeaney Lopez','https://lh5.googleusercontent.com/-IQfK-xkN5NI/AAAAAAAAAAI/AAAAAAAAAAA/-rblKz7wD8o/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5601),('AIe9_BExcxslmE1rr7n5jMcadSKe9MQ0PK_nGYeIMupSO-s0LoUJw0lJNA6n_vBhm735uMjov0MrtNsJ-8K0upn6dbpYRkJa4OZWKjRYeCbuvYw3yOyqB_4','Did an amazing job and made me feel like i was at home. \nThank you!\nAndrew, Kim,Sita, Kristina, Carolyn.','2019-08-01 03:02:59.954000','2019-08-01 03:02:59.954000',5,'Hailey Cooper','https://lh4.googleusercontent.com/-nIEJ0KG0gn4/AAAAAAAAAAI/AAAAAAAAAAA/qLVRamRc_gc/c-rp-mo-br100/photo.jpg','13486358490203335051',872),('AIe9_BExcxslmE1rr7n5jMcadSKe9xqER0gCBuLaaA2bXhpAc0Tno6KfqQw_JWbTRNRowoge7N4sEXgoy4PjuBwkONn1WDZYFnJXZOmepViPuv6882zByPc','Brought my son in and received excellent care! Corey, Aaron, Kramer and Dr Huerta took wonderful care of my son! Will definitely be coming back!','2019-05-25 20:21:03.661000','2019-05-25 20:21:03.661000',5,'Brandon Pepper','https://lh6.googleusercontent.com/-Qejhr3OJqO0/AAAAAAAAAAI/AAAAAAAAAAA/vW_FlDVMCrg/c-rp-mo-br100/photo.jpg','13486358490203335051',996),('AIe9_BExcxslmE1rr7n5jMcadSKea2Jl6TXBrCyiWtNofThLuYIAjGsy8hzfde-8Zb93ERcNiXHumGlIRIUMf2r-9szgqmAxLihZAgnybdo9mWD3BNCYPbo','Very quick and comfortable, very clean and professional. Definitely recommend.','2020-02-07 14:09:37.430000','2020-02-07 14:09:37.430000',5,'Julia Claudio','https://lh5.googleusercontent.com/-GO6waRhpmAk/AAAAAAAAAAI/AAAAAAAAAAA/_z7IF9pdaiQ/c-rp-mo-br100/photo.jpg','2694018788013845459',14250),('AIe9_BExcxslmE1rr7n5jMcadSKea3902dq4ukq2CYJlrtDbegIH0x4CbyzLmzqZMkTK7yjyWaRZ4NK_NHVGpa4g9-0B25P1XkA8O5I7AMEH32HLRct_B60','From the moment I got to Signature Care I knew I was going to be taken care of. The check in with Stephanie P. was quick and easy. I didn’t have to wait longer than 5 mins. Once admitted M.D Billy Millen and Nurse Hamzah were quick to see and assist me. They made sure I was comforatable and ensured that everything would be ok. When it was time for me to get my head scanned the technician Olivia made sure I was comfortable. Olivia and the radiologist ,Eve,explained everything that they were going to do clearly and thoroughly. Every single person that helped me was friendly, and very very helpful. I can’t stress enough how the staff made sure I was comfortable. They checked on me several times and whenever ver I needed something they were right there. What I really appreciated the most was whether it was the doctor or nurse they explained everything that they were going to do from scans to administering medication. Would highly recommend Signature Care Emergency Center to anyone that wants the best care and that wants to be taken care of immediately.','2018-12-01 14:48:23.314000','2018-12-01 14:48:23.314000',5,'Ricky Murphy','https://lh3.googleusercontent.com/-AnVh1J8z-3I/AAAAAAAAAAI/AAAAAAAAAAA/e3qSZXQcKiQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7551),('AIe9_BExcxslmE1rr7n5jMcadSKea9ttSMM4pKNywwS2xv7LeUpZ5BIF8DCX99qmeo5h_nDGncgWJFkq9ewEJoOMgSqC8YNqQm6RfV7Q21B_wFnOdyoGslk','Leah and Dr. Huerta were so helpful. I had an ear infection and they really helped out and made me feel really comfortable there','2019-12-10 05:07:17.157000','2019-12-10 05:07:17.157000',5,'Rosey Stargazer','https://lh4.googleusercontent.com/-hQ1UwS2Tf4o/AAAAAAAAAAI/AAAAAAAAAAA/NnKoVlgFf40/c-rp-mo-br100/photo.jpg','13486358490203335051',696),('AIe9_BExcxslmE1rr7n5jMcadSKeaajSFxP1zuN_UEbCjKpJa1FkZKM3UikD2yhEqAaeAt1bjVNadwlKmqZ3qgSNP-GQWb_-9LsXdy86pU9xoqgs0q5BPVQ','SignatureCare has been a lifesaver for my family on several different occasions. The service is always fast, professional but also very personal as well. We are always well attended to, every step of an emergency call. We drive a little further than the hospital by our house so that we can be seen sooner. Can’t say enough good things about SignatureCare. I hope they open more locations so the service is accessible to more people.','2019-12-19 04:47:46.035000','2019-12-19 04:47:46.035000',5,'Info Zen City','https://lh6.googleusercontent.com/-UIvG3eTnU_0/AAAAAAAAAAI/AAAAAAAAAAA/lVdB_ctXhDg/c-rp-mo-br100/photo.jpg','12541597562633926366',337),('AIe9_BExcxslmE1rr7n5jMcadSKeAb8IxdEpp2C5SZ1W8WPTj2FAljsZWSorxY_z5VzwQm07p8rXBNpc0Z4Vbk8FgD84PKOh2uygmQtnj_cEvyozSgIw4rk','Tobie, Mollie and Eric were awesome! They really help things run smoothly.','2019-12-29 08:30:07.260000','2019-12-29 08:30:07.260000',5,'Shelbie Scott','https://lh5.googleusercontent.com/-9ROxRDn7_NU/AAAAAAAAAAI/AAAAAAAAAAA/zpoxj7hKqxc/c-rp-mo-br100/photo.jpg','3272657195432704501',6821),('AIe9_BExcxslmE1rr7n5jMcadSKeAcIc6Ftw2oo7i69vBRKZY8VM-W1dbbyd-BP-cQFEu40LU_RMp5mCpl1bzUR9frfKHBQwsWx9s2FMe0jHOUJqtclnvJg','Everything about this place is great. Thank You Keera for your help.','2017-12-30 15:38:02.502000','2017-12-30 15:38:02.502000',5,'Luis Cedeno','https://lh4.googleusercontent.com/-XgtCbTH_l9A/AAAAAAAAAAI/AAAAAAAAAAA/efzGi1NOWl4/c-rp-mo-br100/photo.jpg','16590124370714063921',3889),('AIe9_BExcxslmE1rr7n5jMcadSKeADfQbXV6VoVBFSwD73lPA7nWnJOjxALpCKyf8asuXR1Io235EQSSfSE6kmB96gSKEnAFDNr-AT0tq_ZrAgsXe0ZfRko','I had the best expierence...Dr.Henderson,Courtney,Kara, Gunnar and Shannon were all very helpful. Thank you for the best experience! !!!','2020-01-23 19:11:24.530000','2020-01-23 19:11:24.530000',5,'Alisa_ Gacha','https://lh3.googleusercontent.com/-XsNTyMSBjF8/AAAAAAAAAAI/AAAAAAAAAAA/xGJNgfemlL8/c-rp-mo-br100/photo.jpg','3272657195432704501',10282),('AIe9_BExcxslmE1rr7n5jMcadSKeAEbMqJqBlf2q3_8uTfyUniNd0XmlFQun61iBsduQVMOTb4rJ8Ss31fK4O6SPZJyQP5ig2aNUZ2XFNShIumPtgRIcUDM','I met a great team during my visit. Shout out to them:\n\nDR. LEAVITT, MD, LAUREN M \nNurse: Johnny Keith H \nRadiology Tech: Mildred   C \nFront Desk: Cynthia Joyce B','2019-07-04 03:38:16.390000','2019-07-04 03:38:16.390000',5,'reymark stackwell','https://lh4.googleusercontent.com/-s8gjMOjOa9c/AAAAAAAAAAI/AAAAAAAAAAA/6d4DwB8VWT8/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2119),('AIe9_BExcxslmE1rr7n5jMcadSKeanJJIqR_k8Jh9icGilx_DMCHgbCiK7EPttJMScklVjPWZzNu0yWhlDuWR1BKCzc5XC2pKlcgrBg_NcRBhJaMX3GhQ38','This has to be the best ER I\'ve been to. The staff were very attentive and made sure I was feeling well.','2020-01-04 22:13:20.153000','2020-01-04 22:13:20.153000',5,'Jonathan rocha','https://lh6.googleusercontent.com/-NdjbWLBt554/AAAAAAAAAAI/AAAAAAAAAAA/3le6Ijg9p3Q/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',13644),('AIe9_BExcxslmE1rr7n5jMcadSKeAqAXl2ma17IiQltC7wrH11B3cZdqRcJmkpWwoNpqnJyGBJktqAbdOTG-3yO7igXHLgJSzk_KMQSccXxvLHTwJDBWTpA','They were fast, professional, and awesome! They even had snacks ! Marcus, Jocelyn Jose and Dr Farooqi THANK YOU !! You are AWESOME','2020-01-27 20:34:17.181000','2020-01-27 20:34:17.181000',5,'Sonja Harris','https://lh6.googleusercontent.com/-H1ltkvguU3A/AAAAAAAAAAI/AAAAAAAAAAA/HqVkMub2HUk/c-rp-mo-br100/photo.jpg','16389487648212004696',10166),('AIe9_BExcxslmE1rr7n5jMcadSKeATmgn-2IaZJj0q_fzKTv8HUOzzLMRujLVAdXU5UGdmoGXqbhqF2TvtE3HiI-SupzySazHh5PqJGdlxQv6_PRd2yv2C4','I had to spend overnight here and Gina was my nurse for the past two days. She, the facility, the physicians, and everyone else were amazing! 5/5 would recommend!','2020-01-24 14:58:22.717000','2020-01-24 14:58:22.717000',5,'Christopher Cox','https://lh3.googleusercontent.com/-fc9D-D7ogq4/AAAAAAAAAAI/AAAAAAAAAAA/btxO9nsmmHM/c-rp-mo-br100/photo.jpg','14567670160750071148',10136),('AIe9_BExcxslmE1rr7n5jMcadSKeaU_4K5If-Rl1lu3Wdzd3EPuY2R32WL38ayIrldqTwhPKZyZWn3Q5qr0ZpUAXspO-7gBHnE8--VqhKfq-SKJP1hK9s-8','The staff was friendly and accommodating when I came In with a horrible toothache. The facility was very clean. I was in an out with no issues.','2018-08-02 01:02:10.546000','2018-08-02 01:02:10.546000',5,'Briannah Branch','https://lh5.googleusercontent.com/-U6EQ_HLByOo/AAAAAAAAAAI/AAAAAAAAAAA/_URFePG1388/c-rp-mo-br100/photo.jpg','17394740196501090048',4820),('AIe9_BExcxslmE1rr7n5jMcadSKeAvZJ-bcyy0QlN3if0PDrcuMpZzaxBpcF06IaRj7ah5lxPMS-yQkpYZOcuttk4sxQvdEBsbaI0Hn4N40MVfalSh_YomM',NULL,'2017-11-29 15:47:07.960000','2017-11-29 15:47:07.960000',5,'Sobia Ali','https://lh5.googleusercontent.com/-Oejcr7lVcmk/AAAAAAAAAAI/AAAAAAAAAAA/Fofv3lbAzac/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4927),('AIe9_BExcxslmE1rr7n5jMcadSKeAwc4ho-JAmp7I_YufDA5sUGaNH1u0_vI-8zjipb4sMx5MjHTcTfcCYlFrldhUkxsG0nikj1XYrN2pmyoFKaSb9ztrOQ','Kendra Front Desk- very nice and helpful :)','2019-11-17 15:14:12.004000','2019-11-17 15:14:12.004000',5,'Grace Cocheu','https://lh4.googleusercontent.com/-3mM6iEgaTBQ/AAAAAAAAAAI/AAAAAAAAAAA/6Qm24sp9gz4/c-rp-mo-br100/photo.jpg','16590124370714063921',3088),('AIe9_BExcxslmE1rr7n5jMcadSKeb2W7BH4ZA8PDI_fNv8b0H18OEs5vqoZAsZ7LkA661ipd2dIbsI-yStAjMwtfbXd-XJ1C8oYELHvEAjc--lPuVQjlSlo','Awesome service, in and out quick.','2020-02-03 18:22:17.250000','2020-02-03 18:22:17.250000',5,'Austin Butler','https://lh5.googleusercontent.com/-ZQ-uyddhw-Q/AAAAAAAAAAI/AAAAAAAAAAA/y5fgdNck9Io/c-rp-mo-br100/photo.jpg','16590124370714063921',13882),('AIe9_BExcxslmE1rr7n5jMcadSKeB4VTK3PfZv1MFtJoinaNNuBn2krl4pi0W0w-ol0lihEsyIZ25BrjykHEMFcg5tyYPabxjJGPFi_FWfRhYpXdttM3WDM',NULL,'2020-01-18 23:36:11.560000','2020-01-18 23:36:11.560000',5,'Bill Iroh','https://lh6.googleusercontent.com/-8t_fncb3I68/AAAAAAAAAAI/AAAAAAAAAAA/9ahEVkLDO0A/c-rp-mo-br100/photo.jpg','17898197009688164559',9989),('AIe9_BExcxslmE1rr7n5jMcadSKeb83r-4CxbW8YoQ3l2oEKYyerKEX7_OMiwVTiokQDbGRMVhjfkVnDsBVqPVnsaH6Z6Udeun-dvW-7HOF9XLpNbyryUng','Very clean, timely and nice. Everyone was super helpful and nice to my little guy. The nurses helped him feel comfortable and the Dr knew how to handle 2 year olds....very hard to do.','2018-12-21 21:19:04.518000','2018-12-21 21:19:04.518000',5,'Alicia Wilson','https://lh3.googleusercontent.com/-iItf-nSOodQ/AAAAAAAAAAI/AAAAAAAAAAA/5VGB-NxqVOA/c-rp-mo-br100/photo.jpg','17898197009688164559',5905),('AIe9_BExcxslmE1rr7n5jMcadSKebcl9ouQ4kJP6ZaVS4HagSuAR0rqrZ46MfmcPkxxWbnen1xAbZadcYmvWwtpPJucJGfHvJKaeYRcAIc3TWFvKkWr7g48','I’ve driven by many times never knowing one day, I was going to need this place. Dr Dunn, Lynn, Fatima and Daniel were all amazing. Tanishia, the young lady who took care of s in the waiting room was quick, friendly, and we were out of the waiting room in minutes. It sure beats going to the ER and waiting for hours. This was a great experience and I know where I’ll be going for urgent care again. Two thumbs up!','2019-11-11 05:57:15.800000','2019-11-11 05:57:15.800000',5,'M Moreno','https://lh5.googleusercontent.com/--69E3O_Dz40/AAAAAAAAAAI/AAAAAAAAAAA/zV3mTx2WFR0/c-rp-mo-br100/photo.jpg','17898197009688164559',5446),('AIe9_BExcxslmE1rr7n5jMcadSKeBJ1wmcEV5rmnuK9BMHoFzNWgMh7wRqd_AuAk4MLCm_hUM6PbbrfSAn830Fw9VZctk2n6CC5YEi1rHTfwh6U1beNwcK8','Very professional, fast and Friendly staff with Dr. Omalley, Alvean, and Marcus.','2020-01-21 21:53:40.625000','2020-01-21 21:53:40.625000',5,'Charina Johnson','https://lh4.googleusercontent.com/-hpYQ7gsarng/AAAAAAAAAAI/AAAAAAAAAAA/TyBi0PZzOi4/c-rp-mo-br100/photo.jpg','16389487648212004696',10198),('AIe9_BExcxslmE1rr7n5jMcadSKeBKI2h4PwqEQGN-0COgBv3vj9yNOZQvDEIzXePZKUOryxq3lFwKqwT3zo3owzXMkmq9e_dhHNQKrUyTNOozWdJOCdSes','These people are really great. Very nice people. I saw the doctor within like three minutes and I wasn\'t walking in with my arm hanging off or anything. I was done and had my prescriptions in 15 minutes and they took my insurance and were just very caring people. Highly recommend.','2019-11-06 12:27:46.718000','2019-11-06 12:27:46.718000',5,'Jordan Riley','https://lh3.googleusercontent.com/-Xpj5fvYOKzg/AAAAAAAAAAI/AAAAAAAAAAA/yG3lkodFFYc/c-rp-mo-br100/photo.jpg','14904078213800803294',13666),('AIe9_BExcxslmE1rr7n5jMcadSKeBKOant9pG9AQacZKDeRpZmoa58_3ODf5_nNp1PV5MUN-AwCB0at08aFgEHJbzwXz1syWLS0uen07-St-tS8V2CEfc70','The staff was great Lisa, Allison, Daniel and Leah took care of my husband and we had no regret of coming here thank u so much!!!!!','2019-12-11 02:09:48.764000','2019-12-11 02:09:48.764000',5,'Daisy Chavarria','https://lh3.googleusercontent.com/-WO_Ct01xjGk/AAAAAAAAAAI/AAAAAAAAAAA/YbanSyZtFKw/c-rp-mo-br100/photo.jpg','13486358490203335051',695),('AIe9_BExcxslmE1rr7n5jMcadSKeBMk3f8TCozYs2k7sLuYR7CpTh_Wep9SGBiwJnYWRFn_AJT5onDQe31F3yTXnFbe8wC4QEg-SL3oyHCDZrfTy1zmhRVw','I was impressed with the minimal paperwork to fill out when I arrived. It was quick and easy. At around 1pm on a Thursday, I was taken back to a room and seen by a nurse in about 10 mins of walking in the door. My condition caused me to have to spend the night, and I wasn’t even upset about it. I received excellent care. Every staff member, from physicians to techs, made me feel comfortable. At checkout, I was once again impressed with how painless the process was. My husband has been to this location as well, and we agree this is the first place we want to be in an emergency situation.','2018-01-10 14:15:00.697000','2018-01-10 14:15:00.697000',5,'Stephanie Piepenburg','https://lh6.googleusercontent.com/-zRDyI8mZT0g/AAAAAAAAAAI/AAAAAAAAAAA/jyESkKmLCEA/c-rp-mo-br100/photo.jpg','14567670160750071148',1688),('AIe9_BExcxslmE1rr7n5jMcadSKeBnm1YiWR_e2ow8s0NeqCchOcgWOOs01FzKIwjAjsTfPC6Et8CTVEJ0b3u6-rOK89cKypTWhJC6GqqEPkkgfBSzEYQY8','Very nice looking place, great management, a little pricy but they’ll get the job done.','2018-09-07 22:07:27.207000','2018-09-07 22:07:27.207000',4,'Osama Atieh','https://lh4.googleusercontent.com/-EhidxwP5Xbo/AAAAAAAAAAI/AAAAAAAAAAA/R9c-0MahJEM/c-rp-mo-br100/photo.jpg','3511292162159714121',7601),('AIe9_BExcxslmE1rr7n5jMcadSKeBOqc4vZcW8JQYezf7F44y3__nME7S9faQVXARl79WWsOd7087Vk-9MSzAjWX2hb13PdUetI-sA_-PLuK4BLoydv8qUs','Staff was very professional and courteous. Great service from Lorena, Gracie\nBrancroft, and Theresa B.','2020-07-26 16:26:51.642000','2020-07-26 16:26:51.642000',5,'Noe Becerra','https://lh6.googleusercontent.com/-Y4cwNqOTPqU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmh-NLa_GSbwYGJpJE2b9sH6dj6eQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22210),('AIe9_BExcxslmE1rr7n5jMcadSKebpVaDD7ESfgzqv_dcMsYjsF0nQKG3xvpOqWoJTUpqqsoYxbSrWoxDSlTEPJXqSsnA0QRrJIHBPj6H-Ql9hXSf-iaRN0','Amazing staff and clean... very quick and professional.','2019-04-01 09:21:39.643000','2019-04-01 09:21:39.643000',5,'damien williams','https://lh4.googleusercontent.com/-QFMXIYYu8_o/AAAAAAAAAAI/AAAAAAAAAAA/Jrd95olyUag/c-rp-mo-br100/photo.jpg','2694018788013845459',6174),('AIe9_BExcxslmE1rr7n5jMcadSKeBSkcD4DKG03tmSAhnxyPO148JHcKI-aOQ5gFmei9uLPvqfC_1DuXP7tkIQMrX5xI8lfcJV4xsbTL7HdYo2PTiJ8gqpM','Jennifer, Erica, Ashley k, and Dr Curtis were all very careing and helpful for me. They came and checked on me and made me feel comfortable. Will definitely go there for future sicknesses.','2018-12-02 15:10:59.208000','2018-12-02 15:10:59.208000',5,'Chelsea Brown','https://lh6.googleusercontent.com/-wIa46mXK9z4/AAAAAAAAAAI/AAAAAAAAAAA/WyXZaL9RhrI/c-rp-mo-br100/photo.jpg','8626688543755174284',8636),('AIe9_BExcxslmE1rr7n5jMcadSKeBTnO8e823RF0iwX4Wtfm-K1KB1SWgCDYrmTL2GkABAE5Yffq7UEd8MjQwabaCeN363lxC1iasAbPE5l9XlwgkrU_YGo','Gabriel-RN\nRaven-registrar\nKathleen-radiology tech\nKimball-dr.\nNatali-tech \n\nGreat experience. All the staff was friendly, efficient, and knowledgeable. Could not have had a better visit. Highly recommend!!','2018-11-27 03:27:39.641000','2018-11-27 03:27:39.641000',5,'Ryan Stalder','https://lh4.googleusercontent.com/-tU3wRocSAAU/AAAAAAAAAAI/AAAAAAAAAAA/gZCH0fFRHlw/c-rp-mo-br100/photo.jpg','16590124370714063921',3638),('AIe9_BExcxslmE1rr7n5jMcadSKeBWz8IJN7Euy8GMpQc_-SNa2XIsmWnLBtNdkpkR3rgvxl7ajQsO7VQM3wcBCDA9cMAuXRG4h9SYku08jJBQrsQoLvh8Q','Great Staff with Great Service. Highly recommend!!','2018-07-13 16:23:12.252000','2018-07-13 16:23:12.252000',5,'Raymond Cruz','https://lh4.googleusercontent.com/-3PTER9zoBHs/AAAAAAAAAAI/AAAAAAAAAAA/Wp2Wkyr734E/c-rp-mo-br100/photo.jpg','14567670160750071148',1601),('AIe9_BExcxslmE1rr7n5jMcadSKeC-IpZMI0M8YmSKhOE9Rwp_QUQO5lFnWa1XHuM5Bqsu8XcoICgTxHmlSlV_sNJfVQF7iJo8hsRQyqXxVpzpFn1oBVDjg','I wish if i can give a MINUS (-1) STAR...I came to this location 6 months ago for Motor accident, my plan was to pay them cash , but the receptionist told me that i dont have pay now and they will bill me or my insurance later.\nMy visit was seeing a doc or an NP for 15 mn then a shot of tramadol, NO XRAY, CT SCAN....ZERO procedures, i disnt even get a script,and here i am getting a bill for ovwr $2900 😂🤣🤣😂, but i am not worrying about it, i will counter sue them with a good lawyer from Dallas, and I will make sure to expose their scam...','2018-03-26 15:02:54.274000','2018-03-26 15:02:54.274000',1,'Geno Chaoui','https://lh3.googleusercontent.com/-4n3u15FyChk/AAAAAAAAAAI/AAAAAAAAAAA/zA567RyGCes/c-rp-mo-br100/photo.jpg','17394740196501090048',4868),('AIe9_BExcxslmE1rr7n5jMcadSKeC2_RvkDIKRM_Z97LZwfR0rDr9o94nHMWXC4SML9x3TJRDsTSe4wTaCuuUru2Lu2fjuAnb_iRbcr_LeJMZ5D0p8OBuEM',NULL,'2019-11-01 16:19:09.623000','2019-11-01 16:19:09.623000',5,'Evangelina Mendez','https://lh5.googleusercontent.com/-w6AVcfoEKzY/AAAAAAAAAAI/AAAAAAAAAAA/oc49dXG3-YM/c-rp-mo-br100/photo.jpg','13486358490203335051',754),('AIe9_BExcxslmE1rr7n5jMcadSKec5o_QJCjHx9lJRq2jnrpfK6ArQSXZN4Bt_Qmv3HO0glFEdQn_h4rmt5lu04s3x6IrAuaxcuPrrEvPfJ2vLpHBws78iM','I will be visiting this ER location again because Rayven was nice and showed professionalism.','2020-01-08 03:30:19.849000','2020-01-08 03:30:19.849000',5,'Chloe Dumas','https://lh4.googleusercontent.com/-bzEQzC5unNg/AAAAAAAAAAI/AAAAAAAAAAA/VWECiegefmE/c-rp-mo-br100/photo.jpg','16590124370714063921',9430),('AIe9_BExcxslmE1rr7n5jMcadSKeCaPyX34hr7eMo45RtgNqIJpVTviUNhdmXb1t6jLcRbODeqEkLDKtJJ6H6lS6Ec4UeyejKSFnjIxcTaFyVFvvQazp-Xg',NULL,'2018-08-26 09:27:03.679000','2018-08-26 09:27:03.679000',5,'Trina J','https://lh3.googleusercontent.com/-ktdB8I8I1LE/AAAAAAAAAAI/AAAAAAAAAAA/bU8JzaItxvE/c-rp-mo-br100/photo.jpg','14567670160750071148',1549),('AIe9_BExcxslmE1rr7n5jMcadSKeCBpdVYLjwyShYLtcx3twXzalWeh6MvBwoN0bBvus5CLRaGp0kGs5JSyoDNMSyijy80Db5OWGm_S87PhiIZkrI-pF5ek','Lorena, Rayven, Jeri, Matt, Cameron & Dr. Jacob were awesome. From beginning to end. Very clean and fast service!','2020-07-30 20:04:40.685000','2020-07-30 20:04:40.685000',5,'Rebecca Lorenz','https://lh4.googleusercontent.com/-bVBZJ-J77-I/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm4jAb8EXgks63znfDpW_UPNppUqQ/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21997),('AIe9_BExcxslmE1rr7n5jMcadSKeCckqzxLYKu1djFG7emvQnsiQbXXKCtlP8HlYVm4Q8VmBXe3qnpweUGpNr6zwgN561UvN_HJ_mW9x7TFLliFQ-cRRl40','Terrible situation, but the staff here absolutely took care of me. My pain was addressed mere minutes after arriving, then I was eventually referred to to an excellent specialist for follow on care. Highly recommend.','2019-12-01 02:35:51.199000','2019-12-01 02:35:51.199000',5,'Brandon Fontenot','https://lh4.googleusercontent.com/-blRgTlmu8YQ/AAAAAAAAAAI/AAAAAAAAAAA/kfo9iY-ax_g/c-rp-mo-br100/photo.jpg','16590124370714063921',3059),('AIe9_BExcxslmE1rr7n5jMcadSKecFZ7eimpLHzILfLkh0rDoO5ngBLX9JYpTmuDKJPnjltJTwCI_m38Y0b2GhkxRpEwAnD4P7cKGuF8FdFsGscS06dkzQE','Excellent service here. Everyone from reception to the doctor was professional and the establishment was very clean. This will be my go to place for urgent medical needs.','2020-03-09 06:57:43.387000','2020-03-09 06:57:43.387000',5,'Pierre Waller','https://lh6.googleusercontent.com/-h5ERO0oFfr4/AAAAAAAAAAI/AAAAAAAAAAA/bW5n5cGR8Gw/c-rp-mo-br100/photo.jpg','16891069708558046635',13905),('AIe9_BExcxslmE1rr7n5jMcadSKecgRkpirppfUh5b7wZNwl1H-HCgYLHLqWlP-BmbaYtrrtWWEVgsbJqd7WQdldZhrbqLoIW33MzyAgJ8BkxaHOBYzYMFI',NULL,'2019-09-23 18:37:28.962000','2019-09-23 18:37:28.962000',5,'Jace Mayfield','https://lh4.googleusercontent.com/-ofQjja_VZCY/AAAAAAAAAAI/AAAAAAAAAAA/vUeKq-0ZRBw/c-rp-mo-br100/photo.jpg','16590124370714063921',3181),('AIe9_BExcxslmE1rr7n5jMcadSKecHxaCQl09H7VQTPjkkrxSfv-jhgfZFJjHNNzjBDulCo1XCoj0MY0IEG3WlZXtprcI3IEZSZ-NmKYQyDcuT06N4atG28',NULL,'2020-07-18 19:59:56.759000','2020-07-18 19:59:56.759000',5,'Caden Monk','https://lh5.googleusercontent.com/-zAHa7Q1YywU/AAAAAAAAAAI/AAAAAAAAAAA/5HBskRbij1k/c-rp-mo-br100/photo.jpg','14748677429039074158',21728),('AIe9_BExcxslmE1rr7n5jMcadSKeCiedkKf4iwR_ozB7z6dQiMJmZ0ukakN6YyqufcHk6dfY4_bCmM6FswZV2IACjj8nZHbaYloSWAmJDcJL_tufPHcHU1g',NULL,'2019-07-19 18:57:58.750000','2019-07-19 18:57:58.750000',5,'Jhonee Mccain','https://lh4.googleusercontent.com/-i4J_5pgRlwo/AAAAAAAAAAI/AAAAAAAAAAA/uLRfN0SK9KE/c-rp-mo-br100/photo.jpg','8626688543755174284',8427),('AIe9_BExcxslmE1rr7n5jMcadSKeCLLzMsL2p0ezlJtCw6te3KxrdOw3hcs2Drdn2hucolNRUNvg7984wb4R9EZHBfp4MbPUBHhX-CEWKS8JM6PRfMPr9KM','The entire staff at SignatureCare was wonderful! So polite and attentive! They made a visit to the ER as pleasant as it could be! Thank you!!!','2018-05-23 15:12:53.929000','2018-05-23 15:12:53.929000',5,'Jennifer L. Johnson','https://lh6.googleusercontent.com/-AFHDC88fx6g/AAAAAAAAAAI/AAAAAAAAAAA/vbI_yGPQG38/c-rp-mo-br100/photo.jpg','16891069708558046635',4475),('AIe9_BExcxslmE1rr7n5jMcadSKeCmS5FG3su37TAtgNLgAe7VZVwdRNb3MhE7tbAqUOjV1FjXp5mfBxFBYJ_UpB0JdxBtyH1axeDg3Sw9VGRXn2PXLNy98','Very clean and very helpful. Answered all my questions and concerns.','2019-06-24 15:47:18.247000','2019-06-24 15:47:18.247000',5,'Prettyboy Lex','https://lh5.googleusercontent.com/-c1moRhqH9oY/AAAAAAAAAAI/AAAAAAAAAAA/unKh4V8sCXg/c-rp-mo-br100/photo.jpg','6521947413723274945',8221),('AIe9_BExcxslmE1rr7n5jMcadSKeCNf8sKSxVmkUtcZwSWvaq9NXxJ1rfBb9uG9ZLiTykrhKmQip7QGpkxL4SlqHxj0g7xkNTDqxBf6NB5vdpND2JB-i668','The staff were amazing, Kim was the friendliest er personal I\'ve ever encountered. The doctor and staff were friendly and explained every process along the way with clear instructions at the end. ','2017-01-17 20:27:57.343000','2017-01-17 20:27:57.343000',5,'nick sevin','https://lh3.googleusercontent.com/-ZbnPKHh30Q4/AAAAAAAAAAI/AAAAAAAAAAA/RElz9qZ05NM/c-rp-mo-br100/photo.jpg','16590124370714063921',4091),('AIe9_BExcxslmE1rr7n5jMcadSKecpdM49TXcUKI3iKzqIzpx8hK5uvq2MToLcp2UNCbhzIxRlhnqC6zrZw37blgayIUK87eXYF2w2IeSs1QY9n7V_vm5vg','They were very friendly and helpful. Asked my boyfriend if he needed a warm blanket. Doctor was very nice. Overall was a great experience.','2019-04-24 22:46:12.582000','2019-04-24 22:46:12.582000',5,'alizza valentin','https://lh6.googleusercontent.com/-EUBxfykjRq4/AAAAAAAAAAI/AAAAAAAAAAA/6raBKnmQ8B8/c-rp-mo-br100/photo.jpg','2694018788013845459',6168),('AIe9_BExcxslmE1rr7n5jMcadSKeCVul5Q4y_slGvMFIGjcb-AMCWBJtpMHQcdBsF4-aRbq3svcCS1Wo6838xIlDCHV-ctxz9yIXLJNiSOojklYVwzsDjRI','I came in for the rapid COVID test. The wait time was fine and the staff was wonderful (stars for that), however the service given by the doctor was terrible. He was very rushed and rough with the test, and caused me to get a nosebleed. I had gotten tested for COVID at a different urgent care and did NOT have this experience. I have no history of nosebleeds. After showing him the bloody napkin he proceeded to have many excuses and no apologies. As someone in the medical field myself, I know he did NOT practice with diligence to prevent harm to his patient. I do not recommend this location to anyone if they need to be tested.','2020-07-04 18:34:29.327000','2020-07-04 18:34:29.327000',2,'Anmol Ali','https://lh4.googleusercontent.com/-lyS6vhp4KG4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucksjd1UyfIv8jtUiyZqr-clZKiJqQ/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21424),('AIe9_BExcxslmE1rr7n5jMcadSKeCx75W6XIFHE5blcQe_Qi2_e9M4RL5g4e-1Zbts8Et_ZwgpXgvwEVeZqGZa8kkoRfsUAV9ZEMEB-lhohFlsF9uM08tMg','The staff is so friendly and knowledgeable. They are genuinely concerned and care about your comfort.','2019-10-21 19:18:28.887000','2019-10-21 19:18:28.887000',5,'april smith','https://lh6.googleusercontent.com/-cBHLN1o-2lA/AAAAAAAAAAI/AAAAAAAAAAA/ReQtIiWTM20/c-rp-mo-br100/photo.jpg','16891069708558046635',4176),('AIe9_BExcxslmE1rr7n5jMcadSKecYUoQS-82vmBN6cwLZUH7DansMlCFUDJkkrIsOi5Bf1gZQ2IzAe7aibiIOfQCokvCYMOf6jLT9bvS6AVARfjyrjMpBk','Amy \nKAT rn \nDr Thomas \nMarcus \nThe best','2019-09-11 23:46:24.613000','2019-09-11 23:46:24.613000',5,'Brian Angel','https://lh5.googleusercontent.com/-6vh9_M4gGJA/AAAAAAAAAAI/AAAAAAAAAAA/jpis1GWy2HY/c-rp-mo-br100/photo.jpg','16389487648212004696',2920),('AIe9_BExcxslmE1rr7n5jMcadSKeD6qw-l-v7DPoE4LR2z_PxjtDTj44EdLDSsGXo4BMwgvzIq5wBxzYx8EUbMpLxgLAddBuq0ZlwOnu_8CdRDRAiNu5kmw','This place is the best ER in Houston with very professional staff such as my nurse Katrina Receptionist Therisa Dr. Alloju Rad Tech Cheney, Delicia (Registration), Dr. B Thomas, Karen (Nurse) and Robbin (Rad Tech).... 😍😍😍😍😍','2020-02-27 14:57:44.495000','2020-02-27 14:57:44.495000',5,'Rashad Abdullah','https://lh3.googleusercontent.com/-nV7zrCRHl4Q/AAAAAAAAAAI/AAAAAAAAAAA/Euq5M5vul8k/c-rp-mo-br100/photo.jpg','8679688254631342173',14722),('AIe9_BExcxslmE1rr7n5jMcadSKeD8XJXI9OKUnkoOklQGNRQl76uHw9v-D8WeQNej7U8XjKRNwbimgQiLqEbBCIIqX98rfZEsY7iBTiJRtoOYY0GDxDero','Such a wonderful experience! My husband, daughter and I all had to get tested for Covid-19. The registration was was simple, the front office was quick and efficient. Once taken back, the clinical staff was super helpful, JD even offered to help my husband carry our diaper bag and belongings and was very tentative and sweet to our 14 month old. All staff members, JD, Amy and Kari we all so thorough and accommodating. Made the experience as quick, simple and painless as possible.','2020-07-30 22:53:04.728000','2020-07-30 22:53:04.728000',5,'Katie Bolech','https://lh5.googleusercontent.com/-gDEZGygIDRQ/AAAAAAAAAAI/AAAAAAAAAAA/r_auY3BIP24/c-rp-mo-br100/photo.jpg','2077061009497551125',22970),('AIe9_BExcxslmE1rr7n5jMcadSKed9JvklYpbT5T1faiJnNjIlrT0q5HKQYS7i72axWF1yrMA9FqNB7w4HYJ30j9-ibYZZxMzUp6PlcVYeQZ5i0u6D1malM','The staff was super friendly and very helpful. There was no wait time, whatsoever. Jennifer D, Erica, Hollye E., And Ashley K..... They were fantastic.','2019-10-26 18:27:27.945000','2019-10-26 18:27:27.945000',5,'Lisa Love','https://lh6.googleusercontent.com/-G6RCH06itkk/AAAAAAAAAAI/AAAAAAAAAAA/QJQ_tBXJtwQ/c-rp-mo-br100/photo.jpg','8626688543755174284',14664),('AIe9_BExcxslmE1rr7n5jMcadSKedIRV1t32Lw0FpwLTakinQ-Fyq5SsMUX7LgxXW-P77rUoF7MBvV29GUdyBQQI5Y5Pht0k54hwWPFq-MdsIhLX7WlLjno','Excellent service and very helpful.\nRegistration Jocelyn and nurse Lee were amazing.','2020-01-18 21:54:35.533000','2020-01-18 21:54:35.533000',5,'Jennifer Aguiluz','https://lh5.googleusercontent.com/-5gaId4QyWfs/AAAAAAAAAAI/AAAAAAAAAAA/LUCA8mPOnNw/c-rp-mo-br100/photo.jpg','16389487648212004696',10046),('AIe9_BExcxslmE1rr7n5jMcadSKeDjy6TR78-b7eNTlDtHn_q8N2NoK8xS-ecPpv8LwdawSgg91Ero_Mcnbbs8KQwUhwrR-YBy6QLQdUY4rXUj7QSu4CL4s',NULL,'2020-03-01 23:10:44.578000','2020-03-01 23:10:44.578000',5,'Lisa Cunningham','https://lh4.googleusercontent.com/-QejTa7wGjv4/AAAAAAAAAAI/AAAAAAAAAAA/Yr8EEYH_Q9A/c-rp-mo-br100/photo.jpg','13486358490203335051',14924),('AIe9_BExcxslmE1rr7n5jMcadSKeDN-j-nV8_atdY5W5mxyC0oHIYr_fDkcpN2yY1tJo17jwY1l3sypdOhf_0_JZeKviBSa_V3OmgqvsOeY6PA6agzrZg0w','I had a very good experience I give my visit five stars','2020-07-09 02:53:34.466000','2020-07-09 02:53:34.466000',5,'Alexander Taylor','https://lh6.googleusercontent.com/-IyS29izvj3E/AAAAAAAAAAI/AAAAAAAAAAA/y8DsZO-ho0g/c-rp-mo-br100/photo.jpg','14748677429039074158',21379),('AIe9_BExcxslmE1rr7n5jMcadSKeDpyxoKg0adoOx9fXI2YtuykE0HI-SuYKm2XJf2yYPlEaPwdDQPirwPQjmvzT-AwnJFvG7iUlwPWA8iFtpUA0WxykWDQ',NULL,'2020-01-06 18:24:20.225000','2020-01-06 18:24:20.225000',5,'Wesley Lochridge','https://lh3.googleusercontent.com/-9o8O5xFpLtw/AAAAAAAAAAI/AAAAAAAAAAA/5ZzaAaibW6o/c-rp-mo-br100/photo.jpg','16590124370714063921',9412),('AIe9_BExcxslmE1rr7n5jMcadSKedUBcdnq9dRbFbJtp_TJF90BMdkv83QjHjOPUBeEZXTrJqmvOvFMIAi5nEorbXwNgZnUyvlOE97thPoaPz7tiTsYLnv4','My boyfriend was not feeling well at all, so I took him here. He came for abdominal pain and within 30 minutes they helped relieve the pain. Elizabeth was at the front desk and welcomed us with a smile! Churiah, his nurse, helped explain the medications he was getting. Anastasia was very sweet and explained the tests he was getting. He is terrified of needles so they were trying to help resolve his issue without putting an IV in him. Doctor Yusuf was the first doctor that actually gave my boyfriend referrals to a specialist, since he has GERD. I am very pleased with this place and so happy with the care. Made my boyfriend and I feel welcomed and relaxed!','2019-12-09 01:53:22.303000','2019-12-09 01:53:22.303000',5,'Valerie Renovato','https://lh5.googleusercontent.com/-mkpxCiS_6EE/AAAAAAAAAAI/AAAAAAAAAAA/zPuJQBsczHA/c-rp-mo-br100/photo.jpg','3511292162159714121',7133),('AIe9_BExcxslmE1rr7n5jMcadSKeDVp_JX2xWGe-P2KWZh1y2oPc6V3aOSPv5xlZjxnjd_eKgZPREW3CoUcKnKTmow98XZVdllirg-b_6E5XkLioJHRtdJ4','Lisa V\nLisa H \nMy experience was great. They were quick and I got the care I needed','2019-09-28 18:41:42.931000','2019-09-28 18:41:42.931000',5,'Destinee Marcum','https://lh6.googleusercontent.com/-Z1qmoff1grw/AAAAAAAAAAI/AAAAAAAAAAA/-FA1BT_5lsM/c-rp-mo-br100/photo.jpg','13486358490203335051',806),('AIe9_BExcxslmE1rr7n5jMcadSKeDy1FMINQN0JuQkRlxkAjbUxFqbLD5dpmgtHAlhJEB4fevTxRIE0C6CpQfhwCJlMuWyfL6-0lONSMhXocsAXr8oP8XVw','Fast, efficient, knowledgeable! Jani, Tricia, Jordan, and Aisha were great!','2019-10-18 19:50:18.970000','2019-10-18 19:50:18.970000',5,'Brenda Arteaga','https://lh3.googleusercontent.com/-Y84Speqbbf8/AAAAAAAAAAI/AAAAAAAAAAA/NXnWcKlDkY4/c-rp-mo-br100/photo.jpg','16389487648212004696',2801),('AIe9_BExcxslmE1rr7n5jMcadSKeE0bEBNFsgRXBMw_1ofQtxUuQ8ww022ZvQtYHuGgHB-xC9GxCVrf7cxViGccO201azIptgyMo_bmSNTtIz-PmpI6YauE','I had such an awesome experience with Dr. Jolly, Ikita and nurse Allison! Ikita was so welcoming and patient when I entered the door, Allison was \nso comforting and Dr. Jolly was just mind blowing amazing. I was nervous when I entered the facility but when I left my mind was at ease and I left happy. I recommend this location to any and everyone! Such an awesome team!','2018-11-09 23:54:45.965000','2018-11-09 23:54:45.965000',5,'Shawna B','https://lh4.googleusercontent.com/-5zvmCA9iim8/AAAAAAAAAAI/AAAAAAAAAAA/5wN0-_yleLs/c-rp-mo-br100/photo.jpg','12541597562633926366',591),('AIe9_BExcxslmE1rr7n5jMcadSKee4OMPOAaJrCo0VXEDxywyd2yuABL6ABtR1RbJKibK5H1CKfBatEBRKQsO_5D54wYm4rUj4-GqKhMF3c50r9h1_8nf8Q','Waited no more than 5 minutes. Everyone here is happy to help you and answer any questions you have. Anthony (RN) Brad (RN), Natalie (Tech), and Dr. Jaber were all wonderful. Come here for a great experience!','2019-02-24 20:36:23.327000','2019-02-24 20:36:23.327000',5,'Benjamin Henderson','https://lh6.googleusercontent.com/-ZzQvC6d4bjs/AAAAAAAAAAI/AAAAAAAAAAA/ll95lUI_n-Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3523),('AIe9_BExcxslmE1rr7n5jMcadSKeE7bc6Z8jGIX1Ucn8eAdPkM8k09jjGYpE9zxhyOk1QaOoKaVqyCpaFAx8gcz9iO_4suLJ7pDT9D4RvaY7ycA0y_evndU','This was my third visit there. Always quick and friendly services!!!!Thanks Brandon (tech), Sherri (nurse), and Haliegh (front desk) you guys are awesome!!!!','2018-08-17 21:16:59.373000','2018-08-17 21:16:59.373000',5,'Meredith Sam','https://lh4.googleusercontent.com/-wkl3D5jHz80/AAAAAAAAAAI/AAAAAAAAAAA/KgR1UFavcPc/c-rp-mo-br100/photo.jpg','14567670160750071148',1563),('AIe9_BExcxslmE1rr7n5jMcadSKeeAdv0Q-bpv9WhS0ORiwZ6FM1GWXIDvOHubza9PMOWqftIJVWSfOmVOoEKAklpj8dyNcUAH4s08vVfTf4sTX7IHaKFR4','I have been to this facility twice in the past 6 months and I have had an excellent experience both times. The staff are amazing and attentive. The facility is modern and clean. There was no wait time to be seen. I would definitely recommend this Emergency Center.','2018-01-13 21:49:19.557000','2018-01-13 21:49:19.557000',5,'Javier Miranda-Lozano','https://lh6.googleusercontent.com/-g2MN6obqFeY/AAAAAAAAAAI/AAAAAAAAAAA/9-q3hmM7fQE/c-rp-mo-br100/photo.jpg','14567670160750071148',1683),('AIe9_BExcxslmE1rr7n5jMcadSKeebE774c_sUYciSo2HyfwK-V0wJ5B_i8hPdY-TWyMbHfl7AQaoSX_7_rbhdNvBPMhBhmwW-F50c7MgCxoJQFOF1BGHbA','I went there with my son who had sever cough . I found that they had great team .starting from reception, security, nurces and doctor .special thanks to Dr.YBARRA , nurse: rollie , rad tech :NATALIA /MACKENZIE ,registration:STEPHANIE.','2020-02-25 07:36:48.351000','2020-02-25 07:36:48.351000',5,'Hassan Aldushaish','https://lh4.googleusercontent.com/-4cgkN0GCyLg/AAAAAAAAAAI/AAAAAAAAAAA/DyjDiEudER0/c-rp-mo-br100/photo.jpg','8679688254631342173',14731),('AIe9_BExcxslmE1rr7n5jMcadSKeejme5PDhNPwBDtIBcPX4EHe1lIzaJFo9WNMHiWNPLGXusOQ3cbjnN9OLcndlsdr9DLmO1L_IYf0T9adDYf0bXxeBMDk','The staff was extremely nice. I was experiencing some type of pain but the staff found a way to help me relieve my pain.','2017-07-09 16:09:09.500000','2017-07-09 16:09:09.500000',5,'Brylle Siy','https://lh3.googleusercontent.com/-VDFgk05p7_c/AAAAAAAAAAI/AAAAAAAAAAA/yWAzW-K4E1E/c-rp-mo-br100/photo.jpg','17394740196501090048',5020),('AIe9_BExcxslmE1rr7n5jMcadSKeEp1u17KnPpO4PYObVJ1jKq_8HMC2WnAB0lxAHZNlk9--y0k4lEN6GNykGSM9Zj2WVvjkygFb_wX-mSuKKA7FUJ4rJIY','Great care, helped as much as possible. Clean facility with friendly staff and great doctor.','2016-12-24 18:45:51.646000','2016-12-24 13:33:29.002000',5,'Traci Bocock','https://lh3.googleusercontent.com/-JELDc-uOMsE/AAAAAAAAAAI/AAAAAAAAAAA/A6ax8ku-F8A/c-rp-mo-br100/photo.jpg','3511292162159714121',7911),('AIe9_BExcxslmE1rr7n5jMcadSKeeRbQxZxltlLrnmvtsWvB5HPih1i4OtpomvDpswgRbFrlVDnRPfz6EfZ0ECEAyvcDB3wPAp21Y6u0NvfefxpFkh_v8Lc','AMAZING!!!! They deserve more than 5 stars, like 10! I came in feeling wrecked due to the pain of an impacted wisdom tooth, but they gave me some antibiotics and great pain meds and I haven\'t felt this good in a couple days and can finally eat! Caring staff, awesome doctor Chen who took care of me quickly and efficiently. Will recommend SignatureCare to anyone in need of care! ','2017-08-25 05:41:02.014000','2017-08-25 05:41:02.014000',5,'Miss Darling Mimi','https://lh4.googleusercontent.com/-58IN2wHQ3mQ/AAAAAAAAAAI/AAAAAAAAAAA/DaMLpmhXolw/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2331),('AIe9_BExcxslmE1rr7n5jMcadSKeeWPRR5rh2hmQ96EN9ZCVXnNn5kY91pGqoYo1h-wTOA8hrESKMeZinYN8ZVtdS5vpWejwqZ1qd3q3DleMinA0RGP-i-c','The doctors and nurses here are amazing!!! They have treated us like family, attending to our every need and have kept us informed!!! From the registration ladies at the front (Jennifer D and the other young lady that was here when we arrived) to the nurses (John, Ann, Courtney, Matt, Susie) and the doctors (Dr Dass is amazing and so is Dr Jorden) \n\nWould highly recommend signature care ER in Paris ❤️❤️❤️','2020-02-19 17:48:56.186000','2020-02-19 17:48:56.186000',5,'Kathy Watson','https://lh3.googleusercontent.com/-K9opv4zWZBc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclcB8srHqXc1J35xOp3RsTFv47gVQ/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14606),('AIe9_BExcxslmE1rr7n5jMcadSKeex_u3DG34WOJeaK8WsPMxpkSOGzhCjw72IOep0K9Mb_nIIwH3PpwM7ov6TJXBTEKr-yLwD1F7zi1N6sw1325bP-lIo4','I got amazing service at SignatureCare Emergency Center! As soon as I enetered and explained my problem I was quickly taken in to get assisted. Nurses Kelly and Stephanie checked on my status by the hour providing comfort and great service. Dr. V made sure I felt no pain during my procedure and did an excellent job in educating me on my situation. Morning shift doctor and nurse were also very great! Kimberly in registration made the checking out process easy. Overall, I definitely recommend Signature Care Emergency Center in College Station.','2017-01-26 16:42:06.881000','2017-01-26 16:42:06.881000',5,'goodvibesstephy','https://lh4.googleusercontent.com/-ism04W85Wos/AAAAAAAAAAI/AAAAAAAAAAA/rmrTVUrmH8s/c-rp-mo-br100/photo.jpg','16590124370714063921',4081),('AIe9_BExcxslmE1rr7n5jMcadSKeey2X6WIS98_f16Qaoyr5IZWwQNOgRqPAu49HjliX1WV5M1Xbk-fl10-hlQqM3AEzDG1y_68nB2H-p2GAaHMM-gXBbhk','Impeccable service, friendly staff Maria Lara and Nurse Kelly helpful and kind, highly recommend! Heroes of Houston the whole team!','2020-08-04 23:46:30.934000','2020-08-04 23:46:30.934000',5,'Elizabeth Garibay','https://lh3.googleusercontent.com/a-/AOh14Gihy_9h7j41rceqBqFeIkeqJ3T_DQVgQ6c5OIxX7w=c0x00000000-cc-rp-ba2','14567670160750071148',21859),('AIe9_BExcxslmE1rr7n5jMcadSKeEyy6nzDN1o5MkfdNLPDGA7_wkk9U5eHY71NJWzWOdSJ00Z6euqzOFzr5aod7Wh0bOXV_poObsacErQkqRkdjRa_61mc','Great experience from Alvean, Marcus and Patricia. They really made our visit easy. No stress, no hassle and we were seen immediately! I can appreciate great service.','2020-03-03 19:41:32.610000','2020-03-03 19:41:32.610000',5,'Caren Caliste','https://lh4.googleusercontent.com/-9G9ZHOnsSC4/AAAAAAAAAAI/AAAAAAAAAAA/c_SyMJb5y7M/c-rp-mo-br100/photo.jpg','16389487648212004696',13741),('AIe9_BExcxslmE1rr7n5jMcadSKeEzsETDvvrF033t6gZF1fDIyehvvKHwcNFUen4nRm4OEF45gcwVjY5NX-qusf6CHRMzRmaAgBk3xALNeQ6uIKv08bVnU','The staff is very attentive and nice people. They make sure you are comfortable and take very good care of you.','2020-01-06 01:40:50.000000','2020-01-06 01:40:50.000000',5,'Amanda Winnicki','https://lh6.googleusercontent.com/-g7gKUXBpsWc/AAAAAAAAAAI/AAAAAAAAAAA/aPNGe0_AyBk/c-rp-mo-br100/photo.jpg','12541597562633926366',243),('AIe9_BExcxslmE1rr7n5jMcadSKefCLits7IvKQw7znam5qzrzRTKyhexAhol2OaqArl16leLvkWbZa9DxWoeOai-4uAKpBg9XmruK0ZiLx1bKwiCZ0uRkY','Adam and team were friendly, efficient and thorough. They took great care of me and got me out in time to catch my flight! I would definitely recommend them.','2020-02-25 19:16:16.433000','2020-02-25 19:16:16.433000',5,'Loma Miller','https://lh4.googleusercontent.com/-Y3hoXQyQp_M/AAAAAAAAAAI/AAAAAAAAAAA/6ZFah4YBzmY/c-rp-mo-br100/photo.jpg','16891069708558046635',13928),('AIe9_BExcxslmE1rr7n5jMcadSKeFCSJgIeEVdJhwuBQ5vADdqO6JC2zBAcoSjpMtkjh1Wh1NyMwLAqcww8WqxKJzPZUpBNTVts4VS1sVyDA33GGdZOMjwI',NULL,'2019-10-27 23:28:43.076000','2019-10-27 23:28:43.076000',5,'Nerys Vaquerano','https://lh5.googleusercontent.com/--NYTNvY__WQ/AAAAAAAAAAI/AAAAAAAAAAA/G7sYa4xLpVc/c-rp-mo-br100/photo.jpg','17394740196501090048',14079),('AIe9_BExcxslmE1rr7n5jMcadSKeFhc7ZPKwEksUTAL1kssiyfrH5CwOJ8SErOkW69ODU5eLXE2uZdIYbPeeoUHlvGqGhtn5QEHU5xUPhSKHR1YsvW8oong','Amazing staff! Very friendly .','2019-11-15 05:08:34.139000','2019-11-15 05:08:34.139000',5,'amberly acosta','https://lh3.googleusercontent.com/--_Gb7oEZ1dI/AAAAAAAAAAI/AAAAAAAAAAA/vm76asybM1o/c-rp-mo-br100/photo.jpg','6521947413723274945',8092),('AIe9_BExcxslmE1rr7n5jMcadSKefie7xQn83sT8RrlJhtcV-yep2Q9YVEA3jdhU17lc7P3jzzmCV_UcXcq8VJDs7H5wlckpLlG42B83kgtc5AXT-6-pUAA','(Translated by Google) Thanks to all the team. It was wonderful, I recommend them. They are: Starr. Joseph, shaylene, Trisha and Alissa. Immediate attention.\n\n(Original)\nGracias a todo el equipo. Estuvo maravilloso, se los recomiendo. Ellos son: Starr. Joseph, shaylene, Trisha y Alissa. La atención inmediata.','2020-02-01 15:47:51.692000','2020-02-01 15:47:51.692000',5,'nabetse labrador','https://lh5.googleusercontent.com/-2hWWasg25Kc/AAAAAAAAAAI/AAAAAAAAAAA/MPjIPqth9Yg/c-rp-mo-br100/photo.jpg','8918455867446117794',22947),('AIe9_BExcxslmE1rr7n5jMcadSKeFMkk6m5VSIkrJlj8mjEmMaf_oh_HM1yMkM51r1HkqFMXPVkrZdZoezSw1z5GIv11LdUAab47GBcvGYu_1zS_qrSOBm4',NULL,'2019-03-01 15:43:04.207000','2019-03-01 15:43:04.207000',5,'Gabrielle Rodriguez','https://lh6.googleusercontent.com/-yqKLZ2ENI9g/AAAAAAAAAAI/AAAAAAAAAAA/hbYR32E_A38/c-rp-mo-br100/photo.jpg','6521947413723274945',8299),('AIe9_BExcxslmE1rr7n5jMcadSKeFp2ZhazSNi63tOeWVPtcfDHbYCbwSKHPXnpNlDdMBVzZHaJlZXXnTopwYT2xYYWrGTBS2M0nXxbgeW9ehC0GghVviH4','From the second I arrived, everyone was professional, so nice and caring. There was less than a 5 min wait to be seen. Dr. Pham was awesome! He diagnosed my injury and got me the help I needed to help me recover. I would definitely recommend this place to EVERYONE. There is not many health care centers that leave a good impression anymore. You will be pleasantly surprised and not disappointed. Thank you Signature Care, you guys are amazing!','2019-08-02 18:49:09.138000','2019-08-02 18:49:09.138000',5,'Luz Barron','https://lh4.googleusercontent.com/-3mtZ22-Vztk/AAAAAAAAAAI/AAAAAAAAAAA/XPTahS-qfGs/c-rp-mo-br100/photo.jpg','13486358490203335051',869),('AIe9_BExcxslmE1rr7n5jMcadSKefr_zVMVRY7EfMG7Y7in5Y-boLf0j1gnDXPWo_F7wneX23RieSDR_q__aAicTUqyaWx4ar1Ftzjsdy_w_Fo6miuHY4ow','I highly recommend Signature Care ER! I took my 7 year old daughter in the middle of the night for pain from a subungual hematoma. The staff immediately made us both so comfortable. She was given a warm blanket, teddy bear, Gatorade and a lollipop. The doctor, Billy Miller, was fantastic! Jackie Gracie made sure all paperwork was done so quickly. We were home within the hour!','2017-07-09 13:37:38.470000','2017-07-09 13:37:38.470000',5,'Kathleen Orr','https://lh6.googleusercontent.com/-nEcv4PFxsUM/AAAAAAAAAAI/AAAAAAAAAAA/XtLK7S05utE/c-rp-mo-br100/photo.jpg','14567670160750071148',1800),('AIe9_BExcxslmE1rr7n5jMcadSKeFROyViSILgqTamX41wthfgn9e4s7UfpmqZQXkBg26MsYJ_Dx33CWnMbwHRvhcBgcHml1GgF-_Tzn4ml0JQ0LsQFFKZU','Amazing place! I discovered SignatureCare after having a horrible experience at our local hospital ER (Seton SW). I brought my younger son here 5 days ago after he fell and broke his arm. Dr. Miller was absolutely phenomenal and the staff was friendly, professional and compassionate. Dr Miller\'s diagnosis was absolutely accurate which was confirmed from the pediatric orthopedic surgeon we saw yesterday. Then my older son who has had 5 heart and lung surgeries (congenital heart defect) began experiencing severe chest pain tonight while we were next door to this ER at the movie theater. It was a no brainer to bring him to SIgnatureCare. Once again the amazing Dr. Miller sprung into action and our nurse, Gabriel, radiology tech, Chad, and registrar, Earl, were equally fabulous. They are keeping my son overnight, did a cardiac CT scan, blood work, are calling in a tech for an echocardiogram and will call my son\'s cardiologist to discuss findings. I truly feel like we couldn\'t be in better hands. They are very communicative and seeing to our every comfort. It is truly impressive! This is our definite \"go to\" place from here on out!','2019-06-23 08:37:32.490000','2019-06-23 08:37:32.490000',5,'Brenda Booth','https://lh5.googleusercontent.com/-pyF4d4mPzfk/AAAAAAAAAAI/AAAAAAAAAAA/IxI91g1DFCY/c-rp-mo-br100/photo.jpg','16891069708558046635',4244),('AIe9_BExcxslmE1rr7n5jMcadSKefUzZL5662HgOMUzkapUJWRk4_CDlR-8hCatP9mR1fWkCkRUyZ9ZYNwPYqnvR6l5u763Miw3DDCFtFNAKxZ-Fnw6BgVI','Great! Nurse Jacob and doctor Edozie were very helpful and nice! Already feeling better. Great registration from Liz.','2019-02-20 18:29:00.912000','2019-02-20 18:29:00.912000',5,'Alex Hernandez','https://lh5.googleusercontent.com/-hzREl7nFQzQ/AAAAAAAAAAI/AAAAAAAAAAA/RmxUXvBaALM/c-rp-mo-br100/photo.jpg','16590124370714063921',3534),('AIe9_BExcxslmE1rr7n5jMcadSKefv-SY0k3qBtB4HoUXHApK6dt-byFPdN_g1WtVcisDnNS8LeBKQvtORnGcXEMmMN4Ejyg-bp4-Rr8CH48q1f_F5AVhK8','Quick and very sweet. I will come here from now on. Jennifer D, Matt, and John Bell are all amazing!','2019-01-27 21:56:35.063000','2019-01-27 21:56:35.063000',5,'Nastashia Hall','https://lh5.googleusercontent.com/-t_qEjXjxbaU/AAAAAAAAAAI/AAAAAAAAAAA/pzSUxd8fyGY/c-rp-mo-br100/photo.jpg','8626688543755174284',8578),('AIe9_BExcxslmE1rr7n5jMcadSKefwhOIbn9qOOXj7WnB8-yFuZdRkbHVyAillTIyiqU1OFOJwzLYy6-qgMIvnFpPvMfxMRRfvBK46E-ezIh6kyx8L7DjjQ',NULL,'2020-07-04 13:52:46.462000','2020-07-04 13:52:46.462000',5,'Juan Delgado','https://lh3.googleusercontent.com/-fCDGuwAIMoM/AAAAAAAAAAI/AAAAAAAAAAA/Y_V3IMRcjnM/c-rp-mo-br100/photo.jpg','14567670160750071148',21376),('AIe9_BExcxslmE1rr7n5jMcadSKeFXW0YZh9dxVbHQLkEHZqL0MaD-IkZ_rLybPCan3lp1BBINxCWdG2FYY3Z65DIfymYPgq4-_NQc06ojIr_MQ5Mxzs_4E','The staff was very pleasant and attentive.','2019-08-09 19:40:57.672000','2019-08-09 19:40:57.672000',5,'Theresa Bruce','https://lh4.googleusercontent.com/-WQCvKHXhoFA/AAAAAAAAAAI/AAAAAAAAAAA/UbopCw5Te1A/c-rp-mo-br100/photo.jpg','17898197009688164559',5598),('AIe9_BExcxslmE1rr7n5jMcadSKeFyG4-JixfD4WoRijmWsoUO0jd0DO97vy1f0QS1cD2zejB5hm1FSDK7zHMgeO_3hyFF1DvjenBqPEpDZVsQTC6uU0qc8','The 2 ladies at the front desk, Rebecca and Dyveliz were so nice! They created a very welcoming environment and kept up really friendly conversation, i actually enjoyed checking my roommate into the ER. They definitely made a possibly really scary experience seem not too bad. I would highly recommend this place over any other emergency room in college station','2020-02-28 03:14:40.315000','2020-02-28 03:14:40.315000',5,'Julianne Lowy','https://lh4.googleusercontent.com/-M68sOu2Br08/AAAAAAAAAAI/AAAAAAAAAAA/EVmbgDXQJ4c/c-rp-mo-br100/photo.jpg','16590124370714063921',13820),('AIe9_BExcxslmE1rr7n5jMcadSKefzMgFKqc7UWpw1x3HukA-R59qYjq64jRMnX6JrGSMYvHpbBpcANlp96mhrgiZyRJiLOpjgrS2W6VMNd77yLtr29sjqs','Great staff and service. Dr. Chukwu was great and Amy and Churiah were very knowledgeable','2019-03-10 04:20:19.846000','2019-03-10 04:20:19.846000',5,'James Benson','https://lh5.googleusercontent.com/-V_tJ6LHhLH4/AAAAAAAAAAI/AAAAAAAAAAA/snB1WNY_a9M/c-rp-mo-br100/photo.jpg','3511292162159714121',7387),('AIe9_BExcxslmE1rr7n5jMcadSKeG7J1-KfAK6Y2tlPQCvBHP4MNp6jtWlSDv1ZjKVNAPyVBLRigLLvFNG5pV5Fq7CVIJiH2QjAk5UCbc7Vc0hmkHKmTWeo','Had to come here a few times fore testing. Every time it was fast and stress free','2020-07-26 23:50:12.439000','2020-07-26 23:50:12.439000',5,'Jose Flores','https://lh3.googleusercontent.com/-v4AqMiVICUI/AAAAAAAAAAI/AAAAAAAAAAA/bbGfZoWWU9E/c-rp-mo-br100/photo.jpg','2077061009497551125',22814),('AIe9_BExcxslmE1rr7n5jMcadSKegc8p2gJmBuLjUayJJEhul7iL-bGRuRpEyNWCbQg9H4xUPp86gbkdQvtupng0ntS_tT5ILxCYRtDch6ORZcBT8InrR7o','Place was fast and gave accurste results and Dr. Das was very efficient and informative.','2020-08-09 22:18:11.092000','2020-08-09 22:18:11.092000',5,'Christian Hernandez','https://lh3.googleusercontent.com/-u1919L5yjdA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmAo4-qFpAxBP5yQb5M9wCcS5FRCw/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22505),('AIe9_BExcxslmE1rr7n5jMcadSKeGczKOJ2MpMzrcQc4IjGV0wumTjJbr_qDdVUx8z7vH47bEcVs_SnBeJ2iuKtwB-316bYZ63-ZSK9taPsXlfNLaSW5o9Y',NULL,'2020-02-18 19:52:30.781000','2020-02-18 19:52:30.781000',5,'Jacquelyn Dutkanych','https://lh3.googleusercontent.com/-MNFErwNrD4c/AAAAAAAAAAI/AAAAAAAAAAA/OXG7fxYrkR4/c-rp-mo-br100/photo.jpg','16590124370714063921',13847),('AIe9_BExcxslmE1rr7n5jMcadSKegjfqdyt25L1La8aDASxO5aZkjvUStXFthrJWN1UYxbB2wZV-NpdP7w-whMVwqUR21CvL6tCOCtmj8Mx5MRZYz_odTtw','So glad to know we have this excellent clinic in our neighborhood. I received superb care here with no wait.','2018-01-15 13:25:12.764000','2018-01-15 13:25:12.764000',5,'Suzanne Regan','https://lh5.googleusercontent.com/-OmoidkD4ezc/AAAAAAAAAAI/AAAAAAAAAAA/sH5P4qx2YI4/c-rp-mo-br100/photo.jpg','14904078213800803294',2292),('AIe9_BExcxslmE1rr7n5jMcadSKegN6XF4BzQWVKwlNWRCMeEJvIgy1e3A5h4dW7LvwGNMTqYMyBLgmNRtV6Oucr8QyQP70LcBNb4gbiTJeXIvspswfKyqg','I chose this place from a friend who had a recent experience here. From the time I looked up SignatureCare online, I was pleasantly satisfied. I was able to make an appointment online, had less than a 5 min wait time, was greeted with friendly staff members-Dr. Rose, Adam, Jesse and Chris. THEY truly were amazing and very personable, they care for you like you’re one of their own. I definitely felt an ease from the second I walked in. Definitely recommend this place, especially any fellow healthcare workers out there ☺️','2019-10-07 19:02:24.169000','2019-10-07 19:02:24.169000',5,'Michelle Brantley','https://lh5.googleusercontent.com/-t9_V8mGbJ6I/AAAAAAAAAAI/AAAAAAAAAAA/3GKTVuILilc/c-rp-mo-br100/photo.jpg','16891069708558046635',4190),('AIe9_BExcxslmE1rr7n5jMcadSKeGs2NiTUzYofGsBLEKEqvYuWvG7SQGa25oWsAD1dn4cMDtv_A4Ouc0m-tMoHQj4KAbF0EmVLxM7SzaEQsaE27GPkd5Yg','Kendra was super helpful and answered the questions I had very clearly','2020-01-18 20:34:16.658000','2020-01-18 20:34:16.658000',5,'Jeremy Solis','https://lh4.googleusercontent.com/-sv5Cdw_2vsM/AAAAAAAAAAI/AAAAAAAAAAA/1arWgBdv-_A/c-rp-mo-br100/photo.jpg','16590124370714063921',10061),('AIe9_BExcxslmE1rr7n5jMcadSKeGxI9irXxHOZZ1hoz4glO6qsZKxKukuNZTuGlDWO25pwxO4H2_IgUhJ0mQHzC514HcMSt0F8NmV_TSl5jrs4LpqeyZ_s',NULL,'2020-06-18 06:30:21.422000','2020-06-18 06:30:21.422000',1,'ron Khalighi','https://lh3.googleusercontent.com/a-/AOh14GjgjhsxDVYuuLGrFhzXMg_5EKqKwbTIu55nmYJd=c0x00000000-cc-rp','17394740196501090048',21060),('AIe9_BExcxslmE1rr7n5jMcadSKegYvel-JPo2ahxreh3wlUl9grnBDCN_5WYWmnxjB5volhwgT-Xmqv06v891oe7l3qJy0lOd_vwf6pUr9SxxIB-pyVy-w',NULL,'2020-07-25 01:22:54.473000','2020-07-25 01:22:54.473000',5,'Crystal Morris','https://lh3.googleusercontent.com/a-/AOh14GhWxOysM2b7kyqDIB-MHM2GN6oUx8oZCA7QXsUerQ=c0x00000000-cc-rp','8679688254631342173',22244),('AIe9_BExcxslmE1rr7n5jMcadSKeH1KSWw2zc3DQqWsDsQSrHd21lJdn9hqh42Jy0xy6KCfElz6UsKSjJutzHlDwCX9W4hPwrqtBvkfmnR61LWTDo6jgDAU','Dr. Tran, nurse troy, marvin, and Jesus are so nice! Made my visit very pleasant, easy, and quick. This is the place to go to when your in need of immediate care.','2019-09-25 06:23:03.230000','2019-09-25 06:23:03.230000',5,'Michele Davis','https://lh5.googleusercontent.com/-HCXrU3NcG-0/AAAAAAAAAAI/AAAAAAAAAAA/0WLwd2awL-8/c-rp-mo-br100/photo.jpg','16389487648212004696',2881),('AIe9_BExcxslmE1rr7n5jMcadSKeH2wf5EFegRJ1l7UrXy9c1ZRnL2dmyIk7mOoySghzBbxP6pUz6CKBa9ldbztzSDgkr75HeiXvqSPmBfIbifnawNaYUfk','Tanishia W. is without a doubt the soul of this place. So helpful, so thorough, so professional. Made a scary situation, a manageable one. Susan R.’s energy is off the charts, truly one of a kind. And everyone else who made this experience much better than it should have been (Dr.Patel, Laura H.) we’re so appreciative. You all are the effin bomb, seriously! Thanks so much!!!','2019-10-04 04:50:58.021000','2019-10-04 04:50:58.021000',5,'Jasmine Storey','https://lh3.googleusercontent.com/-n6C8oZQbqW8/AAAAAAAAAAI/AAAAAAAAAAA/Sexjy8T7KMg/c-rp-mo-br100/photo.jpg','17898197009688164559',5519),('AIe9_BExcxslmE1rr7n5jMcadSKeH31DF05uarm5DHIIXm5G5aFTRmm6BcTA-xTNIVEvSsTuNUwVV6TNIYOmfUgbkEGBHnP3k0VRQhuNhHmTybva6FHSqVc','Dr.appiah \nRobert M\nCarletta \nPatricia \nKeith B \n\nWhere excellent they took very good care of me didn’t take long at all also no waiting at all I love it here ❤️','2019-10-25 20:15:49.577000','2019-10-25 20:15:49.577000',5,'Lexy Wilson','https://lh6.googleusercontent.com/-MmyEldlG-B0/AAAAAAAAAAI/AAAAAAAAAAA/nmP2hr8FADs/c-rp-mo-br100/photo.jpg','16389487648212004696',2772),('AIe9_BExcxslmE1rr7n5jMcadSKeH6pRsn-bAU_SfPtFYlhyiUJ3xucZ3BxlEyoPks2VWlJ_I9iCdJzPZ6RCYb7KC0cVnjymV7DuciAyhJ2bm-0fGQXOAJw',NULL,'2016-07-21 00:46:32.971000','2016-07-21 00:46:32.971000',5,'Megan Bebee','https://lh6.googleusercontent.com/-Y3V3Fc1sZbQ/AAAAAAAAAAI/AAAAAAAAAAA/-oJtQmOpb9k/c-rp-mo-br100/photo.jpg','14567670160750071148',2004),('AIe9_BExcxslmE1rr7n5jMcadSKehHBqfsNT3yn21wP6Q2j2AjLXUVdu6UWGNs12WsKdmCLbn8AdKuz4BMoLPavX6M_CofLQayLELvNzGdYwL0dRRSEAmy4','Snacks and coffee in the waiting room! Great service.','2019-08-15 04:24:03.622000','2019-08-15 04:24:03.622000',5,'Peyton Ford','https://lh4.googleusercontent.com/-fdGjor3EsaE/AAAAAAAAAAI/AAAAAAAAAAA/P2CldIGTwZE/c-rp-mo-br100/photo.jpg','16590124370714063921',3254),('AIe9_BExcxslmE1rr7n5jMcadSKehhyhGn79Lk-CGKbqxK4ebT-xXDLQ-jMV40JCt6ILTPxctqVN2-KXTjoZM02SHYUTUxseW4r_KDQaiGbSiGKoL2OSnUA','Chose this place instead of having to wait extensive amount of time in hospitals. Promt and excellent service. They took care of us right away. All of the staff was friendly. Condiments at lobby. Would highly recommend.','2017-11-24 10:49:18.804000','2017-11-24 10:49:18.804000',5,'Jessica B','https://lh5.googleusercontent.com/-IBe5MOiadH8/AAAAAAAAAAI/AAAAAAAAAAA/zdDgMemIGP8/c-rp-mo-br100/photo.jpg','8918455867446117794',9334),('AIe9_BExcxslmE1rr7n5jMcadSKehJ8XA1_0LpuNXUtp6mdya1tC4j-HqzHJ84mfkO-iBUbVsLfVWku19yViMfS1K1rsyAj4GgNj_m_3PfazpikWzDPLLME','Good work by Marcus, Alvean, and Dr. O’Malley','2020-01-21 20:32:45.235000','2020-01-21 20:32:45.235000',5,'SHERRY STOVER','https://lh3.googleusercontent.com/-GMNs3u3qvZA/AAAAAAAAAAI/AAAAAAAAAAA/DglYHKX08zU/c-rp-mo-br100/photo.jpg','16389487648212004696',10200),('AIe9_BExcxslmE1rr7n5jMcadSKeHjsi4V29KtoZUtGKlCfYm9dJUJHJh2Y6LiXAMYEmk4i9L6AyuTGiYuh8Wn0ChjjXOtVrWTNKAu7WvqgnrdxCPmTb1-U','As a first time patient here. I has a fantastic experience!!!! Little to no wait and everyone from the registration lady to the physician was happy and very nice. Thank you Quintessa, Kelvin, Amy and Dr. Jones! Can trust them and will never go back to big hospital ER if I dont have to.','2019-06-12 22:19:27.767000','2019-06-12 22:19:27.767000',5,'gabe perez','https://lh3.googleusercontent.com/-OHQB4_syhSM/AAAAAAAAAAI/AAAAAAAAAAA/khFAPYw5PJc/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',6134),('AIe9_BExcxslmE1rr7n5jMcadSKeHjZjfbRXYdENdCkoKceGpsHeKyN3hlLly_yho9oB8xPcghPrSG8ExTQdZXPoxd3mjlF9dIwbjPAalfmVroYrbu2NGfo','Awesome team that worked with us today! Highly recommend! Thank you Aaron, Dr Miller and nurses!','2019-06-14 18:35:29.363000','2019-06-14 18:35:29.363000',5,'Donna Sturdivant','https://lh4.googleusercontent.com/-EUhBcpeoBpo/AAAAAAAAAAI/AAAAAAAAAAA/PIbJSxodR3M/c-rp-mo-br100/photo.jpg','6521947413723274945',8233),('AIe9_BExcxslmE1rr7n5jMcadSKehMhVgM1cCvlhXrxzDML1j7drdRcU1hTHbjwysXilrKGP0TL_WprrAFcXtnAD7oeo3gXMw9JlunPDh1A9fHYXnY62PW8','Friendly staff, clean facilities, and quick service. No long wait time. Was helped right away. My daughter was called to be seen quickly. Lobby is comfortable if you are waiting on someone. Dr. Kotey, Sindy, & Emily were all great! I would definitely recommend this facility to others.','2020-02-20 01:58:11.862000','2020-02-20 01:58:11.862000',5,'Christon Benford','https://lh6.googleusercontent.com/-Y1pNLbdNcE0/AAAAAAAAAAI/AAAAAAAAAAA/xhEZqk7BAoI/c-rp-mo-br100/photo.jpg','17394740196501090048',14016),('AIe9_BExcxslmE1rr7n5jMcadSKehMmk0vgWpHrVN_EmWW2tYk5fVepS5JUEjZ_4ufQnochh0iX33eJgvZIaWqOkbguuGjI9uw2Xnr0dbb0WXHJKg3P5AIE','Staff was very professional and compassionate during my stay! highly recommend','2018-04-24 13:31:07.762000','2018-04-24 13:31:07.762000',5,'Mercedes Garrette','https://lh6.googleusercontent.com/-pj8w06hjtm8/AAAAAAAAAAI/AAAAAAAAAAA/N3Nv94Du914/c-rp-mo-br100/photo.jpg','14904078213800803294',2260),('AIe9_BExcxslmE1rr7n5jMcadSKeHOHDwyRZtP0fSMvNRO9qJOWECqaQGtDzFIq_ARsPy13CJUm0Az-ZxL4YUgC-YPEviTxM6oOSHRR2Jb5J_Ng4e9eLVH4',NULL,'2017-12-03 08:47:49.877000','2017-12-03 08:47:49.877000',5,'carla thompson','https://lh4.googleusercontent.com/-Oz0K-oY51gk/AAAAAAAAAAI/AAAAAAAAAAA/9Dc1sgJiaws/c-rp-mo-br100/photo.jpg','17394740196501090048',4919),('AIe9_BExcxslmE1rr7n5jMcadSKehQE_GpMRRcLjsmYOSMQdyzb3fOU8wkHOFI0d56wAf9iU2V6w1W4N9ifrW3gRizoZG22_lDD_YXq7Hsxlo-IcVcOmSag','My kid got to see the doctor right away. The flu test, x-ray for pneumonia, ashma treatment were all done within an hour when we were there. Friendly place and good service.','2018-01-29 20:06:50.902000','2018-01-29 20:06:50.902000',5,'mindy nguyen','https://lh5.googleusercontent.com/-7L6kzLUnN4s/AAAAAAAAAAI/AAAAAAAAAAA/UX7z2om-WVo/c-rp-mo-br100/photo.jpg','17394740196501090048',4893),('AIe9_BExcxslmE1rr7n5jMcadSKeHqEUA8KM8vYKCCVqP62D26YJPpVgZ43ZA5l9B0hv7NOKMUiul8-vQo35SlYvPU8sw0Fs5ZoWFQfSSeLTzd60RyOIOF0','Great staff: Shania, Jose, Allison, Leah, Dr Frausto\nVery pleased with customer service and didnt have to wait long. I highly recommend coming here for your ER needs!','2020-02-01 04:18:56.773000','2020-02-01 04:18:56.773000',5,'Veronica Galindo','https://lh6.googleusercontent.com/-kyqrleRJDK8/AAAAAAAAAAI/AAAAAAAAAAA/0-x2v_2qe3I/c-rp-mo-br100/photo.jpg','13486358490203335051',13448),('AIe9_BExcxslmE1rr7n5jMcadSKeHr0slDkDn_OUUvMbtu3b4Bc5f9eSU-p9hS3K3IvNm6r0qqVd7J1jJCEv5MuSUVCbO2cWXNQCLrQXBIpl8q5D8p7MkS4','This place is the best place to get a Covid-19 test. They are fast and efficient, and the staff is super friendly!! Highly recommend.','2020-07-12 06:21:00.080000','2020-07-12 06:21:00.080000',5,'Sydney Jones','https://lh3.googleusercontent.com/a-/AOh14GjH5qI-UsytTo_YyV3ePqsZEcyoenwDDFkNmNPAlQ=c0x00000000-cc-rp','2694018788013845459',21580),('AIe9_BExcxslmE1rr7n5jMcadSKehyex_p7BGLhQ-HkT-weaMslpWAPP7mj2l4j2_7hS-gGgp0XOKV7xdAS03uQ50k2KgDh3kHt87ujGgqRULrR-FQAZRmw','This is the second time my family and I use Signature Emergency Care and they are beyond AMAZING!! Dr. O’Malley, Patricia, Ekaterini, Marcus, and Thuy Anh all gave my son the attention and care he needed. They were very thorough with testing and explanations and not once do you feel rushed or like you don’t matter. They checked in constantly and explained every step carefully. Hope to never need to...but if we ever do...this is our first choice in emergency care.','2020-03-13 22:17:31.022000','2020-03-13 22:17:31.022000',5,'Marlene Salinas','https://lh3.googleusercontent.com/-h4oszcNfxMw/AAAAAAAAAAI/AAAAAAAAAAA/wKjZLQLd6hA/c-rp-mo-br100/photo.jpg','16389487648212004696',20331),('AIe9_BExcxslmE1rr7n5jMcadSKehZapPExDFpSXg5bq7_yDl6g1iMYRgA8BeEQRMje1rlL_MOElohsX_qnftGvGpoM6m5v6vedjO5oZolRtA09g2oDUkp4','This ER is a great place. As soon as I came in, I was taken back. The nurses Rachel and Ellen took great care of me. And Joy was careful in the CT room. Dr. Leavitt diagnosed me and prescribed medicine that I needed. So glad they are here.','2018-12-07 01:44:17.391000','2018-12-07 01:44:17.391000',5,'Linda Perez','https://lh3.googleusercontent.com/-BW1al0bsGRQ/AAAAAAAAAAI/AAAAAAAAAAA/cog2Aa8s8HU/c-rp-mo-br100/photo.jpg','17394740196501090048',4756),('AIe9_BExcxslmE1rr7n5jMcadSKeI1pNvGVxUOl9E0F1dUTmBD4ztIBy4Xaq_cfTBCyO6VPwr2NL93aUaPvdz5Sf9J4AzwvJf0ndfP11Vor1bmjL0nL8yns','Lisa H at registration and nurse Amanda S were fantastic i highly recommend them great service','2020-02-08 15:04:18.090000','2020-02-08 15:04:18.090000',5,'Gary Juarez','https://lh4.googleusercontent.com/-YhVzsIiiF-E/AAAAAAAAAAI/AAAAAAAAAAA/Yc4r3yfv4GE/c-rp-mo-br100/photo.jpg','13486358490203335051',13431),('AIe9_BExcxslmE1rr7n5jMcadSKeI4p8_E4DsXEUI6X3k9sRmdg7zsvBlQam_B7DprwWvmkAZTt2xTO-Z7pVeir96iqzZ0eS7S69UADAlXSOqJf1MyVCFt0','Very fast I was in and out literally in 1 hour! And they helped me so much cuz my throat was killing me! Delicia is so sweet and has a great heart she was so sweet. Dr B Thomas was very informative about what was going on and Karen was as cute as a button all sweet heart special thanks to robbin the rad tech!','2020-02-27 16:01:36.845000','2020-02-27 16:01:36.845000',5,'Itzjass !','https://lh5.googleusercontent.com/-66RyRO6aWW8/AAAAAAAAAAI/AAAAAAAAAAA/x5oTZ41e5uk/c-rp-mo-br100/photo.jpg','8679688254631342173',14721),('AIe9_BExcxslmE1rr7n5jMcadSKeI5U7PJKrF2i4e-infeNtij5MtLWa4Ys5pyeOq4Mq8kuJPepUM-ZUbyCklTG2bv3WpV_J53dse2_rafwwoAYhePPRvF4','Very friendly staff, however I received invoices for a total of $3,000... for an ear infection, which included a total of 30 seconds with a doctor, and a basic antibiotic prescription (0 lab test of any form done). I had to hire an attorney to negotiate the bill to a level any reasonable human would have expected, or been willing to pay. I got sick while I was in town and just went to the first clinic I saw. I\'ve always had health insurance and never had a problem like this before. If they want to bill exorbitant rates, then they need to have some upfront pricing and not market themselves to look like a very other emergency clinic.','2017-04-26 20:13:06.318000','2017-04-26 20:13:06.318000',1,'Brandon Durham','https://lh5.googleusercontent.com/-92d0b0_oDFU/AAAAAAAAAAI/AAAAAAAAAAA/uhItAD3ZB4w/c-rp-mo-br100/photo.jpg','13486358490203335051',1132),('AIe9_BExcxslmE1rr7n5jMcadSKeIc7p33UOC79VPTjt1-_2n2lKTotcQ-uVCCDlhCrRoqvXRPgy_xdjrOxv9rIyiRhs9ebuLKEkbZtOKD5PcedlIz7cpCw','This place was amazing. Fully equipped ER, with small office feel and comfort. Was in and out in 45 minutes!!! That would never happen at a hospital ER, ever. All the staff were very warm and friendly, and took great care of our patient that we had to take for an x-ray. Highly recommend Signature Care. And Adam was very attentive and friendly.','2019-08-29 18:33:19.045000','2019-08-29 18:33:19.045000',5,'Elie El Hage, DDS','https://lh5.googleusercontent.com/-e7QXobZ1gyU/AAAAAAAAAAI/AAAAAAAAAAA/On4ZjzxFlqk/c-rp-mo-br100/photo.jpg','16891069708558046635',4211),('AIe9_BExcxslmE1rr7n5jMcadSKeiCPpPMwn1oYcNtddLu2qcEqI5Cfy2k1w6c1haoUP8M_SVLjPBZakfAEfNh5Ljf_aALEDNbwT1W7bGRAOgqI_csJiK8w','My visit was very warming from the jump with Jesus giving me great service with a great attitude. To being handled by Alvean and Tricia doing a great job making me comfortable during my visit. They even offered water and a warm blanket for comfort. I enjoyed my visit overall','2019-05-11 14:05:19.895000','2019-05-11 14:05:19.895000',5,'Bob Means','https://lh6.googleusercontent.com/-iXxInrfmoWE/AAAAAAAAAAI/AAAAAAAAAAA/qrvB63idrDg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeIdI-990ss2rYQVUghxo7zBEzdcMAcQ8MScRm-QF8ZLu3DU9WCq3yBnuncV-msFK2h4q8c81d2e5zO6OwnMtHORj-_0A','As soon as I walked in I was greeted with a pleasant smile by malissa and my nurse Frankie, rad tech Tino and dr.garcia was helpful and gave me good information and the facility was very nice and clean','2019-02-03 03:20:58.135000','2019-02-03 03:20:58.135000',5,'Myisha Isom','https://lh3.googleusercontent.com/-cQ0Zlt6BBFI/AAAAAAAAAAI/AAAAAAAAAAA/kGrwTh49rUc/c-rp-mo-br100/photo.jpg','12541597562633926366',557),('AIe9_BExcxslmE1rr7n5jMcadSKeIhm2sOwSWzbEDdF5C_RPTf3OMXHL2eE_KL4j3PwmcpJbX0zWnWZimTes1NyQRLx1CC5SWctdH05fd9TLLKOLMovrbWA','Lizzie T. was great with us and helped us out very fast.','2019-08-21 01:48:36.152000','2019-08-21 01:48:36.152000',5,'Luiza Martins','https://lh3.googleusercontent.com/-49JRIl6brs0/AAAAAAAAAAI/AAAAAAAAAAA/R-Bu0qebWBI/c-rp-mo-br100/photo.jpg','3511292162159714121',7195),('AIe9_BExcxslmE1rr7n5jMcadSKeiiI_4IapeJeOTOZ884wdKMMNV3Sqmdt24SmXG7FgBCmjvxHh1OUmlmh3TNWKlqbL7C3KiMuihNE5OhX6fuRmKF6QNGE',NULL,'2018-12-06 07:33:38.916000','2018-12-06 07:33:38.916000',5,'田原幸子','https://lh6.googleusercontent.com/-vA8wrcIx8do/AAAAAAAAAAI/AAAAAAAAAAA/qPuBwlTfOaQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2190),('AIe9_BExcxslmE1rr7n5jMcadSKeiK85r5Hri2-NTUX4w1vHIKrdR_fg-u20pG34dToimKGBCdsaLq-G0zZ7eFtCLvIQ652gLKEQam3WsBQBFR39QQ3YlhI','I was admitted with double pneumonia and difficulty breathing. My SPO2 was hovering around 88%. I was stabilized and quickly transferred to St. Davids.','2019-12-29 06:37:50.447000','2019-12-26 23:13:38.188000',5,'Price Monroe','https://lh3.googleusercontent.com/-Zpi6YxOcA_c/AAAAAAAAAAI/AAAAAAAAAAA/OBpLFX0bxQs/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4101),('AIe9_BExcxslmE1rr7n5jMcadSKeIKBi_UZXg1tp0giaKbeymrE4bq-kg5P2z7ETRvPIi37WQ-smKRRp29GvoFMu7M7KiGu9qcbiiMmOG9tgtM9stQKq48k','Aerial at the front desk was so nice! And Dr.Faig was so sweet and professional as well as the nurse, I was in pain and they were quick to relieve it for me. Thanks again','2018-08-06 00:56:36.781000','2018-08-06 00:56:36.781000',5,'Kisha Steward','https://lh3.googleusercontent.com/-vybz8Qn_MpQ/AAAAAAAAAAI/AAAAAAAAAAA/pwV1YDvhRW4/c-rp-mo-br100/photo.jpg','12541597562633926366',624),('AIe9_BExcxslmE1rr7n5jMcadSKeIkEAzXQP0mQ8T4Z9GqElX_g6Wn2ELCX2M9ibHDNHq66ROrSS7yRsSzNM0yCoEt8msE3_Zi_3jo_gL-G98iRsGLrLUT8','Great ER Care. Staff and Doctor are fantastic!','2019-10-09 18:20:37.690000','2019-10-09 18:20:37.690000',5,'Randall Cure','https://lh5.googleusercontent.com/-3-xGfBwovCE/AAAAAAAAAAI/AAAAAAAAAAA/pvm6cZnzMnM/c-rp-mo-br100/photo.jpg','16891069708558046635',4188),('AIe9_BExcxslmE1rr7n5jMcadSKeil2h9VW-aO_6na8oUXUzVQDrhqNP5sO1Kj9NVX-antQpllRyW3U9pUUnrR2qiT5Pf8gUz3IL3SODUxjxePkj4rrVxrI','SignatureCare was clean and welcoming. The staff made me comfortable and were very kind, each step of my appointment. Sam, John, and Cody took good care of me and answered all of my questions and concerns!','2020-08-18 14:55:44.743000','2020-08-18 14:55:44.743000',5,'Kendra Towery','https://lh4.googleusercontent.com/-w4n--p_p7ro/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckeM7X5kTqH9z2t0RH51C51yYIs-w/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeILgBQ2AC3wFgtF00oAGuFCVbox1XcCcuZNDG5vHHWqV1j5GftlztW3vc9HQiP3VLKdWue82QwfS6_6YEan2qyYcupWM','We got right in and everyone from the receptionist to the nurse to the doctor was incredibly nice, genuine and helpful. Our new “go-to” place for our kids at A&M. The cost seemed higher than I expected but that could have been because of my insurance...','2018-11-12 14:40:10.347000','2018-11-12 14:40:10.347000',5,'Eric Goldreyer','https://lh6.googleusercontent.com/-OEmmttSym48/AAAAAAAAAAI/AAAAAAAAAAA/_KxB8OTZ6xg/c-rp-mo-br100/photo.jpg','16590124370714063921',3654),('AIe9_BExcxslmE1rr7n5jMcadSKeIMgnROMycqEsoMfW6c4QKgZJageO4-B3rSI7KBN_jG39150Mld6TT72INiJtheMg3lA5vFK19agr5GzwPjPZc3YpQD8','Dr.esrevez , Nurse Susan , Ms.Tanishia were the best hands down . I had been too three emergency rooms before this one and I was so upset . These ladies were very sweet and understanding and made me feel so comfortable. Thank you so much ladies ❤️','2020-03-20 04:43:02.112000','2020-03-20 04:43:02.112000',5,'jada boone','https://lh3.googleusercontent.com/a-/AOh14GgsdIVqws_aeYjPBOB7JTdlFHrlXam6bKlQyScPqQ=c0x00000000-cc-rp','17898197009688164559',21084),('AIe9_BExcxslmE1rr7n5jMcadSKeiqrVg5-mrDYzp2KeZCGkDtW80_nUuiw5MI2u4smDEJ7MyNnksvCh1HWT7soR7cRSzTlHHO-hQqDJsgGhHXh1xVAdNXk','Dr.Kimball and everyone else there was fantastic and really too the time talk to me see what was going on with me. I felt like they truly cared about me and I hopefully never have to see them again, in a good way!','2020-03-01 11:10:29.624000','2020-03-01 11:10:29.624000',5,'Jordan Radaker','https://lh6.googleusercontent.com/-ZfQsIMdibpk/AAAAAAAAAAI/AAAAAAAAAAA/WzaUFHin0gg/c-rp-mo-br100/photo.jpg','16891069708558046635',13923),('AIe9_BExcxslmE1rr7n5jMcadSKeIRBXxVFdTvSU-JMaUpuInndJRMmEfXs4_xq6eYUXfi4WqXw4gF_FyQhfDrAQl0TbAYSrfFSLE7iKD6vBwz4F8tR0WUU',NULL,'2020-07-16 03:36:06.592000','2020-07-16 03:36:06.592000',5,'Nalu Lu','https://lh5.googleusercontent.com/-8D85rlgMsBI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnnNadbk4H-iD3ZBTdeo7C2XBivng/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22072),('AIe9_BExcxslmE1rr7n5jMcadSKeIYsj_DzDoZZeG-4GALRLCf4mvvvsyh92j-un8eZPIxR6Qq1AAv3eRB1Xw-_ysv94ifWxRYWVOAqAECArR1PY0Fu3ldc',NULL,'2020-07-26 15:11:06.996000','2020-07-26 15:11:06.996000',5,'Team FuBaD','https://lh3.googleusercontent.com/a-/AOh14Gi-or9AcO3jLU87jlLs2Zvv61px4ci0hrzR5dig=c0x00000000-cc-rp','6521947413723274945',22213),('AIe9_BExcxslmE1rr7n5jMcadSKeiZ_Non5qr-yWh49vdW6iRsHKTWvLMC3aCUX85ZPtHAAvGNBamly094wOy-JvMdNS-Hk4B276zDLbR-BYckRDfbkGL4c','Went in with a stomach bug and they were all very helpful, very friendly staff, very caring and understanding! Left feeling much better! Anthony & Angela were the ones who cared for me, very friendly people. 10/10 recommend coming here','2019-01-12 18:55:07.001000','2019-01-12 18:55:07.001000',5,'kacey stewart','https://lh6.googleusercontent.com/-nrrRZGq4n84/AAAAAAAAAAI/AAAAAAAAAAA/wgSTZGdiZyg/c-rp-mo-br100/photo.jpg','16590124370714063921',3591),('AIe9_BExcxslmE1rr7n5jMcadSKeJ0X7pPGctXcjw-LKjSa1AyChh38WmS27_HB1A4uMvFOa-gy_4UKLZM_eV2LhT1zopE73idnARuAHrY5F8qEBOlj36N8','I was very nervous because I usually have bad experiences with doctors. Very kind and helpful. I would recommend.','2018-10-10 12:36:53.584000','2018-10-10 12:36:53.584000',5,'D S','https://lh5.googleusercontent.com/--VEm239rFv4/AAAAAAAAAAI/AAAAAAAAAAA/AYg9ZiJDQcA/c-rp-mo-br100/photo.jpg','3511292162159714121',7573),('AIe9_BExcxslmE1rr7n5jMcadSKeJ2vnr5i8sgI97Va42QOttok9-wBz_o6yDGt3-zPzbEn7rPHMFlArcnNVT1RL_D3HQLCI0NUmmJWELDntc72G6LCKH3E',NULL,'2017-03-12 07:04:23.036000','2017-03-12 07:04:23.036000',5,'may dabbousi','https://lh3.googleusercontent.com/-G-e9Of7BfEY/AAAAAAAAAAI/AAAAAAAAAAA/-EaaIEsXZjk/c-rp-mo-br100/photo.jpg','17394740196501090048',5097),('AIe9_BExcxslmE1rr7n5jMcadSKejA56Gj25F5XHRKj84Stf011NZEGblqtV_vIxpTKrQ9RGniRn2DEEeFsivCPc2AZIBp9xNk1xnCdvhhpZBu-wFKFrwbA','All the staff here is really nice, but the one who really stood out and made me feel comfortable was nurse Irvan. He goes above and beyond his job description. Very friendly and attentive. I will most definitely be recommending this facility to my friends and family due to the amazing service and care I recieved. Thank you again, Irvan for going above and beyond & making sure all of my needs were met.','2019-08-30 02:15:27.768000','2019-08-30 02:15:27.768000',5,'rachel gleason','https://lh6.googleusercontent.com/-tTD0mdQEnto/AAAAAAAAAAI/AAAAAAAAAAA/K0bf_7rF1eQ/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',449),('AIe9_BExcxslmE1rr7n5jMcadSKeJcCsg0_TnwO01Rd07q9brwbngm_047IHzOO0TGJ2Vzz1UkjC5UHxobhaHbM72CROoyiWA5ARZQBZ2J9nmR6NBxLbxwY','Great place to go to nurse Troy, radiology Jessica M., and the registration Melissa E are wonderful people thank you!','2019-09-11 03:36:13.166000','2019-09-11 03:36:13.166000',5,'Alejandra Calderon','https://lh6.googleusercontent.com/-bZHf6GY-rAg/AAAAAAAAAAI/AAAAAAAAAAA/LdtHEkqCsCc/c-rp-mo-br100/photo.jpg','16389487648212004696',2924),('AIe9_BExcxslmE1rr7n5jMcadSKeJCrW_cWLW3O3fzR-bpKRozx_HoDOIdPutGYW-axrQ4vJAPiBVoI_76Mzg4vZg1W4eFFEsgkQtrtcGsQMDQ65fN3KGis','Came here twice for Rapid COVID testing. Both times they were very helpful, friendly and professional! Jessica Sanchez and her team were great! Definitely recommend!','2020-07-21 14:35:06.481000','2020-07-21 14:35:06.481000',5,'Christen Hernandez','https://lh6.googleusercontent.com/-oAxpHkmADcM/AAAAAAAAAAI/AAAAAAAAAAA/1PUYJxsoNKo/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',21625),('AIe9_BExcxslmE1rr7n5jMcadSKejD0WHgt5pDw0uHMa2uCFT-uuQUXMIPkKt-5aIXE_DgWoHomu2mBXV5ne6y9VSdMEwl-D_8RP14bYqHAWxZstBM8C-xA','Had a great visit. Quick and easy and the staff was very courteous ','2016-11-11 12:34:57.390000','2016-11-11 12:34:57.390000',5,'Jennifer Neeley','https://lh5.googleusercontent.com/-xn-lKSVr84c/AAAAAAAAAAI/AAAAAAAAAAA/aZonzt4LhiQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1943),('AIe9_BExcxslmE1rr7n5jMcadSKejI5dPWZju-DkfCYLTa4Vv2eLsQM45w23pcq4tXSxaiE05HesFqXDQxW1ajOQh_Ab3A8T05v_EIdYK4_LhVGYK1Z37ss',NULL,'2019-12-08 00:19:08.699000','2019-12-08 00:19:08.699000',5,'Bobby Terrazas','https://lh3.googleusercontent.com/-NV6gT8Q3xFk/AAAAAAAAAAI/AAAAAAAAAAA/f-7iGWGOCSM/c-rp-mo-br100/photo.jpg','13486358490203335051',700),('AIe9_BExcxslmE1rr7n5jMcadSKejjvMnViRqWRUPms8F4rvW3UWxP27ypWp6m1v1TtgBHiCohDXcHYfUG8ozJkVJiFw9pCvQ8OZ30dlDv33bBLj9_3KEL0','Great service the got me in and out very fast they were very friendly and made the experience great I will definitely go to them again!! Thanks guys!!','2019-04-02 01:06:59.027000','2019-04-02 01:06:59.027000',5,'Johnny Leal','https://lh4.googleusercontent.com/-PqrKNbsmPtc/AAAAAAAAAAI/AAAAAAAAAAA/kfpg83UYrsw/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7369),('AIe9_BExcxslmE1rr7n5jMcadSKeJkWurxNGmmXZdbmw8VSxTYh241m-n3QJkdx_FWjEZziNI5wVwIUrFlDw-RzMl5Ffbne6ZZkI24V230_o3wDutyjih2Y','I received the best care any one would want, And it was Quick and reliable🙌🏼. MD - Do, Registration Ana, Rn Irving, Tech Christian and CT Holly was all amazing and helpful👏🏽 Highly Recommend coming here 👍🏽!!.','2019-12-29 04:48:38.214000','2019-12-29 04:48:38.214000',5,'Diamond Jay','https://lh4.googleusercontent.com/-r2IGjJ4OxvA/AAAAAAAAAAI/AAAAAAAAAAA/qlJqlpaUuXg/c-rp-mo-br100/photo.jpg','12541597562633926366',289),('AIe9_BExcxslmE1rr7n5jMcadSKeJO9iUp99yPVZsI6b_y-Cvf_v7t84Ze4lkAK9pY96Qy_Iwr8p3UWQjO0sqssZgprAgBvBgyaGMeI24YZMD_0_nFvpI8Y','Melissa & Jasmine R\nJose& Christine\nDavid B\nSean \nVery quick and friendly.','2020-03-10 01:18:25.208000','2020-03-10 01:18:25.208000',5,'Oscar Negrete','https://lh6.googleusercontent.com/-TGNO1M8imdw/AAAAAAAAAAI/AAAAAAAAAAA/RpRw4hCi0iE/c-rp-mo-br100/photo.jpg','16389487648212004696',13715),('AIe9_BExcxslmE1rr7n5jMcadSKeJt8PUJZ4tqp03PfV9aW9zWVHVxog0RT3HkOWL9bNk4r1anDs5hOupuL2NETQsfrmYy7k2j9d2Wl6eOs6MiaGuGLvOL8','I want to say thank you to the team at SignatureCare! Ive been to the location in Montrose. This location was down the street from me. I came in with swimmer’s ear. Painful! Came in 30 mins ago and already being discharge. Thank you Ana, Sarra, Holly & Christian!','2020-01-19 07:37:12.536000','2020-01-18 07:18:36.082000',5,'Destiny Salinas','https://lh5.googleusercontent.com/-R8Lm7x23w6g/AAAAAAAAAAI/AAAAAAAAAAA/CC4lNF7t-Gc/c-rp-mo-br100/photo.jpg','12541597562633926366',10018),('AIe9_BExcxslmE1rr7n5jMcadSKeJUgOHrZ89oGPZpAfkG2mC_JuaCEZVVEtlKkqnPlvdZR5lf4rSFgZHbZxMJgl973RnTPcSPDx3Z_7k5BPEjGIgJVozZA',NULL,'2018-11-20 17:26:18.458000','2018-11-20 17:26:18.458000',5,'Naomi Romero','https://lh5.googleusercontent.com/-go3szP3y9FQ/AAAAAAAAAAI/AAAAAAAAAAA/I37z9iQ7eGI/c-rp-mo-br100/photo.jpg','6521947413723274945',8336),('AIe9_BExcxslmE1rr7n5jMcadSKeJVrBwao_N8cGvsKT0nM_RZJ4EW2VmkoBdsdO7BhA5uJXacpXdSRr7UgMlkxCLeF8r2xgQWbscJhF6n-dDyhFO2voiJM','Dr.Pham and Patricia were amazing. Very gentle and caring. Also very quick one on one services.','2020-01-30 21:03:42.180000','2020-01-30 21:03:42.180000',5,'It\'s B Kirkpatrick','https://lh5.googleusercontent.com/-V8AaXCCregc/AAAAAAAAAAI/AAAAAAAAAAA/4RHc00Y1CY8/c-rp-mo-br100/photo.jpg','16389487648212004696',10416),('AIe9_BExcxslmE1rr7n5jMcadSKejXG9RgJwafcjwMAJ60xTfVWIys6vGgRYP-YvGq2dA9V1pKf72sdewlF8L4zM4DOw6SnXiCyyHGtYbnVIY07j2CJAuuA','Cut my finger & couldn\'t get it to stop bleeding. Came here, no wait, Nurses Alvean & Tricia were super nice and made me feel comfortable with snacks & a blanket. Dr. Nguyen was amazing & very informative with each step. Clean & welcoming here ... thank you guys👍🏼','2019-05-30 20:52:31.251000','2019-05-30 20:52:31.251000',5,'Beauty&TheBeast overshown','https://lh6.googleusercontent.com/-9iI5EZy43Fg/AAAAAAAAAAI/AAAAAAAAAAA/ne3eGPuP3nI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeJzVkuAOPcgnev8vWHk0tDEXsAl2nFlT4bqLPyyQGczIJbdjo89dWTTNeTGL7QCVYNcAQ1AnJ3vkhhsugzVi9Hlk6_9k','Amanda Dr Vaagnese the X-ray guy Bryan D and nurse Niki G made us feel very comfortable and all staff were so kind great location','2019-10-28 02:28:14.253000','2019-10-28 02:28:14.253000',5,'Haydee Briones','https://lh5.googleusercontent.com/-dME9L-TTCaw/AAAAAAAAAAI/AAAAAAAAAAA/kJueazQB9u4/c-rp-mo-br100/photo.jpg','14567670160750071148',1206),('AIe9_BExcxslmE1rr7n5jMcadSKeK-MEp2WwmDbshkU6kQQd22i0g5RQ5I7YT0xZPBdWx0ABDh02dV6JlaVuUVDJJA_WBAO35HXob_M2w3M9WWTe9kl8MG4','This was my first visit with Dr Soli Giancarlo. Very professional polite positive and down to earth doctor made me feel at home! The moment I walked in the door I was greeted with a warm smile by Stephanie, Betty and all the staff were very accommodating, warm and caring even offering me a warm blanket! I have come here on 3 other occasions and have always felt like my health mattered even to them! Strongly recommend the care given by all of these professional men and women. Simply the best!','2017-07-08 15:00:33.824000','2017-07-08 15:00:33.824000',5,'Laurie H','https://lh3.googleusercontent.com/-Avopk4UBZiA/AAAAAAAAAAI/AAAAAAAAAAA/Kt07d__rL4c/c-rp-mo-br100/photo.jpg','17394740196501090048',5021),('AIe9_BExcxslmE1rr7n5jMcadSKek4D8flmrGl2To7Xr90MUwayPfs7wmL7QzBRB5_jGFc64ZDLuHiUMP98Szhn92nQ7mTTzZ8xjiafHSnBW29pOXmi8agQ','Very good experience. Dr. Ortiz is very knowledgeable, the X-ray tech Rick, front desk Evelyn, and nurse were very friendly and helpful. Will recommend!','2018-09-09 14:15:04.880000','2018-09-09 14:15:04.880000',5,'Juan Hernandez','https://lh3.googleusercontent.com/-u73cIlp3Duw/AAAAAAAAAAI/AAAAAAAAAAA/DKm2teD4ZPg/c-rp-mo-br100/photo.jpg','14567670160750071148',1515),('AIe9_BExcxslmE1rr7n5jMcadSKeK8Rl9FJcIUak9vQdfzfZK2E8fBEdkcNnS7F8pfPoI8bMG7v0KEoDBlnkoR5Ynue83_AI4bBWdDCX_ifCrwFDvuha1VU','The staff and service was wonderful! They explained everything perfectly. I would definitely come back.','2019-11-25 19:20:57.515000','2019-11-25 19:20:57.515000',5,'Mashal Kazmi','https://lh4.googleusercontent.com/-qnX5VvKihfQ/AAAAAAAAAAI/AAAAAAAAAAA/_nrMtNn7hA8/c-rp-mo-br100/photo.jpg','12541597562633926366',369),('AIe9_BExcxslmE1rr7n5jMcadSKeK91Ym1dcDS7JlZUqYqFh9EsIP-_XhAo9q3J4t0d8RDKMORlCRDaZqgU_U2o_OvsJeeXHZ9nkMBvqnIgESG7N8mjlmjg','Awesome experience! Came in for Covid testing and was in and out with no issues. Facilities are clean and well kept. Registration staff was pleasant and knowledgeable. Thank you Amy, Valencia, Julesia, Dalia, RN Kelly, and RN Pamela!','2020-07-22 17:10:50.912000','2020-07-22 17:10:50.912000',5,'Smiley Garcia','https://lh4.googleusercontent.com/-2XqwRYcPmh8/AAAAAAAAAAI/AAAAAAAAAAA/guYLXCMPGXc/c-rp-mo-br100/photo.jpg','8918455867446117794',22918),('AIe9_BExcxslmE1rr7n5jMcadSKekAwldrXID0mJnT02lCB2HmpAoLlsc-CjojU3NwNZf5Inz0ZhesQtxr3N1KNlqKniqY0p0K-6w8PKn_ir-pXo3Lqw4pw',NULL,'2018-01-30 06:36:54.589000','2018-01-30 06:36:54.589000',4,'Anjan Arja','https://lh5.googleusercontent.com/-qS0M-roJpi0/AAAAAAAAAAI/AAAAAAAAAAA/95AmjH_r7PY/c-rp-mo-br100/photo.jpg','8679688254631342173',8903),('AIe9_BExcxslmE1rr7n5jMcadSKekbCczWN5AURRvyeppEGlppzBxdWz5W4R0UIbW-f2G6Xd70ZPmSnBjypfD5QD497qyJd77MSxfn8ZptAo5LaXv57NTbg','I love this place they were very polite and helpful with answering any question I had.the service was quick even though they were super busy.','2019-02-19 17:13:42.946000','2019-02-19 17:13:42.946000',5,'Kassie Shosls','https://lh4.googleusercontent.com/-qxQHWdE7Iiw/AAAAAAAAAAI/AAAAAAAAAAA/uHr9vOMrjzA/c-rp-mo-br100/photo.jpg','8626688543755174284',8555),('AIe9_BExcxslmE1rr7n5jMcadSKekbCtrfKthbX8geNLtxEFqBSWqUmwbUZGWC2Pkx_CpM0hdDUN2bZPfLPtSS2g1rce3nUPRUo97ouivEutVwXZpXHqYQc',NULL,'2020-07-26 00:56:14.178000','2020-07-26 00:56:14.178000',5,'Daniel Hernandez','https://lh3.googleusercontent.com/-LoftPG_3Tyk/AAAAAAAAAAI/AAAAAAAAAAA/ayKc31I9IB0/c-rp-mo-br100/photo.jpg','2077061009497551125',22838),('AIe9_BExcxslmE1rr7n5jMcadSKeKE3t8IV1WQGcA7c7fF2xddJFYMtiT7POGI_OrfKoWNNhD-rabKV9h9DVOAHsema0N8ws1N3v-2xBGoq5z9kw-zUhjcM','Really great service here. Front office, nurse and doctor all nice and easy to talk to and care about your well-being.','2020-08-09 17:08:13.151000','2020-08-09 17:08:13.151000',5,'Andrew Munoz','https://lh6.googleusercontent.com/-ZgL79IsFW74/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnqeHtymzGGKdbDYXn2HP3cxc4DTQ/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22507),('AIe9_BExcxslmE1rr7n5jMcadSKekHtZXIOzEOlLSKavV6Qb5cNz1D2fY_tp2EETfq5smNlQQE8s_juYHhwFLfEJ-CfoE5yr-d1QlTD03bVAneX7e449iGw',NULL,'2019-12-14 02:03:11.282000','2019-12-14 02:03:11.282000',5,'Adrienne Hendrix','https://lh3.googleusercontent.com/-OyRoFvWElII/AAAAAAAAAAI/AAAAAAAAAAA/tyUxynAj85k/c-rp-mo-br100/photo.jpg','3272657195432704501',6841),('AIe9_BExcxslmE1rr7n5jMcadSKekiRE8e6A48IX-EC5zxORUhQdybGZh3dKf1VjC_fDG-Byx6P7x4iPiUiiBeLjA8AZ-zubjqoDa1XqXRIVG_GJfCrsl0M','From the first step through the entrance of this facility, until the time I was discharged, the employees of this Signature Care, performed 10 star service. So glad that we chose to visit our neighborhood care facility, the staff went above and beyond to treat my pain, quickly and effectively. Thanks to all that contributed in restoring my health. \n\nThe doctor and staff did an amazing job. Facility was clean and stocked very well with up to date equipment and medical supplies. Thanks again for the smiles and warm welcoming.','2020-03-04 03:31:38.363000','2020-03-04 03:31:38.363000',5,'Janice Jones','https://lh3.googleusercontent.com/-bw4uRvVOZhk/AAAAAAAAAAI/AAAAAAAAAAA/2pBYaRmkm-E/c-rp-mo-br100/photo.jpg','14567670160750071148',20957),('AIe9_BExcxslmE1rr7n5jMcadSKekLpWvwDxTFLZe01aZfZ9PsV-aUJhWJTZ3sebX5JytaeL5Za0QgPFEsUeLs1IIEZBYPcTDxqTWQjaxRqoTMtsbPVlC68',NULL,'2020-07-28 00:25:40.829000','2020-07-28 00:25:40.829000',5,'Rusty Bailey','https://lh5.googleusercontent.com/-UR9zjjUTBGQ/AAAAAAAAAAI/AAAAAAAAAAA/51XCOMwc5Og/c-rp-mo-br100/photo.jpg','14748677429039074158',22556),('AIe9_BExcxslmE1rr7n5jMcadSKekMJy01Uw6ITjWzsHljKD308O0vhRsJVYC0ERmOub4Maq_pw9t1F-eyK08OTIzPyjj7mzJin1I45pkT4QDKDiLl9_YL0','Great customer service with many friendly faces with smiles. Great and fast service in and out less than 30min.','2019-10-01 15:06:44.286000','2019-10-01 15:06:44.286000',5,'Curtis Ross','https://lh3.googleusercontent.com/-xVtfvpKnLMI/AAAAAAAAAAI/AAAAAAAAAAA/pUHLw9kXc8o/c-rp-mo-br100/photo.jpg','16389487648212004696',2869),('AIe9_BExcxslmE1rr7n5jMcadSKekn0A9hXWtiikrUSLlNwdVzJAhuS11nbbMzSpsJNXycZAuSjnJ_KTDpAfKNADREz9dZ5GZrxKr0u2UKZs1YaYQmu2y3w','The entire staff was incredibly kind and accommodating. I felt like my needs were listened to and taken care of well. I had a great experience and really appreciate all of the nurses and the doctors.','2020-06-11 13:38:34.438000','2020-06-11 13:38:34.438000',5,'Danielle Fray','https://lh3.googleusercontent.com/a-/AOh14GiwWfuOFOHjFua233iQBQ43neoPyjJ0jOOVmkOrog=c0x00000000-cc-rp','2694018788013845459',21454),('AIe9_BExcxslmE1rr7n5jMcadSKeKSgByW4rMPGXpEpRv8Q1_-I785BEhmM2WPM_dOo8ILB8gVn1RyG0cth5O8B_F9ZNwZ6wN8tIpgffuKaMb_CWsfppz14','Very nice staff.','2019-12-17 01:41:07.555000','2019-12-17 01:41:07.555000',5,'Chance Crocker','https://lh3.googleusercontent.com/-8b0lQNM2Gdg/AAAAAAAAAAI/AAAAAAAAAAA/cEeIL5DHNt0/c-rp-mo-br100/photo.jpg','13486358490203335051',687),('AIe9_BExcxslmE1rr7n5jMcadSKeksmzZJ-YE1mHGbwUI5uKqrzfnGENdkjLhCIJZS22VJGEpTSQJgCjKaE8l9dqhk2PGmVW7vd_mSONTIXkewBZvrtQ5bQ','Best ER ever visited. Loved Lucas and Kim!','2019-07-23 17:31:47.354000','2019-07-23 17:31:47.354000',5,'Zoe Lovelis','https://lh6.googleusercontent.com/-B3N6vUw79e4/AAAAAAAAAAI/AAAAAAAAAAA/YddST1Rxb6o/c-rp-mo-br100/photo.jpg','3272657195432704501',6930),('AIe9_BExcxslmE1rr7n5jMcadSKeKUdi5xjEfmZQfIpNmjKtckoCHXClLDpMxwEaI5wz6gEudT_h41Q_nESv8_4IpUeaFsmaTDdFk6rI5oP6OyVQdputHI0','Great place, helped me with my ear. Been here twice, would totally recommend. Dr Thomas,MD \nSusan R. \nLaura H. \nDaniel B.\nBriseida M.','2019-11-19 04:47:15.157000','2019-11-19 04:47:15.157000',5,'clarissa garza','https://lh6.googleusercontent.com/-JAx9MbCtRhI/AAAAAAAAAAI/AAAAAAAAAAA/4KwS7P7_ieA/c-rp-mo-br100/photo.jpg','17898197009688164559',5423),('AIe9_BExcxslmE1rr7n5jMcadSKelbIix5NpoDmpEfqyqKFiedrgC-QMzJF86FUDJ_HWOwseDnP7SP-d_nG4AOXj8UtDp-HEAsuY3JBUPlIQl60hMI7As4A','Great service!','2020-07-21 02:31:56.970000','2020-07-21 02:31:56.970000',5,'Kari Parker','https://lh4.googleusercontent.com/-tRQU1E1_za4/AAAAAAAAAAI/AAAAAAAAAAA/-RV0m8sTKdQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21654),('AIe9_BExcxslmE1rr7n5jMcadSKeLbkwVuZD7_La0yyulpjoeztz9_hEgtPPJKxxVUq1mfqPQFoKXq3f24YJY5bWpNdhEiS7CWhni9DbBCpqj5bItQkFHYQ','I just moved here from Louisiana 2 months ago so I didn’t know the area very well but I passed by them everyday going to school. They treated me with amazing care and listened to my concerns! Amazing staff and I would recommend everyone coming here! Thank you to everyone that helped treat me!','2020-02-20 03:50:14.484000','2020-02-20 03:50:14.484000',5,'Kaitlyn Bonvillain','https://lh6.googleusercontent.com/-J2T7EtQ_QLQ/AAAAAAAAAAI/AAAAAAAAAAA/34kiGaNVtkM/c-rp-mo-br100/photo.jpg','16891069708558046635',13941),('AIe9_BExcxslmE1rr7n5jMcadSKelEcCutCd59_ZkOn0xDYFjiOQ7jo8Ws4-mPcUPJHX5h8AAzzTXbTKt09wZHSucKoW_i3TCCsCIHXnVoh6KeYhUN0YL7g','The nurses Kristina and Victoria were great, Dr Edwards took awesome care of me I didn’t even have to wait. This place is definitely a must in a bad situation!!','2020-03-13 21:32:24.307000','2020-03-13 21:32:24.307000',5,'Daniel McClure','https://lh5.googleusercontent.com/-wnMQgyo0pQk/AAAAAAAAAAI/AAAAAAAAAAA/y5KuJLurtzQ/c-rp-mo-br100/photo.jpg','12541597562633926366',20904),('AIe9_BExcxslmE1rr7n5jMcadSKeLL81AQqBn--xY2DGqdLsBwMP-xa7bLV902Q_9qLtn9vjSnYHXdaz_Qni547IQK_c9fH97s0M3YOV8m91bipv9M8cD9s','Made an unpleasant experience much more pleasant. So glad I chose to come here rather than Memorial Hermann. Was put in a room quickly. Took a while to get test results back, but the care received was excellent. Problem was addressed and was a comforting experience.','2016-09-02 23:30:21.476000','2016-09-02 23:30:21.476000',4,'Cheryl Portscheller','https://lh4.googleusercontent.com/-jpVIZ_mbJJA/AAAAAAAAAAI/AAAAAAAAAAA/0nU55Rd4pw4/c-rp-mo-br100/photo.jpg','14567670160750071148',1978),('AIe9_BExcxslmE1rr7n5jMcadSKeLlu29JU-YmHzWVCx9z2Go1ctMsYZSITd2vebhfznc54NjWEyAAHwB7bDpIZD_HUcuBr9lQ6_-hcr7IS_92CEtJMcABk','Literally the best care I\'ve had by far I would recommend them to anyone! Thank u so much for your care','2018-12-09 02:17:03.839000','2018-12-09 02:17:03.839000',5,'Natalie Richards','https://lh3.googleusercontent.com/-Op3EPEFEJf8/AAAAAAAAAAI/AAAAAAAAAAA/Hc1x9IDdJ8Q/c-rp-mo-br100/photo.jpg','8918455867446117794',9209),('AIe9_BExcxslmE1rr7n5jMcadSKeLNgHxGxch4ZtJKNJ-5fQdzUowXq4r4tt_D1dGSE_NBW5gbECdkNjyN8xnyfHVH__3os07wchH4Ue_UFHDKNyGXb5hJo','Amazing Staff and Warm welcoming. The receptionist were so sweet and warm. Melissa and Jordan from reception were very clear about the process and made sure that I was checked in at a timely manner. The nurses Ian Myra and Stephanie all gave me quality care and were so effecient giving me pain medication and making me comfortable. The radiologist Holly was so careful will moving me from radiology to my room. And the doctors were absolutely amazing and communicated my plan or care with perfect bedside manners. No complaints it was a wonderful experience','2019-10-18 16:20:56.776000','2019-10-18 16:20:56.776000',5,'Odalis Robles','https://lh6.googleusercontent.com/-Ewt0mQ4dYsM/AAAAAAAAAAI/AAAAAAAAAAA/35d70iWOvTQ/c-rp-mo-br100/photo.jpg','14904078213800803294',13672),('AIe9_BExcxslmE1rr7n5jMcadSKeLoR-cpp2tOk4oHmRPExRoBXdh428jC6ysqw7wS8yBq62Dc1NEFCar7OJfItkc4hMXD31nUTn-n4mOKAW4_YbJ5ZbpO0','I’m not one to go to the doctor but I have heard amazing things about Signature Care in South Austin so while visiting Killeen and experiencing severe back pain I opted to visit this location. And let me tell you I’m glad I did! The staff here are so friendly and accommodating. From check in with Shaunda, Nurse Amy, Jessica, Daniel, Justin I’m so glad I came in. Dr. Hemerka took time to understand all of my concerns fully and provided comfort with the treatment I received. I couldn’t be more happy and pleased with the way they treated me. Highly recommend this place!','2020-02-08 23:49:59.114000','2020-02-08 23:49:59.114000',5,'brandie webster','https://lh4.googleusercontent.com/-yXcrETSufwA/AAAAAAAAAAI/AAAAAAAAAAA/wzdkKSMliAw/c-rp-mo-br100/photo.jpg','2694018788013845459',14247),('AIe9_BExcxslmE1rr7n5jMcadSKelOShf0NzETRrJxu5WjQ4_BFDjbstfNeK36knabdfVmEE1ClnaP2yqMUPJA1DDMTNTX_sc0oJ_zX3XFZmXX9OVF1NVUg',NULL,'2015-11-12 14:49:58.322000','2015-11-12 14:49:58.322000',5,'Megan Bebee','https://lh6.googleusercontent.com/-Y3V3Fc1sZbQ/AAAAAAAAAAI/AAAAAAAAAAA/-oJtQmOpb9k/c-rp-mo-br100/photo.jpg','3511292162159714121',8031),('AIe9_BExcxslmE1rr7n5jMcadSKelpMABbWJ7l2PR0GnakpIys43oy6v_T9O5yUYKyEWEMs8Z5MYajfwdjls_2epRm7wP9tVd7bYfy1Bw8PwgBqkajIGbG0','They were nice here and took care of my brother. Thats what was most important to me! Will definitely come back if we ever need Emergency Care again.','2020-01-18 04:19:50.139000','2020-01-18 04:19:50.139000',5,'AARON VILLARREAL','https://lh6.googleusercontent.com/-5DKKMZVyht8/AAAAAAAAAAI/AAAAAAAAAAA/vchMseHmI_g/c-rp-mo-br100/photo.jpg','13486358490203335051',13470),('AIe9_BExcxslmE1rr7n5jMcadSKelTgITvCnSUgud69FsEaFcqCp_wd5KAT7pj7BC6gu5U5WOFOTjsBbqOmp1WIWJ_2QwsQ4t8wlb1PJPYiSrJ7kCNTzKfQ','No wait time, wonderful staff & the doctor was great.','2017-10-08 14:08:59.486000','2017-10-08 14:08:59.486000',5,'Reynaldo Rios','https://lh4.googleusercontent.com/-na6wGNvebxA/AAAAAAAAAAI/AAAAAAAAAAA/lMpCJ7kFhzw/c-rp-mo-br100/photo.jpg','17394740196501090048',4956),('AIe9_BExcxslmE1rr7n5jMcadSKelUJXfRRz8MXV_ilRxvWx3JOMpdeyvAJd-QhMOglUxbmNpu7GRPM3Sl28sadhWXI1uWucTe1Mg-sdlq6qhkVM5vXfYcw',NULL,'2017-02-09 20:38:46.104000','2017-02-09 20:38:46.104000',5,'Mackenzie Wilkerson','https://lh6.googleusercontent.com/-wj_V2DMsxRY/AAAAAAAAAAI/AAAAAAAAAAA/cznMxr8eKAA/c-rp-mo-br100/photo.jpg','16590124370714063921',4064),('AIe9_BExcxslmE1rr7n5jMcadSKelX60GWgkmHg3CC-TMLlF_3X75f1sdm9YpOFZPPLU1UNMahdC7DqOi7h1teqwb9hPyDc1jZv3kf_saPtNmMVYBdyszNU','These guys are great! Feeling better! Dr.Boester, Amy, and Bryan E., are the best!','2019-06-29 01:04:45.108000','2019-06-29 01:04:45.108000',5,'Ramon Hernandez','https://lh4.googleusercontent.com/-bYmb_xTADDg/AAAAAAAAAAI/AAAAAAAAAAA/0IPbeDG9gYE/c-rp-mo-br100/photo.jpg','14567670160750071148',1283),('AIe9_BExcxslmE1rr7n5jMcadSKeLzwC0S9Yxf29aYO_j6oVdWy8pofEV160f3BLrzdBlouYDKN7WW7DnAww0yArescdGI77jqhYi-5BuRkPEDCq4XMaCTA','Great service! Brought my six-year-old here for extreme stomach pains. Dr. Ybarra, Shelley, Becca, and Heather were caring and had great bedside manner.\n\nWe loved the visit and my son left feeling great!','2019-01-22 03:05:06.431000','2019-01-22 03:05:06.431000',5,'Russell Smith','https://lh3.googleusercontent.com/-In_QsxOp9-Y/AAAAAAAAAAI/AAAAAAAAAAA/LPFoWTwWntI/c-rp-mo-br100/photo.jpg','17898197009688164559',5880),('AIe9_BExcxslmE1rr7n5jMcadSKeMaxGh-t-eQKcVP2qeiVyB2CzxwvEQyb0IF15lHA7wtEZVMSTTX4RostLm2W36SAgahwn-C7EcpAQvf_V89EnxiAT0Ns','The staff was great. So friendly and caring. Definitely will recommend this location to anyone. Thank you.','2019-03-08 00:13:29.236000','2019-03-08 00:13:29.236000',5,'Michelle Anthony','https://lh4.googleusercontent.com/-vRwM5x-CWps/AAAAAAAAAAI/AAAAAAAAAAA/vAcOugxRG2M/c-rp-mo-br100/photo.jpg','14904078213800803294',2161),('AIe9_BExcxslmE1rr7n5jMcadSKemBYFODZIVHW2-XlFu8ncABxExT7BZ1_y5N5fgWvLJm-QZiGdp3sIhl-kAaRl-G48KoQxWjVhvMr-QKooG_B5U8e1fGY','The nurses and doctors were all really nice and explained everything to me. While doing the tests they were gentle. Cody and John were really helpful.','2020-08-17 15:45:54.119000','2020-08-17 15:45:54.119000',5,'Ene Mejia Montes','https://lh4.googleusercontent.com/-aJjnENEWw5c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucloE9bpZQEMGjDRZB18nM7fJsH--A/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeMCYN-oiRovusgCUULKRgJtFUigsa7XOhCjctBiobBly0JrIeNvXKsH9KgwpLtKnFn4RyOcWUh8yny_9195wCbwyZOhk','My first time at SignatureCare was nothing short of an amazing experience. I will definitely return. They were attentive and very nice. Jackie is the best!! I haven\'t seen such a clean facility as this place and no wait at all. Keep it up!','2017-08-22 12:29:38.856000','2017-08-22 12:29:38.856000',5,'a.r.g.','https://lh3.googleusercontent.com/-F2HK51TJpo8/AAAAAAAAAAI/AAAAAAAAAAA/dL5W0t_c8hY/c-rp-mo-br100/photo.jpg','14567670160750071148',1763),('AIe9_BExcxslmE1rr7n5jMcadSKemf1xAjU-h6QRdKQqXjgUSXbmeVCQNicHv22_5BCu3MQ1q7l3_lDSNe28KwA19wHjvVv-AYNBfyfFCRFa_KbCvvSu3gs','Fast and friendly with polite and professional staff.','2019-05-18 17:31:57.373000','2019-05-18 17:31:57.373000',5,'Greg Monkman','https://lh6.googleusercontent.com/-oaX9S2ACZkM/AAAAAAAAAAI/AAAAAAAAAAA/Bnmlt2RdCz4/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',1005),('AIe9_BExcxslmE1rr7n5jMcadSKeMfMzgGytt9IuvUV_ZaTGdtLmjTdMIMovTrr5xPMWNQobGT7P3A56chBemru3qJHR2vVmFnbsHg_4BMNhAa9jXt9osa0','I was treating so kind and they really care.Thank you Norma,Amy,Dawn,Dr. Leavitt and Eve.You made my day so much better and I forgot about my pain.','2020-02-02 19:26:41.141000','2020-02-02 19:26:41.141000',5,'Jessica Salinas','https://lh5.googleusercontent.com/-mG00jJkkCNc/AAAAAAAAAAI/AAAAAAAAAAA/j0YCWhLGYDc/c-rp-mo-br100/photo.jpg','3511292162159714121',14435),('AIe9_BExcxslmE1rr7n5jMcadSKemIolEVFGWcba-_Uvfb-hGo8c2IrGSssf_-MwPHNU7YCbv4hT_46b6uFccnJs1r2KT9cU9kULx4U-07tQu3bt_0jqO2g','I can\'t thank my nurse Joseph, Dr. Sylvester, and EMT Norma, enough for taking such good care of me. I came in with no wait. They quickly diagnosed me and determined I needed to see a surgeon. They walked me through everything that was happening. I ended up having to stay overnight. The entire team was so attentive, checked on me all the time, and made sure I was doing good. Highly recommend this ER. They gave me the best care.','2019-01-03 00:22:26.159000','2019-01-03 00:22:26.159000',5,'Cathy Walker','https://lh3.googleusercontent.com/-Fq4vr98in8E/AAAAAAAAAAI/AAAAAAAAAAA/jXqsXORWHYM/c-rp-mo-br100/photo.jpg','14567670160750071148',1436),('AIe9_BExcxslmE1rr7n5jMcadSKeMJj_stqx08phRtxBXu32QhVwnDyD6wsHkH6KJSGdHCkZ6-KyMH_S39tgeqA5gc1-yxSPCCeg3xpY8K09gOAEiKUiaKQ','Lisa H., Shania S., Saundria are awesome....','2019-07-17 17:53:15.431000','2019-07-17 17:53:15.431000',5,'MeLisa Antuna','https://lh6.googleusercontent.com/-zSZU5aRtKA8/AAAAAAAAAAI/AAAAAAAAAAA/k6d3331WHns/c-rp-mo-br100/photo.jpg','13486358490203335051',891),('AIe9_BExcxslmE1rr7n5jMcadSKeMm5DocpcPuUtgT6hNHD2NvH9JGVqoJBSxwqO1i2IxHkokMlmfMux_rufIFX6orJ1PMf4IXWStWFFMYX6PfxQVDG6C8Q','I love this facility. The emergency room is very very clean. They have an awesome selection of complimentary goodies. My son and I both felt welcomed. The best part about it was they were very quick and got my child taken care of. You guys are awesome and will be my go to emergency clinic from here on out. Thank you all so much!!','2019-09-27 12:11:59.939000','2019-09-27 12:11:59.939000',5,'Yokenia White','https://lh5.googleusercontent.com/-Ih5_VuOpIcs/AAAAAAAAAAI/AAAAAAAAAAA/05F_QXKYI14/c-rp-mo-br100/photo.jpg','17898197009688164559',5536),('AIe9_BExcxslmE1rr7n5jMcadSKeMOxxlmGYMrIW0lYMPsbuqRO--Ox0gb9s01c2gteCbzme5AVM64GA4NMEB_NWTLKBPaeKOZUpsnJm1MPHl8XCI6W3RVY','Great place','2018-01-03 17:16:08.464000','2018-01-03 17:16:08.464000',4,'Vany Alvarado','https://lh5.googleusercontent.com/-vW5neRzu8EA/AAAAAAAAAAI/AAAAAAAAAAA/fg6fl4xpJfs/c-rp-mo-br100/photo.jpg','14567670160750071148',1699),('AIe9_BExcxslmE1rr7n5jMcadSKeMpHNj8HaK3luB4Sb8fiaC4XLa2FU8NKBAXaisHqJVRwtkEX0L2eWHB2mateMbZYq8Kn1ngsRGA5aFw-i5J9ih87Nek0','Signature car is Very clean and comfortable. Nurses and doctors are very professionals.','2020-03-19 19:58:06.938000','2020-03-19 19:58:06.938000',5,'Mokhlis Altawashi','https://lh3.googleusercontent.com/-AjfOTJ6Axd8/AAAAAAAAAAI/AAAAAAAAAAA/FNNo7aRsvS4/c-rp-mo-br100/photo.jpg','3511292162159714121',21150),('AIe9_BExcxslmE1rr7n5jMcadSKeMSv7MzlnZ1Zumsj_Mhckk7ZBfM4A5a1HBEmNrh00A0CpKtHFspvMavbUQb6tHpgXoVbU4-4hSXKxh_fAT7sun6ja0GY','Came in for a bad tooth abscess.. maya at the front was super helpful and nice!! The nurses and drs helped out a lot! Definitely amazing!','2019-12-23 23:10:46.179000','2019-12-23 23:10:46.179000',5,'Giovanna Flores','https://lh5.googleusercontent.com/-VMEgAOzzIlY/AAAAAAAAAAI/AAAAAAAAAAA/n9FmEtMnajU/c-rp-mo-br100/photo.jpg','12541597562633926366',315),('AIe9_BExcxslmE1rr7n5jMcadSKeMTmHzsrMFSZbPaK9dxHdW0a3k0s8Ix8t2UV4BvAzmhmDWFBENC2qzLRJfezuhNXMx3iR9VsKSbywsfODGHaDaPQ4N_4','The staff members were courteous and kind. Robin, Billy, and Courtney helped me with my visit.','2019-04-24 01:57:51.658000','2019-04-24 01:57:51.658000',5,'Cayce Green','https://lh3.googleusercontent.com/-rCr7JUNCb9U/AAAAAAAAAAI/AAAAAAAAAAA/UVVKvRaGnvY/c-rp-mo-br100/photo.jpg','8626688543755174284',8505),('AIe9_BExcxslmE1rr7n5jMcadSKemuNbtXyEFIK8Z6zrlXYwZGvRLArgWTB4P8JzNkNmfJqXjrxjqIZ5YZzr9d1DCRy3c3Ru1QCJ6b8UQThE-EvDC_Qcfjk','The entire staff is amazing. The level of attention and bedside manner is so refreshing. Dr Miller and his staff are the best!!','2019-01-13 05:07:15.457000','2019-01-13 05:07:15.457000',5,'Claudia Cardenas','https://lh6.googleusercontent.com/-QbIwr5K4kb8/AAAAAAAAAAI/AAAAAAAAAAA/-cDn1_DNggE/c-rp-mo-br100/photo.jpg','14567670160750071148',1418),('AIe9_BExcxslmE1rr7n5jMcadSKeMWFW8HDaxhdfzUQrGYGsvduUb5OWeCJ_M7V6AK8ie7EGuznsru4oXgvZyfEBl-78yra-Xjkxm9UP0YKOUUptYqMecSg','The staff was great well treated definitely recommended..i was treated by Dr.Zhen and my nurse kristina was great and the er tech scott is patience. They answered all my questions and made me feel comfortable. Even from the moment i walked in diana help me and acknowledge me right away.','2019-12-27 19:02:37.808000','2019-12-27 19:02:37.808000',5,'Juan Vega','https://lh6.googleusercontent.com/-MwoFKiGo4Ws/AAAAAAAAAAI/AAAAAAAAAAA/qM2Gbsbu-wo/c-rp-mo-br100/photo.jpg','8679688254631342173',8668),('AIe9_BExcxslmE1rr7n5jMcadSKeMWsBh3g_wb1Du6iSwMHDaRXCFiCdnHb-_-JXAH-immADau8KyWAcykMve52ylApRRHcHSoq-gT_fdNs7U7iT6o8omi4','Dr. Cavazo, Delicia, Blake and Sonle were all very kind and got me in and out in 30min flat! A few months back, my son was seen here and my wife also loved the service provided! Clean and colorful.','2019-12-13 17:41:05.550000','2019-12-13 17:41:05.550000',5,'Gregory Desrosiers','https://lh4.googleusercontent.com/-B3-V4qzvGcg/AAAAAAAAAAI/AAAAAAAAAAA/fkcxMoMlCFE/c-rp-mo-br100/photo.jpg','8679688254631342173',8691),('AIe9_BExcxslmE1rr7n5jMcadSKemwsoUuIFRpJ3kbCMffv69weuGdNUofXie_UdL-LpSBXiFQSmUayYhCR1IJBEd3TvY5hsQpAakrDT8ySfMwA8fmFLSkU','They were so nice and made me feel comfortable. Kat the nurse was very nice. Recommend to anyone!!','2019-04-20 00:19:00.848000','2019-04-20 00:19:00.848000',5,'Destiny Haro','https://lh5.googleusercontent.com/-3iMFuOx80Ho/AAAAAAAAAAI/AAAAAAAAAAA/iKBttZ0o91g/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKen6IOlzEp67g2CsLusxK0a-Vg4OWQK00kCc3S0mkuzH8A6ybp0_4yG5oUnlNH4dEtMTp1CXA-0iWljL8EcFv8QCCLCXc',NULL,'2020-01-22 15:01:49.460000','2020-01-22 15:01:49.460000',5,'Nancy Cruz','https://lh6.googleusercontent.com/-2QM-9mAg2FM/AAAAAAAAAAI/AAAAAAAAAAA/mEBgrGgBMt0/c-rp-mo-br100/photo.jpg','14567670160750071148',10147),('AIe9_BExcxslmE1rr7n5jMcadSKen6r3kHWRZN7ii0aHRi8EM_1o-phXfXZ3GyPFgYFgC-1ZMjfiTUFMrkJgZ-T4cLIjKo3e_-Y_ucDpA-VuoqC1DdT5NIM',NULL,'2019-05-21 01:29:18.385000','2019-05-21 01:29:18.385000',5,'On my way To hell','https://lh5.googleusercontent.com/-rciTWN-2R0Y/AAAAAAAAAAI/AAAAAAAAAAA/BbAsiUNaq9o/c-rp-mo-br100/photo.jpg','6521947413723274945',8268),('AIe9_BExcxslmE1rr7n5jMcadSKen6wv1FLF6DCP-xIeTSMQsK_jkFdIb4bLfnt0LRQuzPE3dMpvePOdDz-IehtJgRhw8lN6WqvL9T4TxFbRF-i7gLFa90s','The care was outstanding and I can see why now once I received the explanation of benefits from my insurance company. $19,000.00 for an hour and a half. CT Scan, dose of morphine and an EKG. Highway robbery.','2018-06-05 14:14:35.079000','2018-06-05 14:14:35.079000',1,'Mary Gibbons Rhodes','https://lh3.googleusercontent.com/-d1WZk1wiZWQ/AAAAAAAAAAI/AAAAAAAAAAA/WgwLCmcoanQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1612),('AIe9_BExcxslmE1rr7n5jMcadSKenBQ1cXQsu1-tNo7zCSBRvuSf_BTQQ7ilIMbqhh4g4GwQPdm8jRMGEgiC41TUDQa2F8obcseIhLJ6ehdE1xKmkN69r5k',NULL,'2017-05-07 22:30:18.217000','2017-05-07 22:30:18.217000',4,'Carlos Parada','https://lh4.googleusercontent.com/-XyyNXrSrs5g/AAAAAAAAAAI/AAAAAAAAAAA/oSxlgR2ZTkw/c-rp-mo-br100/photo.jpg','17394740196501090048',5063),('AIe9_BExcxslmE1rr7n5jMcadSKenETReDhoAvRO0xkC7SZ-dMSB4mASzsYd4ivbHkV0Ha6pffLHp2ezxTKvM4lkMfCJZz7QS3FLitM9PnaOYuchC9mWKng','I do not like going to hospitals, doctors, dentists and especially emergency rooms. I am not claiming my visit to SignatureCare Emergency Center was pleasurable, but considering I was in pain it was not a bad experience. Everyone was very friendly; Genesis the front desk lady, the nurse Brenda, Radiology Tech Mathew and Dr. Singla were easy to talk to and explained everything in detail and showed concern for me as a patient. Honestly, I hope I never have to return, but at my age I am sure I will need such services again and will to go to this ER. I am glad that there is a place that is open when my primary care Doctor is not.','2017-11-25 17:42:16.650000','2017-11-25 17:42:16.650000',5,'MoabJack762 YTSA','https://lh3.googleusercontent.com/-R-0ckHLzZbg/AAAAAAAAAAI/AAAAAAAAAAA/UyuMunAjQCM/c-rp-mo-br100/photo.jpg','8918455867446117794',9333),('AIe9_BExcxslmE1rr7n5jMcadSKeNJlDB8g8vVGIcgamOlRUatxBymZPWGs05zpvOSUhQyVSKnG_nem0HXeubvTJZtwmtoOklHfejNeDTmp_JgEDEdFI0TE','Friendly & helpful staff. Clean environment & a Welcoming atmosphere.','2020-01-03 01:58:18.223000','2020-01-03 01:58:18.223000',5,'Vianna Rivera','https://lh5.googleusercontent.com/-NLNovOxkSFE/AAAAAAAAAAI/AAAAAAAAAAA/M83fmEneXVo/c-rp-mo-br100/photo.jpg','8918455867446117794',14882),('AIe9_BExcxslmE1rr7n5jMcadSKennQsTSO-QXk8F8IGCRF3D4JyFU_IFbnUvURvcnRQgdV3ZdLDGS6GYBAmKfZ8lJ6t6ETfQOBla0ImmUXMarOBKeaDBqk','When I came in I was greeted by Patricia C she was really nice. I didn\'t wait long to be seen by and young lady/nurse Aurora, she took her time and seem to really care about me and the pain that I was experiencing. A few moments later Nurse Ekaterini S came in to examine and also ask more questions to help get an understanding of my pain. I really felt like they cared and were passionate about their jobs, they made me feel really comfortable and safe. The doctor on duty Dr. Pham did a great job with explaining what my diagnosis was and the steps he would take to make sure I was back healthy he also gave me good at home instructions to help make my healing process better and faster. The location is clean, the wait time is less than 5 minutes and they have a patient focus attitude that really makes us feel welcomed!!!','2020-01-23 14:54:38.397000','2020-01-23 14:54:38.397000',5,'Surli learner','https://lh5.googleusercontent.com/-HNLYDoiQl7A/AAAAAAAAAAI/AAAAAAAAAAA/FvN1eHYzHlc/c-rp-mo-br100/photo.jpg','16389487648212004696',10190),('AIe9_BExcxslmE1rr7n5jMcadSKenOFnqhUkejGdC40bI-Yc-rgGzmjNF5TNbCBPXT95mhGlAuXnKx-jXBRUYyGzFrH1RT9ms9BRkspLJWJyA06nEbWwx6Y','From the moment my daughter an myself walked into Signature Care We were greeted with a smile. Everyone was so helpful. My daughter was in a car accident with neck pain. They took extra special care for her. Many thanks to \nDr. Iheme, Alvean A, Marcus B, Jocelyn A, Brian W . They all were terrific!!\nJ Renee','2019-11-20 20:25:36.445000','2019-11-20 20:25:36.445000',5,'J Renee','https://lh6.googleusercontent.com/-vxjtvma3e3g/AAAAAAAAAAI/AAAAAAAAAAA/afgGrrWcYLw/c-rp-mo-br100/photo.jpg','16389487648212004696',2647),('AIe9_BExcxslmE1rr7n5jMcadSKenrYlOpywVJyFvdM8C9pdYYy1FOEMy9rRIiTvJnZ3Lu4687F_ICkU5UvWtglBRLZIBknfrc7UkJWiTp9Y8QdSH9VdKlk','Visit was great. Keera was helpful!','2018-08-23 02:10:56.138000','2018-08-23 02:10:56.138000',5,'Lauren Stephenson','https://lh4.googleusercontent.com/-L00c2iomcSY/AAAAAAAAAAI/AAAAAAAAAAA/w9AXi8wMXXA/c-rp-mo-br100/photo.jpg','16590124370714063921',3768),('AIe9_BExcxslmE1rr7n5jMcadSKeNsB05Bm8O6cPOMa4Ptj4HApI_qEGEaBmIFggBnRr8VnONBHmGRW1jWAf-DD79avVqxtZBeIi9tnKdi_uCsDFBbt4990','It was very welcome and everyone was nice. Gave me a lot of information and did a great job taking care of me. Kimberly, Gabriel and Kathleen were the sweetest!','2017-08-23 00:18:37.785000','2017-08-23 00:18:37.785000',5,'Ashley Bui','https://lh3.googleusercontent.com/-2OrRZS9ElZk/AAAAAAAAAAI/AAAAAAAAAAA/FYW5peT6xxA/c-rp-mo-br100/photo.jpg','16590124370714063921',3950),('AIe9_BExcxslmE1rr7n5jMcadSKenSg1Ktk7TCpqYlQHgm8P5oulskCU2DAfuJTB25uzJ8Fm_UUPR0dTljF9X8qtDdBl8xGHcf1gYmwGhcxDE_Kz8lFsXwk','I came in to a calming atmosphere and it didn\'t smell like a hospital. Everyone was so nice, calming and treated me as if I was the most important patient. It was a long visit but I was kept comfortable and they were constantly checking on me. My only negative is that while getting my IV done it took a long time because I really small veins and it hurt but they did amazing taking my mind off it. All in all a GREAT experience. ','2017-05-01 15:16:49.873000','2017-05-01 15:16:49.873000',5,'Starr Foster','https://lh3.googleusercontent.com/-VpD8GkR_ewc/AAAAAAAAAAI/AAAAAAAAAAA/cM1Oxu1xca0/c-rp-mo-br100/photo.jpg','14567670160750071148',1834),('AIe9_BExcxslmE1rr7n5jMcadSKeNtLqW9sqlP3sDnaSetjyjGYYgs3-tUXpkLk4V7JMsWTwG67iSiB5jN9BkQTIAd3am_6Cndqb9JHQijdkf3ozodNSKmQ','10/5 stars. This place is amazing. They attend way faster than any ER hospital I’ve been to. Also, their staff team is fantastic!','2019-11-28 19:57:19.030000','2019-11-28 19:57:19.030000',5,'Jennifer Martinez','https://lh4.googleusercontent.com/-L9BNRJvMG9U/AAAAAAAAAAI/AAAAAAAAAAA/SNx4zPwF3pg/c-rp-mo-br100/photo.jpg','17394740196501090048',14072),('AIe9_BExcxslmE1rr7n5jMcadSKenXRHhCs0zYEVxTh61iyeZAjw1zpgSMq6vfQJpS_4bXVXQGFbmy7SWLpxvtuYT_o7Qwi1If2tJGVdo_3hMMoh1T8Yjrk','this place is really good. I\'m 11 years old, and I\'m typing under my step-dads yelp account. I got poison ivy on my face. they had drinks and cookies, they even sent me a letter thanking me for coming to their emergency room.','2017-02-10 22:33:40.915000','2017-02-10 22:33:40.915000',5,'Houston Groutsmith','https://lh3.googleusercontent.com/-roajV5m_kWw/AAAAAAAAAAI/AAAAAAAAAAA/W1aZHcAhwCU/c-rp-mo-br100/photo.jpg','14567670160750071148',1890),('AIe9_BExcxslmE1rr7n5jMcadSKenyqXSK_eXVjzu_go6S0An0pX6JlBsTUcpN0U5QEFBEC2TOy3DpnVhlQNGS5z7XpaalwtBvFh55VXYbrMVbZZOCa2pTU','Great hospital and they took good care of me!\nThe staff members: Dr. Datta .MD, Nurse: Karen, Rad Tech: Cheney, and Registration: Therisa.','2019-11-22 02:14:04.476000','2019-11-22 02:14:04.476000',5,'Cordelle W','https://lh6.googleusercontent.com/-dAYEFpeQ_Nc/AAAAAAAAAAI/AAAAAAAAAAA/2UzdLD16wIM/c-rp-mo-br100/photo.jpg','8679688254631342173',8713),('AIe9_BExcxslmE1rr7n5jMcadSKeO-z7MUnMspABh-KiWVfWnNNMvMST2HNmVrM6n2esS9T2OM4MV84tld-oxts2flzcHS-QRx05-JR16yKWLGWHxV53bRE','Had a wonderful experience. Everyone is so friendly n nice. Kim at the front desk is very friendly.','2017-01-19 21:51:36.629000','2017-01-19 21:51:36.629000',5,'Shay Williams','https://lh3.googleusercontent.com/-Er8CUFlKFJc/AAAAAAAAAAI/AAAAAAAAAAA/1jD-l9D4AFY/c-rp-mo-br100/photo.jpg','16590124370714063921',4088),('AIe9_BExcxslmE1rr7n5jMcadSKeO8ikZoBulizCoIBgrvRGm_eNrl41pfuds0JqBqkZVMnbDclb020E5doq0KcmMDxVGptMgs3s5dFeeSCF_YM1u60969E','Amazing! They took great care of my boyfriend. The team of Dr. Kimball, Gabriel, Natalie, and Kathleen were all super helpful and attentive! Kept checking up on him, and making sure he got enough medicine to help with the pain and anything else he needed. Rayven was at the front desk and immediately greeted us warmly and helped get us in quickly!','2018-11-27 15:35:21.547000','2018-11-27 07:43:34.800000',5,'Rachel Long','https://lh4.googleusercontent.com/-L-2PmQ3Xifk/AAAAAAAAAAI/AAAAAAAAAAA/yCJn9qlVTG8/c-rp-mo-br100/photo.jpg','16590124370714063921',3637),('AIe9_BExcxslmE1rr7n5jMcadSKeo9BSumho6QTa1SwWD4XbiDROGLxpf455y_yHmWxsHF3JppwA8YQEm0SpF1qQwE-6NNPN-g9AfplTgEbqO0y_g9jFdm8','Nice nurse (brenda) great reception(karen), clean friendly and fast!','2018-07-18 15:57:47.177000','2018-07-18 15:57:47.177000',5,'InspireMe','https://lh6.googleusercontent.com/-O572JvPWQwQ/AAAAAAAAAAI/AAAAAAAAAAA/ozAH5vGQ6g8/c-rp-mo-br100/photo.jpg','12541597562633926366',631),('AIe9_BExcxslmE1rr7n5jMcadSKeoBLxvyvKtebP2uFgfYCO8B_kSoQAK8ESQJ9niyJBbm8l8W8S2IsqWK0LgxgL8XFCtyOzlNtdSAH0-8rHITRovMk6hMQ','Dee was very helpful today with my copay issues . Everything was sorted out and I left feeling wayyyy better','2019-08-14 16:54:05.978000','2019-08-14 16:54:05.978000',5,'ajai Garrett','https://lh6.googleusercontent.com/-eKf1ti1fUxw/AAAAAAAAAAI/AAAAAAAAAAA/ka_yQkOJQoI/c-rp-mo-br100/photo.jpg','3511292162159714121',7207),('AIe9_BExcxslmE1rr7n5jMcadSKeOd2BjIZCvVhBbUeyHlbQgVcNVANQgoB6yTGhgC0kG2E1FwxEPxTZr9y4W65E-705zoX8mvMjqMWNsWlcRGgE5mJ2Aak','Jocelyn A. welcomed at the entrance with a smile and reassurance that I would get the help I needed it and I did Alvean A. my nurse asked me what was wrong along with follow up questions which let me know she was listening and attended my needs once Dr. Patel came in and dissect the issue and was able to find a resolution. I would highly recommend this urgent care.','2020-01-22 21:52:37.717000','2020-01-22 21:52:37.717000',5,'Bpb Works','https://lh3.googleusercontent.com/-mDjj3-E1FZE/AAAAAAAAAAI/AAAAAAAAAAA/GgbKrsinSNQ/c-rp-mo-br100/photo.jpg','16389487648212004696',10191),('AIe9_BExcxslmE1rr7n5jMcadSKeoHCXkj0o0nyRRSw0TWwgNUYdrKOps2wAOm6eeTmArd6ueWqL-SiBcce7lnSZdx186iTdSQAuC70kz4iJ9EkGzS_OB-4','Great care with wonderful service and Mrs. Ashley Burton answered all my questions.','2019-02-17 16:01:59.104000','2019-02-17 16:01:59.104000',5,'jennifer mcclain','https://lh5.googleusercontent.com/-A_3S1dUJfDc/AAAAAAAAAAI/AAAAAAAAAAA/xlWggag9Ry4/c-rp-mo-br100/photo.jpg','8626688543755174284',8564),('AIe9_BExcxslmE1rr7n5jMcadSKeOIuE63oN6LCYEAV2423Xy49mW8vHGwwe9Sb3gB8qd9jZ2WyNf9e38h2Yh5beIznemb2cmi8Ih3r854qM-fBmLfCTy3c','Kendra was friendly and timely in my checkin/checkout and Dr. Kimball is awesome at what he does. The staff here are always friendly and helpful.','2019-11-23 04:21:25.966000','2019-11-23 04:21:25.966000',5,'Braeden Wright','https://lh3.googleusercontent.com/-sOskzGWUYD8/AAAAAAAAAAI/AAAAAAAAAAA/CbNusQnylOo/c-rp-mo-br100/photo.jpg','16590124370714063921',3081),('AIe9_BExcxslmE1rr7n5jMcadSKeOk6wpHEds8Pwj6gKpqrtQvgo4D-gD-wrbtGgN_cdzPPsg7Tx7DxA3pyvzlmd63JQX0VnTBizHCNaKHqOSzk34tswajA','The entire staff was amazing were welcoming and accommodating to my husband, our daughter and myself. I was impressed with the fact that the doctors didn’t leave the issue unaddressed or covered up with meds. They ran necessary test, they called cardiologist, they scheduled the necessary follow and were very informative about their findings. They even ordered breakfast from Denny’s for us all. Both shifts of staff were great!','2019-09-07 16:22:07.651000','2019-09-07 16:22:07.651000',5,'J\'Mara Wyatt','https://lh3.googleusercontent.com/-GU_VZwdAPmY/AAAAAAAAAAI/AAAAAAAAAAA/bjzNWBEl3lk/c-rp-mo-br100/photo.jpg','16389487648212004696',2945),('AIe9_BExcxslmE1rr7n5jMcadSKeOLHUqRWBNAMKqrovmwYZyIv4dXRyg-R23QJvT7JlLD8bSoDs_m6ttacJChJ2bg2Y0cAV_WmsMytTSbnBpRYpeI62BOQ','Very friendly environment, very kind and quick service','2020-07-28 20:57:42.086000','2020-07-28 20:57:42.086000',5,'Ana Gomez','https://lh3.googleusercontent.com/-aW2WDMxkcS0/AAAAAAAAAAI/AAAAAAAAAAA/l2XB4033R5I/c-rp-mo-br100/photo.jpg','2077061009497551125',22783),('AIe9_BExcxslmE1rr7n5jMcadSKeOmYbreSun0yO46-REtXALOyLkAfWrtemMJksTjXiNOm4NXhp0L3JQI9J4U5k7lLXAowAoKnlDp4HDyl-J0pvoQYYl_g','They made this visit the best that it could possibly be, they were so compassionate and informative!','2017-10-18 17:44:31.446000','2017-10-18 17:44:31.446000',5,'Simply Safarie','https://lh3.googleusercontent.com/-ZygdToGGe1Y/AAAAAAAAAAI/AAAAAAAAAAA/ZwqGtuSW1dQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7774),('AIe9_BExcxslmE1rr7n5jMcadSKeOrRDwj1uNiIJgltl8F5QHMhq0adIZ8Ekq9X7Jypp35iI4Wui-20OwciAlxeOdXp-0PwkGEnPX2Wi26ivvjTce-z0tSU','Manny and Araceli were super nice, and made me feel very welcome. Dr. Starr explained my sickness in a way I could understand too and he was generous and made the visit smooth and relaxing. Overall it was a great doctors visit','2020-03-03 17:03:05.180000','2020-03-03 17:03:05.180000',5,'Larissa Garcia','https://lh3.googleusercontent.com/-qbIGkIBxZIM/AAAAAAAAAAI/AAAAAAAAAAA/DD2DxUk3Ngg/c-rp-mo-br100/photo.jpg','6521947413723274945',14520),('AIe9_BExcxslmE1rr7n5jMcadSKeoT8sN9xyU3sVu1AXaM7lWqOlXzLuZXTqPu54O9BkjRZNxpf14PbW6QpCkQ8skhzuZ0Aoe2T5UZtq39fMTiteVz9yNeI',NULL,'2018-12-31 22:21:32.829000','2018-12-31 22:21:32.829000',5,'Alyssa Velez','https://lh6.googleusercontent.com/-jzWYjTnGfkQ/AAAAAAAAAAI/AAAAAAAAAAA/KoEOEknhGQU/c-rp-mo-br100/photo.jpg','14567670160750071148',1439),('AIe9_BExcxslmE1rr7n5jMcadSKeOuxXbQABgXH3CfbRm1bmP0pfNuTFdkeiyT7FfzzTETCo95aFAVxVD_wMGenDYwq4LjGDpkE5bpJMNBDw5iSqG-fqNoI','Fast, friendly, and know what they’re doing. Alicia, Susie, and Matt did awesome! Highly recommend!','2019-11-13 14:35:21.315000','2019-11-13 14:35:21.315000',5,'jason davis','https://lh3.googleusercontent.com/-Redrls4OEOs/AAAAAAAAAAI/AAAAAAAAAAA/hnyLXKPFnpY/c-rp-mo-br100/photo.jpg','8626688543755174284',14659),('AIe9_BExcxslmE1rr7n5jMcadSKeowOTo60rKiPDeMcLHeVYc31jNXnAsq-3g85WGB_NAVtJ1nwlQkARhKLHRykFBTTE_Ch4SFAUeeiFIv-a18DBjq7-2Ew','Tanisha, Alicia and Laura H were very helpful and treated us great! 10 out of 10 recommend','2019-11-15 08:30:02.302000','2019-11-15 08:30:02.302000',4,'skyler johns','https://lh6.googleusercontent.com/-CHeyYQLhaJY/AAAAAAAAAAI/AAAAAAAAAAA/WcfvkhKCc6U/c-rp-mo-br100/photo.jpg','17898197009688164559',5433),('AIe9_BExcxslmE1rr7n5jMcadSKep-9DJ_YN6T5nOo2DyX_CRDCt0RnSyqS8dpPMFKFWlgE68dXXlc1lmEBQiwFCjPuIDHjtPqtBPn5RsLa0j1KUUP11-eI','We scheduled an appointment to wait in line. The appt was for 1:00am we arrived at 12:15am. We were told to wait in one of three lines. By 2:15a I went to ask what the approximate wait time would be since we were third in our line. No one was at the front desk and the security guard was in the lobby. He informed me that the nurse went to lunch and it would be another 1-2 hours before we would likely be seen. There were walk-ins that said they had been in line for 7.5 hours. They should not have one nurse working to cover this many patients. At least have the courtesy to tell people that the staff is out to lunch so those with an emergency can seek help elsewhere.','2020-07-03 07:25:32.228000','2020-07-03 07:25:32.228000',1,'Christiana','https://lh5.googleusercontent.com/-8pAidsMSwAs/AAAAAAAAAAI/AAAAAAAAEiE/AMZuuckxDGsA9IUSWsrCVMnGvS5bU8JPag/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21408),('AIe9_BExcxslmE1rr7n5jMcadSKeP-f-zab13fZnErVoaq3QECeWzY7HOXcEY8adQBLru77FgCImFdGwunCUWU3ivGA68cPDZXeVQU1OC2_EswXWR5XCqoI','All the staff was very attentive and helpful during my visit. I would recommend this ER care.','2019-09-18 16:49:38.558000','2019-09-18 16:49:38.558000',5,'Lorissa Rodriguez','https://lh6.googleusercontent.com/-fbfW-TRMxY8/AAAAAAAAAAI/AAAAAAAAAAA/0Snj_ZukTUQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8139),('AIe9_BExcxslmE1rr7n5jMcadSKep-Mat2OdI-Dl59_lbvlZJoP624oW2pHagr3q9hPxZFXLCLUU0uJoY3NDgBCzM_3dKa50olrYeHXxi1Cg6LI3bDXDUvY',NULL,'2020-01-26 02:11:52.135000','2020-01-26 02:11:52.135000',5,'LaCole Dunn','https://lh5.googleusercontent.com/-Xx2QLmqWCIM/AAAAAAAAAAI/AAAAAAAAAAA/OHNbwT4kupE/c-rp-mo-br100/photo.jpg','12541597562633926366',10091),('AIe9_BExcxslmE1rr7n5jMcadSKeP3DofkpqLtCqXhFXrqFB0fjGuevWSPW_fNr8SDp3tdrxFW4yiVQDq3VhXFDQ6YUQtLzO1ArjRMvnznGECnWyKpb_9ic','My son fell Sunday night at 11:30PM and had a very large gash above his left eye and below the brow. Brenda at front desk had us received in the system (< 5 minutes) and the nurse took us directly to a treatment room. Dr. Amy Patel came to the treatment room and greeted us and explained what would be done and then excused herself while the nurse prepared for the treatment. Amy returned and cleaned the wound, stitched it up and then nurse Tenora provided all required follow up information. The entire process was very professional and we were on the way back home in 45 minutes. \n\nI have used several Emergency care facilities over the years and this was by far the best experience ever. My sincere thanks to Dr. Amy Patel, Nurese Tenora, and Brenda at the front desk.','2019-10-08 14:26:55.543000','2019-10-08 14:26:55.543000',5,'Ron Pope','https://lh4.googleusercontent.com/-_T4V8oufQH8/AAAAAAAAAAI/AAAAAAAAAAA/mFmYp_b91Io/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',404),('AIe9_BExcxslmE1rr7n5jMcadSKep9ktPwN5ay5IWJcBZkCcgqJGOriW1vu__S4sU1cLpYmOJF0zU9d48HLQJ9ylJKc_oJGluOzTYpRWpyzV2PY2qgUroQ0','All the staff was super friendly. Lucas was very helpful and polite, and Doctor Henderson provided exceptional care. Kim and Sherri were great as well!','2019-08-05 16:29:10.844000','2019-08-05 16:29:10.844000',5,'Grayson Gunter','https://lh6.googleusercontent.com/-s1dZE0pBNQs/AAAAAAAAAAI/AAAAAAAAAAA/4SghB8nSuWk/c-rp-mo-br100/photo.jpg','3272657195432704501',6918),('AIe9_BExcxslmE1rr7n5jMcadSKePA193FCgqCLdtocQbLBVfk6nHCzzLn8qmSXCLrSCWQPkCyS5PKwBvz5CjlYB2CtUplCW_AGQrd7D1PFSRcxC_wgPS60','This place is amazing, I walked in not expecting what I saw, everything is beautiful on the inside so nice and homey. The staff at the front is amazing so nice and helpful! I got in super fast and was treated very nicely. Bryan brought me a warm blanket and apple juice and checked on me periodically even brought me a popsicle at the end. Nurse Meredith and Nurse Sherri are some of the best nurses I have ever had, so friendly and so comforting! Dr. Miller is amazing he makes you very comfortable and welcome! I would definitely recommend this place to anyone!','2018-09-29 04:06:09.275000','2018-09-29 04:06:09.275000',5,'Stefanie Farris','https://lh6.googleusercontent.com/-ylRB0SAGOBE/AAAAAAAAAAI/AAAAAAAAAAA/ZkXF9vrr4wo/c-rp-mo-br100/photo.jpg','14567670160750071148',1488),('AIe9_BExcxslmE1rr7n5jMcadSKepGXQD7PVDTlsk76uoteFlABgvFLvLf0HXdPCqQfhdTfIZX6667U_FP8WaKPgWcmT1AGoQEwtYsZmmubmDdzeih6uI9A','Fast service. Unprofessional billing. They won\'t bill my health insurance. Billed me and told me I had to claim it myself. Any time saved by not going to a traditional ER is going to be lost on managing medical claims. Also, since they are a private ER they can charge whatever they want. \n\nMy wife brought me in after a car crash. I experienced soreness. I was there for two hours, during which they performed four CT scans. They took my car insurance info, but not my healthcare one. After maxing out my personal injury (PIP) benefits with my car insurance there was about $13,500 still owed. They told me that they won\'t bill the medical provider for the reminder and that I have to do it myself. When I asked how come a medical service center won\'t bill a healthcare provider, they said that they do in case of colds,etc but not in case of car accidents.\"We just don\'t\" was the answer. I am willing to pay any deductibles, etc, but making me submit all the claims is unreasonable. My insurance covers 100% of medical emergencies, but they won\'t do it. My new hobby is going to be becoming a claim specialist. Please consider going to an old fashion ER at a hospital.','2019-01-05 13:57:03.940000','2019-01-05 13:57:03.940000',1,'Lior Iaroslavitz','https://lh5.googleusercontent.com/-luAJslzlfwE/AAAAAAAAAAI/AAAAAAAAAAA/TRJrSoRW9EU/c-rp-mo-br100/photo.jpg','3511292162159714121',7520),('AIe9_BExcxslmE1rr7n5jMcadSKepM5R7pPF-6Tw33YbCqtcrQ7i0Kantx5yQ2fiTkmizoz-Od31Asm6RtA48UsqAkYXrx7n4Wj3RY9hI_8A_kQ26ZY62CQ','This was my fathers first visit at an emergency center and was thankful with the assistance of Dr.Dendy, Nurse Blake, and receptionist Ashley due to giving exceptional service and answering all questions that assured they’re knowledge in their work.','2020-02-29 16:50:51.549000','2020-02-29 16:50:51.549000',5,'Jackeline Alvarenga','https://lh6.googleusercontent.com/-3Sn2r8uCUGM/AAAAAAAAAAI/AAAAAAAAAAA/HGMgQx0AlUo/c-rp-mo-br100/photo.jpg','8679688254631342173',14717),('AIe9_BExcxslmE1rr7n5jMcadSKepPANqvhwWDDbjcQ6bwfG0ocdgNV7SrNLfhEFfyR8ucBLmmmiFUuKxQtnZdi_QmfWD5zU9EoErqk6-il8Tjl8tVaOM24','The staff is just simply amazing...great service great environment!','2019-11-12 06:15:30.702000','2019-11-12 06:15:30.702000',5,'Mariah Robinson','https://lh3.googleusercontent.com/-byirBLSNXhc/AAAAAAAAAAI/AAAAAAAAAAA/sQkSMOWHPMw/c-rp-mo-br100/photo.jpg','14567670160750071148',1194),('AIe9_BExcxslmE1rr7n5jMcadSKepqUpR5FKhJSy7ZMK82YImKYiWc5PHIjxGoBqUqICtQ_XUmS8AxS0kCLPREUA6Q6xpx6qy0oE0KPyKIXis7NvAQMo7E8','Awesome experience!','2020-08-06 15:29:26.823000','2020-08-06 15:29:26.823000',5,'Bisaya Mommy','https://lh3.googleusercontent.com/a-/AOh14Gj4MTeARJHNa-DeJuKTaX54V039eouox9Oko1QD=c0x00000000-cc-rp','17898197009688164559',22089),('AIe9_BExcxslmE1rr7n5jMcadSKePV9bvn-FSDWpsG_wYxFIAgm3f7Y4qYIZeRyLJ8NaXi97CIGiB8M18mHjStuA4KoeQQjZVkNQZJJy0xfbC0znCLnXtsc','Dr. Souman was simple and direct! The remaining staff was exceptionally nice from Amy at registration to Ms.Agnes in nursing. Will definitely be back for any emergency in the future.','2019-05-04 23:38:07.336000','2019-05-04 23:38:07.336000',5,'Patrick Lister','https://lh5.googleusercontent.com/-EdNP9vlhFTg/AAAAAAAAAAI/AAAAAAAAAAA/qmpk7KTCrKk/c-rp-mo-br100/photo.jpg','3511292162159714121',7347),('AIe9_BExcxslmE1rr7n5jMcadSKePxSG4udZVJVFOo2h94lVqAvJEp_raD62R8thJMwChJHiAHqCJIVUs7oAgalwfVzE5qQh3bvvXf9RfaABNFpSkU9kMDw','I am from out of state and woke up with a severe toothache. SignatureCare Emergency Center took excellent care of me. Dr Zhen and her team, Erika, Alvean and Marcus were caring, efficient and were able to get me out of pain and treat my infection. I highly recommend SignatureCare Emergency Center.','2019-08-13 12:23:48.681000','2019-08-13 12:23:48.681000',5,'Mike Shea','https://lh3.googleusercontent.com/-ccQusbgOk0w/AAAAAAAAAAI/AAAAAAAAAAA/VjlsCw4o2wA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeq33ashsL3_gkLvEB2AnG9sSNuT-ki1rqdXGOlI793KMKtJqtibGlJ_5dO1LbOm67fdmiP97RXeHFXZm32eSdA5gN__g',NULL,'2019-02-06 02:58:35.693000','2019-02-06 02:58:35.693000',5,'Lisa Stark Rand','https://lh4.googleusercontent.com/-V5wEyWBLIqA/AAAAAAAAAAI/AAAAAAAAAAA/Y7nC-t13C_Y/c-rp-mo-br100/photo.jpg','14904078213800803294',2172),('AIe9_BExcxslmE1rr7n5jMcadSKeqcDjbwZDXYzPOfr6GxyVg8zjiBwDkRfCFYKQdJKyavQSYeJeTa7ivuQZZy6B1fvwq6R_N-KabWQictXdnvC_M20gTVk','I took my husband last night to Signature Care and the care he received was top notch! The registration with Tobie and all the questions she answered to quickly getting us into a room was excellent. Eric and Mollie were quick to respond to my husband’s needs and were so professional. Dr. Edwards’ professionalism was icing on the cake. Everything here was ran smoothly. Highly recommend this facility!','2020-01-10 17:42:56.838000','2020-01-10 17:42:56.838000',5,'Debbie Ashford','https://lh5.googleusercontent.com/-57vmfvn8cB0/AAAAAAAAAAI/AAAAAAAAAAA/3sg4dCjpvKA/c-rp-mo-br100/photo.jpg','3272657195432704501',9519),('AIe9_BExcxslmE1rr7n5jMcadSKeqixdAPz8pqZqZf8adr31wdvmMEMSD6w8mu-BJcy5TirpiSr9oMUOpFF_bfnfXwODgvw9WUjC90ExU4zOgXuBky14C8w','I called 4 times to confirm that the clinic would accept my insurance. They said my insurance would cover covid testing. Therefore, I drove 2 hours to get the test. However, when I arrived the clinic, they did not accept my insurance for covid testing. Terrible customer service. Wrong information. Inhuman with patients.','2020-08-03 00:21:14.264000','2020-08-03 00:21:14.264000',1,'Huy Le','https://lh3.googleusercontent.com/-aIfDS-_UleY/AAAAAAAAAAI/AAAAAAAAAAA/hq8jFR1b31c/c-rp-mo-br100/photo.jpg','14748677429039074158',22531),('AIe9_BExcxslmE1rr7n5jMcadSKeqJ78Pi-EfmWBQBFvkSfkORkVHHFcm-6r3_WFoZ-St5fsW96KEF2DnoJyqOHDq8lWYLZtZTN0j1rRlFDD3wnkgn8ecpk','Great Services! The team: Kristina, Victoria, Scott, Sharesa, Genesis, Nguyen were so kind, thanks so much for your help.','2020-07-24 22:12:32.748000','2020-07-24 22:12:32.748000',5,'Kreemguill Vides','https://lh3.googleusercontent.com/a-/AOh14Gijsp8ulICt8xv5No1iuqY4arG2IWaiO_xKxZy1=c0x00000000-cc-rp','12541597562633926366',21798),('AIe9_BExcxslmE1rr7n5jMcadSKeqM5debSf__oLyBZxcbWDsFAnh9n9pQe0GFGl1wc0QYB_OfHPFQ3m7CdG8Ry7htGEGZz1UFiPihpAc9R-n-hf-vRy4I8','This is the second time I have had to go here. The first time was for my back, and turns out I have a slipped disc and pinched sciatic nerve. They took amazing care of me and were so helpful just helping me walk back to the room.\nWe had to go again on 21 January for my wife. She was having severe back pain and chest pain. The wait time was zero and they took her straight away to get a CT scan. The care that the nurse and doctor gave to her was some of the best that I have ever seen. Taking into account everything that was bothering her, and listening to exactlyl what was going on.\nAny time my family has an emergency and needs to see a doctor ASAP we will be going here no matter what. Everone from the front office to all the staff in the back is top notch at their job. \nI highly recomend when an emergency comes up, and you don\'t want to pay those high bills and spend hours waiting at a hospital this is the place to go.','2017-01-24 18:06:25.381000','2017-01-24 18:06:25.381000',5,'stephanie campbell','https://lh3.googleusercontent.com/-It0AGQlKD-8/AAAAAAAAAAI/AAAAAAAAAAA/BBLdSPNA-xY/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2423),('AIe9_BExcxslmE1rr7n5jMcadSKeqmXSO7XT7WyO6KpF6ugJgVrbqxxEx_UHwwhTW6vUsT2HIwL8j98Tv6QTpgi26Km08_t6k1gXlCnGcBQ4UZIJ4kpYcMg','Dr. Morrical, Maryann, Irvin, Laura, and Lisa made us feel at ease when we brought our toddler in. He had fallen off the bed at our hotel and we wanted to make sure there was no internal damage.','2019-09-15 01:35:47.263000','2019-09-15 01:35:47.263000',5,'Stephen Pinkerton','https://lh3.googleusercontent.com/-f8bnlDyoh04/AAAAAAAAAAI/AAAAAAAAAAA/ON62h0xcSRU/c-rp-mo-br100/photo.jpg','12541597562633926366',423),('AIe9_BExcxslmE1rr7n5jMcadSKeQnuDE8edHpyGHKRFQIUZjHjxArNgcOtva6ftKzhycbpw71eUQqeB3vYg8EsAmKxaoLNCKyl6vI6Vl3gu2FZ0iKcS9BY','These guys are the best. Thank you for a great experience.','2020-07-22 14:59:09.462000','2020-07-22 14:59:09.462000',5,'Charles Smith','https://lh5.googleusercontent.com/-G58mRmVWgvk/AAAAAAAAAAI/AAAAAAAAAAA/eQE_LyIT4Kg/c-rp-mo-br100/photo.jpg','14748677429039074158',21611),('AIe9_BExcxslmE1rr7n5jMcadSKeQNw1LyG8KGHdX9oXOHUni5qPwWYlh6sWWY4bgJFAWDokBLt5-nKJlJNy8aqOr1TVhWz9qrL8P8dktmAapjdrk788-9M','Unfortunately, this is NOT a drive thru COVID testing facility. They make you go inside to be swabbed and then you can wait in your car in the ambulance bay to receive your results. False advertising. \n\nThat being said, the staff members that I spoke to on the phone to determine that this was the case were very polite - I have to admit I was frustrated and got a bit short with them, but they took it in stride and answered my questions professionally.','2020-07-19 20:54:27.682000','2020-07-19 20:54:27.682000',1,'Zac Williams','https://lh4.googleusercontent.com/-blUtpwAwkY0/AAAAAAAAAAI/AAAAAAAAAAA/qXn_g4fuWcU/c-rp-mo-br100/photo.jpg','8918455867446117794',22920),('AIe9_BExcxslmE1rr7n5jMcadSKeqPj-Qhosn5NxfuLO91ALSGEvoJoqCPK_6QImU0xSqhpKujp36HQXZbV4j4YHRFrENTZyp7PAquBg7hKUtDt7t9H5B9A','Everyone was so friendly and helpful, I wish I didn\'t have to get hurt to go there. And the facility was extremely nice inside. It had a warm and comfortable feeling.','2016-10-22 13:46:46.817000','2016-10-22 13:46:46.817000',5,'Colin A','https://lh6.googleusercontent.com/-qUbT302IVY0/AAAAAAAAAAI/AAAAAAAAAAA/4nEiYqtlGRs/c-rp-mo-br100/photo.jpg','3511292162159714121',7927),('AIe9_BExcxslmE1rr7n5jMcadSKequothxOH4BZ5NM_ANWa21a1Rs1sGBBPhzWgIFXGxX1yZZVYEEUl1lKwnioWnooEbZg6D9PtzDR2NKHDMt7U7Njd_tUU',NULL,'2020-07-22 14:16:46.461000','2020-07-22 14:16:46.461000',5,'Jose Garcia','https://lh3.googleusercontent.com/a-/AOh14GgbfE0G6_uK21j0xOpdDRF1fJlkwvIRy78CAfLRgw=c0x00000000-cc-rp','14567670160750071148',21876),('AIe9_BExcxslmE1rr7n5jMcadSKeqUZhQJDZCwzN6EG4n3kgp6rgc8uiUpHvmNCw_sOa7xIOoxpFXk1wEkC1jKRSI0LyCbeK4UMNUAiaQ_HpVd3McYpbdbg','Joseph Shawn allysa shay Karen and dr Zheng, they’re all very awesome and patient 🥰','2020-02-07 21:20:10.169000','2020-02-07 21:20:10.169000',5,'Yazzmin Brooks','https://lh6.googleusercontent.com/-qxbEzfqJql8/AAAAAAAAAAI/AAAAAAAAAAA/_Z97ByEKRFU/c-rp-mo-br100/photo.jpg','8918455867446117794',14837),('AIe9_BExcxslmE1rr7n5jMcadSKeqwiYS4tvjUX5tMuHLq42fwH7Pa2njYein9qGYLDEMHlJOX-MN4-vDmRrGHoPAwiuOaHu9Gjp-b6gQlENU0rOdSzxkC4','Facility was efficient about getting my daughter in immediately for care. From the registrar to the medical staff, the entire staff were professional and friendly. I was extremely pleased with SignatureCare Emergency Center. Doctor Cal Do, and the on-duty staff (Susan R., Laura H., Natalie B., and Tanisha w.) all worked really well together to get our daughter rehydrated and back on her feet.','2019-07-12 02:54:24.190000','2019-07-12 02:54:24.190000',5,'Bill Bowman','https://lh6.googleusercontent.com/-Uv6tZG6zGh0/AAAAAAAAAAI/AAAAAAAAAAA/hKV-g6NfJag/c-rp-mo-br100/photo.jpg','17898197009688164559',5642),('AIe9_BExcxslmE1rr7n5jMcadSKeQZ3OhCJapgyXM0m_pxNaUgM5fQGygjj9-2UtkzFrhBoytfSCTsbqb9qpQtzLOQGoyAycHD34GLgBWnwNuxrXBQVxRWc','Hands down the BEST walk in ER in Austin - I’ve been to plenty unfortunately during my years and will continue to come back here - best staff, always quick, top notch care!','2020-02-21 23:15:21.729000','2020-02-21 23:15:21.729000',5,'R MM','https://lh6.googleusercontent.com/-ur7f5_3EsBo/AAAAAAAAAAI/AAAAAAAAAAA/2GjP1czzlFw/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',13935),('AIe9_BExcxslmE1rr7n5jMcadSKeQZO1bM9-L7StIUPA62Du_STEoE0CKQUEcr50C-glMr7g6HnJzFhVODc8AcIVEC_H2YH8MTFa-H45Z--w6BLU5UX_yQU',NULL,'2018-08-18 05:56:31.858000','2018-08-18 05:56:31.858000',4,'Joshua R','https://lh3.googleusercontent.com/-bY2wxD7_SPY/AAAAAAAAAAI/AAAAAAAAAAA/b5wDm1MhGv8/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1561),('AIe9_BExcxslmE1rr7n5jMcadSKer-rj_W2Y1fSrAeRxXCmHP2b_WCapUtLpbGc4A-9N_cAkzMLVN5FKHka82kFgiLBebGSEUUNCGNddnGJpYDtKu_UIRbU','Great people here! Fast and friendly service. The receptionist, Keera was very nice and helpful.','2019-10-01 14:11:51.837000','2019-10-01 14:11:51.837000',5,'ValTriXsZ Padilla','https://lh3.googleusercontent.com/-dLy8e9H5G2Q/AAAAAAAAAAI/AAAAAAAAAAA/-hmv12voqmk/c-rp-mo-br100/photo.jpg','17394740196501090048',4591),('AIe9_BExcxslmE1rr7n5jMcadSKeRHM3ezR35-62KxW6u_x46OuHD8A6otlgY3qweq4zUzYfmj6YwGMu7woyOMDrwg7zLIGC4YCK6UT7npiDCmq9wvZikgM','Great friendly staff, clean environment','2019-01-24 21:59:05.010000','2019-01-24 21:59:05.010000',5,'Keri Nguyen','https://lh4.googleusercontent.com/-DGZStDFeY4s/AAAAAAAAAAI/AAAAAAAAAAA/GLOekA8w4A0/c-rp-mo-br100/photo.jpg','13486358490203335051',1087),('AIe9_BExcxslmE1rr7n5jMcadSKeRkL9bRen8esIgUViop7lZoBojYjEjyD0LhJdSpNPXoVUdJS7j5WN7KTgPvasu2jk2fwMWMDbR3z93ApPqi_WfiCONwE','Highly satisfied with the team: Dr. Jones, Kelly-registration, Karen-Rn and Sherri-RT &Lab. Ave María Forever!⭐⭐⭐⭐⭐','2019-03-07 19:41:32.911000','2019-03-07 19:41:32.911000',5,'Norma Mascoll','https://lh4.googleusercontent.com/-FPtYXnYL3yU/AAAAAAAAAAI/AAAAAAAAAAA/IJFb20NBm7A/c-rp-mo-br100/photo.jpg','3272657195432704501',6999),('AIe9_BExcxslmE1rr7n5jMcadSKerom1BdPuuzTvMEbjlsDqPvuM8INewIpqBinkWR1aSH1yoU4hA3swNk1BelpLmYV6Z0LSTEtYbtAFTJfLB__m_NBNFV0','Fast service, Doctor, nurse and staff shows they care about you.','2019-12-14 18:25:30.512000','2019-12-14 18:25:30.512000',4,'david nance','https://lh6.googleusercontent.com/-jJr8VD8TTso/AAAAAAAAAAI/AAAAAAAAAAA/tYtQ0dkJ7MU/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',5986),('AIe9_BExcxslmE1rr7n5jMcadSKerpALxKk0yQtftZcZkFzHmfNGS47clNAa4i3r0AzdKXu4L4Mc9GF7vvY0RYKBA1-6EsWHqE2aWUuBY9zIZqsyNzPdieI','My husband and I came in to seek treatment for an injury to his foot. The moment we came in and were greeted by Ayesha we knew this place would take great care of us. She was so welcoming and helpful with my initial questions I had before my visit. We went back and Dawn, Nanci, and Dr. Alloju were AMAZING ! They were so caring and warm. The bedside manner the staff has was incredible. I\'ll be recommending this place to anyone. Seriously thank you guys.','2019-06-23 21:06:00.970000','2019-06-23 21:06:00.970000',5,'Anna Perez','https://lh5.googleusercontent.com/-n1muMFP21gk/AAAAAAAAAAI/AAAAAAAAAAA/gkeFEGtSzf8/c-rp-mo-br100/photo.jpg','17898197009688164559',5680),('AIe9_BExcxslmE1rr7n5jMcadSKerqx4NnGDO-I3vrFH2kQh_ozeWXlhgXp-X3zFei8lHHOh9jg9XDKpJu3GjnqXynig-UGqVVuPd3j33J9pH_N2yjViGO8','Walked in freaking it over a DEEP cut on my thumb (cut an artery, yay me!). The staff immediately took my back to a room, met the doctor just as fast. I had my daughter with me and before I knew it, the lovely tech Alexa and RN Katherine changed the channel and had a snack for my baby and a warm blanket for both of us. Doctor Elsbecker stitched me up in no time and was sure to keep me informed of anything he was doing before he did it. I walked in in tears and the team quite literally held my hand to make sure I was ok. I hate that I had to be here but I would absolutely recommend their services! Thank you all so much !','2020-07-05 20:32:51.468000','2020-07-05 20:32:51.468000',5,'ajacobo1991','https://lh3.googleusercontent.com/-MuRQkE5DCmM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm6TETUMfMjq-YjwnBw0axLL7Uj0g/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21446),('AIe9_BExcxslmE1rr7n5jMcadSKerUmwFRyEjIO_-6adDjrcZutYAcCtryrbxOYAvjltkOM1clpecnomcfpdnbkj0OY2MvSUBwO7Um5yZ44cD_MQ2lWWQOA',NULL,'2016-12-07 01:40:38.896000','2016-12-07 01:40:38.896000',5,'Jay Gilbreath','https://lh3.googleusercontent.com/-iPpg-f1DEjk/AAAAAAAAAAI/AAAAAAAAAAA/zEAJyu751U8/c-rp-mo-br100/photo.jpg','14904078213800803294',2442),('AIe9_BExcxslmE1rr7n5jMcadSKeRVEEAFVIwp0W908C8Jb7kDYkOvf0TrcBjE6hQWxe6QvyHuj-zSyzI8b0BQVnxRlhGgaRuERjtrbZwJC99Gir6Ir3i9M','Savanna, and Jamie where awesome and gentle while wrapping my foot. The doc was in within 3 minutes of being called to the back. I filled out my paperwork upon entering and by the time i was finished i was being called to the back. Total time here 35 minutes! Fastest ER ever!!! Very friendly staff!!!','2019-07-15 16:14:17.550000','2019-07-15 16:14:17.550000',5,'Nicole Sandberg','https://lh5.googleusercontent.com/-38ZXav2QYuI/AAAAAAAAAAI/AAAAAAAAAAA/t5boxC0X43U/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',893),('AIe9_BExcxslmE1rr7n5jMcadSKeRzHUWpQDXY4XspXIdqsjewfyK7zOB-OqydEVkyiv__RLWhpv6EeCW0359SNHpwIYYJ24Uf0iohqzIYHmC-o86QJaZdY','Great visit. Was fast and got the helped that I needed!','2020-02-19 16:25:56.426000','2020-02-19 16:25:56.426000',5,'Roshauud Paul','https://lh3.googleusercontent.com/-Lfubk63YMQU/AAAAAAAAAAI/AAAAAAAAAAA/CwEU5Q5SXac/c-rp-mo-br100/photo.jpg','16590124370714063921',13845),('AIe9_BExcxslmE1rr7n5jMcadSKeS14B7APuYcxHAdDKD7coTnds-kwYNGkY5v20e-bti64zOXRAQV6Ad7ObUeOxn1CVZYMAgD2wvKvGRO33gTmcMyHVhG4','I had an amazing experience at SignatureCare ER for my back pain. They immediately were able to get me back to a room and I saw a physician within 10 minutes. I am a healthcare provider myself and the staff here went above and beyond. Very knowledgeable.','2018-01-17 06:00:13.543000','2018-01-17 06:00:13.543000',5,'Andre Kirmanidis','https://lh5.googleusercontent.com/-dEvlW4vGOGc/AAAAAAAAAAI/AAAAAAAAAAA/kRJa3o3PrzE/c-rp-mo-br100/photo.jpg','16891069708558046635',4523),('AIe9_BExcxslmE1rr7n5jMcadSKeS5A1SiZIoMM9X8CKuvX8uPqmMjpMAbqE7hhnMvUPQuCBOfZ_9ZeUkJn6uXSYhPZVoVBVnyv9ucuIGFjZcJlOKJ7cgm8','Staff was very attentive and fast.','2019-06-24 10:25:53.828000','2019-06-24 10:25:53.828000',5,'Raul Rios','https://lh3.googleusercontent.com/-yahHFUUfTDM/AAAAAAAAAAI/AAAAAAAAAAA/UUsP_UefL08/c-rp-mo-br100/photo.jpg','13486358490203335051',928),('AIe9_BExcxslmE1rr7n5jMcadSKes8BE9wC-FcXbURVamBXrKg0u1VHfsVXkPH_mSyskXdTHmWNdWl6XP1xmcys39seX63fykylolwk6ydKmYtWRLTW8ZkQ','Dr Yusuf nurse Laura,Olin a,eve,and shay I had a wonderful experience and they helped us out a lot thanks a lot','2018-08-02 15:33:49.001000','2018-08-02 15:33:49.001000',5,'Ashley Meeks','https://lh6.googleusercontent.com/-yhY0rmNeX9A/AAAAAAAAAAI/AAAAAAAAAAA/Zf88AB8s0FM/c-rp-mo-br100/photo.jpg','3511292162159714121',7677),('AIe9_BExcxslmE1rr7n5jMcadSKescnrWlcwnNSVw23S71qVEZ6OMXLBZpu0ulHlfSx-zST3tA4Fz2U3PHOfmXBWS3iJhfcGXEx8tmwBqZoQriz9hfY4HTw','The wait time was really short. The staff was very nice and friendly. They did their best to keep my two year old entertained and comfortable. They also provided snacks and drinks to my husband and son while we waited. The doctor did everything he could to keep us from having to go to the hospital ER.','2016-10-05 20:39:09.539000','2016-10-05 20:39:09.539000',5,'Toya Jones','https://lh3.googleusercontent.com/-Ahp-Y6nt6Oo/AAAAAAAAAAI/AAAAAAAAAAA/2l6RdzbqRmQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5190),('AIe9_BExcxslmE1rr7n5jMcadSKesEofWtzYwpMSkNmxRQG2MNFKWjq8a3i93d1Ce_IwhI1n5JMQt_szMFVYJmS8En9oRZxRJXTaHMbeF0FnDjVPozijlmM',NULL,'2018-11-28 22:07:59.854000','2018-11-28 22:07:59.854000',5,'Anna Caton','https://lh6.googleusercontent.com/-f8o3Tte1Evo/AAAAAAAAAAI/AAAAAAAAAAA/SfB4guejHxg/c-rp-mo-br100/photo.jpg','16590124370714063921',3631),('AIe9_BExcxslmE1rr7n5jMcadSKeSEqLi7H8AmqJaQBEHi00u269m0KH5Ao33S6bYQFlEQchG315LTdfeVP_2YtORNy2vjruNQmTYsiWUnDBO5seVgcbHOU','They were great! Brought my husband here and they fixed him up well and quickly!!!! They were all so nice, friendly and helpful! We would highly recommend this place!!!!! Special thanks to Quintessa, Melissa, Kay and Dr Hasegawa!!!','2019-07-20 21:58:09.847000','2019-07-20 21:58:09.847000',5,'Earlann Bumpus','https://lh5.googleusercontent.com/-CNtwyrJGW_Q/AAAAAAAAAAI/AAAAAAAAAAA/tWuNxrXqQ_A/c-rp-mo-br100/photo.jpg','2694018788013845459',6107),('AIe9_BExcxslmE1rr7n5jMcadSKesI1ewlPO7X5r9A6lIpqbziczZObkvKQ0ymCFyx5tyamaDODG2ci9aTizehAxioFuBp-tBLjEnqdsxxjjs3_Mjb6ILmw','Very attentive and warm staff; from Kimberly P., Nicole G & Julie H, Dustin H, Ricardo G, and Dr.Lim.','2020-02-15 04:09:16.679000','2020-02-15 04:09:16.679000',5,'Jessica Marshall','https://lh5.googleusercontent.com/-dQkRIXy1uaI/AAAAAAAAAAI/AAAAAAAAAAA/Su2Vr_sB51U/c-rp-mo-br100/photo.jpg','14567670160750071148',13532),('AIe9_BExcxslmE1rr7n5jMcadSKeSie6G6ThPGX-7VMq-qeW5ZE9BXq3p_nIq_cdNimAI6RRcOhwxfzNwmSpmn2X9N6GiHGsQCrrt0CNpJRm_eP_d3dzTNE','Great place, Great business, very friendly and helpful.. Valinceia is very helpful and professional','2020-02-18 17:28:47.268000','2020-02-18 17:28:47.268000',5,'M Mac','https://lh3.googleusercontent.com/-1VhQBYGrrh0/AAAAAAAAAAI/AAAAAAAAAAA/xDAZ7MwO_nc/c-rp-mo-br100/photo.jpg','8918455867446117794',14818),('AIe9_BExcxslmE1rr7n5jMcadSKesjLSMGaFFXQ1vimhNDhW6tcz7KroffOcsmadcmGJg2sgakZB7rfvuSv8D3YaEyV2qhuep-fUkZvA1i5wX0IEXKp8lOc','Signature Care is awesome! I had a great experience from beginning to end and will tell everyone I know to go here for any emergency needs!','2019-06-07 18:43:43.185000','2019-06-07 18:43:43.185000',5,'Mallory Cunningham','https://lh4.googleusercontent.com/-fbaHt2ecX3o/AAAAAAAAAAI/AAAAAAAAAAA/8OEMy-Vi4yo/c-rp-mo-br100/photo.jpg','8626688543755174284',8461),('AIe9_BExcxslmE1rr7n5jMcadSKeSNa7S-xEakhC2Fh5GxJ3xjF7v9oYsW2VAKxB0NYIxD1UfnUoMPW-jXdcEeBCO858_wwXvyXEblKchDnR4ec5jyDx-8A',NULL,'2018-11-29 18:17:15.620000','2018-11-29 18:17:15.620000',5,'Clay Womack','https://lh5.googleusercontent.com/-cmlcc2SH3zo/AAAAAAAAAAI/AAAAAAAAAAA/6vicUrvvjQE/c-rp-mo-br100/photo.jpg','8626688543755174284',8638),('AIe9_BExcxslmE1rr7n5jMcadSKeSnFvbFtoB-wOQmh88i7Bm2eOBnT9PA0TgBE3-4ADAkrhzrKyY9w50IVcwYKoXJa3BGlh72TP9QO2XBqeI_b6Q6jJM30','Overall good experience. I needed somewhere close by to get checked out on a Friday night. They have clean and comfortable facilities. All the staff I met work courteous and competent. The ER doc took his time to explain everything well. Also there was almost no wait time when we were there. The pricing is okay for an ER. I’m glad we chose this one.','2018-04-07 13:48:56.926000','2018-04-07 13:48:56.926000',5,'Rebecca Owsley','https://lh6.googleusercontent.com/-mvv2kL6xJD0/AAAAAAAAAAI/AAAAAAAAAAA/l38U21rMkzQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7712),('AIe9_BExcxslmE1rr7n5jMcadSKesqVKZnvtppjeaBSC2EQ4lA9AU-tzKT22X3yEiVbl8a5amId8YoSRZ5DSEfCxkBb0-imn0laxS5413zXtEwsduoy14ZE','First time at Signature care was wonderful. Staff was extremely helpful and very quick. Thanks for the great visit.','2019-05-11 18:10:18.844000','2019-05-11 18:10:18.844000',5,'Landry Cunningham','https://lh4.googleusercontent.com/-Il-NM2aRfp4/AAAAAAAAAAI/AAAAAAAAAAA/o_pArSozht4/c-rp-mo-br100/photo.jpg','16590124370714063921',3390),('AIe9_BExcxslmE1rr7n5jMcadSKesqyGpklRcIyRNXLn0m4ZPLhCR4i8LpNzjeOYzgZp2VCUBo4MxTr-mxiUDNJxEY8ASC4FrAaTfgO3eMEthHcb5BvsgI0',NULL,'2020-01-18 23:37:05.808000','2020-01-18 23:37:05.808000',5,'Bill Iroh','https://lh6.googleusercontent.com/-8t_fncb3I68/AAAAAAAAAAI/AAAAAAAAAAA/9ahEVkLDO0A/c-rp-mo-br100/photo.jpg','3511292162159714121',14455),('AIe9_BExcxslmE1rr7n5jMcadSKeSSyX3v6ZQn42rlQLQSiO0Xje2KLEYMdvolv1ZwJtv6vpWNkbXrF1QLkTy0dsNP4hLbqb6xSk4ug7D14ymPAgdr8thzQ','Amazing ER center. Everybody should go here and nowhere else!!!','2018-01-07 23:01:57.584000','2018-01-07 23:01:57.584000',5,'John Wayne','https://lh4.googleusercontent.com/-mUP3QmNc9WE/AAAAAAAAAAI/AAAAAAAAAAA/Me9UlqiZlls/c-rp-mo-br100/photo.jpg','16590124370714063921',3886),('AIe9_BExcxslmE1rr7n5jMcadSKesvu52fG3uA8nVJqacLD092Vvq_dfVmMf6UNS-1d6DiBfs3CAtXGdW0CR-2lF8rZi9O1iqLnzTMPbe8a9RZrkNZebCeY','Was seriously ill with a stomach bug and late on Sunday night finally decided I needed some medical attention. From the moment we opened the door SignatureCare was a wonderful change from what a hospital ER visit is like. Delfino, at the reception desk, cheerily greeted us and got the paperwork started immediately. Lobby was clean and comfortable. It wasn\'t long before Janet brought me back to a quiet, private room. My nurse, Katie, and Dr. Elsbecker were very attentive and kind. Great bedside manner. Got fluids, meds and some much needed rest and they sent me on my way!','2018-12-08 12:38:39.316000','2018-12-08 12:38:39.316000',5,'Elizabeth Abernathy','https://lh6.googleusercontent.com/-Qtkexqut9ks/AAAAAAAAAAI/AAAAAAAAAAA/S1JPBCDXIbI/c-rp-mo-br100/photo.jpg','16891069708558046635',4391),('AIe9_BExcxslmE1rr7n5jMcadSKet-ISojKSGrlBTTwaQwzvunngNqSxBpvIE40L5WmZdWrumMaMurK3P0eVVmcwahZn9jEvvQO59hlKdH1BOXcVF2a0cxs','Took stepson to signaturecare, Michelle,Kim, and Sherri took really good care of him explained what they where doing and why. Sure beats waiting at hospital.','2019-08-14 23:00:37.636000','2019-08-14 23:00:37.636000',5,'Justin Akin','https://lh3.googleusercontent.com/-sIT7h8-FOvQ/AAAAAAAAAAI/AAAAAAAAAAA/0nvzVkqNKk0/c-rp-mo-br100/photo.jpg','3272657195432704501',6911),('AIe9_BExcxslmE1rr7n5jMcadSKet1zvnsoB_FQ1JepushZMvOzINRjIKW-6N8pXfQqSJ7VcXhJbL29kzKqjmZsfFRhGS71F7Hh3h3zZTSA5sTeUGZhNfy4','Very friendly and compassionate doctors and staff! Glad they are nearby!','2018-01-04 21:28:08.699000','2018-01-04 21:28:08.699000',5,'REK-TEK Consulting, LLC','https://lh3.googleusercontent.com/-G6s6IVleGQY/AAAAAAAAAAI/AAAAAAAAAAA/cRCeGEzEHgs/c-rp-mo-br100/photo.jpg','14567670160750071148',1695),('AIe9_BExcxslmE1rr7n5jMcadSKet3NOeK-jBKGzZ9CAUCz2tAMIzIpXg3VwKP-OHtzG41tVs9lU4iEu2-rfi1Z1kmPYTXlionl_DugpslYDLKW15fpfOjs','Olivia was on point, Keaire, and Dawn were very welcoming and fun.','2019-08-16 15:45:20.984000','2019-08-16 15:45:20.984000',5,'Benjamin Eboka','https://lh4.googleusercontent.com/-ohizKfnU7Ts/AAAAAAAAAAI/AAAAAAAAAAA/pBjz2Me1Dt8/c-rp-mo-br100/photo.jpg','3511292162159714121',7201),('AIe9_BExcxslmE1rr7n5jMcadSKet7mewiDc-M541G2Zm4cUl8FnT_-gmvda9USfGkk2tpsXZg6fHTmov8sznm_Z6gH4ufTto9LxxtPFY2YAZr8OIlU3gTc','My wife went to this facility with an open wound and the attending MD? prescribed meds but was not able to give us suggestions for the care of the open wound. Since when do MDs fail to learn how to dress and care for an open wound? It was in the past taught in public schools as part of the homemaking classes for decades! When we asked if they no longer cross trained MDs in wound care, the MD indicated that she did not know, but would refer us to a specialist in \"wound care\"? I could not recommend this organization to to anyone. The attending MD had a very unpleasant attitude. They did see us in a short period of time, but the resulting $175 charge was really worth about $25.','2019-07-12 02:30:32.695000','2019-07-12 02:30:32.695000',1,'Bobbe Mcclure','https://lh5.googleusercontent.com/-iw7ZkSAk9Us/AAAAAAAAAAI/AAAAAAAAAAA/r_pqJZtXWfM/c-rp-mo-br100/photo.jpg','6521947413723274945',8204),('AIe9_BExcxslmE1rr7n5jMcadSKeTHlQeslFu-JZk0e2vIXxCQdNxj9Cd8x_t0AxRwfk_mEUA_xm-7zC0UWV8bwFcH5U-6UIYCBnvhKRcCj5dmfFSnHNHGw','They are so nice here and it’s so clean','2019-11-27 07:25:27.812000','2019-11-27 07:25:27.812000',5,'Audrey','https://lh3.googleusercontent.com/-05CJ_k764FY/AAAAAAAAAAI/AAAAAAAAAAA/BmPdkhTzlt8/c-rp-mo-br100/photo.jpg','3272657195432704501',6853),('AIe9_BExcxslmE1rr7n5jMcadSKetKvsf_QYEvk0Ah-hs5HCwDNUWLKp0KanylzMo5lI_KoeKzstv6Ph1z_iw9bjWRHLlnqBTsklvuHrcvkoyVPoyzOfsjs',NULL,'2018-12-19 20:50:52.796000','2018-12-19 20:50:52.796000',5,'sadan jimenez','https://lh6.googleusercontent.com/-SmXwFX1Op2E/AAAAAAAAAAI/AAAAAAAAAAA/Cw5gl3g2nO8/c-rp-mo-br100/photo.jpg','17898197009688164559',5911),('AIe9_BExcxslmE1rr7n5jMcadSKeTlD0470mfi7GfEBAJuY1BWln7RdZsoIRKOKhpo7TDqgL991RmhWAxpfsJ2cgLPI7FDZ-fzfd1bvLl-qZWUFrEhv-4Os','Dr. Souman was direct and simple, and staff was exceptionally nice from Amy at the Registration desk to the RN on duty Ms. Agnes. Will definitely be back for further emergencies!','2019-05-04 23:34:13.001000','2019-05-04 23:34:13.001000',5,'Patrick Lister','https://lh5.googleusercontent.com/-EdNP9vlhFTg/AAAAAAAAAAI/AAAAAAAAAAA/qmpk7KTCrKk/c-rp-mo-br100/photo.jpg','14904078213800803294',2141),('AIe9_BExcxslmE1rr7n5jMcadSKetn6bbdXyN2nU7o4ZHUGnKRYna-81NfhDqPU2z8-gVOZX0MDMWGmJUEZunNTTTXDV-kgiXQsVYdXrG8ykREkmOtXpFzc','The staff was cordial, especially the front desk. I was in for almost 2 hrs start to finish. I would recommend this facility to others.','2020-03-15 21:10:47.341000','2020-03-15 21:10:47.341000',5,'Damion Waller','https://lh5.googleusercontent.com/-K1zzuD7wwdQ/AAAAAAAAAAI/AAAAAAAAAAA/LPegPLiilvk/c-rp-mo-br100/photo.jpg','2694018788013845459',21111),('AIe9_BExcxslmE1rr7n5jMcadSKetqduiFEKNeUJu66uckxAJ4fR_vU_p032t_eeqemJcpLcr9vUgJ2XKmqGt7hITJJmpDb9qBymQrmMIXRrFABC0hgimsU',NULL,'2019-01-19 19:12:58.596000','2019-01-19 19:12:58.596000',5,'Valeria Guerrero','https://lh6.googleusercontent.com/-vI6DAdomwvg/AAAAAAAAAAI/AAAAAAAAAAA/ioDNF3c8cF8/c-rp-mo-br100/photo.jpg','13486358490203335051',1101),('AIe9_BExcxslmE1rr7n5jMcadSKetzAYWzW01BtBwasIx-bVM01x991A-DLPFSO_h2PRf1Zrxu18UwiO1v7_8B-tbFKDSr9To7dyff9oortEVPsVRD81S5E','Fast. Efficient. Friendly staff. \nIf you need quick attention- they rocked!','2020-07-19 20:27:48.592000','2020-07-19 20:27:48.592000',5,'Ted Marek','https://lh4.googleusercontent.com/-FGWJ3v0r9yk/AAAAAAAAAAI/AAAAAAAAAAA/J1rAnRl3Gkw/c-rp-mo-br100/photo.jpg','14748677429039074158',21696),('AIe9_BExcxslmE1rr7n5jMcadSKeU-QRYDaMwvIQE2VTTVFCmffQ0yRveCZwoH110pzwQtNlRXF28ef4LpVewXBbiUSXoL_jJ7mMzTuKbcACjwFYGIg_6qY','First rate care from the moment I walked in the door. I was greeted warmly and treated kindly. The wait was short and the nurses and doctors were kind, caring and professional. Thank you very much!!!','2020-02-23 19:20:53.053000','2020-02-23 19:20:53.053000',5,'Shawn McCafferty','https://lh3.googleusercontent.com/-_KxXcN73L4g/AAAAAAAAAAI/AAAAAAAAAAA/rx8tcLMzfuM/c-rp-mo-br100/photo.jpg','6521947413723274945',14554),('AIe9_BExcxslmE1rr7n5jMcadSKeu0UppPkek3SH65lqP5vv3LhHNe8Y1yKGDdX5xWEbqeXMRq29qYiF8iAfKboa0035iyHQ6pf8mK9ngUH9Y8IVoRAI-TY','Excellent service. All of the nurses were very helpful and sincere in caring for you. The doctor was very professional and took very good care of me. I have no complaints.','2019-05-24 21:00:49.876000','2019-05-24 21:00:49.876000',5,'Jeremiah Guenther','https://lh4.googleusercontent.com/-B4ZazEr3OcY/AAAAAAAAAAI/AAAAAAAAAAA/5Nzrv2JFwQw/c-rp-mo-br100/photo.jpg','8626688543755174284',8475),('AIe9_BExcxslmE1rr7n5jMcadSKeudyxELS0gdgYvSxq4Fu7MH7ICFMQ3i9jnREyEe0OyMXJSw30UEZqcymk5qUYYepQ2CygJ4DArVzUNglFq8M6PU0tTmA','Definitely recommend. In and out and dr was very thorough','2019-06-13 16:56:37.183000','2019-06-13 16:56:37.183000',4,'Leticia Catano','https://lh6.googleusercontent.com/-HaJyfZ9L9U8/AAAAAAAAAAI/AAAAAAAAAAA/ho3QR3OE30o/c-rp-mo-br100/photo.jpg','13486358490203335051',963),('AIe9_BExcxslmE1rr7n5jMcadSKeuf51K378ZQDVnruqgn_haTdkIwVqi3v5eNQsqati_FIVT7U6wys28-lX7UfHZ1wg9Pvj6BpMN5m9RRShOxs9WvYzKJo','They were fast and very efficient! Everything was explained to me in great detail. I felt like a person and not just a patient!','2017-05-10 15:29:29.440000','2017-05-10 15:29:29.440000',5,'Andrea Richardson','https://lh6.googleusercontent.com/-j_Alt20qY58/AAAAAAAAAAI/AAAAAAAAAAA/lSufhP165Sc/c-rp-mo-br100/photo.jpg','17394740196501090048',5060),('AIe9_BExcxslmE1rr7n5jMcadSKeuh7a8YUOGBfjI3DGjVuBOE66niBkRDqIgc7VtrSuy7LpxcG3d3IiwfXqYFZst9oFT5UqyKzHTY4kyaRTkEFSpIomdnw','Came in with some bad pains in my back. The staff was wonderful in helping me get to the cause of my pain. Thank you for being so proficient.','2020-01-22 07:05:47.246000','2020-01-22 07:05:47.246000',5,'Kayla Batchelor','https://lh6.googleusercontent.com/-Shthp_uOyHA/AAAAAAAAAAI/AAAAAAAAAAA/z6YdAN6txEs/c-rp-mo-br100/photo.jpg','13486358490203335051',13461),('AIe9_BExcxslmE1rr7n5jMcadSKeUHY9OJBnfR12wxuLMtnQZHmscR6Uqgh0mK6buawIvP05TfvzYUoXSN9xEU_HIGlgObLGH4_v8BfCabV1dt3RoqWJ5dw','I had a great experience... this was my first time at this location and was offered a warm blanket at minimum 4 times. The doctor actually touched me and made me feel like a person. Dr. Hehmen set and talked with me in a way that I could understand. Alan the Rad tech was extremely professional and very courteous! Overall a wonderful visit.','2019-01-01 05:29:53.066000','2019-01-01 05:29:53.066000',5,'Ikita Chatman','https://lh6.googleusercontent.com/-1cGqH9izbtM/AAAAAAAAAAI/AAAAAAAAAAA/Meu0vTG9JGw/c-rp-mo-br100/photo.jpg','8918455867446117794',9202),('AIe9_BExcxslmE1rr7n5jMcadSKeUJBOyAOd4qGUWuJn-fAJoR25nX4XSFsYKDWjxtL2g5bfzgKq-lFdRgWCNe_y9kKmzaA35XdWc7RzQSqLDnE2Q0khLWU','Very friendly and efficient. I was there for just over an hour.','2020-07-03 06:24:29.344000','2020-07-03 06:24:29.344000',5,'Jorge Cordova','https://lh5.googleusercontent.com/-Q6SQ_JmINEE/AAAAAAAAAAI/AAAAAAAAAAA/EOLuuaq_BYM/c-rp-mo-br100/photo.jpg','3511292162159714121',21473),('AIe9_BExcxslmE1rr7n5jMcadSKeUk21_dJbZRfEcd6MEBHPsdNB4oIkUUw1Gy1dQ9EJ12Py-r9tg3DYP0eBM1v4W5vjQBRcK8lPFlmn2UvAJfosdtb-F2g','Don\'t waste your time coming here. I had a 9am appointment. It took them 2hrs to complete a covid-19 testing that they advertised to be a 15 minutes long practice.','2020-07-23 15:25:45.698000','2020-07-23 15:25:45.698000',1,'Johnson Ochakachon','https://lh3.googleusercontent.com/a-/AOh14GjFzco42YlZk7jI7OBRtRkbZRflwytDWoCbKO92=c0x00000000-cc-rp','13486358490203335051',21848),('AIe9_BExcxslmE1rr7n5jMcadSKeukYKzPxe76YPV7-z5Dp7O_cGS3HefEEaiK9fRBnZhtdCQ9Ow_gQYV23Cvqiji1FhMqcFrr80LQhM7rpCvxQvxckqt5c','My wife and I want to thank the Staff at the Copperfield location. Dr. Henderson and Nurse Racheal B. were awesome and showed compassion true professionalism. I would definitely recommend this Emergency Center. Their prices are reasonable and their service much faster than any ER room in Houston.','2019-10-20 10:29:45.724000','2019-10-20 10:29:45.724000',5,'Cesar Espinoza','https://lh6.googleusercontent.com/-JhCtRQZB0uQ/AAAAAAAAAAI/AAAAAAAAAAA/2mMcLwO11rI/c-rp-mo-br100/photo.jpg','17898197009688164559',5497),('AIe9_BExcxslmE1rr7n5jMcadSKeuru3ZknWjA7NZXUYTsPtlTGvRCzl-7DPTThaiFCjnZ2rnoWKUdM2_HVQ3LRZxjtTadK1COhAA2kfJs3VEY1saZHSwoo',NULL,'2019-09-28 15:24:47.522000','2019-09-28 15:24:47.522000',5,'Josh Davis','https://lh3.googleusercontent.com/-qwRO_XdS4_I/AAAAAAAAAAI/AAAAAAAAAAA/5WW26lo1vjY/c-rp-mo-br100/photo.jpg','17898197009688164559',5534),('AIe9_BExcxslmE1rr7n5jMcadSKeutymwHqjKC3rZe8t1l1TTnkyAlph-uYtv3UttRj8xZlzxmDV0Ihxv2a5iEepw3GQl0lVDsWjN9xvujlbZ9d_0TAyKhc',NULL,'2020-03-05 17:40:24.341000','2020-03-05 17:40:24.341000',5,'Taylor Bianca','https://lh4.googleusercontent.com/-nVClKnEWAx8/AAAAAAAAAAI/AAAAAAAAAAA/JVC8sQd4DW4/c-rp-mo-br100/photo.jpg','16389487648212004696',13726),('AIe9_BExcxslmE1rr7n5jMcadSKeUYMiMyxdKrpt3WTI36iSS-hDUfnlNtA3FTRqsJC9Oj6_EO9I79YA7YN8VrimQUCL75rC-kGma96yaTBzAhrmF1a-DgA','Great facility everyone from beginning to end made it a very Good experience. The receptionist, nurses, techs,& doctors were all amazing! I would definitely recommend this place!','2018-04-02 16:01:14.032000','2018-04-02 16:01:14.032000',5,'LIZETH ABIGAIL RODRIGUEZ','https://lh6.googleusercontent.com/-hiA845W4T4o/AAAAAAAAAAI/AAAAAAAAAAA/WR5uH33VEA0/c-rp-mo-br100/photo.jpg','8918455867446117794',9275),('AIe9_BExcxslmE1rr7n5jMcadSKeUZyyEU3ZoAKTY-yqsTgobEwXf_GFi5Amr4Mvi5BORH3yISjdFaqBbQNplXR-ctZO__3O2qTSK3bqyZKh4KDSs3m2cSI','I had an accident at work and the staff was able to immediately help me get it sealed up and back out in under an hour. Friendly, informative, and quick.','2019-01-05 20:41:12.121000','2019-01-05 20:41:12.121000',5,'Zach Childress','https://lh3.googleusercontent.com/-_MbKmYSi-tY/AAAAAAAAAAI/AAAAAAAAAAA/-59Ynu_fOJc/c-rp-mo-br100/photo.jpg','16891069708558046635',4377),('AIe9_BExcxslmE1rr7n5jMcadSKev-cf0857V0Y7XaCnV4DHOkYsxuG_rNfK-Ujejb_Y4Wpqpq6eTGGonm6_m87Qza7gxk1HICKArRvkCYNtnwIhK-sTX6k','This was my second visit to this er, and this time my health issues were a bit more serious than a simple sore throat and required an overnight observation! Nevertheless, Dr Ybarra and Dr Cavazos both took great care of me along with all 3 of my nurses, Karen, Katrina and Blake. Karen got me settled in with a comfy robe and warm blankets, Katrina helped me change the channel on the tv in addition to keeping me comfortable and Blake made sure I could order food at mealtimes. Thanks to your entire staff for making me comfortable during treatment!','2019-12-08 00:09:16.759000','2019-12-08 00:09:16.759000',5,'Harmony Tee','https://lh3.googleusercontent.com/-vcOuAU8c_pw/AAAAAAAAAAI/AAAAAAAAAAA/A5sIVtjsmlk/c-rp-mo-br100/photo.jpg','8679688254631342173',8696),('AIe9_BExcxslmE1rr7n5jMcadSKev-ox1axYiVZSoAuQTi59co1ta9qA2d8H-4QRDUSF_FHrQWUKVWYh4v03pVrVoTH7DlHQW69kyTDi-S9r85r2YHFTRuY','Best Minor Emergency in Paris. Very thorough and friendly staff.','2020-02-22 11:51:53.651000','2020-02-22 11:51:53.651000',5,'T Lay','https://lh3.googleusercontent.com/-nn1kWQkTMFo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckeqMxndmEi6jRIbAu7G2kB8NQLgw/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21199),('AIe9_BExcxslmE1rr7n5jMcadSKev2oUHNdatsb_SJBdBBq_fCyaWwxveDH5bgFF3i6DAy5HdEFL9DD8rLBQ1jeDkQXxzqDvo43l6dotk61A1Oyhr99FOc4',NULL,'2020-06-25 03:23:31.679000','2020-06-25 03:23:31.679000',5,'Lynn Ray','https://lh3.googleusercontent.com/-_GlmDdPjS20/AAAAAAAAAAI/AAAAAAAAAAA/93h9wMe--8s/c-rp-mo-br100/photo.jpg','14904078213800803294',21277),('AIe9_BExcxslmE1rr7n5jMcadSKev2pxVfRaRQ5mSXwoQQvVjz1xelJHgGikL2gr6LbfqFN2mX8u1n7qNWpupOM_pQqcoKI0Xs9Hfngj12Ku7nk9w2HJ94I','Everyone was super nice except our nurse. He had an attitude from the moment he stepped in my room. I understand having a bad day but this was unprofessional! Upon dismissal he handed me my papers without clarifying what I was getting or what to do for follow up care. When I asked him what something was he responded very rudely and condescendingly. Not impressed and do not feel I received the care I paid for as I still had questions when I left that I did not get a chance to ask as we were ushered out.','2019-03-25 02:17:08.993000','2019-03-25 02:17:08.993000',2,'Casey Williamson','https://lh3.googleusercontent.com/-iF3PRfcehpQ/AAAAAAAAAAI/AAAAAAAAAAA/piU24oFONhs/c-rp-mo-br100/photo.jpg','13486358490203335051',1051),('AIe9_BExcxslmE1rr7n5jMcadSKeV7DEKomU321g6hJHterwt5wlNg7LmHYEIiqgnS0Baj71tt-Kaso9NsYKG9wftk_Rs74fKWgCr6ytW6LezPfaVW9IpME','I had a little accident where i got my finger stuck between a steel wheel on a gate. Amy took such good care in getting me checked in, while i was still in shock from pain. \nDr.Patel and Gracie(RN) was so amazing in calming me down and getting me all fixed up in less than 10min!\nThe best ER in town and will be coming back for any future emergency.\nThank you signature care team!','2019-05-06 03:18:27.299000','2019-05-06 03:18:27.299000',5,'Jinha Bong','https://lh3.googleusercontent.com/-IRMi2xB-ppw/AAAAAAAAAAI/AAAAAAAAAAA/XPQ7VSknCYI/c-rp-mo-br100/photo.jpg','3511292162159714121',7340),('AIe9_BExcxslmE1rr7n5jMcadSKeVAs3VyJ8p69FPU-4M_JsiHu4s8ZL5gb2xsUXVo5JPalpH4rekXP1xriWVCiJ3l68PzlmrVKqESdpSz85NNsMqBkTDzQ','The staff are very professional, helpful, and caring. I appreciate everyone hard work! My doctor kept me comfortable and minimize my pain. I would definitely recommend Signature Care ER (Copperfield)!!!','2019-04-17 18:35:25.144000','2019-04-17 18:35:25.144000',5,'Reynail Bates','https://lh4.googleusercontent.com/-8E6wt1eSAiM/AAAAAAAAAAI/AAAAAAAAAAA/1VWdhOiHeDA/c-rp-mo-br100/photo.jpg','17898197009688164559',5768),('AIe9_BExcxslmE1rr7n5jMcadSKeVbDJH3UfYzXv3zFZ6dWJ2P3w-n5u5fuXl_oMG9kE7xYwPu1wzj1IPUxu0hqJeY5W7QtGEumXujMPVQu7l-ZqAnLs54w','The entire staff was friendly and professional. Making an appointment was so easy online. The forms are online as well. Everyone from the receptionist to the doctors were caring. They took their time with me and explained everything well. Strongly suggest this place when in need of medical care.','2020-08-03 20:48:50.348000','2020-08-03 20:48:50.348000',5,'Jackie Warren','https://lh3.googleusercontent.com/-lXueTi1IDbg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmX5xFWKmOtb_FIEe2aTNhL2ZuAKA/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21984),('AIe9_BExcxslmE1rr7n5jMcadSKevBOTm0gdLPH9B4cWZM856MU4BqNOxgNcmQ-Qx3tK1hzEe0I0Ei72IgCAq-mqWBJzrcWfCuvx-dQ4f5Pl-js_agQ5Egg','The staff was great and very helpful! Doctor Pham and nurse heather , Jesus and Olivia were very nice and patient with me through my time here!','2019-07-26 19:38:25.018000','2019-07-26 19:38:25.018000',5,'Shontiera Ragland','https://lh4.googleusercontent.com/-XPxxZ4N1Xsg/AAAAAAAAAAI/AAAAAAAAAAA/ZcdooKzc-oE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKevEL2_mMkrSqmkw_kDZ_yDbvPwMjH-ABcTjzeT5NS1V1p2zT8Kg4ujhvfTn82NZXIiL0CExzC6Mgk8jKlndNNWeYeirE','The staff here is very professional and very courteous. Were seen really quickly, would definitely recommend this clinic!!','2019-07-25 15:02:06.800000','2019-07-25 15:02:06.800000',5,'Lana Webb','https://lh6.googleusercontent.com/-ZmkTQY9lPXw/AAAAAAAAAAI/AAAAAAAAAAA/5GYonPqD4vo/c-rp-mo-br100/photo.jpg','13486358490203335051',882),('AIe9_BExcxslmE1rr7n5jMcadSKevFFZ259hcUFUyApa1NTXwmYaegSThsHFC-I0KuR4A8VC6XlAnWJ8r5fGsA0KzQCxWvEQ2nHW3mBqBQ-npOh--TKwXX4','I have been to many ERs but this one is the best ever. Took my daughter there for a stomach flu and we were treated like VIPs. She was seen within minutes by the sweetest nurse who went out of her way to help us. Thank you Katie! There are free drinks, snacks, and they made me a bed next to my daughter for our overnight stay. They let my daughter sleep in the next morning and didn\'t rush us. They brought my daughter breakfast and gave her a sweet toiletry bag to take home. The manager brought me breakfast tacos and coffee. Thanks Adam. Wow!! What ER does that in today\'s world? They seemed to really care and were patient and attentive. The doctor was an experienced ER doc and spent way more time with us than a hospital ER. They are a full ER and even have a CT scanner. I will go here from now on for emergencies. My daughter\'s stomach bug was the worst, but the experience at this ER was the best. Thanks again to the staff at SignatureCare for taking extraordinary care of us.','2018-01-30 16:37:47.583000','2018-01-30 16:37:47.583000',5,'Sharon LeMond','https://lh6.googleusercontent.com/-ERHOlMcwebw/AAAAAAAAAAI/AAAAAAAAAAA/TkQrSHs_QDY/c-rp-mo-br100/photo.jpg','16891069708558046635',4520),('AIe9_BExcxslmE1rr7n5jMcadSKeVgyWf84WQDMqXpK3psO_JSYZ-PbTYVXCoYXzkE_OI7dw0IVUwomG5hg9APWEMgXvNbw2AwKOlei3Pg5a2K9gA8frgTE','Theresa and her staff were all very professional great service and attention to all the patients trying to get screened for COVID 19. I recommend this facility for persons wanting to get tested.','2020-07-16 16:09:18.831000','2020-07-16 16:09:18.831000',5,'thomas rivera','https://lh5.googleusercontent.com/-8a_N7usaqR8/AAAAAAAAAAI/AAAAAAAAAAA/ZiaAVh-1UXg/c-rp-mo-br100/photo.jpg','6521947413723274945',22898),('AIe9_BExcxslmE1rr7n5jMcadSKeVhSC3rjSfKMUfxoXsvFINyocHg36p9GiTtU_ndQZwuwfMRjS4BdDs8IajC_MRHiiUCDhmevVVwLaKvZSqnokxz8juEw','Their service is very good thanks to \nDr.Tran\nRegistration:Ana R\nNurse: Sarra\nRadiology Tech: Sherwin\nE.R. Tech: Christian','2019-12-19 07:06:51.386000','2019-12-19 07:06:51.386000',5,'Jason Nolasco','https://lh6.googleusercontent.com/-eAFNRTVomag/AAAAAAAAAAI/AAAAAAAAAAA/O429-VYoHqg/c-rp-mo-br100/photo.jpg','12541597562633926366',335),('AIe9_BExcxslmE1rr7n5jMcadSKeVIlbycmWdUjpzm5HpWiA5hC8tSfc6Xc0FggXG_oH4bt8cBu_KqNhcivJJmwiYp2JF7qL2kS5Dd6x6x6FgF5LjCmkXhQ','Great service! Very welcoming and personnel is very kind.','2019-06-26 19:27:29.814000','2019-06-26 19:27:29.814000',5,'Janette Belloc','https://lh3.googleusercontent.com/-DE1C_1qhJ-Q/AAAAAAAAAAI/AAAAAAAAAAA/kryxFvATfNM/c-rp-mo-br100/photo.jpg','13486358490203335051',918),('AIe9_BExcxslmE1rr7n5jMcadSKeviPEXzVJKdzEmVIx3M7jlhl2d6h4NgKaDzxhbjMrRQZOf3Adj61FvZG6MVoJxyWREHKmdxSjGkPj7C4fThyHn0PXXx4','Great service the staff is awesome always caring and pleasant. Perfect atmosphere as well.','2019-11-17 19:22:52.635000','2019-11-17 19:22:52.635000',5,'carla thompson','https://lh4.googleusercontent.com/-Oz0K-oY51gk/AAAAAAAAAAI/AAAAAAAAAAA/9Dc1sgJiaws/c-rp-mo-br100/photo.jpg','8918455867446117794',9048),('AIe9_BExcxslmE1rr7n5jMcadSKeVJd2MUAIm2SiHC4PjEXDpEOO-HHK4Q6Ij7xJNHyuuC3LW9LhNgg6y3o1z9E0KElaSWzrEzHo-lIma6VWGFdWsnnWOJE',NULL,'2020-08-10 15:14:24.746000','2020-08-10 15:14:24.746000',5,'Good Vibes','https://lh3.googleusercontent.com/a-/AOh14GhHBmdcyC6fR23r8o64TaPlqkf3FdofjM5vaLrGYGA=c0x00000000-cc-rp','14904078213800803294',22575),('AIe9_BExcxslmE1rr7n5jMcadSKeVJq2JOyfrCwEtPP9zPNr50wUXvovPEA5J9gPPGzuZnUTAztKkZ6RwKklvdqLQjyi-BJHFZ_moHkORkL_Wug7Wj4RLIo','Great service','2020-07-21 07:03:54.663000','2020-07-21 07:03:54.663000',5,'Cruz Gonzalez','https://lh4.googleusercontent.com/-8Eqhi9Dob7g/AAAAAAAAAAI/AAAAAAAAAAA/iw3L7Do8aSI/c-rp-mo-br100/photo.jpg','14748677429039074158',21636),('AIe9_BExcxslmE1rr7n5jMcadSKeVn6BgiZMeAOKpGNP5okKzVkI6aEanFQJQ8ujdjhsqPcdIMZf7xECuJ8dHCSdpwFcaTJ0UhBNYNDMIP-Yc2ullaFRs8M','Excellent patient care experience. Triaged immediately when arrived and ruled out critical issues. Everyone was professional, thorough and caring.','2019-10-21 17:57:03.975000','2019-10-21 17:57:03.975000',5,'ZepMag','https://lh4.googleusercontent.com/-n3znazdhMP4/AAAAAAAAAAI/AAAAAAAAAAA/IVA7LJvP30k/c-rp-mo-br100/photo.jpg','14567670160750071148',1215),('AIe9_BExcxslmE1rr7n5jMcadSKeVNxdSbQWcdFA-rRdR6Pr64bmIomgL-6rbP7W5Z85PaHGmykfHWrXUlCs4X-Zjv8spRpBC0PiA2R4UtqZGVI8YMTw5QU','SignatureCare Emergency Center is the most positive healthcare experience I have lived to tell about. On two separate occaisions there was no waiting before professionals began attending to me. There was no appointment needed. I could walk in anytime 24 hours a day. There was no crowded waiting room full of sick people. The waiting room was empty each time. I walked out of the building after the first visit thinking WOW! I should buy stock in Signature Care. \n Please allow me to thank the all star staff from each visit.\nFirst Visit:\nDion\nOlivia\nHamzah\nMercedes\nDr. Nyland\n\nVisit Two:\nLeslie\nNurse Laura\nIwona\nDr. Edwards','2018-07-06 17:46:36.136000','2018-07-06 17:46:36.136000',5,'Ajax Rents','https://lh5.googleusercontent.com/-9LgA_dLIwHU/AAAAAAAAAAI/AAAAAAAAAAA/6s189t0tf4c/c-rp-mo-br100/photo.jpg','3511292162159714121',7691),('AIe9_BExcxslmE1rr7n5jMcadSKeVP1RSadWeqgViYOjqaGq7PEFKxMZmxE0LT0fg6jcpfNhVlHU_2kbWRlF1v765S1B0qnKfYPvbessIGM4PBuuioM1URY','This has got to be the fastest and best trip I’ve ever taken to a minor emergency’s! I came because of the positive reviews I read and they weren’t wrong. Sibienne was efficient in helping me get signed in. Alvean was my nurse and she was so friendly. Bryan came into get my vitals. Tricia did my xrays. Dr. O’Malley was very nice and actually seemed concerned about me. They have a great staff here! They’re super efficient and friendly.','2019-11-14 20:21:22.896000','2019-11-14 20:21:22.896000',5,'Evelyn Gomillion','https://lh3.googleusercontent.com/-igxG6vyKLko/AAAAAAAAAAI/AAAAAAAAAAA/zE4U9mBzMTg/c-rp-mo-br100/photo.jpg','16389487648212004696',2702),('AIe9_BExcxslmE1rr7n5jMcadSKeVpzdBkqrpp80OMttB4ViUY2VOU1_hIFU-71qdCMLggvK47gJMs9LS97D513YFxwQ-OUgdnsjTtFi2mzVgz0lHDhKMa4','For the time i entered until the time i left this visit was nothing short of phenomenal. I came in because i had a car accident today and was in pain. Dr Souman was very thourough and explain everything. Nurse Churiah was absolutely exceptional even and kept me calm throughout the shot i had to receive. The entire staff was amazing! Shoutout to Agnes, Dion & Keiare and Shay also they were just great! If I’m ever in pain and need quick attention i will definitely come bck to this location.','2018-10-26 00:35:18.507000','2018-10-26 00:35:18.507000',5,'fairuza bailey','https://lh6.googleusercontent.com/-Nk8ZYr64_WA/AAAAAAAAAAI/AAAAAAAAAAA/6Cm4kYePoHo/c-rp-mo-br100/photo.jpg','3511292162159714121',7568),('AIe9_BExcxslmE1rr7n5jMcadSKevqIH1FL4-ukaXFVkQBL2YvNLG83Zv9SxUVRAryVKLrSc8URPkeE6j5IRnIPsESP2iUG9Pk36ENEOF2GtDrPA4lEXTTs','My experience was wonderful I was checked , given a clipboard and by the time I finished it my name was called and I got my vitals taken. Soon after the doctor came in and looked at my eye and told me what was wrong with it and gave me a method of treatment.','2019-04-24 22:50:02.103000','2019-04-24 22:50:02.103000',5,'Laquan Rhoden','https://lh4.googleusercontent.com/-GnemU-ZYGig/AAAAAAAAAAI/AAAAAAAAAAA/RCSSz1QkaTw/c-rp-mo-br100/photo.jpg','2694018788013845459',6167),('AIe9_BExcxslmE1rr7n5jMcadSKevsibX8PE9EIK8pJzp-Ijxy1RlRZ8fBri3oIvrw7GWh65vFw8OEwhLaCv9QF7PDA0AK7eoHiznFx8oB11SUJoUUfYsuY','had to bring my sister in for care and the people were really nice. They had such a family environment and provided snacks and drinks for the family waiting. Fr. Patel was really good and explained everything to ur family. All of the staff was really nice Nurses Tammi and Charlotte, and Nanci, Norma, and Vy. Thank you for taking care of my family.','2020-02-24 00:08:24.712000','2020-02-24 00:08:24.712000',5,'Arriana Sahagun','https://lh5.googleusercontent.com/-ToROdD3SPa4/AAAAAAAAAAI/AAAAAAAAAAA/vBqi3CDpPik/c-rp-mo-br100/photo.jpg','17898197009688164559',14129),('AIe9_BExcxslmE1rr7n5jMcadSKeVUiOjCvnEBK1GVddtMccIqPWHo5x-TF9f5T_IjaoYQsK_WjJrMHULwFiRSV4aODZWNadwKgC4mezq-W4d4vsOOi79gY','helpful, fast and professional','2019-05-06 07:44:50.427000','2019-05-06 07:44:50.427000',5,'Amanda Trost','https://lh6.googleusercontent.com/-e_1esZMKblk/AAAAAAAAAAI/AAAAAAAAAAA/97H_GF0wowE/c-rp-mo-br100/photo.jpg','8918455867446117794',9143),('AIe9_BExcxslmE1rr7n5jMcadSKeVVfJhzVEjW-zuAuEIINmpT4TRMq-EA-YsgfmguBONLa9cCVFO3XwNLyztudtpHJchg8q9dCPPIAN8ew9x2KgNclPsQs','The service was excellent! I had quick and friendly service from Lorena, Dr. Wang, Bryan D, and Natalie, and Cat. You can tell everyone really cares!','2019-11-17 02:58:34.960000','2019-11-17 02:58:34.960000',5,'Emily Carrizales','https://lh5.googleusercontent.com/-tPw9qMatZBQ/AAAAAAAAAAI/AAAAAAAAAAA/2wtp5FmHfM8/c-rp-mo-br100/photo.jpg','16590124370714063921',3089),('AIe9_BExcxslmE1rr7n5jMcadSKevw5RuZiyz4RuTBmVZn0HuVhfrRPKwkz1LjJSa9ZXRDGGJZYaMfh5JlVMc7gEAtWF0KAdhiljd211-0JglqHHeT6PFaw','Quick and friendly!','2018-06-28 19:45:41.731000','2018-06-28 19:45:41.731000',5,'Rick Kennedy','https://lh5.googleusercontent.com/-9aWlQsDR3oY/AAAAAAAAAAI/AAAAAAAAAAA/P3BiPg9dMPw/c-rp-mo-br100/photo.jpg','12541597562633926366',641),('AIe9_BExcxslmE1rr7n5jMcadSKeW5JrpdOFgdItRVReXIFJp-oHR-HBUbSKlecpv_-BVwPsh1ypgjHuwicvvzTPNsX1Bjk278xkLQVv09eVDpUKFJA_lSU','Super quick and easy COVID testing! Everyone was super helpful, especially Chelsea who administered my 15 minute rapid test! Got one the same day i needed it!','2020-07-30 19:26:57.428000','2020-07-30 19:26:57.428000',5,'Grace Cecile Meinzer','https://lh3.googleusercontent.com/a-/AOh14Gj7NiOVAuGuRPAU8Ldmd-4ZFzcHVfenVWbn2KaK9A=c0x00000000-cc-rp','16891069708558046635',22032),('AIe9_BExcxslmE1rr7n5jMcadSKew75XbEJuP3NqNPFNUvitob6r7Fkr9c3QGwzTvL-Stdy-X5hgZzV9naPUJCqJXWDgBCTpHIvnvdj1VkoKC5giTUoxIZM','Carly was outstanding and very helpful. I would recommend Signature Care on Westheimer for the rest of my life(','2020-07-08 07:43:44.631000','2020-07-08 07:43:44.631000',5,'mark hayes','https://lh6.googleusercontent.com/-M3kx3EbnXas/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckjFP-PhC5smiT6rYYc_fht2cprPQ/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21334),('AIe9_BExcxslmE1rr7n5jMcadSKewDzEOAfvlyO_lBL3d__vNErZAIdP4dQfaxOkbTORV8XxRAp7pkA4h39Q9VstbaM8VfX8_E2f2-WSwDwR-WkvHu24l8o','They took really good care of me','2019-12-27 22:25:16.289000','2019-12-27 22:25:16.289000',5,'Cassandra Allen','https://lh3.googleusercontent.com/-w9GpX9GT8GM/AAAAAAAAAAI/AAAAAAAAAAA/XkLfsdXDLkg/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4100),('AIe9_BExcxslmE1rr7n5jMcadSKeWGUiQBeJF4Yrn8TZfhCMkpPUwtCf7Up2poc6JkTW-qSg2OZLt54KoSlFLUOi7xr60w6SB2zhK9vhelcyHTlvxNlsxP8','EXCELLENCE SERVICE!! THE BEST! THANK YOU!','2019-06-18 05:04:41.451000','2019-06-18 05:04:41.451000',5,'Roy Brown Jr','https://lh5.googleusercontent.com/-1RBMHmUz3mI/AAAAAAAAAAI/AAAAAAAAAAA/5-r7RW8C05A/c-rp-mo-br100/photo.jpg','8679688254631342173',8833),('AIe9_BExcxslmE1rr7n5jMcadSKewi5pYV4SuEdXBGOxF-fYwBrjwI1tqFz66at4cS6OcN-X39AB-jbdc7eKA1Fu1zvTL12RlKRED7NubW2oKD-3x_5r9bA','I have to say that the service we received was beyond exceptional! No one wants to find themselves in an emergency room, ever. My family and I were in Austin, in part for a training certification and mini vacation. During this time my husband suffered a back injury and we had to seek help for his pain. Jasmine in the registration desk assisted us immediately because my husband forgot his insurance card, she was amazing and made the necessary calls to admit us within 5 minutes. Brandon and Clay provided a room and service immediately taking my husband quickly to X-rays. Dr. Elsbecker was amazing! Very knowledgeable and took his time explaining everything. I am so grateful to all of them for making my husband comfortable and the pain bearable to get home. 👍🏼👍🏼','2017-07-18 00:24:57.560000','2017-07-18 00:24:57.560000',5,'JFlores Alvarez','https://lh5.googleusercontent.com/-WOYHPT8icF8/AAAAAAAAAAI/AAAAAAAAAAA/D7zaqzImwOA/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4546),('AIe9_BExcxslmE1rr7n5jMcadSKeWIHyQc1I6PgOPv-xuwqIGxWVjvWXQzjY0Z2u7GYx-OU5IGkme3I3olkVemL5Ua_9Aad2WNu8C9vuatMK2oJUv8N3wS8','My visit was amazing, Keera was soooo helpful and sweet.','2019-04-22 11:48:12.233000','2019-04-22 11:48:12.233000',5,'Heather Valls','https://lh4.googleusercontent.com/-FM1MDSOy9Q0/AAAAAAAAAAI/AAAAAAAAAAA/7sZW97vIJAA/c-rp-mo-br100/photo.jpg','17394740196501090048',4686),('AIe9_BExcxslmE1rr7n5jMcadSKeWiKF84qBF1n29uznxidqXlCwHmJKHLCrBj8sMdJk_Z9-Q_Hyi8KizHLqCFmyROUVR0oHX83zWjgXW0gB5Y1rE9oCbN0','All the staff that assisted me were great; I didn\'t have to wait long for anything. They actually listened to me which went a long way in diagnosing the problem. I would recommend everyone to come here if you have a medical emergency, it\'s way better than waiting in the hospital ER for hours.','2017-06-11 10:55:12.941000','2017-06-11 10:55:12.941000',5,'Latravia Jones','https://lh3.googleusercontent.com/-W7IQFViSsIw/AAAAAAAAAAI/AAAAAAAAAAA/ipUgiDciAH4/c-rp-mo-br100/photo.jpg','14904078213800803294',2350),('AIe9_BExcxslmE1rr7n5jMcadSKeWLByViW8EHT6CbyB7LKBb1UzqFA348hcTHKRSvwdtPcVzULSoxDCX8CVgM8hZwKmIOKgRlbczdQJzcH5EFD6yllkk0M','Excellent experience with the team.\nDr. Golla\nJubril and Tammi\nSandy, Ralph and Patty.','2019-09-23 13:48:43.589000','2019-09-23 13:48:43.589000',5,'Abiola Olayinka','https://lh6.googleusercontent.com/-Id8gtrqRNaQ/AAAAAAAAAAI/AAAAAAAAAAA/8dXPoPPha2g/c-rp-mo-br100/photo.jpg','17394740196501090048',4602),('AIe9_BExcxslmE1rr7n5jMcadSKewpuBHNL55REHWvlTy4KkX_dxX3WgKRnIpKhtuibAV963UR8Tq16w5cqaKyteBSgXc1Woinza-PJ62MwTb2bBc4d-gmI','Fast, professional, easily accessible','2018-06-18 20:02:57.769000','2018-06-18 20:02:57.769000',5,'Jeremie VanOeveren','https://lh6.googleusercontent.com/-BLUnqHFxLzk/AAAAAAAAAAI/AAAAAAAAAAA/VullqjsUvg4/c-rp-mo-br100/photo.jpg','12541597562633926366',645),('AIe9_BExcxslmE1rr7n5jMcadSKeWr5U2TVoibGdnZUCar1APJ7mgTrxFkTOe-RGlImufNA_bshy1qNoBpmjrgytSUAK8yICQc0_NL74qx7itmzzJb3Njc0','Keera G was excellent and warm welcoming aswell Dr. S Edwards. I would recommend Signature Care to everyone.','2019-10-08 16:14:21.485000','2019-10-08 16:14:21.485000',5,'Kendra Nelson','https://lh4.googleusercontent.com/-jA3p455iIrw/AAAAAAAAAAI/AAAAAAAAAAA/fCK594hJ02g/c-rp-mo-br100/photo.jpg','17394740196501090048',4587),('AIe9_BExcxslmE1rr7n5jMcadSKewuw5D2cr-Q1beeB8CYKXR7aooKSWW6V4GR3bhfTvkbaaDKrT6sHgdghMMKJQVP1NxLnFV5LnxyofgXiDpeBYhiv4XWI','Great care from excellent providers! Dr. Miller, Christina, Tina, shaunda, and chris were all so sweet and amazing!','2019-12-18 18:27:07.501000','2019-12-18 18:27:07.501000',5,'lauren s','https://lh3.googleusercontent.com/-Q0r0QbnNthc/AAAAAAAAAAI/AAAAAAAAAAA/Bu0L7l89Ht0/c-rp-mo-br100/photo.jpg','16891069708558046635',4114),('AIe9_BExcxslmE1rr7n5jMcadSKeWv3TemNWI2W9rtnIf10Oml9UABrJ3JTPRa2wuiaFYSPq-5-oaYiptCK7Nbg5xGTCzv9Aq0i8zjs1lS2BVeVq6GIpkkw','Who helped us: Dr. Patel, Nurse Kayla B., Jessica Nguyen, Norma T. and Jessica Rojas.\nService was incredible and their selection of drinks is phenomenal with Capri Suns at the ready for big boys like me.','2020-02-22 15:11:57.503000','2020-02-22 15:11:57.503000',5,'Julian Rivas','https://lh3.googleusercontent.com/-tAnNK1gaN9A/AAAAAAAAAAI/AAAAAAAAAAA/3sXCgotlZQU/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',14139),('AIe9_BExcxslmE1rr7n5jMcadSKeWWTw4USdnBqSD9mfIlOTjqsuQbk1ViHIRDGbQjt7A_iLO4VpVORrgxJpHKkO7DP4f0R_kYrZz9WMFGCywmKfBhux7iA','My daughter came in with chest pains and they immediately wheeled her into a room to hook her up to an ekg monitor. They ran her cardiac enzymes and did a chest X-ray. They then ran her enzymes again to confirm the results before sending her home. We received a copy of her X-ray and a very thorough write up and explanation. They answered all questions that we had. They offered all of us warm blankets and had beverages and snacks for you if wanted. The staff was kind, caring and very knowledgeable. They made you feel comfortable and at ease. Very friendly. You felt as though you were their only patient. Would definitely go again if the need arose and would definitely recommend them.','2018-07-20 16:27:23.838000','2018-07-20 16:27:23.838000',5,'Alesia R. Stevens','https://lh5.googleusercontent.com/-Wvx2U8aCT6U/AAAAAAAAAAI/AAAAAAAAAAA/fs7J3QvtNbk/c-rp-mo-br100/photo.jpg','8918455867446117794',9256),('AIe9_BExcxslmE1rr7n5jMcadSKeWx20J58zSggWYcz11ZEIpDFzhNVUp-8tztLy91dRYdeEbROGlA18NOMNV8usTKfSfBnxUoFZ3hMjBxEJt9SNg9k2tpw','They are really nice people never had a problem 👍👍','2019-01-20 20:43:40.827000','2019-01-20 20:43:40.827000',5,'Aniyah Jones','https://lh5.googleusercontent.com/-fY0h24GOnfY/AAAAAAAAAAI/AAAAAAAAAAA/HkLvsqH25VU/c-rp-mo-br100/photo.jpg','3272657195432704501',7050),('AIe9_BExcxslmE1rr7n5jMcadSKeWZFYnBCRYJo9KSYffL1SR6TrSNLaI1oE48Iwkhg0LFR4-CL3CzAmLHu0OPDpEyvKan_yf_44H7_QjCIftJN7APqLJJo','Wasn\'t feeling too good, but the staff (Kimberly, Brad, and Morgan) all took really great care of me. Would definitely recommend this place if you\'re not feeling well.','2017-04-25 13:09:59.956000','2017-04-25 13:09:59.956000',5,'Isabella Caparas','https://lh5.googleusercontent.com/-g3S8C6Terho/AAAAAAAAAAI/AAAAAAAAAAA/xn3665NIbq0/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3999),('AIe9_BExcxslmE1rr7n5jMcadSKeX0nu4tjnFQI2TPmiGkLTZEk89ZIGbcpGJOcG5muX4XkhfSP1CkMM30cwTJC3QDiYP9aMfBSH5ihrWLsvJYsRebb_LNU','Great experience at this 24 hour emergency care, quick with little wait and the staff was friendly and helpful.','2017-01-18 00:48:35.387000','2017-01-18 00:48:35.387000',5,'Christian Nowlin','https://lh3.googleusercontent.com/-Q-xWLfAkxNE/AAAAAAAAAAI/AAAAAAAAAAA/KpdaidXxggY/c-rp-mo-br100/photo.jpg','14904078213800803294',2427),('AIe9_BExcxslmE1rr7n5jMcadSKeX0t63qChCAZcqzDX8EA_rIr9BgnLFH2U4H-gT7B_10g3PZoco7l9PocTq5WGsWAW9KLZ5V-SL4MKz6k0KqlGFiNMW5o','Mr. Marcus and Miss Alvean made my daughter feel very comfortable, she was not afraid one bit. Dr. Chakwvma definitely put a worried mom at ease! Everyone was very friendly and reassuring, will for sure come back with any future worries!','2019-06-05 21:46:07.387000','2019-06-05 21:46:07.387000',5,'Amanda InGold','https://lh6.googleusercontent.com/-Y6-Y3Vr9kxI/AAAAAAAAAAI/AAAAAAAAAAA/foxaGSRGsuI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeX3Ivnfh2kyPH25taSpp9JgU_mL7hLl56pp9ONYCI3ygk_N29oe6hooYrsYgOZdrX5YxGOD58J1xTFtTgFujtJAe7g8M','I had an excellent experience, the staff members were very friendly and informational','2019-06-17 04:19:05.059000','2019-06-17 04:19:05.059000',5,'KK lacon','https://lh5.googleusercontent.com/-JTtyAryFUNE/AAAAAAAAAAI/AAAAAAAAAAA/3wFfQrFEH14/c-rp-mo-br100/photo.jpg','17898197009688164559',5696),('AIe9_BExcxslmE1rr7n5jMcadSKexeF6FdfCfDTjG5Bu-ABlpsuERANwHMujuTzht-I4KCrK2PBMb6OlvawP6P4bwk5jlLtbuVuaE8v65yS7XjYgGeICR58','Dr. O’Malley, Nurse Jani, Joshua from radiology and Registra Luisa were phenomenal! They will take care of you and reassure you that you’ll be ok! Stop by and visit if you, a loved one or a friend is not feeling well!','2019-05-15 04:28:33.998000','2019-05-15 04:28:33.998000',5,'brandi williams','https://lh4.googleusercontent.com/-kE85-s5W8ZU/AAAAAAAAAAI/AAAAAAAAAAA/PGhHM0XyVDs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeXGJPxh5I_PwNI8nOcb5yU2kIw_PNACoWHELruaO614emnIv_1MDJWuAwoAsBDVZZY3cKZ737GOa56UUWXz6oSa4NUtY','Awesome staff Gracie Urias was very helpful and understanding','2020-07-16 20:47:27.267000','2020-07-16 20:47:27.267000',5,'Judith Corral','https://lh6.googleusercontent.com/-iVGpYs8z8HI/AAAAAAAAAAI/AAAAAAAAAAA/yCdKw0RfpwI/c-rp-mo-br100/photo.jpg','6521947413723274945',22885),('AIe9_BExcxslmE1rr7n5jMcadSKexHkLMUBBXwEn1vu7jpZ0K3g_rrNynokamne1HYel5cO0CIEAgHReW6XxYa1_aw0NUStv1uvEIi19_jOysZ7hpi6Zof4','Front desk people are really nice','2020-07-29 14:03:39.112000','2020-07-29 14:03:39.112000',5,'Luz Marquez','https://lh6.googleusercontent.com/-LfrjPwqO-IQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmBv4yB1RNWP8DnYT8qLxsSeHIFmA/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22006),('AIe9_BExcxslmE1rr7n5jMcadSKeXJDySkEstQ5uovbdUUQsN1q9xbztzp-vtlOuWQh5NhKFepBeIdxS0snrN9-t_yNtv4_beFl_7hKmbjFtLPziKhoho20','Prompt, friendly service. No wait time. Dr. Appiah was attentive and explained everything in great detail. He took his time instead of the usual in and out as other experiences have been. The nurses were very nice and showed great care and attention. Troy was the nurse and he did such a great job. Aurora was the ER Tech and she could not have been better.','2019-09-05 10:56:44.855000','2019-09-05 10:56:44.855000',5,'Lola Andress','https://lh5.googleusercontent.com/-OfqCz0LvZQU/AAAAAAAAAAI/AAAAAAAAAAA/dwkTTRn1ZjQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2952),('AIe9_BExcxslmE1rr7n5jMcadSKeXjzGGwl62Z5Og-vjElSRAVrd-l5S8-RqL9wGjCU0GGDBOp4HfxQ5QhvR3w5eb1EfRRFSwnR3LyuKU4D1qEEjbjUNfWQ','Took my husband in for severe tooth pain. He was basically in tears it was that bad. Walked in and was seen very quickly. But then his tooth pain was not considered an emergency! So we were going to be charged upfront after being told it was an emergency. The communication could have been better. We wasted a lot of time going there. Should have went to the main ER','2019-10-27 08:27:32.367000','2019-10-27 08:27:32.367000',1,'marikie marie','https://lh4.googleusercontent.com/-nB1mAIJKVvM/AAAAAAAAAAI/AAAAAAAAAAA/j8rrSGeaKw8/c-rp-mo-br100/photo.jpg','13486358490203335051',764),('AIe9_BExcxslmE1rr7n5jMcadSKexL96afQLBc8kSkyv0AnsIC6jQXUQVOfzIy0IqK3BrN2kFeMNsFR5IC2PspgjQJ2k5bAjmQX0dAu4AWBNRArjdGya2Ts','Great service, very fast and the staff and doctors were outstanding.','2017-09-07 21:47:49.117000','2017-09-07 21:47:49.117000',5,'Brian Shor','https://lh5.googleusercontent.com/-iDZjU_CZrHM/AAAAAAAAAAI/AAAAAAAAAAA/sg7RFmfmM78/c-rp-mo-br100/photo.jpg','14904078213800803294',2329),('AIe9_BExcxslmE1rr7n5jMcadSKeXmHWka6LDVAgPJYJLFYtlwhuaoQIoLo7PJ-CBvS_I1AOxhqBtCpuAlYJD6hO3VhzZlvQsUM7bq68MhZXF3_9EvCdSWs','Gabe and Chelsey were amazing! Seriously great care and easy to get in out.','2019-12-06 04:21:51.888000','2019-12-06 04:21:51.888000',5,'Clark Oberembt','https://lh4.googleusercontent.com/-f4fJc86iVug/AAAAAAAAAAI/AAAAAAAAAAA/SxUw2H3V1Gw/c-rp-mo-br100/photo.jpg','16891069708558046635',4128),('AIe9_BExcxslmE1rr7n5jMcadSKexpCwjmXNdD_oVscStmI51hPexRM4l1OhbAmQco0Khe_qgXqYcyXHOS_1GRDkaH1LflYBz70FzGi3hjSPUiVowTs1uTo','Wow! I can’t even find the words to describe this incredible staff. I hate going to the doctors/ER but they made my experience an enjoyable one. Special thanks to: DR. Ding Lin, Nichole Piales, Jacqueline Franklin, and Mercy Hoang. These guys made my entire visit a breeze. Love you guys.','2018-02-01 09:33:48.652000','2018-02-01 09:33:48.652000',5,'Ferris Bueller','https://lh3.googleusercontent.com/-y7a-j3QrrPo/AAAAAAAAAAI/AAAAAAAAAAA/TX2YLjMP7-0/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7729),('AIe9_BExcxslmE1rr7n5jMcadSKeXQ1j89Df5PTaK7OiVJ2YKCwY9ZFPhvpjTC7_NyorCqWkpejdUbNat3cuucLOuDX69unOYCr2wz7eMaHbaA0GYnGzylg','The RN Anthony and Tech Natalie were extremly helpful and kind! They answered any questions that we had and did an amazing job explaining everything to us. Dr. Vakey was so kind and polite and checked on us to make sure we were all comfortable. They continuously asked us what they could do to serve us better. I am so thankful for our experience at SignatureCare.','2019-02-19 00:54:23.142000','2019-02-19 00:54:23.142000',5,'Hannah Worthy','https://lh5.googleusercontent.com/-YElzqEHUW2E/AAAAAAAAAAI/AAAAAAAAAAA/M0AwxsATyLU/c-rp-mo-br100/photo.jpg','16590124370714063921',3542),('AIe9_BExcxslmE1rr7n5jMcadSKeXR4nyPDDuCGzolsQ3PxGOrBxdvnZ7e-kikVWrJDzT5lOxhNp0yAvfPXNLMwHlgB0rW3KtIsW_lPL6anpobivj9yFd2s','Dr. Thomas was so good. All the staff and nurses were also great. They were polite, helpful and courteous. I went there after my knees twisted and was badly hurting. They helped me out the best they could, offered me a wheel chair when I was going in as I was walking slightly awkwardly due to my pain. Helped me get on the bed since turing my knee was painful, during the X-ray. Basically every time I winced cuz of the pain.\nTook my x-rays to make sure nothing serious was going on. Took abt 15 mins for Doctor Thomas to some see me with the results and it was all good. They did say it could take up to 30 minutes though. Learned that I had torn ligaments that will take a few weeks to heal. They put on a knee brace to support my knee and gave me crutches, as well as informed me on what to do and what not to do over the next few weeks to recover. \nThere is no wait time and I loved that they had a small area for the kids to play with. Took me about an hour to be done with everything and then we were out.','2019-08-11 15:58:21.198000','2019-08-11 15:58:21.198000',5,'Rabeeuh Fahim','https://lh4.googleusercontent.com/-7CMVkwsam3s/AAAAAAAAAAI/AAAAAAAAAAA/Uw2wHm4WeqE/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4619),('AIe9_BExcxslmE1rr7n5jMcadSKexRrbc6sRbUX2sAZOtYDkZjIWen9RBdsWRd9mA-Pt8cxmkr8JU2S2jMroZRFIJjMLT3sH4mQATV2DLx8iKC7paaZBqXQ','I came in for a rotator cuff injury and my treatment was excellent from the doctor and all of the staff. They were understanding of my situation and very professional about it. This was my second time in the very nice facility and I will take all of my medical needs to them before I will consider any other clinic.','2019-03-23 00:59:17.603000','2019-03-23 00:59:17.603000',5,'Jody Glover','https://lh6.googleusercontent.com/-HtCTdxVj7SE/AAAAAAAAAAI/AAAAAAAAAAA/snezqosaOxY/c-rp-mo-br100/photo.jpg','13486358490203335051',1054),('AIe9_BExcxslmE1rr7n5jMcadSKexsHO8CNfhnzJymYXsKScyep_y0QFTo3A7QbUS1GAp3SoyrYv4Z6NlF-s12LNp8ghaHArKJTzeZrksZLzLeuMzg1fmCc','Today was my first time at SignatureCare. The reception area was very clean with comfortable seating. The receptionist, Ashley B., was very friendly and helpful. They were ready to take me back before I even finished my paperwork. The nurses, John B and Matt, were friendly and professional, and brought me a warm blanket while I waited. The doctor, Dr. Jorden, listened to me and was very attentive. I will recommend them to everyone.','2019-08-25 17:35:46.619000','2019-08-25 17:35:46.619000',5,'Marcie Cox','https://lh3.googleusercontent.com/-wEy2Igo0KdM/AAAAAAAAAAI/AAAAAAAAAAA/1zKNUO74G88/c-rp-mo-br100/photo.jpg','8626688543755174284',14681),('AIe9_BExcxslmE1rr7n5jMcadSKeXSZYlIME80gy6FveXgZmF7gENXnqjhWGrXlpZZsC3Hl0nMmGJL2pqUKAOjJLQMfHyNYdqhg-nOe48Tps6vc_cg1AZGo','The service was amazing, and the staff was so accommodating & friendly. Marty Lewis the RN on at the time was so nice & calming & I\'m sure they\'re getting such a high influx of patients, but are handling it exceptionally! \n\nThanks again Marty!!','2020-06-10 19:50:56.788000','2020-06-10 19:50:56.788000',5,'Ryan Smith','https://lh6.googleusercontent.com/--32KdDMj13A/AAAAAAAAAAI/AAAAAAAAAAA/WokUjPxAFIA/c-rp-mo-br100/photo.jpg','2077061009497551125',22866),('AIe9_BExcxslmE1rr7n5jMcadSKexw847t1V7wih6IizhqNTiLJ-nf2A-ITTZSXwaKGgzd_0EJLBRbc_eF3qEhjp1OFEcb0LXpCB4bdAbBIcYK7c-aJJ3Z8','The receptionist was very nice, I was in the back within 10 minutes and being help by a RN and seen the Doctor not long after. Very efficient and I would recommend this ER. This is where I’ll come back if need be.','2019-05-01 05:30:49.182000','2019-05-01 05:30:49.182000',5,'Ronoc TheBarbarian','https://lh4.googleusercontent.com/-OCOgKzW_Q1E/AAAAAAAAAAI/AAAAAAAAAAA/UhRjOu5HVNU/c-rp-mo-br100/photo.jpg','13486358490203335051',1027),('AIe9_BExcxslmE1rr7n5jMcadSKexZh1PkmTQNI_vAd2X18v1GRTtnhOs6X7bd-nHSJGJBUBe8muxLvxaTc87dUT9H3DFJog8u4IcU5BYdeIlf9tRcCsF6U','I sought emergency treatment on 10/7/2017 for anaphylaxis ( my throat was closing). I was greeted without a smile by a Hispanic nurse Brenda. P. I was directed to a treatment room where the nurse started to obtain a medical history. I started answering the question but became angry and started yelling “My throat is swelling, don\'t you think that it will be better if you give me a steroid shot first and then ask me the questions.” I had tears running down my face and this nurse could have cared less. Her response “Yelling isn’t going to help; I can\'t do anything until I get some information from you.” Dr. Hehman came into the room after hearing me yelling and said: “We can give her a Solu-Medrol, go ahead and give it to her.” The nurse hesitated to get the medication and took her 5 minutes to give me the medication. When she returned to the room I was sitting on the bed shaking; she was nice enough to ask me if I wanted a warm blanket and went to retrieve it which only took her less than one minute. She then gave me the injection. She didn’t give me the call light. The doctor checked on me twice, which was nice. The last time that I saw the nurse was when I was checking out. She briefly went over my medication and led me to the waiting room. I felt as if was I being kicked out. She did say anything like “I hope you feel better, or thanks for choosing Signature Care Stafford.” The nurse lacked compassion and empathy. There were many other urgent care facilities that I could have went to, but I chose this one, and I deeply regret it. I am RN and have worked in the ER. I always treated my patients as if they were VIP. I greet them with a smile, have them change their clothes and put on a gown, I make sure that they are comfortable in the bed and provide them with a warm blanket, and I make sure that I give them the call bell. In my case, I would have assessed the patient allergies and immediately asked the Dr. for a steroid order. I would have given the medication, and then I would have obtained the patient medical history, and given him/her paper to write their response so I wouldn\'t aggravate their symptoms? Since when is documentation more important than patient care? Is this what nursing has come to documentation first, care second? If so, then this is a disservice to patients such as myself, and changes need to be made.\n\nComment by a RN who is very disappointed in the healthcare system.','2017-10-09 14:24:58.025000','2017-10-09 14:24:58.025000',1,'marquetta washington','https://lh5.googleusercontent.com/-smehNGcYEUw/AAAAAAAAAAI/AAAAAAAAAAA/8FYtfTcaQwQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9349),('AIe9_BExcxslmE1rr7n5jMcadSKey-ZFa1A4Mf1WldazweKpc2ptwyRvBCJfW_2gEUCn3fMB-kpEv3sGYge7yVxtRcRIyBcTvh9RdhK2JgHRTBjzy4QPqMc','Very nice staff. Seems to have a lot of experience. \nShout to Dr. Carpenter\nJennifer RN\nSherri Rad. Tech\nKim. Best registration experience I have ever had!!!','2019-01-17 21:01:49.493000','2019-01-17 21:01:49.493000',5,'Billy Giddens','https://lh3.googleusercontent.com/-Q-UqP0Vyc90/AAAAAAAAAAI/AAAAAAAAAAA/ZXSGuS9qMpw/c-rp-mo-br100/photo.jpg','3272657195432704501',7054),('AIe9_BExcxslmE1rr7n5jMcadSKeY1uJTn8di0LbLheI9MCl2dYs6HMf9re-KEjxrPo5eJeV55FDRSuVaAw1zHyu5gy-R_guw87gdV9sO5LKDOPOI3NeM4A','i came in with a broken ankle thinking it wasn’t just a sprain, but they were very friendly! offered me snacks, drinks, and a blanket when i first arrived. Dyveliz was very sweet, along with the RW Jacob! JR took care of the radiation process and was incredibly nice. thank you guys for everything!!!','2018-08-15 20:26:01.095000','2018-08-15 20:26:01.095000',5,'Connie Rodarte','https://lh3.googleusercontent.com/-MHo8xW1nDLM/AAAAAAAAAAI/AAAAAAAAAAA/TV53rome-QM/c-rp-mo-br100/photo.jpg','16590124370714063921',3788),('AIe9_BExcxslmE1rr7n5jMcadSKey4nBbOTtU_VT9j2qdOxeojyVYh0U8wW5WR2s1rZeBDf4TJJgCabImuFkDouI6hNf7RJT5a0EphfcIz5elk9VkP85Yg0','I had Sarah, Tanisha, Fatima, Elaine, and Dr Souman everyone was GREAT this was my second visit and They always take care of you. I have never been to a urgent care and been taken care of like they do. They never do anything without explaining things to you. Thank you signature care Copperfield.','2020-02-07 02:26:31.739000','2020-02-07 02:26:31.739000',5,'Justice Austin','https://lh6.googleusercontent.com/-3eefShxFIoU/AAAAAAAAAAI/AAAAAAAAAAA/3cx0g_LgxLo/c-rp-mo-br100/photo.jpg','17898197009688164559',22708),('AIe9_BExcxslmE1rr7n5jMcadSKey9hC5lgjZLqAwlVy59HfbYv7ZP0hvExhTlNTOFfBOJRygvbJgrfy6s5gAQ_KoW0u5QeyFzEpo1Q_Zw2hJWfRWoglvo4','Robin, Tabita, and Cortney took such amazing care of me! Signature Care is fast, affordable, and the staff is so so sweet! I always send people here instead of the prmc er. I recommend them to anyone who will listen!','2019-04-02 01:42:49.255000','2019-04-02 01:42:49.255000',5,'Jordan Perry','https://lh6.googleusercontent.com/-hUkXlybARZA/AAAAAAAAAAI/AAAAAAAAAAA/qd7OVdI9VDc/c-rp-mo-br100/photo.jpg','8626688543755174284',8512),('AIe9_BExcxslmE1rr7n5jMcadSKeybxPKAVARCBYcd-mAg5y920fEaHBD7ZKNpKmnXMh9mEDR3ifsOUYJHT16O3dzk0th_wewtd7TLqbQQz3Xf65H75i8CA','Knowledgeable, kind, and professional!','2019-04-16 00:39:23.234000','2019-04-16 00:39:23.234000',5,'Laurie Chandler','https://lh3.googleusercontent.com/-db0A4hp9PGc/AAAAAAAAAAI/AAAAAAAAAAA/uIvQFNIK_CM/c-rp-mo-br100/photo.jpg','13486358490203335051',1037),('AIe9_BExcxslmE1rr7n5jMcadSKeYc2WsBRxthWarxwLcSCWmL99_oM6vYv7L0YhDsWMlyUh5z04AyVtIG9UtvW7W1f5gy8V9po1tyUfFdCAuwBbomWsRfs','I love it, the snack were great and staff Amy Dr. Chukwuma, Kat and Fatima were great','2019-06-06 02:17:27.690000','2019-06-06 02:17:27.690000',5,'PATRICK ACKER','https://lh4.googleusercontent.com/-O27U14HQ7Es/AAAAAAAAAAI/AAAAAAAAAAA/Ojxf7qt8xVE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeycxbAdoOjFjuclS5tceGQn-i_GVWpQ62SANYsn1c0UdELAkArNm0DZ4xBph0LXc9A-2G5InCf05GZhPfg3A9WMswa-w','The first doctor (Yost), I love is doctor i loved him dearly!. Second visit. I Had Dr. Craig.. was very disappointed beyond....I will never visit!!! Much rather have the er. PLEASE TAKE MY ADVICE','2019-07-24 16:13:44.441000','2019-07-24 16:13:44.441000',2,'Ashley Sckittone','https://lh6.googleusercontent.com/-v6L4uLUT0zA/AAAAAAAAAAI/AAAAAAAAAAA/w_fsgOVqeuc/c-rp-mo-br100/photo.jpg','3272657195432704501',6926),('AIe9_BExcxslmE1rr7n5jMcadSKeyeV8hjMer6JXgMpIg128wOKjva4KVBYpeOjoNX2B-H7lMO_5cjspkGoQTbcMKMNBI6G6QkMWrqAGTg7dU08qvMaaUBQ','Clean facility kind and professional staff and the kind young lady at the front desk Leslie was the best so helpful while attending me.','2019-01-30 18:19:09.152000','2019-01-30 18:19:09.152000',5,'Alfredo Aguayo','https://lh5.googleusercontent.com/-kNoBS4domOY/AAAAAAAAAAI/AAAAAAAAAAA/G7Zm2l9xkGo/c-rp-mo-br100/photo.jpg','3511292162159714121',7432),('AIe9_BExcxslmE1rr7n5jMcadSKeygP8kYV37rMzt-Au3OvTFd39g6_eUSnxe3z9pdZ8Z42_O8T_nEfr4d4ENds_XQukRev1-egMHCBcKVQ0--5_-nlVCKI','Jessica S was sweet and very kind awesome 😎','2020-07-20 15:59:20.661000','2020-07-20 15:59:20.661000',5,'Christian Tapia','https://lh5.googleusercontent.com/-ejEh3KrKsqc/AAAAAAAAAAI/AAAAAAAAAAA/O-XGEDb79vI/c-rp-mo-br100/photo.jpg','14748677429039074158',21666),('AIe9_BExcxslmE1rr7n5jMcadSKeygsg_0U6ajuyuT175R8JRJmsUUocTuV42TN2JXm6pEGkhJPGsF85_PspaoECgOQTEwLKZOWFZf6bADvfEiopPQkVAZw','Cody & Nydia were great nurses that take very good care of you!','2020-08-12 19:09:20.361000','2020-08-12 19:09:20.361000',5,'Izzet Escoto','https://lh3.googleusercontent.com/a-/AOh14Gg6yP84NHon4orRQinoXqmRfSlDYT1sQuC7pz_eDw=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeYHO1gYYENQfXiPI0VVmOrhnx5Zmdk-PXLOYQWatMc1gMAqwEDUUvvBoQaYc-axsOEnyD7xTxHzede1ZpGhdiD_VLtqw','This place is very clean, amazing staff and they treat you right. I couldn\'t have gone to A better ER. Thank you','2020-01-25 20:09:03.917000','2020-01-25 20:09:03.917000',5,'Carol Rivas','https://lh6.googleusercontent.com/-5JU4FfxHkno/AAAAAAAAAAI/AAAAAAAAAAA/jspBL_Nuz84/c-rp-mo-br100/photo.jpg','13486358490203335051',13456),('AIe9_BExcxslmE1rr7n5jMcadSKeyhp7s3yL-0lKy2pFC1-vePeDKx549uAbJadE6tPCMmHf6xNBNNbiAiOPQVuKvfYgh-tCQn_PLzLPUqTTWh2_18BuUHo',NULL,'2019-05-26 17:40:53.444000','2019-05-26 17:40:53.444000',5,'Ashley Mcelroy','https://lh6.googleusercontent.com/-ajxNLxm8qZs/AAAAAAAAAAI/AAAAAAAAAAA/5aPLa1qcUuI/c-rp-mo-br100/photo.jpg','3272657195432704501',6959),('AIe9_BExcxslmE1rr7n5jMcadSKeYnMnOCynsPF2MfnQMLzN4Tcva8b1y0mGUTPnm0Fos0J7J0_md2hVRX04RlsVJOKCGfvUAbPXh0ZZXdCtI-FgSj02ygg',NULL,'2019-04-30 15:59:23.634000','2019-04-30 15:59:23.634000',5,'Emily Duhon','https://lh3.googleusercontent.com/-QEaqh5SZuMY/AAAAAAAAAAI/AAAAAAAAAAA/u0xl3zNrI7E/c-rp-mo-br100/photo.jpg','16590124370714063921',3401),('AIe9_BExcxslmE1rr7n5jMcadSKeyoHFqpgs5ONTa4LGiCxlNc-Gg1_gammYsbQdDR2xR8CRz1CtL6-dt0U9FUlSPb6pUaZwTiziCG0UG9HpsQ43q6VzMbc','Staff is efficient, fast, and friendly! Very compassionate with special needs children and responsive to my families needs. From check-in to check-out the staff was competent, the physicians, nurse Katy, nurse Pamela, Lab tech and X-ray tech were all attentive, accommodating, and very professional. \nThank you Signature Care-Stafford!','2020-08-01 00:44:41.530000','2020-08-01 00:44:41.530000',5,'Tracey Williams','https://lh3.googleusercontent.com/a-/AOh14Gjq5Y_3_OIA8RV3P3Kbg9jVEZNwSOlqkC_I6Ssu=c0x00000000-cc-rp','8918455867446117794',22267),('AIe9_BExcxslmE1rr7n5jMcadSKeyq9i4TnvZCWlyslfK5vNFri74Y93vEPEHhWS5eBJ1w3Peu1VVDC__HD6FVpqp-vLx2vWMGYf36pNJSMbFBnL07F7ooc',NULL,'2019-07-08 20:14:45.972000','2019-07-08 20:14:45.972000',5,'Ch3at3r ALPHA','https://lh4.googleusercontent.com/-qnG34Hcr0nU/AAAAAAAAAAI/AAAAAAAAAAA/AKyu00i3jcg/c-rp-mo-br100/photo.jpg','17898197009688164559',5655),('AIe9_BExcxslmE1rr7n5jMcadSKeYvTPWo7yP8cwc0Rxfoli9fOI3ntTVANWvS4OlIe9g4t1LZHjmvhpIegpsWYdwxQrKd89K2hwNtLTf2bODo4lQIuA4qY','Came in after a friend’s injury, Rebecca on the front desk was very prompt to assist and get him set up quickly. He hardly had a chance to sit down before they were ready to help him.','2020-01-18 07:59:51.947000','2020-01-18 07:59:51.947000',5,'Antonio Chong','https://lh4.googleusercontent.com/-869SYJ39vjM/AAAAAAAAAAI/AAAAAAAAAAA/XGQbZdic9JU/c-rp-mo-br100/photo.jpg','16590124370714063921',10064),('AIe9_BExcxslmE1rr7n5jMcadSKeywubiCoAW8n5L-d0IAMgtfG6WPmMc0m7UmIPLIpU9zSCVPIS_PtgrdfY8z3aBGCK6ZymCuE6eJ9lkLdOsRXWeRFTGbU','This place was amazing! Caitlin and Jennifer made me feel like a special guest. I was offered water and a warm blanket while waiting. I was able make an appointment online. The whole process was easy and made me feel important and that they really care. Thank you!','2020-08-15 19:44:43.211000','2020-08-15 19:44:43.211000',5,'Julie Greer','https://lh3.googleusercontent.com/-2o3AreUHcHU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckeQxuYeYhKV3RUwpzQelyMzPvMzA/c0x00000000-cc-rp/photo.jpg','8626688543755174284',23079),('AIe9_BExcxslmE1rr7n5jMcadSKeYx4nDSDyPg4oeQ65AsqEj2tNRDiX677VD1F_19NctIWxcpHUPVtIOSIBEZVFkWopNd7KrUiL5bmvpeHNCgT5Md4AfZc','Super friendly and amazing staff. Convenient location and quick on time. Very clean. Doctor/nurses are caring and make sure patient is comfortable. Def would recommend!!','2018-07-03 18:10:42.572000','2018-07-03 18:10:42.572000',5,'M Dav','https://lh5.googleusercontent.com/-piGKQNwfvZc/AAAAAAAAAAI/AAAAAAAAAAA/p79jevHjyb8/c-rp-mo-br100/photo.jpg','12541597562633926366',637),('AIe9_BExcxslmE1rr7n5jMcadSKeYyRWND2xk4CTN1imymzjHrKv4CqvDkbCxr-OqyRN-1GCzBYgV4-vbz4fVEr_BIa_XYzowVu3uIn-Te7H1Xj_CkhP044','From the moment I walked in, the entire team was extremely professional and welcoming. They made sure my concerns were taking seriously, and were very prompt with the care.','2019-12-27 19:56:41.719000','2019-12-27 19:56:41.719000',5,'Olivia Powell','https://lh5.googleusercontent.com/-DVJkG-RbcP0/AAAAAAAAAAI/AAAAAAAAAAA/1ISKYKJ-BSw/c-rp-mo-br100/photo.jpg','17898197009688164559',5320),('AIe9_BExcxslmE1rr7n5jMcadSKeyYxR1mVeYtu1vyMXdI8MzMYxm_Ykelm4l4Vv5Q5TxdX7Y4XS7_I6auKJ_LmDzHAb83Tz27EJaKXBT1feGh6e9GVZimw','Cody and JD were awesome great service great attitude!! Quick service!!','2020-08-12 19:58:56.697000','2020-08-12 19:58:56.697000',5,'letty gonzalez','https://lh3.googleusercontent.com/a-/AOh14Gg7iPgq0vzuVMzZtBE5HwuwYR-M_EU-ve2C2KEvDQ=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BExcxslmE1rr7n5jMcadSKeZ-jbCZpkBHd4lzQDWDOHBug81ckW_lsL_6gxeemLEtUhFyz2cyztPbY7__DpxlXTh_UJ3LUE7ZjBEVWbtcRV8Yr7DkY','Fast and easy testing. \nThanks Juan and Cody','2020-08-06 11:38:29.581000','2020-08-06 11:38:29.581000',5,'Dustin Turner','https://lh4.googleusercontent.com/-0xDcbGwCUrA/AAAAAAAAAAI/AAAAAAAAAAA/zwTS0HchLs0/c-rp-mo-br100/photo.jpg','2077061009497551125',22725),('AIe9_BExcxslmE1rr7n5jMcadSKez0WGu53yEKP6WVWTFqKp9QLLV-EFVgYCkG3Ueg2x9ebjYDAkS9l8mYvmslviPtUlivFGZCtRkh1MOg_NCmxX0-hGfUI','Had a very excellent interaction, the staff was awesome and friendly. Dr Toni was great and all the nurses and front desk had me feeling welcomed and treated me fast. This place gets an excellent rating from me A+++','2016-09-09 14:32:01.209000','2016-09-09 14:32:01.209000',5,'Jose Perales','https://lh5.googleusercontent.com/-vSo9AE480-A/AAAAAAAAAAI/AAAAAAAAAAA/LBuvMf8rgJQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1973),('AIe9_BExcxslmE1rr7n5jMcadSKez5gtQMwHGcPvARnopMVkQw2Clw0lNlP0C-F7WZDp6gaasXeeDs1nDEqo0lsBNQ3FqrSJCpmpSaXlrbNurxxxfyXPuvk','By far the best ER I have ever visited. From the moment you walk in the staff is very attentive and caring. They have snacks and drinks available at anytime for patients and family of patients. I highly recommend this location. They make you feel at home and they truly care for your health.','2018-07-29 22:31:32.579000','2018-07-29 22:31:32.579000',5,'street Adrian','https://lh5.googleusercontent.com/-crf3e_2uVtg/AAAAAAAAAAI/AAAAAAAAAAA/5x6MiD3cSPQ/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2234),('AIe9_BExcxslmE1rr7n5jMcadSKeZ85Lnav8EbYhKR8HSvnhMdqbGjUXlAUWeHGp5DxiSEZhV4XOLjjyU7yVa82NHz6NUXV0ZVbE5eGC57VgHYfaDc1fhE8','When coming to Signature Care I had expectations of a typical walk-in clinic. I was pleasantly surprised to feel like I was walking into a place that makes one feel human. It is difficult in this world today to have time to talk to your doctor, but here they spend the time and show empathy and truly get to know you and why you are there. I hope that this is the way of the future for patient care. Thank you all, Christina, Linda, Shelly, and Dr Elsbecker at signature care. I truly appreciate your way of patient care.','2018-04-22 15:56:17.934000','2018-04-22 15:56:17.934000',5,'Ron W','https://lh6.googleusercontent.com/-dfOYTPbpb4o/AAAAAAAAAAI/AAAAAAAAAAA/gGexgJhKIKs/c-rp-mo-br100/photo.jpg','16891069708558046635',4486),('AIe9_BExcxslmE1rr7n5jMcadSKez8GKRA4xG_8W8k48zJfwNn2eGYXN5fu9gCQkEfl0hSyaYNBD30PVbR9zkqWfJY29kyfTtc6GBv9uLiEQHeRF_0mXSfI','Wonderful service! Prompt and friendly I would recommend very highly! Thank you!!','2020-05-31 19:15:50.158000','2020-05-31 19:15:50.158000',5,'Rhonda Stratton','https://lh6.googleusercontent.com/-RbdAJy1gEZs/AAAAAAAAAAI/AAAAAAAAAAA/r-cW5n05Mbs/c-rp-mo-br100/photo.jpg','13486358490203335051',21361),('AIe9_BExcxslmE1rr7n5jMcadSKeZAvZjlF0O6M9fWE6HucmR2oOsheyx9Il6bF1CXAxqCalhTUdvWKPznpA_4znIWUK9HjA8EFycPLTXNlprVV6m9PWDOM','EXCELLENT service!!! I took my father in and we were done with everything within an hour. Dr Henman and staff (Ray. Jessica, Staci and Tino) treated us as part of their emergency room family. Keep up the good one and assisting with helping others.','2017-11-27 02:32:24.293000','2017-11-27 02:32:24.293000',5,'Ruthie Neblett','https://lh3.googleusercontent.com/--ztbzQ0SIzs/AAAAAAAAAAI/AAAAAAAAAAA/48x4ug75Tvk/c-rp-mo-br100/photo.jpg','8918455867446117794',9331),('AIe9_BExcxslmE1rr7n5jMcadSKezb0cqnPMJFRCgXfHh5O5Qq_PqarmIOwYSyitUmd9GrxJAJ-guekEbuJrer5lSefN3Y6emd1HUy8ggDgwg_Ckq3loJJk','Dr. Werzanski, Gabe the RN, Becca the tech, Kathleen in radiology and Lindsay all did a phenomenal job at making my wife and I feel cared for. They never left us wondering what was going on. They were terrific','2019-07-03 05:32:46.271000','2019-07-03 05:32:46.271000',5,'Chase Bosley','https://lh5.googleusercontent.com/-qoy2NwFI_oE/AAAAAAAAAAI/AAAAAAAAAAA/mdOCmxsdmqU/c-rp-mo-br100/photo.jpg','16590124370714063921',3321),('AIe9_BExcxslmE1rr7n5jMcadSKezCcKvCxT0LCLmu0uhDExMxDF9HpwLmOAtokZ6Fq1htX-pPs-T3SMPXCpb6zyFXim596vIYK-4-ycewwVIh3zuP66NCY','Me and my girlfriend came into this place, she scheduled appointments for us last night and came in this morning for the COVID-19 test. Staff was really friendly and helpful and the process was fast, currently waiting for our results in about 20 minutes. Place was clean and organized, would recommend coming here for emergencies or COVID-19 testing. Thank you!','2020-08-06 13:07:24.304000','2020-08-06 13:07:24.304000',5,'x XTaGeRX x','https://lh3.googleusercontent.com/a-/AOh14Ggb-n1vh2YmnI57ETA17S1iQYq0nSCQTQfGTRV5lg=c0x00000000-cc-rp','14904078213800803294',21921),('AIe9_BExcxslmE1rr7n5jMcadSKeZEGvVAffJgYgMO3m8jYvtdFCNQwZz1RxJX6LL3FulRbLgppZPAt7tdZXaSDxs6IRd-G9WwQEGY4otKVUcnbQj7OxYU8','Everyone at this place was excellent from the time we walked in till we left. Very quick to get you back to a room and find out what’s wrong with you. Ashley B. , Erica, and Ashley k. where all amazing in the roll they had to do . Very thankful for you all and will definitely be back if we ever need to. I definitely recommend signature care!','2019-10-04 16:57:56.993000','2019-10-04 16:57:56.993000',5,'Mallory Bush','https://lh3.googleusercontent.com/-t64MpV6zhnU/AAAAAAAAAAI/AAAAAAAAAAA/L8Hj8b8tt6M/c-rp-mo-ba3-br100/photo.jpg','8626688543755174284',14669),('AIe9_BExcxslmE1rr7n5jMcadSKezEKDPDPLdLpx9Ro2KcEBJAFfpc3Fz_9oNcMJBXpj8PXF20DvnghPjJXDs4XjfbFujrRJJrcmBxtSrSa9zGjr6Agbk2c','The treatment here is better than half the hospitals I’ve been to in Houston. \nThe actually care about their patients health and well-being.\nDr. Wang, Malissa, John, Rajesh, Laura','2019-08-15 16:23:24.136000','2019-08-15 16:23:24.136000',5,'JassyCakes Francois','https://lh3.googleusercontent.com/-kSkgqVz7STs/AAAAAAAAAAI/AAAAAAAAAAA/9Q-O-aBRmEI/c-rp-mo-br100/photo.jpg','12541597562633926366',460),('AIe9_BExcxslmE1rr7n5jMcadSKeZG3AfRmnm0Y02fiqti2sEpVXSRtPtifKYelbzy21SivEHH6R0DoYsxvC1BqYXcfNRXFTr3EW40LBaiGNdxvhuKeeqUw','Absolutely great experience. The staff were knowledgeable and kind. The care was appropriate and prompt. My nurse, Dawn, made my stay and care here as good of an experience as possible and she did a stellar job of starting an IV and taking blood.','2019-10-20 02:21:01.139000','2019-10-20 02:21:01.139000',5,'Davis Maddox','https://lh5.googleusercontent.com/-vgnm9t_QGU4/AAAAAAAAAAI/AAAAAAAAAAA/IilP9f39T90/c-rp-mo-br100/photo.jpg','3511292162159714121',7156),('AIe9_BExcxslmE1rr7n5jMcadSKeZgOyzcNlGJQahMnZPtZR1tcI211ODq3iN1ZzzcSNgkrishRy15Y2Uz1xCoH-3pp0mMvRUTtRUu_mgsRDeVhNTMFfmQI','Very great service!! Keera was awesome','2018-10-11 04:25:34.691000','2018-10-11 04:25:34.691000',5,'Alyssa Zuzu','https://lh4.googleusercontent.com/-mi4fbirCtF8/AAAAAAAAAAI/AAAAAAAAAAA/G0vEwqdLvro/c-rp-mo-br100/photo.jpg','16590124370714063921',3711),('AIe9_BExcxslmE1rr7n5jMcadSKezhRUDvPgVihmC7zHRTmtZwHxatKq6pCJkKBnSIQ1iDI_dPkjuhQsE4OHidTw9VyYEtPbn4NIXO0Vz5wwpd0HdkT3SBo','Amazing staff, had an incident with my baby boy and was helped immediately by the receptionist (Alisha B), and went straight back and was assisted by a very nice gentleman (Andrew) he cared for my son as if he was his own family. Was then assisted by all nurse staff (Lisa, Amanda and Danny) all whom were amazing and so gently caring for my son as they worked him up getting all medical history. And to top it all off was greeted by an amazingly kind Doctor (Dr. Huerta) was so caring and reassuring. Over all amazing staff, amazing clean facility and very fast and efficient.','2019-05-05 23:15:32.956000','2019-05-05 23:15:32.956000',5,'Cassandra Ramos','https://lh4.googleusercontent.com/-TM7RLg2PWP0/AAAAAAAAAAI/AAAAAAAAAAA/em7ToSHKBDI/c-rp-mo-br100/photo.jpg','13486358490203335051',1016),('AIe9_BExcxslmE1rr7n5jMcadSKezq4Izo5qZqIvqKemBho9pOls9MpsdJTQlHvdUO5XSqToLnfGUzcfh_GZbOOL_2qWf_YZRkor3Nk-afsfLNSj9dxv6qg','We walked in to the signaturecare emergency center in memorial city and was greeted by Amy with a wonderful hello and assisted us to get checked in. Teresa mark and Ryan also helped us every step of the way. This emergency room visit was a wonderful experience. Thank you all!!!!!!','2018-11-25 02:26:20.112000','2018-11-25 02:26:20.112000',5,'Jailinne Mata','https://lh6.googleusercontent.com/-XR0l7Ksx5FE/AAAAAAAAAAI/AAAAAAAAAAA/R-2u3s13l74/c-rp-mo-br100/photo.jpg','14904078213800803294',2195),('AIe9_BExcxslmE1rr7n5jMcadSKezVDQ0wP-Nj1r28ov9-mxb8RTnsRtpHAjn-gToogrTw0iVfssL8CuvkpLe5Jn-E96jDjYvVvmRRtXrrJRhvHXFh6G5wY','Walking in Tanishia was very friendly and helped out with everything needed for the registration process. The rest of the staff Dr. Pham, the nurse Rachel and the ER Tech Daniel were all very friendly. Nice and clean establishment and the best by far.','2019-11-06 01:47:54.375000','2019-11-06 01:47:54.375000',5,'Ashlee Joseph','https://lh5.googleusercontent.com/--DrhzYRamWI/AAAAAAAAAAI/AAAAAAAAAAA/W9FathHIQlU/c-rp-mo-br100/photo.jpg','17898197009688164559',5466),('AIe9_BExcxslmE1rr7n5jMcadSKezWqUWnWDXbmHstXGtJArvhce4b17oaLvhcOhbEwZaKoEuZ_veHqZyYC7LCX0F9QuNly6FgrOKOSP8TR7GAzj2BBmLt4','Aerial the receptionist was very quick professional and friendly as soon as I walked in. Irving the nurse was very understanding and compassionate when it came to listening to my concerns while comforting me with water. Dr. Dang let me voice my concerns examined me and treated me efficiently. Service was great and quick. Carmella the tech was great with my blood draw and was so friendly and reassuring. The energy and comfort I felt was great and I was able to go home an rest knowing I was taken care of by an amazing team. Outstanding Job done.','2019-09-11 08:02:20.206000','2019-09-03 05:04:59.772000',5,'Odalis Robles','https://lh6.googleusercontent.com/-Ewt0mQ4dYsM/AAAAAAAAAAI/AAAAAAAAAAA/35d70iWOvTQ/c-rp-mo-br100/photo.jpg','12541597562633926366',433),('AIe9_BExcxslmE1rr7n5jMcadSKeZXYmz_E22eaJaC9YZhEcSivZuyXWPLI75uiTtEbaZGAD1cWkeKkeiYS_QNn4i2oX0dfOOJ4CB9eoDiY4ZOER50pUMVI','I was feeling short of breath so came here first. This is the fourth time I have had to come for various reasons. The staff is friendly and professional and caring. I had to stay overnight much to my chagrin but the staff did all they could to accommodate me. Only one request...Get some Splenda or Sweet n Low for the diabetics...lol...Kudos to everyone there....','2019-01-08 09:00:27.452000','2019-01-08 09:00:27.452000',5,'Danny Ross','https://lh5.googleusercontent.com/-oTXv138Y4IU/AAAAAAAAAAI/AAAAAAAAAAA/0baexq8486E/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1432),('AIe9_BExcxslmE1rr7n5jMcadSKezzU6y3b72iwVvKgmpDEL9tiaZQaG9oTbThaC9EfiELs4GjBLTzu63a4tKvqqnF99eK1nSZkzzHgjbkSfaI21RKNL7jI','I got in almost immediately, and everyone was really nice! And in they actually care nice, not the fake nice. They told me exactly what was going to get done and followed through. They even asked me if I wanted a warm blanket! I just felt real secure and taken care of. And even the next day I received a call asking how I’m doing. Truly this place, 10/10!','2019-10-10 21:20:20.039000','2019-10-10 21:20:20.039000',5,'Chastity Rios.','https://lh3.googleusercontent.com/-E61aFjU6cuk/AAAAAAAAAAI/AAAAAAAAAAA/Xp4UIXdKCtk/c-rp-mo-br100/photo.jpg','6521947413723274945',8123),('AIe9_BExcxslmE1rr7n5jMcadSKezZVPt3h0HkPY7lghIbKEJl_-wMiF4bhnDALyIGAY5P-vBGFgFcSkTu-cMSkQ6eshdWeQ8f8XeMOGGQfO3h8schN7zJk','After going there physically THRICE for a COVID test, they told us to make an appointment ONLINE. After checking... No appointments for 3 months!\nClearly aimed to get people out of their lot.\nA bold-faced scam.','2020-06-30 04:20:54.328000','2020-06-30 04:20:54.328000',1,'Richard Baratta','https://lh3.googleusercontent.com/-RKnETJeLTbI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckNfLz_2pZFjP-Emgb_k_fTNjVSvg/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21431),('AIe9_BEXzFKrOGUUAP-QsjSUk9PP_WXsg8h1ZkR6D1YL9xzvhnqKV2rzO259ZsyMkbDmZvYOa-yA7a5-mw1qel2tFmXnSvRg_tPDtHY7xSOvH4z06BNwIZE','Had to go in after the holiday weekend due to pain in abdomen, and it turned out to be an appendicitis, so was glad I did. They have all equipment and care that an emergency facility at a hospital has, other than surgeons basically. I was made very comfortable. Like others have said it was clean and very professional, and I was seen immediately. They had CT Scanner in office to confirm the diagnosis, and then got me transferred in to a hospital right away to have the appendectomy that night. I haven\'t gone through paying for it all, so I\'ll report back if anything unexpected comes from that, but for now, I don\'t anticipate any issues and I would 100% recommend this facility to friends/family, and will come here again if we need emergency care - particularly on short/unexpected notice. \n\nI think a lot of people are hesitant to go in to some of these freestanding places, not understanding differences between them all (urgent care vs. freestanding emergency like this one). I too was hesitant. What you need to know is: this is an Emergency Room - just not attached to a full hospital. So if you don\'t need emergency care, this probably isn\'t the right place to go and your insurance may give you trouble covering some of the fees because they\'ll be considered out-of-network and you had a non-emergency. However, if you DO have an emergency (and the measuring stick, from what I understand, is that you are a reasonable person and perceive yourself to have an emergency), then insurance will have to cover this as an in-network emergency visit, and all your in-network deductibles, co-pays, and coinsurance will apply. As I said, I haven\'t gotten bills yet for this and the hospital stay, so I\'ll report back and update if anything needs to be updated in this review.','2019-12-03 19:41:50.070000','2019-12-03 19:41:50.070000',5,'Sean S','https://lh5.googleusercontent.com/-lsgCmmGHTlk/AAAAAAAAAAI/AAAAAAAAAAA/eu6iJq7hrdw/c-rp-mo-br100/photo.jpg','16891069708558046635',4129),('AIe9_BEXzFKrOGUUAP-QsjSUk9PP-uO_FOtDBZ6YxlGub6fFxZ8b5u02giiJiwbeBJ7ov6zvFDvwM-Sm-yTgx4335tSFna-f0EXHxMlYZ4h7kLMGugWpVx8','My visit here was amazing. Keera was very helpful, thank you .','2018-11-17 04:36:03.527000','2018-11-17 04:36:03.527000',5,'Nichole Oliver','https://lh5.googleusercontent.com/-3lx1GgbdjAs/AAAAAAAAAAI/AAAAAAAAAAA/sXnuE10yO-4/c-rp-mo-br100/photo.jpg','16590124370714063921',3646),('AIe9_BEXzFKrOGUUAP-QsjSUk9PP0OQSZeNUULPy5ksd4RutMIM-yocBPAHSdutnWz8mutKGUuwD5ESPqHKKaZ2Ft37MOh8Kn85PZ2or4VrjkdosR5ESHL0','I went in with a triple bone, ankle break and Dr Craig and staff were fantastic! Great bedside manner, quick, caring and accurate diagnosis of needing an orthopedic surgeon and ankle surgery STAT. They splinted my ankle and gave me IV pain meds. \nMy injury had happened downtown, but I knew I\'d be waiting forever at the ER hospitals there. I insisted to be driven to my neighborhood ER. No waiting hours in pain. I was seen right away. The next day I had a voicemail from THE DR himself (not just from the staff) calling to check on me!!!! I highly recommend them!!!','2017-06-07 04:53:36.937000','2017-06-07 04:53:36.937000',5,'sherry bray','https://lh6.googleusercontent.com/-Qoo5QAMMyZ8/AAAAAAAAAAI/AAAAAAAAAAA/iXO60d-d1NU/c-rp-mo-br100/photo.jpg','16891069708558046635',4553),('AIe9_BEXzFKrOGUUAP-QsjSUk9PP6Io4nWEONnZpCT8ubk45-pXX29eaz7OOh4x2WZ7DuZAnRJk6zDN4sWn0-30f-V7e-FHaUnhyqoAgO8GXewHMjS6mNpQ','Most amazing experience ever, especially Dr. Appiah!!! He was courteous, patient, attentive, and took his time to LISTEN to what I had to say and come up with a plan to help me even after leaving here. Patty at the front desk was very welcoming as soon as you walk in and informative, the rad tech Tricia was funny and personal, and Tricia my nurse was very professional. I won’t go anywhere else in the future for an ER visit. Amazing!!','2019-09-28 21:58:28.713000','2019-09-28 21:58:28.713000',5,'Lyne C','https://lh3.googleusercontent.com/-einQpiTJT1Q/AAAAAAAAAAI/AAAAAAAAAAA/Rm1R82dbGLI/c-rp-mo-br100/photo.jpg','16389487648212004696',2874),('AIe9_BEXzFKrOGUUAP-QsjSUk9PP6l8J_3tdFoFuzReSTj1vlMLhGOdiCqJOxgkczq4-AdDRLWJE0wSEhPcjaO8EII_CmtPNTf8JKUNRbFPdVXulzdsbogM','Juan, Amy, and Sam were great!! I came for a COVID test before surgery and they made it seamless and easy. Thank you for a wonderful experience','2020-07-27 15:15:42.513000','2020-07-27 15:15:42.513000',5,'Phoebe Browne','https://lh3.googleusercontent.com/-odFsnNaLHG8/AAAAAAAAAAI/AAAAAAAAAAA/wbiAwoThgHU/c-rp-mo-br100/photo.jpg','2077061009497551125',22808),('AIe9_BEXzFKrOGUUAP-QsjSUk9PP6qFZ97ndpggkKSIJGTHWO1HyWh2k5IV4gol3gkfowDgBjKehog4tGzDQSoEnQdWR3al6uKlYie_BznyCTKTl-x73dlw','I found the people here to be very professional and extremely friendly. I will definitely come back again and recommend others to use this facility. I would like to especially thank Suzie and Mercy for their kindness and assistance. They made my visit very pleasant.\n\nThank you very much.','2017-02-23 13:55:11.726000','2017-02-23 13:55:11.726000',5,'Tony Henderson','https://lh5.googleusercontent.com/-rZ8QhV-Nz_c/AAAAAAAAAAI/AAAAAAAAAAA/NMgsdFZLm5A/c-rp-mo-br100/photo.jpg','14904078213800803294',2407),('AIe9_BEXzFKrOGUUAP-QsjSUk9PP84S2T0CBe5lkoB2GrMua910A3-n7mYaYoXeIQNNkMqM4K5IOFbkHJe5XEqd94LeUZZYpTGqYzdcVSQN9ZjyoxT96wFw','We were seen and treated by Dr Ashbrooks, RN Ryan, Rad/Lab Eric and Reg Tobin. This staff provided great care. We felt at home and prioritized. Time of service was quick, efficient and diagnosis accurately/explained','2020-01-29 03:34:21.569000','2020-01-29 03:34:21.569000',3,'Sonya Thompson','https://lh4.googleusercontent.com/-Rtwu1JlR7SM/AAAAAAAAAAI/AAAAAAAAAAA/APV3AzDjNuU/c-rp-mo-br100/photo.jpg','3272657195432704501',10268),('AIe9_BEXzFKrOGUUAP-QsjSUk9PP9RJzBaYt1xiKz40jZ3c7RXhaz8U3PZ8n8T0Kh4EjOLn3jAZms0vDcLjcS66BRc1mUJYNeVKvjOEWSAHtBs7oHC9FGME','i really am Happy with the work y\"ll done., and I would like to say thank you to the tech Carmella for keep making shore me and my family was okay!! I will be back','2019-06-16 22:50:13.508000','2019-06-16 22:50:13.508000',5,'TREY VILLARREAL','https://lh5.googleusercontent.com/-TJNateYE4lc/AAAAAAAAAAI/AAAAAAAAAAA/FrqI_rFaGLM/c-rp-mo-br100/photo.jpg','14567670160750071148',1302),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPA89XAX2hoKfxKOoA1CwC5Pcgj5Yp-k8oC_WbowXuSFneZyDQzeFVwuvx-5MKkGkRFkaIM6AM6vssnf583cs9RKj_Bjk','I had a good experience with the staff, they were very professional and I was in and out. Sam and Cody were very helpful','2020-08-03 21:28:56.256000','2020-08-03 21:28:56.256000',5,'Audri Moore','https://lh5.googleusercontent.com/-VY4G6UwM_qU/AAAAAAAAAAI/AAAAAAAAAAA/MxVITsA8k1k/c-rp-mo-br100/photo.jpg','2077061009497551125',22743),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPbEavXJccm2VmYNhbzkdg2eANxCItGV4PfhXR4LhhtC_cgWTxs1eYkzvucA07uYPyzU_TclreFNYxMANEkhe-vDLOjdw','The best staff Nurse : Rollie \nRadiology : Natalia\nRegistration : Stephanie','2019-09-09 03:01:43.087000','2019-09-09 03:01:43.087000',5,'mohammad Maki','https://lh6.googleusercontent.com/-BaQkAPPDKHo/AAAAAAAAAAI/AAAAAAAAAAA/_LN3_zqCNXc/c-rp-mo-br100/photo.jpg','8679688254631342173',8806),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPBngtVKtbEf09TO_wCV5BDLGErDTLlBaGXQrlimFgbwT96x1wDyIn6Qo7wSnhV9YcrNAXWOPZc7L38LfQcRNSnfb9pOI','Great experience with Jessica S at SignatureCare today! Very helpful.','2020-07-21 12:17:09.599000','2020-07-21 12:17:09.599000',5,'heather Sutherland','https://lh3.googleusercontent.com/-SCwRnTxwO9E/AAAAAAAAAAI/AAAAAAAAAAA/We2euUmNV_4/c-rp-mo-br100/photo.jpg','14748677429039074158',21628),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPBtak9cKpNwspr6OlPUVpBneuYE_mGAOldzgsOioiMWw2F-uEQJ9kuprknyMCG1Dg5gtN_67p4dk3GLRpSLIq_XiGS2I',NULL,'2019-12-27 00:03:18.874000','2019-12-27 00:03:18.874000',5,'Michelle Key','https://lh6.googleusercontent.com/-LGRs_p_9dcE/AAAAAAAAAAI/AAAAAAAAAAA/ntmOU6Al9D8/c-rp-mo-br100/photo.jpg','8679688254631342173',8673),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPc9Ui44z4na-PG_xRSeEh-Xw0P3Z0NyT7-WPLzCVFtr72eHQyZIsqRd_CdaMsZExWFhS2WfAP9DVaE7J1J6uucwVnJnE','The team who worked with me were all excellent, kind, and personable. Thank you Dr. Vaasenes, Nurse Jacob, Tech Morgan, and Registration Liz','2019-04-17 15:34:23.650000','2019-04-17 15:34:23.650000',5,'Jace Pfuhl','https://lh4.googleusercontent.com/-eUQSxc-_vvk/AAAAAAAAAAI/AAAAAAAAAAA/rqrQvqVNexA/c-rp-mo-br100/photo.jpg','16590124370714063921',3427),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPFz3U8ns6Uw1SngODqy3GgQyknJ2tuMY5dxGAgzCg54S1H1ayZa7Xln-xcOusQoYg8gP95W-7Cn8DI9_14v9m0xMgLjc','This. Place. Is. Awesome! Everyone is so patient and helpful and friendly. I was in and out within a couple of hours, and taken care of so comfortably. Christina R, Christina C, Dr. Nguyen, Andrew, and Chelsey all helped us and made it an absolute pleasure to be in an emergency room. You will not regret going here!','2020-03-15 19:23:37.817000','2020-03-15 19:23:37.817000',5,'Shoshannah Brenner','https://lh3.googleusercontent.com/-NWqvvOK77EM/AAAAAAAAAAI/AAAAAAAAAAA/AzWhhl-ou4Q/c-rp-mo-br100/photo.jpg','16891069708558046635',21049),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPIGl-jKPgcNgBlxP6-adZ3hmqOFp-qJb2QtKDjOf43j_IOtWd0yrgfZxz20dlOgpke5TEN6DMjDAJyxA27n2DhGHXOm8','My visit to the signature urgent care today was awesome the x-ray tech Bryan was awesome the tech Denise and Jasmine the receptionist and Dr. Miller were very awesome they took care of Meanwell an answer on my question. I will definitely recommend Other people to come here.','2018-09-30 00:42:06.903000','2018-09-30 00:42:06.903000',5,'Yolanda Estrada','https://lh3.googleusercontent.com/-zA2E1df9wkw/AAAAAAAAAAI/AAAAAAAAAAA/cICR5ksSHh8/c-rp-mo-br100/photo.jpg','14567670160750071148',1486),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPiWuLqK5ROOdzdKjM20ryHamoR1b5tlztjb_LbnEuHu0ihfhtv1DI6LQzzOKEnZYb384EQxiBYpH1frdwwtNyQ39vU2w','The experience at SignatureCare in the Montrose area was simply a breeze. The doctors and the nurses were very knowledgeable about how to assist me in dealing with my injury. They made me feel safe and held my hand through the pain I was experiencing. I definitely recommend this establishment before a hospital ER or urgent care facility. Quick and easy experience. Thanks Signature Care Emergency Center!!!','2017-10-04 14:09:21.919000','2017-10-04 14:09:21.919000',5,'Tiarra Brooks-Chatman','https://lh5.googleusercontent.com/-SlvWXNHuJJw/AAAAAAAAAAI/AAAAAAAAAAA/vV6NpbPz3-4/c-rp-mo-br100/photo.jpg','3511292162159714121',7783),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPl96Bz4k5swSbwiqInzQPDhLeqIwrG684LO4f9YjW1prXA8YPTJoA6Q6wnfaW-qkXLr3BUSU4pJPGBJr8zlOS2mzHxp0','Great service!','2017-08-29 20:45:21.165000','2017-08-29 20:45:21.165000',5,'Daniel Prasca','https://lh4.googleusercontent.com/-9bJR0922qQE/AAAAAAAAAAI/AAAAAAAAAAA/3YN4Unhqq5A/c-rp-mo-br100/photo.jpg','16590124370714063921',3946),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPm_Dpd4jz8gPInWkLc4CqOoherIzF9kF1SbMCCUJCCr4Kwi-70eROPgZhnYbbp91_2xVJjCkbm4rDKu5O9FtyPMQTiqU','The service here was incredible and very affordable. I suffered a pretty severe laceration to my knuckle and ended up here to get stitches. Facility is well maintained and the entire staff was very professional and accommodating. They offered me a blanket and a snack! Checkout was very quick too. If you have any kind of emergency in the Montrose area, this is the place to go. Dr. Yusuf was great!','2019-08-05 16:14:43.005000','2019-08-05 16:14:43.005000',5,'Anthony Arango','https://lh4.googleusercontent.com/-9zqkMylMzvM/AAAAAAAAAAI/AAAAAAAAAAA/FbWra33-R3s/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7225),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPmNpZpRCCuZ7v0dfCxiSsw9xJEUTdYsyQu6bvy9jiwhoUADhS-c34C9W7KGcr95tNuYXFAAFqDwe8eA2PNDIBmRZWHPg','Very fast service, in and out. They go above and beyond to help you. They also have a very knowledgeable staff that really helps you out for your needs. Hopefully I won\'t have to go to the ER any time soon but if I have to, this will be my first choice. Thank you for everything!!','2019-12-19 15:50:34.556000','2019-12-19 15:50:34.556000',5,'Seth Daniel','https://lh6.googleusercontent.com/-ZxrE1UFhTpM/AAAAAAAAAAI/AAAAAAAAAAA/xjSXQZiT_J8/c-rp-mo-br100/photo.jpg','8918455867446117794',9028),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPmNrpJz7A2z9Ji4zbILmteSl3mT_O4RDn5xW-PGH9bJtpGOjgZJkLb1Kf_8hPDl8mS9NYRnqODOmbOMv9QxivU8-WKyE','The staff is excellent Dr. Dendy waste no time getting me better.Nurse Alvean A. Followed up consistently. The receptionist Patricia was pleasantly friendly','2020-01-02 23:06:32.854000','2020-01-02 23:06:32.854000',5,'Lashun Jones','https://lh5.googleusercontent.com/-CJcW9X05Ric/AAAAAAAAAAI/AAAAAAAAAAA/xKtCqzpwUC4/c-rp-mo-br100/photo.jpg','16389487648212004696',2488),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPn7NoyY_hZzFvRp4s2ZuV8kL13xdraUi6y_XzuHcsIKqyr-Wjs2q4WSfIgdbxtHYiWSxqQ3xQgpaiIa97MuW5D2sd2w0','Anthony, Brad, and Rebecca were all very helpful and got me in and out quick!','2018-12-11 21:04:36.263000','2018-12-11 21:04:36.263000',5,'Kendyll Reznicek','https://lh6.googleusercontent.com/-lOYvKe_2Hyk/AAAAAAAAAAI/AAAAAAAAAAA/8HJ87EhcdLs/c-rp-mo-br100/photo.jpg','16590124370714063921',3614),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPnS0U6SX7dMwpycHlQHfOgarjTslRRnKZtsKPG54mmS8pjU_i6iVMAOKwiTxbp2-8lzzBzaQU4OCGx40kbhvAC4wUDJU',NULL,'2018-11-19 20:07:35.931000','2018-11-19 20:07:35.931000',5,'Gillian Sevier','https://lh4.googleusercontent.com/-1_ZM29izwrI/AAAAAAAAAAI/AAAAAAAAAAA/59p7RPth3no/c-rp-mo-br100/photo.jpg','16590124370714063921',3645),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPOn1dxkhQYmLT4MrtEKXfENHkZ2gw3XJWtNf8ASn2Iqcv3KOsAUjN8M8uJ8hSibecK_z9xnWbQ4XFtIMOSw6tKXKzZ8U','Care was great there...These people help great.Patricia,Alvean,Marcus...','2020-02-06 19:37:37.156000','2020-02-06 19:37:37.156000',5,'Matilda Lavergne','https://lh6.googleusercontent.com/-sGTErYTQMcc/AAAAAAAAAAI/AAAAAAAAAAA/fnrLRzReJ10/c-rp-mo-br100/photo.jpg','16389487648212004696',22617),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPoZ5O33Km2mVyDBIUmsxwyXt65u7RSSKL28ArjFQ_BZmDLsWdu6ryo9QcxwTYW1NZis7RMGJ3A6CoeBeAdnQWFfWC5BU','Excellent People','2019-01-11 20:22:54.388000','2019-01-11 20:22:54.388000',5,'Delicia Davis','https://lh6.googleusercontent.com/-q_esZY2zQ_M/AAAAAAAAAAI/AAAAAAAAAAA/mPhqKLw5GYQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7483),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPrSc3tWGLOaJHg1GsJPAEmn1gF37bsKb3xBg85PyjPSzZ8pe_fkHalHAt-Wcpenmls6lcTc5NFUCcnaeDAW6z40N7nJg','Everyone was wonderful and I received excellent care.','2019-06-19 07:06:07.448000','2019-06-19 07:06:07.448000',5,'Ashlie Dickinson','https://lh3.googleusercontent.com/-fWgtZ4n4GKc/AAAAAAAAAAI/AAAAAAAAAAA/icq-wFKwaQU/c-rp-mo-br100/photo.jpg','3272657195432704501',6947),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPtHNnxix8vlqusNob7usHkLHG0V9o97TMbJl9b0tAQLXJ2Ogo3ikCj5YkViEBqdPM6bDOLFw3dP6D1AMEkSdCkoEhjEY','Dr. Akunyili was very polite, The nurse Alvean was helpful. Tricia the radiology was kind. Patty the registration was very helpful and walked us through lots of things. Sean the ER Tech was respectful.','2019-08-25 21:37:18.595000','2019-08-25 21:37:18.595000',5,'Sonia Baig','https://lh5.googleusercontent.com/-y6NYMxaokS0/AAAAAAAAAAI/AAAAAAAAAAA/aEanLgT1KZE/c-rp-mo-br100/photo.jpg','16389487648212004696',2976),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPTuyMUT6CLi_nKbCx7kEvJ3chJqXIlGmxBqt3VJFlIKTAyJkWGNTsntbEOrYlCub4mQzYya1bEMe-1-DVVDeRz81vgMo','Excellent care from Dr. Steven Eisbecker and nurse Christina. I haven\'t seen such compassion in a long time. Awesome team of professionals!','2019-07-01 18:26:04.025000','2019-07-01 18:26:04.025000',5,'W. M. Champion','https://lh3.googleusercontent.com/-_5HpKWk9NLQ/AAAAAAAAAAI/AAAAAAAAAAA/7PACs3rEgmo/c-rp-mo-br100/photo.jpg','16891069708558046635',4239),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPu0rzK9JP0bX8eX4OBjJ0xwoP-gHmC4G1CP7QFfsFa6TVs17TR5EfoKPPtNuD-t9V4aU7Knwp2ApNnsQl7r1_4eEhXdw','I felt very welcomed and taken care of here. I felt like my diagnosis was clear! Natasha was super awesome at the front desk !','2019-09-17 18:20:19.657000','2019-09-17 18:20:19.657000',5,'Aneliz Vazquez','https://lh5.googleusercontent.com/-iyCwXEGS7OE/AAAAAAAAAAI/AAAAAAAAAAA/VkBODaAJfbo/c-rp-mo-br100/photo.jpg','2694018788013845459',6063),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPUqcW9dYUgN6Ptm67ROeP0sJZ0fielKxakwRovoA3YdVlKA3So-EHg-km2Ucffn0EMviGPw-084BqIwHp3RiLGLZ3tug','I love this emergency center. They\'re always good to me. Dr. Rodriguez and the staff, especially Nicole are great.','2019-12-26 22:51:06.636000','2019-12-26 22:51:06.636000',5,'Cynthia Callahan','https://lh3.googleusercontent.com/-2jRjl2phCK0/AAAAAAAAAAI/AAAAAAAAAAA/au_R-riVTuE/c-rp-mo-br100/photo.jpg','14567670160750071148',1159),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPYPoqZwDPMHHkvkg0hHn7lq_GJsk35Y0sVwE5qG0IcsdRLbY_SAcofs4V9ssMfRO-qU6QTBrV9qkCZFe2LZehN615168','Dr Yost., Mollie, Shannon and Tobie took very good care of me I went in for my knee and they were very concerned. I appreciate how they got me and and out in no time Thanks you guys','2020-02-08 07:06:00.127000','2020-02-08 07:06:00.127000',5,'Lawanda Johnson','https://lh3.googleusercontent.com/-EFpFLrODytE/AAAAAAAAAAI/AAAAAAAAAAA/w9pJxMwVsbA/c-rp-mo-br100/photo.jpg','3272657195432704501',14366),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPzDbULr_IOH50Vbwpy_Gegt1rzt3lXvXsl8gfNKvOuJJ4kCzfB29GScxRoF8n--JCVz0oluxn6N1wdQYoaiHZ9Qd0Li8','They were quick in taking us in and the whole staff was very attentive.','2019-07-30 14:20:47.692000','2019-07-30 14:20:47.692000',5,'Karolina Villagrana','https://lh4.googleusercontent.com/-NReLEfxM8LQ/AAAAAAAAAAI/AAAAAAAAAAA/jaMtKgQZCLU/c-rp-mo-br100/photo.jpg','3511292162159714121',7235),('AIe9_BEXzFKrOGUUAP-QsjSUk9PPZyL8eUgUoAcHWVFOSwQ0s9LM1n5nTDmN4ZIZoZe3z9jDdNB3E0SH2-JXVGtE7c-IGlxCRTNTI2qLIG9HdZd-rqZWOH8','Friendly staff, and seemed to enjoy what they do. I would definitely come again in the future and definitely recommend.','2020-02-25 19:58:29.242000','2020-02-25 19:58:29.242000',5,'Jralcongtz','https://lh6.googleusercontent.com/-aA-lmpEeKWo/AAAAAAAAAAI/AAAAAAAAAAA/UR-DB6T7ltE/c-rp-mo-br100/photo.jpg','8918455867446117794',15422),('AIe9_BF0GloldIbnBH_yu_GYdoemzbhtmHymLwe9h-1KtQTSW8qfezGz2QcpUUG8BR6bL7FnvThN-C0GFLCXcmTVSPb4naCBfA','Admission is a quick and painless process. No money is requested at the time of visit. They have on sight lab and scanning. Very friendly staff.\n\nThey can not accept Medicare because the government will not recognize them as an \"emergency room\" since they are not affiliated with a hospital. They are an independent emergency center & have the autonomy to make decisions for themselves. If you need admission to a hospital then you simply tell them where you would like to go and they will make the arrangements.','2017-12-05 05:13:34.937000','2017-12-05 05:13:34.937000',4,'Jesse Newberry','https://lh4.googleusercontent.com/-q6wbM4we1ww/AAAAAAAAAAI/AAAAAAAAAAA/IVytKMCEzzs/c-rp-mo-ba6-br100/photo.jpg','8626688543755174284',8650),('AIe9_BF8X4EpR_fF6mwcYdso9awg-ffY7lG-KnQ6G1eS55uZx62qGoFBkVr5cI9FnVKQmSv2qMZUwjzSJxo5wHK_PhHH70G1F1igwLjxc3FXpsJwcTa0kNc','Great clean facility with personable staff. Quick and easy','2018-04-03 11:49:36.679000','2018-04-03 11:49:36.679000',5,'Gilbert Maldonado','https://lh3.googleusercontent.com/-GOF1dcWo_JA/AAAAAAAAAAI/AAAAAAAAAAA/2y1PIQGIRAc/c-rp-mo-br100/photo.jpg','8918455867446117794',9274),('AIe9_BF8X4EpR_fF6mwcYdso9awg-JztwQRYeO1EfW36xbBs0omYGrT72c_OH7uHI_nVokmgwdGxXDY_sOG1Mf4MmxtjcDq_qWvs0_LTAPFCVu0xSbZ9Uus','Timely, and very courteous.\nRegistration: Amy M, Valencia P, Julesia H, & Dalia R','2020-07-22 21:11:18.573000','2020-07-22 21:11:18.573000',5,'Pious Manikkuttiyil','https://lh4.googleusercontent.com/-NBCUHTXDdJ4/AAAAAAAAAAI/AAAAAAAAAAA/Y9aICvwAs0k/c-rp-mo-br100/photo.jpg','8918455867446117794',22300),('AIe9_BF8X4EpR_fF6mwcYdso9awg0_KXn2xRE-85UDxq2UOvF8-2f7aqZ7THw1-6gLF3nBIE89WFyu1ABix_2wS5nMTrx_z4FANlFATpMfxH77MDCPTulOw','I woke up sick at 4am, this place was the only one open. Carly checked me in and helped me get everything sorted. The nurse sara was very helpful and kind even at an odd hour. Dr. wang and the tech sherwin helped me effeciently and effectively. I will go here again!','2020-03-03 23:55:18.094000','2020-03-03 23:55:18.094000',5,'Meghan Kenyon','https://lh4.googleusercontent.com/-uQAb-DMaXXg/AAAAAAAAAAI/AAAAAAAAAAA/gRt5uz7FU64/c-rp-mo-br100/photo.jpg','12541597562633926366',13316),('AIe9_BF8X4EpR_fF6mwcYdso9awg01Ls40OaffHd9VhGVevOaMETSAq0VYnSVO0G_5mmavDAkaqH4VL1G14PR1CzjjBgW44WDf2eHq0A0TURbr-OfcPN8Xo','They are doing their best with all the limitations. Website is easy to navigate. It’s taken almost 2 hours, but better than other places. Nice people!','2020-07-19 18:46:04.490000','2020-07-19 18:46:04.490000',4,'Paula Meador','https://lh4.googleusercontent.com/-bZ2B94psCo8/AAAAAAAAAAI/AAAAAAAAAAA/Xl_CHFMUH8E/c-rp-mo-br100/photo.jpg','14748677429039074158',21701),('AIe9_BF8X4EpR_fF6mwcYdso9awg0JsiibnUV1DJc5PCqJm24FUZ19oEhjFeWEreNpEt6uS_FLcxLlX1mmQHmuPtJRILwz8FQZnU_586suEOWmQQZupzuVw','I went into the emergency center because of a foot injury I sustained playing basketball. When I arrived Airianna was very helpful and got me in a room with the nurse Carissa almost immediately. They were very knowledgeable and efficient. I didn\'t have to wait an eternity for Dr. Samar to attend me and go over my xray results. The whole SignatureCare team was great. I don\'t want to get seriously injured again but if I do... I think I\'ll be visiting this facility again.','2016-10-14 14:54:46.063000','2016-10-14 14:54:46.063000',5,'Jose Cruz','https://lh3.googleusercontent.com/-Im0cCpMHQek/AAAAAAAAAAI/AAAAAAAAAAA/jmdKd9_gjKY/c-rp-mo-br100/photo.jpg','14904078213800803294',2454),('AIe9_BF8X4EpR_fF6mwcYdso9awg18h5hFARjG9xUz2rCI1o1NDlhmKBw2QgPXMUxIaaYi-Ex_OskzcbPopjty-MEE-qXdiDv8hyg-CoYRuFkX1iETAgi2o','Great visit. Wonderful staff. Was in and out within 1 hour!! Keera was wonderful and very helpful!!!','2018-09-07 01:33:38.784000','2018-09-07 01:33:38.784000',5,'Kenny Brisco','https://lh4.googleusercontent.com/-Ckc4ESQVUEA/AAAAAAAAAAI/AAAAAAAAAAA/O6GgN-4s-2w/c-rp-mo-br100/photo.jpg','16590124370714063921',3739),('AIe9_BF8X4EpR_fF6mwcYdso9awg1JruuOeVp46U7U24zZVnH-gPl1ji7Q0PTG7GdaZZ3lsNqnbv8_UmpCe_r8spsrUWUG0kxKhd7VU6x_cCPkKc7Sf1E1k','went in for COVID test - it was very easy to make an appointment, very fast and friendly service','2020-07-30 00:18:47.188000','2020-07-30 00:18:47.188000',5,'Isabel Vargas','https://lh5.googleusercontent.com/-utQmyD7IsPs/AAAAAAAAAAI/AAAAAAAAAAA/Gi96PCBrlB8/c-rp-mo-br100/photo.jpg','2077061009497551125',22962),('AIe9_BF8X4EpR_fF6mwcYdso9awg2BOCSOKHSAhZn_qfzXWOVf-XLltH2TkLL2BDVYeTmt1XTACVa_KmjfKbX-nYdqPWmrmzevS7REhsT49nWx2XKCia_KU','Went to get tested for Covid and was there about an hour. Staff was very respectful. Everything was great.','2020-07-20 15:26:43.312000','2020-07-20 15:26:43.312000',5,'David Martin','https://lh3.googleusercontent.com/-zgBALN-gSDY/AAAAAAAAAAI/AAAAAAAAAAA/i0T358tfL1A/c-rp-mo-br100/photo.jpg','6521947413723274945',22878),('AIe9_BF8X4EpR_fF6mwcYdso9awg2GzcNXj-P3MxeRwrK36mvZw5fUY8mCXwYbJ0LRs1mipV6PVmeI6pLJKN05kVVNrM1VzccnXCCTgBDfCzMyZ7leUzxLE','This place is amazing!! The employees made it feel like home. Special thanks to Dr. Patel, Sarah G, Fatima B, And Tanishia W for being so amazing.','2019-08-21 02:50:19.924000','2019-08-21 02:50:19.924000',5,'Elaina Garcia','https://lh5.googleusercontent.com/-jM4J2w6LQHk/AAAAAAAAAAI/AAAAAAAAAAA/GcLsiPa4rW8/c-rp-mo-br100/photo.jpg','17898197009688164559',5574),('AIe9_BF8X4EpR_fF6mwcYdso9awg2Xga7Qy2_pqR5m_9i122NHEylN-C7riePV_zl_dMHVkhqMs-Lxb_Tf4RZs56j7FC6m0OxhoJd-1hbEoXyDDdEpuQbvA','It was my first time coming to an Emergency Care Center and I felt welcomed walking in as I was greeted by Melissa at the front reception. Sean was very helpful and had given care beyond my expectation. Amy was wonderful diagnosing and going over with me with my symptoms and made me feel better emotionally and physically. Troy & Jessica was great with discharging me towards the end. I will be recommending this place and will be back if I need any medical help.','2019-09-09 03:53:43.451000','2019-09-09 03:53:43.451000',5,'Hampton Truong','https://lh4.googleusercontent.com/-f7CW4WJ0HCo/AAAAAAAAAAI/AAAAAAAAAAA/CY2GslcVgc8/c-rp-mo-br100/photo.jpg','16389487648212004696',2936),('AIe9_BF8X4EpR_fF6mwcYdso9awg35inaeFiQEjsgmE9xObLc2D95TH05cuVAyh33UhYZ_Ekhj9tS5ado245FbUO1lnf7PU_Y2s3xc0gqqLOer3h_AkjVfY','I enjoyed my time there. The workers were kind, patient and understanding. Dr. Elsbecker made the process go smoothly and helped for me to understand what was happening to me. Shelli T and Linda S made me smile and laugh through the pain and made me feel comfortable all through the process. Natasha N H greeted me with a smile and a happy tone and gave me all needed documentation and made payment easy.','2019-02-05 03:36:17.847000','2019-02-05 03:36:17.847000',5,'Little Fox Sasha','https://lh5.googleusercontent.com/-Wqm8fCZkKgg/AAAAAAAAAAI/AAAAAAAAAAA/L11PkceFChY/c-rp-mo-br100/photo.jpg','16891069708558046635',4355),('AIe9_BF8X4EpR_fF6mwcYdso9awg38K82S97jYGIBLIXlhfLN-nDnLo8W7uRma5A3ZOr2gfeJxcXbaIONiwT2_duPYzw5KvJexTnvs6H-Ai3LWkEWEon_nQ','Our son woke up at midnight on Christmas Eve, throwing up. This continued throughout the day about every 30 minutes. We were out of town and had no idea where to take him. We were very concerned about dehydration. He kept drinking fluids but threw up every time. My parents recommended we take him to SignatureCare, as it is down the road from their house. We were nervous about taking him anywhere in Midland, as we had not heard very positive feedback about the Medical Staff in Midland. My husband went ahead and took our son to SignatureCare and I met them later. We were greeted with a friendly face and wonderful staff. Dr. Nylund, the Nurse and the Technician that checked my son were all phenomenal! We got called right back to a room and immediately someone was there to start checking him over. When I arrived, the staff already knew I was coming and I was told to go right back to the nurses station. Before I even got to the nurses station, someone greeted me at the door, knowing who I was there for and I was taken directly to the room. My son was thoroughly checked over, given some medicine, some gatorade and water, and told to sip every so many minutes to make sure it stayed down. Once we had been there about 45 minutes, the doctor, herself, brought him a couple different choices of crackers. We stayed about another 30 minutes to make sure those stayed down and then we were allowed to leave. We are so thankful to the staff at SignatureCare for making our out of town Emergency Experience so smooth.','2019-01-19 01:58:53.032000','2019-01-19 01:58:53.032000',5,'Josh and Rashelle Cobble','https://lh5.googleusercontent.com/-ogPdnnY875U/AAAAAAAAAAI/AAAAAAAAAAA/zurXj5Qawmw/c-rp-mo-br100/photo.jpg','13486358490203335051',1102),('AIe9_BF8X4EpR_fF6mwcYdso9awg3BC3kPbC69o3th-wdwDJZM9TpaNuRaSvRbWwknipqW4id_ObSV_61TOpVSF6hYKZlR5tf_WFhbpVyMTMAa6oefw_2TI','Had an amazing experience everyone was great everything was explained perfectly good. Got to thank everyone that helped with my NONO issue Ashley Elaine Fatima Sarah thank you all for everything especially the complimentary COOKIES!!!!','2019-10-26 01:34:26.724000','2019-10-26 01:34:26.724000',5,'Jose Obregon','https://lh4.googleusercontent.com/-YgEcGeCfJxE/AAAAAAAAAAI/AAAAAAAAAAA/Uk23jfznuKY/c-rp-mo-br100/photo.jpg','17898197009688164559',5477),('AIe9_BF8X4EpR_fF6mwcYdso9awg3rB_FKdbL6Wu6ZicefaYmmVXkoOT3q8BZB3pEm9-jvrmOopWlATkVYYqasHJlTFE2RPod63zuN5_8SaS7mIwLrTSFIc','This place is awesome !!! my son needed stitches and they got him in right away and very friendly staff . Many thanks to Dr. Nguyen and Manny that attended to him','2019-07-12 19:17:14.767000','2019-07-12 19:17:14.767000',5,'Hugo Rodriguez','https://lh6.googleusercontent.com/--7sKY1-RJto/AAAAAAAAAAI/AAAAAAAAAAA/6IVkMoL-QHo/c-rp-mo-br100/photo.jpg','6521947413723274945',8199),('AIe9_BF8X4EpR_fF6mwcYdso9awg3s1qFaQHvMFIyv2ze6ZHNsEDvo3jr4NVJckfHfMUl_D7rgxllkpjlA2L9dpnCdls5AJMbQzuZIB6xVyhjLCI19zYKRE',NULL,'2020-01-21 20:02:21.076000','2020-01-21 20:02:21.076000',5,'Keith Kiker','https://lh4.googleusercontent.com/-5uQqmWGLi0A/AAAAAAAAAAI/AAAAAAAAAAA/-PL-aEsi5Ig/c-rp-mo-br100/photo.jpg','3272657195432704501',10292),('AIe9_BF8X4EpR_fF6mwcYdso9awg3Vool4xFmqbo0ng2dEReUHauklFjlcT4xQIHLzK7Vw4wBttrb-igwewGSg0BEu8pBXNjQexJ5-7-qhG1-N89Zj1BBrs','My sister was admitted today and Dr. Ybarra, Natalia, Stephanie and Nurse Rollie took such good care of her. #verygrateful','2020-02-11 00:36:20.578000','2020-02-11 00:36:20.578000',5,'Kae Shakir','https://lh5.googleusercontent.com/-7desgUhhBPA/AAAAAAAAAAI/AAAAAAAAAAA/5rpN2txeDZc/c-rp-mo-br100/photo.jpg','8679688254631342173',14753),('AIe9_BF8X4EpR_fF6mwcYdso9awg3VS3di4nf4fXMHzZkG73hK74SLLdpNWDzi0syx4iX0_kr0nOYhtnp7es_VoWhQeBcRCEMtEtdKYzYvSP6My5XRGYj38','This was the best clinic i ever went','2019-04-16 21:47:02.163000','2019-04-16 21:47:02.163000',5,'Rafa Rt','https://lh6.googleusercontent.com/-XJmlFQxjqSk/AAAAAAAAAAI/AAAAAAAAAAA/4r36vAblgx0/c-rp-mo-br100/photo.jpg','3511292162159714121',7363),('AIe9_BF8X4EpR_fF6mwcYdso9awg40FcF7aa9CUnhh-uiFIfcs8Sxc3c3uYD8wMknCaas6F0s2cF4kHvJUJm9bugo3iH6i7TBcApXJyVVCfgxpcaxy4N8R4',NULL,'2018-08-20 19:00:10.491000','2018-08-20 19:00:10.491000',5,'Tabetha Borgfeld','https://lh4.googleusercontent.com/-5qbjSPbxBcU/AAAAAAAAAAI/AAAAAAAAAAA/DjUQRzbz4ZQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3785),('AIe9_BF8X4EpR_fF6mwcYdso9awg46l5r8A37ito51zbq0P2mFamPR1-5-9Rj9jrTWurfCufNOZJe1x-6k93bK076OthiwbDWiRB8qkrCBGxUix7AuVppus','I love this place. There\'s never a waiting period. Very attentive staff. Dr. Thomas, Sherri, Toni, Bryan,Ricardo and Amanda are truly caring and goes above and beyond.Thank you guys.','2018-10-18 02:26:57.010000','2018-10-18 02:26:57.010000',5,'Erica Kizzee','https://lh5.googleusercontent.com/-Xu0ZwgPdQc0/AAAAAAAAAAI/AAAAAAAAAAA/1lL9X3uZ558/c-rp-mo-br100/photo.jpg','14567670160750071148',1469),('AIe9_BF8X4EpR_fF6mwcYdso9awg4CHGnz7emf8f4s4rl9Rs6BiFgoStdwoEs4xIqpg9has6cIUMmyqFx4i4Lj2so9TfMgYhze-A5YaFZknTul43CjO1TZs','Dr. Nilang Patel was a very awesome and attentive with my dad when we brought him in. Also his nurse Cris was very attentive at all times! We loved the experience here. The receptionist they have Amy is very sweet makes you feel at home. Love this place.','2019-03-21 05:43:24.084000','2019-03-21 05:43:24.084000',5,'Aracely Saldana','https://lh4.googleusercontent.com/-D8_mQ23_0hg/AAAAAAAAAAI/AAAAAAAAAAA/qvLP6ovgXyE/c-rp-mo-br100/photo.jpg','3511292162159714121',7376),('AIe9_BF8X4EpR_fF6mwcYdso9awg4h3mHGg05vl2asbdrvp6GM_J0b2zHe715USEPYWjvaWmyNehF0hpCgLbLUmsX5O32XS2abBWMbCnzagxmN2ynTOrcsY','I would like to give a special thank you to Dr.Vaagenes and staff Andrew, David,Erin, and Sita for treating me and my daughter to exceptional medical care. We appreciate the timely care that was provided.','2019-02-07 05:24:37.987000','2019-02-07 05:24:37.987000',5,'andrea gonzales','https://lh6.googleusercontent.com/-fAxH990h9ms/AAAAAAAAAAI/AAAAAAAAAAA/RaQ0rmNLHbA/c-rp-mo-br100/photo.jpg','13486358490203335051',1070),('AIe9_BF8X4EpR_fF6mwcYdso9awg4LcleIPAxnqZWD5Y__7mNcPSSiGDijkDlPj9WNMRThLkdVsCxIJHyxBcUVO3InSth1dXQDLx7AbGa5iITVLOhD1HhhI',NULL,'2018-02-27 23:47:45.686000','2018-02-27 23:47:45.686000',5,'Ana Benitez','https://lh3.googleusercontent.com/-9UCgPmu0o5I/AAAAAAAAAAI/AAAAAAAAAAA/unChfwHc3TU/c-rp-mo-br100/photo.jpg','17394740196501090048',4877),('AIe9_BF8X4EpR_fF6mwcYdso9awg4M9KDp80gFbfvVeYEUbZgR3RPpH1p_E3iSk6eobUoUkG9O0u9qLXy9St7utztfbltOohu41z-mpn1yOmkE8F3fvfqJk','I have a very good experience to visit here and love their hospitality they are very professional. Especially I am very thankful to dr Mavldi and his staff Alvean, and Tricia.','2019-06-12 14:53:01.479000','2019-06-12 14:53:01.479000',5,'Samina Yasmin','https://lh3.googleusercontent.com/-9Jd1Y6HTYc8/AAAAAAAAAAI/AAAAAAAAAAA/4z0yY6_BFaA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awg4wKgbolpG8HS17bFmBbk5DYpOXyl3UqUpqeLXa0PvddRdHQkKCftjHxpnVRI2dTEN1LhiuaZugEupt9aEYxgnOEIYP4','Very good experience. The receptionist was super nice and got me in right away and I was seen my Dr.Harjai in less than 10 min of arrival.Both the nurse and rad tech were super helpful and offered even warm blankets. Defiantly would recommend.','2019-12-11 20:02:58.167000','2019-12-11 20:02:58.167000',5,'Chris Mendez','https://lh3.googleusercontent.com/-dM1nsM2K1nw/AAAAAAAAAAI/AAAAAAAAAAA/YKRcYd798q4/c-rp-mo-br100/photo.jpg','16590124370714063921',3024),('AIe9_BF8X4EpR_fF6mwcYdso9awg58CwR5RoHBBjhK0_BK7OVCEkLjLwyLWz8Xy2vd7GbydP3JASOx-dWAHeTLNGH-rTNZXF0IDRyEawrnXGlKJuiq7Mo7c','I am very upset and disappointed. I completely understand that the system is overrun and that health care workers are very overwhelmed. However, there are things that can be helped. Such as: please update your website and answering message with the updated procedures. It currently says that if you are symptomatic to call ahead and you will be escorted to a private room and that you do not need an appointment for testing. BEWARE! This is not true. I have a fever and was exposed a week and a half ago to someone that is confirmed positive for Coronavirus. I tried to call ahead and there were 69 people on the line ahead of me and I was only a few minutes away. I showed up to a line outside the door and was told by the security guard that I would have to wait in the line to make an appointment for Coronavirus testing. I asked him, “even if I’m symptomatic?” He said you’ll have to talk to them. So sick and not feeling well, I waited outside, standing in a line still believing what I had heard and read that I would be seen at some point. Mind you, I realize there are so many people and I knew I would be waiting. I didn’t expect to be seen immediately and would have patiently waited my turn. I finally get to the inside and the front desk girl was so unnecessarily rude. Upsetting, because all of my past experiences with Signature Care have been so pleasant. This used to be the place that I would choose to go. She doesn’t even let me tell her that I’m symptomatic, she cuts me off after I said I had been exposed, she just says you can wait 12-14 hours or I can make you an appointment. Then I say, but I’m also symptomatic and her response is, “well you didn’t say symptomatic.” So, I really don’t appreciate being treated so poorly but on top of that, I wouldn’t have been standing in that line, taking up her time if the information online and over the phone had been updated to the new procedures. I would have gladly waited or called to make an appointment or even better, made an appointment online like other facilities appear to be capable of doing. Instead, I am potentially putting myself or others in greater risk by standing outside in this line just because it is advertised to be a walk-in testing facility and I would like to let anyone that I may have been in contact with recently if I happen to be positive as soon as possible. Very disappointed in this company.','2020-06-29 00:01:29.219000','2020-06-29 00:01:29.219000',1,'Leah','https://lh3.googleusercontent.com/-7TBN0FUhUjg/AAAAAAAAAAI/AAAAAAAAAAA/bs0WfmsFqyc/c-rp-mo-br100/photo.jpg','16590124370714063921',21412),('AIe9_BF8X4EpR_fF6mwcYdso9awg5QXe3ZhaUus0oMb9D-rKJEzkBBH6u7Ui2WqDG-4LXx37KZ5kdWJndXkIip2tjm0UuE193TC9lHAm2YAg0UBznLDe3CI',NULL,'2017-07-01 06:37:09.783000','2017-07-01 06:37:09.783000',5,'Emily Granger','https://lh3.googleusercontent.com/-CeLCxzutnEI/AAAAAAAAAAI/AAAAAAAAAAA/dccZcnqeFSk/c-rp-mo-br100/photo.jpg','16590124370714063921',3972),('AIe9_BF8X4EpR_fF6mwcYdso9awg5R4eX1_nS8XPyMKRoec1l7cWVgs4HerOHkEp-EnDpkyV3rqY_sm-U3AR-9sRrnLJJ1u2OAU9kDgu7fW1Ppbz8wrgaQI',NULL,'2017-11-19 16:49:52.867000','2017-11-19 16:49:52.867000',5,'Rosemary Vandercher','https://lh4.googleusercontent.com/-y5Rs2DT9I6c/AAAAAAAAAAI/AAAAAAAAAAA/U-FODiXLCzA/c-rp-mo-br100/photo.jpg','3511292162159714121',7759),('AIe9_BF8X4EpR_fF6mwcYdso9awg5ThZtmvOwm7pSD0oczdYe70Onf4fk_83W7HRWv6YJ4oJBAuGGDd3gD2jH2mTjuEIaMElRplCfJ0tSF_UtN-gWgh_sU8','Sindy took excellent care for us at the front desk. She was quick to enter is in the system and everyone was kind in their care for us. We really appreciate their care for us.','2020-01-08 19:00:13.576000','2020-01-08 19:00:13.576000',5,'Irma Limas','https://lh4.googleusercontent.com/-MXHmdO2i86E/AAAAAAAAAAI/AAAAAAAAAAA/AKEo1CeVO0M/c-rp-mo-br100/photo.jpg','14567670160750071148',9439),('AIe9_BF8X4EpR_fF6mwcYdso9awg5VoxP6NZ0EQYJLvmpThZnKwzUnC-Gakoano2cuOjYFyoYmAmyWGTyYAUWwtLK6sx1KKQvRLr8GfnNQpqUEPIkJW5z4M','The staff and doctors are wonderful! Fast service!','2020-01-12 04:14:54.848000','2020-01-12 04:14:54.848000',5,'April Moon','https://lh4.googleusercontent.com/-Ip8ZIXl0NZw/AAAAAAAAAAI/AAAAAAAAAAA/UsS4whlZyjg/c-rp-mo-br100/photo.jpg','13486358490203335051',9466),('AIe9_BF8X4EpR_fF6mwcYdso9awg68CXmGksZJxdBg32rqL9qfP8d5B7KV8piobWwi97MSs0c-Jn-VnPy05OhvpwtZwedTRsZlsgbmicBDQUM08qtJ-Jvwg','This is by far the worst Covid 19 testing location there is. I scheduled online for a Covid test the available time they had was 1am and I got here at 12:45am filled out my paperwork and it’s now 5am and I still haven’t been seen I was told to wait in my car and someone would call me. I think they forgot me or they are seriously unorganized. Don’t come here I did my first test at City Doc it was much faster but now I want to see if I’m Covid free with the rapid test and I’m waiting forever ain’t nothing rapid about this. And the Also they charged me $10 to be on the list to wait.','2020-07-11 10:32:32.992000','2020-07-11 10:32:32.992000',1,'Divo Productions','https://lh5.googleusercontent.com/-dwyu80HTPeQ/AAAAAAAAAAI/AAAAAAAAAAA/bPT7_jjsyzM/c-rp-mo-br100/photo.jpg','14748677429039074158',21589),('AIe9_BF8X4EpR_fF6mwcYdso9awg6PeEg7XbpUQTRq1gPMjqZ7USUPhY9DixMTvSAACKaVYlIVPk0kOBONs8XQQ9Vgu-0wybhQUSpSbZPSGNoIu7z1TB0_0','Great Experience! Dr. Das and his staff were lightning fast and extremely polite','2020-07-31 23:03:12.041000','2020-07-31 23:03:12.041000',5,'Trevor Hunt','https://lh4.googleusercontent.com/-ZX_vdph41XU/AAAAAAAAAAI/AAAAAAAAAAA/G2tNovH4CK4/c-rp-mo-br100/photo.jpg','14748677429039074158',21891),('AIe9_BF8X4EpR_fF6mwcYdso9awg72Rzg8b-FubtGfOSo0oglRbDfp7tb5dPH-BsdYM2eeRH4I_U4vdQ1XMgD4x6tVxDTdEEMeiL_0mD74Olm08xzrrweuE','Great job to the staff! \nDr. Grinblatas\nRegistration: Veronica \nRN: Dawn and Gina\nER TECH: Norma\nRAD TECH: Jaqueline','2020-02-18 22:40:08.573000','2020-02-18 22:40:08.573000',5,'Darline Nisar','https://lh3.googleusercontent.com/-7ZOQrPnrg5A/AAAAAAAAAAI/AAAAAAAAAAA/fsckSir9bmU/c-rp-mo-br100/photo.jpg','3511292162159714121',14410),('AIe9_BF8X4EpR_fF6mwcYdso9awg7c1zd8q4ZbcwbOJZrS2tOeqeWHifoMdnLQeaePdH2n431nm2GFuZ5zK5C4IS_TPr6xUp2CooZG7Ol8df9RFlFIj4Zeg','Dr. Das was very helpful and nice facility with welcoming atmosphere','2020-07-31 15:14:23.471000','2020-07-31 15:14:23.471000',5,'Yuriko Ortiz','https://lh3.googleusercontent.com/-Y_4bFFoec54/AAAAAAAAAAI/AAAAAAAAAAA/c3hB8eIQ80A/c-rp-mo-br100/photo.jpg','14748677429039074158',22362),('AIe9_BF8X4EpR_fF6mwcYdso9awg7jsazIZPQ-Pa31E9cjNuUpXwWnrQyWPA0gswJPmdZkp5IANK0uY9n4Rayrz7n-eA8DkAC3Mcoh1S5Dtl7peKk5mA7UA','They took great care of me when i was so sick. Got me meds and i was able to return to work the next day','2018-12-20 22:44:25.422000','2018-12-20 22:44:25.422000',5,'Nona Whitecross','https://lh4.googleusercontent.com/-kufz6rtS8G4/AAAAAAAAAAI/AAAAAAAAAAA/26Um4yWuUgY/c-rp-mo-br100/photo.jpg','14567670160750071148',1448),('AIe9_BF8X4EpR_fF6mwcYdso9awg7n5EbGEqR3DQDUjluA1p2ozeZGAIGm728021CsRvDBlEWlyKTAdSLPlo5b5U5iXlORjMTcW4nXn4T1qKulttKPfh7QE','nurses were excellent and the staff was amazing. very kind people with fast service! there was no wait and the doctor came immediately once i was walked to the back. definitely recommend.','2017-02-12 22:57:55.330000','2017-02-12 22:57:55.330000',5,'Anneliese Johansson','https://lh4.googleusercontent.com/-N0zsHwkjIZc/AAAAAAAAAAI/AAAAAAAAAAA/LG__WGWfhWM/c-rp-mo-br100/photo.jpg','16590124370714063921',4053),('AIe9_BF8X4EpR_fF6mwcYdso9awg7xgdfN6zC6aQ8ar7luJSXuuCkiN6ClVqhp4D41G5lFwJf3mc9Fc_ehVPN4Gd9ohfqcFHlmibaXfbjxjAxAIPN_AQJrQ','DR Feig and nurse sarra were amazing people and helped us so much! Highly recommend it','2019-12-25 09:31:05.473000','2019-12-25 09:31:05.473000',5,'Jonathan Renderos-Rubio','https://lh3.googleusercontent.com/-4WLn603ifqk/AAAAAAAAAAI/AAAAAAAAAAA/q9mXjvl4gGU/c-rp-mo-br100/photo.jpg','12541597562633926366',303),('AIe9_BF8X4EpR_fF6mwcYdso9awg7XkB81qDdbFKXAXdHlZ2VLpRhTR9p-3bXw2Gq--yFW_EDaxPjh9sPJ_cjgM1lnDbhyDIhbTpOP5qw7ucBCqvLLOKFW4','This emergency center was a awesome experience and didn’t have to wait . Amy was Awesome as well Dr.leavitt & Alvean, Keith.','2019-11-17 17:19:39.456000','2019-11-17 17:19:39.456000',5,'Ruby Rojas','https://lh5.googleusercontent.com/-hWQCbAHeqKM/AAAAAAAAAAI/AAAAAAAAAAA/SFfRoA21kcc/c-rp-mo-br100/photo.jpg','16389487648212004696',2676),('AIe9_BF8X4EpR_fF6mwcYdso9awg81nGgg2amhcDJyPqQ5yS4wJi5gp5SxOff6luPAPa9BPHihwHiP7WS6KBWt66XWq1fCXhK0VeiDbBLgBJztR9TJAAl5Q','Dr. Das, Dr. Yost, Kara, Lucas, Kim, Jennifer, Sergio and Kelly were all wonderful and took excellent care of me!!','2019-04-06 14:02:55.140000','2019-04-06 14:02:55.140000',5,'yes we Hignight','https://lh5.googleusercontent.com/-AIAaQ7guUwI/AAAAAAAAAAI/AAAAAAAAAAA/sePYbBMXKIU/c-rp-mo-br100/photo.jpg','3272657195432704501',6979),('AIe9_BF8X4EpR_fF6mwcYdso9awg88Hq9mUn07nL89_4hyL_C2NATEHdQw483VtCCM_SbpwiPpT69OSh_QYhuyci0lFVGRRyHKc7ntGiOnE3v2WZhtHtipg','Went there for a COVID test. Friendly staff, and very quick for both the waiting, test, and results!','2020-07-19 23:18:26.636000','2020-07-19 23:18:26.636000',5,'Kat','https://lh3.googleusercontent.com/-O-xjUGnAmoU/AAAAAAAAAAI/AAAAAAAAAAA/0wQzRgdVPbU/c-rp-mo-br100/photo.jpg','14748677429039074158',21684),('AIe9_BF8X4EpR_fF6mwcYdso9awg8ks8vc7EZGSRtxqqM-w9ORG4Sr0FwuTwOKKV6OKJDjJspBIfr8uAkWDwx6YmS763hW-cza0fGl1uKEKZbUJ2ytyYaiY','very professional staff rapidly took care of my needs doctor and nurses were checking up on me often to make sure i was ok .','2019-09-21 05:02:40.661000','2019-09-21 05:02:40.661000',5,'jonathan lozano','https://lh5.googleusercontent.com/-_YBqKYdvKwI/AAAAAAAAAAI/AAAAAAAAAAA/0EGJWCK3YSA/c-rp-mo-br100/photo.jpg','13486358490203335051',816),('AIe9_BF8X4EpR_fF6mwcYdso9awg8lPCBP0YdukR8WDpJGkfZcACX1UfpYmo58sJC9tnUs7vz7HZQhH_Ui7Pb7LEv9rSEmS7Z1c9U8wTKGul-qSlgXg0SxA',NULL,'2020-07-07 21:19:14.146000','2020-07-07 21:19:14.146000',5,'Priscilla Meyers','https://lh3.googleusercontent.com/a-/AOh14GhGHud0zOasdR6ACFYjnkPWVF69D4sv_8Lj6YCzuA=c0x00000000-cc-rp','17394740196501090048',21421),('AIe9_BF8X4EpR_fF6mwcYdso9awg8lRt41mmzhK9Ffp3uoSeOY5Gkn21ZWcv4O2ZLgOrjF4NYFTDG42rfA6O2LWJQ6YxHOPu4UUpiZgpGSttr6cEEC_atFc','Very friendly and helpful. Quick visit and truly gave me some relief. When I walked in, I was greeted and helped by Brenda. Staff was very helpful. Dr. Smith identified my problem and truly helped me with my pain. I recommend this location to anyone who is in need of great service.','2017-12-11 13:27:07.743000','2017-12-11 13:27:07.743000',5,'Brandon Butler','https://lh5.googleusercontent.com/-n6HGel6Qoms/AAAAAAAAAAI/AAAAAAAAAAA/ceFyksQ-Yws/c-rp-mo-br100/photo.jpg','14904078213800803294',2302),('AIe9_BF8X4EpR_fF6mwcYdso9awg8mSdKRaXG_WW7Jetnq7R_SuK58RduYx_D5PB2R2JQFETtE0vGyD7VuOq2K5k_0ngCqtGVNH_XpbObhoXU359UDSyZWg','Awesome service!!','2020-02-02 10:35:36.816000','2020-02-02 10:35:36.816000',5,'Hibah Saleem','https://lh5.googleusercontent.com/-MDVGNneaM8c/AAAAAAAAAAI/AAAAAAAAAAA/h5cRfI0RQwg/c-rp-mo-br100/photo.jpg','8918455867446117794',14853),('AIe9_BF8X4EpR_fF6mwcYdso9awg8ZUhsbumft3BqT2DYgsqrr61_z8KWbjXGkvG_Sqh6ntkYVWfyiXf5vPDI_f8qoRXYPF1m-v-OCs7271qMT-g-zC79q4','Leah the ER Tech was very friendly and made the experience quick and easy. Took very good care of me and my wife.','2020-08-03 12:36:17.889000','2020-08-03 12:36:17.889000',5,'Brandon Almuina','https://lh3.googleusercontent.com/a-/AOh14Gi5BQKJwH17YrTs6lRODnsNERBLxTVMAK5K1Jis8A=c0x00000000-cc-rp','13486358490203335051',21829),('AIe9_BF8X4EpR_fF6mwcYdso9awg93T2zFvau_AOzSSE3YcKrmXsrbOFC8k_zBZg1-qEJYoDDuU_aRFe3P9DmII6qZ0S6-VYKtDhUuLf21fLg0ZPDCzvZcg','I have made a couple of visits to this facility since my family and I moved here 10 months ago. I have to say. Whether it\'s been service for my kids or myself, the team ( Dr. Elsebecker, Christina, Adam, Shelli and Chris) have been incredible. From the check in process to leaving, these guys really give 1st rate service. I appreciate that good customer service and competence is still alive.','2020-01-21 21:28:18.443000','2020-01-21 21:28:18.443000',5,'DSean Harden','https://lh5.googleusercontent.com/-2kSg0Bxwhbs/AAAAAAAAAAI/AAAAAAAAAAA/1p_QfPdYvHs/c-rp-mo-br100/photo.jpg','16891069708558046635',13981),('AIe9_BF8X4EpR_fF6mwcYdso9awg9cz0XOI1mIREXkCD2FtmY2lg2h0SNkN-CyhVdwtZ_ZCOR7KvY658WN13HyblK-kaoa-9jf2q6fEgVyU6xxRFdY1rRpk','I have been to this location twice, and they are great. Both times Jesse, the nurse helped me. He was very thorough, and extremely nice. This is the only place I\'ll go to if I have to go, and my doctors office is closed. Everyone is extremely nice, and you\'re not waiting forever to be seen.','2016-09-21 17:11:54.366000','2016-09-21 17:11:54.366000',5,'Kourtney Walsh','https://lh3.googleusercontent.com/-JjZpv4UvaPw/AAAAAAAAAAI/AAAAAAAAAAA/jD3Jz_Rcxlc/c-rp-mo-br100/photo.jpg','3511292162159714121',7937),('AIe9_BF8X4EpR_fF6mwcYdso9awg9foL4ircMwXIexRKSf9_l3nBR4Xzt8RCjObhdVe1xjSjX8ABF_8MoiE3b1itF01tSGKmC4L9p6CLjYdf-6jFVmeCPng','I was so impressed by the level of customer service and patient care during my recent visit. Everyone from Cindy at the front desk to Wendy, Selina, Eda, Coraly and Dr. Ding made me feel important and that they genuinely cared about my well-being. 100% will return in the future to get quality, efficient care.','2018-12-01 00:27:13.009000','2018-12-01 00:27:13.009000',5,'Holly Pluta','https://lh5.googleusercontent.com/-1eAT7jWjRJM/AAAAAAAAAAI/AAAAAAAAAAA/7lIPY0xjNoA/c-rp-mo-br100/photo.jpg','17394740196501090048',4757),('AIe9_BF8X4EpR_fF6mwcYdso9awg9IbAPdgs2UMFa2EDQ_BxGaB9kITPksIoN0LS1p2l8HG7lZSTqw1__o4u-aWZYRMPP0KWTh3dZp0hnqIG5oenp-PLgQg','Excellent! Kendra at the front desk was exceptionally helpful and got my friend a wheelchair within like 30 seconds of us being here. The entire process was made easy and understandable!','2019-11-23 06:03:53.385000','2019-11-23 06:03:53.385000',5,'Peyton Liebler','https://lh5.googleusercontent.com/-FIFtAeJDyrU/AAAAAAAAAAI/AAAAAAAAAAA/iVxrm067ksM/c-rp-mo-br100/photo.jpg','16590124370714063921',3080),('AIe9_BF8X4EpR_fF6mwcYdso9awg9OcRvj6DeOwM9EDieyJtYYw9dJJTJi6fcqUrFwlYp7qBNaqTra3IlUrIR2DUh2rBZ2ZhbO892bz7aJK4-VWpvpft6IQ','What a difference people make. When I got there I was greeted with a smile from both Carly and Keana even though they where at the end of their shift and it was very late. They still made sure that I felt welcome and they were very efficient and professional. The whole staff were great. Thank you very much.','2020-07-08 15:01:25.071000','2020-07-08 15:01:25.071000',5,'Carsten Middelhede','https://lh4.googleusercontent.com/-SSSDgVxrEyE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckgmf7NLQZNmB9Z3zK3B1BkBV3YMw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21333),('AIe9_BF8X4EpR_fF6mwcYdso9awg9R1NzvPkd5fwYiKDSyKYbC9Ws8X_9lLf_QVIL3VAvxcrCjqDzLT4nbQXeU88qmTE3pUHW1GZ4uH7ljnFt4maXqtrc3Q','They were patient and they took very good care of my friend with the stitches. Thank you Dr.Daniels, nurses Nicole & Sholas, Dustin from radiology , Ricardo for ER and Vanessa for a wonderful visit.','2020-02-02 01:21:26.960000','2020-02-02 01:21:26.960000',5,'Elizabeth Deleon','https://lh4.googleusercontent.com/-8x52-GdiSu4/AAAAAAAAAAI/AAAAAAAAAAA/de9XwMspxQE/c-rp-mo-br100/photo.jpg','14567670160750071148',13567),('AIe9_BF8X4EpR_fF6mwcYdso9awg9S8emmbX0uesDHdXlkGIJ8E_dRm6-7VxAmErASeEn7__2jWrMRB_kwAqR0f8td7mjO-0ySjxhOhJpv0S0Vepywhalm8','A soon as we walked in the receptionist welcomed us with a smile. Great service great atmosphere the nurses and doctor were wonderful.','2019-07-17 13:06:21.290000','2019-07-17 13:06:21.290000',5,'38 G11no','https://lh3.googleusercontent.com/-avxXn-G3HIw/AAAAAAAAAAI/AAAAAAAAAAA/KFsn1S2rRXA/c-rp-mo-br100/photo.jpg','8918455867446117794',9089),('AIe9_BF8X4EpR_fF6mwcYdso9awg9uCZE8gLeLVpXvOV8VqqfnuSZacd__ffawRqpWhA8DfPSbE-ItSdB7qgI3mYyi0ZD_PFVacHp7_6zdZFkorLiwr_oY4','Was in with my granddaughter. Daniels, Keira, and Pete took care of her and I couldn’t ask for better care. I will come back here if we need to','2020-02-23 04:10:39.937000','2020-02-23 04:10:39.937000',5,'Daniel H','https://lh5.googleusercontent.com/-k-K7n73f2VA/AAAAAAAAAAI/AAAAAAAAAAA/RLiTgmQWnk4/c-rp-mo-br100/photo.jpg','6521947413723274945',14558),('AIe9_BF8X4EpR_fF6mwcYdso9awg9vCHoITfq4b9ARkC1MnBfLP0RUFWN1HRbvfrmhVMtOgONNmbLkmfY3L7vRJGi1mfHup_ThykoGkhnnDQcQx1YLdlBZw','I had an awesome experience at Signaturecare! I was very nervous about what I might be diagnosed with and the staff, nurses, and doctor were very welcoming and made me feel so much better! I\'m glad I pulled into this clinic when I wasn\'t feeling well!','2017-03-24 15:57:01.392000','2017-03-24 15:57:01.392000',5,'Corinne Gallego','https://lh6.googleusercontent.com/-Phh5qhq1MlY/AAAAAAAAAAI/AAAAAAAAAAA/_UVO4ukXKjo/c-rp-mo-br100/photo.jpg','14904078213800803294',2382),('AIe9_BF8X4EpR_fF6mwcYdso9awgA_uLC61s_DLiHukSwEx6tSy1XXEsYCoQZvta7kIILc1gJaW1QsBmsurLTD5YH0d50tFhKOpWB8rL760rLGPDQTmG0BA','They have the best and quickest service, they made me feel better than home thanks to Dr. Kotey, Rachel, Monica, Diem, and Jessica!!! ❤️❤️❤️','2018-10-04 01:31:15.756000','2018-10-04 01:31:15.756000',5,'Isabel Tavera','https://lh6.googleusercontent.com/-tUHT_LKDRs4/AAAAAAAAAAI/AAAAAAAAAAA/67xkDipN5wY/c-rp-mo-br100/photo.jpg','17394740196501090048',4775),('AIe9_BF8X4EpR_fF6mwcYdso9awgabCFMb9ghJvDMBfaMeykrB42ZevdEet1_h7jmJYz7gVKLMGp_w0O5zHBie6vNUpZjVOaYm5atgngX5p-2GhiGjKw_5M','I came in feeling pretty rough and everyone was so sweet and kind. I was brought right back with no wait. They helped to get me feeling better quickly. Appreciated the attentiveness of the many wonderful nurses and Dr. Yusuf. For any future needs they will be my first choice in the area.','2018-11-13 01:37:18.228000','2018-11-13 01:37:18.228000',5,'Leah','https://lh3.googleusercontent.com/-7TBN0FUhUjg/AAAAAAAAAAI/AAAAAAAAAAA/bs0WfmsFqyc/c-rp-mo-br100/photo.jpg','3511292162159714121',7559),('AIe9_BF8X4EpR_fF6mwcYdso9awgafSjJe51OfOljho3nLgfXx2AedJwV8M8BtTC0zDul1iB9o94xrJBEVFtpVejFkYKqfLK30gVwE9352vwg5HkSZWZe54','Greeted with care and concerns as we checked in with front desk clerk, She was polite and very helpful, Nurse was patient and helpful so as doctor the whole staff is phenomenal this is best emergency care Houston has to offer be sure to ask for the following Dr. Tran, Delicia, Duke, Reagan','2020-03-11 14:51:34.055000','2020-03-11 14:51:34.055000',5,'Mario Marles','https://lh5.googleusercontent.com/-Owku0iE7yLY/AAAAAAAAAAI/AAAAAAAAAAA/lFcJXG-3FiY/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',21216),('AIe9_BF8X4EpR_fF6mwcYdso9awgAftmxGCzRet2GKwiVgn5YrSzad1qKAEl1uoAGYScphSvgWP4GjHlfvWyRUP04Bg6mOasSa_DG6KojB78nGh044I9Co4','Westchase location staff were super nice and chipper very helpful. I came in with bp issues and was quickly treated. Staff was very understanding and good listeners. Dr. Daniels asked did she miss anything that she didn’t cover. They are also helping me find a physician because I’m a new to the city. Very awesome!!!!!\nStaff tonight includes Dr. Daniels, Brenda M, Sara A, Holly, Shaylene','2019-10-29 05:49:00.980000','2019-10-29 05:49:00.980000',5,'Amy Williams','https://lh5.googleusercontent.com/-xSu0pluAKEk/AAAAAAAAAAI/AAAAAAAAAAA/bte1CqR1noQ/c-rp-mo-br100/photo.jpg','12541597562633926366',392),('AIe9_BF8X4EpR_fF6mwcYdso9awgaG1RyzYa-IdEm3rTchk6-jMX4kfWa2Rz5r4o4pcUFVjRuzELb3_4GBfuyCJgZUrdM38YDlIOPYceivhKbeDS_eohxd0','No wait, no filling out papers before seen, Excellent care and concern and correct treatment.','2017-02-13 15:18:50.126000','2017-02-13 15:18:50.126000',5,'Nancy Muckle','https://lh3.googleusercontent.com/-AntENj-sIms/AAAAAAAAAAI/AAAAAAAAAAA/exFFYettias/c-rp-mo-br100/photo.jpg','14904078213800803294',2411),('AIe9_BF8X4EpR_fF6mwcYdso9awgagRVFsumv-8FIRDGiLl4f25ertlKofr3OyiJR5HNBNDBBflEs0lL78ZFtS6yslktBLmFnqkySIhIr1PlE3lByr05x_k','Quick registration with Stephanie! \nNurse Rollie was kind and gentle with my 6 year old! \nNatalia and Mackenzie were very sweet as well! \nWould definitely recommend this place for even the small ones!','2020-02-25 02:49:34.847000','2020-02-25 02:49:34.847000',5,'Myeasha Craven','https://lh6.googleusercontent.com/-Eb8PUpfHb50/AAAAAAAAAAI/AAAAAAAAAAA/iWSxcS1ULuc/c-rp-mo-br100/photo.jpg','8679688254631342173',14733),('AIe9_BF8X4EpR_fF6mwcYdso9awgAKtp7AKBJ4Ee9hpYiOr1KU6aFztbODwmWYW7WBDaZUejA8RoklQxNgDI8Bjz5I_KBS9G1CIdUBSqnvsd19PVrH-dGyA',NULL,'2019-05-29 00:19:14.712000','2019-05-29 00:19:14.712000',5,'Taylor Flores','https://lh6.googleusercontent.com/-JaZ3lrVb6eA/AAAAAAAAAAI/AAAAAAAAAAA/KJCUxBpcbkM/c-rp-mo-br100/photo.jpg','2694018788013845459',6142),('AIe9_BF8X4EpR_fF6mwcYdso9awgaouNU-gwCM3goH-8zA57loE4d3T0JbXgCC2g9-FB88aP5PQ6T7xVkHNAVzC0ePlLl4cgMcps8Wury7AjkK42Vxf9hb8','I went to this ER on 13th April 2015. Melinda at the front desk was very helpful in doing the initial paperwork.\nThe doctor Hung Dang and all the staff were very co operative and helpful.\nI had a major cut in left hand middle finger. The wait time was very less.\nThe doctor gave proper treatment in cleaning the wound and doing the dressing. Also, he explained me the procedure of doing the same bandage at home.\nThe facility is well equipped and I was very comfortable.\nThe nurse was polite and helpful.\nI would definitely recommend this ER.','2015-04-15 14:12:20.860000','2015-04-15 14:12:20.860000',5,'Shweta Shah','https://lh4.googleusercontent.com/-GvDpY3d2ZgE/AAAAAAAAAAI/AAAAAAAAAAA/pfSgmrME0Rk/c-rp-mo-br100/photo.jpg','17394740196501090048',5301),('AIe9_BF8X4EpR_fF6mwcYdso9awgaU9U0vZFO-mg-RKOyCP5sQ2SSIij3hvcejO-FTZSG_4Oi2onlsbiwisi3ONVoteyXn29mG3apiUOsg_4Myud-1xv_HM',NULL,'2020-07-04 14:46:45.550000','2020-07-04 14:46:45.550000',5,'John Ding','https://lh5.googleusercontent.com/-eod3MLaQbtU/AAAAAAAAAAI/AAAAAAAAAAA/dz_Z0Srw0yU/c-rp-mo-br100/photo.jpg','8918455867446117794',21499),('AIe9_BF8X4EpR_fF6mwcYdso9awgB5WG2HHbajFkbPg9ub7hRetwXwYFH6xxztO_tWUZsBmKbh8faDqQBmCUCuKgjVOnbBW2k6EFtgKs0WpadDM1Itk06v4',NULL,'2020-08-06 17:26:37.412000','2020-08-06 17:26:37.412000',5,'Stormie sampson','https://lh3.googleusercontent.com/a-/AOh14GhHYlvz-CbYsD_lgyFmXcp1nXxPeWfeisLfvV6gqg=c0x00000000-cc-rp','16590124370714063921',21982),('AIe9_BF8X4EpR_fF6mwcYdso9awgBc5PonLzWpXD0pLzBzOKrH40ii6PS7zLCs817nNRxtf9qJ3cexhKlHfaWwIQd5_UvoOyRhaFcp7P6lKWW7mJ63QIVmw','This place was super fast & super friendly. WAY better than, sitting for hours at an ER. The longest I waited for my name to be called was 6min. max. And right away, they started running tests! After being send back to my room to rest, I got offered blankets. And they offered my mom anything that she would like. That was a bonus for me. My mom was already super nervous about me being there, but having a staff like I did, really calmed her. \nDR. SOLI, Jesus (front desk), Rachel A. & Vanya Joy were very professional, helpful & nice!\n\nEveryone here gave me & my mom a great experience. Definitely will be back IF neeeded :)','2019-07-16 11:47:06.242000','2019-07-16 11:47:06.242000',5,'Jennifer Ponce','https://lh6.googleusercontent.com/-28s0nwo86JY/AAAAAAAAAAI/AAAAAAAAAAA/Ob8AFY9A33w/c-rp-mo-br100/photo.jpg','17394740196501090048',4629),('AIe9_BF8X4EpR_fF6mwcYdso9awgbDZhnLsZrJogjt5LFREgSJuo3Rxma4ZUQz2QszoQPLLV5GA4TRqUrE5MgCMPo_95VXr12pcc_-qEeOr00w0NaFKux7c','Took my girlfriend here when she cut her hand badly. Dr. Ortiz and the entire staff that helped us were incredibly professional and caring. It was the quickest experience ive ever had at a doctors office. I can’t say enough good things about the experience.','2018-11-02 03:40:29.087000','2018-11-02 03:40:29.087000',5,'Paul Darrow','https://lh3.googleusercontent.com/-bMB7XAGOwBk/AAAAAAAAAAI/AAAAAAAAAAA/T_887xLCgPI/c-rp-mo-br100/photo.jpg','14904078213800803294',2202),('AIe9_BF8X4EpR_fF6mwcYdso9awgBLQkv2H6z5_GAfjHcm4hFCIsg9iuYsWR2Gh2eWXGjMGDnK0MYzuOWetXuEXSXpzdpRZ4SaK1iWMEsQlT-iFZqJltU34',NULL,'2020-03-04 14:41:37.961000','2020-03-04 14:41:37.961000',5,'Peter Ejeh','https://lh6.googleusercontent.com/-fIVWmLicEfo/AAAAAAAAAAI/AAAAAAAAAAA/Y41E2Lx-iNk/c-rp-mo-br100/photo.jpg','6521947413723274945',14506),('AIe9_BF8X4EpR_fF6mwcYdso9awgBOfIOPx4xginihwnRlTLskp-nhwaymdIhCgMIPAwfFyqgwVBbMgsKPteFIA9BaIeRYTUraWONAt6TXufhyPAH9CqxMI','From the moment I walked through the door, I was greeted, with a smile, by Elida, the front desk secretary. I had fractured toe, from a fall. I was told to be seated, but before I made it to the seat, they called me to the back. The entire staff was caring, compassionate, professional and prompt. I was diagnosed, \nX rayed, treated and discharged within one hour. Thank you to Dr. Appiah, Jani(RN), and Marcus(radiology). You guys rock. 5 Star Staff at SignatureCare Emergency Center at Cypress Creek Parkway.','2019-04-11 01:07:55.185000','2019-04-11 01:07:55.185000',5,'Sherry Chryar','https://lh3.googleusercontent.com/-AkH2kX2FJuU/AAAAAAAAAAI/AAAAAAAAAAA/R4tWX6zI80k/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awgBOKIOQtueS3oeFnBevNmffNz58cDWSmaqqMSSQkO2IQvp-oGxYGJ9KN8INhAxd6jUp29ck_NoExGiva6eHIdVVz8Jfg','Good. Quick. Fast. Nice','2019-11-20 16:40:38.932000','2019-11-20 16:40:38.932000',5,'Tishany Lampley','https://lh3.googleusercontent.com/-LF-yPjD7Cao/AAAAAAAAAAI/AAAAAAAAAAA/nfw4cysS1M4/c-rp-mo-br100/photo.jpg','16389487648212004696',2651),('AIe9_BF8X4EpR_fF6mwcYdso9awgbyT6Zrii3veOl1xpspHzSAOwH3MRVV3qWqWj0atFadeBVlkf45T3pTHcSzfOwS9q__5l5LHykPny6l7_PHVl9D_t824','Registration:Alicia \nNurse:sussie \nTech:Matt \nAll staff members did a good job ! Doctor Jordan thank you you guys were fast my child was happy after seeing you! Thumbs up guys .','2019-05-26 20:36:52.348000','2019-05-26 20:36:52.348000',5,'Pearl Sweet Girl','https://lh6.googleusercontent.com/-Q4k14rFT2tk/AAAAAAAAAAI/AAAAAAAAAAA/sH_PGz2yTjc/c-rp-mo-br100/photo.jpg','8626688543755174284',8471),('AIe9_BF8X4EpR_fF6mwcYdso9awgc73KXo0UQXMXHYBYfm-vLgiQplrIDbpKgSaiw70mjKAIfjAoQPsgtmRWqQcOO_o5XBRFpQdO43w0oMvPkv4uN5gUzEM','It was very fast, I didn\'t have to wait at all. Everyone was very polite and welcoming!','2018-06-12 19:13:34.225000','2018-06-12 19:13:34.225000',5,'adriana261983','https://lh3.googleusercontent.com/-kdf2bc_2H_4/AAAAAAAAAAI/AAAAAAAAAAA/1SV0trLwM1U/c-rp-mo-br100/photo.jpg','16590124370714063921',3813),('AIe9_BF8X4EpR_fF6mwcYdso9awgCAXvjqhoSAOth-rWfjTF6bYuNPXcrOxVEtKoS8tkX42CgX9kHnhChiyc7oEI3ftV7Jg1v_UC0nngYraymq9ioRkbXdY','UPDATE 2: Sorry, I was probably unclear in previous update. I am not frustrated with the insurance co pay, I am frustrated with the fact that the front of house staff at Signature Care informed me that the service I would be receiving at their facility would be covered by my urgent care copay (which is $50). I asked repeatedly just to be sure, and they assured me it would be. When I worked with the billing department later they were of no help in resolving this issue and placed all the blame on me, despite the misinformation I was given. The actual care I received from doctors/nurses was exceptional.. unfortunately they see but a fraction of the ludicrous $2000 sum.\n\nUPDATE: crooks: $2000 bill for 20 minutes of work to do 5 stitches. After they told me my copay would cover. Billing department tried to keep me quiet by taking off a small percentage and a payment plan.\n\nHad my ear split open from a hockey puck on a Saturday morning and came in here a couple hours after it happened. Virtually no wait to be taken back and diagnosed, cleaned, then a few shots of lidocaine, and then a quick procedure to put in 5 sutures. The only thing was a 20-30 minute wait after the procedure for the nurse to come back in and clean my ear, and she didn\'t do the best job. Other than that this place was great; little to no waits, very clear and friendly care from everyone there (front desk, nurses, and doctor). Unless you\'re having a severe medical injury, come here in lieu of a hospital ER.','2017-04-19 15:01:24.227000','2017-04-19 15:01:24.227000',1,'Alex Stitt','https://lh4.googleusercontent.com/-emcAVeyYHRw/AAAAAAAAAAI/AAAAAAAAAAA/RMejb9gYE0c/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7838),('AIe9_BF8X4EpR_fF6mwcYdso9awgcb_DU4nk_Ti0q-mb5cRtR_qv2rWRi5AoDkVBeGnllQDagB-P69vGkUoojU-Iiwq6bIVPlzesa758h3O91sjtcTHfJlg','First off i want to thank the staff of signature care for takeing such good care of me during my time of illness . The staff of Dr Edwards Maaz Eda Salena and Barbara for seeing to my needs such professionalism and i rank this facility 5 stars if there were more stars to give i would definitely give them a special thanks to the staff i encountered when i first arrived sunday night as well thank for saveing my life','2019-02-02 17:28:14.727000','2019-02-02 17:28:14.727000',5,'Lamonte Hicks','https://lh5.googleusercontent.com/-3eUEGE04K1o/AAAAAAAAAAI/AAAAAAAAAAA/DCdshBk2uSE/c-rp-mo-br100/photo.jpg','17394740196501090048',4728),('AIe9_BF8X4EpR_fF6mwcYdso9awgcccvz9uIQSgIQH0tWT8qKVr5VnBf72mt13WDsZSvBRUaIxcG57DgtexU05vLPfWS1wPT1xEvvwJCNjCvW5M465zaKSk','Good service \nSpecial thanks to Kendra, Jacob, and Dr. Vackey','2019-11-30 19:31:26.919000','2019-11-30 19:31:26.919000',5,'Evanna Williams','https://lh6.googleusercontent.com/-7CxUoKTotHQ/AAAAAAAAAAI/AAAAAAAAAAA/6Ep1ZOClNnw/c-rp-mo-br100/photo.jpg','16590124370714063921',3060),('AIe9_BF8X4EpR_fF6mwcYdso9awgcDojtLMYp7yVrBb8uzTmmg_xCA1WigqZ6Z7Fk-BtQvcZpylLg0oujdRGgBlPPIE0BXQUGYtsEgRbrm8KjujfN3lE5YU','Hi am in here right now','2019-10-28 14:42:02.214000','2019-10-28 14:42:02.214000',4,'Khmer Texas Going Home 2040','https://lh6.googleusercontent.com/-ca7hiVUatUc/AAAAAAAAAAI/AAAAAAAAAAA/RuHIz6_bQdc/c-rp-mo-br100/photo.jpg','14904078213800803294',13670),('AIe9_BF8X4EpR_fF6mwcYdso9awgcGSAWNTHe3xw_tPRFAsEA-eIc1Huhkra9q1_MhSDwcSsTVg_GA0v2FcyVbLTgnopyAH6doivJnguMDzm275A0du8Eq0','This is a very clean newer facility with ample parking; staffed with caring, competent medical professionals. I was in an out in a timely manner with what I am confident was an accurate diagnosis. Recommendations and advisement were on point.','2019-08-31 16:24:32.272000','2019-08-31 16:24:32.272000',5,'g _','https://lh4.googleusercontent.com/-6hcwXcI5wq0/AAAAAAAAAAI/AAAAAAAAAAA/W3HccODUUZA/c-rp-mo-br100/photo.jpg','2694018788013845459',6076),('AIe9_BF8X4EpR_fF6mwcYdso9awgciKiix-PfcqIlGCuYJkj_nkEYE74t6VxyXv7aB4ChuERzolXtDjuBA-PvNRLyJ-7WQYKwn2Uw3v3Hd87bjo3kORj_Dw','Alway fast helpful and polite love RAD Bryan RNs Sherri and Meredith also Dr Miller always a great service and over all staff gets 5 stars love my visits here!','2018-08-12 03:04:30.119000','2018-08-12 03:04:30.119000',5,'Arlet Vazquez','https://lh4.googleusercontent.com/-dOlFVL38xtA/AAAAAAAAAAI/AAAAAAAAAAA/X1zsaCxYXdE/c-rp-mo-br100/photo.jpg','14567670160750071148',1569),('AIe9_BF8X4EpR_fF6mwcYdso9awgCJGbijwzGPvcGQ6N-tccLrNrHOHP1LxIYn3kHu51PBZIOuOHH2xW6UAPyE5B4x7PuCw5CZW-3Fj39-qxjV3f__s0yzE','The wait wasn\'t long at all and the doctor listened to everything I had to say. She was very thorough with her questions and made sure she had all the information she needed before treating me. The staff was kind and didn\'t make anything feel scary/uncomfortable! Dee was really sweet and made sure that we had everything we needed!','2019-06-25 19:57:18.685000','2019-06-25 19:57:18.685000',5,'Ash Nash','https://lh4.googleusercontent.com/-o_jlxV7cmnE/AAAAAAAAAAI/AAAAAAAAAAA/l7Dsp9D5TKQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7285),('AIe9_BF8X4EpR_fF6mwcYdso9awgCSxVnFWYLSDJbTrvrPBK5dUESC7KHkcGoOkG1SOxBmlsFbOcSxESE2IWlxHIe_zmB5AfmGjJS3bXNR-d7QlxEQcaw5o','The service was fast and very professional. Dr Chen, Malissa, Stephanie and Scott were very helpful.','2019-08-01 15:34:55.812000','2019-08-01 15:34:55.812000',5,'James Livingston','https://lh3.googleusercontent.com/-yGzxk93g9d8/AAAAAAAAAAI/AAAAAAAAAAA/TRx6D3uHIhI/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',472),('AIe9_BF8X4EpR_fF6mwcYdso9awgcTt0R-Pduh4u4T5Hk8n0gbRBZcR4QkdRWec5tm0fkxl3ymgUeutaKbqeNqBIOyg5kj7glvebsU2uVBAEDuqdyu8Eayo','Was seen here Sunday 2/24/19. Unfortunately, I had to resort to urgent care since my doctor was closed. My experience here was less than satisfactory. The medications I was told were administered did not seem to be effective at all, or not of quality. Toradol and morphine did nothing for my pain which was a 9 on a scale of 10. The Toradol at my doctor\'s office took care of the pain just fine, no need for morphine. I would not recommend this facility or return here. I left with pain level 8. No worth the trip. There are plenty of options to choose from in this area.','2019-04-19 12:57:31.336000','2019-04-19 12:57:31.336000',1,'Al S.','https://lh3.googleusercontent.com/-pq86BTb4Zbc/AAAAAAAAAAI/AAAAAAAAAAA/bFBulwxKE8Y/c-rp-mo-br100/photo.jpg','17394740196501090048',4690),('AIe9_BF8X4EpR_fF6mwcYdso9awgCTvAgfvXCP3GpR5wdSlLid2C808UMr9cqn7g1vcj7xP_lL6_uI-2Mhq6XvNiVohBJVqGmG_PCfXcCnQvmMOKXLewFqU','Dr Allojo is great doctor he give me very good service explain everything and good recommendation for future. \nStephanie has good ethic and explain me paper work. \nRN-Rollie he is nice person he explain me step by step treatment. Natalia was great too.','2019-10-19 00:53:12.736000','2019-10-19 00:53:12.736000',5,'hassan rahat','https://lh3.googleusercontent.com/-4wEx7PFSZZs/AAAAAAAAAAI/AAAAAAAAAAA/xV0bNpKzKI8/c-rp-mo-br100/photo.jpg','8679688254631342173',8787),('AIe9_BF8X4EpR_fF6mwcYdso9awgcusessTnwgSascMBzynAToJ_nq-6vdu6u2R9jThhgQhIE0zXu9FSmji8HgOXuMHA8jbRUT65yJGYGyN-_D3j-8OTBxc','Late in the evening yesterday my son and I made the trip from Austin to Killeen to be tested for Covid. I was very impressed with the staff at this location. Amanda at the front desk was super friendly and accommodating. The two people who actually did our swabs were great. They were engaging and professional. We felt like we were being taken care of rather than being tested. The Physician came out to our car twice. Once to explain what would be happening and then for our results. Unfortunately, one test was positive. The doctor was very kind and genuinely concerned while explained instructions for us to follow at home. This was a positive experience. Thank you all!','2020-06-27 20:17:45.300000','2020-06-27 20:17:45.300000',5,'rhonda jerman','https://lh6.googleusercontent.com/-XBv9HdBMT98/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmrenBIMpxUvhn42n14pAxZD5g_3Q/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21248),('AIe9_BF8X4EpR_fF6mwcYdso9awgCwLdaipVndIrKetzYT_fou9fz4Ec5bIc-7gWl_sjOisxM7LGpSQuEyc1YA68jKc2MRFICYa7Opc8K3E7MazeYZ_bY0M','I came in struggling to breath, the staff was calm, quick and amazing! Thank you to the staff below:\n DR. DATTA, MD, SOUMITRA \nNurse: Jose L S \nRadiology Tech: Allison S L \nFront Desk: Sita Isabel B','2019-06-11 19:53:41.278000','2019-06-11 19:53:41.278000',5,'Franklin Young','https://lh5.googleusercontent.com/-HA5Ix5erJ1w/AAAAAAAAAAI/AAAAAAAAAAA/eP0B2NIqCM8/c-rp-mo-br100/photo.jpg','13486358490203335051',972),('AIe9_BF8X4EpR_fF6mwcYdso9awgCyjCGAbJ0Mr3Wa972XEwsenFlsJQwvsLPigY04OwtLWw3Y5MB5aMkZANmQmZZCOCrQbMjS3894paAYqaTRtYg3fw9-U','Great experience. Staff was friendly and comforting, and did a thorough evaluation. No wait time.','2016-05-09 13:02:33.676000','2016-05-09 13:02:33.676000',5,'Kaila Therrien','https://lh5.googleusercontent.com/-r1Isq5JEUxU/AAAAAAAAAAI/AAAAAAAAAAA/_WjOEClQx44/c-rp-mo-br100/photo.jpg','3511292162159714121',8005),('AIe9_BF8X4EpR_fF6mwcYdso9awgD-DC4WudBqtJ94F9BkjRhEH_HDSRRHdUC3LcwVZeZaaB586-MGuPU34wrT494MHIpzLSi2Gg1VuIBPZwKVrjuqwB5iI','I absolutely love this place it’s the reason I drove a little further . Customer service here is different than what I ever seen. I’d definitely come back and I trust them. Thank you for all you do it’s doctors and staff like you that makes all the difference👍🏽','2019-02-15 04:24:03.404000','2019-02-15 04:24:03.404000',5,'LaNail Edwards','https://lh3.googleusercontent.com/-pQep_6HIVuU/AAAAAAAAAAI/AAAAAAAAAAA/cECvPnblknQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5853),('AIe9_BF8X4EpR_fF6mwcYdso9awgD9nqrPJawjew5viAzsygiDc_gNH7Wmt0kCBoAJdKVpn02b48PvCPLTZj8sR0wP09H2zOurZTieW0o4cqOaeo0DK6T88',NULL,'2019-03-04 20:21:23.535000','2019-03-04 20:21:23.535000',5,'Brian Wilson','https://lh6.googleusercontent.com/-gjOqdapKf5w/AAAAAAAAAAI/AAAAAAAAAAA/mmWZNkkU2xA/c-rp-mo-br100/photo.jpg','17898197009688164559',5824),('AIe9_BF8X4EpR_fF6mwcYdso9awgDFEdW6C6TaFB8FKbvuHRtilcHQ30q9zjvlswLb_lzM5i9kjDhFEKsIQVzrZ3tuOif9ds9hBRnw8NIBoc7Lz1WRp4RUg',NULL,'2017-10-17 17:56:52.567000','2017-10-17 17:56:52.567000',5,'Tanesha McCullough','https://lh5.googleusercontent.com/-U6UPfI2XTAk/AAAAAAAAAAI/AAAAAAAAAAA/N9wpHYTrBog/c-rp-mo-br100/photo.jpg','17394740196501090048',4947),('AIe9_BF8X4EpR_fF6mwcYdso9awgDgVIKMoqi3kYDuaX3UsN_Dvyw0dvxALxMP4eyb6YbixgQxRENwopBXEmwwMncu4dH3q70yh962MeGLGGJC1O_P5vOyg',NULL,'2019-10-28 18:23:27.020000','2019-10-28 18:23:27.020000',5,'Patricia Marshall','https://lh4.googleusercontent.com/-t5_vg3F1LP4/AAAAAAAAAAI/AAAAAAAAAAA/I9goyPX4neg/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2754),('AIe9_BF8X4EpR_fF6mwcYdso9awgDKhvUxgNDkpyRXipQngM7WFj7BRNkxLq04ug3v0NLrAUwAGKQeBKo0kbNUr93EJc99x9e--BdUG0BCiqw3AvjIAT5mk','Excellent care given to my son today Mitchell. All of the staff were top notch.','2019-07-09 23:49:54.449000','2019-07-09 23:49:54.449000',5,'Cynthia Armstrong','https://lh6.googleusercontent.com/-pEoY6YSHyNA/AAAAAAAAAAI/AAAAAAAAAAA/g_TiqQPwQYo/c-rp-mo-br100/photo.jpg','17898197009688164559',5649),('AIe9_BF8X4EpR_fF6mwcYdso9awgdld2328Assh0Io1In0-Qc-0wEgR4uv8gH7927HCCCN0TyogT0ySQzobeB9UnqaW6amhdR-u4SPK_MKgP_XGdjuY-GdE',NULL,'2016-03-13 22:41:30.566000','2016-03-13 22:41:30.566000',5,'Emily Cartwright','https://lh3.googleusercontent.com/-Xgnn3aNR5Kg/AAAAAAAAAAI/AAAAAAAAAAA/8AsGzd9aNJs/c-rp-mo-br100/photo.jpg','3511292162159714121',8022),('AIe9_BF8X4EpR_fF6mwcYdso9awgdN4KyxVEF7MlorrUq7Cd3kmh5Nfn3PaLjwSNQgAh846OY43RMtEYvf0WwB4nNb4hSpqbmC-IzVGlgiFgh-Jmye4-DAY','If you need to get tested for COVID 19 I recommend coming here. The nurse who attended me was very nice and polite. The testing was fast and easy and I got a result that exact same day just a few minutes later!','2020-08-06 11:37:44.308000','2020-08-06 11:37:44.308000',5,'Queensteph Chavez','https://lh3.googleusercontent.com/-Zyz45dOOXkM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclikQd6-ZlrLPwKG5EqSbFXnc4WGQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21815),('AIe9_BF8X4EpR_fF6mwcYdso9awgDna9tbKisDfkMZQuDYUpTDaJg4eIxR74HT_LJow5uz4PSOh0Jfa2YePJNy-kD6wt4Hkq3_q6hfRKVlS0Alug0WN-Jf8','I love this ER!! walked in and was greeted immediately and the staff was extremely nice and friendly!','2019-09-02 16:48:37.455000','2019-09-02 16:48:37.455000',5,'Aliyanna Brown','https://lh3.googleusercontent.com/-AYHYJfvhXos/AAAAAAAAAAI/AAAAAAAAAAA/fcWOpDnUV4s/c-rp-mo-br100/photo.jpg','12541597562633926366',435),('AIe9_BF8X4EpR_fF6mwcYdso9awgDPgek2FjNdznIAsF3UNiSTWDmsqO51U1greADHEdCLGpev6kcg5_U60Ovwk9PtTUqgvdO4Ch_k1ArkX4QfqxhGhT8TU','My daughters and I were treated at this facility after a car accident and the experience was like no other!! The staff were awesome from the time we walked in and throughout the entire visit. An ER experience usually consist of long wait times and staff who are seemingly overwhelmed. Well Signature Care provided the total opposite experience so if you are in need of emergency treatment, I recommend going to your nearest location!! Thanks again to the staff at the Copperfield location, Tanisha Jaime Carolina and Dr. Thomas!! Keep up the great work!','2019-02-18 03:13:38.176000','2019-02-18 03:13:38.176000',5,'Nyesha Jordan','https://lh3.googleusercontent.com/-wcs4KsufZf8/AAAAAAAAAAI/AAAAAAAAAAA/Ie0WY8e5N88/c-rp-mo-br100/photo.jpg','17898197009688164559',5850),('AIe9_BF8X4EpR_fF6mwcYdso9awgdV8krbpuRnw363YRmBwenrrPfCJ8lrCXywGpg8ZUHhl0ZXxf8M3hsAw6AV7wyFgP9dvla-Y_0E_rsXWOymsaTL517lI','Unfortunately I have to give this office a bad rating. While they are very polite people I paid money for a visit and a test they suggested but received no help. I told them they test would come back negative (it did). They concinced me to take it and charged me . They didn\'t even inform me when the test results got back I had to track them down. I had to go to another doctor to get treatment for the same issue.','2018-04-24 01:59:38.359000','2018-04-24 01:59:38.359000',1,'I.T. Itauma','https://lh5.googleusercontent.com/-4x4f2YpohbI/AAAAAAAAAAI/AAAAAAAAAAA/ORn1BrHh3Cc/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1630),('AIe9_BF8X4EpR_fF6mwcYdso9awgDWTAWDavaXwxGVRUj3g5_Y7e8x9m0oLS3W29n5en5Uyn_ZadioLIlDgw6l8TbNrCAll-Y0BTMIqYqSlduPWrB3om7DA','Nice facility. Very fast service, I didn’t have any wait time. Signed in and was taken to the back, Dana, Tricia, Jordon and Patrica took good care of me. Everyone was very friendly, I will definitely recommend this place to everyone','2019-11-15 22:01:58.916000','2019-11-15 22:01:58.916000',5,'Irene Gajere','https://lh4.googleusercontent.com/-VNw1Xh8PERY/AAAAAAAAAAI/AAAAAAAAAAA/GP2-QRaxiGU/c-rp-mo-br100/photo.jpg','16389487648212004696',2688),('AIe9_BF8X4EpR_fF6mwcYdso9awgEbJVFcLO4djDDUaLxTyD8235GmxQKAKi_d3tv5NYRKgnMHXUXp2g9rmclZH5AWLKDn3KPi6ZfKZqvyCmq4L-xAHoqY0','They were very quick, and knew what they were talking about. The staff was very nice!','2017-06-27 15:17:31.011000','2017-06-27 15:17:31.011000',5,'Mariah Dewint','https://lh6.googleusercontent.com/-2PR6POr4-a8/AAAAAAAAAAI/AAAAAAAAAAA/9OF9GdTNPZA/c-rp-mo-br100/photo.jpg','8918455867446117794',9387),('AIe9_BF8X4EpR_fF6mwcYdso9awgeI5GNzZ_iSFO_qSycEQfB9LF8CJCqYPaeH7mYRKZ3bOJXupU8T8T5KgKZ6plKHjFiqxqjRUsDLCxBA1qlE5erJfD6M0','I took my mom very ill and was examined, treated and released quickly. Dr. Boester was very attentive, nice and patient with my mother. He answered all our questions and concerns. I would definitely recommend Dr. Boester at Signature Care ER.','2020-07-12 21:52:33.563000','2020-07-12 21:52:33.563000',5,'Toni M.','https://lh5.googleusercontent.com/-TBmJCI7v648/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnN992HOIkzcXBYBYP3VRwRkgy1tA/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21889),('AIe9_BF8X4EpR_fF6mwcYdso9awgeooWkJDRVSrN4x4HbjwbE2ivv0HvaswGj4nWHu800s-M43dQaxb3-mnqHEUFAqfF6yQpcgJSLjCkRCNVoRIoCrc9lPQ',NULL,'2019-05-13 01:50:05.323000','2019-05-13 01:50:05.323000',5,'Jim Pearce','https://lh6.googleusercontent.com/-mUp8xogYIyc/AAAAAAAAAAI/AAAAAAAAAAA/y_EtTeFiX1U/c-rp-mo-br100/photo.jpg','13486358490203335051',1009),('AIe9_BF8X4EpR_fF6mwcYdso9awgEOvn4RgQJ0UcOZ08oxzwNi7EL3eYh2tt6LgFuWpc3V_h4lWGHzwKR1-jV1OO3RheBq-4bmhMKGig3JSuNPk5O9B04_8','Lisa H Leo and Jaime are awesome!!','2019-08-27 13:30:55.360000','2019-08-27 13:30:55.360000',5,'Juan Aguilar','https://lh6.googleusercontent.com/-w39Al_O5Tbc/AAAAAAAAAAI/AAAAAAAAAAA/2GNQgp7jpR8/c-rp-mo-br100/photo.jpg','13486358490203335051',846),('AIe9_BF8X4EpR_fF6mwcYdso9awgER_55yY6nXIPxPfbKuo4gbJ8Np3FghmWQUKEteL4qz2IW3nZoO6Jt_SN1S1PYJ468MPAOjZFTtSKHtfzMapdKm077tY','I had a great experience by Dr. Patel, Amy, josh and Agnes','2019-05-07 01:38:01.350000','2019-05-07 01:38:01.350000',5,'CesarReyes Marcial','https://lh5.googleusercontent.com/-dc8bGwDAVfA/AAAAAAAAAAI/AAAAAAAAAAA/ixccMAP-tHU/c-rp-mo-br100/photo.jpg','3511292162159714121',7335),('AIe9_BF8X4EpR_fF6mwcYdso9awgeVoBLO8MvVMQSae6gVOtPQTnyg7hrXY79P6en_IZNHi1BRR7jAvzxDU5Q1fIjLsComZ5YSxXwV5ciRL3D1DIgFYsGTQ','After my husband\'s dog bite the last thing we wanted to worry about was a huge hospital bill, and with Signature Care we had nothing to worry about. Price and care was wonderful, they went way beyond our expectations. Staff was caring and helpful. They our definitely became our emergency care providers. ','2017-05-25 19:44:26.762000','2017-05-25 19:44:26.762000',5,'Aurora Vasquez','https://lh4.googleusercontent.com/-tdKK9ibQwdY/AAAAAAAAAAI/AAAAAAAAAAA/rwpBKN8jsB4/c-rp-mo-br100/photo.jpg','14567670160750071148',1820),('AIe9_BF8X4EpR_fF6mwcYdso9awgevtYWaGRKtdBp8_IQRAEZ5S4bY4fUbpC39qcQIM42zacRRiTtNqUb1ZjNDOLKIzgKx85kjDA7prTka_ezbKO-aUh0hg','I received two Covid-19 tests here and both times the staff has been extremely friendly. The facility is well maintained and always clean. The registration team (Amy, Valinceia, Julesia, and Dalia) is efficient and does their best to ensure that the wait is not unnecessarily long. The nursing and doctor staff is also great. I will definitely come back for any emergency care services in the future.','2020-07-22 20:55:22.866000','2020-07-22 20:55:22.866000',5,'Drake Chapman','https://lh6.googleusercontent.com/-_mrmSVoH3cU/AAAAAAAAAAI/AAAAAAAAAAA/XzNlUW_2UdM/c-rp-mo-br100/photo.jpg','8918455867446117794',22301),('AIe9_BF8X4EpR_fF6mwcYdso9awgF42v4CApN13uQMZgW1UUNxqsMa7rdlLw82mzWulqnCHuhcrhH3WiU3jFaFBTp3ZxJxto4XZc0XktsEAlpA4ju5Jgltw','Visited today and my experience was excellent! Kristina A. was very helpful and put me at ease. I would surely recommend anyone to this facility!','2020-08-18 05:02:30.855000','2020-08-18 05:02:30.855000',5,'Lydia Baez','https://lh4.googleusercontent.com/-AaYPgwjQpEE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckzVDMy0bTbb0F9YPBX3tCalmu9mA/c0x00000000-cc-rp/photo.jpg','12541597562633926366',22998),('AIe9_BF8X4EpR_fF6mwcYdso9awgf6JND_ryR6l1Xqt7h46Wn5alG654djRDDDvAS6wr52gh1dDV3r6hNKnQ8HRXDcoai-xcwr-5tFF4vJlhFyqKq5NhhkQ','Elida, Denise and alvean attended me very well! Highly recommended','2020-02-20 15:34:56.377000','2020-02-20 15:34:56.377000',5,'Abigail Castillo','https://lh5.googleusercontent.com/-42OJkEnEO1E/AAAAAAAAAAI/AAAAAAAAAAA/TiWCNQSNzgI/c-rp-mo-br100/photo.jpg','16389487648212004696',11065),('AIe9_BF8X4EpR_fF6mwcYdso9awgF6VBpsYeZsn_AVuhLdtejsfk0gjSuvhGJ1edfF2jKkR_PqL6g4rOkM3IpMiwTo7abuKMB7q7qb-i9H-F4FhYiU2bOMI',NULL,'2019-09-11 16:54:43.418000','2019-09-11 16:54:43.418000',5,'Jonpaul Lafrance','https://lh5.googleusercontent.com/-ywpZ-vi_YAc/AAAAAAAAAAI/AAAAAAAAAAA/Xr9ZAxzf73g/c-rp-mo-br100/photo.jpg','16389487648212004696',2922),('AIe9_BF8X4EpR_fF6mwcYdso9awgfA809ZmbA_RUISagoV3QLHalvMUi8jA3uUVcaRLtHN8zC4rxuRTiwDFEJ9czoq7KoUOApMQ8bNR4P0YTTXIlsAFdv1E','Signature Care in Lewisville is great. The staff Mostaque, Mollie, Brooke, and Anavel were all very friendly. They made me feel comfortable and being that I don’t have insurance they gave me options on how to get my prescription at a reasonable price. Excellent place to go to if you need medical assistance. Oh and they get you in and out.','2020-03-03 08:28:03.985000','2020-03-03 08:28:03.985000',5,'Kametriese Cooper','https://lh6.googleusercontent.com/-Jfx_YEbB7qI/AAAAAAAAAAI/AAAAAAAAAAA/7c_JUbgPM9E/c-rp-mo-br100/photo.jpg','14748677429039074158',18857),('AIe9_BF8X4EpR_fF6mwcYdso9awgfbfW1TUB7C75Flfw0gcTEh-JnoQ5mETOoT-PfL5RM4MQZVWvK-1ZD-MvJyB4LGH3yITTEfPDll2ro2UfXMDGHQhjnEQ','Fastest, and nicest staff ever. Very compassionate since I walked in.\nDr. Pham and Nurse Andrew showed a lot care and concern to my health.','2019-06-19 14:10:49.134000','2019-06-19 14:10:49.134000',5,'Nidia Vasquez','https://lh5.googleusercontent.com/-nyDjLo4h-EE/AAAAAAAAAAI/AAAAAAAAAAA/cDn3Qca4Qbc/c-rp-mo-br100/photo.jpg','8918455867446117794',9116),('AIe9_BF8X4EpR_fF6mwcYdso9awgfPPaUYveczb-PfyjVPW8Eh1gy7ZQl9Qi_A_-yboaQoDEsRc4hbR6FEPS_xjNu-6jOa_OeBT5kLHOG0QeeNAIgmb_qSc',NULL,'2019-12-24 01:47:52.239000','2019-12-24 01:47:52.239000',5,'Alberto Mendoza','https://lh4.googleusercontent.com/-tBGRRoVNXv8/AAAAAAAAAAI/AAAAAAAAAAA/fw5xIUz26MI/c-rp-mo-br100/photo.jpg','8679688254631342173',8677),('AIe9_BF8X4EpR_fF6mwcYdso9awgFwCKXPd69aAmaAZv4RtekpJjb-SheRvxlL19HYhJIP1V7mxhS603Ln8K1miUvGdvIEtxJz8e7d3AsY0hZ0XvDiyywaA','Security walked us in \nFront desk was fast\nXray tech brian was amazing\nTech richard was very friendly\nNurses merdith and sherri offered my son a warm blanket\nDr miller was very informative!\nI would recommend this er to everyone!!','2018-09-08 03:46:28.224000','2018-09-08 03:46:28.224000',5,'Anthony Gusman','https://lh6.googleusercontent.com/-rSt_eiGKJTU/AAAAAAAAAAI/AAAAAAAAAAA/L_AIKfB_GDg/c-rp-mo-br100/photo.jpg','14567670160750071148',1517),('AIe9_BF8X4EpR_fF6mwcYdso9awgG2cu_iWa2cWQODnd7XZAnI-907qAcoVGSAsmVRrFec9aDXjzIGP2cCZyzCrsMEV7-jhyIk7IFSivf5551jZapISs-pM','This group of medical staff was just Amazing! Hands down! I had no wait time, Dr. Hemerka and nurse Kat were just simply caring and attentive to me. They had me feeling better in no time, made sure I understood everything and happy to answer any questions that I had. Our medical professionals don\'t get enough credit at times, but this staff deserves it all! Thanks again for all you did!','2020-01-19 20:34:12.655000','2020-01-19 20:34:12.655000',5,'Cara Donahue','https://lh3.googleusercontent.com/-bM8GrTzHiHM/AAAAAAAAAAI/AAAAAAAAAAA/1NhnvdrAWXE/c-rp-mo-br100/photo.jpg','2694018788013845459',14270),('AIe9_BF8X4EpR_fF6mwcYdso9awgg7o7PRqI32OYdOBCLBoHQ8rY_aJRp8TL1l8lNf_9FjJQ0yklsTLrcJChT54OddCDQ7Lx2362y75xDIX5bu2ekUMvoUs','All the staff at this ER is amazing. Cavasos, Chantel, Angel and Tanisha were so helpful and answered every question we had.','2020-02-17 05:35:31.131000','2020-02-17 05:35:31.131000',5,'Bri Paige','https://lh4.googleusercontent.com/-6DHUAocgcqY/AAAAAAAAAAI/AAAAAAAAAAA/y8T-XsWhJnI/c-rp-mo-br100/photo.jpg','17898197009688164559',14164),('AIe9_BF8X4EpR_fF6mwcYdso9awgG9wmf4kxqNhRfooPwEzK00CwMZFTzbWQ3av9AOQB2atpUHht8p-VBE120VzaepGYq7vkOzZjpH8UnYuTjk88zuTf9_Q','This morning was a wonderful experience. We were greeted by the front deskWith kindness. I would recommend this facility to anyone. From the physician, nurse, and registration everyone was greeted in a timely fashion and make sure to check up on the patient in a timely fashion. Every employee that was assisting with me kept each other informed of what was going on which is great. I would like to give a thank you to the position doctor farooqi, Nurse konya, Registration natasha/Ellie, And radiology thai.','2019-08-30 13:28:37.513000','2019-08-30 13:28:37.513000',5,'LGT Assistant','https://lh6.googleusercontent.com/-tfBX4G8mEJA/AAAAAAAAAAI/AAAAAAAAAAA/dUxMCwVWSgc/c-rp-mo-br100/photo.jpg','2694018788013845459',6078),('AIe9_BF8X4EpR_fF6mwcYdso9awgghzT9C9jsimbMaq_9ODZeqY8vUdzjeF-LtFWrdflhtFJ0odGqdrXb4UYHX3eLKop8m6GEsrzERhR36QJJyYMocki6x8','Nice facility! Nice staff everyone was very friendly and helpful.! Also free food lol Will definitely be coming back when I’m not feeling too well','2019-06-07 16:19:08.461000','2019-06-07 16:19:08.461000',5,'Sean Shelley','https://lh3.googleusercontent.com/-78uRaDS7a0Y/AAAAAAAAAAI/AAAAAAAAAAA/kekQxMh5k6M/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awgGLHFh8-5jDlS2WauawRfkKLl3V06q13c4DOz2QYanaDMl7J_zaEI0vIv7b4UZ0VNTuO6uALtbUR_7hgKoyE1h_rFz0A','Gina my friends nurse, Dr. Souman, Dion, and Amy all helped very nicely!','2019-04-20 02:06:46.645000','2019-04-20 02:06:46.645000',5,'Ghufran Ali','https://lh3.googleusercontent.com/-2fPY6Hf7DEE/AAAAAAAAAAI/AAAAAAAAAAA/4SSSDwFRmtw/c-rp-mo-br100/photo.jpg','3511292162159714121',7360),('AIe9_BF8X4EpR_fF6mwcYdso9awggvRxhjHida2vb0n3RDINEwJ07P3PNoTFfMMd2vLN2liUL7eSV8PSIWf8BT7OKD0_7RWTLW9dxl8_DR4KKu1KDG99XnQ','The staff was very friendly. Clean facility. I had my 3 kids with me and they offered snacks, drinks, tv. It made the visit easier with ways to keep the kids occupied. The nurses were very helpful. The doctor has a very good bedside manner and very informative. It made the visit much easier than going to wait in an ER for hours.','2019-06-17 13:12:19.866000','2019-06-17 13:12:19.866000',5,'Holly Allison','https://lh4.googleusercontent.com/-I3ms2C-baK8/AAAAAAAAAAI/AAAAAAAAAAA/cs1WraN3glQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6948),('AIe9_BF8X4EpR_fF6mwcYdso9awggWEwg-LWgb8p24dD7yqKfich3zxWW4Mof4zKLEglW8Enib-nupu132lyXLC39hsS_rO1_SMOpb8wJJzVFUs0iZEIEss','Everyone was very welcoming and Shawn the worker was nice and gentle when I was taking my covid 19 test. The other workers: Sibienne, Kelsey, and Bodrick made the visit easy and smooth. 100% recommend','2020-07-12 02:47:15.171000','2020-07-12 02:47:15.171000',5,'AMY_WIN_373','https://lh4.googleusercontent.com/-gFWAbQgQL-E/AAAAAAAAAAI/AAAAAAAAAAA/m7sLUqWPHcE/c-rp-mo-br100/photo.jpg','8918455867446117794',21581),('AIe9_BF8X4EpR_fF6mwcYdso9awggxrsQWRYWkslLfLdQUuOZxFt0w1xy9NDcSTaC9TmcYK1dY0AFmqpoAYxtVOTM_RuAD3VDpWugJsa9PIqIX9OGyrcpDY',NULL,'2019-08-15 20:25:46.509000','2019-08-15 20:25:46.509000',5,'Danielle Geter','https://lh6.googleusercontent.com/-NWRDyFVvCUI/AAAAAAAAAAI/AAAAAAAAAAA/Su85a7KTUxY/c-rp-mo-br100/photo.jpg','3272657195432704501',6908),('AIe9_BF8X4EpR_fF6mwcYdso9awggZ4ZLGrddDtmx57vCdgVMW_YznyArXajWIPtm_FqDbPnXd4qKpsAbzfo31hvJONHqZu1xM2HEkzJpbUps3Jt0RKHkf0','The Service was great from the front desk workers to the doctor that treated me highly recommend this location','2020-08-23 02:02:53.004000','2020-08-23 02:02:53.004000',5,'Michael Sanchez','https://lh6.googleusercontent.com/-VCoaqfZ-gn8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck7YU8_nlUPj_DFMIpdWONMN2Q7dg/c0x00000000-cc-rp/photo.jpg','14904078213800803294',22984),('AIe9_BF8X4EpR_fF6mwcYdso9awggZFWz4VIX0TQIw63ilzAx7PHh4tHxfCmhHeOabA1tD3-W2bziOPbzZ2HJUaUekkBEIcy99kWc_IRtnguIlEifvDorlw','I was seen within minutes. Staff is very friendly and efficient. Everything you can all for in an ER visit','2017-11-11 14:59:38.297000','2017-11-11 14:59:38.297000',5,'G Clay','https://lh5.googleusercontent.com/-Fj894BV2SUs/AAAAAAAAAAI/AAAAAAAAAAA/_-RVMipXWFs/c-rp-mo-br100/photo.jpg','14904078213800803294',2312),('AIe9_BF8X4EpR_fF6mwcYdso9awgH0R3MU0d9UMQWf_vgzL-op08p6LMTMP8P2Os7sjPhmLA-iONWdDCdOMK959JKLggvcisw67HAm53VPzg5arHStO8Hxg','Super fast service..Hayleigh helped us as soon as we got there. Nurses and doctors super nice and helpful \nDefinitely recommend this urgent care!!!','2018-08-08 14:54:53.951000','2018-08-08 14:54:53.951000',5,'Diana Aviles','https://lh3.googleusercontent.com/-cH9u0P7Rbk8/AAAAAAAAAAI/AAAAAAAAAAA/IOZMGS8BrbA/c-rp-mo-br100/photo.jpg','14567670160750071148',1573),('AIe9_BF8X4EpR_fF6mwcYdso9awgH1Y2rTuURRt6t2NGC0_iP5J-ocCcpw6-2YspKxUsbzeWY0fCaTOXrxhnjDEgwNP1Rz6CL1okU_AhRtlYQNW0CbFk9Kk','The staff there are real nice doctor great Patricia C help you and nice person will recommend to friends and family','2019-12-30 23:19:58.677000','2019-12-30 23:19:58.677000',5,'Marcos Bell','https://lh3.googleusercontent.com/-pZTkal5xrpw/AAAAAAAAAAI/AAAAAAAAAAA/3DhTTk_LQd4/c-rp-mo-br100/photo.jpg','16389487648212004696',2495),('AIe9_BF8X4EpR_fF6mwcYdso9awgHAjBji4wmEofoOFi9sxeOOaxDng-MLp82QlUY5qY_6kEw-AVqVU7hgH_VhqZSKT4WQ0-RtIMQ5sBHPKhz-SEy2GR8Yk','Last night was my first time at the facility, and I must say I was thoroughly impressed. I literally didn\'t have any wait time. I barely got a chance to sit down before they called me back lol. They actually took the time to examine me, and made sure that I felt better going out than I did coming in.','2017-04-18 20:05:59.689000','2017-04-18 20:05:59.689000',5,'Sharnele Mack','https://lh5.googleusercontent.com/-j2aEDgDsSDY/AAAAAAAAAAI/AAAAAAAAAAA/TmITeOMm5aQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1845),('AIe9_BF8X4EpR_fF6mwcYdso9awgHClmtfmGx7dxBQ-ECc-8_fBI9LQP_SQ_03HZjJea_iG04v4EXrD5RWiumuc3hR6kfXSWKVawLAZ8meJBtiIijc7x_F0','My visit was great. Everyone was very friendly and caring. Jasmine was able to check me in quick. The nurse and xray tech very nice. If I ever need to come back I definitely will!!','2019-05-10 02:27:51.710000','2019-05-10 02:27:51.710000',5,'Hector Ramirez','https://lh4.googleusercontent.com/-KbTSah0oPFs/AAAAAAAAAAI/AAAAAAAAAAA/fFqPoc52MKU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awghmZHQ7QRIlwZE65yA8PsZVH_eP9ePoE6fleq-vUObtGtOPY3Qv0O7cQEbsY-8Kp8WdgkkuyaFgT0-A10CFJsd7NFzOI','I dislocated my knee, was in pretty bad shape and i couldn’t of been happier that i found signaturecare emergency center. I walked in and immediately got attended and taken care of. The staff and nurses were so kind and careful. They offered both me and my mother warm blankets. The doctor and Ct technologist were kind careful and knowledgeable. Took care of the problem right away. \nThank you to the nurse that took care of me: Bernadette corpuz \n My doc: dr.chen\nCt tech: jerin \nAnd the kind woman who triaged me Wendy :) \n\nYou guys are awesome thank you for your kindness. I’m confident i will be back better in no time with all the information and care you gave me.','2017-12-29 15:26:58.385000','2017-12-29 15:26:58.385000',5,'madelyn mejia','https://lh4.googleusercontent.com/-HonCCSWWQ0c/AAAAAAAAAAI/AAAAAAAAAAA/7ClpRqdrvyA/c-rp-mo-br100/photo.jpg','17394740196501090048',4910),('AIe9_BF8X4EpR_fF6mwcYdso9awghWikW9L8sFKFWl-h_-dnIwIs-t1-7DSFRzrhSp1jXlO9d6DLVNGu3cgeWIfblPDaG8myNkhYRVQf_ZN81GgIib-pE5g','Excellent, friendly and quick service!! Thanks Yeovil','2020-08-02 15:12:05.372000','2020-08-02 15:12:05.372000',5,'Tom Jones','https://lh4.googleusercontent.com/-oKd9wqmm2Xc/AAAAAAAAAAI/AAAAAAAAAAA/zchS3E6GTV8/c-rp-mo-br100/photo.jpg','2077061009497551125',22972),('AIe9_BF8X4EpR_fF6mwcYdso9awgIBQm6PjZDfn6QlqNriCZaTC16zTqwhhXHgPEMztEqIpaEiezoE4LYiD568Nq416DM-GbLZV-5Cwx0VgrFHT7MZJIW5M','12 hours waiting for test. There is no people to answer','2020-06-28 06:19:24.176000','2020-06-28 06:19:24.176000',1,'Jose Escobar','https://lh3.googleusercontent.com/-k_CC_zcTdWw/AAAAAAAAAAI/AAAAAAAAAAA/GN_qS4EZWbc/c-rp-mo-br100/photo.jpg','12541597562633926366',21245),('AIe9_BF8X4EpR_fF6mwcYdso9awgIDImR3CZ4pL5z9wTLaQ_ooI03OaP9R2we_0FGDyr-T1QfDbP_4ikZCQipvptBGVyZA0-CF2aqynzIgT9gDOWw_UANGc','Best urgent care! Quick and efficient. They care for people individually. Registration nurse, Ana, got us back to a room quickly and we were well cared for by De Faig, Sara, Tino & Thelma.','2019-12-23 11:54:08.334000','2019-12-23 11:54:08.334000',5,'Colleen Andersen','https://lh6.googleusercontent.com/-Ojda2GYQhs4/AAAAAAAAAAI/AAAAAAAAAAA/DQo_e848_14/c-rp-mo-br100/photo.jpg','12541597562633926366',317),('AIe9_BF8X4EpR_fF6mwcYdso9awgihHMw5d20wk9ANOtxGFlKbY6AYeBNxvSDX6VP4UxJxD8Lv31r4_pso5yr8Hay-zWWBxmxKvxip_F3xKLQoODXKwyukc',NULL,'2019-10-10 19:07:01.751000','2019-10-10 19:07:01.751000',5,'Gage Calhoun','https://lh3.googleusercontent.com/-q7g5XHyff7k/AAAAAAAAAAI/AAAAAAAAAAA/Q6fcS1oqWlo/c-rp-mo-br100/photo.jpg','2694018788013845459',6049),('AIe9_BF8X4EpR_fF6mwcYdso9awgIhKerLaVebqjA0H1z8YmHnLeTmJdkLJzZaOLQg8k6QfI6OeEhr_-vaO11gr1ITmhLei0cKmcx0YGTxLFdt6bsM5AxKI','All the staff are very friendly and they care.','2019-01-16 17:05:31.544000','2019-01-16 17:05:31.544000',5,'Rahel Samuel','https://lh5.googleusercontent.com/-7m9q_dI-17A/AAAAAAAAAAI/AAAAAAAAAAA/Vbqe6vr2qn4/c-rp-mo-br100/photo.jpg','17898197009688164559',5885),('AIe9_BF8X4EpR_fF6mwcYdso9awgIuE9NsEeeEnFP3BHu06aaOkFb6OYd6OFB2TSWhqKGWcCWCNsjxWhb6EjzbAORZ622II6s1jM68ZXGrvWE5eO5NHrEKs','Their always welcoming once you step foot in the build. Always go on and beyond their way to make sure their patients are doing will and don\'t let you go until the give you an answer what\'s going on with you. Thank y\'all!','2019-12-18 00:54:22.459000','2019-12-18 00:54:22.459000',5,'Mireya Apodaca','https://lh4.googleusercontent.com/-SvsA1pZEKkw/AAAAAAAAAAI/AAAAAAAAAAA/glcLgob8IGY/c-rp-mo-br100/photo.jpg','6521947413723274945',8049),('AIe9_BF8X4EpR_fF6mwcYdso9awgJ_qlTHEYqGqSc9emA-WN7j-1NHKtw7mSLWP3rvJB-O1-66nwsaSvHSwY1UNpDFRs4jTmGe0h5Q1VB_swtObMwVkOmLk','This is the best ER I have ever came to. They are all very welcoming, and care about your emergency situation. We are new to Houston, so we were a little concerned to come to a new place. We were greeted by a lovely soul named Delicia who quickly got us our paperwork. Blake then assisted in asking questions regarding what was going on, and was very comforting during the procedures. Dr. Omally, Sonle and Mary Ann are also amazing. Highly recommend coming here!!!','2020-08-10 12:56:23.092000','2020-08-10 12:56:23.092000',5,'Katie Langrehr','https://lh4.googleusercontent.com/-pG-_CADJp8k/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm66evoLYu965EX8hKQup3wnBMeIg/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22910),('AIe9_BF8X4EpR_fF6mwcYdso9awgJDUuvPrq5gp2WX49UcUmGap3VNdgz3e5fLc8d2Q72nD2_7WhUM9k1-BuylYyCPwd0mr2eVPWlGgLcmjyUMXv2IY4TWY',NULL,'2020-07-27 18:17:38.880000','2020-07-27 18:17:38.880000',5,'Javier Guevara','https://lh5.googleusercontent.com/-223BKq3EZEw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn_Nh8Rx-D3dIalHsclre9B1Sdwhw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21796),('AIe9_BF8X4EpR_fF6mwcYdso9awgjeMreSRU6_xe4CW8FafCHnE3tnClAzYPvJAsaFUkPWuEn3gXCTb6OGVzo1IkYHrotkdNFWVneawhfxql-9d1F7U4tuU','Was there was my daughter last weekend and Krystal the nurse was very helpful.','2019-06-16 04:27:56.779000','2019-06-16 04:27:56.779000',5,'irma aranda','https://lh4.googleusercontent.com/-y_vq1kYc0wk/AAAAAAAAAAI/AAAAAAAAAAA/UgrCDpj9xHo/c-rp-mo-br100/photo.jpg','13486358490203335051',954),('AIe9_BF8X4EpR_fF6mwcYdso9awgjGhlN0icF1MnavY0kU3YidooWauOWU2oG1NDF_y7ZI6wC3qE2myYD3EiXyE_q3v-phZYRbRTwjHvaZQ0u8_XhT6NA50','I had a deep laceration and was seen and stitched up immediately. I came here because the wait at Ben Taub was 4-10 hours. Everybody from the front desk to the nurses and doctor were very kind in my unique situation. Thank you!','2018-01-22 16:35:38.587000','2018-01-22 16:35:38.587000',5,'alysia doerr','https://lh5.googleusercontent.com/-B46UzpLoxx4/AAAAAAAAAAI/AAAAAAAAAAA/qD7bn4bma4Y/c-rp-mo-br100/photo.jpg','14904078213800803294',2287),('AIe9_BF8X4EpR_fF6mwcYdso9awgJhxcGGVbl66udNq2DWQIAY4lsH6ClGIvCwD5O87iMZDku_hZvEexOfTPg3JpyDowhzwSX4iw2nIaIl5DHzL9sm8dlyw','Awesome experience from beginning to end!! The staff I met with were Dr. Patel, Troy B. my nurse, Jessica M. my radiologist, and the wonderful receptionist, Melissa E. They were so kind and helpful and I was in and out quickly! Beautiful clean facilities and I was well cared for! Thank you all for taking great care of me!!','2019-09-11 00:53:45.652000','2019-09-11 00:53:45.652000',5,'Jill Coday','https://lh6.googleusercontent.com/-fiKczb7O-V4/AAAAAAAAAAI/AAAAAAAAAAA/M423CF1LNzM/c-rp-mo-br100/photo.jpg','16389487648212004696',2926),('AIe9_BF8X4EpR_fF6mwcYdso9awgjJfm1YJKZKv9y25WITi7VVG13fJmrp82snKNZ75NY15LhzBBG0BVGg7nMXtcwAMobYDlDKDp4_X89zH6VqUtSS9a3b4','Rashaad was Helpful and nice staff was Great & Friendly overall nice experience.','2020-05-17 11:06:15.158000','2020-05-17 11:06:15.158000',5,'Dominic Williams','https://lh3.googleusercontent.com/a-/AOh14GhNlisJNGLDX2-YRevx89GTpB7PTkfvyJPqR-LP=c0x00000000-cc-rp','17394740196501090048',22086),('AIe9_BF8X4EpR_fF6mwcYdso9awgJr8Y77OIjjPt4aJUob1yqS7DeDwP72PegkMFf9A_Y0rkrF5JsFeGYDQsgHFYrumkGpAKSGim5PYHjpq9dgJf4yXjOfg','Great experience with Dr. Appiah and his medical team and staff,. Alvean, Marcus, Jocelyn, and Brian. They were very attentive, and through, throughout my visit. Making sure all my needs were addressed accordingly with the proper care. I highly recommend the Cypess location for your next emergency visit!','2019-12-18 17:42:44.726000','2019-12-18 17:42:44.726000',5,'Sharon Ester','https://lh3.googleusercontent.com/-f7fh3HLdncI/AAAAAAAAAAI/AAAAAAAAAAA/2i6forZfAcE/c-rp-mo-br100/photo.jpg','16389487648212004696',2535),('AIe9_BF8X4EpR_fF6mwcYdso9awgJtN7t9lAWW-3U21NbSQNzBQ58TWGzMaP0zMRpHd4bzenVeqtgOI7nRrV_a-eqmkWhdd_8sXVkcvFKA_T9_Qz-NfBbCA',NULL,'2019-06-07 19:02:45.640000','2019-06-07 19:02:45.640000',5,'Misty Halcomb','https://lh6.googleusercontent.com/-lTuzmjgYkt4/AAAAAAAAAAI/AAAAAAAAAAA/R9GtNnZyldA/c-rp-mo-br100/photo.jpg','8626688543755174284',8459),('AIe9_BF8X4EpR_fF6mwcYdso9awgjXbN8LMXP0VsTxmMQrXxK_sxKR_gowa81BF4-sTZLeuySUbs_La5eVorOgVZjYW5qN2Pa3KDwRj4rV-Lj8D4X8DQWdc','Great Urgent Care Center. My daughter was taken care ASAP. The doctor, nurses, and secretary were very polite and helpful. I highly recommend this care center.','2016-06-22 13:53:35.609000','2016-06-22 13:53:35.609000',5,'Khc Houston','https://lh4.googleusercontent.com/-Z84X41CByBk/AAAAAAAAAAI/AAAAAAAAAAA/dz36H0SlkLo/c-rp-mo-br100/photo.jpg','14567670160750071148',2014),('AIe9_BF8X4EpR_fF6mwcYdso9awgk6xt6fn49-hQmzojbWCRm82oE-803K_SlZQ3YdXRQ_6xFKc8Df7W_NHKIyMyLj1oQNeYR4Cfgj9UdOatmQ3mhV5tCc4','Best experience ever! Doctors and nurses are very caring and understanding of your needs.','2019-04-24 04:05:07.192000','2019-04-24 04:05:07.192000',5,'Antoinette Wilson','https://lh4.googleusercontent.com/-VMOO_oJYnLI/AAAAAAAAAAI/AAAAAAAAAAA/wuvZT3kTGYY/c-rp-mo-br100/photo.jpg','8679688254631342173',8851),('AIe9_BF8X4EpR_fF6mwcYdso9awgKDFVkuCuS8EJ5TdiTjmRKfsjMfj8ZT0xIm4QhM00vSYrUKKGVRYCNW1nbCKEjDIu5QCi3G2wg7Jm0GqhvHnBLCpVVh0','I thought that the nurse Sarah G was very friendly she was having nice conversations with us and was very happy.','2019-12-02 01:57:20.345000','2019-12-02 01:57:20.345000',5,'fizza khawaja','https://lh6.googleusercontent.com/-cCdKdkUEOcA/AAAAAAAAAAI/AAAAAAAAAAA/OubuqPG3-24/c-rp-mo-br100/photo.jpg','17898197009688164559',5391),('AIe9_BF8X4EpR_fF6mwcYdso9awgKfdW53vu-Ak5WMKBA4_4OI7z3nWPucHCG-au0mPfEdDJqLtewq-Hl7WEeectVAn2OJoWWkBF94U3O8u0nnfek1CBCW4','We brought our son in over a year ago after he had an accident while playing. They wanted to give him a CT scan and we asked several times how much it would cost. We kept getting a brush-off from the staff that there was no way to know the cost because they didn’t know how much our insurance would cover. Well everything has a list cost, but they wouldn’t share that with us. So I’ll share it here:\nER Visit level 4: $1800\nER Visit level 4: $700\nWhy we were charged as 2 line items just to see a doctor- I have no idea.\nCT Scan: $2700\nTylenol 325mg tab: $10\n\nI don’t recommend this place at all.','2018-12-31 14:22:24.287000','2018-12-31 14:22:24.287000',1,'Linda Breed','https://lh5.googleusercontent.com/-3GBO_2Y5itA/AAAAAAAAAAI/AAAAAAAAAAA/fZ_fB2876Yo/c-rp-mo-br100/photo.jpg','14567670160750071148',1441),('AIe9_BF8X4EpR_fF6mwcYdso9awgkhOev32l92hWqdRHBAzBxQXOKBepvnJfchCZvLJcFPXL64ebXguVpT440LP6UkaLNjmsdHaxiw4qKyRq2Ukf41_7BOM','i came to get my covid test it was quick i would recommend to my friends and family Lorena Gracie\nBrancroft Theresa B.','2020-07-26 16:55:19.255000','2020-07-26 16:55:19.255000',5,'vicky catano','https://lh4.googleusercontent.com/-Yhd5TEca9qY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmnxBt9-Xb0WR07z2H2RX-qc3W7-A/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22207),('AIe9_BF8X4EpR_fF6mwcYdso9awgkU3u0qWyubuuVLwjUhJqX2O_PYhjibnPfnKgwPl_nln0Hcy9blQ8T8FUif8TMQejtk3hNwPVfDT2V7E9JTtgGGUQgxI','Fast service friendly staff! Lisa was great help!','2019-12-16 04:03:32.469000','2019-12-16 04:03:32.469000',5,'Melinda Vaca','https://lh3.googleusercontent.com/-0uwqmmccemU/AAAAAAAAAAI/AAAAAAAAAAA/AgI7ZMfFoQA/c-rp-mo-br100/photo.jpg','6521947413723274945',8052),('AIe9_BF8X4EpR_fF6mwcYdso9awgKuCpzglHhaxxbR76kdkNaozTPbcYkxl6GAldROePQxvSnBZo6cRD28fBW0lR9lZv2X66ebMr7Ju5rccFySyXm5WBak8','JD, Cody, Sam. Amazing team. Very professionals and competent. Recommended. We received the Covid-19 result in minutes','2020-07-28 13:40:10.793000','2020-07-28 13:40:10.793000',5,'Alberto Suárez Cabrera','https://lh3.googleusercontent.com/-OTH72QWpfDI/AAAAAAAAAAI/AAAAAAAAAAA/F-9xiOlSi4g/c-rp-mo-br100/photo.jpg','2077061009497551125',22798),('AIe9_BF8X4EpR_fF6mwcYdso9awgl5QAaoSbUoXEO8FGMlwgOms6tZKLa73LuZgM8cjG9Xn9mJMmSm85tCzSmvYTgrj5z9dQLGLyXqeWyef2QW_NuBNb3mQ','Very personable care, and short wait-time. I came two times for COVID testing and treatment, and they were safe and kind.','2020-08-01 15:14:14.552000','2020-08-01 15:14:14.552000',5,'Jazmin Myres','https://lh4.googleusercontent.com/-UA2dMEzuNHU/AAAAAAAAAAI/AAAAAAAAAAA/B5dVu9GSOQQ/c-rp-mo-br100/photo.jpg','14748677429039074158',22357),('AIe9_BF8X4EpR_fF6mwcYdso9awglcKFt3XP7A6OV6ju6MPXLBzLVq7bFUlp-pCBBuGQjLbCxU2Kf7NzkHz6CCSe6oNoatYdfzSGdLuZYl_P48TOHdjC0MQ',NULL,'2018-07-31 15:29:49.167000','2018-07-31 15:29:49.167000',5,'Damascus Starr','https://lh5.googleusercontent.com/-3xyxMsDbSpU/AAAAAAAAAAI/AAAAAAAAAAA/vym1pb3VKpw/c-rp-mo-br100/photo.jpg','17394740196501090048',4821),('AIe9_BF8X4EpR_fF6mwcYdso9awgLEBuGJszEljf_DLRLEnAYq1YU5gWXTNAixhUM5h8S_kDiC8o_oxZLy_P36YwtiKWAh5QplgSxqc3GGclQqjZTjdC9zs','I went in for medical problems, I have never been treated better, they treat me as if I was their family member, very top notch','2019-03-31 23:42:27.373000','2019-03-31 23:42:27.373000',5,'Mat Mcclure','https://lh6.googleusercontent.com/-doqP9OnQYoU/AAAAAAAAAAI/AAAAAAAAAAA/XB4a2E7zDYo/c-rp-mo-br100/photo.jpg','13486358490203335051',1047),('AIe9_BF8X4EpR_fF6mwcYdso9awgLM5UpG7KLRxdvOjBDgq-Ff-30yzMuFEX3D-2O30vIfUQiYBvJ7owoZZzoiezyjM4tTU6Y7M788plh9Rjs2I1N1NvVRk','This place is so great! I highly recommend😁','2020-02-14 19:39:27.179000','2020-02-14 19:39:27.179000',5,'Jasmine Nicole Thomas','https://lh4.googleusercontent.com/-e79zAFuMOjQ/AAAAAAAAAAI/AAAAAAAAAAA/RBNqSVnNLno/c-rp-mo-br100/photo.jpg','2694018788013845459',14235),('AIe9_BF8X4EpR_fF6mwcYdso9awgLQzj9Yvf2MUstMmYbthzlIFn7G-5LScB4TxBMESDwJ2xNpJ_EU-cnLUjDG3JbJBE4O-koqql2Z06svn6_VnFd5LYjIM',NULL,'2020-02-10 21:35:00.768000','2020-02-10 21:35:00.768000',5,'Brooke White','https://lh3.googleusercontent.com/a-/AOh14GjYNtK40s8yg9nnFp8EpT4IJEFikybdtv1F4sIE6g=c0x00000000-cc-rp','8626688543755174284',14614),('AIe9_BF8X4EpR_fF6mwcYdso9awgLZUTXVlOutifebgtbasxqT6C2b4sOKZ6hoHC4H-RI5kcbCjAyIZPXEO1Izz72nEySm2QhFnAFe0QzbWclh2ekonOHrE','Great staff at night. Taniahia W. \nDaniel B Fatima B Sarah G and Patel','2019-11-27 06:18:25.695000','2019-11-27 06:18:25.695000',5,'Gerald wheeler','https://lh4.googleusercontent.com/-_i2HfgcclKU/AAAAAAAAAAI/AAAAAAAAAAA/vpxBYETb930/c-rp-mo-br100/photo.jpg','17898197009688164559',5401),('AIe9_BF8X4EpR_fF6mwcYdso9awgM0T0UA4pz4sJw2SZ85bMEj7kECfMgJzrDhq95shRQbCyst-pyayITGPjGFR-W_t9Mq22b2PF_J79L7nU6taul79_kz8','Kim at the front desk was very nice! Sherri and Michelle took really good care of us, and were very helpful. Dr. Yost was very kind, and told us exactly what we needed to know! Best ER in Texarkana!!','2019-06-05 16:53:02.290000','2019-06-05 16:53:02.290000',5,'Austin Daniels','https://lh3.googleusercontent.com/-AvUBKfjExeY/AAAAAAAAAAI/AAAAAAAAAAA/SvzvOt5lL6A/c-rp-mo-br100/photo.jpg','3272657195432704501',6953),('AIe9_BF8X4EpR_fF6mwcYdso9awgMA56yFL3-_bkD8ie-C21-3eA9HwJ_3K-Iw2uUPCRxt_-iWsbKgWn-CrAexE4kyo7q4BxWW4GRcxgI942TCRzq2ULlGU','The attention to details and the proficiency of care were excellent. The doctors and staff were polite, courteous, and sociable. They helped me create a gameplan to tackle my pain.','2019-06-02 11:34:43.119000','2019-06-02 11:34:43.119000',5,'William White','https://lh3.googleusercontent.com/-hcXX0PEtBbs/AAAAAAAAAAI/AAAAAAAAAAA/iFa01Qwe8Jo/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9137),('AIe9_BF8X4EpR_fF6mwcYdso9awgmCSJAK5sjmAQToXtZFeyVaJbtte-U8oYlD3YU1qQ4ydnBNwHb1i2GEDNwHHOTy2jUancOHXLfEOC_ELyr2bPDWjDQWU','I always have a very caring and excellent experience.','2019-11-17 07:19:21.689000','2019-11-15 13:00:50.145000',5,'Zuri Dale-Artistry By Zuri','https://lh4.googleusercontent.com/-yEyAkBgJPaQ/AAAAAAAAAAI/AAAAAAAAAAA/6yMu7nkN494/c-rp-mo-br100/photo.jpg','3511292162159714121',7143),('AIe9_BF8X4EpR_fF6mwcYdso9awgMfYAp8xz4oXZZ2wM-WClN1dpxfa9PID6yon1zS_le7i6UvmHcP-YTDMNBDHvIveop2oy7VT2KNoszFh4d75KsHon8_o','Amazing Experience as always. The area is clean and registration is easy and fast by Elida. The nurses and radiation and er tech s Ekaterini, Marcus and Joann were cery friendly with my son on the spectrum and nice. they made him feel comfortable and secure. Despite taking xrays and performing injections to numb his fingers Doctor William was fast and very professional. I have visited this place many times and cannot believe how amazing the experience is everytime. they really care about us the custumers. Never going to any other place than SignatureCare Emergency center at Cypress creek.','2020-02-04 20:38:04.501000','2020-02-04 20:38:04.501000',5,'Sharon Chavez','https://lh6.googleusercontent.com/-wwn0OYj11Ho/AAAAAAAAAAI/AAAAAAAAAAA/OLcKxX4xJEg/c-rp-mo-br100/photo.jpg','16389487648212004696',10545),('AIe9_BF8X4EpR_fF6mwcYdso9awgMKLOFIjFtyfwRuqUlz9-ynF-GFvaPDMOw2o9CGsmI5UA14FpEVVmy3d4gF7CRhSDGy4TVhQxxZyVJI-6ciYd_bt3c04','It was fast and the people tended to my needs and helped out. Tricia was very nice and funny as well as Alvean, the nurse. Dr. Dendy was prompt and gave possible reasons for the illness.','2019-05-31 19:49:11.159000','2019-05-31 19:49:11.159000',5,'Javier Guillen','https://lh6.googleusercontent.com/-uX0PrkBNEtY/AAAAAAAAAAI/AAAAAAAAAAA/xxjiajhK4Cg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awgmlkzfCs-NTX6tljFPeA0_1jneWeokQH7OvJmIY3I4yCFYRwVSVFVb5M5_uV7inwIggijhyNcXvTFkpzALl-bwCv20no','The staff and doctors are awesome! Nicole G. And Andrea was nice and very compassionate','2019-12-22 04:59:02.404000','2019-12-22 04:59:02.404000',5,'Kay Williams','https://lh5.googleusercontent.com/-Hiq_ukzDJVw/AAAAAAAAAAI/AAAAAAAAAAA/6CCvsb_2_8k/c-rp-mo-br100/photo.jpg','14567670160750071148',1166),('AIe9_BF8X4EpR_fF6mwcYdso9awgmRYlpv4zeDvilq31azKV8kkCJiazP7x2mPbtL5BpxahNNsOqqrc96JRjEyVhTTvQGllhBiGyodHamfuW8cWqkW5oDPs','They don\'t consider much cases as an emergency, so if you are classified as a non emergency, they expect you to cough up hundreds of dollars all at once. I went there with a cough that had gone on for over a month and was now in my ears and swollen throat and neck. So much pain, not sleeping because of endless coughing and yet I was not an emergency, so they were wanting over 800.00 up front for everything. I had to leave without getting treatment. Never mind after telling them I couldn\'t afford it, the nurse made me wait 30 minutes for be discharged and I got to listen to them just laughing and goofing off right outside my room, while I was in tears, so tired and sick. Never again will I go hear. The emergency room at a real hospital is the only place I will be going from now on. At least they just send a bill and you can make payments. (Update)- I was at the clinic at around 2:30 am, later that day, around 5 pm, the eye that the doctor kept messing with turned bright red and swollen. Next day it was red, swollen, crusted over and blurred vision and now my right eye it turning red and watering also. So not only did I not get treatment for a very bad sore throat that makes me cough so much and so hard that I throw up, but they gave me pink eye. I know it was them, because that was the only place I have been for a week and no one in my house has pink eye.','2019-04-07 18:50:22.144000','2019-04-07 18:50:22.144000',1,'AMPmmogamer','https://lh6.googleusercontent.com/-c683YuHPrLo/AAAAAAAAAAI/AAAAAAAAAAA/wCYEPw58gMk/c-rp-mo-br100/photo.jpg','12541597562633926366',519),('AIe9_BF8X4EpR_fF6mwcYdso9awgMWj4op5jZs89KoYv1I2z5eLLkBk3i9gbD8kSe3dpl9WcbRKcDin1V_a7e43mxRFuECgvmnVugPPIXcZCDfjYeSGH5l8','Great care. Very fast and efficient Jessica the RN is great. All the staff is amazing. This is the place to come for fast, efficient and great care.','2020-02-20 19:11:54.365000','2020-02-20 19:11:54.365000',5,'olin brown','https://lh4.googleusercontent.com/-kkSjWwTJ-Mg/AAAAAAAAAAI/AAAAAAAAAAA/CMW8JuPrNTA/c-rp-mo-br100/photo.jpg','6521947413723274945',14568),('AIe9_BF8X4EpR_fF6mwcYdso9awgn1s-r1XzWQmOrZ3QsvPOcyZ2fmn-b9TMGItenSNH0Al1bBcKmoFv6dpbQPZYCfhHCuxsp2SGaZfRJzWWAbNcma0D6u8',NULL,'2019-08-27 17:36:17.199000','2019-08-27 17:36:17.199000',5,'Nora Marroquin','https://lh5.googleusercontent.com/-__A9GZgIcOw/AAAAAAAAAAI/AAAAAAAAAAA/lMjtwYkxIjc/c-rp-mo-br100/photo.jpg','16389487648212004696',2973),('AIe9_BF8X4EpR_fF6mwcYdso9awgnbPVptt2XUcYEEJDX50kyGrZra6e7SILClKdjDM_du1jDw9cBTmpThXEDf_jEwt1-lnmjrkt_mAH49JhqqVhiYEHG7g','Environment was clean and updated, wait time was extremely fast and staff was friendly especially nurse Calli. She made sure I was comfortable and kept me updated on what was going on.','2020-03-11 02:08:07.390000','2020-03-11 02:08:07.390000',5,'Elisa Rodriguez','https://lh6.googleusercontent.com/-uXoAG8Yd5f8/AAAAAAAAAAI/AAAAAAAAAAA/BMtUyidB8iw/c-rp-mo-br100/photo.jpg','2694018788013845459',21117),('AIe9_BF8X4EpR_fF6mwcYdso9awgnD1C3az9vdimi4j7raWsIU1lDz68IkfA1wqrKN7hmBorOxsb5oGH9MPbS9D7K7oNy0Ma4UOP8LOQYzdM4E9DP3C3HpA','Me. Lorena &Victoria were so great!! They were very friendly and professional!','2020-07-31 17:09:01.266000','2020-07-31 17:09:01.266000',5,'Kourtney Morris','https://lh5.googleusercontent.com/-qUHkVT6a71Y/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnZ7s4rsKMoaWTByzQp2pvqTOluMw/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21991),('AIe9_BF8X4EpR_fF6mwcYdso9awgNewCf9UuxDsgGHSEPbKMQdEPmyRi82moS9xrqFj4xb5Md8-MCuJZ_UbsR-Ztq4J6J-rF47XlBOf4br-U1y-eNVa29Mw','They are amazing! Brad was awesome and everyone else made us feel at home! We’ll be back!','2018-08-22 19:05:06.626000','2018-08-22 19:05:06.626000',5,'Brittney Watts','https://lh4.googleusercontent.com/-w_-OLyvHjvQ/AAAAAAAAAAI/AAAAAAAAAAA/r_GLoOEiztE/c-rp-mo-br100/photo.jpg','16590124370714063921',3772),('AIe9_BF8X4EpR_fF6mwcYdso9awgNJJpLcUMglMN42ZKcwLVTSztEVszidaUu2kTLl30iSdAnY3qp1RrYrzvVR7oTLPTCwevQD21EXwT3CDYVzsX1WeTFo4','It was a quick and easy process. Caring staff that answered any questions I had and let me know what was happening. Amazing facility. Never had such an excellent experience before at an Emergency center. ','2016-11-01 15:14:03.143000','2016-11-01 15:14:03.143000',5,'Jiger Patel','https://lh3.googleusercontent.com/-Fua0Edf62eY/AAAAAAAAAAI/AAAAAAAAAAA/0UacGto7Fv4/c-rp-mo-br100/photo.jpg','14567670160750071148',1949),('AIe9_BF8X4EpR_fF6mwcYdso9awgNJUn1WtYsWkwibiWbR7otHPcJRsJPtwPHSLtEGSFn9BNaZyGldIFt70cHsX0uzWiUBkhnAUb-eTdlk-EOqw7-F_xobo','Awesome!! They were super nice and I got in and out very quickly! I would recommend this place to anyone. Kim (front desk) signed me very quickly and I was seen by Dr. Akunyili within minutes. The RN (Anthony I believe) was incredibly nice and made me feel comfortable','2018-09-05 02:26:15.332000','2018-09-05 02:26:15.332000',5,'katelyn davis','https://lh6.googleusercontent.com/-a4pwy1MabA0/AAAAAAAAAAI/AAAAAAAAAAA/Q2hbXnJOw3M/c-rp-mo-br100/photo.jpg','16590124370714063921',3745),('AIe9_BF8X4EpR_fF6mwcYdso9awgNKKyBZ--dAhIEwn8LCl-EgLj2Paqf82msbWwLioJsRvjD0UCwCfb-Aqrdl-N_eIp42bqLnwRuWofQsXvEOnQnm-4EdQ','Bad, bad staff they are rude and unprofessional .they don\'t care about humans they only care about money. I came in with panic attacks and I thought I was having serious problem. They treated me like am crazy and the doctor was very rude he basically was kicking me out indirectly .They only help you when you are a first time visit patientpatient. When you return expect the attitude and rudeness and no help .They save time not even doing a simple blood work. I will never use this emergency again .It\'s a one time only. Bad if I could give them no star I will.','2018-07-03 08:42:35.043000','2018-07-03 08:42:35.043000',1,'Sara Amir','https://lh5.googleusercontent.com/-A128mv1JDL8/AAAAAAAAAAI/AAAAAAAAAAA/GKB58yzi750/c-rp-mo-br100/photo.jpg','12541597562633926366',638),('AIe9_BF8X4EpR_fF6mwcYdso9awgNKOpASmfp8XDxynMDRuX8xniEUDyOQtahqxIToN-aa6nqxO_2Q00EKgYxUa0kBAjYmcX2nIb898n6HJ5Ck5uI0tMYGo','Dr. Mauldin, Ekaterini, Marvin and Melissa did a great job. They were very nice and helpful. Clean facility as well.','2019-06-30 07:29:12.395000','2019-06-30 07:29:12.395000',5,'Anurag Sharma','https://lh4.googleusercontent.com/-ohUESDIth6U/AAAAAAAAAAI/AAAAAAAAAAA/w7mxnPtwYSA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awgnrZYuTP2p4cy2kAS8gNU5NtlHe5vgb5A62vLsFvInFk9FGoiT7pJ0zrp4hbqDgvoUY5zBtoo57DysMuA2oAsWKoygOc','The doctor and nurses were very helpful caring and polite passionate funny attentive and had an amazing bedside manner. Confidential safe and clean environment up-to-date equipment policies and procedures follows HIPAA OSHA and proper PPE regulations. Really enjoyed my time here was very helpful they helped me feel much better, and oh yeah and the additional wait time is slim to none! Best Emergency Care ever!','2016-11-20 23:47:53.266000','2016-11-20 23:47:53.266000',5,'Sharecca Thomas','https://lh4.googleusercontent.com/-0p1DxySwOyA/AAAAAAAAAAI/AAAAAAAAAAA/14FwLePYdEQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5165),('AIe9_BF8X4EpR_fF6mwcYdso9awgnYsIOlRGA7QLT2MXrMNPDJvf0x9zal3vALcnzFhpdL0ztPKcnoyyq2j_gTQv2j-OVXyB6MIrw5Y8jIKOX5GR2cQI47s','The staff here is amazingly kind, informative and personable! They are always willing to go the extra mile to make you comfortable. Also their facility is immaculate. Thank you for all you do.','2018-08-23 19:25:10.657000','2018-08-23 19:25:10.657000',5,'Audrey Gutierrez','https://lh5.googleusercontent.com/-GwJ02-ZJ41w/AAAAAAAAAAI/AAAAAAAAAAA/EFuc1fUmIFk/c-rp-mo-br100/photo.jpg','16891069708558046635',4441),('AIe9_BF8X4EpR_fF6mwcYdso9awgO6Hjmpv3tZwGgQ_YdfxAALO8N-wLMDzGR5zUX-RtX0pJANcWYLD5NHbMxz4rAoFufIuqDPZ_2G9nmDPQsJmiRja5fKA','Everyone was wonderful! I took in my child for a sprained ankle. At the moment we walked in, we were greeted by Malissa. The nurse, Nichole, asked my child all the necessary questions and listened attentively as my child rattled on about everything that happened. She also offered us a drink, which I thought was nice. We were then moved to the \"Moana Room.\" It was nice to see they have a decorated for kids! Dr. Ken Frausto came in and looked over my child\'s ankle, while having a conversation rather than just drumming off a serious of questions. An x-ray was ordered and the radiology tech, Laura, was fantastic as she calmed my child\'s nerves.\nAside from the wonderful care, friendliness, (... and great snacks!), what I appreciated most was everyone\'s demeanor with my child. PLUS, they called a couple of days later to check in! I would definitely recommend SignatureCare! From our experience, it is obvious they care about everyone who walks in!','2018-10-04 15:11:17.757000','2018-10-04 15:11:17.757000',5,'Sandra Russell','https://lh5.googleusercontent.com/-JNgucqbiSMY/AAAAAAAAAAI/AAAAAAAAAAA/KbpLJF1tSmY/c-rp-mo-br100/photo.jpg','12541597562633926366',599),('AIe9_BF8X4EpR_fF6mwcYdso9awgo72jUW33J8ewFo3vqVORHOYD2-dErYEQb3rDRr-shWy3iObPY-Pu4IDQ1BPyA3Q2zuYf-M2q7R97GMxkrHcMxQMihKQ','Son had a smashed finger. They had us in and taking care of him in 10 minutes. Cleaned up, sewn up and X-ray in 2 hours. \nFriendly helpful. Great experience!','2020-03-20 01:10:44.850000','2020-03-20 01:10:44.850000',5,'Kelly Hayes','https://lh3.googleusercontent.com/-m34Cx4Ec0VU/AAAAAAAAAAI/AAAAAAAAAAA/5VxGPXJvEuY/c-rp-mo-br100/photo.jpg','13486358490203335051',20920),('AIe9_BF8X4EpR_fF6mwcYdso9awgolks5a6pdMPKWdMKo96FDAFs-caYe3Nl584MQkqpna-3-5dxKRC2fymtmdLmuQ3qOzeGM3wSBn9vdjjEZ279widpC2Q','The whole team was very professional, quick to assess, and took great care of me. The facility is top notch. I highly recommend coming here!','2019-08-31 08:55:51.881000','2019-08-31 08:55:51.881000',5,'Madison Welch','https://lh6.googleusercontent.com/-Cw5i0qWpoDI/AAAAAAAAAAI/AAAAAAAAAAA/bVzhnebzp8k/c-rp-mo-br100/photo.jpg','13486358490203335051',840),('AIe9_BF8X4EpR_fF6mwcYdso9awgoNOEYe0Rcp4NLOOUIa2B29n3hmAzNXW0rJNY_I6MGiBGLJG_PDuoJufSpL_lPdNDE6F_nCLfu8UFIEUCAjNQYM3HWJs','The wait to get into the exam room was less than 10 minutes. \nEveryone that we have met today at the ER are extremely professional and appear genuinely concerned about your health. I would definitely come back if we are ever in need of an ER Visit.','2020-02-19 17:44:45.191000','2020-02-19 17:44:45.191000',5,'Christy Dean','https://lh3.googleusercontent.com/-OOcCRsUPUQY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnooI0I377uVHc0yev_ZxLGRAorNg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14607),('AIe9_BF8X4EpR_fF6mwcYdso9awgOOTVDPvEJ1pTYpA4gPDyklbQnTE0SOIxfd0T8fJyWRf_0PevqyDkjUw_svyMHMr7uj_rxCmM2SNKYxp9K56ZGv7jHPA','We were in there with my daughter for an ear infection and the staff was so amazing and nice. The two desk ladies at the front were so nice and welcoming. My daughter was so afraid but they made her feel so safe. We were there for about no more than 30 min. Would definitely go back.','2020-02-13 21:28:18.714000','2020-02-13 21:28:18.714000',5,'Ariana Mata','https://lh6.googleusercontent.com/-FJOhw7-VJ-A/AAAAAAAAAAI/AAAAAAAAAAA/AJc0NJ7WLX0/c-rp-mo-br100/photo.jpg','6521947413723274945',14580),('AIe9_BF8X4EpR_fF6mwcYdso9awgoPKTSiZpHHyvlnydZYOpX0nfyOKmc0YrBAhaD1u8PdTyVuzeG_hRGUvQpFsPcOvr09e1Q4QK9bme1oKrXYjVgMnsKXg','Came in today for Strep Throat was greeted by Amy who was very nice and and happy to help me. Blake and Kris made sure to ask me exactly how I’m feeling so that they could provide me with the highest care possible. Would visit again and would recommend to anybody needing emergency care.','2020-08-01 21:59:26.534000','2020-08-01 21:59:26.534000',5,'Brielle B','https://lh3.googleusercontent.com/a-/AOh14GgKUTDmdI3BsaDwqzzLQygFQiDQ1Eumh8cqBeJO3A=c0x00000000-cc-rp-ba3','8679688254631342173',22241),('AIe9_BF8X4EpR_fF6mwcYdso9awgOrf7JADxn_i1IF_M_Kd-LWUdCLbKF_dfu-mnwGBdL2Y4UaLfJCbkgHJDMAj8N7AXCuNXU6FhG1g4-HQb-VRkKwsHj4E',NULL,'2020-03-04 01:23:52.940000','2020-03-04 01:23:52.940000',5,'Victoria San Miguel','https://lh4.googleusercontent.com/-0m1h5Bl1sNc/AAAAAAAAAAI/AAAAAAAAAAA/Tboqku8s7tQ/c-rp-mo-br100/photo.jpg','6521947413723274945',14513),('AIe9_BF8X4EpR_fF6mwcYdso9awgoxzJmHWen17AgaLimsGwwnv-DVTVaIP_4P9S7mslOQKZNUhz-6li6v0A8UpEOWXK8SF3NzaCcv7GtYx--4R3z6GysHA','Great experience. Came with my roommate and we had Kathleen who was phenomenal. 10/10 recommend','2020-01-15 11:23:25.954000','2020-01-15 11:23:25.954000',5,'Kaitlyn','https://lh6.googleusercontent.com/-k1qAo2GRLmc/AAAAAAAAAAI/AAAAAAAAAAA/xxi8OE-9Hg0/c-rp-mo-br100/photo.jpg','16590124370714063921',9756),('AIe9_BF8X4EpR_fF6mwcYdso9awgOy8RSY_F5463UDYwKRT7HwtfnZyd2_i-WyWzDYkANVMGdANNwOhtR2VBOW7TPWJ0AqB7BTnZATZTAHD-tjj3reeN9BA','Really nice and rapid essential workers!!\nAmy was really friendly with registration !\nNurse Mina was good with explaining the test they had.\nDr Liam! Was really good as well','2020-08-03 15:54:03.852000','2020-08-03 15:54:03.852000',5,'Jessica Gomez','https://lh6.googleusercontent.com/-_Iw-rzCQylU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckPAe6q84VKzkSoydEE1zl1kNI1vg/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22140),('AIe9_BF8X4EpR_fF6mwcYdso9awgP7TGmswOSjpU-9N524jHH07YfeTjKpagMYP_H-PRdp9VsT0CXOe5PI49rdxOPgHv-0Q6FeEuv-jxhPR3o_aE2u6V-0c','Mercy was the receptionist very warm and inviting. Ms Luara was my Nurse she has a motherly and sweet demeanor. Dr. Sylvester bed side manner was great.','2017-10-12 12:57:14.219000','2017-10-12 12:57:14.219000',5,'Brian Fazbear\'s','https://lh3.googleusercontent.com/-eNWLVubSKjU/AAAAAAAAAAI/AAAAAAAAAAA/n82mbQuRtSY/c-rp-mo-br100/photo.jpg','3511292162159714121',7778),('AIe9_BF8X4EpR_fF6mwcYdso9awgPDCORW-5yhxdUQoXq4zqk5WEQ570mAJnik6Qa_vrnLqqt24WK_c_DYBHvFJDK3n0OUs8MB-Ium7f2UBybjlTnnl39pE','I took my man to the clinic this morning. while he saw the staff, i stayed in the waiting area with his son. Ms. Rosie turned on the child\'s tv station Sprout and gave us some snacks and waters, which was awesome because we had not had breakfast yet. And the guard, Mr. Wentworth was very friendly too. The doctors and nurses were very friendly and facility was clean. We would definitely recommend it.\nThank You','2015-02-22 20:01:21.072000','2015-02-22 20:01:21.072000',5,'thresa cerda','https://lh3.googleusercontent.com/-eHdgYePmEKE/AAAAAAAAAAI/AAAAAAAAAAA/aAWANXDY7jo/c-rp-mo-br100/photo.jpg','17898197009688164559',5958),('AIe9_BF8X4EpR_fF6mwcYdso9awgpdnqol0U_5UcbWpiggyV17hSpDKTiLMfEu4TqL7Dhg8v6XrdDs7oWlTb1PJd9a3wXVUaBRf29jsX4evEK8rviJzqS6Q','Came in to get tested for COVID-19. The staff was very helpful and got me in and out!! The results were almost instant. Cody and Nydia were awesome! Keep up the good work','2020-07-26 16:10:18.694000','2020-07-26 16:10:18.694000',5,'Corey Frye','https://lh6.googleusercontent.com/-FI9j93hJYUA/AAAAAAAAAAI/AAAAAAAAAAA/AgLHXcMvkbc/c-rp-mo-br100/photo.jpg','2077061009497551125',22833),('AIe9_BF8X4EpR_fF6mwcYdso9awgpPP5S1lf3ap_KSjkZrOqMEFnsL0mu2yDWPYE3IX9GTFd_Dpx1acRROA3-qI1e84MGXCrUICri7L1fPmt01fl-ElN0Ec','Had great service by Alyssa P, Karen C., Shawn K. They were delightful and amazing service! Would definitely recommend.','2020-01-24 18:46:34.722000','2020-01-24 18:46:34.722000',5,'Nancy Barrios','https://lh3.googleusercontent.com/-_G3yEioAT_M/AAAAAAAAAAI/AAAAAAAAAAA/NlVNVow7e9g/c-rp-mo-br100/photo.jpg','8918455867446117794',14868),('AIe9_BF8X4EpR_fF6mwcYdso9awgQj4930GUrPqBFcPdPluvEFqt4wGRhamv9vfMHB4roERLm1LpRwoQiRaNzp4RQSMjik_t1RXxaVBJg0jU1dOYtqUC5iw','Very clean... Very Professional and kind!!!','2019-10-16 18:53:28.744000','2019-10-16 18:53:28.744000',5,'asgiana taylor','https://lh5.googleusercontent.com/-0egjQMFeiaM/AAAAAAAAAAI/AAAAAAAAAAA/ofOVQHTsPd4/c-rp-mo-br100/photo.jpg','16389487648212004696',2812),('AIe9_BF8X4EpR_fF6mwcYdso9awgqJfRv0t2D3QNiu1-0BWHhyvkfLzsdJZ6slO524WrcRT8d1wqbTuinRl8WKQ4pTxBmX243X7jOrLGmX3sDtyZGnHF6_E','The absolute best health care and personal service I have ever received. Every single staff member I encountered was friendly, personable, caring, professional and awesome...yes, awesome. .not merely professional. From the front desk to the technicians, doctors, nurses and in my case, a consultant also, every single person treated me with respect and care. Everything was explained to me and they waited until all my questions were answered. I cannot say enough about the staff and the operation of the place. Just WOW! Signature Care is my ER from now on. You ROCK!','2019-02-04 02:04:09.135000','2019-02-04 02:04:09.135000',5,'Rose D.','https://lh6.googleusercontent.com/-qGvJ1DBG3mo/AAAAAAAAAAI/AAAAAAAAAAA/JPXdi_wmk1w/c-rp-mo-br100/photo.jpg','13486358490203335051',1075),('AIe9_BF8X4EpR_fF6mwcYdso9awgQnCpGF91OQUbugSncwpuwkcvApWrge6vNiz233HDRPIbXBvOFi2bhWZsH06daNFV-OlIwKy_MKzV9v7p40FUaw-63oI','Great receptionists, nurses, and doctor. Very fast. Would come here again.','2019-07-17 01:19:40.283000','2019-07-17 01:19:40.283000',5,'Courtney Smerud','https://lh4.googleusercontent.com/-LaPBLNLxVZU/AAAAAAAAAAI/AAAAAAAAAAA/4MNSb_VPYfI/c-rp-mo-br100/photo.jpg','6521947413723274945',8193),('AIe9_BF8X4EpR_fF6mwcYdso9awgQQj7h7jieb-0SsS5wg5-vwKq8HD3v5vr0tIbPUhiX4PASuDWS_gwHSIhaCkBGpTIRoTlYCRbzkynd4VWLt70UOS_2wY',NULL,'2017-08-20 23:12:40.013000','2017-08-20 23:12:40.013000',5,'Kayan Edwards','https://lh5.googleusercontent.com/-vWLPB0WdYH8/AAAAAAAAAAI/AAAAAAAAAAA/5jLrHgLDXn4/c-rp-mo-br100/photo.jpg','17394740196501090048',4992),('AIe9_BF8X4EpR_fF6mwcYdso9awgqTiQj0CxbvGqewt5LjWxtmFpCcrVo8YAJaQ7tHBRViNico0gU0spkwGvVIofzPuFS9zvSXnOcfsTRDpNDKWc4rNLtLI','I had a really great experience at this SignatureCare. They\'re open 24/7 even on Sundays, one of the only ones in College Station, and the staff was so nice and helpful with working out payment options. Also, they let you know if you need emergency care or not before you go through with any treatments or tests. I highly recommend it!!','2017-10-23 03:39:58.884000','2017-10-23 03:39:58.884000',5,'Madison Bryant','https://lh5.googleusercontent.com/-9iBfDHjhCAo/AAAAAAAAAAI/AAAAAAAAAAA/H2hOHInjmqM/c-rp-mo-br100/photo.jpg','16590124370714063921',3915),('AIe9_BF8X4EpR_fF6mwcYdso9awgqUN1-WZtR3D7kS-L_dZ7_1LMy9E158jxkSghaqvky3yoYLURBvZqGjyD2C21Y11UQmkPzyZCXv0KGHWQyp_xFf1WBfY','Excellent service. Receptionist was awesome. She gave us the information we needed to know for self pay. Nurses and Doctor were very nice and answered all health questions we asked. Very neat and organized clinic.','2019-06-10 01:59:51.051000','2019-06-10 01:59:51.051000',5,'Ashley Mendoza','https://lh4.googleusercontent.com/-YYGIeEVlD88/AAAAAAAAAAI/AAAAAAAAAAA/XRag_wao8YI/c-rp-mo-br100/photo.jpg','17898197009688164559',5705),('AIe9_BF8X4EpR_fF6mwcYdso9awgqZtGKEQL7ZbTgn7aANCmxo9LPWP0Cpv3UE4ji60KSJ2G7IEfxL92_AjxfdBQyu7_2kRPN5P8qZHXROdfw2Jd1KgvD80','very nice and fast!','2020-05-27 21:44:05.306000','2020-05-27 21:44:05.306000',5,'Audrey Rawls','https://lh4.googleusercontent.com/-Np794j0fA4c/AAAAAAAAAAI/AAAAAAAAAAA/feGRGqPEXHU/c-rp-mo-br100/photo.jpg','14748677429039074158',21779),('AIe9_BF8X4EpR_fF6mwcYdso9awgr6_2bf8bVp0OBt5mnntKEnYGas4xwPfNHUqSm5WltZkA0gjmj_xDtwK_ntRIAwJuq8Gyl20y19FQonwnyFIB6XZ8t_U','DR. AKUNYILI, MD, EDOZIE J and nurse Noteboom,Nicole we’re amazing. They made me feel comfortable and explained everything they were doing in detail. If ever needed, I will definitely come back here.','2018-05-23 14:32:11.191000','2018-05-23 14:32:11.191000',5,'Briannavega','https://lh5.googleusercontent.com/-vs0SdJW37gM/AAAAAAAAAAI/AAAAAAAAAAA/4Jhe99o5pUo/c-rp-mo-br100/photo.jpg','14567670160750071148',1620),('AIe9_BF8X4EpR_fF6mwcYdso9awgr8xpzYuRNR9uGagsMp_7HC5wzFqcXZGxlA-pcWAjZvI2aphLdkDkLtoRvT78IEeSZZyaVEt4405IciDELARWsZ64h_0','I absolutely loved the whole visit to Signature Care! From check in to check out. Everyone was so helpful and make you feel so at home. I really loved my nurse Selina she really went above and beyond for me and made me feel like she cared about me and my health! I am never going back to s Hospital ER ever again. I am Signature Care #1 fan','2017-08-11 08:37:44.091000','2017-08-11 08:37:44.091000',5,'Dessire Camarillo','https://lh4.googleusercontent.com/-ttFwsC6ZkQc/AAAAAAAAAAI/AAAAAAAAAAA/Vqu_JJRZfS0/c-rp-mo-br100/photo.jpg','17394740196501090048',5001),('AIe9_BF8X4EpR_fF6mwcYdso9awgRe27x_v-yCvQaYYO3UV_4REnB8qubv9PiJfMac888lT15lpySYxBAMs_IZHojMYDxkpuCXdIu4Po2H782Z5fgWyf9io',NULL,'2019-11-07 23:05:48.349000','2019-11-07 23:05:48.349000',5,'Lake Dubois','https://lh3.googleusercontent.com/-WWKw-PR9fPE/AAAAAAAAAAI/AAAAAAAAAAA/UUPFn_3H980/c-rp-mo-br100/photo.jpg','13486358490203335051',749),('AIe9_BF8X4EpR_fF6mwcYdso9awgrj_UYVheMj9Cp5aSJClIWvOL2rZ_wRFITE_ROT52vhnOEfKs5b3iUokbulZPLQ7Ia1HqiFL_YrNmBgc3FxM3z3jDmfQ','I was helped today by Cody and seen by Nydia, they were both very professional and efficient. I was able to be seen the day i called to request my appointment witch was great 👍.','2020-07-28 21:44:06.981000','2020-07-28 21:44:06.981000',5,'brenda diaz','https://lh3.googleusercontent.com/-CD02dKqWxFo/AAAAAAAAAAI/AAAAAAAAAAA/MqgYFLZE_WY/c-rp-mo-br100/photo.jpg','2077061009497551125',22781),('AIe9_BF8X4EpR_fF6mwcYdso9awgRKk_SEjifPlHXHTydK06-fHLPV42owaJcejrhznnyZfDiROFmgbr59EVwEzHkZ7aPS5HjCDtUeNLB4QKwAW1u59B6L8','Dr Das and his staff provided me with awesome service.','2020-07-31 21:27:02.981000','2020-07-31 21:27:02.981000',5,'jonathan stubbs','https://lh6.googleusercontent.com/-KqoWA_L2hIA/AAAAAAAAAAI/AAAAAAAAAAA/Bt5bF5O78lk/c-rp-mo-br100/photo.jpg','14748677429039074158',21893),('AIe9_BF8X4EpR_fF6mwcYdso9awgroISP-RvQEq1IZhVrwwTe5UIKBuEr0KXsHmUBEWnLUXqIKJU8pZUPlnR_qlBvHHxswn8s7V8EbAmpB9qmZkUFv26d38',NULL,'2019-12-23 01:22:25.272000','2019-12-23 01:22:25.272000',5,'Wes Adkins','https://lh3.googleusercontent.com/-sqFD963BJiw/AAAAAAAAAAI/AAAAAAAAAAA/2FZyjKbPd-g/c-rp-mo-br100/photo.jpg','13486358490203335051',669),('AIe9_BF8X4EpR_fF6mwcYdso9awgrWCQkr8MW5amMMuHVdbWMvWsRgVINDHjOt_sE_NujI3lqtMlWWbx3NehS_VnT7ptDodBT7tpIf3z91KbsPUej6RMr_4',NULL,'2019-04-15 19:14:02.250000','2019-04-15 19:14:02.250000',5,'Cailin Paul','https://lh4.googleusercontent.com/-8KbOrffMsZE/AAAAAAAAAAI/AAAAAAAAAAA/ybLS0Amdmk8/c-rp-mo-br100/photo.jpg','16590124370714063921',3429),('AIe9_BF8X4EpR_fF6mwcYdso9awgS_TBKanmNEZYYulkuBxs_1LgqwZPTkdfe-P--biINhp8v3fy_0Pe_uyL-AAWA-vIu6IC7EyVNPVt4BOmNo2T9lHdFr8',NULL,'2018-12-21 03:10:05.346000','2018-12-21 03:10:05.346000',5,'shelby royal','https://lh6.googleusercontent.com/-6GD51v4G8I4/AAAAAAAAAAI/AAAAAAAAAAA/sDzhm8mJ624/c-rp-mo-br100/photo.jpg','17898197009688164559',5907),('AIe9_BF8X4EpR_fF6mwcYdso9awgSd8XQ_clHKhRbvcKMHmc8wL2LSkd4yqiRzuvrd5UTgWvUuXBAiroNmG3zXALQFrkagpb6HfnxAYoFD8zZwyYjYjp7wc','Wonderful staff, thanks Manny and Ector.','2020-08-04 21:23:08.329000','2020-08-04 21:23:08.329000',5,'itzel ortiz','https://lh3.googleusercontent.com/-5b_vLFlIeCI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckyYb8y3f253YQzwRq34O-7hXg1Ig/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22182),('AIe9_BF8X4EpR_fF6mwcYdso9awgSDBmFnvFWkmFw9oQcJJp5daP-u9qdUYntSvPHqv8zHszbCJ_udqxPlXzXJO3y8ZuATsmUDRFdcttUyjjGxf0avjI4E8','They all did completely amazing I\'m thankful they are here to tell people.','2019-12-14 22:18:27.557000','2019-12-14 22:18:27.557000',5,'Angelica shaw','https://lh4.googleusercontent.com/-FYBvqba-oM8/AAAAAAAAAAI/AAAAAAAAAAA/tg8Npjss4Ws/c-rp-mo-br100/photo.jpg','8626688543755174284',14649),('AIe9_BF8X4EpR_fF6mwcYdso9awgSixDflv9Pa05HQIbJrT1RBgPXtDjCfKq83e4rW9mC4i6nPvA72eWo5i2Mw8yw-jqqLQgrEGdnq2IwVTOAShIHKPL_hk','My experience here is always a blast and I love coming thank y’all for all of y’all experience Maya the receptionist was so nice and our nurse Victoria was so kind','2020-01-24 21:56:38.865000','2020-01-24 21:56:38.865000',5,'tyrese simpson','https://lh6.googleusercontent.com/-M9dCNz8z7ng/AAAAAAAAAAI/AAAAAAAAAAA/idkxgVoayc4/c-rp-mo-br100/photo.jpg','12541597562633926366',10101),('AIe9_BF8X4EpR_fF6mwcYdso9awgSK9s0GLlGu60ghCyjLE4AnprCTmsvXtDiCKGVZrIsz0JMRIJ-fbjFF6c0Qo-KV6K_psuOtRdsP3QSvNSYCiqHEL5Q70','I had been there a couple of different times before but this time really stood out. Dr. Jaber was sooooo interested in how I actually felt and so concerned about my situation. Sherwin was awesome in trying to make sure I was comfortable and Sara who my nurse had excellent bedside manner. Alyssa was quick in getting all of my information together so I could go back and be seen. Now I don’t know if this team is a permanent fixture for this location but they are a DREAM team to say the least.','2019-11-20 17:19:30.372000','2019-11-20 17:19:30.372000',5,'Marie Prier','https://lh4.googleusercontent.com/-ZIHIeWKVzOc/AAAAAAAAAAI/AAAAAAAAAAA/7t0-9yI4foQ/c-rp-mo-br100/photo.jpg','12541597562633926366',378),('AIe9_BF8X4EpR_fF6mwcYdso9awgsKAatmqul6sfnBLU16zpYmVhx3MlrovO6VZK3TIYt4YjPxFtQAcqhlYC0WA92wasBnNoXKGeAmHGXXTo05j5L-amlHA',NULL,'2019-09-15 18:38:25.540000','2019-09-15 18:38:25.540000',5,'Shelby Heisey','https://lh6.googleusercontent.com/-RAY0tx_X_vg/AAAAAAAAAAI/AAAAAAAAAAA/2AiWkYVqVk8/c-rp-mo-br100/photo.jpg','6521947413723274945',8144),('AIe9_BF8X4EpR_fF6mwcYdso9awgSM0CQMQKsTt7pziY_LZEKul9YSH2pr9Qfd5I_kX8TvFh8eM5y_d5rZ7QXR1HwJXsdW7qG8GOM1ZZctDbui0K4FIasWc','I came here on Friday for chest pain and my doctor notice something wasn’t right. He took his time he ran ALL the necessary test and wouldn’t let me leave until he knew I was safe and released me me into great hands of Doctor Ali. You guys are amazing thank you so much for listening, and really trying to make me as comfortable as you possibly could. We need more doctors like you and with the staff you have I forgot to mention my nurses were so nice and they were there for me every step of the way! You guys get ⭐️⭐️⭐️⭐️⭐️From me!!!!','2018-11-19 19:12:00.402000','2018-11-19 19:12:00.402000',5,'LaNail Edwards','https://lh3.googleusercontent.com/-pQep_6HIVuU/AAAAAAAAAAI/AAAAAAAAAAA/cECvPnblknQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4762),('AIe9_BF8X4EpR_fF6mwcYdso9awgSnT_d6cKfAfLU0hgsKy-Il24abGiUVrqD098Xs7sg1iVUA8yZBS4U-vrK4ruI_2m5bbdsMMHa3MVSUKZRoe-z-BNILU','Thanks Dr. Yousof for the excellent care. fast service','2019-02-18 21:10:27.212000','2019-02-18 21:10:27.212000',5,'Tim Nguyen','https://lh3.googleusercontent.com/-8qCTiUxCSfo/AAAAAAAAAAI/AAAAAAAAAAA/FzFgZ3GV47w/c-rp-mo-br100/photo.jpg','3511292162159714121',7400),('AIe9_BF8X4EpR_fF6mwcYdso9awgsuOpOeoGJAyPEfCrvjsGvQzVhF7kt52sJZNPIaS-wod0J542U8ITrPKQ8lr0CLyZHmNnTDXdYT72prX-IGADKwgOS7s','Love them great service in and out \nSingla Stephanie Carly Mercy','2019-12-16 21:51:14.229000','2019-12-16 21:51:14.229000',5,'Cally Hearse','https://lh4.googleusercontent.com/-uWbx3JNhtKM/AAAAAAAAAAI/AAAAAAAAAAA/svGPxMH8GZ0/c-rp-mo-br100/photo.jpg','12541597562633926366',341),('AIe9_BF8X4EpR_fF6mwcYdso9awgsv-JF0XXAiV7nyR0FjXjvSVZnzyftRsAzfMzDQsUPEud_Z0-yU19yGq_2iVcWurPuWlAWpmCQ5dyHvFOfOkhPVclk80','Had a pretty amazing experience, everyone was kind and patient. I did however find out that I never want to take a flu test ever again. But they did their best to make it pleasant for me ^_^','2018-12-28 20:16:13.181000','2018-12-28 20:16:13.181000',5,'Jordan Evans','https://lh5.googleusercontent.com/-li4u2ZDYBjQ/AAAAAAAAAAI/AAAAAAAAAAA/uwHJ2Xv_fjg/c-rp-mo-br100/photo.jpg','3272657195432704501',7081),('AIe9_BF8X4EpR_fF6mwcYdso9awgT_XttiFCYMjr4jS039-UAeCTqkqayXzWvqCEERB1EILNP8AS6BjShsY4xZfEiLUhFqzisG9d7a2qcnlU9orlp8qumpo','They are always so amazing here ! From registration keaire er tech normal that took my blood the nurse churiah the ct tech eve and especially dr j thomas!! I will recommend signaturecare to everyone!!!','2019-10-04 14:48:42.438000','2019-10-04 14:48:42.438000',5,'anthonyruby gusman','https://lh3.googleusercontent.com/-G57HCBKD2dY/AAAAAAAAAAI/AAAAAAAAAAA/PXtYV6NHbgI/c-rp-mo-br100/photo.jpg','3511292162159714121',7166),('AIe9_BF8X4EpR_fF6mwcYdso9awgT1B8mm1jDuTpqL9bkcWBvby4sy1CDUrwxc5gxkafGF2xqahxHuAv1RhKfJingBtee1bxAGLDTbg_eTnZZaw6B9r6IFs','Very friendly staff. The appointment was quick and easy for a rapid Covid test.','2020-08-22 20:14:03.459000','2020-08-22 20:14:03.459000',5,'Erika Engler','https://lh4.googleusercontent.com/-LcZkqmF6TGc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnEOyBI99ClkRznYEvECIMrsOp2Jw/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awgt1GJB6nMiDLPb4aqFgXvtPmex9CTTbJ40Un5oq6P0uIE0Cm17cdbdSeOrUIKsjyjTsjsgrHRb7r_m5jpRLl6dMdcWnU','They got me in quickly on nye (my birthday) and got me back to feeling well in just about an hour. They were so kind and the whole experience, which I thought would be a chaotic one, was very calming and relaxed. Nurse Ricky and nurse Quyen and dr. Tran, as well as the other nurses and front desk staff Carly were kind, caring and attentive. I will always go back here for my emergency needs over the plain hospital. Thanks for making my terrible birthday a little bit better.','2020-01-01 16:47:07.829000','2020-01-01 16:47:07.829000',5,'Nicole Kaspar','https://lh3.googleusercontent.com/-kdSev5fUO7A/AAAAAAAAAAI/AAAAAAAAAAA/q_2xBa-E9_I/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',270),('AIe9_BF8X4EpR_fF6mwcYdso9awgT3ouBfgufcom2pDUgtEfF3rlWAj2A17AkelVQzUHuHUDmAhugH4QTt2SvJWyD9Pg0ZvxXeHzGgIgPpnIA-Djckha0lg','As soon as walked in through the door I was seen almost immediately Alvean was very nice and mad me a cup of coffe while I waited on dr.henderson who was very nice and calm as well','2019-10-26 19:55:51.926000','2019-10-26 19:55:51.926000',5,'Justin Mason','https://lh5.googleusercontent.com/-fGgvR43W5B4/AAAAAAAAAAI/AAAAAAAAAAA/K-_MtUNcF0E/c-rp-mo-br100/photo.jpg','16389487648212004696',2767),('AIe9_BF8X4EpR_fF6mwcYdso9awgt4N2Q6SSFvOcGXDxOxX7onv4keU2IDbY12Ch3_VJ0TM2TZO8T2m_Io5kFv4859JKYwViUAp64I_S2UwY3m4ubbMXdLQ','Nicest staff great doctors..','2017-09-02 15:05:09.462000','2017-09-02 15:05:09.462000',5,'Dennis Ristick','https://lh5.googleusercontent.com/-nJkTxB4lyVM/AAAAAAAAAAI/AAAAAAAAAAA/vnvOyiFvRrk/c-rp-mo-br100/photo.jpg','17394740196501090048',4986),('AIe9_BF8X4EpR_fF6mwcYdso9awgtBWv_19Qg_UH_VIfSG8ivLTSC1EavfAYghN-EDyfPrKW3RAkIodrxa-AXCfzzxcOHySv4kVKjhjsQtHdrThe4O9ZxEw','Lorena and Victoria were great check in nurses.','2020-07-31 13:28:00.436000','2020-07-31 13:28:00.436000',5,'Alayna Kizer','https://lh5.googleusercontent.com/-BvoLP9EWN2w/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnvlRgKn_AJ1a32R_JekpUl3S5tbg/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21995),('AIe9_BF8X4EpR_fF6mwcYdso9awgtckVRY6wI1f9jY8yUAz4XJbARNj3UgTB650ab4WWYFN_6-T7I32d89Xkln7MhID2Fe7L_mf18LJ4kSMVEW91tzmBfig','Great, helpful and friendly staff.. DR. Prodeep Golla, DO was the best Dr anyone could ask for . He knows what he was doing and very helpful and friendly..\nSame as Nurse: Lisa : Mercedes','2016-06-07 15:27:17.435000','2016-06-07 15:27:17.435000',5,'ogechukwu obi','https://lh3.googleusercontent.com/-46zkvLr3GTc/AAAAAAAAAAI/AAAAAAAAAAA/-nEbo22cPgk/c-rp-mo-br100/photo.jpg','17394740196501090048',5240),('AIe9_BF8X4EpR_fF6mwcYdso9awgTht5q6YyHHHTYsCpuTr6QKcgSXRfCPyIMCCXjWQU0obhHw3F0pnTRtoYych8H-qGrgJPOPvwbtow0THKMBIySORNVCk','incredibly nice staff!','2019-10-21 06:41:38.136000','2019-10-21 06:41:38.136000',5,'Maya Dee','https://lh5.googleusercontent.com/-3fI9ZOY3vsw/AAAAAAAAAAI/AAAAAAAAAAA/D_DJ3WIVwHY/c-rp-mo-br100/photo.jpg','2694018788013845459',6039),('AIe9_BF8X4EpR_fF6mwcYdso9awgTKN6L3usqEx5w_qVd4vYCpXsgdOrRCmSYauxCS9L7Ntdx0McBY9rSjW0xfwDPCzdD-1ofcSZEbgL0zROiu7tmUqDId4','Great experience and friendly smiles all around. \nDefinitely recommend this place to anyone!','2019-07-31 03:54:08.439000','2019-07-31 03:54:08.439000',5,'Sanil Williams','https://lh5.googleusercontent.com/-8hJFdsopp0o/AAAAAAAAAAI/AAAAAAAAAAA/yIBOpTs7O9c/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',475),('AIe9_BF8X4EpR_fF6mwcYdso9awgTo0zMKCpI-N7oglRWuJtWWT6eEipgdyij2PeFoUJ72qlZGLA-7rAbM5AUwCZVBOVNnV9mHLlV94lCs8Ac5od4VZe-cU','No wait time at all and I was seen very quickly. This place is hands down way better than any ER. The staff is always friendly and very attentive too. The doctors and nurses ar excellent and very patient as well. The office staff are kind, friendly and quick to answer any and all questions. Thank You so much once again for making sure I got the care that I needed!','2017-07-02 23:49:20.643000','2017-07-02 23:49:20.643000',5,'Rebecca Gallo','https://lh5.googleusercontent.com/-vXd40U3z_XA/AAAAAAAAAAI/AAAAAAAAAAA/AfDCtRW0Kt0/c-rp-mo-br100/photo.jpg','17394740196501090048',5027),('AIe9_BF8X4EpR_fF6mwcYdso9awgtRm1_ZLRX3k4LLDB-M81zCkdA2vtc2RHdn6srdbPlAJXbOZXQULDg3T0fQWfL9Y85Z58TlVJ9Jpz8TPoeYxhtXgGXBY','Outstanding service from the whole staff in record time. Have been there twice now in last couple of months and Doctors and all support staff have taken care of my 8 year old and myself with exceptional care. My 8 year old had a cut on his nose that they could have more easily treated with glue but he convinced us that stitching it up was the way to go even if the most painful way. Glad we went there and will be going there in the future with any issues.','2019-08-06 16:57:15.449000','2019-08-06 16:57:15.449000',5,'Tony Manti','https://lh6.googleusercontent.com/-8J5778xV-Lo/AAAAAAAAAAI/AAAAAAAAAAA/GXbJZLefzic/c-rp-mo-br100/photo.jpg','16891069708558046635',4225),('AIe9_BF8X4EpR_fF6mwcYdso9awgTveKk0n9yAIaP_p-06PEW_BqTDADvDmYbjA6abOuvEoSUB-dp6X-Zk3q-AvFJpupgVgBDJ5OTX53p047OnUdq_yKwGM','WARNING: Do not go here! Unless you want to pay over $3,000 for a strep throat test! They bill a $2,000 walk in the door fee! Either you pay that (most likely the case with most insurances) or they bill that outrageous amount to your insurance meaning you still pay it in increased premiums. An absolute scam and they explain none of this going in AND add extra testing that is not needed and bill outrageously for that as well.','2019-06-13 14:34:29.576000','2019-06-13 14:34:29.576000',1,'Paul Janowitz','https://lh6.googleusercontent.com/-YN7anGqdGpw/AAAAAAAAAAI/AAAAAAAAAAA/fCoMmy6Fpog/c-rp-mo-br100/photo.jpg','16891069708558046635',4252),('AIe9_BF8X4EpR_fF6mwcYdso9awgtxtS7ZZ3Y3y-dgu6hM8cy2AHwOSaWCWonJ-JHMHjKshbIP3CFPuBMSxkvvvNxLwU1gOLtjXjQ8zux1dF-16sX8VENG0','Staff was wonderful and very friendly & helpful','2018-09-03 17:40:19.783000','2018-09-03 17:40:19.783000',5,'Kathy Felder','https://lh6.googleusercontent.com/-3G6yszxO1I0/AAAAAAAAAAI/AAAAAAAAAAA/Mqo-fXSocbc/c-rp-mo-br100/photo.jpg','8918455867446117794',9238),('AIe9_BF8X4EpR_fF6mwcYdso9awgU1q9meuGuiRHLpKTKeGQFAPJpS_hFmL8Bt5VUigznWZEGeHylVLFBop4odi-mWa1oN1kkPbje_8IIqEl3sckzInN70k','I came in on so much pain it was unbearable. In just minutes, the entire staff worked in unity to check me in and assess me. Absolutely incredible staff!! Dr. Iheme. Alvean, Marcus, Jocelyn, and Brian are truly a fabulous team. Before I left I had an appointment with a specialist for THE VERY NEXT DAY! I don\'t know if you\'ve ever seen a specialist but you can count on a 3-6 month wait. Sorry hospitals... SignatureCare is my new ER. I\'ll be referring family and friends. Thanks Guys...you\'re the BEST!','2019-11-20 15:59:40.341000','2019-11-20 15:59:40.341000',5,'Marilyn Atwood','https://lh3.googleusercontent.com/-Mk7LyMUi7c0/AAAAAAAAAAI/AAAAAAAAAAA/M7fkHFZnt6M/c-rp-mo-br100/photo.jpg','16389487648212004696',2653),('AIe9_BF8X4EpR_fF6mwcYdso9awguMBMD2YEW1TzypFOBm92ubgSQ051ad09_MoI5KR8olu7SIzJgT5Gsky6pI5GabnbGLl7CCZ05u7E2xY6hu4bGeLvIkQ','The staff was very professional, nice, knowledgeable and helped me to be cared for by the doctor and out in a reasonable time to enjoy the rest of my weekend.','2018-07-29 12:24:14.752000','2018-07-29 12:24:14.752000',5,'Marva D Burks','https://lh4.googleusercontent.com/-u0ZQQRuFuGo/AAAAAAAAAAI/AAAAAAAAAAA/Ebb8mW_n9_4/c-rp-mo-br100/photo.jpg','12541597562633926366',626),('AIe9_BF8X4EpR_fF6mwcYdso9awgursJTJJkK1AzS3u3jfU_ru-vvqJxsXcJo2kk9l8QDEP0pfTMJebrYZuUCL0brPNtTNgnRRXl1s2-hs3x0keZMnHjPSE','They treated us like Royalty, I Highly recommend SignatureCare at anytime. They need to Train all the Hospitals! Thanks Dr. Golla , Nurse: Jubril&Tammi \nRadiologist:Sandy, ER Tech :Ralph ,Regirtration:Patty . We Appreciate You All, Thanks Again','2019-09-23 15:43:49.532000','2019-09-23 15:43:49.532000',5,'Hair-Ca-Tects salon','https://lh4.googleusercontent.com/-iutsJ_QAVeA/AAAAAAAAAAI/AAAAAAAAAAA/dyL_Po2gvHY/c-rp-mo-br100/photo.jpg','17394740196501090048',4601),('AIe9_BF8X4EpR_fF6mwcYdso9awguSdo-jXe5Eh44GoeR5Ou5WBEGf4BRtCTuqJmKUTpV_nsv9fgLpPVp3RvD79pErc2pEZi_J2x3vGBi6WQr8pNw7t6_3E','Front desk was prompt and professional and nice. DR jolly was everything you hope for in.a doctor. My nurse was also very nice. The whole visit was exceptional. Thanks!','2019-04-24 18:07:32.477000','2019-04-24 18:07:32.477000',5,'Shawn Odom','https://lh5.googleusercontent.com/-D0BmLfmBUqw/AAAAAAAAAAI/AAAAAAAAAAA/aN5O2y8CLq0/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',512),('AIe9_BF8X4EpR_fF6mwcYdso9awgUUVSSxnuTk3xikCmz_I2sQB_oF8hENdxi82GkWdKn36_S2iRZFMAd6Xya1mCsDzhlB427gkchjlIlszF9S1BWPYjDfc','I came here to get my 2 year old tested for Covid-19. He had symptoms of a cough, fever and runny nose. We were left in the waiting room for 7 hours! When I went up to inquire about the wait...a nurse walked by and said, “We’ve seen 100 of you people today.” I told her, “I paid my $175 like the first 100 and expect to be number 101.” Terrible service and very, very inefficient. There are too many other 24 hour Emergency Rooms in Texarkana to think about going to this one.','2020-07-07 21:04:39.700000','2020-07-07 21:04:39.700000',1,'Jason Newton','https://lh3.googleusercontent.com/a-/AOh14GjE2WB7Ke9erlQmlsB5n-ZHC9ca0skGO6QqxGjyyS8=c0x00000000-cc-rp','3272657195432704501',21467),('AIe9_BF8X4EpR_fF6mwcYdso9awgUW4IIJ88wXWFkqAnQ9mNt_lerxNkfpaBSUzirO32cdemHGXAY9a9iibIMzRx_nWdqTnsTJWGM-MBR0QQxMsJOnvo3XA','I came to Signature Care ER at Cypress Creek after i went to an urgent care for right abdominal pain. I barely started filling out the forms when they called me to go in. There was basically no wait. Jocelyn at registration was very welcoming and greeted me with a smile. For someone in pain, that means a lot. Alvean was my nurse and took my history in a professional and timely fashion. She had a pleasant personality and was very warm. Tricia was my CT tech and she is a God-send! She took my vitals, did my IV and did my CT. She explained everything thoroughly from the CT process to how long i can expect to get results. She got me some blankets, made me very comfortable and answered any questions i had for her. She went beyond and even made my sister coffee and got her some snacks while we waited for results. Dr. Harjai was very friendly and also gave me a detailed explanation of my condition. I wished I didn’t have to be in an ER but if i or any of my family members need to go, Signature would definitely be my only choice.','2019-09-18 18:32:27.118000','2019-09-18 18:32:27.118000',5,'M Perez','https://lh6.googleusercontent.com/-7Aa84Ax5F2g/AAAAAAAAAAI/AAAAAAAAAAA/pMPHK_nQHmQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2902),('AIe9_BF8X4EpR_fF6mwcYdso9awgUX6srw8JD3BA4XDiYSAce8amxRTnr4vEMoRL2Zsvs6D0mulqGaDYhJ7cQAGxsTvpGPnF3cpUa3Yne2dGh9KHSTsX6jo','The whole staff was kind and quick to help me. I was in and out in about an hour. I love the registration nurse Tanishia W! My visit was pleasant despite the circumstances.','2019-11-01 01:14:29.593000','2019-11-01 01:14:29.593000',5,'leonecia white','https://lh6.googleusercontent.com/-IQcm5rkrz7E/AAAAAAAAAAI/AAAAAAAAAAA/FSoVWFMuyaI/c-rp-mo-br100/photo.jpg','17898197009688164559',5470),('AIe9_BF8X4EpR_fF6mwcYdso9awgUYnAQ21zYuOY8pWOCOW_cq6mKbKkyqxHMD7fkqRuv9eKJvMc0TBw31Fy1J5yXuRQPwHciVPIRxVaxAiwfidNpaVc9DQ','I was skeptical about coming here after reading all the reviews BUT I’m glad I did. I found these guys over the internet and called to find out more info. The lady over the phone was extremely nice I mean this is THE BEST customer service I have received over the phone! HOWEVER, these reviews almost scared me away. Yes, the $10 charge to register is a bit much BUT they do this to make sure people don’t cancel. Otherwise those who really need the test won’t get it. I arrived and only my son (5) and I had appointments but I brought my other son (14) with me and husband just to see if there was any possible way they could be tested as well. There was no wait at all, were so nice AND were able to accommodate my family of 4 right then and there. I was so grateful as I’ve been sick and my nephew (who lives with us) tested positive this morning. I don’t know what my results are yet but I can tell you that I will be coming back to this facility for any ER related issues (let’s hope I don’t have many). \n\nThank you for all your help and support!! You made a very difficult time so easy and hassle free.','2020-07-18 03:10:05.832000','2020-07-18 03:10:05.832000',5,'Dollie Adams','https://lh4.googleusercontent.com/-NxaM7QnXvk0/AAAAAAAAAAI/AAAAAAAAAsI/AMZuuclHayXjdM__zS-b-AGh056KAonL_w/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21960),('AIe9_BF8X4EpR_fF6mwcYdso9awguYnREaID8eBFwLSQr4RFHag73WBeoWaPWG5hYjK9dAC8ldVXTAdUyinzvKFr3zocAfLjx0aAMpHZv-f8SVbO6CtaPS4','This facility is the best. The receptionist, RN\'s, and the doctor were all very attentive and polite. I would definitely recommend this facility to other\'s. I feel 100x better now. Keep up the good work! 😊','2017-09-17 19:56:14.643000','2017-09-17 19:56:14.643000',5,'Chelsea Singleton','https://lh6.googleusercontent.com/-LxH_VlhXaqs/AAAAAAAAAAI/AAAAAAAAAAA/xLaQ0iNVdrE/c-rp-mo-br100/photo.jpg','14904078213800803294',2326),('AIe9_BF8X4EpR_fF6mwcYdso9awgUzSv5E-r9i4M_5WPXb5dDL5IeD3Dkk_nyfQstb8BcgLNi6-_d83xfCRkEGaJzmb632JNHGP7r8H-6vXTQYI8JwhAis8','Keera was ana amazing receptionist with fast friendly empathetic care. \n\nDr. Gallo was amazing and showed a genuine care for me and had me feeling reassured I would be healed properly.','2019-10-10 16:08:01.353000','2019-10-10 16:08:01.353000',5,'Dantonio Cooksey','https://lh4.googleusercontent.com/-9_muZWe3aj4/AAAAAAAAAAI/AAAAAAAAAAA/mm2-ghXEqpI/c-rp-mo-br100/photo.jpg','17394740196501090048',4586),('AIe9_BF8X4EpR_fF6mwcYdso9awgVb0QMcC0GmRI-208KaXylH0Akg7yQOoGYD1MJMPuBw6lQRYhnXlx2IaAX_2VnAfsnNF2-QJDDy5p49ZOnxRAeuTfbEM',NULL,'2016-12-05 17:38:42.272000','2016-12-05 17:38:42.272000',5,'Jeffrey Simon','https://lh5.googleusercontent.com/-RQqC2CLQZwQ/AAAAAAAAAAI/AAAAAAAAAAA/h8DdNruLsGQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1936),('AIe9_BF8X4EpR_fF6mwcYdso9awgVbSIqGYJRc82NAGDZ6aXhmQA5Qbqi9lpIcqrc3aL4JYjMcOJG4_2hoGS7MYk19Maop_oPVyj8Kaz7yR-2xr8-ulE9kQ','I avoid the doctors at all costs but this place is amazing. Very quick to see you and very friendly! Patricia at the desk is quick to greet you and everyone is very personable. I would highly recommend signaturecare to anyone!','2020-03-05 13:50:13.847000','2020-03-05 13:50:13.847000',5,'Tara','https://lh4.googleusercontent.com/-qihjbS6UUzU/AAAAAAAAAAI/AAAAAAAAAAA/vlDHUoETBJM/c-rp-mo-br100/photo.jpg','16389487648212004696',13728),('AIe9_BF8X4EpR_fF6mwcYdso9awgVfjRPp-4pqQbeGqKksXzvJIf3D21kJRvxmJ0YYhoIilHsChPtY8KQbCsUkIunt9L-YUdKV1MdcKeB12HQEJfqLcfuRM',NULL,'2018-09-13 07:48:58.828000','2018-09-13 07:48:58.828000',5,'Staci Andrews','https://lh3.googleusercontent.com/-l5LeeTr6hsU/AAAAAAAAAAI/AAAAAAAAAAA/zTEw8z_Rj9k/c-rp-mo-br100/photo.jpg','14904078213800803294',2215),('AIe9_BF8X4EpR_fF6mwcYdso9awgvG-yMaI1KiYJ8Sy4_7vmhBmJe28BaMx1GoM4jy3TiXIJhaPeyQ_tGlOURbYylPIZKJUXPU4KT_QMzkCn9Vq-yw7kAMY','I went in last night and they were really nice and helpful! Especially my nurse Selina.. I Love her and she works the nice shift. I would recommend them to anyone.','2017-09-21 12:01:17.500000','2017-09-21 12:01:17.500000',5,'Bre\'lyn Landry','https://lh3.googleusercontent.com/-2a13RTI5gTY/AAAAAAAAAAI/AAAAAAAAAAA/PxPE5y9g6Tw/c-rp-mo-br100/photo.jpg','17394740196501090048',4971),('AIe9_BF8X4EpR_fF6mwcYdso9awgvgB-aEBJzKcAE8-BLCrLpd86FLrkV82FvEbUVuUjUKYIUnV8iT30cAZFymMe-ipzXC-YcV-ztorkVJGsIyzY2FNWeD4',NULL,'2019-10-02 19:13:47.682000','2019-10-02 19:13:47.682000',5,'Lasandra Burnett','https://lh3.googleusercontent.com/-8Rd01jSuTq4/AAAAAAAAAAI/AAAAAAAAAAA/7NyUKQmvvzg/c-rp-mo-br100/photo.jpg','17898197009688164559',5523),('AIe9_BF8X4EpR_fF6mwcYdso9awgVh0NH76uE2cGnQfnbSBx6KP_Cr6G0QJhv2Wm132YN6ZmtPeIMFwwdZQ4MxA8WxzXca2cvHXNh2mTIsns8x8WzKtEVi4','I didn’t even have a chance to play my iPhone game! They had seen me, diagnosed, and dosed me in a matter of a few minutes and I was back to my day! Excellent resource close-by.','2019-07-20 14:35:03.322000','2019-07-20 14:35:03.322000',5,'Nina Rochette','https://lh5.googleusercontent.com/-JHm6tOYrTlU/AAAAAAAAAAI/AAAAAAAAAAA/HfqI0O-7ne4/c-rp-mo-br100/photo.jpg','16891069708558046635',4235),('AIe9_BF8X4EpR_fF6mwcYdso9awgVnAKCCZxup76yP2A9uJO2UwQyWk8chgmLe9liNS0G2V2ja0sYpGT7U0Bkjdbt8npme0EadbqNCqPOYL7qeQrQ9Zww24',NULL,'2019-11-05 19:22:28.110000','2019-11-05 19:22:28.110000',5,'Tra3son _','https://lh5.googleusercontent.com/-a0TXTtzBWME/AAAAAAAAAAI/AAAAAAAAAAA/nG79CkhpRdQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8744),('AIe9_BF8X4EpR_fF6mwcYdso9awgVpEZRRg7VN_SqiayrUk1zyP5Ch2ZjsX7um0p5ik3urzrzmG7WkRp3lMjA62WOqiYmPZ8Cqcu-wspm9gpw7UJo9WYQMg','My 6 year old got stitches here today and I couldn’t possibly feel better about the care we received from Kara, Gunner, and dr Ashbrooks!! The care is second to none and the environment is amazing!! We will be back for all of our needs!!','2019-11-01 23:19:27.638000','2019-11-01 23:19:27.638000',5,'Melissa Jones','https://lh5.googleusercontent.com/-ey7rG_y5xyA/AAAAAAAAAAI/AAAAAAAAAAA/Trc3WUAX6qU/c-rp-mo-br100/photo.jpg','3272657195432704501',6873),('AIe9_BF8X4EpR_fF6mwcYdso9awgVuMAyJaUSVcT7hHbeMQpSlikvoeYa4NmpmJoDF---AsTd-Cv1w7DNM31RhWA4PQQV0hR1JiRQ5cLI74y6ocoSZ-qkGA','The staff here was caring and awesome! Kristina the nurse was so great! Maya the receptionist was so nice','2020-01-24 21:54:50.536000','2020-01-24 21:54:50.536000',5,'Tre\'uvon Simpson','https://lh3.googleusercontent.com/-JFOdl6Gfhds/AAAAAAAAAAI/AAAAAAAAAAA/enPJiVHMtzE/c-rp-mo-br100/photo.jpg','12541597562633926366',9463),('AIe9_BF8X4EpR_fF6mwcYdso9awgvXjMmzQsFW9jaOmli9hlvxH5Z71j-DeQ0cQwEEt-sC3Ayr-joSpxzhjuQOxvWMCEamUxPjOvRXmBmkNM7ElRO52WyrQ',NULL,'2020-01-13 19:20:05.987000','2020-01-13 19:20:05.987000',5,'sara martinez','https://lh3.googleusercontent.com/-7-Vr02b0w4w/AAAAAAAAAAI/AAAAAAAAAAA/Qb8J7l-l0dQ/c-rp-mo-br100/photo.jpg','16389487648212004696',9736),('AIe9_BF8X4EpR_fF6mwcYdso9awgvY8UcrB5-C4seEWTKtWGdDsrSVlemjRhwlho7P79US72tMrD68hCqH3gJCtat_KIMrx3D4EIQWFngiJNbzrWx106dBc',NULL,'2019-09-30 03:06:06.273000','2019-09-30 03:06:06.273000',5,'mario hernandez','https://lh3.googleusercontent.com/-xiu8FEN-pcY/AAAAAAAAAAI/AAAAAAAAAAA/0jUmYFrILUM/c-rp-mo-br100/photo.jpg','13486358490203335051',799),('AIe9_BF8X4EpR_fF6mwcYdso9awgVZy2LBfIhC7ulZP7dQYuRcCDjs9HtmWuYXo02YGuoRwLEMt7rB7aJKF22Q3LU1YqyswfT8xnxNZU1iaEsoAIOlz9Xho','Great, quick and professional service by Dr. Edwards, Ralph the tech and Nikaela the nurse!','2018-09-27 00:32:05.510000','2018-09-27 00:32:05.510000',5,'Benjamin Bentota','https://lh3.googleusercontent.com/-r7Qmi6W7FDU/AAAAAAAAAAI/AAAAAAAAAAA/bqDy01-_MI8/c-rp-mo-br100/photo.jpg','17394740196501090048',4785),('AIe9_BF8X4EpR_fF6mwcYdso9awgW6dhop1vaANB5KYSt0f2rpC6YtBlxrS9ZbOK799N83K1B4M6JL04uxDZeMbhDbCmIUGSdAmOGoCMsnlNifzDGT4Glck','Very good service and very efficient. Thank you all!','2020-02-08 20:22:47.327000','2020-02-08 20:22:47.327000',5,'Philip Ball','https://lh6.googleusercontent.com/-rzF6JVLpVHs/AAAAAAAAAAI/AAAAAAAAAAA/LM30MursLaA/c-rp-mo-br100/photo.jpg','3511292162159714121',14423),('AIe9_BF8X4EpR_fF6mwcYdso9awgwFTxUf9jbp69XmiJuXmQiqCpz9R4mIekYEU2Z6beNE9DpL9QE22qxf8bjtKVeZxMoGGW1fmmZevTa8aS9NYtuCuzJ5E',NULL,'2017-11-28 04:10:32.257000','2017-11-28 04:10:32.257000',5,'Anisa Anderson','https://lh3.googleusercontent.com/-7asPhfw0DRY/AAAAAAAAAAI/AAAAAAAAAAA/ivJ-gnEQJso/c-rp-mo-br100/photo.jpg','8918455867446117794',9329),('AIe9_BF8X4EpR_fF6mwcYdso9awgwHUIk5vmOjcgUkX9s1-ywBNz6TzGZ8APvkWSAEFZiJoXx1sgnplnHudL-dQYqh9bTrwpGI9_mugaaro0pMw78abGB0Y','Great experience... awesome staff ...quick service... excellent care','2019-02-06 02:55:25.078000','2019-02-06 02:55:25.078000',5,'Alicia Phillips','https://lh4.googleusercontent.com/--ZblwlFx5s0/AAAAAAAAAAI/AAAAAAAAAAA/8Z2tAMJfGf0/c-rp-mo-br100/photo.jpg','12541597562633926366',555),('AIe9_BF8X4EpR_fF6mwcYdso9awgwi36PIOTboijaTB97FRgw0DEc6hmb_Sz-fnmwlG7vmKXMtBasCmHmfX24f_NeWI-qCpCY2Gb4ckU4gHAKYtn1tMqOB8','Dr. Smith, Dr.Singla and Alyssa were awesome!','2020-02-14 12:58:13.080000','2020-02-14 12:58:13.080000',5,'Lafonda Rouse','https://lh6.googleusercontent.com/-1mw31oY3K68/AAAAAAAAAAI/AAAAAAAAAAA/VjTMU9GCR_M/c-rp-mo-br100/photo.jpg','8918455867446117794',14829),('AIe9_BF8X4EpR_fF6mwcYdso9awgwRXCjef8Muw3jLYKfFV56bOH8oYd5QZ1UBJQoNDnTL42lRlAuSTABanuiWOZSUCjhEfTzeQkDyepoO7wj1M54P3qv5w',NULL,'2018-12-24 03:46:58.624000','2018-12-24 03:46:58.624000',5,'Celeigh Redden','https://lh4.googleusercontent.com/-C0K34iBdSQ0/AAAAAAAAAAI/AAAAAAAAAAA/dCUa8QBGams/c-rp-mo-br100/photo.jpg','3272657195432704501',7088),('AIe9_BF8X4EpR_fF6mwcYdso9awgWvcCPDCB6KjRxqRSbVlzinBCMlPJ1LZuqNGaduiqQbw1fHdYXLzkrKs_U-R3eHF00oryfsoWkejNf908eh_0UIsgb2k',NULL,'2019-06-16 05:39:50.690000','2019-06-13 15:48:15.466000',5,'Ryan Odom','https://lh4.googleusercontent.com/-PHSV69KVpvw/AAAAAAAAAAI/AAAAAAAAAAA/ZsNuNl5-tl4/c-rp-mo-br100/photo.jpg','8626688543755174284',8450),('AIe9_BF8X4EpR_fF6mwcYdso9awgwvewCLku3nMPsd7U-LX3UX1PAbzGsHeD7OWIHwxZhr8C_kJtp7-av-LGH3xHFjhSipKN6g6vBJerFG6fhsZ31J37etU','Our experience was great. Dr. O\'Malley Nikaela, RN and Amy front desk were great. Out of all 3 hospitals I\'ve been this is by far the best!','2019-03-11 02:23:58.565000','2019-03-11 02:23:58.565000',5,'FANATIC SOLDIER','https://lh3.googleusercontent.com/-udUJacUB7hc/AAAAAAAAAAI/AAAAAAAAAAA/SkojgnCU2UY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awgX69XclVkyzwyA_AkNd4FaWMyWZpoRzgsVyUOcvHijjzOlkL37qVDSIIkiOi8gTjAAO2chB98zYh1wFGbld1ndDg6W3E','Everyone is so kind and quickly ran tests to rule out fears I had a heart issue. I had zeros wait time. The receptionist was extremely welcoming and the doctor was succinct while being very empathetic to how I was feeling and his thoughts on what was making me feel so bad! Really, really recommend this clinic','2019-11-03 00:08:52.270000','2019-11-03 00:08:52.270000',5,'Lisa Lents','https://lh4.googleusercontent.com/-nF-0PkpkLEs/AAAAAAAAAAI/AAAAAAAAAAA/oSrEEieCuOk/c-rp-mo-br100/photo.jpg','16389487648212004696',2733),('AIe9_BF8X4EpR_fF6mwcYdso9awgXaReSJTqQuscpn7UDs-tIEBMvhmCn3rcE5w2Ut0CV0jj47Zx5g4BAR2mWv-GFwYJZeIzArTAtsBxoLIm9ZGV-8XgNYQ','Beautiful staff and they really care about your well-being. Great attitudes 😁','2017-02-07 01:30:32.025000','2017-02-07 01:30:32.025000',5,'rashad williams','https://lh4.googleusercontent.com/-ggfYbFwWKy8/AAAAAAAAAAI/AAAAAAAAAAA/KMZX5r-bJOw/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2417),('AIe9_BF8X4EpR_fF6mwcYdso9awgXbSc1RPDd16R8C-jtB6W6irkXeFeU6OomhGj-sC28LDvaq8_uFrhJkcmpR5Q7Y1PFzBlii_uqy4HNDHsAHsOgvuGzGs','Amazing service with compassionate staff. Would definitely come back!','2020-06-08 12:00:10.427000','2020-06-08 12:00:10.427000',5,'alexis Simon','https://lh5.googleusercontent.com/-MAC5UAlRGaE/AAAAAAAAAAI/AAAAAAAAAAA/j-5QEIeStcE/c-rp-mo-br100/photo.jpg','14748677429039074158',21770),('AIe9_BF8X4EpR_fF6mwcYdso9awgXbShZE7NAucEXhNQOvx3QaQ7oLlM1gc8p6dC3w4C_ANJCWzVvgVKlWzQSnOuD5E0OoMk9by3xV3Th77nvTopsl9l1Jo','Everyone was very nice and professional. Was seen within 5 minutes. Highly recommended!','2017-05-07 03:32:41.008000','2017-05-07 03:32:41.008000',5,'Travis','https://lh6.googleusercontent.com/-KaK1Ika3Gpo/AAAAAAAAAAI/AAAAAAAAAAA/Lv55VmWKY-A/c-rp-mo-br100/photo.jpg','14567670160750071148',1829),('AIe9_BF8X4EpR_fF6mwcYdso9awgxehKpp9pfXGL3Fsexg_7av0Y1j4EGO_dPuhsrJyzk6Lae6JT4ku3Wm3ebKyyu1BdX2av12I-OMTy-CcLp4jpTJWGmPI','I had the best care ever! Everyone was very professional, and handled me with so much care! Nurse Katrina was very down to earth . Tech Shane was very caring lol. And Ms. Therisa made me feel very welcome when i entered the building. Most of all My Doctor Dr. Daniels was very thorough and helpful. I left this Er with a smile on my face!!!!','2020-03-13 06:46:24.001000','2020-03-13 06:46:24.001000',5,'Jamiel Mayes','https://lh6.googleusercontent.com/-2ECyYfPKPS0/AAAAAAAAAAI/AAAAAAAAAAA/h2IM4odkX4g/c-rp-mo-br100/photo.jpg','8679688254631342173',21213),('AIe9_BF8X4EpR_fF6mwcYdso9awgxePsECTftQ7L57SulByeCw9Ydq79Ucvdl2LYNUrYFXKox8zw7C0MPLvbfrPO2ypL8Q_EIuYMITTiKYVbg1wfBNpSZ3A','Wow, I really loved the people at this location! Super nice and very convenient, clean and comfortable. Highly recommend. Shawn and Dr. Ding are great!','2020-02-20 05:22:54.287000','2020-02-20 05:22:54.287000',5,'Jasmin Bobs','https://lh6.googleusercontent.com/-UsziC92yDOc/AAAAAAAAAAI/AAAAAAAAAAA/FbSqBfo4c_s/c-rp-mo-br100/photo.jpg','8918455867446117794',14813),('AIe9_BF8X4EpR_fF6mwcYdso9awgxJkqbjtof47zkfdIiuvG59OBFNPYLbt4xBHXh0FpxzRAn0pR9B4ulBDOhZQHN_6yk89Ev3g24IpQEE3WdaJP7Kbu2T8','The service was great. Everyone including my nurses, Dr. Grinblatas, and Amy were pleasant, professional, and timely. I checked in during shift change and I didn\'t even notice because there was no wait! They made the impossible possible with my situation.','2019-03-10 12:39:55.973000','2019-03-10 12:39:55.973000',5,'LAURA CHOICE','https://lh3.googleusercontent.com/-dVVGUkOu8Yo/AAAAAAAAAAI/AAAAAAAAAAA/kwNks5bBwCU/c-rp-mo-br100/photo.jpg','3511292162159714121',7385),('AIe9_BF8X4EpR_fF6mwcYdso9awgXL51WZ25KxJh2DMnBpd6E73aZ187lrehLdgPBVS2b0Moc1cGfsGdJ5KxmpiyvcsaMEKSG_DJg4Z6wLbgfE9OdXmWkXM','Was very quick and the service was hospitable and made the experience of getting a COVID test more bearable. I would recommend this location to anyone in the area looking for a fast COVID test. I worked with Cody and he was fantastic!','2020-08-03 19:36:56.756000','2020-08-03 19:36:56.756000',5,'Elisabeth Sullivan','https://lh3.googleusercontent.com/-UXORqu25O_A/AAAAAAAAAAI/AAAAAAAAAAA/YCxF-zoVfPA/c-rp-mo-br100/photo.jpg','2077061009497551125',22747),('AIe9_BF8X4EpR_fF6mwcYdso9awgXmegHZa62VceKIpAXAX7ojXV5Lchzq8p4WsNQrUFJdDEYgzjcP965ToBHkplJTJeVvBYzg8TVKym8aIJwohXzcSPnQw','So happy with the care that they gave me here!!\nI would recommend \nSignature Care to all my family & friends. \n\nEveryone was so kind & caring, and attentive to \nEvery medical neef i had \nSo glad say i\'m very happy with them i will surely recommend them 100%.','2019-04-14 21:27:08.209000','2019-04-14 21:27:08.209000',5,'Pauline Ferrell','https://lh5.googleusercontent.com/-_DDtrf5WR7k/AAAAAAAAAAI/AAAAAAAAAAA/rc5eaSCxPWo/c-rp-mo-br100/photo.jpg','16590124370714063921',3430),('AIe9_BF8X4EpR_fF6mwcYdso9awgXQ2t5Y4vY8tFvKRPbKEcx8aDxLAa8a-kdyguGlQ5BrwCwgxe1YjxK81tzEPbpBZrSmElNGlYVAd7qOj7F896QmEjMc8','The staff were very welcoming, and did their best to make me feel at ease. Dr. Kotey and Nurse Bradley did an amazing job explaining my results to me, and were very patient with me. When I left, I had no questions about my diagnosis. The Front Desk Clerk met me with a smile, and made the check in process very easy. I didn’t have to wait at all. The Radiologist was very professional as well. I can’t for the life of me remember her name, but there was a woman who took my blood, who made me and my family feel like family! Her conversation came natural, and she was a ball of joy. I wish I remembered her name, but she had amazing teeth, and her hair was slayed! Overall, the service was amazing. Definitely one of the top ER’s I have ever been to. I’ll definitively be using them for my needs again. Thank you ladies!','2018-06-03 12:33:59.896000','2018-06-03 12:33:59.896000',5,'Jaimee Williams','https://lh5.googleusercontent.com/-bWHmsfF-iSY/AAAAAAAAAAI/AAAAAAAAAAA/FTb0a1vAaI0/c-rp-mo-br100/photo.jpg','17394740196501090048',4843),('AIe9_BF8X4EpR_fF6mwcYdso9awgXSf4qri9SKWydSlUapEeFPYi_LFoT9ZpD9XWmo4XbgvkuG93B2gmE_2Mnb5isWiagEM47mvfqz_bIJQ0Xfxc8dFRJUs',NULL,'2019-05-28 22:45:32.366000','2019-05-28 22:45:32.366000',5,'Jordan Stafford','https://lh6.googleusercontent.com/-ZUcF5FxWXeQ/AAAAAAAAAAI/AAAAAAAAAAA/sf5o-kDtMBM/c-rp-mo-br100/photo.jpg','8626688543755174284',8470),('AIe9_BF8X4EpR_fF6mwcYdso9awgXsMJLtM5JixWaJvTavInkF3tecg083sF9H3WkYDVzcM3lbbaoGoDUUtxUJmTlXEMXKBrh3PgFm2irAfuW1aQjuid1PI','My daughter hurt her finger late on a Saturday night. The facility was clean and the office staff was very nice . We were seen quickly and x rays were done in house. The docotors and nurses were caring and made sure that all the results were explained.','2019-12-29 16:57:12.378000','2019-12-29 16:57:12.378000',5,'Florence Hensley','https://lh6.googleusercontent.com/-0SfzacG4P-Y/AAAAAAAAAAI/AAAAAAAAAAA/191UbOSQ6Qc/c-rp-mo-br100/photo.jpg','2694018788013845459',14284),('AIe9_BF8X4EpR_fF6mwcYdso9awgXxPzOI5Dt_smuNOkjcklQgWD6fQL91MRwRExaCmN4ZVnDsO8OS5mbN_ryWW5xuQPqMjUPfYnPuABKskSLCHHip1Jl90','Friendly and fast er.','2019-03-14 00:50:31.494000','2019-03-14 00:50:31.494000',5,'Lance Jordan','https://lh3.googleusercontent.com/-Q3d8vf_VViA/AAAAAAAAAAI/AAAAAAAAAAA/PydCUteyPvk/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1364),('AIe9_BF8X4EpR_fF6mwcYdso9awgxzsGrD2YRq6SsX1caAUckBF-WKsmxrpQ3E8QqxfxanN6Tx1srmAePuGLBrG5_IMMoTgyAZFeaCB1AF-EgjrudzJXfPI','Receptionist Jackie was very helpful in explaining insurance questions - they were able to get me in right away without waiting. Tests and exam took 15 minutes before I was on my way. A+','2017-06-14 14:19:32.235000','2017-06-14 14:19:32.235000',5,'Mitchell Anderson','https://lh5.googleusercontent.com/-seJB_jONFII/AAAAAAAAAAI/AAAAAAAAAAA/iuehMzIHp2c/c-rp-mo-br100/photo.jpg','14567670160750071148',1810),('AIe9_BF8X4EpR_fF6mwcYdso9awgY-pQlR6YmeNJg1Rr8qBCmY3v6DRwaL03qLiInfObpGfaNF29rVYTLKew32QpankaAqH5mSDQWy91wGDKz6Cy4DS6CkY',NULL,'2017-07-16 17:36:34.325000','2017-07-16 17:36:34.325000',5,'Darren Brimberry','https://lh5.googleusercontent.com/-9WuSrGtsxM8/AAAAAAAAAAI/AAAAAAAAAAA/-vaSrJypYHY/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2339),('AIe9_BF8X4EpR_fF6mwcYdso9awgY3-HakyV08q-dhP26PzNrJfRo0bG-_arG6FpPaRess9g5rmEIXQpUFGjYeNfSWiFiFxiisbsRAJci_mUO7CnzDmdweE','I came here after a kitchen accident that required stitches. The whole experience was exceptional, from reception to treatment. I was warmly greeted by Shaunda, who immediately began my paperwork. I was seen within minutes of arriving - there was no wait at all. The ER tech, Chris, was particularly kind and really made me feel at ease. Dr. Goodman, and the nurse, Christina R, were also very professional and caring. I will certainly be back if I need urgent care again. I highly recommend!','2019-11-16 15:41:16.783000','2019-11-16 15:41:16.783000',5,'Kaitlyn Newland','https://lh3.googleusercontent.com/-JJQXldN6Cng/AAAAAAAAAAI/AAAAAAAAAAA/Np1OxnTohLs/c-rp-mo-br100/photo.jpg','16891069708558046635',4150),('AIe9_BF8X4EpR_fF6mwcYdso9awgY72PTGBvbWw4Xs9sM9Qx64om4JCtJxScjWppn5lDgaLilivR6IMUSWyM4YsrTo218XqNMFp-J-Pg5XvEpfTJb4IuUtU','I cannot even put into words how wonderful my experience here was. After talking to different doctors offices on the phone all day and a nightmare experience at the A&M Student Health Center, I came to SignatureCare absolutely exhausted and dejected about my health. They listened, treated me like a human being, and provided me with the highest quality of care I have ever experienced. This place is an oasis of humanity is the vast bureaucratic desert that is healthcare. Thank you so much to everyone who was at SignatureCare night!','2017-08-19 22:18:44.175000','2017-08-19 22:18:44.175000',5,'Sam Lyons','https://lh3.googleusercontent.com/-CvjiUzXc9MA/AAAAAAAAAAI/AAAAAAAAAAA/CFR75ebXHQM/c-rp-mo-br100/photo.jpg','16590124370714063921',3954),('AIe9_BF8X4EpR_fF6mwcYdso9awgyHc52QHlv7M4KyGRQZKt4zOmJeew8z91UjEZpGc-21B_AOwdHABw7-oxphK7y5eC0TL6TqqTyjmqctbcp85Dve6zyzk','For my 1st visit at signature care ER it was very pleasant apart from the pain I came in here for. the staff was very attentive curtousy.\nthe receptionist Lisa P. was very friendly Nurse Manny was amazing explaining. Eliza was great with being patient and gentle.\nThe Doctor was kind profressional and detailed\ngreat staff. very pleased.','2019-12-16 00:00:33.240000','2019-12-16 00:00:33.240000',5,'Bionca Grado','https://lh5.googleusercontent.com/-oQBMbUS6DO0/AAAAAAAAAAI/AAAAAAAAAAA/QzI4O6IinRU/c-rp-mo-br100/photo.jpg','6521947413723274945',8060),('AIe9_BF8X4EpR_fF6mwcYdso9awgyhCBinoqvSGPht-GPoipoTOKKUW7hBnskpqARdHqG0_oANqSJmbyCQIc0Lh0JWl8vWmIOGRVwnKgAfcKc6ASHWsVvms','I had a great experience today at this facility...well, about as great as it could be for an ER visit :) The staff was very friendly, welcoming and attentive. The facility was extremely clean and had an overall positive vibe to it. I hope to not NEED to go back, but if those services are needed again at a later date, this will be on my short list of places upon which to rely.','2019-11-05 17:54:29.687000','2019-11-05 17:54:29.687000',5,'Clyde Smith II','https://lh5.googleusercontent.com/-GMh8VweOicY/AAAAAAAAAAI/AAAAAAAAAAA/Wee-gXLO-zE/c-rp-mo-br100/photo.jpg','8679688254631342173',8747),('AIe9_BF8X4EpR_fF6mwcYdso9awgyiSv42Xi20473wW8VpGlp0gn45X6rSPoBR4dCOgVjEihBxSD4Ke48-iqO5VdlvGobTmaSv5pnediUZVN6kUWt1A2i8c','Awesome experience! No wait time, staff was incredibly friendly. Doctor miller, Amy, and Brandon gave stellar service.','2019-08-24 02:04:35.565000','2019-08-24 02:04:35.565000',5,'Nicholas Traylor','https://lh3.googleusercontent.com/-f5yIqDL-A3Y/AAAAAAAAAAI/AAAAAAAAAAA/bmzkRZktZaw/c-rp-mo-br100/photo.jpg','14567670160750071148',1254),('AIe9_BF8X4EpR_fF6mwcYdso9awgYq9VvlbRVBK_hLWjW98xDRM_l70T9jLbTE7HyY8slB5GRG6CImth6roEjN3IS0kkx1Z8hdNuLDeb1LRqxRnYoJMJpAU','Second time visiting and each time was quick, effective and super friendly. Didn\'t have to wait and they diagnosed me very quickly. Both the doctor and nurse smiled as they helped me. Really appreciated it!','2020-02-27 01:47:58.662000','2020-02-27 01:47:58.662000',5,'Jacqueline Chavez','https://lh6.googleusercontent.com/-GRLII4Pkh0Q/AAAAAAAAAAI/AAAAAAAAAAA/m-EGspGgWzw/c-rp-mo-br100/photo.jpg','14567670160750071148',13509),('AIe9_BF8X4EpR_fF6mwcYdso9awgYR6yuTq1jbJJCiZqxiRLdKu9RpZzYCJMsYcM12-jCVODl55BP_T-R0ZQAaRL6gnc8RpyOh5sg0CE_wiwOYyYjVrhxJ0','it was a very amazing experience!','2020-07-18 19:00:40.905000','2020-07-18 19:00:40.905000',5,'Mckenzie Schultz','https://lh5.googleusercontent.com/-tBZKbKnmp74/AAAAAAAAAAI/AAAAAAAAAAA/rKx0jhvqThk/c-rp-mo-br100/photo.jpg','14748677429039074158',21736),('AIe9_BF8X4EpR_fF6mwcYdso9awgysGo7ZEmGYCH3vTDD8cmt60RH22JRjd1_6PMEg-kWrx0WC_zuGAW_Loi6-m75ClUF6qoOPuEvHt-sC9KO1BCOUf6_V8','They checked me in fast and I am very pleased with the service and how fast the staff is here! Jennifer at registration was awesome and very fast with paperwork and my nurse John was very fast and was very caring. All the staff was awesome in making sure I was comfortable!','2019-01-01 18:32:51.273000','2019-01-01 18:32:51.273000',5,'Savannah Welch','https://lh5.googleusercontent.com/-Rt0WnNMP5cw/AAAAAAAAAAI/AAAAAAAAAAA/PXGB2fx5B-U/c-rp-mo-br100/photo.jpg','8626688543755174284',8620),('AIe9_BF8X4EpR_fF6mwcYdso9awgyt7UerPbP39l_uzR5b-S3eI-rsAP3DO_JDy_tZSUFXPEb9w84I9QlG-MyjYGP64ixxR6l4b8S2QLsA0KYj53O2LtpT4','The staff was kind and professional. Cody and Sam were great.','2020-08-03 15:27:01.619000','2020-08-03 15:27:01.619000',5,'Zachariah Carlson','https://lh5.googleusercontent.com/-3wqpMhQ4NGw/AAAAAAAAAAI/AAAAAAAAAAA/srzmLo-fi9w/c-rp-mo-br100/photo.jpg','2077061009497551125',22758),('AIe9_BF8X4EpR_fF6mwcYdso9awgYvFmtuX4Yc70pvk3D-flsrprffQ-H28ZKWcmy8ZR63JJX6GcjwNN3Jl3rjjIAIa9hlrXndQ8wvrym4s6mJAOlp3pd48','They treat you well they walk you through the steps they give you information on what they\'re doing to make you feel better it\'s a great place to go if you\'re feeling sick or if your hurt','2016-07-26 05:42:05.408000','2016-07-26 05:42:05.408000',5,'Alberto Ponce','https://lh3.googleusercontent.com/-yTcZLnDfeuY/AAAAAAAAAAI/AAAAAAAAAAA/ytvL5wllPWc/c-rp-mo-br100/photo.jpg','14904078213800803294',2474),('AIe9_BF8X4EpR_fF6mwcYdso9awgYVKgvV58BZpRgPq1W_DQR5QITUzYTBm7r74M1NEf4ILSprcEgXv6BHEmXqEECe5Wr3VyAP8RKVm7qcC74d0WkQrlCIE','Dr. Pham, Nurse Alvean, Marcus & Michael are an amazing staff I never have to wait longer than 5 min they always make me feel comfortable whenever I visit','2019-06-23 12:06:29.860000','2019-06-23 12:06:29.860000',5,'Amber Ellisor','https://lh3.googleusercontent.com/-8OHa73JEKTw/AAAAAAAAAAI/AAAAAAAAAAA/zTz20JfSh-M/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BF8X4EpR_fF6mwcYdso9awgzayH2a3qvkD6dwWuaCM4DLtM5Y7GWV8GAXNZrGZ4h3mHsVOIFbRkkxU5kZMadvQp-EstuHt53vYugJSrLl3xicQfMME','Kind and professional staff','2020-07-27 20:49:38.447000','2020-07-27 20:49:38.447000',5,'Kenzi Noui','https://lh3.googleusercontent.com/-jl70sPLyFgY/AAAAAAAAAAI/AAAAAAAAAAA/XS_9LGiJfNg/c-rp-mo-br100/photo.jpg','2077061009497551125',22805),('AIe9_BF8X4EpR_fF6mwcYdso9awgzcEMd2lK2d7mY1_Q98feWFbw8TU6zabg7MJSKqtoerFpdJULO6RwT9IJy3xphepH8MYFj5x8gj2WhOv2Z2aMxJp1Pps','Everyone here was so friendly and professional. I really appreciate the staff for being so helpful.','2019-07-29 04:51:59.656000','2019-07-29 04:51:59.656000',5,'Haydon Pustka','https://lh5.googleusercontent.com/-yT_Y80I-jc0/AAAAAAAAAAI/AAAAAAAAAAA/O7c4soJnKcw/c-rp-mo-br100/photo.jpg','14567670160750071148',1268),('AIe9_BF8X4EpR_fF6mwcYdso9awgZHbfLtCvJi-qXv6GQudQHw40DnLd73SDEP1ZR-On-mCW6HhVbYH00bh3SCiiwHS6IKG2DaFCGv3Z_RJeVaMEzu7b-Mc','I visited SignatureCare after my strep throat continued worsening after two days of antibiotics. I was greeted warmly at the front desk by Delfino and was taken back within 5 minutes of my arrival. Nurse Shelli and Dr. De Waal first tended to me and were very helpful. They brought me warmed blankets because I was shivering and immediately got me set up on an IV. \n\nAfter doing a CT scan they noticed an abscess in the back of my throat so they got in touch with an ENT and arranged for me an appointment the following morning. Nurse Katie was very attentive and helpful through my stay. \n\nHuge thanks to the staff for taking care of me. Your staff and facility are top notch.','2019-03-22 16:09:45.290000','2019-03-22 16:09:45.290000',5,'Dustin Qualley','https://lh5.googleusercontent.com/-d5MZTA-h3tk/AAAAAAAAAAI/AAAAAAAAAAA/V-xNWMd-B5Y/c-rp-mo-br100/photo.jpg','16891069708558046635',4317); INSERT INTO `review_review` VALUES ('AIe9_BF8X4EpR_fF6mwcYdso9awgZJETuNPUhb3n74G3xiKsplQW3Om__q6-3sDCEQW_yZPPnTGPDqbNAMVrL_eNoFnPoDn_RGDS8OxDue8M9FMJm3EE2gI','Everyone was awesome great experience friendly staff definitely will recommend this place to family and friends','2019-02-05 01:28:49.985000','2019-02-05 01:28:49.985000',5,'Amy G','https://lh3.googleusercontent.com/-xTrBMq0j2TI/AAAAAAAAAAI/AAAAAAAAAAA/NqNE-gMYSWc/c-rp-mo-br100/photo.jpg','14567670160750071148',1393),('AIe9_BF8X4EpR_fF6mwcYdso9awgZlg1ifN1IrN953qus4Dn2vodrm_Hl1CwYa3GG8TvWY7kfXhqSDltA_8MyoNFyiW-FKboBDXfxTIbJqlaI1dO-2QkOxA','Our tech, nurseC rad tech and doctor were fantastic. They answered all questions we had and we are so thankful to have found this place. We are from out of town, and we were scared to go somewhere we didn’t know. They were great.','2019-11-07 23:03:10.713000','2019-11-07 23:03:10.713000',5,'Britnee Counts','https://lh5.googleusercontent.com/-pHWuG3zCxeY/AAAAAAAAAAI/AAAAAAAAAAA/-yCV-t65aNg/c-rp-mo-br100/photo.jpg','13486358490203335051',750),('AIe9_BF8X4EpR_fF6mwcYdso9awgZomcA5qwAj9WHqVoDH4zOR7iT7NrwQGLydS985SirpwPsdPRurIaolU3EOQjSyKYF6ojjmWS-8a1tYHgvmP483k2zvA','My second time coming with a medical emergency. The staff and doctors are all on point. Alyssa and team took GREAT care of me! HIGHLY recommended!!','2020-02-07 16:43:07.126000','2020-02-07 16:43:07.126000',5,'trevor glover','https://lh6.googleusercontent.com/-H7HRE8gU0wA/AAAAAAAAAAI/AAAAAAAAAAA/Mta7WWe3diM/c-rp-mo-br100/photo.jpg','8918455867446117794',14841),('AIe9_BF8X4EpR_fF6mwcYdso9awgzp2CLXt3a3IFTRRtK_aY0s23MkON9fWm1Z5WJwuHNYn7LSXweglr6bc0_21GMs76Mw3CrgDmIEIJYXa_w6d6SKQVfJo',NULL,'2019-01-29 20:27:43.643000','2019-01-29 20:27:43.643000',5,'Jennifer Lang','https://lh5.googleusercontent.com/-PyX4OSBCLW4/AAAAAAAAAAI/AAAAAAAAAAA/7hf7SZBFzpQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2176),('AIe9_BF8X4EpR_fF6mwcYdso9awgZsCVmTa4p-jmRQl8VEk9oSxx15LDOtU_-cb5s5dJWw-_0WeBalA2RjQ3uqKmvcuBgI4R9rVjWN263ex7czpZ9O95w-g','Excellent service and quality of facilities.\nPoor business practice - The disclosure document that states the cost of services is written in a deceptive manner. The dollar amounts are not shown as numbers, but they are written in words and buried within paragraphs of text.','2020-02-13 19:03:51.141000','2020-02-13 19:03:51.141000',4,'Christopher Shannon','https://lh4.googleusercontent.com/-9DrGa7PaPvg/AAAAAAAAAAI/AAAAAAAAAAA/fT8flRKmaQ4/c-rp-mo-br100/photo.jpg','3511292162159714121',14415),('AIe9_BF8X4EpR_fF6mwcYdso9awgzub0HYBp7Q16mw6gudvyidcrbEbETFVxsL1IMgBB9pv_23Yje5O_1zvhZf9bzKXRfRsxH3vfKOwKXNZNYBJSLI5zUjQ','Mollie, Dr. Yost and Tobie were awesome!','2020-01-14 23:00:24.471000','2020-01-14 23:00:24.471000',5,'Jennifer Whiteside','https://lh3.googleusercontent.com/-uUd3bJPDup0/AAAAAAAAAAI/AAAAAAAAAAA/oWlnX6hvpB0/c-rp-mo-br100/photo.jpg','3272657195432704501',9817),('AIe9_BF9X3094ISxKFNbAUDe3Xeg_Hnzqv1tf20DVKnBGNPKeBExoXMb0DBALJdlGldd5NevJYSKWWoDM1OlKty433B4DZsujIp7Wt8mdE7YFiPoA-TV7U8','Dr.Edwards And nurses Al, Robert and tech staff Fatima and Nikks are Amazing !!! Wonderful care .','2019-06-30 00:41:41.900000','2019-06-30 00:41:41.900000',5,'Rene Ortega','https://lh5.googleusercontent.com/-m2LzTxIC28E/AAAAAAAAAAI/AAAAAAAAAAA/FYrLBZOSsrE/c-rp-mo-br100/photo.jpg','17394740196501090048',4642),('AIe9_BF9X3094ISxKFNbAUDe3Xeg_wnPgKqzKtWM1zY9v75CnWft7D49Z_mclWfVqOp7Dr22zuz7ExWrHIo8LwsxVTA5PGg-TjQH7ooNu0q0n0M2fkVlR9w','Brought my Mom in who was visiting from out of town. The facility is clean and they offer all the services that you could receive from a hospital. The location is 5 minutes from our house, which is very convenient when you\'re in pain. The front desk attendant was welcoming and warm. Dr. Datta was very thoughtful and thorough with his explanation and diagnosis. So glad I decided to give this place a go!','2019-09-08 14:01:49.156000','2019-09-08 14:01:49.156000',5,'Mary Tjon-Joe-Pin','https://lh6.googleusercontent.com/-vwkRVwTT0fM/AAAAAAAAAAI/AAAAAAAAAAA/fccSiVfZxjY/c-rp-mo-br100/photo.jpg','16389487648212004696',2941),('AIe9_BF9X3094ISxKFNbAUDe3Xeg1bBMNC5yhV_rxqvKZDDVQayDI3cBx-qk14SWhON-IAWL3I0tRYxu3KkbgHhUlDAsm8NAMMQUOdPV0Jdngn6FJLMuzrE','Great care!','2019-04-06 21:25:39.634000','2019-04-06 21:25:39.634000',5,'Dylan Unger','https://lh4.googleusercontent.com/-D6qmixMKMqk/AAAAAAAAAAI/AAAAAAAAAAA/Cz6F3meJDLM/c-rp-mo-br100/photo.jpg','16590124370714063921',3449),('AIe9_BF9X3094ISxKFNbAUDe3Xeg2ijv68ThLiW11tHye7gGnPogo2WYUCJ72v7TVpTn665BfYyB__u_K-5RCigDE5_KcrO29HvvI8hWoI7tC9PEw7ogr68','Efficient service by Jessica','2020-01-18 17:35:40.101000','2020-01-18 17:35:40.101000',5,'Melissa Mongroo','https://lh3.googleusercontent.com/-eLeYTrKq47M/AAAAAAAAAAI/AAAAAAAAAAA/-U0NFbVnN5s/c-rp-mo-br100/photo.jpg','17394740196501090048',14044),('AIe9_BF9X3094ISxKFNbAUDe3Xeg2oBiehJFfLMuHGTklfnF7xzgcSM038Yu4V0o_6hVblhYR5p4ppFbS6a4MAaNll8zulWflZlQ1B3IV8EwA-E-89LbusA','Very friendly staff, Alisha, Matt, Jose, Brittany,Allison and Dr Mauldin were awesome.','2019-06-22 05:06:14.547000','2019-06-22 05:06:14.547000',5,'Francisco Menchaca','https://lh5.googleusercontent.com/-GzHxAoTBTqo/AAAAAAAAAAI/AAAAAAAAAAA/ZuwV6SpYGB0/c-rp-mo-br100/photo.jpg','13486358490203335051',941),('AIe9_BF9X3094ISxKFNbAUDe3Xeg3VDtI0m74nkau3u4Bu4BpJSN9sjKfYkwHS1cLyb-cUF5VrGj0LjQZnvoYCWXJzdPjRPU9_jRQOCURhcNWfcwpq9j194','Been in a few times. Staff is very attentive and helpful. Taken in almost immediately.','2019-12-21 00:24:56.483000','2019-12-21 00:24:56.483000',5,'Alexander','https://lh4.googleusercontent.com/--jm6i9f6zgU/AAAAAAAAAAI/AAAAAAAAAAA/oC4Ympce5sM/c-rp-mo-br100/photo.jpg','8679688254631342173',8683),('AIe9_BF9X3094ISxKFNbAUDe3XegAb8Rso0zExrL2Df1tLU3sceRK_SIWdiqtiFskqZ_bMGLnifRMpzYFUsFyBTZNqye8fUH9ZSlXBkMXf1gdqwpyk5Vaz4',NULL,'2020-07-30 16:35:39.604000','2020-07-30 16:35:39.604000',5,'Holly Mcmackin','https://lh5.googleusercontent.com/-wTMIVkOXZFY/AAAAAAAAAAI/AAAAAAAAAAA/IQ8NwVBlP8o/c-rp-mo-br100/photo.jpg','2077061009497551125',22976),('AIe9_BF9X3094ISxKFNbAUDe3XegaDivY9NRes-U1PRXmCp18IYJoCq9zBQf7Oq-X2KkqptkvKRBXqrqc9VnZ370iz0vCsTBh0cTEkkutKCQkRkHl4OTpZE','Great job and staff. Shaunda with registration. Dr. Leung was fast and efficient. Nurse christina r. was sweet and chris and tina were amazing.','2020-03-18 21:31:29.802000','2020-03-18 21:31:29.802000',5,'Destine Thomas','https://lh4.googleusercontent.com/-cMhff8Fe8O8/AAAAAAAAAAI/AAAAAAAAAAA/aSc-x7SgcIE/c-rp-mo-br100/photo.jpg','16891069708558046635',21044),('AIe9_BF9X3094ISxKFNbAUDe3XegBsmk4LtCgQLkAAQCofuq_93Q2yxrDFqQD6J8J_-_f77MKQ9XQ2blNMXoBUdsGYuVw9vQdY2ZQr_-hEsgr-Unv4QpbOY','Quick, friendly service! Easy to get an appointment','2020-07-31 15:41:55.593000','2020-07-31 15:41:55.593000',5,'Natalie Moose','https://lh4.googleusercontent.com/-m-IneKqxELc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmC6aCJzClpfsQZGHN38ZRAXg3wFA/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21841),('AIe9_BF9X3094ISxKFNbAUDe3XegCi4vpfHlxvsHTTysjq-5y-V7vJ4BWEgS8jim4Y_n-OgLZSFpn49RitXmzEYcXBitEmiegqcLTeQlCH9buYExBilU2Gw','I was in dire pain when coming to the ER and they were very friendly and helpful when assisting me, my Nurse Sara G. explained everything to me when I had questions, meanwhile Elaine & Geovanny were super helpful and friendly when attending my needs(water, snacks, & checking my vitals). Dr. Cavasos made me feel at home when he talked me through the procedures they were going to do. A HUGE thanks to Tanisha who was so generous and assisted me with my paperwork and payment she is super sweet, friendly and helpful. Thank you all for taking of me I plan to come back( when needed of course)!','2020-01-24 02:13:32.268000','2020-01-24 02:13:32.268000',5,'Katrina Beltran','https://lh5.googleusercontent.com/-sO5M7ThnaHw/AAAAAAAAAAI/AAAAAAAAAAA/PVmmM3MOFdU/c-rp-mo-br100/photo.jpg','17898197009688164559',10248),('AIe9_BF9X3094ISxKFNbAUDe3XegIhNRuX7IZU96oWa6uqg7jcwoPjvFgyJc_Th7Fr3TkczToTg9nJBEX6pj8zZw0gdbzM7Wmd74TzwS8VGBMgqDUeSAdjE',NULL,'2017-12-14 09:43:00.637000','2017-12-14 09:43:00.637000',5,'Austin Cunningham','https://lh4.googleusercontent.com/-KK6yHijI0q8/AAAAAAAAAAI/AAAAAAAAAAA/hQHHtQSN7k0/c-rp-mo-br100/photo.jpg','8626688543755174284',8649),('AIe9_BF9X3094ISxKFNbAUDe3XegiZZEg4lu3jpAYvkJOR0_8QqItabS-wtucsDsmBhvV1LTwLjtEoiJWNN6D5sUmNp5zpC7cVC7U22u9Uf0YH7W7uySrAw','Staff was prompted & very welcoming . Awesome service','2019-01-18 13:47:14.995000','2019-01-18 13:47:14.995000',5,'ERICA TAYLOR','https://lh3.googleusercontent.com/-1NOV-YhexNw/AAAAAAAAAAI/AAAAAAAAAAA/3XZZ-F2X0Ss/c-rp-mo-br100/photo.jpg','3272657195432704501',7051),('AIe9_BF9X3094ISxKFNbAUDe3Xegla7pDe4u5u8lsPQTRxCDqiP0xRJz8-4jfVRK2GTrXk19MWWqwVPKaHzVNUL7sQQ6FxC7E3R-O0zQ_NKLtLdy-xdnHX8','Wonderful and friendly staff. Very professional and prompt timing on everything. They have all the equipment needed for testing here, no need to go somewhere else. Drinks and refreshments provided. They even gave my kids a kids a bag of snacks to share for the week. Excellent experience! Will refer!','2018-05-15 13:18:58.194000','2018-05-15 13:18:58.194000',5,'Kays Saturday Roblox','https://lh5.googleusercontent.com/-aMRBXnBeEt8/AAAAAAAAAAI/AAAAAAAAAAA/so5T00aDDmE/c-rp-mo-br100/photo.jpg','14904078213800803294',2253),('AIe9_BF9X3094ISxKFNbAUDe3XegLV4qntoADfWrigFV-Bao6t4LSUvh5ivDo5xsc2fh6r3-Uv_4L6_uPfDflgaWjZRGMFzmig','The staff took such good care of me. Everyone was very warm,friendly, and attentive. This is my second visit to this ER. The great care is what brought me back.','2018-11-16 16:11:16.650000','2018-11-16 16:11:16.650000',5,'Kristen Hartfield','https://lh5.googleusercontent.com/-3-26Z-he_24/AAAAAAAAAAI/AAAAAAAAAAA/b7bkae3BVc4/c-rp-mo-br100/photo.jpg','14904078213800803294',2197),('AIe9_BF9X3094ISxKFNbAUDe3XegN6e2-g5ssWv0aCa0kLKWcu6POmJgkJxvNkd37frAJg69spijGJLN58BgKdQcFNagu5nxWBNnRh3mArGd4YJizeAT7kc','Overall they were very accommodating and patient with me. After meeting Leslie for registration I was taken to patient room promptly. Nurse Dawn was very sweet and the ER tech Olivia was great also with her blanket service lol. Would definitely recommend this care center to others whom have an emergency on their hands and need quick action. I got in and got out within 30 minutes! Thanks to Signature Care ER on Montrose in Houston, TX!','2019-08-01 13:29:39.064000','2019-08-01 13:29:39.064000',5,'Steven Fentanes','https://lh6.googleusercontent.com/-FHLxC8hobpc/AAAAAAAAAAI/AAAAAAAAAAA/tuZH7KCzgEs/c-rp-mo-br100/photo.jpg','3511292162159714121',7232),('AIe9_BF9X3094ISxKFNbAUDe3Xegpsx2daE7Ed6t_rdIk1RZ4NtIuEDIlJkMHGPdfEyHmH2DP95aOpgCs8sNBv_8K3T3ojZ22DhKZL9YAiTghOWC3RyRSj0','It was a good experience. The staff was professional and the facility was very clean. There was no wait time and everyone was very friendly. The staff was great and really cared about the patient, Dr. Henderson, Nurse Alvean A., Grace K, Jocelyn A and Sean. I would recommend to anyone.','2019-10-26 21:07:19.568000','2019-10-26 21:07:19.568000',5,'Janie Charles','https://lh4.googleusercontent.com/-fFl6bIffuos/AAAAAAAAAAI/AAAAAAAAAAA/Qkcs8r_N8JE/c-rp-mo-br100/photo.jpg','16389487648212004696',2763),('AIe9_BF9X3094ISxKFNbAUDe3XegQziLdJJqctXxOBIupmNVASsLffQLQ5FfJ63VCzRpdmhSiNXKym4nupmUO_zVlXAQ6CxnbPKdYnwjLJI29UyN0y22-wI',NULL,'2018-03-21 16:29:30.100000','2018-03-21 12:53:40.944000',5,'Melanie Stringer','https://lh3.googleusercontent.com/-bViNh3B76Tw/AAAAAAAAAAI/AAAAAAAAAAA/SQkSWA8A10c/c-rp-mo-br100/photo.jpg','16590124370714063921',3848),('AIe9_BF9X3094ISxKFNbAUDe3XegSGkRUcauFsD3GZMZPM-6HfYxNsDBwmQnC0sjSmvBPOgBzctt8fDbOMcvTrUfV1nS5ECxwqftb5MCkxb7eGxhkqrqrf8','Great location. Very knowledgeable and experienced staff. If you would have to come here, you will be taken care of quickly and efficiently with 100% result.','2017-03-02 14:04:29.885000','2017-03-02 14:04:29.885000',5,'Masha Kuhns','https://lh4.googleusercontent.com/-J1k1Rtj3ztc/AAAAAAAAAAI/AAAAAAAAAAA/yG2zhcT1wcI/c-rp-mo-br100/photo.jpg','14904078213800803294',2395),('AIe9_BF9X3094ISxKFNbAUDe3XegStpPSE3whKhzYI8OxLbP2JD6kaXSHXglzrGdBiuA2kUGemjLChg2CcE0tXC-H1kvSsb8BEM1Im-di4Zk27BqjipLH0w','Took excellent care of my grandson!!','2019-02-01 02:24:18.683000','2019-02-01 02:24:18.683000',5,'Marla Carter','https://lh3.googleusercontent.com/-P0BHHwF5JMc/AAAAAAAAAAI/AAAAAAAAAAA/KkRc9FVPst4/c-rp-mo-br100/photo.jpg','14904078213800803294',2174),('AIe9_BF9X3094ISxKFNbAUDe3XegtHbRNwquZHz7Gf635rcFZZzaZV_76WBrr32BUHbTFvUpmVqyYMX4OX4mppUHV0MJFdk1tlCYo0kRH6AbOux5c6gjh08','Cody, Sam, And JD Was AMAZING. Very Friendly & Professional. They Get You In And Out Fast & The BEST part. You Get Your COVID Result The SAME DAY!!!!! Definitely Recommend SignatureCare ❤️','2020-07-28 16:52:16.876000','2020-07-28 16:52:16.876000',5,'Charity Brown','https://lh5.googleusercontent.com/-y5QQzsnRRlo/AAAAAAAAAAI/AAAAAAAAAAA/g_vzjJgiC3w/c-rp-mo-br100/photo.jpg','2077061009497551125',22793),('AIe9_BF9X3094ISxKFNbAUDe3XegV-YXdM8QYhKTIEWA2YmvNEvcp5IjLvg_maF40iloPwfDhT1SxFD7j5C8bCGROga_PomOBvon2EDNNvo11RoemQycspE',NULL,'2018-10-17 13:19:52.223000','2018-10-17 13:19:52.223000',5,'Evan Kainer','https://lh4.googleusercontent.com/-WNGc9uEWj7E/AAAAAAAAAAI/AAAAAAAAAAA/7zxShyW3SrA/c-rp-mo-br100/photo.jpg','16590124370714063921',3700),('AIe9_BF9X3094ISxKFNbAUDe3Xegw1bDkvYQF3eM6IutnT3UTa_wwhgrSxAj2Wq-97qpC_1chET1ria0E8TA-124TOaQF0VePD7gV81IceneA5rrZTeiqEo','Wonderful experience from check in with Robin, Nurse Jamie And Matt was so sweet and brought me warm blankets.','2018-11-27 13:12:41.266000','2018-11-27 13:12:41.266000',5,'Ashley Burton','https://lh6.googleusercontent.com/-Pi0WUPry1ys/AAAAAAAAAAI/AAAAAAAAAAA/ARkgrYKtGjk/c-rp-mo-br100/photo.jpg','8626688543755174284',8639),('AIe9_BF9X3094ISxKFNbAUDe3XegYegM2l8JLhj_zrjlTfSUmbaiyECe7WHZI3yS73rSOJ4xPWfocYwoL6b77Ojb7VQy2FsQeuID4Wsx9gqMJxj_5doOvA0','I absolutely love this location in the Heights. I’m not saying that I enjoy going to the emergency room, but after stumbling across this location with a toe emergency last month, going to the hospital emergency room is not even a thought in my head anymore. This month was my husband’s turn and he didn’t think twice about coming here. I thought it was so sweet that Sindy remembered us from our previous visit. From the moment you walk in to the second you leave, the staff is so welcoming, attentive, and professional yet relaxed in the sense that you don’t feel like you are in an emergency room. Definitely recommend this location to others! 😊','2019-09-13 14:34:36.343000','2019-09-13 14:34:36.343000',5,'Mayra Sanchez','https://lh6.googleusercontent.com/-sOOHFyQ94uk/AAAAAAAAAAI/AAAAAAAAAAA/6F45KVJOqDg/c-rp-mo-br100/photo.jpg','14567670160750071148',1244),('AIe9_BFARJmSceUnggk5evjTl6NBrxpMD_IVBjVrZhshr212gJxYdsK2PKB78wXv3FSPOd5cfjmwBR0vrAk_veohg2YLD8_kN61ulo74fL9KT1WF7XKcKM0','Signature care on 1960 wunderlich has great service!!! Highly recommend!!','2019-05-28 22:12:46.356000','2019-05-28 22:12:46.356000',5,'Casey Lee','https://lh6.googleusercontent.com/-mqFTEPuY-_I/AAAAAAAAAAI/AAAAAAAAAAA/Vwnam06-aJE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFBNh-3p60HGE0VxxVuj8CV-p5nIa3D2SZXwkjHEuhyDDzWIsblSEFgCy-Z9XV5tOv58S2QWhvUBnybNxpzXZoxPu-bXMR1fs2qCWif29LgxmDAv6I','Dr.Nguyen, Deanna, Jonathan, Rommel, & Adolfo were very helpful. They made me feel a lot better while waiting.','2020-02-04 06:05:11.119000','2020-02-04 06:05:11.119000',5,'MeArisha Walker','https://lh3.googleusercontent.com/-chpPUieQ1p0/AAAAAAAAAAI/AAAAAAAAAAA/rz99rAPV8BI/c-rp-mo-br100/photo.jpg','14904078213800803294',13610),('AIe9_BFBNh-3p60HGE0VxxVuj8CVA_0CWazWi5vSUOHMD0EsweVMlBzNecYZvaAIovk52yWq14CNv89EPwRfWYYRqIBqmsKzTa-FtITNs20dSlW2-jOgMiU','Georgia was great! Funny kind and made it very welcoming.','2020-08-19 01:52:29.194000','2020-08-19 01:52:29.194000',5,'Lauren Snell','https://lh5.googleusercontent.com/-FzKC5g0G1f0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl24yhlzLLEVR8s8m8FgZfG90zXLQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BFBNh-3p60HGE0VxxVuj8CVB7G2Qr5nN5mQc4_EyVYae4yvuqFmIlIuhCP8sjJI9dJD0ApT4fcc-msLo1xTcSA1DLaNWE1lUF5FQ1gHf4qJA5ulphE','I\'ve unfortunately gotten sick twice within 7 weeks, BUT SignatureCare was there with fast and effective methods to getting me back on track. =)','2020-02-20 11:17:46.586000','2020-02-20 11:17:46.586000',5,'Jenna Sapp','https://lh5.googleusercontent.com/-5_R0UStlAgQ/AAAAAAAAAAI/AAAAAAAAAAA/_-mwRoAKxj0/c-rp-mo-br100/photo.jpg','16590124370714063921',13839),('AIe9_BFBNh-3p60HGE0VxxVuj8CVDBBH-hNTQDDKwWisucxVmcEq1lz1QVShC9O2oSfmvXRt1X-y8FMnP1s2lKq5F5u1gJDsNT241I45Uwznp0F3y4lKmdA','In and out in no time at all, the doctor sat down to explain everything that was going on with me. Very friendly staff, and very helpful. Unless a hospital E.R. is ever needed I will always use this facility.\nMollie, Eric, Tobie, and Dr. Henderson are absolutely amazing and handled everything with care and compassion. I was never judged or made to feel less of a person. HIGHLY recommend','2019-12-01 00:57:11.616000','2019-12-01 00:57:11.616000',5,'Eric Pippen','https://lh5.googleusercontent.com/-7ZDCQu6kyzU/AAAAAAAAAAI/AAAAAAAAAAA/VhVExBRyjPg/c-rp-mo-br100/photo.jpg','3272657195432704501',6849),('AIe9_BFBNh-3p60HGE0VxxVuj8CVdj18BeY3yWczMvzxYrcsflz3DEnZICVuOfm9Mu9TIkmi3T9DuXDRVfC91Ti6Pm-IXjXQdzzYqlXst0gRcdcTf35OY0g',NULL,'2020-07-01 18:17:59.833000','2020-07-01 18:17:59.833000',4,'Shireen Muhawesh','https://lh3.googleusercontent.com/-z0fapAvtbEw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmH-zevWsPjnIim1-RaMjr8JNooZQ/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21427),('AIe9_BFBNh-3p60HGE0VxxVuj8CVDkDnNO8Vs4_4_0pJ6_hetUCV6k1NhHOhhMBGvSbR8rfM-ZD2izWIqVASJ2irm-4DVqyo8ggG6r9xPv3RnKIUO9JkapM','Our little guy put a peanut up his nose, and got it stuck! I rushed to Signature Care, and Kristina, Tina, Natasha and Dr Jolly were amazing, friendly, professional and efficient. Thank you so much for your wonderful care.','2018-11-06 17:00:14.863000','2018-11-06 17:00:14.863000',5,'Ward Reid','https://lh5.googleusercontent.com/-4NDrgTyXDhY/AAAAAAAAAAI/AAAAAAAAAAA/HOh8-riyIlw/c-rp-mo-br100/photo.jpg','16891069708558046635',4406),('AIe9_BFBNh-3p60HGE0VxxVuj8CVgD9fvj6vb52crPmmgjfJElbDpENONPHbgiarGy4RGdyB8nSuUpjbQwJkbxNevA5xW8w0J6IjA9h4xRRmPMxfSQYb06Y',NULL,'2020-07-04 18:11:19.957000','2020-07-04 18:11:19.957000',5,'Jaquelyn buendia','https://lh4.googleusercontent.com/-TsN-WwaSdx4/AAAAAAAAAAI/AAAAAAAAAAA/OYQ69vh5EMw/c-rp-mo-br100/photo.jpg','14904078213800803294',21397),('AIe9_BFBNh-3p60HGE0VxxVuj8CVIcuKrXg22YY-SjEZl-inUXoes4DFmjEwOThZT3MNOjr4n3huc0cb64hMAx-qT3N2_9_qvLTPCOadnyI2scakzW10ea0','Had great and fast service I was back at work in less than an hour','2020-02-08 13:36:44.872000','2020-02-08 13:36:44.872000',5,'William Nelson','https://lh5.googleusercontent.com/-yl4NyCIj4j8/AAAAAAAAAAI/AAAAAAAAAAA/o0y3YbW7AlE/c-rp-mo-br100/photo.jpg','13486358490203335051',13433),('AIe9_BFBNh-3p60HGE0VxxVuj8CVL8qq88_4XeOnjC49I6CPzbPEVqWCjPI8EzDjDS0MLA-hwqjimHOKPYkabweaJmDbowIU67xTN1joG7ha7GBRg1mRFz4','I had to go in for an abscess since it was the weekend and the pain was getting unbearable. Staff was friendly and was able to see me rather quickly. Dr. Smith was a godsend. With the antibiotics, I was able to get some sleep for the first time in days. I was even escorted to and from my car by the Security Officer since it was late at night. Even though I hope not to make any return visits anytime soon, I thank all of the staff for their professionalism and kindness.','2017-04-10 18:52:43.120000','2017-04-10 18:52:43.120000',5,'Kristen Factor','https://lh6.googleusercontent.com/-k1Ly6H4ZG5Q/AAAAAAAAAAI/AAAAAAAAAAA/G288TGjcNPA/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2368),('AIe9_BFBNh-3p60HGE0VxxVuj8CVLz-l1p4mIMTYwAQX8PIiRJiJKOqg-pKxEC66FSLlyt0MU1VQVDb93iY9V9Y1tbr0Mf6uDQ7KxR91ciC27-Q_8rkThVM','Georgia was great! Kind caring and great sense of humor.','2020-08-19 01:44:22.907000','2020-08-19 01:44:22.907000',5,'Lauren Snell','https://lh5.googleusercontent.com/-FzKC5g0G1f0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl24yhlzLLEVR8s8m8FgZfG90zXLQ/c0x00000000-cc-rp/photo.jpg','14748677429039074158',NULL),('AIe9_BFBNh-3p60HGE0VxxVuj8CVN2rEVk89qlTwd4mKmoIZ8_Z6i3bNlPpIFg0pmxq95nbLbF4HkDV16qtZP-OlLc5KPVeOXtwiynwEymFgj_eV-beVJxQ',NULL,'2020-01-21 20:33:11.335000','2020-01-21 20:33:11.335000',5,'Alexis Swafford','https://lh6.googleusercontent.com/-uNVMGRJSILw/AAAAAAAAAAI/AAAAAAAAAAA/FTbgYHaD0Zk/c-rp-mo-br100/photo.jpg','3272657195432704501',10291),('AIe9_BFBNh-3p60HGE0VxxVuj8CVq9Ev4c8xuzedCsplS-q8Z5FSouIU7OxJMdZtmsyabnyEg7jPIzde90brh9Ca9BEJniG24QqDrKse6xBpRBWLz80kup0','Service was fast and staff was friendly.','2015-03-24 15:17:54.342000','2015-03-24 15:17:54.342000',4,'Jessica Hart','https://lh5.googleusercontent.com/-L5C_ePMSVZM/AAAAAAAAAAI/AAAAAAAAAAA/b6TH1Itp7XA/c-rp-mo-br100/photo.jpg','8679688254631342173',8931),('AIe9_BFBNh-3p60HGE0VxxVuj8CVrH4_q04bcaKlMjPQVUtvilRMsIK4xDTuwAPZBsxJvjDT6GNsFSN_e2Fik6sQ-j7Yk2zFbp0gKPfhIeErmf3XRvmJ8Ek','Dr.Nguyen, Deanna, Jonathan, Rommel, & Adolfo were amazing. Thank you for all your help.','2020-02-04 06:01:30.577000','2020-02-04 06:01:30.577000',5,'MeArisha Walker','https://lh3.googleusercontent.com/-chpPUieQ1p0/AAAAAAAAAAI/AAAAAAAAAAA/rz99rAPV8BI/c-rp-mo-br100/photo.jpg','8679688254631342173',14763),('AIe9_BFBNh-3p60HGE0VxxVuj8CVRkPu0JqlWdnU3DErnG8S2ycyCuhf29MnRhhd2Gdrr3SVmMkeiS1qhaxKFg5bfnOXD7KeSUBnHH53Hy4sGfuEMiTJU7E','I came to Signature Care feeling horrible. They got me in immediately. The staff was friendly, and empathetic, and treatment was prompt and efficient. Anthony made me feel at ease, Natalie was sweet and Dr. Vaagenes was very kind and informative. I was treated effectively. This is my second time here in as many of years and I’ll never go anywhere else. Couldn’t recommend enough.','2019-07-20 20:01:20.244000','2019-07-20 20:01:20.244000',5,'Beth Symons','https://lh4.googleusercontent.com/-Au1B3kA582Q/AAAAAAAAAAI/AAAAAAAAAAA/axkVgMotzCo/c-rp-mo-br100/photo.jpg','16590124370714063921',3285),('AIe9_BFBNh-3p60HGE0VxxVuj8CVS6TPYavRRAIKxlKVzhEMbI0Q08fCHT_WL7LSJq35sgBio-sJMaxnN7FPKJimRo3fJBoES2I_mtyOiA-yveTO8nWPIxA','I would recommend anyone to go. The staff was very pleasant and professional. Everything was done in a timely manner. They were very comforting and made sure that I understood everything. The doctors and nurses made sure they acknowledge all of my concerns. This was the best ER visit I have ever experienced.','2019-12-25 00:14:37.855000','2019-12-25 00:14:37.855000',5,'Kametra Johnson','https://lh5.googleusercontent.com/-1Kz0LhcdToc/AAAAAAAAAAI/AAAAAAAAAAA/ovgHznjTulY/c-rp-mo-br100/photo.jpg','8626688543755174284',14636),('AIe9_BFBNh-3p60HGE0VxxVuj8CVu_fitzo-Iactox5us1QqKuWhe_pMAnz30Mz6SKABMiqfvrUlYV489t6oI1IwJMJjcuAWOpORGu7Lrh70CVcsL6DCvMk',NULL,'2017-01-10 21:09:53.619000','2017-01-10 21:09:53.619000',5,'Anthony Rogers Music','https://lh6.googleusercontent.com/-GQjnG6LfJhA/AAAAAAAAAAI/AAAAAAAAAAA/DdXhcIMqy6E/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1917),('AIe9_BFBNh-3p60HGE0VxxVuj8CVwWT3Z2ID2FePtktPi3LqVQVLLCINhw_GADxC9L2R22HetUSNylIehAmsdGSPpgU6HRt0ay5EDAFiUQRyvHKnWU-h6Ik','Everyone here is super nice and thorough especially the people who took care of me, Alvean and Brian. Highly recommended','2020-01-21 16:01:02.635000','2020-01-21 16:01:02.635000',5,'Vohzi','https://lh5.googleusercontent.com/-LCwQbUqdLi0/AAAAAAAAAAI/AAAAAAAAAAA/yT4c-rYAelw/c-rp-mo-br100/photo.jpg','16389487648212004696',10206),('AIe9_BFBNh-3p60HGE0VxxVuj8CVXLLknXu0ylhGbKm9HgrEAz29XEkvPiC72QZq2KVxLjuEYrOp-tG3BdP1HKrmmApX3no-RGEqQJP9_nwNjMR6bh47sR0','I came in today to take my fiancé to the ER. Which was super fast and easy check in. The ladies in the front Kim and Alexis were super and very professional! The nurse Brad was amazing being very informative with us as well. The Dr. Vakey was wonderful help and answered all of our questions. I love this place and would c Me back for any emergency needs thank you all!','2018-06-11 18:18:04.661000','2018-06-11 18:18:04.661000',5,'Miriam Reed','https://lh5.googleusercontent.com/-9ltyi9gT3ME/AAAAAAAAAAI/AAAAAAAAAAA/qypLYc0ZOPc/c-rp-mo-br100/photo.jpg','16590124370714063921',3815),('AIe9_BFBNh-3p60HGE0VxxVuj8CVYE9LOOw7nyWDfWCs2TKTUINCUO38dns9uzeYnqZIpGCDYCTnuS6MvYIkBhOCodP86K5uppgm7ZdHTSdgOGJmWOtyET0','Friendly staff, short wait, in and out fast. Will come back here instead of usual pediatric urgent care','2016-09-22 16:36:47.595000','2016-09-22 16:36:47.595000',5,'Esmeralda Nuno','https://lh4.googleusercontent.com/-J7RvoMfVwnM/AAAAAAAAAAI/AAAAAAAAAAA/5dxyPNRA_vg/c-rp-mo-br100/photo.jpg','14567670160750071148',1967),('AIe9_BFBNh-3p60HGE0VxxVuj8CVyyVP_EHSeifgAmm_kk_jxSK49tWbPmvZ4FwLkoEEcTm7MBIIAuF_SdsH5_uXMCx4h-WfHK-uYTNDFhxTfzz3nXMsuT4','I came here in excruciating pain due to an infected tooth and since it’s Sunday my Dentist office is closed. Despite me explaining how I am unable to sleep or eat due to the pain the doctor deemed it a “non emergent” service and required that I pay 175$ JUST for a prescription. I literally waited an entire hour to be told pay this outrageous amount or go grab some things over the counter yourself. THIS WAS SUCH A WASTE OF MY TIME AND DID NOT HELP ME AT ALL. During this time of pandemic and financial uncertainties you’d think they’d have alternative options to pay a fraction or less than. The only reason I refused the treatment today is because I have dental coverage but I can’t get an appointment with my dentist office until next week. I will NEVER come here again and I wouldn’t recommend this Emergency care center franchise to my worst enemy.','2020-07-19 16:59:23.767000','2020-07-19 16:59:23.767000',1,'Shari Denmark','https://lh4.googleusercontent.com/-RxpEK0AsFeY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl18iPK7Z690Ew5VL_5CbFKyaRs3g/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21805),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5_0SHn1ay3Qb10XqILRR0eTMKkSRIhKNmsvwyVHSY-s3xEU29m28tI23aPINM0yeaCKos0QHCr6VzgDGor7XCTik0iWQ','Shout out to everyone here. They did a excellent job made me feel at ease and comfortable. I really appreciate their hard work. \n\nThanks again','2020-08-05 21:23:27.259000','2020-08-05 21:23:27.259000',5,'jason pea','https://lh5.googleusercontent.com/-1cAAvXUmUg0/AAAAAAAAAAI/AAAAAAAAAAA/E6dq0svk4yA/c-rp-mo-br100/photo.jpg','14748677429039074158',22521),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5_EIZzIKYFZ-tCRTQQt3o2yEfXWKxkuBlEaSr97Xqcr4O9-VQVEi05QKGSU2j4wY2YvBHfcbZEzZDdD8nTunYRsrfmvk','The registration staff (Lorena and Amanda) were so patient and helpful with everyone. I had a great experience here and would definitely recommend for care in college station!','2020-07-25 17:12:03.726000','2020-07-25 17:12:03.726000',5,'Claire G','https://lh3.googleusercontent.com/-4D28uCSWlcQ/AAAAAAAAAAI/AAAAAAAAAAA/l6UrUWriG0Q/c-rp-mo-br100/photo.jpg','16590124370714063921',22645),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5_I4rHnaN_gM8eMxwhLgykN1wvUC5I1mVwta72XAiv_fRciuJKZbFOLlYOM_d6TfldbgMfM-DA8vsn5lrS-qqfP6BeqA','My daughter came in with a fever and had to be picked up from school. They immediately seen her. Our nurse Kristina was so kind and sweet and made her feel so comfortable. John was so gentle with make sure was was not afraid. Dr. Faig made sure every test was given so she can have the right treatment! Fast and quick!','2020-02-13 17:44:39.410000','2020-02-13 17:44:39.410000',5,'Maya J','https://lh4.googleusercontent.com/-zp4ayxmbWeU/AAAAAAAAAAI/AAAAAAAAAAA/YysNnCQ2fl4/c-rp-mo-br100/photo.jpg','12541597562633926366',13375),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5_pAoGmn4FTngpCaHsjbXRqJOhd749_pgAY_tHwXLHimjQ4DllMEiFhU0J2XPql--21mwotPDLwjhfD9217PvAtoGxS8','Staff at SignatureCare Emergency were kind and ensured that my experience was pleasant. Tiffany in registration, nurse Erica and tech Ashley K greeted me with smiles and they all worked together so well, I was seen by a physician promptly!','2019-08-01 15:31:40.376000','2019-08-01 15:31:40.376000',5,'Tee','https://lh4.googleusercontent.com/-lrriXfkTvO8/AAAAAAAAAAI/AAAAAAAAAAA/RXurab6rLfc/c-rp-mo-br100/photo.jpg','8626688543755174284',8421),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5-07UhgSbw_tL4xaiFFnFK6iXXY9RadeTKpJJmj1GotAGgeXpnUCZNelHO_WnSosohTPD3qhEMQ_Nh-QbQ9MrDBqq3Nw','From Check in with Genesis to being Discharged the staff was truly amazing! Shout to Nurse Kristina, Radiology Tech Quyen, the Er Tech John, and the Dr.Zhen she was wonderful!','2020-02-04 16:38:35.939000','2020-02-04 16:38:35.939000',5,'Charity Martin','https://lh3.googleusercontent.com/-KPNHEgPPf6A/AAAAAAAAAAI/AAAAAAAAAAA/fis76u46kkI/c-rp-mo-br100/photo.jpg','12541597562633926366',10533),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5-7kpVZdWAiSR8nnwQjxDDFx7hzWf8MuBR-kLYm0AsJ4Mruwo32-LnuLKUMjyYeDUfun5Pq5Nd3od5Vyuqtq0-8mplug','The doctor and the staff were absolutely amazing. I felt like I was at a retreat instead of a hospital. They made sure i was comfortable. Let\'s not talk the about the V.I.P. plush robe and the little care package. Awesome. I almost forgot I was sick.','2019-05-10 15:12:26.471000','2019-05-10 15:12:26.471000',5,'Dana Oliver','https://lh5.googleusercontent.com/-_i7MZNujh0M/AAAAAAAAAAI/AAAAAAAAAAA/Bc4sOBJQuSI/c-rp-mo-br100/photo.jpg','8679688254631342173',8844),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5-etPXfML5QUYiSfz6lBJJDlhoHu-tsMF-Qb0-qNJS5QLR0iu6pFsK1ABe0h4_xmQZLevzgTTJBZEmGwOYsoc3BmTmN0',NULL,'2017-04-25 13:22:51.560000','2017-04-25 13:22:51.560000',5,'Jacqueline Rodriguez','https://lh3.googleusercontent.com/-v6LtRPnbldw/AAAAAAAAAAI/AAAAAAAAAAA/t3QmPRhtzWQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1839),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5-N0A_FAKG_UWWUzUe-08BOHZ5PYFgs4tQTgC9htyPqrZkCPVc2p_h6uiCqoKl_fcTy6qnALFfvmU6ziHQWm2ZlO0e-o','I cannot say enough good things about this center. Every person I interacted with was so friendly, professional, and compassionate. I did not have to wait at all, which was such a relief as I had my family with me and we still had a lot to do for Thanksgiving. I felt very well taken care of - Dr. Werzanski took the time to listen to me, explain what I needed to know, and we even found out we grew up in the same town in New England. I hope I never get sick visiting in Texas again, but if I do I know where to go for help! Thank you all!','2017-11-23 23:43:06.096000','2017-11-23 23:43:06.096000',5,'Cathy Blanchette','https://lh3.googleusercontent.com/-g06uj3ft094/AAAAAAAAAAI/AAAAAAAAAAA/X6ZJx6DoLOk/c-rp-mo-br100/photo.jpg','16590124370714063921',3905),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5-x-hLKF5_FUFYmG6X5bPURrfeO4k2gQsVnnBIoC_3X0YAULp0iajiAFkJ1rSSgWhc9ScVsU5A-0NLho7EuNSRVtJ3Sg','My experience at Signaturecare Emergency center was quite the exception. Everything from the front desk clerk (Janay) recognizing my immediate emergency (severe allergic reaction) to the radiology tech (Linda) getting me connected and checking my vitals to the calm, yet highly efficient and lovely nurse, Christina was definitely up to par. Dr. Lingan was the M.D. that night. He was very thorough and calculated as to how to properly handle my situation. I knew I was in good hands with the high level of knowledge and professionalism that each staff member exemplified. I am very thankful to each of you for nursing me back to health. Thank you, again, for your attentiveness and care.','2018-10-16 03:55:24.766000','2018-10-16 03:55:24.766000',5,'Priscilla Plant','https://lh4.googleusercontent.com/-zHdoq-P6tzc/AAAAAAAAAAI/AAAAAAAAAAA/VTw7GaOKkQU/c-rp-mo-br100/photo.jpg','16891069708558046635',4418),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5-Z8gPvLFdtwWLsHGYQk9YBM4JHkInWGV24LqrN3wW7iqukyk1n2k6Kp7fXYj3pR3b8hUK8zO089uin4jc3NqmKhCP1U','Very clean, Dr. Thomas, Dawn, Ashely among others made the stay very nice','2019-06-07 11:52:37.853000','2019-06-07 11:52:37.853000',5,'Jeremy Daniels','https://lh5.googleusercontent.com/-C8OSauJh6Es/AAAAAAAAAAI/AAAAAAAAAAA/PjyoMWm6o74/c-rp-mo-br100/photo.jpg','17898197009688164559',5709),('AIe9_BFDvtvCY6mNmVUeGBiBb7S50BHZn6JQ_UeM307Otr16A899aW0PT9SYTEXUWRpO27BQys-XnV1GFegr9JYsFhuDw6wcEY5Vusix_Lw5MrIaZfl6TOI','Wonderful place Kudos to Ms Amy, Jordan (nurse). and Dr Jordan... best ER visit ever... very efficient ... everything needed is on site Very Professional!','2018-01-06 18:14:27.963000','2018-01-06 18:14:27.963000',5,'Angela milton','https://lh3.googleusercontent.com/-hlX8ctlcLMA/AAAAAAAAAAI/AAAAAAAAAAA/kWiy0kbPYmE/c-rp-mo-br100/photo.jpg','8626688543755174284',8648),('AIe9_BFDvtvCY6mNmVUeGBiBb7S50Oth4e98bv18XEh6abfpkI1eEz3f1-yFAMJidgUxYofsGaQoYMviNyM9Xc1pclHuhJJgVhtKHAXqQBHIrhpBeZUsank','Avoid!! I went in with the stomach flu then got a bill from insurance that my visit here was charged at $8,400! I was here for a couple hours, got an IV and antibiotics. They tried giving me an EKG for the flu, which I denied. Probably were just prescribing it to get even more money. I will say, they had excellent service and were incredibly polite. But you may leave with a bill costing the same as a small car for relatively minimal services.','2018-10-21 20:14:59.265000','2018-10-21 20:14:59.265000',1,'Katherine Woodrum','https://lh6.googleusercontent.com/-DKIi8O-WA4Y/AAAAAAAAAAI/AAAAAAAAAAA/7tctQ-Z0a-A/c-rp-mo-br100/photo.jpg','3511292162159714121',7570),('AIe9_BFDvtvCY6mNmVUeGBiBb7S50p9xFQ728XTjqAXiubKQxxJVsIyzW95hDtTPh772OGEVe_G5wv06bQqmSJtg8n8NKMY6LdCJdTNn4w1eB3uMvhictcA','Had a major toothache and dentist was closed on a Sunday, they gave me a lidocaine shot which took the pain I instantly away and I was able to sleep last night for the first time in a couple days! So thankful they were open and able to assist me.','2019-09-16 13:15:38.915000','2019-09-16 13:15:38.915000',5,'Brandon Noble','https://lh3.googleusercontent.com/-KV_FjAnuZtk/AAAAAAAAAAI/AAAAAAAAAAA/gqaftMZim5g/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3203),('AIe9_BFDvtvCY6mNmVUeGBiBb7S50SpFoYpepKyrog8Z1msf_aeoXli7CP8RXhI2Pu6F3cr3YEkqlwS0st9-vhtlE0NhblQ2Ng0cUflfx0SKT-ZsA62xXv0','I had a pretty deep laceration in my finger. (I cut myself with a slicing machine in the kitchen) We had had a friend that had a good experience at this location so we came here. We had no wait, the facilities were great, everyone was nice, the Dr. stitched me up and we were on our way back home. Wow, so much better than an emergency room experience at a hospital!!','2014-10-22 21:46:51.405000','2014-10-22 21:46:51.405000',5,'Lisa Birnbaum','https://lh4.googleusercontent.com/-2EkPmp8lKdU/AAAAAAAAAAI/AAAAAAAAAAA/KkKONHltYdM/c-rp-mo-br100/photo.jpg','8679688254631342173',8938),('AIe9_BFDvtvCY6mNmVUeGBiBb7S50spJU_9CcZfQ06CP53zdKkAtl_vpv4Wj6XuNYT6XrO6RmmgHr0cgxnLN3AGKM_HbqJYJt1YRoL2FbeC__eR94c3LAs8','Came for the rapid Covid testing. Cody, Nydia and Sam were really kind and patient with me. Had me in and out in less than 5 minutes.','2020-07-26 16:59:51.457000','2020-07-26 16:59:51.457000',5,'Justo Llanos','https://lh6.googleusercontent.com/-59UZ6VpuIIE/AAAAAAAAAAI/AAAAAAAAAAA/9MupN8jDPNM/c-rp-mo-br100/photo.jpg','2077061009497551125',22829),('AIe9_BFDvtvCY6mNmVUeGBiBb7S50tYksvIZpTaf4xOnP-5sowUCRj3lonhyaRfK7irxthQ3On2gHRfAbU4HKcejw7gVjNOMtSS8LtJiNgKZ0EA28b4bSIk','This place is awesome! Everyone was really nice. Skyler, Anne and Christina are amazing!!!','2020-03-15 04:37:49.497000','2020-03-15 04:37:49.497000',5,'Amanda','https://lh3.googleusercontent.com/a-/AOh14GhM6MCTX84VHKEreuPRf77ajONiRKi_lwYQuThwEA=c0x00000000-cc-rp','8626688543755174284',21182),('AIe9_BFDvtvCY6mNmVUeGBiBb7S50UzO_bI_sJik_6xq1CPYJHqq17WO45ALibvZyucEL6PIJJcbAWU1u2mcXmAatx3XqLMA8f-VqviVtWZKlqyUX6OAQsg','The nurses and the doctor were extremely patient and caring. They showed genuine concern for my wellbeing and did what they could to help me out! (I did have to convince the receptionist that I needed to be seen, though...)','2017-12-04 00:35:35.609000','2017-12-04 00:35:35.609000',5,'Anita','https://lh4.googleusercontent.com/-oFr1FBhlP0w/AAAAAAAAAAI/AAAAAAAAAAA/uKVEaNw6n4I/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4532),('AIe9_BFDvtvCY6mNmVUeGBiBb7S517k-n6KxIgMlD9F_O3Y7N4FAEczSuuyOYrsK8ccRT_HSZfV8Jna5NN7xQ-3LAzcaR0L8nI2dADfs8M1hUrBfXgSBNKI','Excellent staff! Very friendly and quick!!!','2019-03-13 00:33:36.973000','2019-03-13 00:33:36.973000',5,'Jenn F','https://lh4.googleusercontent.com/-i3QwkD28BEM/AAAAAAAAAAI/AAAAAAAAAAA/R7nL3yVgsow/c-rp-mo-br100/photo.jpg','17898197009688164559',5813),('AIe9_BFDvtvCY6mNmVUeGBiBb7S51DR453y25nYePsHVfjprSL1wPtLgcwiqaoULvu5t6mU4KBie0u1b5AfwBxhRt76RihkwY5RO2MKT7YoKM7kZB55evlE','EXCELLENT STAFF! I was first greeted by the security guard who was very nice and welcoming. The front desk receptionist Deanna was extremely quick and efficient when registering all 3 of us. Joshua quickly came and took our vitals and also got our Xrays. His bedside manner was great. Our nurse Kat was exceptional to us all but she made my daughter feel extra special since it was her birthday. Finally, Dr Appiah was very thorough and made sure he addressed all our concerns.','2019-05-23 06:23:15.701000','2019-05-23 06:23:15.701000',5,'Diversified Perfection','https://lh6.googleusercontent.com/--cdbXl6engc/AAAAAAAAAAI/AAAAAAAAAAA/RaW02VHmzQk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S51e3Kf-LixmP-bA-b1cpoCOYZXwU8ISC8FbrGg-aAHsnmO5LgvsUqlcUV4L8KpfqQ51jo821FrUOD_3ONZFdR6in6_WY','Everyone on Staff tonight were very friendly and promote with services. They managed to nbn ste it a very pleasant experience for us. We even managed to giggle while here .','2018-12-22 07:57:47.975000','2018-12-22 07:57:47.975000',5,'Andrea De Hoyos','https://lh3.googleusercontent.com/-eZExwhHfhUo/AAAAAAAAAAI/AAAAAAAAAAA/semvxkD1LYw/c-rp-mo-br100/photo.jpg','14567670160750071148',1446),('AIe9_BFDvtvCY6mNmVUeGBiBb7S51Mt_1t6NjcYwKhgnKazYQ73uQFZliC5kUWIqZ4kMzPzCK1ck2NR0BxpWdvtkAoL_PuF9SADdHSDkk4p3AO4h-gAzUdQ','Kendra was awesome! So helpful and so sweet! Definitely recommend','2019-11-07 21:15:32.168000','2019-11-07 21:15:32.168000',5,'Isabela Dominguez','https://lh5.googleusercontent.com/-9JWUYkfcQpw/AAAAAAAAAAI/AAAAAAAAAAA/W2LWH9y9GNQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3097),('AIe9_BFDvtvCY6mNmVUeGBiBb7S51PFDiHCWhHvhrW8ZtVvIgLMxxXrDc9sEZUoTylgOHxZ1jFzNnQAmWuhH4DjQSfYS8U12qXC-zRIIHoXm0vj6b0WBrNc','All staff members were very professional, courteous, and in tune with my condition. They put me at ease in my emergency and I’m appreciative of that awareness.','2019-06-17 04:03:36.709000','2019-06-17 04:03:36.709000',5,'Shane Smith','https://lh6.googleusercontent.com/-ExnooxlZ5as/AAAAAAAAAAI/AAAAAAAAAAA/COsoUtfI868/c-rp-mo-br100/photo.jpg','14567670160750071148',1299),('AIe9_BFDvtvCY6mNmVUeGBiBb7S51q9_32L_Gxzg3vVYxIeVBx02G99BX4cs4Y77zcD0Gp6lvvniRHBymOQpOIhNHmvUsFq3lSaESkg_53x_ji5LFndMrNE','Very helpful, caring and understanding staff! From the minute we walked in, staff was on board to help and make us feel comfortable. Words cannot express how thankful I am to them for truly caring about their patients.','2020-03-15 19:10:30.133000','2020-03-15 19:10:30.133000',5,'Dora C','https://lh3.googleusercontent.com/-h0OQqFYyZyM/AAAAAAAAAAI/AAAAAAAAAAA/QQjZlkiVYE8/c-rp-mo-br100/photo.jpg','16590124370714063921',21028),('AIe9_BFDvtvCY6mNmVUeGBiBb7S51x-E4jGNeIM6XTSJnjz3qIpTvpmf6hUzkCb0pceP2xhSHXgOeXK9VCNNCjhcO3gIumxHYWRq3uqRfEK7fIrQsMzrMng','Lorena and Victoria were very nice and helpful','2020-07-26 21:08:25.022000','2020-07-26 21:08:25.022000',5,'Lia n','https://lh3.googleusercontent.com/-ZfR9LWYEgFU/AAAAAAAAAAI/AAAAAAAAAAA/0UNL-xEPtQs/c-rp-mo-br100/photo.jpg','16590124370714063921',22018),('AIe9_BFDvtvCY6mNmVUeGBiBb7S51Xnfq1FWKFk-cYvI58jrRwjYwtCzKFSABVCrT68dkubE62CLtBStuRbfyRj8WAgVrki4LOiFqeklOSSqbJ9w_Fw4zDE','Dr. Ortiz, Cat, Rebecca, Kat, and Ray were all very nice, fast, and kind.','2019-09-16 23:55:15.736000','2019-09-16 23:55:15.736000',5,'Logan Keim','https://lh4.googleusercontent.com/-g3e_xIrLRkE/AAAAAAAAAAI/AAAAAAAAAAA/bavjcQAtyNE/c-rp-mo-br100/photo.jpg','16590124370714063921',3202),('AIe9_BFDvtvCY6mNmVUeGBiBb7S525JDHaydk-IUZCr_e5qqWOg3dkkiZslcpOJFdUN_yOBuMoqpPZudVzNZWt4uZw2D7FOfo56ZQvhgezs43PYT3NxRbLQ','Anthony , Natalie , Angela and Dr. Pham we’re all great!','2019-01-26 22:44:07.518000','2019-01-26 22:44:07.518000',5,'ryan roden','https://lh6.googleusercontent.com/-CbTolhr2EIs/AAAAAAAAAAI/AAAAAAAAAAA/oTJ7gAQyTG4/c-rp-mo-br100/photo.jpg','16590124370714063921',3571),('AIe9_BFDvtvCY6mNmVUeGBiBb7S52d4WrSpTlcfRLh00OL7dgpTd4Qe4Q6tgsNciR_lEq8n5-6e9Hcb4DSrq0XRocE3pL1dIH6ndhAKA8_zjVJZhqcL1dk4','My husband came here to treat a leg infection and ended up staying over night. The entire staff has be amazing and made our stay very comfterbale.','2018-07-21 02:54:30.589000','2018-07-21 02:54:30.589000',5,'Juany Luna','https://lh6.googleusercontent.com/-RAWrGc8bZEI/AAAAAAAAAAI/AAAAAAAAAAA/YFJfUW35nb8/c-rp-mo-br100/photo.jpg','14567670160750071148',1592),('AIe9_BFDvtvCY6mNmVUeGBiBb7S52gz1u2BaUex8zp7BKBdyI9khA8cBYufed9t2ZDWAHA2_HP74DcY9KLZZ4zoMu9RTiZs0ekWGJY4fmY0XJD0uhxulkuc','Cody and Sam were great','2020-08-03 17:38:41.159000','2020-08-03 17:38:41.159000',5,'Ciachefpete','https://lh5.googleusercontent.com/-yOoF4XJhHac/AAAAAAAAAAI/AAAAAAAAAAA/3emtbZiu1Ao/c-rp-mo-br100/photo.jpg','2077061009497551125',22751),('AIe9_BFDvtvCY6mNmVUeGBiBb7S52h_IT6oIpN6Rg3_0ZT8QQ19RNe7wWZFZJvgLqzvLTTM0IZTfC9tAflHqHoQHns1s-AHEgejX5OnUjBKorOPPYfF0kUM','Where do I start from the front desk to Cody and Sam and the Doctor . Everyone was very friendly and professional. I had to get a covid test to go back to work and it was easy and fast. I would recommend this office to my friends and family!','2020-08-17 13:48:47.246000','2020-08-17 13:48:47.246000',5,'Destani Adame','https://lh4.googleusercontent.com/-YtXRFsuAdok/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck6or2X_XgaGWcgrdOEtz87eSsLlQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S52IB0hEVTPq5M3ltOeNI1oqBSdiXYuOkvuptoO1Ed1N1QHxNXmhwQLOF8sQoaWxtU_Wu0M41uqp2ZzRzN_-Ojh7saeW8','Suzanna and Emily were two very nice employees who are greatly appreciated. Also, the medical staff turned a stressful situation into a positive experience.','2020-06-16 15:10:01.400000','2020-06-16 15:10:01.400000',5,'J.T. Stanley','https://lh5.googleusercontent.com/-iiTgY76WWQY/AAAAAAAAAAI/AAAAAAAAAAA/HzCVc-VJcMs/c-rp-mo-br100/photo.jpg','2077061009497551125',21102),('AIe9_BFDvtvCY6mNmVUeGBiBb7S52lvGlLS8_8V29v5c1bR-c7Ispm1EZrRu-BLvfHO0aRxFLrTN1aSgnTlR4HW3u-Vj-mReAwTgTS_XFFByu_FdqWWLE9Q','I highly recommend SignatureCare Montrose for all your medical needs! They\'re open when other doctors are closed, there\'s no wait, they treat you like family when you\'re there, their facility is modern and clean, they get the diagnosis right, and they follow up after you leave to make sure you\'re ok. I love this place!','2018-10-02 21:44:35.479000','2018-10-02 21:44:35.479000',5,'Doug Peterson','https://lh4.googleusercontent.com/-DP_GcIGorfs/AAAAAAAAAAI/AAAAAAAAAAA/zvvTwR_p2uk/c-rp-mo-br100/photo.jpg','3511292162159714121',7579),('AIe9_BFDvtvCY6mNmVUeGBiBb7S52O2AIRabgtXJyScBRHAxudWCCnbnZBaLNA2R6m9a2FMFrzMalq25hhTD8EpGbOFhmwbjNqrX2xraQF10BJrUur_xu3s','The doctors are very helpful','2019-08-22 05:22:48.584000','2019-08-22 05:22:48.584000',5,'Becky Romero','https://lh5.googleusercontent.com/-vDzr0U35-s8/AAAAAAAAAAI/AAAAAAAAAAA/Vt5ZcYYIZXo/c-rp-mo-br100/photo.jpg','8918455867446117794',9074),('AIe9_BFDvtvCY6mNmVUeGBiBb7S52xtm5KHi5voaH51xmtucN5uchJZN4Y3eIWyMqCGskDZ3m1BxVVeJ5_g9QE-WU7__f_9doL_-pFXLaSpMYllVRiSLIAI',NULL,'2019-02-05 14:53:43.215000','2019-02-05 14:53:43.215000',5,'Aaron Findley','https://lh4.googleusercontent.com/-5PjNVlxdslA/AAAAAAAAAAI/AAAAAAAAAAA/F_-FMTHCbOo/c-rp-mo-br100/photo.jpg','13486358490203335051',1072),('AIe9_BFDvtvCY6mNmVUeGBiBb7S53m4puzMXoT7JpDBYOWbsvmva1nX3XRIG6fWfhSR6qKd4eO6SM5fGHsmuQDAv0uFcF6Sxa6HUUc7MIHmYTBqFDi7Uda0','Very professional and saw me for a COVID test almost immediately! Lorena and Victoria at the front desk were very kind and informative!','2020-07-26 15:15:58.168000','2020-07-26 15:15:58.168000',5,'Matthew Lovett','https://lh3.googleusercontent.com/-YxyGrNonqS0/AAAAAAAAAAI/AAAAAAAAAAA/WhjJYGN8Omw/c-rp-mo-br100/photo.jpg','16590124370714063921',22024),('AIe9_BFDvtvCY6mNmVUeGBiBb7S53SNwXnEnl6EFTrLXpQvtVH8W6ynDWZcBxs8amcF0mSdudr4hyaqOgW9ns4_lOLSCRtsJ6uwpdj3qJITgHM_lS-zO_Do','They took care of my concerns and called me after the fact to check in on me. Clean facility, friendly service, very short wait time. Thank you for reaching out.','2019-07-09 20:01:03.476000','2019-07-09 20:01:03.476000',5,'Margo DeGange','https://lh6.googleusercontent.com/-C7AMi5mAmn8/AAAAAAAAAAI/AAAAAAAAAAA/cmI-EwItAyk/c-rp-mo-br100/photo.jpg','16590124370714063921',3306),('AIe9_BFDvtvCY6mNmVUeGBiBb7S54-n9DLWpVxLubFqi2IQFQh8Qr3rwD_FQgNGMWJn6x6yXtyEMERSWmmv3pzXKse8ABmP-1FbK0TOuu1m34E9Ux7cgV_I','They were super nice and fast!','2020-02-24 19:51:48.172000','2020-02-24 19:51:48.172000',5,'Michaela Guerrero','https://lh4.googleusercontent.com/-9-m62IcJGB0/AAAAAAAAAAI/AAAAAAAAAAA/zm2S_ODwNt8/c-rp-mo-br100/photo.jpg','2694018788013845459',14208),('AIe9_BFDvtvCY6mNmVUeGBiBb7S542zSdmBP8j2uM7v8NVMhmA2tFZDJV1XBHmphdP32zcn2WoXWAN9y3cStceEWv5x4aza_GydgEneOw373iuCMesqKX50','This place is Amazing! My daughter was feeling ill with a 102.5 fever, headache, eyes hurting and vomiting, so my husband and I knew we needed to take her to the E.R. It is 1:30 am and we knew we were in for a long night in an E.R. room, but we knew there was a new Emergency center so we decided to check them out. In the parking lot the security guard was very friendly as I walked in Barbra, receptionist, was very welcoming and knew I was flustered she walked me through the paperwork and told us to have a seat. We waited about 5min and the nurse Michelle brought us back to a kids room. There was a tv with kids shows on which is nice my child felt comfortable another nurse came in Kelvin and took her vitials. Michelle and Kelvin made her smile and feel comfortable. They made her testing go smoothly came in frequently to make sure she was comfortable and us as well. We were offered drinks they made sure we were taken care of as well. Dr. Zajac came in and listen to us answered all of our questions even the off the wall questions. When we were all done Dr. Zajac explained the medication and everything we needed to know. Michelle and Kelvin came in double check to make sure we understood everything and gave my daughter a little teddy bear which made her light up even though she didn\'t feel well. My daughter asked if she can come back when she is sick again. I recommend Signature Care they really take care of you and go above and beyond to make you feel better. Thank you to Barbra, Michelle, Kelvin and Dr. Zajac.','2019-06-03 18:07:52.060000','2019-06-03 18:07:52.060000',5,'S. Smith','https://lh4.googleusercontent.com/-oDKG9CJUY44/AAAAAAAAAAI/AAAAAAAAAAA/5YLlTk0sAdU/c-rp-mo-br100/photo.jpg','2694018788013845459',6139),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5437lQZU1YGlaQusTdcixADMdxzTTafzKRi1ksg5Vr6XNN6tIV2lJ3IukcmJJ-NmJpVQKtmnG1B66g3B4KQBKPaqHq64','When we arrived, Jocelyn received us very cheerfully and was very pleasant. Dr. Harjai was very quick to see us and very personable. He made sure we understood everything we needed to do to take care of my husbands wound. Alvean, our nurse, was very kind and helpful in showing us how to dress the wound. Everyone was very pleasant and best of all we didn’t have to wait a long time for anything.','2019-05-25 20:28:52.431000','2019-05-25 20:28:52.431000',5,'STEPHANIE PEREZ','https://lh3.googleusercontent.com/-s88He_2j7xk/AAAAAAAAAAI/AAAAAAAAAAA/3ulcfZhKcuU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S544KEG69NGueh6D0BD9P5MPuSd2kg6UrUfbwWBpalhMumAy7nKODF6gjvT5DpDC2VQNNc0tfNUbpBLTXc-WmnaAUKqRE','Great experience. Super clean, very friendly staff and the fastest ER visit we have ever had!','2018-05-21 16:37:21.476000','2018-05-21 16:37:21.476000',5,'Becca Luedecke','https://lh4.googleusercontent.com/-46IeA26XjP0/AAAAAAAAAAI/AAAAAAAAAAA/RMtD2B4xoqs/c-rp-mo-br100/photo.jpg','16891069708558046635',4477),('AIe9_BFDvtvCY6mNmVUeGBiBb7S548gBdlK66BGJkQqcFsIu14YOfhplgbHnNX23xf_MedrRIPglxHLv17hTZ_pxZrjWki1pABG8YgRr6t-jfiuLoTBJTm8','I have been to signaturecare E.R on hwy 6 and old Richmond a few times and Everytime I have had such a pleasure to be cared by the most professional and warm hearted staff and I am very thankful for everyone here','2018-09-09 17:39:38.320000','2018-09-09 17:39:38.320000',5,'Zack Perez','https://lh3.googleusercontent.com/-r2xJAW65q1U/AAAAAAAAAAI/AAAAAAAAAAA/36OV9KW8I3M/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4803),('AIe9_BFDvtvCY6mNmVUeGBiBb7S54vIW_KxSVyiQrcs3V9r3PUd7eq0eth8m-ZlhckKNnnbwT8VU46JpM-6G6fxRntW9PMRxNY74Ga9jAwzo-0Fhep2LO38','We absolutely love Signature Care! Every single time we have gone there especially with our children the care is so amazing! The doctors and staff are outstanding! I would recommend them 100% of the time!','2018-08-28 02:51:16.351000','2018-08-28 02:51:16.351000',5,'ᒪᙓᓰᘐᖺTᗝא ᗝ_','https://lh6.googleusercontent.com/-66fkTP51VKw/AAAAAAAAAAI/AAAAAAAAAAA/PgN77x7z2co/c-rp-mo-br100/photo.jpg','16891069708558046635',4438),('AIe9_BFDvtvCY6mNmVUeGBiBb7S54wdCp_2UE-cVAAMhruCWnJIePrGlfkuJ2apDn3luLSF8wIljHX9eeGSXy1EwJvl78IcmtL3Y8Gv-0lcQAacD-h1Ov84','I recently brought my husband to this ER and was blown away by the phenomenal medical care he received...it surpassed all my expectations! We were greeted immediately by the registration clerk Lizzie and placed in a room within MINUTES! That was impressive in itself as this is an emergency room. Nurse Dawn & Nurse Agnes were both highly skilled, compassionate and personable. I was worried about my husband and both ladies took the time to acknowledge my input and answered all my questions. The ER tech Olivia and radiology technologist Eve were both attentive and kind. They made sure that my husband and I were comfortable. It’s clearly apparent that these ladies work well as a team! Dr. Faig was thorough and took the time to explain the diagnosis. Thank you Signature Care Montrose, you guys are amazing!','2019-07-09 21:18:47.529000','2019-07-09 21:18:47.529000',5,'Jiji Jaganathan','https://lh3.googleusercontent.com/-rA1gaY1-xnE/AAAAAAAAAAI/AAAAAAAAAAA/dQYAoE0cyTs/c-rp-mo-br100/photo.jpg','3511292162159714121',7257),('AIe9_BFDvtvCY6mNmVUeGBiBb7S551zk7o7enncZCP8xyuse4lJWohCYfGOd_08wbJ-9tByeTcu83sp9hXJtM-Y2nq_zLK48xIkP1yQ9Ty3aXznOL60J540','Fantastic experience! I met with Dr. Rose/Christina/Linda/Ricardo and Andrew- They were extremely gracious and fast! There was minimal paperwork and I was provided with easy instructions. Strongly recommend to anyone!','2020-01-26 19:11:45.735000','2020-01-26 19:11:45.735000',5,'Quote CNSG','https://lh3.googleusercontent.com/-ru4z5cxFB2s/AAAAAAAAAAI/AAAAAAAAAAA/dI5BHVb7KpI/c-rp-mo-br100/photo.jpg','16891069708558046635',13972),('AIe9_BFDvtvCY6mNmVUeGBiBb7S55pJvLCEJhVsjxN167ZEqhrzZ9gXK2WOtCgcHnndl4rEI15ao92fGBWfQOSi2gktQxwDdqid7c_DqmqzLGwZEKAj95pw','The nurses and staff were very nice and professional! Peggy and Bryan was so nice and communicated very well!','2020-07-29 16:46:35.890000','2020-07-29 16:46:35.890000',5,'Milisa Hamilton','https://lh3.googleusercontent.com/-Vusd_aLzQlI/AAAAAAAAAAI/AAAAAAAAAAA/fCpNFgjYC6I/c-rp-mo-br100/photo.jpg','2077061009497551125',22951),('AIe9_BFDvtvCY6mNmVUeGBiBb7S55pKzi_Zan_aIuwU7X67JkQfC6CwDdeDhIYFgNYCWFGnV2ew2mAEvKu1XTycqjEod2kO18CITHq_7XAdhsBvEaEH2QPM','Great place very professional','2018-01-18 16:49:59.242000','2018-01-18 16:49:59.242000',5,'Christopher Blanchard','https://lh3.googleusercontent.com/-uWBGiW6-8X4/AAAAAAAAAAI/AAAAAAAAAAA/jjK_0jeptdg/c-rp-mo-br100/photo.jpg','14567670160750071148',1677),('AIe9_BFDvtvCY6mNmVUeGBiBb7S55SfuCufPDCGBXu7LNC5LujRQpi1ZC6GNzGvygdWfHj5HX-ZwvNv2GZPZYTLW8fp6j_3EYjf8PExXNDxpbyA2zqhLzfo','$3500 to get checked for strep?? RIPOFF!! Avoid at all costs.','2016-02-15 15:33:35.791000','2016-02-15 15:33:35.791000',1,'B R','https://lh6.googleusercontent.com/-y9HipxW5bWY/AAAAAAAAAAI/AAAAAAAAAAA/MgAIdAIyGjo/c-rp-mo-br100/photo.jpg','17898197009688164559',5947),('AIe9_BFDvtvCY6mNmVUeGBiBb7S55Y1tA4rrELRpdoqL2oLoNQAtiLlUzWQw8yurQH6tHC46AxH5KBx-sFkzFOh_ZO80fgLg1AFgI0hzZXhOTL0B4b6c2jg','Fast and friendly. Treated me with the best care possible. Dr Ashbrooks, linda ,Jennifer and Shannon your all the best care team.','2020-02-15 12:12:43.290000','2020-02-15 12:12:43.290000',5,'Micki Rains','https://lh3.googleusercontent.com/-mrt7De3EIHo/AAAAAAAAAAI/AAAAAAAAAAA/n--v7ils4qc/c-rp-mo-br100/photo.jpg','3272657195432704501',14359),('AIe9_BFDvtvCY6mNmVUeGBiBb7S56_E2ARVltJotw4XdkCfdGd7fUhIJbJUlVtHHipQ0eXHnvnAWx_i61TIr8Xf6ShTtIFB6kjo7z96784BAgbXndwaXb_4','Best ER experience! Sindy, Laura, Quyen and Dr.Evans were extremely friendly,helpful and informative. Highly recommend','2017-11-22 08:41:51.246000','2017-11-22 08:41:51.246000',5,'Tabitha N/a','https://lh3.googleusercontent.com/-qX9AESZ-WcM/AAAAAAAAAAI/AAAAAAAAAAA/1fguQNGvsXY/c-rp-mo-br100/photo.jpg','3511292162159714121',7758),('AIe9_BFDvtvCY6mNmVUeGBiBb7S563tPuEUWPBdk82OwMdVgyWRRK2p0ACjGpe2b4SVqR2kdZhwXJry4L5-iJzybLm5pzq9ihCJYNiaGNZYLyWXeUpno6N4','Dr. Pham, Dana H, Selina V, Jocelyn A and Erika, from start to finish, is by far the best ER care I have ever experienced. The staff is does a stellar job at being thorough, transparent and very kind.\nDr. Pham ensures you are comfortable while the tests are ran. You never feel “out of the loop” on your medical care and direction of treatment.\nI highly recommend Signature Care.','2019-11-02 16:04:35.951000','2019-11-02 16:04:35.951000',5,'Diane Lee','https://lh4.googleusercontent.com/-hYCqKu6X9Zw/AAAAAAAAAAI/AAAAAAAAAAA/of-znf47YWk/c-rp-mo-br100/photo.jpg','16389487648212004696',2735),('AIe9_BFDvtvCY6mNmVUeGBiBb7S564eRssZYNkdAVYXnwY7kKzry07a9PtDySzKUzvQPQ8Gz7RmtnGtRPd0v--KI1MPlhmjKZMItGXPe0Y7oYuNyRZzd_X8','Great experience over all. From the front desk Mrs. Valinceia was very helpful and informative. To the nurses (Nichole P. And Jessica R.) for being very professional with their assistants. Special thanks to Dr. Hehman for being an excellent doctor. Thanks guys, I will most definitely recommend this location for any emergencies.','2020-03-01 16:53:39.828000','2020-03-01 16:53:39.828000',5,'Omar Mayorga','https://lh6.googleusercontent.com/-OL-yn-CFPs8/AAAAAAAAAAI/AAAAAAAAAAA/PxzV3Ui8nBE/c-rp-mo-br100/photo.jpg','8918455867446117794',17447),('AIe9_BFDvtvCY6mNmVUeGBiBb7S56ddJ-jxnyieAqvN3dA5ANaGvXtqKeTM2-4w5EaeVeetmze3O-hgHE_6Ehhy47yHcg8AFPgizf8wyFrR-TllEWcuKI_U','Highly recommend! I came in for neck and back pain from a fall. They got me in and out very quickly and this included X-rays and a CT scan. The staff went above and beyond. Thank you!','2020-05-17 18:13:17.536000','2020-05-17 18:13:17.536000',5,'Misty Steward','https://lh4.googleusercontent.com/-FTSuWEKjAn8/AAAAAAAAAAI/AAAAAAAAAAA/pGCP5fADGmw/c-rp-mo-br100/photo.jpg','13486358490203335051',21365),('AIe9_BFDvtvCY6mNmVUeGBiBb7S56IKUq5I62r981Z4_D-DUDSuxzqkK55bagtBu1B5uCm0ouE__18RRH5x8xNAlh41s2dMLpr6Ic5P_khF_pNdknVKlZe8','The doctors and nurses were awesome. Dr singla, nicole RN, Shola RN, Ricardo, Dustin & Samantha. They all treated me and my family with respect.\nI will come back. I recommend this place.','2020-02-01 02:40:35.388000','2020-02-01 02:40:35.388000',5,'Norma Harper','https://lh5.googleusercontent.com/-JkfiVC4gTjs/AAAAAAAAAAI/AAAAAAAAAAA/DZgdeXTjYQM/c-rp-mo-br100/photo.jpg','14567670160750071148',13569),('AIe9_BFDvtvCY6mNmVUeGBiBb7S56UEKpX2Lyvczrs8DVkDsC3afeW-3d7-Wp7vtALWAjZGE889zMIpiapdii0a5gYZuH47EbzAE5lTFa1loFa3HLwljxIE',NULL,'2019-10-01 02:34:52.161000','2019-10-01 02:34:52.161000',5,'Cesar Lopez','https://lh4.googleusercontent.com/-7XN6U8Gqu_E/AAAAAAAAAAI/AAAAAAAAAAA/VfxNyJ-r5Uo/c-rp-mo-br100/photo.jpg','13486358490203335051',796),('AIe9_BFDvtvCY6mNmVUeGBiBb7S56ugKsbXzl98iFFdUC6kRvtW3COdkk9H9siBJDsWDEvhR0uhzNSAEXeX2KaROUdmmdxrbJGFMYbEoga-aouUf1i5223M','amazing place! super fast service, very professional. Treated by an ER physician. My daughter left super happy and said she had never been to such a pretty doctors office. Will definitely keep on my list of referrals and hope I don\'t have to go again with my family, but the place to be if you need emergent care.','2018-01-16 17:26:25.705000','2018-01-16 17:26:25.705000',5,'Kathrym Espana','https://lh5.googleusercontent.com/-Pl808gcWJ5M/AAAAAAAAAAI/AAAAAAAAAAA/IimhWU4CELU/c-rp-mo-br100/photo.jpg','8918455867446117794',9305),('AIe9_BFDvtvCY6mNmVUeGBiBb7S574GS-ZpdIqKX9Rdfa7VpEHv5CpdqmZwJ1HJGsdNlhFokgO0322NqZFq1tK--pwmH10cV9q63ZPcRwD_j5bSRD3bdA_g','They take great care of you love miss shaylene,dr garcia nurse Nicole','2020-02-02 18:47:12.695000','2020-02-02 18:47:12.695000',5,'Teisha Hall','https://lh5.googleusercontent.com/-oze6RDEM7U4/AAAAAAAAAAI/AAAAAAAAAAA/8nCkFtvHSuI/c-rp-mo-br100/photo.jpg','8918455867446117794',14852),('AIe9_BFDvtvCY6mNmVUeGBiBb7S57Cq02f_FBouWThaAElmCza_I_tQqtOaBBkijmqhmQa5A84GWE1k3DqE15hc090z6kV1Md8Ae2aT7h16bLfj9M1vnkPg','Best ER EVER!!!! Hands down!! Dr. Yusuf, Reg. Malissa, RN Kristina, Rad tech Laura and Rad tech Scott most patient sincere center!','2019-08-29 18:56:29.276000','2019-08-29 18:56:29.276000',5,'Mikeya Foley','https://lh4.googleusercontent.com/-a7rbQaMbv4M/AAAAAAAAAAI/AAAAAAAAAAA/aMhZtPgDfhE/c-rp-mo-br100/photo.jpg','12541597562633926366',450),('AIe9_BFDvtvCY6mNmVUeGBiBb7S57Fh3oMSr4pbfm_oew0jQrzMKv-yCqtKNlwZ4m6MQDmC5wZ0bwWaZnxQHCMSJfXG3mdTTmZzUQOnlD3U5MaBRMsoIins','Website says no appointment needed. Get there, you have to sign up on a website that charges you & hope they post an appointment. Then when I finally see an appointment to snag, PayPal is experiencing an issue. Sad because I have had contact w a positive person. Due to multiple issues both with myself & family as well as 50 employees I oversee, I needed this test urgently. Watched several people drive away in frustration as I just did.','2020-07-07 02:06:44.340000','2020-07-07 02:06:44.340000',1,'Love Garza','https://lh6.googleusercontent.com/-ZKM0x7SUSR4/AAAAAAAAAAI/AAAAAAAAAAA/hbLufJzG_hY/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',21372),('AIe9_BFDvtvCY6mNmVUeGBiBb7S57iyTscyTV9OjqN7km19ZH13vQlOmydNoKPbO6-psu-eUZf3a9NoEUmL-ynxdZ9F4eBkBpBK-z_asBMLidJJzdpFKAIA','Had an amazing experience! Super quick and friendly service. Dr. Hall was very understanding regarding my situation. Place makes you feel comfortable and they make sure to take care of you. Front desk mrs. Tanisha W. Was the sweetest, great customer service! She answered all my questions and showed that she truly did care. All staff members made me feel cared for! I recommend this place to all people!','2019-03-23 01:54:58.076000','2019-03-23 01:54:58.076000',5,'Maria Portugal','https://lh5.googleusercontent.com/-9PV3rxkLMNg/AAAAAAAAAAI/AAAAAAAAAAA/EKxhITrkpDc/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5797),('AIe9_BFDvtvCY6mNmVUeGBiBb7S57Lz_-RJRDKl26qdpDZlH9ENCr4ROZmNz-AJDXnVbBpcuFcuTWeleTGu5xU6BTQI3WNbH9NjN6V0HVdd2Qwl77sjxQeg','Great experience and service! Everyone is very welcoming.','2019-02-11 10:19:19.544000','2019-02-11 10:19:19.544000',5,'Isaiah Ramos','https://lh6.googleusercontent.com/-xqtHX9-ygwo/AAAAAAAAAAI/AAAAAAAAAAA/VGc1O63xIHs/c-rp-mo-br100/photo.jpg','17898197009688164559',5858),('AIe9_BFDvtvCY6mNmVUeGBiBb7S57VI3zYtp2x_5DvbDfnBXRnQ4loEyBAEGBKCKTHmhGrqqP8HkbXtacBLoLnCzKJGJ1FPXSIAwLVml2kXQXkuJxAW11jM','I was seen within minutes, explained costs and conditions and discharged in under an hour. This is what medical care should look like. A+','2017-03-15 11:19:21.146000','2017-03-15 11:19:21.146000',5,'C. Sodders','https://lh4.googleusercontent.com/-D7jvCCkk9qY/AAAAAAAAAAI/AAAAAAAAAAA/Gk1J8XtW8Y0/c-rp-mo-br100/photo.jpg','17394740196501090048',5095),('AIe9_BFDvtvCY6mNmVUeGBiBb7S57yAAWnNfNvucXESqHhVEkt7ODseAZbTi6cSJ5IsdpepdZGVaiCH4Yc9Lv8pvSCesB79WNbPQQK8Gs2Ymvnhlrx91-fM','Dr. Ashbrooks, Katy, Courtney, and Sherri were have kinda and efficient.','2019-08-13 16:24:18.279000','2019-08-13 16:24:18.279000',5,'Lindsey Finigan','https://lh6.googleusercontent.com/-Z5lR1Ndp-ds/AAAAAAAAAAI/AAAAAAAAAAA/KUJ8XiXZjog/c-rp-mo-br100/photo.jpg','3272657195432704501',6914),('AIe9_BFDvtvCY6mNmVUeGBiBb7S58iDw2m6xWofbMUDEdW-qNUA5ks-5ZlQVBffgh7dtjm2SmXfbajShYOKGlfZ4WT8tcyYuWUg6a5ewUxzKMC6Jk3gJf3A',NULL,'2019-02-15 16:55:24.670000','2019-02-15 16:55:24.670000',5,'Haley Jones','https://lh4.googleusercontent.com/-PSyr8yCk84A/AAAAAAAAAAI/AAAAAAAAAAA/a3tO592z4DE/c-rp-mo-br100/photo.jpg','8626688543755174284',8567),('AIe9_BFDvtvCY6mNmVUeGBiBb7S58NSsKYRAIKATb6Ec4A_4Dee83RIrzbfzPYfPwQjVjkzvxxxiNnGkQcycApjaOlBYlOV5DbaWfdd9-Idc6GLfYX9DDag','Thanks Robin Bratcher for taking care of me!!!!','2019-03-16 18:33:23.957000','2019-03-16 18:33:23.957000',5,'Madeline Greer','https://lh4.googleusercontent.com/-AvdVuSsU3hQ/AAAAAAAAAAI/AAAAAAAAAAA/j0_IHu-DwVY/c-rp-mo-br100/photo.jpg','8626688543755174284',8525),('AIe9_BFDvtvCY6mNmVUeGBiBb7S58tMTEesLYuFMs0s5LFqq3o7Y_VyYxj5Uwigx3whfuIxAR5Jqs5O8-0DUsoxjdiVjx8eIuyz3YyubsK9wvNbBB4GwBvA','Hello!!\nI would like to start this email off with the service I received from the doctors and the nursing staff was beyond amazing words can’t explain how they made me and my family feel when we was in the Killeen facility. However my wife and I had a problem no one but two separate occasions with the front desk. Natasha was speaking with one of her employees and they were speaking very poorly about the security guard that works there currently and also were speaking badly about a previous security guard. Now to me this is very unprofessional considering you work in the medical field and you never know who may or may not be listening. I’m brining this to someone’s attention to make this staff aware that if you have someone plotting to get someone fired this is not acceptable at all these are the people that we do not need working in this type of environment. From were me and my wife stand the young man was very nice very out going greeted us as we walked in and when our visit was over walked us to our car to insure safety. \nIn closing understanding this is not a reflection on the nursing staff but a reflection on Natasha and the other young lady she was speaking with. I hope someone takes this very seriously and hope to hear back from someone cause this behavior is just mind blowing. \n\nBest Regards \nThompson Family.','2019-05-11 08:51:07.320000','2019-05-11 08:51:07.320000',1,'James Thompson','https://lh3.googleusercontent.com/-d0JWLyenfmM/AAAAAAAAAAI/AAAAAAAAAAA/VSJ3qMcCWkw/c-rp-mo-br100/photo.jpg','2694018788013845459',6159),('AIe9_BFDvtvCY6mNmVUeGBiBb7S594y2EHC2WXjq-xNNo3x-i1n2UBeW_b2NUEUPwBl0T978_kTHnjs2yVhO6eK3hYW0lotkz6GcXUev5DLHrcWDbvmByx4','They were quick, kind and gave a discount because I am a local teacher. I will be returning again! Kara, Courtney, Gunnar and Dr. Yost are fabulous!','2020-01-14 22:51:26.029000','2020-01-14 22:51:26.029000',5,'Kaley Padgett','https://lh3.googleusercontent.com/-ZNUh7Xcn4ns/AAAAAAAAAAI/AAAAAAAAAAA/wokM8boZA5o/c-rp-mo-br100/photo.jpg','3272657195432704501',9818),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5A_XgmbFuXoVQJuGiz9UPTmjAN53Nmra_hxa5m-UzBOlAJvux5M_gn5tj_o0sSa85XhCTY2E6xNvc4sNuDgU4fNHpA4o','The staff was amazing! Dr Yost, Kim, Lucas and Eric took amazing care of me in a very timely manner!','2020-02-18 17:40:47.201000','2020-02-18 17:40:47.201000',5,'Theresa Johnson','https://lh3.googleusercontent.com/-OgkA3hXHj5s/AAAAAAAAAAI/AAAAAAAAAAA/h6-dlkSzi3M/c-rp-mo-br100/photo.jpg','3272657195432704501',14343),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5a2U5t4qms6LFokb_mPCbHk86MB_cjYnNbIQOqD0qXXNY9QG8uthcCNnYuH_lhNSJLhosI16OhYBpNY4HQ8fiLKJyhww','We come here anytime our regular dr or walk in clinic is closed and they’re very good.','2020-01-20 01:36:01.151000','2020-01-20 01:36:01.151000',5,'Brooke Smith','https://lh5.googleusercontent.com/-CsTQ22EBOJM/AAAAAAAAAAI/AAAAAAAAAAA/b5mFpyY6IAk/c-rp-mo-br100/photo.jpg','13486358490203335051',13466),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5a6xjNGE_eV65JrYv3GiPyF5daNl4n2Rgo9oecO1cwF-lJMBLQcDGxE3Ff_WhxjrfHZBWs1UmrVaJi2uiuD7gUZtoxD0','Dr. Faig and nurse Sarra were amazing. My wife’s wedding band hand to be cut off. Lots of laughs on our part. Thank you Dr Faigbfor your patience with us!','2020-01-07 02:31:27.938000','2020-01-07 02:31:27.938000',5,'Bo Carrasco','https://lh6.googleusercontent.com/-63HzXhno4aA/AAAAAAAAAAI/AAAAAAAAAAA/vrLvMZtOGB8/c-rp-mo-br100/photo.jpg','12541597562633926366',9407),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5a9AIW9-h2nJmF9pBuu7a5exCmHTd2CQKNT_uDzwnD17fIrT9LGdLuljr2hyxNUhNAH0UTdjmE2-10ET2aY2OGV0kRO0','Dr. Das and nurse Dustin Hopper were absolutely amazing!! Zero wait time, Dustin was very informative and helpful!! For an ER visit this place was top notch. Even the nurse that did the scan was so gentle and comforting!! Highly recommended signature ER!! Thank you staff!!','2020-07-28 15:14:41.010000','2020-07-28 15:14:41.010000',5,'Jake Williams','https://lh5.googleusercontent.com/-XGPBXyS7nuw/AAAAAAAAAAI/AAAAAAAAAAA/5f6NBHdyuFA/c-rp-mo-br100/photo.jpg','14748677429039074158',21906),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5acJozoYgloPlhJI0IcRkoz5zUrSXUzgoVq4_tABr4pACfsI8VwaFIYISIUOIXY91Epqwj03q-o5phX0xUIRiftbMlPw','Helpful and quick COVID testing!','2020-07-18 19:01:28.958000','2020-07-18 19:01:28.958000',5,'Lindsey Lee','https://lh5.googleusercontent.com/-wNavSQf4_q8/AAAAAAAAAAI/AAAAAAAAAAA/0AlCJg_0uKE/c-rp-mo-br100/photo.jpg','14748677429039074158',21735),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5AeE0tgv1bjYVx_tlgcae1GciCUcHH_G6dO8__xnBPBKz_sHYidQx7GTRfXH-k-qpbzGAQUl0prZqAGQ4wsJC59ZjGzE','Dr.Mauldin and Kat S. were great. They went the extra mile with assisting my husband. We felt welcomed and trusted the information that was given!','2019-06-13 01:10:22.798000','2019-06-13 01:10:22.798000',5,'Alicia Ellis','https://lh6.googleusercontent.com/-9zgo_2N08dk/AAAAAAAAAAI/AAAAAAAAAAA/GLtc4Behg44/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5ALgrpkfn87q9jO6x9UgVdtnczp7lXQtyXK6F7-dbTFvhFHyNni0W0z_N17NQurWl0_xbqgB7u5VUn8Hb6kxYpAaecXM','Kendra did a great job of signing me in!','2019-12-08 18:24:21.934000','2019-12-08 18:24:21.934000',4,'Krista Stoner','https://lh4.googleusercontent.com/-U-zZmFAaCkE/AAAAAAAAAAI/AAAAAAAAAAA/jBoXrNAmVSY/c-rp-mo-br100/photo.jpg','16590124370714063921',3031),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5alqSVtb3QSSt06ozW9rP9-yAEzZEgeEFcVP-bLJRATHkxjIOk5x5Hs45sw8TWTeu6xnnSgWwXcZsr4GMZ3zpMEYg1Y0','I liked the undivided attention I received at my visit. Thank you for being so kind and attentive. Everything was done in a timely manner. Thank you Dr. Daniels and staff!','2019-10-26 06:13:48.123000','2019-10-26 06:13:48.123000',5,'Carlos Martinez','https://lh5.googleusercontent.com/-f9dyffAGo1Q/AAAAAAAAAAI/AAAAAAAAAAA/58_Tld4uzbY/c-rp-mo-br100/photo.jpg','6521947413723274945',8109),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5aqjNlbyHiVuRJFVIB_B-05yIeD-5bArzIfvI9GhcQtL6PtF2fX7r-ypv886aQFs5SMT0--IOr5IetzjCWyzJKyHf-W4','I have been to this facility multiple times for different issues and the staff is amazing. I was there the other day and had nurses Jessica and Colton, who were the best. They made me feel so comfortable and had no issues with my questions or concerns. They really listened to me and wanted to help me in whatever way possible.\n\nAlso, the radiology tech Dion is the SWEETEST! I love whenever he is working because of how personable he is. He does his absolute best to make you comfortable and talk to you.\n\nDefinitely the best ER center equipped to handle your needs.','2018-05-07 22:14:25.087000','2018-05-07 22:14:25.087000',5,'Andro Haerther','https://lh3.googleusercontent.com/-tluFvFb6mB8/AAAAAAAAAAI/AAAAAAAAAAA/_aevCelgY2s/c-rp-mo-br100/photo.jpg','3511292162159714121',7705),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5B_RTqGu763nvpoCLloeTWwNTrZHKNpDhpgGqysziX40IC8F-vynkFL31bEoa6iYv9E-QquQnX9Xd8rY7R4BJN8LAEZw','The employees are so inconsiderate of basic human needs and dont care about the uninsured. More concerned with \" Whats for lunch \" then assisting patients. Will file a formal corporate complaint. Would not recommend this death clinic to anyone in need of immediate life saving procedures. When social media takes precedence over saving lives I am convinced that i will not let them chose my fate. STAY AWAY SAVE YOURSELF SAVE YOUR LIFE!!!','2017-09-25 03:36:55.356000','2017-09-25 03:36:55.356000',1,'windlyne delouis','https://lh5.googleusercontent.com/-yjHZlyi_Sc4/AAAAAAAAAAI/AAAAAAAAAAA/vpTzW5gZ1go/c-rp-mo-br100/photo.jpg','3511292162159714121',7786),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5B-idcFVRUcqwThWewuJqCtlQLpCxJPSr5RmHOw9mUTStjN76vtO6KgoJOrDfstgGkNd5VahtLacfUBwFMpRkE7ydC2o','I was seen right away! Everyone is professional \nand friendly. Now the receptionist didn’t make me feel Welcome, when I came in the building no warm greeting but she did give the couple that came in behind me a warm greeting but Norma made up for my shabby treatment by the receptionist with a warm smile, so did the Nurse Laura. Service was great!','2018-12-13 23:19:12.495000','2018-12-13 23:19:12.495000',4,'Sheila B','https://lh6.googleusercontent.com/-xZfuqBDuYmw/AAAAAAAAAAI/AAAAAAAAAAA/XoSKbh1g-Cc/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7547),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5b3O4E643jsceS5ph_VhRqsg8jM48lI0oFvsgXk_70MetvdtJ4IoN2mFAHZXcfX11N8VG0roLbx_x0j57-ImiL80TfLs','Dr Henderson was a very nice and a good doctor. And the nurse Sarah G was very kind and helpful, the registration was very fast and I totally recommend this er','2020-01-03 01:28:04.475000','2020-01-03 01:28:04.475000',5,'Minerva Morgan','https://lh5.googleusercontent.com/-xSTKu7SSweQ/AAAAAAAAAAI/AAAAAAAAAAA/dx_ctBtGGDE/c-rp-mo-br100/photo.jpg','17898197009688164559',5310),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5BB1qUZhPVx2Oneuu9vsQ3qkNaplDuvzuIGRg_18V03Ndfsj7rB7K5hQrpmmgPAQYFACd7LJ2nNLurQWQ160r3NEuddk','The staff here are wonderful nurse Irving B is a great guy just all the staff here are great ppl please visit here if u ever need an emergency room.','2019-11-25 17:45:40.193000','2019-11-25 17:45:40.193000',5,'Cavin Langston','https://lh5.googleusercontent.com/-diA_gX4NHfk/AAAAAAAAAAI/AAAAAAAAAAA/ZUsC2lB_W3U/c-rp-mo-br100/photo.jpg','12541597562633926366',371),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5BgcPcqY7-pY_F91j_FayYT8XMvQTRyY_0S7vVBwF_JUQx1E3TPGRpjdB5k0OELEaJWNOR2EIPhtykRRwrjTxpWGyGeY','Very pleased with this location. Dr Boester and nurse Joseph & Vivianne provided the best treatment and friendly service.','2019-12-20 15:52:47.666000','2019-12-20 15:52:47.666000',5,'Monica Mata','https://lh5.googleusercontent.com/-8vlyrUWpdBY/AAAAAAAAAAI/AAAAAAAAAAA/0sAooh46x5Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1173),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Bi-QrOCD93_9wyVkWEAlF8D8sHrA84USDBWgJyF26GMRH4ZHUjZk7prXIjQOyy7HNJ5o-U1d_vzRsO0pdioDxBNqEWQ','Other than the long wait. The staff did the best they could under this Circumstances. Real Professionals','2020-07-10 20:32:45.254000','2020-07-10 20:32:45.254000',5,'Adam Martinez','https://lh3.googleusercontent.com/a-/AOh14Gjh0kcfPuvC0qer9w3_mBEPDlsL2h6mWncznvG1=c0x00000000-cc-rp','13486358490203335051',21327),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5BJdM9HjrhqAfVQoP49weq2Yqtn6Z1kH6AQosiqyj89M0-6eIXSZQklGqrY9CXj7T0xRLOjtWzhUbfi3LDmWxrhCpRZs','I love this urgent care facility every time that I have came here the staff and doctors always treated me very nice! Dr. Michael Herman MD. Had to put stitches in my hand today he did an awesome job Kelly and Shawn was my nurses and they went right to work helping me soon as I care in!!!!! Great job Team work makes the dream work.','2020-03-09 18:26:53.343000','2020-03-09 18:26:53.343000',5,'terwoner martel','https://lh5.googleusercontent.com/-3cnBWFZSbDs/AAAAAAAAAAI/AAAAAAAAAAA/tTbm_KPb7QE/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',21239),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5bsmeaLDukMvfMADnMNqL5Eor04H84Co59vmzd8cGAZrdRNXJb-u-SdTnviWSUHWVSHikvCEoKO49WcJTZ_UToGUZ5Wk','Edward, Chris, Clay and Gabriel were super friendly, very attentive and made my ER experience as pleasant as possible!','2019-07-27 05:12:18.514000','2019-07-27 05:12:18.514000',5,'Dusty Monroe','https://lh6.googleusercontent.com/-PMtthhvnjSk/AAAAAAAAAAI/AAAAAAAAAAA/LrBKHqzR9lQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4233),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5bTUTX2sBJ8D66aeYUNANDRfHqAw4jhTrGZLhI1uJcakBeqZchL2j9FEsZt1UO5tLWDyNbjrSuftnG9CMR-o_torpdT4','Thank you, SignatureCare for the phenomenal service! Thank you to all the caring staff Dr. Smith, Maya, Kristina, Laura and Bram all made me feel much better!','2019-12-13 22:31:47.027000','2019-12-13 22:31:47.027000',5,'Amber Casimiro','https://lh5.googleusercontent.com/-XGH1bUL-PR0/AAAAAAAAAAI/AAAAAAAAAAA/-dTHtZlJOH0/c-rp-mo-br100/photo.jpg','12541597562633926366',349),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5bvxwIHUAxXZUhB1HWfGrBnBUEPNyto4lh2QaD7ggVz9cDb3EsT9_lN2FBQD7Ft1852lPLyXpYnxH7IKqCAmimBumAoM','I visited the Center for an asthma flare up and was admitted promptly. The facility was extremely clean and the staff very friendly, knowledgeable and professional! Thank you for taking such awesome care of me in a time of need!','2019-03-30 13:51:30.539000','2019-03-30 13:51:30.539000',5,'Taylor Craighead','https://lh3.googleusercontent.com/-HKxC6EuJO-w/AAAAAAAAAAI/AAAAAAAAAAA/VuulIEiACVc/c-rp-mo-br100/photo.jpg','13486358490203335051',1048),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5bWJqfxrNdLfc4bcNDi7KSl5TQNnlgFE4rP39bS4RIk2VtULfnLBNUjLcCh1xM5gzvmJU1pGpfHMl8qYXHZbSZO5lE9U','Amy was really helpful with my wife','2019-03-10 01:55:57.756000','2019-03-10 01:55:57.756000',5,'Donte\' McAfee','https://lh3.googleusercontent.com/-wYOOSVmZ17w/AAAAAAAAAAI/AAAAAAAAAAA/TajhjGQiwh4/c-rp-mo-br100/photo.jpg','3511292162159714121',7389),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5bXKxRHTtmjm2rsUW8ux_tR6oIVHR8uk2O-UPfzXwe-9JbadP3vBXjKOLW-fgdfcwOD5gJ7vsJfRUwgWNu1k1X7oRK2Y','Checking in was ok the nurse was awesome. The doctor on the other hand was a jerk and should not be allowed to practice!\n','2015-03-11 01:17:34.390000','2015-03-11 01:17:34.390000',1,'Diana Sisco','https://lh4.googleusercontent.com/-WomxMOH-tc4/AAAAAAAAAAI/AAAAAAAAAAA/U5ELGbqUvIg/c-rp-mo-br100/photo.jpg','8679688254631342173',8933),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5c25gOitDfJtEMfBxbeE3NjI3I8p3CFWSUzIBYY8Tz20WMd1hvQaz2a4luIDqgbYJXUskBK-tnsLP04pML8J_f30H270','The ENTIRE staff was completely professional, efficient, and caring. There are many medical professionals that can learn a lot from this team of experts. The wait time was minimal, and the facility was nice.','2016-06-06 21:53:18.647000','2016-06-06 21:53:18.647000',5,'Angelia Garner','https://lh3.googleusercontent.com/-mkmNWLEDHs4/AAAAAAAAAAI/AAAAAAAAAAA/1Fvh-nPAs2g/c-rp-mo-br100/photo.jpg','17394740196501090048',5242),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5C3Jbo8k0dkCtOBGkmviyW53gSTq4AsrqBlwRackcmKluMyQNNfMe-x6W_PipXkgF-dorNpOK0U_RUyDqo7E89bIFovY','Alvean and Patricia were very helpful with my visit and getting me the help i needed.','2020-01-17 18:04:18.771000','2020-01-17 18:04:18.771000',5,'Cesar Gomez','https://lh5.googleusercontent.com/-C66s0khcyCo/AAAAAAAAAAI/AAAAAAAAAAA/-svzWbG5awg/c-rp-mo-br100/photo.jpg','16389487648212004696',10051),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5c4jHP4NwOpcFWzdPSszQmumbaZ8jXM44pLMM__1KP3Re48YNhjaLN7lL5ceiLAQ-aiE4pDXUgqGBXVZI9UFg62UwyEA','Dr Zheng , Shawn , Joseph , Shaylene, Lonnie and Alyssa were awesome!','2020-02-07 21:02:48.929000','2020-02-07 21:02:48.929000',5,'Elaine Cox','https://lh6.googleusercontent.com/-ue04sQJcu8Y/AAAAAAAAAAI/AAAAAAAAAAA/9CD1rERQ6SU/c-rp-mo-br100/photo.jpg','8918455867446117794',14838),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5C4kX1kDKDjbuPaA2TMEQ7sFtt0Tx-mpkbgFmU4XT959A2EjI9UaXmClhfoIpC3KM94sDcd7UDa27qxQTjLu6j6OYgP0',NULL,'2019-02-04 00:40:34.055000','2019-02-04 00:40:34.055000',5,'Aureona Barrett','https://lh5.googleusercontent.com/-Pv-ulShGe8w/AAAAAAAAAAI/AAAAAAAAAAA/bP9_GvrQOKA/c-rp-mo-br100/photo.jpg','3511292162159714121',7413),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5cc7CNT_kH6ZyY3g_SFn8QmrZX9yUqCasrVHQAu9fPcz0QYvTbaxlM92hG5gkSzMFbfiG978tNOki9PI2-_7GjAfTz-U',NULL,'2018-01-17 12:42:26.774000','2018-01-17 12:42:26.774000',5,'Cindy Cantrelle','https://lh3.googleusercontent.com/-1uj9u21_fFI/AAAAAAAAAAI/AAAAAAAAAAA/DwAl24KAN8s/c-rp-mo-br100/photo.jpg','17394740196501090048',4898),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5cDbL_cbr0trts5eWYnSIntO2bRs14TCFQ5g6SSgjZ2ewSFRgpubbQmEwgZADwvqzOO9EOnE0cKMqzn2NtDi3BKjGRqs','1st time here. We had a warm welcome and Dr. Patel, Nurse Sarra, Tech Christian and Rad Tech Sherwin was amazing. The team had great customer service. My wait time was minimal. Everything was expanding to me at discharge. I will be referring my residents and family, friends!','2020-02-05 08:08:17.149000','2020-02-05 01:12:04.953000',5,'Tracey Thompson','https://lh5.googleusercontent.com/-f_iud2QqXlg/AAAAAAAAAAI/AAAAAAAAAAA/g6Qrag8aZ2I/c-rp-mo-br100/photo.jpg','12541597562633926366',10530),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5CDi50z3LIUzedEkRkC49evgttx2MMbQkNYxfqmn9HSVpxEQbrOh_3wOWJz8o3BW9EVr_EBzP2la5nrKKh7NWH8oXNVM','As I entered in pain, Jocelyn stood up to great me with a smile. She was patient, thorough, and helpful with getting me checked in. \n\nAlvean, my nurse, welcomed me into a personal room and listened with care. I really appreciated her sympathetic ear as she gathered necessary information for my care. She checked on me often and explained clearly what she was going to do before doing it. Though she had to give me a couple of shots that hurt like crazy, she apologized in advance, and followed up to ensure I was ok. What a beautiful soul.\n\nWhat can I say about Ezequiel. He was so tender in my care as he took my vitals and performed my CT scan. He treated me with dignity making sure I was covered well with my gown. He assisted me with getting off the table after the CT scan. He too gave an attentive and sympathetic ear as I shared my mother\'s recent cancer progression. I just can\'t thank him enough.\n\nIf there could only be a book that would serve as a master on patient care, it has to be modeled after Dr. Patel. She was just fantastic. Again another staff member of SignatureCare Cypress who inquired about my reason for coming in, but listened with much care. Yet she has a cheerful optimistic spirit that is infectious. She is literally a person who shows true fellow feeling. I am besides myself. She took care of my immediate need of pain relief and then addressed the underlying factors. She too followed up often, gave detail results from my test, and me a clear understanding of what happens and what to do after I leave their care. \n\nCan I please take this team home with me! You would be remiss if you don\'t choose SignatureCare Cypress for your urgent medical needs. As a whole they are through, attentive, and kind. You will leave feeling like you were just cared for by family because they make you family and because they care.\n\nThank you Dr Patel, Alvean, Ezequiel, and Jocelyn for all that you did to care for me today.','2019-10-24 21:51:25.455000','2019-10-24 21:51:25.455000',1,'Kimberly James','https://lh5.googleusercontent.com/-OP6tCvu3g44/AAAAAAAAAAI/AAAAAAAAAAA/fizv69cKpck/c-rp-mo-br100/photo.jpg','16389487648212004696',2776),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5cG3fPNHEEFtQ8VxcMvWvw1c6Gtt5abkqxe-c31oYVEPmZsvFiarZZBG9jX-bqLO06Ro05lmx-QGgl2-qI_mwk877LIg','The service here was incredibly fast and efficient. This was my first visit to an urgent care clinic and it beat my expectation. I\'ll give them 10 stars if I could. I definitely recommend.\n\nThe receptionist was very attentive and courteous and the nurses were very kind and patient with my toddler. Doctor Iheme was very friendly and explained my toddler\'s medical situation in a way that I understood clearly and I\'m glad to say with the medication and prescription, my toddler got much better by the next day.','2020-01-06 03:32:05.746000','2020-01-06 03:32:05.746000',5,'Damilola Balogun','https://lh5.googleusercontent.com/-_b6QYosU9ZU/AAAAAAAAAAI/AAAAAAAAAAA/9p0QFmPNDEo/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5308),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5DBGbsAfeAQZ92V3K9nKz501Kt-j2hPBiaMi4a5eMx1j54g6zPiAut4VSbn99Z4b-AJYdd4ADO_rSE9zS8SX0u-AyBQQ','Friendly staff and seen right away.','2019-05-23 21:08:29.685000','2019-05-23 21:08:29.685000',5,'Paul Roessler','https://lh3.googleusercontent.com/-rspXO9BBr_o/AAAAAAAAAAI/AAAAAAAAAAA/ByulD7HgCtk/c-rp-mo-br100/photo.jpg','16891069708558046635',4268),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5dd-gpoT-659_D1FYwDN8ROXCgyDf4LaWP9sUnSDVjOWOEUILxH49L1pCwyOAw2_nQZIlFhmlEnRFKRWKyWXEE4QjqKI','I came in and Kendra was very fast and quick to get my sister a wheel chair! Nurse Gabe was very professional and sweet!','2019-11-23 08:33:57.831000','2019-11-23 08:33:57.831000',5,'Hannah Alkowatli','https://lh6.googleusercontent.com/-n7zxrmkHJrY/AAAAAAAAAAI/AAAAAAAAAAA/KNqS_j4v6jA/c-rp-mo-br100/photo.jpg','16590124370714063921',3079),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5DeRRrfkSGUZDk0Z0DFUYEXc2BAtmpRVCD3tlWCSPXZAB50eZe0ggR7faTGXEkub_RW6dS-C-bNcK1QXeU5ODBimgmhU','The staff was wonderful Dr.Henderson,AlveanA,Grace K,Jocelyn A I walked in feeling awful but I feel so much better now!!!!','2019-10-26 14:34:13.097000','2019-10-26 14:34:13.097000',5,'Rayshell Anderson','https://lh4.googleusercontent.com/-jM9S8VKo8qg/AAAAAAAAAAI/AAAAAAAAAAA/06ascMtxi8M/c-rp-mo-br100/photo.jpg','16389487648212004696',2771),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5dFSl1wPWzjZWEmF5zfCDpuUjYNboRQvepDG7otyVodVNFyOGf1mD6r7Tr-hWMT7N0rYZqYaEb2Oeb5NzTq3pwo9MaMc','I recently sprained my ankle and the care from the staff was outstanding. They were polite, nice, and definitely knew what they were doing. They care to you and make sure you are comfortable above anything else. \n\nThank you to olivia, eve, hamzah, leslie, and Dr. Wren for the amazing care you gave me\n\nI definitely recommend 10/10 for anyone that needs good emergency care','2018-11-03 17:40:29.348000','2018-11-03 17:40:29.348000',5,'cris ageitos','https://lh6.googleusercontent.com/-p954lpEZL34/AAAAAAAAAAI/AAAAAAAAAAA/JyqGX06pQA0/c-rp-mo-br100/photo.jpg','3511292162159714121',7563),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5dhakgV1yN2H2sGm3f3W01BzSfrMJm2SdYV90k02Vz4TUQ-gRLce9ViTwndc6cb4BS4WbSciFWqaqM_GVEJM6pGH4as4','Cody was very informative and awesome thank you!','2020-07-29 21:44:21.872000','2020-07-29 21:44:21.872000',5,'Jiecelle Flores','https://lh5.googleusercontent.com/-aiOGYE6Tj-c/AAAAAAAAAAI/AAAAAAAAAAA/8s6BJ0WI1oc/c-rp-mo-br100/photo.jpg','2077061009497551125',22959),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5DiQF2QamaaBZNn3IGw7CSCDZwIuSgK7cVPc8DqfxEFsnzcx7hq4zdpW03lcE4oMc8WiJ9_y8M10Wdi7GnAWUeXYJU-g','The staff here is remarkable with the best bedside manor and sense of humor. The 2 girls at the front desk were as efficient as can be and handled the stress of the patients with care. I highly highly recommend!','2020-06-28 19:50:50.965000','2020-06-28 19:50:50.965000',5,'abbie krolczyk','https://lh5.googleusercontent.com/-Bw3RO8y2JHo/AAAAAAAAAAI/AAAAAAAAAAA/J-j0Gi9SkEs/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',21413),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5djh_W83ej-sr3WUYfxSlJWdjJNzLfNwXvqENJqNCnMgyCfHieNY231gfc5lycJc_NpSKW0m_1l78Zb6UaeyKbbA8DZo','The treatment that my son and I received was wonderful!!!! All the staff we encountered were absolutely friendly and caring which includes Jennifer Diggs at registration, nurse Erica, tech Valerie and nurse Jamie!!! We will definitely recommend this place to our friends, family and colleagues.','2019-01-03 22:56:28.500000','2019-01-03 22:56:28.500000',5,'Ashley Wilson','https://lh4.googleusercontent.com/-TyN-djMnlcw/AAAAAAAAAAI/AAAAAAAAAAA/6fnGKbd-Plc/c-rp-mo-br100/photo.jpg','8626688543755174284',8613),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5dkvt8cgaDgYhLArU_Mj9WceXV2MuFOj9jkvj89CDOc09yFfRA8jkmNf07-EcBizP0ymdZSB-_BGplX_-4eRTkP5BFQc','Bretnie, Lindsey, and Tawnya were so compassionate and made my appointment go so smoothly! They took care of me in a timely manner and educated me as well on getting me back to normal. Thank you ladies for the amazing service!','2020-07-27 19:33:34.901000','2020-07-27 19:33:34.901000',5,'Phylea King','https://lh3.googleusercontent.com/a-/AOh14Gg0k3C2zWxV6RTzO7i82BH_K7riIX7LHJo1CnAb=c0x00000000-cc-rp','16590124370714063921',22013),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5DLqQVad4SfvqyPqNOrguuZ4-jrm8mHERYPFyHDgZ04IbDzLT4lA3kXgLrQdMYNeRONXV9XxTFqkzw87p1-IqnCcTWTw','Everybody is friendly and welcoming. If you need anything,they’ll do everything they can to help. I love it here. Nicole Gilchrist, Dustin Holder, Graciela Rios and Grinblatas are amazing','2019-12-08 05:30:08.517000','2019-12-08 05:30:08.517000',5,'Cydni Bailey','https://lh6.googleusercontent.com/-LeF3PvKmyPQ/AAAAAAAAAAI/AAAAAAAAAAA/BT8xcUEunAQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1183),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5DmHXfzerSXpvisq8_aGFDvY5pmPAqQughc1K7ckvUZAOnuI3AJqV4SDQ5Ep-VM-MlN_DELQo6Fbjcxp3dmqYQC9VIXk','My experience was very great i was seen right away\n Thank you Dr.Patel, nurse Aldean, Kelly L, Erika and Jocelyn A these ladies took great care of my..','2019-08-07 14:39:49.076000','2019-08-07 14:39:49.076000',5,'Carla Young','https://lh4.googleusercontent.com/-zctdo-tfsmI/AAAAAAAAAAI/AAAAAAAAAAA/3nBI0rXg_nw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5E5mkOf_Z16UCXSYd99nvMhaMd4sfoQeved_chPkgvPqandxdPe-NMAj1bXKf3T16aDhld14hRB17FQO-kZDS52_qDW4','Fast and friendly and very clean. So much amazing love and bedside manner. I had no anxiety and felt very taken care of!','2019-01-01 21:37:52.362000','2019-01-01 21:37:52.362000',5,'Break a sweat with RLC','https://lh6.googleusercontent.com/-pJlKLIkhrMo/AAAAAAAAAAI/AAAAAAAAAAA/fRjoWxy7UzU/c-rp-mo-br100/photo.jpg','16891069708558046635',4382),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5EJPPYMkHeE9a20vwHK8_Pa3GeTGkSJXz_GdqCVAwDCNcIWm-LQ98g4Ud73sllZ_cYxszIfSTJm9J9JdT7CYwYMsH8Mw','The staff was very friendly! Melissa did an amazing job with explaining my benefits. Robert H. was very helpful and funny. Dr. Iheme is amazing! Thank you guys!','2019-11-16 02:58:43.756000','2019-11-16 02:58:43.756000',5,'Jasmine Haverly','https://lh6.googleusercontent.com/-AbJNGzeCVB8/AAAAAAAAAAI/AAAAAAAAAAA/Jp2LzMZmQ2s/c-rp-mo-br100/photo.jpg','16389487648212004696',2686),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5emPJaFBZG6DfOH9t7mDUOEkk3w30lFIrb1zHtdjsPs9bpxFqVlibwp2n0H3CfHNV72xNE2Difx9-DyrcoBVhBP5KR_Q','Doctor Patel, nurse Susan and reg Tanishia were great to me!','2019-10-04 10:36:10.972000','2019-10-04 10:36:10.972000',5,'Danyelle Muse','https://lh5.googleusercontent.com/-CwRjsZEApBg/AAAAAAAAAAI/AAAAAAAAAAA/GfV0CnG8crU/c-rp-mo-br100/photo.jpg','17898197009688164559',5517),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5EPirWnmXmubz0eUPPrbhx53iN3S419OUckGto9SD3XhWJGkNm1vsoQf3P6U2jQZ3Iy6-_t_UDGpw0A8T_9p7ls2nUNo','The staff was kind , smart, very explanatory about possibilities and When all my results returned they were careful and gentle with me. Helped answer all my questions and very hospitable. Thank you so much for getting me on my rode to getting well.','2019-04-24 23:30:21.460000','2019-04-24 23:30:21.460000',5,'Dominique Hernandez','https://lh3.googleusercontent.com/-SotemME5VJE/AAAAAAAAAAI/AAAAAAAAAAA/d7m_jEoJOAM/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5758),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5EzdMkiXSHy5HZWTrpS2G07QMVfwMQTIsYvE5x_dwBisIe3g-ealFqXRVSZ6XfESmogxn91tN_GZIB9bd72JpT1xFZHM','Loved everybody service from check in to checkout. Dr.Do was great at explaining everything, the er tech Lisa took me back within minutes of arriving. The front desk person Cindy made check in and out easy. The nurse Robert did a great job in finding my vein on the first try no pain.','2019-09-25 02:16:27.182000','2019-09-25 02:16:27.182000',5,'ana figueroa','https://lh3.googleusercontent.com/-FRX-1gBRVWg/AAAAAAAAAAI/AAAAAAAAAAA/sGPrgHt4BPQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4597),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5eZHrkv1xjFhuVISS9Pu000Y8j1qV55ayKtjGiGT-_NpqE-fS2uNAojFSqynWGSNbkhT6UOBSVvTtaa-dSDME3NgF6Do','The experience I had here was great everyone was really nice. I came with pain in my knee they took me back immediately. They were able to help me calm my pain. I would recommend this place.','2019-02-18 20:28:51.859000','2019-02-18 20:28:51.859000',5,'Yolanda Saucedo','https://lh4.googleusercontent.com/-y5U4B-1jrdA/AAAAAAAAAAI/AAAAAAAAAAA/tQ3RN0Pe_SA/c-rp-mo-br100/photo.jpg','17898197009688164559',5845),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5EZT4aAXcuo3kqc28856GdBEk_GGXYfkACXNk5IdZJdBiTSzWC-WMARD0zdiB6Oexw6rnvLrzMWuOZJEwjavNM2fqgqU',NULL,'2019-11-28 18:41:11.074000','2019-11-28 18:41:11.074000',5,'Mareo Hendrickson','https://lh6.googleusercontent.com/-9aNjIJShGUc/AAAAAAAAAAI/AAAAAAAAAAA/d_Gwlj3aBqQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8705),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5F1ZQEjap7hCeW0-n5-kobd0qUoooxFD8P5bd0p_ikWf1UL8SvpMo-wHD1W_-EkQt3tHKMlf4DTQZzwgQlrpFoHLDIuk','I am visiting Houston for work and I was very nervous to see someone other than my doctor back in Atlanta. Nurse Laura took great care of me and she was very friendly. She checked on me various times throughout my office visit. That doctor and ultrasound tech was amazing and very honest. Thank you guys so much.','2018-08-09 22:31:34.573000','2018-08-09 22:31:34.573000',5,'Christal Anderson','https://lh6.googleusercontent.com/-nApPe4fKpxU/AAAAAAAAAAI/AAAAAAAAAAA/9-Dqnu9Yfvs/c-rp-mo-br100/photo.jpg','3511292162159714121',7644),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5F5WGAP0kNC6xIXJhruWCaN7J6988FZSex8Y8t9z7rl1cavNEotVxy6KXr1C3_63Z8dzrxlAc5I9WQj9cMDcCmDoxcFY','I came here with my 2 year old who woke up screaming with leg pain. I arrived at the Westchase location soon after. Malissa at the front desk was extremely helpful and expedited the check in process. We were brought to the back immediately and met Krystina the nurse and Quyen from radiology who helped keep my baby calm during X-rays. Dr. Wang was very professional and reassuring. We were in and out in less than 30 minutes. Thank you guys for taking such great care of us and providing such excellent, professional, and prompt care. I definitely recommend SignatureCare and we\'ll be back here if we ever have another emergency.','2018-08-08 18:55:02.860000','2018-08-08 18:55:02.860000',5,'Sonia Tsals','https://lh3.googleusercontent.com/-tEt4hIgvOUk/AAAAAAAAAAI/AAAAAAAAAAA/tXEtdlA2eac/c-rp-mo-br100/photo.jpg','12541597562633926366',622),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5fCXg5KCDIWyiWx85130rRrBTvjleCgw2UZzKPdeIP1EHpMhPufrQVUC1jjE64znv_O7sRnpUpz2TNjDyIbJ42zx6zAk','They all ways take great care of us','2019-01-30 00:15:13.457000','2019-01-30 00:15:13.457000',5,'kevin cornelious','https://lh5.googleusercontent.com/-tRMeeFjQksY/AAAAAAAAAAI/AAAAAAAAAAA/5MH6nHWHT-M/c-rp-mo-br100/photo.jpg','13486358490203335051',1081),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Fdga8WxLBKz7c7CCoXvdUkbKloeieDh91B0sWlxXWz23fMfGbjRd4sxxHbZ_pUMDe3qEY9mO2BxQc6q2_KWk3wybNjU','Very welcoming staff as you come in, Amy checked us in. Dr. Grinblatas and nurse Churiah helped answer all our questions and concerns. Very professional staff.','2019-01-06 05:38:48.335000','2019-01-06 05:38:48.335000',5,'Sonia Bri','https://lh4.googleusercontent.com/-KpsrsV5kLqw/AAAAAAAAAAI/AAAAAAAAAAA/mIfabwh5tv4/c-rp-mo-br100/photo.jpg','3511292162159714121',7516),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Feosy6eMx0sx2QP7fRt6S06iFgSvzaf0NnACia6ED9Gvil-mlOskPUldRoi2OMQIVoKwF4xWmlrSNlqOK4q4iJe2OEI','SignatureCare is amazing! They get you in super fast and you are extremely well taken care of! The staff is super nice as well. I had a tech (Natalie), an RN (Jacob), and the doctor (Dr. Pham) constantly checking up on me and asking me if I need anything. Overall best place to go in Cstat!','2019-01-26 21:39:36.753000','2019-01-26 21:39:36.753000',5,'Kara Smith','https://lh3.googleusercontent.com/-pVwWdQwzTHI/AAAAAAAAAAI/AAAAAAAAAAA/PvNUn6knNtU/c-rp-mo-br100/photo.jpg','16590124370714063921',3572),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5FNRbXpp3Cqt1io3j88uJZdXoJUEf6YGVV0PRbSl067-S1GWDISJrd9P7fE0fcYEIif8SFQ3n-5_Tc-hCCKpsgEuhdJ8','Short wait time and very friendly and caring staff.','2019-05-21 15:03:39.157000','2019-05-21 15:03:39.157000',5,'Ana B','https://lh6.googleusercontent.com/-lij2vvbi1_Y/AAAAAAAAAAI/AAAAAAAAAAA/HxTZ3RmqedY/c-rp-mo-br100/photo.jpg','13486358490203335051',1003),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5FNRcMKNDLFXHGIYqmicFZo6e5a3GsFHGC400bRUhucrvxGjFWsZoCL-C8xYSDed8KrtLZKpK50nAL9SDi8UjRbxMHdw','Straight forward pricing, sweet, nice staff that can make you laugh even when you feel like poo. Much better than any hospital I’ve been too and they treat you like they care and that’s what matters! Fast diagnosis and very helpful through the entire process. They always provide a warm blanket which is nice during winter.','2018-12-02 10:01:50.506000','2018-12-02 10:01:50.506000',5,'Victoria Aranda','https://lh5.googleusercontent.com/-dcrEmnA7rXA/AAAAAAAAAAI/AAAAAAAAAAA/85Aodxx-pcU/c-rp-mo-br100/photo.jpg','16891069708558046635',4396),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5fqdW49vrWXaC2LOiSCPQWxAecrhU4ItMudwJSNlhRFZcI-Vbqw5_4VNRtxMis2zmdEwBuqDkxjreTEjLTkF7zFt111M','Sarra, dr faig, anna & Christian are all very helpful with my son who got a cut on his finger..thank you guys! great job!','2020-01-17 00:55:40.305000','2020-01-17 00:55:40.305000',5,'Claudia Robinson','https://lh5.googleusercontent.com/-fidoCREA7eE/AAAAAAAAAAI/AAAAAAAAAAA/Pbv4tHLh744/c-rp-mo-br100/photo.jpg','12541597562633926366',10028),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5fs_4nbew8cYSxZKtSp6QT3yqcoVevcstqdCp8041tN5RX2e5VJdoVG-2qMh1cbJvAiMMzc0Y7GT2lfSwRwr_C74UPDE','Every one who assited me was very Kind and Awesome! They really helped me this morning and gave me some good prescriptions and discounts for the presciptions. One of my best experiences here at Er Care 24!!! Glad I chose this place! Much Thanks to Brad, Kim, Jr and Doctor Vakey as well as everyone else who assisted me!','2019-02-21 17:07:04.473000','2019-02-21 17:07:04.473000',5,'Keith Ashrez','https://lh3.googleusercontent.com/-cW1_i4waKpg/AAAAAAAAAAI/AAAAAAAAAAA/p0dxKqvwKdg/c-rp-mo-br100/photo.jpg','16590124370714063921',3532),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5G3XnXz6QOsrqE0EP3vhZnUYiX0f4D7bPdgslMZ6MjYsw-GKOGCi2Nmg7YB7twzeukBntCu2zOlxfUAWDaS_xZDoIWn8',NULL,'2018-11-18 02:20:37.009000','2018-11-18 02:20:37.009000',5,'Angel Mcfarland','https://lh6.googleusercontent.com/-w4fiR9Mlmt8/AAAAAAAAAAI/AAAAAAAAAAA/gtzd3WPPqI0/c-rp-mo-br100/photo.jpg','3272657195432704501',7102),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5GbTP4KYOj9cpQMcl57gzjY_rX1NoV5ejPt3Ga-VrJwIav9--CO0tIiHawTF8qZstry2VrV3dpNbRBzZ1RpPVAwTV10g','I walked in and was greeted upon arrival. Thanks to Dr.Pham, Nurse Alvean A, Radiology Trucia B, Registation Elida Jasmine and ER Tech Aurora.','2019-11-26 15:03:50.271000','2019-11-26 15:03:50.271000',5,'Lanell Saulter','https://lh4.googleusercontent.com/-tRxzVMa1wl8/AAAAAAAAAAI/AAAAAAAAAAA/sMsP0XjPhP0/c-rp-mo-br100/photo.jpg','16389487648212004696',2627),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5gtDOCRMywZF5Vio354uair9xAOke1OCR5FZQ-jnre--Up5wSIMAJNCvvcItnWY8e62etT_6i34FC6P04DhBtrLINHJo','Amanda s nurse was great friendly staff awesome took good care of my son','2020-02-07 17:37:29.398000','2020-02-07 17:37:29.398000',5,'Rose Cereceres','https://lh6.googleusercontent.com/-xU3A2-If3bw/AAAAAAAAAAI/AAAAAAAAAAA/jk76GyYnm4g/c-rp-mo-br100/photo.jpg','13486358490203335051',13434),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5GtG6gShfxdnQndEtfgViFxOfUGOp0VuXu-u0nZPxKxQIHoF73SvO-J2PzXh-3Vhyra52kMixsfkGF9za0FSP6XOQBmI','Mercy was very friendly when we walked in! Staff is awesome. Very great experience here!! No wait either. Quick in and out. ','2017-04-20 20:07:25.172000','2017-04-20 20:07:25.172000',5,'Mani Cheema','https://lh6.googleusercontent.com/-0echkgBCk1U/AAAAAAAAAAI/AAAAAAAAAAA/HFHO12Occ3Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7835),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5GwPor6zW2y4X2KokQf7jsdix0q8s4odH9Z836lTCeVL5rGtFfpXGywXmzLkkiGiWnuq4lgJ2ZCngfvpeGUo8VnbNTjE','The service was awesome!! I took my son there . Warm welcome from Keaira the front desk.She offered me to go to the waiting room where there’s coffee and snacks.\nThen after my son was done with the Dr.The Dr who treated him is Dr O’Malley. He came to the waiting room and introduced himself to me. \nHe explained to me my son’s condition and what he should do in order to heal.\nI was really amazed about the staff and their hospitality! I recommend this clinic highly!!\n5 stars ⭐️ \nThank you so much! \nMerry Christmas and Happy Bew Year!\nNashieda','2019-12-21 16:22:58.702000','2019-12-21 16:22:58.702000',5,'Nashieda Hadi','https://lh3.googleusercontent.com/-jvcBaUJEosI/AAAAAAAAAAI/AAAAAAAAAAA/gpnl3ucba_g/c-rp-mo-br100/photo.jpg','3511292162159714121',14475),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5H4-mNZB-ywW-bpSUAyf1zL8c0n4gblbB-_2ZHezJ8EBu73gXBiXSQboAfDqP-NBfDOBHI80FJnmP6BwhYFNVtGbfepE','1340$ for CT scan and morphine and nausea meds. Waited 3 hrs for CT scan results :/.\nHad to ask for more morphine. Blankets were nice. Felt safe. Nausea meds that were prescribed were 7$ a pill. Spent 4 hrs there. They don’t accept VA medical care.','2019-10-14 21:32:02.040000','2019-10-14 21:32:02.040000',3,'Stuart Day','https://lh3.googleusercontent.com/-dXSJLDfAhRE/AAAAAAAAAAI/AAAAAAAAAAA/38p95MVaD88/c-rp-mo-br100/photo.jpg','16590124370714063921',3141),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5haHqruXfbpDrE-_OHXZUSuJ4BzzgkJfHiiTe1h46WSLuSIQxW-QGJs4kqqlxkH-1-NYgGxFxhYjTGs2nogvJN8-icc8','Very welcoming staff that was friendly and helpful. My family and I was offered drinks and snacks as soon as we walked in, and I was sent back almost immediately. When I got in my room, I was offered a warm blanked and was attended to by an amazingly sweet and timely nurse. I did, however, wait about 45 minutes for a doctor to give me a simple diagnosis that I had already confirmed. (I was peeing blood and have had a UTI before, so it was no shock.) She came in and asked me everything the nurse already had, so I felt somewhat annoyed, but I know things get lost in translation. She then said I was right, I had a UTI and then said she\'d be back in a few minutes and she was running to grab my RX. 25 minutes later I peek my head out of the door and she was sitting around with some of the other staff that was working. I would have felt different if she was running around from room to room or doing some task on the computer, but I\'m paying a $250 co-pay because I feel my condition was somewhat severe. I asked if I was allowed to leave, to which they said \"oh yes, we forgot your RX in a different room.\" They grabbed it so quickly and then brought to the front desk, where I was offered some drinks and snacks for the road again! Overall it was great service. Yes, I wish the doctor could have been a little quicker and respectful of my time, but I understand she has a busy life. Maybe she needed a break and she had been on her feet all day, I don\'t know, but I do know that she will not discourage me from coming back. It was top quality care and the people were actually attentive and caring for me. No place like it!','2017-06-29 12:20:20.139000','2017-06-29 12:20:20.139000',5,'Madison Landis','https://lh3.googleusercontent.com/-ygNDzFzwyrY/AAAAAAAAAAI/AAAAAAAAAAA/D-nlzQEB47M/c-rp-mo-br100/photo.jpg','14904078213800803294',2342),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5HmH_o3j0ep7pIEpHxNziW1hyBq-V-igRDP8JWbXHnGDCo0XjojtMqx5TCi5nFqVvL3PGZNlZXHzdjeW0J7t0mxC-vDU','Good service! Thanks to Dr. Harjai, nurse Ekaterine, radiologist Kat, and Patricia (registration service).','2019-11-07 02:13:29.903000','2019-11-07 02:13:29.903000',4,'Leslie Waire','https://lh4.googleusercontent.com/-BT7EC4zz1Xk/AAAAAAAAAAI/AAAAAAAAAAA/028W-nxKM6I/c-rp-mo-br100/photo.jpg','14904078213800803294',13665),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5HNA9mmpFfO7i_NuK0W8iBgHf8VlGIfOJyUdNMlUez7HoGG0KLOMHDK08d3lceMP926jZ5kCbUnC8qogbGtvlbBCWmHU','I love this place! I was having some chest pain and then my leg went numb. I was on my way to take care of somethings when it happened I had my 2 children with me so I made a quick decision to go have it checked out as soon as I walked in smiling faces greeted me Sat down for 2 mins got called back standard procedures were done then Dr came in they drew blood and xrayed during all this my kiddos were getting restless and a sweet nurse came in and took the baby and my 9 yr for a quick snack when they returned they were both smiling with snacks in hand. Thanks for making my heart attack scare a pleasurable one. ','2017-08-13 05:04:52.465000','2017-08-13 05:04:52.465000',5,'Christie Keithley','https://lh5.googleusercontent.com/-pBIrt9DhPQ4/AAAAAAAAAAI/AAAAAAAAAAA/3cgDhhilIQQ/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4998),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Hopr_LeWx6C-LKNyaHKc9jTY6RsL8gobV73mYq84hnLB8TM3KBIBxGl07SNTGkhuDJiPN32GZvyjh5BK_kEhCgWLYto','I was referred by a co-worker and had a pleasant experience. Dr. Grinblatas and the nurse who attended me were very kind, professional, and informative. I was attended right away, no wait. Will definitely return if I ever need urgent care.','2019-11-12 12:31:20.224000','2019-11-12 12:31:20.224000',5,'Alma McClure','https://lh4.googleusercontent.com/-mcpxXPUAQQE/AAAAAAAAAAI/AAAAAAAAAAA/31XNmgeU_wo/c-rp-mo-br100/photo.jpg','14567670160750071148',1192),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5hycjcMXJhpxPxET9NPkiEXO4pT7QXOsTCXNfnevc7kUs9_nUMM6f7Zv0h9DNmI4ZxWtDxlDw1M10Vb9O8rIjMEM_tOg','The staff was very helpful, attentive, and delivered great care! Had a great experience and would definitely recommend!','2018-03-20 22:14:08.435000','2018-03-20 22:14:08.435000',5,'Alex Powers','https://lh5.googleusercontent.com/-54mWiPFWg8Q/AAAAAAAAAAI/AAAAAAAAAAA/_zJHzlQFsvo/c-rp-mo-br100/photo.jpg','16590124370714063921',3849),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5i0__rolD_wHDbkleuCy0mdTS9nvgQ2bEmWT1WxCvi0n_nFJ3J7HPkiXzLr7K6o864N3H6hLcgnnUmjxUEjP3dcnyvVw','We received great care and excellent service! Dr. Yost, Nurse Lucas and R/T tech Sherri gave my daughter quality treatment and care. I would highly recommend Signature Care ER to others.','2019-07-07 16:03:48.643000','2019-07-07 16:03:48.643000',5,'Audrey RNY4L','https://lh6.googleusercontent.com/-qU-jUrrRtdM/AAAAAAAAAAI/AAAAAAAAAAA/JOoWRUrFMew/c-rp-mo-br100/photo.jpg','3272657195432704501',6942),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5idpB6Ltfema7WtVj9616mbxmEZk6EqJEXa5hgUft6MojPvsvZTLobsEBBPiyYXzlmakKLKfRxLWHkuLQP4fkaJYW57o','I have to say I came in here with a jammed finger and it was in a lot of pain but within a matter of about 45 minutes I am walking out of here with no pain at all. \nEveryone was nice friendly helpful very insightful about what was going on and what they needed to do to relieve the had pain. I doubts at first but clearly they were not needed.','2020-08-10 12:46:16.678000','2020-08-10 12:46:16.678000',5,'Josh Judge','https://lh3.googleusercontent.com/a-/AOh14Gg928PpwRlUUCpqDowWo5j-XKd6CLVJx-cChhY5xRE=c0x00000000-cc-rp-ba4','14748677429039074158',22500),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5iLByahLxmDL1n1Md8R8fNwKgwoGaG28TRfDhSwZ-rHFRMPVWhZl17JS5mk2Q3tV1s57snw7fvadWrnw9PABhTJNfMQk','(Translated by Google) Dr. Pham Md\nNurse Rachel B.\ntech radio Laura H.\nER Tech Daniel B.\nRegistration Tanishia W.\nLet\'s go for a viral problem and the attention of the staff was excellent, very friendly treatment\n\n(Original)\nDr. Pham. Md\nNurse. Rachel B. \nradio tech. Laura H. \nER Tech Daniel B. \nRegistration. Tanishia W. \nYegamos por un problema viral y la atencion del personal fue excelente trato muy amables','2019-11-06 02:49:47.206000','2019-11-06 02:49:47.206000',5,'jaki 1981','https://lh5.googleusercontent.com/-QnAr07xHwQ0/AAAAAAAAAAI/AAAAAAAAAAA/ZDDpQ1nbZ9g/c-rp-mo-br100/photo.jpg','17898197009688164559',22712),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5imAODj92VMCKUzF3Y9A0qB0w5Rkx3C2xTohpiPJzzgHvHcjvKTerkgbBZ8SLOWIBkHXfbVBGkV4mlC9KNEoKck9rCf4',NULL,'2019-07-03 01:07:58.472000','2019-07-03 01:07:58.472000',5,'Kheeli','https://lh6.googleusercontent.com/-vQcyBSVPs8c/AAAAAAAAAAI/AAAAAAAAAAA/YciYbnlQAAA/c-rp-mo-br100/photo.jpg','16590124370714063921',3323),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5iOpxO2OwuEmVSBGbmx8mce_Drs6mHL-fGVt8GyRN9k6QFHaRj1v7gBZndxi6E_SNGaIsVfw0HSD-lFV5nQ9Xpl3T4J8','We felt welcomed from the time we stepped in the door! all of the staff was very nice and friendly! Jose is hands down the greatest RN we have ever been seen by! If you need fast ER care you are missing out if you don\'t come see them!','2019-06-10 05:51:47.026000','2019-06-10 05:51:47.026000',5,'DesJanee Adame','https://lh3.googleusercontent.com/-3Gbxpre2Xvk/AAAAAAAAAAI/AAAAAAAAAAA/kJQnjCnNvZQ/c-rp-mo-br100/photo.jpg','13486358490203335051',978),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5IZeU1N01yvgCVxs4U29tX9CBFDPvWBPpxbZSrva0J4w9YoOEN6eCCd1Km06r0rm7c1FVKa9fJSS5VqFVdZkE0kBoUgQ','My experience was wonderful and the process was comfortable','2018-10-05 00:36:03.156000','2018-10-05 00:36:03.156000',5,'Angelica Moffett','https://lh5.googleusercontent.com/-o05UJoYtJB8/AAAAAAAAAAI/AAAAAAAAAAA/-LZekO5QkSM/c-rp-mo-br100/photo.jpg','14567670160750071148',1479),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5iZgT_Cqe5mLJ4IKYKoaXxkfS4WAzReivleQHzFlD-rKpoOgrJZ4EebLnMHGUxq_9vqa0qRsba14E0q6izVP7UoH7GPw','Absolutely amazing!! Friendly, helpful and fixed me up quickly. Dr. Sylvester, Leslie, Eve, Laura and Olivia, thank you so much for everything!!! I will be back, but hopefully not too soon!! Incredible staff!!!','2018-08-08 12:37:43.271000','2018-08-08 12:37:43.271000',5,'Callie Stewart','https://lh5.googleusercontent.com/-9WoQDm2cOi4/AAAAAAAAAAI/AAAAAAAAAAA/gEqdbFHdzM0/c-rp-mo-br100/photo.jpg','3511292162159714121',7654),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5J0I6zUNbKDcVzG88_hh6_Pno5dWuvSWxJs-JAWuNr8FTv54MUUOZj5-BZrpKyA4l5vIsS7U1Szy1jwstFILn2kqHBK8','Great friendly workers!','2017-01-13 02:56:14.923000','2017-01-13 02:56:14.923000',5,'Paris Rutta','https://lh3.googleusercontent.com/-ETQQRNgBMds/AAAAAAAAAAI/AAAAAAAAAAA/X_VTcWSMMxk/c-rp-mo-br100/photo.jpg','17394740196501090048',5132),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5j42aWEo88jrJg-hFv0lZVr3s5Mr02rbqjSRk1fDjshUfqWp24gRJBHsfd1DZgbZr0QNGdz65LCj9xCCBma5ziSQUO1I','Great','2020-07-30 04:29:39.763000','2020-07-30 04:29:39.763000',5,'A Tran','https://lh5.googleusercontent.com/-XifMgUjgzyQ/AAAAAAAAAAI/AAAAAAAAAAA/4UbAy_tXtYc/c-rp-mo-br100/photo.jpg','2077061009497551125',22965),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5J74RiTenPspRGuZnNw12e_v7gbg7FC6LKxQxwpUbjtuPEWOUqV4G2khL-OKil7nSIfGwugXanmX_iIYkpLQTzBqG0_8',NULL,'2017-11-26 15:37:58.749000','2017-11-26 15:37:58.749000',5,'Life With Kiki','https://lh6.googleusercontent.com/-Ui8a6W3X1aY/AAAAAAAAAAI/AAAAAAAAAAA/phknEc8J1aE/c-rp-mo-br100/photo.jpg','14904078213800803294',2307),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5j9PkrNp3iUrsqKyQD98nBKGvl7NN3zWD-uPH6eCn-zI4evGIt0ELnnJSfMcQHFy1H6pAZumWo1ulv9k4feYyrmDdexw','I had a wonderful experience the staff was very professional and friendly. Amy Agnes RN was superior! Dr. Faig was very good','2019-05-05 02:44:32.265000','2019-05-05 02:44:32.265000',5,'Jeramie McClelan Sr.','https://lh3.googleusercontent.com/-oR-4KTwy6nI/AAAAAAAAAAI/AAAAAAAAAAA/3N2CdOSwwzU/c-rp-mo-br100/photo.jpg','3511292162159714121',7345),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5jamLHfuQ-vqj2z8jhtinriuXBv5QXniWJuviU6QbxYJ81Gb_Y9pkqrHjmDQOrUa02LCdN2aLIrBCVBufUpSBFSD-i80','I am blown away by how much I enjoyed the experience at SignatureCare! The staff was excellent, they were fast and the price point was right on. I highly recommend using their services if in need. In person, upfront pricing!','2019-02-27 18:42:14.280000','2019-02-27 18:42:14.280000',5,'Jason S','https://lh3.googleusercontent.com/-ebHSmyMA_hs/AAAAAAAAAAI/AAAAAAAAAAA/vNKjfjg8OAo/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7396),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Jfdan5JYDf6Az3i6p93fkCgAyC-8KPWMrDloDvjiisrKBgzIGIbx0qhtJyQctB4Vfl8Pk56j9KzIwI81BYtjItqUyQQ','I wasn’t an actual patient, I came in with a friend of mines who wasn’t feeling good. Overall the staff was great and friendly they also took care of my friend and made sure she was okay before releasing her. Thank you!!','2019-07-01 18:28:12.414000','2019-07-01 18:28:12.414000',5,'Ashanta Jackson','https://lh4.googleusercontent.com/-TqBpoy1lGIo/AAAAAAAAAAI/AAAAAAAAAAA/NM43UaQKHwc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5jk4Cdb5jHgcHDBbQZJlc8ii8snzwf7nB8aeELykIjZZurmVZ0s33LVQZkJBOONAPisjg6ZOVJczpREm5UIZSBd7fi0s','One of the best experiences I have had at this type of facility, no wait, prompt , informative ,helpful and all around nice experience. Yami greeted me on arrival, and Dr Golla was patient and to the point. In and out fast.In general the people were nice and eager to help.','2017-05-21 21:15:58.834000','2017-05-21 21:15:58.834000',5,'Edward Marsh','https://lh3.googleusercontent.com/-cFT88Mu99UU/AAAAAAAAAAI/AAAAAAAAAAA/uoyyq285FNE/c-rp-mo-br100/photo.jpg','17394740196501090048',5047),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5JpNboKkfGLHX7boV7v3HBxYp0Nvell1kUVhGdmd4veNL4d_7VepZZFjNhXhJlmE7SoG2_mRRSRLWrRXfQzdX2xE_ZnE','This place is great! They\'re 24 hours so you can always reach them and they ate so quick, so friendly and so thorough; it is a pleasant surprise since a lot of people in the medical field are too busy to provide friendly service and bedside manner. I am amazed and although I am hopefully not planning on returning since it was an emergency that brought me in but if I ever have to go for an emergency I will be back here for sure. Thanks everyone for making my bad experience a lot less horrible.','2019-11-22 02:07:36.225000','2019-11-22 02:07:36.225000',5,'Cindy Ngo','https://lh3.googleusercontent.com/-Zkp8-i_rhcs/AAAAAAAAAAI/AAAAAAAAAAA/k_oSt8Jj3oU/c-rp-mo-br100/photo.jpg','8679688254631342173',8714),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5JSuAzUYV2CAdY1d2tJu3pl9RvT3ruAeY1Y4zcOzjZjZUqFMrztsYpj0MgGZKKaF2p6fSGJeN7T-tHjY_-3UVuP7W4Mw','I absolutely love this ER! The team is amazing. Maya is very sweet and caring when she checks you in, The tech John is the epitome of awesomeness!! He’s great at IVs! My nurse was Krissy! She is the absolute best! She listens and genuinely cares, she takes good care of her patients. The doctor I had was Dr. Ortiz, he is a fantastic doctor! Even with as busy as it was he made sure he still took care of everyone and did it effortlessly. Thank you signature care for taking great care of me ❤️','2020-01-17 20:42:47.764000','2020-01-17 20:42:47.764000',5,'Patrice Palmore','https://lh5.googleusercontent.com/-WTVMBMcQprE/AAAAAAAAAAI/AAAAAAAAAAA/pu4-tq8XTqY/c-rp-mo-br100/photo.jpg','12541597562633926366',10022),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5jT1pm6ecVdj_5Fw1nyUoQS-fAP7FISqhmcOyY0Lhip2jdzQx4KY0UkVtJjInbkZCSj4lesQUdoLbBExXvbZQyA_3QYg','Staff on site was very helpful and Ashley greeted me with a smile and made me feel welcome. I will be back!','2019-01-13 14:34:22.806000','2019-01-13 14:34:22.806000',5,'David Skripol','https://lh5.googleusercontent.com/-QKCknF4OGqk/AAAAAAAAAAI/AAAAAAAAAAA/aVBVmt_C-5s/c-rp-mo-br100/photo.jpg','17898197009688164559',5888),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5jtJyVTEpTL_uGIaKlckBJfDrv3XqVyg5vU26BWuUZu1syJCYXQmnaz9qDOVXGgtUTHcvmtZrNunDIS60AxMmaIhalOA','Great experience they calmed me down and took care of me.','2019-09-29 19:47:19.592000','2019-09-29 19:47:19.592000',5,'Guy Johnson','https://lh6.googleusercontent.com/-HcLrpOPMgnQ/AAAAAAAAAAI/AAAAAAAAAAA/tTwZOe4cZOc/c-rp-mo-br100/photo.jpg','16590124370714063921',3164),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5jWAPO35c1o0OaW-nmcDn_drF9ZboT7F2On0jsHevn12-T0njFVGHXJRGecEIKhEHM76Ct2cEsYGPkg83cGNmewIvkIg',NULL,'2018-11-06 05:23:54.360000','2018-11-06 05:23:54.360000',5,'Branden Keene','https://lh4.googleusercontent.com/-JbcJ_9bkpxs/AAAAAAAAAAI/AAAAAAAAAAA/inKXIS60JYw/c-rp-mo-br100/photo.jpg','16590124370714063921',3664),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5jxAnB5MNDOOqPtsvSTuAsin3fj3FThC2imN2SOLVWe32-MGS4BXVKqpcWdnOXFmiUSphl4xtSJyoEOVC1n-tVF02vnI','The staff here Dr.Iheme, Amy, Jani, Tricia, Sean treated my husband and I like family took good care of him and are very nice.','2019-07-19 22:19:36.365000','2019-07-19 22:19:36.365000',5,'Tierra Smith','https://lh4.googleusercontent.com/-vq3AROyiFzM/AAAAAAAAAAI/AAAAAAAAAAA/Vt_kgKpo8Qg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5jxlQ_YpVV9lQQuNRfOZ5cumhEL9ezffdeKa6cqonSW4HKZ_XnSuJWeW-GUokvQ3y4Xn1Aq29loi_rlPYRKAQDot1D0g','I got peace of mind and the staff were very helpful.','2020-01-05 06:35:45.901000','2020-01-05 05:17:13.465000',5,'Sean Forward','https://lh6.googleusercontent.com/-R--jcuMhcyA/AAAAAAAAAAI/AAAAAAAAAAA/qZCxTCb8MbM/c-rp-mo-br100/photo.jpg','8679688254631342173',8653),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5jzFoc8qvGM_8ebW6OJfOs_L0CAxG5PDIrY5QuQbIP0RDWZitXn0iKnXg1p-QyR2DRuH2CejcwTv8O2M3VYw3TQ_wyoQ',NULL,'2020-02-19 00:40:31.261000','2020-02-19 00:40:31.261000',5,'MaKayla Ebben','https://lh4.googleusercontent.com/-8paM8agWqpA/AAAAAAAAAAI/AAAAAAAAAAA/MIzvC8rW8-4/c-rp-mo-br100/photo.jpg','2694018788013845459',14227),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5k_SELawucmq6fxPY-mnKOazmlFziOlYoEXP_fNtZccYUsazBZwazGP_Qd0jorBpAhPbA--XNpDMGT2XPAY7IUiwTxAg','Jacob the RN was very caring and polite and very generous!\nJohn the tech was quick, amazing and very detailed!\nKara the registration lady was very sweet and smiled the whole time!\n\nI’d recommend this place to everyone!! Fast service, no wait, took 30 mins and I was in and out!!','2018-03-16 17:32:24.627000','2018-03-16 17:32:24.627000',5,'Mariah Eileen','https://lh4.googleusercontent.com/-PqveB9hauhE/AAAAAAAAAAI/AAAAAAAAAAA/UtfF5_Ijvgw/c-rp-mo-br100/photo.jpg','16590124370714063921',3850),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5K2xGd92dfGG1wodI8ejEHrP2pizhGcvqnOdywhyC0RaLQGoozqNbBIM_s9fjcM1UtOYJQ73QzAJr-Rru7nWUY8xD26o','They bribe you to put good reviews on here with Starbucks gift cards, honestly This place does not deserve the high rating. Doctors are a joke and did not know how to deal with a minor cut. I received staples, with no pain meds, and had several coworkers comment on how poorly the doctor had done on the staple job. After two weeks, I returned to have the staples removed. I let the nurse and doctor know that the cut still looked open and they proceeded to take the staples out anyways. The wound instantly started bleeding and the nurse and doctor just laughed and put glue and bandaids on my leg and charged $2100 for the glue job on top of the $1500 for the “surgery”. Save yourself a big headache and go to a hospital where you will find qualified staff who knows how to deal with your emergencies.','2018-09-23 02:18:56.404000','2018-09-23 02:18:56.404000',1,'Emily Roensch','https://lh3.googleusercontent.com/-5ru2Xz-2wO8/AAAAAAAAAAI/AAAAAAAAAAA/F9qDl9u2leQ/c-rp-mo-br100/photo.jpg','12541597562633926366',605),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5k93SL7ebS26AhcMtGsNJSqmAf9zveLvONwA1Gs5xytVk1OiNOp5NhULB8_a5PSuoKCcCnhBuwxFigrJgKDkzuE9KY3Q','SignatureCare was great and got my boyfriend in really quick after he burned himself. They were reassuring and very helpful.','2019-07-17 17:54:45.095000','2019-07-17 17:54:45.095000',5,'ASEA TV','https://lh4.googleusercontent.com/-w4UUB5eh4uU/AAAAAAAAAAI/AAAAAAAAAAA/mHk1-0huZTw/c-rp-mo-br100/photo.jpg','16590124370714063921',3291),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5kdIzD_vGCWLI_DnQdSgFsVVxS3bszGECdQ9aMhdq85wNmtz0GOFRwpXrtqgbLuXhpHSxvoIt2s62GATBAywGH_mYkkw','I went in at 2 AM after giving them a call about abdomen pain that I thought might be serious. After some counsel over the phone by the RN on call I decided to go in to make sure I was OK. From the get go the staff was friendly. I was greeted by Delfino, who got me registered quickly with minimal paper work. The RN, Adam, wanted to get me seen as quick as possible while also making sure I was comfortable the whole time. I was even offered a warm blanket and some gum! That was a nice touch. While Adam was getting some preliminary background medical info, the doctor came in and got up to speed. He heard me out on my issue and took it seriously, despite my presenting with only very minor symptoms. In the meantime, the tech was getting the CT scan ready to make sure they got data ASAP. Even as I was going through the tube the tech on call, Chad, made sure I was comfortable the whole time. After doing all the tests they needed to, they made sure I was comfortable and kept and eye on me.I can\'t stress enough that these guys get how important it is to make sure you\'re comfortable when you\'re in their care. Peace of mind while you\'re unsure of what\'s happening is incredibly important, even though we may not realize it is in that moment. \n\nFortunately, I turned out to be OK with only a very minor complication being the issue. It wasn\'t as severe as I was worried it might be. I feel that had it been a serious issue, then they would have been ready to respond and treat me immediately. Without a doubt, I was in good hands. \n\nThe turnaround time was quick, yet the treatment was extensive. They made sure to take every measure to diagnose me correctly while administering the care needed to alleviate immediate symptoms. Every person on staff that night was super friendly and made me feel like I wasn\'t an idiot when I got the diagnoses. Adam and I even had a chuckle over the results. \n\nWithout a doubt, I would head here if I felt like I needed emergency medical attention over the ER any day. The care I received here was better than any ER I\'ve found myself in previously. \n\nFor reference, this was the crew on call the night I went in. I couldn\'t have asked for a better team of experts!\n\nDR: Eisbeeker\nRN: Adam \nREG: Delfino\nTECH: Chad\n\nYou guys were exceptional!','2019-06-17 23:19:17.348000','2019-06-17 23:19:17.348000',5,'Chris Guajardo','https://lh5.googleusercontent.com/-YJXbKyag1R0/AAAAAAAAAAI/AAAAAAAAAAA/eBY5-dvKP8U/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4249),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Ke7oipF3kBraEo8UL23-AcPr2kZLKxuTst-98HbeBENK3OUPs7K-0kyFDTNxh3yAkmJ0ssLT_7exH6HwUXPtjfmA5NA','Friendly, professional, and very patient with both my apprehensive five year-old and my (probably obvious) questions. I highly recommend this location — thank you JD, Nydia, and Cody!','2020-07-28 20:54:29.831000','2020-07-28 20:54:29.831000',5,'Jason Esposo','https://lh6.googleusercontent.com/-Hsirii5Lsps/AAAAAAAAAAI/AAAAAAAAAAA/NxxAYQrK05Y/c-rp-mo-br100/photo.jpg','2077061009497551125',22784),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5kEcHTQ5kG1kKmXipwHG8w8kD4DTCL0vTWGwa_WvIAIMixRSO4wBZUulbwswrcqfu0RYlMHWEnidoo1LRMwuF-b43BYI','Very friendly and knowledgeable. Took care of me when I was feeling uncertain of what was wrong. Would come here again','2020-03-14 06:08:47.156000','2020-03-14 06:08:47.156000',5,'Matt Nauman','https://lh5.googleusercontent.com/-pp_3Myxbskc/AAAAAAAAAAI/AAAAAAAAAAA/8mDBgTe_hwQ/c-rp-mo-br100/photo.jpg','14748677429039074158',20976),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5ktQpTnG8ccT8P7NZFmvm9VXq9CR_B6Tt8_qaPjntepWjXaQFg0PVB3sDoiHudFQ5S9VE22LVx6O5UvaDhcPnm9n47aw',NULL,'2019-06-11 21:51:21.056000','2019-06-11 21:51:21.056000',5,'Linda Mick','https://lh6.googleusercontent.com/-qz0z6pSNwhs/AAAAAAAAAAI/AAAAAAAAAAA/0SNDAamljks/c-rp-mo-br100/photo.jpg','6521947413723274945',8239),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5kURXvOvSOkKm1Z5ADkulQckpvFpevsZzTpkUa4fkgMptmdPawl_S_h_q6a7bV40rAv1K5nnTBnReV0daV2kMpvDLeTI','Great service. Thank you Cody and Sam','2020-08-03 15:55:50.346000','2020-08-03 15:55:50.346000',5,'Mike Ellis','https://lh4.googleusercontent.com/-ffEoCr6l5fM/AAAAAAAAAAI/AAAAAAAAAAA/KTwJqUzBTi4/c-rp-mo-br100/photo.jpg','2077061009497551125',22757),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5l1dCq0APcPleMyx5d5aNmLLZh5QU4s1EvxQVj2FPgKe9jk_IJ6ea3EfLzdxL_cVVh8tpuiBa5CtfJLiGUNi8UxypAIU','Every staff member was exceedingly kind and understanding. You won\'t meet a friendlier staff than the people here.','2017-05-19 19:38:18.492000','2017-05-19 19:38:18.492000',5,'Shelby Minor','https://lh3.googleusercontent.com/-eX_GNRzKlaw/AAAAAAAAAAI/AAAAAAAAAAA/ThKkDNKjDl0/c-rp-mo-br100/photo.jpg','16590124370714063921',3984),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5L1IfwYx-Al-ixKcUvwu6VUBCDSVg6nOhqo_Ra8afPRnDNZjM0_2Jk3sELOD2NCtQahfuTI-YHdUBG5m6PZf3KcG-hc0','Wonderful staff!! Sergio, Mollie, Eric and Dr.Henderson were all so sweet, helpful, and got us taken care of quickly! Great place!','2019-11-05 07:39:01.139000','2019-11-05 07:39:01.139000',5,'Brittni Smith','https://lh4.googleusercontent.com/-RlwYsPqndL4/AAAAAAAAAAI/AAAAAAAAAAA/kIMPQMhvW3s/c-rp-mo-br100/photo.jpg','3272657195432704501',6868),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5L2WO5scCv_K24AvyRH7NPFHE6SZ6qH0WrnKLLjU_srVYyKqEklOMQzDRNadtd3Jf2YRxg-884U4DNVOCxKw8UZfm0BA','I was very sick and the ENTIRE staff was wonderful! Dr. Darrin was amazing. He not only got all of my ailments taken care of, he went above and beyond to make sure I knew every aspect of my illness. He found a condition that I had no idea I had which will now save me from getting a terrible disease in the future. I just can\'t say enough about how wonderful NEC was for me. They sent me home with a packet that had everything I needed to know as well as a CD of my tests so I don\'t have to go back later and get a copy. I tell all of my friends to go to Neighbors Emergency Center!','2017-04-13 12:02:19.489000','2017-04-13 12:02:19.489000',5,'Mimi MuttleyCrew Campbell','https://lh5.googleusercontent.com/-F2TddP1Q494/AAAAAAAAAAI/AAAAAAAAAAA/NYVMmX9HpXg/c-rp-mo-br100/photo.jpg','3272657195432704501',7109),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5l8_nmjw3EEofvbsezYbkKGC7aGoUsmK7dZXggPQLx3ZmxCmdQRSy5885GSw8pXq9Lfhxflq_UfJYMtZUVauhYQZpx00','Keera was super helpful and understanding of my conditions when I can in feeling really sick ! I defiantly recommend ! \n\nPlus they are fast !','2018-11-08 05:21:50.255000','2018-11-08 05:21:50.255000',5,'Izamar Favela Estrada','https://lh6.googleusercontent.com/-W06u7N-WzvE/AAAAAAAAAAI/AAAAAAAAAAA/FCMbc2AC6nc/c-rp-mo-br100/photo.jpg','16590124370714063921',3658),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5laC2UFAk4rkRHAOBrEf7D05FihUwlHUKapqyQtIc8PDc8JjPFZ0TjmUE24lf-3wLUi7qr_eFfhJ7V2UxmZQirsgOxoc','Itza and Jacob were great!','2019-03-31 17:14:33.572000','2019-03-31 17:14:33.572000',5,'Hope Driggers','https://lh5.googleusercontent.com/-YwZA7NnUztI/AAAAAAAAAAI/AAAAAAAAAAA/PTSnqt4EmHA/c-rp-mo-br100/photo.jpg','16590124370714063921',3472),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5lbtPwu9bt0CbE2F629tllFZx-Pn9s3bHBFdqHExG7_r2bDGiZE9XsseFJYIoqqvhicNkMJtOczi-3FqebrCFVip3evc','I came into SignatureCare ER very sick. I was greeted us and as I walked in and taken care of immediately there was no wait . The nurse and doctor were very Kind and patient with me . Within a few minutes I have a warm blanket over me while they put in my IV and started giving me fluids . I started feeling better within an hour or so !! Karen Ashley was my nurse and she is such a caring soul !! She tries to make you feel better even when you’re not feeling your best . Dr. Yost took very good care of me and is a great listener and works quickly to resolve the illness!!! And gunner was the radiology technician who is very tenderhearted and listens to the patients very well !! I have been in a couple hospitals in a few ERs and this by far was my best experience I’ve had in my lifetime ❤️🙌🏼🙌🏼 I also want to apply and Kelly at registration who is very sweet and kind and got my paperwork done very quickly !','2019-03-09 17:35:31.851000','2019-03-09 17:35:31.851000',5,'Holly Hemingway','https://lh5.googleusercontent.com/-CxOfT272vnU/AAAAAAAAAAI/AAAAAAAAAAA/6sxhiL_aJ70/c-rp-mo-br100/photo.jpg','3272657195432704501',6998),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5LCMoNAa5jqjAzyW4jYPfZYX6QHzSv8Elk_mAdd_XFxe1lzCB-JJvXnkQisbzrJjnbmfRNuIMcAmgf-9NlONcwfEhcNo','I arrived here after an appointment with Entrust which was located down the road, I at first wondered why Entrust had recommended this place instead of the other ER clinic which was in the same parking lot. Well after my visit there this past Saturday I realized why. SignatureCare Emergency Center was amazing. The entire staff was super nice and warm, they made me feel cared for and that we would get the answers to my health issues. They offered a blanket and when they brought it to me it was like it was fresh out of the dryer it smelled and felt great. I cannot recommend this place enough and if I ever need any additional care I will for sure return to them. Was a great experiance and feeling much better already. 10/10 would visit again :)','2016-12-08 19:13:40.664000','2016-12-08 19:13:40.664000',5,'Misti Turner','https://lh6.googleusercontent.com/-c3miP73cZjg/AAAAAAAAAAI/AAAAAAAAAAA/zezvxRFi89c/c-rp-mo-br100/photo.jpg','14904078213800803294',2441),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5lCpFdg1YyxgcDC86sFmdFz_wpjDnxmFxO-nJNlw8YmicRsOk-sad3eZJJEZUy8abaxIsf84PSAj-XbsgQemJHcnZmdU','All the staff was very nice and respectful. Lucas and Dr. Curtis took very good care of me and my concerns. They are very friendly and concerned with your needs. The wait was not bad at all.','2020-02-17 19:36:15.302000','2020-02-17 19:36:15.302000',5,'Holli Garrison','https://lh4.googleusercontent.com/-uB2ftcbMBac/AAAAAAAAAAI/AAAAAAAAAAA/qT0yzz0f48M/c-rp-mo-br100/photo.jpg','3272657195432704501',14349),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5LcqsWgksDmGcCumK2k7bkkP9q-ef0eMxJXdGz78x6_6cLdtu0lwkvLzZuFcDO2xoDWZ-isBoIfrUbB27P3VnLjfgK6A','I had a great experience at SignatureCare The Heights location. The front desk girls were very helpful and the nurses/MAs and doctor was very helpful. Would recommend. Would definitely come back if need to. Very fast service.','2018-01-04 03:06:25.966000','2018-01-04 03:06:25.966000',5,'Isabel Mena','https://lh5.googleusercontent.com/-mAcjXhIyq9E/AAAAAAAAAAI/AAAAAAAAAAA/RqXUqLPziBs/c-rp-mo-br100/photo.jpg','14567670160750071148',1697),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5LEEj3yhCrkns18Znn2IdHdPTdsXeZmfKBiJSGL0JPn7tYe4Q_5jMbCLy8XSFjqcjusxUdamHFazlC4yIre7cTTbPUQ8','As a first time visit, I would say they are Very friendly and awesome. Amy the receptionist is so sweet. Dr Boester was really helpful and explained everything really well. It feels like home. I would recommend anybody to come here. I love them!!!','2018-10-07 17:36:17.256000','2018-10-01 04:25:22.497000',5,'Natacha N','https://lh5.googleusercontent.com/-UOyw48KDG68/AAAAAAAAAAI/AAAAAAAAAAA/vDp5zXGxyhw/c-rp-mo-br100/photo.jpg','3511292162159714121',7583),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5lPtTv6RrpHi5SpHQ2MlEGk5jhgGCr-IfPvhwg1oZi2pO9xFsRRHYwLX_iR4urv-rD8K5HANwIpTMEHlKuV5u9Zvy7T8','I had a great experience receiving care here. Stephanie, Rollie, Natalia, and Dr. Daniels were all friendly and quick to answer any questions I had','2020-08-12 01:37:18.484000','2020-08-12 01:37:18.484000',5,'Josh Mcallister','https://lh3.googleusercontent.com/-hKx7857Js9M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclS7GiB1hsO3i7QNQMNTpZUW3Rbjg/c0x00000000-cc-rp/photo.jpg','8679688254631342173',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5lUSnWjPdNM3nRNANHqu9j1SLgx19Wft8bUV6L09G7ydmqy_kjOSvSrRZMdD-KR89goQqJrZLRqs4vEnzrxaKmqeB3Vg','WOW. What a gem of a place. I have had so many bad experiences at other smaller emergency clinics and ER’s but this place has restored my faith. I will not go anywhere else from now on. \n\nI picked this place based on previous reviews, even though it was further away than other ER’s in my area. The reviews were not wrong. I was greeted like an old long lost friend upon arrival and made to feel very welcome. Most places barely look up at you, hoping you’ll disappear. These folks were ready to get me in quickly and taken care of. Waiting Room was empty, and there was no wait before being called back. It’s clean, well maintained and lots of snacks and beverages in the waiting room. Christina (didn’t catch last name I think it starts with a C) at the reception desk and Andy the office manager were super friendly from check in to check out. \n\nI had a gash on my foot from broken glass so was going to see if I needed stitches. This place is equipped for serious emergencies OR minor bumps, scrapes, fever etc. I will definitely be using this place for the next my son isn’t well. \n\nSherri the Nurse and and Tina the radiology tech were so professional, yet friendly and easy to talk to. It really alleviated my nerves and helped my blood pressure come down!!! You get a heated blanket too. Nice touch!\n\nThe doc (Dr De Waal) came in about 2 mins after vitals were done. No long cold wait in the treatment area either. He was really nice, down to earth, (cute) and friendly. He explained every procedure thoroughly. There was so much friendly banter and had I someone with me almost the whole time. It was around 9am on a weekday. \n\nSherri’s tetanus shot skills were on point. Didn’t even feel it. Luckily no glass in wound, and I was cleaned and patched up. I left there knowing the care I received was top notch. It was a breath of fresh air, compared to any other emergency room I’ve been to, so I would definitely recommend this facility. It was WELL worth the drive.','2018-05-24 16:49:41.379000','2018-05-24 16:49:41.379000',5,'Maria Limey','https://lh5.googleusercontent.com/-eMzTGE3RzUM/AAAAAAAAAAI/AAAAAAAAAAA/wIiYlEuZlK8/c-rp-mo-br100/photo.jpg','16891069708558046635',4474),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5lXCbJvg9XjqwTVJEitofN6cqwvloISXnNuonLqADt5cIbmYCR6qRHhnrgny_KcMV_PalYK4DT05IO7cZWrruPlvhxgE','Everyone there are very professional, great friendly people. They will attend and care of you. Thank you all.','2018-02-05 18:37:53.639000','2018-02-05 18:37:53.639000',5,'Robert Danas','https://lh4.googleusercontent.com/-1ZbQU0xxMyU/AAAAAAAAAAI/AAAAAAAAAAA/UwW8SNtSOW0/c-rp-mo-br100/photo.jpg','17394740196501090048',4887),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5m-eLYb3it9Ee7CRvNp87jwz6YwuDYnVV3giZkHAc1820h3_w-O4LnTycu-JTiwFi5V01x1xMxzwesxnOXjJAt-ctO7k','Even tho I had to wait 1.5 hours outside even tho I had an appt it was still better than most covid testing center experiences. Convenient & quick results.','2020-07-04 13:22:39.411000','2020-07-04 13:22:39.411000',3,'Samantha Del Toro','https://lh3.googleusercontent.com/a-/AOh14Ghaw_1FBnMKv0MC3fpDrrvTztu_1QDAQo0_iys_zA=c0x00000000-cc-rp','16389487648212004696',21404),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Mc-2_Mz_eKF_Hl9-An0pNT1pWbIdqXsS9rNTyn3sel07F8nJrtw7V62Y6pyu1aGF4cdLRUQKeHG8GpF28XtWDW-GAWo','Low wait time and very quick service of good quality','2020-08-02 01:10:21.100000','2020-08-02 01:10:21.100000',5,'Maxwell Mouer','https://lh5.googleusercontent.com/-zC3oWfiKZtc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnGcucwzcL3jIRKOlttbIdq44bx0Q/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21936),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5MdDOa4acE8vuo7slOJU3zUGk5nUuZGIYtTLHLo6zYc-QSSky0ws0wdRpjlIIk2Y9CH4c5rof3g-inkH0e699bReSShs','Amazingly staff! Got seen and was out quickly!!! Top notch ER care!!','2020-06-01 21:37:14.353000','2020-06-01 21:37:14.353000',5,'Megan Araujo','https://lh4.googleusercontent.com/-dTi9gchcrmc/AAAAAAAAAAI/AAAAAAAAAAA/lnnfEPAFL8k/c-rp-mo-br100/photo.jpg','2077061009497551125',22872),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5MHJJQPW5ligMsucRxz7Zfw-IYP-FecEP9FxyzzoEpc4oVo6lmCa3fV7vyrBGW7-mra4gIZhnHbwnJQmMDQCg13cGNbw','Dr.o\'malley was great,took care of all my medical problems .Love Melissa she\'s so sweet. Troy was awesome really nice .over all everything was perfect would highly recommend','2019-09-10 03:56:17.280000','2019-09-10 03:56:17.280000',5,'Peter Martinez','https://lh5.googleusercontent.com/-qhN8OLalkU4/AAAAAAAAAAI/AAAAAAAAAAA/GASA3qVskOo/c-rp-mo-br100/photo.jpg','16389487648212004696',2932),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5mmxwOJpy27W0dcLyoHxmI2Yzqo_fEfL4Qf4PTqOT2-K19xMxLF2V0M4shVLjJ5LhA7ZAgqkWwmqZXynCVmdnSZmMFDw','Even though this is a new location we were very happy with the service! Everyone was very nice and attentive from the moment we walked into the building! Miss Jessica and Nikki were extremely helpful in every way possible! Luisa was very funny! My husband and I had a great laugh despite my broken toe haha. But by far I LOVED Dr. Nguyen! Took great care of my toe and gave me all the information I needed which was great cause I had no questions in the end. Definitely 10/10, if I ever brake another toe, this is the location I’ll be going to lol.','2019-05-14 03:57:44.626000','2019-05-14 03:57:44.626000',5,'Ricky Segura','https://lh6.googleusercontent.com/-t90N2jmDU7Q/AAAAAAAAAAI/AAAAAAAAAAA/iRzX0zFCGNg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5mNnqdaNX4hb1pO28nfj1mNQtVSVh5IDj7gKDLdcHrQMJh1aZhWLFhlO_5k03sa025Vo-44hdUeOtu5YBeXg4c6ik3RM','Only perform 100 covid tests a day so the website is inaccurate in saying they test 24/7.','2020-06-14 06:09:36.460000','2020-06-14 06:09:36.460000',3,'Matt Ludlum','https://lh6.googleusercontent.com/-C1NQqCUnPA8/AAAAAAAAAAI/AAAAAAAAAAA/z0oECd82CYs/c-rp-mo-br100/photo.jpg','14904078213800803294',22577),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Mu-bTn8kLvsKYwGnZYutwshMP3MNLgplLD5vFehclORCHbhJk4N_v1uk-B_35DBuMmgbzCafXTVrtB3Yf5vCdrvTs6U','Great quick care and very clean facilities. Cat a d Keera were super awesome!','2018-11-02 04:04:19.124000','2018-11-02 04:04:19.124000',5,'Franchesca Schaefer','https://lh4.googleusercontent.com/-U0ehRaVF-JQ/AAAAAAAAAAI/AAAAAAAAAAA/6_6LmAGHpck/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',3674),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5mxqFhravyVA170gU44VNqoVYKe8_er4FEmlj1f4_QBbkHtHl0XwqcpVlB0q_2iJoNCyUroAQp3msGjfL2VdwNhSQ3rM','First time visiting a Signature Care Emergency \nCenter. I came in with my son who was experiencing leg pain. Check in was a breeze & we went back in under 10 mins. The staff was very pleasant....we had a great experience.','2019-12-23 05:05:08.305000','2019-12-23 05:05:08.305000',5,'Pre B','https://lh4.googleusercontent.com/-Xv676UfB2iU/AAAAAAAAAAI/AAAAAAAAAAA/lmzcQDVRoKk/c-rp-mo-br100/photo.jpg','12541597562633926366',319),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5N_43S2Wf6LQGFOs05KW5TET267daXevXinRQ99RMKGizVQPor5_DwU8V1lSWvK1Y1woNbAVLRAXNrX44JZ8isUHsuko',NULL,'2019-07-22 04:40:01.712000','2019-07-22 04:40:01.712000',5,'Stacy Jacoby','https://lh4.googleusercontent.com/-sIW2ZT5HZnY/AAAAAAAAAAI/AAAAAAAAAAA/4c74MI-Ab-I/c-rp-mo-br100/photo.jpg','17898197009688164559',5628),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5N3xFMk0-TIKejkI3tRTs98fKkNziTmQ-tGRJPJhXJcokW4-oIPyaCxF4mWZhlei_smjKdajYVEyOZ-EDkIuc3bcL8OM',NULL,'2019-10-05 12:59:19.200000','2019-10-05 12:59:19.200000',5,'Rola Ayoub','https://lh6.googleusercontent.com/-MNzxSGup1Ng/AAAAAAAAAAI/AAAAAAAAAAA/Y0mh7qnwfgc/c-rp-mo-br100/photo.jpg','12541597562633926366',406),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5n8uo293kTuy4xVULsOuy5-8zRdihiF0WCOR1fRIbeKDttGARc1XiBCJBCHaPuFApK_01g4RClmlKypDTSgcnji6oTek','The facility is very clean and bright. The registrar, Delicia was very welcoming. Dr. Ybarra and Nurse Blake took good care of my friend.','2020-01-24 16:36:27.508000','2020-01-24 16:36:27.508000',5,'Ashlee Smith','https://lh3.googleusercontent.com/-b4jUoeGw-CM/AAAAAAAAAAI/AAAAAAAAAAA/cnaL_8wH8FA/c-rp-mo-br100/photo.jpg','8679688254631342173',10339),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5ngD9-KntTeNV3IO4fFTp2PaEf89P-c40BKDYx-0TqNvy2wQNyPc_-L3I933J8SzIiel3uxXxmwRJ4NXI_CPkscFNXKw','We had a great experience! Everyone was very helpful and pleasant from the front office staff to Kevin who called us back. The physician was great as well. Would highly recommend this Er and would go back if ever needed!!!','2020-07-25 21:37:18.638000','2020-07-25 21:37:18.638000',5,'charee wilson','https://lh5.googleusercontent.com/-s0GYJWi8w-Q/AAAAAAAAAAI/AAAAAAAAAAA/UNMTMHmYmOI/c-rp-mo-br100/photo.jpg','14748677429039074158',22564),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5NnKWu8Xl7ydQ6NrwbS7QRK_BQtxSgpVFSywLS6oWuWHxVw-MPIWOISB5UOU6OvDZinzZhEvgPC3JYWd5a8FEhvFYXss','The staff as a whole was wonderful.','2019-04-12 19:19:18.712000','2019-04-12 19:19:18.712000',5,'Ruby Jackson','https://lh6.googleusercontent.com/-ebI9p61Cz9I/AAAAAAAAAAI/AAAAAAAAAAA/Y8lJ_RfZFJU/c-rp-mo-br100/photo.jpg','17898197009688164559',5773),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5NpdsCX37MpFoFdpDHhH4-xFWiYkz7hiF_vrumyHpHT-rd5nXNq4owUcA6qT5hc1JTIyl1tsClD1rrjB_seo5pCy5shQ','Great took care of right away by','2017-03-30 13:36:52.803000','2017-03-30 13:36:52.803000',5,'dorian chavis','https://lh4.googleusercontent.com/-rxeM_M5rRRM/AAAAAAAAAAI/AAAAAAAAAAA/3Q55Wm0ZA7Q/c-rp-mo-br100/photo.jpg','14904078213800803294',2377),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5NpP-5ZtZcbxnIj7KfwLWWBioZe-0tFG3tEfq8aRBRHcPAunk3ON803SigeoJTCUT-6L6fBRgyzMiIxoN09fhK9fJFnw','Dr.Nweze was amazing and gentle with my 1 year old very helpful with advice given and I could tell she was more concerned with his well being than anything else .the receptionist Jocelyn was very welcoming and informative letting me know all of my options before hand and proactive with admitting my son .Alvean and Jordan the nurses were also very gentle with my son ensuring he was as comfortable as possible checking all his vitals and gathering information in an amazing manner \nExcellent facility I’ll come back if it’s needed in the future .','2019-10-16 20:33:51.546000','2019-10-16 20:33:51.546000',5,'Myasia Jones','https://lh6.googleusercontent.com/-eN_1beJBPT8/AAAAAAAAAAI/AAAAAAAAAAA/rgPCECmlgZA/c-rp-mo-br100/photo.jpg','16389487648212004696',2809),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5NqC8d-u6y78PJ_GQWFVTvTiUro7XJF1UnEbZ4DoupfjTM7btrvK_whKupMF4_l_ipfX0P63jhQnXRRyRqGbXpllXQMY','This facility defiently deserves a 5 star review. \nAs soon as you walk in you know you are at the right facility. Clean, well lit, organized and stocked snack and drink area. \n\nAs someone who works in the medical field, I appreciate fast and excellent customer service! First of all, we picked this place out of all the others due to their hours plus the kind register on the phone with insurance questions, by-the-way thank you Delfino! You also greeted us immediately upon walking inside.\n\nThe nurse Katie was very kind, personable and made my girlfriend feel comfortable, when normally she is a bit anxious in doctor circumstances. \n\nThe X-ray technician was very nice and fast! It took under 15 minutes to receive the results and we have waited HOURS before at other urgent cares/ERs. The pictures were also sent immediately to our email with user friendly page access. \n\nDr. DeWaal was ABSOLUTELY outstanding. Very knowledgeable and informative but personable and humorous. He wasn’t pushy (like other doctors can be) in regards to referring out to specialists immediately or giving us products while we were there that we didn’t necessarily need. \nExample: she came in with a splint, instead of racking our bill he verified that it was the correct type and stated she could continue using the same one. Every step of the process at SignatureCare was exactly how you would want to be treated. If ever needed we will know where to go!','2019-03-21 04:02:10.131000','2019-03-21 04:02:10.131000',5,'Kylee Kirby','https://lh4.googleusercontent.com/-NyUNRzjTKR8/AAAAAAAAAAI/AAAAAAAAAAA/hRZZ2x0yDDA/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4319),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5nRvVxwpsgDXj_n7PEWz8_tun4ljuQmVh8Lh_TwXuOXaAmE11n3ErsOgb6V3mMpO6ls1i1FzUP_RHONAmkici8NR6J_0','If you are not feeling well. This is the place to come too. Delicia, Karen, Cedric, and Dr Mauldin were nice and very helpful.','2020-02-27 23:22:58.289000','2020-02-27 23:22:58.289000',5,'Ebonee Auston','https://lh5.googleusercontent.com/-EeSitoEqzEs/AAAAAAAAAAI/AAAAAAAAAAA/9StlzO2qqxI/c-rp-mo-br100/photo.jpg','8679688254631342173',14718),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5NxJi1MyRYPEfuWRDQ1GiZo77YUm34OxUolaVHYaeeBaTnkN38LXeTR1WMtVnOoXuaQDaIkXKLGwj37-DK8h_8NkLNfg','5 Stars. All the way!\n\nI\'ve visited this location 2 times. When they say no wait time, they mean it! I wasn\'t even finished the short paper work before they called me back.\nStaff is amazing, we were actually greeted at the door. They have an understanding for patient care that is unmatched.\n\nI\'ll say a bit more about this most recent visit. I went in for some serious dehydration, with vomiting and lower back pain.\n\nWithin 10 minutes of arriving they\'d already gotten me back, Chris our ER tech, Trisha our Nurse and! Dr. Sylvestor had already been in to talk with me.\nWithin 20 minutes of arrival, they gave me IV fluids and medication.\n\nWe had to try a couple of medications for the pain, but they knocked out my vomiting right away. This was after an entire day of being sick every 20 minutes. I walked in feeling quite bad, and I walked out of there feeling like an entirely different person. No pain, no vomiting. Dr. Sylvestor spent a long time, explaining and breaking everything down in ways that were super easy to understand.\n\nI truly do believe the staff cares about every person they touch. I walked out feeling amazing!\nThe treatment, the care, the bedside manner is just impeccable. The lovely Trisha also spent a long time going over the before and after numbers from blood work.\nChris\' bedside manner was the best. He\'s quick, gentle and he made being at Signature Care a lot more comforting, they all did. I wasn\'t able to thank everyone enough.','2019-01-30 11:47:58.728000','2019-01-30 11:47:58.728000',5,'Brent Cato','https://lh3.googleusercontent.com/-L-Rru3baZwM/AAAAAAAAAAI/AAAAAAAAAAA/kpNI44d38-8/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9186),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5nY-Pl-gTexKuXBudl7Cj18bxSKXo5APBKlDxLq5ErmcSIU72ew9WZrTeJDjbsRBO1z5aKIKJHkBqAKgTCTTJgPoQiw4','Amazing staff and Dr. Jones was very nice and personable.','2019-01-09 02:39:44.889000','2019-01-09 02:39:44.889000',5,'Joelle Pitre','https://lh5.googleusercontent.com/-0Jp7jT6gP_w/AAAAAAAAAAI/AAAAAAAAAAA/cScz5qZKIHA/c-rp-mo-br100/photo.jpg','12541597562633926366',573),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5NySri1t37gioJ06RMbVp-9lQjk9RgnI_CEMAFEIabNrUYckjl9HRiZN-9-nYV3eO8xdTNGeegdT-B9op9o2sFdoA838','From the front desk to the nurses and doctors to the radiology technicians, I received personal and professional care. Each person addressed my questions and concerns and wanted to make sure I felt heard and comfortable. Thank you to Dr. Elsbecker, Katie, Townsend, and Amanda. You will be our go-to for emergency needs.','2019-12-02 22:46:24.825000','2019-12-02 22:46:24.825000',5,'Damey Meyer','https://lh4.googleusercontent.com/-s-VB6Xvsv8A/AAAAAAAAAAI/AAAAAAAAAAA/_EUGKceom6c/c-rp-mo-br100/photo.jpg','16891069708558046635',4132),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Nz5hNMf17WrWfUugFa0JCEtXL9YeoSGMgqirLnAn8_2ICyBKi8fscFOm6SrzuceTuXispXXc-RGboUTNVo8ACzI_Spk','Dr. Golla, Patricia\n\ni recommend this signatureCare emeergencycenter to be one the best place to come if really need help or sick.','2020-02-28 20:13:45.277000','2020-02-28 20:13:45.277000',5,'Kenneth D Reed','https://lh5.googleusercontent.com/-NSBPkgZxODo/AAAAAAAAAAI/AAAAAAAAAAA/dScToHEULIE/c-rp-mo-br100/photo.jpg','16389487648212004696',13750),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5o2OpL4q1-t_19xeBqLIW0vclwL-osd8oXIHScesuAXnPIDFJHUDWuqe7RG0CMvUGlhMn-CcMAEos89TspvXqHq0DEvw','I always get great service whenever I come in this is why this is always my first choice for emergency service.','2017-05-11 06:39:07.463000','2017-05-11 06:39:07.463000',5,'Heather Amos','https://lh6.googleusercontent.com/-qOH7OosHOBI/AAAAAAAAAAI/AAAAAAAAAAA/70AwjyG6SU8/c-rp-mo-br100/photo.jpg','17394740196501090048',5059),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5O56zhPHP0Xb9qj8vXzsJ8Ad83iKUdRBVbeaOjDBPf6pHeoCiEZEW691df_1kuQG8xXkgQnwlU4wdm05AWg9_KSjQIL8','I have not been to a facility such as this before. They were fast to get my boyfriend in and out quickly with amazing care. I felt as if I was at a top hotel being taken care. They not only cared for him, but me too. Kiera C was the nurse, I think that’s how you spell it. I wish there were more nurses like her. I will be returning to this facility if ever needed.','2019-10-21 07:51:14.861000','2019-10-21 07:51:14.861000',5,'Jaime Shane','https://lh6.googleusercontent.com/-LxGRY3GPhJY/AAAAAAAAAAI/AAAAAAAAAAA/oQBThJidnAA/c-rp-mo-br100/photo.jpg','6521947413723274945',8114),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5OD88X-PMnvuiMmRgVrqWbT3Jiu5XPlp8gbYfWwm4Z9OQBDDBY2jC1UoN7C07QEyUppIoiKuDiK26zhOU1OG_4GwOklE','All the staff were so nice and helpful! Especially Shawn! Service was quick and easy and we were in and out within 30 minutes.','2020-07-27 22:02:58.918000','2020-07-27 22:02:58.918000',5,'Shikha Abraham','https://lh3.googleusercontent.com/-z0M2BG6B4Hk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck0m9y6C_fZdOOFfTlgWXH_BPiIFw/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22284),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5oEDBGstiAdS9ifv-M8HZdH1OY64TTq4DPiGlEAblIrKRkIrOpOt-sSfsa3fKJUGOSrQxPWncCSXEhrPDgAEDZP5y8PQ','They always take good care of me plus i love the atmosphere n the smiles','2019-10-09 15:26:06.360000','2019-10-09 15:26:06.360000',5,'Lashan Hicks','https://lh4.googleusercontent.com/-9MOrcoIN8a0/AAAAAAAAAAI/AAAAAAAAAAA/0VtiBZHisEM/c-rp-mo-br100/photo.jpg','16389487648212004696',2842),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5OJp-4qxAZ7a6i8nqpG0eV055VHhpdkv9im7d2Bt1s5ESXj3_ZmoqRSStPHGwnpNb7mlDHqr986Tb_fT0_dF4lqyAsME','I brought my 12-year-old with a nasty cut. They helped him immediately. I can’t imagine the situation going any better. Thanks everybody for your care!','2018-10-05 02:13:00.387000','2018-10-05 02:13:00.387000',5,'Christopher','https://lh4.googleusercontent.com/-tIpc1moY-EQ/AAAAAAAAAAI/AAAAAAAAAAA/hkD5UhIwT1w/c-rp-mo-br100/photo.jpg','14567670160750071148',1478),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5okRbF18fx4aB_glvsLS8x_QKSHO8db_Npn8-j4TIjQKi-63SfEA8J-PYuEfngn-XLoZtzRXVAxKZDV1h8wQ_U3fRaoM','Loved this place. Game me the feel of my PCP’s clinic as they were very welcoming, warming, and attentive. Didn’t feel rushed like an urgent care or emergency room at all! I couldn’t even sit down before they called me to the back. I was literally in an out in about 2 hours. This will be my new go-to place for emergency visits.','2018-09-03 16:24:28.267000','2018-09-03 16:24:28.267000',5,'Mera Beckham','https://lh6.googleusercontent.com/-ZMk73q4U-SM/AAAAAAAAAAI/AAAAAAAAAAA/ub_K2qlaffY/c-rp-mo-br100/photo.jpg','14567670160750071148',1534),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5OLeNKFiypsJThc_FURb5TVkWAO6jYVDy3UEAaV5QW_8UgsTHkUHRgg0uFjjbDQEezWRnlRldo6de_H6I9WvoThDmdrI','Extremely well mannered and friendly staff! Fantastic service, short wait time, and a great environment!','2016-03-09 23:28:43.412000','2016-03-09 23:28:43.412000',5,'garrett sena','https://lh5.googleusercontent.com/-EH1wr5NGmic/AAAAAAAAAAI/AAAAAAAAAAA/Hna4WMZvXbc/c-rp-mo-br100/photo.jpg','14567670160750071148',2048),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5OoApo-rxAFl_DmqjAMd75VWN5rMEVf6qtYl0rebnnF6wC9xR4dCcwye-AzhnDYOUmnPVivYNBzCyvdcVVdDktx2SC7k',NULL,'2019-02-28 02:49:17.930000','2019-02-28 02:49:17.930000',5,'Crystal Greer','https://lh6.googleusercontent.com/-oa5ZuXKyBUI/AAAAAAAAAAI/AAAAAAAAAAA/SfXuJgO2OJY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5OSKcgGiRge8gxUsLSiEtAKR8mSH9_2mAlalzeS3jre8cTTUVMMeirNGrVyXHc1kzbQfb2YqRVFClW9Jd5ex3sQK1Z6w','Dr. Alcantar and nurse Corey B were so helpful when explaining what was going on. They were fast and responsive towards my daughter.','2020-03-04 08:49:17.759000','2020-03-04 08:49:17.759000',5,'Ashley Ulate','https://lh5.googleusercontent.com/-pkQcTbIgsZg/AAAAAAAAAAI/AAAAAAAAAAA/n5VZfxi-ENE/c-rp-mo-br100/photo.jpg','13486358490203335051',20934),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5oT5IrMzCv4OrF77UP9584nhAUsc_XXY03_ngA3C0uLKs15LpGqYv5W8v17mp-p-WUMzXmqbETYUd_4Rt0LtStl8KZ7o','We had an excellent experience with the signature care emergency center employees. Everyone was so kind an attentive. And excellent patient care from Dr. Huerta, Nurse Kiera, and Registration lady Nancy I might add.','2019-10-31 00:37:57.802000','2019-10-31 00:37:57.802000',5,'Carlos Leyva Jr','https://lh5.googleusercontent.com/-T-KZDjPmYhs/AAAAAAAAAAI/AAAAAAAAAAA/sMMc_5GdOmM/c-rp-mo-br100/photo.jpg','6521947413723274945',8102),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5OV2wEvbnDe0rpMtRCi_2_FthntDWoefRUKN6jurFYR4X-3Hh4D3aKiT38DaSxcn38BXpD_yq5EPfkb8vUkNvAS7Hf5o','Rashaad was very informative when I called before coming in, his courteous manner made me choose this urgent care. I am so glad I did, Sadie was so kind, and comforting. Dr Jasmine Thomas was also very nice and found two underlying issues. Facility is very well kept, definitely recommend it.','2020-03-14 22:19:12.029000','2020-03-14 22:19:12.029000',5,'Reymi Rios','https://lh4.googleusercontent.com/-0snkXR3gl7w/AAAAAAAAAAI/AAAAAAAAAAA/PcP-KDD_N34/c-rp-mo-br100/photo.jpg','17394740196501090048',21062),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PAQJYo847014Vr0Is3G443hDJxDVCjrsqEJTpOI6FOny2WU3nFzAo3N9tEYY7YHTDtvHnvef9hBEhEXqaJPi2JXtVvE','Had a great visit the receptionist was great thank you jasmine and to doctor O , Malley you guys are amazing .','2019-05-14 21:57:31.040000','2019-05-14 21:57:31.040000',5,'Ariana Cuellar','https://lh3.googleusercontent.com/-3bXpyTnMjvY/AAAAAAAAAAI/AAAAAAAAAAA/RB59TODoAlA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PaYGEEIxFAPp2kr2hSsgCiDXVLc5maxSulgQAxdmOdP_0sXqUojDRD59OqASLodFHJMd5LXQT7h-kyrEzMk4Zt6HLhs','good experience. dr hehman and Andrew Rn were nice and knowledgeable. took a little longer than expected for discharge thou. everything else was great.','2019-07-18 20:53:31.553000','2019-07-18 20:53:31.553000',4,'Hollie McAllister','https://lh3.googleusercontent.com/-vqNRIZUiWPE/AAAAAAAAAAI/AAAAAAAAAAA/XguOILgFDzk/c-rp-mo-br100/photo.jpg','8918455867446117794',9088),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PDCIFgmcj67F_8IcYUFj05qQ4tTaQmz4qCxSQ0VYGIqEgLsHaTEpT7wtExG956Wi82vAtWQss-Ys5wV4mKeD8CMvp4o','Alvean A. & Nurse Chanell were so helpful. I had a great experience ! Definitely, recommend 👍','2020-01-12 18:23:51.121000','2020-01-12 18:23:51.121000',5,'That’sSoTerra','https://lh4.googleusercontent.com/-uLxx6uxIKqA/AAAAAAAAAAI/AAAAAAAAAAA/V2bFWOTbI98/c-rp-mo-br100/photo.jpg','16389487648212004696',9548),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PE1W2Z1ZOMRiTnd-3ceF-XIf2T6V0-EaTQ45tZxfjmUlQMVQF5EKZbeJ53lR6LL_fgaEpof-DUO4MVT88NJoI6lQZRE','Dr. Harjai, Alvean, Tricia B, Elida are the best!! They provided me top notch care in a timely manner. I definitely recommend this to anyone having any health emergencies.','2019-10-31 21:44:47.822000','2019-10-31 21:44:47.822000',5,'Sarah Baker','https://lh5.googleusercontent.com/-drq9GeWcLoA/AAAAAAAAAAI/AAAAAAAAAAA/oqQH6Xazk0U/c-rp-mo-br100/photo.jpg','16389487648212004696',2745),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5pNWoSmN0HhW6vO9yjJ0sS6upjH62PBfE1dMBSmW3cXHheIpQAvAAffS_eJUlVVk8crSU8ntGJoZdl9VkeN_Go1Ezl08','Dr. Pham, Patricia, and Ekaterini were incredibly efficient. The facility was really clean and everyone was very professional. They took great care of me!','2020-01-23 23:36:22.853000','2020-01-23 23:36:22.853000',5,'Allyse Rivera','https://lh5.googleusercontent.com/-KlbBakTq9us/AAAAAAAAAAI/AAAAAAAAAAA/1atfEK0KhGc/c-rp-mo-br100/photo.jpg','16389487648212004696',10189),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5pTPM02NLRB3ZKkv7repi4K0zL6fjNExkRHbdQEiyWMrXfQcbtOdzIyinUZkD4djuHoPm7H9LaqxJYVHywNDQ1dDXPM8','This place is awesome. Every one is super nice and very professional. Sherri was my nurse, Bryan did my CT , Ricardo was the tech and he was very accommodating. And Dr. Miller omg he was the best Dr. I have ever met. I highly recommend this Urgent Care to everyone. If I have to come back I\'ll definitely come back here. Thanks for treating me like I matter.','2018-09-08 03:05:35.277000','2018-09-08 03:05:35.277000',5,'Debra Landin','https://lh5.googleusercontent.com/-KHGsAvhkzvA/AAAAAAAAAAI/AAAAAAAAAAA/fOSdkPtsCGw/c-rp-mo-br100/photo.jpg','14567670160750071148',1518),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PVqrQxgKq9sYVm8rD0vC0YILFHtVz3cThPwJdo8wXGvfn6q9g6lHl7jzhvFKgf4DlhOt1q-nWSuKNwXk1tmSf_0ibbE','The total disorganization and misinformation regarding testing from this location is epic. No one knows what is going. The front desk staff requires you to wait in lines for hours then only to tell you to come back tomorrow at 5 AM. Then not to get tested until 7 AM but they are 2 hours late so we “may” get tested in 24 hours but you have to wait in line and see. JOKE!','2020-06-18 09:41:40.133000','2020-06-18 09:41:40.133000',1,'Troy White','https://lh3.googleusercontent.com/a-/AOh14Gh_bUtfrrKMjJ5_xE45anDTYiAbYT14GoVAQLemtw=c0x00000000-cc-rp-ba4','17394740196501090048',21059),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PWUzdpJ7zK64J9bfn3jH9YUAUAdRozoH_GL813jwAMOCgsTq8C6NXsojFv_-Np0ALeRojKxXnbau22SNO3dXdofcTQQ','This location is awesome, we have been here several times for my father\'s heart issues. All the faculty takes time to listen and understand what is going on. Jennifer D. Does a great job at getting us in a room fast and letting us mess with the paperwork when everything has settled. The nurses are awesome, especially Jamie, took time to explain what was going on and why. Overall great experience for the situation','2019-03-11 21:34:30.895000','2019-03-11 21:34:30.895000',5,'Kevin Baugh','https://lh5.googleusercontent.com/-j6wqj1edeP0/AAAAAAAAAAI/AAAAAAAAAAA/TkBxD4ioaZU/c-rp-mo-ba2-br100/photo.jpg','8626688543755174284',8535),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PYyzJvon1IuNHlPv8qdJE2W-kq665AZ5EV_bHX60GOTo5xPias3qR4DfUARtKPnkI93c4D0uuUa6j_mvZ9gRLrZs_h4','Great experience from the start, everybody was polite \nRecommend Evelyn, nurse duke, sable, and dr. L Ding','2019-11-27 16:53:37.013000','2019-11-27 16:53:37.013000',5,'Eduardo Solano','https://lh4.googleusercontent.com/-UF4E3WopI3Q/AAAAAAAAAAI/AAAAAAAAAAA/Ki5GxhOzTFk/c-rp-mo-br100/photo.jpg','8679688254631342173',8707),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PZ5Liyr3Ipld0Pj9wIcMcL8DVVHyrv-P7UVawc7fZYgIvBnoYHZDVOdc4RnOmn5oyvgRtZkOHSRYtOgIowE48Eu0Mlk','This place is has great employees such as Doctor Cavazos J, Nurse Sarah G, Registration Tanishia W. And Rad Tech Elaine & Geovanny. Every knowledgeable and we will be coming back for emergencies. They are right around the corner from us and we feel relief to have them here.','2020-01-24 02:10:58.573000','2020-01-24 02:10:58.573000',5,'Peter Wells','https://lh4.googleusercontent.com/-n-nEfbBy9ZE/AAAAAAAAAAI/AAAAAAAAAAA/TyE-4ZwfPdM/c-rp-mo-br100/photo.jpg','17898197009688164559',10249),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5PZk0I_Sm9gtR6VPw3JiSMuQa-jXjSQGj-kkQKamCZPOIrL4TTci9Sq-BB5ca7mSHXueNPAbwR3GpPWXIHodndV7OxGA',NULL,'2019-08-25 02:01:06.781000','2019-08-25 02:01:06.781000',5,'Joshua Troy','https://lh4.googleusercontent.com/-Ix45_-rh5AE/AAAAAAAAAAI/AAAAAAAAAAA/5qv50Q_HhHM/c-rp-mo-br100/photo.jpg','17898197009688164559',5568),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5q86B4CiMLRB4oRp2gHAoowsAU4dxipyW1pGoOZqX_58CKRp1HBtPO1iwZ-eSScYfrrfP4DAJv53dhBzUpZZHd7hPaaY','Kim and Jacob were very helpful and the service was very fast.','2017-02-10 23:39:39.382000','2017-02-10 23:39:39.382000',5,'Kevyn Rae','https://lh5.googleusercontent.com/-BRjQbCgzCXk/AAAAAAAAAAI/AAAAAAAAAAA/n7Jurt3Dsxw/c-rp-mo-br100/photo.jpg','16590124370714063921',4055),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5qAZ0rDgLqK3DWZnOWZc2SKXxMmUqniJNEk84VNjQk283rGOmH9XOxLBhj4z90nhMEHJjIG_nsATxWs0dUdTOwCIJ6BQ','My experience at signature was great. The staff at this location is very friendly, patient and makes you feel comfortable. Dr.Wang was very detailed and patient, he listens and he makes it way easy to understand what’s going on with you.Carly was super friendly and welcoming. Nurse Sarra and Tech Thelma and also Rad Sherwin , was patient and friendly. The staff are very friendly and heart warming I will come here anytime and any day. The experience is great','2019-12-24 01:42:06.217000','2019-12-24 01:42:06.217000',5,'lashawna white','https://lh5.googleusercontent.com/-v3lzz6N2vmE/AAAAAAAAAAI/AAAAAAAAAAA/5fAeX-b9nqE/c-rp-mo-br100/photo.jpg','12541597562633926366',311),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Qd9Uo75Iz7X_QeOP4li857szUmfBkiwnJHC4qPt_T4g1I_sYfoj1OnsRCxvNG9rMnWKkAZ7g22wADFTFCdHORgi9cLs','Good help, got me in, got me out. A++','2019-07-01 21:11:41.151000','2019-07-01 21:11:41.151000',5,'Taylor Sharp','https://lh5.googleusercontent.com/-xTT3oDCKOKs/AAAAAAAAAAI/AAAAAAAAAAA/XN0Mf49uRFY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5qdFpoaHmfw3cbnoLLD2Py2Uc04EsaiBAF37V18PJ5JL7oQDJEhoTi_iZueZzExTnMaTFJpSbx7Vo32otdmacA_ZEBKI','Very fast service, everyone here is great from registration to everyone in the back. Tricia B and Dr. Patel were extremely nice and made this visit a really good experience. Thank you!','2019-09-12 15:33:42.423000','2019-09-12 15:33:42.423000',5,'Angeli Garcia','https://lh3.googleusercontent.com/-SgzRxTO0iV0/AAAAAAAAAAI/AAAAAAAAAAA/uAfID_Un8vg/c-rp-mo-br100/photo.jpg','16389487648212004696',2915),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5QdxckOkeshZwYU8PtVveDouSWEOJYpinhEI-QIJqpMu4u8WShO0Ueiu5XQM5LUH_BcAGbieE0gBRKyKzf9Wh8Sb3YoQ','Doctor Vakey did a very good job explaining all the details regarding the visit. Nurse Jacob was great too. Very welcoming clinic where they show they care about you legitimately.','2019-04-30 16:13:55.852000','2019-04-30 16:13:55.852000',5,'Bryan Carbajal','https://lh5.googleusercontent.com/--KcNRRqu6hU/AAAAAAAAAAI/AAAAAAAAAAA/S3qDxwraaWo/c-rp-mo-br100/photo.jpg','16590124370714063921',3399),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5qN4WvTvPTuF1sMvkyhfLJzaUeCHppZmii8w9oi6uLNnBbOtni0BBLaEkxy8exaNXstPQHFOr1vGf312oQ12dveCZyUg',NULL,'2020-07-03 16:39:08.293000','2020-07-03 16:39:08.293000',5,'Lillian Lee','https://lh6.googleusercontent.com/-13bQ0R1SoEw/AAAAAAAAAAI/AAAAAAAAAAA/03c8CxwvMdA/c-rp-mo-br100/photo.jpg','3511292162159714121',21472),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5qpjWUPfk1F3goGx4WcvROXsw-5ZCL1AuOTwey8G-Arjcjj7WjP4tBdixsuIDTEVvCECE5wKje19YHTBC5xw5LKN32C8','Wonderful facility, friendly staff, quick service! Answered all questions thoroughly and in a way in which I could understand. The receptionist Shania S. greeted us with a smile as we walked in and gave us all necessary paperwork to fill out. Theresa M. called us back almost immediately and was extremely friendly yet professional while asking questions. Nurse Cheryl B. D. was very thorough with the discharge paperwork to make sure we understood everything, and Dr. Osiecki was extremely nice, understanding, and helpful when it came to figuring out what was wrong. Overall a wonderful experience here! Way better than waiting 4 hours in the ER!','2019-09-09 05:46:48.862000','2019-09-09 05:46:48.862000',5,'Kristina Skiles','https://lh3.googleusercontent.com/-vb2xtRF4NaE/AAAAAAAAAAI/AAAAAAAAAAA/fjUZHJ4EefE/c-rp-mo-br100/photo.jpg','6521947413723274945',8150),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5QR6obbXWHOPAf7Bd14wt3w-ZbhFoIa1WQkWDIRram5dD2KRj7Or51-m7CaFn5-LOUu1w2mu21-bY_xdh70xFY4J_3HU',NULL,'2020-07-04 06:36:50.901000','2020-07-04 06:36:50.901000',5,'Letsy Garcia','https://lh6.googleusercontent.com/-hefGmBvxrMk/AAAAAAAAAAI/AAAAAAAAAAA/LGHIav0sd_M/c-rp-mo-br100/photo.jpg','8918455867446117794',21501),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5QsJHE4pI9s1SJaaiuFSdRCpnxAhvKfAFuFKVDPB5wsgfGOjERp-9oj_095HcyUfI2yk-yE3fiNPONhhdqi8eEiEf4mE','Dr. Boester and staff could not have been better. I took my 20-year-old daughter with some very scary symptoms. I appreciated that everyone there listened to us and took the matter very seriously, which doesn\'t always happen when doctors are treating young people. I loved that there was no wait, that it was located near my home, and that they had imaging equipment right there. They did in 1 hour what would have taken hours in a hospital ER, or weeks if trying to get an outside consult appointment, then an imaging appointment, then another consult appointment, then a procedure appointment if required. We didn\'t have weeks. I am very grateful to have them in our neighborhood.','2019-02-13 18:03:09.128000','2019-02-13 18:03:09.128000',5,'Leigh Ann Moran','https://lh4.googleusercontent.com/-Jig2YNTbedE/AAAAAAAAAAI/AAAAAAAAAAA/CfmEOBHqcI0/c-rp-mo-br100/photo.jpg','14567670160750071148',1387),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5r48VoI7bpurfEUVUPM_xh8hzFz_n9mZqHQBf7pKXP7MI3rNXTWzo6e_Y1fWndhgbB363Ofm38kXyhLRVu-Yrm3wkt3k','I can\'t thank the night staff on 3/5 (Dr. Elsbecker, Marquita, Amanda, Chelsey, and Eric) enough for the compassionate care my brother received. \nMy daughter even got a teddy bear which kept us happy in the waiting area! We are so grateful for this Emergency Center and the staff keeping this place a South Austin gem!','2020-03-06 15:45:37.695000','2020-03-06 15:45:37.695000',5,'Edward','https://lh4.googleusercontent.com/-4Tm3zfgorHU/AAAAAAAAAAI/AAAAAAAAAAA/Fyr_1aC31I0/c-rp-mo-br100/photo.jpg','16891069708558046635',13913),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Rfou8LlVVrm9G6w36Ioso2iL3Uoq_6hF9McSKProHJ0v6qVQMLIZAjzGDfH-0mGRj6gDAEn1vHQ6Q7ARX8XzpLVta_Y','Signature care emergency center was awesome! I was treated Saturday. They were prompt, caring, and professional. I would definitely recommend this place. I had terrible gas pain that increased my heart rate. Thank you. Dr Annan, Jessica, Ray, Jay,and staff','2017-07-17 23:30:46.193000','2017-07-17 23:30:46.193000',5,'ov elva','https://lh6.googleusercontent.com/-Fjjg2KjufsY/AAAAAAAAAAI/AAAAAAAAAAA/P-m0oPyJWwc/c-rp-mo-br100/photo.jpg','8918455867446117794',9375),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5rgWShwLyu7VYfmUEQXWnwa0FsHQkqcsOwT7RqO2ZBqgc5efaHu2bAsCRpGdxLKQB-24i9h2JGdsVT0ulBybEThvTJRo','I went to the SignatureCare location on West Wadley late in the afternoon on Saturday to see about getting a Covid test. I was promptly and courteously assisted by Leah for over fifteen minutes. She very patiently worked with me to make a reservation on my phone and set me up with Paypal. The next morning I arrived ten minutes before my appointment and was immediately processed for my test and then tested, all of which took less than fifteen minutes. Dr. Appiah (unsure of his name) gave me the negative results about twenty minutes later, and he gave me some valuable feedback concerning my temporary medical malady of a few days earlier. All in all I had a very good experience. Kudos to SignatureCare.','2020-08-02 16:49:14.545000','2020-08-02 16:49:14.545000',5,'Robert Campbell','https://lh5.googleusercontent.com/-tm5BcLU6mfw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck0OvA9gNIDjlr2oLRt_DXgKi15yQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21831),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5rz6T1FJOINIMoNWWAA1k4KcUu8_4wLiaquoZnDbhP76q83f9iwj13T_vxk6C3uj7-R6QcSf7b9w_dts42aPhruQfFkc','Very clean and beautiful facility. The staff was very helpful and informative, truly appreciate every thing they did for my mom. Ashley s. at the front desk was very helpful and explain to me in detail everything about my moms insurance and how they would treat her. Both techs james and nanci b were excellent as they did ct scans and with the Iv. Alisha H my mom nurse was very nice and helpful made sure my mom was comfortable at all times and pain free and doctor Q. Henderson was excellent he was very attentive, informative and very professional. Highly recommended signature care emergency center. Thank you all for everything!','2019-06-17 20:08:51.405000','2019-06-17 20:08:51.405000',5,'janet solis','https://lh5.googleusercontent.com/-exNJiBu00vc/AAAAAAAAAAI/AAAAAAAAAAA/eyvQHAHf6io/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5S03gcTh3ZrPNsbBOqaLAhGBFtQNHmNomvoS7SGPyeZe4Yfhamb2dSc6NwHNjcAAjaoaBr2TQ0iqDTas_eOUWA2wY9EQ','I went to Signature Care Copperfield today and was pleasantly surprised at the personal care and attentiveness I was given in spite of all that going on. ( Covid). Both the Nurse( Kerensa) and the Radiology Tech ( Valeria) were AMAZING ! They explained each procedure and were personable and professional ... I went in with sharp chest pains and was in a lot of pain. They made the visit a wonderful experience! As did Dr. Thomas , I would definitely recommend the facility...','2020-07-14 21:57:12.170000','2020-07-14 21:57:12.170000',5,'stacee taylor','https://lh5.googleusercontent.com/-pr9Z7mO1254/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnkD9sFR1Xw-ighAOnN0sfYwlDyFA/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22096),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5s30gMUE_wzdxkbsHk6EE-iwzDp5SDkaX_RgwqRd8dhNLifBFUkbfrNkG4qlDQjigxfDq2qcPTzCihGDa6FZgvZOv9WU','We were in a room before I even started the paperwork! The staff is friendly and knowledgeable. Mercy greeted us at the front desk and made us feel welcome right away!','2017-02-25 20:05:12.230000','2017-02-25 20:05:12.230000',5,'Jay\'markus Smith','https://lh4.googleusercontent.com/-hFFo9EkU1QY/AAAAAAAAAAI/AAAAAAAAAAA/6rFugjnLoOM/c-rp-mo-br100/photo.jpg','14567670160750071148',1878),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5seSDUQ86o4YrkeFy7_wN5cnOt7muYcGlQj1NCwXn9vwnRUT0ftDODApR-n4fwMgluxh1DN5wnPFqRAFt6Cw5fo9iKyc','I’ve been to this place a few times now. First for my son that was hurt at a water park, then for my kids getting sick. This emergency center is always clean, unlike most ERs you dread going to. The staff is friendly & polite. Prompt in getting you seen & taken care of. They are our preferred emergency center.','2019-09-24 13:34:03.219000','2019-09-24 13:34:03.219000',5,'Stefanie Hilbish','https://lh5.googleusercontent.com/-JdsEmr5aVz0/AAAAAAAAAAI/AAAAAAAAAAA/AnQSXwl06r8/c-rp-mo-br100/photo.jpg','6521947413723274945',8130),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5sFuIk7hkOCgXqJsQkCxMheIxdxcggSBS4SPGT3asQW5RsYDHPocefG1xe1djPEjeE7bw9FfVmg-466Fpy6m4FAkXLQ8','All staff service was great on my visit. Everyone was very helpful,i will definetly recommend the place to my friends if they ever need emergency care.','2019-02-20 04:18:33.989000','2019-02-20 04:18:33.989000',5,'Gibran Calvillo','https://lh5.googleusercontent.com/-yG_OnrGA_-I/AAAAAAAAAAI/AAAAAAAAAAA/LAe4X-W9hJU/c-rp-mo-br100/photo.jpg','17898197009688164559',5843),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5SGLrwjqW20gGiOhr-EcguGORZXiLpjcW525xK8lOXVrHVw_SOakrK65QqYaHCqQctw7wHePnANfwZbrMOPN5wcAgvyM',NULL,'2020-01-16 05:39:52.574000','2020-01-16 05:39:52.574000',5,'Julianna Barraza','https://lh5.googleusercontent.com/-xIMNdfrRabU/AAAAAAAAAAI/AAAAAAAAAAA/xl2Cp24y9kY/c-rp-mo-br100/photo.jpg','16590124370714063921',9753),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5sPvfTy_TXkrrlN6lzeolYia0IQU5Xgt5utH5pLWw8MJyRouI3plc4SHyoOmFrxWoxz2wHQBsA_3BVqkHh40fPCFYI2Y','Did a great job taking care of the patient and was in a timely manner','2019-03-12 18:46:32.809000','2019-03-12 18:46:32.809000',5,'Kevin Dorsey','https://lh6.googleusercontent.com/-CnobeHI3c1Q/AAAAAAAAAAI/AAAAAAAAAAA/6iEj-GizP5k/c-rp-mo-br100/photo.jpg','17898197009688164559',5814),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5SRZZPDCcMBvKLDf_k_IA0CT6rH5wdSMb7g22Jvuv7joAIlEE5O5ab3_8gNSad-4jMYvxC79IRw_4EeXe9RxPHBUIHMY','Before my uncle went to this facility to get a cut on his hand treated, I called ahead to ask for pricing and to see what the range would be for treatment. I was told if he needed stitches it would be $300-$500. He did not end up getting stitches, only a bandage and a Tetanus shot. When the appointment was complete I was asked for a credit card over the phone, as I was not there with him, but no final pricing had been given so I refused to give payment information. I called to inquire about the bill about a week later as I had not received it yet. Just received the bill 5.1.17, and I am in total and complete shock. I received the bill for $1700 for the facility and $500 for the Doctor. So I called because there must have been some mistake. I was told that there was no mistake, and this was the proper bill. I tried to explain that I had called ahead and $1500 was never mentioned at all about the general visit. If I had been given that information I would have never sent my uncle to this establishment. I spoke with several people and managers and they don\'t seem to understand the massive difference between what I had been told and what was billed. I was offered a 20% discount in the amount of $440, but this is ridiculous considering the caliber of this bill. I had an expectation of $500 after speaking to the facility about pricing, and still want to try to charge me $1760. I understand you cannot give a complete price until the patient arrives, however it would have been good information to disclose that simply visiting this facility would cost $1500 before any actual services were rendered. I am upset about this situation, but also concerned that other people may be getting taken advantage of as well.\nBe very careful about the information you receive from this facility.','2017-05-04 17:37:31.269000','2017-05-04 17:37:31.269000',1,'Lia','https://lh5.googleusercontent.com/-8vJUd7iukgc/AAAAAAAAAAI/AAAAAAAAAAA/3jyOdO7uog0/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5066),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5SUHhYIai49VVUkrHf7cLJDO3Juy1uFM7pU6zIGJ2IpnxDeXIhhVH-G4SGXs8qdudUwTNYZkIFzjchOJxYXQe8R_HVVA','Worst service, please do yourself a favor and find care elsewhere','2020-07-19 21:04:38.607000','2020-07-19 21:04:38.607000',1,'katie gonzales','https://lh3.googleusercontent.com/a-/AOh14GgwR8oHxmpv-TjA64SGSGIhTZ0suNP4AoL4DlURwA=c0x00000000-cc-rp','2694018788013845459',22120),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5svOLvT860zutuXkqQW1p6yZhwNktGGVBIG7tPK_H2N_AB1WJuPElkSZ-rWMXAYVX4Cv2LyvDQUwIOtAlAKfeKUKQhEc',NULL,'2019-08-03 19:46:24.967000','2019-08-03 19:46:24.967000',5,'Becca Chambers','https://lh4.googleusercontent.com/-HZJu7OG_x38/AAAAAAAAAAI/AAAAAAAAAAA/G3qnHWv2K2c/c-rp-mo-br100/photo.jpg','16590124370714063921',3266),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5sw6IXRMbh7PBa1ICfeShvk3LyMRRpce9OqSg3OBt2XJKALZK0medLsKFhiqTHvmRnCCzrumXnblekcX0AYlvz8t1x2k','Great service, attentive staff Dr. Nyuyen, Karen, Tricia and Sean were great! Specially Patricia great service.','2019-08-30 21:14:07.322000','2019-08-30 21:14:07.322000',5,'Nancy Lara','https://lh6.googleusercontent.com/-76bOQmFVc1s/AAAAAAAAAAI/AAAAAAAAAAA/Id5HcboqXQE/c-rp-mo-br100/photo.jpg','16389487648212004696',2960),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5sZZszTJMhdS24fYYZhUgnPb14KoxhRHAMk3Z3HcnRKtdnGn-scq-6uTu4N2JbpcLnj7MJMjt2owEQDrHRk9daoMWpF0','As soon as my wife and I walked in we were taken care of immediately. We came in after midnight too. Paperwork came later, it seems as if their priority was the patients. The staff that took care of us were a group of women: Olivia, Tiffany, and Joy. They did their testing with the machines they had at the center and evaluated it. The staff that were there They recommended us to go to the hospital. They took care of everything as far as the transfer goes and wished us good health. Overall very friendly staff and good atmosphere.','2017-04-07 18:24:47.965000','2017-04-07 18:24:47.965000',5,'Osvaldo Hernandez','https://lh5.googleusercontent.com/-FWYtucuQKsY/AAAAAAAAAAI/AAAAAAAAAAA/K3G2uv-cQX4/c-rp-mo-br100/photo.jpg','14904078213800803294',2373),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5T0kU8bOXFI1wDEkwvUlgK1aIgu1boiXNqRMu6XtJ4HqtJ1PX5pjnHZpuVMwWBteywCTNMO0gNVHb2cvTwsXdpbcO2VI','I came to this Center from a three hour wait at the Emergency Room around the corner. They were very quick in getting me in and out and on my way. I will definitely visit them again.','2016-10-04 23:58:05.906000','2016-10-04 23:58:05.906000',5,'Ashley Perez','https://lh4.googleusercontent.com/-XjXKzXZWi1w/AAAAAAAAAAI/AAAAAAAAAAA/D55Zp8BY3tQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1961),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5t7lsLuNjERqg-wocm40kBkyGFxyB8W-f6SWFatRHN-OYK04JrYUkhRxaYROeyXKATyU-oXFDBItGTC513ABVWxzREY8',NULL,'2020-07-07 01:44:57.805000','2020-07-07 01:44:57.805000',1,'david escalante','https://lh5.googleusercontent.com/-jlC_oT_CGEQ/AAAAAAAAAAI/AAAAAAAAAAA/pU8Wxd5w7vQ/c-rp-mo-br100/photo.jpg','8679688254631342173',21301),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5tD5B2-Lzp2T0O8r6oytL9YUOfK1qT6J0qd3qHEHhEmHm3dxaO8Dsqq8XyglCNknzF8t-srQY0_RXaVPV0KVXI9wif4E','Everyone was pleasant and polite','2020-07-28 07:08:44.010000','2020-07-28 07:08:44.010000',5,'Anita A','https://lh3.googleusercontent.com/-6UtyeJrc7wg/AAAAAAAAAAI/AAAAAAAAAAA/BwGPEWIr6NI/c-rp-mo-br100/photo.jpg','14748677429039074158',21908),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5tE-aiIF-YFgRPoL2UFb2XjK8DdjCvm0uxKVnnX13X37hf1e83N3QbBUkIJa5zxJjg4mEmFa16DMJCYRn2b6bSl10w7k','I went in for a stitches for the top of my foot after a moving accident. I didn’t want to go to the hospital and wait hours just for a couple of stitches. This place was close to my house and convenient. My insurance hasn’t started with my employer but they were happy to help me. I was welcomed rand taken to the back right away due to the bleeding. I never had stitches before they were very comforting and considerate of my fear. They took great care of me and I would recommend them to anyone needing great quick care. Thank you again guys!','2019-07-07 15:01:56.696000','2019-07-07 15:01:56.696000',5,'Amanda Getter','https://lh6.googleusercontent.com/-vt3YIOFHA-c/AAAAAAAAAAI/AAAAAAAAAAA/ILIxNyizm7Y/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5tjJ2VSJ8i9UweAU_yTHEGq_5HffIYfmfTurHyey8OY_QR8ayLi_tJsM0ccta4lpI3qKTZu8My4kUJBOBSe-T9E05ilE','Got into a room I’m not even 20 minutes. Full exam plus X-rays didn’t even take an hour to perform. Dr Miller was very cordial and fully explained everything so that it could be easily understood. \n\nDefinitely recommend this establishment.','2018-09-07 01:02:20.538000','2018-09-07 01:02:20.538000',5,'Ian O\'Brien','https://lh6.googleusercontent.com/-Bfz7yg9AjVw/AAAAAAAAAAI/AAAAAAAAAAA/naTn-tsyr_U/c-rp-mo-br100/photo.jpg','14567670160750071148',1527),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5tJn-_iAqbREotv7QwzKulfPn-cGY0Srk33g7TO3GDR_0vIMZwYW-aorIMSBj_FoSbxRksfwQb7DqW1gac0Lz3fWqtXQ','They treated my husband and wow what care! All the staff, Dr. Wang and Kristina thank you so much you were all amazing! They sincerely care about the health and well being of who they are treating! If there were 10 stars I would check them all.','2019-01-05 17:14:59.912000','2019-01-05 17:14:59.912000',5,'Tess Tank','https://lh4.googleusercontent.com/-IKr7l-0RTPw/AAAAAAAAAAI/AAAAAAAAAAA/nW1sWryq4_Y/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',575),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5tmvEwZ0y83fQ2E84dASzJu8O0PaHD8fh8RErrSfnSM0WlmXO5BScWfUML_ZfW05LtLojkPv4gQHZ83oR06dQMkZXL1E','I was there last week for Covid Test. Staff and providers super kind. Place was clean and they were having a great protocols and great social distance between each other. The situation it\'s crazy at the moment so their system changes ofthen. I appreciate their service to the community.','2020-06-24 02:50:05.444000','2020-06-24 02:50:05.444000',5,'Ramon Villarreal','https://lh3.googleusercontent.com/-OwQwKpEIYZE/AAAAAAAAAAI/AAAAAAAAAAA/cLFFsxCjMb8/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',20978),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5TQ3GsV0q2rME1NeUW7enn7gDkka9STfC_J9onqf9_Lux4k75W9RyPcxJM-DvGrGUdFEabKoTuunPuXmdeVAb1GMP0ks','amazing.different staff on both visits but both times everyone from the front desk to the Dr was great . Courteous, attentive and knowledgeable .I\'ve been there twice and both times left completely satisfied with the service I received .convient and fast.','2018-02-10 03:13:58.863000','2018-02-10 03:13:58.863000',5,'Lesley Love','https://lh4.googleusercontent.com/-GkTR51ZeVHk/AAAAAAAAAAI/AAAAAAAAAAA/w8Kbi4plP24/c-rp-mo-br100/photo.jpg','14904078213800803294',2284),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5tQDOt49HJb1GZG0oc95kD2DbA5vxrWY-HaO9fcj2ErBb0hhIJpRtC0wkNqUCv3Yp2uwO-mP4_dU5FbPfDYIFMyi4edw','Friendly and helpful customer service over the phone and upon arrival. Lorena and Victoria greeted upon walking In and was very patient and helpful with registration. Overall quick and easy experience that I would greatly recommend!','2020-07-26 17:03:39.083000','2020-07-26 17:03:39.083000',5,'Jelecia Killebrew','https://lh6.googleusercontent.com/-SXTDwwm6NM4/AAAAAAAAAAI/AAAAAAAAAAA/gQDdliAwzh8/c-rp-mo-br100/photo.jpg','16590124370714063921',22020),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5tRpW3l9DeuI_ZHTy9BlhhJuEZzlKoA-t9Bd8-a72kVUx96oR6eVSN_Jp-xGBVFmUKKLnM55Z4EE1ID-veAayjvbgthE','They we\'re great at diagnosing me and my son with Flu B quick and efficiently! They we’re very thorough and made sure to test for multiple different things! Dr. Herbert and her nurses Alexis and Sita were very sweet and wonderful to us! Thanks y’all!','2020-02-03 03:20:14.244000','2020-02-03 03:20:14.244000',5,'Gaming & Golf','https://lh3.googleusercontent.com/-QWLZe_HGK2M/AAAAAAAAAAI/AAAAAAAAAAA/wheczidFS6M/c-rp-mo-br100/photo.jpg','13486358490203335051',13442),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5tSRBGUhZZlZhDW4f4pCCKEzCIyRH6fkFzU5OPISvmS19IXdJk_mXmtwOhXOv0fK7dET5D1BCds6zml-dLKYr2mXtDeQ',NULL,'2019-01-04 19:21:43.369000','2019-01-04 19:21:43.369000',5,'Taylor Lane','https://lh4.googleusercontent.com/-R-xF9f97n60/AAAAAAAAAAI/AAAAAAAAAAA/XTlOVIYibbk/c-rp-mo-br100/photo.jpg','8626688543755174284',8607),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5U-Xf4DZCvTN-ZSPCKaJU6wwvY7c9x383vMiNkPQjebov2qh_tELCiFSkjEUJkwibI4wJN7tt48SumtSh8GDpHahMKKk',NULL,'2019-01-15 19:30:23.420000','2019-01-15 19:30:23.420000',5,'Brittney Smiley','https://lh4.googleusercontent.com/-o0Swsey8jxE/AAAAAAAAAAI/AAAAAAAAAAA/Ti-42UFwalU/c-rp-mo-br100/photo.jpg','3511292162159714121',7478),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5U3wS372fc5Na9aBXS6ol4ZaCUMAMrBVE3cipQuFaZgoJMHZ7yxpd0YhstgLsVUygRPXBjQmyfb1Q2LfQ-nPF-Xy7-Ao','Very friendly staff Naomi, Sarah, Nancy and Dr Pham everyone was professional fast and friendly service no waiting always professional. Thank You','2019-07-29 20:34:29.836000','2019-07-29 20:34:29.836000',5,'Melissa Ruff','https://lh6.googleusercontent.com/-FUXSUezo7Kk/AAAAAAAAAAI/AAAAAAAAAAA/a9ORwiMbmkw/c-rp-mo-br100/photo.jpg','17898197009688164559',5617),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5UCD_0mLZlSV9_zOrnkfVgRURREd2Wq0QY-EoNIE_E-tsk1v7JnLez_c7QQBoKJtEkdIPjNuwZZ4A-zL3KEZgrmDT710','Great and fast experience. Thanks to Dr. Yost, Mollie, Shannon, Tobie, & Shelbie!','2020-03-08 06:50:15.063000','2020-03-08 06:50:15.063000',5,'Mary Ann Bennett','https://lh3.googleusercontent.com/a-/AOh14Ghki-H_Gy2LPaj4s78yJXLnk284EQ4sYI5afn0vKw=c0x00000000-cc-rp','3272657195432704501',21139),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5uf4ezGlp7hy-miw1ljI0h_jdfMFNqcpqrVk-KRm5TgwT_CUv1wqycls0uLC3ekVPSz6vb6j55vagDPU4kIU8i4-WJW8','I was very please with my experience at SignatureCare Emergency Center. Dr. Jordan M Smith, DO was very professional, caring, and had wonderful bedside manner. My entire experience there was wonderful. I went in for severe migraine pain that was treated with in 30 minutes of me checking in. The Nurse Jordan was nice and very gentle when administering the medications . Beyond pleased with the care I received last week. THANK YOU SO SO SO MUCH!!','2019-09-17 18:53:27.019000','2019-09-17 18:53:27.019000',5,'Rocio Marin','https://lh3.googleusercontent.com/-uacBZJdADkU/AAAAAAAAAAI/AAAAAAAAAAA/qmL5iFC4Ww8/c-rp-mo-br100/photo.jpg','14904078213800803294',2095),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5UKkTpk_mqYKw8O81NyGjoq0Rf4jZFZathCGMinSX00DfIN29TKZ_20lr8l7KXgGR7PqJdD2njBTLynuCp3H1uV6LmVk','Such a friendly and warm staff! Diem, Vivienne & Dr. Akuniyuli were the best!! Great service and informative to my situation!! Thank you Signature Care!','2019-09-13 21:32:34.791000','2019-09-13 21:32:34.791000',5,'natalie blake','https://lh4.googleusercontent.com/-venFjwJjMlQ/AAAAAAAAAAI/AAAAAAAAAAA/0cs9LcMf_XE/c-rp-mo-br100/photo.jpg','14567670160750071148',1241),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5uKpD-VbaD34-V5l66SYn0770P2IQNNiNUaRAOEy5xpgSOg_Nhm9AfIEvOdUN1xQYa6bERj0_FR-htxnJIPxE61-oqyE','By far, this was the best reception, attention, and medical care we received in many years. The accessibility of the location and the services were excellent. They truly worked together as a team. Everyone of them were exceptionally considerate of our circumstances. This was a humanizing medical experience. Thank you to the whole team.','2018-10-01 12:31:41.944000','2018-10-01 12:31:41.944000',5,'Gemma Olson','https://lh4.googleusercontent.com/-JAUttmMwtXc/AAAAAAAAAAI/AAAAAAAAAAA/bUcztkWVTlU/c-rp-mo-br100/photo.jpg','17394740196501090048',4779),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5unz5qFhkeySR8kdndlnS43juf4pNjgW3fVPtoT0pNC-bNYxl0_lUkX1JFwegk8aqdXAfBchUZwO10ERkdqw55eJ-EcE','Dr. Braun, nurse Feagan, Tiffany at the front desk and everyone else helping me at SignatureCare - The Heights, was so kind and pleasant. They all went out of their way to make the other patients and me feel comfortable. I would most definitely recommend this location to anyone.','2017-06-27 02:08:34.765000','2017-06-27 02:08:34.765000',5,'Mayra Cortes','https://lh5.googleusercontent.com/-FPfmXK8y1HU/AAAAAAAAAAI/AAAAAAAAAAA/-BZbU47iq78/c-rp-mo-br100/photo.jpg','14567670160750071148',1804),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5uqUpekaQ3j80tVUz26ZozzN7ZZ4RkbME-NPtklmNtWVTE3Zf-J47frnFFWoqBd1MPsXffwl4fcvn2ze6th3pJSeaY2g','Very fast and helpful, super nice and great staff','2019-03-25 15:07:45.504000','2019-03-25 15:07:45.504000',5,'Collin Schraven','https://lh5.googleusercontent.com/-kczvINB0X9U/AAAAAAAAAAI/AAAAAAAAAAA/gd_SO1miKyY/c-rp-mo-br100/photo.jpg','16590124370714063921',3484),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Ur8ESmW9UhdBqyJiIET_DwIO9pqijmNfbmKlJlkR_QBCCMBP3_G4fAmMUGsL9LqgbsTy-0UFGyxS9nAZVYQ2gG3JX6A','Marty, Andrew, Dr. Leung, Adam, Christina K, & Cristina C were all VERY helpful. I’m very new to the area & came in with a very bad sore throat & was greeted with warm hospitality & smiles all eager to help me. The warm blanket was also a major plus! Clean facility, fast & efficient service as well. Got me in & out very quickly!','2019-11-05 17:04:53.984000','2019-11-05 17:04:53.984000',5,'Kaci Hansen','https://lh4.googleusercontent.com/-t8BzzRiJ-6M/AAAAAAAAAAI/AAAAAAAAAAA/0qJgGetoK4s/c-rp-mo-br100/photo.jpg','16891069708558046635',4159),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5urGCP-QlYADg1x2MaOXBrzp210lt-QQqmL6-uxllwsJAE1sb-1zXb9HPTf1fcSPpQkBDXK2VJZAJJX1BNr-Z2GP_w6U','I\'ve felt terrible for a few days, but as soon as I walked into Signature Care\'s Bellaire location I felt the first day of hope. Delicia was warm, friendly, empathetic, and efficient. My nurse Duke and Dr. Cavazos assessed and diagnosed me, while making sure I was comfortable throughout the process. I highly recommend this team for your urgent care needs.','2020-02-05 17:13:32.040000','2020-02-05 17:13:32.040000',5,'Cicely Benoit','https://lh6.googleusercontent.com/-CE4-UaW91Kc/AAAAAAAAAAI/AAAAAAAAAAA/aFQHeBjURx0/c-rp-mo-br100/photo.jpg','8679688254631342173',14760),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5USvF_hwAmBJ4rKmkfIM1o5VefZ9s-a9IDAG3WPNIQw4zirj7BSj89wbuToPVEYiRiZm7_-T9kLCiXDaiJOTikoGkFwY','I am so in love with this location!!! \nThe staff is so welcoming and inviting, everyone from the front desk all the way up. I went in to check out my sons ear and they kept this frantic mother calm the whole time. Very fast service','2020-02-04 16:00:00.514000','2020-02-04 16:00:00.514000',5,'Crisstian Mechelle','https://lh3.googleusercontent.com/-vN-EV3RnU1M/AAAAAAAAAAI/AAAAAAAAAAA/4jT-2Tfa1aY/c-rp-mo-br100/photo.jpg','12541597562633926366',10534),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5UUc5_Ix3jrK7au6yI00fpjx93GIYHvIBvK6ZXU1QSaW2ITaQYu-BvZZV6FylmXdIUk4Qmm1VFvgBnrCEfBuRvFOpKSU','I wish i could make this place my regular doctors office. They are so kind.','2018-05-10 01:52:04.637000','2018-05-10 01:52:04.637000',5,'Cathryn Lee','https://lh6.googleusercontent.com/-41Qg9xZhF40/AAAAAAAAAAI/AAAAAAAAAAA/DtNbceCZ8Mc/c-rp-mo-br100/photo.jpg','16891069708558046635',4483),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5uXSVkswUz5y1kMZaNtO4muE9L8XdzcTcwIvB_dEeuqJSI-NhG9bxT_OLfvDqcumwbyxVooYPwwBGSN4VCc9YGy2-orQ',NULL,'2019-12-04 21:31:30.376000','2019-12-04 21:31:30.376000',5,'Samantha Twardowski','https://lh3.googleusercontent.com/-lsD2-3EQVLE/AAAAAAAAAAI/AAAAAAAAAAA/SvYG7rKLTZg/c-rp-mo-br100/photo.jpg','14567670160750071148',1185),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5V5rIvTx1FiRtniWV9Zwkx5OZkT5G1qI6TARQdUD3sQyadbwhOd6HWFYeN8FNptQOUTZ_ZmtDWmlABGx_RWox8BluSB0','I love using Signature Care ER. I always get exceptional care from stomach bugs to a simple hand sprain. The staff is knowledgable and friendly and you leave there with confidence knowing you were treated with utmost care.','2018-01-15 23:28:17.305000','2018-01-15 23:28:17.305000',5,'Kara Fraser','https://lh5.googleusercontent.com/-Sw6lTdUvqXA/AAAAAAAAAAI/AAAAAAAAAAA/Jtd3la7_2Lc/c-rp-mo-br100/photo.jpg','14904078213800803294',2291),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5V8sUB-ekMtamuzMkHNhDhXy988lvcn-vYg07acJMG0DX1bZpJUgvvdWQrPhDQQH88LWSTi0E51qqiHMNl_atRs_tilk','Everyone was very kind and I was in and out quickly.','2019-05-21 01:09:17.829000','2019-05-21 01:09:17.829000',5,'Tracey Archer','https://lh6.googleusercontent.com/-TFQ1SGJBJD4/AAAAAAAAAAI/AAAAAAAAAAA/ZXC7S26txBA/c-rp-mo-br100/photo.jpg','6521947413723274945',8270),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5vagEFFDbUiSgH0ynQGqhPrW52kLW7Qc7owwDeeWFGG4-0jmKo4bREjwSQ0NxFkwaMqGi8cWvgsEGoMgZj2gLVAQzXJI','Dr Patel and Alvean , Tricia ,and Patricia are all great. The service here is great and so are the people.','2019-10-24 21:19:30.858000','2019-10-24 21:19:30.858000',5,'Terrance Bass','https://lh5.googleusercontent.com/-O7_0Gu6Gf1w/AAAAAAAAAAI/AAAAAAAAAAA/HYYBSd8B7_M/c-rp-mo-br100/photo.jpg','16389487648212004696',2777),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5VbfoVFI07PDkqQM4q0VM8oGztyxO9BDZp_ZrTgdROb2USYyxxXUYWjknohqOc90N99liaI8PAWaX9j6upAxogK25C5w','Every staff member( Kimberly p, Vanessa z, Christopher c, kelly b, reginna l and doctor miller ) was kind , caring and very prompt . I highly recommend this emergency to everyone','2020-02-07 18:19:00.061000','2020-02-07 18:19:00.061000',5,'Shumeria Gains','https://lh6.googleusercontent.com/-ZIE8lLzjiqo/AAAAAAAAAAI/AAAAAAAAAAA/j6S9MskzNLg/c-rp-mo-br100/photo.jpg','14567670160750071148',13550),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5VCdkv-BmR5ODYZgPgJoiw-GBQZCRfvYriF-ECy3tkNPpGgJmxGYxDRlR4Sy4Mq56K0xiYTmC_kFVUxmIcZnSTfUbqPA',NULL,'2017-12-11 15:39:01.241000','2017-12-11 15:39:01.241000',5,'veronica hinds','https://lh4.googleusercontent.com/-3RSJY9FeyfA/AAAAAAAAAAI/AAAAAAAAAAA/EFAYF-84XZ4/c-rp-mo-br100/photo.jpg','8918455867446117794',9327),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5VcQZqTdlT5Hn4GB3Fa7wCEDRy0V7qohYFd-A7P0X5yBxWcPWcJP0vyKjPCJU09Y-mu1gNLLJrV-oigOQpKIJ_F1DhUQ','I came here for a medical emergency and they took me in right away. The service was great. I am impressed with the clinic and I’m happy that it’s close to me. Niki (RN) is the sweetest nurse I’ve ever met. Lindsay (main Doctor) was awesome, and Amy was personable and positive. Thank you!','2019-03-12 02:40:18.914000','2019-03-12 02:40:18.914000',5,'Savera T.','https://lh4.googleusercontent.com/-BxuclF5i4kI/AAAAAAAAAAI/AAAAAAAAAAA/UjMAIrG6mpQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1369),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5vD77eDTd5FKZ2JCqTkyHz0UDXiVW0yRfKRV92DLv09etnBx5yZ6te9IiFVLL75XLLJgkJQL7StE5pudG6SLi6MbF9GE','Yea I waited 30 minutes and no body came out so I think I won’t be going back there EVER :)','2020-02-16 17:23:13.995000','2020-02-16 17:23:13.995000',1,'Shadow Cookie','https://lh6.googleusercontent.com/-vHfOzPt86zw/AAAAAAAAAAI/AAAAAAAAAAA/Ubpq1lzRhGI/c-rp-mo-br100/photo.jpg','8918455867446117794',14823),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5vkkLNGHvHvrSIrzdQP_KmrVDMZRdn08WsT4UqBb_fmovc4diwWEYR2Urir1rQmxwFbypsy02S5BDzXBPYAl-lUmUw2w','I was a patient here after I passed out. On entering the facility, it looked more like a 4 star hotel than a typical ER. I was taken into a room within 5 seconds and the nurse immediately triaged me. They took great care of me, quickly and efficiently. Everyone from the registration clerk to the nurse to the technician to the doctor was FANTASTIC! I would highly recommend this facility to anyone who has an urgent medical problem.','2017-06-26 15:43:43.276000','2017-06-26 15:43:43.276000',5,'Huan Ngo','https://lh6.googleusercontent.com/-XTR3DoHBlKw/AAAAAAAAAAI/AAAAAAAAAAA/Zx3YrFicsTA/c-rp-mo-br100/photo.jpg','14904078213800803294',2344),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5vryuG1FOynNE9qqBDzLknJkLA5Vm_fdvyzKbokMm7QqFSut8gYH2sbpCFRRcwTFQj4bRYP64IgMTKQXguf3eCxuufOA','Best ER! Tobie was fantastic at getting all my mva stuff together for me and DR yost was great on getting my pain under control fast! Thank you Sarah for giving me the best IV I\'ve ever had. And thank you to Katy for taking such great care of me you are such a great nurse!!!','2019-10-17 02:25:29.261000','2019-10-17 02:25:29.261000',5,'Courtney Timmons','https://lh6.googleusercontent.com/-I6TcylnKpcw/AAAAAAAAAAI/AAAAAAAAAAA/7S3DajVDgxA/c-rp-mo-br100/photo.jpg','3272657195432704501',6880),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5VYTFhW9d9DOgCHCjUDzlbi_mrBc8GhHyMt5kzcH43sLldWbNeanxolsAtkAaA3MB6jwnBGD2mbeE3jAy8n9tBUg1MLg','This was by far the best experience I’ve ever had! Went in for an allergic reaction I was helped right away with registration with Delfino he was very helpful beginning and at the end of my visit. I panic at any sort of clinic er etc. The RN, Katie I believe was her name was Amazing she talked to me through every step she was very patient with me and I loved that. Doctor WANG was I credible had a lot of knowledge and his diagnosis and treatment was on point ! I highly Recommend them !','2019-08-05 16:17:36.247000','2019-08-05 16:17:36.247000',5,'Vanessa Juarez','https://lh3.googleusercontent.com/-3Ypb7J1Qwp4/AAAAAAAAAAI/AAAAAAAAAAA/-i2WSv0KwbU/c-rp-mo-br100/photo.jpg','16891069708558046635',4226),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5w2uEgphuRuzjHqLuOEQxXyBiFo-gqELs_GhGXjpQjTwWYkmPXsQvy3DyxgsiC8gVcKaVKaNov-VR9JxIzfwbYmHj0ls','Experience was great. I was in and out very fast.','2019-02-21 17:21:20.983000','2019-02-21 17:21:20.983000',4,'Jonta Joubert','https://lh3.googleusercontent.com/-fqMo87XLAEQ/AAAAAAAAAAI/AAAAAAAAAAA/jHbUxg8VfJ0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5W5m5igYT6XeRUwz5L8sHW9z-UAsPRn3Z5ZN78qNkID5-ldnZ_SUHNnGwaWFaiM4wH-jMrTa72lbrGxpQCglxQsF76XU','Great experience. Friendly atmosphere and had free snacks and drinks while we waited. Alyssa was awesome and very informative!','2020-01-25 14:25:54.466000','2020-01-25 14:25:54.466000',5,'Kalill Harry','https://lh6.googleusercontent.com/-wRJTYXetBxo/AAAAAAAAAAI/AAAAAAAAAAA/F9krJcOefMY/c-rp-mo-br100/photo.jpg','8918455867446117794',14865),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5w5RWqRB7ynpUvrXx75PfhE4L_30-IfTVhtukcoe-GHssNpPbS7e8bfDQNSpuuSlFvuNv1iIDGs0z3gLoopSIfuzSV6U','Blake and Theresa were very helpful! They offered warm hospitality to each of us! They helped us really quickly we were out in no time! If you are in need of help and feel bad I would definitely recommend Signature Care!','2020-03-02 01:11:17.889000','2020-03-02 01:11:17.889000',5,'Abby Lewis','https://lh5.googleusercontent.com/-ICcRFF-FQjk/AAAAAAAAAAI/AAAAAAAAAAA/wSWPF6xTDrQ/c-rp-mo-br100/photo.jpg','8679688254631342173',14714),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5w8vKrkXYLUHNIigdiqjuN7ldTr-JihygEV78tp3pHU4sh86y5BliSPOAsZGY9XF6LGIbNOf1F0N4_Hz_2D3eiIPu_cA','They were absolutely amazing!! Dr. Anders is a honest and truly healpful Dr who answers any and all questions. Nurse Darhiel was very helpful and catered to my needs and made me feel secure. Tech Johnathon is so helpful and kept checking to ask if i needed anything to make the stay comfortable. The receptionist Olivia was more than welcoming and truly helped explaining all the paperwork. Every staff member there was truly helpful & friendly even the security guard!','2018-09-13 04:13:37.274000','2018-09-13 04:13:37.274000',5,'Jessica Drobnick','https://lh5.googleusercontent.com/-JINhHWC8i0E/AAAAAAAAAAI/AAAAAAAAAAA/EfnXPWOpvWo/c-rp-mo-br100/photo.jpg','14904078213800803294',2216),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5wJVSwFJf7tXOJ576nDArvssaRZUpFpPh2lpFTM-uD1zeHyfYvmkpV5l8w4TD_DsjWP4Sbn7rLiLH9TeRfQ8pC1WWuyI','Always Wonderful. Fast n friendly. Theresa was AMAZING!!!','2019-05-21 00:02:46.455000','2019-05-21 00:02:46.455000',5,'Adrian Guerrero','https://lh6.googleusercontent.com/-w9mYJwvXKVA/AAAAAAAAAAI/AAAAAAAAAAA/ZsJnsEvJi5s/c-rp-mo-br100/photo.jpg','6521947413723274945',8271),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5wk__G0RIIvpUQjE_VBw_rbV0FkOuJ3ebvJAbf2v0hXVfnMle_9SR6Tod60STsVnd-VQ_pCDNQ5HxxHvCNmRO8rQUgew','Good medical service with ER Tech Leah , she was very professional and caring for my treatment and walked me completely with the process Easily.\nThank you as well to ER Tech Kramar. It\'s good to have people who really care for you and treat you as family.','2020-08-01 20:12:21.120000','2020-08-01 20:12:21.120000',5,'Jessie Nino','https://lh5.googleusercontent.com/-z2u8RS6-3zc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck-uw0o8JGPMzpQVwKifvR9AOR8zg/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21835),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5WTPtu9Mtd7dfolFItRSXVqtDKEjf-75yB__3N7rKwEbfnU_05zyQbZIhybY1BiUT7JuL1C40Spb_HUMu3FM-m_C-10A','Great service, staff was very friendly','2020-03-13 01:08:28.803000','2020-03-13 01:08:28.803000',5,'Durrell Edinburgh','https://lh6.googleusercontent.com/-Xrx11bXah2Y/AAAAAAAAAAI/AAAAAAAAAAA/5bE9ZRucBL8/c-rp-mo-br100/photo.jpg','17394740196501090048',21063),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Wvw3CiecqjMN2uGNoPa0J6d_h5si6BEzA_ESnoThUrw80RsHGjLLjNASjXGOIw-C_6pTxv7fRZE5khwJgq-oU6GxC8M','This was the Best Er-urgent care I\'ve been too. Everyone was so professional and personal. I was seen in a amazingly timely manner within 5 mins of being there. I loved everything about this place.','2017-06-02 08:53:36.731000','2017-06-02 08:53:36.731000',5,'shermaine Jackson','https://lh4.googleusercontent.com/-DK5qsRkT9KA/AAAAAAAAAAI/AAAAAAAAAAA/sr2xiUjpGfg/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1814),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5WXdkqPIkdKQsD3tIBEYu7jtAGf8lafjwFVmAXsrEpjesyI4GHgVxjq_SNBixgUHozhFj2W9Choj41ixZC0n4nSWklmI','Dr. Anders, nurse Jacob, Natalie and Laura were very helpful!','2019-03-24 19:05:27.336000','2019-03-24 19:05:27.336000',5,'Vianney Sanchez','https://lh5.googleusercontent.com/-YE-8m0_JQD4/AAAAAAAAAAI/AAAAAAAAAAA/R1fDfuDfJgs/c-rp-mo-br100/photo.jpg','16590124370714063921',3485),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5X6b_7VkFEDkkvnE0K_-uuhCV2nK5adTF3NQSDaS0dUpRpku-8yt-29YPn6uu6lr24TlLdMfbrdtP2kCA8VrZpiCBiOg','When I walked in the door I was greeted by by two bright friendly smiles, Mercy and Hillary. I was quickly brought to a room where Dr. Yousef provided a quick evaluation of my condition and my nurse Kristina treated me with great care. Great location! Friendly staff.','2018-10-23 15:38:54.024000','2018-10-23 15:38:54.024000',5,'David Skripol','https://lh5.googleusercontent.com/-QKCknF4OGqk/AAAAAAAAAAI/AAAAAAAAAAA/aVBVmt_C-5s/c-rp-mo-br100/photo.jpg','12541597562633926366',594),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5xA8XSeDJBVLSvksbU5SS4Dyrzl36LR4XtB-bvcU0DtdZ2Pujd0mGbzp54iTUmoRgUD785JvgEyWx6I6LQvTCE0_myrQ','Great clean place.Very nice and quick to take care of me.','2019-08-12 19:41:47.611000','2019-08-12 19:41:47.611000',5,'Amber Elise Campbell','https://lh4.googleusercontent.com/-zcBuHhLPY2A/AAAAAAAAAAI/AAAAAAAAAAA/7WvSh7zgUnc/c-rp-mo-br100/photo.jpg','3272657195432704501',6917),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5xAp-4_0cVGtTQVGhy_lUbrrA0ikKZYi-mhBW4Byjab8O_-l9c-2VS-pIjVPUbtAqlSDoaB7sYLqGpep95La-4IXpVxA',NULL,'2020-07-26 01:20:01.135000','2020-07-26 01:20:01.135000',5,'Olga Zermeno','https://lh3.googleusercontent.com/a-/AOh14GjRkAOQTzk-PPEBh0-y4dboHfR5swSDMfrmQlBo9gw=c0x00000000-cc-rp','3511292162159714121',22151),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5xb3aauw0IuZRti9RLw4KvNLfBuJVvXXfdCOB12Ym1CoDLTauh9tKxaJ6JhT-k47mQnUCKpIludMW7NgoGUVm5nL0UT0','Greatly cared for throughout my entire visit.','2019-11-04 14:29:30.111000','2019-11-04 14:29:30.111000',5,'Anedra Berry','https://lh6.googleusercontent.com/-dhQpEUXD9wk/AAAAAAAAAAI/AAAAAAAAAAA/2fS8oHRyqwE/c-rp-mo-br100/photo.jpg','14567670160750071148',1203),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Xe46zfAgltXXfwvU8pGBJ3tQ3y9-0-XXi3Vi7jV-tI1BZ-YqoXBEWMJ1ZVua5dLV9LlX-heRadzP4AU52lS4DNhuHyc','I brought my daughter here after work. The entire process was smooth and easy as I was so sleepy after night shift. The entire staff starting from the receptionist were so friendly and courteous. Dr. Thomas came and explained her findings in simple terms. My daughter loved it!!!','2020-02-13 06:07:26.961000','2020-02-13 06:07:26.961000',5,'Leslie roblox U','https://lh3.googleusercontent.com/-RSFgz-Dw2ZI/AAAAAAAAAAI/AAAAAAAAAAA/iHW1A4ogGPg/c-rp-mo-br100/photo.jpg','12541597562633926366',13378),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5XhwvqlZgh6DqggG3OaBPbYwlAhEIQD6jjDFUwuiEmzozVI4z7khB5lnHNGV_lMn6PfGNfgMn4QjxoIg_xnpA9LIf6qc','Very amazing staff shanna was very friendly and very helpful has well','2019-12-16 02:24:36.136000','2019-12-16 02:24:36.136000',5,'Valerie Mendez','https://lh4.googleusercontent.com/-R8m3Qx9Imyc/AAAAAAAAAAI/AAAAAAAAAAA/HZ1Cj0jZkIg/c-rp-mo-br100/photo.jpg','6521947413723274945',8056),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Xk0Dw7Ngy6PzYb9pZlrVJFwd3a1chWRXb6xBUoJlsZrZQV81HS-JZAvJFftzznzAc66YF4njE_neHOBO44-N4BOVj64','I really like the staff here... They are really friendly and do their best to make sure you comfortable and well taken care of. My RN Mollie is a really sweet nurse. It’s like we became friends by the way she would come in and just start a conversation while she was doing her job. It’s just not a job to her it’s about the people. Dr Edwards is a cool guy.... He made sure I understood everything that was going on the things that he had to do. They have fast registration to get seen and I thank you Courtney. The radiology tech Eric is considerate of the pain you’re in when he doing his job. I want to thank all of for my visit a nice one. I feel like family almost.','2019-12-28 01:59:34.530000','2019-12-28 01:59:34.530000',5,'Calvin Carson','https://lh6.googleusercontent.com/-m5gKMJuZ2js/AAAAAAAAAAI/AAAAAAAAAAA/DXcByMUnXDI/c-rp-mo-br100/photo.jpg','3272657195432704501',6827),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5xmAtEquHMG7mdjFgOuvtCBrQWe4VKU2GsBCKJNESqxQ6amkLH9uhBU1-XS0RYK9_qZ5XIOXg4Jzze_oIBsCrbboLFAg',NULL,'2018-09-20 03:50:57.413000','2018-09-20 03:50:57.413000',5,'Fatimah AlShmmasi','https://lh3.googleusercontent.com/-VZJOw0ltWTU/AAAAAAAAAAI/AAAAAAAAAAA/PZ9XOVI7Vl0/c-rp-mo-br100/photo.jpg','3511292162159714121',7588),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5XnTuMGmE9rNaZs8OSOKPS7pRgPO-vQHsatCojN7y7s44Xxn0xA8lD-Ld-EWgNnoRWad74VINnnE7xiFWLWe5F9n8DS0','No waiting, excellent service from front desk through to the attending Doctor. My first experience at an emergency care and would not hesitate to return. My neighbor actually recommended them so that\'s 2 happy customers/','2016-04-27 13:40:00.778000','2016-04-27 13:40:00.778000',5,'Julie B','https://lh3.googleusercontent.com/-jtqkVNvayu4/AAAAAAAAAAI/AAAAAAAAAAA/Lb1QhI3Mtw4/c-rp-mo-br100/photo.jpg','3511292162159714121',8015),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5xooF1aDeTs8-1tcibw-8k5EP8pHft8Wvb6GUEE4XAWws-mS1dcDiVsXLOJdjjimVu3yTr1k74eWjLJup71tR7Ba4XR0','Had a great experience at Signature Care Montrose. The staff was very friendly and helpful. shout out to Norma, Churiah, Ke’Aire and Dr. Yusuf!','2020-02-09 18:38:33.533000','2020-02-09 18:38:33.533000',5,'William Trevino','https://lh5.googleusercontent.com/-K-y5-wR0uyM/AAAAAAAAAAI/AAAAAAAAAAA/r8yZkg5wWxk/c-rp-mo-br100/photo.jpg','3511292162159714121',14422),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5xrGkTZpiHPRfFU3IWoJjMl4JfPP1lQYaLMSHF7Q5Bodv8cSg4OAmE3enesWp394sP19YWmucGa3cGkaAgn_Xe7Rp1ps','The wait want long. I was in a situation where my condition could have put me the hospital at any given moment, but the treatment they chose stopped me from getting worst.','2017-08-22 20:51:57.050000','2017-08-22 20:51:57.050000',5,'stacey wiseman','https://lh3.googleusercontent.com/-QSeMY8a4Tds/AAAAAAAAAAI/AAAAAAAAAAA/MoIDz3cjDZ0/c-rp-mo-br100/photo.jpg','14904078213800803294',2333),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5xrqFLWTy5bLI1Ac79IyUYnhuvXwbig6Q7sCqQFmGLWiBEIP6rw4DPAIP5ynGh5fa36oLyIvdr-v2sb8A-PQfch-8BrM','Kimberly at the front desk was so nice! Dr. Dang was very informative and great too! They got me in quick, had friendly staff, and office is clean!','2020-03-04 22:51:22.440000','2020-03-04 22:51:22.440000',5,'Delia Meza','https://lh6.googleusercontent.com/-gc0mRiCebas/AAAAAAAAAAI/AAAAAAAAAAA/BvODg_cKFW4/c-rp-mo-br100/photo.jpg','14567670160750071148',20954),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5xYp9wqRcjpxaopTNyqNvS79a-oINoPxHFgBY7jX4SKHWzLYN40hh2GRcIVp85vYNL2GEYpkei1t6ZhpHRGUmBMg6Txc',NULL,'2020-02-26 23:01:46.495000','2020-02-26 23:01:46.495000',5,'Nathaniel McLennan','https://lh3.googleusercontent.com/-bdo5b7lHDF4/AAAAAAAAAAI/AAAAAAAAAAA/yIPqQc6_EBw/c-rp-mo-br100/photo.jpg','16389487648212004696',13759),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5XYRImFchzWB2bpyIxrT0OXeCWBzxeCKG9u97yf7pD1zpwwGZ69CsfN7soaseDBMlhsNP-xzdXFv8ySrgwuz2FLr_bsU','The thing I love about Emergency Care is how fast they are able to see you! If you\'re looking for a fast Covid-19 test I recommend going here! \nAmy,Juan and Sam made me feel safe and comfortable! Thank you for making the experience fast and easy 🙏 ☺','2020-07-27 12:27:28.762000','2020-07-27 12:27:28.762000',5,'Abigail Vasquez','https://lh6.googleusercontent.com/-zuRYgtS5gC4/AAAAAAAAAAI/AAAAAAAAAAA/W5Xau1Osie0/c-rp-mo-br100/photo.jpg','2077061009497551125',22811),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Y2T2E2lnSWMYVlbeZeOIOIygwIk6B7fYtQNxkNmRKRW55cuA6pGiOgh6YIMHeRrSlPeMowZNAGqPEH7uKC0kutiMioo','My friend came in and the entire team was super hospitable, respectful and professional. MMH has severely let me down in terms of efficient medical care as of late and it is good to know that there is a er in town with people who actually care for their patients; plus Lisa smells super good!!! *inside joke ask her when you go!* Seriously guys give this place a shot if you have an emergency, you wont be disappointed!!!','2019-06-08 18:08:18.064000','2019-06-08 18:08:18.064000',5,'DJ RTR','https://lh6.googleusercontent.com/-RJcK8vsMPKI/AAAAAAAAAAI/AAAAAAAAAAA/WPyAGacTsZM/c-rp-mo-br100/photo.jpg','13486358490203335051',980),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5yEON5zgYBNajAV_nloEy7zUJS_FHUa5xjutE2C5WrJoAKcOgtC80eZYhZZbchjcPmvKAvbaSNQLxTfZYHlQ4jMbnKpI','It’s exactly like going to the emergency room at the hospital only everything is new and not worn and torn.','2019-03-15 03:29:31.661000','2019-03-15 03:29:31.661000',4,'Dien Hinh','https://lh3.googleusercontent.com/-KS0waIbM7EQ/AAAAAAAAAAI/AAAAAAAAAAA/yKYS7uqWstg/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2159),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5yHjQOZJ8gr-_XoAQnryD2R_2UfIkkkPVhXkNFD-Vo2EGTutUGuH5kMSEgj5S4ia1Cqa6bS0UpyNC8mtiTsWH3ncYbr4','When I checked in I received wonderful service from the check in people all the way to my nurse and doctor! Overall great experience','2020-08-04 17:26:46.888000','2020-08-04 17:26:46.888000',4,'Martha Alvarado','https://lh3.googleusercontent.com/a-/AOh14GgWFNKDgVLvuRJM55HYmWZaS7FZzf1HGBj9mlfVgw=c0x00000000-cc-rp','16590124370714063921',21983),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5yPMjr-TMnZWmspbJgauw8cf1K1Vv2fX7LCsKZaL8iz_rIXf9qpN6JwYBLmaMipHY5wvy2TJ3cHQmltNGDtINM2n8kdw',NULL,'2019-06-27 02:04:17.287000','2019-06-27 02:04:17.287000',4,'Madison Montez','https://lh6.googleusercontent.com/-xbOPzjsyyKM/AAAAAAAAAAI/AAAAAAAAAAA/oB86nVOg6e4/c-rp-mo-br100/photo.jpg','13486358490203335051',916),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5YriT0XsKoO2RQLmJmgCPnD1CcyE9vRoTvrFIwLX7D9G3Kt0muCmCCDuchY3Mh5q-idgYdyPaLvcFUQp_WHGVqSlQN44','I went in because I suspected that I had an eye infection and my daughter who was also sick with some sort of virus, fever, etc. We were treated very well. The service was fast, the doctor was very knowledgeable and has a very pleasant, calming bed-side manner. The warm blanket was a nice surprise. I felt we were both treated very well. I needed a prescription and an explanation. I received both!','2018-05-18 14:51:39.566000','2018-05-18 14:51:39.566000',5,'William Procter','https://lh6.googleusercontent.com/-zrliJaW-eFE/AAAAAAAAAAI/AAAAAAAAAAA/Y5Gv6pkFAzo/c-rp-mo-br100/photo.jpg','8918455867446117794',9268),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5z-D9qJqINXcqSQbJbK-I-2w544j7Zs5fcE9SJ3Dfjy4yP-SREyXgbsHBrJYtejGbbENaiuefZXdTVPctcNtIgTAYWe0','They were fast to get me checked in and were very nice, friendly and professional. Best service for being an ER.','2017-11-30 19:47:33.984000','2017-11-30 19:47:33.984000',5,'Irma y Roberto Huerta','https://lh4.googleusercontent.com/-zVUU1CmZPJs/AAAAAAAAAAI/AAAAAAAAAAA/RLOcO60Su_Y/c-rp-mo-br100/photo.jpg','14567670160750071148',1724),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Z8LuGJybOZojUK1IqQc64ecCfZpOacz3nA4_3hp08N8oKaoG0W4Wo7Vl0wuUqaN2P_K9QSszJc2CNwJujmrAH3jTg3E','Was received and treated very quickly,manny,Maria, Pete,magali and dr osiecki were very helpful.','2019-06-25 16:25:41.058000','2019-06-25 16:25:41.058000',5,'Devin Hogg','https://lh4.googleusercontent.com/-NE8hZkAZAg8/AAAAAAAAAAI/AAAAAAAAAAA/w-5Tv8Qw-sc/c-rp-mo-br100/photo.jpg','6521947413723274945',8220),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5ZbDVg3iEy_qdQPKaNL1GIgEKe_Cwhv15jC9Z9YiZICtCXCOo1yUUF1tr0WvQqBINSPLB3LgIxsnQsHdlWRYnEyDjr3M','Dr Vakey and staff were awesome!','2019-06-29 16:23:14.280000','2019-06-29 16:23:14.280000',5,'Erica King','https://lh5.googleusercontent.com/-j2eKRwtQmrg/AAAAAAAAAAI/AAAAAAAAAAA/peQ3dB6_Lfg/c-rp-mo-br100/photo.jpg','16590124370714063921',3330),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5zGeX3skePotIZ28eHgentJfHHOxD4ygkY1uggwtyO59KetO6qQ4bg5_bf3a_VrecgxPMJn6xPzgz3paeZTe3PIYxsFs','Getting prescriptions on Christmas Day was quite painless!','2017-12-25 14:34:24.288000','2017-12-25 14:34:24.288000',5,'Jon Robertson','https://lh6.googleusercontent.com/-ATBN6VYzeZc/AAAAAAAAAAI/AAAAAAAAAAA/zph9XcqSkzw/c-rp-mo-br100/photo.jpg','16590124370714063921',3891),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5zHSYbR3uVa39oRiAjVPAiZOPPSGhl5pflG7bnPZBlxx2w-00HLv-zm_1tuwqLadt-YR_Ya-xh_LsUckUVnU6fTtawfc',NULL,'2020-08-01 20:40:31.677000','2020-08-01 20:40:31.677000',5,'Kristin Moyer','https://lh3.googleusercontent.com/a-/AOh14Gg3HIt8jX8_m22OeovsCqySxVwF20t2oaM6nBj4gQ=c0x00000000-cc-rp','13486358490203335051',21833),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5ZhUqd5upu1sWAa8NZ6Bzj15TnaUmJCru0sxPItCKHCRCJH80wLFRxwdCl6R6u8Zi4IpvpxW1sPEzJb6lVmt7OdFQTfQ','Nace did a good job','2020-08-02 20:55:21.607000','2020-08-02 20:55:21.607000',5,'Sun Fun','https://lh3.googleusercontent.com/-nBRQ3KF_PY8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckP0yB74OqghumhnV59rpOQYFmfag/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22186),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5Znp-fOhGnf61HNrR8jKaPKlEpsGGOpqnTDPZwX4ktcpySlM0xeGpgrGFzg0X2ugiq3zvRE1pcBPR5QqcUwJQ-LhZ2D8','They were very friendly and patient with my family and made us feel better about everything going on 10/10 would recommend!!','2020-07-29 02:25:41.047000','2020-07-29 02:25:41.047000',5,'isabella tablas','https://lh3.googleusercontent.com/-KmF9RfpNB9E/AAAAAAAAAAI/AAAAAAAAAAA/uB7bqZf35DI/c-rp-mo-br100/photo.jpg','2077061009497551125',22777),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5zUK49atexR9IfUr2lDfCnBhCs6Gpl9HuEMC9m8OfRhMQUGUKr-O35p0BKHUXERM_PzbVU5nZOjmxy1qjsFEe0qxT1QM',NULL,'2020-02-24 01:46:59.994000','2020-02-24 01:46:59.994000',5,'morgan poteet','https://lh3.googleusercontent.com/-Wupwdz-buP0/AAAAAAAAAAI/AAAAAAAAAAA/bRe6d5J-n5g/c-rp-mo-br100/photo.jpg','6521947413723274945',14552),('AIe9_BFDvtvCY6mNmVUeGBiBb7S5ZZJYtMBqQb2n4ASkJezNEmXYdr-tDYVMv-cYwvmz180WhuSybMJgPA-ZncITD_RJ4s6A4-cevgbz0niAVLeLmOLTqtc','They were very attentive to my needs. I got assistance within 5 mins of arriving. They made me relax and feel comfortable! Great facility!','2020-02-12 14:26:56.397000','2020-02-12 14:26:56.397000',5,'Damaria Daniels','https://lh4.googleusercontent.com/-v1bsu2CMBwA/AAAAAAAAAAI/AAAAAAAAAAA/OGMwMBahGkI/c-rp-mo-br100/photo.jpg','16389487648212004696',22591),('AIe9_BFey3wvfLehcERdFj-Yv4Vm-VksCI2PuB81fNG97vMlK1WeM_Rj4Js377RSU3sndfUq99C9Ho4bs_zRotCGT6dk6QaA0-AYecA-oH6_7AW7jSYsGSo','I’ve been here 3 times in he last 2 years. Fast and friendly service.','2020-07-26 15:31:56.163000','2020-07-26 15:31:56.163000',5,'Osmin Vasquez','https://lh3.googleusercontent.com/-vnDAneRJjC4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucltuwq8NFsn9ll8GmoKskLig8q2TQ/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22291),('AIe9_BFey3wvfLehcERdFj-Yv4Vm7K5AyLX4uKPZ6HjCdSYx0h178Z3YswC0JwxfOtchlGQ9m6psIt6-8NEATHcNUPcEnUHEV65qe39wEijPONEYSE6ek8Y','I recommend this ER 100%\nThe staff is very knowledgeable and caring.\nThank you. You did a lot for us.','2019-03-26 17:58:56.189000','2019-03-26 17:58:56.189000',5,'Silvia Moreno','https://lh4.googleusercontent.com/-0wZzefb2DVo/AAAAAAAAAAI/AAAAAAAAAAA/WNBdOWP1HNs/c-rp-mo-br100/photo.jpg','16891069708558046635',4314),('AIe9_BFey3wvfLehcERdFj-Yv4Vm9pc738f0yQ_04IOJwBsvv_t1FSO7TWTjWBn6zA2s8gXTYKsr_iNeB9FC7Tmg6dqZwAPEcrFoIBjE0f_PdiVPAENKV0Q','jacob, kendra, and Dr.Vakey did a great job. i was in quickly and everyone took care of me it was literally the best experience i’ve had at a hospital 😌','2020-02-01 18:21:53.075000','2020-02-01 18:21:53.075000',5,'victoria field','https://lh4.googleusercontent.com/-IALbT3xAX7c/AAAAAAAAAAI/AAAAAAAAAAA/oCkQvx3BwAo/c-rp-mo-br100/photo.jpg','16590124370714063921',10432),('AIe9_BFey3wvfLehcERdFj-Yv4VmAZRJor52nH5Si_8qRZ-dOnpxhC-gHchT1y3lEUe3yqHtkbH7oHAp4akn84tBE5J6LS-7_h49FB_fX9A29-FRpROD6Sk','There was no wait and everyone is very nice. Inexpensive and affordable. Dr. Henderson, Alvean, Vanessa, Marcus are very nice.','2019-12-09 23:37:00.865000','2019-12-09 23:37:00.865000',5,'Sidra Sabir','https://lh3.googleusercontent.com/-jLfFN9ekC2s/AAAAAAAAAAI/AAAAAAAAAAA/51sZ7PuKD8c/c-rp-mo-br100/photo.jpg','16389487648212004696',2560),('AIe9_BFey3wvfLehcERdFj-Yv4VmBGn1f2jZyRqPhOJ4TG4DMrfIyqyYye9GgXvaUv79773U3IARCXKoFC7vlqPgJrM9I28B_NIZcPWLArIavWbOdF42HE4','Even though a visit to the clinic is usually unfortunate, the staff here made our last visit as pleasant as possible. Nydia, Sam, JD and Cody were all great!','2020-07-28 20:20:48.220000','2020-07-28 20:20:48.220000',5,'Tony Chan','https://lh5.googleusercontent.com/-RO8X-Omxa6E/AAAAAAAAAAI/AAAAAAAAAAA/Di_9CsYbWTw/c-rp-mo-br100/photo.jpg','2077061009497551125',22786),('AIe9_BFey3wvfLehcERdFj-Yv4VmBhWNk0Qg-Y2xuMEwqWtDcvMVKWLDeJhB1gTvS0klRNvg1Wy_xVcvib9moK2UABo83TpjgADyZKHpAmL5WVPpw5QokL0','The place was great! Everyone that helped me out did great Kimberly, Jacob and Dr.kimball really helped me out! Would strongly recommend this place','2017-02-26 20:11:30.389000','2017-02-26 20:11:30.389000',5,'Max Stepanik','https://lh4.googleusercontent.com/-NAQ-uhvPI5o/AAAAAAAAAAI/AAAAAAAAAAA/0fkwRLUMsGw/c-rp-mo-br100/photo.jpg','16590124370714063921',4048),('AIe9_BFey3wvfLehcERdFj-Yv4VmbnvN1nT735S5zssixphTmVT6bosQdRSUHoc8nlpG4YWhssUaLM21DTAQLMG5CZpbOHXK591DRi5yUkd2KU0xpFtTmp8','Friendly staff,quick service!! They get you in and out on your way to a speedy recovery; thank yall!!','2019-06-23 08:27:22.342000','2019-06-23 08:27:22.342000',5,'Kc','https://lh3.googleusercontent.com/-5u-SD-F-NsE/AAAAAAAAAAI/AAAAAAAAAAA/JKSAeWfKkyA/c-rp-mo-br100/photo.jpg','13486358490203335051',932),('AIe9_BFey3wvfLehcERdFj-Yv4VmbVf_9bNHmw93iFj239-zxLZkFVTm4mBOGh4jOtoeGhz5uwetoCph3Uz_2oXiR5Bm_pb5_1xw0VX9a5YfeU_k4t_YBJ8','The staff here was exceptional during my visit. Dr. Chambers did a really nice job stitching my wound and told me he would’ve done it even if I was unable to pay. Very kind man and all around caring staff 👍','2019-07-12 21:17:27.879000','2019-07-12 21:17:27.879000',5,'M Canon','https://lh4.googleusercontent.com/-afloxTktt40/AAAAAAAAAAI/AAAAAAAAAAA/Q5oYuERSj0c/c-rp-mo-br100/photo.jpg','13486358490203335051',894),('AIe9_BFey3wvfLehcERdFj-Yv4Vmg1-ObwdJp7oyQgr0EWuOV1j5FUo1M47DBDd1SikrV1p2jXomIF7SBvYHMeSlYJPb-KRBoVv3HAgCL3iDWeOC32bADjU','There was little wait in lobby. Got tested for Covid and strep . Results passed in drive thru ! Right by my house too :)','2020-08-14 13:46:38.459000','2020-08-14 13:46:38.459000',5,'The triple J’s','https://lh3.googleusercontent.com/a-/AOh14Gjt9NmWqxKkAQyUew4qFyOcfYJMCVTdE-MnjgLybYY=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BFey3wvfLehcERdFj-Yv4VmIAKOdvvXDRReE7IdjUw_ns9iI3SK2_PUne377OQm--TMBeCGslRwgEcQGkWSHeebMlKcRS8KFNO4S6z2gDXsXYBSqV0','Dr. Jaber and his nurse Mark were very attentive. They answered all our questions. Thank you!','2020-02-09 23:05:17.686000','2020-02-09 23:05:17.686000',5,'Helen','https://lh4.googleusercontent.com/-bGRTV2teDbg/AAAAAAAAAAI/AAAAAAAAAAA/paFnpGY4NEM/c-rp-mo-br100/photo.jpg','3511292162159714121',14420),('AIe9_BFey3wvfLehcERdFj-Yv4VmiExhgF78-DSvGLTCqzgx4MHLqx5-7VDHpKO06PmUJbbSPMpNJfVmLY6Scbci6XpmB9eNWKJ-Ba_J7DGpK6V84Cd5s3w',NULL,'2019-06-27 15:48:37.612000','2019-06-27 15:48:37.612000',5,'Cedrick Oakley','https://lh5.googleusercontent.com/-xHVk09mJY5M/AAAAAAAAAAI/AAAAAAAAAAA/CVBV914rfZQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFey3wvfLehcERdFj-Yv4VmITbfLEjFykj-v43__sY7j4dzNVYRKWqhDtP6p8hqNohHm_fjh-O8CtAGg04xTSYvNj5g-4HAzq98h-u-Qx7uAi-o3p8','These guys were GREAT! Funny, friendly but professional. love the snacks the best! Lol. Hopeful I won\'t have to, but if I must... I will be back! Excellent job guys! Alanna ROCKS!!!!','2016-08-28 02:02:20.490000','2016-08-28 02:02:20.490000',5,'Duncan','https://lh4.googleusercontent.com/-FV2-JU35848/AAAAAAAAAAI/AAAAAAAAAAA/GitbDojI3Hs/c-rp-mo-br100/photo.jpg','3511292162159714121',7944),('AIe9_BFey3wvfLehcERdFj-Yv4VmIY8VLMDK6lF4srBFV-YO7qjdaQSiHraTm_7GdLkCJ08mmXKNXByiy6K44UTv0RsgIOJzXCZ5uoRSPers1xskezvslhQ',NULL,'2018-08-11 17:30:34.260000','2018-08-11 17:30:34.260000',5,'Andrew Stoelzing','https://lh6.googleusercontent.com/-mObrMplTsy4/AAAAAAAAAAI/AAAAAAAAAAA/sV1zCsPVNwQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3796),('AIe9_BFey3wvfLehcERdFj-Yv4VmjHsBo09WtcVHHVUnCJe0KyqYcFiwMgSmRn01ojQrKD_nOYaDPOj_cRDAtheUh2wt2m2HavqkOLVKISvs9_8YeeXXBx8',NULL,'2017-04-10 14:36:31.388000','2017-04-10 14:36:31.388000',5,'Michael Baker','https://lh4.googleusercontent.com/-jOcSRJt2wc0/AAAAAAAAAAI/AAAAAAAAAAA/ALgzchrZYrQ/c-rp-mo-br100/photo.jpg','16590124370714063921',4012),('AIe9_BFey3wvfLehcERdFj-Yv4VmJnczR1IKHfiHxYMokdhNwLBAturgL_tze1KaYuYuBI7TVN7halgrZtpYhWU2WyqnVCU8vTmt2bbz-9sS9yUa3hSvewQ',NULL,'2019-01-30 01:53:05.229000','2019-01-30 01:53:05.229000',5,'Silvia Terrones','https://lh5.googleusercontent.com/-RdNKhPEsN6w/AAAAAAAAAAI/AAAAAAAAAAA/evVTWwuSXbI/c-rp-mo-br100/photo.jpg','3511292162159714121',7438),('AIe9_BFey3wvfLehcERdFj-Yv4VmliTOA8xgZEdPjynWcM5QJUSbVhNbzTAOXbbz9AI7u1AgnCyJfvGIro1-upoymACmfhCUV8oc-sLD0KKWlmCJHvG41rQ',NULL,'2019-07-12 03:21:19.272000','2019-07-12 03:21:19.272000',5,'Caitlin Taylor','https://lh3.googleusercontent.com/-rcdciMjY3Qo/AAAAAAAAAAI/AAAAAAAAAAA/xXY-bklr8sg/c-rp-mo-br100/photo.jpg','8626688543755174284',8434),('AIe9_BFey3wvfLehcERdFj-Yv4VmlRuLVPq4WEWNRfkmgqR79t9MggLE6dgOIJlUzAHgJoU0nkJ7beX_RvPQIG5GUzCD0s56ipU3vrH15M8stxrfAcd7nb0','Most professional ER experience with balanced compassion and care. Dr. Lindsey along with Alvean, Tricia, Keith, and the receptionist we\'re absolutely wonderful.','2019-11-07 18:57:57.795000','2019-11-07 18:57:57.795000',5,'Averri LeMalle','https://lh4.googleusercontent.com/-QRABSdfkwYs/AAAAAAAAAAI/AAAAAAAAAAA/tleW-IQq5Iw/c-rp-mo-br100/photo.jpg','16389487648212004696',2723),('AIe9_BFey3wvfLehcERdFj-Yv4VmMa9zP0pFOfrwS3FM2h6XpWmokKSa5LS7N3P6SO8AcgY0PH_YRpJLa0H_bv6FYYja_vshvQlD2lNwHKkk3s7DW1OQkjk',NULL,'2020-03-06 21:07:55.881000','2020-03-06 21:07:55.881000',1,'Yeabsera Bogale','https://lh3.googleusercontent.com/-jRfUi_Pd2o4/AAAAAAAAAAI/AAAAAAAAAAA/zVpJiHgvd2E/c-rp-mo-br100/photo.jpg','8679688254631342173',18430),('AIe9_BFey3wvfLehcERdFj-Yv4VmNmUIAd9ETrU3Si5mnlRNwqXIR1BzZPZnjkeAaSLcX5cWHbZpTrMnR3--T2CTHXeyi6kl2_MWFMnF4UZHnjpvFjy8Sjc','I walk in explain my problem and they got right on it,There was no wait at all the staff was very nice very concerning and very helpful I recommend everyone to attend here for fast care.','2019-06-12 01:12:29.804000','2019-06-12 01:12:29.804000',5,'Keisha Abraham','https://lh4.googleusercontent.com/-usZfqspWWJY/AAAAAAAAAAI/AAAAAAAAAAA/IUzyi0eHPcY/c-rp-mo-br100/photo.jpg','14567670160750071148',1314),('AIe9_BFey3wvfLehcERdFj-Yv4Vmon2xEiqvGCA5lhT3psPjVnAdWkfvKtRtyHsaG9tIx2D92H3zMgx2l8WWi_BFmGU7hvVF5Q','COVID testing was fast and super easy! With 24 hour testing I had so many appointment options. It was a long drive for me, but if I need to get tested again it\'s where I\'m going.','2020-07-24 09:14:10.558000','2020-07-24 09:14:10.558000',5,'Randa Golub','https://lh5.googleusercontent.com/-f07KMxJPvmI/AAAAAAAAAAI/AAAAAAAAAAA/RI7i_xWCIh0/c-rp-mo-br100/photo.jpg','14748677429039074158',22568),('AIe9_BFey3wvfLehcERdFj-Yv4Vmp47PbdRle3dCslReT7vOeM0bP5sr1h-ALnQJ6lXpS6lKQWxQNjRRu0VCQtL_6kwtmP1jZF2LuHFRp4XgXsFhtlJljyc','The service was very fast and ABSOLUTELY amazing!! We were in the visiting area less than 10 minutes before the registering nurse Malissa was able to take our paperwork. Dr. Zheng the physician was very personable and understanding of my daughter\'s needs and the radiology tech Laura and nurse Kristina were very comforting as well, which made my daughter extremely comfortable to be around them. The ER tech Scott was very respectful of the conversations we were having in the room and they all made sure we were well taken care of. I would refer this emergency care at anytime. We were in and out in less than an hour!! Staff is amazing!!','2019-07-19 21:28:36.458000','2019-07-19 21:28:36.458000',5,'Ms. Love','https://lh6.googleusercontent.com/-dOpBprQWTco/AAAAAAAAAAI/AAAAAAAAAAA/EUxdIY0X0Aw/c-rp-mo-br100/photo.jpg','12541597562633926366',485),('AIe9_BFey3wvfLehcERdFj-Yv4VmQ8Xwgg4hyW9XvA9yqkuqr1yeVC4_DflZyK83JuHa5ESxTCWZZvLRv9Ks-N6ugzrIfmOaq5ZxdEYhYsip-SgT6ga_TI4','I was taken to a room and check very quickly. My entire visit, including check up, chest x-ray, medication and observation took less then an hour and half. The staff, Dr. Jordan, Tammy, Kanyon, and Karly, were extremely professional.','2020-01-13 19:08:50.447000','2020-01-13 19:08:50.447000',5,'Michael Bankston','https://lh6.googleusercontent.com/-LrKeZLkAw5s/AAAAAAAAAAI/AAAAAAAAAAA/-1x-nEC4zmY/c-rp-mo-br100/photo.jpg','8626688543755174284',14626),('AIe9_BFey3wvfLehcERdFj-Yv4VmqziDtwWCbr5J2HKPx0-ots8Y1BAbEHreqjI2ytQW9vvmN7vnePaU5DA8aiwgnPqsb9oUO9MmTYTc4lQlUqA9_O71m3k',NULL,'2019-11-22 13:10:00.907000','2019-11-22 13:10:00.907000',5,'Elaine Carrasco','https://lh6.googleusercontent.com/-bYqwSe0KFYo/AAAAAAAAAAI/AAAAAAAAAAA/k2MHJ_2SJqo/c-rp-mo-br100/photo.jpg','13486358490203335051',729),('AIe9_BFey3wvfLehcERdFj-Yv4VmrDi5pdX93HNHZuMHwgRMS7HSl-xIgRb_xOkp4LEtO55fPCDCZDwAUQGDW30oQ3W07nhjWtDKvK5qn_JXjIzLHX24xjc','The staff at SignatureCare Emergency Center at Memorial City took such amazing care of my daughter in the middle of the night.They were so gentle, kind, and provided amazing medical care. We were home and she was feeling better so fast. I give my highest recommendation!','2018-03-14 00:04:56.648000','2018-03-14 00:04:56.648000',5,'Meredith Kalbus','https://lh5.googleusercontent.com/-rubJfH3pSLA/AAAAAAAAAAI/AAAAAAAAAAA/bk4rhTMAcPY/c-rp-mo-br100/photo.jpg','14904078213800803294',2273),('AIe9_BFey3wvfLehcERdFj-Yv4VmSh7rvIeZBZ1eUchHAokOIrikcoPMut95VDuHPutgXacppaWQyWwVwN0UOVMWz7i_EKCaKg48wytDM0DUnFlwEttl0AA','Thanks for the excellent care. I have no complaints. I hate coming to hospitals and this one is pleasant. Thanks Dr Wang and Tanishia. The staff was great.','2020-02-28 05:07:19.714000','2020-02-28 05:07:19.714000',5,'Khalil Abdul Jawad','https://lh3.googleusercontent.com/-rUAV7W1vwfk/AAAAAAAAAAI/AAAAAAAAAAA/yAKU1JNmbO8/c-rp-mo-br100/photo.jpg','17898197009688164559',14121),('AIe9_BFey3wvfLehcERdFj-Yv4VmsNJY4o0qxDpvwCaN6gtO7pkXZuFMAixKinP6iZ12sjHR8jww3MH1yzyoyjtlb6VdKyGM36h8VdEsJVYv9N5-hnCs8tg','Needed medical assistance while on vacation in Austin. Very pleased with the help I received at Signature Care ER. Prompt, courteous service provided by a very knowledgeable staff. Many thanks to Dr. Rose, Adam, Christina, Linda, Freddy, Natashia & the rest of the team.','2019-01-02 21:28:38.336000','2019-01-02 21:28:38.336000',5,'Tom Kelly','https://lh3.googleusercontent.com/-ogSi9gn53YY/AAAAAAAAAAI/AAAAAAAAAAA/cJMaKEmIXmQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4380),('AIe9_BFey3wvfLehcERdFj-Yv4Vmvbmod1AHkzNRXEdQZoUl-NXIgLzLVdhA7KFoaDv2fsXCT9ggn3eREikqek5qI1hBosWDI6XaufMpNYxDEGjCLqbJt1U','I’ve been to the Copperfield location twice for my daughter and the staff is always professional. Dr. Henderson, Laura, and Sarah was very patient with my one year old.','2019-10-23 03:38:37.812000','2019-10-23 03:38:37.812000',5,'Keundrier Cage','https://lh5.googleusercontent.com/-tcNGzOnQy84/AAAAAAAAAAI/AAAAAAAAAAA/GXv4WtSQuug/c-rp-mo-br100/photo.jpg','17898197009688164559',5488),('AIe9_BFey3wvfLehcERdFj-Yv4VmyY26TyoCm8G692FAnrBVlWZNO8WMVcmA79xTt8hdn0qVGerne7JAWWNMevxRBuiMP9A1UhiAcbHaj_WFDf-3QkVUvas','Dr. Das treated me very well and was very kind and attentive. I walked out of there already feeling much better!','2020-08-14 13:10:00.313000','2020-08-14 13:10:00.313000',5,'Emily Wallace','https://lh6.googleusercontent.com/-DVYW8nBICq4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmKPhmj9w-FV5Ab36YkIolz70WH6A/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23018),('AIe9_BFfAorsog0dZGMDxphmS0XPJjV0cGmM70Jnkn0oX4x3MGBN4O7H4PcPK6baTkMJhaFZjzMpGsfUOALraGj9Iry3BrXpIYZAcOOYvb1EhHRY_kGd6QQ','Doctor Kimball is one of the greatest doctor that I have met. He and his assistant are very professional and have a great sense of humor.','2016-07-29 05:09:36.007000','2016-07-29 05:09:36.007000',5,'Eric Pun','https://lh6.googleusercontent.com/-fii0iv4VfU8/AAAAAAAAAAI/AAAAAAAAAAA/hPsUb8kbH1Y/c-rp-mo-br100/photo.jpg','14904078213800803294',2472),('AIe9_BFfAorsog0dZGMDxphmS0XPlRoGxl-qcR7ahx-U-M4jmwl5wGt_3Gg2_C6Tf1e-OP6tH3EgMjfmCp4BaL0QRB44Piuh1cveajXRYh18vkHmVYUU7qo','I went in last night because of a medical emergency and the staff was incredibly helpful. They are incredibly professional and kind. I have never had such a positive experience at an urgent care or other medical facility.','2018-04-12 21:55:33.704000','2018-04-12 21:55:33.704000',5,'monica wadhwa','https://lh4.googleusercontent.com/-BIpqU_S_WTg/AAAAAAAAAAI/AAAAAAAAAAA/HaU0zxd7osQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1634),('AIe9_BFfAorsog0dZGMDxphmS0XPs3Ksqt-KoTt-CRckGnv17br3rqVOCv9pALGJS0WvjDGgXOyCLetGg3yZzDWNoJF9-WvQuXTg1_0owvVWp99mlbZzsBs','Very nice people here. They took care of us quickly and had us on our way. Thanks for helping my kiddo','2019-01-04 16:11:51.418000','2019-01-04 16:11:51.418000',5,'Korey Miller','https://lh3.googleusercontent.com/-o-TrCVtI70U/AAAAAAAAAAI/AAAAAAAAAAA/blVjI_KcJxM/c-rp-mo-br100/photo.jpg','8626688543755174284',8609),('AIe9_BFFcAiX3_kRXfnRLgvL31Hr_PVKcbPnj2jtypehturjJRZd3mjrQKV40PhcnJr72Mt0xi-bQ8RGyrW3Rgbsjn-StyK8AbTuJCPnCwBXt7mTt7uAjU0','The staff here is ALWAYS so friendly and informative during my visits. I went to go get COVID testing and very nervous, the staff calmed me down and took really good care of me. Super grateful for them! I definitely recommend signature care montrose area, fast and easy.','2020-07-23 00:31:45.191000','2020-07-23 00:31:45.191000',5,'Dorsa A','https://lh3.googleusercontent.com/-bJAJ7xPnkUw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclXoQkW2jDD_z2C2e6ElqCRXm1jfw/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22156),('AIe9_BFFcAiX3_kRXfnRLgvL31Hr2EPmFR85Ey3fwaV1Tm3VHe67A3H65lILzbhfDV6a4HGSMPZnBvsdZNIeHUy1WV9RiNCuq6nSR5X0oBYVjQMvJjmv7l4','Got tested, got results','2020-08-12 19:59:25.639000','2020-08-12 19:59:25.639000',4,'Senaida Leos','https://lh4.googleusercontent.com/-OgItLvlhATE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclaT7MGvyfk2jdmCPGBBd8AEj2uyg/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BFFcAiX3_kRXfnRLgvL31Hr2jlmpxTWe9ZLvFJD1lXPqy7dIfAJToRlDjdtWU0lNjSFzRRwSRhTnfKR5VXjR44IqWlacA9ziZblO_tNgS_oQlEdH2w','Shout out to everyone who helped baby Aurora and I tonight! Sita, Andrew, Alison, Brittany, Amanda, and Dr. Anders! All extremely amazing and helpful. For my first baby I freaked out of course and they helped assure me all my concerns were normal. Thank you for being so kind. Highly recommended!','2019-05-12 03:12:28.286000','2019-05-12 03:12:28.286000',5,'Amber Cox','https://lh4.googleusercontent.com/-QduTlh6AuDU/AAAAAAAAAAI/AAAAAAAAAAA/3QWbDkEGidY/c-rp-mo-br100/photo.jpg','13486358490203335051',1011),('AIe9_BFFcAiX3_kRXfnRLgvL31Hr2oyMAcNtaoSugyiEij_GT82_tDkLJhWTXQWDLOeT1iFmYNM30Lb1-td3_6vcGc3Z3eFQ3yYgT2aiJJlj_CcBYjfUzgY','A great place! Anthony did a wonderful job with checking up on us. Dr. Harjai was very informative and patient!','2019-04-04 23:44:18.956000','2019-04-04 23:44:18.956000',5,'Ayanna Trinh','https://lh6.googleusercontent.com/-AyhOGZQ3TeY/AAAAAAAAAAI/AAAAAAAAAAA/y6ij4lTu8lk/c-rp-mo-br100/photo.jpg','16590124370714063921',3455),('AIe9_BFFcAiX3_kRXfnRLgvL31Hr8yV7_6c0RQLMefhm5OolRMa6o8mq1_Va1nUzy4vIGITaVYfX49KGyP_vK25BansaxvjCVFbnnYiaJb0iUgowna_qF04','Wonderful experience\nDr Ybarra\nNurse Rollie\nRad tech Natalia \nReceptionist Stephanie','2020-01-26 04:35:50.636000','2020-01-26 04:35:50.636000',5,'Karen Cruz','https://lh6.googleusercontent.com/-dPBKjgSeUJQ/AAAAAAAAAAI/AAAAAAAAAAA/UuY9zwwOW94/c-rp-mo-br100/photo.jpg','8679688254631342173',10332),('AIe9_BFFcAiX3_kRXfnRLgvL31HrAHT84DnJoxYD5JsuQw2g6xHAyV5rdj5SJU8OfktH_8nv9qyfKSOs3vjHpnd42gRz_C-2s5pjLtgNKKqNZVTLn-GQ2zY','Doctor Miller, DR. Dang and nurses are the best. For the first time in my life, I didn\'t mind being in a hospital. Facility was extremely clean and well managed. I don\'t know the words to express my gratitude. Thank you all very much. My best wishes for Dr. Miller and his staff.','2019-12-27 20:32:43.509000','2019-12-27 20:32:43.509000',5,'Susheela Singh','https://lh3.googleusercontent.com/-O189a2i70nA/AAAAAAAAAAI/AAAAAAAAAAA/RThpusKDt7c/c-rp-mo-br100/photo.jpg','14567670160750071148',1155),('AIe9_BFFcAiX3_kRXfnRLgvL31HrEFAGsh0rNq_gcBaKV7N9Y46CamGxmTuSp_BbZT8yCdtTD2skUlmRom4sylHugbDDRSHhOHfyCU7z-ODZ7_wfRsrW5R4','Very good work','2019-04-12 14:41:46.967000','2019-04-12 14:41:46.967000',5,'Javier Penaloza','https://lh5.googleusercontent.com/-6hK1LOPCR9g/AAAAAAAAAAI/AAAAAAAAAAA/7O3FveHX8p0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFFcAiX3_kRXfnRLgvL31Hrf_1GE2nkIjPBwvdtybdTlKovn2YiL9AFhkscXvAv65abH8KAP5yo5BpybSzn6BeGIhWdjEY7-RC4QWWSVRVE0hNReX4','Kat, Alvean, Tricia, Bryan, Dr. O’Malley were truly amazing... Their bedside manners really made an unpleasant situation very soothing... The level of thoroughness is unmatched... This is the first ER visit that has left no stones unturned no questions unanswered... Their amazing customer service began from the moment I called and asked 50 questions about -insurance, concerns, fears ,etc. This was truly a blessing glad I chose to come in!!\n\nSigned: Extremely Pleased','2019-11-14 18:36:03.536000','2019-11-14 18:36:03.536000',5,'Prentis Tatum','https://lh4.googleusercontent.com/-pvtPmpOHmjI/AAAAAAAAAAI/AAAAAAAAAAA/CCYEsqyn65E/c-rp-mo-br100/photo.jpg','16389487648212004696',2705),('AIe9_BFFcAiX3_kRXfnRLgvL31HrFf4gbkckZ2g-1KZ9_iyl7MlK84e0w2f4Zif-tKDadxoggtfr-VNlA9dJfkxnM18E0IEPwToT9ziKeyyI0uYYT4und9k','I was really happy to find an open medical facility on the Christmas weekend. Each staff member who worked with me (DR. BRAUN G AARON, Mark Kolodny, and Stephanie Garcia) was cheerful and helpful. Knowing there is a 24/7 facility close by is great and my family will definitely use SignatureCare E-Center in the future.','2016-12-28 21:32:30.795000','2016-12-28 21:32:30.795000',5,'Debra Wilson','https://lh3.googleusercontent.com/-PkXkk3Qye2A/AAAAAAAAAAI/AAAAAAAAAAA/J_Rug2Pjayo/c-rp-mo-br100/photo.jpg','14904078213800803294',2433),('AIe9_BFFcAiX3_kRXfnRLgvL31HrGch-YbVnZ8LQaqXH3SekZTtVNu2wy9Is_GWtbbFwT_2XL6I-qg2NrZOrxDZK4Z9m1_aF1ALWzWINu3ExYWY01eevtLo','Friendly staff and very helpful the 3 times I went !\nToday I went again with my friend due to cramp while pregnant and they were fast and friendly again!','2020-08-06 02:20:19.776000','2020-08-06 02:20:19.776000',5,'Amanda Luna','https://lh6.googleusercontent.com/-muLAcylrR3s/AAAAAAAAAAI/AAAAAAAAAAA/hGVktjGhxSs/c-rp-mo-br100/photo.jpg','2077061009497551125',22727),('AIe9_BFFcAiX3_kRXfnRLgvL31Hri7whSKnX7Bl9KiN1RgK2uywKJvzFYSHlspoKiTnFA5M4cCYOgFL5vFCWK6ZSVgNYl6g2Mf238xFe-ixk9hQHl_UdTFQ','They had really nice area for those waiting and Rebecca V. was very accommodating','2020-01-18 07:54:16.339000','2020-01-18 07:54:16.339000',5,'Sophia Pearson','https://lh3.googleusercontent.com/-TfCB681nfN0/AAAAAAAAAAI/AAAAAAAAAAA/pCX2sxoMGPg/c-rp-mo-br100/photo.jpg','16590124370714063921',10066),('AIe9_BFFcAiX3_kRXfnRLgvL31HriFbOXSH3GXme8TNKrGZRKzG2cxn-BVjn5OnlovwBlKJuRJV8BudXTjAiVZLzbsvlu9nRLO9XUitcMrdOwuzNC3CjS0k','Thank you for taking great care of me while I was sick . From the check in Jennifer was very helpful and the nurse John was very helpful and nice . We couldn’t have had better help thank you so much','2019-06-10 19:46:51.240000','2019-06-10 19:46:51.240000',5,'Paul Larkin Jr','https://lh6.googleusercontent.com/-596hlo7gwX0/AAAAAAAAAAI/AAAAAAAAAAA/gGD8vx20Uvk/c-rp-mo-br100/photo.jpg','8626688543755174284',8456),('AIe9_BFFcAiX3_kRXfnRLgvL31HriT_qbQvE9bB-zTu3y083aPAAGfp_q9EYW3tBUPs0Dsp0n0ByJ3WNuapytqt3qLkygqbE-cV7-H_1q0a9lk_a8pK__SQ','lisa was super helpful','2019-12-16 04:05:05.404000','2019-12-16 04:05:05.404000',5,'My name Is blobby','https://lh4.googleusercontent.com/-DDpRcn-ZjN4/AAAAAAAAAAI/AAAAAAAAAAA/Jc9rTZaXYsI/c-rp-mo-br100/photo.jpg','8626688543755174284',14646),('AIe9_BFFcAiX3_kRXfnRLgvL31HrLYrkoTpB8hqTAl6LIhcNOgDtCSRVnMbqCzPPXtJnTNteoJr-zQU0svgMF4ZEQF3Q8fnW7mKvsxw1hcravHgdai6MjTw','Jocelyn, tanishia, Sarah and dr Thomas are all so professional, took their time and fully explained everything. I’m a repeat customer!','2019-11-20 02:26:44.594000','2019-11-20 02:26:44.594000',5,'Amber Luce','https://lh3.googleusercontent.com/-8TnMoarV3Jk/AAAAAAAAAAI/AAAAAAAAAAA/ZxuPRSEKpmg/c-rp-mo-br100/photo.jpg','17898197009688164559',5417),('AIe9_BFFcAiX3_kRXfnRLgvL31HrMM7oxS_sOhUEW-qSODNWdXcDAxtkQ9csgLMI2yV0SpX5ekM3mIXS-qLwr7WtJyFu7WzA9p3iEL49TKITHB6-qi3czuo','Daniel, Sarah, and Dr. Patel were awesome. Provided great and quick service was pleasantly quick and Fatima was amazing with patients. All were friendly and understanding. Thank you guys so much .thank you tanisha','2019-11-27 07:20:38.627000','2019-11-27 07:20:38.627000',5,'Zoe Rodriguez','https://lh6.googleusercontent.com/-SqP4a6Gdu1Y/AAAAAAAAAAI/AAAAAAAAAAA/Hsv3diOQwlo/c-rp-mo-br100/photo.jpg','17898197009688164559',5397),('AIe9_BFFcAiX3_kRXfnRLgvL31HrNarC41HYVMWjXpvzCYjAlVexwsaJg-DCw5aiXsBuS-fPHibOSEJrauaoufPVYRJIxz5at15LEGDEBqelFIJL_uWmMl4',NULL,'2020-08-13 19:09:27.095000','2020-08-13 19:09:27.095000',5,'Rekha Thoppil','https://lh6.googleusercontent.com/-IZctxmiUnAw/AAAAAAAAAAI/AAAAAAAAA1s/AMZuuclpwXCvVhqdZtklNGYRhqAvwolZmw/c0x00000000-cc-rp/photo.jpg','17394740196501090048',23062),('AIe9_BFFcAiX3_kRXfnRLgvL31HrneOLhJmjqdBML6z5xtmxGUFN8wEbtSLrH4ERvpbzwWw5eTsHKbO4n-dBYY_1-61h04ftfTeKZkZZhOn95yeehL09ATI','I felt so comfortable. I was taken care of from the moment I stepped in. I would recommend this place to anyone.\nthank you to the Doctors and nurses. I had an infection in my face so severe that I thought i would need to stay overnight. Thanks to them I was done in an hour.','2016-06-13 14:15:56.989000','2016-06-13 14:15:56.989000',5,'Indymany7475','https://lh4.googleusercontent.com/-qbJpWnWyRwg/AAAAAAAAAAI/AAAAAAAAAAA/Z2FaoEUcqKQ/c-rp-mo-br100/photo.jpg','14567670160750071148',2019),('AIe9_BFFcAiX3_kRXfnRLgvL31HrNqbWsGS3cTx5VVaTpPafTtdtxoLkzn1cyXo7PXDRm1ayh8Q2dGtKJE1AQbHqCz8TWw76elGQVxiFGhfzQgEftAzO_68',NULL,'2019-09-20 19:27:20.360000','2019-09-20 19:27:20.360000',5,'Heather Menchaca','https://lh6.googleusercontent.com/-dItALFBFHQY/AAAAAAAAAAI/AAAAAAAAAAA/6DEPkQlXYNw/c-rp-mo-br100/photo.jpg','6521947413723274945',8135),('AIe9_BFFcAiX3_kRXfnRLgvL31HrOH0qGB8GsKF208kd8lsrGNrbNq5IWR5l9LJypxTXLBf8P6yfVXmORnuAJN7k8ZhG5s4RUVGXwFvZpeH6xh2kS0UVhso','Love there service and the way the attended us my baby girl loved the place an the help from Dr. Miller, Theresa, Sadie,Ben, Maria and Sidonie','2019-07-27 02:02:58.048000','2019-07-27 02:02:58.048000',5,'Manuel Olivas','https://lh6.googleusercontent.com/-YZLLs6x0D20/AAAAAAAAAAI/AAAAAAAAAAA/hISq2xM_sS4/c-rp-mo-br100/photo.jpg','6521947413723274945',8177),('AIe9_BFFcAiX3_kRXfnRLgvL31HrohQo02Ys1wKorIjIV-OH3R89Ju2UITZLVjSoTLUELh0UU72IABuGkt-i6abdgYv1kXC3UOw3guQWwKL0BfGka7uQqFw','Great service! Jasmine, Robert and Dr. Patel were very efficient and caring. Thank you!','2019-04-26 15:40:32.082000','2019-04-26 15:40:32.082000',5,'Team Dredix','https://lh6.googleusercontent.com/-BKcB_tnfI-o/AAAAAAAAAAI/AAAAAAAAAAA/8vtr_RRzDJg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFFcAiX3_kRXfnRLgvL31HrQrUEI2Dwnf_tT5-AWaDVcJD7G3OY-YRn58cv5nj9KoPdn6vZu-xyyUy5-wVkEj5q26acI1dnEsz1X0Qr41gFUZeFSWY','Signature Emergency is absolutely amazing! That is always where I go for any non scheduled event. I would never choose a hospital emergency room or any other emergency clinic over this one. They are friendly, compassionate, caring, work with you to help you on your insurance claim, the doctors are very thorough and they actually listen to what you are saying. The facility is clean and comfortable. There was only once (out of probably a dozen visits by me or a family member) that I had to wait at all and even then was not very long. Their rates are good and thoroughly explained to you. I just cannot say enough good things about this place and given a choice would never go anywhere else. Great job everyone!','2019-04-23 17:55:30.791000','2019-04-23 17:55:30.791000',5,'Stacy McNeil','https://lh5.googleusercontent.com/-auU2YjtYjo0/AAAAAAAAAAI/AAAAAAAAAAA/COfy06fQb8A/c-rp-mo-br100/photo.jpg','14567670160750071148',1349),('AIe9_BFFcAiX3_kRXfnRLgvL31HrrM133l6zeERpiXu3UIEP409fw7VtaE6YESxpWgjZLDlh2F7keJ4Ashq4Vhvy7EuZF2_86n0pUbyQ70cM6dTSM35218o','The staff was great!! Highly recommend. Very attentive and outgoing staff.','2020-01-08 07:32:13.929000','2020-01-08 07:32:13.929000',5,'Tiffany Siguenza','https://lh3.googleusercontent.com/-lWdiLufPS1c/AAAAAAAAAAI/AAAAAAAAAAA/VuZCE9i07C0/c-rp-mo-br100/photo.jpg','8918455867446117794',14880),('AIe9_BFFcAiX3_kRXfnRLgvL31Hrsmga8sThCcP7oUH-SLCAkrCPqImoJUm8ou0QNx_AJh-TtZ7loyd7gEt_nF5jtT2zSwKNBLvPI8IUOyWffEMv26gybek','great customer service at the desk from Okarys, super helpful and friendly nurse Gabe who took care of us immediately and Dr. Herbert explained everything during our visit.','2019-12-07 09:04:28.043000','2019-12-07 09:04:28.043000',5,'Helen McCabe','https://lh6.googleusercontent.com/-2YvglSeDOu8/AAAAAAAAAAI/AAAAAAAAAAA/VFBjDXPCerQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3043),('AIe9_BFFcAiX3_kRXfnRLgvL31HrsYvAfH5Q66lh6ZArqyz-d4KpDa-RoJbmgr4Aj-o5SEEdHtpqKdtJvnuWUBDPl0EgR__KzLKXeufs55AjNQgPe8rB00o',NULL,'2019-05-16 02:49:06.733000','2019-05-16 02:49:06.733000',5,'jan salazar','https://lh3.googleusercontent.com/-k4SCobzXe-E/AAAAAAAAAAI/AAAAAAAAAAA/eaAoc1rVrew/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFFcAiX3_kRXfnRLgvL31Hru3JwyrqwxX-O7Ii7cp8eJfpSmc3CHjlNwZuv25HuIVFthhU4Ql6BQWTrhIJnriDGT5xt-oCPVTITlD7KHVcgzWTrPsM','I walked in without an appointment and was seen in less than 5 minutes. There were complimentary snacks and drinks for the (extremely short) wait. The place was very clean and the staff were exceptional. Thank you Christina, Tina, Barbara, Adam, and Dr. Jones!!','2018-10-17 20:44:02.625000','2018-10-17 20:44:02.625000',5,'Shyanne Montee','https://lh5.googleusercontent.com/-Shdp0u7DP8w/AAAAAAAAAAI/AAAAAAAAAAA/eFYMOrxfPtE/c-rp-mo-br100/photo.jpg','16891069708558046635',4416),('AIe9_BFFcAiX3_kRXfnRLgvL31HrW46_lB2G285knvrlKTkIwIHd1JWhCP-da4x6C7bcdEmcoSGzrPQllVro-wYzQr5LD8sk_otsZ0ZdHaGevIvW_wzUaLQ',NULL,'2017-09-25 20:30:03.817000','2017-09-25 20:30:03.817000',5,'Jessica Ascencio','https://lh5.googleusercontent.com/-X1-4IGwSsSc/AAAAAAAAAAI/AAAAAAAAAAA/5yQz3vghljA/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4964),('AIe9_BFFcAiX3_kRXfnRLgvL31HrwCjOtYWijvEJCaDemb7fOW68H5GggLO-LNcLNT_6J5iJrpKhuMPp9BpxGPPVwXnKWOBs9PXlpLOAJCOzN-0OGrX7pqQ','Signature Care was amazing!! I had already been under doctors care and then on a wknd afternoon I needed immediate attention. From the first phone call with Shanna answering a few questions about their service and if they were a ‘real’ er to my arrival and being with Dr Anders and Nurse Trina in under 15 minutes...I had to have an immediate procedure and then be admitted for a few days for continuous care so I had the opportunity to meet several of their staff! Dr. Plante, Nurses Lisa, Manny and Kiera, Techs Pete, Marcus and Meghan!! There were several more but unfortunately I didn’t get their names...they were caring, compassionate, fast and truly worked as a team for their patients! They are informative and helpful, friendly and courteous and all went above and beyond. The facility was clean and nice and calming. Dr Anders took time with me several times to explain things and give me the team and treatment plans to finally fully recover. When in need of another er or referring someone this will definitely be the place!! Thank you for everything!!','2020-07-19 04:37:37.048000','2020-07-19 04:37:37.048000',5,'Beth Williams','https://lh3.googleusercontent.com/-HpS0k0PcbaQ/AAAAAAAAAAI/AAAAAAAAAAA/ot6oGIqR3PA/c-rp-mo-br100/photo.jpg','6521947413723274945',22880),('AIe9_BFFcAiX3_kRXfnRLgvL31HrxFn4MorEofAfFe8RARwm1BVW7_xoxl4wA5uYCxrqMX88ETE8BPws7vynNgYERsBu9w_r92tUqpBSMJUI4uTO_iRn71M','Great medical attention and quick service. The staff were very helpful, welcoming, and patient.','2016-11-14 15:56:22.284000','2016-11-14 15:56:22.284000',5,'Claudia Posada','https://lh6.googleusercontent.com/-kHIB5nAp14o/AAAAAAAAAAI/AAAAAAAAAAA/nt9lqsp1ASA/c-rp-mo-br100/photo.jpg','17394740196501090048',5170),('AIe9_BFFcAiX3_kRXfnRLgvL31HrZ49j3aN0lFsPhdr9HIfQwKHjd-hIfbhWfvniYWqoAEUwjH_8i0LV-bKLf-N1OQuvUIjNpQXHtibM2L09cfv3veIo_FY','The people here are very professional, thorough, and nice: especially Dee! They got me in very quickly and took great care of me and Dr. Yusuf is so kind and caring. Very nice team! Clean facility, I was very comfortable and satisfied with my treatment.','2019-08-13 19:03:23.010000','2019-08-13 19:03:23.010000',5,'C Will','https://lh6.googleusercontent.com/-uwEUKu4DV8s/AAAAAAAAAAI/AAAAAAAAAAA/nqqfR_oFKdo/c-rp-mo-br100/photo.jpg','3511292162159714121',7215),('AIe9_BFhE9KJJauCiOoLaxGmuWfy14KgqUH4k3Nl4B_ysjFEjxg6SOOq1LTPrq6W8NNeqMCo0C6ILjknVaMBNkAs3JQgPYULRt6ere-tISO_Hi9KXblQMtQ',NULL,'2019-09-03 14:14:29.415000','2019-09-03 14:14:29.415000',5,'shannon ruiz','https://lh6.googleusercontent.com/-yeqQI3QxkYA/AAAAAAAAAAI/AAAAAAAAAAA/9njM7-DTcwo/c-rp-mo-br100/photo.jpg','16590124370714063921',3217),('AIe9_BFhE9KJJauCiOoLaxGmuWfy2dw3O5-xjmPCA_qoD1WOtdLJaQsFuG1ajq8Q6dFLnWm0b58z_C1UIOUW89Bf5UJzNK_wQFwZDAiPT0LYdO3sovT1UdM',NULL,'2020-07-29 16:01:36.314000','2020-07-29 16:01:36.314000',5,'Emma Rincones','https://lh5.googleusercontent.com/-HAQjazP7VKo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckmIgUy68O9Btb0eh0OdUWSVtLTXQ/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22275),('AIe9_BFhE9KJJauCiOoLaxGmuWfy8tf8MCJYlhwBKm7RahgbQoftd3fdtvMP-gj66BloFaia51LZB1eoKN92kEJqbPRSUGvXxFYpD0m-m-LMOtAQ_TqICQ8','Alvean, Marcus, and Jordan did a great job at taking care of me.','2020-01-29 23:19:51.705000','2020-01-29 23:19:51.705000',5,'Banana James','https://lh3.googleusercontent.com/-3c2M3UZYVC0/AAAAAAAAAAI/AAAAAAAAAAA/A2iEfZPxR5o/c-rp-mo-br100/photo.jpg','16389487648212004696',10156),('AIe9_BFhE9KJJauCiOoLaxGmuWfybBCwwbbDQ76nzLxwNrrJyXQQyczOxR3J_971gM5VhpkdeP9HJqYGZ8-VFPJcbQFc1Aegoug7ECGmLY9ssKqIKB1pcU4','Super quick! Office is super clean all the staff Dr.Haraji, Ekaterine, Kat and Patricia were very nice and attentive. Highly recommended.','2019-11-07 02:51:17.662000','2019-11-07 02:51:17.662000',5,'Stephanie Rojas','https://lh5.googleusercontent.com/-G1iRKIpd0Ww/AAAAAAAAAAI/AAAAAAAAAAA/NzKgboEIz4M/c-rp-mo-br100/photo.jpg','14567670160750071148',1200),('AIe9_BFhE9KJJauCiOoLaxGmuWfybsEFsEJKpou6taabgGSCh0FzgsxJQtqj2RzYs82YL3w221zVMg8EhcVo7mDs81CuxrAJz6oQrnhK7hcs3OEsLBdMEXA',NULL,'2019-08-02 19:40:45.161000','2019-08-02 19:40:45.161000',5,'sakina rampurwala','https://lh5.googleusercontent.com/-BlcXpg1mNqw/AAAAAAAAAAI/AAAAAAAAAAA/7D1VOX4yKDo/c-rp-mo-br100/photo.jpg','17898197009688164559',5606),('AIe9_BFhE9KJJauCiOoLaxGmuWfycGo5QQebcY1T5_vtZxj6yzXikd0PfQDGM9tEW3Pbd9kEhIO2fOtlRWaaTCbXPe8aRueAea8evS9FULrJNN3xEEcgY6A','Very welcoming and I would recommend this to all families.','2019-03-24 01:50:18.612000','2019-03-24 01:50:18.612000',5,'Madison Thomas','https://lh3.googleusercontent.com/-6bUTICih9x0/AAAAAAAAAAI/AAAAAAAAAAA/FIzRu9Uu0nk/c-rp-mo-br100/photo.jpg','12541597562633926366',529),('AIe9_BFhE9KJJauCiOoLaxGmuWfyLxDSNm4v59yvmEkpyS4WR0-giSbaLuGYNX8ofMMH6xQiw0Cs5PguTdabq7Pmnohj-S1WoRV-86B_yZWTXj3p4UCJg-E','My visit was a very pleasant one everyone is nice and down to earth. excellent bedside manners from the staff','2019-06-05 01:30:17.858000','2019-06-05 01:30:17.858000',5,'Tony Ware Jr','https://lh5.googleusercontent.com/-mOxhuJp3zgc/AAAAAAAAAAI/AAAAAAAAAAA/4c3DqC3Oe4A/c-rp-mo-br100/photo.jpg','17898197009688164559',5714),('AIe9_BFhE9KJJauCiOoLaxGmuWfyOYfEZVXFmSocE4F-S64aolBWI8FR8Dn85Gfu50AXrDiQaSZjAivJ-pCX5-0gjPasy7vL5qRX0Yw9izmg-DPKoNMsFwc','Very clean. Staff very professional and attentive. Doctor was awesome. Security was awesome.','2019-06-13 05:51:16.640000','2019-06-13 05:51:16.640000',5,'Jaleel Mercer','https://lh4.googleusercontent.com/--GAhYvxn-zQ/AAAAAAAAAAI/AAAAAAAAAAA/h2G9-UdNXxY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhE9KJJauCiOoLaxGmuWfys4ug7bFtkTp35L17WuVF16OKpealZfVi0B8Vl1uAjabhROhEALxMGXGzptutGlg6osW0E5IoC-RyQWowiIrP_zd-EGc','Amazing staff here, very accommodating...kimberly p, Cecilia Z, Joseph B were all AMAZING. Very friendly and caring. I recommend this location to everyone :)','2020-02-04 19:42:25.637000','2020-02-04 19:42:25.637000',5,'Veronica Aguilar','https://lh4.googleusercontent.com/-cUzOK9hW6L0/AAAAAAAAAAI/AAAAAAAAAAA/Q0K1ySLAfng/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',13561),('AIe9_BFhE9KJJauCiOoLaxGmuWfyuEfNjg7PV-zl94asZGdssFXATJyzphSWP509h_l22TlAa6eYkJrgv8WI6eYT_e4KvYrtL520X8fmxpwb7tsquovr57g','Thank you to Charlotte, jessica, norma and kayla!','2020-02-21 22:39:41.352000','2020-02-21 22:39:41.352000',5,'Vanessa Fountain','https://lh6.googleusercontent.com/-xttkrG9PZ9k/AAAAAAAAAAI/AAAAAAAAAAA/cPSZ46FqH1E/c-rp-mo-br100/photo.jpg','17898197009688164559',14140),('AIe9_BFhE9KJJauCiOoLaxGmuWfywucdcitBqKsP_ca-6cBdysuusxkarrHa5rnoi7vQmjR6YFNRnlTycIUJPXBup-ZeXZuzmKojxpI2tGIzXFf49A-a7e8','The staff was very helpfull and we were taken care off immediately and professionally','2019-06-07 23:27:03.670000','2019-06-07 23:27:03.670000',5,'Jesus Gallardo','https://lh3.googleusercontent.com/-qVtHi1gBfKs/AAAAAAAAAAI/AAAAAAAAAAA/PIF4LbsXUKE/c-rp-mo-br100/photo.jpg','2694018788013845459',6135),('AIe9_BFhE9KJJauCiOoLaxGmuWfyxtnmPzI8HHADbMe8DA_cHlJI7ILAbkg8TFeU5XO3Y6ydaMr_UlZdA115AKKXJGKMjHapxavm9TwWf_9MlN4Akhl9CXc','My experience was amazing and they were so nice','2019-02-05 19:18:21.990000','2019-02-05 19:18:21.990000',5,'Dogs For Life','https://lh5.googleusercontent.com/-iZNDjShwWR4/AAAAAAAAAAI/AAAAAAAAAAA/FaP8A2H8HWk/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',7026),('AIe9_BFhE9KJJauCiOoLaxGmuWfyYIfi8eevjtnBf6s7beuYoWhn92RlLMZgTS2xsvSt9_ASIkCdSu2R9h78rCHD4IY2EeXdt8CUPIMN4v8idpBvGIDrcXI','Dr. Garcia with nurse Irving, radiology tech holly, ER tech Thelma, and registration Carly was great! They were all professional and helped my friend with anxiety calm down. From start to finish they helped us by answering questions and even throwing some jokes to bring the mood better! It was a smooth visit from start to finish.','2020-02-21 10:48:02.392000','2020-02-21 10:48:02.392000',5,'Jose Verano','https://lh6.googleusercontent.com/-3hP9X63gCqU/AAAAAAAAAAI/AAAAAAAAAAA/JH3RPewNkWw/c-rp-mo-br100/photo.jpg','12541597562633926366',13359),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_bkTHOZ4fCwY_XTaEfB31TPLWFh4dIMNhHajC3JCrThmVOB81x_M5v6rhW1xydlMy1AGTbUXT0ZQryfFWCvOZU5Mhy8',NULL,'2019-05-23 23:42:49.713000','2019-05-23 23:42:49.713000',5,'Nancy Ivy','https://lh5.googleusercontent.com/-Xkedcgt8HyQ/AAAAAAAAAAI/AAAAAAAAAAA/5Qd9CZhaVfs/c-rp-mo-br100/photo.jpg','13486358490203335051',998),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_jTAOCGMsgOvhFw8ChaWlbkCvMhGSAWk9pBds3C0b0WCIcU_aF96qnoK7aS8St_RF-H8du5Bo8Km6KDTx94JAZLmwuI','Jessica is a great representative at yalls odessa location! Give her a raise!','2019-10-21 23:47:36.648000','2019-10-21 23:47:36.648000',5,'Kirstynn Coppedge','https://lh5.googleusercontent.com/-4I2VwRbERxU/AAAAAAAAAAI/AAAAAAAAAAA/ASEIlLSMjbs/c-rp-mo-br100/photo.jpg','6521947413723274945',8113),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_k4BjcLcj5FVbLXD-Z6a5JJ3BNU7SGaNOmv1k_reTSNpgAefLqxePZXPvdmlhtaqQ97JnwNjMy2nQTW2h4dlvGaRNVk','Really great experience - they were quick, fully equipped (we saw a doctor, not a nurse practitioner), with great bedside manner. Highly recommended!','2016-08-26 19:26:40.374000','2016-08-26 19:26:40.374000',5,'Cindy Falschlehner','https://lh4.googleusercontent.com/-d24N4xWGqQI/AAAAAAAAAAI/AAAAAAAAAAA/fI_2KiojTtA/c-rp-mo-br100/photo.jpg','14567670160750071148',1982),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_KKviSDPywUcL2Gb80KEJTOyJD7mr5lGa2nsqWZHZlF6fyfHjOUUstLbYJonhOvOSDD7IN0EIrAk3ysgPgWjxHm33dk','I had an wonderful experience here. The nurses Irving and Leslie kept my visit very pleasant. Dr. Lim also made me feel comfortable. Non judgmental environment. I am definitely recommending this place to others.','2020-02-12 02:12:49.969000','2020-02-12 02:12:49.969000',5,'Ashley Brown','https://lh6.googleusercontent.com/-KV4EwfE3RdA/AAAAAAAAAAI/AAAAAAAAAAA/5z28l76bN9w/c-rp-mo-br100/photo.jpg','12541597562633926366',13383),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_kxnCPbR78PNrgHhbmft2wUA0QbWcZCKAXAUhWrtpRrd2JVqqJyMsSY7ea_KVtSgNAIIvtYcgaixAVjyKd-sq7bik6c','I had prolonged my strep throat trying at home remedies, etc. until i couldn\'t bear the pain anymore. When i walked in, i was immediately greeted w friendly staff that went over and beyond to make me feel comfortable. I was in a tough situation financially, and my doctor helped me find a solution! Extremely happy with my visit!!','2019-07-24 03:13:51.916000','2019-07-24 03:13:51.916000',5,'Micah Vaughn','https://lh6.googleusercontent.com/-ian-xrJHEfw/AAAAAAAAAAI/AAAAAAAAAAA/6qiEVfjzbO4/c-rp-mo-br100/photo.jpg','2694018788013845459',6104),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_mMeACjq5xSmccWDxUA-xMjSCU1qBHUVVnzUqJoMBg-ylEfcOV2OOgRG-eIpc9UBYG4IH7-yQcWX8QvKvxUPVkTNuYU',NULL,'2020-06-25 11:22:33.850000','2020-06-25 11:22:33.850000',1,'Annual Spice','https://lh3.googleusercontent.com/-qCJeUPIxZlU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm3ArTVmICnbnYqxe_x_B-jNj-xSg/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21272),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_S04aaKYzqkwwmOP7lV5U71--P-GjoyvSqEQ9u_7sbA1MdsZ3W03s_uaJbEGViqkars-AEz8Wjxg9VP6MmFzlYqBMKY',NULL,'2019-04-25 00:10:39.050000','2019-04-25 00:10:39.050000',5,'Lindsey Wallace','https://lh4.googleusercontent.com/-3dO2HgZr6yM/AAAAAAAAAAI/AAAAAAAAAAA/iMKl8X8KLlo/c-rp-mo-br100/photo.jpg','8626688543755174284',8504),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_uSJHKDiQ41XxpsrKfHxWnst1WR3CjxEN_t0SUvLX_CaKxrzju60K0wgEVteY4_4jSWKOv7f5NsziHmlhcVJjjsTMvI','Had a great experience at ercare 24 Kimberly P kindly greeted us as soon as we entered the door. Our nurse Vivienn N was friendly while maintaining professional Katherine L was concerned about what happened and how it happened. Will be coming back and recommending to family and friends.','2019-10-12 16:17:51.469000','2019-10-12 16:17:51.469000',5,'Marco Sanchez','https://lh3.googleusercontent.com/-HpRL7DYldec/AAAAAAAAAAI/AAAAAAAAAAA/zOdWoxETHqk/c-rp-mo-br100/photo.jpg','14567670160750071148',1220),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA_Zv9XPD9XH66PAmAhyLJByT8SvuWNZQI8eSCeWzUpZ3Aga_puMEF2XbHvbBVRurMd-gkqeaPpsM0Er1lZ9JfB4sYyq4','Helpful and friendly environment.','2020-08-21 12:13:45.397000','2020-08-21 12:13:45.397000',5,'Antigone AG','https://lh3.googleusercontent.com/a-/AOh14Gh8ZiSIpwnCSCFUr7BVAvS29gyDp6ovQN3vjQ2DVg=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-3-nIH9ZcCowV5sckOe4EcMbwo44xhgsE7Bj_tcarENZhpvWWtIgRUetpZyfYTPl91LbSKr1_ZGdmck2v_SbaS4KI4o','The staff here is amazing there super friendly we were in and out in no time. They truly care about the patients well-being. I would recommend anyone needing great medical attention to please come and check them out. Dr. Boester is the best he is makes sure he tell you what’s going on what he would recommend in a way it’s easily understood, he doesn’t overwhelm you with all the big medical terminology that some of us don’t understand. He doesn’t rush his visits and doesn’t make people feel rushed or uncomfortable to ask what may be the silliest questions. He’s truly a great doctor. I love this place.','2019-02-11 22:27:10.444000','2019-02-11 22:27:10.444000',5,'Alyce Segundo','https://lh3.googleusercontent.com/-5GBbota0HnU/AAAAAAAAAAI/AAAAAAAAAAA/NxgQ0Bal7BU/c-rp-mo-br100/photo.jpg','14567670160750071148',1388),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-bcCG5Sw9-KlxETU2ZrRi1Leo45wM3Ju9bfSPy1DFffnyfsZ-3Qxq5lDHVvHlenzD9xIJAvNocq6wqLdE4f7-YWvDSU','Thanks signature care for being so kind, and getting me seen very quickly. Dr Werzanksi is super understanding and quick to get you feeling better, thanks to the Nurse, Anthony, Er tech Natalie, JR, Itza and Dyveliz for making my visit wonderful! :)','2019-05-13 20:06:06.399000','2019-05-13 20:06:06.399000',5,'Lindsay Robinson','https://lh5.googleusercontent.com/-_sPuYn01IFk/AAAAAAAAAAI/AAAAAAAAAAA/kGRgcvEjMLU/c-rp-mo-br100/photo.jpg','16590124370714063921',3386),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-bGGNhaXKGHotAZ9FJmrT4BO-9tnDcyGi_Ziz4MevHKgXrqi8kG1CiES6dL3VDbURSGFnvZZ06MFMiJ4XDr6o4OYfzY',NULL,'2019-01-23 22:26:35.330000','2019-01-23 22:26:35.330000',5,'Ashley Elmore','https://lh4.googleusercontent.com/-dMzsbte44ds/AAAAAAAAAAI/AAAAAAAAAAA/pASAgpaivFE/c-rp-mo-br100/photo.jpg','3272657195432704501',7042),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-g1rT-2RBRO1ht-1jE_HIL3o058hvzBbMDJQrYVnXy9NqfJJfN5ahglFghIsGKDJKgUtpZaCFbHN5Cmok3mRpEmnu94','Sita,Allison and Leah treated with respect an gave me the info a needed when I needed an issues looked at an diagnosed. Was in an out with no problems.','2020-03-03 06:30:44.534000','2020-03-03 06:30:44.534000',5,'Brandon East','https://lh6.googleusercontent.com/-yPKzgd5m_5E/AAAAAAAAAAI/AAAAAAAAAAA/pBhA5eyI3lM/c-rp-mo-br100/photo.jpg','6521947413723274945',14523),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-H6zvVB5FrnAlOXZTQ2cz4hbTek2iRG-BLpreVzBw_eswqmLsd6o5Ylxym6P3pD4o2O8PvsWAU60aQBb8SA0WxgZZig','Great fast service. Erika-registration and Reginna/Joseph the nurses were great. Best ER in town','2019-12-23 18:28:40.692000','2019-12-23 18:28:40.692000',5,'Nicole Jackson','https://lh3.googleusercontent.com/-ar6wKhoUmcA/AAAAAAAAAAI/AAAAAAAAAAA/_0nDUh4ASD0/c-rp-mo-br100/photo.jpg','14567670160750071148',1163),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-ja5iT4MEuyiK2OR0o9yq40WruisifnhJfR0anCQpuQJHVLMNwoS7BIyJ10y9RBPpFuZuvZLXtJNS8hQGHFfyqXDTDg','Was very pleased with service, staff was very attentive and open. Enjoyed their desire to see that i was okay.','2019-03-29 18:12:34.830000','2019-03-29 18:12:34.830000',5,'cridge74','https://lh3.googleusercontent.com/-mXbW3-nSfJs/AAAAAAAAAAI/AAAAAAAAAAA/RxvoqP_jGAg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-kFLR767A3wUFoynbRbnvcpYC7DnL_vRPuhCzEHlCXtL1rUI8MB0swZEvLuqaeQj5Z_jq-VlUawTLgURW9mHT9pmTwI','Kendra, Remington, Juan, and Dr. Vackey were very helpful and attentive during my entire visit! From the start they made me feel so welcome!','2020-06-04 16:04:08.398000','2020-06-04 16:04:08.398000',5,'Haley Cottingham','https://lh4.googleusercontent.com/-eOQpb0m_q7s/AAAAAAAAAAI/AAAAAAAAAAA/iFWmB6YzErk/c-rp-mo-br100/photo.jpg','16590124370714063921',22675),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-Rq9zCqVBTR6B24-oC7ZlrS8GDdJW4HTq-DIMlL-sjeUwq1-KXo9_6FhhmNYSeSJ-3c2AZbOi6cg6gZT7nkf5-Ots4A','When I came to the SignatureCare Emergency Center I have been promptly welcomed and greeted by Jocelynn from front desk. She was very helpful to figured out my insurance and coverage and additional options. The waiting time to see a nurse and be put in patient room was immediate. The practicional nurse was caring and concern about my health predicament. The ER doctor was very professional and explained very well my predicament and treatment. Overall visit to SignatureCare was very efficient and helpful and most of all addressed my emargancy.I definitely would recommend to one in need of imidiate attention.','2018-01-23 20:10:15.761000','2018-01-23 20:10:15.761000',5,'Agnieszka','https://lh6.googleusercontent.com/-_lMtT0XvDSo/AAAAAAAAAAI/AAAAAAAAAAA/3lqze4hLaQ8/c-rp-mo-br100/photo.jpg','3511292162159714121',7735),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA-VVWaLhCmEXBEJPzsKfwswlck5QAS2ZZNiORO_IMEYIaG5ydWgJA3Pq1JZ9u4iLpI3tYVj7KqQA_vx30JgrxnDkrdEc','This place has a great system going for Covid 19 testing. Check-in was quick and easy, staff was professional and received results in approx 15 minutes. Set your appointment online to avoid having to sit around and wait.','2020-07-18 02:15:39.474000','2020-07-18 02:15:39.474000',5,'Martinez','https://lh3.googleusercontent.com/-pBD1Mp7y0d8/AAAAAAAAAAI/AAAAAAAAAAA/DGkhfamEkrk/c-rp-mo-br100/photo.jpg','2077061009497551125',22859),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA0iIEAkXxKGrnfG_oSya1priBV8x9Gm4eFgT4Iv1hnIvTs-mZpnMZ8RuxlCQFxgVfhEtJB-JYxuUwiDh-QNyp61GmL98',NULL,'2020-01-18 21:07:23.992000','2020-01-18 21:07:23.992000',5,'Courtney Mahoney','https://lh5.googleusercontent.com/-cdeQG9DGCKc/AAAAAAAAAAI/AAAAAAAAAAA/udkK5TI19uw/c-rp-mo-br100/photo.jpg','3272657195432704501',10076),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA0KomGU4VT3nBBjRr4P8BbFj9xPIaZiXODKY5Mpa9F1doBafmoc8fL6fvpqV-Kd5d0Vesy0aqTcoGte3oPGNvtu1E438','Very friendly staff! Dr. Lingan was amazing and very patient with me.','2019-09-22 21:24:37.608000','2019-09-22 21:24:37.608000',5,'Leslie Contreras Ruiz','https://lh6.googleusercontent.com/-vFn2gU8IPZo/AAAAAAAAAAI/AAAAAAAAAAA/9xvx6ly3TNE/c-rp-mo-br100/photo.jpg','16590124370714063921',3184),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA0SXJPvxOLRvsmaop4Qtnr0fLk7mUhGFtgt-EHVdhXfTBdn6sveUXypNaQefDBkpmnszzJLASWeAdwoZGzokSVJUIGqQ','I really had a wonderful experience at this facility. It was very, very clean. The staff was friendly and helpful. They were organized and there was no wait what so ever! The doctor had very good bedside manner. The next day, I received a call from their staff just to check on me! I would definitely recommend!','2020-02-22 03:54:43.654000','2020-02-22 03:54:43.654000',5,'Patrice Jones','https://lh6.googleusercontent.com/-_8igHJ3iYS0/AAAAAAAAAAI/AAAAAAAAAAA/3rlsRpSkE7E/c-rp-mo-br100/photo.jpg','16389487648212004696',11062),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA0TFFGnTkT3nevivWsEaFA-jU7f6_q2tCho0nKvS8gP-wMrFhfnLwMd4IVi935mgXwv2l76xEGv06MnMCjsMun9CkupE','Great place! Staff was attentive to my son.','2020-03-08 07:13:24.213000','2020-03-08 00:45:53.931000',5,'Crystal Escalera','https://lh3.googleusercontent.com/-dWbn0nIADTM/AAAAAAAAAAI/AAAAAAAAAAA/y_PbLXAbciQ/c-rp-mo-br100/photo.jpg','13486358490203335051',11428),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA1_RuDQrVJMralTo9mkXqmMf4FLgBxv3hESdB9zjy1kgqHNDUMBgTGIr9Na_dtf9BsWL7-hQM9ZDXsJBwxVUATJV7Xp4','The Staff Was Amazing From Start To Finish. Nice And Clean, Decorated Beautifully. If I Could Give 100 ☆ I Would. Compassionate People Still Exist. I Appreciate Your Care 🥰','2020-05-17 14:42:20.516000','2020-05-17 14:42:20.516000',5,'niquie cross','https://lh5.googleusercontent.com/-yaX74poaG7Y/AAAAAAAAAAI/AAAAAAAAAAA/70285jvO0Aw/c-rp-mo-ba4-br100/photo.jpg','16389487648212004696',22584),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA13xbKBrgNciX9sDeZLByOAzL6dcM7EvOTsrOpRFxFTnSM4EWymVavH1I4pSaNB9w96PTV3V4rJ2BjfDbtq5VqcQgZzg','Signature Care is an amazing place to get the emergency care you need. Lisa V and Dr Daniels really impressed me when I had a sprained wrist.','2019-07-04 19:06:54.913000','2019-07-04 19:06:54.913000',5,'John Rosenthal','https://lh4.googleusercontent.com/-2jC9TRgR0C8/AAAAAAAAAAI/AAAAAAAAAAA/ndZBZTCqayI/c-rp-mo-br100/photo.jpg','13486358490203335051',901),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA1FwxuqkuXyXjjXsadFBuRp_3lGEbmzNApyTHTLxH0u3jnFwBGyITS9aA1GojhAXS_DVzSIPZqywqn3JQIg4o5NqUjFo','The nurse and doctor were really nice, helpful....I had no wait. My care was actually better than my real doctor....I love it.','2016-12-04 03:19:44.539000','2016-12-04 03:19:44.539000',5,'Tiffanie Henderson','https://lh6.googleusercontent.com/-KWj83CXl4-Y/AAAAAAAAAAI/AAAAAAAAAAA/NnBuHIAgz5U/c-rp-mo-br100/photo.jpg','17394740196501090048',5152),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA1PqN_I756NjpAe1Wnqo8-UIxu-qrD6ovNQ-OUIyJ-MFfMPoNncFHvJgHS_elDIr_KJiIMdkx7sg4uAIs2F88dSBaHqM','Good fast service','2016-12-28 15:43:22.414000','2016-12-28 15:43:22.414000',5,'hill m','https://lh3.googleusercontent.com/-eTUTt3zLJIM/AAAAAAAAAAI/AAAAAAAAAAA/ZmqG72BClN8/c-rp-mo-br100/photo.jpg','14567670160750071148',1925),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA1ShB_h07ZlAQNHvEB7rehSqHy4dTcPH9qr6kE4m5YlcdB-l7ANO8Xe5HH2-_--dqVoUbaNpdK2gUbuYxA4aDm2FXbTI','I loved this place the staff is helpful and friendly','2019-07-03 15:41:44.657000','2019-07-03 15:41:44.657000',5,'45 Newbie','https://lh6.googleusercontent.com/-gvxTU40P1es/AAAAAAAAAAI/AAAAAAAAAAA/ln6O8UECHSc/c-rp-mo-br100/photo.jpg','17898197009688164559',5670),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA2goK7RNU6fAST42ubG8L1DGJNg2EAZ888VW7FB1KIOSOpZ-cKXyd9RidBOA8iG3p1I9gC_HdDuo5QAHlFbk7thqRK0Y','I am so impressed with this facility, the staff, and their service. Dr. Akunyili was kind, attentive and great. I was seen quickly and they made sure I felt good before I left (when I arrived, I was in bad shape!). Nurse Dana was amazing.','2019-09-14 14:06:19.134000','2019-09-14 14:06:19.134000',5,'Wendy Lee Johns','https://lh5.googleusercontent.com/-aRHowSPd_Ac/AAAAAAAAAAI/AAAAAAAAAAA/QyCzTWNpP20/c-rp-mo-br100/photo.jpg','14567670160750071148',1240),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA2K9VKymEANR2mjPclXSdOtEXpzA2roh4-wwm4dtTOcYyS6flbHqAplSLt0gC4ONPjIwDJK--wFrVYTDW4hVPBWpqpZw','The nurse and doctor were very attentive! They helped me find out what was wrong and offered me what I needed!','2018-08-21 01:47:37.724000','2018-08-21 01:47:37.724000',5,'Jai J','https://lh4.googleusercontent.com/-3xEFpZJWPN0/AAAAAAAAAAI/AAAAAAAAAAA/1nlWT3luHnk/c-rp-mo-br100/photo.jpg','12541597562633926366',619),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA2N1c-74NlWZDV7_giq4PJQqto9Na59mN7iyTxUFQwykjV5TdyBv_gd2-xUbKIcNzV5Okza3dIFjTfzP5NM8ct9YGcEo','Very quick and easy. Every staff member was very patient and kind; they genuinely show how much they care for each person who walks through the door with an issue. Lastly, they communicate so well and keep you informed every step of the way.','2016-06-09 09:20:15.061000','2016-06-09 09:20:15.061000',5,'Destiny A','https://lh6.googleusercontent.com/-ItSjI_ZzvMQ/AAAAAAAAAAI/AAAAAAAAAAA/HlMz3t95Z4Y/c-rp-mo-br100/photo.jpg','17394740196501090048',5238),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA2o9DwX7rVProooEAJd9mPr6v86WsxEISPFFVHsKN_HRE1RM_rKim7rd8bxPD4-Sua1Q5A-OMuWdO87PZy3tTOcluoqo','This location is wonderful. My experience was great here. The staff is knowledgeable and competent Delicia Karen dr. Datta and Sonny were great.','2019-10-05 20:05:36.985000','2019-10-05 20:05:36.985000',5,'Sharon Williams','https://lh5.googleusercontent.com/--2TyTScwTF8/AAAAAAAAAAI/AAAAAAAAAAA/INPjpk8UqVc/c-rp-mo-br100/photo.jpg','8679688254631342173',8796),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA2Uqu2xGbkxZZQnJEo-5F81iQLutNTf3Xkf4hgG1fT4t1olZTaIaE70LdmtaBho_yEsiZsarz1S0JejFyrxmg524beYo','Thorough answers, good patient care, and reasonable timeliness','2019-07-15 03:03:57.945000','2019-07-15 03:03:57.945000',5,'Jordan Williams','https://lh6.googleusercontent.com/-8943pve98DY/AAAAAAAAAAI/AAAAAAAAAAA/45sPebjv1Xc/c-rp-mo-br100/photo.jpg','14567670160750071148',1275),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA2UyAsj1dhmzNqtXMRfWpVSakCTUKUY7-auDcqdoAVA0OxjON6up8u87evZ1H25ugrDiPJKuBNygPc54lZ8t03jLRx1A','It was a very pleasant experience for me Dr. Harjai, Jani, Tricia, and jesus were so nice very nice and professional','2019-06-30 16:50:46.289000','2019-06-30 16:50:46.289000',5,'jose mares','https://lh4.googleusercontent.com/-lJXBfUNJ6qM/AAAAAAAAAAI/AAAAAAAAAAA/wwdAC6zOeTE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA2xZY_xksjeTlMRfYaskIvtNdC7updtdhbXH3hqz9t-KeiHr3lcPia2g7eKxNfivIMWyvVr-JYiEYnCPgI9s2iikunSM','Service was excellent and quick. I was only there for about an hour including paperwork. Would recommend this location to anyone.','2017-12-11 13:57:36.468000','2017-12-11 13:57:36.468000',5,'Courtney Magee','https://lh4.googleusercontent.com/-A6Mx77YQyPU/AAAAAAAAAAI/AAAAAAAAAAA/Uy9BoQqEt5g/c-rp-mo-br100/photo.jpg','14567670160750071148',1716),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA2Z1ZYKWfNRcxBO-Ft-sFQ0tWkcKvh5rWAEB1DEFfqINtOccWeRcGZiOY4hqnEZV4kswZ0PiP9s322-DF6OTwnAYwgZc','I had a great experience. The service was extremely fast, staff was friendly, and the facility was clean. Jennifer, Fatima, Elaine, Tanishia were really nice and Doctor Faig was nice and fast!','2019-12-20 02:35:04.966000','2019-12-20 02:35:04.966000',5,'The Mccoys','https://lh3.googleusercontent.com/-eBULg-ZQsa4/AAAAAAAAAAI/AAAAAAAAAAA/L1-SO-9Eml0/c-rp-mo-br100/photo.jpg','17898197009688164559',5349),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA3DPP20JT0S2M0XFAeLfDIEjAtSPjbp5lkI89StjcfabsI7lHbaJ7aJ3JPoPzFauA2naqR8ACI0aca3LoatmHhDyUB_A','The most unfriendly and unprofessional doctor I\'ve ever met. The \"doctor\" did more judgement then assistance. (Happened to be in town with my fiance & daughter on an oilfield business trip) I found this place online & went in because I had been feeling nauseous earlier that day, but yet still felt lightheaded & weak! The doctor just laughed in my face when I told him why I had came in & all this before even examining me!! I told him I thought I might have inner ear infection. His response was, \"I see this all the time with kids your age. Their is nothing wrong with you. Your just dehydrated.\" Seriously? I see I\'m not the first whom they\'ve belittled & with my epilepsy I was just more worried, but they could of cared less about my health while he said sarcastically, \"I can go run some lab test or maybe even give you some fluids in an IV!!\" I\'ll say I walked out feeling shaken & so upset & got help elsewhere the next day!!\n\nThis place is a joke they care nothing for their patients - If you dont want to get treated like crap then I dont recommend this place for you or your family!!','2017-07-06 17:04:15.925000','2017-07-06 17:04:15.925000',1,'Harmony Brooks','https://lh5.googleusercontent.com/-ZIsCBqooeGM/AAAAAAAAAAI/AAAAAAAAAAA/_EtYoZHH6iU/c-rp-mo-br100/photo.jpg','6521947413723274945',8352),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA3HAl7kRGi2gi4d2o16uEuRLoduHYJZzHBdp8Nav3Z6-H_0WlQ0UhdkKAp5l8rjyIHH0f4GcOAqPhDx5M7hEiQrz5NsI','They treated my brother with care and precaution.And all the staff very respectful and professional','2019-06-25 22:05:54.716000','2019-06-25 22:05:54.716000',5,'King Jojo Bitch','https://lh6.googleusercontent.com/-EiQHBzipZ-Q/AAAAAAAAAAI/AAAAAAAAAAA/6nGIe6P7dHY/c-rp-mo-br100/photo.jpg','3511292162159714121',7283),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA3k_ihlljUX4CrSsyrvNTQcJ0D8VJw1YdXlpGMamIAEa5qQITXJwJsG3TqZcfFjEjQ6CZM7pgaLLsI_Fygw3w5pOIDEs','Very nice and clean place, Keera was very understanding and kind.','2018-08-23 02:43:17.386000','2018-08-23 02:43:17.386000',5,'Faith Leyva','https://lh5.googleusercontent.com/-yd0KKX07sdA/AAAAAAAAAAI/AAAAAAAAAAA/7iXFzX9TD24/c-rp-mo-br100/photo.jpg','16590124370714063921',3765),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA3NRrMRf2_ElPg4oMN4lckn4umgxDIinmeJ999lOJZOeu9NIo97gVC6SNISDl6g7FnHfgVeAqgNaO0NxKQhdncMvQUtc','The best experience I ever had loved it','2020-01-10 20:06:02.032000','2020-01-10 20:06:02.032000',5,'Christy Hicks','https://lh6.googleusercontent.com/-g9yNcOYWAvw/AAAAAAAAAAI/AAAAAAAAAAA/5RSXaK8Qir4/c-rp-mo-br100/photo.jpg','3272657195432704501',9518),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA3OD3EuZSvsbaZPJks2mWG5dUbmJU3tMhl3yX7y3mrg2Eo0vgGvMYJxlHAGIa7XTOeftmm9XEkGPetwAqFGCNEmAnhdE','Had a great experience, even though they couldn\'t help with my main problem, I needed to see a dentist for that, but they did everything they could to make me comfortable until I saw one! They are awesome! Great customer service!','2019-03-25 21:29:42.672000','2019-03-25 21:29:42.672000',5,'Temeika Johnson','https://lh4.googleusercontent.com/-QGOoLfgTGWQ/AAAAAAAAAAI/AAAAAAAAAAA/5yfEnDhmZY8/c-rp-mo-br100/photo.jpg','8918455867446117794',9152),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA3sJ7iTLYz5W0kjsBR4w4HzvvenklAfMF_1P73xC5HrguwV3kUIf1rvd3Oal6Um3Mu3eXlH98bERfzOzsRQzY4wggXtU',NULL,'2019-10-13 20:15:44.737000','2019-10-13 20:15:44.737000',5,'Rosie Martinez','https://lh6.googleusercontent.com/-omespscOPhE/AAAAAAAAAAI/AAAAAAAAAAA/cQJgmpbtq8I/c-rp-mo-br100/photo.jpg','6521947413723274945',8121),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA3WelG8BRwnPVCpNUpvkJtvBqAgwRGi5fvpEDzTtkifQLjBCRTlFuJv6FqsgLBiOYD7ShLtKtV0MsC0Ku4sFQGCR3LRI','Jose/Allision was very generous and kind and easy to talk to. Dr. Baker was very helpful in explaining everything..','2019-06-26 05:21:01.071000','2019-06-26 05:21:01.071000',5,'Yanine Muela','https://lh6.googleusercontent.com/-DxA54EK760M/AAAAAAAAAAI/AAAAAAAAAAA/pYOgiDbGYEw/c-rp-mo-br100/photo.jpg','13486358490203335051',923),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA3X6IVAJR9n7K8iuA5-lnMTAHNXy285Zjnm_nJdd_B8pLGdgLSmQFgVFOGxV_fpzchIjM8X2KihmCKxYc0ZnVXkMOeKY','Service was fast. No long waits. The doctor treated me, not just my illness.','2019-03-28 11:47:55.119000','2019-03-28 11:47:55.119000',5,'michael simmons','https://lh3.googleusercontent.com/-PkgU88T3h8g/AAAAAAAAAAI/AAAAAAAAAAA/phR3QGtbLaA/c-rp-mo-br100/photo.jpg','13486358490203335051',1049),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA41KMRiZvMn_bT1z9c13kaqUbq8lhMqQRcBnvFySj6eQqTA3tVzuwyNZtfgXMepnXdgFJXvngym3X79hey1p7DVONo0E',NULL,'2017-02-08 18:35:16.734000','2017-02-08 18:35:16.734000',5,'sarah steadman','https://lh6.googleusercontent.com/-lCrDjgX7vsA/AAAAAAAAAAI/AAAAAAAAAAA/CjH4uLsC13k/c-rp-mo-br100/photo.jpg','14904078213800803294',2416),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA46zWOpR0raeA5TXIvFHjtsA0weP5PdiErBH4IGtl38ura9DSuWxVoN_NL4sAMH_g4Jw89UlgxZz7_WI7y1JfLBNQTtE','Dr. Jolly and his team were phenomenal! The support staff Leslie, Kristina, Quyen, Scott, and Maya were very supportive and helpful! Signature Care and it’s staff is very helpful!','2020-02-11 23:37:39.303000','2020-02-11 23:37:39.303000',5,'Willye Powell','https://lh5.googleusercontent.com/-gGCeqOENf5M/AAAAAAAAAAI/AAAAAAAAAAA/SB4NgLn9R6U/c-rp-mo-br100/photo.jpg','12541597562633926366',22462),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA4a89GFOa3m_OAUXFBEYK2vx3MJeg_2nfWsDar9n2edg1b5mZ5vz-qaYN2LAuTSQLuMt6mpQjma_x2NwTVwPqPFb6NP0','Went for a Covid test and evaluation. Staff was friendly, efficient and helpful. The Doctors and nurses definitely put my mind at ease even though I was nervous. Would definitely recommend this location!','2020-07-28 22:52:05.337000','2020-07-28 22:52:05.337000',5,'Bryan Williams','https://lh5.googleusercontent.com/-VFVSqrFo3_c/AAAAAAAAAAI/AAAAAAAAAAA/E8NOVgGpe38/c-rp-mo-br100/photo.jpg','14748677429039074158',21905),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA4abGc3Exm-2ikL1Qi-OBuHHuvohKKagTc1F1XzE7FHmecDZMoTyTAPbM0T0xJLy3fKWbl5KpVuBgnSQ9RhI9Ehi2OAs','I called last night and asked about covid testing and was told I could come ANYTIME and get tested. I arrived at 7:30 this morning to be told that testing doesn\'t start until 9. I live 40 minutes away but need the rapid test to return to work. So I stayed and waited. Then, a patient says there\'s now a car line in the back of the building for check in. So I drive around to get in that line. As I\'m in it, the employee stops taking information and the line dissipates so I go inside to now put my name on another list. This was so frustrating and disorganized and the employees aren\'t directing anyone on what to do! So much time has been wasted and now I\'m being told it will be another 2 hours before I\'m seen.','2020-06-16 13:51:29.520000','2020-06-16 13:51:29.520000',1,'Stefanie C','https://lh5.googleusercontent.com/-Z0hzogZbtZQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckqqBV-bqXoVzGLwXrAmIg-ILS5HQ/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21040),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA4fe9n7nmRdLIhBA12SiPO5ufwtxg0DBortv-VcLLmvDaYxocy4aa7AtfqHF5vXkx-wabeRWd8VQCxwakGdO9rACV1gg','If I could rate this place 0 stars I would. This is my second time going to this ER and am appalled, even more so the second time at the way they treat their patients. The first time was okay. Nothing to brag about. I went there today for a 3pm appointment to get tested for covid. One of the employees sole responsibilities of as to greet people at the door and pass out administration forms. I overheard him ask the people standing behind me in line if they were using Insurance because if they were they would need a different set of forms. I began to go through my paper work and didn’t see anything that had a space to fill out insurance info. I asked him and he said “it’s there” I flipped through the documents and asked if he could show me because I didn’t see it. We went back and forth for a moment and he misconstrued my frustration and had the nerve to ask me why I was being rude (why am I being asked that to begin with?) answered his question by telling him that I’ve been waiting in line for nearly 2 hours in 100 degree weather with the sun beating directly on me, I’m having severe covid symptoms and do not feel well, Im asking a simple question he is unable to answer and he just responded to me very rudely and it turned into a cussing match after he called me “rude ass” I immediately went inside to administration to advise them of the situation and that I also have a blood clot near my lungs and cannot handle too much aggravation or it causes me extreme chest pain that can escalate to a more critical condition. The gentleman I initially spoke about continued to cuss at me in front of the other staff and they did not a SINGLE thing to address lt. they just got wondered why I was so offended and cussing. Is this a joke? Everything accumulatively with me not feeling well and being disrespected and cussed at FIRST is YOUR ANSWER. I’m not going to be nice after being called “fat” or a “bitch” or my serious medical condition being neglected. I left and felt so sick I ended up passing out in the Home Depot parking lot before I waking up (praise god) and able to seek medical attention else where. I did not exaggerate this story in anyway. This is a legitimately happened, I swear. I have never felt so disrespected.','2020-07-11 22:06:21.373000','2020-07-11 22:06:21.373000',1,'Tiffany D','https://lh3.googleusercontent.com/-aKjacnYMbSo/AAAAAAAAAAI/AAAAAAAAAAA/QFZ54nAyhy8/c-rp-mo-br100/photo.jpg','14904078213800803294',21584),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA4lf-8HvA_v62uH4u0NbcGTMhqvWsrqcOkJmam5m85Dm-SvOU6doMNKhIfQfHOkUH0SmXRzBIp4kVWl99aYqYP9zzVTY','My daughter was treated here last night for flu type A and we had the best experience. The friendliest staff who treated my daughter like a princess. We got seen immediately, the nurse was exceptional, the doctor was wonderful, and I would highly recommend coming here if you’re in need. Thank you times a million!','2020-03-03 13:18:49.927000','2020-03-03 13:18:49.927000',5,'Brandi Heinz','https://lh6.googleusercontent.com/-Ca4PMIR-1u0/AAAAAAAAAAI/AAAAAAAAAAA/zVoR1eG3LAY/c-rp-mo-br100/photo.jpg','14904078213800803294',20984),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA4M79jR2rfe8-De1LJ-xkl_fqDRq9cCRnb6JBzUQoUcJUXiAOsUPm4cC2_9rqjjRRq94Jpx5gge5ovK5HZsokfrYe410',NULL,'2019-02-05 16:50:50.429000','2019-02-05 16:50:50.429000',5,'DeLaine Cornelius','https://lh5.googleusercontent.com/-kxpCGb8ze0g/AAAAAAAAAAI/AAAAAAAAAAA/IwNsghUQJEg/c-rp-mo-br100/photo.jpg','3272657195432704501',7027),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA4MwTbJaVNvAqcwB8_DzwwE3IwmzIF2PTJeyZek2yPxoee9dc3CzGgmhjNBYmIt1DoAgd1Lk0Mj5J2aHpPG9UDY54hTI','Had an amazing visit, they were fast, friendly, welcoming, nice, caring but most of all polite. Thanks for the wonderful visit I was in and out in no time.!','2017-06-08 20:55:51.177000','2017-06-08 20:55:51.177000',5,'Elizabeth Davis','https://lh6.googleusercontent.com/-vgSzXt6bWfw/AAAAAAAAAAI/AAAAAAAAAAA/XnJmwvLgSMo/c-rp-mo-br100/photo.jpg','8918455867446117794',9396),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA4soZO-Yg--10jntujUiby2ZubGXSsO-nGxsv9D-Vq-1MZluVyfcBMErypdfYSjeeyd10mr4Rm_MPPYE_ADOtPqbL9VI','Friendly staff especially Ashley at registration and nurse Lynn. Luckily we had no wait and was met by doctor Nguyen immediately upon arrival. Staff was efficient thorough and honest. Doctor took the time to explain everything and made us feel comfortable and taken care of. Despite the fact that no ER visit is fun this was a very positive and great experience.','2019-11-14 03:28:46.337000','2019-11-14 03:28:46.337000',5,'nathalia carter','https://lh5.googleusercontent.com/-cSp0x4JN06M/AAAAAAAAAAI/AAAAAAAAAAA/5g9XomAhsXk/c-rp-mo-br100/photo.jpg','17898197009688164559',5436),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA4WtJN7JVQ-9imt59SrVhgzW02wfFZnchXfN-eux7G2HMASKaeORHX1cP6Ms7x1kFQCTg8NjboXlcFkTpzDpORmVTlo0','In and out. The staff was very attentive and knowledgeable.','2018-12-30 12:58:19.868000','2018-12-30 12:58:19.868000',5,'Angela Cook','https://lh6.googleusercontent.com/-PKH9q62U8ew/AAAAAAAAAAI/AAAAAAAAAAA/SG2cqY1xkkg/c-rp-mo-br100/photo.jpg','14567670160750071148',1443),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5-VkVHoXh0dsVE-q5u7i6LaD74BrTUM9Yc67qX4sHZicIG1VSQlHNc8v4she34eKS6lc_odxMnH_g0uHVf_1jspLB4g',NULL,'2020-01-03 19:16:18.484000','2020-01-03 19:16:18.484000',4,'Alexandra Garcia','https://lh6.googleusercontent.com/-ffMX59-digc/AAAAAAAAAAI/AAAAAAAAAAA/tTmU5bDl8zE/c-rp-mo-br100/photo.jpg','17898197009688164559',5309),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA51Pi8rhcK9o2k-GGkAyYGEaFz9LngY2NSc0J3jISJtiwJ29qsSF9Q9cWoLY4fYr1ZwN42rs70Jl-0rOLfJdVAQZPHko','Nurse Jessica gave detail information I needed to know and took great care of me.','2020-03-01 22:44:06.758000','2020-03-01 22:44:06.758000',5,'BRAZY Becca','https://lh6.googleusercontent.com/-noZtwzRg3dA/AAAAAAAAAAI/AAAAAAAAAAA/kLMLjno9NuY/c-rp-mo-br100/photo.jpg','6521947413723274945',14526),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA55EZgz_2-NKhXUSnD2qNOHl7jZUG9KDNFnr5eYpzBv3slTytjqU5pXgziqkDmZGR3Eq5PW_BP3jIWnfnqMLX-_w3IPQ','Dr. Pham, Heather, and Olivia were wonderful. My issue was addressed promptly, and I felt better before even walking out the door. Would recommend to family and friends!','2019-07-26 18:05:47.854000','2019-07-26 18:05:47.854000',5,'Hailey Johnson','https://lh4.googleusercontent.com/-9exa9fXBixU/AAAAAAAAAAI/AAAAAAAAAAA/A0LJ_rx8XBg/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5DHPYz-fa9Q8Z1CwtdIKjGwMzZ9kGWo01k0b7BsCVvZhdV6SV25BrwcrdWufrAiijIwq0UuX-fvcK4L758I1DnRoI3E','Most efficient COVID test in the Austin area. Have been in and out with our results in under an hour two times. The night staff is very friendly and helpful.','2020-07-12 06:22:25.612000','2020-07-12 06:22:25.612000',5,'Lily Mae Crowdus','https://lh6.googleusercontent.com/-X3F1K5k1Vfw/AAAAAAAAAAI/AAAAAAAAAj0/AMZuuckVEjnkUzZFQ-ivl7BC0A6iFPpZDA/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21323),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5GIRdOTFATL4fJvL1kBa1KltQjNpF5V98Yg6xR7mqw81-kf08AIV8ebaIieN4oPftS9GB0VmABqZnL0_6V5JYnDkxlE','Good staff good service shaunda, dr.hemerka, nurse amy yall are the best','2020-02-08 16:40:36.274000','2020-02-08 16:40:36.274000',5,'tato ortiz','https://lh5.googleusercontent.com/-8AY1gILO2wI/AAAAAAAAAAI/AAAAAAAAAAA/YTZtatSi-pg/c-rp-mo-br100/photo.jpg','2694018788013845459',14248),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5I7Kce33xYEKhgsanEPElbp-bnwvuh3dXs7mm7anCB9qDaCBa-OTvsj31ZTNYw5Olb5cdXvzQ4GyjbnO7Nrzyc-edR8','Time to see the doctor was amazingly short.Best, most professional care I\'ve received EVER!!!!!','2019-11-16 15:46:18.568000','2019-11-16 15:46:18.568000',5,'Bobby Pemberton','https://lh3.googleusercontent.com/-QL6S11i4w7E/AAAAAAAAAAI/AAAAAAAAAAA/5gFlyVrPyVs/c-rp-mo-br100/photo.jpg','13486358490203335051',736),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5mRRhbIb-qhsDm_wQxynWQQvQ2RMq-hFH31ZeNODeQt1cySLqYR9ZO_53LGMQhAOLkObyLfC12uXFukVcaY4FNzWEgk','Hi I went to Neighbors ec on 2/22/15 there was no wait everyone was very nice\r\nand took very good care of me. The next day they called to see how I was doing !!\r\nGreat place!!!! ','2015-03-02 16:13:55.760000','2015-03-02 16:13:55.760000',5,'tx lady','https://lh5.googleusercontent.com/-Dii4PJLKD3Q/AAAAAAAAAAI/AAAAAAAAAAA/01k1FsaYXck/c-rp-mo-br100/photo.jpg','17898197009688164559',5957),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5ndet_RnouSecuUGro2Vxlhmeus4hskv1w1jdGC_9en4nejI-02WY4f3lwfs7Mn6vHNRp5OjaxQ2Td-flvX-0wx4Ohw','All of the staff who saw me for my illness were excellent. A very short wait time before meeting with the nurse and the Doctor. They were very thorough and professional. Thank you for your fine services!! I am so pleased to know that an outstanding 24 hour clinic is in my neighborhood.','2017-12-27 23:37:12.282000','2017-12-27 23:37:12.282000',5,'Larry Jacobs','https://lh3.googleusercontent.com/-K7BmyiQN6Rk/AAAAAAAAAAI/AAAAAAAAAAA/n3YyGeONaUs/c-rp-mo-br100/photo.jpg','3511292162159714121',7745),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5ngYeLv5AJ86UmlBzh2Xh7JCmXwYf-rKsXKTv59psUbsxvVHIIhHge1E8GAIlQsvqzo_NEugkFJ0M1UvG0JTYvW5TSo','Took my fiancé there with flu-like symptoms. He ended up having the flu and they gave him a prescription and sent us on the way. He said that everyone was friendly and it was really quick. Glad we chose this clinic!','2018-01-14 21:56:43.417000','2018-01-14 21:56:43.417000',5,'Sarah Wasson','https://lh5.googleusercontent.com/-8nU71Hh7FoE/AAAAAAAAAAI/AAAAAAAAAAA/WXMb_iTkaVs/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3885),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5sdCpUghlfjLGVtSoiY_o3_no6p9tT5QVXSG08wELQVz8tR0KV1gKt8TPE39oKiTLy2M5WoTxSSuxOUVkqeD7Xz_q18','Aaron got me right in and gave me utmost respect for my concerns','2020-07-04 12:48:29.337000','2020-07-04 12:48:29.337000',5,'Greg Thomas','https://lh5.googleusercontent.com/-58XCgXP5nUQ/AAAAAAAAAAI/AAAAAAAAAAA/XyRFAGv0V_0/c-rp-mo-br100/photo.jpg','13486358490203335051',21352),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA5zhzvlA3orlOwyN9uVxbcdrMpV3Th2CEBhT8JtESotQ2q8vrVfXUPLJ2Ml-jt1lfEz_PhBe5uZFtXZYXprtFGGDnUos','Dr. M. Mauldin and staff provided great care while in the center. Tanishia was also very informative with coverage on my ins and making sure I understood by invoice.','2019-08-12 05:18:09.378000','2019-08-12 05:18:09.378000',5,'Maria Plascencia','https://lh5.googleusercontent.com/-8kwjGXVGvtY/AAAAAAAAAAI/AAAAAAAAAAA/JLikqpRFZ5E/c-rp-mo-br100/photo.jpg','17898197009688164559',5593),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA60VDx2V32inVNkl6VqHqlzcSB0q8Nm_d5AOKw1D48q30WAtM_KUH925cm_L7VOUIlY8kf0aop5y3stHCl5wyX5x_Ow4','I highly recommend SignatureCare emergency Center. I received exceptional treatment from signging in with the receptionist Briseida M to my nurse Susan Ryder and later Sarah, along with efficient quality care from Dr. Patel.','2019-11-12 01:32:37.882000','2019-11-12 01:32:37.882000',5,'lisa Vasquez','https://lh5.googleusercontent.com/-BSpp-ue4ATc/AAAAAAAAAAI/AAAAAAAAAAA/G9XfemD4Wbg/c-rp-mo-br100/photo.jpg','17898197009688164559',5443),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA6D0ObWAvMk72X3tl7kicYEJGd0TGeZKzcAmFk4gdf-T2heWqRhDcf-IWFzbHvPhUXIFsKxEX7g439RDn1abGtMmq4so','Marcy And all the other doctors And Nurses were a big help they made me feel really special and well taken care !','2017-02-17 23:53:15.051000','2017-02-17 23:53:15.051000',5,'Melanie Ashley','https://lh6.googleusercontent.com/-SveBsF7aLnI/AAAAAAAAAAI/AAAAAAAAAAA/iTd4ophUloI/c-rp-mo-br100/photo.jpg','3511292162159714121',7874),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA79jh8I1DCkLWnf5FE8sAYGffwg62H47UE8NTRuH4fVziV9ycB0wW8XVTDo-g5-8OTEY3n3N5-6Lm7Q3AcK6zA2x62vA',NULL,'2019-06-25 00:14:12.320000','2019-06-25 00:14:12.320000',5,'Mouhammed Ouwaida','https://lh4.googleusercontent.com/-zYLNBd9YhbI/AAAAAAAAAAI/AAAAAAAAAAA/QTb0xdySctU/c-rp-mo-br100/photo.jpg','16590124370714063921',3336),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA7DhKBvNkf3I0pDz1Yy67XbeqivVrkHxh-ICLbPTSHhiuc2SKeBUi6IObPMdctoGbHVCwtHCoAD4hzP6lnH5R5mOE4e8','Brought my nephew here for strep throat. They were quick caring and made sure he was comfortable through out the whole visit thank you Dr. Patel, Ekaterini, jessica and luisa.','2019-11-27 01:54:56.305000','2019-11-27 01:54:56.305000',5,'Arely Cerda','https://lh4.googleusercontent.com/-KJpMUCB5dkg/AAAAAAAAAAI/AAAAAAAAAAA/CaE-mq2TO-8/c-rp-mo-br100/photo.jpg','16389487648212004696',2621),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA7G_tfzkBJR6S6yN8UtNfAt___LvuFKI0P3uChG1XSnamtQfwiH4EYGaip_to5SN7_3GX61GLw0zEfebT4FWJyiJYd3o','Best service ever! Dr. Pham, Patricia, Ekaterini. Thank you for your help!','2020-01-24 00:05:00.164000','2020-01-24 00:05:00.164000',5,'Inhome Healthcare','https://lh5.googleusercontent.com/-3e9GE6ffC_M/AAAAAAAAAAI/AAAAAAAAAAA/v_NNv2JFdRQ/c-rp-mo-br100/photo.jpg','16389487648212004696',10188),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA7HOXdcsCW3DZaLgRDD4jw7Zgh8Or7RES0FX1WH22iPzLqKab7pb2yQT_mu9XM-P3HQtLioNaaTH9q_bOsQQL2hfelKQ','Very fast had me in and out for a covid test!','2020-07-27 16:54:10.029000','2020-07-27 16:54:10.029000',5,'Roger Gauna','https://lh5.googleusercontent.com/-hN9gEJ42q2w/AAAAAAAAAAI/AAAAAAAAAAA/evPUODZfuwU/c-rp-mo-br100/photo.jpg','2077061009497551125',22807),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA7HstZ6jOcIwYnV1yTw7w7IOkYt4x719wa2Se2x9_IxoV3TP4F91DaTKNnjlSEQozeu5BXqPnjKdJ5ZrDQGHru-zjGkA','Wow! I was in and out within the hour (1:30a). The team is compassionate and courteous. I HIGHLY recommend this facility. It’s clean, the staff is kind and professional, and they work very fast to ensure your needs are met. \nI cannot say enough nice things about this facility.','2019-06-25 07:41:25.360000','2019-06-25 07:41:25.360000',5,'Crista Ramos','https://lh3.googleusercontent.com/-_7xNcBpmu70/AAAAAAAAAAI/AAAAAAAAAAA/Cj0wUL_fZ5w/c-rp-mo-br100/photo.jpg','14567670160750071148',1284),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA7pbXe5yUhPadCIvKcyUM6I5YN0pq-PSAfrqMQKENSYNnlpQI0Lpjcrmx-2ZZiPpv7F4Sv9G5Vy2GODg-wTUAMlDb9vA','The staff was friendly, knowledagle and ultimately got me feeling better before I left the care center.','2017-01-28 16:28:17.393000','2017-01-28 16:28:17.393000',5,'Sam Morrow','https://lh3.googleusercontent.com/-JFsIm8Jd380/AAAAAAAAAAI/AAAAAAAAAAA/ZFP2qnHOlmg/c-rp-mo-br100/photo.jpg','16590124370714063921',4077),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA7v637OsyYPtTcCHzi69DD6C8j4HOHY8rP-c4YZQ2HppBohPpzBF6JxCF7hTZdvXp7oRZz32Znl740v8ar8JmmO_WUlk','Best experience I have had in an ER or minor emergency center. I went in severely dehydrated from food poisoning, the staff was amazing. They were warm, caring, sincere... honestly I wish my real doctors were as awesome as them. I was seen immediately and they started treating me right away. The facility is well equipped and they even sent be home with my EKG readings for my cardiologist to look over. This will be the only place I go from now on.','2017-06-12 22:38:16.211000','2017-06-12 22:38:16.211000',5,'barbiegrlpixie','https://lh6.googleusercontent.com/-trUe9KwmSko/AAAAAAAAAAI/AAAAAAAAAAA/rWk17XFzmcM/c-rp-mo-br100/photo.jpg','14904078213800803294',2348),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA849merFGtymeDe18WvE7EILH2n5A2jlPASJJEjNZznEsE8yMyFd3VZ9UsvvojwPCjhxHRARljiXFccf4dkDZb7hTiNE','This is a great place Lindsey Sarah Fatima tanisha took care of me very well','2019-12-06 04:54:19.385000','2019-12-06 04:54:19.385000',5,'Cherish Skyy','https://lh5.googleusercontent.com/-jnmo0K8PoMc/AAAAAAAAAAI/AAAAAAAAAAA/u4OEGwB6nLI/c-rp-mo-br100/photo.jpg','17898197009688164559',5375),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA88IQukYLld9M7oGlj7dctK06g43_557oNgfxAlU7eT1zoA71khsYsUDVPpqcOBMd1ynoF8cww5GdHEzokKV7ya6ISPQ','I would highly recommend this Emergency Center. They took good care of me and I didn\'t have to wait at all. The doctor and the nurses were amazing. The security officer was nice and asked if I needed a wheelchair before I went inside. Now I know where to go kept time without thinking twice.','2017-02-08 22:39:18.784000','2017-02-08 22:39:18.784000',5,'Erik Flores','https://lh6.googleusercontent.com/-x5AqSXysF60/AAAAAAAAAAI/AAAAAAAAAAA/CJgXZBcApjM/c-rp-mo-br100/photo.jpg','14567670160750071148',1891),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8c8zCEAB4YDx9CjUpeTtnyoq2NYcalBuRu7gO8TQuMlqWNk21_MBwCb9g-Cc17Yeu2479aaMbBmhSHBBqS6f8qx_GHg','Hands down the best medical experience I have hand. Exceptional staff, from the front desk to the doctors and everyone in between. Thank you!!','2017-05-17 04:29:22.591000','2017-05-17 04:29:22.591000',5,'Kareem El-Sadi','https://lh3.googleusercontent.com/-LRwpGcxhgCU/AAAAAAAAAAI/AAAAAAAAAAA/wdXhbDb_hTg/c-rp-mo-br100/photo.jpg','14904078213800803294',2357),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8HjjPf6ri_lcfvLLmC7pdBhGH3K-vWqYwmkHgCHLch56LW9jGp1shitscBq4ie5OQizoqdAtxjgTBnuthuX2m2Hw4ho','Staff: Sindy; nurse: Agnes, tech: Britney and Doctor: Falg, are very knowledgable and kind; made our emergency experience so much better!!! Also no long wait, we were seen immediately!!! 😀','2017-05-20 02:32:58.561000','2017-05-20 02:32:58.561000',5,'Jenn Dent','https://lh3.googleusercontent.com/-sopcFXBFqUQ/AAAAAAAAAAI/AAAAAAAAAAA/g9Mnkf3EGxQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7817),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8HnIxccbjNBsZHiseQpfn8eld2tKfqrcZT4sn3XUZ32znbbJkIHQQ7QnRmOs8kuYEckv71Z_ByteHucNgStyFZYJMNU',NULL,'2019-10-17 01:23:04.030000','2019-10-17 01:23:04.030000',5,'Lataunya Tezeno','https://lh3.googleusercontent.com/-0913_SS6F7g/AAAAAAAAAAI/AAAAAAAAAAA/08lqN5B9m1U/c-rp-mo-br100/photo.jpg','16389487648212004696',2808),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8kesX4o4uVp6G5GrlGxZai7kfWAkWEkxrmzPumpIdj9lWKPcFko-K30juh3w-FJkSjvJ4IyK_1pvEsfa-HCpvjDd220','They were very nice and sweet and were very understanding. They explained everything they were doing and provided amazing care while treating me!!','2018-07-19 19:26:15.983000','2018-07-19 19:26:15.983000',5,'Celeste Francis','https://lh6.googleusercontent.com/-Rbt89M-W8QQ/AAAAAAAAAAI/AAAAAAAAAAA/3Sn06WltLJ8/c-rp-mo-br100/photo.jpg','12541597562633926366',629),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8LFahFKeZbBLMWFx5xLCIcHaKPz4_2rp3D65tc5jGtSUNzuMTBE7BtD1ff8mVPw-qtkgooKFAlVl1tk5ZShEzNMbD0U','Staff is very friendly. They show respect and care for you. Cody was great','2020-08-03 17:05:22.582000','2020-08-03 17:05:22.582000',5,'Gabriela Olguin','https://lh4.googleusercontent.com/-4-B7gXkeQcU/AAAAAAAAAAI/AAAAAAAAAAA/kzH8bFgN63s/c-rp-mo-br100/photo.jpg','2077061009497551125',22753),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8PDCC4y9TjYL6zpGsru_V3cOajHhlJsX4SEiHK5v90AZW2lGzNzhrSY3BdYC3HjVnqmZnnkaoyS4zFWancot7OgtctY',NULL,'2016-11-14 04:09:01.564000','2016-11-14 04:09:01.564000',5,'sabrina claborne','https://lh3.googleusercontent.com/-wXKxKQq0Y9A/AAAAAAAAAAI/AAAAAAAAAAA/sfK6eRZaWrI/c-rp-mo-br100/photo.jpg','17394740196501090048',5173),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8qcvlwY1o-_LUNyx7_mho6fXZH0Uj5DUuITkEo3rAKlNA7t5h-m0uZGfg0irH1SJMys-avYVg2NycP_NBkiLD0hEioo','front lady kim very sweet and sherri and brandi did a great job definitely be back','2019-06-12 11:35:58.985000','2019-06-12 11:35:58.985000',5,'Charli Kaye','https://lh4.googleusercontent.com/-0CdAIyzPTms/AAAAAAAAAAI/AAAAAAAAAAA/AxScrtr-lNE/c-rp-mo-br100/photo.jpg','3272657195432704501',6951),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8sUAxeTwsU2uSw3pUwWHpZrh3AGZi6AJKMyQCbtcJU8Xr84FdHdo5VC_WY5zF5TbVX0Y5HXIrWNL5vUYVzeyD1v24Ds','Signature Care Staff were excellent from my initial meeting with the front desk staff (Ms. Jackie Reyes), to the nurse who assisted in the room (Lia) and the X-Ray Tech (Mary) was great and Dr. Boester did an amazing job making me feel comfortable and helped me understand my injury and the best method toward healing.','2017-11-16 07:16:35.405000','2017-11-16 07:16:35.405000',5,'Christian Carrier','https://lh5.googleusercontent.com/-IMBkkeIdhWE/AAAAAAAAAAI/AAAAAAAAAAA/HILExHd3m2g/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1731),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA8Xn46VFZ0oT6FaOgNpkZmfA1kOunIzmcu1BJk-njsTsvAOgERQEKUXKBIfc2RegApo2BatmfH8Ojeh9nI22l9iw2rag','Everyone was great. Fast and friendly service. Dr Yost did a great job, Jennifer had me in and out quick. Sergio made the registration process super easy and Kim the rad tech seemed to have a smile on her face the entire time and made it a very pleasent experience.','2019-04-22 03:37:29.114000','2019-04-22 03:37:29.114000',5,'Lucas Cummings','https://lh4.googleusercontent.com/-bjb7zxJOTVI/AAAAAAAAAAI/AAAAAAAAAAA/DWzYKB9FKUo/c-rp-mo-br100/photo.jpg','3272657195432704501',6974),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA9730iWCeFftCe-bq8LJALY0lw-LG0D9Wp2GPv_a-BQIbZn89vDP9OCCJHvUjbXvzPadIPuER4yiI3cz7iKSQzZKeSRk','Nurse : Fanny ,Selina\nEr tech : Brian , Ralph\nRad : Sandy\nDr : Wang\nReg :Okarys','2020-02-24 19:50:29.332000','2020-02-24 19:50:29.332000',5,'Trung Truong Cover','https://lh6.googleusercontent.com/-JtDNrlXSPJs/AAAAAAAAAAI/AAAAAAAAAAA/vL-6257lwQk/c-rp-mo-br100/photo.jpg','17394740196501090048',14007),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA97vQuitbb97XZoBBuNyvtsogjdWwdvFa2zbpXL_FvXTnZZfI_jI38d6J3mocFkDIlSksQba8sERvjitZ2dYo8bHObIw','Very positive experience! We were greeted professionally, and there was no wait time. All staff members seemed sincerely concerned about my well-being and had ample patience to put up with my hypochondriacal side. Dr. Golla was thorough and professional; he actually listened - and took the time - to respond to my questions/concerns. I highly recommend the Sugar Land/Mission Bend SignatureCare Emergency Center! -Caprica Neal','2018-09-05 20:56:09.480000','2018-09-05 20:56:09.480000',5,'C Turnbull','https://lh4.googleusercontent.com/-YTmMMxBAjKY/AAAAAAAAAAI/AAAAAAAAAAA/aKmVWc_iE_I/c-rp-mo-br100/photo.jpg','17394740196501090048',4805),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA9cE5mfchG3KsKX8QoFJ9Te12-60Nu56btBuBXE-WtWdnm37kY84zHgwEJ-ewGh4xPV70yPAxK305VLJ71B7Q0XfEvuQ','Very friendly and professional staff, Kimberly the lady that works the front desk was very kind and Jacob the nurse was very helpful in trying to figure out what I have. Their front lobby was very clean and they provided snacks and coffee!','2018-02-08 16:11:14.977000','2018-02-08 16:11:14.977000',5,'Connor Pierson','https://lh3.googleusercontent.com/-Jh2gbx7U-bI/AAAAAAAAAAI/AAAAAAAAAAA/h2oLbK07Bko/c-rp-mo-br100/photo.jpg','16590124370714063921',3863),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA9dTJVId4wO1h6L3c1dW6CdbLayQRfWFP1se5wABs9X2HcCAKdeX2vOZAv3U1-1MDDqWXkuQ1diUeNPsXMlY1LoP6v0I','Had to bring my middle son here for strep symptoms, and they were quick to get us back and quick to start testing his symptoms. Thankful to have a place that is FAST and always caring!','2020-02-17 14:57:42.783000','2020-02-17 14:57:42.783000',5,'David Bane','https://lh5.googleusercontent.com/-ba--avxtjVA/AAAAAAAAAAI/AAAAAAAAAAA/rvySBTZcnxc/c-rp-mo-br100/photo.jpg','3272657195432704501',14353),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA9glssv8zXL53JQeZy4Rxn1yL4_UTD4S1gF_O781RvzCrgNwudG0km8mbI03HnPg5oUQFbfDmszRnsJhQxPSzsB7DdoE','I had a wonderful experience at SignatureCare. I took my 4yr old son in on a Monday evening and everyone from the front desk staff to the nurses, techs and doctor was kind and helped us feel welcome and comfortable. We made an appointment online and were taken back to a room within a few minutes of arrival. The nurse saw us immediately and the doctor came in shortly after. We were in and out quickly, without feeling rushed, and I felt the care given was the same that we would have received at a major hospital ER room without the insane wait time. I cannot say enough about how wonderful SignatureCare is. I hope to not be back any time soon but if I (or more likely my kids) need to go to an ER there is no question on where I will go.','2018-03-27 13:10:39.772000','2018-03-27 13:10:39.772000',5,'cara striegold','https://lh6.googleusercontent.com/-e3vdvTqlrLA/AAAAAAAAAAI/AAAAAAAAAAA/GuAVlmumLFk/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4867),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA9iAQn_Q61WKmzbHKCsUrmlgx1ouFkT_EHCFC5l5BafHOTE_efkvbhxLBgDdDQ74U_rO26HxTLudvdgtaw_cpzHnTYUg',NULL,'2019-03-12 06:43:55.515000','2019-03-12 01:39:03.212000',5,'manny','https://lh3.googleusercontent.com/-UmuBNGo2R0E/AAAAAAAAAAI/AAAAAAAAAAA/onjD00plWE0/c-rp-mo-br100/photo.jpg','8918455867446117794',9158),('AIe9_BFhqAtkXvUqdYNeMuBBGjaA9oxp4zA9zzamhUkmTj-BcfTG-RDFkB5KDxoARPKnlkIQfnU6oq8jBie5jm7ZkqNr3J6Fq0SqAt5PNwz_MwjzrABJl_o','My experience here was amazing! The service was fast, the staff is super friendly. I appreciate the help of Dr. Golla, nurses Jubril & Tammi, Radiologist Sandy, Er Tech Ralph and Patty from the front desk. The ER is nice and clean. From now on if I have a medical emergency I\'ll be sure to come here!','2019-09-23 18:18:24.826000','2019-09-23 18:18:24.826000',5,'Sarahi silva','https://lh3.googleusercontent.com/-qgIAqLU2250/AAAAAAAAAAI/AAAAAAAAAAA/a32K4Bza-bw/c-rp-mo-br100/photo.jpg','17394740196501090048',4600),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAa54OjU-Sdy3dI7zQu8dzlm-3KiSN49j-_lbhnET6_Vtc8ge-mkl_pgwJQySpPvz5tAkK7VejeKupCCjs8T_curUwGFM','Staff was helpful and friendly. Good experience overall.','2018-01-13 02:19:22.360000','2018-01-13 02:19:22.360000',5,'Mike Rutledge','https://lh6.googleusercontent.com/-ar4Gx1TT8mw/AAAAAAAAAAI/AAAAAAAAAAA/Lf1R_bibQj8/c-rp-mo-br100/photo.jpg','14567670160750071148',1684),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAA9Dx9e82NRdL3xuuV9kfnRLceOYEtXGZcekpH8W3n9TVn-MetHDSyEQvjQ9nkevvDqkKb8Atn04jjbV3-XjGkRsFBjY',NULL,'2020-07-28 02:21:34.630000','2020-07-28 02:21:34.630000',5,'Omar Benitez','https://lh6.googleusercontent.com/-7sUMoP8jp3o/AAAAAAAAAAI/AAAAAAAAAAA/Cz_heKtQYJI/c-rp-mo-br100/photo.jpg','2077061009497551125',22803),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAAB8oAC_CFTY_zkB_3y5y_m4MEm8p7gyfs_nG1ZQRtTQw6YB-v5JX6AjDC-gu0zyAiZTcMkyZBRNKvmnFBVOVj-qwfD8','Thank you Alicia and John Bell for taking care of us today!','2019-07-15 21:36:03.034000','2019-07-15 21:36:03.034000',5,'kris Burton','https://lh6.googleusercontent.com/-KgAacoQZaTM/AAAAAAAAAAI/AAAAAAAAAAA/OyhHF8zs3MI/c-rp-mo-ba2-br100/photo.jpg','8626688543755174284',8431),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAAcNngvnclXUG7DtLJZZnOqFJZ3vteUoF9Df46TkZKYZpwk7zEFp1PYCRmRNMbY5RGppKpLM3Cz1JJSxv0wR8Vhq6zyU','Everyone (Kendra, Remington, Morgan and Dr. Nguyen) was very professional and caring. My only issue is that they do not take Medicare and my supplemental insurance. I had to pay upfront and will have to file with Medicare myself.','2020-01-29 00:32:53.284000','2020-01-29 00:32:53.284000',5,'Cathy Adams','https://lh6.googleusercontent.com/-zvPnQI115s0/AAAAAAAAAAI/AAAAAAAAAAA/CWPghgqV_RU/c-rp-mo-br100/photo.jpg','16590124370714063921',10211),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAaHVDRRMEZ68XZjheVplbtmP0F4uLNEQ8C23TgDWVHEIX2ERd3KSH4MCSGjAJoGKGVCzmoczHsjXEg_cG5RwAs1UUQgc','The staff was awesome and very informative and the wait was not long at all.','2019-05-22 00:56:59.670000','2019-05-22 00:56:59.670000',5,'Mike Saenz','https://lh3.googleusercontent.com/-wO7P8AdH--A/AAAAAAAAAAI/AAAAAAAAAAA/LBqyuzid8JM/c-rp-mo-br100/photo.jpg','6521947413723274945',8263),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAb-uZWVrjFQcAGi11FW2wTEXsYvyhYL-FHs1SGSQo_SdG-lPmawkECxqQn8BJy15a6Iumfyo2FO5__7gE041Fn7CbUMU','I love this place and they are so nice. As a healthcare worker, I’m not always the easiest patient but Tyler, my nurse and Courtney, my tech, and Dr. Wang made it as easy as possible! Thank you guys!','2020-05-20 23:00:59.681000','2020-05-20 23:00:59.681000',5,'Sanquetta Hallbrooks','https://lh3.googleusercontent.com/a-/AOh14Gg2Yc3ZHRBZGt_W1_PcernXKiovn7qyRk62k6PIxA=c0x00000000-cc-rp','17898197009688164559',22108),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAb0ghh60nMwXg2ayGouOO8252NGn-JKULIG3LC_vF0LNL2Eet37CQuQ1SPa67y6NrP0-MMKeu20kV8ZJXh5qSwpfQiz0','Great service and friendly staff','2018-07-08 13:17:02.429000','2018-07-08 13:17:02.429000',5,'Helen Wortham','https://lh6.googleusercontent.com/-tp1Z5Rrgh8U/AAAAAAAAAAI/AAAAAAAAAAA/CfgHAYR4F2k/c-rp-mo-br100/photo.jpg','8918455867446117794',9261),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAB2YUOym4KbaRd8VI_n4HlSWx3vxzBbkXlNIfUsI9otcGIOMufiaCtHwHPSzY3n5DUqJ4c8vt6EjJklLSRAjvkF4nyQg',NULL,'2020-07-05 17:27:00.616000','2020-07-05 17:27:00.616000',5,'Dee Vicks','https://lh5.googleusercontent.com/-1KS1jmrtWak/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckhOrcn9j57oVtYrtedvAIcFYMNxg/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21447),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAb5LCn3uFeYiDRTPrFpP4NoxEbCcUNNG85ip-ghGI8L2MjczEUHOnUWEoWez7hrJLOx2KNM8j0MGq24dDc7VxR0Au6fQ','I had a piece of steel in my eye. Got directions to nearest urgent/emergency care facility. Was directed to Sugarland SignatureCare. The receptionist was very accomidating, clear and concise in her explanations. No one even batted an eye when I brought my Border Collie in with me as I couldn\'t leave her out in the heat. My time in the waiting room was so short I never sat down. Once in the examining room the nurse was waiting to take vitals. Dr. came in in less than five minutes went right to work. Found the steel particle, removed it quite handily. Everyone was friendly, helpful and efficient. Best experience ever in an emergency room. If needed that\'s where I\'ll go again. And the cost was quite reasonable for the services rendered. Total time was less than 30 minutes. Great place.','2017-07-10 17:42:22.405000','2017-07-10 17:42:22.405000',5,'Rick Hines','https://lh4.googleusercontent.com/-NeFcJpDCtcw/AAAAAAAAAAI/AAAAAAAAAAA/onK5HUeFIAk/c-rp-mo-br100/photo.jpg','17394740196501090048',5019),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAbgeHIcXP9hAuu3NdvxlnCGamdLPZlkAgkmdJ76RI9pvgAJu9EdxMqBzZhiEjK7uZO8-6WS0XsNTlrma4KWpgzWzN4v0','Super grateful for being able to have my daughter seen on a Saturday and not have it be a long horrible day for her. I\'ve never received care this quickly anywhere else. Everyone was very kind and took great care of my little girl. I highly recommend this place.','2019-01-26 22:55:05.147000','2019-01-26 22:55:05.147000',5,'Jericka Bailey','https://lh3.googleusercontent.com/-sqWlecxKgo8/AAAAAAAAAAI/AAAAAAAAAAA/f75qwjKtTA8/c-rp-mo-br100/photo.jpg','16590124370714063921',3570),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAbKsITXyklcjdc7ujmo935qDu3t-3MLngZvm5pnH7wKV1tx5nf5mO_HN9VdzBjbzOexIKHRPHCHb_q2ra08HD0lPbjUI','Jesus.\nHas great customer service. And he also the most pleasant smile.','2019-06-28 17:39:54.909000','2019-06-28 17:39:54.909000',5,'La Tina Baldridge','https://lh5.googleusercontent.com/-Din-ph7NXYc/AAAAAAAAAAI/AAAAAAAAAAA/BkpqBTMplIw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaABlPaZ-UoZYylgUZhCKu-BOTTEY4SfnzZ_w1YxHy5ag7veE0F7vwhonOBmABsquMSOCReLXagpaE1NVXLXQYvzlUZ26I','My husband fell and sliced his finger open. It wasn\'t super bad but still needed stitches. Everyone was super friendly and tried to make us feel better from a bad situation. They kept us relaxed and made sure we understood everything was happening. Huge thank you to Marcia, dr. Miller, Jessica and Sharesa.','2020-01-11 13:42:53.975000','2020-01-11 13:42:53.975000',5,'Graveyard Sweets','https://lh4.googleusercontent.com/-XY4NkfUkbG0/AAAAAAAAAAI/AAAAAAAAAAA/2vgTZXQzUwU/c-rp-mo-br100/photo.jpg','8679688254631342173',9529),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAboRGpY2o-_aAPzRFcuR5N_pIhXiDhWjh6Ig7SUUZOG95-B3G1P1-1qQAne9Du_-lNu5BFXyXUIGhzEJbqo6xtWPvJrs','I found this location by looking on google and made a call. Tory the front desk clerk was patient, quick, sweet and knows exactly what she\'s talking about to take care of her patients. I went in for strep and had like 5 physicians in a room with me doing everything all at once. I didn\'t even notice all the tests they were doing they were so fast and so nice! I was done in 20 minutes with my shits and prescription. Everyone has their reservations and ERs or urgent cares but I would def. come back or def. reccommmend anyone else.','2017-01-11 04:57:18.746000','2017-01-11 04:57:18.746000',5,'Lena Mitchell','https://lh5.googleusercontent.com/-o8KDCE6GO2A/AAAAAAAAAAI/AAAAAAAAAAA/-lL1IBGypB4/c-rp-mo-br100/photo.jpg','3511292162159714121',7903),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAbQg5xB2yj29-XmocvFOvthiY4E40sSjMjkVKeIw3-GaGXwMz_q776XGSCi2zIoC_bwNWo7IHFClofGC8jxdA0XNLr30',NULL,'2020-07-05 20:40:55.608000','2020-07-05 20:40:55.608000',5,'Mary Salgado','https://lh6.googleusercontent.com/-DLMEFALB72U/AAAAAAAAAAI/AAAAAAAAAAA/8fDdXNZzGqM/c-rp-mo-br100/photo.jpg','13486358490203335051',21348),('AIe9_BFhqAtkXvUqdYNeMuBBGjaABQTX9PIuI1rpXYPDBhxcW345lf2XYK22GK1QGYxIguLCFt7vVIHg6REwOhB0Gg2vrXJeC12_3LxX1ArC07BnkKJmims',NULL,'2019-06-23 12:10:30.295000','2019-06-23 12:10:30.295000',5,'Joan Starr','https://lh6.googleusercontent.com/-Fn6cRUv_G7E/AAAAAAAAAAI/AAAAAAAAAAA/Dsq_K1w0fWQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9113),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAbSh98wihix8dwfVqn2I9n5OARHL3N3bUWU54rshyRRQVRsMvwq8V1Id9b5o-p3Cbmo64j2tzHbaLfdaEeSikWu-fYI4',NULL,'2019-04-21 15:09:15.923000','2019-04-21 15:09:15.923000',5,'Rishma Bhatt','https://lh4.googleusercontent.com/-mHrg3x5hMtg/AAAAAAAAAAI/AAAAAAAAAAA/-jXMKm42Ty8/c-rp-mo-br100/photo.jpg','3511292162159714121',7355),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAbsZpHpdF0VLLXK17zn0EStDH22e5E4wuX4pZqYQI1554RxRMtXtWMhUh-YlzhVMAwLwNPLFTw4zJMNNoKsHF2EPSDkk',NULL,'2017-06-06 15:09:59.340000','2017-06-06 15:09:59.340000',5,'Eddie Rodriguez','https://lh4.googleusercontent.com/-pv0EvU-lsfs/AAAAAAAAAAI/AAAAAAAAAAA/iQKD80jG1-Y/c-rp-mo-br100/photo.jpg','17394740196501090048',5041),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAbuNGfWrXXbxWXystmHBYE8_bqjnY-FmtwpNj5uo8F3IWiuZ-UUM9XLBbqSa78ojzhhDzzFon4qARju_F9Baw8JRgVN0','Great down home friendly atmosphere from the time you walk in. Nurses Marcus and Sarah, were helpful and gentle. Didn\'t even feel the needle for the IV. And that\'s good, you only get 2 chances with me.\n Dr. M. Thomas has a good cheerful informative bedside manner. Everyone at the Signature Care Emergency Center were great. Thank you Ms Ayesha👍👍👍','2019-06-22 18:21:17.510000','2019-06-22 18:21:17.510000',5,'C B','https://lh3.googleusercontent.com/-9lf2jRD2bGU/AAAAAAAAAAI/AAAAAAAAAAA/3NQFBMv1i9s/c-rp-mo-br100/photo.jpg','17898197009688164559',5686),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAbVpJxe02gZzFGf1cSn_3Dj3eEuwMSr8zQJbF_8GrQ3vmwIVDhUY6AA32YIZS9gWk0wAOHb_VZ6Iz4sklOKslSmH19rs','Really nice people and faster than Midland Memorial ER.','2020-02-01 04:13:05.356000','2020-02-01 04:13:05.356000',5,'Ana Solis','https://lh5.googleusercontent.com/-buWbCqCiDCw/AAAAAAAAAAI/AAAAAAAAAAA/7pjQUZ36Q90/c-rp-mo-br100/photo.jpg','13486358490203335051',13449),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAbWtV7vHo9U6K3cU1gVjgMd6pGpunLPmR-rGZkmdmrGmU1olfxrbiV6mzjVeFIp6afDWs21BBbAjq5Np5q4g7b_UdQLg',NULL,'2018-06-29 21:20:22.376000','2018-06-29 21:20:22.376000',1,'Costumer service consultant','https://lh3.googleusercontent.com/-0cwZjOQZJII/AAAAAAAAAAI/AAAAAAAAAAA/4rsupSqaCP4/c-rp-mo-br100/photo.jpg','17898197009688164559',5929),('AIe9_BFhqAtkXvUqdYNeMuBBGjaABXSdAjy0PxektP20lN5MHpejBPAr752dsNFQ5h_-PW3VdHthFKG6j4wX1BZuZbwC6S1b1qA5pMM5h1QKXMzRrBwP5Rs','I visited this location today and I am very pleased with the patient care I received. Very professional team from the on call Er doctor, to manager and staff.\nThank you all for your help today.','2020-06-27 02:45:32.676000','2020-06-27 02:45:32.676000',5,'Marian Yared-Shehad','https://lh4.googleusercontent.com/-WT3DWaJ7NjU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckt9kFhJnl-CYEJcqSD1xpnYELmPA/c0x00000000-cc-rp-ba4/photo.jpg','17898197009688164559',21439),('AIe9_BFhqAtkXvUqdYNeMuBBGjaABYKqV94f3_tfvWpUVmQowlVellvWsgf5LBbqs92-_b3NAGr2Eg0tQw3ZKbbefc0WlExN7ahuQwy1sHBwm52iaEusReg',NULL,'2019-11-26 23:56:37.045000','2019-11-26 23:56:37.045000',5,'Green Bean','https://lh4.googleusercontent.com/-xWZR1QCf7Ik/AAAAAAAAAAI/AAAAAAAAAAA/ZBeU-9IEZp0/c-rp-mo-br100/photo.jpg','16389487648212004696',2622),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAC_ibBoKtDh4gKFskxHbla10YNpdkXKVr7a04xsKwGNG3jy69UTywObnjhSizNQ88X5HwZ2KLZ3XDR4ILtPHvQIZ16bI',NULL,'2017-03-07 22:03:09.122000','2017-03-07 22:03:09.122000',5,'Juan Guevara','https://lh4.googleusercontent.com/-mGCeZYaESec/AAAAAAAAAAI/AAAAAAAAAAA/nGO-WGUJ7sM/c-rp-mo-br100/photo.jpg','14904078213800803294',2394),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAC0kELY88i-33iv1ceJTDcymmldfx85c6IStt-lPxvZgnCA0yIo-MimNRGt9ltaw-7zHdKXj3Qu7-Y2PkxPpNF7lN3XM','Been going here for three years best staff in town Dr Ashbrook is a great doctor.','2019-12-07 06:27:17.561000','2019-12-07 06:27:17.561000',5,'Kevin Wiggins','https://lh5.googleusercontent.com/-o_FNST8hq5I/AAAAAAAAAAI/AAAAAAAAAAA/CPmPxwGECBU/c-rp-mo-br100/photo.jpg','3272657195432704501',6846),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAC0ZpJehT9HtFb5IwCbCr6Tv957x15-loEVT7i7jKCYhFHVRJ7uc60bWQi0qH8BqR1SwcmoKZY_kGqXgvqPnBhe8iMgA','Dyveliz was very nice and welcomed us to snacks and a drink!','2018-11-14 04:14:41.179000','2018-11-14 04:14:41.179000',5,'Cameron Wellen','https://lh5.googleusercontent.com/-Mswzi_SjxZs/AAAAAAAAAAI/AAAAAAAAAAA/h9zsetLbb2o/c-rp-mo-br100/photo.jpg','16590124370714063921',3650),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAC5Z0VQWnyWL67dWe310YDpaofQYlYntfZG8paSW_Ws4lnzBm8pQpEVd56Cg6xbLuE8KvzmOssDHEaOBAQOxvvAP_S3c','Quick and excellent service. Very clean facilities.','2020-08-13 17:28:52.909000','2020-08-13 17:28:52.909000',5,'Edwin & Roxana Dubon','https://lh3.googleusercontent.com/a-/AOh14GgGexMXAt8YwMOizCUEiO9woqQgMBzgW-tYPWX1ag=c0x00000000-cc-rp','8918455867446117794',23084),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAC9EFqUg0gIloQQPr1F3vgWJuDc3D1VI2Mv0reYqFF-xOPnAU6BU4NlBGJnsgIOjJ4MFtplMD9Trpoegde-afaI3pswc','(Translated by Google) The best is!\n\n(Original)\nThe best ER!','2019-06-06 19:24:26.003000','2019-06-06 19:24:26.003000',5,'Jimmy Williams','https://lh6.googleusercontent.com/-xQcP0fdcs8Y/AAAAAAAAAAI/AAAAAAAAAAA/o8AJ3EkW-Gk/c-rp-mo-br100/photo.jpg','8918455867446117794',9135),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAcEAEywuMLcPXO2cWHHRURpKxcY2_KWhi9UUXPSFLB-k2QCCxDSnrGOTClimu0jv1TiIAsSyvVluYgxW-l9ymnD_D_-Y','Sarah tanishia geovanny Thomas Laura','2020-01-17 04:14:36.847000','2020-01-17 04:14:36.847000',5,'Melissa Avila','https://lh4.googleusercontent.com/-x5Kee0eAelM/AAAAAAAAAAI/AAAAAAAAAAA/SCyeuv1DCU8/c-rp-mo-br100/photo.jpg','17898197009688164559',9995),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAcEfJnZETo1cyhi-LcWLNIwMKaTP9zdnUj7Dc6xsBN11gNvw_BHMmy6V6Jx_a1DGsEa8SQsjQ7RAC8acSdyCgtp9VokY','Very professional, clean and high quality medical attention','2019-06-09 18:15:55.209000','2019-06-09 18:15:55.209000',4,'myles johnson','https://lh5.googleusercontent.com/-Mee_DSuqPAQ/AAAAAAAAAAI/AAAAAAAAAAA/ozXdtzbkgLg/c-rp-mo-br100/photo.jpg','8679688254631342173',8837),('AIe9_BFhqAtkXvUqdYNeMuBBGjaACei7oPqlpdfqS_B-D3gJXjF6WF4TwiUuzRKXbjY3uo6x-JeQNzXsxB2tqv5xhglHotl0Fc7yL7zA_qGRoISWCykuqy8','Thank you guys to everyone \nDr Thomas \nNurse Sarah\nEr Tech geovanny \nRegistration tanisha \nYou guys were awesome','2020-01-17 06:41:49.569000','2020-01-17 06:41:49.569000',5,'Mac Ways','https://lh4.googleusercontent.com/-w8IoshVs3p8/AAAAAAAAAAI/AAAAAAAAAAA/rCg1Uhgop-0/c-rp-mo-br100/photo.jpg','17898197009688164559',9993),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAcglOfR7MgusBj9WDGFWkEW9lmbb81weU6CHRcPK9a9h10Va8Jc4e5XIoDpoxwwRKysIN_s-6bRuYciRZbn6TvdglaW8','This was my second visit to this facility’s the first time was with my 6 year old son who had split his eye open. The staff was very kind and caring to a scared child. They were able to calm him down in order to treat his wound.\n\nI went in for myself yesterday. Again the staff was very welcoming and accommodating to my needs. The treatment I needed was provided efficiently and I was home resting before very long at all. \n\nThank you to the following employees who took excellent care of me. \n\nDR. CAVAZOS, MD, JUAN L \nNurse: Tammy L W \nRadiology Tech: Jessica Diem N \nFront Desk: Elizabeth G','2019-12-22 15:30:39.597000','2019-12-22 15:30:39.597000',5,'Michelle Best- Trant','https://lh4.googleusercontent.com/-sISBJeeZyZ0/AAAAAAAAAAI/AAAAAAAAAAA/6AspvNzTP7E/c-rp-mo-br100/photo.jpg','17898197009688164559',5339),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAChJFqwwxUZhMmKcvHonIbf7Tl0Te2GI0ms-L1EZ5BkGOyfPGfBKz0gWMOucePO6k-rIhdaLrv9Smlv62HdKTfYftMVM','Service was great! The receptionist Kendra was very helpful and catering!','2019-11-07 15:12:16.286000','2019-11-07 15:12:16.286000',5,'Trey Dimas','https://lh6.googleusercontent.com/-3xOECsDk1hA/AAAAAAAAAAI/AAAAAAAAAAA/Nbyxt2e2orM/c-rp-mo-br100/photo.jpg','16590124370714063921',3100),('AIe9_BFhqAtkXvUqdYNeMuBBGjaACkHIdqHrLz5hOMOjNcktPWkHp88C4VJToG5BG9Wgxo0BjgcRdqTJOBODWOsoP4cgDUdBuhZdLcvWbAqtcuG3QArMa24','I had a wonderful experience at SignatureCare ER. The entire staff took amazing care of me from the moment I walked in. My entire visit was only 2 hours. The staff: Genesis (Registration), Rollie (RN), Natalia (Rad tech) and the amazing Dr. Wang was exceptional. I highly recommend this facility. They offered me snacks before I left as well. Just awesome.','2018-12-16 02:28:02.882000','2018-12-16 02:28:02.882000',5,'Chrisnatha Derosier','https://lh5.googleusercontent.com/-nKeGbSkAeQM/AAAAAAAAAAI/AAAAAAAAAAA/QRy30KE9gKI/c-rp-mo-br100/photo.jpg','8679688254631342173',8893),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAclkctNdxn78babl3i1QxzdJ--UK0MHaOvuISN1aLXaRpK_hJ_piwCq6a-gcUlpbm2V4PrT3S80R5cSI6yhGp4suL6MI','Andrew,Kim,Sita,krista,Carolyn were amazing when visiting.','2019-08-01 03:02:37.628000','2019-08-01 03:02:37.628000',5,'NATHEN VILLANUEVA','https://lh5.googleusercontent.com/-bwr92JmBW3k/AAAAAAAAAAI/AAAAAAAAAAA/hpQVCkwTwB4/c-rp-mo-br100/photo.jpg','13486358490203335051',873),('AIe9_BFhqAtkXvUqdYNeMuBBGjaACTO4N7yDJLuFDJVfVXro_Iv0coyRkAR0vXV50a5LMmc298n2pSXR0PRr0v_nZTqK6fMRgqcLeXqJ_1tNXV2kyj5IGDo','Genesis registered me in and she was very polite and helpful. Dr Cavazos was very quick and helped me immediately! Nurse Duke has conversations with me that helped me feel more comfortable along with the Rad Tech, Seale. All in all was a great, clean, and quick experience!','2019-12-11 15:39:56.063000','2019-12-11 15:39:56.063000',5,'Preslie Matusek','https://lh6.googleusercontent.com/--NS7ZJda9aA/AAAAAAAAAAI/AAAAAAAAAAA/mBiWRJcYwSo/c-rp-mo-br100/photo.jpg','8679688254631342173',8695),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAcV2Y9kaA66g1-51zsodQSpaKKs7NBj9SYn6crLuODB4qBdp8-fRlA_RRIj7TNIY4N1PtbKGkLvfhsWxRnBCRAU8kV1w','I was treated very well I am happy with my service. The nurse lia and aerial were very kind and helpful.','2018-07-04 00:40:03.160000','2018-07-04 00:40:03.160000',5,'Nelson De Almeida','https://lh3.googleusercontent.com/-vf6TGrFv7kU/AAAAAAAAAAI/AAAAAAAAAAA/tDyVr7anXNM/c-rp-mo-br100/photo.jpg','12541597562633926366',636),('AIe9_BFhqAtkXvUqdYNeMuBBGjaACVuUo0FE7gv0svhh9Bt45j7JkICRC-DuhCRtLaT5zHzbLMwf4OaYWE4klb-8jV1B3E7QEn-gQcxnY0K16ehCNes5JdM','Great experience! Very caring and gave great advice. And nice facilities! Dr. Zheng, Nurse Joseph, E.R. Tech Shaylene, Rad tech Lonnie, and Reg. Alyssa were all very helpful!','2020-02-07 17:00:12.440000','2020-02-07 17:00:12.440000',5,'Mary Anderson','https://lh3.googleusercontent.com/-hzfQeVDm87Y/AAAAAAAAAAI/AAAAAAAAAAA/J8ICw0XEl7A/c-rp-mo-br100/photo.jpg','8918455867446117794',14840),('AIe9_BFhqAtkXvUqdYNeMuBBGjaACwtdv0ghW6IoCaqnPP7Ar4HLg2ALVbeBcowHKrGn8I2uAT6mydJaGHrQmxZLvMY-mzb5bwZL9dczlpHFz2_QzDEtJUo',NULL,'2017-12-14 23:04:50.088000','2017-12-03 02:15:01.960000',5,'Travis Fernandez','https://lh3.googleusercontent.com/-_4UNYcyWQVI/AAAAAAAAAAI/AAAAAAAAAAA/bUnVgG5Lr9w/c-rp-mo-br100/photo.jpg','3511292162159714121',7752),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAD81IdZb9jmn2klspAxWjJ3Tac5evlft0_kibVqtWRWOeVVDC1r7kJq5dOVDfZxJ8GgmLtsKTnTTbmhYGuWDBVhQmpUs','Great place customer service is great so clean and nice !! Would definitely recommend','2019-08-06 16:21:32.025000','2019-08-06 16:21:32.025000',5,'Parkyta B','https://lh4.googleusercontent.com/-PWX9TE8Pb-A/AAAAAAAAAAI/AAAAAAAAAAA/sP7jEWrozbg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAdc_rlxkLuYnueNxbEiqu9dZbQlvVekFO3Y3NHFtu0AkJiiNBuN2CWCU8_a_L1f8KEFrU4TXIiIY49bIYxk5h6qc3GSU',NULL,'2019-11-28 00:04:46.076000','2019-11-28 00:04:46.076000',5,'Kayla Tumlinson','https://lh5.googleusercontent.com/-DJ1NgV5GiPA/AAAAAAAAAAI/AAAAAAAAAAA/AtraGgN6Tig/c-rp-mo-br100/photo.jpg','16590124370714063921',3073),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAdGN-cAT9U6kRFZ7IhhNqOd5BItD4gZ0BG_YPrYVqx5nOC7WXIq8OXYMmhTspmD5uTwmDNt5PQms3hGbYtKU8kr65chY','The staff at Signature Care Emergency Center was so friendly and attentive. I came in feeling absolutely terrible and left with a smile. They addressed all my needs quickly and made sure that I was comfortable. I recommend this location to everyone!','2019-07-14 06:14:37.426000','2019-07-10 22:42:11.576000',5,'Olivia Manwarren','https://lh3.googleusercontent.com/-5JiJc3OsAl4/AAAAAAAAAAI/AAAAAAAAAAA/FmTu9YaqGzw/c-rp-mo-br100/photo.jpg','14904078213800803294',2113),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAdIncz9-Cy071XaPirJUqhwzcrPin-NG39iyRYmBOL6x-mido3v55ytZoH3jD3OYdzIuW4-qgXuRV0Qz2tSr-ppduRY4','Everything was wonderful and the staff was fresh','2019-11-22 03:06:46.886000','2019-11-22 03:06:46.886000',5,'Mykhaela Rollins','https://lh3.googleusercontent.com/-9bLvrKj4XNQ/AAAAAAAAAAI/AAAAAAAAAAA/rLKQrmzNFXI/c-rp-mo-br100/photo.jpg','16389487648212004696',2642),('AIe9_BFhqAtkXvUqdYNeMuBBGjaADkF_08ng45lPqfv1s5mQPY1Kspm7l0GA2w2aE-fsFdMeLRAOW_vj5lec2kroSa4ZmtadVxYcFdvZZ93O9EvF6iMIlwU','Thank u so much Doctor Das I visit here was nice','2020-08-07 23:53:51.115000','2020-08-07 23:53:51.115000',5,'Kemeyun Hurd','https://lh6.googleusercontent.com/-oXhjl4lNDJY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnVndE7-Omkuhcz9IIUN5GrPMMINQ/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22510),('AIe9_BFhqAtkXvUqdYNeMuBBGjaADmVSwYyWuq09fIttWg1goNU2W0kKSKMbeQtyMEqR1MND3BcQetnk8-31YKDJsDtJygrtpWp0kiRfRlthnjpLkhukox8','This is a great place to visit if u ever have and emergency .The service is way better compare to a regular hospital ER . The Doctors and staff are the best they are caring and makes your stay comfortable . After my visit I was feeling better, I will definitely come back if need be in the future . Thanks to DR O’ Malley (great Irish doctor👍🏼) nurse Alvean , Robert Rad Tech ,Jocelyn from registration . DR Nguyen , nurse Nanci , ER tech Jordan and Jasmine from registration . Expect to meet these people when u visit .','2019-12-13 09:07:55.291000','2019-12-13 09:07:55.291000',5,'mcgregor oneil','https://lh6.googleusercontent.com/-zjT8s9b9GyQ/AAAAAAAAAAI/AAAAAAAAAAA/fzTWVK4bKxg/c-rp-mo-br100/photo.jpg','16389487648212004696',2547),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAdQYyHZHHeV24evzyeXTf86DrJRpMpH7fjgC4FYEdodR1IFdisNmHYXxGFOiTlo0kQLvEW9Jtge2Jnbu6Nbe2Z28KgaY','Alyssa p was great','2019-11-22 18:38:27.004000','2019-11-22 18:38:27.004000',5,'Kechia Kelsey','https://lh5.googleusercontent.com/-0UWVbAhD_bE/AAAAAAAAAAI/AAAAAAAAAAA/k1IyGT3hX7A/c-rp-mo-br100/photo.jpg','8918455867446117794',9046),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAdTJaRTqZLWrNRakDMFni8GG_4Q99CQhLciU3MR6C4x8VwvVMzqX7zhFiF85sW9VcC1Y7YbirdUnzC8kCZTQ0gZwD9n8','There was no wait! Keaire at Registration was very nice and Dr. Guharoy was informative. Thank you Dana, Norma, and Eve as well.','2019-09-08 20:35:23.806000','2019-09-08 20:35:23.806000',5,'Khadijah Turner','https://lh5.googleusercontent.com/-V_mEdKemo6Q/AAAAAAAAAAI/AAAAAAAAAAA/mXMNkEvyZTM/c-rp-mo-br100/photo.jpg','3511292162159714121',7180),('AIe9_BFhqAtkXvUqdYNeMuBBGjaADTMEMOFk1lYP4FzuzQ4zQ6G2NMt11jdlb_MGst0lguHyFpUnFp0YOTBXuZDJsY7Kpu3ZJXZJhDhm-B9C2j8q-l6_I2w','They were very welcoming and caring. \nThank you Dolores for being sweet and caring \nThank you Dr. Tran for fast and helpfulness. \nRN tony, Hoan, Aaron you guys were very efficient','2019-07-23 18:29:29.072000','2019-07-23 18:29:29.072000',5,'Haley Murray','https://lh3.googleusercontent.com/-iWuz94P_StQ/AAAAAAAAAAI/AAAAAAAAAAA/7Me6-XV_60M/c-rp-mo-br100/photo.jpg','14904078213800803294',2109),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAdu17Q5rc_SOqT-BU7YhUF-eSLYjB4W9UGce22VvAX04qAKLNm661eyPjeJrvwFBPG__kwNvIQt40rJtk_jdQfMYfM4c','This is the best clinic i ever went to! Staff amazing and doctor excellent I rather going here then somewhere else! I just love it! Whole process last 30 to 40 min and i was out! I love itttttttttttt keep doing the good work!!!!!!','2018-03-13 12:45:39.302000','2018-03-13 12:45:39.302000',5,'Yilena Acosta','https://lh5.googleusercontent.com/-gVLljmOHstw/AAAAAAAAAAI/AAAAAAAAAAA/zL44FaolaUw/c-rp-mo-br100/photo.jpg','17394740196501090048',4873),('AIe9_BFhqAtkXvUqdYNeMuBBGjaADUHwJoKtgeVHf8VeSiZuunYWqkqhSEKN_oi1OLVxLxdyfo6mhnN-Z77NcL2gPIKGbNlBhCetoYLamNTSo4rCKp1BVJM','The staff was awesome and welcoming from Tanishia, Matt, Susan, Fatima, and Zhen. Will be back for any other injuries.','2019-08-02 05:20:48.975000','2019-08-02 05:20:48.975000',5,'Mike Hui','https://lh5.googleusercontent.com/-0LQYjCnzTs0/AAAAAAAAAAI/AAAAAAAAAAA/NjCy0xRjAXI/c-rp-mo-br100/photo.jpg','17898197009688164559',5608),('AIe9_BFhqAtkXvUqdYNeMuBBGjaADw15yajOsn97IIWQenTMs5F-LAmEyjvK_tSYJBo4_rr9gvi1KyH-AJvOaxLg6pJKkKevebMYrbWCp6HfwZzEuey7P7A','Dr. Miller and the nurses, Vivienne N. and Gina A , as well as, the Rad Tech, Diem all performed their duties very professionally. They were cordial and very informative. Everyone demonstrated respect and concern throughout the process of evaluation. It was a positive experience for me.','2020-02-08 04:11:54.917000','2020-02-08 04:11:54.917000',5,'Vyckye Cox','https://lh4.googleusercontent.com/-QhILBVDPxJM/AAAAAAAAAAI/AAAAAAAAAAA/vvjtLwPcy-c/c-rp-mo-br100/photo.jpg','14567670160750071148',13548),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAdWYAL2JIC7JsdMHobUyHqPX1rnJz8QHD4QBUj1sEt-4L9BFxTNIslfApPmWob9pvSmRzWprDysn3ly3KsGszvVEjPvU','Very professional great nurses Randy, Rachel, Cheryll','2019-09-19 09:50:53.848000','2019-09-19 09:50:53.848000',5,'Mike McCarty','https://lh5.googleusercontent.com/-qrJLAtyMxBw/AAAAAAAAAAI/AAAAAAAAAAA/8Irzf6waSm0/c-rp-mo-br100/photo.jpg','6521947413723274945',8137),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAE-SI8KU0KmxmBpIA0L8Iujklkd9aKYFXCx_bwfJQVbZzJg8ImZ7HFHR2Bi_zzvS3TWLBgq4PmwYFUP9529hACwz8h8M','They were very friendly and the check in and care were both exceptional. Thank you Jocelyn A for being so helpful!','2020-01-18 23:20:45.764000','2020-01-18 23:20:45.764000',5,'Kati Donaho','https://lh6.googleusercontent.com/-fI0JrjG6148/AAAAAAAAAAI/AAAAAAAAAAA/0UVS3qPExzI/c-rp-mo-br100/photo.jpg','16389487648212004696',10043),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAE40LIVavnyRPq15xmrodirv8vF-laPLwwkTWHUlP95nHLMYGq8y6JLC-vIGZk1SSjmepuzL-sVHTVDNHi3eTFVuKNqY','They have a very good staff team\nShanna was very polite','2019-12-17 06:28:36.845000','2019-12-16 02:15:44.820000',5,'Carla Mendez','https://lh6.googleusercontent.com/-SQZBFDSBrKM/AAAAAAAAAAI/AAAAAAAAAAA/RAuzR38BqN4/c-rp-mo-br100/photo.jpg','6521947413723274945',8058),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAe86qw3Us6cKO__V6ghJdnkhL5skdtqm7_dRTtmanfq8uYUMRlqxpX4QJWN1GNqTYCBsx9R7J1PqSlX6nbbmNa8JRRT4','AMAZING!! \nStaff and facility were perfect! \nDr. Chukwu, RN Churiah, and front desk Amy were so pleasant!','2019-03-10 04:18:00.263000','2019-03-10 04:18:00.263000',5,'Devon Raney','https://lh5.googleusercontent.com/-vPU30NTivVE/AAAAAAAAAAI/AAAAAAAAAAA/KgsfR3GxkmU/c-rp-mo-br100/photo.jpg','3511292162159714121',7388),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAe9KKCJ0DZALIvZfZ74ICcRoSuyj7QGkIT63aF0TX6L-uB9TEIvlLWsaKMQ3TmAL4xlAdzcVNUQCbs3_lo2NUAwC9SrU','Upon arrival, Patty made signing in quick and easy with minimal paperwork. Only had to wait a few minutes before getting called back. I was looked at by Selina and then examined by Dr. Zhen. They were very knowledgeable and courteous during the visit and made sure I was comfortable. Definitely recommend to go to. Overall, amazing staff, open 24 hours, and has a friendly atmosphere.','2019-09-08 18:50:18.069000','2019-09-08 18:50:18.069000',5,'Trey J','https://lh5.googleusercontent.com/-bvUjVsmdXWI/AAAAAAAAAAI/AAAAAAAAAAA/nosWUcJmFmw/c-rp-mo-br100/photo.jpg','17394740196501090048',4606),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAE9NKKA1rZYmpKH5rKy-8_shT7Xf5WlmrfUa8nSW4zdoxkXsAsxSnpqQDGulXPumRXw2roJkwVeQQOgaB5NqTOtTQHk8','I had made an appointment online and showed up at the wrong time (my fault) and the ladies in the front desk worked me in.\nEveryone is so friendly and Dr. Angela is great!','2020-07-18 19:57:00.467000','2020-07-18 19:57:00.467000',5,'paola castillo','https://lh3.googleusercontent.com/-SyYUcAK2GM4/AAAAAAAAAAI/AAAAAAAAAAA/7Afz_i0ZcaE/c-rp-mo-br100/photo.jpg','14748677429039074158',21729),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAEa6QAV06xWA4xfKxtnTjobipDQy1ELz7wleH-JwF2HVslx_EUMmxG-6amhTYVo7QRgzCDv0gSENUOJzxrVDXN8Mq-Ts','Staff was very friendly and made me feel comfortable.','2019-07-21 04:57:12.120000','2019-07-21 04:57:12.120000',5,'Brianna Henry','https://lh6.googleusercontent.com/-ClcBniwAhy0/AAAAAAAAAAI/AAAAAAAAAAA/FWpYoQ5DoNU/c-rp-mo-br100/photo.jpg','17898197009688164559',5629),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAEmcJ-oR-migeUe2vmnxXY88bMeEKP2zacLaydZyCipTOxT_gImradNa509RqOXGDkhcCjGIpZaBMrpY-PenU2ewl1Kw','Friendly staff fast service doctor to time to explain and answer all my questions','2019-07-13 17:27:58.824000','2019-07-13 17:27:58.824000',5,'Domi Bernal','https://lh4.googleusercontent.com/-l2ToKTYc8FQ/AAAAAAAAAAI/AAAAAAAAAAA/XAuzyWSBAIk/c-rp-mo-br100/photo.jpg','8918455867446117794',9090),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAeoJDCTVWVabx4CqVo7YCnDxKXk6ckXOyYNVQ9FRuWg_stULGHlMuBYWSaJipZpJ4thlwsMU8zM3H07dKT38z7dIKlOQ',NULL,'2020-01-24 22:01:19.759000','2020-01-24 22:01:19.759000',5,'Og Dynasty','https://lh4.googleusercontent.com/-neUw9NewbZ8/AAAAAAAAAAI/AAAAAAAAAAA/cJf1mr2SDcE/c-rp-mo-br100/photo.jpg','3272657195432704501',10277),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAEPFnHJxO-XwaPVEg2VAWVdRlGjN1IBfdCFRFw41CCBSkLB6UqnWeHM4ccyAWKOdbBYCaAM_ghQgbX7qnpYitdi5PJ9g','Very friendly staff!!!! Ashley in registration was helpful to answer any questions I had. John and Kanyon were both very nice and attentive and made me feel super comfortable. Thank you guys!!! Go check out Signature care. :)','2019-03-18 23:03:16.283000','2019-03-18 23:03:16.283000',5,'Cailey Whitson','https://lh3.googleusercontent.com/-SLMg6Dn8rkk/AAAAAAAAAAI/AAAAAAAAAAA/39cBWubaEgw/c-rp-mo-br100/photo.jpg','8626688543755174284',8523),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAesg8Ur4kCMtIphWjVsih9Tunwv83WAlgcF4QV1w8p7L--ZWAuHkBrgGH-gqRENBen3v8h6JLm0_F0jZGqCRDW9NohQI','I had an amazing experience! Dr. Patel was great and informative Tanishia was a great help as well, very welcoming. I highly recommended this facility .','2019-11-27 08:50:28.127000','2019-11-27 08:50:28.127000',5,'Jeremy Tolbert','https://lh6.googleusercontent.com/-wp-PLLacfrU/AAAAAAAAAAI/AAAAAAAAAAA/nlqsWlylMs4/c-rp-mo-br100/photo.jpg','17898197009688164559',5396),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAEszVJULZ0ZaVdAGdNmwPzcSXghicsAfJXhB6ysEIo6MPTjk20aTEp4bCe8tS2YvMjYQM82QptlNrpbqBxp7A63WMtAk',NULL,'2019-12-15 01:06:01.687000','2019-12-15 01:06:01.687000',5,'Nicole Webster','https://lh3.googleusercontent.com/-ux49dlRQ6O8/AAAAAAAAAAI/AAAAAAAAAAA/x-AcWWKptb4/c-rp-mo-br100/photo.jpg','6521947413723274945',8062),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAeuXyiy6B4VD9C0nEBpWsDNIm4G3x4dRKf1XZZDK6AL17vP9QraGt0jrkG29nIEEX-vdKxRpqtDGpnIgI3dXCLrAoBNg','I love this place! I am terrified of emergent rooms and big hospitals. But this place and the staff are so comforting.','2016-09-06 11:04:30.084000','2016-09-06 11:04:30.084000',5,'LaTasha Jones','https://lh3.googleusercontent.com/--EJalznl58M/AAAAAAAAAAI/AAAAAAAAAAA/daSnM8I3s20/c-rp-mo-br100/photo.jpg','17394740196501090048',5205),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAEwgMDTKqUaMMOfd6YRS3I2LPmkBrr1GjQbiLsJSptR7spZINQTxQmEjiF7MJO_bl3OFgPY7WiYosctTTu88_wL2xel0','The staff was very attentive and quick. They made sure I was comfortable and explained everything.','2019-09-02 15:03:57.281000','2019-09-02 15:03:57.281000',5,'Katie Williams','https://lh4.googleusercontent.com/-s3S_TdJATzo/AAAAAAAAAAI/AAAAAAAAAAA/JggXjFSZUUo/c-rp-mo-br100/photo.jpg','3272657195432704501',6901),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAezFu4gE36qIvNXSusyI2Lnpg7O6kwNTq8G6ihuOjX6TVMRlAX2U9rP7Zktqbw_Gqq2YRm9gChfI_g7i_yi1ptx3D3uo',NULL,'2019-12-28 21:10:53.716000','2019-12-28 21:10:53.716000',5,'Muhammad Yousuf','https://lh4.googleusercontent.com/-AY0NVZe5qUc/AAAAAAAAAAI/AAAAAAAAAAA/cd8WcAwuKRo/c-rp-mo-br100/photo.jpg','16389487648212004696',2501),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAF-g8FqIbzIetpATw15iB9pYImrRHizauHRQE3ux1Dq6NAysPaPSUbr5Bby8SdChcQkRVb3pBu8r_ODp47WpztdDVSD8','There was no wait time. We had to stay overnight for observation and to hear from a specialist. They had security outside and family was able to come and go as they wanted. Dr. Edwards and Nurse Rachel checked on us throughout the day. They kept us well informed about what was happening.','2018-09-25 10:19:13.385000','2018-09-25 10:19:13.385000',5,'annemarie pham','https://lh4.googleusercontent.com/-aYrwC8wcyU0/AAAAAAAAAAI/AAAAAAAAAAA/7v0n0I34tjI/c-rp-mo-br100/photo.jpg','17394740196501090048',4786),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAf0Xw_5m5kDfjaqUWpYjEos2KSUKsGymIEXGpqTGR0wkMq8o6ywMeBnm-G-mdFOP1eKs3EDXs5vLT5qwSpsAQYWmuZu4','The Medical Staff is extremely friendly and caring. Elizabeth to great care of me when checking in and out. Overall great place.','2019-09-26 04:34:53.770000','2019-09-26 04:34:53.770000',5,'Romell Horton','https://lh4.googleusercontent.com/-ikNhPZaGM0o/AAAAAAAAAAI/AAAAAAAAAAA/8F85cftXu4U/c-rp-mo-br100/photo.jpg','17898197009688164559',5537),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAf5O-_vGyTBglq1VUDVosaI53SzIfd91D_zvV4WaWaPYw72CjLwMG3kFazUAxfgFPJQXaiPcn3rbvY0P5RnYeVfOd3DA','Friendly staff. Would recommend to friends and family.','2019-01-16 01:18:20.339000','2019-01-16 01:18:20.339000',5,'Erwin Ulloa','https://lh5.googleusercontent.com/-1c8yzHlMRJk/AAAAAAAAAAI/AAAAAAAAAAA/zL-9nAy8U3M/c-rp-mo-br100/photo.jpg','13486358490203335051',1111),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAF8KNouvQRqKzTQvWcAWc-aoekf57z7uodzkhhFz689hX0l9KpdJg1c_hL_RbeoWXamczbEBvVcgoV_9KYI9iAnutkTY',NULL,'2017-05-18 00:04:53.313000','2017-05-18 00:04:53.313000',5,'Patricia Jones','https://lh6.googleusercontent.com/-CtiB09aXApQ/AAAAAAAAAAI/AAAAAAAAAAA/Ca5LYFT6aiE/c-rp-mo-br100/photo.jpg','14567670160750071148',1823),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAFa_7Z-afQZhxMQG-__CXKqWrLUAtCV0vSzHIuKJ-oHDOKHlrvG8lRniJjYNxPK6C9MrwpS0vCTWvGV8HS89JsdHS6t8','Setup was easy. Came in did my paper work waited in my car. Within 1 hour. I was seen by the doctor. This is fastest and easiest place to go to get tested for covid and one of the only places opened 24 hrs. I made a 230 am appointment and got in and out and my results fast. I was referred by co worker to come here. I would refer anyone to go here !!! Great hospitality','2020-07-21 08:33:36.420000','2020-07-21 08:33:36.420000',5,'Melissa Sarel','https://lh6.googleusercontent.com/-SSm63fJKS0A/AAAAAAAAAAI/AAAAAAAAAAA/1oaiCZzbS50/c-rp-mo-br100/photo.jpg','14748677429039074158',21634),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAFbTFZLu8QyanUZCUWz09jyiGqfG4DxK5_a94Ka_CSOhA81IpZCrvV6w-yQL2YY81RqD4GXEYzhCG9R-8VT0xsk9j268',NULL,'2019-06-12 03:18:31.847000','2019-06-12 03:18:31.847000',5,'Reed Seidenberger','https://lh4.googleusercontent.com/-BUXQrAe2iZU/AAAAAAAAAAI/AAAAAAAAAAA/zExzJb18WJs/c-rp-mo-br100/photo.jpg','16590124370714063921',3360),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAFHhrLaR1gkMb2m9DGe2FRknf7Nl2mMQJx5CSOV85yRBOBJozwSW1kH2r36LdKn2sdHNu3VRRML4j68SHlUjQRj-q8_g',NULL,'2020-02-17 04:19:25.464000','2020-02-17 04:19:25.464000',5,'Rebecca Kueck','https://lh4.googleusercontent.com/--z5MSDos8gg/AAAAAAAAAAI/AAAAAAAAAAA/nWhLEh8pBYI/c-rp-mo-br100/photo.jpg','13486358490203335051',13415),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAFOd-bXBMVLWHwUahW3-fwjUipyWKJe5fxYQmxh8jXDqeVpq5h45k62GNPjw0uaa3IgAK-uKdxXGsHuf3KqIv5OrHQ2A',NULL,'2019-11-22 01:26:27.643000','2019-11-22 01:26:27.643000',5,'Stephanie McDonald','https://lh3.googleusercontent.com/-_iLUyciZEL4/AAAAAAAAAAI/AAAAAAAAAAA/j1nYDEFkr-Y/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',732),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAfTk75bElrMxDkILky5s-rEzBdDVdfQmVW-QkCLiGoRTT8d8bZYTLEaDJGPWn-e2pft5NBPWnprqN_kkr_SZSYa-bL4k','Very fast and pleasant care Manny and Aaron, Pete, and Lisa were very nice. Will be back.','2019-02-06 14:05:52.936000','2019-02-06 14:05:52.936000',5,'Valerie Soto','https://lh3.googleusercontent.com/-HkVhJw7UNAg/AAAAAAAAAAI/AAAAAAAAAAA/FbH_x6lB_3w/c-rp-mo-br100/photo.jpg','6521947413723274945',8312),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAFuh6pSIFNmunoDut83hBQgQhMjC7fTAuKlmJ41ZzUsXBdceRaerwns1Y0m6ea-2N5RzYw9nvvf-WXGF8dnz9b87WXnw','Dr. O’Malley was great and attentive. Alvean and Laura was also great and very caring. Jocelyn at the front office was very patient and understanding. My overall visit was great and no long wait. I would definitely come back.','2019-04-13 20:10:25.487000','2019-04-13 20:10:25.487000',5,'Calandra Bass','https://lh6.googleusercontent.com/-vb9kqpUFrZ4/AAAAAAAAAAI/AAAAAAAAAAA/HLwNUy2Ec20/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAfX4sKfKmqgBVzO6vl3bT2417VgCCr1T5a3bmdN8UTNpGMPlAJFYSOi6su8MN_Q3hZDuFQyPJFuh4FKcEcwHsfPEJEsA',NULL,'2019-10-24 16:20:55.130000','2019-10-24 16:20:55.130000',5,'Holli Bratcher','https://lh3.googleusercontent.com/-Ow3UExiRXpA/AAAAAAAAAAI/AAAAAAAAAAA/FY2Twr8A0oc/c-rp-mo-br100/photo.jpg','8626688543755174284',14665),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAfxBZRN4PDLdnDDBabPJd09AeGI-KhVoBqjFN8B8GvHi7mi2DLuJenGcPOiWyjHpg7hqgqCiZ5AGGao1U6VRjZVYGnxM','My experience is always amazing here, they get you seem pretty fast and provide tons of information','2016-05-21 15:24:29.244000','2016-05-21 15:24:29.244000',5,'Jarius Coleman','https://lh3.googleusercontent.com/-_vdCVW91EPQ/AAAAAAAAAAI/AAAAAAAAAAA/OjJaiO-WYI0/c-rp-mo-br100/photo.jpg','17394740196501090048',5254),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAFz26pqP4WhJ6nEZw7PrfGK7OgDrvPo4x_9T8ReqgztighSDQdOtwtdG4Nb2_LaFRyzybN2-r-JWbn8MsCc-cbqe5-LI',NULL,'2017-01-22 01:30:32.599000','2017-01-22 01:30:32.599000',5,'Pu Ying Huang','https://lh3.googleusercontent.com/-ylHAc3tr6VA/AAAAAAAAAAI/AAAAAAAAAAA/R3iiDutjFRg/c-rp-mo-br100/photo.jpg','3511292162159714121',7896),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAG5uXNRpk-vmGQ4A2temIMQ0rdCdZyL2wwrcrBOHUChTvpZoG9B4MpbchRNf1rieaFiGnCriNCF3PV38nOOiDRJERsjQ','Great experience, the staff was great and helpful, wait time was short! Thank you Dr.Kotey and Rashad and the rest of the staff ya are amazing.','2020-02-23 00:45:06.722000','2020-02-23 00:45:06.722000',5,'Glenda Manzanares','https://lh6.googleusercontent.com/-u4XXN3KzonE/AAAAAAAAAAI/AAAAAAAAAAA/Tc-zsYGoiM8/c-rp-mo-br100/photo.jpg','17394740196501090048',14011),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAg6upWf9EcjVYWEEx0jUEg9RlDgJqMJsD76I3szXyFC3W6U1XKa-FHz_N-9MmIaabNCUYkF_nVT6KI-QTy1LiYtsbLO0','Nurse Andrew \nTech shay\nRad tech Lonnie \nRegistration Thanh \nWhere of great help for me felt comforting as soon as I walked in!','2019-12-01 14:26:21.354000','2019-12-01 14:26:21.354000',5,'BanditLife TV','https://lh4.googleusercontent.com/-4pbWK1pn-eM/AAAAAAAAAAI/AAAAAAAAAAA/ZgUPVz31q3U/c-rp-mo-br100/photo.jpg','8918455867446117794',9039),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAGBwm_wD2enizk9qzHMHcYN-gHJ8b6NBwcQL_iAoGe2guG8ZpC-oBYvgzfPqsJD-6suEhp0h8B56_aSIEyye3pgsv4zE','Clean and Welcoming!!! Awesome staff!!','2019-03-20 12:17:05.803000','2019-03-20 12:17:05.803000',5,'Candice Smith','https://lh4.googleusercontent.com/-5J8iu1fZAAM/AAAAAAAAAAI/AAAAAAAAAAA/qyt_z10kpfI/c-rp-mo-br100/photo.jpg','3272657195432704501',6989),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAgEXxaJz_9axwuk3HsrB00X11Ko_4ifgaGUgmd9JWpx4-kiZy3etJ8dbOjRDc-83evppkFJh_kj5ZJ1TbbNbHYTSkYjM','awesome staff! super friendly! nurse & receptionist were great!','2017-08-15 20:46:54.553000','2017-08-15 20:46:54.553000',5,'Krista Llanes','https://lh3.googleusercontent.com/-A5u3mzyxu08/AAAAAAAAAAI/AAAAAAAAAAA/ZiKpGV3MLE8/c-rp-mo-br100/photo.jpg','16590124370714063921',3965),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAGfgxptcFuA2PKKGsIAL_bqJIfEawcKLc_puE8fvTAQfirbES5H297iQGnzN4TBD9W9vr4ZH3kt9fDTS2AMjXLq0QFFU',NULL,'2020-01-14 07:15:24.390000','2020-01-14 07:15:24.390000',5,'Christian Giles','https://lh5.googleusercontent.com/-kdKbUT-2m6E/AAAAAAAAAAI/AAAAAAAAAAA/WTc0UeNcAIU/c-rp-mo-br100/photo.jpg','12541597562633926366',9661),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAggj_6otHGo3APSCRWfLlvxZlXeTvn3b_2T7QIwE3lkYsmSnJj7doIchCEu4P9n55fHPdL5c6tqz0UvAF8HahxvJ0zew',NULL,'2020-02-01 23:34:02.979000','2020-02-01 23:34:02.979000',5,'Anne Guerrero','https://lh4.googleusercontent.com/-a4TriZhEAso/AAAAAAAAAAI/AAAAAAAAAAA/vEJAX1O9Iug/c-rp-mo-br100/photo.jpg','16891069708558046635',13965),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAgmEZbYKmRIgjMM4wvFHnYIBe-cBpV9d20jZ6o9GYu1FvpDcdlVk6oUI2MKuD7Wg1hlTT0rorVwDBVLD_zKyfqCSIOiU',NULL,'2019-09-02 20:03:04.092000','2019-09-02 20:03:04.092000',5,'Shannon Jarvis','https://lh3.googleusercontent.com/-b1QmoivChOs/AAAAAAAAAAI/AAAAAAAAAAA/EmzS32HIdhQ/c-rp-mo-br100/photo.jpg','2694018788013845459',6075),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAGPZGBz85qegzAJm3P0fZhYywdOYi-4MZVE4rZCEI99xIqXCMhDWugk_PYZKWW8DfKlKENj0tbn6KGClro47o7iglf3I','Came into this Emergency Room after my brother got into a car wreck and the staff took splendid care of us! Very friendly from the moment we walked in. It wasn’t very busy so we were brought into a room immediately and were seen very quickly. Shout out to Dr. Guharoy, RN Rollie, Mary Ann, Natalia, and Yasmina. Excellent staff and they were all very attentive. We will come here first again for any future emergencies.','2020-01-01 03:58:56.822000','2020-01-01 03:58:56.822000',5,'Lauryn Reyes','https://lh4.googleusercontent.com/-7032zknWrKM/AAAAAAAAAAI/AAAAAAAAAAA/YI6VeVemOq0/c-rp-mo-br100/photo.jpg','8679688254631342173',8664),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAgSR6UqnLK5jye3-fIMSyGRWGWWGysYIImjMKgPfNIsNayjQyblk7nbmmUym2BPeFhtZNh_3KZrMC_53PMJV0exIROdk','Sarah my nurse was very helpful, \nLaura my rad tech was very helpful\nGeovanny was my ER tech and he was awesome \nThe receptionist Tanishia was very helpful','2020-02-14 06:18:20.069000','2020-02-14 06:18:20.069000',5,'Brittany Sturdy','https://lh6.googleusercontent.com/-97V3kpohj4k/AAAAAAAAAAI/AAAAAAAAAAA/TLMuMMS_4bI/c-rp-mo-br100/photo.jpg','17898197009688164559',14172),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAgtt0NTqQQRgMxBGq4j8tkknrKXdP4Vp8R4sPTaEVGARrjaGEphI4EqqukIeFsRUpXNurYGQUa8AVEZCQcJbPIsZIVjI','Seen immediately, before we were done with the admission paperwork! The staff is professional and empathetic. Thanks Nurse Alvean and Dr Dendy!','2019-10-04 17:12:33.626000','2019-10-04 17:12:33.626000',5,'Tunis Perez','https://lh3.googleusercontent.com/-D_5ZmBwXHr0/AAAAAAAAAAI/AAAAAAAAAAA/2xajyp46kfQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2857),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAGZ4E4C_rxMeBqQdW0tzi7rplsPKNuOEqfjoW1M2bWsMXBxKw70jYC755BTu8AQV-m2ybwLLKFNianh1YCvVPw-iKh2Y','Will come back staff very friendly and thorough. Very little waiting. Thank you Dr. Cavazzos, Patricia and Alvean.','2020-02-27 19:04:43.617000','2020-02-27 19:04:43.617000',5,'ray escalante','https://lh6.googleusercontent.com/-7uehSFMpt00/AAAAAAAAAAI/AAAAAAAAAAA/cMIKHWgpQIY/c-rp-mo-br100/photo.jpg','16389487648212004696',13755),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAGzKZZkEmzKlhBQjM-NxqbJirplb6Y8kalswtJkPb96YsqZCNnXBN5J8bW7bkM3kbcl6GbNa9YI6yBr4-TbX75it3fbg','They were excellent. Fast, through and very helpful.','2017-02-21 19:31:14.369000','2017-02-21 19:31:14.369000',5,'David Chambers','https://lh6.googleusercontent.com/-g_Jzx3yCUq4/AAAAAAAAAAI/AAAAAAAAAAA/3ueb9FxJ_Tw/c-rp-mo-br100/photo.jpg','14904078213800803294',2408),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAh0ti6pclc-KgDPgjxUpccYrD9LbOqAFes89U6nhF8_FAOKgIUNXdv6O2VkFjSwaQdPN_m-YhgMuy6TfdnTD4M1HBdXs','best place ever!!!!!','2017-03-25 21:31:18.478000','2017-03-25 21:31:18.478000',5,'robyn morrow','https://lh4.googleusercontent.com/-2TxyjSsrUvE/AAAAAAAAAAI/AAAAAAAAAAA/QriMHHT3Ffc/c-rp-mo-br100/photo.jpg','16590124370714063921',4023),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAh6ErtC1g1uf5rSoF3GPHiuXSXxYw9bNUzZb13-CobdsFqZImZMkINZlaFgn8AlmPeaHP-LkolQgP5HyvGOaYqNUBxKA','I was seen and diagnosed with the flu on 2/2/20. Linda with registration is who I encountered first. She was very friendly and greeted me as soon as I walked in the door. Kara was my nurse and she was very sweet and attentive. She provided me with water and a warm blanket to make me comfortable. Dr. Edwards saw me to give my diagnosis and thoroughly explained how to take my medicine and control any pain. The service and hospitality was great and I will definitely use them again in the future!','2020-02-24 22:03:30.952000','2020-02-24 22:03:30.952000',5,'Brittne Dansby','https://lh4.googleusercontent.com/-aeVc1QC_uVE/AAAAAAAAAAI/AAAAAAAAAAA/soysoxmayus/c-rp-mo-br100/photo.jpg','3272657195432704501',14329),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAhhN40NPRczkQyTvCHUwbNV5w6yDvaOSrnFA4SAmiBDgWMkXqFpvCBTvoD08YaJq6ixQe36u2c6Byy4XSW7B1AO70U0A','Dr Henderson and her staff Mollie, Eric and Tobie was the most caring and sweetest people I have came across in a ER visit. Will def make sure that is where I go if another emergency comes up!','2019-12-31 16:59:09.151000','2019-12-31 16:59:09.151000',5,'Naomi Hayes','https://lh5.googleusercontent.com/-swFQHALf-pI/AAAAAAAAAAI/AAAAAAAAAAA/Y484uKK8ozc/c-rp-mo-br100/photo.jpg','3272657195432704501',6811),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAHK-5Jc9RWighjE8Cp5p07PMnbizanfXRMjBBy49qdgy7eUtBiqDCvDFoMdvaIA5D4M1HWZnKd8eDWHmKNPORfRKfvf4','Facilities was clean. Quick service and lovely staff. Dr\nYBarra,NurseBlake,Son Le,and Delicia took good care of me.','2020-01-24 17:10:32.577000','2020-01-24 17:10:32.577000',5,'Theresa Arline','https://lh4.googleusercontent.com/-XrA1Z1TlQDM/AAAAAAAAAAI/AAAAAAAAAAA/5PSuwvDZDQ0/c-rp-mo-br100/photo.jpg','8679688254631342173',10338),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAhKPMP-6E5uNSzxeUPuzYWSCNVsemhJROxO1RsnKfWDFlA4ew0ikCBhkk2igJWI4FrLy5TxX2yjW6CtDl99jTv13k2MI','The staff was awesome very friendly.\nPersonal thanks to Gunnar Kara Courtney and Dr Edwards for taken great care of me.','2020-03-10 14:10:29.585000','2020-03-10 14:10:29.585000',5,'Deedria Wickliffe','https://lh3.googleusercontent.com/a-/AOh14GhEVrS01r8K3nQAuJjK-VVpcmCEdqNHeq3vt07K8w=c0x00000000-cc-rp','3272657195432704501',21135),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAhNh7nmb8Cj_TwleUT-JnIg8n6HEeVPMUz54fqaactEnAhFffyyKOUdUU9k6tVaL_KLjBWdG-wuEx2eLwPCuqW0zv7IY','Clean, professional, and friendly! Well taken care of during my visit','2019-12-28 03:32:35.050000','2019-12-28 03:32:35.050000',5,'Whitney Rosenbaum','https://lh5.googleusercontent.com/-NwoxRNEdv0s/AAAAAAAAAAI/AAAAAAAAAAA/XW36ESGCYic/c-rp-mo-br100/photo.jpg','3272657195432704501',6826),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAhRofKWf7uZEn4_CI9s8INHezJNQr_FIpp_78wCinBpFjR6JELe5JHmSqlmpsRmXNAHGL4ycO0WxsL6-OhXz2QTMNOM0','Jen And Olivia were awesome.','2019-12-15 07:09:25.937000','2019-12-08 13:43:43.830000',5,'Ke’Aire Hamilton','https://lh3.googleusercontent.com/-1j5d7MiGUZY/AAAAAAAAAAI/AAAAAAAAAAA/mAnpFqt0JkY/c-rp-mo-br100/photo.jpg','3511292162159714121',7134),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAht86zpykgtFVQOUA3ABq0yMOTljE336Oa0dodk8iAXE93nVxCr9hBQ6CQ94QgmRPHTJ5B3cV8tmI3cI-JBbrg88f7Zw','Dr. Garcia, Nicole, Staci, Trisha, Val we’re very helpful today. My son had a collision playing basketball and we needed to quickly get his nose x-rayed. Everything checked out and we were in and out in no time!','2020-02-04 21:33:06.332000','2020-02-04 21:33:06.332000',5,'Natalie Plummer','https://lh6.googleusercontent.com/-EVaPHTrhY_w/AAAAAAAAAAI/AAAAAAAAAAA/Prlv2a5uYHU/c-rp-mo-br100/photo.jpg','8918455867446117794',14847),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAHtryVKDQYEqorp4XPKQQZxo9WMJ5lYCaJEFQRNOWQJX1IKLU8549L3W4_eou2cSJY4lH1hf3PQR95ZeNtL9JXBbLrTE','Great patient care ❤... Can\'t forget nurse Katrina, Cheney , Therisa\'s smile and Dr. Pham OD','2019-10-27 02:10:28.720000','2019-10-27 02:10:28.720000',5,'Emmanuel Sitamon','https://lh5.googleusercontent.com/-gigrL6d_mtE/AAAAAAAAAAI/AAAAAAAAAAA/0pvoNZ5H3QQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8766),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAHUnGcnkn1lpvLOC1t1N47Q5BHIuRUELoNrkivg1QwqZMTLZBiL7UAJBz8b-mrGGTpjq7lf5ig4UZOEu9BQHNxR76QGs','Dr. Edwards and the staff were beyond amazing when I went in for abdominal pain. Everyone was so caring and nice. Will definitely visit again for future ER needs. We are so lucky to have this amazing facility in town.','2019-10-13 09:21:08.434000','2019-10-13 09:21:08.434000',5,'Keri Estep','https://lh3.googleusercontent.com/-rsNZt1OAKfQ/AAAAAAAAAAI/AAAAAAAAAAA/ERMDQSTG8mg/c-rp-mo-br100/photo.jpg','3272657195432704501',6882),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAHxGe9mQqRXUqKpAzTebkr9utCHXZvbxfQFfSeOMhQZotVahhVA15DO7ducvP_H5_H4BM_6Xeyv2oN3GiQNOsd57HC0E','Staff and doctors are nice and attentive.','2020-07-24 14:48:52.125000','2020-07-24 14:48:52.125000',5,'Valeria Suarez','https://lh4.googleusercontent.com/-1QPDQaMB1dE/AAAAAAAAAAI/AAAAAAAAAAA/icQgTBlnE94/c-rp-mo-br100/photo.jpg','8918455867446117794',22294),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAhYOFtm_wCMlae0x6ByfvKKoU2WQmS0AXH02P9xF2KZNXjo_CYlkl2z6PQskiUXYFFBLuCDyo13gU1NjSIi9nOkLLQgE','From the moment we walked into the door, Jackie greeted us with a smile. She made sure to explain how Signature Care works and walked us through filling out documentation. Within a few minutes, the doctor was able to see us. He was very thorough and informative as well. Overall I am so grateful that they were able to put us at ease . It is very refreshing to find good customer service. Thank you to Jackie and the rest of the team.','2017-09-20 04:41:10.061000','2017-09-20 04:41:10.061000',5,'N D','https://lh6.googleusercontent.com/-3_WOl8_P7GI/AAAAAAAAAAI/AAAAAAAAAAA/gEXIc4l8omE/c-rp-mo-br100/photo.jpg','14567670160750071148',1755),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAhzBGLwN_2Ub47M_59t1fvwGlKNc-kFna5vUk9INJCmXXo-wut8lHip_eluW0cxcwEMlGHdjZ650wK2Pao27xw2eexpQ','Took good care of a friend, maya at the front desk was very helpful!','2019-12-13 23:38:44.725000','2019-12-13 23:38:44.725000',5,'Angie Crowley','https://lh6.googleusercontent.com/-aoaq3HbnaKg/AAAAAAAAAAI/AAAAAAAAAAA/Hjgy3gklglg/c-rp-mo-br100/photo.jpg','12541597562633926366',348),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAhzk2qUGWgcmgM6wCrNbOSEfTsGWMXfOUmpaTCEkzTbGlnEkf3XmIhdITBgxxXbHZ4dprMAaPxke3EYV_zfpdJrIoWFM','Amy, Norma, Agnes and Dr. Souman were great. Very hospitable, quick and clearly explained my conditions.','2019-05-04 22:18:00.952000','2019-05-04 22:18:00.952000',5,'Warren Roca','https://lh5.googleusercontent.com/-pn0oi1QLp_8/AAAAAAAAAAI/AAAAAAAAAAA/mWGZ55m0-rI/c-rp-mo-br100/photo.jpg','3511292162159714121',7349),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAI0x-O8Sunt_wBiuVn7fZjLvfd5GwR04-ukIy-3uW-kBWKOla1YfXvUsC5GL9lqjZF7nHf01jRSBn5BWf89K1jcrJo68','Though everyone has been bribed with a Starbucks card to write a good review. I’ll be honest they suck. There was no wait but the doctors don’t care about the patient. They didn’t help me at all with what I went in for. Now I owe $7k to this place they didn’t really even do anything for me.','2019-11-19 15:37:23.411000','2019-11-19 15:37:23.411000',1,'Rhonda Brooks','https://lh6.googleusercontent.com/-lfKkdxnUIjw/AAAAAAAAAAI/AAAAAAAAAAA/jgmAFlXOppw/c-rp-mo-br100/photo.jpg','2694018788013845459',6009),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAI3PufuMoP73-0jbODSzGAkUybxsCrafH2GEY3_heyxqATAOMgbfjN5WbyrG_6kfRZM40wbYqZ13AoGme5WtNvi7Pt8E','Dr. Jaber, Alexis, Anothing the RN, and Morgan were all very helpful and caring!','2018-10-17 15:43:43.332000','2018-10-17 15:43:43.332000',5,'Ashley Hodde','https://lh4.googleusercontent.com/-RVoZe_nzduk/AAAAAAAAAAI/AAAAAAAAAAA/Fl-sDvWtg-E/c-rp-mo-br100/photo.jpg','16590124370714063921',3699),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAi9IrDd6z3NgJ1uvIgRAfbe6UUWWY_LdGBiZhVAlzRWviopowvX1gF5BTr1ZHwbQufwUINsSLgH7h3l5t5Om5pl3IsFM','Great awesome er staff rebecca at the front office was warm and welcoming and and rn gabe and dr min were excellent folks would recommend this place to anyone','2019-12-26 07:15:00.339000','2019-12-26 07:15:00.339000',5,'Steven Gonzalez','https://lh4.googleusercontent.com/-GiYG2Eul5_o/AAAAAAAAAAI/AAAAAAAAAAA/bF981skgANA/c-rp-mo-br100/photo.jpg','16590124370714063921',3007),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAia_T8191X-o3x43lQui7OLGpoz6DxXHCDE_3Zy-qE_W2Si9h40wZMdaP_X20JbjluRzr1uBDYqWD-l21_FcwTXjb4jo','Omg my experience was great here. I will most definitely coming back!!!!! I will tell my family about this. Thank you again for everything \nDr.Appia\nNurse Shoba \nRad Tech Guss\nER Tech Ellen \nRegistration Sam','2019-06-19 06:12:00.625000','2019-06-19 06:12:00.625000',5,'Tamera Sweet','https://lh5.googleusercontent.com/-lv25gzLzVyQ/AAAAAAAAAAI/AAAAAAAAAAA/CJurG7k4Zg0/c-rp-mo-br100/photo.jpg','8918455867446117794',9117),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAICAc5bxkgGjmHoIE889EiY0TXpuHD3nT1FImh76C8eDxG-CGKtfOFIY-8AUmtzXWLJqyjTUQcgTF9eQLDD-yKCHgAu0','The staff is always friendly, comforting and very knowledgeable. We have been to this facility for bone fractures, strep, flu, and sprains. Thank you, Team!','2019-01-09 02:04:27.225000','2019-01-09 02:04:27.225000',5,'Christine Michels','https://lh5.googleusercontent.com/-j0cGpyDFCBE/AAAAAAAAAAI/AAAAAAAAAAA/EVFFu08RwzE/c-rp-mo-br100/photo.jpg','14567670160750071148',1430),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAIdpiqHVAvRKpoSB91qGCyQrXiKGUAkhQa-OnHign3eXPaCnMYmf8N2FCqsy5cMPtSdJHzpD56WJwzkqzffp4pCKSH-k','Great experience. They are always super friendly and best of all fast!!!!','2020-01-19 19:02:05.421000','2020-01-19 19:02:05.421000',5,'Jaymes Roberts','https://lh6.googleusercontent.com/-RMAEuAViZUI/AAAAAAAAAAI/AAAAAAAAAAA/4aER9nNXl1s/c-rp-mo-br100/photo.jpg','12541597562633926366',9944),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAiL1EO4e5cf08SyT9DUdGWAQj67JsTI1cRhFdQ_oD85Bp9PexWF10_MBPL2mn7IfsiD7wBd7KjdrEdIwxWF3U8lWIvAA','Alisha, Andrew, Kimberly, David, and Dr Huerta were awesome!','2019-06-29 08:19:17.017000','2019-06-29 08:19:17.017000',5,'Thomas Girl','https://lh4.googleusercontent.com/-Yy3OgoDkmmE/AAAAAAAAAAI/AAAAAAAAAAA/ZdbvvLnQtLM/c-rp-mo-br100/photo.jpg','13486358490203335051',911),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAIT8mgaHZXWtdM_qb0C-coUwIetSUS93fY2QiSnLaxuUpS1TfmzuvVA0jGE-Fm0IJBeHls6Md1iJt8CRO0iq8JViAWq0','Had great care from Tricia, Alvean and Dr. Tran. Jocelyn was very helpful at the front desk. Would highly recommend.','2019-06-26 21:11:04.292000','2019-06-26 21:11:04.292000',5,'Chip Keyser','https://lh3.googleusercontent.com/-mitkHq61jPI/AAAAAAAAAAI/AAAAAAAAAAA/OQg-MfTZK-c/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAiTAQkJAm2BEhojjcppjhdJsDZgJFLll3g59LUbQ05bzQWct10WatPdkvLOcVLYz_JDs2P_VrRbnnYF7WCmw3VEMCmAw',NULL,'2019-01-14 01:33:32.542000','2019-01-14 01:33:32.542000',5,'Johnny Sauceda','https://lh5.googleusercontent.com/--zFCDX8Ec_A/AAAAAAAAAAI/AAAAAAAAAAA/oTLqhkfD_xc/c-rp-mo-br100/photo.jpg','6521947413723274945',8327),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAiWe8hJSLfNiDYBXp_kclVb2oNsvOpfi1IZBIHGvr-hSt5UP5bmEhjVzqABDg8u5fzaHqmG2kNz28NIJ5Ph_7iMq-ihc','Very attentive and informative staff. I love coming here!\nDr. Ybarra, Natalia, Rollie, and Stephanie are the best!','2020-02-11 05:14:30.622000','2020-02-11 05:14:30.622000',5,'Ashley Kelley','https://lh3.googleusercontent.com/-NNrjN3TTIEQ/AAAAAAAAAAI/AAAAAAAAAAA/YAYyh66RQhA/c-rp-mo-br100/photo.jpg','8679688254631342173',14752),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAiykVwhY6D6pQlx8YXwl5Oft1vyIoKyxD0wDj36sMY2WykGfFNkhuno0CIdD_LZvID2gkbjKdTh_6T_2G6fGPfgkHpWM','The staff took care of me as soon as I walked in. They listened to my concerns and tended to my needs. The place itself is very neat and welcoming. The staff are very pleasant and easy to talk to. I would recommend this place to friends and family in case of emergency.','2019-12-04 14:15:09.230000','2019-12-04 14:15:09.230000',5,'Ruth Israelle Short','https://lh3.googleusercontent.com/-jLYI45sGzy4/AAAAAAAAAAI/AAAAAAAAAAA/mXHgJ5tD1UQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8698),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAIz9_3VkpkAUTKRLGPdQeZXn2KosxyafAXm7MvWE_COxdAguQRO0MjgBX6-gCI5rCsyu6lMJZPKEUbtS8EIM3AIR9IS4',NULL,'2020-02-07 17:27:00.905000','2020-02-07 17:27:00.905000',5,'Santos Guerra','https://lh6.googleusercontent.com/-BeOWvJDtqUY/AAAAAAAAAAI/AAAAAAAAAAA/UsgNyWR7lyE/c-rp-mo-br100/photo.jpg','6521947413723274945',22908),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAJ1Lb5kiKjxpEGtQ5zQXi2WRYZPcfzeN7EcdPGxlaajz6YE6zmBraGehkoYOZBTdsYLLdLlcUPr7qRcIk9HPId89FsQQ','Little to no wait, nurses and doctors seem to genuinely care and thoroughly investigate your concern','2019-07-30 21:57:51.415000','2019-07-30 21:57:51.415000',5,'George Bowler','https://lh4.googleusercontent.com/-XAJ4KVnjOXg/AAAAAAAAAAI/AAAAAAAAAAA/axjibqYDNxk/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5615),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAj8FDC7kcaX0VHHOWYzIuVHocvTZRg-zjPp3I7vE2rwKxZEpyl3CPFYr5QotuqhiBqGDwPW9lfC2f1guqWmBZMImYoPI','The staff was very friendly and quick. Everybody in the emergency center was very excellent and cooperative. Starting from the front desk to the examination room, everything was wonderful. I had a great experience there and I will suggest this Emergency Center to all my friends.','2017-08-07 01:28:18.535000','2017-08-07 01:28:18.535000',5,'Winta Tekie','https://lh3.googleusercontent.com/-QkyCYp342hc/AAAAAAAAAAI/AAAAAAAAAAA/HTOxpYz3TXE/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9373),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAj97XBD8OPYcfZnypDYJ5ePzerzkioh8oWUHdC3G4GdJwW-A0PZl65-_0S2UI72CXBUsH_bAzx5MGEpGIz8Et1oPdju8','First time here and we had a wonderful experience. My son was seen by Amy, Traevis, Keith, Alvean and Dr. Leavitt. They took good care of him I will definitely come back and recommend this location.','2019-11-17 17:36:58.211000','2019-11-17 17:36:58.211000',5,'Cintia','https://lh5.googleusercontent.com/-21kKFgw8bL4/AAAAAAAAAAI/AAAAAAAAAAA/MTImlE3pv90/c-rp-mo-br100/photo.jpg','16389487648212004696',2674),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAJAhIKf-9GqJo_ElbIuwuponiCZpZk_OcWZKJuTUB8td9JzIKLVohwGYq8-vt_Ffyb2Brt_r7BeiU7IBlpCNDMTkRQzc','I came in with some abdominal pain. There was no wait and the receptionist was very friendly. All the staff here were very nice and the doctor was very informative and helped me decide my best treatment option. Shelly the nurse was very friendly I went in having a bad day and came out with a better mood and a solution to my abdominal pain. I highly recommend coming here!!!','2016-12-24 17:00:14.560000','2016-12-24 17:00:14.560000',5,'Alex Ledezma','https://lh3.googleusercontent.com/-bl1AHzX19_s/AAAAAAAAAAI/AAAAAAAAAAA/wFEsZkU0Gjo/c-rp-mo-br100/photo.jpg','3511292162159714121',7910),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAJbqNDP2xawJ9PN6PBf2b65Xt0RaIwN6yngDZG5Zgu-muvKsTcg5nVS3GnkwGmEbYw-AW9LeH5jczEUVuV_AbkRPCTms','Love Signature Care in montrose! The people/staff are amazing, the place is so clean, you feel relaxed walking in and they have made the entire ER experience into a pleasurable visit, who knew that was possible! Dr Patel was wonderful (5 Stars!) and X Ray Tech Jaque was so friendly! Leslie and Dawn also were all smiles and so kind!! Thank you guys for putting me \"back together\" again :)','2019-09-18 19:39:38.068000','2019-09-18 19:39:38.068000',5,'Liz Maddox','https://lh6.googleusercontent.com/-gEKyKe8yFvY/AAAAAAAAAAI/AAAAAAAAAAA/-NnXOnV1Ifg/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7173),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAjdgUEG-DSD7PwpuoOKuVWB1tGYd5-K8tQNVPVceg9DYLe2DEaFb56l-MYXDSq11yO7_JiLNqBsEMGdjak6X_tI6sBII','Took husband for xray. Was seen by Dr. very quick! All staff was so nice and accommodating!','2018-05-02 13:18:15.446000','2018-05-02 13:18:15.446000',5,'Becki Hines','https://lh6.googleusercontent.com/-0OQBNcvaRjk/AAAAAAAAAAI/AAAAAAAAAAA/Q6ERMaHkvXw/c-rp-mo-br100/photo.jpg','17394740196501090048',4856),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAJemPe4blpk2mynb25f6dF05XuMk6X65uvqKLdkNSd5kmp9mQqbwqw81QDCaM_4HcXa4_6kjOQwKqnGruaMWvP_oWee0','I loved this place! I received immediate care and attention. The staff was also super pleasant! I defenitely recommed this place!','2019-01-20 01:24:00.813000','2019-01-20 01:24:00.813000',5,'Jacklin Lopez','https://lh6.googleusercontent.com/-OA6WPSvhWqQ/AAAAAAAAAAI/AAAAAAAAAAA/5lLH2sHi3Ko/c-rp-mo-br100/photo.jpg','14904078213800803294',2180),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAjF9W3jhJQvE-5TJWC6WT2EglJOfUhU2yEe13k--pVyE6WdoWv0n8oYkSaMW5WgYrnXrcJ4oOVScqgGfc3VGQV5EL21w','great pt care!','2019-04-10 16:05:35.928000','2019-04-10 16:05:35.928000',5,'John K','https://lh5.googleusercontent.com/-BZISrFDl6rU/AAAAAAAAAAI/AAAAAAAAAAA/3gluBQ3JEns/c-rp-mo-br100/photo.jpg','16590124370714063921',3434),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAJfucAaLmIkl3jGQvyPBKcqziYt7JoxCkssnAdj5Y7R7LbYVxs_RiWLcMK_BZ7dEMt38SQ-aoEqcsvRCJtye9UBntmEk','Loved the staff , fast care , comforting staff ... I’m a scary person and I was so comfortable!!!!❤️❤️❤️❤️','2020-01-24 22:34:27.911000','2020-01-24 22:34:27.911000',5,'Kisha Johnson','https://lh4.googleusercontent.com/-ekmEBQK-6UI/AAAAAAAAAAI/AAAAAAAAAAA/SeLLGLc3CD0/c-rp-mo-br100/photo.jpg','12541597562633926366',10099),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAjI0M41dzcKR4GqPDaciqxuXI4DuI2kRHr2xwQM3EkKQMDdEhBYoDZOv-CBWa7AwOdq9xM2KiLcNyNjwwD8r8CV4dUds','Located very conveniently next to my apartments complex. Excellent service excellent location and very very professional staff i had to go there with my sister in law due to her condition for a urgent care it was really very close and free standing urgent care clinic with Ample parking and even Ambulance facilities were offered with this facility. The staff including receptionist was very humble very friendly and very professional they took care of her right away and within few hours she was discharged after initial treatment. Really worthy location for urgent care. Cleanliness was appropriate and even we were offered water and sodas.','2019-11-29 15:35:09.479000','2019-11-29 15:35:09.479000',5,'Nuzya Hasan','https://lh3.googleusercontent.com/-huPIEHCkU7o/AAAAAAAAAAI/AAAAAAAAAAA/vfrZgqOJbac/c-rp-mo-ba5-br100/photo.jpg','17898197009688164559',5394),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAJJtjvmPQ2XcL5NA41RBHgRsEpDgPLEkbkIOA4I8rdA0-bcStJDHh7wi6He7GeumPSRMi7spzi8c8dhj4z0xBOtVvKyw','Very efficient and friendly. Dr. Miller and staff are all amazing. Will definitely come back if ever needed.','2018-09-07 00:34:52.031000','2018-09-07 00:34:52.031000',5,'Jessica Williamson','https://lh5.googleusercontent.com/-wV3bjWL-w_w/AAAAAAAAAAI/AAAAAAAAAAA/jEEt0-YG_T0/c-rp-mo-br100/photo.jpg','14567670160750071148',1529),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAjkHKWEzpELRgB7aM6cyweJVt4ehpiE-_0Jupd7_jTnt4cQ4hME42-TldU8RyL5E6MlAYg70DRzCPGwogld9RkNwA-uE','Excellent staff! All the way from the front desk to all the nurses and doctors. Everyone had great and positive attitudes. Very helpful as well. I would highly recommend them to anyone who has a medical issue. Awesome and beautiful place inside and out. Thank you guys for my experience!','2019-11-10 15:32:24.737000','2019-11-10 15:32:24.737000',5,'Talia Harrell','https://lh3.googleusercontent.com/-EU90sUIHf6U/AAAAAAAAAAI/AAAAAAAAAAA/GKtM7BRkGGI/c-rp-mo-br100/photo.jpg','14567670160750071148',1196),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAJNzouhbjRkFom1fsbaq1xt6NeBA53g7z4HJNT-cpaBP__2-r5Nl5pYbOBMAygisuv09zP61_Y26gl6HCAZUmfmEQaOw','Great to have security at the door. All paperwork was done by pen and paper. I filled in the same info as what I printed and brought in. It\'s 2020, everything should be electronically submitted before arrival with minimal to sign in person on site. The hand sanitizer at the front door that said to put on upon entering is empty and looks dirty if you try to squeeze the last bit. Front desk returned my ID and insurance card on counter. Counter looked dirty, she could\'ve placed the cards back in my hand. The cleaning felt half done. Full face mask coverage should be enforced in lobby. One guy sweating just had a bandana covering his mouth while sitting in the waiting area. When he was called up, that\'s when he decided to lift the bandana over his nose. I know it\'s tough times but with measures seen like these, it feels like the virus is breeding in these clinics. The NP and Nurse staff were nice, but appearance at the door and front desk/inprocessing could be handled better. It\'s a bit outdated for these times.','2020-07-14 16:07:33.653000','2020-07-14 16:07:33.653000',4,'Daphne Quixote','https://lh3.googleusercontent.com/-pNFyjpnXxLA/AAAAAAAAAAI/AAAAAAAAAAA/hym-aEe07Eo/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',21951),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAjw__t2yEIMcKFyz6ZJO-EbItveqwgG5pntpWepMateDBSEphSew5ZcjUeRrONNtxG5NBSJ9PyKfFsWK5Szh_17w-g_o','They just took my money and this didn\'t give me nothing for my headache','2020-07-10 08:08:02.879000','2020-07-10 08:08:02.879000',1,'Lola Balderrama','https://lh4.googleusercontent.com/-zv5_PYUm3Hk/AAAAAAAAAAI/AAAAAAAAAAA/XcGHL1wa3oA/c-rp-mo-br100/photo.jpg','6521947413723274945',22901),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAjyEDJj5Wm9-Rjs6lYyJIL0AyX8fldyIB4r2RZ-FaS_arr0F-ytb2opfQ_MSJUSIAbyybGEkCJQXgDvBrROPRPmrM214','Everyone was so nice and helpful! Very clean and welcoming. Best emergency center I have ever been to!','2020-08-13 04:23:07.991000','2020-08-13 04:23:07.991000',5,'Kelsie Meyer','https://lh3.googleusercontent.com/-apJrcgamrdY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnbAcIDuYrn8yJoPkLjM4a-84OPRA/c0x00000000-cc-rp/photo.jpg','16891069708558046635',23060),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAJYhEvgn5dpEfaUeUxVqsgASgSyUpoPqan2doRHrXn6yHqqxTTw5bQCoGlRcSlktVkBigkg1y5_Nm0niJ6SRAM1lIRZI','SignatureCare was able to help my nausea and rehydrate me late at night, as well as giving me a prescription that took care of all the symptoms within one day!','2018-07-08 23:43:34.703000','2018-07-08 23:43:34.703000',5,'Dan Rutledge','https://lh6.googleusercontent.com/-HPk_sy-PfMU/AAAAAAAAAAI/AAAAAAAAAAA/CdvZ4pkRR6o/c-rp-mo-br100/photo.jpg','3511292162159714121',7690),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAK0H8PmOzkRyw9U0hq3qbgdDleZ3qyu0UH90ZHNSrg5T5B3XzUOeG8qua7XftHuqzUEfN6KioHNjGVVAXyk4lDMyV-nw','Very kind staff! They had me in and out, with no problem. Thank you guys!','2020-07-28 01:14:14.131000','2020-07-28 01:14:14.131000',5,'Skyler Smith','https://lh5.googleusercontent.com/-Un1CSHHQpWM/AAAAAAAAAAI/AAAAAAAAAAA/B9uH_IxXZbQ/c-rp-mo-br100/photo.jpg','14748677429039074158',22553),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAK0OGvSGuAKj5UqpjyZid31r2HuXwdueFWOo-zSLB05yDXkKwAu-EiBU3ROa6pCVPDvYOAsmFyqBxr917G-1ZWeDGbxk','Dr. Dang and Nurse Chantel were immensely kind and caring during my visit. I hadn’t been to a doctor in years out of fear of my own health and not being taken care of properly but they both made me feel very calm and collected. Next time things go south I will not hesitate to return, highly recommend!','2020-01-25 14:08:12.721000','2020-01-25 14:08:12.721000',5,'David Vargas','https://lh6.googleusercontent.com/-xJOLaTxsRMs/AAAAAAAAAAI/AAAAAAAAAAA/7imFkNf76mM/c-rp-mo-br100/photo.jpg','17898197009688164559',10245),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAk5YHdquHLkxhqU6WU5qAcPcIAB1xHGRcYgc4WRa0Dh3lfBM9Gxf8T1yBEloa4_kLZcQJJEZ0hP_XS_atFbmjvs1G0c4','Excellent service!!! Everyone was super kind, we did not have a wait. We got in and out in about 30 minutes. I highly recommend this place. ','2017-06-04 20:59:27.394000','2017-06-04 20:59:27.394000',5,'Ana Cisneros','https://lh3.googleusercontent.com/-n4C5dko1vO8/AAAAAAAAAAI/AAAAAAAAAAA/qbvmOfDWcEU/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5044),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAkaNo2VEo7ynb7XAQTW401AHg5GKgLZdW89o6R02PZUv4fusd6UizS7GRQGB7KEx0VzHbqe6-R6pCXgW83aq2oqLQSvM','They were open on Thanksgiving and it was better that my baby\'s doctor visits. The doctor was amazing. My son had been seen by a doctor 2 days earlier and tbey said it was viral. They tested him here and he had flu, an ear infection and croup. My poor baby was helped by this awesome staff. From my first phone call to make sure they were open until the very end. Highly recommended!','2017-11-24 03:47:18.995000','2017-11-24 03:47:18.995000',5,'Erika Pineda','https://lh3.googleusercontent.com/-9sBdnHvD3Uk/AAAAAAAAAAI/AAAAAAAAAAA/FYHd6Q_SHvk/c-rp-mo-br100/photo.jpg','14567670160750071148',1726),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAkD41cLAY7evqasYlv547dWat_HM13sXl7vQedyfrRRp-_R4bGIDpJaEa2xJJpd_qXS50LNlkWcdotFqDNWBBl7Vug4s','One of my friends thought she had a stomach bug and woke up not feeling well so we came to Signature Care and it was great! The Doctors, Anthony, Angela and J.R. were extremely respectful and were always asking if we needed anything, great service! My friend had a few tests done and was given an IV and everything went smoothly! They all made sure we were comfortable which made for a great experience and she is feeling better already. I will be back here if I ever need anything.','2019-01-12 18:56:24.467000','2019-01-12 18:56:24.467000',5,'Morgan Fissel','https://lh3.googleusercontent.com/-E5qnhdk85tQ/AAAAAAAAAAI/AAAAAAAAAAA/N2uHRwWIhEw/c-rp-mo-br100/photo.jpg','16590124370714063921',3590),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAkeTJjw4ULWpZhFqn0WvmIHb7GetNhdwKjwW5f5ZNkrb-hNTf6mqJWXL7Bh9QvwsDJCj0q6cdES48vlL1x7NWR48EkEA','The morning staff here was just great! Even though I wasn’t feeling well, they didn’t make it a terrible experience for me! Everybody was nice, gentle, they treated the things with urgency that needed to be treated. I thought I was having a heart attack and they had me on wheels in no time. Thank you Chunah, Jackie, Olivia and Dr. Yusuf!','2019-08-14 11:17:05.895000','2019-08-14 11:17:05.895000',5,'Lola Jordan','https://lh6.googleusercontent.com/-ZqBQEaeH1YM/AAAAAAAAAAI/AAAAAAAAAAA/EOEJ0cA9Q9c/c-rp-mo-br100/photo.jpg','3511292162159714121',7212),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAKinCv6z3aSbu3oUnPiIOkrruOuLFPX5aQSFn4u55E_iWon9EAKVwWHkIgOdR4jFdq7rD7qJS-OQW6w_2SNPQSsgrYAc','Thanks they were great. They’re very sweet n fast','2019-05-14 21:02:33.663000','2019-05-14 21:02:33.663000',5,'The JJ family','https://lh4.googleusercontent.com/-89l4oJJzlAs/AAAAAAAAAAI/AAAAAAAAAAA/Y2u3iFVLk1o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAKJiAjmFXoNRAAziqEyKxO9o8E9CBAErKc68UaPngYVn9AC6B8ACgXqAEI2KvczzzEpWI4CatY3nQIs1n_t-GDJ2aaPc','Great staff! Timely, professional, and courteous. They were compassionate with my four year old son who needed immediate attention due to dehydration and flu. I will certainly count on Signature Care when we are travelling.','2019-12-05 12:15:49.419000','2019-12-05 12:15:49.419000',5,'Irma Jacobson','https://lh5.googleusercontent.com/-ALQ5nG1xbv8/AAAAAAAAAAI/AAAAAAAAAAA/QxDnEgiDgqk/c-rp-mo-br100/photo.jpg','16389487648212004696',2576),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAkoKeDL9Vhhrn2A_h_L553DKSsJT_RReJisfJuFdaUZCiKwh7oxvv3nXVFUzyFTLrNZqSFrvLOHyzcYlz1ecBmr7-BLM','My er tech leah was great. Very sanitary and efficient. NP Erin is doing a great job.','2020-08-01 14:39:35.729000','2020-08-01 14:39:35.729000',5,'Kim Garza','https://lh6.googleusercontent.com/-InnZO3MLrWg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmTYZQ_XP2SfMU4CfycQtxS1IhLlQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21838),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAKt5O06Yk5JVvaiAo-sT-0Qc79oZuN1czV4UjcqQ8agwePw3ODMOOyQLDDPMCBYSj9x3eYyWGixGPuqX8KUR-hws177Q','Very fast and friendly people!','2020-01-03 02:46:12.487000','2020-01-03 02:46:12.487000',5,'Lily Sanchez','https://lh6.googleusercontent.com/-H3saoW4u1pE/AAAAAAAAAAI/AAAAAAAAAAA/9Ah26YQymww/c-rp-mo-br100/photo.jpg','13486358490203335051',654),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAkUTxzPz--uUdSG36ULKmNgaQVEq7rpVGdgsQO1a_hfXo4VhV4lGZL-d2F3Z3LXvDCtpYigv6gL29UYAl-ZrVeW-1OBw','DO NOT GO HERE FOR COVID TESTING. My mother had an appointment for 7:00pm, we arrived at 6:30pm, she is still currently in line and the time is 9:20pm. Staff is not accommodating or organized at all. They were passing out multiples of the same waiting numbers, you have to wait outside in the heat, and we had to ask for the registration forms several times. I wouldn\'t even recommended as a last result. My sister was able to test within an hour at another location.','2020-07-16 02:29:51.941000','2020-07-16 02:29:51.941000',1,'zaynab okuns','https://lh6.googleusercontent.com/--lNMJKrthv8/AAAAAAAAAAI/AAAAAAAAAAA/I8oz8tz9c0U/c-rp-mo-br100/photo.jpg','14904078213800803294',21949),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAKvDH5xIC9Pv8v8BEHNUWUGD-nDXXUiGDaHxSsZtpHKm4H2TTrxbVBTISg4L5YoezRQ26AZTOUcE_lIztNpdIMf8OwI8','They were so good with my son and got us in and out quickly. Made sure we understood the treatment for him to start feeling better! Manny, Dr. Thomas and Maria were helpful and pleasant! Awesome experience and we didn’t have to wait at all like we would have in the hospital ER','2019-08-14 21:01:07.581000','2019-08-14 21:01:07.581000',5,'Stacie Mahaffey','https://lh6.googleusercontent.com/-EN6LhaB6cbU/AAAAAAAAAAI/AAAAAAAAAAA/8eS_-qS8bRA/c-rp-mo-br100/photo.jpg','6521947413723274945',8161),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAkw5yA9YhRXhuEztpoRH7bvCG6SPjtwISqUG_DieSWEN3gnJ31lsTHvPt0H-5ow8lQKJOmau4MHpb5jy9xjCc5oZYbCs','My son was seen fast and diagnosed promptly. Everyone on the staff was very nice.','2019-12-21 04:31:03.173000','2019-12-21 04:31:03.173000',5,'Jael Hernandez','https://lh4.googleusercontent.com/-WIKveeOl_HM/AAAAAAAAAAI/AAAAAAAAAAA/t5d8mPHRmh4/c-rp-mo-br100/photo.jpg','13486358490203335051',678),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAkxaVRFVZQYg4w-wfBKB_aku9VYqxZm4HMHpCoiwWSFPtwrvGemA8xDmBoi1gts7EuM41-SBk5SUDsc-hmaC9li-bGCw','Adam was super friendly and made me very comfortable.','2019-11-16 00:55:26.448000','2019-11-16 00:55:26.448000',5,'Lincoln Kauffman','https://lh6.googleusercontent.com/-_WaIGTo7b_c/AAAAAAAAAAI/AAAAAAAAAAA/BFXWQ37fxIU/c-rp-mo-br100/photo.jpg','16891069708558046635',4151),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAKxG5dsOtTYYkhhUYLmDBilq5Qp0ms-olvlHEhGg5DcmR3hl6nCQwlFx8oi7F6_0CxcU0fzZeOKXx4WaqOfDHz1zCZnc','Not a good experience, took my patient, the patient actually had a neurological issue which the facility could not find out even after 4-5 hours, looks like they do not have experienced doctors to find out such complex problems.','2016-08-10 01:40:53.335000','2016-08-10 01:40:53.335000',2,'ang Alb','https://lh4.googleusercontent.com/-NKqE2BQ6HEg/AAAAAAAAAAI/AAAAAAAAAAA/kAIUTbp0QNc/c-rp-mo-br100/photo.jpg','17394740196501090048',5216),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAkYcauvR_InMmZ2EHC8ygC1h-8E9Na5Bc6ZdzDcRVD9ifQumVePJ6zUXlB-Gs-8iTkUkxoZIbLbneCqzliikPFv84n_A','Very helpful and personable. The timely and informative doctor Souman nurse Alvin A and tech Marcus B were amazing the registrar Jocelyn A was helpful and fun to talk to would go again','2019-08-28 19:47:18.583000','2019-08-28 19:47:18.583000',5,'Akiro Tonbo','https://lh5.googleusercontent.com/-D3nxnhrppZQ/AAAAAAAAAAI/AAAAAAAAAAA/nlH0fSH8GXQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2972),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAl_h4wOLo6X2jcFy053uzWjrKIhb72tg6i4CWPKmWSfuhHMfprH1RnBjtwyvbojKHMD__MtjX0CO5NrvahpgFKcmpMDY','Nick H referred me to signature care staff to help me feel better so I took his advice and thank him so much...My experience at signature care Copperfield was amazing Tanishia was so caring and concerned with my issue she was very knowledgeable and helpful and Alexis was so friendly and helpful with a comforting smile and Kim was so friendly as well and made sure I was better and the the medication was helpful she answered all my questions with a positive attitude Nurse Tammy was very kind and careful she looked into all my concerns and made me as comfortable as possible','2019-06-13 01:33:51.719000','2019-06-13 01:33:51.719000',5,'Kevina Ward','https://lh6.googleusercontent.com/-8YhfybJZClU/AAAAAAAAAAI/AAAAAAAAAAA/wPcFXvItfAA/c-rp-mo-br100/photo.jpg','17898197009688164559',5702),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAL0dcsRfuYHqB2PGv1ga2XaZoFyWgZ_09vtKHCV90oXlhS4F_Yw2vniGaDJe3kginMfxreW0WO4qz3r1IlSQDY1P-sx4',NULL,'2019-10-03 19:13:17.603000','2019-10-03 19:13:17.603000',5,'David Sanders','https://lh4.googleusercontent.com/-uH1JlX2g-Dc/AAAAAAAAAAI/AAAAAAAAAAA/VuVQ3mouoSU/c-rp-mo-br100/photo.jpg','17898197009688164559',5522),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAL1hq5Tzt_dkkybAp3TyLTrTCRqabD07PxKYbuhLptrQBIBgLm2zOqzJJJ_4mWweCD-4gta8Kc8Sf4MIiFlb9f91MuJM','Doctor Vakey and Nurse Jacob are the most kind, caring, and truly amazing people that have helped me with my concussion after a MVA while on my bike. Naomi the tech and Becca at the register are amazing at conversation and keeping the attitude uplifting. Hope to never see any of them again but if I get hit by another car, hopefully the ambulance takes me there next time.','2019-09-26 23:57:48.041000','2019-09-26 23:57:48.041000',5,'Zachary Nolan','https://lh4.googleusercontent.com/-6nptLNPQXhk/AAAAAAAAAAI/AAAAAAAAAAA/beyYglIj0Rk/c-rp-mo-br100/photo.jpg','16590124370714063921',3171),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAl3t_dNmwt4CzdaUJGsUcdbTeAB5nksMl3tJWh1aHBU_7V_tf6ss1APkyStP7skboLMuYpTc81ihKmdpuruCTQ5iMUp0',NULL,'2020-02-02 03:01:26.084000','2020-02-02 03:01:26.084000',5,'Angela Reppond','https://lh4.googleusercontent.com/-ZtVYG9-8m9A/AAAAAAAAAAI/AAAAAAAAAAA/Gjpa2pIR_ag/c-rp-mo-br100/photo.jpg','3272657195432704501',14380),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAL8djg4CpO7Gm3SEte4h1Q7WEnjVkGRRC19QBH4gl196cruP3_keFkfguSJmBxt7rWfDLuSY-p0Zz7wMnppbholm7ETA','Wonderful patient care. Didn’t have to wait long to get in. Highly recommend this place. Jennifer and susie took great care of me','2019-01-28 18:43:24.655000','2019-01-28 18:43:24.655000',5,'Heddie Griffith','https://lh4.googleusercontent.com/-ay4kDyfF2A0/AAAAAAAAAAI/AAAAAAAAAAA/vL16Xeie_ps/c-rp-mo-br100/photo.jpg','8626688543755174284',8576),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAL97FNRz9oUlRUejO22LoORovOphEzW0RkyT98pzR4UJGnYSZ1yy9NgrK5Y1AfEYNQVttn81pdHvRGREtebu4Viwdigc','This emergency center is so much faster, cleaner and patient-oriented than our local hospitals. The nurses are the best. Super helpful and compassionate. The level of care from the doctors is excellent. Bedside manner of course depends on which doctor you get, but overall is pretty awesome. The best place to go for immediate care.','2020-05-22 06:00:45.182000','2020-05-22 06:00:45.182000',4,'Mona Rigdon','https://lh3.googleusercontent.com/-AtXvA7_wGJw/AAAAAAAAAAI/AAAAAAAAA9w/AMZuucl2Knx6T8aUega0uKQcbd1Gf1IbaQ/c0x00000000-cc-rp-ba3/photo.jpg','3272657195432704501',22133),('AIe9_BFhqAtkXvUqdYNeMuBBGjaALbBITC41LHVp6RnYiyo_eN7ZEPqkvaXOg-KlYivxNUqiMi-A1d4OfzqVfnUylJrDdTi4LJSdc02kpdC9hv8YOxfQofI','It was fast, professional ataff.','2020-01-10 03:33:55.736000','2020-01-10 03:33:55.736000',5,'Melissa Lopez','https://lh3.googleusercontent.com/-5tRzC4YzbEs/AAAAAAAAAAI/AAAAAAAAAAA/JWhnFq2lz6E/c-rp-mo-br100/photo.jpg','6521947413723274945',9526),('AIe9_BFhqAtkXvUqdYNeMuBBGjaALcGW8AkE3HvKaWNmFbpI_qIU90aD9zm57FdNzBoBX_UxRHVYetkji8InsekSZ_YmxBnrNWAVfZfxRUgMl8VNo7zOih0','Staff was super attentive and nice! Was in and out quickly. Definitely recommend !!','2019-10-01 16:33:18.678000','2019-10-01 16:33:18.678000',5,'Kaley Standlee','https://lh6.googleusercontent.com/-v3idSFXaybI/AAAAAAAAAAI/AAAAAAAAAAA/HIw-yTZLmWc/c-rp-mo-br100/photo.jpg','8626688543755174284',14670),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAlLViU6bo22-0zEmgry0hyUDmRXIu6lxH-amDfZKkEFhMmd3_8KbJvJK0w8cwJ1cnvV0kf4ec2QtsXZpX01jzG3VF81g','Check in with Lorena and Victoria was a breeze; Dr. Vakey and nurse Jeri in the back were awesome and great with my daughter! Everyone was very friendly and created a great atmosphere!','2020-07-24 14:49:36.537000','2020-07-24 14:49:36.537000',5,'Lauren Baca','https://lh5.googleusercontent.com/-jdOBC1tYHxg/AAAAAAAAAAI/AAAAAAAAAAA/1PPdUTeRy-k/c-rp-mo-br100/photo.jpg','16590124370714063921',22660),('AIe9_BFhqAtkXvUqdYNeMuBBGjaALLvMBxOptK-P5aPaIel1UrXA3hJiW2uttqWlhdSmnCoZCiyVRiBH6dm-LS9bwGrcD-YexGuP8hxTG-tVnVIql7ty5mY',NULL,'2019-11-18 21:36:37.746000','2019-11-18 21:36:37.746000',5,'Trish Medina','https://lh6.googleusercontent.com/-K_QsfbQqdTc/AAAAAAAAAAI/AAAAAAAAAAA/Cdl_AYQVosc/c-rp-mo-br100/photo.jpg','17394740196501090048',14074),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAlPEwMCkDyf0tDLyBQ6mY-bvZ054cmroMG7QHNwdzwY9gOak-rE3sEsSzJq2yAbyVP24f6QWcrOy2LoJZ5XTqI-TgWVQ','Very disappointed!!!! Front desk very nice !! But on the other hand Dr. Frank Edwards is a very rude person!!!so anyway possible stay away from him!! I wont go back if he\'s there!!!','2020-03-15 01:03:57.297000','2020-03-15 01:03:57.297000',1,'jesusman 1982','https://lh6.googleusercontent.com/-kVvnn5UNxiI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmiEHVU7qeSUEoeG16VvkbhJm851g/c0x00000000-cc-rp-ba2/photo.jpg','3272657195432704501',21132),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAlPLHVzUkH9nyYLZ8tuNdWJbCHhVjLv7cnWy-2Z828SuGcc8WeZQK1oNxH1bvQfRtTpGqPQypYOcLq4HMlmsD358lfg0','For as much pain as I was in when I arrived here, I had an incredible experience. There was no wait and the staff took immediate attention to my pain and was able to diagnose my issue within just a couple of hours. The facility was practically brand new; clean and pretty. The staff was friendly and very attentive. I wouldn’t chose any other emergency care in the future. Highly recommend!','2018-02-10 11:08:49.085000','2018-02-10 11:08:49.085000',5,'Jake Riley','https://lh3.googleusercontent.com/-ARw-m36WJG8/AAAAAAAAAAI/AAAAAAAAAAA/pmZXVbSuXaM/c-rp-mo-br100/photo.jpg','3511292162159714121',7725),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAlVk_1XulFFj7PKzWE8wVWcJizPGZ4ubGWh27U6asoc2M6qcBxqmGw8SkNS1Mltywm5-kfA5sLfM1baRUkyaCQQ7nwIk','Staff was wonderful. I was seen immediately and from the Dr to the front staff and nurses, everyone was nice and caring. I would definitely recommend to anyone.','2019-11-15 01:44:07.655000','2019-11-15 01:44:07.655000',5,'Anna Lujan','https://lh3.googleusercontent.com/-HhACalk6vX0/AAAAAAAAAAI/AAAAAAAAAAA/m3JB-EEaryQ/c-rp-mo-br100/photo.jpg','13486358490203335051',739),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAlwM50EXLDv1252Ayp8eEphRrLGxS1RzcbT3bbwjBr7hbegUvYbEPvCNrK7YbtEU_IIDj2aF29NJs5IJmdnzck9BXRJE','Care was great and super quick!','2019-09-19 20:02:04.990000','2019-09-19 20:02:04.990000',5,'Kylie Reagan','https://lh5.googleusercontent.com/-vuDNII15xgM/AAAAAAAAAAI/AAAAAAAAAAA/dTlnhXDm0t8/c-rp-mo-br100/photo.jpg','16590124370714063921',3195),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAlxU41JuzrQ_vi_83aRhwgzuKcNB1YWOVFnbQuZweUdFTtpfV9_820mJK4-3RmWCffmJsFAeFVQQu8pCl0GdGAyysxIY',NULL,'2020-02-18 20:18:09.043000','2020-02-18 20:18:09.043000',5,'Tracy Benson','https://lh5.googleusercontent.com/-I83m2ZglByQ/AAAAAAAAAAI/AAAAAAAAAAA/16mKsH3JxwQ/c-rp-mo-br100/photo.jpg','3272657195432704501',14340),('AIe9_BFhqAtkXvUqdYNeMuBBGjaALzMOL45J9gVHv0oz8wBK0Ccsgg_FEUt2BQInbkdJ7NM75N7k2jIXSNR7oB5kKlJNEh-f-72k3RXUnCitoBYIR1P3oAw',NULL,'2019-06-08 23:52:35.102000','2019-06-08 23:52:35.102000',5,'victoria ramon','https://lh6.googleusercontent.com/-Yy--oovktUI/AAAAAAAAAAI/AAAAAAAAAAA/L95GJjLKlXA/c-rp-mo-br100/photo.jpg','16590124370714063921',3363),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMAeq9fEXCtV2sGOiNnCoCU7zOTAa558NO66EdNswsBfSY-K_Uhoi7x1nelIR09QxuPbZs-fA6lEM-q_WyIAMyUcKbIc','From the moment I entered the building, Genesis at the front desk welcomed me kindly. Nurse Kristina and Radiology Tech Laura checked me and took care me. Dr. Wang was exceptional with his service. Definitely recommend this location','2019-12-20 23:06:23.432000','2019-12-20 23:06:23.432000',5,'Ricardo Polio','https://lh5.googleusercontent.com/-9FMC6wRL33I/AAAAAAAAAAI/AAAAAAAAAAA/uS0QXs8Ejak/c-rp-mo-br100/photo.jpg','12541597562633926366',324),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAmC26ZDAhY8bt0avsB9fId51a6o_NaEERMKjvEZUvxmkxw4Bep65Y9rqYc71-FFqVbM5ENINCAnFuOz8rWlFMqWdcJ3E',NULL,'2017-03-15 14:23:27.313000','2017-03-15 14:23:27.313000',5,'Lorraine Lindberg','https://lh5.googleusercontent.com/-whWjqYsitt0/AAAAAAAAAAI/AAAAAAAAAAA/Lduy9PMW-NA/c-rp-mo-br100/photo.jpg','14904078213800803294',2386),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMgEw8vV8ONryLqt37NdHNai60eKhJxcZBWyig3_jSj-tENq_8tKzflZWU-pF4ED0ruzmojfhZV3V7HPkOc6gC6kjl5k','Stephanie S was awesome!!!','2016-11-12 00:02:23.439000','2016-11-12 00:02:23.439000',5,'Ruth Olusoto','https://lh6.googleusercontent.com/-Xrs6cpuXRzI/AAAAAAAAAAI/AAAAAAAAAAA/Dot8V3BMfdo/c-rp-mo-br100/photo.jpg','17394740196501090048',5175),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAmhkm2D47skb6jSFbGmoJLsEm1hQk69jd8ZVXuWc3D9Q4a7L2SRoDYfOvyIf_edm8isYthgoL5bMepNqvybbDHIvGrc0','Ashley, Trinie, and Dr Anders(I think that’s his name) we’re all very nice and informative. Very speed service and friendly atmosphere. Highly recommended!','2020-02-25 02:19:18.608000','2020-02-25 02:19:18.608000',5,'Douglas Craft','https://lh6.googleusercontent.com/-Z3S3CEAQpl4/AAAAAAAAAAI/AAAAAAAAAAA/sevPe88pZdE/c-rp-mo-br100/photo.jpg','6521947413723274945',14549),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAmHW0yH2bKjPhpJzs3gK4pv76x6JFvQw4bu6tHdASZgCr55-VPbSPSHlyJOWF60Qr2MSgjT0eyJul43pM8BAc2Evdqrc','Amazing hospitality. Dr. Alloju is very great with worried men, and Ms.Patricia was also very helpful','2019-11-16 18:51:30.410000','2019-11-16 18:51:30.410000',5,'Donovan Williams','https://lh3.googleusercontent.com/-RbaJmKPMw8A/AAAAAAAAAAI/AAAAAAAAAAA/Xv1U0OhqM8o/c-rp-mo-br100/photo.jpg','8679688254631342173',8728),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMLixUpzemiA22LWtIH-xyRVI7ZRFzYfubRiXeLO508zlfGXizSCFCb0r62_BjtP8_q3EvSzfSevbQwv-ueDGGBJgzk4','Took my husband today, we were in and out in less than an hour! We have been there before, the nurses and the doctors are the best.','2019-02-17 05:06:41.669000','2019-02-17 05:06:41.669000',5,'Sabrina Guevara','https://lh3.googleusercontent.com/-Oa2d8n03aYw/AAAAAAAAAAI/AAAAAAAAAAA/q3uqCG4LrEA/c-rp-mo-br100/photo.jpg','8918455867446117794',9178),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAmLo0y17Fm2KzA7U9gcU1DdEBu-WD8Nx5CpabT68I6JzHar90zlCnxVZyFxI0CBF2nLRu4FY80lDFsSaItwej6Pql8gU','I have nothing but the highest ratings and things to say about the Montrose, Texas SignatureCare ER. I had just flown into Texas for an event, and suddenly had shooting and intense pains in my abdominal area that were almost unbearable. My PCP in Massachusetts recommended I get to an ER quickly. We knew no one, and certainly no doctors in Texas, and picked by chance this ER facility. WOW!!!! Did I LUCK OUT! I was taken in immediately in nearly the moment I walked into the door (didn\'t even have time to finish my paperwork) and was seen by Dr. Adam Boester. Dr. Boester was calm, knowledgeable, personable, and competent. After a very quick blood draw, urine sample, and MRI, he determined the cause of my pain from a kidney stone. Such clear instructions about what to do, and kind, caring treatment. The support staff was equally excellent, providing me with warm blankets as the AC became cold, and also, once I was cleared, beverages, and just overall support. They kept my husband fed in the waiting room. I can\'t say enough good about this facility and their doctors! I hope you don\'t have to go to the ER, but if you do, choose this place - they know their stuff and have the best bedside manner!','2019-07-06 20:00:24.822000','2019-07-06 20:00:24.822000',5,'Kimberly Shaknis','https://lh6.googleusercontent.com/-5dzqAfy251Q/AAAAAAAAAAI/AAAAAAAAAAA/fzezNN_R9fs/c-rp-mo-br100/photo.jpg','3511292162159714121',7273),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMo3N-FyPFEHFD5tFBKUGfuvkID0qRgBjz-XZxzgEWk861ckQ-aDIxCtkkChdjZECOeqPGFQ8v6wdLjQJbscuioaUdw0','Thank you alvean and Jordan for all your kindness, help and patience this staff is awesome','2020-03-04 19:19:19.318000','2020-03-04 19:19:19.318000',5,'Krystal Singh','https://lh3.googleusercontent.com/-bkCNMRENrVE/AAAAAAAAAAI/AAAAAAAAAAA/6AvElsBWJzA/c-rp-mo-br100/photo.jpg','16389487648212004696',13733),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMogZt4fBuKM9X716QQx58msbcYlSj6qapnYb1flsy7h_PN9w1HUXCRBDmaaZs8u57pXspSIToTiVqBqIOzcYOgDguHM','DR O\'Malley Alvean Clarissa\nShowed Amazing patient services. Friendly and detailed','2020-08-15 21:16:29.532000','2020-08-15 21:16:29.532000',5,'linda cavazos','https://lh5.googleusercontent.com/-cjkYVsTZ0WQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclHdV_mFrv6XogKy0ySAls8KNuGeQ/c0x00000000-cc-rp-ba2/photo.jpg','16389487648212004696',23043),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAmqamL5V7zp3jtPqdrH-xB4ePbrRcSYugJ2vxgxOPpEUPADYBlgn6Is3yJtrlozmcg5XzKKnLCLTnUYq1ylYjLQ167g0','As a member of the Houston police department we are committed to providing the highest quality service and forming partnerships with the community to achieve public satisfaction making the City a safe place to live, visit, and conduct business. Signature Care- Montrose has dedicated themselves to collaborating/ participating in programs that help build a bridge which enables residents and law enforcement to communicate, collaborate, and work together to build safer, more caring communities. The staff here is so passionate about patient care and they are so accommodating. I went in to discuss future community events and I was quickly greeted by Ke’Aire at the front desk. I was given a tour of the welcoming, state of the art facility by Nurses Dawn, Tessa, Olivia and Eve. This group of women and this ER continue to show Professionalism, Compassion and commitment to their community! I will ALWAYS CHOOSE Signature Care Montrose!!','2019-08-16 19:14:16.312000','2019-08-16 19:14:16.312000',5,'Lee Lewis','https://lh3.googleusercontent.com/-pXSqG3rTLgY/AAAAAAAAAAI/AAAAAAAAAAA/JcekqopP_ac/c-rp-mo-br100/photo.jpg','3511292162159714121',7200),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMsMze6L7mQvbMlUyselj0MisflFpy0JWfk0vJWnj2KN2H85Hg5Bj0eIAsax_9Dv6F3oZPVD7_RCJvAaNMRa397KHDqE','I was greeted quickly and in a friendly manner, taken to a room quickly, and seen to quickly. My concerns were taken seriously and I was treated with respect and care. I was spoken to as though I had a clue and ask my questions were answered. Would definitely recommend the care here and would return here if I needed to. ','2016-05-14 20:02:51.600000','2016-05-14 20:02:51.600000',4,'Denise Vasquez','https://lh6.googleusercontent.com/-Qw3nYgIMg2I/AAAAAAAAAAI/AAAAAAAAAAA/1x2uUQwN7rw/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',2036),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAmTlYgpj_LqUUJieCK0Z5txtMOXJ9OAEZ9CUt3T60X1MF-sVo5XtXYjDbP3QXogjZSnVHAukhzeqYdWsq2vEF7uTlTMY','This office is amazing! The staff is very friendly and make sure you feel comfortable the entire visit. Jocelyn welcomed me with kindness and concern as I entered the office, and she explained to me thoroughly how to fill out the paperwork. Meredith was my nurse and she was so witty and sweet! She made me feel very comfortable with the visit and took heed to all of my concerns. Finally, Dr. Harjai came in and saved the day. He fully explained the diagnosis and answered all of my questions. He also made a personal connection by congratulating me on my engagement. This office is wonderful! Its SUPER clean and very modern and visits are QUICK. Little to NO wait time. My only choice for urgent and emergency care!','2020-02-19 18:20:40.012000','2020-02-19 18:20:40.012000',5,'Angel Jo','https://lh3.googleusercontent.com/-zO7KhmP4YKk/AAAAAAAAAAI/AAAAAAAAAAA/ceGqf_1Iw_M/c-rp-mo-br100/photo.jpg','16389487648212004696',10867),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMTPhg5pqrYvASVDYT-RnuPW96XPsdxajmDkhigSY4J2DdlXaH9DKBCXsA9SYiHzgjRETu8RDO5AqZP0ut-oXHjLbK7c','I would personally like to thank Luke Commings, Kim , Eric and Dr Henderson. I had to go yesterday evening with severe neck pain. First, we were greeted with such friendliness and instruction. They were very thorough with my treatment and helped me to get relief from pain. I will recommend that everyone use Sinature Care for all your need. They catered to my every need or want. Thank you so much signature care! Pam Hamilton','2020-03-19 01:25:11.182000','2020-03-19 01:25:11.182000',5,'hwelovetofish','https://lh6.googleusercontent.com/-9Uvw1_RRbOI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckuFdGVL4C6nLJBpN2cYjMLHmPBeQ/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21131),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMv5HN2fO6haUP55P4a0t6nLP7A8QCZNYVchQIH1ZwM5TPwcUL-5x_EyhrA5V6ERpOFMfIPn_xp7u0Z92FAx2rnL49Ao','Dr. Yabra\nNurse Dawn\nReg. Ayesha\nDawn are GREAT','2019-06-25 21:22:58.397000','2019-06-25 21:22:58.397000',5,'Danielle Jones','https://lh3.googleusercontent.com/-Q2vQq5K-DYw/AAAAAAAAAAI/AAAAAAAAAAA/b_Iwn6bwVlU/c-rp-mo-br100/photo.jpg','17898197009688164559',5676),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAmVIH1Ghjnc_3svxIPVgsGqCHp0ZOzlknwmVA0DT64tQUPuOWUjR5fv-S-SDM5r_0zH2QhfllcslpdHOjDqcTu6E3rEI','This is an awesome place ! Very prompt, very warming, very caring ! Genesis , Natalie, Nichole, Staci, Dr. Tina Chiang and Brandon were all very helpful! Great staff! They all played a huge role in caring for my son! I recommend SignatureCare Emergency Center Stafford location to ALL! Thank you all so much for the pleasant experience ! 😁','2018-10-10 21:34:29.096000','2018-10-10 21:34:29.096000',5,'SaQwan Edwards','https://lh4.googleusercontent.com/-x7IdzrxXAJ4/AAAAAAAAAAI/AAAAAAAAAAA/VuDHYwjf2iI/c-rp-mo-br100/photo.jpg','8918455867446117794',9227),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMVuHH4W043gGqk3ye2-YzkzDs2Aa8eW-veijN7yW-aQ2QYq8p2Gbab9Tu4g4kCb4MJfVxUZPpEIkQblYF7NAyFsoA5c','Kelly, Stephanie, Taylor, and Dr. Smith were all very nice! The service was very quick.','2017-01-21 06:04:21.963000','2017-01-21 06:04:21.963000',5,'Christina Harrison','https://lh4.googleusercontent.com/-iPhWFo0AikY/AAAAAAAAAAI/AAAAAAAAAAA/fm-fKjL71UU/c-rp-mo-br100/photo.jpg','16590124370714063921',4086),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAMxh1c_YYiMrtvZmwc8DxzPMADg_73Sf-KLhmhhenRq9-6m5tlB9eQ6y8K8YnzmTsHrfLvgs-ljaKEeUcH6OpdxtXuag','We have used the facility several times and they have always been great and fast. Here today with Dr. Ding, the RN Chris and Amy at the front desk. The staff is so kind and knowledgeable. Better than the hospital ER.','2019-04-27 13:04:26.221000','2019-04-27 13:04:26.221000',5,'steve scholtes','https://lh3.googleusercontent.com/-WRVkO5oQ8u8/AAAAAAAAAAI/AAAAAAAAAAA/xiCMSt-OBFs/c-rp-mo-br100/photo.jpg','14567670160750071148',1348),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAmyQ4zQi78V5ldoSQmywQX2u_8ml5BCbiPX1FM4eP9X-cCTZzo-vkv_ikQvzJUTZNC_cRvEAM0D3lMlUDctFbK8umXh4','They took very good care of my mother.','2019-05-01 20:36:02.383000','2019-05-01 20:36:02.383000',5,'Frank !','https://lh6.googleusercontent.com/-xwz76aDQHe8/AAAAAAAAAAI/AAAAAAAAAAA/T1YrLtsIVUI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAN-RGWRrBIP19JGUAViHCDmA0RVhZnc96RN718wVs8-0Fvm7uMHoy6S-IMS6t-Df4ltlvVzSNbe0l3HDB1j6d1xJIvTc','I loved everything about this place the service time was quick,the staff Cody and Kelsey were very nice to me and my gentle with my son. I would definitely recommend coming here!','2020-08-03 21:08:51.094000','2020-08-03 21:08:51.094000',5,'Porscha','https://lh5.googleusercontent.com/-L9AKwNu6f_U/AAAAAAAAAAI/AAAAAAAAAAA/0hYduwowoug/c-rp-mo-br100/photo.jpg','2077061009497551125',22746),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAN4-by-2MfZNSajOEDdBZcSp_RrK4MeEzwhzKoEaPSEKX-m7zoCqb3zVMdLkNCk2yzvBpgsIrjO7owIpzqbsMN431hl8','Great experience. Jennifer D at the front got us in super fast and Dr Simmons was wonderful','2019-12-13 15:54:20.937000','2019-12-13 15:54:20.937000',5,'Adrian Kemp','https://lh5.googleusercontent.com/-FF1Ig1-GkDk/AAAAAAAAAAI/AAAAAAAAAAA/sfyVMsxBmoM/c-rp-mo-br100/photo.jpg','8626688543755174284',14651),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAN4AP2pzN3Q_h_Wrt3lPLbNTLsrIa4mKx9q09pJrGtMOrRYxvn7XDZoCs9rK_r4GzBuPbLcoyu5sntG_t7xiyXeH6yh4','Doctors are awesome. Staff is super caring - WATCH OUT FOR FRAUDULENT BILLING DEPARTMENT. \n\nWARNING YOU AGAIN! Watch for a million dollars bill at the end of the year. They don\'t inform or send you any bill till the following year and don\'t even tell you how much is due. \n\nI made this our family practice and regularly starting going but man the shocking bill is an eye opener. \n\nFront reception don\'t tell you clearly and the policy is not clear as this place is not an ER it should bill as Urgent Care..','2019-05-07 00:15:49.302000','2019-05-07 00:15:49.302000',1,'Oil & Gas Help','https://lh3.googleusercontent.com/-PYDcTfiMVZw/AAAAAAAAAAI/AAAAAAAAAAA/GX64kcW_oCo/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2140),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAN65Bl23xYo8ro6KdMDlOTSUfdLKPfRzj5p9JJGmFNyP6wTRAJAJ0zw6YPxvLtVIgLvCwD8C0bK3Do5Z_ozgtLPkVDoo','Was with my bf in the ER. The Dr came in and was good. The tech Daniel and the nurse Keira took care of him. They made sure he and I were comfortable. We will be returning here. It was my first time here even though I wasn’t the one being seen but I like the care that was given','2020-02-20 02:41:44.387000','2020-02-20 02:41:44.387000',5,'Joanna Cervantez','https://lh6.googleusercontent.com/-JbrwBO9p4S8/AAAAAAAAAAI/AAAAAAAAAAA/WLgZ5BKB2x8/c-rp-mo-br100/photo.jpg','6521947413723274945',14570),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAnA5wnKduaHvQHPB7k_7kz3Ua_8vawNBtQGVByl8DtaMEO1hvKwHdLh3R3EDgFmQ5_omiSCG6ODYt8Wa5Y4HB0AW18FY','My son had to come in recently to get stitches, in his eyebrow, and I have to say despite the circumstances this was the easiest & quickest experience I have ever had going to an er. The nurses and doctor were very nice and attentive. Even though they didnt accept my sons insurance they were very upfront and across the board about the total price and that\'s what made me stay. There were no hidden fees, extra anything just straight across the board. The facility is very clean and welcoming. The staff is very friendly, overall excellent experience and they did a great job on my sons stitches as well. Thank you guys!','2018-06-30 12:35:44.217000','2018-06-30 12:35:44.217000',5,'J Moore','https://lh4.googleusercontent.com/-Y_FZhbyWryw/AAAAAAAAAAI/AAAAAAAAAAA/G2EMp0CvyxU/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4835),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAna7X0ApNJHYOAQuKd8A3PVqdI_k61tDIIm64m77pv71-VMF_0VXke-tdYaDPO0c9Sbm7uM62ZgRiFVw9Emh4tjSOx8c','Kendra was extremely helpful and patient with my experience! Jacob was always asking if I needed anything and made sure I was taken care of. Very good service!!','2020-01-27 14:39:28.583000','2020-01-27 14:39:28.583000',5,'Hailey Crumpler','https://lh4.googleusercontent.com/-GXEWcxKVRjg/AAAAAAAAAAI/AAAAAAAAAAA/k9M_HgFmR1U/c-rp-mo-br100/photo.jpg','16590124370714063921',10214),('AIe9_BFhqAtkXvUqdYNeMuBBGjaANbOkunXHIAWj3sreXkZ322LABHR60Y9UND6JkMa4f_aFoNBH-cq1L_LqJK7MpXPFwP0q4Yd5cU3Q0eziNIKduzf33aY','Great swevice!','2020-07-24 19:24:14.981000','2020-07-24 19:24:14.981000',5,'David Kyle','https://lh3.googleusercontent.com/-GthFEXoDxwo/AAAAAAAAAAI/AAAAAAAAAAA/zQhI-2ctRXE/c-rp-mo-br100/photo.jpg','2077061009497551125',22849),('AIe9_BFhqAtkXvUqdYNeMuBBGjaANbtUfaOe1T1e6s6objlKAr7bdWLIKciucpfABw4FTwranb-BFR2HMQ17jjKb4cGDCoYVc38UmPWxVHnffaEMB4AW3r0','Amazing staff! Quick service! Jessica was amazing at the front desk!','2020-01-18 17:05:09.426000','2020-01-18 17:05:09.426000',5,'Farah GTR Queen','https://lh6.googleusercontent.com/-m72gOGP6v2w/AAAAAAAAAAI/AAAAAAAAAAA/BeEaYBwKh48/c-rp-mo-br100/photo.jpg','17394740196501090048',14045),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAnBvSO_wq63g54QCwjpRkrUy0Y8ruCbV_7SdmANQPMoXs6K7M7b7_ktguZppjDntC4h1dPKw4MfIQdEonkP7wIxpHVms',NULL,'2019-09-05 02:57:11.017000','2019-09-05 02:57:11.017000',5,'Bones Sanders','https://lh4.googleusercontent.com/-6_B78t-VKks/AAAAAAAAAAI/AAAAAAAAAAA/LgSJpOIzCFg/c-rp-mo-br100/photo.jpg','6521947413723274945',8152),('AIe9_BFhqAtkXvUqdYNeMuBBGjaANHn1abVcCALoy1KgOhEP3ZPRhV7Kx4Hx0sh_V9-UkcPRDhXAlKVPOs45ahNZhGyq_PZiErJsef2RIHcrEJloZrHNcIw','Dr. O\'Malley was very attentive, and he also was very detailed about the at home treatment.','2020-03-10 01:17:44.283000','2020-03-10 01:17:44.283000',4,'Jessica Negrete','https://lh5.googleusercontent.com/-ZhwWXUFu8F4/AAAAAAAAAAI/AAAAAAAAAAA/VgrQReNBfCw/c-rp-mo-br100/photo.jpg','16389487648212004696',13716),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAnJybaA_03N7j6acYQp_I2Z_tL1-BszWHt7qQETTG5Yaq3MTmPaaMQacovbjT_AcxPgyPSNWKvFtyXnQPyLGAIvpVxW0','Cut the top of my thumb off and they put it back on in a super fast and easy manner. Quite friendly and entertaining as well! 10/10 recommend in an emergency.','2019-06-16 14:08:19.726000','2019-06-16 14:08:19.726000',5,'Dana M. Rygwelski','https://lh6.googleusercontent.com/-viFQlVezfwo/AAAAAAAAAAI/AAAAAAAAAAA/iZBlLqRID4U/c-rp-mo-br100/photo.jpg','16590124370714063921',3349),('AIe9_BFhqAtkXvUqdYNeMuBBGjaANkb7U-UNXKWxALBHgOOlVEZSDMpvNg9ErF_7Lm6kvTRPbYS1GJpIswlRSfjJc6INhHUiPTcw0gZO8z2NQI3tNFNbm0A','Great place with an amazing staff. Very friendly and helpful. Jessica Sanchez Was very kind to me and I would like to commend her for the effort and care she put to making my visit as easy as possible. Thank you all!','2020-07-21 14:54:25.537000','2020-07-21 14:54:25.537000',5,'Jacob Jones','https://lh4.googleusercontent.com/-UwEhbTGs2iE/AAAAAAAAAAI/AAAAAAAAAAA/TlBxCZwYzCE/c-rp-mo-br100/photo.jpg','14748677429039074158',21623),('AIe9_BFhqAtkXvUqdYNeMuBBGjaANRe-DOEQYf09uCv0qEvSs55YMiLcdANbOr_y5NKG90UxI2S1YoFHdApHmVvxxPT-Q5_c2GpSaTYEY-9_4pAbvejaF2o','The staff at Signature we’re great! I was in and out so fast! Dr. Miller was super friendly and informative. The staff Shelli, Tina, Shaunda and Chelsey were so friendly. Helped me with all the paperwork and got me on my way, Would definitely recommend!','2020-03-19 14:18:04.868000','2020-03-19 14:18:04.868000',5,'Stefanie Cavendish','https://lh4.googleusercontent.com/-ikGTMY4dGW8/AAAAAAAAAAI/AAAAAAAAAAA/DyUzq5IrJsY/c-rp-mo-br100/photo.jpg','16891069708558046635',21042),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAnSjfvDfc7Hlme1yeWAm1SVsz7IV5tt7GzeAErrqF8rkQDnKtzhyzV7SPvWkCP8H6NmMGMFl_8wYuoa73WfwOnw609KU','Tanishia the registration lady was very nice and welcoming. Sarah the RN was very informative and helpful as well. Thomas the MD also was very informative and knowledgeable. I highly recommend this place!','2020-01-31 03:49:30.419000','2020-01-31 03:49:30.419000',5,'john an','https://lh5.googleusercontent.com/-XVmm3I53rSA/AAAAAAAAAAI/AAAAAAAAAAA/ZSHgkcXCiPo/c-rp-mo-br100/photo.jpg','17898197009688164559',10444),('AIe9_BFhqAtkXvUqdYNeMuBBGjaANwU-Y8ssD0zBsFyQxtFrwp6kg1EifscnNfb8mxTmdimwkMZA1Nzbav_42TS6yNG5f_Cc63HG4O4ce2LPzFynyV5RJTA','From the moment I walked in until the moment I discharged every staff member on every shift exceeded my expectations. The doctors were very informative and the staff was extremely nice. You can tell they genuinely care about your comfort and your health. In case of another emergency, this will be the only place I will come to. To top it off, Since I stayed over night, they gave me a very nice robe and shower bag with all the necessities I need to freshen up and shower!','2020-01-22 17:56:39.181000','2020-01-22 17:56:39.181000',5,'Savanah Sbeiti','https://lh5.googleusercontent.com/-BzXMwLWclbg/AAAAAAAAAAI/AAAAAAAAAAA/RRE63U9BJSQ/c-rp-mo-br100/photo.jpg','14567670160750071148',10146),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAnWU2M5gNSPkmzyD7FQrxLxMvW6gHPi-Y-MPPXJi4idc_T5ND9kb6MvY_SmgVSS8gRJpTo72yg2g8hTfCmtA7qlOsDIw','They provided me with excellent service and care. I would definitely go back if I need to for my emergency needs!','2017-10-09 15:38:24.222000','2017-10-09 15:38:24.222000',5,'Farha Waheed','https://lh4.googleusercontent.com/-7Girmsxoh9M/AAAAAAAAAAI/AAAAAAAAAAA/DWMMlvvCIIw/c-rp-mo-br100/photo.jpg','17394740196501090048',4953),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAnZotQ4_S6oJc6Pbh1PIBb8qLOu41KQI_EriC_8fLfb5eJ_xLdtTpDLDQQq4PQNhd_pcWLQhSFUXfyqiAyqy8BAmWhag',NULL,'2019-06-15 21:53:39.044000','2019-06-15 21:53:39.044000',5,'Dustin Veatch','https://lh3.googleusercontent.com/-Gi7uawoaZYM/AAAAAAAAAAI/AAAAAAAAAAA/47tisWgezL8/c-rp-mo-br100/photo.jpg','16590124370714063921',3353),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAo4NgW6H6PWLlehBKKwuDm_L3xDGKndzd64Yp5FK-NpbNav6P5UJIXdNcxX1ZeZGlIyKqQhFUAfQ3iLVCvud3751W5Jg','This place is amazing! We were checked in promptly and seen within a timely fashion. The facility is extremely clean. The staff was pleasant. It’s highly likely that my family will continue to utilize Signature Care Emergency Center!','2019-10-11 01:30:41.211000','2019-10-11 01:30:41.211000',5,'Rametria Banks','https://lh4.googleusercontent.com/-HZqJwydM7lk/AAAAAAAAAAI/AAAAAAAAAAA/jB1oYgY6ar8/c-rp-mo-br100/photo.jpg','16891069708558046635',4186),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAo5TXb8cyQ9sFwIj4CX_HL9H8JQ8cD31LtW1YdyzX_R8iwiCtqncZxWvLsF6-ckAMQva_KedtWRjyx_V9HGVhZzDSTkQ','Alyssa and Dr. Ding were amazing! Anytime i get sick i immediately come to this facility and they get me back on track! I don’t even use my primary care physician anymore! Love it here!','2020-02-22 16:44:15.690000','2020-02-22 16:44:15.690000',5,'Mela Michael','https://lh5.googleusercontent.com/-Qxwn8UTpy4A/AAAAAAAAAAI/AAAAAAAAAAA/pa7nZDYY3hc/c-rp-mo-br100/photo.jpg','8918455867446117794',14807),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAO7w_bHJ0bqUGLno-GRulE9oiC88Y91L5Mb_MazL8_EjVQQ6sqemym4f1hDVS7wQu905P6vHqAP4uZ52Rk2jQ9V8KmZQ','I had a wonderful experience! Everyone was so helpful and the wait time was very minimal. I really enjoyed the comfort and speedy response. ','2016-06-14 15:09:02.099000','2016-06-14 15:09:02.099000',5,'Juan Cabrales','https://lh5.googleusercontent.com/-BVGAmP1Y7cc/AAAAAAAAAAI/AAAAAAAAAAA/-zCjFDABJ3k/c-rp-mo-br100/photo.jpg','14567670160750071148',2017),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAoabU9VMKj5KA01U1h58DpAl-FDp4h7vXti8xRLk_-suVdZm44B4EAOGmMmuqSgnt7jpDanBxesX_8Dn-m0GIvB7Zpko','Great customer service!','2018-08-11 16:46:18.250000','2018-08-11 16:46:18.250000',5,'Imonte Shaw','https://lh4.googleusercontent.com/-KnvQKj-zpTM/AAAAAAAAAAI/AAAAAAAAAAA/nPKC-I-FNKk/c-rp-mo-br100/photo.jpg','3511292162159714121',7634),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAodcOJr21GYiWwuVk8h9I7G75TSTdQ6tIkBOhD3NFdO-DZVnFcD68KNTat4n_6ifIWf2Je2ymVR3LdvcJmujdHpC9QLo','The staff was very friendly and took their time to explain everything to me. They answered all of my questions and made me feel cared for. I was in and out in an hour. I highly recommend this location!','2019-06-13 19:52:12.476000','2019-06-13 19:52:12.476000',5,'Christa Chaney','https://lh6.googleusercontent.com/-ZpYrTeqOq2I/AAAAAAAAAAI/AAAAAAAAAAA/AgCRInzCpyg/c-rp-mo-br100/photo.jpg','14567670160750071148',1309),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAOeY1xiJrxd2h_tSZfgof0Z1G74pGeCm3uC0uMsyGqznbEOpkuMNq9MzIyA7NQaHNGEKWHu5nB2_gF5vKzGU_x8ciQr4','From the doctors to the front desk are all excellent people,was well welcomed & so comfortable with the doctors and nurses, I was well cared for. & Will strongly recommend','2019-01-18 04:41:16.486000','2019-01-18 04:41:16.486000',5,'oyebanjo fatima','https://lh3.googleusercontent.com/-OR6SdTkcegI/AAAAAAAAAAI/AAAAAAAAAAA/QVc0sStMKaE/c-rp-mo-br100/photo.jpg','17394740196501090048',4735),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAofQB8NcAiaqUpcEBtpdJRGobWyEqyZ4bvixZPM9I1yuT1sqW8S-yU8rhDOfJzCfKk89oSNcwJEVvNuqUwAc4uEeRXQ0','Awesome experience best dr.is golla wouldn’t want to go to any other doctor here and Kristina is so nice she made me feel like i was at home made me feel like my mom was watching after me','2020-02-26 22:55:49.558000','2020-02-26 22:55:49.558000',5,'Eric Parker','https://lh6.googleusercontent.com/-D7622x-y-8g/AAAAAAAAAAI/AAAAAAAAAAA/hhxMJtLfDI0/c-rp-mo-br100/photo.jpg','17394740196501090048',15602),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAoGjkqFjwjCdHA8wYpVDS0D8Jercq-Zj-6PGEummsBcMMOSrorj_1v1JcDMHEo-J8IOBEoLRMAELXUMgtrjRBQirBGLE','I went to this location after work yesterday and was pleasantly greeted and checked in by Ms. Erica. She was super kind and extremely informative and patient with me (I had a few questions regarding billing). Inside the building was very clean, with a very fresh smell! My visit was quick and the nurse and doctor were both extremely nice and very knowledgeable. From beginning to end, my visit was great!','2020-01-07 13:33:38.744000','2020-01-07 13:33:38.744000',5,'Dru','https://lh3.googleusercontent.com/-pRQmEWr34EE/AAAAAAAAAAI/AAAAAAAAAAA/aA4sizOOR3Q/c-rp-mo-br100/photo.jpg','14567670160750071148',9420),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAOHjKKDwuNQaKPGdzIJko73SMriUdu4AUnE5z6qHpNK9yj5hlttRaqUo7CqjfLg4JI8rOCyeQoS1dsjyp8NFJGLDF9hc',NULL,'2019-11-11 02:26:26.125000','2019-11-11 02:26:26.125000',5,'Jesus Aranda','https://lh6.googleusercontent.com/-h_JDfAI3IsA/AAAAAAAAAAI/AAAAAAAAAAA/3AZ6zTdx4II/c-rp-mo-br100/photo.jpg','12541597562633926366',383),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAOKLxZIWryiskFa3c5RFBspNoZPp13scYNel1oMUS5ijvgwEz80hSP5cbna74NL_QbzAe1w0EKpK5rXkLlVu_sE0KxRc','The memorial location just north of i10 on Wirt Rd. Is amazing. Nicest people. From the security guard at the front to the front desk and the doctors and nurses who tend to you! Nice. Efficient. I’ve been here twice and barely had to wait at all. Highly recommend them.','2020-08-12 15:24:47.809000','2020-08-12 15:24:47.809000',5,'Steven Cela','https://lh6.googleusercontent.com/-ho2fJkifWd4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnllOYpidPKODURWfa9YQ2peqi_dA/c0x00000000-cc-rp/photo.jpg','14904078213800803294',23036),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAOLgstqsYU9SeIIBBBJqpD9UIUdT50DgRLddFp5dAEqhFkzvY4J35KGujTJsWq8FVENvZPQLEwjM5A_xoTxBV9P0E0_4','This is my second time at Signature and each time they have been fast and efficient. From the front desk, Victoria to the nurses Betty and Jesse. Dr Dang was very friendly and knowledgeable, I would definitely go again for my medical needs.','2017-06-07 01:23:44.850000','2017-06-07 01:23:44.850000',5,'Diana Salinas','https://lh4.googleusercontent.com/-HFh2swfrHiQ/AAAAAAAAAAI/AAAAAAAAAAA/iUAM_-AqOto/c-rp-mo-br100/photo.jpg','17394740196501090048',5040),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAopTIBFfKjuZWEc6FlimiFfpvwQlrTvIuIU_L4zX4KUZcvOkXkEVzgaiVnXnhPRgj3bj7ouUb42HMdEHMo1avAq8Xhc0','They had snacks and hot chocolate while I waited for my buddy to get fixed. It was real nice','2019-02-02 03:20:13.442000','2019-02-02 03:20:13.442000',5,'William Kirby','https://lh5.googleusercontent.com/-pXJVm6sOyl4/AAAAAAAAAAI/AAAAAAAAAAA/Lrgi64y7Gvw/c-rp-mo-br100/photo.jpg','16590124370714063921',3564),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAOSRd1bybNoDIZePYTjU5UfT2JPdFdKfnSGjzJf_ZoTGMRJzInoVykpu5Z2qh_G97Uc40W9CckmPzpKBoNOSHA_SUv1M','Dr. Pham and his staff provided excellent care while I was there. Fast check-in and no waiting. Everyone was very nice and took their time with me. Thanks to Alvean, Marcus, Vanessa and Keith for your care','2019-11-19 18:59:59.325000','2019-11-19 18:59:59.325000',5,'Fabiola Rivera','https://lh3.googleusercontent.com/-BVVXGSfbWHM/AAAAAAAAAAI/AAAAAAAAAAA/hPcBCDS9MDc/c-rp-mo-br100/photo.jpg','16389487648212004696',2662),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAP-mybhCrZn9SknzuoWen0BPA7w8UzdF5QFBPhv5qtrnNyLIi885XGvehWK1aRuITRooQX0CLioWGMdDTdDiVFN2BVxY','It was a quick and great experience. Ashley Burton was nice and welcoming at the front desk and Ashley K took great care of me.','2020-02-21 20:29:55.352000','2020-02-21 20:29:55.352000',5,'Shelby Peeples','https://lh6.googleusercontent.com/-fOa1GtP0JEk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnmAc0yi6cHgg0wmshBKWlzXfTJZA/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21201),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAp1gif-E-cFDU14ag3jlGzOhFU4B6mNRTwQZzDMopstcUI2DdxhAj0S70IWZP9NHjSCrWjj4Axtiqu_AvrEVqN2fffZg','The service and experience was amazing. Rebecca V at the front desk is super sweet!','2019-11-30 02:07:13.485000','2019-11-30 02:07:13.485000',5,'Shaniqua Lovings','https://lh5.googleusercontent.com/-Y_Q8bF5ifVI/AAAAAAAAAAI/AAAAAAAAAAA/3aqy-qTtg1I/c-rp-mo-br100/photo.jpg','16590124370714063921',3065),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAP3r5dZRRcdyT32jyrpe5iMHg8IRJIx3b-bti2UFhSoQrQRrMSlahTxniAgblLTBDbrYzr_SE_mszS4qSoq7XKzNIgsM','I was in a car accident and they took great care of me! Super nice staff! Anthony RN made sure I was taken care of! 10/10 would recommend!','2019-04-05 01:14:04.380000','2019-04-05 01:14:04.380000',5,'Hannah hudson','https://lh5.googleusercontent.com/-Ecdp6tXUzcs/AAAAAAAAAAI/AAAAAAAAAAA/eIfA9Ol6fnE/c-rp-mo-br100/photo.jpg','16590124370714063921',3453),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAP3Xi8w60iYdKFP1YbtSCPrCAwfr5KfwhvpXL6otPp00Gv5Nc_CICvqkrIPtE-do4hBVDmAHsaWafyRvyLNj58tFB7sw','Excellent and quick service.','2019-04-21 05:28:25.546000','2019-04-21 05:28:25.546000',5,'Benson Benny','https://lh5.googleusercontent.com/-nAZn6Y9VQF0/AAAAAAAAAAI/AAAAAAAAAAA/7qX9HA3quBM/c-rp-mo-br100/photo.jpg','3511292162159714121',7359),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAP6FZ4LRI41CidLgUjH1QyPBKvfldp8DIiqh1C5BJUBTE_tle9ldFS5GwQpTBk5OiKw_-D90KzdAmsvjKUNIDiwaKa8Q','Great place with great staff and very clean','2017-02-10 15:05:48.481000','2017-02-10 15:05:48.481000',5,'josh miller','https://lh5.googleusercontent.com/-KhAfGSf_zD4/AAAAAAAAAAI/AAAAAAAAAAA/dNEekwm544A/c-rp-mo-br100/photo.jpg','16590124370714063921',4060),('AIe9_BFhqAtkXvUqdYNeMuBBGjaApbGeGG4039KEZtcaZqjDcw9K_PTI3hMSXHtt8caxWoQJHrn5FrAre-_eNDy9X6tRge-WV2PGKAU1oyxwXy1Jiy6_Rjo',NULL,'2019-06-20 17:48:57.989000','2019-06-20 17:48:57.989000',5,'Zachary Woods','https://lh3.googleusercontent.com/-GjTcjC9sZzc/AAAAAAAAAAI/AAAAAAAAAAA/eXnHsCNLVMk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaApDPEAdOzbVrrF63P_w4qzCy8HCSujOgzVH7MGopTj45uKxrRHqy98lIko9PinQx7-GsMRZj0g9hbNOHu34plaYZdXKE','Much faster than the local hospital, more thorough and personal. It was a drive across town from where I work, but I’m glad I made the drive. It’s the first time I’ve come to this stand alone ER and if the need arises, I would definitely return. Delpha was very attentive, kind, and made me feel at ease. Great place.','2019-09-18 22:06:31.337000','2019-09-18 22:06:31.337000',5,'Marissa Mireles','https://lh5.googleusercontent.com/-mBKxH--QQAM/AAAAAAAAAAI/AAAAAAAAAAA/gm0kRX01Gmc/c-rp-mo-br100/photo.jpg','13486358490203335051',821),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAPerI3negLfk99qEotUs9hQt0S14JN8DgvLgiiyeI93MuBU9to7-rWLFKTDYqLbQC3XlcUpNOti5bnb7jaPQ0mx2qoK4','It was a very convenient location the staff was very friendly and inviting and the service was speedy I highly recommend this location in Stafford Texas.Dr. Garcia and his staff with Raven and registration and nurse Nicole in Techs Julia and Stacy were awesome','2019-06-12 15:07:42.539000','2019-06-12 15:07:42.539000',5,'Shareese Royster','https://lh6.googleusercontent.com/-Of5sbS-f45Q/AAAAAAAAAAI/AAAAAAAAAAA/JsM0x7lgU3w/c-rp-mo-br100/photo.jpg','8918455867446117794',9124),('AIe9_BFhqAtkXvUqdYNeMuBBGjaApILar9Y8Scz1aHllcAsLO5HyQbjx3YDQ2iINgfUYg3aD2sKt1OCt3UreCxBo1fu6lCWZOhzGp4gfwzgLt4JzcU30s_I','Superstar place....I recommend this clinic. I had no wait time here. I spoke to Keera who made sure I was comfortable and and handled customer service like a pro. The nurse assigned, Anthony, made sure all my concerns were of comfort level to communicate. Dr. Morrical, great bedside manner. He listened and took all the time needed.','2018-07-26 04:48:43.986000','2018-07-26 04:48:43.986000',5,'Michael Truss','https://lh5.googleusercontent.com/-1cT6iukP8Uo/AAAAAAAAAAI/AAAAAAAAAAA/fjmDJh1JLus/c-rp-mo-br100/photo.jpg','16590124370714063921',3803),('AIe9_BFhqAtkXvUqdYNeMuBBGjaApjhQWOFM0kSupGg-pXebt3orfiaiA1-6mxlN7AW9tmx2hJWi0Jk1ZWjPPWMAySR6WQJOpAaBzhkCVWzPfsIuoK0qZOU',NULL,'2019-02-06 15:52:51.632000','2019-02-06 15:52:51.632000',5,'Alia Mauricio','https://lh3.googleusercontent.com/-BdlOeMluAlg/AAAAAAAAAAI/AAAAAAAAAAA/FcTuI_thqiI/c-rp-mo-br100/photo.jpg','2694018788013845459',6185),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAPL1iq6Y_y-zu4V_Xu6mawm882im1LXIXfKgscrv4AC6xTbdKLPpYgHV8OUg9RE87MZYRSs5UPbPxlGZle07lMYO-EC4',NULL,'2018-11-08 01:06:05.927000','2018-11-08 01:06:05.927000',5,'Roishon King','https://lh5.googleusercontent.com/-2ZUKEiGHwew/AAAAAAAAAAI/AAAAAAAAAAA/ffP4smyLt5g/c-rp-mo-br100/photo.jpg','17394740196501090048',4766),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAPlDdqP5XzyHv_FxSklywEer88XjtWihd4CKsbHq2hYSwysYd7cj-zM_oeeWjMf8cPXcQXJZUZit3KkvyNGJg-yHj3-8','Always quick to be seen and very friendly staff. My kids aren\'t scared or nervous when they have to be seen. The staff make them feel comfortable and safe. I highly recommend to anybody with kids!!!','2017-09-20 04:33:56.315000','2017-09-20 04:33:56.315000',5,'Leandra Guerrero','https://lh4.googleusercontent.com/-G8owMPW5YvM/AAAAAAAAAAI/AAAAAAAAAAA/_inD0quxntc/c-rp-mo-br100/photo.jpg','14567670160750071148',1756),('AIe9_BFhqAtkXvUqdYNeMuBBGjaApNgU3ZRnPRollob4yqp6lKE_lnIXEks2AXVMESBp-1ULkZi9UwDMeUYJLjDQUFd1BgCjDdS1UsUJI3ydmEodaON0Dwk','Great experience being tested for covid19. Made me feel comfortable and at ease. Highly recommend','2020-07-22 15:48:13.266000','2020-07-22 15:48:13.266000',5,'LORETTA THOMPSON','https://lh6.googleusercontent.com/-8kE7c1Dos24/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnopShVv0ynjPqvGGX7ciKJxdzADQ/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21959),('AIe9_BFhqAtkXvUqdYNeMuBBGjaApO6ow80MWauSSO4Ginue9BD0ZQ7c1MrkVando7kxuvi8KytUGwronhG-CZQL-8VBrgP9VuE57zuUCRA64SVyKKMnKHk','My husband and I came in, and we were honestly worried we would get stuck at the doctor like all of the other places in town. It was quite the opposite! Naomi had us checked in and in the back before we even sat down. Jacob and Tori were caring and knowledgeable while gathering symptoms, and before we knew it Dr. Vakey had my husband checked out and diagnosed. Dr. Vakey was helpful in explaining what was going on and why the treatment he was prescribing was appropriate. Before we even left the room, I told my husband “I’m sold. I won’t go anywhere else again!”','2019-10-12 16:40:25.909000','2019-10-12 16:40:25.909000',5,'Sarah Jordan','https://lh6.googleusercontent.com/-f-FM7nTei7c/AAAAAAAAAAI/AAAAAAAAAAA/fKilP2jf0-o/c-rp-mo-br100/photo.jpg','16590124370714063921',3147),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAPtAK1KsETsld0npv4K4NPQNxF5x9wpwXovNa3_KGP_ON5ahqWTsw7QRPr_LDJk7X4lAru1bC4ehTGdpf6bnzaI3a6BA',NULL,'2020-07-11 20:33:37.955000','2020-07-11 20:33:37.955000',5,'moises jaramillo','https://lh3.googleusercontent.com/-R0ZFeCBkTCA/AAAAAAAAAAI/AAAAAAAAAAA/m7sAc3Cxs_M/c-rp-mo-br100/photo.jpg','8918455867446117794',22927),('AIe9_BFhqAtkXvUqdYNeMuBBGjaApuWZGoLe1hwKkM-OYlVRIQJDmmGlg6L-bIdBPF-4up8D7SH1V-6o16K87S3jPsFsOXYMidcKDraHsERKGi4o6cUgxnA','Dr. Faig was one of the best doctors I’ve ever met. He answered any questions I had and really made me feel at ease as well as we as Dion, Jessica, and Amy.','2019-05-05 01:54:53.521000','2019-05-05 01:54:53.521000',5,'Greg Figueroa','https://lh5.googleusercontent.com/-Iy8x9kfR_zw/AAAAAAAAAAI/AAAAAAAAAAA/4PdlbkrwKv8/c-rp-mo-br100/photo.jpg','3511292162159714121',7346),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAPw0qtdMyyEMoaxQIX95UB5LnmJn9metVRTpO0Dg5mN1R6q8rMVYbHUM5SxeWq05Pwevx_S_ygmQTMaEaBqyMa1ubfVs','Dr. Yusef, Leslie, Stephanie, Kelsey, and Jacqueline are THE DREAM TEAM at this local emergency hospital. The Montrose area have been truly blessed by its wonderful staff. Thanks for a comfortable visit. KEEP UP THE GREAT WORK GUYS. Thank you for being a part of the Houston-Montrose are❤','2018-08-20 12:55:18.248000','2018-08-20 12:55:18.248000',5,'Moonshot Moonshot','https://lh5.googleusercontent.com/-uCNDyk4oxjo/AAAAAAAAAAI/AAAAAAAAAAA/fWwRi7V7wk0/c-rp-mo-br100/photo.jpg','3511292162159714121',7611),('AIe9_BFhqAtkXvUqdYNeMuBBGjaApxZkTgbaurYaoT7NZb3LGm9bdDW8PVSt0skThcECp3YukZTOlPNa33aCPhjAelNeE6K1WSjVANcJeK_tzPoSsae01Nc','Fast and efficient. I was seen quickly and test were ran quickly. My nurse Irving was kind and checked on me as needed.','2019-10-13 03:23:59.515000','2019-10-13 03:23:59.515000',5,'Vivian Jones','https://lh3.googleusercontent.com/-2hXrfsOOl40/AAAAAAAAAAI/AAAAAAAAAAA/MTs-4-GVvrU/c-rp-mo-br100/photo.jpg','12541597562633926366',402),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAPyv_hhkTwOtFD6l2l_Of79gHkSnMZo0CYpnuFsBBB4yOUkpcCtcnHIgniGDC1gEEsiwGhGYwamAlPvhVnNo5iqFjL1E','Everything and everyone was super nice and clean. Kimberly gave me a warm welcome at the door, and checked on my throughout my visit. Nurse Rachael and Matthew were in the room as soon as I walked in and was there to check me personally. Dr. Thomas was very thorough and updated me every step of the way. I loved the personal touch thoughout the stay. Will definitely be back! Who doesn\'t love a warm blanket, clean and quiet room, and snacks?!?!','2019-07-29 00:03:31.070000','2019-07-29 00:03:31.070000',5,'Roshanna Washington','https://lh3.googleusercontent.com/-lj5x0GCOwvI/AAAAAAAAAAI/AAAAAAAAAAA/eJAt-yyEXfM/c-rp-mo-br100/photo.jpg','17898197009688164559',5620),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAQ-BponPe3ho2Jv0hV57ozF_DXX0bvaADLweB61rqxNm9iDBoY9pMIhj9t-qHY6aEZM6OZ53Tx0itWNxRn1MMajY5kHQ','Emergency center was amazing! Tory at the front desk got me in right away and all the staff took great care of me! Very happy with my visit here!','2017-01-16 02:45:02.445000','2017-01-16 02:45:02.445000',5,'Dylan Wiemer','https://lh6.googleusercontent.com/-dg73Rl1kZX8/AAAAAAAAAAI/AAAAAAAAAAA/b3UTyva6MdU/c-rp-mo-br100/photo.jpg','3511292162159714121',7902),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAQ6qoWNEfYPTOh3G4zGmOpcoeQ1zbt2-G1roJMyC55bMFwi88Lw468UAfuMGl0wTT9Z5KiTfOW3ZtGc3gtln_yI6o4xk','Visited this location a few weeks ago. GREAT SERVICE! I still get calls and txt messages to check on my update. Great staff','2019-01-16 04:20:44.144000','2019-01-16 04:20:44.144000',5,'Demesis Ambriz','https://lh6.googleusercontent.com/-mFxXRs92Lpc/AAAAAAAAAAI/AAAAAAAAAAA/pNx2aFWGoJo/c-rp-mo-br100/photo.jpg','14567670160750071148',1407),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAQ8g10S_myhBnYCZXsbfKgmkfoMxefroYrfS7cuHVh-czsoFwvUkkb9AaWq87PSyJDs36toHc1DpctSIu0cwdCh3mZ_o','Real difference from your normal emergency room I would recommend anyone to come here , the staff really is caring and helpful and fast','2019-04-01 01:46:43.202000','2019-04-01 01:46:43.202000',5,'Robert Mitchell','https://lh6.googleusercontent.com/-NDkAAKHi2qE/AAAAAAAAAAI/AAAAAAAAAAA/KKWpJl7-fyU/c-rp-mo-br100/photo.jpg','6521947413723274945',8293),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAqA-3BSn6LKfn38FRqiJvlWANuoG-SmXBEJJpPBx_C6HJ0v2D0yNXlUsZHnTtVMPWwcb-Wi5N6Z8wNvZ8rdsh-IlCia4','Staff very nice. They took care of my husband and I would go back again.','2017-11-09 00:14:27.240000','2017-11-09 00:14:27.240000',5,'Rhonda Duffield','https://lh5.googleusercontent.com/-GaoC1UXqgtI/AAAAAAAAAAI/AAAAAAAAAAA/dsBVElMN-Zo/c-rp-mo-br100/photo.jpg','14567670160750071148',1734),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAQBbVCNPGN_wXX39iy9uG8-DGLogqeuzPH2e7vMrG4RzQJ5YSZw3yWJfdEgnVRSoEdVGjmqV-iINY5SQJZEv738-FkU0','I was so nervouse about going in this morning. I have no insurance Tanishia assured me that this trip wouldn\'t bankrupt me. I had zero wait (at 2am) and Dr. Patel was on point. He diagnosed my ear stone and had me on my way ASAP. Susan, Elaine, and Laura made the process as painless and quick as possible.','2019-10-04 17:17:55.169000','2019-10-04 17:17:55.169000',5,'Cherie Hazelton','https://lh6.googleusercontent.com/-_dDpS2TN_Xw/AAAAAAAAAAI/AAAAAAAAAAA/bR1B9snWNrk/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5515),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAQbFY4Bse-YtLtEqVzIB0VNZaphQ7e0EIcs4TE6Kwf7h4k0v8_NSmgwFnv34uP6P4mdJZLVjA_FbTOLrbHWDuG--Trns','I had a wonderful experience at Signature Care. The doctor himself met me at the door with a wheelchair. Their customer service is top notch! There was no extended wait time, nor did I feel my care was rushed. They were all empathetic to my situation, even the janitor that was cleaning the halls assisted me. This was my first visit here and I will definitely entrust them again for my emergency care needs!','2019-10-11 13:50:11.187000','2019-10-11 13:50:11.187000',5,'Johnette George','https://lh5.googleusercontent.com/-qj4oR2pupiE/AAAAAAAAAAI/AAAAAAAAAAA/Wxy-3b5Py6I/c-rp-mo-br100/photo.jpg','3272657195432704501',6883),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAqbOyqcFxoFCVOfyuAaaqDXSvnBbW3UzUzTbo9XRen7kpHkd5SLKoqigO-DgWH83E9Rx0kXZOfuNFz22wMjzEgej-ikM','We have used this ER several times .Elizabeth Garcia was very friendly and helpful. Dr. Ortiz was very informative about what he was doing and welcomed questions which was very refreshing. Nurse Balliu has a great easy manner about her. Rad Tech Borjon and Tran did there job great. ER Tech Osborne did a fantastic job. Thank You all for making this trip as pleasant as the others.','2019-06-07 11:23:05.911000','2019-06-07 11:23:05.911000',5,'Terrie Noble','https://lh6.googleusercontent.com/-G1znPD0Tt2c/AAAAAAAAAAI/AAAAAAAAAAA/3jRMFdjw1wg/c-rp-mo-br100/photo.jpg','17898197009688164559',5710),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAqBTXke3IJdL010SxsOpcrnPub-V5UWuL88SY2WL0YcnZ8_z_YQ0o_Lk1wb6el_Wj3AKV6kdzc1L1x8wCqNVy23EnA90','We had a great experience at this location. We arrived here after walking into another ER and walking right out because of bad customer service. The staff is great, and very welcoming. Nurse Nichole took good care of us and Dustin with radiology did great work.','2020-01-25 17:08:40.113000','2020-01-25 17:08:40.113000',5,'Melissa Jewkes','https://lh4.googleusercontent.com/-eeG5OF1k3lw/AAAAAAAAAAI/AAAAAAAAAAA/TprJdfNnUc4/c-rp-mo-br100/photo.jpg','14567670160750071148',10124),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAqDAWraif-7RhGm_-BoGLkI1DZlMQir7gqx0DPW9nNl50O5P7to5WEsMinHBQixpaAB5UmAi6ZGZlm4vYUSX-eO-94OU','The care team ,joylynn,Andrew,Caroline,Kristine was absolutely Great! Very fast in and fast out !!','2019-10-02 17:22:49.451000','2019-10-02 17:22:49.451000',5,'Tina Parker','https://lh4.googleusercontent.com/-MBXB9rAwZCA/AAAAAAAAAAI/AAAAAAAAAAA/Rr3qedATVvE/c-rp-mo-br100/photo.jpg','13486358490203335051',794),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAQerb6LLVQ7xigtDv_GNr3ZxFJcoFbyglMPU4SRDzi8KfUssvMW-QolwolhzUrdx2W_2LoNW7oz2l9uIyBffUz-uqEhc','I was seen by Dr. Grinblatas and he was very attentive and thorough with everything as far as treatment is concerned. Tatiana was great with all the check in procedures and also let me have a couple of their pens which was cool. Juan was very friendly and helped to take away our nervousness as this was my first time here. Jerin was great with the CT scan I took. He was clear and thorough. Rachel was very knowledgeable and courteous. My wife said that this place felt welcoming. All of the staff there were just that...welcoming. I will be going there for my care needs should any more arise.','2018-02-23 00:39:18.594000','2018-02-23 00:39:18.594000',5,'L. Blackman','https://lh3.googleusercontent.com/-H_F11iqMfWk/AAAAAAAAAAI/AAAAAAAAAAA/P4pqQktWrpo/c-rp-mo-br100/photo.jpg','17394740196501090048',4879),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAqg1mfLKmpn45QV2ezQ8-xYLamFiIzWErvybFPn1ClVdQtrki-kvsEAyVCaUcQXIlwDWaKiHcyMyWnxrnT9UqoIFBj9w',NULL,'2020-02-19 15:00:42.064000','2020-02-19 15:00:42.064000',5,'ijeoma ezepue','https://lh3.googleusercontent.com/-hfrrNNdA3QM/AAAAAAAAAAI/AAAAAAAAAAA/SUUb918pl6s/c-rp-mo-br100/photo.jpg','16389487648212004696',22586),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAQiYUck2inxeugKUmr21FURh_-ixePA9ab5FuIlkO9zonuSfiWxU26rfQeN0JvctHi6Ak-Yb7VE3Sc73QnZHhEk4KZA4',NULL,'2019-11-19 20:00:55.919000','2019-11-19 20:00:55.919000',5,'iliana danker','https://lh5.googleusercontent.com/-DVr12Qqtxq4/AAAAAAAAAAI/AAAAAAAAAAA/YH4MT4VpGeA/c-rp-mo-br100/photo.jpg','8679688254631342173',8718),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAQtkSdgs3O8U2CPdE3m2ysIwXD0PLwNLHYhxeoqhJORODAbUC-4oKQGMBfEIe296I7SKN19CY-Qi19YZQLOWCShdPkBo','My experience at this facility was outstanding. Everyone from the security officer all the way to the doctor made me feel at ease and cared for. Service was super friendly and quick. Very knowledgeable staff...I have already recommended this facility to friends... During such stressful times it’s wonderful to have such a great team in place ready to answer the call of fellow Houstonians.','2020-07-04 12:23:20.919000','2020-07-04 12:23:20.919000',5,'Lisa Parkey','https://lh4.googleusercontent.com/-qkpoT585bG8/AAAAAAAAAAI/AAAAAAAAAAA/ch05a_B4qCM/c-rp-mo-br100/photo.jpg','3511292162159714121',21471),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAqUkRXwTaOcCW27yizttZlKvmFpc9hEksFqcnee0w5I3ZsWVL4-u_hjf42MOIVDWNizJ2o-7TsuNIM7NNbuNlGaNa31o','Came to get stitches and my stitches removed. Everything was nice and clean! Great staff !! And great service','2019-07-03 15:19:29.038000','2019-07-03 15:19:29.038000',5,'Angela Mejia','https://lh6.googleusercontent.com/-YYtQhtD5njM/AAAAAAAAAAI/AAAAAAAAAAA/4qV_7ysS7w0/c-rp-mo-br100/photo.jpg','17898197009688164559',5671),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAqUPow0YxXAYn9BDIvkNwyTStw4lgAErMHfhrx7xg4Mos9m0ox1S4aMBjYQe-l4YYsm-qCjjKDnPEXBwdZ_ckwp81fAY','I brought be daughter in here a couple months back and I loved it so I decided to skip the military hospital and give this one a try for myself. Not only is the staff very kind but they work fast to get you in and out as soon as possible. It looks very nice on the inside and is super clean without that weird hospital smell. I recommend this emergency room to everyone now!','2020-02-18 16:27:00.753000','2020-02-18 16:27:00.753000',5,'Sophia Alexander','https://lh3.googleusercontent.com/-D2JRG6lMunE/AAAAAAAAAAI/AAAAAAAAAAA/7Rkg1HBLbes/c-rp-mo-br100/photo.jpg','2694018788013845459',14229),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAqxJPXbR6NrMxo1u9mY8RV9m_hKKlzxwiux75YmLjzp-yTXaDKtNoPMXXIkZm9VuFkwruin1wFcxfr_fgzTP-D1EDOrM','This was the absolute best experience. My husband was hit by an 18 wheeler while driving and we came here. Robert, Dr Sylvester, and the rest of the staff from the front office to discharge was incredible. It was clean, comfortable, quick, and they had snacks to hold me over while we waited. Robert and the Dr was even kind enough to let me use a charger for my phone. Double and triple recommend!!','2018-12-18 18:05:43.679000','2018-12-18 18:05:43.679000',5,'Antoine Hood','https://lh6.googleusercontent.com/-QVof72y8bkY/AAAAAAAAAAI/AAAAAAAAAAA/Fou5Uh70t0o/c-rp-mo-br100/photo.jpg','8918455867446117794',9206),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAR4FzYlDA8VrVSKTS995zc_3StbG8Q3RFbPeuQjT68aeRKWt8LGwSYGF-0ou_rhDnI3xjyc92ZdvH-5Wo05dBWjKTvL8','Walked in, described my symptoms, and they are addressed quickly and easily! Thanks to Kimberly, Dyveliz, Brad, JR for taking care of me!','2017-02-23 23:29:42.514000','2017-02-23 23:29:42.514000',5,'Carson Pepper','https://lh6.googleusercontent.com/-JYK2xrceUhs/AAAAAAAAAAI/AAAAAAAAAAA/Mxs_Imei9uk/c-rp-mo-br100/photo.jpg','16590124370714063921',4050),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAr51OzDVHLYXdVcnLkIB6Qk2OTBGSiQEz9B2Z0Z8qcGYcFDTX_aGZsJEwpfIaVe7cJvQko9ZvGY7lMym62MZ1Uiambh4',NULL,'2018-09-24 17:49:05.929000','2018-09-24 17:49:05.929000',5,'Leslie Flores','https://lh6.googleusercontent.com/-4T_FL_PXJPw/AAAAAAAAAAI/AAAAAAAAAAA/pOZZrCv8OCw/c-rp-mo-br100/photo.jpg','17394740196501090048',4788),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAr7xLC-nO9CSqFbaDTWLKLmlMJUPfTKBsuxGJNGx-kh1bAjlzDGRztbTk38BwQrk0B1LdW26UY7Ao2l7iM9swlPE8bEE','My nurse Konya was amazing! She gave me the best advice for my issue. Dr. Farooqi was informative as well. Quintessa explained all of my paperwork thoroughly. Great place, great people, great care.','2019-06-22 23:27:13.887000','2019-06-22 23:27:13.887000',5,'Katherine C','https://lh3.googleusercontent.com/-JfoeM2D0fk4/AAAAAAAAAAI/AAAAAAAAAAA/rRG5W5BIQKs/c-rp-mo-br100/photo.jpg','2694018788013845459',6126),('AIe9_BFhqAtkXvUqdYNeMuBBGjaArDDnJkvxvhtFWEjIft_VvRdNDZxqOOw6_x3nFB-Jg0Jl7AEmI4TYNpxMxiJCChskqXAoYAx8dY93SHYm15jD_y1VDyU','When I went in I wasn\'t even sure I wanted to be there since I avoid doctors at all cost (hence the ER) they were fast and efficient. I was in and saw a nurse immediately. The doctor came in less than 10 minutes later. The longest part was waiting on test results. Be aware though they are required to keep you for FOUR HOURS. At least they were with me...maybe it\'s conditional just keep that in mind when you go in. Friendly, funny humans that don\'t act like robots!!!','2017-06-20 14:44:08.864000','2017-06-20 14:44:08.864000',4,'Stephanie Uzomba','https://lh6.googleusercontent.com/-Ox-lLGmi7qM/AAAAAAAAAAI/AAAAAAAAAAA/oyaFJX0BuTE/c-rp-mo-br100/photo.jpg','17394740196501090048',5030),('AIe9_BFhqAtkXvUqdYNeMuBBGjaARDjaABrHnH771XScoYFXmNLYK3Ek8gbi_S4dKS_meSAoDSHeQXKr6knsjbeulO238zTABIuZ5GNPwgXErMAMYR6Snpc','Caitlin and Jennifer, at the front desk, were very helpful and receptive to my needs! My information was immediately taken, and i was offered water and other cold drinks while I waited my turn to be seen! They have made me feel very comfortable, without even going to the back to address any of my needs!','2020-08-15 19:44:19.246000','2020-08-15 19:44:19.246000',5,'Montisha Wallace','https://lh6.googleusercontent.com/-_eXtmFYTBYU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck3nlWtVqxh4K2otMWgLwk7uBqfXg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',23080),('AIe9_BFhqAtkXvUqdYNeMuBBGjaARFsSApBUNrh4REyNO6pEDLrVYt4ZMCsrrEIi0yspYFGBtHklvWhG9yJ8PqDtXUIRLPceOtXLuK9NlbkApEyYH5R7EJY','Very caring and kind staff, very clean, and they have snacks for you. \nThank you to Angela, Shade, Dr. Leung, Crystal, and Daniel for taking such good care of me.','2019-12-14 17:05:30.177000','2019-12-14 17:05:30.177000',5,'Meloni Soto','https://lh6.googleusercontent.com/-TESKdNE0N6Q/AAAAAAAAAAI/AAAAAAAAAAA/TdJIcbKGbHU/c-rp-mo-br100/photo.jpg','2694018788013845459',5987),('AIe9_BFhqAtkXvUqdYNeMuBBGjaARGF2LnXRBxk-dHeahg395wOfD1d1V5bNOl9CkCin3RTHW6GsRHlWBYLlewafs7X_C_34zrhJHH3sX3z3JLfDHL7Ie-g','The staff was great and everyone was very quick and thorough in figuring out what I needed.','2019-09-24 16:04:10.665000','2019-09-24 16:04:10.665000',5,'Carlie Harper','https://lh3.googleusercontent.com/-qKp6Aa_bkho/AAAAAAAAAAI/AAAAAAAAAAA/isFOZYcrt7w/c-rp-mo-br100/photo.jpg','16590124370714063921',3177),('AIe9_BFhqAtkXvUqdYNeMuBBGjaARglyPdSZai4RNVhqxdgLot_voqxUJBoO3O6iMm8j9QpHVY8jMWfsAbl8CgJatBgpa5jzF-AGm2ZSM-J0EP6SUQVcSZs','Very nice place very friendly and fast','2017-03-15 13:26:34.771000','2017-03-15 13:26:34.771000',5,'Dustin Willis','https://lh6.googleusercontent.com/-kKgg284aQy4/AAAAAAAAAAI/AAAAAAAAAAA/Gze58RWEl9M/c-rp-mo-br100/photo.jpg','3511292162159714121',7858),('AIe9_BFhqAtkXvUqdYNeMuBBGjaARHnrpfwX29EtEwqIbtrHYuaZBgO5i7pozqJVFZLAlmTLqIuSpPdFy2tMF2V6gaABYxaKt3mb2uLlx60UFhia2g44Aeo','Great service as usual, they do everything here! X-rays, flu/cold tests, blood tests etc. Alyssa P and Shawn K were awesome! I love coming here!','2020-01-24 22:35:18.279000','2020-01-24 22:35:18.279000',5,'Melissa Owens','https://lh5.googleusercontent.com/-LJ7hJPEg1LI/AAAAAAAAAAI/AAAAAAAAAAA/pRlvQVI0oR8/c-rp-mo-br100/photo.jpg','8918455867446117794',14866),('AIe9_BFhqAtkXvUqdYNeMuBBGjaARK9u6eQL4hpW2LOyDCamAqxUHslOY0vPzEkfheiOYVczCJFrc2FgYYcSVkAKmrMO7yWIqWf0USrNFYJBfwS4sC_JsXE','Very friendly & professional doctors and nurses. Less than 5 minutes you can meet the doctor. Highly recommended.','2016-09-28 17:40:09.718000','2016-09-28 17:40:09.718000',5,'Joy Zhou','https://lh3.googleusercontent.com/-qZQ19RrozzE/AAAAAAAAAAI/AAAAAAAAAAA/BXt4V36QmCw/c-rp-mo-br100/photo.jpg','3511292162159714121',7933),('AIe9_BFhqAtkXvUqdYNeMuBBGjaARP3GUjxWul9EhkplVKk5inMAPg65ehNve2iLtubPac9e0g2tJBOFmUpiCFky0mtkkPBfv3ArWvj4o1iej3V57xrqSuU','Ana at registration got me registered in the system really quick, my initial nurse Irving came within seconds and immediately started assessing me for my symptoms. The nurse Katherine who also came to assist was very polite. Thelma came in to do my flu swab, even though it was not a good feeling she made sure I was fine before leaving. Holly and Irving ensured I had a blanket and a snack as well. This was a great experience all around!','2020-03-06 04:24:10.215000','2020-03-06 04:24:10.215000',5,'Christopher Williams','https://lh6.googleusercontent.com/-z3uJcS-IGJM/AAAAAAAAAAI/AAAAAAAAAAA/29cv1vebk4A/c-rp-mo-br100/photo.jpg','12541597562633926366',13313),('AIe9_BFhqAtkXvUqdYNeMuBBGjaArqbPtfjoB1jDW4Szp-GTo47SyOygFmyuNldwG-RhpG1YtP7-McRi1eaRAwhadDcxmF55dFuCpHUzQNmEIM_arStdefg','Treated in a timely and professional manner staff was exceptional, especially Keera and Selina !!!','2019-05-30 19:33:30.654000','2019-05-30 19:33:30.654000',5,'Amarah McCoy','https://lh3.googleusercontent.com/-gv0XRFC-9Io/AAAAAAAAAAI/AAAAAAAAAAA/Hgi5akXgZZY/c-rp-mo-br100/photo.jpg','17394740196501090048',4677),('AIe9_BFhqAtkXvUqdYNeMuBBGjaArrqX9RV3f14Ss6zYPqkrJGC0aE89sWBxW4WJhSAlNj3jmQfpp8mxTmFa_EsPT_FPzZShuM5F_zMgF2jqDCUMdKzDTgg','Awsome customer service help and understanding since we dont have insurance.!! Go there all the time.!','2019-05-03 04:47:22.113000','2019-05-03 04:47:22.113000',5,'Alexx Villalobos','https://lh4.googleusercontent.com/-Ug82-yM4OXA/AAAAAAAAAAI/AAAAAAAAAAA/yQbWXd6pU2M/c-rp-mo-br100/photo.jpg','17394740196501090048',4683),('AIe9_BFhqAtkXvUqdYNeMuBBGjaArUiWVAvpQTV9Dl2v4-7df9YjNj9F1Z2QX9hZYHt4XugDkxHW8jFwWPXGUDleBLUaHed7IqvAVr7pJkDvpCOoblJi3Yw','Great facility, caring and talented staff. They took excellent care of our 3 year old. Thank you Shania, Kim, Audrey, and Dr. Mauldin.','2020-01-18 02:04:47.913000','2020-01-18 02:04:47.913000',5,'Jacob Wendel','https://lh4.googleusercontent.com/-GcgCyky1qd8/AAAAAAAAAAI/AAAAAAAAAAA/-Psom11IrOA/c-rp-mo-br100/photo.jpg','13486358490203335051',13474),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAs6GCDdRBe0AzkwPin_4Fp-fGgkL4qavKHdUJiMCVRKAO-CT1cWtRavYoMgLaZGmI2qbf4BdfDkcYTFaIH-4iuquER7Y','The first time visiting emergency centers. I came in due to extreme stomach pains. This place is very nice. The staff is very nice and professional. I\'d definitely choose this overt sitting in hospital emergency room anytime!','2016-04-07 11:47:28.549000','2016-04-07 11:47:28.549000',5,'Michelle Nguyen','https://lh3.googleusercontent.com/-81v5PXYQUzA/AAAAAAAAAAI/AAAAAAAAAAA/vieFfr4Y4o0/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5945),('AIe9_BFhqAtkXvUqdYNeMuBBGjaASaB3seUTFtOEgCDN0JgZIv28ya63HCH5ceVXfoANhJm8Nm9GNidfpnTi9Hvq9f1KRwf59rs_uQMB8Nmlkcpa_vHsORk','This emergency center is amazing. Everyone was very helpful and went out of their ways to give me information about everything, from registration with Tanisha W, to ER tech Daniel B, to Doctor Thomas, MD. \nIt is a very comforting and cozy place.','2019-11-20 05:02:07.089000','2019-11-20 05:02:07.089000',5,'lesly nuñez','https://lh3.googleusercontent.com/-5VUSfcc6RNQ/AAAAAAAAAAI/AAAAAAAAAAA/ZuGravSZANg/c-rp-mo-br100/photo.jpg','17898197009688164559',5415),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAsBNVGhpNr7wm-p5mZbzIsxC5Nqu1DerMdIrFLNmqf0hRp9W52T1A22cyrL4zb2RImUtsN7g4z-9GCDLj24M9d1VPP3M',NULL,'2020-05-27 18:11:51.587000','2020-05-27 18:11:51.587000',5,'Jacques Foussac','https://lh6.googleusercontent.com/-e2kakLZ8XkA/AAAAAAAAAAI/AAAAAAAAAAA/DYWgRLaBArg/c-rp-mo-br100/photo.jpg','12541597562633926366',22460),('AIe9_BFhqAtkXvUqdYNeMuBBGjaASctMuk6uKacA6LbayI2u4zxMkE7deM_so-V69Ip7CUK6zj0ibbkBj8flVwNl57aiWDTvmdo9_Ubrc4yxe10DbTn6IfE','The staff was so friendly and took really good care of me! I was in and out quickly. The faculty was super clean! I would highly recommend this place to anyone!','2019-10-08 02:14:03.647000','2019-10-08 02:14:03.647000',5,'Roxanne Manley','https://lh3.googleusercontent.com/-fcjjtebVGSg/AAAAAAAAAAI/AAAAAAAAAAA/oTdRjpPj9Ls/c-rp-mo-br100/photo.jpg','14567670160750071148',1224),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAsFddy3MKSlUA8rO8oka9huus73jG5OAvhGzFRIKzmT5Qx47HLfdvUBTzmBeOlg0DgIov_cvUgc4bZZFmXWTZ6neGAng','I went into this facility with work related injury I literally only spent maybe 30 minutes here. Service was greatttttt very quick check In with Jocelyn A. Was amazing she was sooo kind and generous and she answered all of my questions and my nurse Alvean A. Was awesome she addressed all of my worries and concerns I had she was very friendly and kind to me. She made sure that I was well taken and she made sure I was comfortable the whole entire time I was here I definitely 100% recommended this facility. The doctor here was very nice and understanding 100% caring. You can tell he has a passion caring for people.','2020-01-11 16:39:39.097000','2020-01-11 16:39:39.097000',5,'Micaela Truxillo','https://lh6.googleusercontent.com/-lhmxbXXc9Nw/AAAAAAAAAAI/AAAAAAAAAAA/ckZ457LDWEQ/c-rp-mo-br100/photo.jpg','16389487648212004696',9487),('AIe9_BFhqAtkXvUqdYNeMuBBGjaASl_Y6tk95j2nvsF_QWtMieeNBb9UiefPF_c5JitweifEDg_YbYePrQnUrCZOiaj2-gRpUGhN4nOlm8f2hd5bw7l8WnE',NULL,'2017-04-12 19:49:32.273000','2017-04-12 19:49:32.273000',5,'Ale Saldana','https://lh3.googleusercontent.com/-BaPN3_8Hi-E/AAAAAAAAAAI/AAAAAAAAAAA/hITezhRMeGw/c-rp-mo-br100/photo.jpg','14904078213800803294',2367),('AIe9_BFhqAtkXvUqdYNeMuBBGjaASLweKGGZzt4zCbRPf6IOXS72wuYcphYBKeKGV_vNmJ353UDEPltvZOuDC1s3kiPldm676yvb3giFYb0Sk9qEEuEZEHY','I came in for lower back pain and was really well taken care of, the receptionist Jereyia was extremely friendly and the nurse Ty took great care of me. Would recommend to anyone','2019-07-25 22:06:32.104000','2019-07-25 22:06:32.104000',5,'Nolan McKinney','https://lh5.googleusercontent.com/-u4iKzjVsvUw/AAAAAAAAAAI/AAAAAAAAAAA/YrrC6jahMqc/c-rp-mo-br100/photo.jpg','2694018788013845459',6103),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAsO5lQLvAAj6ZwQLedfmzw4FurEnJgCl-sIXZ4VBmsCwcYQNH_Z6gpX0hDJ1Fq5SA32iBEO-L9e_59XqQMooqS2DaaOA','Great service Dr. was very professional and laddies were very friendly excellent service.nurse Ekaterini was very professional as well and friendly also Patricia was very helpful with process','2020-02-07 17:22:44.588000','2020-02-07 17:22:44.588000',5,'WENDY ZALDIVAR','https://lh5.googleusercontent.com/-rHVWA2VMFt8/AAAAAAAAAAI/AAAAAAAAAAA/QSfF8o5_FJE/c-rp-mo-br100/photo.jpg','16389487648212004696',22612),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAspvcKT62KHfo1Sjb5LjR-EDvG9_ZHw2euTZFyYFJdWF-PyDG7oct2K1xBRhnKQrAI5I8TlhgoBJbvgeTUnwZFtq7SK4','I was able to make an appointment online prior to coming in and Lorena T checked me in right away.','2020-08-02 17:05:33.610000','2020-08-02 17:05:33.610000',5,'Ashley Sullivan','https://lh3.googleusercontent.com/a-/AOh14GiyF_d6rto9ftsxc0XlRxQb3JeVriWqXa-WaHLKHg=c0x00000000-cc-rp','16590124370714063921',21985),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAsqnFuby3kVpQPRPL7fJroRyjm67mSUawSuSGleKkQfaqzMZnlCXmy8wtdK8_lgY9_5YcVgLTGvDQ6Shpn3xF1S5ThR0','Rebecca was very friendly and she helped us as soon as we walked in the door. Their service was very fast, we were being helped within 5 mins of being in the waiting room.','2020-01-31 05:14:01.272000','2020-01-31 05:14:01.272000',5,'amy lechuga','https://lh4.googleusercontent.com/-Rs4Y2Pqd92w/AAAAAAAAAAI/AAAAAAAAAAA/BhY0f_jf51g/c-rp-mo-br100/photo.jpg','16590124370714063921',3142),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAsR4ddPrwNGa1VSLI4uwXffphQHb0OLV1RqZjcbwTiBGZT70LvNdVOJJJrGawECFsPSmK2_lvhUpM0magau3AUQoOrbU','Samantha, Chris, Bryan, and Ricardo were all super nice and friendly! welcomed me with great arms and caring!','2020-06-16 04:24:08.536000','2020-06-16 04:24:08.536000',5,'Jacob Garcia','https://lh4.googleusercontent.com/-WlZ8WPzqPjY/AAAAAAAAAAI/AAAAAAAAAAA/_m8RgQNnUd0/c-rp-mo-br100/photo.jpg','14567670160750071148',20943),('AIe9_BFhqAtkXvUqdYNeMuBBGjaASr5rueUUeOBPl8DsaJGVvF52Vjr5gEI27cghEl4fyU4jN-IaQJ5zKkHe2548domhGeP2aYqjkGxnV20xsKt3MIoAVkw','Atended my daughter fast and nice \nKat s, kat k, dr dang','2019-09-12 05:01:31.252000','2019-09-12 05:01:31.252000',5,'Norma Portillo','https://lh5.googleusercontent.com/-Fz3S-5mXpNE/AAAAAAAAAAI/AAAAAAAAAAA/HTzvUKI0Sx8/c-rp-mo-br100/photo.jpg','16389487648212004696',2917),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAST1gQ9m-7hcmdxXwv7CQSOIJPkos3qjdJ4mp0c91iVXZ--e4hpvsSPjrzpweJsCIp3_SwatIm9_Dgq2RcCBzqPx7AAk','Literally the best Emergency Center I have ever been to. They have the sweetest nurses and most understanding doctor. I would definitely recommend this Center to anyone who has anything wrong.','2019-05-28 14:38:59.433000','2019-05-28 14:38:59.433000',5,'Miranda Matte','https://lh6.googleusercontent.com/-zpgB1maZ7SA/AAAAAAAAAAI/AAAAAAAAAAA/0K6vBXvP9Ec/c-rp-mo-br100/photo.jpg','13486358490203335051',995),('AIe9_BFhqAtkXvUqdYNeMuBBGjaASUnuuOxaLikMvYdFLOXdHLPYun4fBV6xmioEO7HW5azxqkTu-MiEnOKTcmKgl_DoArDsPlEWM9A8CcuCIw-IFqDD7Uk','Very professional and thorough. These people care about the wellbeing of the patient. I am very satisfied with their service.','2020-07-24 15:01:47.217000','2020-07-24 15:01:47.217000',5,'Michael Dakkour','https://lh5.googleusercontent.com/-DBWKzosBGUc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmj8YBHZbB7v5nkATBy_0jp_7CK4g/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22153),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAsv40wRb7z684tTVnIpJnuHc0lyS7FWg8PQzTgPsi2PE4gePrR3ds9eMktX1ihbLGPZUYMI43gcJnCYjB-lEy7z7dBOI','Great staff! very kind and caring, I can\'t really complain about anything from my visit!.\nAll I can say is thank you for your services, it\'s great to know that there is a place I can quickly be seen for any health concern or emergency even if it\'s in the middle of the night.','2020-02-25 19:13:39.743000','2020-02-25 19:13:39.743000',5,'Princess 1998','https://lh5.googleusercontent.com/-A50ojOwLgio/AAAAAAAAAAI/AAAAAAAAAAA/b5lU5QvOt2U/c-rp-mo-br100/photo.jpg','8918455867446117794',14806),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAswYeISn4WFtziuXvInaTxEtKWHlyspsA9vvTDeFjH0CfVyRg6UBFhi3q8cx2Kc3P3Y3kbROvSPPu_km-KAAnNC0qWgw','Took my daughter to be seen for some dizziness and was treated with the utmost kindness from all of the staff. They really took the time to assess her thoroughly and got us in and out quickly. From the registration staff (Edward & Barbara), to her nurse and tech (Christina & Linda), to Dr. Rose ...we couldn\'t have been in better hands. Thank you so much!','2018-11-05 15:57:03.936000','2018-11-05 15:57:03.936000',5,'Alia Mauricio','https://lh3.googleusercontent.com/-BdlOeMluAlg/AAAAAAAAAAI/AAAAAAAAAAA/FcTuI_thqiI/c-rp-mo-br100/photo.jpg','16891069708558046635',4408),('AIe9_BFhqAtkXvUqdYNeMuBBGjaASYlxkwp75HWqc_SRNvTXc9VZjuhptrryih_NsEL1i9Dy7x5A2s5--ka5bOzzbwEII9OwBbdFoRxz1UVrHzoFBMC_cf4','These 5 stars don’t cut it, this place deserves a 10/10. Alexis, the receptionist was amazing and did a wonderful job keeping me and my Four other friends company, she deserves a 10/10 as well.','2019-02-14 04:50:20.142000','2019-02-14 04:50:20.142000',5,'Ravindu Munasinghe','https://lh6.googleusercontent.com/-6OfTd9ysvCM/AAAAAAAAAAI/AAAAAAAAAAA/adzF4bLoLDw/c-rp-mo-br100/photo.jpg','16590124370714063921',3548),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAsZEopN4-tXor4h_CYp_-0Yv5KueibcXtQP6zVE4rayQdv_kx__qddAyOs8z1-PLLWl93W7Fx4BlBjZqdYib-4vIT9nw','Very professional! The registration lady Sita was extremely professional and nice! Waited only a few minutes and was taken care of very well by Daniel, Allison and Lisa V! I have a very complicated medical history and have been in and out of the hospital numerous times so I know good care when I receive it !','2019-12-11 04:02:27.731000','2019-12-11 04:02:27.731000',5,'Katrina Brown','https://lh4.googleusercontent.com/-FrEWzMMOKv8/AAAAAAAAAAI/AAAAAAAAAAA/EEErYtOuxXM/c-rp-mo-br100/photo.jpg','13486358490203335051',693),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAt19Z1lLztg5u5FA10i6fX9VyUUHi2j2WstbK_BDdAqhT5bpxjh6l4nsi7UPrPAkFxhNbwbntDRUQYxaZQTglocyTxNg','What an amazing group of office and medical staff personnel (especially Dr. Hanan and their billing office customer specialist, Patric Garcia). The facility is welcoming, clean, state of the art and comfortable. Exceptional, outstanding, caring, kind and compassionate describes how I was cared for, medically treated and dealt with. Being new to the area, the emergency facility/center was referred by my Internist, and I feel blessed for having gone there. Their Customer Specialist, Patric, is a very-very special person. He is an inspiration and example of how to treat people regardless of circumstance or situation. I would highly recommend and trust my life in their hands. I am grateful and I appreciate them all.','2015-04-03 14:53:26.652000','2015-04-03 14:53:26.652000',5,'YP Katy','https://lh4.googleusercontent.com/-Tq-fMqgEXFY/AAAAAAAAAAI/AAAAAAAAAAA/v2-KshxDl90/c-rp-mo-br100/photo.jpg','17394740196501090048',5303),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAt22LA_05J169f8UHEEbRl4Wal9v_hRMs0Y5BMzrXfiUSAmP8yQa7HwtyMcE0elD_89ajxQtWg6OIidjWZ9-6bqAJ0I8','Keera, Jersey, and Dr Golla were amazing! They explained my diagnosis and treatment thoroughly.','2019-06-25 17:43:11.385000','2019-06-25 17:43:11.385000',5,'Noah Sosanwo','https://lh6.googleusercontent.com/-_5nR2yQcVOM/AAAAAAAAAAI/AAAAAAAAAAA/mjIpiAysL_w/c-rp-mo-br100/photo.jpg','17394740196501090048',4650),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAt5qkiVbyEvfUGX0-XrsdJ9sOCYz_Y5rWLP_u1pWNfKjmmcR_wEsM7Po6WsjlkH-OfMV96obR9OIR4f50GCQPw6LX2NM','I had a Great experience at the SignatureCare Emergency Center in cypress. The staff was pleasant and helped me right away. Nurse Ekaterini explained everything to me and helped me feel comfortable and Dr. Harjai was very professional and took great care of me. . Thanks for your help guys keep up the awesome work!!!!','2019-09-19 06:08:07.631000','2019-09-19 06:08:07.631000',5,'DinoREX YSAM','https://lh4.googleusercontent.com/-x97-tOErAsg/AAAAAAAAAAI/AAAAAAAAAAA/Jcp8p6Tm2Q4/c-rp-mo-br100/photo.jpg','16389487648212004696',2895),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAT9WMD0TYmGjNXBIwKXe3i4oMcXj8BN8dL8wHLiZ4nNXloK1b6iR1Z9Za5KZVJMlK9ohUiBrqQCFaylHPhR0JlWQxBII','DR. ORTIZ, MD, LUIS E is a great doctor he attended to me very well & explained every details of my case to me very well & in an understanding way too.\nNurse Jesse R did a very good job too was also with me from beginning to end & the\nRadiology Tech Jerin K was indeed a very good man did a great job me & also not forgetting the Front Desk Ana Estefania R really do welcomed us well, I really do appreciate you all & continue to keep up the great work. Will strongly recommend SIGNATURE CARE EMERGENCY CENTER .','2019-01-18 17:20:57.334000','2019-01-18 17:20:57.334000',5,'oyebanjo fatima','https://lh3.googleusercontent.com/-OR6SdTkcegI/AAAAAAAAAAI/AAAAAAAAAAA/QVc0sStMKaE/c-rp-mo-br100/photo.jpg','8679688254631342173',8885),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATA-MjX3067B8mADOwaHd1nP5OQkuFxbqqLAbdZens_p6YheKsnP77Xoksq5PNlZgwBr8vp6oX1rRjLoNrW8osx10pBI','Fast quick friendly service my visit was less than 30 minutes. Special thanks to Jocelyn, Alvean and Brian.\nI would highly recommend!','2020-01-01 17:07:10.504000','2020-01-01 17:07:10.504000',5,'Antoinette Odums','https://lh6.googleusercontent.com/-5egh8HGUETI/AAAAAAAAAAI/AAAAAAAAAAA/-oRTYinxOgU/c-rp-mo-br100/photo.jpg','16389487648212004696',2494),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATD6Q_pYSKjRFlv2UbrUfbAl1YhHf6dGUNWfaOfGIAu3cofBTGT8_WKe8ZlzrZ1ACh75VOKesD7KJQWsw-3u_Wb6MiTY','Nurse Nanci and Nurse Maynard and Dr.Wong are the best team . I’ve been to another location before but this is the best one . It’s fast and quick but they get you in and out and solve the problem.','2019-06-03 14:29:32.261000','2019-06-03 14:29:32.261000',5,'j rushing','https://lh5.googleusercontent.com/-I2fUGiRv674/AAAAAAAAAAI/AAAAAAAAAAA/iMZrWwanlWE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATDgL8ODQzDz5xkUwB2Z4Z5sHhBWhw4ssOIjx8gvq58t-zz74Mw6udBRF0zpmD1m7IN6K3VdjlnQz21aZmxoMwXbiKgg',NULL,'2019-04-05 15:33:05.843000','2019-04-05 15:33:05.843000',5,'Barbara Rodriguez','https://lh3.googleusercontent.com/-O48uLsjazik/AAAAAAAAAAI/AAAAAAAAAAA/_Vxbp9qaZ7Y/c-rp-mo-br100/photo.jpg','17898197009688164559',5778),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATexEsFGAWQsFPq7J88wYMeBtzbf1AI7jM6uy4d2eYormMmIep6kKxRxy1DwM7pYkLQ_6dwUUDPjBOmhOL8DE6dg_Od8','Dr.Omalley was a great doctor and very patient','2020-01-24 20:52:11.864000','2020-01-24 20:52:11.864000',5,'sage hazel','https://lh4.googleusercontent.com/-tvMSVAvDdBs/AAAAAAAAAAI/AAAAAAAAAAA/X89gbpOwWKQ/c-rp-mo-br100/photo.jpg','16389487648212004696',10186),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtJTeR8Klaz3TZDhPMifXaQRrYK2XfD_u3bYUQB-lg_FwN65ewFhosIvorhW90pbG0Qxo1SkJ64NnMR7CLVF7TZPcMHc','The experience was exactly what I read in the reviews. Mercy was so nice and made sure I knew how to get here. Mark was very nice an made me feel so comfortable. Great staff overall and fast and friendly service.','2017-02-27 17:11:24.887000','2017-02-27 17:11:24.887000',5,'lindsey cobbs','https://lh4.googleusercontent.com/-KG7m4-BdPOs/AAAAAAAAAAI/AAAAAAAAAAA/jaXuyvSTiQU/c-rp-mo-br100/photo.jpg','14904078213800803294',2398),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATKs6g2sCqCkL16etYZbnnkNe103OvfLZNihnEik-xvec-duMn55aHA4XMsZfc_JowBYLnyNN5iOUPcU4MO19DDgJZmU','Friendly and quick covid 19 results. From the time I arrived to the time I left with results was about 30 minutes.','2020-07-26 14:36:46.044000','2020-07-26 14:36:46.044000',5,'zac gunderman','https://lh3.googleusercontent.com/-DRPCaUtPZoE/AAAAAAAAAAI/AAAAAAAAAAA/awUnQxzsSO0/c-rp-mo-br100/photo.jpg','2077061009497551125',22835),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtKuJdpMYVnNbj8J5eCuoiIdx11S9kEPo840h7CbjW9AmeGLZHYH9361vEp9L0jzjsRIpyb__8dlnq5zecJTlfTegrho','wonderful service and quick as well!','2020-07-24 18:38:21.736000','2020-07-24 18:38:21.736000',5,'sara shafer','https://lh4.googleusercontent.com/-eQu9GAkddVU/AAAAAAAAAAI/AAAAAAAAAAA/7lLuFki-Xgo/c-rp-mo-br100/photo.jpg','16590124370714063921',22654),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtLPQxBNkSCQOlRe9ohZi32-t2oTCOYQifOq6j4euf1HohwLGIEEPNVi9xkp_7mxApBEP3jXLaJ4y76upLwF0JOhXQf4','I love how the Ana Estefania R welcomed me she took care of me with joy and grate ness \n Dr. SINGLA, MD, NITIN K He was good to me very understanding and patient dr so thank you \nNurse: Sarra E A It like she was holding my hands saying we are in this together . He advice warm my heart she made me laugh when I didn’t wanna laugh so thank you \nRadiology Tech: Sherwin P B you were awesome \nBest ER I ever been too didn’t have to wait for long time it was ASAP let go so I appreciate the hard work','2019-10-18 16:22:20.035000','2019-10-18 16:22:20.035000',5,'Layla Niyo','https://lh4.googleusercontent.com/-CMZEidaoyUo/AAAAAAAAAAI/AAAAAAAAAAA/MDBEVpYHYVE/c-rp-mo-br100/photo.jpg','12541597562633926366',398),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtmJqBqtrLVH2dm6ltIuTwcd5kmmfadbeFOnNeFSTzqqngXqgWRP_OZBqcckJy9WpyeZE1n-24djaLbawS-o8WMx3d60','The receptionist Vanessa was very helpful over the phone, and made the entire process less stressful. She was welcoming and answered all questions! The facility is amazing and is staffed with wonderful professionals!','2020-06-07 03:17:54.423000','2020-06-07 03:17:54.423000',5,'Lindsey Mayer','https://lh4.googleusercontent.com/-8ckcfGZ-W9o/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmQMUMoboGy7XeVl4nvUfXs2hUuMg/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21969),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATMOXs-808ZcDXH26xzyMJxqYWVtg7OQfS7hKC8oEibkjgl1Pexs481qAX1hehow7T7UKCdPO9SAsWAPJr-Ck2eL3qGM','Went here on vacation. Injured my neck and was afraid of being in a lot of pain on my flight home. Awesome fast and efficient service.','2016-12-18 23:50:23.560000','2016-12-18 23:50:23.560000',5,'Aaron Starnes','https://lh5.googleusercontent.com/-3sbz-vXR5eI/AAAAAAAAAAI/AAAAAAAAAAA/ZeDsD2pici8/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7916),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtObrMoYPqFoaIeLuvMrVY9PGRWa6Zs-Xp73yn5dW00eEEWK7V-RJw6XotPohXkMPFjm2y70uBS2TVENTM7t-46toTl0','Going to this SIgnatureCare Emergency Center was the best decision I have ever made. I had horrible stomach pains and they were able to figure out what was wrong with me quickly and effectively. They made sure I was comfortable and the attention I received was amazing. The care here is incredible, I highly recommend going here if you have any medical issues. Much better than any other ER that I have gone to.','2018-06-03 17:24:24.335000','2018-06-03 17:24:24.335000',5,'Martin E.','https://lh5.googleusercontent.com/-SkZkdhkbQXM/AAAAAAAAAAI/AAAAAAAAAAA/452L4NLAkyI/c-rp-mo-br100/photo.jpg','14567670160750071148',1615),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtrFVstrMLN8DIhOfMM5lDUmVNSftTNa-kz9lSfBmhxw0G3bXE-WVFczlE45jmw3OV6nQqe0N5i-pkOjBzlRJI4dQs8k','Came in for a minor emergency, was treated with expectional care. Dr. Thomas was amazing and truly cared about getting me treated and feeling 100%. ER tech Matt was super funny & made sure I was comfortable, and nurse Rachael was attentive and super helpful. Ashley up front had me checked in, in no time! 10/10 experience.','2019-06-14 16:47:32.387000','2019-06-14 16:47:32.387000',5,'Lindsay Robinson','https://lh5.googleusercontent.com/-_sPuYn01IFk/AAAAAAAAAAI/AAAAAAAAAAA/kGRgcvEjMLU/c-rp-mo-br100/photo.jpg','17898197009688164559',5700),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtS_kc8JsJNYAJ2Ed_6RobWpdJMThV5qCfNZCWdLWUVufnPxufS1BgfTZS_kc0NzWuRPuc07VAQMkvDkTJJnso3B0i14','Though they do not take Medicare, I still go to them for urgent care needs. They are helpful, caring, informative, and I feel both safe and taken care of when there. They let you know what is happening and keep you informed during your stay there. \n\nI will definitely continue using them when the need arises.','2018-04-11 18:54:10.020000','2018-04-11 18:54:10.020000',4,'Cat C L','https://lh6.googleusercontent.com/-kx-rICBK5to/AAAAAAAAAAI/AAAAAAAAAAA/O7SeEgTGu4Y/c-rp-mo-br100/photo.jpg','16891069708558046635',4488),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATSyq9Mw5_AdfotOdbiYtMKbaPpvod_RU9bYg7VMnU8cIK1sC2S_20GLTmZf63bG3d1a_Q1s4ApM0xz5YL7SU9W91RXQ','Amazing service I was in 5 minutes. I would definitely come back very sweet people.','2019-11-08 01:12:34.237000','2019-11-08 01:12:34.237000',5,'Jennifer Montiel','https://lh6.googleusercontent.com/-x--19p43BR0/AAAAAAAAAAI/AAAAAAAAAAA/iZYeZ0wk2kA/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1199),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATuHK3JSSOeum18rRDI98UA8_wOnEb72Nwe27cNPqR0TpPi4Cc4ww1UcBmVEuAxT-NyzWotz3eSHN5s08BJZ9vR8koCQ','I am very grateful for the whole team at Signature Care ER on I-10 @ Wirt. Dr. Jolly was great, as well as Jonathan, Rita, Kelly, and Adolfo. They even loaned us a phone charger and were full of snacks! I highly recommend them.','2020-02-17 19:56:07.547000','2020-02-17 19:56:07.547000',5,'Brandy Demeris','https://lh4.googleusercontent.com/-d5mj9U2I47U/AAAAAAAAAAI/AAAAAAAAAAA/ui_yF2J6hTI/c-rp-mo-br100/photo.jpg','14904078213800803294',20993),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtV8nNrh34ndHyu6UcDdCm46O9Vb7IWQOrRFNbBXVmkggHRRYJbpfk3HOolMEZ9In3T2jta8FMY_Ff66TcaYVMRJoSuw','i took my father over here ,and i was really happy about great the service was, they took great care of my father ,all staff was really great,Ashley at front desk hlped with signing in and she was very hlpfull and hlped us through all our stay at emergency ,jessica gave me warm blanket cuz i was cold ,that was too kind of her,and olusola hlped us getting comfortable at explained the procedure ,so that we dont panic ,she was wonderfull person and doctor patel was very polite and he explained the results of scans and other problems my father had with full explanation and he listened carefully to every problem my father was facing and hlped getting to resolved,so this place is great with well maintained equipments and very caring and friendly staff','2019-03-23 14:45:33.614000','2019-03-23 14:45:33.614000',5,'Neetu Brar','https://lh4.googleusercontent.com/-31aKbiI-qd0/AAAAAAAAAAI/AAAAAAAAAAA/hEmhsz9W29c/c-rp-mo-br100/photo.jpg','17898197009688164559',5796),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATVJU0XQ9dCt3mqtLrLEqXp4ovNkw8KIMEtTa6LnRvXd-gnGOJiOgL56nWQiDzA1giqWdmRxPMwE3rJus26quFQWMSrs','Came here early in the morning and they checked me in within 5 minutes even my papers weren’t ready they still checked me in first so there was no hustle with paper work. Maya and kristina were really friendly and dr gola is the best . He was really informative and took the time to explain to me everything and kept checking on me . Facility is super clean like super clean and very nice interior','2020-02-26 14:58:35.455000','2020-02-26 14:58:35.455000',5,'Lalo Abdullah','https://lh5.googleusercontent.com/-K9YfDcIjDuk/AAAAAAAAAAI/AAAAAAAAAAA/Q026f6pR2yc/c-rp-mo-br100/photo.jpg','12541597562633926366',13340),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtVJxr-uq0skItjNbw07Ghj17LTUgCUclD4C1bHWVkKdjVfvfNw4yikJUppXlYP7Q8dGn5nh2WWN1ey5QoiNYHOwBY-U','Quick, great care from everyone involved.','2018-09-10 15:28:08.482000','2018-09-10 15:28:08.482000',5,'mmiklaw','https://lh5.googleusercontent.com/-fZcoecWUIWM/AAAAAAAAAAI/AAAAAAAAAAA/ErG-XacLKl0/c-rp-mo-br100/photo.jpg','16891069708558046635',4433),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAtxdzLf2o0r6gQYuGiko7jkI1lNI_f_wV7bJVzIIiax7PiuKQRbRgYuVu04oDy2WUjimHvom8OgB8dSvniDCFa4z8WaA','I had a very awesome experience in my first visit to the emergency room at Signature Care. It is the first time I use an emergency center like this and I am so happy I did. Since I arrived at the center ( It was free parking and close to my house) the receptionist, Elizabeth, was very kind and attended immediately and resolved all my doubts. I didn\'t have to wait long when Jennifer, my assigned nurse started calling me. It was fast even I wasn\'t finished ny paperwork. Dr. Appiah arrived at my room I had immense pain in my neck and back that wouldn\'t let me walk or sleep. Dr. Appiah ordered some CT scan exams and gave me pain medication. I would also like to mention to Fatima the radiologist who kindly did my exams and explained the procedure to me and also she, like my nurse did, tried to make me comfortable during the exam. The exams were done immediately. The doctor valued the exams and gave me medications in addition to referring me to a neurologist. This has been my excellent experience in an emergency room where staff work in a team efficiently and professionally, and I received a very good fast personal treatment. I want to thank to all the professionals working in a place like Signature Care Emergency Center.\n\nIrma Duenas.','2019-10-15 20:08:30.409000','2019-10-15 20:08:30.409000',5,'Irma Duena','https://lh6.googleusercontent.com/-AaKzvGIm88w/AAAAAAAAAAI/AAAAAAAAAAA/vAW-SxOclWg/c-rp-mo-br100/photo.jpg','17898197009688164559',5505),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATXWoeDLNTXVHw6-D2FuthYT_3tjml7CwSUpv6wpskugBTySEOvsCFMI2Pp_6GSwJUvo28oUMB07ECesvCuyXW9UF3AU','Dr. Ybarra, RN Katrina, provided awesome care!!! They was professional, clear directions and treatment! ER Tech, Cedric, Rad Tech as well as the Receptionist Thersa, all made the patient and my family feel safe, pleasant, offered snacks and very supportive at this location!\nThanks!!!','2020-01-04 02:43:39.296000','2020-01-04 02:43:39.296000',5,'Barbara Roberts','https://lh3.googleusercontent.com/-sS5_t1GfF_k/AAAAAAAAAAI/AAAAAAAAAAA/pS8u8Wvw6ZQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8657),('AIe9_BFhqAtkXvUqdYNeMuBBGjaATY0FSBXj0Om6moAiJkATJE6YQl2qtlip7JWWl9KW-JId6BQzoaH9kiVREW3MZ7zxc9wSdakRSmeGzz3HjKkZTWEbI5E','Great experience! Very quick and absolutely no stress with fun staff Cody and JD 🥰','2020-08-03 22:02:51.977000','2020-08-03 22:02:51.977000',5,'ірина ліщинська','https://lh3.googleusercontent.com/-Dz2l7H4Ghio/AAAAAAAAAAI/AAAAAAAAAAA/M4mPuyN78D4/c-rp-mo-br100/photo.jpg','2077061009497551125',22740),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAu6g_khSyEjc03J5uOxwHbgsoqORI3lrJH4oj7yel9Cj4vhFxttGCEu7k4r5SqrXnEOEXIDMeWs-2833w1cCiovrHGZs','Very good service & front desk receptionist wonderful help us','2019-09-15 05:17:51.007000','2019-09-15 05:17:51.007000',5,'Sohail Khan','https://lh3.googleusercontent.com/-Z0PX8jn3FpQ/AAAAAAAAAAI/AAAAAAAAAAA/fHkMnnNPQrM/c-rp-mo-br100/photo.jpg','8918455867446117794',9069),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAU6mWX0ZyXfqTqEnn4-N_2Tsl05CtA17U1rAzTJsX1mYwSZ5UezxKU1tAEWx918h4vMZcliO3id-F5WDEzmb8XwoMnwA','Expectional service from the front desk to all the clinicians. I was seen immediately, provided a thorough work up with CTSCAN. My interaction was with Therisa, Cheney, Katrina, and Dr. Henderson. I called before going and felt reassured with knowing they could do a CTSCAN and if needed would transfer me to a hospital. As a nurse that has worked in the hospital I was beyond impressed by how clean the facility was. Thank you to them for discovering all of my issues. I’m grateful I am empowered by knowing what was going on with me. Thank you and God Bless all the staff.','2019-10-30 00:35:51.166000','2019-10-30 00:35:51.166000',5,'Trezlyn Williams','https://lh3.googleusercontent.com/-3_47kah0P44/AAAAAAAAAAI/AAAAAAAAAAA/PTYI16o0prw/c-rp-mo-br100/photo.jpg','8679688254631342173',8761),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAUB0VBvYg2xIJwLgl72P4kNR9nRQOhWCjW6TGDudlBrTn4fnfvXi1-BZZK9zixjx36JpOf0_freWYBzMMCd2GTKJWraA','Came in at 5 in the morning, staff was very nice and attentive, clean facility, and the Dr was a very nice and caring person they kept me comfortable while checked in, don\'t have insurance but they don\'t even charge too much I was expecting a way higher bill I highly recommend this clinic very pleasing experience ','2015-09-01 13:16:30.949000','2015-09-01 13:16:30.949000',5,'tatman Brown','https://lh5.googleusercontent.com/-MmbKOafOlwc/AAAAAAAAAAI/AAAAAAAAAAA/Hmxh0rOxpG8/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5293),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAuFlljZvKZ4p5j-oL9IFy1mJ9PDeFxN8h0W_CHyaWjBCCk7dZIjqfPAGfoJmihJGovDcKvfug5d_lPMiwxK7mtWH8APg','It was good great care and it’s faster better than midland memorial hospital and all nurses being concerned with my issues and I thank everyone and all doctors and nurses very appreciated and I’m always coming back if it’s happened again... thank you for all you do','2019-10-16 01:45:51.077000','2019-10-16 01:45:51.077000',5,'Jay Davis','https://lh6.googleusercontent.com/-anIBy8d5Wuk/AAAAAAAAAAI/AAAAAAAAAAA/2fTCs3zmOEg/c-rp-mo-br100/photo.jpg','13486358490203335051',775),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAujJOejfYnTv_l6JDIwsKXhMJ5qoN3an_82OJUf71-mba6fh_8i2LVXncjCdynEexQ04wQBZpowAdJH8AvULJmQt3GV0','Went in immediately after I had a seizure got seen RIGHT away the staff was very helpful and so sweet and attentive to my needs I recommend seeing Dr. Wang RN Rachel and Ashley S.','2019-09-06 18:05:26.614000','2019-09-06 18:05:26.614000',5,'dana Coleman','https://lh5.googleusercontent.com/-yrIVXkzOiOA/AAAAAAAAAAI/AAAAAAAAAAA/4kLM9GEvKjk/c-rp-mo-br100/photo.jpg','17898197009688164559',5557),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAuMP0ruv7wXepBsNzLJPXoqp6p3PLPHnVN8DQpHHaB0LkzEnClK_XBKnEGNXYXs5UX0FvdNLav_bJowaOxFVu-2L3z0s','Lucas, Kim, and Sherri were absolutely amazing!!! The care was fantastic!','2019-07-23 17:28:59.480000','2019-07-23 17:28:59.480000',5,'Emily Fuller','https://lh6.googleusercontent.com/-iWjlQ6G0M30/AAAAAAAAAAI/AAAAAAAAAAA/rwcKkj4EwtA/c-rp-mo-br100/photo.jpg','3272657195432704501',6932),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAunjGUGG9np5Sayk2gDtcuvfAD_Ks7qyHGknc-3j9I1633jCNq8OI77lyL5eViu7vWC7qpVe7yfw24zaUIXYQJdnyqhA','Tested for COVID at this location. They accept Blue Cross Blue Shield. I reserved an app online and was in and out with my results within an hour. Everything was swift, clean and respectful. Great at social distancing.','2020-07-17 20:27:58.507000','2020-07-17 20:27:58.507000',5,'Evelyn Flores','https://lh3.googleusercontent.com/a-/AOh14GiyniS3RYqQrQL2SQ64n2YU2AyrCHUnk3r-MF39=c0x00000000-cc-rp-ba2','3511292162159714121',22163),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAuPAHDkXa_OM9Y4dR2E-w3CTnO1dQRFbVAyg22vxlVk3e-13ixa_G5pnnuHJPNmcT9pjeK5EBOlZ3b2sLKhCXYSx43IM','Sindy was very nice and got my niece seen fast and the nurses and doctors was also patient and didn\'t take long I like to thank the staff for helping my neice Doctor Singla Nurses Reginna and Mayra Rad Tech John and Tech Natalie','2019-09-04 22:36:23.045000','2019-09-04 22:36:23.045000',5,'Evelyn Mitchell','https://lh3.googleusercontent.com/-L_L2kcK1A4w/AAAAAAAAAAI/AAAAAAAAAAA/yrvU2dwwAJY/c-rp-mo-br100/photo.jpg','14567670160750071148',1251),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAuV1agfi1YyM2920TlwYK0AX5B0m-yxHU7LyTP4l_J38AMqsjSKZLxbL5Dmnc1ioLkkqYTuSY6qDXJJbchbTfKotgqEo','My experience here was above amazing!.Mrs.Jocelyn was very nice, Dr.Appiah and Mr.Brian both are very professional and patient I recommend anyone to come here. No wait time and the place is super clean!','2019-10-09 15:24:12.958000','2019-10-09 15:24:12.958000',5,'whitley williams','https://lh3.googleusercontent.com/-XvoLdWPoDHA/AAAAAAAAAAI/AAAAAAAAAAA/R7Amqj5e9wg/c-rp-mo-br100/photo.jpg','16389487648212004696',2843),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAUxfpBMC-tY0511q1ljvaLeYrMCcuxTnu7d97YYFUxv-suDZvoAC4hrL3AMmxhTSsFM1vpiByC8UikqeM5oCF-VEPli4','Fast!!! And very informative.. Doctors and nurses are extremely friendly Will be back if needed','2020-02-04 00:48:23.332000','2020-02-04 00:48:23.332000',5,'Shandi Rogans','https://lh6.googleusercontent.com/-rWJzzjV_H9Q/AAAAAAAAAAI/AAAAAAAAAAA/FjGCzW6UeIY/c-rp-mo-br100/photo.jpg','2694018788013845459',14254),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAuxGsALNwMlplg34p9ujz4cr9zD0pOtxHw515_c_vlot4HWZPf1lFfZLdSn4oLx3LLx0fVtYxrX9WwTwVaUjyECU77ww','Staff was wonderful, they really made you feel welcomed and everyone was so attentive. I went to a different urgent care prior and they were so unpleasant and made it seem like they were too busy. \nI think many urgent cares should really take notes on signature care and the AWESOME hospitality. \nLast day of my visit Dr. Singla, RN Hamza, ER tech Olivia were great!! Thanks again. Would definitely recommend anybody in need of care to come here.','2018-11-01 14:19:18.763000','2018-11-01 14:19:18.763000',5,'Jorge Eucede','https://lh4.googleusercontent.com/-ZB3od-r6dQ4/AAAAAAAAAAI/AAAAAAAAAAA/xy42oNMJ3HM/c-rp-mo-br100/photo.jpg','3511292162159714121',7564),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAUXOFBiezhCs-Oz03v8lq-DP-4P3tBgRGFfUYmv81b7ucIRa3gg9emMbbEQohSSjvpavMyvfjhOy-yVOqcMDhuNb6tfg','Had a great visit with Dr. Thomas, Jaime and Carolina. The receptionist was very cheerful and a wonderful person. All smiles!','2018-11-30 03:57:31.091000','2018-11-30 03:57:31.091000',5,'Monica Reyes','https://lh4.googleusercontent.com/-FK5UJeO4Nuo/AAAAAAAAAAI/AAAAAAAAAAA/MOK_gPhAEoI/c-rp-mo-br100/photo.jpg','17898197009688164559',5918),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAUZngS3AS4K1h9IwsZ_dwr7LioG0H_TsrSWfg6VFRZI3hk2FuCK2vP22ARkKFySEVOazmZIUW-bANPXrVRYhpDCHtvm8','Highly recommend! Quick service and Courteous staff (Dyveliz)','2019-09-29 01:51:44.497000','2019-09-29 01:51:44.497000',5,'Alexandria Jefferson','https://lh3.googleusercontent.com/-wE3-7rJGc_0/AAAAAAAAAAI/AAAAAAAAAAA/nRjJfR6zkj0/c-rp-mo-br100/photo.jpg','16590124370714063921',3169),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAV-enClt_C3zHq6LnW9FjeKg46JPnZoP6J_W3Xdf4unMkV1w6E5c4eJdF-mTt-kjHY-mA-GBJRfDrfijl_rkncggIhyM',NULL,'2020-02-20 17:03:09.001000','2020-02-20 17:03:09.001000',5,'essie johnson','https://lh3.googleusercontent.com/-6rkD6QHDH6k/AAAAAAAAAAI/AAAAAAAAAAA/-yDdUAXTYAI/c-rp-mo-br100/photo.jpg','16590124370714063921',13837),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAV46bdmSGWCUIqGj7n2ymI3zuTq2DJ_ZM6w_fFGOruoYpS220hBNdCZ7wPfVGgVEBliYnmdDcxlevmqEXqQRbobs4luM','Came here for an unknown pain. Dr. Nguyen was quick to help determine the cause and explained it thoroughly. Tests were done quickly and effectively by Kelly. The staff was very helpful..Alvean and Jordan helped us feel comfortable and less anxious during our visit. Patricia at the front was a great help from the beginning to end!! Overall we were very satisfied with the experience!','2019-12-20 18:26:09.495000','2019-12-20 18:26:09.495000',5,'bryan guevara','https://lh3.googleusercontent.com/-gRjwzAlFw5A/AAAAAAAAAAI/AAAAAAAAAAA/dSgJ2C7LzbU/c-rp-mo-br100/photo.jpg','16389487648212004696',2523),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAv4DuDmwxoJL5EntgzfAddBpb4nfev3-L8eJPf7ZZjiDDvTYebC87sKciiFtbGdpO98AfNR9SJoqnqxSxXWLA9m9XHSI','The experience was excellent ..very satisfied! Keera was very helpful and nice.','2019-05-30 17:08:59.195000','2019-05-30 17:08:59.195000',5,'Lina O.','https://lh3.googleusercontent.com/-oUhWh6fHioA/AAAAAAAAAAI/AAAAAAAAAAA/39tmwcxxgJs/c-rp-mo-br100/photo.jpg','17394740196501090048',4678),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAvdUoXDzhsdhcSHts2wouzmlrFPMlbB63vVKzceKLBqLqwHML2zZ6S8ec4vXYr6dXl9gGk3jhphQ7cqVPQzN2frbujy0','Great service and very friendly staff. Dr explained everything in detail to me. Nurse always checked on me and sonogram tech was very friendly as well.','2019-05-22 18:17:37.206000','2019-05-22 18:17:37.206000',5,'catherine vargas','https://lh4.googleusercontent.com/-bISdYqWVtLk/AAAAAAAAAAI/AAAAAAAAAAA/ELE303YqLG8/c-rp-mo-br100/photo.jpg','6521947413723274945',8261),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAVery6VJLxW8-W9STchpLE66bRoR5BaZIpa1zmBPU27GmJbh2KUb2pA41MSv4Fvoi80oXncrGTkK0Mh6uwowr5gpP804','Everyone here was very nice and took care of us! Tanishia in reception really knows how to handle patients of all kinds and was very thorough in explaining our benefits and other administrative details.','2019-05-01 03:40:47.208000','2019-05-01 03:40:47.208000',5,'DJ Husted','https://lh4.googleusercontent.com/-g3AbRM8RHb4/AAAAAAAAAAI/AAAAAAAAAAA/wLKNAAiGzM4/c-rp-mo-br100/photo.jpg','17898197009688164559',5754),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAvgEDuxXYaHB3bLJJ6ZmjIHpVURSB35JDho6qzWvxG0AriSWRBDxdYgwX9WU9FtzHKNPAsRlMakMbZffe6OJwsQszIro','I have been to this location 3 times and every time the care and service is excellent. Today I saw Dr. Edwards, she was great, she had a great personality and knew exactly what to do for me. The wait time was short, the front desk/checkin process was easy. All the nurses Karen and Rachel were very sweet. If you are in need of urgent care and near Hwy 6 you NEED to go here.','2019-04-24 00:23:14.085000','2019-04-24 00:23:14.085000',5,'MzDup','https://lh6.googleusercontent.com/-uhsg4Ln-ep0/AAAAAAAAAAI/AAAAAAAAAAA/weHQ-1uZELY/c-rp-mo-br100/photo.jpg','17394740196501090048',4684),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAVGGsJsh14wk3t4ll_tvEqjRCnuzmryr1MMrb8jYgwHFPw_H8AZjjZmVeMXF5tsycPsjf_ZE_MaIExEP5t6SzoNTG4x4','They have a great staff. And i mean specifically Dr. Boester, Churiah, Gina, Ke\'Aire, Dion, and Anastasia.','2018-09-20 01:13:05.446000','2018-09-20 01:13:05.446000',5,'Lord DGP','https://lh4.googleusercontent.com/-d6il7RL7Drk/AAAAAAAAAAI/AAAAAAAAAAA/yhHqvS3ZEEw/c-rp-mo-br100/photo.jpg','3511292162159714121',7592),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAVJheV7TtTWfU1IcIIC0V_BNHIVDRQnSJy5oyd-n7Fc0czBo2IPR6k8zqHyb4T96l7XTTLBz0mRKFFIwU3TfoFGHhsFU','Went in in the middle of the night for one of my children. The service was friendly, fast and welcoming. Anthony RN, Kathleen & Dr. Harjai we all very knowledgeable and made sure my son got the best care needed. I’m so pleased with our experience!','2019-06-19 12:11:49.070000','2019-06-19 12:11:49.070000',5,'Sana Williams','https://lh4.googleusercontent.com/-PIbdi9dl-hM/AAAAAAAAAAI/AAAAAAAAAAA/Vijcj-R5Q-Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3345),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAvK4BpEj7oTtvEzLi5CE2JVbG7CWKk-8rKrmruciTRKC2fo0cY4WeSXjUPAvMfJ7bhqFP2-Hpag7KJ9VwygwW2A2A9sY','Much better than going to an emergency room at a hospital. FOR SURE. They have almost everything in this facility to investigate the needs of those needing urgent care.','2019-12-08 05:04:11.675000','2019-12-08 05:04:11.675000',5,'Corrie Griffin','https://lh4.googleusercontent.com/-f7Fkco70c-I/AAAAAAAAAAI/AAAAAAAAAAA/Z1kwc4u2EaY/c-rp-mo-br100/photo.jpg','16389487648212004696',2566),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAVlrvPT9XqxFi9ME-SrJdnJMLZ8NMrijCFB-kg_NAqxtbQkxGcLB4RTDO6e0aj8iBPQwRfak6z_PD5Oj8ZWhudj88Tuo',NULL,'2019-11-30 20:36:43.091000','2019-11-30 20:36:43.091000',5,'Harvey Gause','https://lh6.googleusercontent.com/-vxHlmPNAkGw/AAAAAAAAAAI/AAAAAAAAAAA/_gMYBRuzvco/c-rp-mo-br100/photo.jpg','16389487648212004696',2602),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAvmATngm487MhpUexDPt_BZyrF2b5zyRI6KwCffRnNgBl1CgIhaZvYUAkTjjHZGTmgq7FsPWNxAC7BGZJ_1UHS-RU8b4','Very friendly staff Tanisha w. Was great and very helpful with registration and Dr. Thomas and the nurses jaime o. And Carolina E. was very helpful and nice.','2018-12-05 01:40:14.407000','2018-12-05 01:40:14.407000',5,'Sammuel Johnson','https://lh6.googleusercontent.com/-kMv0W5Gl1Cs/AAAAAAAAAAI/AAAAAAAAAAA/mBnc6pGffsM/c-rp-mo-br100/photo.jpg','17898197009688164559',5916),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAVrLBN9N9CH2xOl18Y7LnHpbNWV5iwRZfVy--zkxpqlhYojOo97gRM0iTCF0Hx6-f13vdP8-yx0UEE4SeyFIFWRfrISs','Everyone was very professional and caring. Was great. Especially the 3 am shift Nikki as well as the 6 a.m. crew Dr Pham, Alvean, Michael, and anyone else I missed. Just wonderful fast friendly service all around.','2019-06-23 15:33:09.978000','2019-06-23 15:33:09.978000',5,'Janice English','https://lh5.googleusercontent.com/-y8wjmw45fmM/AAAAAAAAAAI/AAAAAAAAAAA/lXvmn7tRpdA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAvtFhKvG-IkmyfxhTP2NHHIKYa2RnG72joe9Jl6AYBw8Q_hTMrN8RMZt4qGxJ-gt-2eUGtSGszfi55ZSUem-rgRvjj2I','Dr. Ortiz was thorough and took the time to talk to my urologist before deciding on additional test.Kristina displayed her professionalism and extensive experience. Laura provided great service and customer friendly. John was very focused in drawing blood and made it look so easy. No pain from the needle. Overall patient friendly.','2020-01-18 20:09:55.214000','2020-01-18 20:09:55.214000',5,'Sterling Perezly','https://lh4.googleusercontent.com/-JkzZjcKadzo/AAAAAAAAAAI/AAAAAAAAAAA/ggWUn3-K8vE/c-rp-mo-br100/photo.jpg','14904078213800803294',13627),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAVugPYp7EpEppeqad2t09q2of_5q8kG2kEoe6lOZRefGDjg3eAf0YQKvNuEyzS5HSCGtRQfhb4bNMYHapM2wpQ0L_mJs','I came here for my COVID test and everyone including Dr. Angela was very kind and helpful.','2020-07-18 21:44:54.291000','2020-07-18 21:44:54.291000',5,'Nesalita Rodriguez','https://lh6.googleusercontent.com/-AhtNxesaVqE/AAAAAAAAAAI/AAAAAAAAAAA/QBEMkqdIKcQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21720),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAVxBzueTZkGRPFNE-c0_g-ritabdGgy5MRe3DIAvPCEHunKOHsZDJrXROuazmn8ufe_3fu7iyTj38KgMjv93JVwYcz7M','I came here after an unseen event. I was really freaking out but I was taken care of by Dr. Edwards, Selina, Janet, and Alyssa. They were very caring and solved my issue quickly. I didn\'t mention on my visit that I\'m a Registered Nurse at a local medical center so I know how patients should be treated and they did a fantastic job.','2019-01-04 20:22:05.895000','2019-01-04 20:22:05.895000',5,'Allena Davis','https://lh4.googleusercontent.com/-QLN7VJKOBBg/AAAAAAAAAAI/AAAAAAAAAAA/X3mJT41_SfU/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4749),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAVYUJBPUjYWrna050yNBT8YLojkE8M6xf3qTMlq8DnPjcdLQCtni-p8JYCzxXIEj9KdfLUXz6WeSPy43xtNuJUkWYQ4A','Thank you a million times over. I am so impressed with the level of care from the staff. Dr. Garcia Ms Brenda and Chris were my first team members to help me. They made me feel comfortable, cared for and informed. I highly recommend them. I have been to many emergency rooms but this one buts all the rest to share. Two thumbs up. Thanks again','2019-03-10 09:36:20.805000','2019-03-10 09:36:20.805000',5,'Mary O\'Connor','https://lh4.googleusercontent.com/-dxgmTp11AlA/AAAAAAAAAAI/AAAAAAAAAAA/aJ-tddsSd-w/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9159),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAw9D2wzoq2us2mDyMCwnWyW8QcxT-_fWr4LsllMOf9wQaS1t2GcOgrVAjLZPNNEzvFWcPnFO_TPZPl0gzYVWUzby30nw','Clean, friendly and fast! Will recommend this ER to anyone','2020-08-07 10:45:05.690000','2020-08-07 10:45:05.690000',5,'Mckenna Skeen','https://lh6.googleusercontent.com/-Bf92y5RE0jY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckulmsYpmSueQG-M96_zYnNKzgUJA/c0x00000000-cc-rp/photo.jpg','8626688543755174284',22231),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwbI-DlTUwT9AEZNyQYXpm4JpTpetmdJk-UNPOk9jvkftqQiuxsSFubn3k4oPiURjAFtnFPnlpFejTMP_W_JjVf6Mfek','Very clean facility, Dr. Ding, rad tech: Rick F. Nurse: Blake H. And Ashley S. Took very good care of my friend. Was the best and easiest staff I\'ve experienced','2020-02-01 17:03:13.677000','2020-02-01 17:03:13.677000',5,'Geoff Lary','https://lh6.googleusercontent.com/-ZWSgKFTKuO0/AAAAAAAAAAI/AAAAAAAAAAA/XUSn93_I3NE/c-rp-mo-br100/photo.jpg','8679688254631342173',14768),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAWbP7HhgcUQBfcm8rpmrcTR-x9yaFpUP1Dn_PUOnVECapQIeJhiSDfnFr89t4WtwybIHH3erEDvXhV_Y6Ev0fyQvZV3s','Tiffany at the front desk was so welcoming, made us feel safe and that our needs were their priority. Jubril was knowledgeable and took care of him efficiently and with great expertise. I will go back if I need their service. No waiting!!','2017-10-14 18:46:41.632000','2017-10-14 18:46:41.632000',5,'scherleen williams','https://lh6.googleusercontent.com/-vWFe-Ba37x4/AAAAAAAAAAI/AAAAAAAAAAA/vrAWMEr7HUg/c-rp-mo-br100/photo.jpg','17394740196501090048',4949),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAWcDjyMg_W-ahWELazNcjGAZPmnyXmVeQ65uenJcmWAt_DCiphmkcx_p45ImUKrV2ruZVLYeKT0TPcBBmFQePTkIcaFM','Medical care was fast and very professional. 5 star treatment given by Jose and Kim, RN; Allison, Radiology Tech; and Dr. Diaz. Very satisfied with the services received and highly recommend them for your emergency care.','2019-06-23 01:10:47.588000','2019-06-23 01:10:47.588000',5,'Murilo Vasconcelos','https://lh6.googleusercontent.com/-znniB0G7DHs/AAAAAAAAAAI/AAAAAAAAAAA/FwU6tGlINPE/c-rp-mo-br100/photo.jpg','13486358490203335051',936),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAWdGDAS4sqJdKeHXs4zXfMyYhNyDuY7ebiGMlbotZKka2AlkLx6erM0U9JIEeEezaLlLR0lGmjbX4LiUK03KWq3dX8F8',NULL,'2019-01-08 15:13:30.499000','2019-01-08 15:13:30.499000',5,'Tatyanna Tyson','https://lh6.googleusercontent.com/-i4mOsYQBer4/AAAAAAAAAAI/AAAAAAAAAAA/fWruKszYrHs/c-rp-mo-br100/photo.jpg','8626688543755174284',8597),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwDj2qtLQSgdMnT4DftsLZj6Kh9anD1ZEdf6y17sD46rpyM9u-bF8t3CG9GJKROg4Bz9t1BgFmYopjXUphJAxoBQ1oW8','We went and got tested today and we had the most wonderful nurse her name was Magaly! I highly recommend her!','2020-08-01 15:45:54.225000','2020-08-01 15:45:54.225000',5,'Analiyah Fox','https://lh4.googleusercontent.com/-PeeB1ZBJGUs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm4gB6n-apbzzGkUs05JifN_QubGg/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22201),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAWe8oYpKRbV58gtMZandZXnPng9CNkjg0QurrvCNm3O6rR8i6wrmgauTau3swAIgsic7wdR44BGkOe5I5MfcZtjpKtR8','I had a very good experience, way better than the going to the hospital. They were very prompt, I was in and out in within 20mis .\nI was checked in by Maya , Nurse Larq and Dr Singla.','2020-03-12 10:15:13.741000','2020-03-12 10:15:13.741000',4,'chris pepple','https://lh4.googleusercontent.com/-QU6O_RJL7X8/AAAAAAAAAAI/AAAAAAAAAAA/V_PhEXBMQbs/c-rp-mo-br100/photo.jpg','12541597562633926366',20909),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwFbiNzdzH1DQDj9pc4KOwmDnjVaI0CXCqcxnhIfiE40YAjKbeWEb4sPzOuICxyS8oSBHrjcfOQiBpqlNphNa4wV8Apw','My boyfriend came in with a flu and the doctors and nurse were very helpful and caring! My boyfriend had the “man” flu and they were VERY patient with him!','2018-11-06 03:37:03.806000','2018-11-06 03:37:03.806000',5,'Daniela Flores','https://lh6.googleusercontent.com/-7M6S76bw1p8/AAAAAAAAAAI/AAAAAAAAAAA/keey0wvvItM/c-rp-mo-br100/photo.jpg','16590124370714063921',3665),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAWI9xGGdNeo5qsoEbo9d962rlJGnEi793kohY-_bqxdZwbQbNLp2anshJIyMIcVaVvmuazIAoHtac2UE_w4o3eYYojG0','The check in & stay process was very organized. Grateful for an awesome care team! Lorena, Dr Vakey, Jacob, & Jr.','2019-11-29 19:03:37.785000','2019-11-29 19:03:37.785000',5,'Janelle Pace','https://lh3.googleusercontent.com/-xMmDrFrbc40/AAAAAAAAAAI/AAAAAAAAAAA/1PO_zcTEzvo/c-rp-mo-br100/photo.jpg','16590124370714063921',3066),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAWiGoyEqXHS2oY0xy07vAzVULs9Kg3-CKiK2Wsf_jgIvbRO8p6FZsGCeOdbZIAOFoaBslsTxrmUAEIBH7UM1uOrLZrqs','This is a wonderful Emergency Center. Dyveliz, Lindsay, Rebeca got us in immediately. Rebecca was the tech and Jeri the RN was very helpful and caring. Dr. Morrical treated us immediately and was excellent. The standard of care is phenomenal and exceeded my expectations.','2019-11-01 00:09:53.717000','2019-11-01 00:09:53.717000',5,'Humberto Cardenas','https://lh3.googleusercontent.com/-csP6MRAiaDs/AAAAAAAAAAI/AAAAAAAAAAA/A6ZswsCTZSQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3114),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwKT94PKFjBJo9GQTi21cA-o_rMne-P4IRh_5X0ws5XZWs0luMqevj4xc4fxhpY8fdhZ5nP5U_rKMPntSA0gMjsyZuB8','Great care, very courteous and always kept me and my husband informed!','2018-08-25 00:11:56.331000','2018-08-25 00:11:56.331000',5,'Ivonne P. Orozco','https://lh3.googleusercontent.com/-9ALsbXBBZT8/AAAAAAAAAAI/AAAAAAAAAAA/dLkRwXS1CtI/c-rp-mo-br100/photo.jpg','14567670160750071148',1556),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwlHmVi6QGRDaUa0T_DuaE7RrV-nbnLxczMY0FQeyDZ2DadO9q1lmltmbg-_-EvtPJweQUwnJh54GKtD4uEMrjLtqJlQ','All of the staff at this location are so helpful! Susan and Matt were very kind and accommodating as they asked questions and checked my vitals. Doctor Pham was very understanding to my needs and concerns. He also gave me good advice for future reference. Overall my experience at this er center was lovely. Would recommend visiting if needed!','2019-08-24 02:37:35.659000','2019-08-24 02:37:35.659000',5,'katherine galan','https://lh6.googleusercontent.com/-WddMOJqjnQM/AAAAAAAAAAI/AAAAAAAAAAA/Um1pOLO5hqE/c-rp-mo-br100/photo.jpg','17898197009688164559',5569),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwmfThrsyH0dFGNQFLJQ6728iFLABlusF97xESw_qSLyGbNuq_QiCbee1sRG772SPDPqBxsnjKxSX-0rILNaEXJTU-DQ','Thanks to Dr.Appiah also Nurse jani W, Radiologist Tricia B and the registration person upfront Elida you all made my experience there amazing thanks for all of y’all help thanks again so much.','2019-10-17 15:27:11.399000','2019-10-17 15:27:11.399000',5,'dominique bishop','https://lh5.googleusercontent.com/-MwNYWTHo2io/AAAAAAAAAAI/AAAAAAAAAAA/AIBDgx3hYZk/c-rp-mo-br100/photo.jpg','16389487648212004696',2807),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwo-Y1VnXjFhyPed_w1adlbDx6ENEXtzmcrmE9NA1ra_Y0ei4d2a1m6uovICZorAhNBmTNphpOOs52esUhPSpzE-gUAs','Staff was friendly . The visit was cheap and fast , came in and left in about 15 minutes. Great treatment towards costumers , highly recommend this place. This place looks great too.\nDr: Golla \nRn: Fanny \nReg: okarys\nRad: Janet','2020-02-05 19:28:45.935000','2020-02-05 19:28:45.935000',5,'Rawan Al Hita','https://lh3.googleusercontent.com/-VN0tdrKUzBg/AAAAAAAAAAI/AAAAAAAAAAA/L6kjteg_bdg/c-rp-mo-br100/photo.jpg','17394740196501090048',14036),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwPG0bIjwk8dswfJ2fF5FvXRTgUOcthRwbWMSDyGhEbIhtOY5MTYgGBQrASy0nZC2F5ITUyXxcIneOlx51YfK5ZVs2lI','They took very good care of my daughter. Clean, friendly, quick and efficient quality care! Would highly recommend','2017-09-07 12:36:47.580000','2017-09-07 12:36:47.580000',5,'Nancy Davie','https://lh4.googleusercontent.com/-cJxLDJKsvCM/AAAAAAAAAAI/AAAAAAAAAAA/l7V3JQnPZnQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1760),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAwWKyzzwdTPpui5C2Ru8iRKIiV-jUHzgS3U33me-mgyXJaRPbtPMj0Gy3T0CO9XC8Je7kYAruCuXGIB6zlBX4RfEVwQM','They were very organized, clean and friendly. Only took about an hour from arrival to test results!','2020-07-21 04:00:44.539000','2020-07-21 04:00:44.539000',5,'CHRISTOPHER NOE','https://lh3.googleusercontent.com/-ngGtu14Zkxg/AAAAAAAAAAI/AAAAAAAAAAA/0qBTRLuyKpI/c-rp-mo-br100/photo.jpg','14748677429039074158',21648),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAWyE6eQWhj9MZMlm-GFF7WeRgVIEQRuid7pAUDVIs3ClCby_jilQRKuWKcFaA1RlQX3bvA49D65bmfwwNwZnN9IVNXFI','Update: I had a roommate who went here and got seen and he was told his insurance was covered but then he was billed $12,000 later. An obscene amount for a college student who was in extreme pain. I have the same insurance as my friend and if I receive an insane bill after being told my insurance is accepted and making a co pay then I will definitely have some other reviews to make.\n\nGot seen very fast with a walk-in and they addressed my comfort all the time and made sure I was alright. 10/10 would come again. I was helped by Anthony, Brad, Natalie and Dr. Jaber and they were so helpful and kind.','2019-03-18 01:54:30.286000','2019-03-18 01:54:30.286000',1,'Mitchell Prince','https://lh4.googleusercontent.com/-hV5av9ERI1Q/AAAAAAAAAAI/AAAAAAAAAAA/bBRXundFuTQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3499),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAx_woPghOt9WnKAkcEZG44uhsYouth9CwbFvk5PrE3cHvDdK9szMDej-fZVpIH3Jc8hKFddVZfUUaK2T1ggOalELhFE8','To the Management of Signature Care Emergency:\n\nI just had the most incredible experience at Signature Care Emergency. From Officer Jones securing the facility to Registration with Luisa R., Radiologist performed by, J. Adams, and the care provided by Nurse Gracie R. I wish this was my primary place for all of my medical needs. The staff was absolutely wonderful.','2019-02-16 04:15:01.357000','2019-02-16 04:15:01.357000',5,'Lenora McMillian','https://lh6.googleusercontent.com/-QrHfL6dy5v4/AAAAAAAAAAI/AAAAAAAAAAA/L7-7_0s2q7Q/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAX3EiHAg5PMuPEpqoC4iDt6L2YStzSPp5q5wcJzlZwR-8LOLcnZrXJEKbtYLnTyt2UviSPqFUeXM6N9hqPRnrX-n8J_U',NULL,'2019-03-13 16:39:11.205000','2019-03-13 16:39:11.205000',5,'Samantha Falcon','https://lh3.googleusercontent.com/-b5te7RjYafM/AAAAAAAAAAI/AAAAAAAAAAA/MyYapVUHKk0/c-rp-mo-br100/photo.jpg','17898197009688164559',5811),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAX3Q-QmY6iY1mLqdlepMO2MfHr6fjNiGdA0LalIlHiEfkSAGBEMIvt05Bwprbi8pmDx_2KS_tH5DxFMhbf270SWC9N-k','Mercy, Jeff and Dr Lim helped me make this process so much better and were extremely helpful. I won’t go anywhere else but here. They always see me in a timely manner and so polite!!','2019-11-19 20:16:23.189000','2019-11-19 20:16:23.189000',5,'Rachel Wagnon','https://lh5.googleusercontent.com/-sTIkC22UgrY/AAAAAAAAAAI/AAAAAAAAAAA/fZ7vdIzT3dY/c-rp-mo-br100/photo.jpg','12541597562633926366',379),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAx64zW321r6mJ7PMwOOYnXveXj-dZkSyuFSnBK340w4Uf7-UkGSZCFIfq6H93DRDiIeDLmbPvS4ySLCckKgpI65hxqNE','Kristina, John, hang, genesis and Dr.Jaber were all amazing. Would highly recommended.','2020-01-19 21:18:06.873000','2020-01-19 21:18:06.873000',5,'Steven Díaz','https://lh5.googleusercontent.com/-Fe0NUnlPaDI/AAAAAAAAAAI/AAAAAAAAAAA/XYI-Oc_rF-w/c-rp-mo-br100/photo.jpg','12541597562633926366',9943),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAX9czEtSwqpzRK-AbH6AZMs9N8LXOGrMbWceGVEHZELBr_pi3kNz5yYcoXdJDb_I20BFWgvrxqSUgJLyoNRHuDBmlQ8M','Fast friendly staff. Amazing very professional Dr.Patel Nayan nurse staff Naureen.','2019-07-10 05:38:01.920000','2019-07-10 05:38:01.920000',5,'Rosalinda Castaneda','https://lh5.googleusercontent.com/-Ev7i4exDq3Y/AAAAAAAAAAI/AAAAAAAAAAA/29FvXBmrjuw/c-rp-mo-br100/photo.jpg','3511292162159714121',7255),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAX9pDKXRPGy7Zl9Acccq_NWtZYNMvM1oJPeC3ykQTiP3x3gGLo4dxbE49l2NYoPuptKyx0zkh42vTQJdzJTYUuTEH0BQ','Great experience. Anthony was very nice during our visit.','2019-01-26 21:33:22.722000','2019-01-26 21:33:22.722000',5,'Christopher O\'Blenes','https://lh3.googleusercontent.com/-gfpO81NoPs0/AAAAAAAAAAI/AAAAAAAAAAA/ac3FPuGTsBc/c-rp-mo-br100/photo.jpg','16590124370714063921',3574),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAX9sW-uQIdJ7bZFHggPr2FXtt-pUVU2j5TLwLG22MDIvrgmaVzmpGaQTZZdZvAJz3ckf6KswKeifhb2nhivXF6C0II1Y','Great fast service. Friendly staff.','2018-04-09 18:04:38.984000','2018-04-09 18:04:38.984000',5,'L A','https://lh3.googleusercontent.com/-VEaO7bOR_q8/AAAAAAAAAAI/AAAAAAAAAAA/iZy0KxmZmmM/c-rp-mo-br100/photo.jpg','14904078213800803294',2266),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAxa_I4y9cMtcHQPbzoM7lkPEb2SWJR_LXv8YObGZpo4FsA0KGJ_ahOY14WW5_zoQvTy_Ol__qD0s6vkcDWJxm7s239bU','This Crew but people make me feel like I am home they are so nice and nourishing they was attended to all my needs. Jocelyn A. Is great and very sweetie and patient as well as Alvean A. Dr. Patel knows her work and advised me to see a specialist. The front desk nurse greeted me with a nice warm smile. Way to go Cypress. Ih also the X ray tech knows her work too. I will come here again if I need to.','2020-01-22 18:35:57.862000','2020-01-22 18:35:57.862000',5,'LELA YOUNG','https://lh4.googleusercontent.com/-_DKsFp6mQkk/AAAAAAAAAAI/AAAAAAAAAAA/yE0bc2Fmx5k/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',10196),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAXffaqKEn2jletlMeHbFCu3BsedhL9JjdcPNTSk7aSOmedZzOuErGd-nygLNr7NwYrxu3Hsy7gmrNcQ-ACNN1Q1ySVX0',NULL,'2020-07-26 20:39:32.010000','2020-07-26 20:39:32.010000',5,'Vanessa Lopez','https://lh4.googleusercontent.com/-eWyNRXEB5Rw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmOPWGvNC0ppbNOdiFUH70cpDgpBQ/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22150),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAXG89V-CEeIcu8ozzPC97i55JoGx3NaICMrhUaR_eruiz03379jje_xrPD_i8oZC3ovERCvtNUvjzIi0WHfOq7Mjmysc','I was taken care of SITA, CoreyB, and Dr. Alcantar. They were wonderful with us and our 2 year old son who had strep. Thanks to everyone!','2020-03-04 06:32:43.674000','2020-03-04 06:32:43.674000',5,'Tamara Dewan','https://lh4.googleusercontent.com/-mFPMW9udj1w/AAAAAAAAAAI/AAAAAAAAAAA/6JiOzbJC8nQ/c-rp-mo-br100/photo.jpg','13486358490203335051',20935),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAxikJNb1CAklxGPbiS8qgcq9LrXcP86yuCreRAuayQjmrwz5CHi43xiL_o6jjIXCrIKADXkyxO8X0PwEoZF-NrVuoZ6Q','I\'m new in this area and was feeling horrible,and I don\'t have a primary care physician just yet so I stopped by SignatureCare Emergency for what I thought was a common cold , but was the Flu and strep throat, but needless to say the staff was amazing, from the wonderful hospitality as soon as I walked through the door,(Patty) ;Dr.Henderson, Nurse Alvean and Tricia were just as wonderful as the receptionist and were very thorough about what they were doing and always asked if I had any questions or concerns , now that\'s very hard to come by nowadays. With that being said I would recommend SignatureCare to anyone !! \nS/N: my estimated wait time in the waiting room was less than 5 minutes , which is a BIG PLUS!!','2019-09-20 08:21:48.698000','2019-09-20 08:21:48.698000',5,'Ikedria Young-Muckleroy','https://lh5.googleusercontent.com/-CPAFwi0Yop0/AAAAAAAAAAI/AAAAAAAAAAA/uCENRPyLDKU/c-rp-mo-br100/photo.jpg','16389487648212004696',2894),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAXm9MIXU0092GfKC_iNC8nP-7GsurWDhyRpXgcQ4pvrLZSorWJ3x94q26YkK_5a1mPW4T7Smu7h2XfO1KTIN9XC7szV0','Fast treatment! And Erica at the front desk was fast getting us checked in and out and making sure we had all the info we needed!!','2020-01-06 22:39:01.831000','2020-01-06 22:39:01.831000',5,'Dezi Dee','https://lh4.googleusercontent.com/-kMu3HIEbrRo/AAAAAAAAAAI/AAAAAAAAAAA/G17HvLj-zvE/c-rp-mo-br100/photo.jpg','14567670160750071148',9410),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAXokeufiqjYAF56uMpf2gWDq3rn_pmy6QwVaJWxwt8rtOFp05bDNWg3vbXcwFNVK2F06IlhOUlAJR1TKx7BILLAzW_YA','My experience at Signature Care was awesome my RN Molloe the Rad and lab technician Shannon registration front desk Toni and last but certainly not least Dr Henderson I am grateful for the kindness and care that was given to me again you guys are and were awesome .','2020-03-20 02:44:03.095000','2020-03-20 02:44:03.095000',5,'Jackie Thompson','https://lh4.googleusercontent.com/-__4iFwsY3fs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckIT8DdB9L58qct2CdQ-q7ZIMHsGQ/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21130),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAxQ-CXmZVns1c4mkdTsm5LZJoaFv6HqK9Nn7UZchTyC0zbJpIXAsfsOB2ngqqdWDY4kD5eSBIN4_bP6f-9ODkdzg2tlg','You would love the treatment and how fast they have you are in and out ! The front desks are extremely nice ! Alvean, Jocelyn and Dr Smith are awesome','2019-06-07 18:56:38.510000','2019-06-07 18:56:38.510000',5,'Gavin Ken','https://lh3.googleusercontent.com/-pcIedD3fOqQ/AAAAAAAAAAI/AAAAAAAAAAA/rsS1EwVtCJk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAXq1lVAU61h-9DRBjydH6V-hFRfs1UPGaoz7a_Zn9_KR7sHcYj8HoCfm0D2wb3Nv6_hTzIUL266ksrR12N-1Mv9uRAA8','SignatureCare on Westheimer is excellent. I have visited several times and each experience has vastly exceeded my expectations which I can\'t say about most health care locations. The level of care they provide is outstanding and the people are first rate. If you are looking for a great place to get reasonably priced medical services, visit them.','2019-01-23 00:10:55.005000','2019-01-23 00:10:55.005000',5,'John Fisher','https://lh6.googleusercontent.com/-BzI8NjyUzsU/AAAAAAAAAAI/AAAAAAAAAAA/za5CjqAnh34/c-rp-mo-br100/photo.jpg','3511292162159714121',7455),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAxRVxNBQrIPQA3Y87gF5HQSfMqN6vXPJ7BGDSYK0feDgm5stm3Kx17lWdfRAchE2LU8ojkeqOafBVsqDOsfPBIMKHplU','I brought my \nboyfriend here behind a DVT scare we were treated with care and didn\'t have to wait I recommend this facility to everyone. Dr.Smith, Ana Registration, Nurse Irving, Radiology Tech, Holly, ER Tech Nelson.','2020-01-12 08:01:39.570000','2020-01-12 08:01:39.570000',5,'Lakeshia Stallworth','https://lh6.googleusercontent.com/-ZDJOa_4Ewtw/AAAAAAAAAAI/AAAAAAAAAAA/P9QLzqcwM_0/c-rp-mo-br100/photo.jpg','12541597562633926366',9539),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAY1YGnoZgEvdO80eD-j-mfnC3MXEP0kJ8zXf-30ObfZnUm_2F-upTY4rvXWxTlFZ0bi7pEjFydSXW_F8LhREIwW5ZVBU','Great experience! Everyone was very polite, friendly and welcoming. They’re all exhausted from the pandemic and still managed to keep smiling faces. Dee in reception is great!','2020-03-16 21:43:48.023000','2020-03-16 21:43:48.023000',5,'Becky Tapia','https://lh4.googleusercontent.com/-R1y5dLeZF9E/AAAAAAAAAAI/AAAAAAAAAAA/oo0W-THZsOU/c-rp-mo-br100/photo.jpg','3511292162159714121',21153),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAyAoDiBP-J6gG6Sz9ivFfHkUocRyNJfWWHUd8j_3obc0aaQ2C6PLvxbasapEHMF7uM3yGcUo7sifmadLnwpGmZJHTjbw','Everybody was so very helpful. Dr.Chen was swift and helped with everything efficiently. Gave me the best answers. Malissa, Stephanie, Laura, and Scott were super nice and handled me with so much care. DEFINITELY IN ANY EMERGENCY WILL BE BACK!','2019-08-01 18:02:17.782000','2019-08-01 18:02:17.782000',5,'Legendary Minnie','https://lh6.googleusercontent.com/-ndnf9HawodU/AAAAAAAAAAI/AAAAAAAAAAA/Y7i5FtlpGDM/c-rp-mo-br100/photo.jpg','12541597562633926366',471),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAYAS-JwL6L07_aSwfeJptJrZPd-6bHoDZji9oHiRX2OPQZEP_eK9CGD--FM1Xb_z9hExhpTThqnTZO8_tH99pR_oZNwY','Very clean facility! I was seen within minutes of arriving. Janean at the front desk was so helpful! The staff is friendly and made me feel very comfortable throughout my stay. Adam and Dr. Samar answered all of my questions and seemed very knowledgeable about my condition. I would highly recommend Signature to friends and neighbors! ','2016-10-31 20:05:15.721000','2016-10-31 20:05:15.721000',5,'Jeanie Lundquist','https://lh5.googleusercontent.com/-4nQUkC-q05k/AAAAAAAAAAI/AAAAAAAAAAA/leOPOkugwU0/c-rp-mo-br100/photo.jpg','14567670160750071148',1950),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAyBnfBRDKpFs2o6zlFipVOrjbA7RobGLUyW9ofYeRyHhe320wHHC4xpL58KTBT2iIsfB-huOB0U1-9NiUzwddj6W_B8U','Great fast friendly service. Dr. Patel, nurse Shelly D. Desk Alexis and Rad Tech Heather','2019-02-24 03:30:33.608000','2019-02-24 03:30:33.608000',5,'Denise Iheka','https://lh5.googleusercontent.com/-WRNflAmZroU/AAAAAAAAAAI/AAAAAAAAAAA/VVYmmjx1cx0/c-rp-mo-br100/photo.jpg','17898197009688164559',5834),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAYIBzrlFDnSo8gTqd7iFGSd5-65miHuMSfC-mm9Jyvoj7HBiQYGhYT8zpeJ1kEOC0KbCCWHcpuRMt3dfZw0RdwYLfjkU',NULL,'2019-02-02 23:19:11.945000','2019-02-02 23:19:11.945000',5,'natalie malveaux','https://lh5.googleusercontent.com/-6fFPURQV3E8/AAAAAAAAAAI/AAAAAAAAAAA/-rgcgfMs2iU/c-rp-mo-br100/photo.jpg','3511292162159714121',7418),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAyJjFRgRaLrJtvDQNFsPS_onlwV0q0h-b8houGlzdQZoB3LhwcfoLhLGZg2r_SA8rdrtAYQHYFqfsANtRXL2sHGxJX0E','Awesome place in and out get to the bottom of what\'s by going on staff is super friendly.','2018-12-27 09:17:44.704000','2018-12-27 09:17:44.704000',5,'Kimberly Benavides','https://lh6.googleusercontent.com/-5-BdL1tPsWk/AAAAAAAAAAI/AAAAAAAAAAA/2VTQVcebrHs/c-rp-mo-br100/photo.jpg','14567670160750071148',1444),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAYJrFnDpTvPNHIm_7Hpbkgcajn7n-WVfa3FK37wQoMAdPh18QOxGNY-8031QG2cFZWSCDbmYDHoppY6uVSdGTM6ri_LU',NULL,'2017-04-09 21:07:29.061000','2017-04-09 21:07:29.061000',5,'Roxanna Sanchez','https://lh5.googleusercontent.com/-mjqAquwgY4s/AAAAAAAAAAI/AAAAAAAAAAA/EIMm2Wwf64Y/c-rp-mo-br100/photo.jpg','14904078213800803294',2369),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAYMWCsfDetwzfASV_zTnp2Y8o5HoqYk4n58udoDbcx3E7wcGtUw1CcRUDOphtgyTBe2BjIAuTDPNYZDFdAAZMN1d3YpA','Loved the Experience! Dee was the best at helping me check in & such caring staff! Definitely would recommendation! 😀','2017-11-22 03:53:24.377000','2017-11-22 03:53:24.377000',5,'Alma Saucedo','https://lh3.googleusercontent.com/-aeB2-W1tGT4/AAAAAAAAAAI/AAAAAAAAAAA/sKAaRpylD0w/c-rp-mo-br100/photo.jpg','14904078213800803294',2310),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAYUMSd6kQgxjBRWSo1UX2fy5B_NdDzpr0KgtDZITNa1smRq0iuFRWsaHFyF72Bkflpf6NPo4gc3ePcqZKL40QLyStjCA','While I did not have a quick and easy stay (this won\'t be cheap), the staff here was absolutely fantastic. This will be my go to emergency center going forward.','2017-12-28 19:00:26.768000','2017-12-28 19:00:26.768000',5,'Chad Price','https://lh4.googleusercontent.com/-NenzXtthULQ/AAAAAAAAAAI/AAAAAAAAAAA/yMQpMTOHQiE/c-rp-mo-br100/photo.jpg','14904078213800803294',2295),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAYxEiN-_1izlU2fIwDKKRBHz_lSIMfhMhhOp79Eke99-eHSdeewQbR8IV8VlcEnS06n-p8oCVwnzSQLWqII_kHc8bDAs','The service was great and loved the staff. Very efficient. 👍🏿','2017-08-16 22:18:10.358000','2017-08-16 22:18:10.358000',5,'Tynisha Patton','https://lh4.googleusercontent.com/-WGOhyRaQUWY/AAAAAAAAAAI/AAAAAAAAAAA/gWhc1BqeOhI/c-rp-mo-br100/photo.jpg','16590124370714063921',3962),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAYXNekEGBMp5PLta2RBkrI7tVyZLuHlQu2jh9FoDWYKeC4B4aoq6YmhRsIWoq0YsJdd_tB8GhP5OE1S-SEwpt82kRigY',NULL,'2020-07-16 19:54:13.064000','2020-07-16 19:54:13.064000',5,'Mary Salgado','https://lh6.googleusercontent.com/-DLMEFALB72U/AAAAAAAAAAI/AAAAAAAAAAA/8fDdXNZzGqM/c-rp-mo-br100/photo.jpg','6521947413723274945',22889),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAyyVv1dmSsfcKWGgNt6pCBekhwf31qu6fN_FLGjK6oqNwki8i_M8KTOe38ZkPYs_DsbNGbBcyHjc3bkp8uMR9LFmm7GA','This is the best ER that I have EVER went to. My wife had to go in and all the Doctors were out STANDING. The staff was very fast and CHECKED on my wife none stop and made sure that I was as comfortable as one could. I will never go any were again I have a new home for when I need to go to the ER. Give them a chance you will thank me later.','2020-02-06 04:33:44.434000','2020-02-06 04:33:44.434000',5,'Ronald Franklin','https://lh6.googleusercontent.com/-ugOjxxenGOI/AAAAAAAAAAI/AAAAAAAAAAA/mRjQtLdORT0/c-rp-mo-br100/photo.jpg','17394740196501090048',14034),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAz_sWHS898kk2goZGRQWH2JmX8u56vMzFTkYpJXQNmm9pkXH0r_lmM13lmp4n6Gi69T-bSsDaLbokm3_5GeoImUI7TQA',NULL,'2020-01-17 04:12:12.820000','2020-01-17 04:12:12.820000',5,'Melissa Avila','https://lh4.googleusercontent.com/-x5Kee0eAelM/AAAAAAAAAAI/AAAAAAAAAAA/SCyeuv1DCU8/c-rp-mo-br100/photo.jpg','17394740196501090048',14046),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAz0IajPJ4VSTS2FmZOgn0nzuJeVZfuY_wrRs0gltpScPPE7du1jpNHboCXjzKWFespEvcQtn8jDBhhrA9PsB0AyPhBxg','Everyone was kind. Didn\'t have to wait. They made me feel comfortable.','2017-04-27 23:18:46.017000','2017-04-27 23:18:46.017000',5,'Adri O','https://lh6.googleusercontent.com/-kkUHwWvuyJ0/AAAAAAAAAAI/AAAAAAAAAAA/J9nf20B7Vr4/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1837),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAZ4wDCOgV1fiUX12nfUOdPbORgUw2hMZpLTm-Ibtz61e1TOGBgvvhuw9IzaQHhc5-aPE620mMiNK5IRp3cBZBG8Ejuzc','Wonderful experience! Fast service. Jennifer Diggs, John Bell, Matt Leonard were amazing!','2019-06-11 15:00:48.594000','2019-06-11 15:00:48.594000',5,'Ashley Kelley','https://lh3.googleusercontent.com/-qgDBkPzt6HQ/AAAAAAAAAAI/AAAAAAAAAAA/i1_1Xc4ppFI/c-rp-mo-br100/photo.jpg','8626688543755174284',8455),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAz5vNapEjUheH9jDDM7a1sCAyL2uxJ30AfD9wGqHPohPj8dalqJh77nWCQsbfRJapZ0zDzZwxYblTlwaF3bZPexvkDw0','Thank you to the Westchase team for an exceptional service. Kristina RN, Laura Rad Tech, Scott, and Dr. Leavitt. Thank you for putting me at ease and being so kind and professional. Thanks to Pauline at the front desk for helping me check in. You guys are the best in town!','2020-01-04 12:58:37.708000','2020-01-04 12:58:37.708000',5,'Ofer Faig','https://lh6.googleusercontent.com/-Iu8cjDn4bnA/AAAAAAAAAAI/AAAAAAAAAAA/efQKGgWeMqU/c-rp-mo-br100/photo.jpg','12541597562633926366',257),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAzAjmuU21zetdJ7SpIUlAnY_C7cwJKJyyz71-fH7yAZGauTs257JNTTnVgUwRlMHFsa3xJyJxCFmS_caNKcZ6tAYeLPY','After a false start (2 hour wait) at the traditional hospital attached ER I went to Signature Care. The quality of treatment was phenomenal. The only way to have improved the experience would have been to go there first!','2019-03-07 17:41:08.233000','2019-03-07 17:41:08.233000',5,'Eddie Martinez','https://lh6.googleusercontent.com/-0jeqtA6OUnk/AAAAAAAAAAI/AAAAAAAAAAA/ATJqfBVwU5E/c-rp-mo-br100/photo.jpg','16891069708558046635',4328),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAzKE57ZCtkEU5O7E4rSA9hKlQXfoZgU21EufnfheD6NsNvW9A33g4VGufrxj9fgUa2z_eQeDkOnsGtdH0U0pokX0kG6I','Cristina/Laura are amazing and the care was awesome','2020-02-18 20:47:18.639000','2020-02-18 20:47:18.639000',5,'LaTasha Jones','https://lh3.googleusercontent.com/--EJalznl58M/AAAAAAAAAAI/AAAAAAAAAAA/daSnM8I3s20/c-rp-mo-br100/photo.jpg','12541597562633926366',13364),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAzN2K22XXGrEwzmznmlBK5H2eY1XtmYqewX1DNPQCYk6fEZV-pMG4l8uGJArPpeWNuUJsbEkVML2rFtQSvbRVzXwhIwc','Efficient system and friendly people to sign up and make an appointment for the rapid Covid test. Brought our drinks while we waited. Wiped down all equipment, supplies, chairs etc between each patient visitor. Dorie, Natasha, and Candice were great!','2020-06-19 04:23:12.711000','2020-06-19 04:23:12.711000',5,'Alia Mauricio','https://lh3.googleusercontent.com/-BdlOeMluAlg/AAAAAAAAAAI/AAAAAAAAAAA/FcTuI_thqiI/c-rp-mo-br100/photo.jpg','2077061009497551125',21101),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAZoyJWCpToSAZXvE7sGdcReObz3zbDundCki3DYjIoL2fD3Mio1jES9CB-vmP9-M6aAvN-nOISIoxR8ibK0DDad67UD4','My second visit was wonderful. Thank you for your care Troy, Jessica, and Luisa','2019-09-17 00:01:46.044000','2019-09-17 00:01:46.044000',5,'Michelle Payne','https://lh6.googleusercontent.com/-UVXroS7dZC0/AAAAAAAAAAI/AAAAAAAAAAA/agn2kF8ZWKw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAZPVQd064BzB2XQA66NT4STz8iOzJf848xJ0LpVp_EhDpUK8Ccwk75F3PrD-3QtK-pwo5PcEbjIRiaWNqagodAwiXjPg','Best ER experience since I\'ve moved to Texas in the last 3 years. Super fast and friendly service and care. Hopefully I don\'t have to go back to an emergency center anytime soon but if I do I would definitely come back to this one.','2019-02-05 04:35:13.853000','2019-02-05 04:35:13.853000',5,'Janisha Caraballo','https://lh4.googleusercontent.com/-Hvz_yEXIDfc/AAAAAAAAAAI/AAAAAAAAAAA/otGfb9CcyTk/c-rp-mo-br100/photo.jpg','17898197009688164559',5864),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAZq8GXJVm49Myv0vAEpeLpnPWMIGuJPJEmLAXqLnDwWbco7ypbE9EpKElDBYTSai9zWGVLOMjkJ5qzsgun8H4SAbS1Fo','Open 24/7 and Didn’t have to wait at all! Very helpful and knowledgeable staff. The facility is really nice too!','2020-01-26 03:18:38.369000','2020-01-26 03:18:38.369000',5,'Devin Herd','https://lh6.googleusercontent.com/-QHz337pAyI0/AAAAAAAAAAI/AAAAAAAAAAA/kO5WZ8cm2CQ/c-rp-mo-br100/photo.jpg','16891069708558046635',13973),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAzQC1G2xtF-HtyYMjBKdUHqMRCNOJSMxIaayKXBeLHQtzDK-issIjwmf-Z2fONyJB_J3waagPZc_KNcS_bYYQO162fug','Nurse Andrew \nTech shay\nRad tech Lonnie\nRegistration Thanh \nExcellent felt right at home very comforting!','2019-12-01 14:18:58.889000','2019-12-01 14:18:58.889000',5,'TearfulTati2.0','https://lh4.googleusercontent.com/-EW_9veEQYmk/AAAAAAAAAAI/AAAAAAAAAAA/Bnwf2-QG8Bo/c-rp-mo-br100/photo.jpg','8918455867446117794',9040),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAZqUIDCtevJk8uv9aahp-ttrmyPvVKSJZk0rVcho09cjQ3ie62Res3-NGVXowfHhf6_d6ZhWhB2HgXOFyHVsaLUMTAVA','Staff members are extremely accommodating. Nurses and physicians have all been very helpful and caring. Only place I bring my family!','2020-05-19 02:26:26.732000','2020-05-19 02:26:26.732000',5,'Maggie Moon','https://lh4.googleusercontent.com/-nAvsq5wPg4s/AAAAAAAAAAI/AAAAAAAAAAA/hdQlCvsMCVc/c-rp-mo-br100/photo.jpg','2694018788013845459',21465),('AIe9_BFhqAtkXvUqdYNeMuBBGjaAZxqPJihdLnXtRQMR66bBHM92zxhtoAfZggPqsVKeOks1QbiiTlSwfho-QE7UQWph6yr8IMMetbqerACHa51Qr6i7vZA','Had an amazing visit, they were fast, friendly, welcoming, nice, caring but most of all polite. From the moment, we drove in we were greeted by the security guard to check out. Jackie at front desk was awesome. My son was scared at first but left smiling. Thanks for the wonderful visit we were in and out in no time.!','2017-06-08 20:50:05.929000','2017-06-08 20:50:05.929000',5,'Elizabeth Davis','https://lh6.googleusercontent.com/-vgSzXt6bWfw/AAAAAAAAAAI/AAAAAAAAAAA/XnJmwvLgSMo/c-rp-mo-br100/photo.jpg','14567670160750071148',1811),('AIe9_BFKnkCD4uWth5pDLJe0733RC0YcTz7fgNZ4z1BrsRs1-h1DUFgMOs1KXfMVArZ60shNTGeAtSLEZGCgBdG45QQ3BOyqv3JSkfiUTgBzUPk5aNvX09Y','From the moment I walked in, everyone was very friendly & helpful. The cute pregnant lady was fast with my x-rays & Lisa V was awesome, attentive & answered all questions. The dr was awesome as well, very sweet guy!','2019-07-29 17:38:53.579000','2019-07-29 17:38:53.579000',5,'Jalyssa Moore','https://lh3.googleusercontent.com/-hD6zrvJa-ec/AAAAAAAAAAI/AAAAAAAAAAA/cCmxxssL_bs/c-rp-mo-br100/photo.jpg','13486358490203335051',877),('AIe9_BFKnkCD4uWth5pDLJe0733RcuwChPgbyppVXzM-Eo47Ntm6zwKGyiOEiOoMD7wi1jLemlwgVBgxRruA8fBg7Nkxo8WMpLvvTJWt9bGVOlbYjavhoPA','My experience was great! I was just in town for the weekend, but a medical issue came up where I needed to see a doctor. I was in and out in a short amount of time, and the doctor was helpful and friendly. I would recommend.','2017-01-18 00:52:06.972000','2017-01-18 00:52:06.972000',5,'Ryan Buggelli','https://lh4.googleusercontent.com/-HBP6y-Ufx6o/AAAAAAAAAAI/AAAAAAAAAAA/Hv7VgRk1Ujk/c-rp-mo-br100/photo.jpg','14567670160750071148',1913),('AIe9_BFL0OZrFaHgoJtqifT1GHrI_81AFfYohx8rKnMor2hNKKKC3W-jscMIhH2T7nZjqRPl48ZyjvbQxEQaJ1r7yuLZIKY2ajKp7OqLOQwCP9njpWO7sOI','From the moment you walk in, front office staff is friendly and welcoming. Doctor Miller was very open and makes you feel like he really cares. He gives you all options and explains everything thourouly and will repeat if needed without making you feel like a bother. He’s also funny which helped get a laugh in after all the pain I’ve been in. Agnes his nurse constantly checked on me and always ensured I was my most comfortable. I felt at home and would recommend this place to my family and friends.','2019-01-31 23:02:57.710000','2019-01-31 23:02:57.710000',5,'Adriana Alvarez','https://lh4.googleusercontent.com/-r0ezjpPctWg/AAAAAAAAAAI/AAAAAAAAAAA/A3P9Rf3p1gY/c-rp-mo-br100/photo.jpg','3511292162159714121',7424),('AIe9_BFL0OZrFaHgoJtqifT1GHrI_EqDMxYSD-8fJpKVvLHhfHe6LpqOT_04g-p6KeZ2aJio86y4t0omIvVSNB4Ge5l1LMV1c1MVvvy8MA4RlUzDfT3p3A0','This place is the best! I had to get X-rays and ensure I was okay after an accident and they answered all my questions very quickly. They are also among the first places that answered my phone call immediately and I called several locations searching for the best option within my network. The receptionist- Leslie was kind and helpful. So were Gina, Norma and Jacqueline! Dr. Patel was very kind and helpful and made the assessment easier! Thank you all!!','2019-09-16 18:16:02.585000','2019-09-16 18:16:02.585000',5,'Andrew Lopez','https://lh5.googleusercontent.com/-Xv4zme0x7Y8/AAAAAAAAAAI/AAAAAAAAAAA/5SK6cINnPlg/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7176),('AIe9_BFL0OZrFaHgoJtqifT1GHrI_iIaLG0Q_yoDAi1VNjMaGS9Wxq9NX-1zU9foaca6559cw2FBmOXHB0FoXYhduxKE3eFyX8hjktIKNiUWPFnPAz3ll9w',NULL,'2019-11-25 21:02:40.093000','2019-11-25 21:02:40.093000',5,'Abdelkhalek Atiyah','https://lh5.googleusercontent.com/-nqC8VLleTSs/AAAAAAAAAAI/AAAAAAAAAAA/k4txFAByELc/c-rp-mo-br100/photo.jpg','8679688254631342173',8708),('AIe9_BFL0OZrFaHgoJtqifT1GHrI_JTWKxMbTqlQrRVYnzQ76RN6w9_yXFfg1JEv6Mmfr_QOGx2v67gv8OkFi0qG12QBq2p04FtTdz9MRqNDIMG7nvZWNGs','Great friendly service dr. Patel was friendly and informative. My nurse Kristina was comforting and answered all my questions. Defiantly returning to this location','2020-01-25 15:20:18.528000','2020-01-25 15:20:18.528000',5,'Rebecca Vazquez','https://lh3.googleusercontent.com/-bI4nG3N0YlM/AAAAAAAAAAI/AAAAAAAAAAA/FCplt5CH2Es/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',10097),('AIe9_BFL0OZrFaHgoJtqifT1GHrI_lUKiAOMB2YBKhBKOzK3Wo3FCMYyrMaPFTL7OiyJhdm10X3TlS72T_O3b18EcGClV3uu8chsEtlZ8ZLzMgPRcrNV7Vg',NULL,'2019-01-19 01:51:35.778000','2019-01-19 01:51:35.778000',5,'Yolanda Plazas','https://lh3.googleusercontent.com/-MjLA3RKhBtU/AAAAAAAAAAI/AAAAAAAAAAA/EvXqCJorAz8/c-rp-mo-br100/photo.jpg','8679688254631342173',8884),('AIe9_BFL0OZrFaHgoJtqifT1GHrI_n1ODKIpItXglunxZRwXXe84TaToFjB3RmpxBqJAXvLxrmzsfbjs0irRCDBdAMLrc7N02VLzWZVu0HzcUkA6yrjloMg','All the staff are super nice and friendly . They go out of their way to make sure you\'re comfortable and to help you feel better! Everyone there is great especially Dr. Golla!','2017-05-21 12:49:01.627000','2017-05-21 12:49:01.627000',5,'Dominique Jefferson','https://lh6.googleusercontent.com/-eK3J8TXCo-0/AAAAAAAAAAI/AAAAAAAAAAA/BCeuNYRXr9U/c-rp-mo-br100/photo.jpg','17394740196501090048',5049),('AIe9_BFL0OZrFaHgoJtqifT1GHrI_SDYMP3XdaG5INfl-fUcdzsqZthjj7TX4N_GxPK4C0rKPZRahtmW7_Ko1YNJzg3Kk8C3cGEmhXHx0bGLq_MObavBACI',NULL,'2020-01-30 21:31:57.397000','2020-01-30 21:31:57.397000',5,'Meagan McIntyre','https://lh5.googleusercontent.com/-UWrCLS8aCb8/AAAAAAAAAAI/AAAAAAAAAAA/eoM3Y62nzPQ/c-rp-mo-br100/photo.jpg','3272657195432704501',10469),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-1daWa1vyibKcNyqM8iTj78kHagP6Jh2IUoEsnYUErsQOv2m7lcnjj9hY0QDdaME5LH3VeI-_vyGUcTqsE6v1-8qXVg','Everyone is great, starting w the security outside that nearly ran across the parking lot when I arrived to help me and all the great Urgent care team inside. Everyone is friendly and caring. Quick and honest service. No extreme high bill for self pay.','2018-05-13 14:52:58.454000','2018-05-13 14:52:58.454000',5,'Lupe M S','https://lh4.googleusercontent.com/-HcaDtuAV-6w/AAAAAAAAAAI/AAAAAAAAAAA/wo4j-0fjrZY/c-rp-mo-br100/photo.jpg','17394740196501090048',4849),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-1w_IdWBRNuiNr5HQFmL7gOYDdIh62WMKTZduu3laPaf7zLAYXl9cdegYxP4QjDtrtsw_U6gWjC07XPLvv2UzvsLOkg','Rebecca V, Brad-RN, Anthony-RN, Becca-Tech and Dr Estevez were great! They did an amazing job taking care of my daughter. They were are so sweet and friendly. Great job SignatureCare ER- College Station','2019-07-19 14:33:45.544000','2019-07-19 14:33:45.544000',5,'Lorena Torres','https://lh6.googleusercontent.com/-YrN7-3JpT-8/AAAAAAAAAAI/AAAAAAAAAAA/bSN7Xd0OBJE/c-rp-mo-br100/photo.jpg','16590124370714063921',3287),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-Ch2fvr_bor6W0B0v9c276cQnhRDMs3A8iYYad-CJowyTzb2KQ7nc68LK_4eOPLeERAVUFb0CdIThNQFuCcJj3Ntxg4','Flu season and of course I catch influenza right before my trip to Mexico. The staff was super professional, and very responsive to all of my questions. I came in with a fever at 103, by the time I left it was around 99 which was a huge difference. Great and fast service. Maya the receptionist was so helpful checked me in early','2020-01-16 16:32:20.554000','2020-01-16 16:32:20.554000',5,'Tanny Broaddus','https://lh4.googleusercontent.com/-tcFxw9d0u_s/AAAAAAAAAAI/AAAAAAAAAAA/Tc6qJxSumeE/c-rp-mo-br100/photo.jpg','12541597562633926366',9656),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-cM6RZpcMy5ocX6E-ASgzyB4hbX8b1919_aSvODzkVWic5stMBNRD2or4yRwxbaC0oVwmOH-ewNFo9uW6YpFDviECyU','Dr. O\'Malley \nJani W.\nMarcus B.\nElida Jasmine \nAurora M.\n\nThey was awesome and treated me like family','2019-10-01 20:09:28.739000','2019-10-01 20:09:28.739000',5,'Kevin Jefferson','https://lh3.googleusercontent.com/-7FxC9zeAMoU/AAAAAAAAAAI/AAAAAAAAAAA/GkC29rgYH3g/c-rp-mo-br100/photo.jpg','16389487648212004696',2868),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-Dstn-U2DdtL28E8PQk-cFbACJsEAiSbw8Sfgb-fGcBC4LvYnUK-1ki2uWwv7CW_FdGCN_OH9IWf8yaNhbgNJd8HMEs','Kim and Dyveliz were super friendly and helpful! The clinic is clean and welcoming. They offer snacks and drinks to clients. They put The Intern on for us while we waited for our friend. Super positive experience and I recommend friends and family!','2018-08-14 19:07:50.847000','2018-08-14 19:07:50.847000',5,'Hunter Edwards','https://lh5.googleusercontent.com/-WN9Xu1MWfbA/AAAAAAAAAAI/AAAAAAAAAAA/BedGO_qzizE/c-rp-mo-br100/photo.jpg','16590124370714063921',3791),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-g-quurJfOO0PG4REV7wthtgzSJ2RtzTh4SJh3hIG75ojV8BX8piSoxtb6n1LZES92KFqsymZ1DPZY6MIGh5EbUiuPE',NULL,'2020-02-11 02:55:32.031000','2020-02-11 02:55:32.031000',5,'Karen Rodriguez','https://lh5.googleusercontent.com/-GptM4Aa4E4Y/AAAAAAAAAAI/AAAAAAAAAAA/b9Vp55ljKh0/c-rp-mo-br100/photo.jpg','16590124370714063921',13869),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-mVzWGsnOhH5yz091KwR2QifxoUrDn7GpZ5T_jB9OfXNbny4raYqB4L643yjAogRmk7fO1psuJtp71SygbBNlK1I2t8','Had the best experience! The staff was super thorough, thoughtful and efficient. Adam was the best nurse and has such a light and playful spirit! He sat in the room and joked and comforted everyone. Dr. De Waal was also provided excellent care! Would highly recommend this facility to anyone!','2019-11-19 16:44:31.802000','2019-11-19 16:44:31.802000',5,'Taylor West','https://lh6.googleusercontent.com/-Nq50Y1OZW2Y/AAAAAAAAAAI/AAAAAAAAAAA/mghHLQTswkE/c-rp-mo-br100/photo.jpg','16891069708558046635',4144),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-q2-a0vz0RJoV2eRq9iJQgua8SsicMYFF_swrUdZs93CRUxr8ydnGaN0PnjsGj_gwkXQZc8OymkYqYEq8jGuvNShLMU','Friendly and a bit cozy for an E.R. They have lots of options and the Drs. walk you through.','2018-08-11 17:57:59.294000','2018-08-11 17:57:59.294000',5,'Adan V.','https://lh5.googleusercontent.com/-OpV4uuMfSV4/AAAAAAAAAAI/AAAAAAAAAAA/oNbZpAC4mlU/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7633),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-UDqtiQB7sL-a8zjinFidOPgccq7CfXx1Mait6A6V3f3Vxy8sGZ3ftRKekIzc5DlngxjlJ4rKCmFde5DCid_QeQPItc','The care provided here is fantastic. They do as much as possible to ensure you are comfortable. Both my nurse, Remington, and my doctor, Dr.Kimball, were very kind and let me know exactly how I was going to be treated, and described the purpose behind each medication thoroughly. The techs that helped me and took my vitals, Antonio and Tori, were also very kind and helpful. I highly recommend this establishment.','2019-04-06 22:16:33.233000','2019-04-06 22:16:33.233000',5,'Jonathan','https://lh6.googleusercontent.com/-DMK4RLlDoH4/AAAAAAAAAAI/AAAAAAAAAAA/KU-cYI5DiTY/c-rp-mo-br100/photo.jpg','16590124370714063921',3448),('AIe9_BFL0OZrFaHgoJtqifT1GHrI-Y2XfuSBzUDBEqtZArc5lfZrkElc_zVBpWkqiAjt9rJlf0XxaC-tNQAYnEkxDJs_hEHiPPZl7gIZ2vgAGt9JZVTmWTA','I really enjoyed my experience here, everyone was super kind and helpful. The staff made me feel welcomed which was really nice. I was very satisfied with the care they provided. Definitely going to recommend this place to friends and family.','2019-02-20 14:38:51.613000','2019-02-20 14:38:51.613000',5,'aidee lopez','https://lh4.googleusercontent.com/-1n3hXNnIEqE/AAAAAAAAAAI/AAAAAAAAAAA/IpBv_KUBpHY/c-rp-mo-br100/photo.jpg','16891069708558046635',4346),('AIe9_BFL0OZrFaHgoJtqifT1GHrI05kdg85E-e3mdWCq60yhYbkgotMEp1nUQWvrcV89Z_yeDPPhcBxI-g2NSxXlQmmt5lAoMXm41EWEk-ePmuLB470M44Y','Dr. Patel, AlveanA,Brian C,Jocelyn A,Jordan N was great they treated me with care and concern.','2019-10-23 21:07:28.629000','2019-10-23 21:07:28.629000',5,'Desmond Kincade','https://lh3.googleusercontent.com/-i2fKXLOpv6M/AAAAAAAAAAI/AAAAAAAAAAA/Vgx-3qjbx2g/c-rp-mo-br100/photo.jpg','16389487648212004696',2784),('AIe9_BFL0OZrFaHgoJtqifT1GHrI1glhvYIdji3LmAgI9s1Hb60oqWZSh9_thwxX16VHcU3tQwVnda1IXy3a-RISvFcdVrGgnm1c4c6omylMP1sU7Mg-q_4','Awesome experience with this emergency center. Dr. Lovett and Nurse Fatima were amazing. Also, first impressions matter, and Ms. Cindy welcomed me in with a smile and made me feel comfortable. I would totally recommend this clinic to anyone!','2019-06-07 18:24:58.650000','2019-06-07 18:24:58.650000',5,'De\'Andrea Thaw','https://lh3.googleusercontent.com/-cuEcmtxHy70/AAAAAAAAAAI/AAAAAAAAAAA/rn3hKd_h_4s/c-rp-mo-br100/photo.jpg','17394740196501090048',4671),('AIe9_BFL0OZrFaHgoJtqifT1GHrI1h0RIdcK7PGYd_rZPEGO71Q0nLaSpXCx_G5TOa5OEKEG6v1BQxeWDSrIMnTNCfmtsHg9CYSJ0yt9tGGYjBe_JTjf1wU','The staff is super sweet and helpful!! Anthony, my nurse, was extremely kind and easy going, as was my doctor, Dr. Harjaè. The other staff (J.R. and Kim) all seemed friendly as well, and the whole environment was very welcoming, safe, professional, and comforting- all very appreciated when you’re not feeling well! They also brought me a heated blanket and regularly made sure I was comfortable and doing well. I honestly wish I could live here, but I don’t think my insurance would cover it. 12/10 would recommend to anyone needing medical assistance','2019-03-01 17:17:24.153000','2019-03-01 17:17:24.153000',5,'Brianna Huffman','https://lh3.googleusercontent.com/-EuSkYarLQe8/AAAAAAAAAAI/AAAAAAAAAAA/EiHegV0IGyY/c-rp-mo-br100/photo.jpg','16590124370714063921',3517),('AIe9_BFL0OZrFaHgoJtqifT1GHrI1lCskMVJrb9A5OBNJdEdHNk9MMvMFqvuvTvwx1KlMsXIxkG1Hck585j2iCELPidHN8Jhxs21__L2MJ_ql6HgLdJrxRI','I came in with uncontrollable vomiting and the nurses and doctors took great care to figure out what was wrong. Turned out to be a virus bug, but felt like the end of the world :(. Thank you Cristina for being my first line of defense and being so calm and sweet. Once I was at the emergency room I knew all will be good. I had to stay the night to get more fluids in me and the staff did not bother me with different checks (just once to put medicine in my IV). I slept very decently. The bed was pretty comfortable. Every nurse and doctor was responsive to my needs. I also got some petal, a plushy robe and a bag with personal hygiene stuff. Not that I want to remember this experience, but definitely will know where to go if something else happens with me it my family members.','2019-04-25 15:17:33.857000','2019-04-25 15:17:33.857000',5,'Inna Benyukhis','https://lh6.googleusercontent.com/-yDC3Wwhy__g/AAAAAAAAAAI/AAAAAAAAAAA/uUoLkK2LxJk/c-rp-mo-br100/photo.jpg','16891069708558046635',4298),('AIe9_BFL0OZrFaHgoJtqifT1GHrI1o6FGGcwf4R7WAdE1V6EZarnmrnswl7mT5SedR423Rzq626yj01liOOjVdCcnGr8eNth4vjqvhIVmEPuEtTpPzvnsRI','My experience with Neighbors Emergency Center was phenomenal. They were very friendly and accommodating from the start.','2018-01-14 00:25:02.475000','2018-01-14 00:25:02.475000',5,'Maria Elizabeth Aceves','https://lh3.googleusercontent.com/-S7OqxOBK2YQ/AAAAAAAAAAI/AAAAAAAAAAA/DEHv8ReNAHc/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',8906),('AIe9_BFL0OZrFaHgoJtqifT1GHrI1rhBO_bR0oSYbLMb6VZ_aOJRaSAjJxppW6wdSqZ9OoVU05sf0SksIM_xrQjr2wjNAR5szWcKwAWwHkyJ8bDo3noWx08','Amazing!!! Fast service, friendly staff and a clean environment. The best by far.','2020-01-14 16:32:29.523000','2020-01-14 16:32:29.523000',5,'Samantha Galvin','https://lh5.googleusercontent.com/-sAzJwgiQZuQ/AAAAAAAAAAI/AAAAAAAAAAA/N6wBhDW5ifQ/c-rp-mo-br100/photo.jpg','14904078213800803294',13634),('AIe9_BFL0OZrFaHgoJtqifT1GHrI1YFz72EUqKDkPh94hkDfJkZNAwVzf5UwVW6oeIQ2gZXPuVAAvP6xxg88mJ8VMQUIhxpkjqPj_FzmjZwvsvjs0dZnc2Q','This place is great! Everyone here is efficient and super sweet. They really go above and beyond. Ive never felt better,they even offer you a warm blanket bc you know Dr offices are freezing. I highly recommend this particular location!! physician Rose nurse Shelly radiology Linda and registration Shanda these are some truly wonderful people everyone made me feel so special and cared for!! Love this place','2019-08-16 15:35:36.190000','2019-08-16 15:35:36.190000',5,'Ashley Bjorkman','https://lh5.googleusercontent.com/-6yhCkCHV3-8/AAAAAAAAAAI/AAAAAAAAAAA/fAKmYUSoaT0/c-rp-mo-br100/photo.jpg','16891069708558046635',4219),('AIe9_BFL0OZrFaHgoJtqifT1GHrI1yJdNXh3en0j-gCq7ZomlyLZcupMElZGYq8kukiEREl7GekOkrctrB-nMM9gyE4FgrsfYqBs63ysBO-8YiFt5KvN02c','Very nice and professional attention. Alvean, Natalie and Marcus were very helpful. Hopefully I don’t have to come back but if I have to. I would definitely do it to this place.','2019-06-19 14:58:42.683000','2019-06-19 14:58:42.683000',5,'Carlos De Sa','https://lh5.googleusercontent.com/-fkFO3nMHSLk/AAAAAAAAAAI/AAAAAAAAAAA/Myxnq7XGjOU/c-rp-mo-ba5-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrI1YupmlZ9qjmdrF6qLiyMDei45XJUvcwSHEIvo--P6haDQkyjIt6cPTFen0gH3fDFAVMqVgexUUQeQNSdGhfU5SEFkWQ','This place gets you in and out','2020-01-17 16:23:48.898000','2020-01-17 16:23:48.898000',5,'Richelle Von','https://lh4.googleusercontent.com/-BNOOWGrZ2Ow/AAAAAAAAAAI/AAAAAAAAAAA/rCtWZNbAhzA/c-rp-mo-br100/photo.jpg','8918455867446117794',14871),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2_CQ3zbFEODLMz_6SS6hWYA8EGyNOJIhUqK9dCxtF-TACCQa8HgrUljfqeBkJXY-AEni5fjEKsMEhW-seEv757FzIlU','Everyone was so welcoming and accommodating from the moment I arrived! They kept me updated on exactly what was happening and ensured I had a warm blanket and was comfortable while waiting for results. It was the most efficient ER I’ve been to by far! Thanks to Dr. Elsbecker, Shelli, Linda and Christina for your quick and wonderful care!','2019-12-16 23:23:46.218000','2019-12-16 23:23:46.218000',5,'Andrea Sour','https://lh4.googleusercontent.com/-vWBU6MqIiYA/AAAAAAAAAAI/AAAAAAAAAAA/P3SxRtQ1ll4/c-rp-mo-br100/photo.jpg','16891069708558046635',4115),('AIe9_BFL0OZrFaHgoJtqifT1GHrI288MuDN36D_dm7VZfxDb4qPUR8QsVAs803SwsUeAlk4dxCj78FawgTv6Eyz6vMusZh8FXeEpM32_OohwIioaj3SgchQ','I couldn\'t have asked for a better experience while being in a bad situation. \nDr. Boester and his staff very amazing. He was very attentive, caring and informative. The entire staff was super friendly and welcoming. \n\nA+, highly recommended.','2020-07-28 16:09:10.290000','2020-07-28 16:09:10.290000',5,'Nauman Razzak','https://lh6.googleusercontent.com/-MELhU-bFGv0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmO7DgSLRYpDMravKyisumjpUVnaw/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22281),('AIe9_BFL0OZrFaHgoJtqifT1GHrI28dGuqVaLT3drFUCf2potJNqYgxB0uHGkJCNDoUf6RfzuOrslkx85Lge6wnEtkTH0yzfimPWG5uVNm5U8opsggSyP1c','Excellent caring staff. Lots of good snacks in the lobby. Dr is thorough.','2020-03-05 16:17:51.767000','2020-03-05 16:17:51.767000',5,'A','https://lh5.googleusercontent.com/-Mf1yLTn_fIQ/AAAAAAAAAAI/AAAAAAAAAAA/S1nq1UUp_FI/c-rp-mo-br100/photo.jpg','14748677429039074158',18855),('AIe9_BFL0OZrFaHgoJtqifT1GHrI28fUQiHAMhftkjGi97kuPzR3QTVcUw_2QiX0wAkpR0d0Ld3mGpuo6wq6-oLjpfxA_zEG5dm_4RQCLqjOvscjgw5s4xU','I was very hesistant at first when coming to this location since I been told about “the crazy fees” and all but seriously from checking in with the front desk lady Luisa to the nurse Jaime O to the RT Carolina and Provider Dr. Alloju the staff was very professional and helpful!! \n\nThe facility is very clean, and neat. Checking in was a breeze and getting quickly seen and getting all that I needed today was done in a good timely manner. \n\nI enjoyed coming here for my first time ! I was very much impressed w everyone.','2019-01-12 09:00:00.422000','2019-01-12 09:00:00.422000',5,'Bree','https://lh4.googleusercontent.com/-PK0waGov1qE/AAAAAAAAAAI/AAAAAAAAAAA/MLyV-KAmJBw/c-rp-mo-br100/photo.jpg','17898197009688164559',5889),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2A0rd4x0q2ZurqS0gtvzZUGiRQXEtQ-wSY1iwVw5jPHvmZ6UMbLwCNXTncsFghBOULV-s88bJ8SmInNMO2MBuvpNjfg','I had a good experience , staff were helpful and very kind people I surely recommend this clinic','2019-02-11 22:24:50.502000','2019-02-11 22:24:50.502000',5,'Amadeo Quicano','https://lh6.googleusercontent.com/-piciObobxW0/AAAAAAAAAAI/AAAAAAAAAAA/Pj30062iOBo/c-rp-mo-br100/photo.jpg','17898197009688164559',5857),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2acKLZmNVhmj_rB_PGoYPbZEaKuw4AMUprPO2OeAkZEkcYDCD37b-FffDDc7QFpujMySuFQGsgwoQikru8rx1FU3Lu8','Had to stay overnight and everyone was super helpful. It’s, Remington, JR and Dr. Haraj were thorough and explained everything with detail.','2019-12-24 14:28:38.079000','2019-12-24 14:28:38.079000',5,'Elizabeth Chavez','https://lh3.googleusercontent.com/-fPpOZRM2cSU/AAAAAAAAAAI/AAAAAAAAAAA/nTqLws51S2g/c-rp-mo-br100/photo.jpg','16590124370714063921',3009),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2PkDoHDP5xlyW1M3A7FLytHOgKnkcaUHEL5idT2AWjFMCVr0EKLIMoElkkiHRtNYw248kERly9FhRPOt6dpS9NutDio','It was great no wait Time at all. The staff was extremely friendly and helpful.','2017-02-08 15:50:53.012000','2017-02-08 15:50:53.012000',5,'Joshua Scalf','https://lh4.googleusercontent.com/-o7heHJ-4cDE/AAAAAAAAAAI/AAAAAAAAAAA/d26_EJ52dlg/c-rp-mo-br100/photo.jpg','16590124370714063921',4065),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2PKghxNQvxChMbxNkF3d6CAgoRomcuF0qnxZdE401gr5fGvnTFnvFdAeDOkwt2HLyt2kjU7Tcm2GF6EuGvV7q9iKEYg','I have been to this ER previously and every time I have been they have called me to the back and was seen by the physician within approximately 15 minutes. They always have treated me so very kindly. Everyone is friendly. I recommend this ER to my family, friends and anyone who wants good and fast medical treatment.','2017-12-28 22:23:15.359000','2017-12-28 22:23:15.359000',5,'Marlena Gardner','https://lh3.googleusercontent.com/-JVy5gVbOOzk/AAAAAAAAAAI/AAAAAAAAAAA/9UAP8YIBYOM/c-rp-mo-br100/photo.jpg','3511292162159714121',7743),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2qDbLVwi5vcFP6amXEkSltIlFPoPbwQemtqXn2qBD49J9-S4QFyP6Bh5g2lVua-j5W3fJQLEqhJwiveKgh4q-af8jk0','This place was clean. Friendly staff. Very informative. Didn’t try to over charge me','2020-03-14 10:25:51.800000','2020-03-14 10:25:51.800000',5,'Zechariah Jones','https://lh3.googleusercontent.com/-SUQHfbB4nUU/AAAAAAAAAAI/AAAAAAAAAAA/r3mmkdIjxt8/c-rp-mo-br100/photo.jpg','14748677429039074158',20974),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2Qpje9yX9_zjetAbgf_wpGkLZm_-2FQGVY7WyjrQUpJJ60UeSASNNMZmEFjBQbxClKz9WHmOyg4a5prlnGzkH_3I55M','Jessica S made our visit so smooth. My son was so worried about getting the covid test and she made him fill so comfortable! Thank you Signature Care for everything y’all are doing for our community','2020-07-19 21:40:29.804000','2020-07-19 21:40:29.804000',5,'Noah Sanchez','https://lh3.googleusercontent.com/-ioB0X7ax33o/AAAAAAAAAAI/AAAAAAAAAAA/htsB0SN3qYs/c-rp-mo-br100/photo.jpg','14748677429039074158',21692),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2qY2WITRoEbdIwavXBnp9ooglCwnBZQ1tM-f7bl4aYXFfDqHsFtc9TKX2FqBjY2VkFXAXu6u5EhosskwwC3lhx9fPRg','Front desk isn’t all great but the nurses were good','2020-07-21 23:37:54.702000','2020-07-21 23:37:54.702000',3,'Ganon Vankirk','https://lh4.googleusercontent.com/-pb8ITErOIho/AAAAAAAAAAI/AAAAAAAAAAA/G0-vzZDDzXg/c-rp-mo-br100/photo.jpg','14748677429039074158',21613),('AIe9_BFL0OZrFaHgoJtqifT1GHrI2w6NaqNRq0MHLHxSgNCLlOxi7Xi7D_-NoDke9xRtL4uGNv5h8xZTa75YY4rfFbkShHoim60CQhYC6G8oxvnp4a-o_po',NULL,'2020-02-05 16:50:00.607000','2020-02-05 16:50:00.607000',5,'Catherine Walker','https://lh6.googleusercontent.com/-qGVT3CypfB4/AAAAAAAAAAI/AAAAAAAAAAA/UYQmg8BqJd0/c-rp-mo-br100/photo.jpg','8679688254631342173',14761),('AIe9_BFL0OZrFaHgoJtqifT1GHrI3-72PR2BUN9KUdLTswdzVn5-ZV_ycym9F_V4YyTM8MImtMUhqbd2Trv0QngbHTnFjWjBE9Yws6WOJbMDAYzgUA1tM6A','The staff was super friendly! The process was so easy and I was seen immediately. I highly recommend this location.','2019-02-16 01:12:43.305000','2019-02-16 01:12:43.305000',5,'D M','https://lh4.googleusercontent.com/-1IqyRjIg4vg/AAAAAAAAAAI/AAAAAAAAAAA/gOJMjNapaSo/c-rp-mo-br100/photo.jpg','16891069708558046635',4348),('AIe9_BFL0OZrFaHgoJtqifT1GHrI3BO-TxfLKDYWdqF2h-qk2gi0W-zLN612HnvGgRdWKBiTTwi2-0wFfPQgQVR_Z0m2IlwRNOJrJ2Qipi8O-fc65BEclDg',NULL,'2019-12-20 03:24:07.487000','2019-12-20 03:24:07.487000',5,'Brenda Bagues','https://lh6.googleusercontent.com/-OKIGbnTVjcA/AAAAAAAAAAI/AAAAAAAAAAA/edvth_acwpo/c-rp-mo-br100/photo.jpg','13486358490203335051',683),('AIe9_BFL0OZrFaHgoJtqifT1GHrI3cToU3asq0hSCict5jLBTfctLFeFeV1isiA4kzyGGUsByvTCt_AD1sov0qoILsJo5dy9fQx4nSJ7PGXJQ0kxnTwoEvM','From the point I walked in i was greeted by Jennifer D. and taken seriously for my illness. We were gotten back quickly before I could even start my paper work. My nurse was wonderful her name was Susie and she made sure My family and I were taken care of. They even offered my family blankets and beverages. I will be returning with any future emergencies','2019-01-28 17:16:58.017000','2019-01-28 17:16:58.017000',5,'Lauren Martin','https://lh4.googleusercontent.com/-OwQOAjTdbW8/AAAAAAAAAAI/AAAAAAAAAAA/0R94Ncm7j54/c-rp-mo-ba2-br100/photo.jpg','8626688543755174284',8577),('AIe9_BFL0OZrFaHgoJtqifT1GHrI3V2C7ma72PUYquPMBdWGtHAp-F0NmYtojRHPdkM0KSy3EaVyCK_NWlcM1NjUD0aBTHh9k-tWEDid1F7c51cLGdVIu-E',NULL,'2019-02-18 14:51:13.273000','2019-02-18 14:51:13.273000',5,'Janal Wyatt','https://lh6.googleusercontent.com/-EhuXXKkHOAs/AAAAAAAAAAI/AAAAAAAAAAA/0S9eE7ZfyH0/c-rp-mo-br100/photo.jpg','17898197009688164559',5847),('AIe9_BFL0OZrFaHgoJtqifT1GHrI3YloAl4p5Vdi8218cd_iKoflg2jtS47z3GqIirvcQUlQpy6aqZ1KC7f50caF9KvvAuU6kvvFzLfhO9f4f6-CTrCJaaE','(Translated by Google) Excellent service with Patricia and Alvean, thanks for your attention 👏\n\n(Original)\nExcelente servicio con Patricia y Alvean, gracias por sus atenciones 👏','2020-01-27 00:23:35.816000','2020-01-27 00:23:35.816000',5,'Erika Janeth Mendioza Cázares','https://lh3.googleusercontent.com/-33QZlIfC46M/AAAAAAAAAAI/AAAAAAAAAAA/_kLw1cFDcbY/c-rp-mo-br100/photo.jpg','16389487648212004696',10170),('AIe9_BFL0OZrFaHgoJtqifT1GHrI4-lgAWCxHUVccjEiXMrbwzaDRtTgZ4x72isK5bjtKUMSmKXcONSUK0hGXKf06Vqwpyd9lwwVb3GcX7ml1NN9MbsRP2I','Nurses were very caring and friendly, but the IV was extremely painful','2019-04-07 19:12:23.420000','2019-04-07 19:12:23.420000',4,'Tanner Mellinger','https://lh3.googleusercontent.com/-0f6_ZIvHdrQ/AAAAAAAAAAI/AAAAAAAAAAA/g6A0nHgoI_0/c-rp-mo-br100/photo.jpg','16590124370714063921',3442),('AIe9_BFL0OZrFaHgoJtqifT1GHrI48REoa3srAdGs_mdsnjzvnoLza96JNRtQq_5XKMzcjWpScOVSKOtL08kqmy-QGSjusEDIVwhzwgkbe7Fmx8Cm2kjJHw',NULL,'2018-09-17 17:11:29.755000','2018-09-17 17:11:29.755000',5,'Micalyn Ely','https://lh6.googleusercontent.com/-NHKNMCaKG-E/AAAAAAAAAAI/AAAAAAAAAAA/A_3tLK8IV7E/c-rp-mo-br100/photo.jpg','16590124370714063921',3720),('AIe9_BFL0OZrFaHgoJtqifT1GHrI526od8AUF6i0b4qd0_PkAL_xVO7rX98_5CwrQApiz4C8aFC39RDWSPemihI3ZWGphjXhRvMaNUa3WDI4gQ2Uj0Lhwdk','The nursing staff was very friendly. The website is also very helpful and informative. We appreciate the dedication to service from the care providers.','2020-07-20 12:56:54.838000','2020-07-20 12:56:54.838000',5,'Aparna Tamirisa','https://lh4.googleusercontent.com/-bBO-2PfSnLk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn7C4LFxWOb3lIpecUTDgOPT_O3jg/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22070),('AIe9_BFL0OZrFaHgoJtqifT1GHrI52SyUu_SS2n6tH_ySEwpPhm97nF55r_Npqqx9y5Cd5hI-DsLa-AFqpH9u5qGELWnhZpsw6mAYqj6QMz1hxHz2xNOlnQ','The staff was very professional, courteous and friendly.','2017-03-30 03:40:30.082000','2017-03-30 03:40:30.082000',5,'Patricia Henry','https://lh3.googleusercontent.com/-ueW23ZYsaSw/AAAAAAAAAAI/AAAAAAAAAAA/L_tzd3B5km0/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',5081),('AIe9_BFL0OZrFaHgoJtqifT1GHrI56-K9ViOzWFTogpUQ4o9HZuFQDTVD_z5LHgql5LR6j3PuBNB2HaWzOmt_tKEh_gizYVrvt0ki0P-bZDC_M24RbZt77E','WARNING!!!!! \nUnless you\'re about to die , you\'re a millionaire, or there\'s no nearby emergency room, do not go here.\nI was new to Houston and one late afternoon I had an emergency situation. I walked into this place, they took my insurance and started taking all sorts of tests. They also kept me there much longer because they claimed the specialist had to come see results before they released me.\nFast forward, after my insurance paid there\'s a $30,000 unpaid bill, and they keep contacting me to get involved so my insurance can pay more.\nThey said they will not balance bill me, but I\'m worried sick this will end up in collection and ruin my excellent credit.\nMy stress level goes up and start having the symptoms back every time I think about this...','2019-09-28 13:43:39.693000','2019-09-28 13:43:39.693000',1,'Pheben Giorgis','https://lh3.googleusercontent.com/-54vbJ2AITZk/AAAAAAAAAAI/AAAAAAAAAAA/P654KvFiEKM/c-rp-mo-br100/photo.jpg','3511292162159714121',7168),('AIe9_BFL0OZrFaHgoJtqifT1GHrI5DL8SdWYnE1W2oaip_pI773glpnxfV6yLo-a794oOvUgZvtsEWUWnyMGZt9IeZRSHoL_sFUwt8xRzzJMSx3APoh0UmM','Kim was very pleasant when we came into the ER. Jr came in and took us to the back before we can even sit down and complete the paperwork . Shortly after the nurse Jacob came in and ran the test ordered by Dr Ortiz. The visit was pleasant considering the circumstances.','2017-01-28 17:35:19.378000','2017-01-28 17:35:19.378000',5,'Vinita D','https://lh5.googleusercontent.com/-NQpczMuzHsU/AAAAAAAAAAI/AAAAAAAAAAA/YA-e4wwZVVA/c-rp-mo-br100/photo.jpg','16590124370714063921',4076),('AIe9_BFL0OZrFaHgoJtqifT1GHrI5HimBaQcnT5boGxJ9yO2vXTvWQ0CyuykbjJXedLC_D0Kh3UL_UVM2-zeAeU0tCZdw9cj-md1vvNB1cQDRElQMKBuzIs','Thanks Dr. IHEME, ALVEAN A, MARCUS B, JOCELYN A, BRAIN W','2019-11-20 16:06:04.554000','2019-11-20 16:06:04.554000',5,'Jamariz Dixon','https://lh5.googleusercontent.com/-UjcC0gnc8SI/AAAAAAAAAAI/AAAAAAAAAAA/qICHpGi8Mdc/c-rp-mo-br100/photo.jpg','16389487648212004696',2652),('AIe9_BFL0OZrFaHgoJtqifT1GHrI5htio2IAYpUKD2-8V0P3c5vG4M8UHGlHy3dKuh75JokgbmFYNWBRk4xnUsAWFeQx2UgWPezrhrqf9DnOHh3hKrWQmtY','Mercy was great and staff was wonderful.','2017-02-12 22:15:15.185000','2017-02-12 22:15:15.185000',5,'Liz Tharp','https://lh3.googleusercontent.com/-toceZnkF_rc/AAAAAAAAAAI/AAAAAAAAAAA/0cMIExJ3d10/c-rp-mo-br100/photo.jpg','14567670160750071148',1885),('AIe9_BFL0OZrFaHgoJtqifT1GHrI5N6H2QuwYejIBOqP7CGVqwgLPVJgOw4y5eJD3E2OW95QE3dOVAxSbfavQjg5YTPYSajZVThtBZd4PgoZs_OPZiRHBG4','Amazing fast service, and didn\'t cost and arm and a leg with insurance','2017-03-28 02:37:07.695000','2017-03-28 02:37:07.695000',5,'Matthew Bridges','https://lh3.googleusercontent.com/-Fz4i7KR1lYw/AAAAAAAAAAI/AAAAAAAAAAA/LKUjTngpiTo/c-rp-mo-br100/photo.jpg','16590124370714063921',4021),('AIe9_BFL0OZrFaHgoJtqifT1GHrI5T3Y18QrLdGPZ9BYDr-6GitXvHwYNYo9UpNtIyKWZvGlcha1O_BaYhgMNh7bCcU6Nu59_D-9z2HytgP8TlK3oVRziRs','Amazing staff, doctor Yusuf was very helpful with any concerns I had also Agnes and Amy were so nice and the whole process was quick. Hugely recommend this place for any emergencies.','2019-05-27 00:49:01.327000','2019-05-27 00:49:01.327000',5,'Arturo Delgado','https://lh4.googleusercontent.com/-85gXA3WQEbc/AAAAAAAAAAI/AAAAAAAAAAA/XNITYK_0bQk/c-rp-mo-br100/photo.jpg','3511292162159714121',7317),('AIe9_BFL0OZrFaHgoJtqifT1GHrI5tvjsDg-pngQB9F7ABkJPTgu0RwFChsEc-YTipl21r_qbZNGHiBwOsDiVT9UVakcHKnsBLrgxKBLKr3oShRNiZwL9S0','I always have a wonderful experience here at Signature Care. Dr Golla and Bernadette Corpyz treats me like royalty. They never changed , I have so many great things to say about this facility. I love there patience with me. I have bought my husband and he wants to have them as his PC . Love you’ll Bernadette and Dr Golla.','2017-12-02 03:59:07.739000','2017-12-02 03:59:07.739000',5,'Tonja Wortham','https://lh3.googleusercontent.com/-PtIpZgqUduI/AAAAAAAAAAI/AAAAAAAAAAA/25s6MZbZu5c/c-rp-mo-br100/photo.jpg','17394740196501090048',4923),('AIe9_BFL0OZrFaHgoJtqifT1GHrI5YTcrCXAco3GrMjIRtpKQFSE9a2nsJrmsik3I34UBX89jxb1tiwgimUg_5QZz1P-7sxar2eHYpQoK6AccRAwTM9N1zw','Service was fast and great staff.','2020-01-26 17:48:59.155000','2020-01-26 17:48:59.155000',5,'Victoria Sabando','https://lh3.googleusercontent.com/-epeiiSLPZ8Y/AAAAAAAAAAI/AAAAAAAAAAA/vR9QPXJKvL0/c-rp-mo-br100/photo.jpg','13486358490203335051',13454),('AIe9_BFL0OZrFaHgoJtqifT1GHrI63o-VWO50LyIzYzSZlicyWAEu99bjhJsCk4eJvuI9jwH9MICXtIg65LozpRrk4nIvWfoolK-IfGaieGSlE8NOydxAbY','Night staff was great to work with, Dr. Lim, Irving, Sherwin, and Thelma were very efficient and hospitable, and Carly (the receptionist) got me in right away. Very good experience.','2020-02-12 12:10:02.361000','2020-02-12 12:10:02.361000',5,'Monica Cerceo','https://lh4.googleusercontent.com/-5tpVPZAzh-4/AAAAAAAAAAI/AAAAAAAAAAA/RUfIw6A8Ncc/c-rp-mo-br100/photo.jpg','12541597562633926366',13379),('AIe9_BFL0OZrFaHgoJtqifT1GHrI63R6KHryXM3gcyG5O9tjSh4JLGXkHeX5SZECyRvCqeG9R2pA7fOvFaX9o6yoCCw6trpK3kZqYg2EiOVXE9nSb6QhgsY','The staff was friendly and attentive. Service was fast and the place was clean. Amy at the front desk rocks! :)','2020-08-01 20:00:54.080000','2020-08-01 20:00:54.080000',5,'Fabi Martinez','https://lh6.googleusercontent.com/-U_den8XuOoY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckX9bmRPoaEcCzcdJI1i3YMQvfPyw/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22364),('AIe9_BFL0OZrFaHgoJtqifT1GHrI6cH21v4SXjG_3Z3A2P9IFmqj9RSx-ts_RliGiJ0UN8BiO5CXF21LEHUWGj2eIsbVO9zV_VxoGt8ZR0hUnNfmEcI_7OQ','Dr. Angela was extremely helpful with tips to stay healthy during this pandemic. I trust her word and all of her advice she gave me today.','2020-07-28 01:51:41.777000','2020-07-28 01:51:41.777000',5,'Samuel Dyson','https://lh4.googleusercontent.com/-grUgJsH87yU/AAAAAAAAAAI/AAAAAAAAAAA/QqEjscZVY7M/c-rp-mo-br100/photo.jpg','14748677429039074158',22550),('AIe9_BFL0OZrFaHgoJtqifT1GHrI6d17s9CmQhYwVdN6Uq5_nq6jS0-e8Lm2v2UF6zZB9_ObINN8gztDsfpXAWzWmxM4m71kVEquzBQsuOWk6T5uWUY_nb8','Everyone was kind and endearing. I had an excellent experience.','2020-02-12 04:12:44.010000','2020-02-12 04:12:44.010000',5,'Talha Khawaja','https://lh6.googleusercontent.com/-DGopmYxLdRs/AAAAAAAAAAI/AAAAAAAAAAA/9OpITaj-doc/c-rp-mo-br100/photo.jpg','17898197009688164559',14178),('AIe9_BFL0OZrFaHgoJtqifT1GHrI6d8TpQnSq51-b68GSx7eiqg7xxVh_GJiJYGbgVfjv4athoQD2khqEHgGVsDz1rFPtRDpUM4ttsRMY0u5eBsZMLMsGfE','The staff here was wonderful 😘😘😘 they was very courteous to me and my daughter doc kotey showed their is no dear nurse lyn was up most respectful person I ever meet she very outgoing Daniel b is loving children person Tanisha w was very outgoing love her patients 😭😭😭😭😭','2019-12-23 05:57:04.297000','2019-12-23 05:57:04.297000',5,'Kerryonte Turley','https://lh3.googleusercontent.com/--VzPv44T6RU/AAAAAAAAAAI/AAAAAAAAAAA/_f2dBIHCK5E/c-rp-mo-br100/photo.jpg','17898197009688164559',5334),('AIe9_BFL0OZrFaHgoJtqifT1GHrI6U5dTlrGJgpGNMLbQnH4GjcCNU41BXKF-BIO8Srha8mN3C7p4l7E9tmF0atZPe3LufoKpP3jN72JAppdwo-ZnSGJeOE','I had been serverly sick with my asthma but dreaded to go to the emergency room, due to the awful experiences I\'ve had. I Google Near by places and I found this place to go to. I called and actually talked to a person within a second ring, I got there and by the time I finished signing my name I was already called on, they offered a warm blanket, everyone was super nice and friendly. I\'ve never felt so loved and felt like home at any hospital visit. They accept insurance and I can pay upfront and not worry about a bill. This place is amazing this is now my go to place and I will recommend to anyone. Thank you.','2016-12-19 08:03:18.748000','2016-12-19 08:03:18.748000',5,'Alyssa Marie','https://lh4.googleusercontent.com/-rZZOYN_PwM4/AAAAAAAAAAI/AAAAAAAAAAA/LHRWMUtMqV4/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5148),('AIe9_BFL0OZrFaHgoJtqifT1GHrI6Xl7G7rDhw-ni-mChVJbSYm2nLCoHz-DQsFXbD_sdGVLcIOi1cEy2CU_8f46uWAOGDLkU6XTQ3hlVvs4-Bwa_NJ000Q','My son and I have both been seen here. The entire staff is so sweet and helpful. I appreciate them being here when we needed them!','2020-07-07 00:13:02.785000','2020-07-07 00:13:02.785000',5,'CJO 15','https://lh4.googleusercontent.com/-mJXCIxlsPHU/AAAAAAAAAAI/AAAAAAAAPdI/AMZuucm6ZrluFZMlpVlNI4_IE2OVyjR42Q/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21303),('AIe9_BFL0OZrFaHgoJtqifT1GHrI6Zy2aEl_nbO9ixUhyQmNjdM7AyphSreOCUnABWh8mtTWzTylZbKv18yhZi0ccfBxxTT3DzTpMHwKejWzzYav42V5OHg','Dr.Angela made my time there quick and comfortable they have great care','2020-07-18 19:01:31.502000','2020-07-18 19:01:31.502000',5,'Giannis For MVP','https://lh6.googleusercontent.com/-w64fDYlXBn8/AAAAAAAAAAI/AAAAAAAAAAA/fxLPA71_L6E/c-rp-mo-br100/photo.jpg','14748677429039074158',21734),('AIe9_BFL0OZrFaHgoJtqifT1GHrI72TV6CzUqfQ99XrN0VRo-YsIq4s-8kAHAdGCyjrUyMRl52YADSym_EvWJfFjyonWp3ns-HgV3VwiDNQ18NZoIM_WC-k','The staff was very friendly and the services was fast. I went in and got an cray right away and a shot for my pain. There was absolutely no wait. Fro the front desk with Patricia to the back office, physicianand Radiology team the serives was perfect. Thank you all- Dr. Harjai, Ekaterine and Kat. \n\nThis will be my first choice if ever I have another urgent/emergent situation. And the facilities cleanliness is impeccable!','2019-11-07 02:45:22.876000','2019-11-07 02:45:22.876000',5,'Ms. Kakes','https://lh3.googleusercontent.com/-T8TnNP9yBNM/AAAAAAAAAAI/AAAAAAAAAAA/dNd_CmGj41o/c-rp-mo-br100/photo.jpg','16389487648212004696',2725),('AIe9_BFL0OZrFaHgoJtqifT1GHrI79veyaeQfCFZFotyWOY_vudNp5q6Gn8yKvTLr5IMr0qWi4NL1txd6d1vKBl4cSrOFSvFSDyY-N0A0bdjsoF7AzBqcFo','Dr.Harjai , Alvean , Tricia , and Jocelyn did a great job','2019-09-18 19:32:21.396000','2019-09-18 19:32:21.396000',5,'Tarvia Dixon','https://lh4.googleusercontent.com/-yQCuQmsfkRc/AAAAAAAAAAI/AAAAAAAAAAA/bgdHOZtuWqg/c-rp-mo-br100/photo.jpg','16389487648212004696',2901),('AIe9_BFL0OZrFaHgoJtqifT1GHrI7Dje1zqFu1Eox4QJVQF43W4R5lVxx_jHJ7AqfxgdkTPednhfc8N9ggOQWEgfwd_uK30obPhsFVkquGZmj3EPN3aeh2M','We brought a friend into the clinic and the staff was so nice, gave us complimentary coffee. Everything was wonderful I really enjoyed my time here! We were treated by Rebecca and Anthony as well as Dr. Vaagenes they were great!','2018-08-22 04:43:52.825000','2018-08-22 04:43:52.825000',5,'kashia stewart','https://lh5.googleusercontent.com/-toklz-WDJe0/AAAAAAAAAAI/AAAAAAAAAAA/3eAMF8J51wE/c-rp-mo-br100/photo.jpg','16590124370714063921',3778),('AIe9_BFL0OZrFaHgoJtqifT1GHrI7EaT2PryD_wTjl_ubnR8_uZ7WXwwPuVHWzZBkhj50_s_MRcnvUOCSyJRVVY0u8ehv-7eCsAqx2Oh3vw4umbaV3HY6-o','The staff was great...very thoughtful and caring.\nKatherine, Irving, and Nicole took great care of my little brother. They made sure he was comfortable the whole time.','2020-02-07 03:57:26.401000','2020-02-07 03:57:26.401000',5,'Jenny Berrios','https://lh6.googleusercontent.com/-eXUHvfK8bpY/AAAAAAAAAAI/AAAAAAAAAAA/ePPxbxFlPPw/c-rp-mo-br100/photo.jpg','12541597562633926366',22475),('AIe9_BFL0OZrFaHgoJtqifT1GHrI7gSOL3MBHtPPLtBsMGE0qxTEycf4aBHSoDrNbONZ7yfYk9TJ8YIvQeMIbAU7PepmFat3U-HgBFbem48-VuHk2yO_cas','Excellent service! Nicole G, Brandon Williams, Kelly, Bre M & Dr. Souman were all fantastic! Great bedside manner. Have already recommended this place to others and would definitely be back if the need arises.','2020-01-12 12:30:49.936000','2020-01-12 12:30:49.936000',5,'Leatrice Coleman','https://lh6.googleusercontent.com/-4Q19__1KSOw/AAAAAAAAAAI/AAAAAAAAAAA/JQYIxL40Vs8/c-rp-mo-br100/photo.jpg','14567670160750071148',9543),('AIe9_BFL0OZrFaHgoJtqifT1GHrI7qx7tBRv-cyqelVX61UmGFC_aZMRdtAMy7ZWUSIA-La5KIidw8mysBcnyq4HawX5m8YZnEBH--nS3TqcZ3_6bUSyb28','I had a great experience here. The staff are so nice and friendly. So thankful for their sweet nurse Catherine Kirby, she was so honest and straightforward. No hidden fees or costs. Great experience 👌🏼','2020-03-04 19:09:42.190000','2020-03-04 19:09:42.190000',5,'sogol moghadam','https://lh6.googleusercontent.com/-mVaHxx_fyAE/AAAAAAAAAAI/AAAAAAAAAAA/in9hPA18Gb4/c-rp-mo-br100/photo.jpg','12541597562633926366',13315),('AIe9_BFL0OZrFaHgoJtqifT1GHrI7sEmBsa8qdevH4x-gImXOBHKBJzjGTqM7r9nPBA13iWGYc4jpD8upuJemTno8uF-orN0Wz2YrM6juo7gNL1j53z_Uxk','Doctor Nguyen and his staff were extremely helpful and I was seen immediately. The entire process was seamless and easy.','2019-10-02 12:46:29.773000','2019-10-02 12:46:29.773000',5,'Jeremiah Harrison','https://lh3.googleusercontent.com/-BIeyi1CM5kA/AAAAAAAAAAI/AAAAAAAAAAA/xRBvpm11k84/c-rp-mo-br100/photo.jpg','16389487648212004696',2866),('AIe9_BFL0OZrFaHgoJtqifT1GHrI7XPTBKNqAic8qYPpKb5dLdyny90ePElCiaIM-OLsocLGiPNei_ncFjjdQZCHfB2wUpQ8KB-7ezVdqroZB70Cjqoll-Y','Everyone was awesome','2020-02-18 18:21:20.167000','2020-02-18 18:21:20.167000',5,'Kristen Vasquez','https://lh5.googleusercontent.com/-JquE75SCcXY/AAAAAAAAAAI/AAAAAAAAAAA/1LWkYzMgkLM/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',14817),('AIe9_BFL0OZrFaHgoJtqifT1GHrI7z6nRqEORxZZxvUC6Kk-VtZhULUust_02lQ2LrdqRAKSOxSs_-cEpg1VyPW0NEBqzxXAlxJhPBK80jtXodjlhZxl-0w','Erica W.\nMat L.\nJennifer D.\n\nTook great care of me','2019-05-05 17:31:04.483000','2019-05-05 17:31:04.483000',5,'Keithrus Wright','https://lh5.googleusercontent.com/-WIgBEINskuM/AAAAAAAAAAI/AAAAAAAAAAA/nZxOnKcnpxs/c-rp-mo-br100/photo.jpg','8626688543755174284',8495),('AIe9_BFL0OZrFaHgoJtqifT1GHrI8-77rogacsX3vxFuMPPxBTLu4sNjkT06tLx6Z4bJA0pH5O4sWMnuEBxCdluNwvD1yYSckXRBW-JIGi9tZ52jRPvGM08','Wait time was less than 5 minutes. Staff was super nice. Even after bloodwork and CAT Scan was still in and out within an hour. Would definitely recommend','2016-11-05 14:06:52.376000','2016-11-05 14:06:52.376000',5,'Donna Lively','https://lh4.googleusercontent.com/-UzW54UxpDpw/AAAAAAAAAAI/AAAAAAAAAAA/7nldyBMDrTw/c-rp-mo-br100/photo.jpg','17394740196501090048',5183),('AIe9_BFL0OZrFaHgoJtqifT1GHrI85JY3cqSts2IRnpS6EzQC0nE6Zf3iiebMSTTd7LFYVN1TkZPR5XgEt-sLm5OkMUrkQnUPsv8L321JbNK2QOonO5mnsE','Wait time was short to be seen. In and out, I was there for approximately 1 hour.','2016-09-07 14:47:13.581000','2016-09-07 14:47:13.581000',4,'Jackie Stelmaszczyk','https://lh5.googleusercontent.com/-Wg87RrjLRD4/AAAAAAAAAAI/AAAAAAAAAAA/R21n88Kue6Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7942),('AIe9_BFL0OZrFaHgoJtqifT1GHrI86aHxD_ci5MINi9cyM8PEJI46F_wvq84zqtQtrfvsighgGHHEtgHPgjak-Wb2yQgx_9Fze-vLVWxe6TyWIEyEzATFS4','Very quick, helpful and nice. Gina, Carlotta, Elizabeth, Naureen got my cut sealed up quickly!!','2019-09-18 01:31:42.871000','2019-09-18 01:31:42.871000',5,'Reagan Meachem','https://lh5.googleusercontent.com/-Ngu_FrGi1wY/AAAAAAAAAAI/AAAAAAAAAAA/x9zcyKD6nu0/c-rp-mo-br100/photo.jpg','3511292162159714121',7175),('AIe9_BFL0OZrFaHgoJtqifT1GHrI8ceOiXodAFrsCA4ImZdH3qX1fwbokOu8wz5bZo4YSNCii49-LQ-Wxitr-ZprAxqdFeu9BE_okWB9omKzY2neZiRsNog','My brother was feeling horrible but we couldn’t find somewhere that would take Medicaid, we called and Amanda encouraged us to come in and the screening was free, his doctor DrLingan was genuinely concerned and took care of him. His nurse Katy, ER Tech Chris, Townsend, were so kind and patient with him. I’m so glad we came in, my brother is feeling so much better thanks to everyone who take of him!!!','2020-01-06 04:57:02.978000','2020-01-06 04:57:02.978000',5,'Maira Luna-Flores','https://lh6.googleusercontent.com/-DM9NufFHVHI/AAAAAAAAAAI/AAAAAAAAAAA/9VxMHufNHD8/c-rp-mo-br100/photo.jpg','16891069708558046635',4094),('AIe9_BFL0OZrFaHgoJtqifT1GHrI8HM56OtvchrLnZRFrb7dFjwwhovO2Zsz5C421_K4qEehbqhL-tYQ23fZKj2iGKKtO4-shlIqUUFscUOgncuXxXPi8Zk','A very clean facility. Everyone was friendly and helpful. Almost no wait time. Dr. was professional and clearly explained my options to me.','2018-04-25 13:07:34.770000','2018-04-25 13:07:34.770000',4,'Pat and John Kaylor','https://lh4.googleusercontent.com/-CBBmt2Z5A7k/AAAAAAAAAAI/AAAAAAAAAAA/VsQzHbHf8qY/c-rp-mo-br100/photo.jpg','14567670160750071148',1628),('AIe9_BFL0OZrFaHgoJtqifT1GHrI8nTuqYr4Sk3Wx4l77izPP5_AkIlGuyS5TvF0EFr066TyLWr0Z-nF0ntMidECXz8MpCLSPrNyOcbneKMK0zu-GOwQg0Q',NULL,'2020-07-07 15:01:49.390000','2020-07-07 15:01:49.390000',5,'Cristal Roman','https://lh5.googleusercontent.com/-knVZqwH21z8/AAAAAAAAAAI/AAAAAAAAABA/AMZuuclOfy3tQjI-GVjl7oNsZWmVM2CuIg/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21422),('AIe9_BFL0OZrFaHgoJtqifT1GHrI8rkDYssATl-KkLM5YoY6PRBTgNAvjqexVBNUW949d1yDsojKkZiVEoBmuqXV937f0H5qbenBCQktSfl1hvuybAqCQAQ','Great customer service and kind representatives. The staff are organized and happy to meet new clients. I really enjoyed my experience with them today.','2020-08-05 16:52:15.579000','2020-08-05 16:52:15.579000',5,'Reno R. Greenidge-Bullock','https://lh3.googleusercontent.com/a-/AOh14GiL4uqDk8zoNcjp_DI1PGQqQnd0H3amVO4YHD4gYg=c0x00000000-cc-rp','14904078213800803294',21925),('AIe9_BFL0OZrFaHgoJtqifT1GHrI8vS0cuUk2kpJkUmEvvBv-IdbuYrGbzEl9qZUv9ice-eCiv0RU0r-R61wRelgMS4hc31MLW3Q1oWGJR1x5EDpzd3TiR8','Everyone was wonderful..Everything was thorough, quick and efficient..Dr. O\'Malley calmed me in knowing I will be ok and taken care of..he answered all of my questions and concerns without rushing me or cutting me off..I want to thank the entire staff Troy B, Jessica M, Melissa E, and Stephanie L for doing what they do everyday a GREAT JOB..I normally don\'t do reviews but I could not let it be known what a great staff SignatureCare Emergency .','2019-09-10 00:48:18.726000','2019-09-10 00:48:18.726000',5,'Javian Garrett','https://lh5.googleusercontent.com/-ADjBl3aUz7M/AAAAAAAAAAI/AAAAAAAAAAA/zQ4mebyVIXc/c-rp-mo-br100/photo.jpg','16389487648212004696',2933),('AIe9_BFL0OZrFaHgoJtqifT1GHrI91EdRlxJsorffA4EQBt6SrBJwCuCyQIrsmVNa5Bj1TdR1ZW0XZOokNX2S7uQlIF6m-NNyX7PwELVN5r9H3OnopxDIh0','Amazing facility! Dr Angela is so sweet and patient as well as the other nurses and staff. Came in for a rapid covid test and they have a smooth and quick process for everyone. With as many people are here I\'m surprised I am in and out in such a short time. I expected to wait for hours. They all keep apologizing for the wait as well, which seems silly to me. I\'m so thankful for them to be here.','2020-07-18 17:52:12.891000','2020-07-18 17:52:12.891000',5,'Angel Wright','https://lh6.googleusercontent.com/-V8zmSA2mHUc/AAAAAAAAAAI/AAAAAAAAAAA/fOB4SAeNOCs/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',21739),('AIe9_BFL0OZrFaHgoJtqifT1GHrI98IWk_r5tm9d0ARsVCr2Hrmy3p7qhWmy9ErWTUSQ_FW4Q2J8UczKJkcAjYt9vl2Csu6BtJRCIRZL8Zr_ZnC8Zs7qesM','This was the best ER experience I have had! Friendly, fast, knowledgeable. I highly recommend SignatureCare to anyone needing emergency care.','2019-09-15 17:12:57.736000','2019-09-15 17:12:57.736000',5,'Shanna Boleman','https://lh4.googleusercontent.com/-N6ekMUNxIO4/AAAAAAAAAAI/AAAAAAAAAAA/EMHTZCuuTxE/c-rp-mo-br100/photo.jpg','16590124370714063921',3208),('AIe9_BFL0OZrFaHgoJtqifT1GHrI9DoK8uyqu22sRC9iDWqtKZRicEo5d7pGJIqX2I1bIBghXK7gCKm0gKDZm-o8sQKi4KbJRikecydMAz4YiWqDfXxk6ws','De.cavazos, jose p, meredith Sam, graciela Rio\'s, Jocelyn a, and luisa r. Were great and awesome staff..fast and convenient!!','2019-12-23 00:32:57.339000','2019-12-23 00:32:57.339000',5,'Gabe The Dog','https://lh6.googleusercontent.com/-YivkkzOWskw/AAAAAAAAAAI/AAAAAAAAAAA/cTJaHnG_twc/c-rp-mo-br100/photo.jpg','16389487648212004696',2518),('AIe9_BFL0OZrFaHgoJtqifT1GHrI9faJuqM4THNU4-fMdpMk50m63ag3Zz6s2VYp9fva0lyhev7-DfI1rcWAzcLVfBFEfex4_eXD1UxkLeRFQlgxEhk_hNY',NULL,'2020-08-22 22:17:17.813000','2020-08-22 22:17:17.813000',5,'Cristal Gutierrez','https://lh5.googleusercontent.com/-EnydVlBJTN4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckTJEH8GeSyFr_flGAl0Aw5c9MGbQ/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22987),('AIe9_BFL0OZrFaHgoJtqifT1GHrI9JquWNMpenGf9cEJnhGNQoBl3kO5VODX76jOmZxFOELuxdOxRQ6V3DfljwrmBIxJAf4SbXjwABp-2w2B-2B9rH3wlZ0','Unprofessional from the time I walked in the door. Only concerned about my insurance card or if I had cash. These trash, so called medical professionals let a 7 year old with chest pains hunched over to the point I had to carry him leave because I told them I did not have my insurance card and did not have cash to pay. I explained that I worked for GM financial and had Cigna insurance but just didn\'t have card. The receptionist (after she finished a personal call as we were waiting) said nothing she could do and they could not see my 7 year old son unless I had cash to pay since they claim they had no way to look up my information. Thank God it ended up not being a life or death issue, but I would warn you not to go to this place. There are other places in area and was able to get my son seen at Methodist er a few minutes away. I hope these people are really proud of the piece of crap job they do and hope they have some type of morals and feel like crap for letting a child leave without being seen. By the way, Methodist was able to look up my insurance and less than an hour later my wife was able to get home and get my insurance policy number. So the idiots would have got paid if they were professional enough to see my son. ','2016-01-26 14:27:25.749000','2016-01-26 14:27:25.749000',1,'Marco Rangel','https://lh3.googleusercontent.com/-IEObJxMRjuc/AAAAAAAAAAI/AAAAAAAAAAA/HvE6dNCWKpw/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',8925),('AIe9_BFL0OZrFaHgoJtqifT1GHrI9n-TzHMl8d-UxkZcW5TDMd6PgGjueDFRs8wfDgQxaJNtNoQdS03S4Wud8zIf3eiktW1cNhkYRx64pwAAvtZahhrIAG4','Clean facility for starters. Registration was quick and easy. Clinical staff was prompt, attentive, and kept me informed of any delays that may have come up. Each step of the process was explained in a clear and concise manner. Much better experience than a hospital based ER. I will definitely return if needed in the future.','2019-05-22 03:50:19.435000','2019-05-22 03:50:19.435000',5,'Kay Bradley','https://lh4.googleusercontent.com/-2rSMb7Af2oA/AAAAAAAAAAI/AAAAAAAAAAA/PPRPl6X8d7k/c-rp-mo-br100/photo.jpg','17898197009688164559',5729),('AIe9_BFL0OZrFaHgoJtqifT1GHrI9Nni-g7W9krxianuoxMMcdvttvus818B9GeWlxqTNvRrh1JuwV686mzLwTZSC5Va1z24qWmkLHXXmoSKmW85O-QdtWc',NULL,'2017-11-28 00:57:54.905000','2017-11-28 00:57:54.905000',5,'Bobby B713','https://lh6.googleusercontent.com/-MILYhCI7WzE/AAAAAAAAAAI/AAAAAAAAAAA/Pvw2XHo4umo/c-rp-mo-br100/photo.jpg','8918455867446117794',9330),('AIe9_BFL0OZrFaHgoJtqifT1GHrI9O9jly6nM1r9RkGSoCwVjrSYq2qx7ASSH6LYmKdkUloiYGm1ZksHCTA7Elo1W3NDfBZ2tI-rWtEGNrnmCErz03PhYNY','This facility was great. Service was much faster than your traditional ER. Jana and Marcus were gentle and caring. I truly recommend them.','2019-07-04 00:16:29.511000','2019-07-04 00:16:29.511000',5,'Linnette Tamok','https://lh4.googleusercontent.com/-gfuRWB2lUlk/AAAAAAAAAAI/AAAAAAAAAAA/Fqz57S9IgeI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIa3SLVM_fOrMuN9R0U7-oJjc_mJq6B6iLSX27S8XgCV-6S5gdcs7ljeF3SmROz6NPFAcavhSJGZCq6GEhsXoY9AkoVi8',NULL,'2017-11-14 02:43:39.220000','2017-11-14 02:43:39.220000',5,'FryingPan','https://lh6.googleusercontent.com/-j6OO-a5jfF4/AAAAAAAAAAI/AAAAAAAAAAA/1P7X9xgIUe4/c-rp-mo-br100/photo.jpg','16590124370714063921',3907),('AIe9_BFL0OZrFaHgoJtqifT1GHrIABMiJhexaZtUoZBF2WnENIWCB7JysfCtBzTJ6XtXDskIJObTG2mk1naslbHzsslOokxaayCJTIoePK-vXsjGGNFFnsM','I had a great experience here. The doctor and nurses were extremely polite and professional. This is the ONLY place I will go if I need some type of emergency care ion the future!','2016-08-17 16:55:49.975000','2016-08-17 16:55:49.975000',5,'Robby Robinson','https://lh5.googleusercontent.com/-ynvKzbLTq-s/AAAAAAAAAAI/AAAAAAAAAAA/MLJxepunvSo/c-rp-mo-br100/photo.jpg','17394740196501090048',5213),('AIe9_BFL0OZrFaHgoJtqifT1GHrIaDnW9_sI88XSFo-Qw8wAbviT2g69oiwNyMa0eqZvfEmKRB8xvGeSWo3BAX6dBP4uu4X6i24XtG_ED6lYnU8YfEexwxk','They were amazing! .Earl & chelsey Were so nice & friendly, I highly recommend this clinic -it is convenient, efficient, clean & well run \nExcellent plus Dr. Goodwin was quick with our Covid results & Gave is tips many thanks','2020-07-01 15:31:45.795000','2020-07-01 15:31:45.795000',5,'ELLEN Ault','https://lh6.googleusercontent.com/-ik3nJisIQCQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmxES4SpEtZr09vpHoKUMRkjxms-w/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21417),('AIe9_BFL0OZrFaHgoJtqifT1GHrIaFrsC_tAYoJIdJ_Y3JrBG6kr-3BxVAIrs1534V_pP62JDfE8eqENqAzqURppwzZ9-Ly9nJl1zUvG9xE1s0_mk-BrTO4','Provided great and friendly service. Took no longer then 15 minutes in and out receiving stitches.','2017-06-15 22:06:24.735000','2017-06-15 22:06:24.735000',5,'Chris Ruiz','https://lh5.googleusercontent.com/-vXPSoxNiGL4/AAAAAAAAAAI/AAAAAAAAAAA/cRQjjjDq3hc/c-rp-mo-br100/photo.jpg','3511292162159714121',7811),('AIe9_BFL0OZrFaHgoJtqifT1GHrIAGZ4oYUXAW4aI-vQ6CdjRSEIV6g5ZhZovZDBHJo3CPIgSJXBUZ4sy0PWJEtiERzGSiNRyP-2SJmOeO9rKc6aGOWVFL8','$7,600!!! Be aware of the fees that these urgent care facilities charge. I went in because I had a stomach virus and ended up being dehydrated and needed fluids. I was given fluids and meds for a headache. The staff was helpful and very nice and I did leave feeling much better but the bill was over $7,600. Just to walk in the door the fee is $3,500 and another $950 for the doctor fee. The remaining balance was for a long list of tests and medications. I have ER coverage but my insurance only pays half of that amount which means I am responsible for the remaining balance of over $3,000. I will never ever go back to an urgent care facility again.','2018-10-21 19:11:29.183000','2018-10-21 19:11:29.183000',1,'Susi H','https://lh6.googleusercontent.com/-H8oYwuZtOWA/AAAAAAAAAAI/AAAAAAAAAAA/_xE_RzKxyBg/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2203),('AIe9_BFL0OZrFaHgoJtqifT1GHrIApX59hnZImZDhUVRcNejAh1r9b3s_MbmuMYIC-weYPKmkqCz-5D5fs16hx_N0GWOX-TViWXzB0EnHcPUGZtnaWIP1po',NULL,'2020-03-09 01:05:05.150000','2020-03-09 01:05:05.150000',5,'Jordan Foreman','https://lh6.googleusercontent.com/-6g1ndQVBjTs/AAAAAAAAAAI/AAAAAAAAAAA/nieiegnZDts/c-rp-mo-br100/photo.jpg','14748677429039074158',18852),('AIe9_BFL0OZrFaHgoJtqifT1GHrIaqReAXBIF-vSE0aeYhtWdtPJuW_x6twCAIMe_ndTtChDLwyaqslvMCQZyfNe4O4jELw5SjTMfeXNkA4JyYmF1wd1M2A','Doctor Vakey and nurse Jacob did a great job getting me in fast and getting me taken care of. The front desk Naomi did great along with the techs Becca and Morgan.','2019-09-23 20:19:57.126000','2019-09-23 20:19:57.126000',5,'Andrew Doerge','https://lh5.googleusercontent.com/-MQObWeax50k/AAAAAAAAAAI/AAAAAAAAAAA/awJKTFY-9B8/c-rp-mo-br100/photo.jpg','16590124370714063921',3179),('AIe9_BFL0OZrFaHgoJtqifT1GHrIAsYChuBudItFZ9UkUoOdfc3KaSiwdgzPufM5fKAy0EMbbDupFp8r5b-LSxT6QlW38-ouUBUfw1LwXpF3bIhm5eXMpOE','I was feeling sick for a few days and decided that it was time to go to the ER. I googled up Emergency Rooms and Signature Care popped up. I work in healthcare but don’t like to tell the staff that because I don’t need anyone to feel uncomfortable and let them do what they do best. Ashley was so fast with my registration. She is so sweet and kindhearted. I’ve been going through some tough stuff in my life and she made me realize there are still good people out there. My nurse Lynn was awesome and attentive. She took care of my needs and make sure I was comfortable at all times. Dr Ybarra has the best bedside manners I’ve seen in awhile. He was also attentive and always checking in on me which you never see a dr do. Matt is the tech who took my IV out. He was so friendly and funny. I don’t know what else I can say about this place. The best care I’ve received in an ER!! Keep up the great work everyone!\n\nI was so caught up in complimenting everyone that I forgot to say the place is extremely clean and welcoming. You can’t beat that in an ER visit.','2019-09-04 16:35:59.357000','2019-09-04 16:35:59.357000',5,'Sally Cao','https://lh6.googleusercontent.com/-MO5tF_-LXZc/AAAAAAAAAAI/AAAAAAAAAAA/hjK12b6gFQI/c-rp-mo-br100/photo.jpg','17898197009688164559',5561),('AIe9_BFL0OZrFaHgoJtqifT1GHrIav2XM7NClE-pzkBiZppOJJdiTqwX7BWYC9VZEeJy95GJLK3ldESYkU1Z9I2bnd3UmRvperCETIGYSqgcM0lpP3buxY0','Nice place, very nice receptionist -Dee. However I didn’t feel as if I got the care I needed. Went in for an earache, gum pain and dizziness. I left with nauseous medication. 😕','2019-08-07 15:07:36.523000','2019-08-07 15:07:36.523000',2,'Janetta Harrell','https://lh5.googleusercontent.com/-MLDSjDKIDig/AAAAAAAAAAI/AAAAAAAAAAA/WtYur56Yg5E/c-rp-mo-br100/photo.jpg','3511292162159714121',7220),('AIe9_BFL0OZrFaHgoJtqifT1GHrIavV22mTXEnaRDMQ6adzr-7nNYiP_5CD8ix0nK-UYUwqc9xqGg-YgoJFNpN4T0InCIZ26lHcbiVHMlSR1-5ectOTGj-M','Dr. O\'Malley, Nikaela, and Amy were pleasant to my girlfriend and I.','2019-03-11 09:57:28.178000','2019-03-11 09:57:28.178000',5,'alan garduno','https://lh4.googleusercontent.com/-9YzdY4V01-8/AAAAAAAAAAI/AAAAAAAAAAA/bI8Mxitgx1Y/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIb07_XwZyr616I3UR_Qa9nEpVR9xhu_n_g2QIX3KoQ3YM4aflJAd_RUJcHvksuzVJAi7J2c8-w2hgITFRSI7Ifi3vC_k','I was quickly seen by the ER nurse and doctor. Much more efficient than going to a hospital ER. Will use them again.','2020-05-26 01:32:46.521000','2020-05-26 01:32:46.521000',5,'Madeleine Murray','https://lh5.googleusercontent.com/-jYiGhqpxwrI/AAAAAAAAAAI/AAAAAAAAAAA/_uU5Vh8hokM/c-rp-mo-br100/photo.jpg','14748677429039074158',21781),('AIe9_BFL0OZrFaHgoJtqifT1GHrIB26l-4y5GxYMSf8g3zrGuj0JiDCj08aZ0lqn-5n0kXEa2DUOW9kQirIXJgWhie3bkl1z6chj1DLwm-cWOTp33rIfQp4','Thanks dr.iheme, Alvean a, Marcus B, Jocelyn A, Brian W.','2019-11-20 15:55:54.233000','2019-11-20 15:55:54.233000',5,'Sherel Henderson','https://lh5.googleusercontent.com/--W-7u5LR9S8/AAAAAAAAAAI/AAAAAAAAAAA/bg0Y-9LLAJk/c-rp-mo-br100/photo.jpg','16389487648212004696',2654),('AIe9_BFL0OZrFaHgoJtqifT1GHrIB2WUV9mnseMuqGm7i8WsBlh7bsNoOYgpOQcIFQqyIkljPqKqqCaz8gsbeULD-MF6yEYMu7fGpp40AvWUIs8Pl_A91gU','I was at this place on 02/06/2020 due to severe leg pain ,Dr Hehman,Nurse :Nichole ,Rad tech :Lonnie,Er tech :Staci ,Reg:Alyssa was so compassionate and helpful and took good care of me throughout the stay.\nNow the pain is gone and will definitely comeback incase of any emergency !','2020-02-06 17:03:18.625000','2020-02-06 17:03:18.625000',5,'ans 86','https://lh5.googleusercontent.com/-mBuU-rny0i8/AAAAAAAAAAI/AAAAAAAAAAA/q2oZaW_8LgQ/c-rp-mo-br100/photo.jpg','8918455867446117794',14845),('AIe9_BFL0OZrFaHgoJtqifT1GHrIBaBLou4O1h9ystZmq3i6kVL-BUG0MPjYOKr-2VlfGrq7OSLAmjDGrSszkMKlj49rey5O2wjWLRCIyXzW8CpFeOpCQkk','My experience at this facilty has been one of the best I ever had. The staff is great. The doctors and nurses are attentive and very respectful. There is no wait and they are very thorough in finding the right treatment.','2020-02-06 21:27:48.295000','2020-02-06 21:27:48.295000',5,'TheBookKeeper18 Love','https://lh4.googleusercontent.com/-CXjvboYwhcg/AAAAAAAAAAI/AAAAAAAAAAA/CprrCFQzrrE/c-rp-mo-br100/photo.jpg','14567670160750071148',13552),('AIe9_BFL0OZrFaHgoJtqifT1GHrIBbQKW_NOA4WIhqIxB1p0kivu_QkRnDRpC4kEDXImwIRRwgWGu243pM8VleqOqRxmw1LT_etfSwG2bfTvfvOuvYYMKoE','He staff was very nice and ready to help and ms.Dee at the front desk is very knowledgeable and eager to help anyone.','2019-01-16 21:16:21.055000','2019-01-16 21:16:21.055000',5,'kimberly houston','https://lh5.googleusercontent.com/-JJetYn_vdtc/AAAAAAAAAAI/AAAAAAAAAAA/uZb3inW-y-k/c-rp-mo-br100/photo.jpg','3511292162159714121',7470),('AIe9_BFL0OZrFaHgoJtqifT1GHrIBfvmDfnIPjk0S4fM6-ZHJu1OC4z2mRPmRJMbFHFMRQm-cM2hKXoDhiptEjEl8PWQHky1hGl6-z2CYF3gW-QFOxu4UA0','I had such a pleasant experience while at SignatureCare Bellaire. From the moment I walked in I was greeted by Ashley and she walked me through the registration process thoroughly. The team there was so kind- Blake, Rick, Yasmina and Dr. Tran, all made me feel so comfortable. I highly recommend should you need ER care to choose this location as it was seamless and comfortable.','2020-02-18 17:03:03.414000','2020-02-18 17:03:03.414000',5,'Melissa M','https://lh6.googleusercontent.com/-TfDU73tqJu8/AAAAAAAAAAI/AAAAAAAAAAA/NIDYN_mZjoE/c-rp-mo-br100/photo.jpg','8679688254631342173',14747),('AIe9_BFL0OZrFaHgoJtqifT1GHrIbH0KoiI6vVLH_BjVw2XN6dRz5TZ-u-8dk3cdT9ogjcJv0NcZz3BhAdLTtAMhItmd97gcq8kGYeXHyshA9D_X8UPnCLY','i am the most stubborn person when it comes to visiting the doctors office when i am sick. unfortunately i let my symptoms go on too long and i ended up not being able to walk. i called the nearest urgent care center, which was this one, and i am so happy that i did.\n\ni walked in and was greeted by mercy immediately and shown lots of care. she made filling out paperwork easy and let me go back to a room almost immediately after i sat down in the wait room. \n\nthe nurses and doctor were incredibly sweet and patient. they were also very clear on pricing as i don\'t have insurance. \n\nthey were extremely helpful and reassuring in getting me back to normal. i was given a prescription and a doctors note for work. \n\ndon\'t worry, you\'re in good hands here.','2017-04-19 03:59:25.644000','2017-04-19 03:59:25.644000',5,'Gabriella Gonzalez','https://lh4.googleusercontent.com/-bHmpriBYf1c/AAAAAAAAAAI/AAAAAAAAAAA/4U1Fz2Oyq5c/c-rp-mo-br100/photo.jpg','3511292162159714121',7839),('AIe9_BFL0OZrFaHgoJtqifT1GHrIbiM2SHOmDWdCr8qF3b2SbNZbzOlcyqCimhOIhGVdgQAf0GEljB_vE1q9OrYuBXcbEvCvwIgsUx-FUpIX7q0gy8I5JhU','Great service. Very helpful and amazing stuff. Made me feel very comfortable with my visit. Highly recommended! Tanishia is awesome at the front desk. Very helpful','2018-11-26 09:48:09.696000','2018-11-26 09:48:09.696000',5,'Mandy B','https://lh3.googleusercontent.com/-8aViyfhw2Bo/AAAAAAAAAAI/AAAAAAAAAAA/RjomgJnXsGM/c-rp-mo-br100/photo.jpg','17898197009688164559',5922),('AIe9_BFL0OZrFaHgoJtqifT1GHrIbJQTDCUdCOuTXslvnNo8ZYFIWbJ9_bVbQkpnsVM1N_WO3HwrBXEe8bUlgOcNBtUvSzULdb1t2tfgYMXgHY487Kk3sv0','If I could leave no stars I would so so rude surprised that this place has a rating this high lol','2020-03-16 16:57:46.262000','2020-03-16 16:57:46.262000',1,'Ashley Conley','https://lh4.googleusercontent.com/-e39L4DrywHc/AAAAAAAAAAI/AAAAAAAAAAA/P9FPheRlrnM/c-rp-mo-br100/photo.jpg','17394740196501090048',21061),('AIe9_BFL0OZrFaHgoJtqifT1GHrIBp93ODJVVVuaTSXTNxg4j0X4JGLMNxYyNrqAVgGSz6qDdWu_tgGx8zrmHGn_OsqphXXQs9sv_xGEE2b69aRYMgflfHU','Very nice environment everyone was super helpful. Especially Sarah. If you’re looking for a quick urgent care place I definitely recommend this one. Also thanks to DR. Patel. William and Bri.','2019-11-21 05:45:04.679000','2019-11-21 05:45:04.679000',5,'Zoe Smith','https://lh6.googleusercontent.com/-f65VWdtcrv8/AAAAAAAAAAI/AAAAAAAAAAA/tx8jco9Oxms/c-rp-mo-br100/photo.jpg','17898197009688164559',5410),('AIe9_BFL0OZrFaHgoJtqifT1GHrIbqdkzIzU7VJEG05Or9xj_uVIMbE5snkKqk0vJqqR0nAroH91Ad5JFzJ0fpycxaeT22-CSmeFqzD4D96BlTXUA1_FCd4','I want to thank Memorial City Signature Care staff for taking such good care of me. Doc Daniel was very personable and competent, \n thank you so much for such a nice stitch job! Johnny and Aaron were super friendly, helpful, informative and made sure my injury was well taken care of. There was virtually no waiting times from the moment I walked in until I left. I am so lucky to have such a great place so close to home. 👍🏻😁','2020-01-15 02:33:14.722000','2020-01-15 02:33:14.722000',5,'valerie dettore','https://lh4.googleusercontent.com/-c7w5de1eWT0/AAAAAAAAAAI/AAAAAAAAAAA/zkoZnFXXz-Q/c-rp-mo-br100/photo.jpg','14904078213800803294',13633),('AIe9_BFL0OZrFaHgoJtqifT1GHrIBTWxNlbeNFaK_1n62rZ_KgJfdHySt3qzHbGkHd1b6snWzQPtVr5_H6C7y2xPF7nMQSTkpogGeO24eEulmXAxZ-lsLD0','Very clean and fast love the service I highly recommend you to try them.','2020-02-27 13:59:53.701000','2020-02-27 13:59:53.701000',5,'nichell joseph','https://lh5.googleusercontent.com/-SaSBmJmC9Po/AAAAAAAAAAI/AAAAAAAAAAA/h7CxP83GTFs/c-rp-mo-br100/photo.jpg','8679688254631342173',14723),('AIe9_BFL0OZrFaHgoJtqifT1GHrIBUdQTGmQmlTHnOsXNJq4h_XZHz1LUEvntzmSmKtaGXyGIjkA1P57od1tyLMt1PLp3xiy6wV3ogANAbu2nZAS7LzBGvg','I liked coming here, it was fast and Dr. Ybarra, RN. Christina, Reg. Theresa and Tech Melissa were very nice to me. I would recommend this place to any of my friends!','2019-01-07 02:02:48.355000','2019-01-07 02:02:48.355000',5,'Treicy Hernandez','https://lh5.googleusercontent.com/-DEXok59g9AI/AAAAAAAAAAI/AAAAAAAAAAA/W1BYfxfseIA/c-rp-mo-br100/photo.jpg','8679688254631342173',8887),('AIe9_BFL0OZrFaHgoJtqifT1GHrIbZXsVfrqtnbHy5BM9OtbuqGVizd_PPPZGInvEf5IT_o795aDT1YedIEHBef1zNP7E3uIa-QP_VwwfvvIgwXbd3kefSI','Very fast and friendly service. They really are the best er in town. Thanks Doctor Kimball, Rebecca V, Jeri and Cat','2019-10-18 00:56:47.534000','2019-10-18 00:56:47.534000',5,'Kevina Walker','https://lh4.googleusercontent.com/-6YGlOwETkOs/AAAAAAAAAAI/AAAAAAAAAAA/X6x4sDLOzPU/c-rp-mo-br100/photo.jpg','16590124370714063921',3133),('AIe9_BFL0OZrFaHgoJtqifT1GHrIc2pv--mcZFF_rrw5jmVhI6CZ2p0UsPNdF7WZVOMtCw8zvmmeGvGgs2wvCLm9cKa1S1wjND9WpLzX_Yr0E4T1AFEhHfs','The care by Doctor Zheng and nurse Irving was amazing! They were so patient and caring! The whole staff were great ! Thanks','2019-12-31 04:38:45.905000','2019-12-31 04:38:45.905000',5,'Jasmine Smith','https://lh4.googleusercontent.com/-AOr0LzPxjRU/AAAAAAAAAAI/AAAAAAAAAAA/f7u4AW-W0IY/c-rp-mo-br100/photo.jpg','12541597562633926366',283),('AIe9_BFL0OZrFaHgoJtqifT1GHrIC5J7wbaCp5_ym5LiUv9zlt6j2NTc1CnHli8TNZL7yEZ9dWo_Z9tyNZ4UeV5KcfDGv1okoxgVli9DC-AB3QlZXIqga10',NULL,'2020-01-05 05:15:47.737000','2020-01-05 05:15:47.737000',5,'Ramirez Ramirez','https://lh6.googleusercontent.com/-Bt1KVmX8AyY/AAAAAAAAAAI/AAAAAAAAAAA/LkAIDGgHizk/c-rp-mo-br100/photo.jpg','6521947413723274945',8036),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcA7EcTQy65toNR_oHvOBvOm2SHeA8Zcsl5K--EIm_QRZB0olyTdAQiAYcJjdZyA-G68FhzynuGJFL0MZ7tzStXwOieA','Awesome care from tanisha, heather, Shelley, and dr lindsey','2019-02-04 04:37:59.457000','2019-02-04 04:37:59.457000',5,'Julie Bernard','https://lh5.googleusercontent.com/-e9dR5IiJitc/AAAAAAAAAAI/AAAAAAAAAAA/lDV3CLdvLXE/c-rp-mo-br100/photo.jpg','17898197009688164559',5868),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcaOG5aK4RrPeJekmR6sd_5j4dwH2NIZ4B3YM01IM-bYz5giJOiNYlZhGRXq4r9xGBq3zH39hoUvODfX5t-pXauAmBEo',NULL,'2018-12-14 16:37:55.556000','2018-12-14 16:37:55.556000',5,'linda jones','https://lh5.googleusercontent.com/-EviEk1GcZcs/AAAAAAAAAAI/AAAAAAAAAAA/4WHPR4YcPJ4/c-rp-mo-br100/photo.jpg','8626688543755174284',8630),('AIe9_BFL0OZrFaHgoJtqifT1GHrICd_l0Hogp4eOXNW4XiHwf9dctRk1EWKvFhL_AqpmRFUVZBh1dcBmMQ_RiOY-IubC6RJoA4nDDjosbI_EjbsowYwbTrY','Amazing service!','2019-08-19 03:13:44.736000','2019-08-19 03:13:44.736000',5,'Danya Rodriguez','https://lh6.googleusercontent.com/-3cHtlIQYrYo/AAAAAAAAAAI/AAAAAAAAAAA/5j7XP5DM8Jk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcH7fJjymQRm2pdle2ek3rhhr8Ny-6SpvYyutzT0WTWdKI6vkAaDZOdueP8PtiRQJB8u9ogEO5M2MQJCB-A3g9AHZ8jU','Great place the staff was nice.Ashley at the front desk really helped us.The nurse Jessica helped my son with his needs and questions.Dr Ybarra attend my son very quick and proffesionaly.','2019-01-28 17:33:58.489000','2019-01-28 17:33:58.489000',5,'Ebony Moreno','https://lh3.googleusercontent.com/-s8-T5HdGp3g/AAAAAAAAAAI/AAAAAAAAAAA/QFXPppAmUe8/c-rp-mo-br100/photo.jpg','17898197009688164559',5872),('AIe9_BFL0OZrFaHgoJtqifT1GHrICJ5bzDOp2EBI2kpmx8iTft0rCWhWW2z024rUFUEdPf-M5a-Oo4W3c4AEfMZVxa_ijF2vU4bKnNAV0ao0tUnla8rBOkY','Everyone was so nice and so professional. The receptionist Maya was the best! She helped me so much and answered all my questions with a good attitude! And the nurse (Kristina) was a pro with the ER Tech (Scott)! I took my toddler and they were so patient and tried to make him laugh and took good care of us!The doctor (Tran) was super sweet and very nice to us and my little one. Highly recommend!','2020-02-08 18:13:33.993000','2020-02-08 18:13:33.993000',5,'Erika Lopez','https://lh6.googleusercontent.com/-r-flvaFDYNg/AAAAAAAAAAI/AAAAAAAAAAA/AKpdFVJvgKI/c-rp-mo-br100/photo.jpg','12541597562633926366',22469),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcjlSzIF3l4t7PyyENOn9hfYKQEcMC4t2ehW5iGQVRG1rc5b7k5qdxA8WerkcbKiNyxgRUBf7A68Ai0Fiw5PX1QQ9nG4','Dr Lindsay, Carly, RN Sarra, Sherwin, and Thelma were nothing short from the best. I really enjoyed coming here and would come here again in a heartbeat. Thank you for being a part of the Westchase Community!!','2019-12-20 05:47:32.434000','2019-12-20 05:47:32.434000',5,'Chucky Ka\'lean','https://lh3.googleusercontent.com/-bvIei-TCChw/AAAAAAAAAAI/AAAAAAAAAAA/TlE3xtKqHDk/c-rp-mo-br100/photo.jpg','12541597562633926366',328),('AIe9_BFL0OZrFaHgoJtqifT1GHrICM6xqmQ8i7-Sv3XPAW8v-B63pA6zNPC0KMyLTheJTbmo083dNsd9S5haBPz7Ms8O4XsialfJ8EEvCq0mCSeeWH3j4pw','This place is so nice and truly care about the patient’s comfort. Nothing but friendly and caring people here. I had Anthony as an RN, was super kind and made sure I was always okay!!','2019-01-15 22:46:15.481000','2019-01-15 22:46:15.481000',5,'Rachel Turner','https://lh6.googleusercontent.com/-Jbr4T4OThQw/AAAAAAAAAAI/AAAAAAAAAAA/dWXJz_5Zg3Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3586),('AIe9_BFL0OZrFaHgoJtqifT1GHrICORBh6cdQa7YRR9DK__L7uLlW19Bgt5NjxSjSoLh9GDfbiXPv8uIcj8VMxQGVyhXWZTVhH7u-YcZJeX-9kPD92j3Pxo','The facilities are clean and there was no wait time. The doctor and nurses were very nice and helped me treat and neck in shoulder quickly. This is by far better and any ER experience I have ever had!','2016-07-05 22:55:27.786000','2016-07-05 22:55:27.786000',5,'Michelle Koudsi','https://lh5.googleusercontent.com/-w2S7-p73B5Q/AAAAAAAAAAI/AAAAAAAAAAA/rT-RESqUCbU/c-rp-mo-br100/photo.jpg','14567670160750071148',2011),('AIe9_BFL0OZrFaHgoJtqifT1GHrICp3ItsSrEhUOsEiTVS6_pj7wfLf9a5zN5G4i9C87-2L383E_wROwVq7kJXAfy2c0PEonmkRUlNj5bmrLiaMx7yuzusA','I had a GREAT experience! I didn\'t have to wait to get admitted to room and the staff was EXCEPTIONALLY caring!! I left feeling SO much better! Thank you!','2016-12-23 20:59:24.867000','2016-12-23 20:59:24.867000',5,'Michelle Ortega','https://lh4.googleusercontent.com/-zfWEbbIlXck/AAAAAAAAAAI/AAAAAAAAAAA/SYvX0kmf3dc/c-rp-mo-br100/photo.jpg','14904078213800803294',2435),('AIe9_BFL0OZrFaHgoJtqifT1GHrICQySvzN5IxD6Ny9oWmuaqMYTTF0A3a_sdmp3uzVMQoswfKPH32L539hFEeW0oBAZBKEPkyWKj7-c3MaHrSck0eLJolM','Good experience. I was taken care of quickly and it is close to home as well.','2016-05-15 00:13:12.689000','2016-05-15 00:13:12.689000',5,'That Kent Guy Phone','https://lh3.googleusercontent.com/-0qzo8VWh-z8/AAAAAAAAAAI/AAAAAAAAAAA/5DIprcgcpp4/c-rp-mo-br100/photo.jpg','14567670160750071148',2035),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcraf28lMwjHndS1JeK1SU86XzkIkQhWgFnA3HRI7YbexU5t88dCJJcR1U8nlPYYCxvUxuqI66PsKbXtXagvfs_5kSE8',NULL,'2017-03-03 14:02:09.536000','2017-03-03 14:02:09.536000',5,'RowdyGunnshyTV','https://lh6.googleusercontent.com/-APEKw7WrI-Y/AAAAAAAAAAI/AAAAAAAAAAA/itup1lHujPs/c-rp-mo-br100/photo.jpg','17394740196501090048',5103),('AIe9_BFL0OZrFaHgoJtqifT1GHrIctUXRHILFuhqjyJHcetUkaiigLElsW7Z5JolBxKscGeZ7NvcO0Kk1f4h6oRx4wz3cn4DslTf3iizSXYW9-rF2zvIgKw','Kendra, Brad, Morgan, Dr. Kimball, Ashley and Dyveliz are literal angels!!!! Coming to Signature Care is the best decision i’ve ever made medically for my children. Such caring people and thourough. Thank you guys!','2019-12-30 15:47:32.401000','2019-12-30 15:47:32.401000',5,'Allison Lassetter','https://lh3.googleusercontent.com/-7OspHdtfs-w/AAAAAAAAAAI/AAAAAAAAAAA/PiL71QQwOyg/c-rp-mo-br100/photo.jpg','16590124370714063921',2999),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcVBJOI-ojAhoF5eIrdRnt7YIAOfKDCuKb7XqQ6MMdQQMYSkHbv_23TsSQ0KbxF_5_9ihw6NMSpHeVorn42o59lm9Qa8','Was given excellent care by my Nurse Meredith and Imagining Specialist Tricia','2020-03-04 21:28:47.933000','2020-03-04 21:28:47.933000',5,'De\'Anna Dody','https://lh5.googleusercontent.com/-hzan0VU0pIU/AAAAAAAAAAI/AAAAAAAAAAA/kQaQmhPMi28/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',13731),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcVfvIHpznCbiToR2-57_NbnbBLqSDf29Z79c5NwlJg-hka9tDLO0Vj0L06IoCHs9XoIVl61-g2-hMa2wqx9SnYWuuXg','Nadia and Dr Chowdhury created a great experience and were wonderful people. Medic was friendly and kind to both of us and the front desk was helpful and courteous','2020-08-05 22:22:24.788000','2020-08-05 22:22:24.788000',5,'Johnny Cha-Rach','https://lh6.googleusercontent.com/-kMuCQoagU3g/AAAAAAAAAAI/AAAAAAAAAAA/efE5ffu4gvg/c-rp-mo-br100/photo.jpg','14748677429039074158',22519),('AIe9_BFL0OZrFaHgoJtqifT1GHrICWJ-pyv0kBet3ICfHp2DXY8BBWPPXclKUwEtxSiYB_7PgKy3VqJI8l5u2QbFTkHYiCfafm_PZ1mvbR991eOMUY_bVoY','Our experience was great. My boyfriend was brought in and seen immediately. Dr. O’Malley, Nikaela our nurse, Amy our receptionist was great! He’s been to other hospitals three times and this is by far the best!','2019-03-11 01:40:17.711000','2019-03-11 01:40:17.711000',5,'Enola Lemon','https://lh5.googleusercontent.com/-eAQ6JUxuccE/AAAAAAAAAAI/AAAAAAAAAAA/GQjhtTlk2vY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcWomf_QNUQejMy_3nV6RgSvKXb0kJqF-oLoh8rmxI1mI0KMS6SPBCRBLoBh_X9nGKssibiW6kQ7WbXNd96-y9RaoBsk','Excellent Service. Came in with a sprained ankle and a bad sense of humor. Left with a smile, x-ray, prescription, brace, crutches and a lollipop. Totally worth the trip.','2019-08-19 13:36:34.376000','2019-08-19 13:36:34.376000',5,'Joseph Frasier','https://lh3.googleusercontent.com/-f6Ke8QCExH4/AAAAAAAAAAI/AAAAAAAAAAA/FYwWr19gaJ0/c-rp-mo-br100/photo.jpg','14904078213800803294',2101),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcy-22ci4QdsFlA13eZGrbL6eV05BsEB7D6shennhqX8-MmcT55RWavM4fDAWQ3tw4GfTf8purg6bzUOfV17-KuvPzAE','Very friendly Doctor and staff, definitely recommend.','2019-08-31 15:27:11.420000','2019-08-31 15:27:11.420000',5,'Nancy Bravo','https://lh6.googleusercontent.com/-NNoVNOhC8RA/AAAAAAAAAAI/AAAAAAAAAAA/dBfd_1Yufm4/c-rp-mo-br100/photo.jpg','16389487648212004696',2959),('AIe9_BFL0OZrFaHgoJtqifT1GHrIcZ13p3lbFQoLjD_32liuJfNS7axFmN537cTEO0wNZX9ycj78wFUdFoWtcVLv2B_vZtcOFnyQrXzVvETiTPHcYx77JgI','I was promptly greeted with a warm smile from the receptionist Tanishia. The nurse Susan ams doctor Hall were fast in their service and kind. I was in and out. Prescribed me antibiotics for my infection and medicine for my pain so I can get some relief finally! Everytime I have come they provide impeccable service. Outstanding and very nice facility. Thank you so much. Great team here!','2019-10-25 00:08:11.330000','2019-10-25 00:08:11.330000',5,'Starlia Chiappetta','https://lh5.googleusercontent.com/-IpUlXjOigy0/AAAAAAAAAAI/AAAAAAAAAAA/kf2OZbtEcr4/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5482),('AIe9_BFL0OZrFaHgoJtqifT1GHrID_BCY7Ne6taNQsPisvrFBrpyp4MhSnc4ibK4l_-IEhpiuwFKDH6F0Aty7SzwapB0hvfROOg577Gqcmr2LVn647EaWbs','The staff treated my girlfriend really well and in good time','2020-02-24 01:42:53.032000','2020-02-24 01:42:53.032000',5,'Arthur Jose','https://lh3.googleusercontent.com/-L3qcvd3TQEE/AAAAAAAAAAI/AAAAAAAAAAA/Bu9kcGkMUq0/c-rp-mo-br100/photo.jpg','6521947413723274945',14553),('AIe9_BFL0OZrFaHgoJtqifT1GHrId3Pa3z6A3Puscc3PJBqpMN61O_xn_qRoq6PNHMU2uPtthRSYDRPdWCAdf5Apyi1g8539vwkDfyhHo9UatPqKBbZ74U0','Dr. Siddiqui, Leslie at the front desk, RNs Churiah and Gina, ER tech Olivia, and rad tech Jacqueline were incredibly nice, friendly, fast, and efficient. They helped my husband and I feel secure and confident in my husband’s health care team and that he was in great hands! Highly recommend this place to anyone!','2019-12-17 18:22:21.967000','2019-12-17 18:22:21.967000',5,'Alyssa Babin','https://lh4.googleusercontent.com/-tTrIdOmWX_g/AAAAAAAAAAI/AAAAAAAAAAA/zT6KnEOimgg/c-rp-mo-br100/photo.jpg','3511292162159714121',14484),('AIe9_BFL0OZrFaHgoJtqifT1GHrId7Y95Ble1Si99hByZPLF-OEGyeM73TU4Fhn-NDWFXPPTat6TlDq_x64QTat5oWS8Sn-9ulRXy1I6M4q_eDI5UkzZ6TM','They were very positive and enthusiastic to help and get me checked. Keera is very helpful and Brad was very helpful and quick with getting things done and find out what was wrong with me. All the employees in general were very helpful generous and kind but also very quick with their work to aid the patient.','2018-09-06 01:18:45.933000','2018-09-06 01:18:45.933000',5,'Alexys Molina','https://lh6.googleusercontent.com/-0ps0SnAuB20/AAAAAAAAAAI/AAAAAAAAAAA/JFmg_LZFJE4/c-rp-mo-br100/photo.jpg','16590124370714063921',3744),('AIe9_BFL0OZrFaHgoJtqifT1GHrIDecGHKVcNRIkVD9CdhqXYrbLFxjA_yvQW_-RnvaaQQHPggWh8jz8MmSma_YdS3zzlxuhJz62pInocD8dMdX3EYDLv1E','best care I have ever had from the crew\n\nSita reception\nDr Huerta\nKristina nurse\nleah ER tech\nKramer ER tech\nDavid Rad tech\nthank you guys so much','2019-12-16 20:59:42.720000','2019-12-16 20:59:42.720000',5,'Toree Easterwood','https://lh5.googleusercontent.com/-w6eGL86MtPQ/AAAAAAAAAAI/AAAAAAAAAAA/l2FDaEztNH0/c-rp-mo-br100/photo.jpg','13486358490203335051',688),('AIe9_BFL0OZrFaHgoJtqifT1GHrIdfNi5zkVuD3D94XVgR3h8mo0XolDJF64dyAOw4u9Ghi9EL8n4puDwz06qgQ1F1_rDUuoy0WFwdLahbrdbvinST3s9Zw','Very friendly and helpful staff. The wait was less than 5 minutes to be able to be seen. Every one went above and beyond, not only with myself, but with my boyfriend and daughter who were with me. We were offered blankets, snacks, and water. DR. GRINBLATAS IORAM M.D. was very kind and helped me feel right at home together with the rest of the staff. Excellent place to go get seen at.','2017-12-29 01:13:17.919000','2017-12-29 01:13:17.919000',5,'Kimberly Gutierrez','https://lh5.googleusercontent.com/-KErINLdNJRI/AAAAAAAAAAI/AAAAAAAAAAA/cRH9ytFcYaA/c-rp-mo-br100/photo.jpg','17394740196501090048',4911),('AIe9_BFL0OZrFaHgoJtqifT1GHrIdKpS_H7EAU10aZQK7NY1oIoXiN0ubdCRc2uD8cFET5pBJCrBuZeLw8dMotfE7im2fNn87lbusoTc4gXL49NJfT6hv_g','Satisfied with with service! Was fast and easy would recommended them to anybody!','2020-08-10 17:47:23.992000','2020-08-10 17:47:23.992000',5,'Ruby Harris','https://lh3.googleusercontent.com/a-/AOh14GikyQDElcDFF1DsqR7x40a3offsJoBFvjNrAAkC=c0x00000000-cc-rp','14748677429039074158',23033),('AIe9_BFL0OZrFaHgoJtqifT1GHrIdLSff-ydvHOSpzicAXF068KHnRKfnuJx4Ar1xlXzi7MdI2KF6T-5uR5YOufjowg0rTXY8WJVNYfRvXatEA5sU6yVSsc','Brought my son in after he got a bad cut on his lower lip, which is a terribly difficult spot to put stitches in a 4 year old! Aileen at the front desk got us through the paperwork quickly. Dr. Anders was great...and we couldn’t have pulled it off without the amazing staff (RN Christina R and tech Andrew). Manager Adam runs a well-organized clinic!! Thank you everybody...he’s doing great!','2019-11-09 21:31:58.221000','2019-11-09 21:31:58.221000',5,'Kate Ross','https://lh5.googleusercontent.com/-wblECziXwwQ/AAAAAAAAAAI/AAAAAAAAAAA/noWX00dppx8/c-rp-mo-br100/photo.jpg','16891069708558046635',4155),('AIe9_BFL0OZrFaHgoJtqifT1GHrIdMSV8uwgYO8gJrXNaUvKQzokliVb-hqIxzo927txNlXNH1VnVGC6hBgUQnmUQ22Na7KVI6ucHwf8xXPknlAeKG_b9Pk','Very clean and professional. I felt listened to and received the care I need. X-ray done in house','2016-07-28 22:13:49.000000','2016-07-28 22:13:49.000000',5,'Taylor Steele','https://lh5.googleusercontent.com/-fUyGoo1cpgg/AAAAAAAAAAI/AAAAAAAAAAA/95LDRHnCWug/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7957),('AIe9_BFL0OZrFaHgoJtqifT1GHrIdnxlptbrsVU2ZzRqu1FzoGZrEMN7nTZ0HECOPVQbCv-DOaRQwmbJjrrRI_dJ_Kn6P08aZZx5olJxbjPl9a_aMJkSI4s','Very sweet Kim at the desk was friendly the nurse was great my wife was sick an they got her in an took care of her fast! Way better then the er','2019-01-21 20:05:30.984000','2019-01-21 20:05:30.984000',5,'Cortez Williams','https://lh4.googleusercontent.com/-2CMNBr5jSIc/AAAAAAAAAAI/AAAAAAAAAAA/MT-3OZEzoak/c-rp-mo-br100/photo.jpg','3272657195432704501',7046),('AIe9_BFL0OZrFaHgoJtqifT1GHrIDoNgqygvnsSj9yYAYDRLyCN_TBi6Utt-HRBKR-yXiJlhBB7vCMgRa2ZGxDQhDg1lbjoi1mhII0Va2WAlHCZZqqLYrGM','Everyone at this facility were super kind, patient and understanding. I was seen immediately and treated quickly. I would highly recommend Signature Care to family and friends.','2016-08-22 04:58:05.428000','2016-08-22 04:58:05.428000',5,'juliet Rothwell','https://lh6.googleusercontent.com/-Alb9UDHU0dg/AAAAAAAAAAI/AAAAAAAAAAA/5bBwN_h_D2o/c-rp-mo-br100/photo.jpg','14567670160750071148',1985),('AIe9_BFL0OZrFaHgoJtqifT1GHrIdrXotLiJvCkmY7l5ciADvdANIXuPJlMdK5vIt-b3eendfn38Gz-JUbYqSffK0lV8ozef2q3QFHOxg-pUCSHDn6vvMws',NULL,'2019-12-23 06:26:37.918000','2019-12-23 06:26:37.918000',5,'danny chavez','https://lh6.googleusercontent.com/-MO-xk1DlOw0/AAAAAAAAAAI/AAAAAAAAAAA/I0rzJ17AuUQ/c-rp-mo-br100/photo.jpg','12541597562633926366',318),('AIe9_BFL0OZrFaHgoJtqifT1GHrIDwv6BiW_kXd6FuJ2Zwb1f5uTvwt8h7LMwOY4DovbWM6A06Bl4ksiQwBoE7CQjJnpDZDBeivBxJ_HkSiOX36ezX5Fuf8','Friendly employees and great customer service! Dr Das was great!','2020-07-31 23:17:27.064000','2020-07-31 23:17:27.064000',5,'Alyssa Torres','https://lh4.googleusercontent.com/-o-1w11yx33M/AAAAAAAAAAI/AAAAAAAAAAA/KcSkJTD9ZxY/c-rp-mo-br100/photo.jpg','14748677429039074158',22360),('AIe9_BFL0OZrFaHgoJtqifT1GHrIDYcIOTIG2fZo3mR-Z7tPEm06dsXVokoIMuHsmMdSSzLYyVEsk2masaCbg1C_cbolSAiVqQb6W-U_6fdNTqMacmOHIJI','We had such a great experience at SignatureCare! Our little girl was running a fever and vomiting and just achy all over. My first thought was flu, but my husband and I decided to take her in to be sure. The entire staff was so friendly and really took their time talking to us and making us comfortable. Shonda, the receptionist, was probably one of the friendliest people I’ve ever met and explained every aspect of the paperwork to us. The nursing staff was so sweet and spoiled my sick little girl rotten! Dr. Jolly was very professional and thorough with his diagnosis and we were very pleased. I definitely can’t take my kids anywhere else now for emergencies, they wouldn’t hold a candle to the care and bedside manner we experienced here. Thank you all again!','2019-09-08 15:43:03.114000','2019-09-08 15:43:03.114000',5,'Paisley Dixon','https://lh5.googleusercontent.com/-4oXpjmkv0eA/AAAAAAAAAAI/AAAAAAAAAAA/TL0s61Bm1JY/c-rp-mo-br100/photo.jpg','16891069708558046635',4206),('AIe9_BFL0OZrFaHgoJtqifT1GHrIdYPCQ1ek-DrLyId6jRWd2d7YaMzfD5tj0ABfn72Zei6bogj0CYNd1B9mbKVdjqaqHD9phk4r3SPjapJ45mIKa8AcuxM','Can\'t say enough about how well cared for i was at my first visit to Signature care. DR. ROSE, MD, RUBY B \nNurse: Adam Trevor P \nRadiology Tech: Linda S \nFront Desk: Edward C\nAll fabulous, nice, knowledgeable, and really took the time, each of them to make sure I had everything I needed. I was pretty out of it and in pain and if they had not been so attentive, I would not have been able to be my best advocate for what I really needed. I never felt rushed, or confused. I will highly recommend them to anyone that needs fast, clean, terrific service.','2019-03-12 22:15:26.143000','2019-03-12 22:15:26.143000',5,'Leslie Uppinghouse','https://lh6.googleusercontent.com/-UmMTz7C8gIo/AAAAAAAAAAI/AAAAAAAAAAA/uF7wfE6oOng/c-rp-mo-br100/photo.jpg','16891069708558046635',4327),('AIe9_BFL0OZrFaHgoJtqifT1GHrIdzJO3idGTeFOI1dO2g7_n9vRV9sGGJbqF93JysMbIBsfTrtA4maqQgBqcLzgdbXmwMlMyTuhw7gDKBd163DcdqpRiY0','Everyone was nice. Everything was done in a timely manner. The facility was clean and comfortable.','2020-02-04 22:07:50.677000','2020-02-04 22:07:50.677000',4,'Janet Mitchell','https://lh6.googleusercontent.com/-OJKOZaVwWB8/AAAAAAAAAAI/AAAAAAAAAAA/mPloCgulib8/c-rp-mo-br100/photo.jpg','2694018788013845459',14253),('AIe9_BFL0OZrFaHgoJtqifT1GHrIe1BPBQRUcAcDLr5Qb4Yq2ITbLd_nsExNaqsCBiJqKR9V_1rpa-tm_xUS_BpqJSDv6-s8qd9ioc0TFXORuRx88cpzwrc','I came to get tested for COVID and they were very professional , quick and efficient.','2020-08-07 17:02:57.647000','2020-08-07 17:02:57.647000',5,'Joseline Magallanes','https://lh3.googleusercontent.com/a-/AOh14GhtNFrfr-BhdJfWatvTZAFfeW9s1eNJRfuhRBtJeA=c0x00000000-cc-rp-ba2','8918455867446117794',22259),('AIe9_BFL0OZrFaHgoJtqifT1GHrIE7N0h-193qvOILUuQb1Y71V0EEvNenEHYCnqhiV_zWiAhztpoxfaMIxIqlBEac7aDX98aBwF1TnI1uUzOoGaQw0cKII','As soon as I walked in the door Lindsay, the receptionist was very accommodating and friendly. When I got back to the room Jacob and the technicians Becca and Juan were excellent and very thorough. Always made sure I was comfortable during my visit. Dr. Vakey and Dr. Bear were great and I left feeling so much better. Overall would recommend friendly staff and excellent treatment services!','2019-10-14 22:59:06.246000','2019-10-14 22:59:06.246000',5,'Nevada Nicolette','https://lh5.googleusercontent.com/-Fok7tBFNVTo/AAAAAAAAAAI/AAAAAAAAAAA/ckMbtUYtnKk/c-rp-mo-br100/photo.jpg','16590124370714063921',3140),('AIe9_BFL0OZrFaHgoJtqifT1GHrIE8HIsWiAdHzNF014TgP8Q5eC53ui3LG1dxuh0cEDbdc4U8XjaW-IIhusPZjOWEcG_AlFhOEXPecPCFU6gbmBueWov78','Friendly staff, I didn’t have to wait at all ..they took care of me right away Thank you Christine M.\nBrandon, Dustin and Tatiana :)','2020-02-20 02:01:51.719000','2020-02-20 02:01:51.719000',5,'Veronica Aguilar','https://lh5.googleusercontent.com/-p-lQRQECtO4/AAAAAAAAAAI/AAAAAAAAAAA/hlFIG6CogPw/c-rp-mo-br100/photo.jpg','3511292162159714121',14407),('AIe9_BFL0OZrFaHgoJtqifT1GHrIebU7qrQFn6OVJZIQSZWj_U_ovoxfD8eYTG7IKtDDu8bhEVV41XntPqiSMzk4aslwNK8d-cuAA7raKtymEjD62TuVwx8','They were wonderful! So caring and made me feel so comfortable. I was in and out quickly. Thank you!','2020-03-11 17:30:39.908000','2020-03-11 17:30:39.908000',5,'Trey McIntyre','https://lh5.googleusercontent.com/-fuG9ywb0kDU/AAAAAAAAAAI/AAAAAAAAAAA/CQqUzX-k7M8/c-rp-mo-br100/photo.jpg','3511292162159714121',21158),('AIe9_BFL0OZrFaHgoJtqifT1GHrIecIKIk3z8WKBqqUanf3gSTRv9vhru8zZj2J9k2WSqlazTd9pAHANxjx8VRwmIj4PBxSIExrctH_hNinWVwacwNDCDxY','Clean, very accommodating, and very friendly nurses and staffs.','2019-11-26 18:41:32.095000','2019-11-26 18:41:32.095000',5,'Cheryl Newman','https://lh6.googleusercontent.com/-zNaeFAtU9Mg/AAAAAAAAAAI/AAAAAAAAAAA/FmYbawjBTkk/c-rp-mo-br100/photo.jpg','2694018788013845459',6003),('AIe9_BFL0OZrFaHgoJtqifT1GHrIeDv4tAA-wU08gqs-JWxS4MHoRF_f1WMC_tIA2ydF56zqycEgplEIAUPxYSft4mg9AIwtC--jSed49xQRS0JWoi61gus','The staff was very friendly and accommodating. They were patient and thoroughly explained everything. The facility was very clean, spacious, and offered lots of conveniences.','2020-01-28 19:06:46.913000','2020-01-28 19:06:46.913000',5,'DeAndra Hayes','https://lh4.googleusercontent.com/-Cr5Cvrrbj_s/AAAAAAAAAAI/AAAAAAAAAAA/igljsB9G9XI/c-rp-mo-br100/photo.jpg','8679688254631342173',14782),('AIe9_BFL0OZrFaHgoJtqifT1GHrIefHj79UzEEaqe-lAyjx6efsh9ylo7WLUIYCRr83H2S9EmuB57UzJppnSWf87Yupvnq9Cmd_zdRhlVz-ps8UYDsW0GNE','BEST FACILITY EVER. Welcomed at the front by Amy (with a smiling face of course). The team was phenomenal! Dr. Patel, Rommel, Joey, and Josh were excellent. I am highly pleased!','2019-05-07 05:39:42.169000','2019-05-07 05:39:42.169000',5,'Kelsey Kelly','https://lh3.googleusercontent.com/-v4578N3EsU8/AAAAAAAAAAI/AAAAAAAAAAA/DiAFs9w6S7I/c-rp-mo-br100/photo.jpg','3511292162159714121',7330),('AIe9_BFL0OZrFaHgoJtqifT1GHrIeHGvF8-Ie266qxuDFihjMwSyBtBNu0U8u9QFts24TEE3DECNrk5DQD3Vz6jbA3KWcRUuuKl18C1aXiOckwU5Rglf_Gg','The staff here was so nice. Very clean place. When you come in here it\'s like a big family. I would recommend this facility to anyone. Thank you Dr. Nguyen, Nurse Alvean, Kelly and Patricia the receptionist in the front.','2019-12-20 13:47:13.524000','2019-12-20 13:47:13.524000',5,'Donald Turner','https://lh5.googleusercontent.com/-r6glx4y2UpM/AAAAAAAAAAI/AAAAAAAAAAA/TtMukghRIQk/c-rp-mo-br100/photo.jpg','16389487648212004696',2532),('AIe9_BFL0OZrFaHgoJtqifT1GHrIeitWTPVTXq_KTMIUgm9Y6EyYloj9NuYY0Aj47XQ7Xy3tvTfdkSVUGCIfAQlGE0G71WFVF6OvnzmdhHkaD9J3fLTG64s','My name is Marci Tidwell and I can in to the clinic on Tuesday for extreme stomach cramps. I was tanked back right away in a wheelchair because it was hard to work. From the moment I arrived til when I left on Wednesday had THE BEST EXPERIENCE I HAVE EVER HAD AT A CLINIC. THEY WERE ALL EXTREMELY PROFESSIONAL AND HAD A GREAT BEDSIDE MANNER. EVEN THOUGH I HAD SOME EMOTIONAL ISSUES THEY WERE ALL THERE TO HELP AND I ALWAYS FELT CARE FOR!!! THERE IS A LOT OF PEOPLE WHO NEED TO SIT UP AND TAKE A LOOK AT HOW LOVING CARING PEOPLE SHOULD ACT. YOU WILL BE THE ONLY ACE I TELL MY FAMILY AND FRIENDS PLUS I WILL NEVER GO ANYWHERE ELSE!!','2018-06-01 20:13:32.748000','2018-06-01 20:13:32.748000',5,'marci tidwell','https://lh3.googleusercontent.com/-uq_clSmRYFg/AAAAAAAAAAI/AAAAAAAAAAA/KmwRXrCNtoM/c-rp-mo-br100/photo.jpg','14567670160750071148',1616),('AIe9_BFL0OZrFaHgoJtqifT1GHrIEJ9FgHM3I0yaTWmHHq-9z-7QXep3tUT2-kJ02ordh_I7fAX8gQERAN4KqVTyokPrt9zxF8Z77WbCRASt_ZgBju2leac','Dr. Grinblatas was knowledgeable and professional. His team of technicians and nurses, Jani, Natalie and Diem were friendly and fast. As great of an experience as you can have in an emergency room.','2019-01-17 17:10:53.752000','2019-01-17 17:10:53.752000',5,'Leann Salmons','https://lh4.googleusercontent.com/--ur_AmR23Ls/AAAAAAAAAAI/AAAAAAAAAAA/yEf7-RRhiYk/c-rp-mo-br100/photo.jpg','14567670160750071148',1405),('AIe9_BFL0OZrFaHgoJtqifT1GHrIEK02xphqmnOsQsyFSqe5gIWuHcm1WehC4WBD4wsLRUHmgqp2EmbuorWYL889OQL4kDrNsfk7gSnSdyFbgMy2G9OBlFA','Treated with care, respect and very thorough!! Awesome staff','2017-12-13 05:33:48.330000','2017-12-13 05:33:48.330000',5,'TishAPlus Model','https://lh4.googleusercontent.com/-7Hy9I44_99c/AAAAAAAAAAI/AAAAAAAAAAA/cxZvISG8Kj8/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7749),('AIe9_BFL0OZrFaHgoJtqifT1GHrIelblVje5NgOEhR0JVvPsRKRGQJgThRt2h8MxiceOoKWBnoI48rnPwqaG3ScifunKxOsH6fSPql3mszUvSmv9tvJ_yNc','Great experience! Fast service, Very friendly staff and Nurse Nadia was beyond pleasant!','2020-08-05 20:17:45.645000','2020-08-05 20:17:45.645000',5,'Jay Roby','https://lh5.googleusercontent.com/-0GX_0mNNRG8/AAAAAAAAAAI/AAAAAAAAAAA/fEXiOTOU28E/c-rp-mo-br100/photo.jpg','14748677429039074158',22526),('AIe9_BFL0OZrFaHgoJtqifT1GHrIEowp8-o_BnYAPa0KvrD2QToEbni1sABnuplaoICn6z1xAlrBW9UwJ9KFz2fCcru3lHpL9Q0diE3dvN5rjQYnQZ_iA8Q','Nurses were doing a excellent job taking care of my Bm','2019-12-19 05:28:18.973000','2019-12-19 05:28:18.973000',5,'Hilton Caicedo','https://lh6.googleusercontent.com/-B2Rv1MpUpcE/AAAAAAAAAAI/AAAAAAAAAAA/I_EtpDNr4eA/c-rp-mo-br100/photo.jpg','12541597562633926366',336),('AIe9_BFL0OZrFaHgoJtqifT1GHrIEp2QKpqkuYh4Z5fx8iwrVHnsQXNRYk34C7LvGwikD7OEGXJybFPcCvAZycH1THWMeTu8_86Wo3XdY8B268SmvUU7NyY','Evelyn checked us in very quickly and is very sweet!','2019-01-04 16:11:07.962000','2019-01-04 16:11:07.962000',5,'Amy Adkison','https://lh6.googleusercontent.com/-blomhvZtvmo/AAAAAAAAAAI/AAAAAAAAAAA/t-x6fJ161TI/c-rp-mo-br100/photo.jpg','14567670160750071148',1434),('AIe9_BFL0OZrFaHgoJtqifT1GHrIEP8oXmnUd37xqVuLjCL_lqnUj4JFKf3sLL3tUluz6AfhQ7pCGvdTN-kHIZRh8FBqC9AbEHT4Arns81m6rMAxutszU20','The doctor was nice and the nurse\'s','2019-08-17 02:14:00.703000','2019-08-17 02:14:00.703000',5,'Megan Buhanan','https://lh3.googleusercontent.com/-Hjji6Hwp7Hs/AAAAAAAAAAI/AAAAAAAAAAA/PYgssJMF0iA/c-rp-mo-br100/photo.jpg','16590124370714063921',3252),('AIe9_BFL0OZrFaHgoJtqifT1GHrIEpjUheG4pSk6YoFVuKlSUb7Sglx4y-3cECSQDWnkCBHQRcsjnQleMPOXlKmLphIKyp2NnqCEI1MBznX1Rkkm220xEps','Everyone is extremely polite and very helpful. I had an amazing experience at signature care emergency center. I have 3 kids and have taken them to rediclinic and minute clinics None of them can compare to signature care.','2018-08-30 17:32:26.765000','2018-08-30 17:32:26.765000',5,'Forest Vanderburg','https://lh3.googleusercontent.com/-Uxig18_mS0g/AAAAAAAAAAI/AAAAAAAAAAA/N4L7qOW4fgA/c-rp-mo-br100/photo.jpg','14567670160750071148',1537),('AIe9_BFL0OZrFaHgoJtqifT1GHrIETY_XCqPS_gfg1CHre2xEEd1Rnrlc9L6M0iWJF8OkZFnim7qm2NkIKKdlj4b8wB-oWF3KCIFeNd5fSnfCZHBKcjx1Lo','Received very friendly and fast care.Great service.','2019-06-13 15:09:32.652000','2019-06-13 15:09:32.652000',5,'kerry Garrett','https://lh6.googleusercontent.com/-JJqEnWwT2fk/AAAAAAAAAAI/AAAAAAAAAAA/lne_aE4Wsxo/c-rp-mo-br100/photo.jpg','8626688543755174284',8452),('AIe9_BFL0OZrFaHgoJtqifT1GHrIEwB-jLRoB212mErVjHMeygnXrGW3IuI6ZN6bh-2iNxZRMtdDgOJA97JeWJJ15_EDPUZZmpYC8BzK6cNpT9cgBn9bGns',NULL,'2017-06-15 02:53:45.509000','2017-06-15 02:53:45.509000',4,'Chris Foster','https://lh6.googleusercontent.com/-AJ0jS7qtEgc/AAAAAAAAAAI/AAAAAAAAAAA/-A2a1rR5mFI/c-rp-mo-br100/photo.jpg','8679688254631342173',8913),('AIe9_BFL0OZrFaHgoJtqifT1GHrIeYty9mgouKSWU5G4lwM65QposJoVHmdQOK_KWy401Rt9DgDG0_bpWiXuSj1KW7P1xOk-ZfHAX-3TEg1xLHY27TRO-rU','My visit was great! Jessica was very sweet when I walked in. I was treated quickly. My nurse Senidia and Keira were very kind and caring. The X-ray tech Randi was very compassionate and friendly','2020-03-04 01:24:26.300000','2020-03-04 01:24:26.300000',5,'Delma Gonzales','https://lh3.googleusercontent.com/-dyychXi38kM/AAAAAAAAAAI/AAAAAAAAAAA/_mhSFPOAqrs/c-rp-mo-br100/photo.jpg','6521947413723274945',14512),('AIe9_BFL0OZrFaHgoJtqifT1GHrIf19hbbuRqF8tLWBHo0xiZgulo_RThFRNG3gbJ2WyuxLDfzSrNEZW-VszZuXop2shEiKKzWvN6iTAQozCihzRLIPhIgs','My experience for the 2nd time has been great. I was in and out as advertised. I recommend SignatureCare to all my friends and family. The staff was great. Doctor Kristen Osiecki, Nurse Manny Guerro, Registration Nancy Rodriguez, Radiologist Magali Lorea and ER Tech Ector Marin. His well done...','2019-01-19 15:41:12.761000','2019-01-19 15:41:12.761000',5,'Ray Florez','https://lh5.googleusercontent.com/-OMaaZ3OgqTk/AAAAAAAAAAI/AAAAAAAAAAA/EvE1zH7Po9k/c-rp-mo-br100/photo.jpg','6521947413723274945',8321),('AIe9_BFL0OZrFaHgoJtqifT1GHrIf3DMo1IdkIJyg5VsbFLZ0407nL7dcjedVPJQq5vw3EabgYICZq7CRLQjNoI_z7q5gy93Slai6Q9c-COxjqradkciuz4','it was great, I got in they stitched my lip and got out, there were very nice.','2017-11-24 02:14:55.977000','2017-11-24 02:14:55.977000',5,'william watson','https://lh3.googleusercontent.com/-b0b2SXjxj94/AAAAAAAAAAI/AAAAAAAAAAA/fyF80HQZnhE/c-rp-mo-br100/photo.jpg','8918455867446117794',9335),('AIe9_BFL0OZrFaHgoJtqifT1GHrIFA12SpXC3fM7DzJGrxep4Mz73fV-ULbc_TSec7mFttH2g3-CCWwxeRhuXMKao-42M0NjMZejVvoPD28mK2FGFR9tDqs','Amazing experience! I was from out of town and in a lot of pain. They were so friendly and accommodating. Thank you so much. Definitely recommend this place!','2018-12-30 15:53:32.986000','2018-12-30 15:53:32.986000',5,'Jennifer Sierra','https://lh4.googleusercontent.com/-09vmFKRCSGw/AAAAAAAAAAI/AAAAAAAAAAA/Fo-zieAjBzU/c-rp-mo-br100/photo.jpg','14904078213800803294',2187),('AIe9_BFL0OZrFaHgoJtqifT1GHrIFALUDpxjZOqOqrf0csO5eTz_lRWCCPjjIoG3CH-SmhV_ycZ8VK8OG2cqDC2v62F6er1_dNETRDVLYyCcFg3ngbdRh0Y','I took my mom here and we had a great experience. Everyone was super friendly and professional. There was no wait when we went. They did a CT and x-rays on her and we were out within two hours. We couldn’t have asked for better service. Highly recommend. Thanks to all the staff there including Lorena at the desk, Dr. Kimball, the nurses Jacob and Remington, as well as the radiology tech and ER tech, Laura and Natalie!','2020-01-05 21:18:10.869000','2020-01-05 21:18:10.869000',5,'Kaitlynn Jensen','https://lh3.googleusercontent.com/-rKnbPnaIXrY/AAAAAAAAAAI/AAAAAAAAAAA/MVeWA25poK0/c-rp-mo-br100/photo.jpg','16590124370714063921',2985),('AIe9_BFL0OZrFaHgoJtqifT1GHrIfEIf0LckrGXv2rhH8hYifGxrVnj1FkFxQpQqw2YQ6mvoGlyUt6tDN3D010E_MwXbnvzBTzDaV9Y4nRrQSkb7l6R5MyU','Always a wonderful experience we’re always treated like family and their blankets are always warm!','2018-10-18 23:55:34.107000','2018-10-18 23:55:34.107000',5,'Jennifer Arguelles','https://lh3.googleusercontent.com/-30VncOKQVHY/AAAAAAAAAAI/AAAAAAAAAAA/ORQwfkczyBc/c-rp-mo-br100/photo.jpg','14567670160750071148',1468),('AIe9_BFL0OZrFaHgoJtqifT1GHrIFHLkVg22VKdhwq2Xgd0-ttotqX6T5z9pHshSIqzuDXY74_KqHZU856GF1AFl72mRNCBRJbPjrE4UNvz8jHUTjj9UOyk','I had a wonderful experience here! There was little to no wait, everyone was caring from admission to discharge. Everyone made me feel so comfortable I would definitely recommend to anyone!','2016-01-22 21:49:42.843000','2016-01-22 21:49:42.843000',5,'Chris & Nicole Sanders','https://lh4.googleusercontent.com/-Qh6sS9y48uI/AAAAAAAAAAI/AAAAAAAAAAA/B6zCu5a4w2E/c-rp-mo-br100/photo.jpg','3511292162159714121',8028),('AIe9_BFL0OZrFaHgoJtqifT1GHrIfHR8ILZHPtJYatjZjv_oORn4SM_JweJ2VINtAeV8GH1eOWvo2aSoegHTywYIf307jx3E7U-zwnwaen0J1rapdIpigZI','Staff were friendly. The physician explained things very well. Quick and easy visit.','2017-10-20 01:18:08.718000','2017-10-20 01:18:08.718000',5,'Leigh Castelo','https://lh4.googleusercontent.com/-hxr80bJzkv8/AAAAAAAAAAI/AAAAAAAAAAA/D6BmCi7XjUg/c-rp-mo-br100/photo.jpg','3511292162159714121',7772),('AIe9_BFL0OZrFaHgoJtqifT1GHrIFma1S0efXD5_UZqEDeQYF8xX3pT2mZzqVJM337pZ_6Zu3JawGMifh0YijOVtak_QTjAPWxB07io6eY9LPOfs0-yBoCk','Great service in and out. Dr Patel nurse Sarah, tech Fatima and special thanks to Tanishia. I will recommend this place for emergency service.','2019-11-08 02:28:41.539000','2019-11-08 02:28:41.539000',4,'Trena Straughter-woods','https://lh5.googleusercontent.com/-0TyibYIvryE/AAAAAAAAAAI/AAAAAAAAAAA/6xVANpkUZio/c-rp-mo-br100/photo.jpg','17898197009688164559',5457),('AIe9_BFL0OZrFaHgoJtqifT1GHrIfmohAGbCKEkl2LUbk94JHu6FgY5yIBShN9vZsFLHDVg5tUp5QRfQeZsVGjP-FOEeHPz2bgXLeAZAwwvxYM-YiUoE05E','Such nice people, and a nice clean place. Very great experience!','2019-01-12 00:31:30.718000','2019-01-12 00:31:30.718000',5,'William Nolasco','https://lh4.googleusercontent.com/-DnxTDeniZo8/AAAAAAAAAAI/AAAAAAAAAAA/vuAvfABmEj8/c-rp-mo-br100/photo.jpg','17394740196501090048',4744),('AIe9_BFL0OZrFaHgoJtqifT1GHrIFMsYc5hBtRkOVMh0C0lOzI_9cUhhL65QXUSCavMvmesodVxhrrAsZO_K8zPjAHf8ZvXSV8dw5gbTtNYnPf4wSNKdjzs','Physician was smart, very informative and professional....','2020-07-19 21:50:00.655000','2020-07-19 21:50:00.655000',5,'Erica R','https://lh4.googleusercontent.com/-za1LhU-istw/AAAAAAAAAAI/AAAAAAAAAAA/1PVxsHZ5ltM/c-rp-mo-br100/photo.jpg','14748677429039074158',21689),('AIe9_BFL0OZrFaHgoJtqifT1GHrIFn8Nsri3WrFLkXEXXLQbOWAy_euxfrhwtOYJwuXS7RzIXu169sfNtNuWo-EYpy81X10YuY0MQY_YdZAFwX-ciixQNlY','I came in with severe abdominal pain 3 weeks post op a gallbladder surgery. The staff were very attentive and quick, they addressed my pain and talked with me about my symptoms and history.\n\nThey are very good with patient communication, and my doctor Dr Appiah was wonderful. He addressed all of my questions, was very kind, explained everything that was going on, and really went above and beyond the call of an ER doctor to try and figure out what was going on and how to best address it.\n\nMy nurses were Alvean and Tricia, they were both incredibly nice and I really enjoyed talking with them.\n\nI highly recommend this ER!','2019-10-11 12:19:54.472000','2019-10-11 12:19:54.472000',5,'Amanda Stewart','https://lh4.googleusercontent.com/-d7eBUhJWsBc/AAAAAAAAAAI/AAAAAAAAAAA/H6ayO28yeNc/c-rp-mo-br100/photo.jpg','16389487648212004696',2829),('AIe9_BFL0OZrFaHgoJtqifT1GHrIfwAHdJCQdqKJjXotCbZZ0MUWfHuBuIpkPV31jTO8jqoR7oYoBV_VFSk_01HK4C6dMu07OXKLv2YjBDcw1GbghATKobo','Fast service in and out very pleased.','2019-08-22 02:53:36.117000','2019-08-22 02:53:36.117000',5,'Victorri Butler','https://lh4.googleusercontent.com/-DNdNfTmpd-Q/AAAAAAAAAAI/AAAAAAAAAAA/BJdkVz82_sg/c-rp-mo-br100/photo.jpg','16389487648212004696',2984),('AIe9_BFL0OZrFaHgoJtqifT1GHrIfWK7JFN4cC7j7OVkC7Nh-xOfltK7G9-fe7wI3Mp835mK-XXZXjNiLmbxlz_WTs1nTktWw03rFmDuENpzNZRYBzOf9lU','Excellent, respectful, timely emergency care! As a nurse myself, I\'m picky and critical of healthcare facilities and this one is top notch. My nurse Shelli was super sweet, professional, and efficient. Jesse started an IV quickly and comfortably. The physician and support staff were all equally wonderful! I will definitely be returning for myself and my children for any future emergent needs.','2019-05-28 17:51:58.000000','2019-05-28 17:51:58.000000',5,'Amy Rhime','https://lh3.googleusercontent.com/-__6niCak9RM/AAAAAAAAAAI/AAAAAAAAAAA/HMCBZpNh5PE/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4264),('AIe9_BFL0OZrFaHgoJtqifT1GHrIg0eQ6cGoynDKhydfXZw5PT6UIP8TDPdyfD42Rrg3yzvkDEj5lnBg1LpCw-xRGToOQ3PzlGaE7xoLjy2aPP25j8zuvEs','I had nurse Jacobs and everybody here was extremely kind, helpful, and professional. I would recommend coming here if you have any sort of issues as they will be sorted out in no time !','2017-09-03 22:36:16.730000','2017-09-03 22:36:16.730000',5,'David Dolt','https://lh3.googleusercontent.com/-qRTPvvBLrLU/AAAAAAAAAAI/AAAAAAAAAAA/L0yNcNQ96YE/c-rp-mo-br100/photo.jpg','16590124370714063921',3944),('AIe9_BFL0OZrFaHgoJtqifT1GHrIGBqrDhCSz4jXBXj0cuTuoAjf83XBQk1smSyqV__At1dXf2AmEL0PfiUm0okIAkd6dQ1eKE1vjMBkuB2Ag30lHKPs8ns','Dr. Ioram and his staff provide excellent care.','2018-01-24 12:46:25.489000','2018-01-24 12:46:25.489000',5,'Cynthia Holland','https://lh5.googleusercontent.com/-V_mG4l05bkg/AAAAAAAAAAI/AAAAAAAAAAA/h9vL88SNNno/c-rp-mo-br100/photo.jpg','14567670160750071148',1670),('AIe9_BFL0OZrFaHgoJtqifT1GHrIGeAwy6pRtwjM2Tyfd7x8yTNAbYmpFbBPf44qjfPE8ssELmCeVeD5HAwAiFPr_kzZAtEzqNG9EGQpZM7uD_tmbYdkNHE','Came in and was seen for a massive headache and the treatment was amazing. Mercades from the front desk explained everything I needed to know and answered all my questions and the nurse and doctor were nothing short of amazing. Thank you guys!','2016-05-28 21:25:37.535000','2016-05-28 21:25:37.535000',5,'Tonette Mcbride','https://lh5.googleusercontent.com/-ps4e82SHIEI/AAAAAAAAAAI/AAAAAAAAAAA/e8IdqC4iCv4/c-rp-mo-br100/photo.jpg','17394740196501090048',5249),('AIe9_BFL0OZrFaHgoJtqifT1GHrIGEirxU-0TB8i4ZDkXKkW2nKxwKlZxYRH102TdA6cPbeJz4X7Lr3YG7GhEpUNZoVm1du6kGs3kRKy0L-wX7sm3liv07U','Excellent medical facility, clean modern, complete with CT scan, x-ray and lab on the premises. I appreciate the prompt results and evaluation of my lab results and tests. The personnel is top drawer - The doctors, nurses, techs, and admin are all very professional, knowledgeable and accommodating. I had to stay overnight for chest pain, had a very comprehensive exam (i\'m ok !). Excellent care','2019-08-07 22:34:02.709000','2019-08-07 22:34:02.709000',5,'Theo Snyder','https://lh4.googleusercontent.com/-Fpscss2y0Sw/AAAAAAAAAAI/AAAAAAAAAAA/V1dvXXk5QRw/c-rp-mo-br100/photo.jpg','14904078213800803294',2102),('AIe9_BFL0OZrFaHgoJtqifT1GHrIGhY3YMiQmICcyXZqawd5DbjfhPH0nGY6y2Hpp-V6vMZ44n7e23mkVDqpDqyzONjSyWRgnKsJ6sG2YXEGmNhSWdyLooI','Wonderful care from Christina at the front desk to Dr. Rose and Nurse Christina. They were very attentive, quick to bring me back and make me comfortable. Would definitely recommend!','2020-01-24 00:43:17.389000','2020-01-24 00:43:17.389000',5,'Litz Lef','https://lh4.googleusercontent.com/-ZwJ5LNaV6tU/AAAAAAAAAAI/AAAAAAAAAAA/3dhppOk3IwI/c-rp-mo-br100/photo.jpg','16891069708558046635',13975),('AIe9_BFL0OZrFaHgoJtqifT1GHrIgnftLOLiEEWHZ0WboILBCs_YGOtLT0Ef3GiguTLw9QWtDX2xvc66KRiRnOy1EyA1romK1UVh6SZsvtJ2ZyBDPs2BW9s',NULL,'2019-08-15 03:01:13.920000','2019-08-15 03:01:13.920000',5,'Luuiissaa. C','https://lh5.googleusercontent.com/-vuNxKf9zmVw/AAAAAAAAAAI/AAAAAAAAAAA/uOI_JGDeN6A/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIgQP-rW52u-sLXpZppicVMMpqYysIRGF1cSXMU6GLBZOjuY99gMCxFFB0aqrVNYhCdHnqYlBw8quknwWmWX9CvlzJ0kY','Great service and a nice staff.','2020-07-29 20:21:02.638000','2020-07-29 20:21:02.638000',5,'Ramiro Galindo','https://lh5.googleusercontent.com/-Zy2DSbb6Ba0/AAAAAAAAAAI/AAAAAAAAAAA/dZ60Mpv-i5A/c-rp-mo-br100/photo.jpg','2077061009497551125',22957),('AIe9_BFL0OZrFaHgoJtqifT1GHrIgR5_u2M7GqDAqcjw2SRZ-etoenRP5mOrIbsBgBpE_WZmockU04ACYgtb_kg9ux1vQtW1-I4CxjTVnvAoQ71NNYNrqXk','This was a great visit! was in and out within 15 minutes. The front desk was attentive to all my needs and the doctor on hand. great service.','2018-09-20 03:40:39.558000','2018-09-20 03:40:39.558000',5,'jarred adams','https://lh6.googleusercontent.com/-YHeLZv_-MLA/AAAAAAAAAAI/AAAAAAAAAAA/qnnl8jibuIE/c-rp-mo-br100/photo.jpg','16891069708558046635',4428),('AIe9_BFL0OZrFaHgoJtqifT1GHrIGr5HFgEBpp_chq6h7U5645_0udjaBQ38eXGYCQaEDKQjM9ZK3nSJgJ5iNzckgTUvibS-FekKO85z-zDoCjJYqghkurw','This place is the best medical care I have received in years. They were all very personable and nice, and there was no wait!! The front desk lady, Keera was friendly and swift getting me back (no wait). The dr. (Dr Golla) was super kind and comforting after my accident (that wasn’t my fault haha). He seemed very knowledgeable and you could tell her ACTUALLY CARED. The admissions office at his medical school got it right!! The person who took me back and took my blood pressure (Wendy) was very helpful). The nurse fanny and the guy who took my CT all were very inviting and nice too. I am super thankful to the Lord Jesus that I chose this place for my accident needs.','2020-01-15 23:15:36.739000','2020-01-15 23:15:36.739000',5,'Luke Humphreys','https://lh5.googleusercontent.com/-uZrAOK9iwXY/AAAAAAAAAAI/AAAAAAAAAAA/M90XeD6pr2M/c-rp-mo-br100/photo.jpg','17394740196501090048',14047),('AIe9_BFL0OZrFaHgoJtqifT1GHrIGuUHeGw2QpFZJfI822_5WCW4ntGFzb1kNa9l4IK9Djm--gptGoC8XHPmIFRWLdC06nJ1lyTjLt-CrANIcbI5aR3LoL0','Great service! Wonderful staff! Dr. Tran, Trisha, Ariel, Trisha B and Shay are amazing','2019-03-31 03:26:04.811000','2019-03-31 03:26:04.811000',5,'Chay Thomas','https://lh3.googleusercontent.com/-S7NjX73efYk/AAAAAAAAAAI/AAAAAAAAAAA/SaPJptw1kBw/c-rp-mo-br100/photo.jpg','12541597562633926366',523),('AIe9_BFL0OZrFaHgoJtqifT1GHrIGYUNg5YcNeMD6cavkGgB3leLT1oshDkM7-RaH_i3ZvCv7txO0TnyNxbCZrYzAKskw3DtK1SLhC9IKvQlxkCxZqfiFag','The staff was friendly and courteous! The doctor thoroughly answered all of my questions!','2020-07-11 23:00:54.631000','2020-07-11 23:00:54.631000',5,'Kathryn Gibson','https://lh5.googleusercontent.com/-WeHw603Q2kw/AAAAAAAAAAI/AAAAAAAAAAA/3suw9GONcuk/c-rp-mo-br100/photo.jpg','14748677429039074158',21582),('AIe9_BFL0OZrFaHgoJtqifT1GHrIh_Kvu9uDfBli_tv1GlOhu8F0MiOZ2iRnJpdZg_F71Uydgcv22SKVrBXl0XBwgmgYk6xzGdkehDK3PyyhtekqKf_jowc',NULL,'2019-02-13 20:12:40.924000','2019-02-13 20:12:40.924000',5,'Joshua Broussard','https://lh5.googleusercontent.com/-KTwz09mpAvI/AAAAAAAAAAI/AAAAAAAAAAA/60D3JVyKghs/c-rp-mo-br100/photo.jpg','16590124370714063921',3554),('AIe9_BFL0OZrFaHgoJtqifT1GHrIH2bSrcSRTLJiXG37bXhWkJVBwgVAfW9cRNvLzMqHVE5nffroUZJVOH2m_V317b7Ponb1a6PL-2k57S6V-7WqEwQvcEY','I brought my son in because he had a broken arm everyone was so sweet thank you Nancy Pete Patty Theresa and Dr Plante!','2020-03-15 17:13:00.004000','2020-03-15 17:13:00.004000',5,'Noah Sanchez','https://lh3.googleusercontent.com/-ioB0X7ax33o/AAAAAAAAAAI/AAAAAAAAAAA/htsB0SN3qYs/c-rp-mo-br100/photo.jpg','6521947413723274945',21166),('AIe9_BFL0OZrFaHgoJtqifT1GHrIHArc9iT9NJxpike1A-ce3CsBNwpnh_kdcd0UJA7jeGc87oT9l3VSuDnjWfp_c7gyqXUHGmPBKVDKAzpCWKizvT1VHMw','Google User is Pilar Patrick\n\nDr Sylvester is great. You want to know why? Because not only did he assess my symptoms for himself, which of course he should, but he LISTENED TO ME and what MY PAST EXPERIENCES has been with asthma and I explained what treatment regimen works FOR ME. \n\nCan you tell I\'ve experienced the opposite treatment somewhere else ? Yes I did, and it resulted in hospitalization because of under treating my symptoms.\n\nI\'m highly satisfied with Dr. Sylvesters bed side manners and his willingness to listen to his patient and then act fast. I know for a fact that I wont be hospitalized this time because he gave me aggressive treatment to calm my asthma down. \n\nRobert was my nurse and he also was very kind and attentive to me and to my mother. He got us snacks, beverages and warm blankets and we had only been here 15 minutes. 😀 He sparked up great nursing conversation with me (I\'m an RN, second year grad student for PMHNP) and had a positive energy. He made me feel very comfortable. Hit the IV on the first try! (That\'s important) 😉 He gave me tips and reminders on what to ask the doctor for before I left. He came in frequently to make sure I was comfortable.\n\nAmelia was my tech/Nursing assistant.( Im not sure of her title). She was super nice and informative. She taught me a trick about nebulizers that I thought was pretty cool. She smiled throughout our interactions and appeared to love what she does. \n\nI would reccomend this place to everyone. The wait time to be seen was short , super short and The service/treatment was fast and accurate to my needs. \n\nThank you all!!!!!!!\n\nPILAR PATRICK','2018-09-12 05:16:48.529000','2018-09-12 05:16:48.529000',5,'Pilar Patrick','https://lh6.googleusercontent.com/-sloDdZdbpvM/AAAAAAAAAAI/AAAAAAAAAAA/S5Dp3sKqess/c-rp-mo-br100/photo.jpg','17394740196501090048',4799),('AIe9_BFL0OZrFaHgoJtqifT1GHrIHbAVXzTnnm_NtKYjJgxB0c6CP_cgv-ak7bxgVijcFsLMU-sshNCRUBJLce5wJbqbjS4HEq2MY5VjYUe-qSx8Gq1f4Uc','Second time here. Received help fast short wait with some nice nurses and both doctors we had for my kids were great. Could do better job cleaning rooms in between patients but very satisfying care from most staff. Best care we have recieved from a emergency clinic!','2019-05-16 03:14:57.474000','2019-05-16 03:14:57.474000',4,'Garret Pooley','https://lh3.googleusercontent.com/-lGU94VEVBP4/AAAAAAAAAAI/AAAAAAAAAAA/xUciyP8DmgA/c-rp-mo-br100/photo.jpg','6521947413723274945',8280),('AIe9_BFL0OZrFaHgoJtqifT1GHrIhChJqFlZz7wh2PQA445-vMNNliJNynGbKXSiudo2Yze_XiPxwE9cffKYsKk6GHJ7G1750DnKimm9-nmNEJyjLt3K__U','It was a great experience. Dr. Golla was very caring and did exactly what we needed done.','2017-05-21 18:24:53.993000','2017-05-21 18:24:53.993000',5,'Shawn Washington','https://lh6.googleusercontent.com/-O7Ng90uXDI4/AAAAAAAAAAI/AAAAAAAAAAA/-9Wx0MXyRGs/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5048),('AIe9_BFL0OZrFaHgoJtqifT1GHrIHEQxAOLGKfXafSzzqXjyJGCByRguQj1rgc4UbH7r3WdOy26MGOZ2E4Aq4fV43h7LY9GNH9vahOkXGPkkBneMqyk0Op0','First, Xavier and Brenda were extremely helpful when I walked in. They even held the door. Lia was my favorite nurse. She was really amazing!! I’m self pay and it was extremely cheap. Thank y’all.','2019-01-02 06:51:23.369000','2019-01-02 06:51:23.369000',5,'Braylon Avant','https://lh3.googleusercontent.com/-gDYXNBfIY-k/AAAAAAAAAAI/AAAAAAAAAAA/iufpRNHCGk8/c-rp-mo-br100/photo.jpg','12541597562633926366',578),('AIe9_BFL0OZrFaHgoJtqifT1GHrIhFOufAW_mjQkGauzvveev9o5pfxq1l32dXCXAmtomyZJAJ2j-eHieg1jJ0MMi9lOZy7tAj9cMJyfzAngDg_WSFhsfpk','We were taken care of promptly, the entire staff displayed excellent manners and we were promptly moved to a very clean room where we were seen by Dr. Lim. So far, the experience has been nice.','2020-02-10 02:46:18.884000','2020-02-10 02:46:18.884000',5,'Thomas Hopkins','https://lh6.googleusercontent.com/-yLqQED32-mk/AAAAAAAAAAI/AAAAAAAAAAA/ioHYTVt2e90/c-rp-mo-br100/photo.jpg','14567670160750071148',13542),('AIe9_BFL0OZrFaHgoJtqifT1GHrIhHQopMjjzy-5a4h0ot2HBzVUrfQW4ID1Hl6dJt0VeCPfHnpdJxmqFACMVzX-vED2U-FJa6oGj0N4ERxJr9-I3Np9wac',NULL,'2018-07-16 02:34:30.368000','2018-07-16 02:34:30.368000',5,'Nancy Ventura','https://lh5.googleusercontent.com/-yGwae0JPYPw/AAAAAAAAAAI/AAAAAAAAAAA/VzO_M1JC84g/c-rp-mo-br100/photo.jpg','14904078213800803294',2239),('AIe9_BFL0OZrFaHgoJtqifT1GHrIhIRAOrNFBHaZYZMplow2gXUs6-ZBNI9d3m3ZdMS7Fb9jjbDHc7HdI5vDpg3Kj2-wTMHQdL38lz_5amfHKeU9ujQskd8','No wait time, Dr. Kimball, Anthony, Rayven & Stephanie were all extremely nice and caring! Facilities are very nice, clean and spacious!','2019-07-12 02:00:05.271000','2019-07-12 02:00:05.271000',5,'Kelsey Bolt','https://lh4.googleusercontent.com/-IoPoU979inc/AAAAAAAAAAI/AAAAAAAAAAA/uZps_yQZrvQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3303),('AIe9_BFL0OZrFaHgoJtqifT1GHrIHqTptbk_Qb_BI96lygsKcafBp_Zm9H4mLDUwIZQH5BYa2HUjc8li-IeqyFWud9LqPtNNpBggF8-rqN1wlVP6cDLH19c','I recommend this ER too anyone who wants quick but experienced professional ER services. You are taken back almost immediately and the physician seen me within 5 minutes. Great nurses and staff.','2017-08-16 21:43:54.250000','2017-08-16 21:43:54.250000',5,'Marlena Gardner','https://lh3.googleusercontent.com/-JVy5gVbOOzk/AAAAAAAAAAI/AAAAAAAAAAA/9UAP8YIBYOM/c-rp-mo-br100/photo.jpg','14567670160750071148',1767),('AIe9_BFL0OZrFaHgoJtqifT1GHrIhwemF9cpe5eP0ZEdqz7PH8nD_9n9iSYOciBGd9vBSB2yids0fym2RUs0f7SJbkj5leZwlV0ylooB4wma6r1Uxff-cMk',NULL,'2020-08-17 19:37:19.678000','2020-08-17 19:37:19.678000',5,'Teresa Lartey','https://lh3.googleusercontent.com/-BYY8S-sQfyA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmLisHHB7mbZapC-n0hvudsYN5d6w/c0x00000000-cc-rp/photo.jpg','8918455867446117794',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIHXHnIi4moyGVLMg5FYVCRSaEgnJlh-x55WesYXqvOKgxnsyYQMWUUTM51eNIyi6AOB2BPn1d0BSsoaL8NQQWqQkeG6M','Amazing friendly service, they really know how to make you feel better and they pamper you😊😊. Extremely professional.','2020-06-30 18:20:29.728000','2020-06-30 18:20:29.728000',5,'Rox B','https://lh3.googleusercontent.com/-F7WcUFNu30M/AAAAAAAAAAI/AAAAAAAAAAA/-Dw9WpXMy-c/c-rp-mo-br100/photo.jpg','14748677429039074158',21391),('AIe9_BFL0OZrFaHgoJtqifT1GHrIhYBoECPClqiKdmG9KpeVO4QLtCgmIcSINTtFxVPxOawvor8CKIYfywkZCuuh7PPPEM2h0egEF7ezf50Nag2fnTyGBjE','ran very smoothly. only took 1 hour.','2020-07-31 14:11:00.740000','2020-07-31 14:11:00.740000',5,'joe araiza','https://lh6.googleusercontent.com/-RfER9gXv-Eo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn3o676MTQv5bamKd9K7Nz5ZfobNg/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21861),('AIe9_BFL0OZrFaHgoJtqifT1GHrII2izcNlUQPGXWjvZKCnY55ssnG37L5IvQEPXWnnKZHyTrWyQxHRu7J4S5UEb7Gi9dFx2beUIO_naCBxOUUr1Pk_PaHY','My first experience was amazing. I did have to return a second time and was not satisfied. They did everything in their power to make it right and I really appreciate it.','2019-01-10 22:47:00.965000','2019-01-10 22:47:00.965000',5,'Angelika Walker','https://lh6.googleusercontent.com/-Xp7y5hHmTOU/AAAAAAAAAAI/AAAAAAAAAAA/c58j-OHJUAg/c-rp-mo-br100/photo.jpg','3511292162159714121',7485),('AIe9_BFL0OZrFaHgoJtqifT1GHrII5Bc_UtQBZkcGBeVpg3ZCsbhGyEo3LM1JiA4Rx6TzmnEShsn_vRt_DMfqvE7MPwuynLd6tbBglr7E6fNcQr7mMte-CI','Outstanding staff and very patient with children! Billing was a breeze, patient care was great, and the office was clean and well-equipped. ','2016-09-14 14:23:34.226000','2016-09-14 14:23:34.226000',5,'Julie Stanberry','https://lh6.googleusercontent.com/-rfS606lNQHE/AAAAAAAAAAI/AAAAAAAAAAA/sQEWeh4-gkA/c-rp-mo-br100/photo.jpg','14567670160750071148',1971),('AIe9_BFL0OZrFaHgoJtqifT1GHrII7NxQC5hC4IQqDlDI8SgUGQ15aIiblswkBGKmsF-bnu-HU0LN52A7-Cp9YSw6xl_MUF_bm75FSPgCK1DNLdPZIw68WY','The staff was great! Super friendly and attentive. We did not have a long wait, within 10 minutes of walking in we were already being checked.\nThank you Dr. O\'Malley, Alvean, Shazia, Olivia and Patricia!','2019-12-01 19:27:31.891000','2019-12-01 19:27:31.891000',5,'Ana Sacalxot','https://lh5.googleusercontent.com/-N6xkwc-QWHg/AAAAAAAAAAI/AAAAAAAAAAA/EYQ_Kr-tlyM/c-rp-mo-br100/photo.jpg','16389487648212004696',2594),('AIe9_BFL0OZrFaHgoJtqifT1GHrII80mu3i7qdxKP8S_BEaw1johMxIZwThaQc_0tP1MICKRfZblbGi8eBYLbZdedpdWDKn_CiR3vdbT_VoVzfNBwFj7j-o','The nurses Jacob and Morgan where really friendly and offered me the best comfort during my visit. They took time to ensure that I was well taken care of.','2018-01-21 18:00:07.680000','2018-01-21 18:00:07.680000',5,'Joshua Elijah Rillera','https://lh3.googleusercontent.com/-UKNUW2HDfxM/AAAAAAAAAAI/AAAAAAAAAAA/5LaMWsB2iKQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3874),('AIe9_BFL0OZrFaHgoJtqifT1GHrIiaplJQrmMi3KYLdqYzBfDB7Zd4zzTupdibi0fgQgcFImWDaB26djCYrL0Icazm0lbJToCPaGuT8UoRKiKBqghldL3ok','Dr Tran has the worst bedside manner than any doctor I’ve ever seen. I came in with a high fever, body aches and chest pains. I was not offered fluids or an IV and laid there sweating through my clothes. I was not offered blankets and had to go to the nurses station to ask. I was questioned about my autoimmune disease like it didn’t exist. Dr Hannah Tran and her staff should not be allowed to treat patients. The only person who had any tact was Nurse Connie. Do not waste your time going here- go to a real hospital. Worst $500 I’ve ever spent.','2020-01-03 18:45:13.348000','2020-01-03 18:45:13.348000',1,'Emily Dunn','https://lh4.googleusercontent.com/-z3qHuYFJ1cM/AAAAAAAAAAI/AAAAAAAAAAA/rVjN_uwGz7I/c-rp-mo-br100/photo.jpg','2694018788013845459',14278),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIbcso6o-kQ1pMNWh_gxjo7NgIZCXYwcxub8w85-LSJMwRenqiLZuw4pSeNgBX2cEmwOKTNKXKnrvUB7mnyzekj00aNY','Absolutely awesome place!!! I’ve been there several times and they are exceptional at taking care of patients!! They have everything right there that’s needed to treat people and they are so friendly, kind and caring!!! Special thanks to Susie Hicks and Robin Bratcher for being so wonderful to me!!! I won’t go anywhere else for emergency care!!!','2019-05-29 16:56:24.988000','2019-05-29 16:56:24.988000',5,'Staci Whitley','https://lh6.googleusercontent.com/-TgcE-IzL_ik/AAAAAAAAAAI/AAAAAAAAAAA/1P7Wncr-uuQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8469),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIem9HWI3vIzdmuk2zkk4nLjdYgSkPkJuOdaE7OZytQKlzK1g6iFHy40RyXoL9hyHw42I0quZVfdV4vbNxPc_BL6ahoI','I went there because I\'ve cut my finger pretty badly. That was a deep one so I needed a stiches.. I chose that Emergency Center not just because of a really great reviews but because it was really close to my house and have a very convenient location on I-10. There is no wait time at all! I even complete all the paperwork while doctor was taking care of my finger. People who work there are really fast ( which is a key point in my situation because I was bleeding out) and are real professionals! \nI really would recommend this place for anyone who is looking for fast, immediate, professional medical care.','2018-03-28 18:33:58.803000','2018-03-28 18:33:58.803000',5,'Anastasia Galperin','https://lh4.googleusercontent.com/-LdtYCm0wNjE/AAAAAAAAAAI/AAAAAAAAAAA/OazbXyXqE-U/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2269),('AIe9_BFL0OZrFaHgoJtqifT1GHrIieMvamY38eMNHYuM7ZcM97QQvQGsNZI0KbWp8_VwPXVgR-zy_hCISb9eF8Ie4DFnkp-SVkzLM_nyJazxXTc5rINxRIA','What a great staff! I felt like I was in the right hands. Very knowledgeable staff. Definitely recommend this location.','2019-03-22 15:59:43.077000','2019-03-22 15:59:43.077000',5,'gaby mora','https://lh3.googleusercontent.com/-ZEQ0CqG5AHs/AAAAAAAAAAI/AAAAAAAAAAA/M0bRWNRegSo/c-rp-mo-br100/photo.jpg','3511292162159714121',7373),('AIe9_BFL0OZrFaHgoJtqifT1GHrIiFUp9ngblBIe9LmgQ9P_1BXNMbRwgchP_JmFIgw5OwGQXuLHxS2G9si04HVJ9Ok03oXYUO74qMO9U_VOxojTz8LVDNY','I was extremely dehydrated and was also experiencing a severe migraine- the staff was fo prompt and helpful making me comfortable and talking through everything. If I had issues again, or know someone that is, I would refer them here. Under the circumstances, very pleasant experience.','2019-10-17 14:55:26.271000','2019-10-17 14:55:26.271000',5,'Millicent Butcher','https://lh3.googleusercontent.com/-w43NhIcm1T4/AAAAAAAAAAI/AAAAAAAAAAA/bFO3tWDHPKc/c-rp-mo-br100/photo.jpg','14904078213800803294',13673),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIknxy122BRzcjurVtW-2xxVAtFqxZyffRXiYHaXYJkllKGCbkDEb1DVOfnYkQtDtPEAb9FtcbcnKNTaQqvocpk41Dbg','I had Bretnie & Jacob preform my corona test & they were so sweet and caring.','2020-07-24 17:59:09.613000','2020-07-24 17:59:09.613000',5,'Maggie Beard','https://lh6.googleusercontent.com/-pOBesihO9HM/AAAAAAAAAAI/AAAAAAAAAAA/JKYw62TtpBs/c-rp-mo-br100/photo.jpg','16590124370714063921',22656),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIl_u_v46DhU64BQaq1X4LBw6DxVEoGkDQ4f8g6rxdfstfpj-LpvehJya8InXsuYpoone_MVoer3pgGygi7HenmnRoFE','Staff is very polite, had a great experience with Patricia Alvean:)','2020-02-08 21:33:56.085000','2020-02-08 21:33:56.085000',5,'Aylin Lozano','https://lh3.googleusercontent.com/-E14BoTeBrNw/AAAAAAAAAAI/AAAAAAAAAAA/a1Q1yzhpeVU/c-rp-mo-br100/photo.jpg','16389487648212004696',22604),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIm9WwoWu0eERJzC8c5Biq8v402XVmpXoQ5srfOEvM2jyLUwR1_Z8ic8SftAGiwEj-q6Yi3vwgxnaZmwQprm95Q3fVIk','Went in due to a head injury. The person who tended to me (Evelyn A. I believe it was) was very professional and made me feel like i was in good hands. Definitely will return if i need immediate attention again!!!','2018-07-19 18:45:35.054000','2018-07-19 18:45:35.054000',5,'Paul Rodriguez','https://lh6.googleusercontent.com/-4QOlDmyjJ0k/AAAAAAAAAAI/AAAAAAAAAAA/n880gQbhvDE/c-rp-mo-br100/photo.jpg','14567670160750071148',1596),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIO0V_w3Lx-OaXy-Q-ciqlwlnL6Ah4W3TwsZd9X3Ez2lx5nr7NnzhaS9MPFaQ5L9wr2wfrA_zlKlEBPezMak9xVlEJPY','I was involved in a car accident and came to this place to get checked out because I was experiencing some pain. The moment I walked in Amy made my registration process very fast and professional. Before I knew it I was getting checked out by nurse Alvean and Keith. They were very nice professional and concern about the amount of pain I was experiencing. Soon after I saw Dr. Leavitt and she was very nice as well. The wait time was barely 5 mins and Dr. Leavitt asked me concerning questions about how I was feeling and the amount pain. My overall experience was great and I was completely satisfied with the staff. I would recommend this place to anyone.','2019-11-17 18:55:18.453000','2019-11-17 18:55:18.453000',5,'ashley green','https://lh6.googleusercontent.com/-qQ1SQ_ZxM8Q/AAAAAAAAAAI/AAAAAAAAAAA/EZEWKKsi1ys/c-rp-mo-br100/photo.jpg','16389487648212004696',2671),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIo21IyjrwZzkrhlBMdLKAzNq6D7anDZ2L2fOZDqLQJ7Bzr1G76U_J1cipTg_fFuy125ggxKsz-vTwvWYibo2mtDE6Tk','Dr. Henderson diagnosed me quickly. Nurse Troy, Registrar Luisa, and Radiologist Josha were unbelievably kind and professional. Highly recommend this location','2019-08-17 06:38:34.034000','2019-08-17 06:38:34.034000',5,'Lori Ridge','https://lh6.googleusercontent.com/-17WuHh_wvEc/AAAAAAAAAAI/AAAAAAAAAAA/5IX7SZr6Fwo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIpJJ5frqAWuAx0Pbg_X5iTTzpUMF7R_b57CI2xiouTRMWMWG8nWSMwbQZmBryF6Xn7lW8MvCglzCQM_5aWbuZRZPMGU',NULL,'2018-11-14 22:31:57.022000','2018-11-14 22:31:57.022000',4,'munaza hassan','https://lh5.googleusercontent.com/-o8QhF0W7e_s/AAAAAAAAAAI/AAAAAAAAAAA/oW5MnuigGRo/c-rp-mo-br100/photo.jpg','8918455867446117794',9215),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIrqZ8S08898xQuSl8rggd1ywSUnIKOIfpAn4fYcUbyXfj08vXopHOM6CO0X3ikahCK4MNVehF4rYYkF9hAKT9MzegFo','Tobie, RN Mollie, and Eric were fantastic I’m so relieved to have them checking us in and helping us!','2019-12-29 08:40:23.630000','2019-12-29 08:40:23.630000',5,'Michael Scott','https://lh4.googleusercontent.com/--xctX9s6hpU/AAAAAAAAAAI/AAAAAAAAAAA/TXq3hu2vQbw/c-rp-mo-br100/photo.jpg','3272657195432704501',6818),('AIe9_BFL0OZrFaHgoJtqifT1GHrIiSuFMAd4-XGRQwDoVOE00Jl4nwkxWIvrxFqNwd9XbEoQ_B9RTW8hdJFQzV88JJIM26RZAiqeyK8F-YjbM6E_PwVq7Pk','I was greeted by two ladies working at registration: Diamond and Natasha. They were patient with me and helped me fill out my paperwork! Nurse Kat was very informative and friendly, Nurse Frank was helpful and nice, and Doctor Jones was thorough, kind, and gave great instructions! This ER got me in and out of the hospital with no problem!','2019-07-04 03:14:43.830000','2019-07-04 03:14:43.830000',5,'Amana Jones','https://lh3.googleusercontent.com/-Nxma0siY8eY/AAAAAAAAAAI/AAAAAAAAAAA/3_fRedhot0I/c-rp-mo-br100/photo.jpg','2694018788013845459',6120),('AIe9_BFL0OZrFaHgoJtqifT1GHrIit4_NITd9xc4g0GoVr_h50JKPa2OO9uxMESx29EFAynkWFvyIAJ_x3DjHPfhOPFqBa2DYNSEKkXAJOI8IssEVpcpsRo','I came in today after being rear ended by a negligent driver. Immediately i was greeted by Jocelyn who was very nice. Alvean my nurse was very caring and made sure i was ok. The radiologist Jordan made the x ray process very easy and comfortable. Dr. Patel was so knowledgeable and informative. Overall, my visit was quick and I will be back if needed in the future.','2019-10-23 20:04:35.940000','2019-10-23 20:04:35.940000',5,'Gabriela Cortez','https://lh4.googleusercontent.com/-65MgnFPLj1A/AAAAAAAAAAI/AAAAAAAAAAA/M2fAtPeUxUM/c-rp-mo-br100/photo.jpg','16389487648212004696',2789),('AIe9_BFL0OZrFaHgoJtqifT1GHrIivChP65Up4CGLNnbdhQxIowxIt_szhWrQDj2FTpak7H21pjltdc3S1MnDnbQ5gQ69aqLevnkJXy4i_ByPE3NfxFvtH0','I had a great experience with Doctors they are very nice and take care of you','2018-09-07 00:54:24.032000','2018-09-07 00:54:24.032000',5,'Irene Martinez','https://lh3.googleusercontent.com/-uqeekJr19SA/AAAAAAAAAAI/AAAAAAAAAAA/CsP9t0C-Obo/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1528),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIwjgEKI7dgEYT1AtDdqZ9kKEY2oyzKTEhpIF4A-U8SiKioW_8hSOHB771DvGhO8eO8wJUQiNAbFSalifRq2LCx_AWBo','Nurse Alvean\nDr Thomas\nAssistant Marcus\nAll very professional, courteous and friendly.\nI would highly recommend this service to the next person that needs ER care.','2019-05-12 14:24:23.293000','2019-05-12 14:24:23.293000',5,'Theresa Zamora','https://lh6.googleusercontent.com/-5WmGrcn48Gk/AAAAAAAAAAI/AAAAAAAAAAA/ydFUv8-sBB4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIiYOB5SSwe_zr2BFskDYFYsCPywaDB6mzB97h6mEtoPpBRHVZjq_iqWp-y3uk0w4KcfyW-GJeVKF6JMVX-nOq3M5lH1U','Great experience. Went here after a car accident and received amazing service. Was offered a warm blanket, water, and snacks. Hands down the best medical experience I’ve had. Came here because it was near home, and the medical staff made the whole process simple and reassuring.','2019-01-13 21:32:01.247000','2019-01-13 21:32:01.247000',5,'Linda Arris','https://lh3.googleusercontent.com/-S8tAADTVFgU/AAAAAAAAAAI/AAAAAAAAAAA/0a4be2ORQk8/c-rp-mo-br100/photo.jpg','8918455867446117794',9192),('AIe9_BFL0OZrFaHgoJtqifT1GHrIiYWVcFpTR-sUXrJzinUidlZDhX8_hj66isVdSBy0BY2pyCcbMajA4gLpuTD19J3Mi2LZorP-qyg-aQQrDB8AzVNBhRs','I arrived with my husband around 3pm and I was in severe pain. They took me right back and treated me with morphine. I was out of it the 6-8 hours we were there. Turns out I had a kidney blockage in my only kidney. They spent hours on the phone looking for a urologist and a Hospital that takes my insurance. They found St Luke’s downtown and a wonderful urologist Dr Seth Learner. I was transported by ambulance and had an 11 day stay in the hospital. I was in kidney, heart and lung failure this emergency room saved my life. As well as St Luke’s. \nI would go to these emergency rooms again they were so hospitable and saved my life. I can’t thank them enough!','2019-06-21 18:28:08.873000','2019-06-21 18:28:08.873000',5,'Kimmy Tenkate','https://lh4.googleusercontent.com/-6Yo85FUgS1s/AAAAAAAAAAI/AAAAAAAAAAA/m8xX-86nu3g/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIIzaRMRsPkZAmx-Te2-n1FOSoUFlTn3eIPLU4ruG5Hf_n3hZBb2kwXlG3IvBsiGMzieJPwmNWd3nBJkjIL1m3pskDnNw','Kay, Jocelyn and Dr.Omalley were great. It was super fast and I was in and out.','2020-05-25 21:58:14.090000','2020-05-25 21:58:14.090000',5,'Aleeyah Azurin','https://lh6.googleusercontent.com/-ykuX323gV6s/AAAAAAAAAAI/AAAAAAAAAAA/WSxWGDWs9zM/c-rp-mo-br100/photo.jpg','16389487648212004696',22582),('AIe9_BFL0OZrFaHgoJtqifT1GHrIizKYGoOaNwzdqFlXKg4X4R17FU3Oaa59vdkQbid4HW_2e3xZgKXIz4nDHIaSCjvQvNRv6N_p69oDDYLbisiv-sCCbS8','I always receive exceptional care when I come here! From the curbside assistance to the friendly staff behind the counter and the level of expertise that the staff brings, I had a wonderful experience. Shelli, Dr. Miller, Andrew, Aileen and Fernando were outstanding in my time of need!! I will continue to recommend this place to everyone I know!! Plus I received all of warmest blankets that I could have ever asked for. Thank you so much!! :)','2020-02-20 23:23:03.870000','2020-02-20 23:23:03.870000',5,'Chelsey Michael','https://lh3.googleusercontent.com/-5eBieb4M2TM/AAAAAAAAAAI/AAAAAAAAAAA/H2jUKeCQcQk/c-rp-mo-br100/photo.jpg','16891069708558046635',13938),('AIe9_BFL0OZrFaHgoJtqifT1GHrIj_wLHJ0B4xeNg3uZjDQxPdthMXKAOBVj1P1vOP67IK5TT-urSWzUDJ9Wkmqr0G8Bh6la5xWZEqWDo-Bv81chCLJ2rvk','Best attention and care from their people. We didn\'t wait too long, Shania was very diligent. Nurse Kim was very kind with my boyfriend who was very sick, just like Dr. Allison. Also, Dr. Huerta take care of him very patiently and professionally. This is the second time we were there and we couldn\'t ask for better treatment.','2020-01-04 03:02:00.661000','2020-01-04 03:02:00.661000',5,'Maria Palencia','https://lh5.googleusercontent.com/-ArPrQOWzXIA/AAAAAAAAAAI/AAAAAAAAAAA/wWQ3f8O5J-U/c-rp-mo-br100/photo.jpg','13486358490203335051',652),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJ0zDvD3vmDhDzMIXQYx3_ei77vPAzSai9xrUTVjldUwL3TUvD06d-oFjJ39dbeeomuJbUuHTFBEcwIhPi4Zs23W4TJ4','Great staff !','2019-12-20 03:30:08.921000','2019-12-20 03:30:08.921000',5,'Natalie Urias','https://lh5.googleusercontent.com/-GHzq-1B-jp4/AAAAAAAAAAI/AAAAAAAAAAA/V-2HgvhhHSE/c-rp-mo-br100/photo.jpg','13486358490203335051',682),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJ1HZCOcLv-S_GM5Pm5wvyjixQIdI1omUWZNeO3ST1sFdN5jgBKGYCL_d68jLba3ytV2SH2VKZmf2J6Z1taSA2FW_3MM','Dr. Osiecki was great and explained things to us. Kiera not only made my children feel at ease, but offered them snacks and took great care of us as a family. Marcus the radtech was helpful. Eliza was gentle and had his iv set up in seconds. Nancy checked us in and out and it was great!!','2019-10-23 02:34:20.847000','2019-10-23 02:34:20.847000',5,'Rosa Gonzales','https://lh4.googleusercontent.com/-bbkOlW6dFqU/AAAAAAAAAAI/AAAAAAAAAAA/9kPR42d4CEE/c-rp-mo-br100/photo.jpg','6521947413723274945',8112),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJ2Uz8kVK-mgFQqOukeuH7SsMGLa9WVHHuoOHolKIiYobmvND904WyI-dtPEboE1NUwZP6Z7puTx1uNtUOwwPzQdrhjA','Was billed an outrageous amount and received bill a year and half later. Would not recommend them unless you love throwing away money! You will pay an arm and a leg for a visit. I predict they will not be in business to much longer here at CS. This is from an A&M employee w/ BCBS. Hopefully this reviews helps other Aggies save their hard earned money. GiG\'em Aggies!','2018-08-30 18:42:35.973000','2018-08-30 18:42:35.973000',1,'Ryan Price','https://lh4.googleusercontent.com/-FRzQdIGRWT8/AAAAAAAAAAI/AAAAAAAAAAA/qheLjEHyNvw/c-rp-mo-br100/photo.jpg','16590124370714063921',3757),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJ3ZsnG22JQqs-vSf9wrg7j54jkNLPVDYBNteEAA9o_l2tSPkiT-fC1X9WHPz34NHM9ISm54lOPHxH4zs8dXUP2yAV8w',NULL,'2016-12-19 22:12:57.031000','2016-12-19 22:12:57.031000',5,'Maria Murdock','https://lh3.googleusercontent.com/-Oy9bLF8m3uA/AAAAAAAAAAI/AAAAAAAAAAA/3IbO5KuGCpc/c-rp-mo-br100/photo.jpg','14567670160750071148',1932),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJ8iGebZo58h8yRWjM7gN405KCJDG_upINE_rIvPn-c-wstdaKsLjyIwAyLti5SiwOOoBsVd4OFJ_KItSddLs1HMZFPk','I want everyone to know that twice this year Midland’s Signature Care has been a life saver. But this specific time, during COVID, they went above and beyond. My daughter was feeling very sick (Covid type symptoms) so we went to get a rapid test. She was negative. They could have sent us on our way but Dr Star didn’t let us leave. He asked us to come inside. After bloodwork and ultrasound they discovered my daughter had acute appendicitis. During this crazy time, most doctors would have sent us on our way. But not Dr. Star. I can’t say enough positive words about this organization. Thank you. Thank you for going the extra mile!!!','2020-07-27 13:35:47.686000','2020-07-27 13:35:47.686000',5,'Tiffany Butts','https://lh4.googleusercontent.com/-TB1Ao6qvMrQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucktCYs7i8TY2pxuXOrfMKRruEancQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',765),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJBa-6Esc957QuOU6plKYRn-TNIM4mcYSAJnS1i1inPd-qrWRXG5StgLWUBrLvtBZaNZ_95-MnI2dtcZk9J4qfkvS8xA','Fast friendly service. Will always choose as my first go to.','2020-07-26 08:20:54.476000','2020-07-26 08:20:54.476000',5,'Patricia Ryan','https://lh3.googleusercontent.com/-vdsSTegqZZg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckTMMyvFOdvIYU--FmTesyxQMoAmg/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22114),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJeTXBBtgvgFZ389YUkOX1AHHJHgfgAGD42ZAzpICgVUP_n5hk9s0Z0KMAsVfWOoKXOHvecP3KWuBD1tCybfn5oo-10Y','Very efficient, personable and caring. We were treated with utmost respect and concern. Very thankful for this excellent business in our neighborhood!','2018-07-02 14:12:45.712000','2018-07-02 14:12:45.712000',5,'hesterpie1','https://lh3.googleusercontent.com/-LOHxZdv1k9I/AAAAAAAAAAI/AAAAAAAAAAA/q6SoGIyFXzM/c-rp-mo-br100/photo.jpg','3511292162159714121',7694),('AIe9_BFL0OZrFaHgoJtqifT1GHrIjiOx7S2gkLE9-3LZyhdxMnQ18i25Z0JBFP-fc9mwZRsJt9Vw9pW0HnrCwmjlmVMx0f8nZuq9kLYC1hH2vEkaiIHzNVc','5 Plus STARS Dr. Kotey Rashaad Ladonna & AL & Anelia. Super staff the staff took super great care of my wife when is became sick. I have been to different ER for different thing and NEVER received Services like this class act. When they say the get you back asap the are right we only waited for about 7 minutes before we went back. The personal care that my wife received could never be thanked enough. This is the only ER I will ever go to any more. I will send anyone that ask were to go this is the place.','2020-02-06 04:13:58.437000','2020-02-06 04:13:58.437000',5,'RB Franklin','https://lh4.googleusercontent.com/-tksPL8Z_5Z4/AAAAAAAAAAI/AAAAAAAAAAA/i4uUYxDD1iE/c-rp-mo-br100/photo.jpg','17394740196501090048',14035),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJjwnXcKbVoCfor3Brmnq86aCvVzFRhk3JVaL48ps5L0ujuU8LjkmZnNhA77E3TTD6e4GoU39zBaF8-fgBM7uF8VeEWk','I went in and was greeted by two front desk clerks who stood up and said high the minute we walked in! I was brought in immediately to the doctor who was very cool, nice and concerned and the same with the nurse and cat scan tech. The doctor, Dr. William O’Malley listened to my concerns and totally kept me calm. Dr. O’Malley was very sweet to my fiancé and also calmed any concerns that she had too. All my test came back clean but Dr “O” suggested that I should see a neurologist and I will but as far as ER’s go this place is first rate! Thank you for everyone working that day! PS my fiancé said she appreciated that they offered her a blanket!!','2019-04-14 17:50:23.707000','2019-04-14 17:50:23.707000',5,'Elvira Lv','https://lh5.googleusercontent.com/-MxgP0OfCFY8/AAAAAAAAAAI/AAAAAAAAAAA/3DfIutoy8EU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIjMnzD-i6gVUFi47LAL5ksNoxx6W3VGja6HpYLlcBc8AfvgMzM554qQJRGNkHlPyAOgfPG3QpNAkdkUrpKwLiZiLb3M0','They do an amazing job at taking care of you!','2019-08-27 22:09:52.781000','2019-08-27 22:09:52.781000',5,'Melissa Hernandez Olivas','https://lh5.googleusercontent.com/-oJnJPPorJp4/AAAAAAAAAAI/AAAAAAAAAAA/1AJBKJIxAkU/c-rp-mo-br100/photo.jpg','6521947413723274945',8155),('AIe9_BFL0OZrFaHgoJtqifT1GHrIjmunzjrII7h9b6tYx2tshFu7rBNJIZzto97G7SLU2i5UyeCuEUd55NxtDDhilhXikOqzzG2mSEVKL0if2iGdVUdWZlg','I was treated professionally and medically cared for in excellence. Every one was so kind and I was really taken care of. Thank You!','2020-06-23 01:35:19.155000','2020-06-23 01:35:19.155000',5,'elaine taylorbrown','https://lh4.googleusercontent.com/-X4d_QgDAknU/AAAAAAAAAAI/AAAAAAAAAAA/1ERxv_1YKEg/c-rp-mo-br100/photo.jpg','14748677429039074158',21768),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJResn27AlhVirmKaNSHPMBkv2FzDoKzDA28wj2rtAstxF2puruVDc0vYII6wiJZP2UIvvG3j4spBhRzkJGjPX9ybVj4',NULL,'2019-07-23 09:42:29.351000','2019-07-23 09:42:29.351000',5,'Cynthia Burcham','https://lh5.googleusercontent.com/-VXDMHXnHLtM/AAAAAAAAAAI/AAAAAAAAAAA/jK1JW5cAMkU/c-rp-mo-br100/photo.jpg','13486358490203335051',886),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJtmfWp0WL3lpucMjHHNmz2k0M1H_Ymcps6ycWSHEBcXotaf9cToxXKPdVQc3LPMwsqMN-Kfsjkjq165w2yD7WXUCiPE',NULL,'2020-01-18 20:18:55.075000','2020-01-18 20:18:55.075000',5,'casandra gulley','https://lh4.googleusercontent.com/-0P06F5heKVw/AAAAAAAAAAI/AAAAAAAAAAA/VpEVuZc0AQ0/c-rp-mo-br100/photo.jpg','3272657195432704501',10078),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJTUWhBaMicNRdgi79c32W04qmWOiJnPri8v8pnZsdOIG3dIwqjcXf9qjO61zxscihMCDaBrFCfIDP8aBmZk_coUpSqs','Everyone here is so nice and patient! The doctor was also really smart and fast!\n\nDr. O’Malley, Patricia, Ekaterini, Marcus, and Thuy Anh really care about you as a person and treat you very well! I am thankful for their great care!','2020-03-13 22:25:50.539000','2020-03-13 22:25:50.539000',5,'Bryan Salinas','https://lh3.googleusercontent.com/-jTPsfhwwm60/AAAAAAAAAAI/AAAAAAAAAAA/_QEHkfeq5dc/c-rp-mo-br100/photo.jpg','16389487648212004696',21017),('AIe9_BFL0OZrFaHgoJtqifT1GHrIjWH27aWoe8d0KESWhtUQmwK-1nrov6beq38Rzr6zJLD1R9J5jBpN4fDHADkrfydR-G5eYfzsCUXvja-yJqlAnBJ8YAk','Tracy and Alvean and Dr.Wong treat you like if it was family great customer service also the front desk representative was so kind and helpful Dr. Wong help me understand what was going on with my pain 10 out of 10 recommend this emergency please don’t go to no other ER','2019-03-27 20:29:46.660000','2019-03-27 20:29:46.660000',5,'Ignacio Martinez Rodriguez','https://lh6.googleusercontent.com/-l8P5mqUWu6M/AAAAAAAAAAI/AAAAAAAAAAA/7-iyDeAUuIs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJy87mMBCD_nbaWSzmQb_7R_muSJmmiPFNS5l3GTnob2xRIgwdTCoU4qCOBwgrSJKWVCfqowmLRIroTXOAP7d7fXrtf4','From the moment I arrived Jocelyn was very attentive at the registration desk. Nurse Alvean and Dr. Ortiz were very prompt and in depth in evaluating my condition. I would recommend this facility to friends and family for any medical emergencies.','2019-10-27 16:29:23.338000','2019-10-27 16:29:23.338000',5,'L Trahan','https://lh5.googleusercontent.com/-dmKBPJBl93o/AAAAAAAAAAI/AAAAAAAAAAA/25QygO78MvM/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',2759),('AIe9_BFL0OZrFaHgoJtqifT1GHrIJZSkRVYs4ng1qdyAG1rJSb1QLCKLB6xZsJcEs4XdabcBYYevuk9QP5nImpp3Xo31oNozUOnEjDtIlb4W6msEdhytAfw','Brought my son in early this week, staff was so so nice and very helpful. There wasn’t a long wait, we were in and out within the hour. Highly recommend','2020-01-16 20:23:22.105000','2020-01-16 20:23:22.105000',5,'Crista Valenzuela','https://lh6.googleusercontent.com/-xOqXVLEJUaA/AAAAAAAAAAI/AAAAAAAAAAA/xbhen5XcBdc/c-rp-mo-br100/photo.jpg','13486358490203335051',13480),('AIe9_BFL0OZrFaHgoJtqifT1GHrIk_LeZBuCAzus7po0W3FACw6ttYUPREpXVVFeA8zubSFQ_Ixh7yzs8iCS5mSz9Bbd0qGQlIygdLwo3hJEz8Xf2BRf1zo','The staff at Signature Care Emergency Center are amazing, best bed side manner I’ve ever experienced. By far trumps all Emergency Centers I have been treated at thus far. Zero wait time, and everyone is very attentive doing everything in their power to make you feel as comfortable as possible. Special shout out to the three amazing medical gurus who took care of me Savanah, Jamie, and Andrew y’all are the BEST EVER!','2019-01-23 19:06:46.817000','2019-01-23 19:06:46.817000',5,'Melissa Snyder','https://lh6.googleusercontent.com/--1LCD4rvnB0/AAAAAAAAAAI/AAAAAAAAAAA/N4eNz_DP7pc/c-rp-mo-br100/photo.jpg','13486358490203335051',1091),('AIe9_BFL0OZrFaHgoJtqifT1GHrIK2P-F0HF2GUtQiGWM6tanFR2znHLW08A1QLW-g9e5uRg7ExPgNAzNtaGaDxbRTxZ8z-FG6jSuLbJiY9qRmoNjJSpifc','Kendra offered me a warm blanket, after treatment Dr.Vakey let me rest. Quick and respectful staff. Nurse Cat is amazing.','2019-12-20 13:12:19.592000','2019-12-20 13:12:19.592000',5,'Sharrelle Wright','https://lh5.googleusercontent.com/-E14sXkUkiKs/AAAAAAAAAAI/AAAAAAAAAAA/IAtSRCAf5e8/c-rp-mo-br100/photo.jpg','16590124370714063921',3017),('AIe9_BFL0OZrFaHgoJtqifT1GHrIk2SA5YKW2hjehE9lmjRmfK_y_8mQPE9Az-iw5Iz5IrofY4FAPtrN_Ra1jmVWmUDp0GhCMZi6BXH1Uasj_YlpSMvCbIs',NULL,'2019-06-20 18:47:05.818000','2019-06-20 18:47:05.818000',5,'Leah Dozier-Hernandez','https://lh5.googleusercontent.com/-PAR-qJI_m4U/AAAAAAAAAAI/AAAAAAAAAAA/DIKC5kzyaJc/c-rp-mo-br100/photo.jpg','16590124370714063921',3341),('AIe9_BFL0OZrFaHgoJtqifT1GHrIK8FgZsQhOfqCJ26F1u9W9vcYpUyaj2Wsr3JARQmal5nTpiNuUe-JuFRaZ3TUwyOTrK7cBrmvUwVeHobmQ1XjlFaB2e0','Fantastic facility!!! Enjoyed my service! They took care of me fast I was in and out & left feeling pleased! \nDr Ortiz, Nurse Irving, Nurse Thelma, & Nurse Chanell were all amazing helped me a lot','2020-02-25 03:04:56.772000','2020-02-25 03:04:56.772000',5,'Asia Green','https://lh3.googleusercontent.com/-xR9fz2gBQnA/AAAAAAAAAAI/AAAAAAAAAAA/O8JqnTAypc0/c-rp-mo-br100/photo.jpg','12541597562633926366',13348),('AIe9_BFL0OZrFaHgoJtqifT1GHrIke893GzNnm-ueo5kuhv9daCY-XiHltv51rmjcxHYKOlPeqlzluhFWeBcahwZ427ZFn4VNZwtYU-N30viHCBvhdmNfSY','In and out. Friendly, made sure we were all taken care of not just my daughter. Definitely recommend.','2019-04-21 12:40:08.708000','2019-04-21 12:40:08.708000',5,'Rosa Maria Garcia','https://lh3.googleusercontent.com/-H-lGPUixymY/AAAAAAAAAAI/AAAAAAAAAAA/fgjvSYasz10/c-rp-mo-br100/photo.jpg','14904078213800803294',2148),('AIe9_BFL0OZrFaHgoJtqifT1GHrIKFgE7cDf_M5PMasepJh5RN9GRpHpzt9vIIDILXRpNdDCplsnmGNAsuasvxy8PKKvrZn-VI-HcSiB8Dn1i7vUzlucNMg','Great welcoming experience from the entire Montrose staff. 5 stars.\nDr Yusef Ke Aire Jose Chih Anastasia. Amazing team!!!','2018-08-15 01:01:10.725000','2018-08-15 01:01:10.725000',5,'Ethan Nolan','https://lh3.googleusercontent.com/-EW4UqnHJYqs/AAAAAAAAAAI/AAAAAAAAAAA/Fb4XTKBg-WI/c-rp-mo-br100/photo.jpg','3511292162159714121',7621),('AIe9_BFL0OZrFaHgoJtqifT1GHrIkHaJd46RfuGaN7P1Y6tkcq3Qc_0QXNS88g61BOF070SJt94FjHk0Cp27eBbfp16BOEdP5aRdH2nynsg346RvnpK-EPk','Honestly the best medical experience I\'ve ever had. From the warm and non-robotic people who answered the phone to the kind man at the front desk to the RN (Katie) that was so nice you could be friends with her to the doctor you wished you could have as your permanent primary care physician (Dr. Rose). They are outstanding in both expertise and human-ness. They\'re clearly in the right field. The marble countertops and peaceful, quiet space were cherries on top.','2018-08-28 04:00:47.758000','2018-08-28 04:00:47.758000',5,'Natalie Shaw','https://lh3.googleusercontent.com/-0ZvaUDtiP8I/AAAAAAAAAAI/AAAAAAAAAAA/vy96aL3RobA/c-rp-mo-br100/photo.jpg','16891069708558046635',4437),('AIe9_BFL0OZrFaHgoJtqifT1GHrIkluSMh7kQpE5OHz-cuU7UUOeLDqbQsSbLQAOybRyeAEJqD7sqejoqkKtYmHssQg-cfv4tr37j5QLVNqBMcc_bZYj0Lc',NULL,'2019-01-06 02:48:09.068000','2019-01-06 02:48:09.068000',5,'Jean Lopez','https://lh3.googleusercontent.com/-VUrp-qxk5_8/AAAAAAAAAAI/AAAAAAAAAAA/nh5BCF8nLz4/c-rp-mo-br100/photo.jpg','16891069708558046635',4376),('AIe9_BFL0OZrFaHgoJtqifT1GHrIkm7yrvtI6v62CrHHv6C_IEk54aVvOWsDUIg7MjGLiMMW5dCZItZ-_kpX1NSAz7pyrZdce8s5rkUCzAyUwYQY-aRELVs','Kendra was lovely at the front desk and took care of our every need. Vakey was a great doctor and I would love him to help me again in the future. The fridge could be colder.','2020-02-15 19:48:32.838000','2020-02-15 19:48:32.838000',5,'Rory Hogan','https://lh5.googleusercontent.com/-1d7U9P53EBk/AAAAAAAAAAI/AAAAAAAAAAA/_EsMRGBiRM4/c-rp-mo-br100/photo.jpg','16590124370714063921',13854),('AIe9_BFL0OZrFaHgoJtqifT1GHrIkQx50dUUw0FEs9Wg1QxgQCTX-EVBEGlhAS4zYRO8qxG2w8C64BoKmeXdNBscXMRNTsUbOVEW6JfJzbdPjCcCU75oGFw','Such a great place to get seen. The RN Anthony was so kind and addressed all of my needs. Dr. Vakey was very informative and personable. He explained everything in great detail. Kirsten the RN was also so sweet! Def a place you should consider going when you need emergency care.','2019-04-24 05:43:26.706000','2019-04-23 21:13:18.149000',5,'Brittany Freeman','https://lh6.googleusercontent.com/-YLGjkWjsf7U/AAAAAAAAAAI/AAAAAAAAAAA/LtwKw8Uosis/c-rp-mo-br100/photo.jpg','16590124370714063921',3410),('AIe9_BFL0OZrFaHgoJtqifT1GHrIKw3hGekzzoqdbRHpO12jLI7asj3si_8vKwyhWs8UtMj83Rbh_1T_YCRbRae6TRUM4SS7uL3cr_Iy26Fs8gjxBwTG3Y0','Dr.Yusif \nAmy A \nChuriah M.\nNorma T.\n And Eve M.\nEveryone was very helpful! I was checked out in detail and they were extremely nice even offered snacks!','2020-01-24 17:26:05.016000','2020-01-24 17:26:05.016000',5,'Taylor Burns','https://lh5.googleusercontent.com/-EkQ3yFfGWJ0/AAAAAAAAAAI/AAAAAAAAAAA/I4yarqJPyx0/c-rp-mo-br100/photo.jpg','3511292162159714121',14450),('AIe9_BFL0OZrFaHgoJtqifT1GHrIKXCbI7JnDo6rkNls0GlqqTBdxgUYfX3d9mkycWkld0Z9Pkyl6iPadMQkLo1jB3W7U0P-1Uk814AS-i-afVUkwTyqBiI','Thanks DR. THOMAS, MD, MATHEW and your team, you saved my life. I really appreciated your effort otherwise I won\'t be alive today. a service to me was expensive, but life come first. Only one word\" God bless you\" you saved my life. I recommended this emergency care to anyone who wants good service.','2019-06-14 01:26:23.483000','2019-06-14 01:26:23.483000',5,'Eyadema Simplisse Iyanos','https://lh4.googleusercontent.com/-SxlckhqaMk8/AAAAAAAAAAI/AAAAAAAAAAA/DjiuRBoH5eo/c-rp-mo-br100/photo.jpg','17898197009688164559',5701),('AIe9_BFL0OZrFaHgoJtqifT1GHrIl7VD0D6x8S41BpTSSfaVRC8_y3G-D1ty86KInVP_hGEpP2BaRvHAzKQegSwZZEQOwS1Y9hS6M-HU63kyIzppGezB244',NULL,'2019-11-13 13:36:41.339000','2019-11-13 13:36:41.339000',5,'Kristana Angley','https://lh6.googleusercontent.com/-Zyj3i13eJ_k/AAAAAAAAAAI/AAAAAAAAAAA/XHUSmacx4S8/c-rp-mo-br100/photo.jpg','13486358490203335051',742),('AIe9_BFL0OZrFaHgoJtqifT1GHrIlAsEaHZ7OgODS54qWxwDOvdZ_0KGXkdkKphj_lamGxotyHVKUaVTGXRxKkhFgsKbm909Ck9xGhWdL_-Jw-FStsROdpo','This place was amazing! There was no wait. I was actually in and out in less than an hour. The staff was great too!','2019-10-20 15:09:13.836000','2019-10-20 15:09:13.836000',5,'LaToya Brooks','https://lh5.googleusercontent.com/-m0aiMv9kD38/AAAAAAAAAAI/AAAAAAAAAAA/4vy-NI1KyOw/c-rp-mo-br100/photo.jpg','14567670160750071148',1216),('AIe9_BFL0OZrFaHgoJtqifT1GHrIlbM1DVS_vSIwTDuljrhYpPKQM5sPlbx5ZXUNgL-73g74-i5aCdshl4B-PQqrdnY9KDuPy2pvbO9bRdt3HNUvFHmPuuk','Amazing experience. Even with all the pain. They made me feel very comfortable. Therese M was very knowledgeable.and attentive.. AMD doctor elsbecker was very informative. Of my diagnoses.','2020-02-28 23:02:09.578000','2020-02-28 23:02:09.578000',5,'Justin Hayden','https://lh4.googleusercontent.com/-cNUYoGpnkCE/AAAAAAAAAAI/AAAAAAAAAAA/msEquSFGbXM/c-rp-mo-br100/photo.jpg','6521947413723274945',14529),('AIe9_BFL0OZrFaHgoJtqifT1GHrIlG1u71s0fHMsCnXa8AkbClGgVrVMoe4PO8Hfungv-w9Jl9Ia6EoHOTey6Sd-93rslSN9BlHU292lvRQq3p5VnC8eGhc','Cody and Sam did such a great job of making me and my son feel safe and taken care of. Whole place was clean👏🏼','2020-08-17 15:59:26.921000','2020-08-17 15:59:26.921000',5,'Melodie_ Lain','https://lh3.googleusercontent.com/a-/AOh14Gi7sGrfaHhsEUQv6UaH4jR9_8hKT7AZaYNzmEhL=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrILk7rsBG_D07EPT6Kschux7f326cpgG-RwB_1g2DGXm5gIsFoZGQ9XExJWDJA0--CxH2mduZ2oovkmQ95pifLNJH1gLg','Best dr office experience ive ever had in my life. I was sicker then i ever been for 4 days and within 24 hours they had me feeling great able to take care of my daughters with no problems or concerns of passing my strep throat to them\n Sweetest staff ive ever met. This will be the only place i go to from now on.','2019-02-18 03:18:05.623000','2019-02-18 03:18:05.623000',5,'Miss Texaz','https://lh4.googleusercontent.com/-Wyq2bL8loCo/AAAAAAAAAAI/AAAAAAAAAAA/ibtMrGg7bf8/c-rp-mo-br100/photo.jpg','6521947413723274945',8304),('AIe9_BFL0OZrFaHgoJtqifT1GHrILm7XXgML8Cu4bk16OmnTS5lBn5nrI3oBzING5sakH9ZK5mrcP22okcePqjtvZSqH1USUCWmo4BWYEmLkuP9g8wlPF3Y','Excellent experience all around. Was in and out within an hour, after getting an IV, medication, blood work and a prescription.Staff all were friendly, quick and made sure I had all I needed. Dr. Elsbecker, RN Katie and techs Chris and Chelsey, were all amazing.Would and have recommended to others. Keep up the good work y\'all.','2019-11-11 19:59:27.249000','2019-11-11 19:59:27.249000',5,'e l','https://lh4.googleusercontent.com/-NSNRR4lHPBs/AAAAAAAAAAI/AAAAAAAAAAA/4oeFrH8xQ4Q/c-rp-mo-br100/photo.jpg','16891069708558046635',4154),('AIe9_BFL0OZrFaHgoJtqifT1GHrILMGoPmVa3XRrYqbbZ-cxbgi5gxtAHpE6knjBZNjJbd8DWsKTeIqAfE59cELSf66dt4ZRmrAxIFYERjr5gyq4qdD2wtk','ER Tech Leah was very sweet and patient with us during our testing as well as the ER Care Staff.','2020-08-03 12:31:32.311000','2020-08-03 12:31:32.311000',5,'Liyah Marie','https://lh3.googleusercontent.com/a-/AOh14GirqqrdRTy0NJBXRLkweasSv68PtxEObe4KJ8sd=c0x00000000-cc-rp','13486358490203335051',21830),('AIe9_BFL0OZrFaHgoJtqifT1GHrILngLiJOe6Oj2lYJGsl1dnrcrKR5LuZEwfqnEb7Kqvhw-6nfYPVmjRhCU3biUnOUMm4iVWN-6LbayU9n-Luv0v247LRk','BRACE YOURSELF FOR A NOVEL: Having to be tested for COVID, I showed up at this clinic to sign up for a spot. When I first showed up, It was not clear wether or not you could, or should, walk inside of the clinic as there was a large group of people waiting in line. I called their number and was told to walk in and sign up inside. Pretty weird to me that you have to go inside to just give the your name and number while we are in a pandemic. I think it would be way easier and safer to take this information over the phone in order to minimize contact with potential infected patients. My whole time here, I was worried about contracting COVID from previous patients, I did not feel safe at all. \n\nWhen I signed up, I also asked what the wait time was looking like and never got a straight answer. I was told to just wait for a call and that it would \"be a while\", and thinking that this meant maybe an hour or two, I went back to sit in my car waiting to be called in. What I did not know was that it would take 7 HOURS for my time to come to e tested and I was NEVER called once. I had to call several times and ask them my spot in line and when I called them at 2:00 am in order to ask to be tested the following day, they told me that they had tried to call me to come in, but that the call kept failing.\n\nSo I showed up at 2:00 in the morning to get tested immediately. I even waited a little bit in the lobby after waiting a total of 7 hours and while I was waiting, I heard the receptionist talk to a nurse about me behind my back -- The nurse was bothered that I was there and the receptionist said that when they called me I \"never answered\", which was entirely untrue, I had been waiting for hours to get called back and I made sure to call frequently to make sure that my spot was moving in line. When I was called in by the bothered nurse, she had this obvious attitude towards my presence. She started to question me as to why I came in at this time, as if it was my fault that I was never called to come in. She was so dismissive and rude to me, I was honestly shocked. She could not be bothered at all and it was so apparent that she was tired and overworked. \n\nI had several more negative experiences after this, with lack of communication with staff, patient negligence, and this same nurse, I am very shocked about how this experience turned out, I was not expecting this at all. I was tested again in San Antonio and my experience was so great. I didn\'t wait at all, signed up online and staff had me in and out in about a half hour. SignatureCare was the complete opposite -- it was a confusing, frustrating experience that made me feel disrespected and disregarded and ultimately made me seriously regret walking into this facility. If you ever needed any level of care from an emergency room, you\'d probably be met with gross negligence from this one.','2020-06-24 19:41:59.124000','2020-06-24 19:41:59.124000',1,'Tomas Diaz','https://lh3.googleusercontent.com/-rPMseJ-17_8/AAAAAAAAAAI/AAAAAAAAAAA/vNfldzhss94/c-rp-mo-br100/photo.jpg','16590124370714063921',21285),('AIe9_BFL0OZrFaHgoJtqifT1GHrIlNl51guPXzkOZSwSlpeNFeaSd4Cpel71-taMm1DWSNnPDZMBAvya2fhDgiTGZ9CHUtFm-Ds2CCMWRcFr1mXIp-oNH68','Lorena at registration was so wonderful! Dr. Harjai and nurse Jacob O. were amazing also! So professional and polite! Took such great care of me! Always will recommend Signature care!!!!','2019-11-28 23:24:26.966000','2019-11-28 23:24:26.966000',5,'Hillary Yeomans','https://lh6.googleusercontent.com/-JiEm3pxD69w/AAAAAAAAAAI/AAAAAAAAAAA/-b1pMxkk5bI/c-rp-mo-br100/photo.jpg','16590124370714063921',3069),('AIe9_BFL0OZrFaHgoJtqifT1GHrIlRVXrnlxZDQ4D-Kjm67l2nOkr7LrZ7uhr4dNhINHQUNCz-5nBMnt76YGL67iLZLmtEbjTAG907ynLCAQsC7bIPMQDbc','Came here with my wife for an emergency ultrasound and everything turned out great. From Samantha at the front desk to the amazing nurses Nicole G and Shola, the radiologist Dustin and then the awesome urltrasound tech Estella. Dr Singla was very kind and informative. Everything here is so clean and staff is amazing. They check up on you every so often and ask how you are doing and if you need anything. Snack and drinks are a awesome bonus! I love this place and love the friendly people.','2020-02-01 03:30:35.711000','2020-02-01 03:30:35.711000',5,'John Macias II','https://lh5.googleusercontent.com/-ZioiI5a55O8/AAAAAAAAAAI/AAAAAAAAAAA/t3Or_rqGpJM/c-rp-mo-br100/photo.jpg','14567670160750071148',13568),('AIe9_BFL0OZrFaHgoJtqifT1GHrIlSxDtPHXn02zZ2Posh9J2UGapjCYtQfXrWo6uf_OpRmFdTLBDsSaBtGVw40w8CMjttTeDbPkPXq8HEdWsBk6v4K7DW0','I went in for throat pain at 2:30am, turned out to be strep. I came in feeling just awful. The young lady at the front desk, Jessica, was wonderful. Prior to arriving, I called and she even offered to send directions. Her pleasant and helpful demeanor was the same in person and already put me at ease. Gustavo offered a warm blanket, which I kindly accepted. Nurse Conrad was just as pleasant. I was uneasy about getting a shot and he shared a personal experience that made me feel very brave. Dr. Hehman was very knowledgeable, kind and attentive! I knew I was in good hands. The security guard waited outside, seeing as it was very late as I safely left. This visit exceeded my ER expectations by far! What an exceptional staff you have!! Ps... no wait time :)','2017-08-13 21:35:57.115000','2017-08-13 21:35:57.115000',5,'Michelle','https://lh4.googleusercontent.com/-wd-Xs-06l4s/AAAAAAAAAAI/AAAAAAAAAAA/BE7d1mjxh9s/c-rp-mo-br100/photo.jpg','8918455867446117794',9369),('AIe9_BFL0OZrFaHgoJtqifT1GHrIlT3u07yZy1HJMSXHknjVoTeeEn0yL-c1JaPZabdvFbryGQdq1_47E8jfDBB-7lnu_9AD99A2XlLd7QIb9ZtCeHdTIqo','Best ER visit I have ever had! Everyone was very friendly and they were very attentive.','2019-01-01 17:26:33.289000','2019-01-01 17:26:33.289000',5,'Stephanie Silva','https://lh5.googleusercontent.com/-1TY829yw1QE/AAAAAAAAAAI/AAAAAAAAAAA/GQqgqEB_8KI/c-rp-mo-br100/photo.jpg','13486358490203335051',1117),('AIe9_BFL0OZrFaHgoJtqifT1GHrILYooiG0xyfRYfE9R48P1rb-3LHz4sViuR8adF2bnnKDw5A0PQJhYky9eDkXLsOqLNFxh_dF-V4QgTey93hI50FrmplI','The staffs were very nice and helpful !!!','2018-09-14 05:14:38.663000','2018-09-14 05:14:38.663000',5,'Duy Ngo','https://lh6.googleusercontent.com/-bqAVZXfmRSI/AAAAAAAAAAI/AAAAAAAAAAA/Lt7rDXIxDjU/c-rp-mo-br100/photo.jpg','17394740196501090048',4796),('AIe9_BFL0OZrFaHgoJtqifT1GHrIM5Ktq-CTJMINIee4KHgRCdzQT1liQmfWSLitQZbDBN6PxGrxaKLMdYTan-Qv6CVFdqPsXkJT9QcqrQwd4TGwhN3F9g0','We had a great experience. My girlfriend had gotten a cut on her hand and had to get stitches. Everything was very affordable. Dr. Ybarra and Nurse Rollie were excellent. Stephanie and Natalia were extremely friendly and helpful. Should anything happen where we need care we will come back to this location. Thank you!','2019-10-20 01:21:52.971000','2019-10-20 01:21:52.971000',5,'Garrick Smith Bass','https://lh4.googleusercontent.com/-EALz-tV7QvI/AAAAAAAAAAI/AAAAAAAAAAA/BzMjqis4WAE/c-rp-mo-br100/photo.jpg','8679688254631342173',8785),('AIe9_BFL0OZrFaHgoJtqifT1GHrIM8tGUVC8cY99R7KYuSC-bA5Go-tvvWcD9DryySnHqYochcp8HJ43PHdwI72TY3Skn9Yq3zDY7pWrHeIPeRz88DLKZq8','We had a workplace exposure and my employer suggested this as a good place for rapid COVID testing. I made a walk-in appointment at 10am and was told it would be a 3 hour wait and that I would receive a call when it was my turn. No problem. At around 3pm, I get worried they may have misread my phone number so I come back and I\'m told that 28 people remain before me. So I wait. I return at 6pm and I\'m told there\'s still 16 people left. So I wait...I fall asleep...and now it\'s 10am the following day and I\'m starting to think it must\'ve been a prank. Not quite sure what just went on there.','2020-06-16 16:05:03.399000','2020-06-16 16:05:03.399000',1,'Michael Carter','https://lh3.googleusercontent.com/-sc-Rm9MgKd8/AAAAAAAAAAI/AAAAAAAAAAA/A7FH2Rxos8A/c-rp-mo-br100/photo.jpg','3511292162159714121',21149),('AIe9_BFL0OZrFaHgoJtqifT1GHrIMaxmRWenaATEFqTGVUtN5IlGgqvrCxyli3CrAlY61ZteQYPtX8hQfd6DJhl4HFEUkrJKRXTf0lCMr-CKvXTT058D1f4','They are superheroes','2019-07-08 20:18:24.042000','2019-07-08 20:18:24.042000',5,'tesabear18 tesabear18','https://lh6.googleusercontent.com/-4Kk1v_yNoWI/AAAAAAAAAAI/AAAAAAAAAAA/Tzj7Lru7EkM/c-rp-mo-br100/photo.jpg','17898197009688164559',5654),('AIe9_BFL0OZrFaHgoJtqifT1GHrImdFQMfjs2FK3Z3bcjZwzJ-8asFh8eptojCCAxS2dz9CyuQJaydzw-N5YlKMMOgdq2dgXwmV6IsQF3nE6YYaQDFQZabw',NULL,'2020-01-30 00:25:32.675000','2020-01-30 00:25:32.675000',5,'Jacqueline Peterson','https://lh6.googleusercontent.com/-r3KBmPq_Owo/AAAAAAAAAAI/AAAAAAAAAAA/WyKZ5I_HEk4/c-rp-mo-br100/photo.jpg','8679688254631342173',14776),('AIe9_BFL0OZrFaHgoJtqifT1GHrIMh5jr6ax0boC23d8nFQZGuw7lazBftv8S2JWP-GWU-sUcPuikbNoJsRdQ--UEwGmdihk4AoHCGl-aeCAFulmhnb6AkY','Brought our son in close to midnight to help with him swallowing a coin and the staff was very friendly and helpful right away. Nurse Theresa and Dr. V were very caring and continously checking in on our baby boy. We are very thankful for them!','2020-03-09 05:13:49.546000','2020-03-09 05:13:49.546000',5,'alyssa fernandez','https://lh4.googleusercontent.com/-9wPO3PMsaus/AAAAAAAAAAI/AAAAAAAAAAA/7FUcqbBPn-w/c-rp-mo-br100/photo.jpg','6521947413723274945',21175),('AIe9_BFL0OZrFaHgoJtqifT1GHrIMHk-X72Zn-1m6e_lBD8ypaCRbQFPfty9DwvaSvLPqPIiBvPAMiRDezdcsF4CYNcD00oFTJysA6I0h7afBbPA9ALfYmA',NULL,'2019-09-28 01:48:37.380000','2019-09-28 01:48:37.380000',5,'Ceci Garcia','https://lh5.googleusercontent.com/-c4_uF8eFNyQ/AAAAAAAAAAI/AAAAAAAAAAA/6wEzIm8TXkM/c-rp-mo-br100/photo.jpg','13486358490203335051',809),('AIe9_BFL0OZrFaHgoJtqifT1GHrImo8ybAS_LGZK7o-zughPUBgv54HIV8hausYEoWUpqkxHMrXlKRE1r5vrQQycVIpGUXfcKRPsSQIDNq6ExD_NKyaIRzA','I was welcomed by both the receptionist, Patricia and security personnel, Jawanna when I arrived. All of the staff are friendly and welcoming. I received fast service and had little to no wait. My nurse, Ekaterini and Dr. Patel explained everything and answered all my questions. Even the radiologist, Kat was friendly. Hopefully will be a very long time before I get sick again, but when I do, I know where I’ll go for future emergency care needs.','2019-10-05 02:10:37.099000','2019-10-05 02:10:37.099000',5,'Bri Carter','https://lh6.googleusercontent.com/-N9pkf7Nv_Yc/AAAAAAAAAAI/AAAAAAAAAAA/hjIHqUQJx8Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2853),('AIe9_BFL0OZrFaHgoJtqifT1GHrIMRBMM98T0KV0euxh_igobHSg61dIOiNAoxfx3FMbERF4tNlaevQWkiTNJbKM7BLKYQAExxIXFJIUhgW6-fcKCL37MBs','I absolutely loved coming here. Dee got me processed and sent to the back in less than 10 minutes. The entire staff was amazing, the doctor was thorough, and they all were incredibly accommodating. I highly recommend this location.','2019-06-25 23:11:58.601000','2019-06-25 23:11:58.601000',5,'Antonio Carraway','https://lh4.googleusercontent.com/-UIaG6cp7a-Y/AAAAAAAAAAI/AAAAAAAAAAA/2pW6V0rk-Xg/c-rp-mo-br100/photo.jpg','3511292162159714121',7282),('AIe9_BFL0OZrFaHgoJtqifT1GHrIMUZG09Y8nge4YGWnNd6buotQz1kbIVBqWUgt98qOMmF9CzqR0jHkPKMnYfKwPWuhV2-sDDBhTjlBWDLSP1FkcmHzj-4',NULL,'2017-04-11 16:32:42.904000','2017-04-11 16:32:42.904000',5,'Annie Nguyen','https://lh3.googleusercontent.com/-KxcLj7faxkw/AAAAAAAAAAI/AAAAAAAAAAA/E5xJYE_SQeU/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',4011),('AIe9_BFL0OZrFaHgoJtqifT1GHrImV31ZRBv-UWaQh5V77PPRTSMto98TnU9qJ5TwWB7v2fje2jVMum6Y7D4_BVTCilkSTmWLp9Su6pjlUR-6IcOnRO6W24','Dr. Grinblatas and the entire team (Jessica, Iwona, Norma and Amy) did amazing work when I came here today. I was in pain and was very nervous - and they made me feel very comfortable and answered every question patiently. But it doesn\'t stop there - they did all the tests really quickly and gave me a diagnosis asap. I appreciate the team\'s dedication and am so grateful!! Thank you so much :-)','2019-03-11 17:56:51.576000','2019-03-11 17:56:51.576000',5,'Dipabali Saha','https://lh4.googleusercontent.com/-DNW3qeINABw/AAAAAAAAAAI/AAAAAAAAAAA/8WCWVtUX1Rg/c-rp-mo-br100/photo.jpg','3511292162159714121',7383),('AIe9_BFL0OZrFaHgoJtqifT1GHrImYcXFTUjDLaLzag4biOGMcu1b-WleeDmgtZZJLhvIAgJJQsjzZtO9tMHAjBhi38UWDsLJKl-psoj851cPJ_HVSRKVOg',NULL,'2016-10-11 19:39:51.543000','2016-10-11 19:39:51.543000',5,'Vicki Tippit','https://lh3.googleusercontent.com/-8IgaplZvoYw/AAAAAAAAAAI/AAAAAAAAAAA/jb7o91dQmf8/c-rp-mo-br100/photo.jpg','3511292162159714121',7929),('AIe9_BFL0OZrFaHgoJtqifT1GHrIMYlZyx3OYE4r4dGyktbB2-OZeCogBIC5l3V0sZCTMVNmib6H8KBIvKojRDs-WFdBSBUy21XrkZZ55dMJoUZyP5Ktf0M','Always so informative and willing to help with any injury, and finding a way to make u better.','2020-07-28 14:27:23.171000','2020-07-28 14:27:23.171000',5,'Lindsey Hatcher','https://lh6.googleusercontent.com/-9_Xfoi533pU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclHkGRtlab6OPgquVfsRV-HDtEZdA/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22282),('AIe9_BFL0OZrFaHgoJtqifT1GHrIMZJqE00Fl8ScIPqEHaLFs9qx4zz1eqic4tGryWaMqkA9-MKPJcNTHI5h1Q3pksCain7Ma1FXo4Ahj_Z1DLoOQvpxmm8','Outstanding experience. Everyone we came into contact with was super helpful and kind. The nurses and physicians explained everything to us-Dr. Grinblatas, Nurse Johnny Keith, Radiology Tech Selina.They were extremely knowledgeable. We didn\'t have to wait-we were in and out. The facility is top notch, new and very clean. We will be back if we are ever in need of an ER again.','2020-02-28 18:26:19.003000','2020-02-28 18:26:19.003000',5,'Amy White','https://lh3.googleusercontent.com/-8Z5mtMnL7_U/AAAAAAAAAAI/AAAAAAAAAAA/Yhw3hBU2S4g/c-rp-mo-br100/photo.jpg','14904078213800803294',20987),('AIe9_BFL0OZrFaHgoJtqifT1GHrIn_P1eiBBjHY6VFyTE6dFFVlMgvDiZApBtcFbeQz2j_C2QXT-yq35NmGBzjQdfIAsbGDCXQlmvH1a6zrJgZ9UeLadpD4',NULL,'2018-04-18 04:46:20.007000','2018-04-18 04:46:20.007000',5,'Crilyx lol','https://lh6.googleusercontent.com/-qTzTpg-41to/AAAAAAAAAAI/AAAAAAAAAAA/x14wtnuH2es/c-rp-mo-br100/photo.jpg','17394740196501090048',4861),('AIe9_BFL0OZrFaHgoJtqifT1GHrIN_pkP9DEtpXPvoEae2451CUU7q8g6x9tt5lMbXkY_8bOoqYk83zewP0rvdw-lHDxx0OLhKRjvFRP5ZpjvGkOcuBjn9I','I went in for a throat problem they took good care of me good doctor and staff no long wait and they have payment plan thanks a lot keep up the good work','2017-12-08 08:01:57.310000','2017-12-08 08:01:57.310000',5,'Rony Alfaro','https://lh3.googleusercontent.com/-LcqsSyFdpxM/AAAAAAAAAAI/AAAAAAAAAAA/qM3IcGTeRpM/c-rp-mo-br100/photo.jpg','3511292162159714121',7751),('AIe9_BFL0OZrFaHgoJtqifT1GHrIN1NGYWXUR-e2cneSDtd-HGpmVa_BphRRoydYyRZli_ElET8539PzG-ced_brfg1s0-Fyj5bV_YCPYRujiFxYRhCx4nY','Had a great experience from the moment I walked in. Always my go to for any emergency, the staff is awesome and work great as a team. The doctors have great bedside manners and explain everything to you in a way you can understand. Love this place!!!','2019-02-21 12:56:45.677000','2019-02-21 12:56:45.677000',5,'Claudia Ramirez','https://lh3.googleusercontent.com/-xUUPicCvnF8/AAAAAAAAAAI/AAAAAAAAAAA/7huVZ83vjfM/c-rp-mo-br100/photo.jpg','14567670160750071148',1382),('AIe9_BFL0OZrFaHgoJtqifT1GHrIN4KC0XodOBuyoQeWw2-gaHbGB5AYRStR1iDan2_NHCoJ32WLozrlW5Yd_rWvFJsmHL7eh47MuB0w_2F-tcqVWSdGMYo','very good job thanks to Eliza and Rachel','2020-07-23 20:43:42.100000','2020-07-23 20:43:42.100000',5,'Alfonso Garcia','https://lh5.googleusercontent.com/-Xg3w_w5Qrlc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnvxwZFtJ6DrpvWszsP6UUgbTNsgQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22219),('AIe9_BFL0OZrFaHgoJtqifT1GHrINbcJc6M4wuIR1XNeU4R2YkbCgu3oSa4oNdoA7OZDWywFUBlHI7axlYxtL4OPaDJzbYwEWZCHc3p4ryqfYAwdxiPA7dA','The staff at SignatureCare Stafford are beyond amazing! I have never felt this well taken care of my doctors and nurses were so compassionate. The doctors and nurses took their time and really made sure they gave you clear answers. I could go on and on about the amazing staff! Thank you so much for all that you all do ! \n\nIf you are in a medical emergency this is the place for you!','2019-10-24 22:40:42.320000','2019-10-24 22:40:42.320000',5,'Crystal Burton','https://lh6.googleusercontent.com/-hoQP9gaLyMk/AAAAAAAAAAI/AAAAAAAAAAA/KNosgnq24cM/c-rp-mo-br100/photo.jpg','8918455867446117794',9054),('AIe9_BFL0OZrFaHgoJtqifT1GHrInDygryp4xXJHtijgvZej6SfaawbZzqxFVTYeiwDsD2ZuiQqDhjY1NWMh8tKX5XFWfal-2v1LKelMQhSePa2fB7dqQjo','Amazing team,I had a great experience thank you to the doctor and nurses DR. GRINBLATAS IORAM M.D. \nNurse: Puac,Betty \nRadiology Tech: Brinsko,David \nFront Desk: Cruz,Karen A','2018-02-02 13:30:08.688000','2018-02-02 13:30:08.688000',5,'God is able Mercy','https://lh4.googleusercontent.com/-V40kfaBnoSQ/AAAAAAAAAAI/AAAAAAAAAAA/z7Qv8O0DJRE/c-rp-mo-br100/photo.jpg','17394740196501090048',4890),('AIe9_BFL0OZrFaHgoJtqifT1GHrInEG6IeblIkvHEW73ui95f4o0qu3QT52w_poSXcAd2-vOl8RHnH33R6SX3fWwSAJj7sWuXnJF_YnJp_aK-hpYcvWVk74','Dr. Ortiz, Alvean, Grace and Genesis were all really helpful and friendly ! The service was thorough and quicker than most ... I recommend this er to anyone!!','2019-10-27 20:43:56.749000','2019-10-27 20:43:56.749000',5,'Jeaux Lawson','https://lh5.googleusercontent.com/-a-HYX-l2sYY/AAAAAAAAAAI/AAAAAAAAAAA/ocaO3YBw5CI/c-rp-mo-br100/photo.jpg','16389487648212004696',2757),('AIe9_BFL0OZrFaHgoJtqifT1GHrINhEn0ylRuUtYh_bEcZsZt_Ftzy6z6pxEPPz2MTZsIOQvxb5wjcOX-jWt9pb5gyMsAZns9W7_246enOiWPkXgQaM-LXg','This place is awesome! My experience there was great! The staff was super friendly the whole time! From the receptionist to the technicians, doctor and nurses. They would check on me constantly and offer me warm blankets (which was AMAZING!!!). They really care for you and if they truly don\'t, then they can sure fake it! Definitely recommend! Practically no waiting time since it\'s still pretty new.','2016-11-17 00:19:30.343000','2016-11-17 00:19:30.343000',5,'Bere Medrano','https://lh6.googleusercontent.com/-XHmKWIDglfU/AAAAAAAAAAI/AAAAAAAAAAA/be7AAZBMVh4/c-rp-mo-br100/photo.jpg','14567670160750071148',1941),('AIe9_BFL0OZrFaHgoJtqifT1GHrINISwbZKEkXO6ZyU0bxofzWswf4AKBq45DNmLTQlvyFb4Q4RXmA-6Yyy9-cMSrh2-b7KUt6WuzZejw96v78DYb5P3T1U','Very helpful extremely nice facility and the staff were excellent strongly recommend to anyone.','2017-03-21 20:56:26.371000','2017-03-21 20:56:26.371000',5,'Aidan Kerr','https://lh3.googleusercontent.com/-UOmyhm7ZBjk/AAAAAAAAAAI/AAAAAAAAAAA/KGtnO5hr_Lc/c-rp-mo-br100/photo.jpg','16590124370714063921',4027),('AIe9_BFL0OZrFaHgoJtqifT1GHrInlBVOgcP39tZRIobMuey-3VrWot5KVdZ_XoB2qwSo_eA2yoqaMJHTdmVJxdjIhzCOqszGqsQsz3vKk0q0haa0bgz49U','Great experience. Saw a doctor almost immediately upon arrival.','2018-01-29 16:11:14.635000','2018-01-29 16:11:14.635000',5,'Nnepapa Speaks','https://lh3.googleusercontent.com/-o-D_aswkCT8/AAAAAAAAAAI/AAAAAAAAAAA/jseAErGQ-Qc/c-rp-mo-br100/photo.jpg','8918455867446117794',9296),('AIe9_BFL0OZrFaHgoJtqifT1GHrInm62_SMTrWdTAwiZZzy6IJ79SB5dLjnGcCp33QePlZc2YO5rQg1cp9n-dwHTPfDg3wROW7GvrFERfuJISiaZlIJvis4','Dr.Cauasos, Tricia Aurora, & Jani Jasmine made me feel welcomed and comfortable while I was being treated for a injury. I would definitely come back here for a emergency situation.','2019-08-29 17:09:09.487000','2019-08-29 17:09:09.487000',5,'Aves','https://lh4.googleusercontent.com/-AP5hzDOG7oY/AAAAAAAAAAI/AAAAAAAAAAA/E6gFBaEwpdc/c-rp-mo-br100/photo.jpg','16389487648212004696',2969),('AIe9_BFL0OZrFaHgoJtqifT1GHrINNNBmXPt0d9JtrO2AdNphH3rtu3coRnBg7HjDFgeClZ6qnaUN_3Z78jl6ooj3C4kN25kU42ImzhsZvmx6bXx4XaUpHQ','Doctor Faig\nNurse Jennifer\nRad Tech Fatima \nEr Tech Elaine and Reg Tanishia awesome friendly professional staff. We got in and out within an hour. Warm friendly staff if you need care try Signature Care','2019-12-20 02:57:15.421000','2019-12-20 02:57:15.421000',5,'Mariechelle Malveaux','https://lh6.googleusercontent.com/-TOKp73Y1Ze4/AAAAAAAAAAI/AAAAAAAAAAA/MloidNeffNU/c-rp-mo-br100/photo.jpg','17898197009688164559',5348),('AIe9_BFL0OZrFaHgoJtqifT1GHrInPICfA2LZw-eBUTdYeywtewbIl1XvbIWUJ698FfhSYM3-ZE11G9jlBlpJHDvbeXl3zUaj4Xcf7SlQYveot_8wW6beMw','Awesome staff and all were very informative and courteous','2017-10-07 17:53:45.803000','2017-10-07 17:53:45.803000',5,'Lisa Encarguez','https://lh5.googleusercontent.com/-ZUfxIPESm8I/AAAAAAAAAAI/AAAAAAAAAAA/lBnXGS6BwzI/c-rp-mo-br100/photo.jpg','17394740196501090048',4958),('AIe9_BFL0OZrFaHgoJtqifT1GHrInRI97P1FbzcxZwdfZDUknD-xdlpOJjLqztwQjvjSAsgXxVQ7mjsenboCIQB0wl5O-rOmeRsAgwbypnsrvM2qaDIdMY8','Best urgent care and the quickest for sure.','2019-07-08 01:54:39.964000','2019-07-08 01:54:39.964000',5,'Kriselda Garcia','https://lh6.googleusercontent.com/-MTIpyKvNNqo/AAAAAAAAAAI/AAAAAAAAAAA/iyaDWVevMxg/c-rp-mo-br100/photo.jpg','6521947413723274945',8209),('AIe9_BFL0OZrFaHgoJtqifT1GHrInSFgheYzlhxThrX-1hs0qe8Tgb-4KMe9rl-TCemq-G94eGE0KVUTrxEOBhwk2J0zq7JQ6vWrz4y1FAcpQVr5X_9gCOQ','Dr. Daniels, Nurse Anthony, and Rad Tech Kathleen were great! Efficient with their work and had me diagnosed and treated quickly and correctly. Will come back if need be!','2019-03-05 05:13:39.725000','2019-03-05 05:13:39.725000',5,'Whitney Gerro','https://lh5.googleusercontent.com/-SOYM_B17l7A/AAAAAAAAAAI/AAAAAAAAAAA/AmAJEJl6Loo/c-rp-mo-br100/photo.jpg','16590124370714063921',3511),('AIe9_BFL0OZrFaHgoJtqifT1GHrInTlzUyAzPZwvd2zCPrmzG1LCx1kxmvq74LFc8vA7pVbU5DMJzhyM5F_cE0cfYLuiaExe6nJli6Nzs4SgGtV-PCBIqgY','GO TO AN ACTUAL HOSPITAL!!...$2000 + a $600 doctors fee...was there for maybe 20 minutes with a leg infection..doctor spent maybe 10 minutes with me in the chair on the opposite side of the room relaxed like he was on a break of some sort ($600 for that) gave me antibiotics that my primary care doctor said can cause a host of other problems. They didn’t even help me dress my leg when it came time to leave. Don’t fall for this sham of an operation...chances are they aren’t in your health insurance network either.','2019-10-25 06:47:25.822000','2019-10-25 06:47:25.822000',1,'Bryan McConnell','https://lh6.googleusercontent.com/-uRJHOPA0gDo/AAAAAAAAAAI/AAAAAAAAAAA/pRKUQ35pePY/c-rp-mo-br100/photo.jpg','16590124370714063921',3123),('AIe9_BFL0OZrFaHgoJtqifT1GHrIntTPJ7moZmetaFEiHXAM_xkTrgw6Lb85lTUKhansN805spR6mIy8n90sJSFEJblHQxwdU4H_LYtSM_EfT0WMi4Eux40','Loved it here.. nurses and doctors were really patient with my 3 year old and newborn!','2017-12-30 04:28:57.437000','2017-12-30 04:28:57.437000',5,'Valerie Montez','https://lh4.googleusercontent.com/-sJurGhuQAY0/AAAAAAAAAAI/AAAAAAAAAAA/nCGhYjAqwwM/c-rp-mo-br100/photo.jpg','8918455867446117794',9314),('AIe9_BFL0OZrFaHgoJtqifT1GHrInWFPm7GtoAEgWFsEr-X-vUmjHok7lgbaoC-hToQG7QfPZbwEsBuIQxIa1UiTHLW239kejELbHN1UkiCGLYorAXcZedA',NULL,'2019-01-23 04:58:18.458000','2019-01-23 04:58:18.458000',5,'Yolanda Plazas','https://lh3.googleusercontent.com/-MjLA3RKhBtU/AAAAAAAAAAI/AAAAAAAAAAA/EvXqCJorAz8/c-rp-mo-br100/photo.jpg','17394740196501090048',4733),('AIe9_BFL0OZrFaHgoJtqifT1GHrInyGrN3jeaWme1nBdGsc46QzGOoKCvBrC9yhvy2hZQI4NgW7_kxgj8HHhk9iYH6BsUyZIxbaRzP0I9G_zXOLHOiKBeQ8','Lisa the receptionist welcomed me, got me signed in quickly. Doctor Huerta provided a quick and accurate diagnosis. RN Amanda administerd excellent care and treatment. And in record time.','2020-02-06 23:21:14.910000','2020-02-06 23:21:14.910000',5,'Darrell Jackson','https://lh5.googleusercontent.com/-tbkxRHUa4to/AAAAAAAAAAI/AAAAAAAAAAA/KK00YUbIBks/c-rp-mo-br100/photo.jpg','13486358490203335051',13438),('AIe9_BFL0OZrFaHgoJtqifT1GHrIo45sKW4DJ5cQu-jDHG5ctJqKfg6Ve_5j6_jaoFwxMguk_rmxArs4ySI-cvLlbFJR91IPn8sr33XU1BMEAHeGpRPH250','Updated: Great facility, great doctors, and wonderful staff. We had a little issue with the billing in the beginning, but Round Table actually has wonderful patient advocates. If your bill is high, like ours was/is, please call them and talk to them. We were able to work out payments and they had other ways of helping reduce the bill. They worked with our insurance, and were sorry about the length of time it took. I appreciate the effort they put into helping me with this when I was so scared.','2018-12-27 19:38:31.905000','2018-12-27 19:38:31.905000',5,'Stephanie Friedersdorff','https://lh6.googleusercontent.com/-pmDb7-_KkKs/AAAAAAAAAAI/AAAAAAAAAAA/W8tY8gjWw0k/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3600),('AIe9_BFL0OZrFaHgoJtqifT1GHrIo7W-715LgrKWRkxUyINL1GkTtYIsjo9VDmJx0uwNHRtPvV9WdK0dOpXBvZfJacU6bTz5lyX9UjBY__FyKQVCaBMsHF8','Check in was quick and easy! Staff was wonderful and asked if I needed anything. Great emergency care center!','2018-08-31 02:20:09.091000','2018-08-31 02:20:09.091000',5,'Kayla Kieffer','https://lh4.googleusercontent.com/-vmeS2SSEV0Q/AAAAAAAAAAI/AAAAAAAAAAA/cDdj3dQsUD0/c-rp-mo-br100/photo.jpg','14567670160750071148',1536),('AIe9_BFL0OZrFaHgoJtqifT1GHrIocCVgJ_d1YJy4Nxg7JkLT4n5q-Lar1jhC582l_-bNTIMzaTGLd4uCEkOpQ_V6LccI-Xodr5OVGRTAAeeqX2m8hSf20A','Feel absolutely awful. Doctor and nurses all seemed to care and have been trying to get me in and out as quick as possible. Jacob, Dr. Vakky, and Liz were all great and have helped me a lot','2019-04-02 16:55:27.094000','2019-04-02 16:55:27.094000',5,'Will Statton','https://lh4.googleusercontent.com/-2Be0Mm6iNTM/AAAAAAAAAAI/AAAAAAAAAAA/3DOwKaHmMxI/c-rp-mo-br100/photo.jpg','16590124370714063921',3462),('AIe9_BFL0OZrFaHgoJtqifT1GHrIOEmXeAtK3yXwc3Oa8Ze7ePJrTSy20spFy-L4P161W8xvdb5cd-wPT7hNONECWSu7Sgme4L5ziMTAW0S51affaPnpk1I','Quick and friendly registration process. Very clean and professional setup. New to the area and was made to feel at home. Tanishia was great as the first point of contact and Dr. Appiah was attentive and did not seemed rushed at all...always a plus in a doctor. Overall a good experience.','2019-06-05 01:42:15.459000','2019-06-05 01:42:15.459000',5,'Will Griggs','https://lh6.googleusercontent.com/-Mc3VlHhYgCg/AAAAAAAAAAI/AAAAAAAAAAA/8a-q87W_2WA/c-rp-mo-br100/photo.jpg','17898197009688164559',5713),('AIe9_BFL0OZrFaHgoJtqifT1GHrIOhUTSv_bHPhtNPP73MMCgv0rksM9a9epz1Ph56LKJ-lHfyJoe9I6CTNmmdXcccgW9AxLXtmZaRNNrL3mnaUk_hUGe6A','I was seen by SignatureCare for a laceration on my foot and pain in my ankle. The staff was wonderful and very efficient! Dr. Soli numbed up the laceration before putting in sutures and I did not feel anything! Eda, the nurse, was so sweet. She made sure that I understood everything that was being done and why. Laura took my xrays and was very gentle and careful with my ankle that was hurting. I am so thankful to them for the excellent care and follow up!','2015-10-11 09:56:41.787000','2015-10-11 09:56:41.787000',5,'Elizabeth Gronlund','https://lh5.googleusercontent.com/-2CMdlEHYLis/AAAAAAAAAAI/AAAAAAAAAAA/V5RXZFN1Ejo/c-rp-mo-br100/photo.jpg','17394740196501090048',5292),('AIe9_BFL0OZrFaHgoJtqifT1GHrIol8egsaZ1XIbQXSegMgHhH0yG0Duu186eDU4cjC0AiPrh2BhhXka9owbjD8yBHtkX7cP9NR7OFiEDdNkioF49h4NeiY','This place is great they are always fast super helpful and so attentive.','2019-04-28 01:48:06.336000','2019-04-28 01:48:06.336000',5,'Corrine Holeman','https://lh5.googleusercontent.com/-C45laJyAXDE/AAAAAAAAAAI/AAAAAAAAAAA/OI0jj2FSf6A/c-rp-mo-br100/photo.jpg','13486358490203335051',1029),('AIe9_BFL0OZrFaHgoJtqifT1GHrIoofS0FED-jbUvDppgl5wxxx0yE92y3bsuvhv9DPi5sHWpdP5pJYTumVsZUYhqOVqFJIqhU6VrQqhmI7uqN__2ddsdZg',NULL,'2020-08-17 19:38:51.921000','2020-08-17 19:38:51.921000',5,'Teresa Lartey','https://lh3.googleusercontent.com/-BYY8S-sQfyA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmLisHHB7mbZapC-n0hvudsYN5d6w/c0x00000000-cc-rp/photo.jpg','2077061009497551125',23066),('AIe9_BFL0OZrFaHgoJtqifT1GHrIOpgyrumKBw6E_-I9t9nsZ_ql0SkPGlSQdhAZ2YdT4xwYV67eFrVFqYpxU5ws5RMHXIx7oi1_LyfvDgXKoMa_45EAXj0','This was my first time at an emergency room separate from a hospital. From the person taking my blood, the 2 nurses, the ultrasound tech, and the doctor, everyone was beyond amazing and made me feel as comfortable as possible. They even took care of my loved ones in the waiting room with drinks and snacks. Hopefully I don’t, but if I’m in need of emergency care I would definitely pick signature care as my first choice. Thank you Dr. Smith and numerous others for the excellent care.','2019-12-13 02:10:40.428000','2019-12-13 02:10:40.428000',5,'Holly Hunt','https://lh5.googleusercontent.com/-Ov2U-MbPxb8/AAAAAAAAAAI/AAAAAAAAAAA/ZrJm67ri8Js/c-rp-mo-br100/photo.jpg','14904078213800803294',13656),('AIe9_BFL0OZrFaHgoJtqifT1GHrIoRbVRdWAGkDGYbhMkFhr2Tgh5TuaIQI4wX1GSqR4eNu1CdhGJtaKZHEKOKjHJT05QigoeS1mRiqbkhC2cceI2uzQ9w4','Staff was really nice and understanding. Thank you guys for everything.','2018-08-21 15:04:24.703000','2018-08-21 15:04:24.703000',5,'Nathan Whited','https://lh6.googleusercontent.com/-fYc5VvtnJeI/AAAAAAAAAAI/AAAAAAAAAAA/OJEZLaE2kOU/c-rp-mo-br100/photo.jpg','16590124370714063921',3783),('AIe9_BFL0OZrFaHgoJtqifT1GHrIOu9Hcgt6o9y8iYIpii4jty7MoDWZAi_w3TOC_6dHP2MHet3P24eqozH3vPqxnIcb6E-xaJVc9VU52tymWoPGFK9jvpU','Callie, Kimberley, Dr.Lingan ,Alia and Melinda y’all were awesome defiantly felt like I was at a weird spa but loved it. Thank you all for making me feel better.','2020-05-29 01:49:35.614000','2020-05-29 01:49:35.614000',5,'Eddie Moore','https://lh3.googleusercontent.com/-Uaw1P22zPMo/AAAAAAAAAAI/AAAAAAAAAAA/ucQu3LDXL-w/c-rp-mo-br100/photo.jpg','2694018788013845459',21461),('AIe9_BFL0OZrFaHgoJtqifT1GHrIOVvdYfUrJiooI8PS23prnvj0WxZVlJU6KCQKc-w1nzs8JgHuYCHPE46o8-0zO-6tgHPK6Cm1GWu7EvMwqLxQ1K-hdgg','I was very pleased with my visit and the level of care and concern shown by the doctor and staff during my visit.','2020-07-30 18:47:13.905000','2020-07-30 18:47:13.905000',5,'Ginger Crenshaw','https://lh3.googleusercontent.com/-oKDNBAVF1zc/AAAAAAAAAAI/AAAAAAAAAAA/q7OFOtfmLFs/c-rp-mo-br100/photo.jpg','14748677429039074158',21899),('AIe9_BFL0OZrFaHgoJtqifT1GHrIowbnytg6yx9VhpscMaVD0kfoK30a5UlNDM4zQs4s0rLbEdFLAI4ww1R4LxQMSdNXvfDmmuYzyhtfiIHStZOHYJK0s0c','Great experience and Dr. Samar and staff were amazing! Grateful!','2017-12-11 16:42:34.398000','2017-12-11 16:42:34.398000',5,'Natalia Quintana','https://lh4.googleusercontent.com/-f6vZ2T53MkU/AAAAAAAAAAI/AAAAAAAAAAA/mD4mez9cGgY/c-rp-mo-br100/photo.jpg','14904078213800803294',2301),('AIe9_BFL0OZrFaHgoJtqifT1GHrIOxvBXFk9P4378YteIq_AVIvU0RiO38N9mdt1wUNcH8b3yFmtzfPdA63_U8LzdpqnSwV3jr3H7XNEE_QGzcgjqJVPevI',NULL,'2019-06-18 17:55:39.738000','2019-06-18 17:55:39.738000',5,'Melissa Garcia','https://lh4.googleusercontent.com/-ZCqPMcAMEqE/AAAAAAAAAAI/AAAAAAAAAAA/h0yP65P5gJE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIP8ZUHWGtzTNoKz1rc--zONm9OiuK0J39i-fX4jA13D6mftM82JhKOlG_E1DHV45TaC479D8nBASjJUjvrXnUcsZJq14','GREAT staff. Dustin was very caring and listened to my problems and helped me calm down. Awesome care!!!','2020-07-18 20:34:39.626000','2020-07-18 20:34:39.626000',5,'Angela Brown','https://lh3.googleusercontent.com/-o9eyYAmUHiU/AAAAAAAAAAI/AAAAAAAAAAA/D7j8QH9srAw/c-rp-mo-br100/photo.jpg','14748677429039074158',21726),('AIe9_BFL0OZrFaHgoJtqifT1GHrIpBMmTjmYWUU2Jj5-rojVjSopxGfjY5KinwR_X-CBV3CB6UZMf3AX8VbNnm8v9MVoQGlVF2bdzPLAfn2FfMUbGTWrubI','Great environment super fast!🙌🏼 Thanks Vanessa!','2020-06-01 23:50:35.365000','2020-06-01 23:50:35.365000',5,'dakota neil','https://lh4.googleusercontent.com/-jw6JMijGEW8/AAAAAAAAAAI/AAAAAAAAAAA/CZ2hcM8u-Fg/c-rp-mo-br100/photo.jpg','16389487648212004696',21975),('AIe9_BFL0OZrFaHgoJtqifT1GHrIPdFj7W0xFVT8tktUhY0AmEU5kp5CO9pM1yyzCAI1VVC-hR9kaq2FCg5q_D8TpUAhI9IdUOFmpFcFuSu0nZLK0Rxb-ZY','Farzad Soleimani, MD was a very judgemental doctor based on my $10,000 worth of tattoos all over my body because I\'m a musician. He told the receptionist to not even put me in the system and said \"I won\'t charge you for the visit.\" simply because he refused to help me with my inner and outer ear infection and blown ear drum. It\'s very unprofessional and sad to see doctors have walls up like that. The blonde nurse kept trying to whisper things to him too. They should be reevaluated to refuse to help a patient in serious pain, infact I think he took an oath as a doctor to help heal people.','2017-09-22 02:43:58.277000','2017-09-22 02:43:58.277000',1,'Reid Kuzma','https://lh3.googleusercontent.com/-Cd02LuaAUtM/AAAAAAAAAAI/AAAAAAAAAAA/BUZ_qn4unuM/c-rp-mo-br100/photo.jpg','8679688254631342173',8911),('AIe9_BFL0OZrFaHgoJtqifT1GHrIpE6aAvvQVTYokTF-GYavCIUPcE3xxg8OrpXXcat_jEo037NIwyHBsAcyugX8LFzA5BGhAjn5K6scVJQenQGbQp-TsSQ','I haven’t been feeling well and so I had drove pass signature care and decided to stop and it was a very fast process. I was welcomed with a smile by Tanishia and that was the first time ever walking in to an er someone actually wanted to know and helpful and making me feel welcomed.','2019-12-18 07:08:09.524000','2019-12-18 07:08:09.524000',5,'Anastasia Agunod','https://lh4.googleusercontent.com/-upsNKXcZbu4/AAAAAAAAAAI/AAAAAAAAAAA/uV4ziblWxQw/c-rp-mo-br100/photo.jpg','17898197009688164559',5351),('AIe9_BFL0OZrFaHgoJtqifT1GHrIpI9XhVKsqIBy1rxVziGktdn9UVZpZM8GWkfI3hhj0XUa8ptbgusKmLEfOYAltwXv9yTTTEDRV9R2ALA4kclwqIgm1Q4',NULL,'2019-05-09 23:51:51.238000','2019-05-09 23:51:51.238000',1,'Fadel fun &games','https://lh6.googleusercontent.com/-FqHZFNn-lCI/AAAAAAAAAAI/AAAAAAAAAAA/QR74r5ymcmM/c-rp-mo-br100/photo.jpg','14567670160750071148',1324),('AIe9_BFL0OZrFaHgoJtqifT1GHrIPJ-eATF2n-uWBvBS-GL6idzEK9fsNEg5ZnzrJvb1HTirGqsa42KT561IBdp13qwjgdOkSvlYZc8QQCqCAzI0aQgV-z4','Very fast prosses treat you very good i liked the Experience thank you to doctor Das','2020-07-31 21:30:56.208000','2020-07-31 21:30:56.208000',5,'Jonathan Perez','https://lh3.googleusercontent.com/-Vs3f8pdnHS0/AAAAAAAAAAI/AAAAAAAAAAA/edNhGAQ3gNM/c-rp-mo-br100/photo.jpg','14748677429039074158',21892),('AIe9_BFL0OZrFaHgoJtqifT1GHrIPLrVJd9JCql1eaBq8L-oTBc5aBQ83Poj6m_gj9I1W1C7EKHABXH3VuEOfDEPJ9Rh5UdJb1cL6gDRchPC5j9a-gw5T5I',NULL,'2018-07-18 21:56:54.324000','2018-07-18 21:56:54.324000',5,'Jorge Granados','https://lh6.googleusercontent.com/-b39ugbL66c4/AAAAAAAAAAI/AAAAAAAAAAA/Tu0ZNBq_HsU/c-rp-mo-br100/photo.jpg','14567670160750071148',1597),('AIe9_BFL0OZrFaHgoJtqifT1GHrIplX-Z3o1UMpNyu2GTOB0sZn40Tx9N1pXPXIo8om6V-olNDePVzqct9fGAda6ADF-G8mRmeQilPveqQ0lVB4HZLNf9Eg','Brought my uncle in and from the moment we stepped in it has been very pleasant. Everyone makes you feel like you matter because you do. We are still here almost done but this is the place to bring you family all the staff is great. From the front door all the way to the back door.','2019-11-12 18:57:28.837000','2019-11-12 18:57:28.837000',5,'Yameki Daugherty','https://lh6.googleusercontent.com/-3Y4D_DWpa0c/AAAAAAAAAAI/AAAAAAAAAAA/zfx_TaNnBPo/c-rp-mo-br100/photo.jpg','14567670160750071148',1191),('AIe9_BFL0OZrFaHgoJtqifT1GHrIpn_MfNdOVDtQw1bdaiNTeoT1y7V_iG7YLCv36jQRmXq4ntKwRuCSmiB6QIvCz5hpaea9hOkaGaDF7pdee5koLfC1KFg',NULL,'2020-02-25 19:40:05.022000','2020-02-25 19:40:05.022000',5,'Tiffaney Cole','https://lh4.googleusercontent.com/-mzwVskooe5M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnEuPrJuJd9QkiBIghwRtOzVBREpQ/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21196),('AIe9_BFL0OZrFaHgoJtqifT1GHrIPQ7VEaFRjFcM1XhZW37YFwKLOOXBiaq50R19VativvXo0W3Yr-8bgWDguds9e_a6-ywdKaSv8hoVx2A5RpGWNyvZB8s',NULL,'2020-07-06 04:37:48.665000','2020-07-06 04:37:48.665000',5,'Rebecca Alvarez','https://lh3.googleusercontent.com/-GK5AuidGyqE/AAAAAAAAAAI/AAAAAAAAAAA/SIQYFGWV-nE/c-rp-mo-br100/photo.jpg','8679688254631342173',21318),('AIe9_BFL0OZrFaHgoJtqifT1GHrIPszhNjyiyanMGIgoybuFA2S8Xp8Dhw2aHYTRRGPNdvDlsz7MbXEzyOq9z6fEJpRbxs97UuGZ8o4q1yERv1hvZZo3u-c','Dr. Singla\nLeslie\nLaura/Agnes\nJessica\nOlivia \nBest ever best ER I\'ve ever been too and they are fast I was there for less than an hour!','2019-01-10 19:11:40.042000','2019-01-10 19:11:40.042000',5,'Beautiful Ash','https://lh3.googleusercontent.com/-2AoDLOR8pDw/AAAAAAAAAAI/AAAAAAAAAAA/cAQN_3YV6AA/c-rp-mo-br100/photo.jpg','3511292162159714121',7491),('AIe9_BFL0OZrFaHgoJtqifT1GHrIpvMR_g5W5p7xZSxWbi2GKnT5940jDHPA1KcS4XcFw5uV6ZxwDFvP6rzvj-9GSROOSoRGOEX33o-aNS4XojMeAmHxVlA','My mom was almost fainted this early morning, we rushed to the nearest signature care. The Doctor, Dr. Orthis and staffs, Christina, Tino and John are really professional. They gave her an exceptional care, checking everything to make sure she is OK before discharge.','2020-03-15 17:15:05.450000','2020-03-15 17:15:05.450000',5,'monica pricilia','https://lh6.googleusercontent.com/-_lxARp5vuXs/AAAAAAAAAAI/AAAAAAAAAAA/G6LBY6uLhqo/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',20901),('AIe9_BFL0OZrFaHgoJtqifT1GHrIPXX-jiaqtV8dxSIAqk98UhLULt4F1klw8dZEt5mv56EfVWY7yPhQmLRNpAOGKzfyokoxbpoAY16x2LY7A14du1q4xcQ','I have 100% taking good care of with in a short period of time. Thank you Alvean, Thuy An & Patricia','2020-02-23 15:09:40.973000','2020-02-23 15:09:40.973000',5,'Jacob Mentee','https://lh6.googleusercontent.com/-b7ZxtOsIDSs/AAAAAAAAAAI/AAAAAAAAAAA/JFOKrFaaP-U/c-rp-mo-br100/photo.jpg','16389487648212004696',13775),('AIe9_BFL0OZrFaHgoJtqifT1GHrIQ_b7L-uzRgcTqKuRdmi2wvpPVLwHBwJn-AemGs_q_CDv0hVV-cldHKLPZHJOUw_AvkO0XxAYjVIrqUidzpG6TKQiA4Y','Very nice, quick and attentive I loved their customer service!!!','2018-08-02 23:18:11.085000','2018-08-02 23:18:11.085000',5,'Kionna Uzodinma','https://lh4.googleusercontent.com/-KaxvA2ywK3Q/AAAAAAAAAAI/AAAAAAAAAAA/xx0nvGwJSQk/c-rp-mo-br100/photo.jpg','8918455867446117794',9253),('AIe9_BFL0OZrFaHgoJtqifT1GHrIq5IJsdvetWrEbH8AQwiYGZbxx7y1x1ok3UsSqOmNmOrAzmDuPFsYBLDbA-Ad_IE1eQ5cKyvA-3sJCkC2sdGbT4TVbOM','Very friendly place. The fastest service I’ve had. Bryan D and Juan C and Dr.Singla are great. Samantha was super nice as well.','2020-03-04 04:20:01.697000','2020-03-04 04:20:01.697000',5,'Suterio Johnson','https://lh6.googleusercontent.com/-zdPH57E5ShY/AAAAAAAAAAI/AAAAAAAAAAA/JAGFZfxvF4Y/c-rp-mo-br100/photo.jpg','14567670160750071148',20956),('AIe9_BFL0OZrFaHgoJtqifT1GHrIQ9NjEbGD4YtTZpPhE658Bt7Wma3rHf30INA96meutBsu7nupAsalR5F9GctrjBA3sEWxboel_h__omhD2OcyHyne-Pc','Awesome service! We were in and out! Diana and Sindy were extremely nice and helpful. They explained everything toughly. Dr. Thomas was able to diagnose me very quickly. Tech Fatima explained my condition and what to do next. Definitely recommend!','2020-03-07 04:01:00.707000','2020-03-07 04:01:00.707000',5,'Yesenia Garrido','https://lh5.googleusercontent.com/-rD5U1gtjrVg/AAAAAAAAAAI/AAAAAAAAAAA/J8kOSE4s1gs/c-rp-mo-br100/photo.jpg','17394740196501090048',21069),('AIe9_BFL0OZrFaHgoJtqifT1GHrIQC8WFYOOgO9Dc1-i0oDDb8o679uqrjxW3bEo9pAI_f7LubGTgI2VgBZNQSktArhEgKQ33zJCzhJzmoaBTnOcbcJLs-U','Good customer service!!','2020-02-16 18:08:06.767000','2020-02-16 18:08:06.767000',4,'Irem Fidanci','https://lh3.googleusercontent.com/--_mqfglcZRs/AAAAAAAAAAI/AAAAAAAAAAA/ktXqUDaUblc/c-rp-mo-br100/photo.jpg','12541597562633926366',13370),('AIe9_BFL0OZrFaHgoJtqifT1GHrIQFsxKMlzz_42MNjG-f33VPF3yl7YAujRUEcE8MnJYHgB6qYkIWhjfN_NN29mjavQHWHBr57vsR_Qr5ot-wR4NugoJ8s','Everyone was very compassionate & helpful. Dr Soumon, Gina, churiah, Lisa, and Joey. Y’all are the best!!! I hate that I’m sick but love the care and expertise you all provided. Thanks y’all :)','2019-01-04 04:00:16.159000','2019-01-04 04:00:16.159000',5,'Troy Hamilton','https://lh4.googleusercontent.com/-USWyCDR__K0/AAAAAAAAAAI/AAAAAAAAAAA/WxJTfIUMLpY/c-rp-mo-br100/photo.jpg','8679688254631342173',8889),('AIe9_BFL0OZrFaHgoJtqifT1GHrIQGcV_HF-GgzzkZzXAun_ha_n4OHGQTwgCBigROSUKS7_zgUxswFEa9NS7Qx4HOfWLSTW1s_u_Pl6da7oJlRKmzHgqB0',NULL,'2020-07-04 03:07:32.804000','2020-07-04 03:07:32.804000',1,'Nakyla Darby','https://lh3.googleusercontent.com/-xiRTDjeNmAY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmD6WmK144J8_n0X-MjJMZDS3l_xQ/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21436),('AIe9_BFL0OZrFaHgoJtqifT1GHrIQhapGdT2cdanAR6i6TBRBiVlQqakTmt1iZeiATPwHuQT7hNJVYu6Uh_suzpNTjx31x-dBMRyJ7DMNYb1CAzO8BtQDuA',NULL,'2016-08-25 15:43:55.329000','2016-08-25 15:43:55.329000',5,'Carlos Pereira','https://lh4.googleusercontent.com/-tDgtBNzt9tU/AAAAAAAAAAI/AAAAAAAAAAA/MDn7AdcZo2c/c-rp-mo-br100/photo.jpg','3511292162159714121',7946),('AIe9_BFL0OZrFaHgoJtqifT1GHrIQIfa6ljeRvpbNoVb6quVtW_3AqLZI2FbyD-z53Fncz5oTjoSUE5SGTNZrv9LAkx6l-Ph_P13jT732l6RC7g33Kmmd_8','This place is great, I have been to a couple of 24 hour ers, an this is the best Jasmine is the best..','2019-06-18 20:40:41.219000','2019-06-18 20:40:41.219000',5,'Keisha Me','https://lh6.googleusercontent.com/-pM11QP151mw/AAAAAAAAAAI/AAAAAAAAAAA/Cnuwl360PSA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIqiZeRuQyVoRkg0eOfh9H9NhjfhyHyvXO3VzpMR8ZfQGCCtXxExti_SJ2Cz5A-i9s28XDmGkuT0jX_sAf08arBfNlZ4Y','Had a great visit, everyone here is so nice. Was taken care of in a timely fashion, pain management was the best. Hopefully I wont need E.R care any time soon, but if I do, this is the place.','2019-09-22 21:22:52.463000','2019-09-22 21:22:52.463000',5,'bobby floyd','https://lh5.googleusercontent.com/-SjZxOrgK3Ro/AAAAAAAAAAI/AAAAAAAAAAA/4aJkK60b3cA/c-rp-mo-br100/photo.jpg','16590124370714063921',3185),('AIe9_BFL0OZrFaHgoJtqifT1GHrIqJcuP1eoqmM0RTl_nUBaeGYr2XhDs1jHjqEsPHLfHC_BDbdhlBGtn20USbKDDoGvAbRCC9-NI7ihZWdLPoIOp5YMXBs','I was greeted quickly and Tiffany the Receptionist was very helpful. There was no wait time and Stella my nurse and the Doctor were very courteous and patient. I received thorough treatment and was given exceptional service, the entire staff was very nice which is usual to find most emergency rooms.','2017-09-18 00:48:18.326000','2017-09-18 00:48:18.326000',5,'Ty Chachere','https://lh5.googleusercontent.com/-V6qqwGjouH8/AAAAAAAAAAI/AAAAAAAAAAA/B6qHcg5YP8k/c-rp-mo-br100/photo.jpg','17394740196501090048',4973),('AIe9_BFL0OZrFaHgoJtqifT1GHrIQSjtR9IvNU-vw-FHSyLVVlvUR00XOZo2RN9HwZavgTlYMx6X8D0M1GeO6pDD8-D2iTkaqSy3rt9Dg4JaybeZHc0FUwE','Fast response, everyone was great, shortest time I have ever waited in an ER facility','2016-07-07 15:58:47.129000','2016-07-07 15:58:47.129000',5,'Michael Alff','https://lh3.googleusercontent.com/-coY-P1yGZ9I/AAAAAAAAAAI/AAAAAAAAAAA/9_EF8Ayu6yU/c-rp-mo-br100/photo.jpg','14567670160750071148',2010),('AIe9_BFL0OZrFaHgoJtqifT1GHrIqxWv4WXdoYXNuIc2shGECJiCTP5EQFkZtRtgrqCffO7osteQC4IYRBscqH9jJoB3sT7eWOzNz_zXwu92ypsPrpiDsjY','I was very cautious going to the ER with covid still going strong, and held off going for as long as possible. But I would have to say the people here do an amazing job. JD brought me out a wheel chair and got me checked in. Amy was my nurse and she was attentive and very courteous. Kari did an excellent job ex Raying (needs practice driving) \"joking\". Dr Hemerka excellent job all the way around. I\'m glad I came here , great environment and people who care.','2020-07-30 16:23:00.321000','2020-07-30 16:23:00.321000',5,'justin miller','https://lh4.googleusercontent.com/-oe0TztevE-8/AAAAAAAAAAI/AAAAAAAAAAA/KqcjTmbnKl4/c-rp-mo-br100/photo.jpg','2077061009497551125',22966),('AIe9_BFL0OZrFaHgoJtqifT1GHrIqYeoqBRnaqhQty776N-4frEWKVq6HXBFprIVKGvuv1ihuP6TiRsHqNmVXFn-WFhn6pbYOVmHLxZyWNhdtQh4Ahl3gj0','Very friendly staff. Had me in and out in no time.','2020-07-26 15:33:07.794000','2020-07-26 15:33:07.794000',5,'Nadia Rosales','https://lh3.googleusercontent.com/-Mx8XrirEDJ8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmD9qOi1L5i4b2lCs0W9vUhoB3l8A/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22290),('AIe9_BFL0OZrFaHgoJtqifT1GHrIR5F_-gWQp47-7Q1jwCgo5q88xHzETQK3t1QPcLVf5hxekvm6W62KsOe6-gxygxlF1CUGHDpv71k_AkrpoU-h-bNbMXM',NULL,'2018-01-12 19:10:40.091000','2018-01-12 19:10:40.091000',5,'Gwyn Elliott','https://lh5.googleusercontent.com/-e59CFs_Sjk0/AAAAAAAAAAI/AAAAAAAAAAA/p3Ogt-9h1lI/c-rp-mo-br100/photo.jpg','14567670160750071148',1685),('AIe9_BFL0OZrFaHgoJtqifT1GHrIr5WGwREwv55CKlAc4iLm3FLiKSJ8dVtyM3oqvnsG9RNSTy5edw-fKgRELs8-RI42wyghvtgIowMrrs3TRGG8xruVtw0','My first time here was amazing everyone is friendly and The front desk lady Mercy was so pretty friendly and she help','2017-02-17 18:14:04.143000','2017-02-17 18:14:04.143000',5,'Berniche Bouanga','https://lh6.googleusercontent.com/-g-iknvbVHj4/AAAAAAAAAAI/AAAAAAAAAAA/Uh4YDyTriMM/c-rp-mo-br100/photo.jpg','3511292162159714121',7877),('AIe9_BFL0OZrFaHgoJtqifT1GHrIRf8-pdT0AVAnNTbT7BAQxD7q6sMLKU5KUUFk3Zl9kdK6zC2h1IahEiqyn3uCQhMwNbs1hB2_DlWdFxv39a8Ie194uUY','Staff was amazing. They took great care of my daughter.','2019-03-31 14:58:00.350000','2019-03-31 14:58:00.350000',5,'Stacie Lampo','https://lh5.googleusercontent.com/-6RHMfvmBKQA/AAAAAAAAAAI/AAAAAAAAAAA/vSMbERdoKc0/c-rp-mo-br100/photo.jpg','14904078213800803294',2153),('AIe9_BFL0OZrFaHgoJtqifT1GHrIRGLmPIILyVu0SD3zRw9qOj1O_MhEa9otl8bzt4ji__PpHTMgvsq1KnjTkSSejjK0ahsfUqInR10wUpEkANmiHgX-aZM','The staff was amazing and polite. I just went there randomly because it was the closest Ear but thankfully nothing serious they took care of me fast.','2019-12-19 11:28:59.157000','2019-12-19 11:28:59.157000',5,'Jay','https://lh6.googleusercontent.com/-oPdg6kQhm0Q/AAAAAAAAAAI/AAAAAAAAAAA/UeHCpT376dY/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',13655),('AIe9_BFL0OZrFaHgoJtqifT1GHrIrL-nzSwM8EHfO7xayGQXxL6xAgD7Dpqg79WAIyAIQCICXsUL3HEdQKxVUQd4Mm0zhvETlmP6brECEq1ufgjXC_dtrZY','I’ve always looked forward going to this place when I’ve needed medical attention. I’ve been gong there faithfully since it was Neighbors Clinic in the past. Jackie at the front desk is WONDERFUL and always a sweetheart!!! Unfortunately, I won’t be returning to this place if I need medical attention in the future because I lost trust in them. \n\nIn brief: \n1. I drove 30 mins to pick up and take a family member whom I referred and who was needing transportation for a COVID test (her coworkers and family members tested positive, and she was feeling multiple COVID symptoms). Keep in mind it would be another 30 minute on the return route. \n \n2. the clinic’s website stated no appointment or referral was necessary and that completed online forms were required (ready)\n\n3. Upon arrival, no one came out to meet us. They denied testing on site because we didn’t have an appointment, and they said that the website info was not updated about the new process. They also said because I got off my car to ask for a test inside, their policy was to tell me that we would have to return at 8am (it was around 11:55pm at the time) to get a wrist band with a return time for the test. I wouldn’t have gone inside to ask for assistance if so one would have met us to begin with. \n\n4. I explained I respected their policy, but that I not only put myself at risk of possible COVID exposure, but that I also went out of my way to help this family member with transportation, and so I asked if they could make this reasonable exception to get the tea done. Reply was no. I asked, “well can you inform the nurse that we’re outside and if he/she would kindly go out to ask questions?” The answer was no. \n\n5. Number of patients in waiting room: 0\nNumber of cars in testing parking spots: 1\n\n6. I replied that if I came in a different car, they would come out for sure and they would have no choice but to address us then. The lady said, “well, the nurse is hearing this conversation right now (the person was not visible), and they’ll know you’re the same person and refuse you.”\n\n7. we drove to my house and got into my other car, drove to the clinic and arrived about 8 mins later. Guess who walks out in no time? Yup —- a nurse. He asks questions and says “oh, you’re the same guy that was here a while ago - I saw you (creepy because I couldn’t see you), and the nurses told you you need an appointment.” I said “yeah, they also said you wouldn’t come outside for us.” \nI wondered why he hadn’t stepped out right there and then when he heard and saw the conversation - why hide? I think his name is Adrian.\n\n8. We insisted for a test. He said “I’ll check her for fever and for oxygen levels, if they’re normal, she’ll have to come back in the morning to request an appointment. If they’re not normal, I’ll ask her to go inside and continue.” (Why inside? I thought this was a drive thru test?) Vitals were normal and he refused to test. COME ON, MAN...why cause additional possible exposure to the next person providing her transportation taking her in the morning? Just test her there and then when I had her there. As we insisted another time, he said (and I quote) “I don’t care how much you ask and say, I’m not budging.” WOW - how professionally stated. \n\n9. What really disappointed me even more was that one of my friends drove up to the clinic about 30 mins before WITH NO APPOINTMENT, and the test was done and results given in less than 20 mins. FACT CHECKED. When I confronted them about it, they denied it and said they needed to protect patient confidentiality and that there’s no way he would’ve been tested without an appointment. My friend offered the proof - I later saw the results with the time stamp and a return to work order given by the doctor. \nBecause of these inconsistencies, I couldn’t help but think that this was something personal. The nurse could have done a good deed and made an exception for testing giving consideration to the circumstances. Denying the test at that moment was a poor judgment call.','2020-06-29 08:57:36.909000','2020-06-29 08:57:36.909000',1,'J. Hdz.','https://lh6.googleusercontent.com/-6RhZnpCumbU/AAAAAAAAAAI/AAAAAAAAAAA/y1YwMybsX2o/c-rp-mo-br100/photo.jpg','6521947413723274945',21479),('AIe9_BFL0OZrFaHgoJtqifT1GHrIrlk7LpU1W5D_mBosqs0B5IwzBAMadblIPyVcgJWxzplY1vBlMGJVWpWz_yJyGopWQFaVbsrgskitr_Avisf1vwXyYRA','Everything was great! Amazing care from Doctor Harsai, Jacob the RN and Rebecca the tech. They all treated us with great courtesy, Thank you!','2019-09-15 17:51:51.435000','2019-09-15 17:51:51.435000',5,'Emily De Leon','https://lh6.googleusercontent.com/-dc-NgDyD4Ws/AAAAAAAAAAI/AAAAAAAAAAA/Lsu3Ekk5Lu0/c-rp-mo-br100/photo.jpg','16590124370714063921',3206),('AIe9_BFL0OZrFaHgoJtqifT1GHrIrmXSZwm7K9kOwBcfoc5g72jZoig7Ve87Z65HbzMFPyT14eH4PnyWj1gkQ_0DeocPo8qCqu1HQtwJVmZIyK6H3R9F7ng','I went to Signature Care Westchase Emergency Center and had an overall great experience. Genesis at registration was so welcoming and quick to register me. I was then quickly called and John took my vitals. Dr Zhen was so amazing. Even though I was in pain she took her time and explain everything she was going to do for me. Nurse Kristina was so sweet and Quyen who took my CT scan made me feel very comfortable because I was nervous at first but everything was quick. I will never go to any other ER. It was my first time there but it felt like going to your regular doctor’s office because not only was it quick but the warmth of all the staff makes it even better. \nAicha K.','2020-02-08 13:22:45.599000','2020-02-08 13:22:45.599000',5,'FrugalShopper Holic','https://lh6.googleusercontent.com/-avXLTd1BBn4/AAAAAAAAAAI/AAAAAAAAAAA/Du846NIpOqw/c-rp-mo-br100/photo.jpg','12541597562633926366',22471),('AIe9_BFL0OZrFaHgoJtqifT1GHrIRoBPUldHFJIbDWUCbWB2IV5XS-6G-5U5X8MV8nD6ixk-T5-OMsowvLwedUoF7VH7Kzh2yvkVhVhXQsLbyfrIMnPXhcQ','Unfortunately for myself.. I\'ve been here twice in one year... But I came here because the first visit was great.. The second even better !! Everyone in the office is very kind and efficient. If you have to use an emergency/urgent care... Then you should go to this one. ','2017-06-14 00:21:21.351000','2017-06-14 00:21:21.351000',5,'Randy Martin','https://lh6.googleusercontent.com/-wl3Wwq8fDKA/AAAAAAAAAAI/AAAAAAAAAAA/BDZ28lQb_R0/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7812),('AIe9_BFL0OZrFaHgoJtqifT1GHrIroU-P5yRFWtQwX2uUUAH_Rv-tiOqLY3_oEwBI4PcGtaEP46lW7QeoKioc42Fqh1LUJj0fhAdvN3a__ODImwZ99hSZxY','Great experience,nice and professional doctors and nurses!','2019-06-12 06:25:31.204000','2019-06-12 06:25:31.204000',5,'Lunyu Zhao','https://lh6.googleusercontent.com/-8ZLdfWmR5GQ/AAAAAAAAAAI/AAAAAAAAAAA/S2HnndiNKnY/c-rp-mo-br100/photo.jpg','16590124370714063921',3357),('AIe9_BFL0OZrFaHgoJtqifT1GHrIRrp3Ho5Jpcx6ZEooECQUjlZT8Ntv3C41tBGPkMe--075wQ2y1Epnz_4P28kMZQYRkShVxBaJiI0vmy5XETRZtUBSz_w','I went in for a lower back pain and as soon as I walked in, I was greeted and rapidly taken to the back where they offered me a water and a blanket. It was such an awesome experience to be taken care of so respectfully and fast. I received a call check up as well as a card from the facility wishing me to feel better from Dr. Grinblatas, Paul, Agnes, Deanne and Jessica and that\'s super sweet. It also shows they go above and beyond to help their patients. I would and have recommended this to all of my friends and family. (BTW: the interior is so beautiful!! not what you would expect from the outside).','2018-07-31 23:46:29.184000','2018-07-31 23:46:29.184000',5,'Anissa Garcia','https://lh4.googleusercontent.com/-1CkxwShGmoQ/AAAAAAAAAAI/AAAAAAAAAAA/FfPFoEKb4ME/c-rp-mo-br100/photo.jpg','3511292162159714121',7679),('AIe9_BFL0OZrFaHgoJtqifT1GHrIRvg5zS_IlvcKMP6-hX5T89P0lrH5NCVxswaLC5CHltlgiP86I9G3N6Tt_5PKJqEAq_SnrhX1W_tZAXycYQhQIvYgGmo',NULL,'2019-05-06 17:21:21.544000','2019-05-06 17:21:21.544000',5,'the wiliams Penn','https://lh6.googleusercontent.com/-ZKg7f_023XQ/AAAAAAAAAAI/AAAAAAAAAAA/trmRQ6lG_SE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIrwSNEaMEtTpIPOs8klLD-Oyl1uM1A8mmli-d-BjRqvJkY-j5gHQUYZdfkS1qDGBTPq1L2oeOrqW8CTgB2iGOnqdyIVg','Great personal, with great personalities','2020-07-26 16:40:53.451000','2020-07-26 16:40:53.451000',5,'John Ripkoski','https://lh5.googleusercontent.com/-NdCqucoMMg4/AAAAAAAAAAI/AAAAAAAAAAA/vthjJRbFu40/c-rp-mo-br100/photo.jpg','16590124370714063921',22022),('AIe9_BFL0OZrFaHgoJtqifT1GHrIRYHsIGjMWee19i55t9-2xKvMzG9rzM6QA86tQc4u5MsNFOmowb-PIj8gWcSMTLCfXOa7V_1rFZpEdFHoTGG805JSFRA',NULL,'2017-06-11 14:29:48.383000','2017-06-11 14:29:48.383000',5,'Michelle Alva','https://lh6.googleusercontent.com/-cJM_22TEorM/AAAAAAAAAAI/AAAAAAAAAAA/Hv2qntDTnMA/c-rp-mo-br100/photo.jpg','14904078213800803294',2349),('AIe9_BFL0OZrFaHgoJtqifT1GHrIryoJRV08GeTrMaOyKtOAv7kTEOfTqkZc3F-W3lJoqY5b2gKFRm9wamSsKwbC-oTv8_bmaIvWUUJj-qp0cDmrpc7qfsc','Great place. Sarah is an awesome nurse!','2019-12-02 09:04:30.765000','2019-12-02 09:04:30.765000',5,'Jessica Grace Lee','https://lh4.googleusercontent.com/-ZjnK_clhsRw/AAAAAAAAAAI/AAAAAAAAAAA/j0-IRTSp3rY/c-rp-mo-br100/photo.jpg','17898197009688164559',5387),('AIe9_BFL0OZrFaHgoJtqifT1GHrIRyVpbHphCwHpYd799gG2SS2T1bK7eUaVdJ3vEgQqTpuLzReqbEnt8GGlCo_51OnDNjmm91xe_EZ3DXz73rbksOOnm6w','Had to visit them after a serious fall and head injury at home. When I got there, they were packed (everyone wearing a mask), and as soon as they knew I had a head injury, they took care of me almost immediately. The facility was very clean, the people were friendly and also knowledgeable. I\'m SO glad they\'re close to my home in case I ever need them again. Highly recommend them, especially over a large hospital ER.','2020-06-11 22:03:05.589000','2020-06-11 22:03:05.589000',5,'Deborah Lusby','https://lh3.googleusercontent.com/a-/AOh14Gh--BVB-NK3bDEoAAxD5HoWUpbJavKT9H6mcagoxg=c0x00000000-cc-rp','17898197009688164559',22102),('AIe9_BFL0OZrFaHgoJtqifT1GHrIrzUG9OSngUGdwRFhOAv9E89dgDGO9qOu2-fiJMlYGslTBJzMPb4XaP7aVJKnimJta1JP0g9b2UxAh0G-mAiuAU98zao','Very good customer service Patricia was very helpful so was everyone else.','2020-01-24 22:43:02.457000','2020-01-24 22:43:02.457000',5,'Tyrone Stewart','https://lh4.googleusercontent.com/-LaiiMyeGUL8/AAAAAAAAAAI/AAAAAAAAAAA/0UIL9HA8Mp8/c-rp-mo-br100/photo.jpg','16389487648212004696',10184),('AIe9_BFL0OZrFaHgoJtqifT1GHrIRZXirckRblSrRFSy7bsreuQFiipf2ARh9GFhbV7sFzkN2HAg56ayv608WLIsm8X6zBNmcLVfTOsSf7YDYv0q3zKevy4','Excellent service . Aerial was amazing and Dr. Zen was paitient and eager to meet our needs. No wait time!','2018-07-14 05:24:31.642000','2018-07-14 05:24:31.642000',5,'Jovia Alexis','https://lh6.googleusercontent.com/-LsL5jHDJ45U/AAAAAAAAAAI/AAAAAAAAAAA/_qUmMzRvieo/c-rp-mo-br100/photo.jpg','12541597562633926366',633),('AIe9_BFL0OZrFaHgoJtqifT1GHrIs-_2gtPWlFYmk40u48_ktqFnIHFAtBOwYNcCCy4XHLlc3mr4cMIh0th3hbjKNM6gcLrkBFPz18NHAyVicz87RfgVf_w','very fast and friendly!','2017-04-14 08:22:53.009000','2017-04-14 08:22:53.009000',5,'DarkarWulf','https://lh5.googleusercontent.com/-LECGjCFJ7BE/AAAAAAAAAAI/AAAAAAAAAAA/U9MC4MC18NA/c-rp-mo-br100/photo.jpg','14567670160750071148',1849),('AIe9_BFL0OZrFaHgoJtqifT1GHrIs-bMf-YcZjJCTXkTosCnsxhbA0bSEBy3fsLUals8K0cUQCFL-O7Z7DysahsXgT6ys_kB0XYI7gbHKri0xLCpiNBszqM','From the moment you walk in the door, you are taken. Delicia at the front registration desk is prompt and courteous. You are quickly taken to a room by Nurse Karen and I am sure at this point that I have made the correct decision to come to this ER. The care provided is next to none. Dr Datta was complete and made me feel very at ease . Thanks to the whole staff.','2019-10-05 23:02:01.082000','2019-10-05 23:02:01.082000',5,'Marlena Gardner','https://lh3.googleusercontent.com/-JVy5gVbOOzk/AAAAAAAAAAI/AAAAAAAAAAA/9UAP8YIBYOM/c-rp-mo-br100/photo.jpg','8679688254631342173',8795),('AIe9_BFL0OZrFaHgoJtqifT1GHrIS-rFplgg3ZDNXLRpyTAcqiqv2mPE8DIazAbsfwC4rkJ-DDmCGvc2uCgZcwUPAiw9tTOwPbwVIxwdy5m9PrDb3bK2ixM',NULL,'2019-09-03 14:14:09.366000','2019-09-03 14:14:09.366000',5,'Samantha Martinez','https://lh5.googleusercontent.com/-vRdceZ3SmmQ/AAAAAAAAAAI/AAAAAAAAAAA/bfjEgL2Hc5M/c-rp-mo-br100/photo.jpg','16590124370714063921',3218),('AIe9_BFL0OZrFaHgoJtqifT1GHrIs0zt1u4yShSQSN5ekVL2Rgxh2Mbrifg8vJxB4FrGlLYuS0WR4r7ljpFu79d3kV-EBZ1170sPA3oy4KwOC_cbAXp-nq4','Amazing service by Dr. Patel, Amy, Agnes, Joey and Josh! The workers are super helpful & friendly!! I’ve gone to Signature Care multiple times & I’ve had a great experience every single time!','2019-05-07 04:03:14.130000','2019-05-07 04:03:14.130000',5,'Bethany Carroll','https://lh4.googleusercontent.com/-gkKzjxpRqQ4/AAAAAAAAAAI/AAAAAAAAAAA/eodEqeBAdxo/c-rp-mo-br100/photo.jpg','3511292162159714121',7334),('AIe9_BFL0OZrFaHgoJtqifT1GHrIs7RGcxFJgFQ99iqkUUFgEW1LUlz_kmH0g8gDhCSghgzE5TC8Jbe16_TKmNAWWTuNMkZRcMat6hdZ_nM4OykANHkthW0','Very friendly environment, takes great care of their patients','2020-02-02 18:44:09.716000','2020-02-02 18:44:09.716000',5,'Eddie Ramirez','https://lh3.googleusercontent.com/-mZqp7AZfrbU/AAAAAAAAAAI/AAAAAAAAAAA/ltajMT1BUM8/c-rp-mo-br100/photo.jpg','3272657195432704501',14378),('AIe9_BFL0OZrFaHgoJtqifT1GHrIScfxJt3EvuSo74XXKSK88yNowEYVU9SWRB4uTnokAtHir0F41y7Wo0FLqF24OBy5gehrvXK8kNG_dFxjZiLK4Mj4wAM','My daughter and I had to visit signature care while visiting Houston, for the MLK Day Parade. Everyone there was kind, Professional, caring and concerned. From the time we entered the doors, from the receptionist to the Security guard to the nurse to the doctor, just awesome service all the way from the beginning to the end. We were still able to make the parade. Thank you guys from the bottom of my heart. \nHave a great day,\nLinda Walker','2020-01-20 13:02:17.607000','2020-01-20 13:02:17.607000',5,'Linda Walker','https://lh3.googleusercontent.com/--Z6nYlRiYGc/AAAAAAAAAAI/AAAAAAAAAAA/aytI0kEaon8/c-rp-mo-br100/photo.jpg','12541597562633926366',9940),('AIe9_BFL0OZrFaHgoJtqifT1GHrIsE6V2JPRvsocPJ561vah-Qc-GbkCSkv-VRYSU-gIxZydjEog5UN11PaY_xErhxkVUDSpRV_Q5TzlFAnWHdmx_kb2cW0','I had such a good experience here! Our nurse Gabe was so helpful and chatted with us, which made our time here much more enjoyable. Rebecca offered us water and coffee. Everyone was so pleasant and happy to help!','2019-12-05 19:07:06.139000','2019-12-05 19:07:06.139000',5,'Kate O\'Neill','https://lh4.googleusercontent.com/-9MzLbADBjP8/AAAAAAAAAAI/AAAAAAAAAAA/KKhzYSq0XRo/c-rp-mo-br100/photo.jpg','16590124370714063921',3055),('AIe9_BFL0OZrFaHgoJtqifT1GHrISf4QvB9DRjyM4t_PlAijwyQEbdIqjpQYNEZ9_KfDWdO6OMCjmeekqpm2IhiUv7NgfyD-qHkL0lAze1WD8nyaBIerR-Y','I have utilized services at Signature Care Montrose several times for various family members from someth in ng in childs ear, to stitches, to severe abdominal pain and other urgent care needs. I\'m always pleased with my experience. I\'ve never waited more than 5 min to be seen. They are always kind, thorough and efficient. Today, I was treated by Keaike, Dawn, Olivia & Eve and they were all super personable, friendly & caring. I highly recommend them!','2019-08-30 19:52:29.225000','2019-08-30 19:52:29.225000',5,'Brandy Laakso','https://lh3.googleusercontent.com/-NqqqVi5mpWw/AAAAAAAAAAI/AAAAAAAAAAA/ME8mOxuZ4ZI/c-rp-mo-br100/photo.jpg','3511292162159714121',7186),('AIe9_BFL0OZrFaHgoJtqifT1GHrISHLO0vRbESXfOYTRJ_2ton1sb5AfE4Mia-YRix5JI22vtjayHAY2dqVwjuM01uzG2kN38lK62Oz438P_TzG0N3ZriA0','Great staff & helpful people ! Thank you For Covid testing us this morning','2020-06-10 21:19:52.364000','2020-06-10 21:19:52.364000',5,'Manny Bonilla','https://lh5.googleusercontent.com/-RGiFoaROWXs/AAAAAAAAAAI/AAAAAAAAAAA/dLjChjKo5H8/c-rp-mo-br100/photo.jpg','16891069708558046635',22686),('AIe9_BFL0OZrFaHgoJtqifT1GHrIsIXIn8ufqQt7Sgx8fU0g8qt5CgVSQqaOdNFQgejdn23ks5Uygo2tcsX1Kphh-sghSEmAm-rdMwXwokJgaRKUO1C-80I','Great patient care!! Dr. Souman, Nurse Churiah, and Tech Jose were very caring and attentive. They really made my daughter feel comfortable and relaxed. I highly recommend!!','2019-01-16 02:14:59.451000','2019-01-16 02:14:59.451000',5,'Lucio Garcia','https://lh3.googleusercontent.com/-e6T2hxQY5lo/AAAAAAAAAAI/AAAAAAAAAAA/_c1J-uh0354/c-rp-mo-br100/photo.jpg','3511292162159714121',7475),('AIe9_BFL0OZrFaHgoJtqifT1GHrIsIZM90ya__B36J-Jp8B3CvtCm5JdnFuHfsq8-oHniXNlPWwyjxHLMubNEg-VW170Shay9PdxeWfnkEPjahSKX1xf_YI','Rebecca V & Dyreliz were very helpful and very polite good service !!','2019-09-20 01:55:54.977000','2019-09-20 01:55:54.977000',5,'Herman Rivas','https://lh6.googleusercontent.com/-hFfO71LEa1Q/AAAAAAAAAAI/AAAAAAAAAAA/T2emQYmxKU0/c-rp-mo-br100/photo.jpg','16590124370714063921',3194),('AIe9_BFL0OZrFaHgoJtqifT1GHrIsjCAQI_fXQvKTVB-sdvnYHgmt49Cls0fgNksAUlM7X8Dj14sKFpBcXfd8gdhik9X1-kSSVVeF_lICiyZxhiHyW4tiBM',NULL,'2020-02-24 19:01:08.111000','2020-02-24 19:01:08.111000',5,'Irina Watson','https://lh5.googleusercontent.com/-HmUwnUMI4uQ/AAAAAAAAAAI/AAAAAAAAAAA/S2vIISSug0g/c-rp-mo-br100/photo.jpg','14904078213800803294',20990),('AIe9_BFL0OZrFaHgoJtqifT1GHrIsjzH7FlyiQo0lddqNPjDKYA4pejXSprwKB0enES-g89fdWpcYn0HQ7dSgv4Zw7QajD8LWbkDw4CKkZuby8X0YODnIb8','Staff are nice except the physician. I really didn\'t get Dr. Chen\'s black humor. He treated me like I was an idiot. Bad experience and I definitely don\'t recommend this place.','2018-02-15 03:40:38.256000','2018-02-15 03:40:38.256000',2,'Ali Samura','https://lh3.googleusercontent.com/-AguPYVxuLGc/AAAAAAAAAAI/AAAAAAAAAAA/6vu0oYHK6Fs/c-rp-mo-br100/photo.jpg','3511292162159714121',7724),('AIe9_BFL0OZrFaHgoJtqifT1GHrISlDffpJwfdDBO93YizbS-usBXvcFgQbJ61i_BcISLuMp2MUp250Rbe3X1j0qOgA7unpVadwQTRrf9Y_d04gXSdQH-jI','I have a great experience every time I come here. They are super friendly, very fast, and right on point. The rn hannHa was very sweet. All the other stuff was very helpful. Mrs kim did an excellent job with the ex Ray. Sergio was amazing and he made sure I had everything I needed. great job you guys','2018-12-03 04:25:51.831000','2018-12-03 04:25:51.831000',5,'Taylor Geards','https://lh6.googleusercontent.com/-MzRVMFhi5FQ/AAAAAAAAAAI/AAAAAAAAAAA/fm7n4jQmy9U/c-rp-mo-br100/photo.jpg','3272657195432704501',7094),('AIe9_BFL0OZrFaHgoJtqifT1GHrISLjv-HMJKvpwIQG5hR67M6kuIk-PFPVG5IEejMxDwGRobp7am604b_MnJtslgN_7JOKK_5MYmOI4VWlreULTzzY__9s','Everyone was very professional and I was in and out in under 1 & 1/2 hours. The facility was beautiful and I would highly recommend it for a mild to moderate emergency.','2016-07-05 17:33:26.364000','2016-07-05 17:33:26.364000',5,'Sara Sjolander','https://lh6.googleusercontent.com/-WEzpTMK648s/AAAAAAAAAAI/AAAAAAAAAAA/FCTJfZZ_adg/c-rp-mo-br100/photo.jpg','14567670160750071148',2012),('AIe9_BFL0OZrFaHgoJtqifT1GHrISTqlYrRBIkryVG289BX0ed8hzgP9aUE7FlnosCZFma0MwGth3Zm6fcADVpK9PBZG5BMDfe3frSpF88qOO6Zg7iShnNQ','Dr. Edozie\nRN Jani\nER Tech Brian\nRAD Marcus\nReg.Jasmine\nGreat staff...','2019-11-12 14:57:53.276000','2019-11-12 14:57:53.276000',5,'Lashan Hicks','https://lh3.googleusercontent.com/-L6rV5ykok_8/AAAAAAAAAAI/AAAAAAAAAAA/qrdhVoobKko/c-rp-mo-br100/photo.jpg','16389487648212004696',2715),('AIe9_BFL0OZrFaHgoJtqifT1GHrIsyjHRMPaVZOf7Jp97W-myrZrzdnL7SyA_H0sIIPzDyMqmJLm-wnLiIdq7ypQ2Ie_u1DcN319g2ImO3rbKJbsksEwk_0','Great people all around and the service is timely, professional, and high quality. Space was clean and everyone was friendly right from the start. Would definitely recommend and return if need be.','2017-12-01 03:49:42.478000','2017-12-01 03:49:42.478000',5,'Carter Kalmbach','https://lh3.googleusercontent.com/-tVqkdKhDZqQ/AAAAAAAAAAI/AAAAAAAAAAA/z2pW5GAH3xM/c-rp-mo-br100/photo.jpg','16891069708558046635',4533),('AIe9_BFL0OZrFaHgoJtqifT1GHrIsZtstuRrfz7MGjU-b4rit4J5e24jORtAmsj7hoX_awupLtOLj6JOtUvSh8xh8Sf1eiT5VHgGGqklm_gfrAxMWdoa-8k',NULL,'2019-03-28 04:22:22.097000','2019-03-28 04:22:22.097000',5,'Glamour House Studios, llc Cisnero','https://lh3.googleusercontent.com/-vXERzmZtsQQ/AAAAAAAAAAI/AAAAAAAAAAA/cI4YSLP2lpM/c-rp-mo-br100/photo.jpg','14567670160750071148',1355),('AIe9_BFL0OZrFaHgoJtqifT1GHrIT2C6hLx-j4ufvM4h2clJ487iNttmiXCLcEGeD99cTgvqiQSYwaSTVr7vFbLptvZlF8_cegp-T5n2F6ggce32XZF9Avs',NULL,'2019-04-01 16:58:32.045000','2019-04-01 16:58:32.045000',5,'Brittany Letcher','https://lh5.googleusercontent.com/-tK5d24kElZ8/AAAAAAAAAAI/AAAAAAAAAAA/NwTHcVlhdBI/c-rp-mo-br100/photo.jpg','17898197009688164559',5787),('AIe9_BFL0OZrFaHgoJtqifT1GHrIt5fe4C0YibDzTKLNeXR7XRSWMI6N1AvOAWdNrJXzuw86Np2GANXGr2XwjUelRLDVHuY1Lo64YbNseHCLeyL7i1wteqw','They were extremely kind! Even when my daughter had already been taken care of Michelle made sure to come check on her one more time.','2019-08-14 22:58:55.076000','2019-08-14 22:58:55.076000',5,'Mrs. Mitchell','https://lh4.googleusercontent.com/-tV4VhkLrBik/AAAAAAAAAAI/AAAAAAAAAAA/V_c0LfCdLAw/c-rp-mo-br100/photo.jpg','3272657195432704501',6912),('AIe9_BFL0OZrFaHgoJtqifT1GHrIT6oqvxM1oIKHA3zGDNpENZbj2fKEvd5wHs95QjIJu5aTSYfYm8yL97seOjaODsuQhMAtLfTDqv_doRaQDrxSH7fUa7k','The entire crew was very professional & Nice!','2019-04-18 13:52:07.304000','2019-04-18 13:52:07.304000',5,'Marquita Spivey','https://lh5.googleusercontent.com/-hB3Dvd6RHCE/AAAAAAAAAAI/AAAAAAAAAAA/ghgybzoCwzU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIT99FuvPOAxG7I-qUfsB4vzSlji8FG6adyIdaWC4aFRJK1WVM4KScj7v1UXtXdp4c9lqPidSwTKDgXCK9-5z2tVHXDGA','I came in to Cypress Creek SignatureCare and I was greeted by Natalie and she was very pleasant. In the back I was greeted by Richard and Alvesn who gave me a warm blanket and took care of me in a very speedy manner.. Dr Haraji was very knowledgeable and helpful as well.. I will be returning if ever needed. My visit here is always very pleasant','2019-08-24 16:24:46.438000','2019-08-24 16:24:46.438000',5,'KenterahWaynese','https://lh3.googleusercontent.com/-iOTNhIRBB_o/AAAAAAAAAAI/AAAAAAAAAAA/If1tx4gMyI0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrITaXifMsFGk-twLMnGoR0yDJxahXMsLbytkrLOW8s3Y1CYEjrj0SyY9PhcOQ22nk90orw5Lc7_aLi9-zt-63zIV8cQOw','Doctor Herbert, Nurse Keira, and Radiologist Marcus all provided excellent service. Even registration from Nancy was quick and easy and friendly and awesome. Always top notch service. Always come here for any ER needs.','2020-02-04 06:03:59.810000','2020-02-04 06:03:59.810000',5,'Tabitha Johnston','https://lh3.googleusercontent.com/-smoBlgMyDM0/AAAAAAAAAAI/AAAAAAAAAAA/X1oNdEmSix0/c-rp-mo-br100/photo.jpg','6521947413723274945',8096),('AIe9_BFL0OZrFaHgoJtqifT1GHrItm6WCRb9VF3kAv9fOvqCUIo4oJeNjGjG_-fsmVw4O7x1QT1RQGEF9HPjIDeEbsJZ0-vTuLoUFjZOD6We4c5I-G2IKPs','Top notch doctors and staff. From walking in to leaving we were very happy with anyone we came in contact with. \nParis is lucky to have neighbors ER. Best in town','2018-01-07 22:54:43.655000','2018-01-07 22:54:43.655000',5,'Kaitlin Outten','https://lh6.googleusercontent.com/-5a7cU08hqLQ/AAAAAAAAAAI/AAAAAAAAAAA/buPB1uvzucs/c-rp-mo-ba2-br100/photo.jpg','8626688543755174284',8647),('AIe9_BFL0OZrFaHgoJtqifT1GHrITOJkvFd73zAReF-cFjREWzHerspa4A9t17Sih7hcdC_FZfyTS01kkHGclz4atDtBp2zbY_pCvHpoyJpBstNQhJcOVHM','I am so glad we made the choice to visit SignatureCare Emergency Center in the Heights. Everyone was extremely helpful and professional. They whole team made us feel incredibly comfortable and taken care of. A huge thank you to Dr. Miller, Nurse Meredith, Nurse Sherri, RAD Bryan, Denise, and Jasmine!','2018-09-30 01:25:30.322000','2018-09-30 01:25:30.322000',5,'Rebecca Bertolino','https://lh3.googleusercontent.com/-W3uMNeVfkJw/AAAAAAAAAAI/AAAAAAAAAAA/nLX56zc0yms/c-rp-mo-br100/photo.jpg','14567670160750071148',1484),('AIe9_BFL0OZrFaHgoJtqifT1GHrITQ2Av7Concmz_Tq6urfb2hYV5s9AKellvnn9XzXbdVRrcdiZV4Qwc-1NAaEE7LiQslRHL5GAgrq2UceFyV7qey8ArOk','Everything was amazing. Wonderful staff. Clean environment.','2020-02-23 20:44:58.331000','2020-02-23 20:44:58.331000',5,'Sierra Guy','https://lh6.googleusercontent.com/-UQ7YHXFh8LY/AAAAAAAAAAI/AAAAAAAAAAA/qf4F3Hp6fi0/c-rp-mo-br100/photo.jpg','16389487648212004696',13769),('AIe9_BFL0OZrFaHgoJtqifT1GHrItQM5J8AkPL3Ff6Lyp4U1JTVYn94pSQsE1yBJO-cqwyJfpM6CBpH-RKZQQiGwkoVDH4iwjlO1dB7CaYB7d8nA-0ZT2so','Staff was very friendly and took great care of me in my time of need. By far the best place I’ve been seen locally.','2019-08-07 18:57:37.570000','2019-08-07 18:57:37.570000',5,'Dorian Brown','https://lh3.googleusercontent.com/-o3IEdgwOvg4/AAAAAAAAAAI/AAAAAAAAAAA/c3YbqkVcbQ0/c-rp-mo-br100/photo.jpg','2694018788013845459',6092),('AIe9_BFL0OZrFaHgoJtqifT1GHrITRmnxborH3APFI55WC2U3L5wtQAiXvQdAomd9GhRYm3zwuGaTfpoxbAeMPy1wAxDJ-v1rR-tBvX7d6KOeqkXLSoPqLQ','Can I today for service, and it was very clean and smelled REALY good inside. They took me back quickly, I wasn’t even done filling out the paperwork yet. Most places you wait for hours. Jami, Marcus and Jesus were AMAZING!! Very friendly and super helpful.','2019-06-03 19:55:37.135000','2019-06-03 19:55:37.135000',5,'Kimberly Thomas','https://lh5.googleusercontent.com/-mmLWrKk5FY0/AAAAAAAAAAI/AAAAAAAAAAA/QzGQa8SjP-4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrITwy4LUU_JZHtknu1Y0tWsJTsi2FLa7FCIaQf8XdsKp-G8Tefi3CHN-S8VY4OEE2RoHAbNTAKJSNJthJSCp9Lje06Q4A',NULL,'2019-04-05 05:15:45.621000','2019-04-05 05:15:45.621000',5,'Aasif Budhwani','https://lh5.googleusercontent.com/-3uoBRy1uW_Y/AAAAAAAAAAI/AAAAAAAAAAA/20KqZV1JO0w/c-rp-mo-br100/photo.jpg','17394740196501090048',4698),('AIe9_BFL0OZrFaHgoJtqifT1GHrItyMzfe5plbCPJHIckRptyn75IUIse3Wjyt_QnJdmWJi0ZvyfNUjoeTJeN9oMItbQ7p1ghAWZQkNeicTOIdFja5YMGvs','Testing was quick and efficient. The staff was very helpful and welcoming and made sure everything ran smoothly. Excellent location.','2020-07-28 06:38:48.963000','2020-07-28 06:38:48.963000',5,'Valorie Saenz','https://lh3.googleusercontent.com/-5F3HMjdn85A/AAAAAAAAAAI/AAAAAAAAAAA/2FV-DJ61M3o/c-rp-mo-br100/photo.jpg','14748677429039074158',22533),('AIe9_BFL0OZrFaHgoJtqifT1GHrITZTIQ1WDnz26T9dbQlu1esEuE34qIRzI_eRjyChO5OJHoi1fFmOKw2XAYZyrXEFYoGRwqIr-VWadGP3wWxmptsPABRI','I’m a little late but when I went to SignatureCare Krystal,Huerta, Maria, Aaron, Andrew all doctors there help me through my sickness they are so nice if you ever get sick this the place I’ll go','2019-01-24 21:12:31.797000','2019-01-24 21:12:31.797000',5,'Manuel Gonzalez','https://lh3.googleusercontent.com/-EV3JbkFWL6c/AAAAAAAAAAI/AAAAAAAAAAA/ir68P3tqE6U/c-rp-mo-br100/photo.jpg','13486358490203335051',1088),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUaVI1-Tj9qeWvDTepT_-vwLCSxsdGBQ9cBeF5sG3cytON3bhONC67W6gjBnhQJXOtYeRef50ALjnTqGsv_vWmydHBKA',NULL,'2020-08-04 16:19:01.049000','2020-08-04 16:19:01.049000',5,'Brennan Mckinley','https://lh4.googleusercontent.com/-PulsY_2azy4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn2KCQEMcvils-KxQCZQQ_Ow6DFhw/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21819),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUdA0241x-C11_Hfe-McfVufIlq8ArW3aUdzcFGjp5EzVV3PkppcxW-Yq1tm8egnxM-colJrz8ggdveAhL_eBY1s8OGQ','Dr. Patel, Nicole G, Chris M, Dustin, Ricardo and Tatiana all took great care of me as a scared and very sick pregnant patient. I was able to walk in right away and be seen by the doctor first. Thank you for making me feel better so quickly.','2020-01-23 02:14:48.598000','2020-01-23 02:14:48.598000',5,'Lindsay Mahlow','https://lh3.googleusercontent.com/-lVEJnaFRZls/AAAAAAAAAAI/AAAAAAAAAAA/MHXpFMZOVlo/c-rp-mo-br100/photo.jpg','14567670160750071148',10143),('AIe9_BFL0OZrFaHgoJtqifT1GHrIudUFsv4u5kVCtjgG4a564IaMweNlWDpbqLvc5SYW_-DNbZRmvov9pWI8SLCfaPiPxBw_-sycvJo4R1O5yuUC0hqORF4','I came in for a covid test and it was surprisingly faster than I had expected. Super friendly and helpful staff.','2020-07-21 06:29:15.287000','2020-07-21 06:29:15.287000',5,'Adrian Gutierrez','https://lh3.googleusercontent.com/-0b9dHE0hxoo/AAAAAAAAAAI/AAAAAAAAAAA/y9-7SkrPr1Q/c-rp-mo-br100/photo.jpg','14748677429039074158',21637),('AIe9_BFL0OZrFaHgoJtqifT1GHrIuFKickq_R1CUn1N837oeYiwWWc1pOW3XDmFIh4fo2O0vaE3B_5xX0su22KI2IyIFTs6MRBY-m_ynwpvuN6Vg841ZrUY','It was a great great experience! Staff was super friendly despite being super busy. I did not feel rushed at all. Very professional and polite.','2020-07-07 12:33:38.970000','2020-07-07 12:33:38.970000',5,'Stephanie Ogunrinade','https://lh6.googleusercontent.com/-k3bs0lNAAHc/AAAAAAAAAAI/AAAAAAAAAAA/2rLcgGTCMYU/c-rp-mo-br100/photo.jpg','8918455867446117794',21493),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUiFGITX5QChnI2bCq9vs2z9G6BKPKaEvHZei0RxHubGp8dWSJ_pJJBTdgCtshLd7r861QufD9wjk1FT7m2sSjjQvUu0','Most wonderful ER experience. Was checked in by Kendra and she was extremely sweet and helpful. Waited for maybe a minute and was met by the Tech Patrick and was later helped by Juan and Jacob who were all extremely nice and helpful. Everyone made sure I was doing okay and did everything they could to help. Dr Vakey was very thorough and super understanding. He made sure I knew what was going on during the whole process and made sure I knew I had control. Everyone was extremely nice and helpful. 10/10. Highly recommend to anyone.','2020-02-01 22:14:47.869000','2020-02-01 22:14:47.869000',5,'Kole Bonner','https://lh6.googleusercontent.com/-agtYdBLYX08/AAAAAAAAAAI/AAAAAAAAAAA/wIJfFFuYP1Y/c-rp-mo-br100/photo.jpg','16590124370714063921',10430),('AIe9_BFL0OZrFaHgoJtqifT1GHrIuihJlTZWkqUIG2YO1elGeY-4C0gw7SNLySKDsRkmBRTE7s5mYcJB38If1cAshhfhaprXyo5cVd-vdwXsajqLQynDezc','Friendly staff. Had a to wait awhile but overall was in an out in about an hour. Dr Angela was very friendly as well','2020-07-18 20:22:53.649000','2020-07-18 20:22:53.649000',5,'Nathan Pinto','https://lh6.googleusercontent.com/-mXqRkRJYjvc/AAAAAAAAAAI/AAAAAAAAAAA/nojhSIbHAAM/c-rp-mo-br100/photo.jpg','14748677429039074158',21727),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUJoGcGIDvN9k3apBv-REEaf1OsoGSXV0f8K1raJeVPCqiQTzBkDFIk1_aOZ-bJLseQxglwKzeUWNfCqiZli28OQSOug','Timely, genuinely concerned staff, clean, and friendly.','2017-04-06 20:59:59.643000','2017-04-06 20:59:59.643000',5,'T Dragon','https://lh4.googleusercontent.com/-PXCJ-T3Bo4E/AAAAAAAAAAI/AAAAAAAAAAA/VnPaqT5ihKc/c-rp-mo-br100/photo.jpg','14567670160750071148',1854),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUlnmtjt81CrYv8Yo0kbZqaK6PFs67EOR5kgV5wKh0NyKoAD-8wpjUjxTHaynFhXizmP10Oh38e87v2MiBrj6qpFVK8w',NULL,'2017-12-03 01:15:35.005000','2017-12-03 01:15:35.005000',5,'Ckemia Mc','https://lh6.googleusercontent.com/-Do43tw6VtGM/AAAAAAAAAAI/AAAAAAAAAAA/ThIhHtIK_co/c-rp-mo-br100/photo.jpg','17394740196501090048',4920),('AIe9_BFL0OZrFaHgoJtqifT1GHrIumRkof4tdRimeMDaZTS5fsUJ_IT8qtgURYhP_oUvGBpdjKIpZEdv0wdEKgxp05xUPrfikSTw4sCOVp8b-fbR__89r8g','Fast and really helpful','2020-07-26 19:57:45.583000','2020-07-26 19:57:45.583000',5,'Uriel Mendez-Lopez','https://lh3.googleusercontent.com/-kuFmjSDSdbM/AAAAAAAAAAI/AAAAAAAAAAA/eHc7YMcCJas/c-rp-mo-br100/photo.jpg','2077061009497551125',22822),('AIe9_BFL0OZrFaHgoJtqifT1GHrIuMsA75sjvkhMlyQk565L802ZFNX-MXksIgnqFkMU4lF-Ivv4e_YFMPVenpl0Z9hI-GYrfd44DVzbcxwH_N7eYdhwTKY','Kristina, Laura and John were great people','2019-12-20 16:16:29.269000','2019-12-20 16:16:29.269000',5,'Sam Sam','https://lh3.googleusercontent.com/--No0weXzqCk/AAAAAAAAAAI/AAAAAAAAAAA/mXumqlxZXVw/c-rp-mo-br100/photo.jpg','12541597562633926366',326),('AIe9_BFL0OZrFaHgoJtqifT1GHrIuMXVEhNGXw9PNrNNa8BABgtEBvASXO4_iMwoD10yQQmgp4YQ24mAyXbX8uEu87Eo2g8JHnHRZDvZZYqzJfSa43wJiI8','I was taken here on the third of December 2019 for Nausea, vomiting and unrest in the stomach.The receptionist was super kind and calm and the nurse took me in. The person who IV\'d me was super rude and in haste. He just wanted to get done with it and so was the doctor that night. She was pretty straight forward and uptight. Slept for 2 days straight because of the tranquilizer which was given to me. Went back in today for my paperwork and the doctor there was way more calmer, cooler and ready to answer my questions. His name was Pradeep and he answered way more questions than I was prepared to ask and helped me understand my condition better. The receptionist was great too. Only if all the human beings were like these two. Overall, it\'s an emergency room what am I typing this much of a review for 😂','2020-03-02 17:28:04.195000','2020-03-02 17:28:04.195000',4,'Mirza Ahmed','https://lh5.googleusercontent.com/-9dKSkkgkwfo/AAAAAAAAAAI/AAAAAAAAAAA/jHuXZuTvqLk/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',21073),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUnImpmVPmbahhwTMY-StYnlByGHTGVgNb6cFF9cW8cKx8zXr7tjU85FS6TQVFPbrN-Q-wRQ5qszOaYETZdPWr7mN8Dw','I recommend people to go to SignatureCare Emergency Center they whole staff is great and they truly care about they’re patients and they all are very hospitality when you first come in with greeting and making sure you if you need anything to drink and that you can see the doctor immediately Marcus and Alvean are great nurses','2020-03-17 22:35:58.210000','2020-03-17 22:35:58.210000',5,'CHRISTOPHER WARRICK','https://lh6.googleusercontent.com/-483Tz3OdpHM/AAAAAAAAAAI/AAAAAAAAAAA/Ygs4W76-BnE/c-rp-mo-br100/photo.jpg','16389487648212004696',21006),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUPMMABwj5pp_FXPatndg14rpW1mXpOfKHzaPVlmScXz8mxe-PpkkG1_cffBdMJiqKukWblxDwvVBwz3eWiBinuUNhlM','Horrible! My fiancé was in pain from kidney stones and even called them first, he explained he just moved here, just started a job so insurance haven\'t started yet. They told him it was fine for him to come in they could bill him...he gets there and told him oh it\'s going to be a $1300 up front fee and then said it wasn\'t an emergency...since when isn\'t kidney stones pain and vomiting an emergency!!...I\'m sure I need to reach out to the JCAHO or someone to see if their actions were even legal!','2017-01-19 00:21:16.300000','2017-01-19 00:21:16.300000',1,'Sharee Glover','https://lh4.googleusercontent.com/-9Y3r9DQzdyY/AAAAAAAAAAI/AAAAAAAAAAA/14og7bvsgds/c-rp-mo-br100/photo.jpg','17394740196501090048',5128),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUq2apyp3iV_D20ONJoaU6vsDR4DI5RmjIQRWJFdfGPOD_106wDBUrp6s19hse39Y293Rrg8DWrxk61_owalT3JflSW4','Jesus was very welcoming had great conversation made me feel comfortable while waiting in the lobby, Nurse Alvean was very calming and honest. Marcus made me laugh great personality. Dr O’Malley was amazing, gave information where i understood. This staff is very welcoming and patient. They work at a fast pace was in and out within 40 min','2019-07-17 14:35:05.474000','2019-07-17 14:35:05.474000',5,'Alexus Roberson','https://lh5.googleusercontent.com/-zGK-riopkMo/AAAAAAAAAAI/AAAAAAAAAAA/5h956oHBXr4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIUwT-kK8__haDZUvFOAmG8KU7rVeU-N5eL1_8kA7zcFAI2O2w6l03QtQnzBl2-F5eZhmx073s4UNEOUe8SdJjCXSqUpY','Amazing experience, great service.','2016-09-14 11:51:19.577000','2016-09-14 11:51:19.577000',5,'Zalfa Teriaky','https://lh3.googleusercontent.com/--sieWxONxh0/AAAAAAAAAAI/AAAAAAAAAAA/lFJVbm6HeTg/c-rp-mo-br100/photo.jpg','3511292162159714121',7941),('AIe9_BFL0OZrFaHgoJtqifT1GHrIv-tbyDZKs9uifo42ye46JYpZ3vZunxEw7AQwkKF5lNgJBHd-vR_vCJnzUoAhHIndI83Yp8oRbxQr-2dEDQO6PHXbruE','I took my daughter for back pain, and they received her really good. We didn’t have to wait for a long time, Dr. Werzanski was great. The nurses also helped a lot. Best place to come. The warm blankets are perfect too!','2018-06-27 15:02:39.983000','2018-06-27 15:02:39.983000',5,'Maria Hernandez','https://lh6.googleusercontent.com/-5qOMSZCZT3Y/AAAAAAAAAAI/AAAAAAAAAAA/j4nvTxyQmSE/c-rp-mo-br100/photo.jpg','17394740196501090048',4836),('AIe9_BFL0OZrFaHgoJtqifT1GHrIVCae-l74n4kVgWgr2Au3_gjblASMsnOmsy_N23CwNpGJ1vBMslWrmTLDErjBZNyuPwgO3fidT7xJ5RRmGgu9OosAitI',NULL,'2018-08-05 00:17:35.754000','2018-08-05 00:17:35.754000',5,'Billiejean Cleveland','https://lh6.googleusercontent.com/-6f4-qcU7lP0/AAAAAAAAAAI/AAAAAAAAAAA/lZqnMFU8uIA/c-rp-mo-br100/photo.jpg','14904078213800803294',2232),('AIe9_BFL0OZrFaHgoJtqifT1GHrIVd_ywv8H7wCaT8gAnTDZ7oeBob7aaKkLvjkya7Amt28IFDpux2oRJDBUw13CXKJzEINK3_y2TPXiHG5Zi_1U2TQFV6w','Staff was extremely caring will be using them again','2020-01-12 04:39:18.631000','2020-01-12 04:39:18.631000',5,'Kimberly Bonner','https://lh6.googleusercontent.com/-ZpwyAWHbN7U/AAAAAAAAAAI/AAAAAAAAAAA/WG0o1LEHoZ8/c-rp-mo-br100/photo.jpg','12541597562633926366',9459),('AIe9_BFL0OZrFaHgoJtqifT1GHrIVHWnmFtOzeeEDC68GReJfBR-tIhNFCOp3YEzBiNRykTIE9Rj04-33WCkv7ud7fpFsJmzgAqkng9f26hK2QHV9Gnzp6Y','Lovely Environment no wait the doctor was awesome so was the nursing staff','2019-02-08 15:08:45.871000','2019-02-08 15:08:45.871000',5,'Kimberly Taylor','https://lh6.googleusercontent.com/-OrXJM0bVy6M/AAAAAAAAAAI/AAAAAAAAAAA/wrlTgsw1YCg/c-rp-mo-br100/photo.jpg','14567670160750071148',1391),('AIe9_BFL0OZrFaHgoJtqifT1GHrIvHX0VFYjZM4obIr7RcDe9Gsu4lvJrni34qJ63_L9Llt-kMPJYfGrO4TPCyo2ZhkUCTOXWFvOPu5Uxl1xGEYmL0Sgumo','Amanda s took amazing care of my sick 5 year old! Awesome staff! And awesome place ! Very happy','2020-03-01 22:48:00.077000','2020-03-01 22:48:00.077000',5,'samantha dale','https://lh4.googleusercontent.com/-xh2UJbNov9o/AAAAAAAAAAI/AAAAAAAAAAA/RNPl3FitXrQ/c-rp-mo-br100/photo.jpg','13486358490203335051',13405),('AIe9_BFL0OZrFaHgoJtqifT1GHrIViRCZiHm43JJzGWuY-RqxrI7ZF4k0V3Z1k6W5qknOHkBvrkiESj4PcJ81RfbQ-rq6NzYLQDuyeHpvw1Q4MXz_L83C7I','Kimberly P. And SIndy G. We’re very warm and welcoming! They were smiling and ready to comfort myself and my friend who came in with flu-like symptoms. I would definitely recommend this SignatureCare!','2020-01-03 22:50:33.195000','2020-01-03 22:50:33.195000',5,'Arielle From','https://lh4.googleusercontent.com/-6RN3w7F4U9E/AAAAAAAAAAI/AAAAAAAAAAA/K9YrSuL3Xr0/c-rp-mo-br100/photo.jpg','14567670160750071148',1147),('AIe9_BFL0OZrFaHgoJtqifT1GHrIvpPSSmtgnPVfbkwROoyYCtcTKyb5Fz8N_LaEMHDAk8MCic3H5P5huetCzXSmYaUV7mVryelJQxV-G95DRRKaT0tImkk','It was an amazing experience from the beginning to end everyone was a great help couldn\'t have asked for a better experience','2017-02-10 00:27:24.814000','2017-02-10 00:27:24.814000',5,'Logan McDaniel','https://lh6.googleusercontent.com/-VVpP267x9G4/AAAAAAAAAAI/AAAAAAAAAAA/nfkXikSUqXA/c-rp-mo-br100/photo.jpg','16590124370714063921',4062),('AIe9_BFL0OZrFaHgoJtqifT1GHrIvPzys2MylJJXX4NZDUwHWVm7SiQs8n3qWW1GD5WHdVQA_gPpMsoS5DePJTFjHlx-_nfDOWqGsC1zRrA1NWjRHQ3oTpE','They were really nice to me and very caring. My nurse was very polite her name was meagan and my doctor was supper nice. Jolynn to they were all nice.','2019-09-02 21:10:46.491000','2019-09-02 21:10:46.491000',5,'Jennifer Gonzales','https://lh3.googleusercontent.com/-FDe5NtTpbao/AAAAAAAAAAI/AAAAAAAAAAA/LGwLmvhdh3A/c-rp-mo-br100/photo.jpg','6521947413723274945',8153),('AIe9_BFL0OZrFaHgoJtqifT1GHrIvQFyeqVXgRsMGqQH6Dx_bzXbAnkqUesoMRZfgfr8VaAYxpCBqx34vx-zw3NkACz5EfszfeNSx_WEHoF6-DXtt_cJRxY','Fast and friendly staff','2017-12-19 15:16:58.032000','2017-12-19 15:16:58.032000',5,'Aracely Escalante','https://lh6.googleusercontent.com/-PJd9ZkKRtbo/AAAAAAAAAAI/AAAAAAAAAAA/ovNgK_0Crt4/c-rp-mo-br100/photo.jpg','14567670160750071148',1708),('AIe9_BFL0OZrFaHgoJtqifT1GHrIVR4XeqhyMtUBN655YQI4YtQd_KHO0qNEASk2ykw-iAnbtOTanbX15oOkJhCVcwTbhYtVkUW5QmCCp2PNAGbVDOWp8Eo','The team was wonderful. We were traveling through Houston and had an illness arise. Thoughtful, efficient, and quality care. Thanks!','2019-01-15 19:45:31.240000','2019-01-15 19:45:31.240000',5,'Chuck Fleming','https://lh4.googleusercontent.com/-QkiUsaHlFJ4/AAAAAAAAAAI/AAAAAAAAAAA/EveAuwrqM18/c-rp-mo-br100/photo.jpg','3511292162159714121',7477),('AIe9_BFL0OZrFaHgoJtqifT1GHrIvsDpG2xFVJUaC2ED79Jx0H54PX2pywqPV5eyDtZQtoq9KvCl1czrxMi_HSiqdAZ4x8qFW_892lYxQ5WYAT8JbcpnwZ8','Alvean patricia thuy an','2020-02-13 20:39:37.010000','2020-02-13 20:39:37.010000',5,'What Mobile Games','https://lh3.googleusercontent.com/-HZdYHTi37qc/AAAAAAAAAAI/AAAAAAAAAAA/2BAtiSn-UDc/c-rp-mo-br100/photo.jpg','16389487648212004696',10883),('AIe9_BFL0OZrFaHgoJtqifT1GHrIVvenDRDf5Rb_VkJPOvDxY2oHW_rMHP_3zmQdvdIizow8JhIYrzqIu2_KvyAkn5kZCWJA85qH4zNR2GX_8YgWG_heNsk','I came for COVID testing and while they might have had many cars in line they went above and beyond. Lisa and many others came to distributed snacks and water. The nurses and everyone there were so kind and attentive. Mariah took my payment and was clear when explaining my copay and details! They were out in the sun and working hard with smiles!! 10/10 recommend!','2020-06-12 23:01:11.344000','2020-06-12 23:01:11.344000',5,'Ashley Martinez','https://lh4.googleusercontent.com/-mb7PXH_2RGE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclOWKAlHXE4pT_ilZaQzX0tB_ET9w/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22046),('AIe9_BFL0OZrFaHgoJtqifT1GHrIVY7VGajR0V5SEaqNKCZYomdvrhWixTB06WRpW8-19Hm5xd1eOYob3pmQyz997qGo-2ba2unJFposk_DNPNvBJnEhU08',NULL,'2019-08-19 03:12:45.718000','2019-08-19 03:12:45.718000',5,'kendy orellana','https://lh6.googleusercontent.com/-1HY8i3ewdLk/AAAAAAAAAAI/AAAAAAAAAAA/Ej9e8nZVjZQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIvZxuTpAy4k4leHXeaX7Xjz6QOqnII__N8TFPaDB-XlPip7-0EvrOa7-GfWsgH5_oJGfVrdphM5SQIjM1LTkEB-ky3mw','AMAZING place!!! Will recommend to everyone','2017-09-23 18:12:50.172000','2017-09-23 18:12:50.172000',5,'Joseph N Meza','https://lh3.googleusercontent.com/-soTJ1oCSZEI/AAAAAAAAAAI/AAAAAAAAAAA/5nA1kPcQTO0/c-rp-mo-br100/photo.jpg','14567670160750071148',1752),('AIe9_BFL0OZrFaHgoJtqifT1GHrIW994AZtgatH1MwsP-XLednc6aSwhRcnhLOK2wvPMUJbvyU3amJnF-3kQvjFaS3wYo2ix-LgM_oNrssL1yWuCf22mLqw','Thanks to all the staff Lorena T, Amanda, Jeri, Rachel, Christina and Harjai,, always very helpful when I come here 10/10','2020-08-09 21:50:51.051000','2020-08-09 21:50:51.051000',5,'mathew bottone','https://lh4.googleusercontent.com/-bPxeg9_9nlY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckpNEgsUrZ072GekGHA0Cpm5FD6gA/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22641),('AIe9_BFL0OZrFaHgoJtqifT1GHrIw9tRrf2IsABTTbDI0GwR6fOMgp7vCqncoJ5u_ksRgOVOXX4svgpL65u1zJ9gT3rvtgAPn7qaMmp538D8Fw39QBAuN4E','The doctor’s and staff are always very friendly and welcoming, I recommend this er.','2019-09-13 01:25:37.309000','2019-09-13 01:25:37.309000',5,'TC','https://lh6.googleusercontent.com/-wxFpKaD1jfs/AAAAAAAAAAI/AAAAAAAAAAA/qjzShDIqcno/c-rp-mo-br100/photo.jpg','13486358490203335051',833),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwD_m7iaY2JfA3wLbm2TFBd6TnpTeuIQym3UVeKx5BOzXx_JTIAu4gaevXwNYK_eq-cLu7yQUtifvTZxLULk-pf__OC8','I had some very scary Thursday night chest pains with a scheduled trip out of the state two days later. After my husband pre-screened the clinic via phone I jetted up there and was welcome to a fully staffed emergency room clinic with a welcoming, friendly, and professional staff. \n\nWithin TEN minutes, bloodwork was drawn, EKG complete and chest x-rays complete. \n\nAbout 45 minutes later, including ten minutes of one-on-one time with the Doctor on staff, I was cleared to leave. No detail was missed and I was sent some with a cold beverage, all my discharge paperwork, and the confidence that this clinic could handle any and all of my familys medical dilemmas.','2017-01-21 23:58:55.854000','2017-01-21 23:58:55.854000',5,'Shana Hill','https://lh6.googleusercontent.com/-NeL4MlyYcek/AAAAAAAAAAI/AAAAAAAAAAA/5Hbac8MLB1k/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2424),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwee4kQKF71giMOniMdH6VkZuwcIIMoWg7wkqcyS71Bor20CoUHDEsCSB1PGrTWH9SSeBS-csDJGbD693D05-veGDexA','Great experience at the Signature Care on Montrose. The receptionist Dee was super helpful and nice and immediately made us feel comfortable. Everyone (nurses/doctors) took great care of us and sent us home without a worry. THANK YOU SIGNATURE CARE!','2019-03-21 19:14:33.737000','2019-03-21 19:14:33.737000',5,'samaura','https://lh4.googleusercontent.com/-0k6a5j1VY1g/AAAAAAAAAAI/AAAAAAAAAAA/eYE5B8FT1_8/c-rp-mo-br100/photo.jpg','3511292162159714121',7375),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwEHu2iZ_JGQj9YDZKvt9ssiAYxrqnqsfZxzSEnvKCDC8mzUbaPch6zJ1HBc0xWa8MrVNmFI53YiPwhuJo7DN5uTzHEo','(Translated by Google) Dr. Ding, Amy, Dion and Agnes were very friendly and the attention was excellent!\n\n(Original)\nLa Dra Ding, Amy , Dion y Agnes fueron muy amables y la atención fue excelente !','2019-05-12 01:45:07.614000','2019-05-12 01:45:07.614000',5,'Maggie Brown','https://lh6.googleusercontent.com/-TtTJ448UaZo/AAAAAAAAAAI/AAAAAAAAAAA/91B9-asjsQ0/c-rp-mo-br100/photo.jpg','3511292162159714121',22876),('AIe9_BFL0OZrFaHgoJtqifT1GHrIWhl3byEAY8-zmVyin-OD-WpCYKGNdNefTtvgEkcimAZ2YT3K-BbSmnV4JZHgtMxKLc2OjatuyFICLELrRNF92z-IHlg','My husband came here today and received the best care. Elizabeth and Teresa were so nice. His nurse Valentin and Dr. Singla were great and very attentive.','2019-06-22 19:53:19.310000','2019-06-22 19:53:19.310000',5,'Mommylife','https://lh5.googleusercontent.com/-TNzfTnmllmU/AAAAAAAAAAI/AAAAAAAAAAA/TiAJeycgnkE/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2129),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwjas3FHDqgy10JEH4UCsY2jDLbAz9uyl7yz3f1g0aelXg1QQbqoa8m69nQE18LDVOMOd07x9nC1KwY-_wtZsdQqKYd8','I had a good experience and customer services a nd environment very clean I received hep from Dra Tran Registration Malissa and the Nurse Kristina Rad teach Tino and ER Teach John GOOD JOB!!','2019-01-16 00:00:52.773000','2019-01-16 00:00:52.773000',5,'Ivan Canga','https://lh4.googleusercontent.com/-pbg577APlhU/AAAAAAAAAAI/AAAAAAAAAAA/L9G8bo88GDY/c-rp-mo-br100/photo.jpg','12541597562633926366',564),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwjaVDk2iPrq5YPv3hjIb1vuexbhU0eFP2f9hfTVNvR9pemBexemOBeFWjj0wmGm-mXD_Lp1U9_CU8tRhip5gamo-4Kw','The SignatureCare in Montrose was great. I had had a painful irritant stuck in my eye for several hours, but I knew it wasn\'t worth going to the emergency room. Even though I was anxious from the pain when I arrived at SignatureCare, the woman at the front desk (Victoria) was accommodating and calm. I was brought in almost immediately and greeted by the nurse (Jeff Mathew), who was also nice. The doctor, Samar Yousuf, did a great job of getting the dust out of and rinsing my eye and was very friendly. I was in and out within half an hour. It\'s been over 12 hours, and my eye is almost completely back to normal. I would definitely recommend SignatureCare!','2016-06-21 20:55:06.074000','2016-06-21 20:55:06.074000',5,'Sarah Beth Stein','https://lh5.googleusercontent.com/-QfgoelyYGTE/AAAAAAAAAAI/AAAAAAAAAAA/CuG1oJKYmDs/c-rp-mo-br100/photo.jpg','3511292162159714121',7973),('AIe9_BFL0OZrFaHgoJtqifT1GHrIWkdA1EAExn19aWYsH21dX9YYW4IhZtUqkHojkErhb9mZNjGMtz8LazOWYMs9y_iUkqCQBsETugrhj6Us4iNmjihobWI',NULL,'2018-12-10 17:44:05.927000','2018-12-10 17:44:05.927000',5,'Jordan Ankersen','https://lh3.googleusercontent.com/-HVNGmzkkwKA/AAAAAAAAAAI/AAAAAAAAAAA/0MI8z3vrMe0/c-rp-mo-br100/photo.jpg','16590124370714063921',3616),('AIe9_BFL0OZrFaHgoJtqifT1GHrIWmGDA1LD9JGgpNdtvK4T78mjBSeDYP_snEcvBc6iWNm6PR7CdjgW-ThKwEI9XP0TJpO1xmastPPByJMgM3qsWHseMWU','Amazing doctor and staff! They helped my dad and were extremely patient with him. Thank you for all y\'alls help!','2019-08-03 03:43:13.850000','2019-08-03 03:43:13.850000',5,'Cassandra Maltezos','https://lh3.googleusercontent.com/-p0-Qt1zqlJA/AAAAAAAAAAI/AAAAAAAAAAA/KaEbxJDCUkI/c-rp-mo-br100/photo.jpg','17898197009688164559',5604),('AIe9_BFL0OZrFaHgoJtqifT1GHrIWnLAg1FkFHKjVSMYVDZEihwir79WlNP2TNtpV7W9Eu4H2xe6_GoEA4VZ2QU89XuekOm80GvkEQKM3H1J-5xBIwGkkmA','This place is a wonderful place and I recommend this to anyone.','2019-11-22 23:05:17.980000','2019-11-22 23:05:17.980000',5,'Bernard Lipscomb','https://lh5.googleusercontent.com/-wsK4iRhQDck/AAAAAAAAAAI/AAAAAAAAAAA/RXdydpcv-nY/c-rp-mo-br100/photo.jpg','2694018788013845459',6007),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwPckiOUA6c_E0qUDPbfoX6kKaeva6YGS7lfNhPBw8v8_1uxdOzaquDkqUol2CuoDRnBSQPB15fdkK3ZhK3qKi5AdYes','Everybody was amazing they names are jani, cavazos, tricia, ayesla','2019-10-18 22:44:20.544000','2019-10-18 22:44:20.544000',5,'Georgette Smith','https://lh3.googleusercontent.com/-4UbXSL3Ws88/AAAAAAAAAAI/AAAAAAAAAAA/WZn5WAO-A9E/c-rp-mo-br100/photo.jpg','16389487648212004696',2798),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwQ_OeIfohdF42PtPCdXA1ua1o9AMuVOYWgZFAYgkB4vmslEEFELI2VYiTAso__Qh98Ow6xGsT0xv13XsUS-tjyCxH2I','The doctor was accurate, the service was fast and overall excellent.','2017-06-05 16:50:21.092000','2017-06-05 16:50:21.092000',5,'Ramon Torres','https://lh6.googleusercontent.com/-ujih2eHa4Do/AAAAAAAAAAI/AAAAAAAAAAA/9tvnIrraAak/c-rp-mo-br100/photo.jpg','17394740196501090048',5042),('AIe9_BFL0OZrFaHgoJtqifT1GHrIws6W5otKP1Xz28lRLjhpUoVhR2qtW_hhi-OcvG-U9Qs2T_xcMsyygEnItpVqzJTx4IFCuS9gmt_BepXZpgds8iu72X8','Service was fast and simple and everyone was very nice.','2020-07-19 17:23:42.657000','2020-07-19 17:23:42.657000',5,'Sam S','https://lh4.googleusercontent.com/-1bogBBdexbc/AAAAAAAAAAI/AAAAAAAAAAA/TTnuIqSXSGM/c-rp-mo-br100/photo.jpg','14748677429039074158',21712),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwSGRwKy2vHgTZxxzyKs7JwFjcG1ZLB9OXi91EE1KaIlB2ZcW7ajUO9gkzUtcqocb38CfgbclVEIHPLTrKAMidb0Z388','Thanks Cody an Nydia for your great service','2020-07-28 18:56:09.938000','2020-07-28 18:56:09.938000',5,'Javier Cisneros','https://lh6.googleusercontent.com/-1FyAQGcb7pA/AAAAAAAAAAI/AAAAAAAAAAA/ahfK-i32Ano/c-rp-mo-br100/photo.jpg','2077061009497551125',22791),('AIe9_BFL0OZrFaHgoJtqifT1GHrIWtfxduwRVXWqsBUgrbdZlbK3iKS07lcS2brv0PNP2CJ0yuyVir2UFRoAKyLMT_4RylRXO7mWxf877Uk18gEv494t2lY','Seriously guys, the pain I felt on 7/1/17 was simply unbearable. I was up at 5am looking up reviews to see which ER I should go to and came across this one. I know, I\'m totally that person who needs the best service even in pain. \n\nSo I came here, in tears might I add and as soon as I came in, after providing my identification and given paperwork, I was immediately taken to the back before finishing it. Angela at the front desk was super sweet. It\'s important to feel warmth with the first point of contact. \n\nI was treated like a high class patient the entire time and things were explained to me in a way that I\'d understand. Everyone was so pleasant and it was super quiet. I had a dbl kidney infection just incase you\'re wondering. \n\nIs it weird to want to go back here?! Yeah, that\'s kinda strange I know but I\'ve never had to go to an ER in my 34yrs of life and I pray that if it ever gets to this point again, I\'m in the vicinity of this location. \n\nNow, I haven\'t been billed yet lol but surprisingly I didn\'t have to pay anything upfront with my insurance so I was shocked. ','2017-07-06 15:51:14.038000','2017-07-06 15:51:14.038000',5,'Dani G','https://lh5.googleusercontent.com/-tc74SrjnPiY/AAAAAAAAAAI/AAAAAAAAAAA/YMNMcl4S1gA/c-rp-mo-br100/photo.jpg','17394740196501090048',5024),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwwqor5ZynawUAXZF95G332VdijBeDpI1BJmZxOesnvf2fkVjrVMJCvPcJgeqoq8wlhwgByHI13lDZx9grYIxjLmloPA',NULL,'2020-01-18 03:11:24.081000','2020-01-18 03:11:24.081000',5,'Ava Rochele','https://lh3.googleusercontent.com/-yXhefaLeKJM/AAAAAAAAAAI/AAAAAAAAAAA/1HVkBsWPZFU/c-rp-mo-br100/photo.jpg','13486358490203335051',13473),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwX0kaPGDG0MCUxPD4QsCgdPyw4HuZetF5C-zhcf7_DS_eUGLTRLgTv0wtxzfbW6_zGrvVog-eXoNgrux1Enb6i-iqqk','Checking in and out was easy. Staff was very friendly and attentive. Nurses and aids went out of their way to make sure I was comfortable. Did not have to wait long to receive care. Received appropriate care and testing. Clean facilities. Quick response to call button when used. Wrote a note for missed school/ work. One minor complaint. It would have been helpful to let patients know when shift changes occur. Special shout out to Robin. She\'s an amazing nurse.','2017-05-02 18:10:00.800000','2017-05-02 18:10:00.800000',4,'Byron Holzberger','https://lh3.googleusercontent.com/-u7WbX9NIhvA/AAAAAAAAAAI/AAAAAAAAAAA/Rt6gdHL07AQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3994),('AIe9_BFL0OZrFaHgoJtqifT1GHrIwXRy7DPZYJGdzEDLTud5eYrLuS7lHCsPjzOytgZ70_pPGdWpPAZEZNH5Jf4GWLNGueV-Oj77gcUQ4Mc1427GwMs9zJk','This place is a rip off. They bill for the facility and physician separately and bill $1500 minimum for each. Don\'t expect good customer service when you call to ask about your bill. If you ask to speak to a supervisor they take your name and number for a call back that never happens by supervisor. This place is an insurance scam that drives premiums up for everyone.','2016-01-25 20:37:15.352000','2016-01-25 20:37:15.352000',1,'johnny chimpo','https://lh6.googleusercontent.com/-d234ohszZg4/AAAAAAAAAAI/AAAAAAAAAAA/F8IqQD1W9Z0/c-rp-mo-br100/photo.jpg','17898197009688164559',5948),('AIe9_BFL0OZrFaHgoJtqifT1GHrIWyu5gOTZPh8daGhyl9QYKDITVRbcVd9JZrzGoqV8tpIGuX72e6Ye5HlPRDqbwZFhVEdLVVxiobQD7V1iILgPB6qU3sU','Receptionist Jessica was very friendly, the doctor and nurses explained what they were doing at every step and got us out quick','2019-12-06 04:08:39.490000','2019-12-06 04:08:39.490000',5,'Daniel Wilk','https://lh6.googleusercontent.com/-Nv8Vx20kC9U/AAAAAAAAAAI/AAAAAAAAAAA/BqTBn8RMrLs/c-rp-mo-br100/photo.jpg','6521947413723274945',8075),('AIe9_BFL0OZrFaHgoJtqifT1GHrIx1DYR3VGh_mg86lEapZGVCfLNZOXu4NTiw80JOM3KqflDCd0R3q08iVFh2qdxpInGKG07LggxLMyEmfdsBinGqKlL1Y','Okay I must say, Dr. O Malley is the best, quick, fast, efficient, the best. All docs need to take training from him!!! He also makes you laugh on top of your pain!!!!! He is the best. He enjoys what he do. \nMrs. Tricia, very caring and she\'s pregnant at the same time. How can a pregnant lady be more concerned about her patients than herself. She did that very well!!! She was so superb.\nMrs. Alvean, really professional,cool, straight to the point. She is the best. \nJocelyn, quick, fast, efficient with the check in and out process. She did not hassle me at all about paperwork. \nThis staff is great. If you want to get great service, where the team cares, And you can tell, come here and meet this team. I do not want to leave at all!!!! A plus from me!!!','2019-12-11 15:17:15.290000','2019-12-11 15:17:15.290000',5,'Million Dollars','https://lh3.googleusercontent.com/-42huzdv9DGQ/AAAAAAAAAAI/AAAAAAAAAAA/I5flZql0FK0/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',2556),('AIe9_BFL0OZrFaHgoJtqifT1GHrIX3-luKtwrz8otM7meB8kuw85_tiBEn4-ycQteNEfA3MKePnEVNWE3KhKd6l2D-qHM0FRGNri1RFsxr_ITf6Fp9LsqfU','Scheduled a 9PM COVID-19 test and got attention immediately during this slow time. They are an emergency center so expect them to prioritize according to emergency.','2020-07-18 02:42:22.868000','2020-07-18 02:42:22.868000',5,'Andrew Adams','https://lh4.googleusercontent.com/-HjGC4mr3ank/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmVgWkZ8BXLZhjsiWuRx9E2Ty2_CA/c0x00000000-cc-rp-ba3/photo.jpg','16389487648212004696',21961),('AIe9_BFL0OZrFaHgoJtqifT1GHrIx5A8YBEoMafQNPsUdaRvWf4G68bHjg0lUD42R3sOtBGRlYQbSR990ygR84tQKSqQ7QIze2xUWAy7v0tz2g1n81LJp4M','The staff was friendly but the wait after seeing the doctor was a bit long.','2016-12-06 10:04:13.604000','2016-12-06 10:04:13.604000',5,'Audrey Nkadi','https://lh4.googleusercontent.com/-lprgP0W4g7s/AAAAAAAAAAI/AAAAAAAAAAA/rXQXYzmw5jI/c-rp-mo-br100/photo.jpg','17394740196501090048',5151),('AIe9_BFL0OZrFaHgoJtqifT1GHrIX7QF42dL3S2eCCYvA0rFaF93SXjZ78SbBc2TJ_QqyY9rILoGygeqXUVaOQMv7QdQ3bgv9VFWlR7SjOLjS4OVrrnis68',NULL,'2020-07-21 04:54:44.797000','2020-07-21 04:54:44.797000',5,'Will Keaveney','https://lh3.googleusercontent.com/-d9DZsvXAvCE/AAAAAAAAAAI/AAAAAAAAAAA/AlBq7cY8yFM/c-rp-mo-br100/photo.jpg','14748677429039074158',21644),('AIe9_BFL0OZrFaHgoJtqifT1GHrIXBS3DylYs1BeRXUt7qtZbpeQ2XUAEq9RqT1QFmzunAsxpeYxxLDaQIeGmncJZdcEIu2LI4bmpF7K-ZPWOwFROxnwAGU','Got checked right away as soon as we walked in. Very professional. Alvean, Jordan, and Jocelyn were very helpful. Would recommend.','2020-03-02 18:46:03.698000','2020-03-02 18:46:03.698000',5,'Michelle Vongsamphanh','https://lh3.googleusercontent.com/-mwYvA8hRCH4/AAAAAAAAAAI/AAAAAAAAAAA/S0vZVBepcPg/c-rp-mo-br100/photo.jpg','16389487648212004696',13746),('AIe9_BFL0OZrFaHgoJtqifT1GHrIXfQQxj4Z6xoEqAIm8FyKTfA-6tuWsYUj0dZexAhmDefUYW8OdVZGt1PR-iwhJwzSQVxqjBn8zYQmcNO5TBooq8868H8','Excellent service very friendly staff and clean facility Patricia and Jordan','2020-01-18 12:23:40.145000','2020-01-18 12:23:40.145000',5,'MERARI GONZALEZ','https://lh4.googleusercontent.com/-LCaSrIQMYUE/AAAAAAAAAAI/AAAAAAAAAAA/pKLSfFk16pI/c-rp-mo-br100/photo.jpg','16389487648212004696',10049),('AIe9_BFL0OZrFaHgoJtqifT1GHrIxGNrnm7RG5sReP_USRhz9YC5qByAXNgp91KrmZVhx6584Pkkf0MfaVHp5m3eOh4feVQFwpPmV1jhnkbW-3wnABBPuLs','Took 5 hours to get a COVID test. I had an appointment and everything. They are too slow','2020-07-11 13:36:55.423000','2020-07-11 13:36:55.423000',1,'Melvin Ogega','https://lh6.googleusercontent.com/-MXHfUF5P0x4/AAAAAAAAAAI/AAAAAAAAAAA/iMJp8PDYf_Q/c-rp-mo-br100/photo.jpg','14748677429039074158',21587),('AIe9_BFL0OZrFaHgoJtqifT1GHrIXIRPEEojmg-TFrG5T1UUZCJ6gw9ZRcRDP-IIwIvOx_ZqabKFsmk27FCZvuNofw9CCjOOltjLz4U4Lka5rmh0LNOILMM','Very efficient , they get you in and out fast. Very friendly staff!!','2018-03-19 14:02:59.327000','2018-03-19 14:02:59.327000',5,'eric juhlin','https://lh5.googleusercontent.com/-XaFW2bIs3JU/AAAAAAAAAAI/AAAAAAAAAAA/-q9ZrOzuwUo/c-rp-mo-br100/photo.jpg','8626688543755174284',8646),('AIe9_BFL0OZrFaHgoJtqifT1GHrIxKekFXxwS6PByJcboR00I-Z_4jUDc05IcwVLyKTi-E5VAj_NhGWZ2TskklZdjJq3RFIHiRDx_FtR2znIfASvr5TDz8c','I was immediately greeted like a Military Officer. Patricia stood at attention and was amazing, as well literally everyone of the 3 doctors that came to my aide before i could even finish the paper work. I don\'t have insurance and they didnt hesisitate to ensure they weren\'t going to add a bunch of services that i didn\'t need to make an extra buck. They let me know they would tailor the experience to my needs to ensure the lowest possible cost of the x-ray. Over all extremely approachable and professional clinc if you are in need.','2020-01-05 23:01:11.454000','2020-01-05 23:01:11.454000',5,'SuperAnonlol','https://lh5.googleusercontent.com/-BTnLgoQK2QU/AAAAAAAAAAI/AAAAAAAAAAA/lXU-pRH_y0g/c-rp-mo-br100/photo.jpg','16389487648212004696',2482),('AIe9_BFL0OZrFaHgoJtqifT1GHrIXkh6_l7RXeNQvkuwbrcVHRXlTfxnR0LVeuTTeaBd_aT9jXeeUUz1jcqh21BuaQp_DfBdolKtGqhQE8UoVmqJFLmQ2Y4','They took really good care of you. Very nice and clean.','2020-02-08 16:37:56.329000','2020-02-08 16:37:56.329000',5,'Felicia Sowell','https://lh4.googleusercontent.com/-HC7KQI1Tf_c/AAAAAAAAAAI/AAAAAAAAAAA/MlJtsH10vLE/c-rp-mo-br100/photo.jpg','16389487648212004696',22610),('AIe9_BFL0OZrFaHgoJtqifT1GHrIxoDBd1xOEeQgXU6qefOdJclRA51URLZdIBaf9Rj2d24aSYFYFNE97TMM9G9oG1CJ9hqFsv7xCwXIddiNmfJL7ZaZt8g','I can\'t go below this that is why i am giving 1 star. The account department is pretty messed up. I went to the care center regarding covid-19. Got a test done and a huge bill. I paid for it and asked my insurance company for refund. They send the amount to care center. It\'s been more than 45 days and i am still struggling for my refund amount from the center. There is no status update. Nobody bother to give any update about the scenario. I called the center and got a response they processed it long time back but there is no update from accounts department. When i asked them if they can connect me to account department there was a clear NO and they said please call after 15 days. When i asked what is the issue and why it is not getting issued they don\'t have any answer. This is ridiculous/','2020-07-06 21:22:55.767000','2020-07-06 21:22:55.767000',1,'Mayank Gupta','https://lh5.googleusercontent.com/-vRN7YheTa7I/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckaVMNmrlm6lH2GprDksmXRAAQUQA/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21307),('AIe9_BFL0OZrFaHgoJtqifT1GHrIxsg1jWM58vS4xvvV2c64B6ib7jvZUDvD6nsU267Fifi-6oe4a92tc0wUYtf6WhpH421_3LpPOnl3yGaKyKlZoUUpcGM','This was my first visit to Signature Care and I would absolutely recommend this facility to everyone in the area. Scott and Laura were very kind and accommodating and Dr. Patel is so sweet and made my daughter feel very comfortable. This is exactly where you want to go if in need of emergency care!','2020-01-08 15:17:26.408000','2020-01-08 15:17:26.408000',5,'Sajdah Habeeb','https://lh6.googleusercontent.com/-GOg0YLaWZWA/AAAAAAAAAAI/AAAAAAAAAAA/lRurivpS_sY/c-rp-mo-br100/photo.jpg','12541597562633926366',9535),('AIe9_BFL0OZrFaHgoJtqifT1GHrIxVGwB-VCsiCOSMEcq4Bu_ipTpJisCuXYT_n2I_i0fK5R0tprWNpsjq0uaGWp6heqIEFaZS9tB75DZmqzY0Fgv6FIrsg','Fast service and very helpful staff','2019-06-20 03:49:59.246000','2019-06-20 03:49:59.246000',5,'Taylor Aldridge','https://lh4.googleusercontent.com/-OcOR3pHBUmg/AAAAAAAAAAI/AAAAAAAAAAA/cKb2LA8NX0w/c-rp-mo-br100/photo.jpg','8918455867446117794',9115),('AIe9_BFL0OZrFaHgoJtqifT1GHrIY_hQeLf4exVO8KfBj0cz5VJeD-Lk7lnsZBh_yJIyJfp26rzEMLMH3NVeHjDFfEjeSU8L25nMvQSJ40ZVFMsMI7PQEwU','Great and fast treatment! The nurse and doctor were attentive to my needs and made sure I was taken care of.The front check-in was swift and welcoming!','2017-03-21 17:54:18.047000','2017-03-21 17:54:18.047000',5,'Gabrielle Gardiner','https://lh5.googleusercontent.com/-MU-gr1b9wZ4/AAAAAAAAAAI/AAAAAAAAAAA/hO1g1snjAQI/c-rp-mo-br100/photo.jpg','17394740196501090048',5088),('AIe9_BFL0OZrFaHgoJtqifT1GHrIY2OjzKASu9rLfIJEmLUes9aiH1wU6KBUU61uy6jn9dRKXWrA2-Xz3TG_La3JBRiP3Z3dM3cmZvoaeOnmmWSTo3OFbnY','I’ve been seen here a couple of times, and always the best experience! They consistently go above and beyond and always care! The facility is so clean! And a genuine positive atmosphere, beginning with Aileen at registration always smiling and welcoming. The nurse shelli, I’ve recognized a few times, always a pleasure when you don’t feel good, she’s attentive and goes out of her way to assist your needs! And the doctors all I can say is wow! Dr rose and Dr Jones, they treat you with the upmost respect and not another number with all the other patients they see their time spent with you when diagnosing you is Amazing. They genuinely care and it shows. The people you don’t interact with as much are so kind as well even though they are in the background ensuring you receive quality service is something to recognize so a shout-out to Christina and Andrew for all that you do! This place rocks!','2020-01-17 15:45:46.754000','2020-01-17 15:45:46.754000',5,'Erin Wyrick','https://lh3.googleusercontent.com/-sVdcEvYTc40/AAAAAAAAAAI/AAAAAAAAAAA/bRem8ak7HRU/c-rp-mo-br100/photo.jpg','16891069708558046635',10070),('AIe9_BFL0OZrFaHgoJtqifT1GHrIyALEv5Ih0sVggHqk5IAvPf0cHZ56dW5k-S_I8VtkQ3kttdnDRWFtAq1vdohXmIKMrixmjOS5rwEiDwbJg5p3ai0WP1g','Fast service, the staff was way more friendly than at the ER. Cost me about half what I would have paid at the ER as well.','2017-06-06 18:29:13.234000','2017-06-06 18:29:13.234000',5,'Jason Dando','https://lh3.googleusercontent.com/-KjbxTcPNrws/AAAAAAAAAAI/AAAAAAAAAAA/8tklkelnc3g/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8353),('AIe9_BFL0OZrFaHgoJtqifT1GHrIYAZnEi982gnVAqvuXyn4uKS5jHxpTmoozTHADHOWa5cUpq_RwfEaMqqw1387z_MP-B8Tz3do6OLOX5iUYjG1JVCmcNg','Dr. Grinblatas, Nichole P., Allan, Staci and Sibienne were great!','2019-07-07 15:36:14.137000','2019-07-07 15:36:14.137000',5,'Bennie Jordan','https://lh3.googleusercontent.com/-GIIGZtvoJ0s/AAAAAAAAAAI/AAAAAAAAAAA/f-qRdMvlYnc/c-rp-mo-br100/photo.jpg','8918455867446117794',9093),('AIe9_BFL0OZrFaHgoJtqifT1GHrIyHIyFfjgde99wqYgcsxXGe9DibD9Cv0v01yHqWb7nihzRyhD6N0KgzZJk44hNtM0l9YeoUdPRO6-hZLpQKC7iFE38Vg','So I came to Signature care emergency room for the first time today and I am pleased to say that this is a great place to come seek treatment, Dr. Lingan was real nice and took good care of me, Jereyia at registration was nice and friendly and the nurse Nikki was very prompt on coming to get me and check my vitals, all and all real good place to come. I recommend this place for prompt care.','2019-06-17 21:56:57.634000','2019-06-17 21:56:57.634000',5,'Milena Tesla','https://lh3.googleusercontent.com/-rf5CrQnpPF8/AAAAAAAAAAI/AAAAAAAAAAA/FiyU7-I1wW8/c-rp-mo-br100/photo.jpg','2694018788013845459',6128),('AIe9_BFL0OZrFaHgoJtqifT1GHrIyMPS7a3r2x7VvARqufiHW9IFroUmlu9b0N2NFWDasG0EF0t1hLbybIXwTClDegaQsruViq932njxuknSfpVdoOqsR_I','Very good place. They took real good care of me and listened to what i had to say.','2017-01-21 03:03:47.665000','2017-01-21 03:03:47.665000',5,'Rae Morton','https://lh3.googleusercontent.com/-GEfNvKcbz0E/AAAAAAAAAAI/AAAAAAAAAAA/8-6PD4WAbNI/c-rp-mo-br100/photo.jpg','3511292162159714121',7897),('AIe9_BFL0OZrFaHgoJtqifT1GHrIYWAvCkDZ71In_CF69xtSyk9opflrskntohxbWWiDIGj6Gt9JXQh5hHDD39bwvC7t8P50mc-9aICyWduCgjEhwZ7OI1k','Great experience. Sinusitis gone awry, no primary doctor, so came here. Quick and amazing. Jennifer D checked me in, John was my nurse, and Kanyon was my nurse aide. All so helpful and nice. Highly recommended!','2019-03-25 15:00:11.542000','2019-03-25 15:00:11.542000',5,'Suzanna Coyle','https://lh5.googleusercontent.com/-mVmoR0lrb4w/AAAAAAAAAAI/AAAAAAAAAAA/1WFRmOvg53k/c-rp-mo-br100/photo.jpg','8626688543755174284',8519),('AIe9_BFL0OZrFaHgoJtqifT1GHrIz0NK-yds31_gZ-AXjMvkcPg0XslZfwOnYRn3Q1wLYNqI2rNJtSqDofJ9iXhodqRngiViD4datk2Nyplc-5w8lGdWdoM','The experience was great! Super fast and friendly staff! Very nice doctor and nurses! Would trust them to treat my family and/or myself! ','2017-05-03 23:14:23.790000','2017-05-03 23:14:23.790000',5,'Angelica Sanchez','https://lh3.googleusercontent.com/-rI3FM3DwYCE/AAAAAAAAAAI/AAAAAAAAAAA/lGyVDAXpFsc/c-rp-mo-br100/photo.jpg','14567670160750071148',1832),('AIe9_BFL0OZrFaHgoJtqifT1GHrIZdP4gdMzkSlQ4jdx1nLknweFfezcKWnIix2uRAWRNxfEODaOTCESgFur5iykGoIOIptBWQtIBAo0VB-3JoMvj_OwZFk','Very fast, Efficient, Professional and Caring. I took my mother in law here to get checked out due to her feeling ill and they helped us right away. I recommend this place.','2020-02-03 16:44:23.120000','2020-02-03 16:44:23.120000',5,'D\'Ambra Tyler','https://lh5.googleusercontent.com/-7O9WjC4oroo/AAAAAAAAAAI/AAAAAAAAAAA/Loshnwt_Wrw/c-rp-mo-br100/photo.jpg','14904078213800803294',13612),('AIe9_BFL0OZrFaHgoJtqifT1GHrIZEt6v7EcBZT2kbMO-1oRDnffWlZjtEv7x2Okpp0k5ki5zOUqKaG76W-3vPZp9nPLr5tYOwie5n0v0lc-TKYYIXBNUuc','Great customer service within a timely manner. Very neat and clean. Inviting employees.','2016-10-01 00:43:10.606000','2016-10-01 00:43:10.606000',5,'Melaney Rose De Leon','https://lh5.googleusercontent.com/-rayzi2JkfzY/AAAAAAAAAAI/AAAAAAAAAAA/iE1AW-DvM-A/c-rp-mo-br100/photo.jpg','3511292162159714121',7931),('AIe9_BFL0OZrFaHgoJtqifT1GHrIzHmaC7MjumVn4S5NlNb4bvEEhNsjqLe3_4vLhlbNOaEc_lKqW4lyszy3fwQqJlNZP9467d77VqAxNDL1L55_ME47n3o','Best care I have ever received. Kindness is what you will receive from SignatureCare.','2019-04-19 14:20:08.272000','2019-04-19 14:20:08.272000',5,'Elizabeth Calvin','https://lh5.googleusercontent.com/-apB3ac5iLtM/AAAAAAAAAAI/AAAAAAAAAAA/SxIOWzzu03U/c-rp-mo-br100/photo.jpg','8626688543755174284',8507),('AIe9_BFL0OZrFaHgoJtqifT1GHrIzJ_fxnhZW1h4_TyqaXUwx4_FMhRZwkQzuPOuHyzStLZ8TDwHZYD5_5JDOqNEPM8yyZpSetAqcoGiXvaNu5UeVXbXSLo','I was feeling terrible but as soon as I waked in I was instantly greeted and they made me feel at ease, Dr. Grinblatas was so helpful and knew exactly what was wrong with me. All the staff( RN: Melissa, Tech: Natalic, and Radiology: Diem ) took great care of me and I appreciate them so much! Thank you guys!','2019-01-17 15:50:12.017000','2019-01-17 15:50:12.017000',5,'Efrain Serrato','https://lh5.googleusercontent.com/-gu05qS61FHU/AAAAAAAAAAI/AAAAAAAAAAA/K7bdMB1_KP8/c-rp-mo-br100/photo.jpg','14567670160750071148',1406),('AIe9_BFL0OZrFaHgoJtqifT1GHrIzKTuXO76lZaTRtvjeif2fF_Pzt8a5Xd_KHetUYsmB8UfRJZrgkm9mTWZnMdIhZf8L85CnmGL7Ghsk7X9rIXuQ43ZDm4','My boyfriend went to this emergency center to get a treatment done for his spider bite. The center is nice. We were welcomed by Mercedes and she was very friendly as well as the staff and doctors. We were in and out in no time because everyone made sure that he was taken care of! Excellent facility!','2017-02-20 21:38:22.109000','2017-02-20 21:38:22.109000',5,'Julie Dinh','https://lh4.googleusercontent.com/-NCvb108cQTg/AAAAAAAAAAI/AAAAAAAAAAA/g8Mjie9vA38/c-rp-mo-br100/photo.jpg','17394740196501090048',5110),('AIe9_BFL0OZrFaHgoJtqifT1GHrIZM4Frtm-yDmJ6XWtQ5NEVZd5rucKnIwbTunegsY6xNtq2OtQoPcHuiiUlVvlPfIyQY3pVik-hdN1NVMJylfUC2L1FHU','Dr. Ybarra, greets you at the door RN Katrina give special care ER Tech Cedrick made me feel like I was right at home Rad Tech very supportive Reg: Therisa was very patient, kind, and offered good hospitality Overall they were a wonderful tea','2020-01-04 02:53:50.063000','2020-01-04 02:53:50.063000',5,'Regan Johnson','https://lh6.googleusercontent.com/-nxJVLRp6QC4/AAAAAAAAAAI/AAAAAAAAAAA/oT5wReu4Q0I/c-rp-mo-br100/photo.jpg','8679688254631342173',8654),('AIe9_BFL0OZrFaHgoJtqifT1GHrIzMJV2oF-me7VZ_RFQQiSJPpYvna0T8iXVVmkDhWjKQpcGk6PuPukRlVVA0_OJQEJkZPKTkeie4HFbYL6vfi26Z-MzoA',NULL,'2019-06-08 19:54:21.048000','2019-06-08 19:54:21.048000',5,'Breshan Smith','https://lh4.googleusercontent.com/-b8cZxgSda1s/AAAAAAAAAAI/AAAAAAAAAAA/qkmxyWC4JBU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIzP3i8XK5kSpfWR3j44boQyfKhsrkGWd6rDNJsyzapVsVDKAkZuUyFnsb-8K0ZrZwaf-Uvw2buUU8wTvuAOFwo6MF5wA','kind, caring and professional staff. Patricia greeted us at check in. She made it very quick and easy. Nurse Dana took time to explain what meds will help my daughter and she even showed her how to swallow a pill. Dr. Nweze was very kind and she really did an excellent job at explaining what my daughter needs in order to feel better. \nThis is an awesome and excellent facility. It is extremely clean and the staff is extremely kind and professional. \nI will definitely recommend to my friends and family.','2020-01-31 13:24:43.745000','2020-01-31 13:24:43.745000',5,'Barbiedoll maddie','https://lh3.googleusercontent.com/-m7MyDeICwuo/AAAAAAAAAAI/AAAAAAAAAAA/6TY59OvqEqM/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',10414),('AIe9_BFL0OZrFaHgoJtqifT1GHrIZrtCQF_zsHYy4aJUgstDr-bSkf6E5mBWtPa6DRCprkLNAMSFq76mZLQj8oTRc14JV0QLChhF_ADBYuS4w3l0IpmA1Qo',NULL,'2020-07-24 17:24:50.846000','2020-07-24 17:24:50.846000',5,'Maya Jarwan','https://lh3.googleusercontent.com/-GndWjfZ-_vM/AAAAAAAAAAI/AAAAAAAAAAA/uXJWRfWxTvQ/c-rp-mo-br100/photo.jpg','16590124370714063921',22658),('AIe9_BFL0OZrFaHgoJtqifT1GHrIZTZZ-OPfamDA2w-iAiYPZlxFJyNKKA8MBMkVVRi0pxykxzQJx2PJuIUPa1gxFNdfY7fALxpiMj-YrttnYfVX44depCg',NULL,'2019-06-07 17:58:21.565000','2019-06-07 17:58:21.565000',5,'Sydney','https://lh4.googleusercontent.com/-ZDcmRjeGf5Q/AAAAAAAAAAI/AAAAAAAAAAA/RNG9FNvvDEU/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFL0OZrFaHgoJtqifT1GHrIZZH3JdXfV4j_Hnku3bYEGJbOj2sB8baE6a1mXa3kSc6RowoEHVSkp206Kq3tPlj9uCN2b9UPB2AiQkhufRS0nLePB1I','After coming to Signature Care I was very impressed. I was greeted by Kimberly and helped right away at the front desk. In a matter of minutes, Remington, came and took me to the room that I would be in and was asked if I even needed a blanket. SignatureCare is an amazing facility and I would highly recommend it to anyone else!','2017-08-18 19:10:06.460000','2017-08-18 19:10:06.460000',5,'Anthony C','https://lh5.googleusercontent.com/-se1PBUTzddk/AAAAAAAAAAI/AAAAAAAAAAA/hb1S45e7-gM/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3960),('AIe9_BFl89CEg3-ah5_8iIgQFwgZ_uUIF4jbx8d9JRaN6iOhEQylJB2StTucL2Rsu7jwX09zX-emG0JQ9_V97amouPfmDQQGY6LgbAwFPIWnyx7fqoUeitM','Being sick over the Christmas holiday is rough because no one is open but my husband found SignatureCare online. The staff was friendly, attentive, and saw me immediately. They offered a blanket not only to me but to my husband and mother who were with me, which was really nice. This place works like an emergency room minus the long wait to be seen and treated. I highly recommend this place during those unfortunate times when you need to go to an emergency room or urgent care facility.','2016-12-27 12:35:12.594000','2016-12-27 12:35:12.594000',5,'Virginia Contreras','https://lh6.googleusercontent.com/-OAGXFfQpsBA/AAAAAAAAAAI/AAAAAAAAAAA/pnpr-5-ZOrQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1927),('AIe9_BFl89CEg3-ah5_8iIgQFwgZ1T225eksHHM4sA3ttN3mDXEe0zRZy46elKs-HDk_ur5_4RJN5W9-Cjv28hR-MQllsIWQ9QSAlMHGPZDkETnLRpLnxrM','I went to emergency due non stop bleeding finger despite of applying pressure bandage, Upon arrival within 2 minutes, Nurse attended me and asked me to follow her, I was given immediate attention and care and returned home with entire satisfaction .\nThe entire staff was very courteous and polite and handled my injury in a very professional manner.','2019-01-17 21:02:49.030000','2019-01-17 21:02:49.030000',5,'Muhammed Ahmed','https://lh4.googleusercontent.com/-zdaw0-U6Bgs/AAAAAAAAAAI/AAAAAAAAAAA/XXkhLSA4qi8/c-rp-mo-br100/photo.jpg','17898197009688164559',5884),('AIe9_BFl89CEg3-ah5_8iIgQFwgZ4bvmuwRVtlhWPWXloPJkhsw71nTWmUmMa9hk6De1ZCDMtN7bswau8fFyGa6yZ2BHtoDpqddTQyGilkUMPHHAxTOZhgQ','They got us in quick and were super friendly the moment we walked in. Husband is all stitched up and ready to go!','2019-09-17 03:37:51.116000','2019-09-17 03:37:51.116000',5,'Jacelynn Moroles','https://lh4.googleusercontent.com/-FpwgDE3kImA/AAAAAAAAAAI/AAAAAAAAAAA/Llp4xB2i7Ns/c-rp-mo-br100/photo.jpg','13486358490203335051',827),('AIe9_BFl89CEg3-ah5_8iIgQFwgZd1BpA8hUr21-igd7YkxheyJWC-Na8ygy0Cl12y8KEykV7vopzJfYexXWavLdKqG8cTXf4ZuQhFjjs9O71Luwka0GjR0','This place is amazing, the quality of care I received, which included x-rays and ct scan, IV, etc. etc. and course very personalized care for an unbelievable price of $1,300. They covered everything, just excellent service all the way around. I think they will be the leaders in ER service/care. I can not give them enough praise, so very impressed. Thank you, thank you thank you, sooooooo much!!!','2019-08-22 14:37:07.812000','2019-08-22 14:37:07.812000',5,'Larry a','https://lh6.googleusercontent.com/-v3aHCwZemmc/AAAAAAAAAAI/AAAAAAAAAAA/k2ontrtP30E/c-rp-mo-br100/photo.jpg','3511292162159714121',7194),('AIe9_BFl89CEg3-ah5_8iIgQFwgZdrMvd9UflF1lKyYvisXNoRL8oaFh9tthG8zA0nkXtmZw1c-rsPz_cEEEW7GO4i9DB-dW6bBGBOdYcqyDAcqIbW_51AA','Great experience! Love Savannah, Audrey, Jamie, & Daniel!','2020-03-10 20:26:56.982000','2020-03-10 20:26:56.982000',5,'Aimee Patterson','https://lh5.googleusercontent.com/-aIq7D0Vf59k/AAAAAAAAAAI/AAAAAAAAAAA/A7t-ejZSjrY/c-rp-mo-br100/photo.jpg','13486358490203335051',20925),('AIe9_BFl89CEg3-ah5_8iIgQFwgZe45EKoNVfREIGAvR9BMSO1oS5Wfqe_Q5g4n9zrfPEDGdj-4tvGHzM3h-7mWLarIGhOgJQGE6g_nvNUzaUaK0RFTj95s','Had what ended up being a crippling muscle spasm. The staff quickly helped me by coming out to my vehicle with a wheelchair to get me in and got my pain under control very quickly. The facility was extremely clean and quiet. Everyone from the receptionist to the doctor; Shania, Jose, Allison, Leah, and Dr. Appiah, were very professional and took excellent care of me. I can’t thank you all enough.','2020-02-29 02:55:09.272000','2020-02-29 02:55:09.272000',5,'Joshua Rooker','https://lh3.googleusercontent.com/-oMApUWKSoqs/AAAAAAAAAAI/AAAAAAAAAAA/FczoqrBpo38/c-rp-mo-br100/photo.jpg','13486358490203335051',13408),('AIe9_BFl89CEg3-ah5_8iIgQFwgZecidAdYPMVfxLrXsNsTNSHGkmz1uzXrS5uLTVPhHkhKmaQLGrLF0vxpMhsldGoBd345CKHB-_Tc1rCw-uF36hKwTiJM','Wonderful visit. Walked in with my 13 yr old son\'s finger bleeding from a severe knife cut. We walked right to the back and got to business. Doc explained all and kept my kiddo occupied as my kiddo gave the doc detailed info on his favorite hobby. Doc kept my son distracted by asking detailed questions about the hobby. Numbing meds and 10 stitches later we walked out of there mom and son happy. Glad this place is in the neighborhood.','2019-03-04 20:02:42.402000','2019-03-04 20:02:42.402000',5,'Cycy M','https://lh3.googleusercontent.com/-rS_kDkjrtb4/AAAAAAAAAAI/AAAAAAAAAAA/F2QqcKFxMUQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4332),('AIe9_BFl89CEg3-ah5_8iIgQFwgZgklDAaXSGrY1ZD2T_0StG163kSsW-yMxpBOsYE3MNRkmLuM2TTUqZ8lmVy7qVW9iHCj23c5BCewz8UYVV1MeWfD_c1A','Alvean my nurse was fast with getting me in and out I was there less than one hour. I was seen the lady in the front Chanel made sure my insurance info was put it and I was see in less than 5mins. And Brian was quick with taking my blood pressure I highly recommend them I wish I could give 6stars I’ll be coming back.','2020-01-21 21:19:12.442000','2020-01-21 21:19:12.442000',5,'Gloria Sayles','https://lh5.googleusercontent.com/-g-5er3TfKbc/AAAAAAAAAAI/AAAAAAAAAAA/FEYmXlUCL7Y/c-rp-mo-br100/photo.jpg','16389487648212004696',10199),('AIe9_BFl89CEg3-ah5_8iIgQFwgZhg2q3Qb3bdzXZBBRTUN4FJmfeVF1AjAP4JPg3RS0PfDLLgbPDruvJoo9K7pihEvglI4jktSzYtoycGTuaeTrXpI5jNc','They don\'t take medicaid or Medicare. Call first','2018-09-20 01:00:43.370000','2018-09-20 01:00:43.370000',1,'Timothy Riley','https://lh4.googleusercontent.com/-2HzQ739Tu9o/AAAAAAAAAAI/AAAAAAAAAAA/pwjjOoRNjy8/c-rp-mo-ba5-br100/photo.jpg','3272657195432704501',7103),('AIe9_BFl89CEg3-ah5_8iIgQFwgZJ1kjaktUhHeCtz2zlqWw_GHjHu8k7Xp7r8JJrXP7uBjCU3LH4dX5Gr2q_wjFv8OJyWcKvAGFErdJaEKQtrspQwSfWak','Since the first time I can about a year ago still come back every time for the excellent service and care I receive here. Awesome job.','2018-07-15 20:05:35.417000','2018-07-15 20:05:35.417000',5,'Nora Suzanna Ramos','https://lh6.googleusercontent.com/-RjOIBTmJsF4/AAAAAAAAAAI/AAAAAAAAAAA/2g0A5P6TXuM/c-rp-mo-br100/photo.jpg','14567670160750071148',1600),('AIe9_BFl89CEg3-ah5_8iIgQFwgZKMpdHc2JgVht4eSHknGlNFZQU_r5BmpETGe9irVMvA1gko4zSeIQAQD8z7gclVUWzpUVCm6f9fEvSpdHwMPzOBpXqOA','Tricia Jani, Jordan and Dr. Harjai were very nice and friendly. I walked in and was seen within 10 minutes of arriving. I saw the doctor and was out within 15. Highly recommend if emergency care is needed','2019-11-23 17:45:29.798000','2019-11-23 17:45:29.798000',5,'Tamike St. Jules','https://lh4.googleusercontent.com/-B2M_CcC9unk/AAAAAAAAAAI/AAAAAAAAAAA/HYIFIVG47d0/c-rp-mo-br100/photo.jpg','16389487648212004696',2639),('AIe9_BFl89CEg3-ah5_8iIgQFwgZMN--i_ZVMvBk23dby7uXS5HkMFIqo7SA_o5IMBd-xGz9yEWCkCsrK3htPX9f0gtKbcvrHCRX5WO70PQD_r4XU_sbfvI','This is one of the best medical service I had in a very long time. They are very caring and fast so you dont have to wait a long time!!!','2019-02-19 15:41:58.652000','2019-02-19 15:41:58.652000',5,'Courtney Cortez','https://lh4.googleusercontent.com/-6-XI2wEgTHA/AAAAAAAAAAI/AAAAAAAAAAA/FyLl-nczFsc/c-rp-mo-br100/photo.jpg','8918455867446117794',9175),('AIe9_BFl89CEg3-ah5_8iIgQFwgZponoKBaJ_TjVkB-_JJAoecXrdAnlvb9exMs1pYpjzeXBW5Tz8uyCldQ2egCUCBzA7BVFvDuagUhHsuO6lCw8PEyq7l0','Thank you so very much for taking such great care of me the day that I cane in and found out i had strep , I was attended to immediately and given the best service and evryone was very inviting and friendly Thank you Thank you!','2018-03-06 20:03:27.546000','2018-03-06 20:03:27.546000',5,'Val Cave','https://lh5.googleusercontent.com/-dSKwM_zFqRI/AAAAAAAAAAI/AAAAAAAAAAA/vZJHmKewk2Y/c-rp-mo-br100/photo.jpg','16891069708558046635',4503),('AIe9_BFl89CEg3-ah5_8iIgQFwgZX1pqJlGjzunpiEv8numpOVRjOMIiY_njJHfu5eYhQPUetuweI2x0nZ-3odENPBqe3vWU7-z5NRF8F-7cRrNOpQxZ_Gs','Taylor at the front desk was really helpful. The nurse that took care of us was awesome.','2017-05-13 04:12:26.391000','2017-05-13 04:12:26.391000',5,'Pinkal Patel','https://lh4.googleusercontent.com/-OTBnuF0Qsbg/AAAAAAAAAAI/AAAAAAAAAAA/yQtsfZZ_Aw8/c-rp-mo-br100/photo.jpg','16590124370714063921',3988),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM_1JPXmCWqwKuBcllGXH2E0SoCMHwzB_oPorOc4tGn-fSFdUGu8ojNekNMpkXdsjN3ZhBALpGKJMgoP_ClmevJoT-mmM','Very professional, and the people on duty polite and kind.','2020-07-22 14:16:44.143000','2020-07-22 14:16:44.143000',5,'Cesar Pineda','https://lh4.googleusercontent.com/-ve4l77cGr-w/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmyLeAq01SW1AgNNpyhpWmTkTpozA/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21877),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM_KUuGYaJ8mFuGKDvLvYEyuS-w90QXSPrOEwHwsF6M9TmMTFtaSfSqXbL7I1JnoCml6E4z3XGpP0lg6H1C0AN-k59TdM','I had a wonderful experience at Signature Care Emergency Center Montrose. My son was having trouble breathing due to a virus and I got a little nervous so we took him in late night. The staff was friendly and we were seen right away. We saw Dr. Akunyili who was amazing. He was attentive listened to our concerns. He was great with my 3 year old. He even respected my wishes to only give medicine if absolutely necessary. I appreciated his honesty, experience and openness to my views. The facility is clean and a security guard escorts you out, which is nice being at it was 3am. We are cash pay and the price was very reasonable. Hopefully we never have to go again, but if we do need urgent care this is our place!','2018-09-07 15:57:30.942000','2018-09-07 15:57:30.942000',5,'Alayna Pagnani Gendron','https://lh5.googleusercontent.com/-WFyavlPocdk/AAAAAAAAAAI/AAAAAAAAAAA/ymgProlf-3c/c-rp-mo-br100/photo.jpg','3511292162159714121',7602),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM_MnQKVFvH868n_kBnJ83kSQvHM6Gjvs6StSWBvoI631nsaEfcJTOpO_6eWdRLQQa1NGUw39i6r5QkNzCcblrAM4XkkA','I had a great experience! Everyone was professional but friendly and knowledgeable and the place was clean. I would definitely recommend this location to family and friends.','2018-06-06 12:55:03.897000','2018-06-06 12:55:03.897000',5,'MaryKay Cannon','https://lh3.googleusercontent.com/-P3iVpNfI1F4/AAAAAAAAAAI/AAAAAAAAAAA/QQ1NlLfvuyA/c-rp-mo-br100/photo.jpg','14567670160750071148',1611),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM_Oo-0JgTi_JR2CE3nO_mscbIcEM8lWBlgLO8ZtCaSqcYcLPbKDkLV2xSniAACuPL75q0HOZHxukhdR2nzqeF5ofmf9g',NULL,'2020-06-03 21:35:41.084000','2020-06-03 21:35:41.084000',5,'Margaret kearney','https://lh6.googleusercontent.com/-tjcv1sU45X8/AAAAAAAAAAI/AAAAAAAAAAA/qDeUTHW8DLk/c-rp-mo-br100/photo.jpg','16389487648212004696',21971),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM-bfUepzLqvRcJOL89x87xo1kDztDzOgutjCfWNvc5IGh5cV3xtqX9Kgt20MTIzxWLVptYB96wdBH_JzN7DL8NPSYGMc',NULL,'2017-12-23 15:30:50.957000','2017-12-23 15:30:50.957000',5,'Elizabeth Flickinger','https://lh3.googleusercontent.com/-RkO2KFvpCbM/AAAAAAAAAAI/AAAAAAAAAAA/ZDVMXhlbpaU/c-rp-mo-br100/photo.jpg','16590124370714063921',3893),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM-dE7vJohvT03ZPqDcc0XT0LqRrXx3XASlruIHqP5YJh-Jolm9lFVkmsJVMTGvCoTQ9uRpB1XUqX6it23ZNXGq7jX9m4','Very great service and great care would highly recommend.dr ding,Amy and Chris were just awesome thank you so much for caring for my husbands needs','2019-04-27 16:18:26.265000','2019-04-27 16:18:26.265000',5,'Mia Gonzalez','https://lh3.googleusercontent.com/-MXcTeGm5nUs/AAAAAAAAAAI/AAAAAAAAAAA/mLgzp519tQ8/c-rp-mo-br100/photo.jpg','14567670160750071148',1343),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM-pD8H6-iOatAvpfcFqMUBr9H8Ujd8w_2CrI4bzgeP6VUILv8MI5_fwnGiplx4hXBmVhJp21plsZ5Kq6tLJF7gS76E2g',NULL,'2019-12-27 02:54:39.573000','2019-12-27 02:54:39.573000',5,'TexasMom 23','https://lh4.googleusercontent.com/-m9qdct_D9gM/AAAAAAAAAAI/AAAAAAAAAAA/6Ww0IZ2QXFU/c-rp-mo-br100/photo.jpg','8679688254631342173',8671),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM-SM_cOhhbkHjxf0gvFf23t7LPeS66kI7rj4VDN9I9FZmmUQSxOYcYNX5hkRPaXbYg-_wP_E8jKgtgGLmPDivKy7ro04','I’ve been here twice and received excellent care and service both times. The staff are friendly and seem to care about your health.','2018-12-25 17:33:43.522000','2018-12-25 17:33:43.522000',5,'missmopar05','https://lh5.googleusercontent.com/-mwIs-0xK6hE/AAAAAAAAAAI/AAAAAAAAAAA/OAyQQiVyNG0/c-rp-mo-br100/photo.jpg','16590124370714063921',3601),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM-WvYXUKP8n8F9V_EkxBSFT7JbaNl-hhlMSIuqf-AHCIb22zA_FEojLxSbx_pCbolek-4K8srFXnOUczaljScIfVlAeM',NULL,'2019-09-15 19:11:18.323000','2019-09-15 19:11:18.323000',5,'Rey Zapata','https://lh3.googleusercontent.com/-JubR-IEeRMg/AAAAAAAAAAI/AAAAAAAAAAA/GIZy4hV6A6g/c-rp-mo-br100/photo.jpg','17898197009688164559',5547),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM-ZT-TGLYKukdCba2vrFO0WE2LbIdsusDUA07hhiCXZJg5wGe7A71y9NDI0qp3vKdsnkfoLhp3dU3zXwaEhb-iQhH9hE','I had the best experience here at Signature Care. Jackie in Registration was super helpful with all my questions. Trini, Pete and Dr. Daniels were so sweet and really made me feel at ease with everything going on. Marcus was really nice in doing my ct scan. Really detailed with all his instructions and made me feel very comfortable.','2020-02-21 05:47:29.969000','2020-02-21 05:47:29.969000',5,'Rosalea Leyva','https://lh6.googleusercontent.com/-VgXG7HSkqvg/AAAAAAAAAAI/AAAAAAAAAAA/k0UQzaiaAGg/c-rp-mo-br100/photo.jpg','6521947413723274945',14565),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM04QECfShFEZqqSwWPwwLuO2Ph4wgfyZYi1X2Ayoj9XONnmOwc36aU15YcE_rN1Q7BTQMW4YS41JzNIrRQ9TaqAbUHCM','Alvean A. and Jocelyn A. was very nice and made me feel just at home.','2020-01-15 14:14:20.035000','2020-01-15 14:14:20.035000',5,'Joy Wilton','https://lh5.googleusercontent.com/-Do8jO8m_b98/AAAAAAAAAAI/AAAAAAAAAAA/dq4kFSR4FJY/c-rp-mo-br100/photo.jpg','16389487648212004696',22636),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM05YZiSH7gffbi6OiIU_eWHMbgnb9T7YBBRzS6z7i5l75f35cKtNFQhxv8J9A9z17ygwHueCLLKGTVG5xgqp3iHbDh7A','great place for all your medical need','2019-07-11 18:47:12.691000','2019-07-11 18:47:12.691000',5,'Brysen Foreman','https://lh3.googleusercontent.com/-RAmBc3RgsEc/AAAAAAAAAAI/AAAAAAAAAAA/-3vOaVNmCww/c-rp-mo-br100/photo.jpg','13486358490203335051',895),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM0gDIiMAOiGLJ7ZJ42bYk-6h46LIphsT2m8f0_PPUtWR_ZAgszr3aouUWI1frOuaaV5OVP_5gj42zygnCypWO2NV0GMA','They were great and fast working they always help with my little ones ! I Would recommend them to everyone! Both the nurses manny and adriana were amazing really patient and just love how dr. mauldin was with my baby girl !','2019-12-04 17:08:59.303000','2019-12-04 17:08:59.303000',5,'Mariah Garza','https://lh4.googleusercontent.com/-BZ9nOvrzrhQ/AAAAAAAAAAI/AAAAAAAAAAA/ECV-PPBFoW4/c-rp-mo-br100/photo.jpg','6521947413723274945',8078),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM1B26NOslPLjLi587CXEd5IKUPDXPgW_2kQtBL1nfazXAzMtne4KnExGNaRabqtWGOr16ABWvbHUwLeMHnkZxJ71TpV4','This place treated my daughter like a princess! Excellent people and excellent, fast treatment. Jessica S at the front desk was quick with the paperwork and extra friendly. The nurse Araceli was great and Doctor Elsbecker was spot on.','2020-02-27 17:29:10.014000','2020-02-27 17:29:10.014000',5,'Brandon blake','https://lh4.googleusercontent.com/-A7iMuZMIxFQ/AAAAAAAAAAI/AAAAAAAAAAA/Qxv98M-tJIA/c-rp-mo-br100/photo.jpg','6521947413723274945',14540),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM1mQkfi2dqVQE5Rc29hXmO5q42shKFZfpBJCSO7ecAsmVdCV2G0h5Bjbjmkqfy7RDSjwbd04RkfJxn-SMPmQ2se2Kqc0','My experience here was nothing less than amazing. On December 29th, 2018. I walked in to this facility for the first time. I was greeted when I walked in by Austin and Kelly at the front desk. He was very prompt at getting my info. Due to my complaints he quickly got a nurse. Nurse Karen and Tech Jennifer admittedly got me in a room and began working. Soon after Dr Jones came in and began to ask questions. I began to get overwhelmed, he kindly explained that he need to get as much info as possible. He apologized for having to repeat some of the questions. The entire time Karen was there to comfort. Dr Jones then explained what they would be doing. Test where ran. Everything came back ok for my initial symptoms but he was a bit concerned. He contacted a cardiologist and soon got him. I facetimed with the cardiologist. I very kind man. He also was concerned. I was then admitted for more test. Shift change started and a new crew came. Nurse Lucas (Luke) came he and greeted me. Tech Kim came as well. The staff here treated me with the best care ever. They all showed love and compassion. For this I am truly grateful.','2018-12-30 13:41:08.434000','2018-12-30 13:41:08.434000',5,'Tonya Cooks','https://lh3.googleusercontent.com/-qF1ydvk64R4/AAAAAAAAAAI/AAAAAAAAAAA/kviINFhkSOI/c-rp-mo-br100/photo.jpg','3272657195432704501',7079),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM1uk9smRFhFDfVI9TqReYuC9GKYqoHxFPMjW8KZbsCT5NjwgHJzDUkGXBuoYrtCJ29F1nsvQQEA0kAwbor1J9Bj9yjHM','Choosing SignatureCare Emergency Center to treat my son was a wonderful decision. From the moment we walked in, we were greeted with warm smiles. The staff was friendly, polite, quick and knowledgeable. The doctors and nurses worked fast and efficiently to treat my son. My son voiced he was cold and he was immediately offered a warm blanket. The doctors and nurses gave him stickers as well. \nTo treat me son, he needed a prescription. The staff went above and beyond to find coupons for the prescription so I wouldn\'t have to pay full price. I highly recommend this place! Staff was patient with paymentand provided several payment options. I didn\'t feel forced or pressured. Best customer service hands down.','2016-08-16 21:05:01.087000','2016-08-16 21:05:01.087000',5,'Lauren Griggs','https://lh6.googleusercontent.com/-eMcpeSNhNqU/AAAAAAAAAAI/AAAAAAAAAAA/FMMbg3ADdw0/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7952),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM1vDlPjR2zWlVrloNaZ60mHcNCtO1iTZaypCW4NI7pdMIdaPgoJb_b4-WgOnkavk6FznApQOVFWqUYBu2vnXTgum-igs','Great people that work here, took care of my son really fast. \n\nRN: Irving \nER Tech: christian \nRAD Tech: holly\nRegistration: ana\nDoctor: souman','2020-03-07 06:16:48.419000','2020-03-07 06:16:48.419000',5,'Jose Olavarrieta','https://lh3.googleusercontent.com/-fdXVKv5CNHw/AAAAAAAAAAI/AAAAAAAAAAA/pFlJykJEAjE/c-rp-mo-br100/photo.jpg','12541597562633926366',13309),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM1WSmCO52P3L7-1TmYEk-MXjq1-wpCPp2y8Qj14TbrvgF09Mwfh0Vfdj5kjfjjvVuFkpapAr8y02P45p1HE46q_wLI-U',NULL,'2019-06-18 19:21:31.324000','2019-06-18 19:21:31.324000',5,'LIBERTY ANDERSON','https://lh6.googleusercontent.com/-ZaeY4q8J-G8/AAAAAAAAAAI/AAAAAAAAAAA/00BO69-s3JI/c-rp-mo-br100/photo.jpg','13486358490203335051',951),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM1ZubwSwtz2Z4C-mYDric6itTUxr_gutFqdCsxYNhcM6Hhdqknox8au08WVDAKLztPHOBKbP3lh7fX5f24zihw5dL-vI','Great service. AmaZing snacks. Alexis was super helpful and my friend can now bend his pinky 🙌','2019-02-14 04:49:28.481000','2019-02-14 04:49:28.481000',5,'Larry Zhang','https://lh6.googleusercontent.com/-qk0LQNC1lXs/AAAAAAAAAAI/AAAAAAAAAAA/v5i4dv8MF-8/c-rp-mo-br100/photo.jpg','16590124370714063921',3549),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM21o2I8kggRSrI9DP7RK5hzR3esRCHUiqKXEP0e8XxpH-6bRrSaa-IEBy65p23nrzyNIp-WAJaaJkE30_1IOL-8W_Xv0','Dr. Kotey and Nurse Gina/Chris were super professional and put me at ease about my cold symptoms.','2019-06-21 00:41:31.028000','2019-06-21 00:41:31.028000',5,'Kamal Shah','https://lh6.googleusercontent.com/-ZN9k0I3SobE/AAAAAAAAAAI/AAAAAAAAAAA/IKnAKQKb7Cg/c-rp-mo-br100/photo.jpg','3511292162159714121',7295),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM2c0CB4OD5EYqT6d0o23v6Q5Rsdy5QrFG3cvNd2LW3iUMeLcY9e2p5M30Cvb_wG7fZPLaBwEhtM15pcs18EKfGBlzl9c','My experience here was quite enjoyable needless to say. The workers work very quickly and show patient care. Immediately I was greeted by Jocelyn who showed great concern and patience. From there, Jose, Tricia and Erika made the experience even better. My nurse heather was amazing too. In case of emergencies, this is a great facility to trust with your care. I recommend everyone to give them a try','2020-03-09 16:09:28.277000','2020-03-09 16:09:28.277000',5,'Vicktha Bee','https://lh3.googleusercontent.com/-LewMAiDP71o/AAAAAAAAAAI/AAAAAAAAAAA/p8cKZJdbja4/c-rp-mo-br100/photo.jpg','16389487648212004696',13718),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM2JW13ummW17xn9PSfbXWFNyL341-Hpz-48jfIVl1MuquH8hv-5H_ozG-b61wpEFfGUYT8E6FgetF3mCcow2uswADlsc','Lizzie was so nice! When we came in she had all the information we needed and helped us understand the insurance stuff. Great service!','2019-06-28 04:01:04.223000','2019-06-28 04:01:04.223000',5,'P Badell','https://lh3.googleusercontent.com/-ZS4r8cm1f6c/AAAAAAAAAAI/AAAAAAAAAAA/x6hxdk5XCjk/c-rp-mo-br100/photo.jpg','3511292162159714121',7279),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM2mX6epbUTe3Aqorp1_g6vI3Rq7sCGIdPTtKi92fh3JWJzCBLawaWYu8J5KO3eKVoiQ25noBsqBNdGqfjZioubyLy04o','great place! Staff was friendly and so caring! Jessica S. Was awesome and so helpful. Jorge and Sam were extremely quick and great!','2020-06-10 16:25:36.412000','2020-06-10 16:25:36.412000',5,'mckinzye riley','https://lh3.googleusercontent.com/-0PyePMt46DQ/AAAAAAAAAAI/AAAAAAAAAAA/U5xiFQCrM30/c-rp-mo-br100/photo.jpg','14748677429039074158',21769),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM2O8BlBqS4MC60mE4XvFwJI91V_Cz0lj_LehCeJXhbnSCZK-PNwRbXPR5B_63P3FN3nCYfjiY7DocEYgpNKSK5OwRr3w','Could not have had a better experience. Such friendly staff who did more than what most ERs have done. Extremely helpful and kind to the patient and family member. Would recommend to anyone in need, you guys did a great job!','2019-05-22 08:23:52.284000','2019-05-22 08:23:52.284000',5,'Syd P','https://lh5.googleusercontent.com/-xv6I0XyXFa0/AAAAAAAAAAI/AAAAAAAAAAA/zHqgCQIVErw/c-rp-mo-br100/photo.jpg','2694018788013845459',6150),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM3ia79dumiCz4XrFBaJ77ZfYjoJQuB0IzPt0LlXeXFriN9fNedG6SguV22toy7Gow4wPvZ2SmNabPFR4m6Je_MYVqLQ4','(Translated by Google) ❤️❤️❤️\n\n(Original)\n❤️❤️❤️','2020-02-04 21:08:18.021000','2020-02-04 21:08:18.021000',5,'Reina Magana','https://lh6.googleusercontent.com/-pTlQtgM4Pis/AAAAAAAAAAI/AAAAAAAAAAA/h4P2n5eTdb4/c-rp-mo-br100/photo.jpg','14904078213800803294',13609),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM3JjEoyWqBJgTbwg2h47hEtyxj-fbaD1x7K-oM6IeaZw6ZTDGWWfEueI3VO9fK_IFVhDp5bUyfJtj2j853v2h8a0YDW4','Unfortunately had to make a visit on Thanksgiving. I was very hesitant to go in, but I won’t be next time. The facility is extremely clean and comfortable and everyone was very nice and supportive. Shelli the nurse and Chris the tech took great care of me. Most importantly, you will always see a board certified emergency medicine physician which is very important to me being a physician myself. I would not hesitate to bring my children here if the need ever arises and would highly recommend this place to all my friends, family and coworkers.','2019-12-03 12:45:50.130000','2019-12-03 12:45:50.130000',5,'jennie moreland','https://lh6.googleusercontent.com/-K7Kxg-qbpqg/AAAAAAAAAAI/AAAAAAAAAAA/OSxJlkEynUo/c-rp-mo-br100/photo.jpg','16891069708558046635',4131),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM3lT3ZfRiLHtabz23GxIgtCBY8g1bBGejS2E9sr0TGCvbG113BCGA87z80l5V_f3i4gvGtRcpZXC7-OEDbuEd7fRtUPs','I just got tested and had a good experience. The staff is very helpful and informative. They answered all questions in a kindly manner. Also quick results in 15 mins. I recommend coming here for testing.','2020-07-20 16:11:07.610000','2020-07-20 16:11:07.610000',5,'Joel Ruiz','https://lh4.googleusercontent.com/-azRvX8tzZGM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclTjXUu2JA_NtNlvwdooDK6qptTUQ/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21880),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM3saJH5RXfIGlIQwXfpy174iYe9qTHSt7cZEmo2_DSKgmhx8j3gKSI27OdHd-WEwNL_WPGQu2jtEGJyZxZ2Bi5WiMxfU','Tanisha was very nice & helpful when calming me down.','2019-02-08 03:51:33.121000','2019-02-08 03:51:33.121000',5,'tee ricks','https://lh4.googleusercontent.com/-Yspr6ISrCGI/AAAAAAAAAAI/AAAAAAAAAAA/-6Oa1tWsS3k/c-rp-mo-br100/photo.jpg','17898197009688164559',5862),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM4WuGavcZ2IIv1MMXdyWsHh5sQa7hQf5FUGJ7uzRZaDpbRbyiVOCw-JjTQMJXBwUvp2VI1JqBu_HA4CacauvBQd-qvFs','I love this emergency it\'s very efficient and speedy everyone is so nice and personable! My nurse was Alvean she\'s very sweet and helpful and Dr Pham was very nice and gentle! I\'ll always recommend this location','2019-05-15 18:56:15.993000','2019-05-15 18:56:15.993000',5,'Matthew Bereal','https://lh6.googleusercontent.com/-UycJd2Vpf7E/AAAAAAAAAAI/AAAAAAAAAAA/N0IYybcQqD8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM5eNjBu1qTVr7qDein0DhWz37nCiVZH2Ds7GVwkvFkTUbzsRtxIucP_DEVFu7qKhNhJXmyqX6UHtabFxjysG5Qx6mXtY',NULL,'2019-10-18 18:24:17.760000','2019-10-18 18:24:17.760000',5,'Jamaryon Noble','https://lh3.googleusercontent.com/-6kAXIhnK89U/AAAAAAAAAAI/AAAAAAAAAAA/6UTTFyi5ADU/c-rp-mo-br100/photo.jpg','16389487648212004696',2802),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM5may6C2-ssvDQI3bsK2gCb_8AgNTnVfG09mTLPN4XP3WxWOlWeHDfUNNzFVsP6BBa5s86uUEuWnQkVEZkDidrIyPr-A','Alvean and Marcus really helped me out and in a hurry ! Very kind people !','2020-01-07 19:40:01.484000','2020-01-07 19:40:01.484000',5,'Dahki Adams','https://lh4.googleusercontent.com/-WiGi43n9Em8/AAAAAAAAAAI/AAAAAAAAAAA/JSuBswiJQVQ/c-rp-mo-br100/photo.jpg','16389487648212004696',9427),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM6_E9Pjm9IHo75PwiUzzkdhSVBFsKdtIOR_5XxGwPKMUFZhYQ1YilrjSfWJ57NDb4Y2CAdNaojCefQmROyIpUlGPI4pU','The atmosphere was great as soon as I walked in. I arrived around 9am on a Saturday and the waiting room was empty. The nurse behind the desk was efficient at getting my paperwork done and getting me back to be seen. All of the staff were very friendly and professional. They offered me a warm blanket as well as a snack or drink. They really go the extra mile.','2020-03-08 00:12:22.469000','2020-03-08 00:12:22.469000',5,'Theresa Morgan','https://lh3.googleusercontent.com/a-/AOh14Gg-KWp480tR0sAFs1AnwINEQcoNCIioUkzs3Q5TQA=c0x00000000-cc-rp','8626688543755174284',21187),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM63sExR-PpyIWaGR1OJiuAh7N59PFiFLB5r9oxRMjoJl452WHLejwABXmZ2LCw2vYeWWrBLl6Pj7TPXja1qHgFrxD8ac','I had a great experience at signature care with Anthony, RN, Natalie with tech, Dr. Vakey, J.R. With x ray and Angela with reg. Everyone was so nice and helpful, and there was no wait!','2019-01-22 00:03:55.434000','2019-01-22 00:03:55.434000',5,'Georgia Peyton','https://lh5.googleusercontent.com/-ObvD2kBkZ0Y/AAAAAAAAAAI/AAAAAAAAAAA/O-bpBEXLY0c/c-rp-mo-br100/photo.jpg','16590124370714063921',3580),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM65bwxz20pGXOK5xBM5X_igYQ3xxTLMdLh8dvqtrtY3OVcG3U7zT2lCZJonLjLx8gpVxVbWcqYd63YxFtszYZT3zsApw','Signature Care was amazing. I brought my 9yo old and everything was so simple. The care from Dr. Vackey & Nurse Jacob was nothing less than perfect. They treated her promptly and explained everything to her and I both. Making a sick kid smile is not an easy feat but both Dr. & Nurse had my daughter smiling throughout her visit. The facility was nice and clean and the entire staff was very pleasant. I highly recommend this facility to anyone in need of medical care.','2019-06-24 09:50:41.242000','2019-06-24 09:50:41.242000',5,'James Stewart','https://lh6.googleusercontent.com/-crKsXdKa7o8/AAAAAAAAAAI/AAAAAAAAAAA/hXTjp1sAfLY/c-rp-mo-br100/photo.jpg','16590124370714063921',3338),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM6KUTMxIfcjqNUzDt3tTzfrbPdLOa_zpsM7wkTAB_D4SwX3XGl8gDrmA93bhnRYeuMol9zvz5XdMZOTbCcKbio0Gi5XU','Lizzie Torres and Diyon were super welcoming and helpful in assisting me with my problem. I was able to get help right away. Everyone was very caring and skillful.','2019-06-14 10:59:26.456000','2019-06-14 10:59:26.456000',5,'Kevin Le','https://lh4.googleusercontent.com/-1NIOufRIOls/AAAAAAAAAAI/AAAAAAAAAAA/oi09UYUZAvU/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7309),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM6R_rgVUj8XxJE0JNK04PY1hVznEKtXl5eyh3qjlE75vsbIRT2ifKpt3GZ37HIwTbuWCpAYtlNZPlVEbCQMYm_9wtYt4','I’ve honestly never had such a great experience as my family and I had here. In over a decade of being a parent not once has a doctor or nurse taken the extra time and effort like the staff at this facility. A lot of times with younger children it feels as if my concerns are treated as almost being silly, or overreactive. Like the questions I’m asking about specifics of “the virus” or “the steroid” are of little consequence, or not worth explaining, because whether I understand or not that was going to be the diagnosis/ treatment. The Dr there today talked to us as people, not as hysterical helicopter parents. He explained differences in particular viral strains, and their collective potential to produce similar symptoms as a result of infection. He told us how to check whether the infection was bronchial or laryngeal. \n\nThis information not only saves us the time and cost of running to emergency appointments because we’re unsure, it gives us the confidence and peace of mind that comes with fully understanding a diagnosis— not just the doctors means treatment the symptoms. I can rest easy tonight knowing that we are prepared and know what to look out for with regard to our sons respiratory health. \n\nAside from being communicative and informative, the doctor and staff all seemed genuine in their care for our son. Each person we encountered was extremely attentive and pleasant to work with. The doctor even offered that if any symptoms did not decrease as predicted, that I was welcome to bring my son just into the lobby and he’d check him for signs of respiratory distress. \n\nIt’s not often you find good people who put patients before paychecks. That in and of itself. It speaks volumes for me, and is a testament to the level of care they’re providing at the Heights Signature Care Emergency Center. \n\nI don’t recall everyone’s name.. but we were there today, 10/06/2018 at about 9:30 am. Thank you all, again!!','2018-10-07 08:52:40.106000','2018-10-07 08:52:40.106000',5,'Megan','https://lh5.googleusercontent.com/-lwL6xtjYUR8/AAAAAAAAAAI/AAAAAAAAAAA/h4UK99zszNg/c-rp-mo-br100/photo.jpg','14567670160750071148',1476),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM6rr-S5N2kcZ27X0zky5BqJGiGW36hvq9cf17lLz9KQLicYLa3pI_fQBh_Q9SNxn92F348v5Bun5aevEamz5CzTnVEZM','No wait. Friendly and caring staff. Great experience. I have taken my son there in the past and have always had a great experience. Will definitely go back when we need urgent care!','2016-08-22 17:32:24.716000','2016-08-22 17:32:24.716000',5,'Nicole Verrico','https://lh5.googleusercontent.com/-jgy-A9pyvEQ/AAAAAAAAAAI/AAAAAAAAAAA/16ik_oJQtRM/c-rp-mo-br100/photo.jpg','3511292162159714121',7949),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM7br-tFlhmN9n1MSjGXIEq-6DeWxoLEEbpPp9MMDuceoKCCfqDo9TIVGk7BR9-va_6bWSMfZxLxKyrejc78eVNrD_fec','Fast, convenient and safe COVID testing. Appointments available online and drive-thru testing was very organized. Would recommend to anyone needing a rapid COVID test!','2020-07-22 14:17:14.333000','2020-07-22 14:17:14.333000',5,'Stephanie Fultz','https://lh5.googleusercontent.com/-uhXlMGwUBdM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclGzM4e5OJCwSMYaFqJyZhdLvqrmA/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21875),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM7ErtnTLKYDojwFFO_wKCaS2Gn2tsvgdfFiTvFzT4S1ORyqpcfQv_GrCU9GbaUaVnfGvdSG2OUtRnd2Gq1Y7OUPuh1xA','Best place to be seen with fast service. We were in the back within 5 minutes! Our nurse Kristina was awesome as well as Matt. Thank you for taking all of my concerns into consideration.','2020-01-17 05:17:02.487000','2020-01-17 05:17:02.487000',5,'Ashley Staggs','https://lh4.googleusercontent.com/-sAHWTDcrp3g/AAAAAAAAAAI/AAAAAAAAAAA/9aSk7B-zbps/c-rp-mo-br100/photo.jpg','13486358490203335051',13476),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM7ktsvc1N7TeJqpZF0gTNSY9od7_ldTTHfkVH5Paiua7eeQJ2ZPWIDA_9z-VAh2edgYsmpapjjr6apFnHJtX41LsL9pI','No waiting and they have a full staff, private rooms, X-ray and lab. They got my fever down within just a few hours. I will always go there if I get sick again. The doctor even called to see how I was feeling.','2018-02-02 14:07:42.181000','2018-02-02 14:07:42.181000',5,'Michael Anthony','https://lh6.googleusercontent.com/-Fl-MiSnvYjs/AAAAAAAAAAI/AAAAAAAAAAA/e-1sr5ywiLE/c-rp-mo-br100/photo.jpg','16891069708558046635',4518),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM7smBsFjTzffJcD15o9HAVJgQCCLVum7wbpy6cWCci7Vd05_8OToE1P3s4vHYV8JJJcQ7hBbNLsPpix-VCyOoKLXZStU','The steps taken to make sure there was no need to be concerned regarding COVID 19 exposure was impeccable. I felt reassured and safe. The staff was professional, competent, kind, informative and attentive. My appointment was at 2am in the morning but it was hard to tell because everyone was so alert and on top of things. I was in and out within an hour - this was definitely unexpected. I’m very appreciative for such excellent customer service.','2020-07-14 14:17:08.847000','2020-07-14 14:17:08.847000',5,'Joyce Meri Grant','https://lh3.googleusercontent.com/a-/AOh14GgLbGVQUWHKwq6PiVo84wBjKUKI-mxydnRy15r7Nw=c0x00000000-cc-rp-ba3','3511292162159714121',22167),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM850mGfXGbr0cWhmGsu2zOtdvcJxBXJe0gW8FZXpRmWza91h09mmd-T4n7aPzajYF-J1URRoudLTsVEotPPh-vvOy_PA','The staff is caring and friendly. Very professional made me feel important and they resolved my medical issues. Awesome place. Nikeitria Mason','2019-02-10 01:32:27.832000','2019-02-10 01:32:27.832000',5,'Trenecia Cutright','https://lh6.googleusercontent.com/-5erqdFJpbmg/AAAAAAAAAAI/AAAAAAAAAAA/xbigFz6h6pc/c-rp-mo-br100/photo.jpg','12541597562633926366',553),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM8dzzybpg1st3HFqQgLcgTWdMsS8MkfMYWjoUC27aTuIbveV5Zev2ww4TRWAMFp-ayuPSR-lKoCh4Mx8VyFrdyVW2jrA','We had a wonderful experience at SignatureCare. I brought my 10 month old (who was sick) and my 4 year old at dinner time on a Thursday evening. The staff was extremely friendly and welcoming. There was absolutely no wait time, which is a big deal with two little ones! The doctor and nurses were very friendly. The office staff gave my daughter and son little treat bags with coloring books/stuffed animals/etc at the end of our visit. My 4 year old was thrilled! We will definitely come back here if we are in need of Urgent Care in the future.','2016-09-02 03:27:45.365000','2016-09-02 03:27:45.365000',5,'Lindsay Evans','https://lh6.googleusercontent.com/-LXgvzhA3rZI/AAAAAAAAAAI/AAAAAAAAAAA/V3_FwvQpb6Q/c-rp-mo-br100/photo.jpg','14904078213800803294',2462),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM8JlFnfz_hI_VU0Krl4_fXGlgoGoMz136AVdS-tGTJsU-PQ9p8K0mXbCP2YADDLdiuQXpEsFd_axqq7uTVjeZXuSkh0A','Very polite and knowledge! Staff was excellent Dr.Ybarra, Stephanie Rollie, Rad Tech Natalia great great personal!!','2019-10-05 00:48:47.411000','2019-10-05 00:48:47.411000',5,'Elida Neubauer','https://lh4.googleusercontent.com/-4QI4uC-IL6E/AAAAAAAAAAI/AAAAAAAAAAA/XSzaaiQ8NL4/c-rp-mo-br100/photo.jpg','8679688254631342173',8797),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM8to08cGqCFedkC9cf9dRKn_9ztyRloAGIu4TSHniipQGfiEOp1seYb4Liu_-5HFlw3qZ8554x4Sjm9YJr9J0o_I5sZo','Although I felt extremely miserable when I ame in, I was treated with the most respect and all efforts were made to make me feel at comfort. I absolutely loved the location and will use this if needed in the future.','2019-06-17 14:31:44.179000','2019-06-17 14:31:44.179000',5,'J Alvrz','https://lh3.googleusercontent.com/-zR3ugnX86-E/AAAAAAAAAAI/AAAAAAAAAAA/rpNrFfdYCLA/c-rp-mo-br100/photo.jpg','17898197009688164559',5693),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM8WfXlB9unfrftmFkLPr52Na7vip3UyV-G5p3RTzO_5Ug40b7I9PbiVS1gprr2mAqQteH4kahRqV4MhLL8vXuUd0VRcw','Great service, I was attended immediately and everyone was very helpful.','2016-11-10 14:37:02.470000','2016-11-10 14:37:02.470000',5,'Manny Arroyo','https://lh5.googleusercontent.com/-7TlCVdtHr2I/AAAAAAAAAAI/AAAAAAAAAAA/M8-ePVC57nQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5177),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM8wPtJbglBDCB08Kwt6T1mqlzYOTjhu2ERHXVTeW90qhGF9BMo01I51D3qxT6dFhhCOD1ee0l29MhUqA2sg_TvS0IjJc','Cannot day good enough things about Shania, Brittany, and Dr. Vaagenes. Fast and actually care about you!','2019-11-23 07:37:59.017000','2019-11-23 07:37:59.017000',5,'Kayla Hord','https://lh4.googleusercontent.com/-5S1_Zy5mG8A/AAAAAAAAAAI/AAAAAAAAAAA/oAXEFUYUhPA/c-rp-mo-br100/photo.jpg','13486358490203335051',723),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM91P83iIaZbwiIEvegH4VN3AazqW2t45wSQlG3hZiZNWlI__6xY1xhRmLeTikas_QVPuOgzFZiZTJtfMtqFbus35QI2E','This place was amazing, Ms.Tanishia was so welcoming and made me feel at home. I was seen in a matter of minutes!!!! After being taken to the back I was greeted by two awesome nurses named Heather and Shelley they took such good care of me and made me laugh. To top it all off Dr.Anders was great he also convinced me to quit smoking!!! SO I HAVE TO GIVE THIS PLACE A 5 STAR RATING','2019-02-06 02:58:24.721000','2019-02-06 02:58:24.721000',5,'Blake Graham','https://lh4.googleusercontent.com/-l0t8F10Xjm8/AAAAAAAAAAI/AAAAAAAAAAA/DfNouQquC1A/c-rp-mo-br100/photo.jpg','17898197009688164559',5863),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM9f0ICbaWCMuIWJOh8J-2aAxj8Rfmh6DDlZSx6peyck6QeJ1yf1mUc5SarhvNO44TXJ2YkDrEEybLbGjSe1q_ImctFmM','Bad service.','2017-12-09 12:41:07.570000','2017-12-09 12:41:07.570000',1,'Brandi Yana','https://lh3.googleusercontent.com/-gmuJxiQxr90/AAAAAAAAAAI/AAAAAAAAAAA/yBoVPCyk4UI/c-rp-mo-br100/photo.jpg','17394740196501090048',4916),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM9SQwvCzguHQAlMjgtbQnnQ-q9SuyTIiE8lUe47TnbL0GRZqZ5FsP7vS8OyZw6kWHFqIFnhMs3XUbt74MR6rXwloLv9s','Dyveliz and Rebecca were very fast at checking us in. Becca and brad took good care of my fiancé. JR was very friendly taking her to her CT. And dr. Daniels explained what was going on very well.','2019-06-25 21:32:59.645000','2019-06-25 21:32:59.645000',5,'Hunter Harris','https://lh6.googleusercontent.com/-6YysR466oZI/AAAAAAAAAAI/AAAAAAAAAAA/PFnksUx502U/c-rp-mo-br100/photo.jpg','16590124370714063921',3335),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgM9Z0tGWhUGz2_faYzZdTBxWhrFz_8ZXkTaOeklOMpxbB8RcHJSMFcYuTkQn0Jr0zjX2yaH4DwKMLX1ZyFHHZtG_ASdlo','Marcia was my moms nurse. She was really sweet and made sure my mom had a warm blanket and water. Maya was very nice when we first checked in. This place is very clean and all the staff are nice.','2020-01-29 19:58:13.874000','2020-01-29 19:58:13.874000',5,'McCaleb Brooks','https://lh6.googleusercontent.com/-Z0M4XRVX88A/AAAAAAAAAAI/AAAAAAAAAAA/IV5jhHZsxcw/c-rp-mo-br100/photo.jpg','12541597562633926366',10084),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMA0wwyoJeGlBNvl1bLRb6BuCEWuNXCvORMUl6JtDldVN1RcmXJIgsr45B5T_DYFSpZUZQsgStFvnYz69xTkJOo5-wgEI',NULL,'2019-05-31 20:33:04.385000','2019-05-31 20:33:04.385000',5,'Merlot Thomas','https://lh6.googleusercontent.com/-BTfbP0sTkGg/AAAAAAAAAAI/AAAAAAAAAAA/ZSkrnZbz-90/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMAfvf_GHlNUMRIQo_uAPRS3ywL_bGV9cuXdQrN2slCl839s10bPR3hwG3jq2qZMfM8FbDcm69NqodYg20wKiGLEAnpiM','So originally I\'m from El Paso and recently moved here about a year ago. I\'m always very nervous to checkout different hospitals or clinics, due to the \nun-professionalism that I grew up experiencing while residing in El Paso for 19 years. I struggled so hard just to make the call this morning to check out this clinic despite a serious pain I was experiencing, and was growing worse the longer I waited. Finally I caved in and made the call and found out the trip to this clinic would be a whole lot less of a pain than I was already experiencing and anticipating. The front desk nurse was very helpful to provide me with valuable information even prior and was able to answer billing questions in a fairly clear way that would help me feel just that more comfortable while visiting and also gave me a little confidence to come in and get checked out as quick as possible. When I arrived, I spent three minutes filling out paper work and within no time I was called in to be checked out. The nurse I had was just such a sweet heart and very caring, and most importantly, someone that\'s personable. Despite my nerves and pain she was able to crack a smile out of me and help me to relax till further examination. I was then greeted by Dr. Rose who was able to just help legitimize and confirm that most importantly, I was truly nervous for no reason at all. Along with her staff; very personable, sweet, kind hearted, and of course informative! Not only was she able to diagnose me but also gave me loads of information for my own benefit to help me recover much faster.\nIn all to be honest, I\'d come back just to hangout and talk to these folks because really it\'s just amazing the level of professionalism and hospitality the staff goes to make you not feel as though you\'re stepping into a doctor\'s office, rather as though you were going over to someone you knew personally without have had even meeting them before. Will definitely recommend others to checkout this facility and will not hesitate to stop on in if I ever have an issue.','2017-08-15 00:39:42.926000','2017-08-15 00:39:42.926000',5,'Tyler Abbott','https://lh6.googleusercontent.com/-_5uH9THN9VU/AAAAAAAAAAI/AAAAAAAAAAA/hQXjk-gu9yw/c-rp-mo-br100/photo.jpg','16891069708558046635',4543),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMAGZHAjpArkLOr2soLe9mztoS8yKP9LU-4qj_Uv-0cPEGgM8ZANuqQ-sRY7cDRFvTs5jQOmyqGOBsv54O7-qh2tAO6kk','I had a really great experience here. The staff were very caring and easy to talk to. Sometimes it’s hard to speak with doctors and nurses, but I felt very comfortable with Dr. Vakey and Jacob. 10/10 would recommend, they took care of me so well.','2019-03-09 18:43:25.267000','2019-03-09 18:43:25.267000',5,'Sarah Kuriyan','https://lh3.googleusercontent.com/-BZsV3YylxaM/AAAAAAAAAAI/AAAAAAAAAAA/1vn7gIOwCxg/c-rp-mo-br100/photo.jpg','16590124370714063921',3505),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMAH7Vj-bEnr7L-X92aU8sLzsDW21r25EbajFjQZlPuplgRFgfcgeyYumLXCJ3KzsGqcArlQafbu4_kiaaNVhhs6fL_8E','Went in to see if my son was ok after hitting his head and the staff (Dr.Chen, Mark, Aubrey, Adam, Arianna) were very helpful and treated us great. They helped us feel welcome and they had fast service. I highly recommend this location.','2018-10-04 15:17:47.085000','2018-10-04 15:17:47.085000',5,'Belinda Rojas','https://lh4.googleusercontent.com/-PLH2IQoqW4k/AAAAAAAAAAI/AAAAAAAAAAA/8XPRATlvpCs/c-rp-mo-br100/photo.jpg','14904078213800803294',2210),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMahli_uV_EZ4jJ7SDKXvaUc0Bw6dZUhq5-BQBxOisJkDJogO-3jnLKpGEMfALj0Bb-Qg0_CKIfBYnp4HLwfQ4hYKd4bk','There were nice really fast great nurses, and thanks to arianna to helping us also .','2017-11-04 02:08:23.978000','2017-11-04 02:08:23.978000',5,'alex lozano','https://lh4.googleusercontent.com/-eeGQVKxyHrg/AAAAAAAAAAI/AAAAAAAAAAA/KBcBpayGzgo/c-rp-mo-br100/photo.jpg','3511292162159714121',7766),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMAipom58Nwe7iRwyPJLPpFaavKIadq33lMyQCaT2jKM2o5-atyIDs9njHs2NcdvvfZ2uvaZJV5d8aCcko-Rx3HfGx8k8','Such wonderful staff. All of them. Great service. Love that they give you up front pricing!','2019-12-16 23:04:15.372000','2019-12-16 23:04:15.372000',5,'Jill Moore','https://lh6.googleusercontent.com/-2cB1jpFQa7w/AAAAAAAAAAI/AAAAAAAAAAA/5DSxKzofYL0/c-rp-mo-br100/photo.jpg','16891069708558046635',4116),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMAPGy-Oqqh1bRVxg509iEyCTkAxQMet5UZ5Svfx9_T8WOS8SkG6gVFbUzTxPkckXBkRbKRGq-FHuhiVGYB2gT9jkyHBs','The nurse and doctors were extremely kind and helpful!! I felt like they were engaged and listened to everything I had to say. I had strep and was given a shot that made me feel better within 45 minutes! Super clean and nice facility. SignatureCare is wonderfully unique in comparison with my previous experiences at other healthcare facilities. They even give you a warm blanket!! Highly recommend and will return next time I have a need.','2016-12-24 10:07:21.528000','2016-12-24 10:07:21.528000',5,'Kristal Havins','https://lh4.googleusercontent.com/-dVRfiTn3O9Y/AAAAAAAAAAI/AAAAAAAAAAA/KcDn7RTiAUg/c-rp-mo-br100/photo.jpg','14904078213800803294',2434),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMaQHDHN5h4RO7dFcQI1_w9Uh40pXDTWcxga3e7GElGmTxFh-aYWyhReqmduIngmqWtPgmsmIPdB2Ma80zKp1TFJoPqCM','SignatureCare is AMAZING! I came in, frustrated with the dismissive attitude of my previous doctor from a different practice, and all of the doctors and nurses in SignatureCare were concerned and attentive. They took my concerns seriously and Dr. Sylvester was thorough in his explanations. I wish he could be my primary care physician!\n\nThe nurse, Johnny, was friendly and often offered things like hot blankets and drinks. Jacqueline, the girl at the front desk, explained everything clearly and was SO friendly. The building and its parking lot were clean and organized. I\'m definitely coming back if I have another emergency!','2017-08-15 16:15:16.053000','2017-08-15 16:15:16.053000',5,'Allison Villarreal','https://lh4.googleusercontent.com/-0z6PUUX0lTw/AAAAAAAAAAI/AAAAAAAAAAA/XQpm_RaaDX8/c-rp-mo-br100/photo.jpg','14567670160750071148',1769),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMaqjjyaQXkkLDP3W34xwr1r8LzdXwuEaGoM34sVJQ8hgsJzldD0OtKQ7-ChkNKmgqqMzBOEi3oBSA9zeKOV3xJZA0J_k',NULL,'2019-05-23 15:43:12.444000','2019-05-23 15:43:12.444000',5,'m2020106','https://lh6.googleusercontent.com/-SIegXCSU74M/AAAAAAAAAAI/AAAAAAAAAAA/W1FwITif3-s/c-rp-mo-br100/photo.jpg','14567670160750071148',1320),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMARICCMUTAffIC6PVmhLN0EaZ2b5FY3j4K7cHjybIUA30uSrObTGBYzj_XUQA6ZAP-XaXltIYcOtuA-Z87j8DgkWy0oM','This facility is high end and very clean. Came in for a covid-19 test. They have a quick turn around if you make your appointment online. I highly recommend.','2020-08-07 19:14:40.218000','2020-08-07 19:14:40.218000',5,'Pedro Martinez','https://lh5.googleusercontent.com/-dkzEL5QnkNw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclzStR7VFlNtHceHnO7PK42a9OVTw/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21917),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMASOyX-Iz6XtcC7dJNs0obm5Ch3R3DQ0jRzwPOO54Tg4TrTDai1EyTOVXPGB2aeJIKWz1QyX2LO020Y5CPETjHe9aROo','This is the place to go when you are not feeling well, the staff is so nice, and welcoming, The Doctor listens to you, and try to to everything to help you feel better. Shawn, he is so funny, and he made me laugh. OVERALL I LOVE THE STAFF. THANKS SIGNATURE CARE STAFF.','2020-02-27 03:38:22.283000','2020-02-27 03:38:22.283000',5,'Alfreda Franklin','https://lh5.googleusercontent.com/-SJBc1T3ST1w/AAAAAAAAAAI/AAAAAAAAAAA/MgfedgpMGGs/c-rp-mo-br100/photo.jpg','8918455867446117794',15760),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMatAEcB6u5GPAN0q_jk9yK7nlljrIRx2p-DIqgrWcYZ7X3Wq7L83r9UAqA7jpQRx_B-D2Gc5nlcvJTIBXQ7LBsGBzAZk',NULL,'2020-02-13 13:55:07.827000','2020-02-13 13:55:07.827000',5,'Spencer Wells','https://lh5.googleusercontent.com/-yRAlTtyw5M8/AAAAAAAAAAI/AAAAAAAAAAA/SDkOwfmCulk/c-rp-mo-br100/photo.jpg','16590124370714063921',13856),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMaVtp6GhIsGFLM2xOs6LKT-SJ4QmLz6_-H-IgvM7WW_VYRJuZ_SAHD8Sg5ouiut84sAh7YxnRETRHzpKzdH8D1vBnulY','This was the fastest emergency service I’ve ever experienced!!!! Amy serviced me as soon as my husband and I came in. Rollie gave me immediate care and was patient with me as I struggled to describe what was wrong. Dr. Patel was to the point and very kind and eager to answer question I had. Natalia took my vitals and helped make me comfortable. I’m so grateful.','2019-07-03 09:16:21.587000','2019-07-03 09:16:21.587000',5,'Brandi Jefferson','https://lh6.googleusercontent.com/-H09RyNxruqk/AAAAAAAAAAI/AAAAAAAAAAA/STLpnh6y9EI/c-rp-mo-br100/photo.jpg','8679688254631342173',8824),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMAy5482nCFtvttAbseQOs1vDBmfTwyeCZ0-ht7CE6uwBhxZChClOGyuOOEiVHHkifhQNIl73p39o2FNVjZuOfffUmAeA','Signature Care is the best!!! It\'s so warm and welcoming. Aileen, Adam, Andrew, Christina K., Adam and Dr. DeWaal treated us like family.','2019-11-16 23:15:53.870000','2019-11-16 23:15:53.870000',5,'Cindy Novinger','https://lh5.googleusercontent.com/-0TsXQF4Qacs/AAAAAAAAAAI/AAAAAAAAAAA/DsNUPxnSSFs/c-rp-mo-br100/photo.jpg','16891069708558046635',4148),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMB-UHsMsiJzQX4rtQ0BaTWFlp-ezvhcRmeNEkCixO8tCYqgvh-AgpACk4eIj_vXVkFyOBenmW-rG1U5AkRaSZ5evyfEo','I needed to see a doc quickly on the day of a long international travel for a concern that had just popped up the day before. Came in the morning on the recommendation of my primary care physician since he wanted to me to me to get a quick look before my long travel and so I went.\n\nThey were relatively quick with little paperwork and got me in and out in less than an hour! Since it ended up being a minor concern (didn\'t know that it would be), the doc recommended charging for a basic screening (the lowest amount from my understanding).\n\nI would go there again for an emergency.','2016-07-31 20:51:51.092000','2016-07-31 20:51:51.092000',5,'Farid Rajkotwala','https://lh6.googleusercontent.com/-ybRV_vNy48g/AAAAAAAAAAI/AAAAAAAAAAA/Bmw0_MM1yWo/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7956),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMbapSi7fABRbJ0SPHN0etgE-qBhJ-z-l2Nf69k-xwVDlbi6FePUDoNz1KiGIzMsjfVLwzJj2NIGPKM_0ajoYjydPZfwM','Tammy Rangel, Brooke Green and Ashley Burton are so amazing at their job. They make you feel so comfortable and make sure their patients are well taken care of.','2019-12-13 03:56:34.805000','2019-12-13 03:56:34.805000',5,'Brooke Rangel','https://lh5.googleusercontent.com/-MwhXAS_iNIs/AAAAAAAAAAI/AAAAAAAAAAA/J5fK1oSShyc/c-rp-mo-br100/photo.jpg','8626688543755174284',14652),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMbCYnDDwSWHQKyV40tBqO78UsoEefpgiGMXpmmqr-wdvkUP37JSNTaKU4A411F7IGJaJ_VPDvXDjeUlFGf5YFjTsb8LA','Went in for a COVID test after experiencing several symptoms. Entire process including chest X-ray and test results took slightly over an hour. All staff was courteous, knowledgeable, and helpful. Made a scary situation a little more tolerable. Nice job!','2020-07-13 03:25:44.849000','2020-07-13 03:25:44.849000',5,'Bill Smith','https://lh6.googleusercontent.com/-al43oV60WhU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclcbBGdCYJy0cfIoQ5Dmnn7Pa9oLg/c0x00000000-cc-rp-ba2/photo.jpg','16891069708558046635',22040),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMBIrFyqWTYaTC01GpiaPJMs_iK-S6d7RN2cE7fBgu0EivqDV8ukTZj3FePlQ7UR0D031-okasZ0WurQNnKVwv-wZXTXM','When I arrived Jesus checked me in quickly and with a great attitude. From there Alvean (my nurse) assisted and was very friendly as well as Sean who took my vitals. Tricia was very gentle during X-rays and super sweet. And Dr. Appiah was great. He made me feel at ease and was very attentive to my concerns. I will definitely come back to this location if I ever need emergency care in the future.','2019-07-14 22:50:59.101000','2019-07-14 22:50:59.101000',5,'Allysha Comer','https://lh6.googleusercontent.com/-lPcvj_C1a7o/AAAAAAAAAAI/AAAAAAAAAAA/IxXkSzoRGjQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMbNibPpo9bzkXDg-dZTLtZuX7RDOqkwzBrDIoD0n0LZAABZPuPbbEgEYRDc18Hz02EMk2ino7rxDkitHSPamJOtLKHig','I had a great experience here. Everyone (front desk, nurse, doctor, radiologist) was very nice, accommodating, and helpful. I got right in and didn\'t have to wait. They gave me crutches and a brace right away, and everything went smoothly and quickly.','2020-02-05 19:10:42.833000','2020-02-05 19:10:42.833000',5,'Kira Vincent','https://lh5.googleusercontent.com/-Q_XGBMRRTGA/AAAAAAAAAAI/AAAAAAAAAAA/g0TWo9tj3v8/c-rp-mo-br100/photo.jpg','3511292162159714121',14427),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMbpQckmvvoDfut4QrZOKFOzKpoI4DfhaLiLuU4NZo3b9_U0DVFNUuLwHNAFJuYJj0c6LxL9YPbuxw04R1aMOrhjBgjJ8','Extremely recommend to attend your emergency cares, very peaceful place with the best staff, thanks Minh, Shelley, Heather and Tanishia you all are awesome.','2019-03-15 00:15:46.454000','2019-03-15 00:15:46.454000',5,'Antonio Novoa','https://lh5.googleusercontent.com/-scToX0Xi__E/AAAAAAAAAAI/AAAAAAAAAAA/mETrnLYFRQU/c-rp-mo-br100/photo.jpg','17898197009688164559',5810),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMBRbNEfrmjAcw1b7XjQm8b2j3sLSWMuvORTQzYoyQtEUwWfr4eSeqzSn2KzlA0wT12-wiL2orllqyyHXYh6OgtMVL08s','Friendly staff... Very comfortable rooms equiped with apple tv and personal fans... The are always there when needed no long waits. Timely pain management better than any hospital I be ever been too. I recommend Signature care over any ER in Killeen area.','2020-03-17 13:24:57.928000','2020-03-17 13:24:57.928000',5,'Tascie Cook','https://lh5.googleusercontent.com/-huKEhhPiL3s/AAAAAAAAAAI/AAAAAAAAAAA/grO70ienEiQ/c-rp-mo-br100/photo.jpg','2694018788013845459',21109),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMbTKNPqqCbRndfqt6E8ykKFfTaViKCnhko061apqVChwV1_DXrJW2609HbzdhPl7AUSiJnLFDYFrVHzf2w4NA5TSQ3mE','I come here anytime I need medical attention. The staff is great and they are always very helpful. The best part is even though they are an emergency room they are very cheap compared to most. This is the place to go if you need quality care in a quick manner.','2019-01-10 23:16:22.939000','2019-01-10 23:16:22.939000',5,'Kajounrei Deal','https://lh5.googleusercontent.com/-Y2Up0JAIbBM/AAAAAAAAAAI/AAAAAAAAAAA/sIp60DhRTNc/c-rp-mo-br100/photo.jpg','3511292162159714121',7484),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMBW2rJlWm51tUrlK0QkrfcHMkz4CR23Vbk_I3BpINpLhiTY6W8kuYUIFTeqqPSiCvLcYsDKC8pHJ9eeEUdwFK8Jo0ya8','awesome service. Front desk was so sweet & doctors / nurses truly care','2018-08-21 22:36:27.740000','2018-08-21 22:36:27.740000',5,'Jared States','https://lh5.googleusercontent.com/-GGlKSbK-6_0/AAAAAAAAAAI/AAAAAAAAAAA/Ih29nAFFGO4/c-rp-mo-br100/photo.jpg','16590124370714063921',3781),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMCbAJn-wwi2a7Cob8iM8xVoD3_Aph13L4grcYPOMZr2owp_vfU3d6dNRS9ZEKu9zukJb4TqmQjzawgqf4X7GATv-4u7w','Leslie was great','2019-12-03 16:25:29.201000','2019-12-03 16:25:29.201000',5,'Mia Leah','https://lh3.googleusercontent.com/-NPc8ULixMBA/AAAAAAAAAAI/AAAAAAAAAAA/7-m4K6SNCk0/c-rp-mo-br100/photo.jpg','3511292162159714121',7137),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMCFePuBBXrZxI-3lnPwSIbWQy4aSRRfiRMLONMHZYHEqh5L7BtFry2_qP5VL0lsqOHmUioPc3EjBbi76nZMBOEjanO1o','Great Services!','2019-12-20 18:19:54.472000','2019-12-20 18:19:54.472000',5,'Dorothy Foster','https://lh5.googleusercontent.com/-Dr6gvnW2l34/AAAAAAAAAAI/AAAAAAAAAAA/g4cvgGLnx4E/c-rp-mo-br100/photo.jpg','14567670160750071148',1172),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMCfzTTWp4Fu7DNGMmHc1oU-pWtatVojIDj2RZg00oImWn0dKANdju5r73QILi-WtkDzmSQdX9roJzEdVxG1vKfn0g7Ns','They get you in fast and attention fast, very clean nice place and the whole staff from the doctors to the front desk were all amazing caring people. I highly recommend this place if you are need of medical attention!','2016-09-25 23:12:26.432000','2016-09-25 23:12:26.432000',5,'talesha cahill','https://lh3.googleusercontent.com/-l4TKYjXAaAk/AAAAAAAAAAI/AAAAAAAAAAA/nfspV1CCe0k/c-rp-mo-br100/photo.jpg','14904078213800803294',2458),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMClioGOy4ZlQn7o8G-hk9PkxN41UC7FzwaCfYsYNDkqcwcmah4PmpaTZDaWXUuu-G66xqh1vbeGKUks9gC-Xx_QCBqOI','Kendra at the front desk was so sweet and very helpful! Great service here and wonderful facility!','2019-11-03 22:29:34.202000','2019-11-03 22:29:34.202000',5,'Lauren Medina','https://lh4.googleusercontent.com/-2LvkTdaygqg/AAAAAAAAAAI/AAAAAAAAAAA/YC06INX8nxo/c-rp-mo-br100/photo.jpg','16590124370714063921',3103),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMcpv0H2PU-iZNtDdAf1SFQojDt-529THswrWTeSt7qL_wWJfzrtIuThAdDi-_VqFd9M_4N81XRi2ebUOB-_dvufbwZG4','What an amazing place to get emergency care. They truly offer you world class customer service. You are not treated like another patient but family. \n\nI’m new to Bryan-College Station area and was in desperate need of an ER. I wasn’t sure if they could help me with my allergic reaction - but true indeed Anthony delivered concierge service. He showed empathy and assurance and I felt great to be there. I recommend this ER if you want to feel comfortable and assured that your getting the best treatment this is the place! Even after I left - I had a couple of questions-I called and Anthony was helpful right away! He even sent me in the direction to get a coupon for my medication - this is a clear above and beyond for your patient! Again being new to the area I didn’t know what time pharmacies close- Anthony educated me on one that was 24 hours! Way to go!! \n\nSigned (one happy patient)\n\nLakeishia Dunn (new family member)\n\n🙌🏽💪🏽👍🏽','2018-08-25 23:23:01.555000','2018-08-25 23:23:01.555000',5,'lakeishia DUNN','https://lh6.googleusercontent.com/-k1TT5DhldGU/AAAAAAAAAAI/AAAAAAAAAAA/wvN5Yobk4M0/c-rp-mo-br100/photo.jpg','16590124370714063921',3762),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMCTQDhAploJErqUXe-FRpyUTz39Zm12kfqPEIap2-VjfQsLLdWdp0aPMzhQ4_dBG08Hn_IHh4xlcQUxgFUkO_yZwvQ5o','Customer service was GREAT . staff was friendly and caring . Provided all information and details .Dr.Patel, Nurse Sarah G., Fatima B. and Tanishia W. were all great . Highly satisfied with my visit','2019-12-11 09:20:50.100000','2019-12-11 09:20:50.100000',5,'Elyssia Sapp','https://lh4.googleusercontent.com/-WqG8lN4og-A/AAAAAAAAAAI/AAAAAAAAAAA/6_zw9-ZsOQE/c-rp-mo-br100/photo.jpg','17898197009688164559',5359),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMD62yfgQ6DgP_vqffw46uR9KkGKzRHHZ8WBgBl_1bxxIgrM39BOEAe5J3mExuMpjRz3-j36uX7wo1Jt7bAzmPT4mv2YU','Dr. Pham, Nikaela, and Jessica were all wonderful! I was able to get in right away. The facility is spotless. I appreciated the tentativeness of each team member. They were also sweet with my 4 year old daughter who was with me.','2019-05-17 23:35:40.823000','2019-05-17 23:35:40.823000',5,'Sahar Hindi','https://lh6.googleusercontent.com/-1_8chsotxuc/AAAAAAAAAAI/AAAAAAAAAAA/0rgzP-H3LP4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMDAxf1VezEHAMX2FYmCYRNxgwmzH8x72NTbZepQ0YQf6IHERSCeWZGuv68evD3Jz01H_IssjfuSe-y6TPgl6GpEYUmnk','Friendly , funny and caring staff.','2016-11-06 20:36:23.724000','2016-11-06 20:36:23.724000',5,'Mario Romero','https://lh3.googleusercontent.com/-N11liP7gf4I/AAAAAAAAAAI/AAAAAAAAAAA/BU-HHab6SKY/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5182),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMdE3n9idD7Vyy4qApvgscdpSqT-Z-NK9fTum2UfSRjNjuB-iu1IdE1UGb2q2sZURV6RDebuMmBYu9TKPSHa6AFqNll2E','Excellent care and I would definitely return if needed! Nurses were A1!','2019-06-02 22:49:20.914000','2019-06-02 22:49:20.914000',5,'Gerald Mitchell','https://lh3.googleusercontent.com/-nwFuB1x5rhA/AAAAAAAAAAI/AAAAAAAAAAA/fpnW3q6hz70/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMDfF0QGUQy9T5VOCpLGA0HTHUFsT5NrgpXOlc6pjnQVeTDjjuvhjnknMDrHy0xgCU9Q82yyTu-fWQ62G-VqiO1lnQpD0','One of the nurse named Marcus was filled with laughter and a really friendly and nice nurse 10/10 best place to get taken care of','2019-04-17 00:22:07.419000','2019-04-17 00:22:07.419000',5,'verefinesweets 2000','https://lh3.googleusercontent.com/-z4CmdMOaiGM/AAAAAAAAAAI/AAAAAAAAAAA/nZI5hu3USAw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMDFXcxiP1rT3WimfQKbCTTatHZ6OD3XyBK3Fwl0hHBZHl0voKtAkOMxIN9XdVsr3__b3BBm3zweIRvm29-2VJPzKK9q0','Came to the urgent care on rice in the Bellaire area. Was only in for 15 minutes. Great staff and friendly. Lived that I didn\'t have to wai . Dr daniels was very professional and knowledgeable.','2020-03-08 05:48:05.036000','2020-03-08 05:48:05.036000',5,'mayling silva','https://lh4.googleusercontent.com/-rxgTh2i8zJc/AAAAAAAAAAI/AAAAAAAAAAA/0ZnWkAk_MEU/c-rp-mo-br100/photo.jpg','8679688254631342173',21220),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMdGnvfBC7i-isDGrJItOX-AwQrHuIKBahoprqpt0UHsq_VEwcFUzPOM0OEc9qDBTLQJHpdXkTwzrDimV-WinBButBB_w','They were very prompt with service and provided excellent care.','2020-02-12 03:50:30.605000','2020-02-12 03:50:30.605000',5,'Juan Romero','https://lh6.googleusercontent.com/-ypfZMZYcAbQ/AAAAAAAAAAI/AAAAAAAAAAA/HFALDzp7KyE/c-rp-mo-br100/photo.jpg','2694018788013845459',14237),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMdgTKVCfjM5r20ah98lOViKHzVTl_1m1L9Xho53I9-GD8jXlIcIe2ds_eOwZ0JIuFp0PCGjx1d3eMdh89Pu7fdhsODQ8','This is a great care facility! The intake was quick and the service was phenomenal. The staff were professional, kind, positive, and knowledgeable. They even called after my visit to check on my progress. Frank, Natasha, Victoria, and Andrew were fantastic. Dr. L was very thorough and explained his diagnosis very well. I wish I could make this my primary care facility!','2018-11-23 18:53:09.250000','2018-11-23 18:53:09.250000',5,'Cindy Aidoghie','https://lh6.googleusercontent.com/-ixv9iL-okRs/AAAAAAAAAAI/AAAAAAAAAAA/DDRyzXQw2_8/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4400),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMDL46wsp-hM9TfJwaDlKguedJEtNmgdR7OhjLmJqf8zOJhQB5cwoGV3Dq_1tVChvFdaGY1K5RtguipikNi5IRb9q4zlM','The people at SignatureCare Emergency Center on Westchase were some of the best in the industry. The front desk person, Dee, handled the paperwork and checked me in a timely manner. Stephanie, the nurse was very kind and sweet, and Dr. Grinblastas handled my situation professionally and promptly, which I greatly appreciated. I would say that my experience overall was excellent. They took care of me very well and gave me the treatment that I needed. I really appreciated the walk-in service or first come first served. Compare to St. Hope Foundation and others alike, this place was day and night difference because I did not have to wait for one week JUST to get my appointment scheduled in order to see the doctor or even get treated. This is a very big deal for me!!! I didn\'t know places like SignatureCare Emergency Center existed, I didn\'t know that I can just come in on a relatively not so busy day and get to see the doctor within 10 mins of waiting, and get treated on the same visit. Not to mention that they are opened 24/7. Overall, my experience at this location was second-to-none. I would highly recommend this place and I am definitely going back here again for other treatments.','2018-09-25 22:13:42.686000','2018-09-25 22:13:42.686000',5,'Tuan Le','https://lh6.googleusercontent.com/-2shfUs1ABo0/AAAAAAAAAAI/AAAAAAAAAAA/c4h7IrPMXSg/c-rp-mo-br100/photo.jpg','12541597562633926366',601),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMdt5gmLeQjdLGTUfqURYSBZETQ1OjBMCUJVVYmG4MNJtnrvBwnVlJytphU31XY89fpEQa3BFlLHcxLkCXASlbiOfnTd0',NULL,'2020-03-12 19:33:36.480000','2020-03-12 19:33:36.480000',5,'Raquel Brantley','https://lh4.googleusercontent.com/-vPMT_GAkXGk/AAAAAAAAAAI/AAAAAAAAAAA/FDrhWbMmS60/c-rp-mo-br100/photo.jpg','16389487648212004696',13707),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMe4YdyUpc2Vr7fnWMbyjCmq49wN9irXpxNH_JYOsdUI80oD1cRgfhKDUl47mj-MXo01SZN787vB3oL-yStIf1vUG0yJM','Awesome care. From the moment I arrived, the receptionist Tory made me feel comfortable. Everyone there went out of his/her way to get the job done efficiently and carefully, but making sure that I felt comfortable. The doc was terrific! I could not have done better! Thanks to the team for your help!','2017-01-03 02:17:12.173000','2017-01-03 02:17:12.173000',5,'Erin Hodgess','https://lh6.googleusercontent.com/-p_xdcBCSWT0/AAAAAAAAAAI/AAAAAAAAAAA/w7Y0LBRcKu8/c-rp-mo-br100/photo.jpg','3511292162159714121',7907),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMe62Q-VNAVV8tM7Bf3qZju4Rb15g-HpkK8CohXwlrS8UuleL5XgSvi8hC1KqANAnw1pnhVKZLOtTkrSh0qEtb0Bx_WaA','I loved it.','2016-05-31 15:15:14.456000','2016-05-31 15:15:14.456000',5,'Justin Williams','https://lh4.googleusercontent.com/-_W_Y4u4LTl0/AAAAAAAAAAI/AAAAAAAAAAA/rFgol8O0l_0/c-rp-mo-br100/photo.jpg','17394740196501090048',5246),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMEb-YvaGZB_OhI_4B8CUO5odti9MxbdXYLlElpc039k3LfUMVkfzeyfK7-MlQ9IBYZ72kMQySpj4Kk4xH1Dly3qt4Mwo','We find the medical staff to be knowledgeable and kind at this location in partiicular. The entire team- Dr. Zheng, Dr.Boester, Trisha, Pam, Shay, Marcin, and Jessica was excellent. We extend our sincerest appreciation for your care.','2020-02-16 04:40:49.349000','2020-02-16 04:40:49.349000',5,'Lisa Ashley','https://lh5.googleusercontent.com/-v00dDXjilgQ/AAAAAAAAAAI/AAAAAAAAAAA/8P1eAv8h8Vs/c-rp-mo-br100/photo.jpg','8918455867446117794',14825),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMeBCq8d8d47xttbKydoM55AfGG18O63jqBHeG-cT-fay913j0y6vIJLxN-CDJXZHOAPuxAeGv0cUfRTT-JYzjxHmHW68','They took great care of me and I will bring my family here if ever needed!!! Thank you stafff!!!!','2020-02-23 21:06:51.218000','2020-02-23 21:06:51.218000',5,'Emilio Sanchez','https://lh3.googleusercontent.com/-usVWgGKg35o/AAAAAAAAAAI/AAAAAAAAAAA/TU8F-z7pExk/c-rp-mo-br100/photo.jpg','2694018788013845459',14212),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMEgKpjjulioyfUplA21Xriu5tjMDX_B5-UnKd4Vqinwlc0vSCafc5juYKavBZw19CWUVoyEWDVB1QfZqf7LehRSCrGfU',NULL,'2017-04-03 22:31:06.185000','2017-04-03 22:31:06.185000',5,'Cynthia P','https://lh4.googleusercontent.com/-8YTG4_wQgXk/AAAAAAAAAAI/AAAAAAAAAAA/XM3IsB5bp-c/c-rp-mo-br100/photo.jpg','14904078213800803294',2375),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMEJdKfaK7Z0x3yVzq457rc9pzbVRq9EHm__cTF2UAmbxZ1ajQftnHh2-ep7M1w5Wa6PRZuvEVfYJTQr6u2b9YwtLnmqc','I had Keera as a receptionist. She was very friendly when I arrived. JR and Jeri were extremely nice and helpful. I would definitely recommend coming here and will be back.','2017-11-30 18:41:13.803000','2017-11-30 18:41:13.803000',5,'Kayla Richardson','https://lh6.googleusercontent.com/-UT2Egqsttog/AAAAAAAAAAI/AAAAAAAAAAA/TypXb2tHp44/c-rp-mo-br100/photo.jpg','16590124370714063921',3902),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMF6XKI5v6l384GuFroA56nXuTn3_VqS0NgeQpVhkVEAhLNOx7y6WBwNnqpEoVBBCaCiQ_nIlfwyybX8vesmJWE9FI0KY','Great as always. Staff and receptionist are amazing. McKenna was absolutely amazing John bell is great.','2020-02-11 19:45:19.520000','2020-02-11 19:45:19.520000',5,'autumn hopkins','https://lh3.googleusercontent.com/a-/AOh14Ghv4btVlH12ufwp30V6Vf_q8Aj6_ThKc-W82S3w9Q=c0x00000000-cc-rp','8626688543755174284',14613),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMFAJ7fHBJ49Oj6Lxzia-4eKLdsTJx47qbeASmWb5LVaO0nL18I9y8CG2CahNmQrfh82KoZiL-q5md07cdkDiBIBo7bHk',NULL,'2020-02-24 14:37:24.732000','2020-02-24 14:37:24.732000',5,'Christy Naponic','https://lh3.googleusercontent.com/-liPE-ivtPWU/AAAAAAAAAAI/AAAAAAAAAAA/9vgOnLE--O4/c-rp-mo-br100/photo.jpg','14904078213800803294',15175),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMfaUDdOlJxYCzfHjz486l7KHCIlLzD0b1Dm1VfQb84hIGkp0RmmLjpHPjKrwjsCUy06DrFds0RM1LH0NybPOI-mKNrNU','Some of the best medical care I\'ve received in my lifetime. Thank you for being so kind & nurturing, such a great example for other health professionals to follow!','2017-03-24 22:27:54.946000','2017-03-24 22:27:54.946000',5,'Irma Lobo','https://lh5.googleusercontent.com/-rELWHRLc_VA/AAAAAAAAAAI/AAAAAAAAAAA/fPKUC1lbI8U/c-rp-mo-br100/photo.jpg','17394740196501090048',5085),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMFGccbACnNUxMJLtHPlPGyZaX12o3zkLqBO3p_pvxcmSwiU2D9oDVJ5wInVDIJ7FR6O0y2gBmh-UnlSXlPGQI543moQ0','I took my 3 month old in because he wasnt feeling well and they saw us immediately. Everyone was very friendly and helpful. They answered all my questions and explained everything very well. One of the best ER’s i have ever been too. Highly recommend. Thanks Charlotte and Tanishia. Thanks to all the staff!','2020-03-04 04:57:50.674000','2020-03-04 04:57:50.674000',5,'Kaetlyn Littleford','https://lh5.googleusercontent.com/-GCpjt8jOLtc/AAAAAAAAAAI/AAAAAAAAAAA/UVylNZYs7rs/c-rp-mo-br100/photo.jpg','17898197009688164559',14111),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMFJ4Q0GiD-mVfCGabP0JJuAWhhfbJZ8fcWBkxDmVH6SxqRnMUH2oIUWdcMM-0em6ynn2n4qttLJWvAFfO5C9LzTJlj0Y','I went in yesterday twice for kidney stones and everyone was so nice! I didn’t wait long at all and the place was very clean! So grateful for the nurses and doctors that helped me yesterday. I’ve been pain free today and that’s cause of their help! Thank you!','2020-08-01 00:24:52.858000','2020-08-01 00:24:52.858000',5,'Megan Boyer','https://lh3.googleusercontent.com/a-/AOh14Gjjw_y1tvR7ZI3Z-XAorT6sxHSVx5LbdbJprcq_iQ=c0x00000000-cc-rp','8918455867446117794',22269),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMFnfFgS19LRKR0eRlub0lIhiqIV2-f__PsZQnhKiE50JibdLbT-zYeQIy4z2tiE8jlRjTi2E8iX_8av_uIZASSR6-1zM','Took my son here to be tested for Covid. One of the few places that had the rapid testing and actually had appointments available. The wait wasn\'t bad about as expected. Was in and out in little over an hour. Experience was pleasant just hope the bill is as well!! However happy they could help us diagnose him quickly.','2020-07-25 01:58:11.931000','2020-07-25 01:58:11.931000',4,'Susan Vasquez','https://lh5.googleusercontent.com/-Ewm4zuhciSE/AAAAAAAAAAI/AAAAAAAAAAA/gasdLI2Yt2Q/c-rp-mo-br100/photo.jpg','14748677429039074158',22566),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMfOmjI_LB3YeqYTmfSjzYsOWRIvMaoW8lt9gSTVMx0wJdNxvl-DLJSB5d7sCiG6gxlT37xZJ1zjSATNRd-SBYOFXjGD4','Very good experience. The staff is very professional, caring and efficient. I highly recommend.','2019-06-14 15:28:49.073000','2019-06-14 15:28:49.073000',5,'Tracie Gambol','https://lh4.googleusercontent.com/-5zROZka47Ao/AAAAAAAAAAI/AAAAAAAAAAA/e9qyDRycbsk/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8234),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMfPHMxUI_citEYXzG2-A2mQtcCLW2f7XOyVs618tBK6h3Ouc_uyfIuOd8djpF9sA-YrdhhYPuF-jSCs-hbTrt8ux7Tjw','Very friendly staff and physicians! Walked in, mind you, no one was waiting, but got me back before I could even start paper work. Great nurse! She let me know that she had some dental work done and her face was a little numb still and that’s why she may not be smiling ;). Always checked on me in between Dr., X-ray tech, and tech that drew my blood, visits. All very nice talked about what was going on. Very nice and clean facilities! Great from start to finish. Highly recommend! ONLY thing to beware of is that it is considered an ER and you will pay the ER copay not Urgent care copay like I thought it was :(.','2019-03-11 00:41:43.372000','2019-03-11 00:41:43.372000',5,'Krystal York','https://lh3.googleusercontent.com/-i7dAuZlv1Uo/AAAAAAAAAAI/AAAAAAAAAAA/R5nRvhh0nRI/c-rp-mo-br100/photo.jpg','6521947413723274945',8297),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMFQktk3u4pSPAnwhS9w2WxgJxZEXfeStSZRH82jhxjnYnmFaICxWMGzm1B6dY1haXErWjkkPlgVZG1nhzBp9VsNCzC70','I received excellent, compassionate and very prompt service at this ER. The atmosphere is very pleasant and non-institutional in appearance. It was clean and spotless. The staff including the physicians, nurses, techs and front desk staff were all amazing and very professional. Sindy was so welcoming at the front desk and made me feel comfortable right away. Dr. Faig, Lisa, Agnes, and Jeff were all caring and kept me informed of what was going on at all times. I would highly recommend this ER to anyone seeking emergency medical care. In addition to the excellent care provided, I received a call from nurse Jeff a few days later to check on my status and to make sure I had followed through with the referral that I had received.','2017-06-24 19:15:22.529000','2017-06-24 19:15:22.529000',5,'Elizabeth Hudson','https://lh4.googleusercontent.com/-eua7qFpqH94/AAAAAAAAAAI/AAAAAAAAAAA/1UuHH2vxcyo/c-rp-mo-br100/photo.jpg','3511292162159714121',7809),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMfVIzQytwHby7jhOV_t0kDumpxN59GtjeqDIfEYKX52uNBslm9Xn9QaAvd8lejKBKt31843bgHC41r5o4FH3PdWV-yTs','Staff very professional nice efficient was very well pleased will go back again','2020-06-24 22:06:58.257000','2020-06-24 22:06:58.257000',5,'Bloop Blee blop','https://lh6.googleusercontent.com/-zLpEhrJW3-A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnfTpeA5NDcMraswyI1miKQdjee6w/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21282),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMFx2V0-C4Th4GvOAwyg5oOu33E7yEgyTDXk8ueJ1eN4DveIGF7GRRV9afYgNRjYXyG3TCVr7y8fmAGcak5AJxelHuO2c','I called to get more information on their covid tests availability times and was waiting for an hour , had 40 minutes left to be answered,and the call was dropped, naturally I called right back and got answered immediately and most likely because they dropped all the calls they had waiting. The lady that answered was rushing through the call,hardly let me speak and cut me off several times :/ She basically told me there was nothing available until next week not even rapid testing. I had questions on the type of tests and insurance they accept and she just told me she couldnt answer that. and that if i go i have to pay 175.00 est. up front. Idk if all the covid tests are the same price but thats the price she threw at me.. Call lasted 1 MINUTE, super unhelpful.','2020-06-24 05:32:54.972000','2020-06-24 05:32:54.972000',1,'claudia estrada','https://lh3.googleusercontent.com/a-/AOh14GhGgaZE11DDl0aNL9tYZ6IVZtfjWHKFJJ4YCN-q=c0x00000000-cc-rp','16389487648212004696',20998),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMg2at2_k3nXhw9m3sKs_VpUPqoSB-vwJfKcvFC-tI-JRYkFzgePHDsqluS5k2I6fAtnj-bNNlld3ZW9zkzCTV9eB2CPE','Nurse: Eda\nRegistration: Amy\nDoctor: Dr. Grinblatas\n\nGreat service! Everyone was so nice and gentle. Dr. Grinblatas was very kind and always asked if my son was ok before he did anything. Definitely recommend for any emergencies rather than waiting in a hospital. 5 out of 5!','2019-03-23 14:30:47.756000','2019-03-23 14:30:47.756000',5,'Moni Kah','https://lh3.googleusercontent.com/-tVt-ieznItI/AAAAAAAAAAI/AAAAAAAAAAA/wgCar4NEMcU/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4704),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMG8sIIeFtcmPDBl75PVBRNXMosreQ62Amej1bXiZBHWACWkV1OG7d4nYTe6Nhxea81HsrZDaACOXd4hZPoTOsAIpiSCo','They got my friend in really fast we were out of there in about 30 minutes. Highly recommend','2019-07-11 17:07:34.627000','2019-07-11 17:07:34.627000',5,'Lauren Hodges','https://lh3.googleusercontent.com/-NCXZdIC6M8s/AAAAAAAAAAI/AAAAAAAAAAA/2tidu98GeRc/c-rp-mo-br100/photo.jpg','8626688543755174284',8436),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMGoNRt40c506kWjzTjrW9ca6lLyA9T5L_7W8lo4kXQQAF7jPRMQzmWEvopzdDFeGMAqkQMmEj5tgIrUMDqqEO5HG7fh4','Absolutely terrible. Save your time, even if it means going to an urgent care further away, and do not come to this urgent care. I had an appointment for 8:00. It is currently 9:15 and have yet be put in the waiting line. Staff got frustrated when people were growing tired of the wait. All in all, won’t be giving this place my time or money again.\n\n-Update-\nWell. The good news is I eventually was seen by a nurse. But only after reminding the lady at the front desk (who had forgotten that she had called me) that I was actually here, who then felt the need to ask a security guard to escort me to the nurse. I arrived at the Center at 7:30 and left at 11:30. Website clearly says “As always, the wait time at our emergency center is 10 minutes or less.” Don’t blatantly lie to earn someone’s business. If you’re reading this review because you’re at the center, good luck to you.','2020-07-17 04:03:00.371000','2020-07-17 04:03:00.371000',1,'Calvin Atkinson','https://lh3.googleusercontent.com/a-/AOh14Gj7oWa3tgkAOOODw94I5t1Y1zgEDBS6J27m22Im=c0x00000000-cc-rp','2694018788013845459',22121),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMgOtcQShNZYjE14qgB4V0ssOxaSaUq0XLaA1zhKnKmQX7zFIcB0IQMjTVjFP_JQyX5FOObpgKEC4bmP0oroL0fOX4hDM','No waiting. Had us in before filled out paper work.','2016-09-27 01:52:48.812000','2016-09-25 19:39:37.114000',5,'Morris Ellis','https://lh3.googleusercontent.com/-KX51XrlX-dg/AAAAAAAAAAI/AAAAAAAAAAA/tAtdClLttV4/c-rp-mo-br100/photo.jpg','17394740196501090048',5198),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMGpxAHXzRgPfClLPKnMsznEAj0u_g7nWAB9WZpDIPhgG4P6yMve641GkhiEHHPUSZQTOdEZ5yME46lp07HMv_CmO3iUQ','I highly recommend SignatureCare. Dr. Yusuf, Kristina (RN), Laura (Ad tech), Scott (ER tech), and Malissa (front desk) were professional, caring and so kind towards our youngest daughter during her visit. There was NO wait and we got in right away and Dr. Yusuf recommended treatment plan and made sure I fully understood. Thank you SignatureCare','2019-08-30 04:12:47.215000','2019-08-30 04:12:47.215000',5,'Sarah Takagi','https://lh4.googleusercontent.com/-OnKuZUx8O_4/AAAAAAAAAAI/AAAAAAAAAAA/GlJydBk31_c/c-rp-mo-br100/photo.jpg','12541597562633926366',448),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMgy_NHbG_CEGCNQAdwSxZz4ovQYQmh663apEjr9zKDFRzbQRIGPQXx6nH5xxqbrc6BNAgTF5yE6o7FfWMeuO-zasDPbM',NULL,'2019-11-14 02:36:27.577000','2019-11-14 02:36:27.577000',1,'Ms. Mix','https://lh4.googleusercontent.com/-_CLyFAvNaD0/AAAAAAAAAAI/AAAAAAAAAAA/2LwIb70W_pM/c-rp-mo-br100/photo.jpg','2694018788013845459',6013),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMgz4PhuirluT2r7zVeyz0itwQGOMGcO4wQjASkfPGFutOI0x7V1NINAtNZZLfmoIAycUZeW3mHcDVMMAOFyz6phsfz0E','I came in today and was quickly attended to. Everyone was very nice! The doctors and nurses treated us really well. Thank you so much!','2018-08-02 22:51:38.494000','2018-08-02 22:51:38.494000',5,'Mariana Diaz','https://lh6.googleusercontent.com/-XuskdW5OgkQ/AAAAAAAAAAI/AAAAAAAAAAA/UG8D-pGeKUo/c-rp-mo-br100/photo.jpg','3511292162159714121',7670),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMH0mgv4Pgqfocj4wWuV1BpX2DoCr1bb93qnkxlUgWGRlQ1LK4F1rK3IDvMUTQBULuAlpfKSXIEFdANHdvP31S1e2H2Ng','Amazing visit, everyone is friendly here!','2018-12-23 00:44:51.446000','2018-12-23 00:44:51.446000',5,'Jose Mendoza','https://lh5.googleusercontent.com/-Dvm-KFj5qQI/AAAAAAAAAAI/AAAAAAAAAAA/lWWRWfuovp4/c-rp-mo-br100/photo.jpg','8679688254631342173',8892),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMh7urO1MUc2_acuz_F2uVv8n8lRZzwRhKbfz76nllW9HiNSWHakN4BMS-uLC_q06YjE-NLCAcduPMs_egG8Pl6NxlhTs','Signature Care is the best. The staff is always super friendly and comforting. Thanks you Dr. Yusuf, Churiah, Jessica and Aurora!','2018-08-17 09:46:30.507000','2018-08-17 09:46:30.507000',5,'Jason Sheehy','https://lh5.googleusercontent.com/-miEverV-Wyo/AAAAAAAAAAI/AAAAAAAAAAA/5HIb3t-9zos/c-rp-mo-br100/photo.jpg','3511292162159714121',7613),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHiT4gsKodvWTRSPS2OYayH4ISVG_unRIqc-Ei0H53kNz_DGVqLTQdiBxXSfJNUChGRldxI59ttAH70aT66MB4H9BYYc','Excellent facilities and service. Far above and beyond any other ER and/or stand alone ER we’ve ever used. We’ll gladly recommend to everyone we know!','2019-01-03 17:54:54.806000','2019-01-03 17:54:54.806000',5,'Donna Masterson','https://lh4.googleusercontent.com/-6N0UUXmynkg/AAAAAAAAAAI/AAAAAAAAAAA/UVdPd9K9urE/c-rp-mo-br100/photo.jpg','3511292162159714121',7529),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHkzMzdx8yUoI6XV6tbdC4LWqpcjz4racAa3Xhq8nSc8cBB43zFXVzfEL0rNwrOPfcsJpz3EdOzDrinSeShjrpuZmrBU','Amazing doctor and nurses. Jennifer was so nice and patient with me. Mark made me laugh so I could feel comfortable. Dr. Edwards made sure to test me for everything. Thank you guys!','2020-01-15 15:27:54.232000','2020-01-15 15:27:54.232000',5,'Olinda Cardenas','https://lh3.googleusercontent.com/-qruZMDQ-LV0/AAAAAAAAAAI/AAAAAAAAAAA/rUxY0v7xHYg/c-rp-mo-br100/photo.jpg','8679688254631342173',9830),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHMfqwgu8GbDWoK_5u3KvrTgMxdXBqUO8n5jD9y8Jwtn5D1xY85qEZ__zmxYRJdju0nLQAYglLWhrqBz6VMHKbezHC0I','Loved this Place, they got me in and out. The staff and nurse were very friendly and helpful. They took care of my needs in a timely matter and the male nurse explained everything to me! Definitely recommend this place to everyone!','2020-07-19 17:27:29.508000','2020-07-19 17:27:29.508000',5,'Eduardo Zuniga','https://lh6.googleusercontent.com/-MJuix18y9LU/AAAAAAAAAAI/AAAAAAAAAAA/d_xdetgCUgw/c-rp-mo-br100/photo.jpg','14748677429039074158',21708),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHQynJ5Bo8d50jTsPw9CVM4b3yTEFeBgfD2MNVaUjpoJXMN1lakuSQbbczbj5m8ZE2d-I1be2DjJ2bLZYYrws6ymBWtM',NULL,'2020-02-05 02:41:39.981000','2020-02-05 02:41:39.981000',5,'chore 77535','https://lh5.googleusercontent.com/-q1t0ziUpf3Q/AAAAAAAAAAI/AAAAAAAAAAA/wtrUDr0yA1E/c-rp-mo-br100/photo.jpg','6521947413723274945',10554),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHSOBk3KUnEDeB5zl4B7VVtRiHmF3M6ejHZJOL8mps0-oZHM5R48lGMd4UVhMsPlxkJMosmuMGFeC7NyTitiXej5z_lw','I want to thank Dr Dang, Dr Patel, Dr Kim, Nikaela R., Robert S., Diem N, and Jesse R, Rachael, all the other RNs, and the rest staff at Signature Care Emergency Center in Sugar Land for their excellent care.','2018-10-13 04:25:53.799000','2018-10-13 04:25:53.799000',5,'Property Bros','https://lh5.googleusercontent.com/-SfKWZx8tVxc/AAAAAAAAAAI/AAAAAAAAAAA/YHstGaP-E3g/c-rp-mo-br100/photo.jpg','17394740196501090048',4772),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHTRVkiO5llBBCwQEh62fGnTlRJPsmA-J7oYJfbiYOd2gmAvsVVAP4Z_iS6voDFFlfbqAZr03wn4V33RwMWz4Y_PPrXw',NULL,'2019-08-24 02:10:44.221000','2019-08-24 02:10:44.221000',4,'Shaelyn Ballard','https://lh5.googleusercontent.com/-F25K-AHGILg/AAAAAAAAAAI/AAAAAAAAAAA/cHd9bxd8x30/c-rp-mo-br100/photo.jpg','16590124370714063921',3242),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMHuxhlhcsq9ZwPozYjzHdlYYdY4VxtKKIfmASrXMJE95-gJcztTh6P7tR0d4mUlfvOudogFJ4MiexR1v5BtyYD3TjPhI','Great Staff! Came In And Checked My Son Out ASAP! Loved The Way They Took Care Of My Son! Totally Recommend! Best Nurse Is Nicole G., Dr. Stevez, Olusola S, Dustin H, & Tim M!','2020-01-19 05:30:18.318000','2020-01-19 05:30:18.318000',5,'Anthony Vergara','https://lh4.googleusercontent.com/-4PJIHildIx8/AAAAAAAAAAI/AAAAAAAAAAA/nUZ43dZ6fa0/c-rp-mo-br100/photo.jpg','14567670160750071148',9909),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMi1fV_Fd9i0bat43Wj8n7iApnF6RnkzzVdAR6y0JP0H0YcPFVRb3eT3u1CksjscNkF7EvyB-PBKBsJmm2YK8t8WXwGRc','Wonderful staff very helpful an the most important part everything they do very fast to me I give them 5/5 .','2017-05-08 13:48:55.957000','2017-05-08 13:48:55.957000',5,'Humer Uddin','https://lh5.googleusercontent.com/-xqRpNflkHiE/AAAAAAAAAAI/AAAAAAAAAAA/LUZyTriydqs/c-rp-mo-br100/photo.jpg','17394740196501090048',5062),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMI7fXdxyPFwD4dCLWyYwB3XEUJhbK89gXI5pR0M20jPmsPOzSCqQOQkaalSCWUPVMa9FI31lnKVThN6kuBiEDLhglFfA','Omg! I just found my go to spot for getting sick. When I tell you these people are Amazing! I just took a coworker to get her leg checked out from a fall. They treated both of us like Royalty. Maya was so friendly when I walked in. I needed a wheelchair to help her get in. Scott came to assist with getting her out of the car with a smile. Then we had Kristina come in to get more information and she was very kind too. Dr. Ortiz was so Caring and nice. I am totally loVing this place. If any of my family gets sick and we can’t get in to our primary care doctors we will be coming here.','2020-01-17 15:07:52.198000','2020-01-17 15:07:52.198000',5,'Kristin Hicks','https://lh6.googleusercontent.com/-zqik8ezAFeg/AAAAAAAAAAI/AAAAAAAAAAA/TZNg6x1DOVo/c-rp-mo-br100/photo.jpg','12541597562633926366',10026),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMI7MDG5teVwOy1jS5iKbM8dzSSlX24N-W6POmfWKLKHi1pXLOjKlNPfuKnaotIf4Mc7Ep5F4s-Wt0fbd8UuNru0VutPk','Went in for stomach pain and was seen as soon as I walked in by Earl. Nurse Katiek took vitals and is a pro at setting up an IV! I was then seen by Dr.Lingan and tested and given medication and a diagnosis. Probably the best ER experience I could ask for!','2019-02-13 19:20:29.361000','2019-02-13 19:20:29.361000',5,'John Saigusa','https://lh6.googleusercontent.com/-yAmezof79lk/AAAAAAAAAAI/AAAAAAAAAAA/CelBiMGzIkg/c-rp-mo-br100/photo.jpg','16891069708558046635',4350),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMIApXhDFYusq9ds1vJcBbSZG6yLvKzQIPwaiK5Ye5N_WeHo7VjjLBfl1mHG99eAYmA0QxfAgU7TtGNogqLcI8vb-S2Fg','Staff was excellent all the way from beginning with registration jasmine to nurse Janice lab tech Marcus and most of all dr. O\'malley.','2019-08-06 19:03:01.087000','2019-08-06 19:03:01.087000',5,'Tommieretta Gunner','https://lh6.googleusercontent.com/-afoiaesjeVg/AAAAAAAAAAI/AAAAAAAAAAA/Pgw_Z2QizWQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMIasQ2TfpAsu5J6GVq_Kv7JSisjYWN0fCyJZ77K3aOMT9a9bUvgqAd-lM3B0xD4zm2u5JpKLL5aBgtt5e4StvqM5p16w','Keep stuff updated today','2019-11-23 05:42:32.244000','2019-11-23 05:42:32.244000',5,'Chase Mitchell','https://lh4.googleusercontent.com/-JaE7iflAqKQ/AAAAAAAAAAI/AAAAAAAAAAA/pryuJNZ8xXU/c-rp-mo-br100/photo.jpg','13486358490203335051',724),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMIbt2sEs87Y_JhPoy6N8nHQ5uIr09kXDmzg9LX6jPacxr6ywx31RYP4ifmDpcfMUeJj4fdmHQ8Fq1Qy1ZXyIBpYAMFSA','going to quality er was the best decision i have ever made. \nthey got me in fast and it was exceptional customer service they treated me the upper most respect and fixed my situation with out hassle i will most definitely be going back if any future needs due to medically needed assistance!!! \nA BIG THANK U TO DOCTOR SIMMONS , BILLY, AND ROBIN!! \n\nJennifer Moore:)','2019-01-08 02:51:47.598000','2019-01-08 02:51:47.598000',5,'Frankie Alexandra','https://lh4.googleusercontent.com/-Ccb2LFejRbo/AAAAAAAAAAI/AAAAAAAAAAA/cEU6lt0gwrU/c-rp-mo-br100/photo.jpg','8626688543755174284',8599),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMIDT9DiJ6QdkWDyLjsPAZEpmmig6N-RWtAwV7MnSXl2xqsxtyOl-zoo47Hi8vFuxOVgsUMxguDD6S3BK8GLyCQi1ZA-o','Very fast so glad I came here instead of the regular emergency room 🥰','2019-08-03 03:37:26.303000','2019-08-03 03:37:26.303000',5,'Jazmine Day','https://lh6.googleusercontent.com/-okreWXd0f2I/AAAAAAAAAAI/AAAAAAAAAAA/izU8uiee-bE/c-rp-mo-br100/photo.jpg','2694018788013845459',6096),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMIEdy2V2Xy-7J0g-h48jjknvfF0MxriSIEaBQ_mti3tvOA99YSNuToN5NHl0hHrVJwfb74XWjASxBWol8YEJKNS0BUng',NULL,'2017-10-24 13:55:47.291000','2017-10-24 13:55:47.291000',5,'Sydney Harrison','https://lh3.googleusercontent.com/-hpwr76uSHFg/AAAAAAAAAAI/AAAAAAAAAAA/Wba_rNVfv14/c-rp-mo-br100/photo.jpg','14567670160750071148',1743),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMII1kAC0j_UBH7NW0-J9mHljrGLbaA19xXWWujQmcBytn6BIn8T2xe29f9oT7O6ppuxaefWXFmBMi700KoECxXkeIoAQ','My stamp of approval to this place. Everyone helped me despite my anxiety. My nurse Karen, doctor Nweze and rad tech Rick all were so helpful and attentive.','2019-11-07 18:38:03.731000','2019-11-07 18:38:03.731000',5,'chassidy smith','https://lh5.googleusercontent.com/-TAFhPWPE4QM/AAAAAAAAAAI/AAAAAAAAAAA/BatV6jGABQg/c-rp-mo-br100/photo.jpg','8679688254631342173',8741),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMIMvOHQv-Bxi3ZE2briBV0NneWrtxp-4VlHlNlsRaLXp_4bjto13Fp8KWIIvh0w4EE4em-r8An6TLbIZkXCvGcDPHJP0','Very quick and efficient, Patty, Son, Blake, and Dr. Blake were right to the point I was out in less than 2 hours.','2019-06-18 18:55:13.995000','2019-06-18 18:55:13.995000',5,'A Ch','https://lh5.googleusercontent.com/-eLKH0jsFcFc/AAAAAAAAAAI/AAAAAAAAAAA/lEg1bqCTZCA/c-rp-mo-br100/photo.jpg','8679688254631342173',8831),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMiX7dzvCbHyI4Thn2rhHjKk3-aUiwwfdz9CtPRrYgixPtI6pW3A3M0g15Vc_8HbthK2GxFRnr3030zfAET_gt1AHTH6k','Couldn\'t believe how well this place is maintain, very polite and hard working staff ,felt like we were not in Odessa ,Manny G. nurse very helpful also awesome physician Dr. Vaagenes , everyone here was awesome . They even gave us snacks and juices . Will not go anywhere else if something happens to my family 10 thumbs up if I had them , thanks to everyone there','2019-06-11 16:50:16.219000','2019-06-11 16:50:16.219000',5,'Patricia Saenz','https://lh4.googleusercontent.com/-xXktowB3P4c/AAAAAAAAAAI/AAAAAAAAAAA/P6iBsDS9Yqo/c-rp-mo-br100/photo.jpg','6521947413723274945',8241),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMIZL9xSvkSwjFvRWmpj-CoEfuP6VSQKFII6cM_7isPXUhV875MThy9G7SZTNviP-jji6jDOegQwHEv2W4rmz8s8JgYSs','Excellent costomer service. Fast results for my covid test. 15min to be exact. Price is higher than other places but worth it if you need immediat results.','2020-07-13 20:40:39.601000','2020-07-13 20:40:39.601000',5,'abby ovalle','https://lh3.googleusercontent.com/-af4f5v0FQcg/AAAAAAAAAAI/AAAAAAAAAAA/Em089Bj1S5E/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',21952),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMj27ib5ve5kD0h5pAfYRwa1rcIvYl7N2RCgVNHNoM4NL1OBHNTpvd6hKFoEeV9UO1tAo63PHVyNNLlT2688t38XJrqEo','We have been here a couple of time with different family members n has always been a Great experience. Their team actually saved my husband\'s life and I\'m so grateful for that. Way better than MMH','2019-08-05 18:54:21.077000','2019-08-05 18:54:21.077000',5,'Brittany Johnson','https://lh6.googleusercontent.com/-GZxmwN5hclY/AAAAAAAAAAI/AAAAAAAAAAA/li8WIu9gdFg/c-rp-mo-br100/photo.jpg','13486358490203335051',867),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMj9v34elBi0y32o8Tqrsi-ZPT4A3XYFNFNXEerdU9MP3B7s5WAV_6P_fu3aXCrYh-TIk_8wyF-vrHOikmpAwktFaXdqc','They were able to perform some diagnostic tests when I needed help seeking answers.','2018-12-08 18:43:44.036000','2018-12-08 18:43:44.036000',4,'Amit Agrawal','https://lh6.googleusercontent.com/-9Cb1hdOs8Kw/AAAAAAAAAAI/AAAAAAAAAAA/JlCHuD_3Yyo/c-rp-mo-br100/photo.jpg','16891069708558046635',4390),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMJAsChX887U1JnY4Gg3Xg1zPJ_-E87U6xtg5PZci3t7PDRjpk7y-vv5weFe8E-YvjwVsnxD9OYtJWnHv2nhWylwug3Q8','They were so attentive & they checked my daughter immediately','2019-11-22 05:50:28.445000','2019-11-22 05:50:28.445000',5,'Joselin Zubia','https://lh6.googleusercontent.com/-3_JTmGxG18Y/AAAAAAAAAAI/AAAAAAAAAAA/qfwbotzz2pk/c-rp-mo-br100/photo.jpg','6521947413723274945',8083),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMJexIhfdK-BaKoFv4XwT-FvbO-OGTEABQXUi9HBeHgJPz5HhYX45aXTEP96XaZRhwR7ix7QnVxAZQTXkXKzDxJ4gQLO8','Absolutely excellent care. Staff was incredibly friendly and helpful and the we were able to easily communicate our problems to the doctor. Would definitely visit again.','2017-01-27 07:45:11.863000','2017-01-27 07:45:11.863000',5,'Destan Traeger','https://lh6.googleusercontent.com/-ES1kyXPLRzw/AAAAAAAAAAI/AAAAAAAAAAA/szttEpX7wdU/c-rp-mo-br100/photo.jpg','16590124370714063921',4080),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMjIXCEo4U0MJFd9uzOHp25u17-qtPPlg8T5IuRN3wds8I-2g3t4FW7in2i2O4ttBMc2kYLrWZLjf4A2ikJQGWAHQ6NHU','Poor experience.','2016-01-25 16:32:46.412000','2016-01-25 16:32:46.412000',1,'Frita Wiggles','https://lh3.googleusercontent.com/-unMupv43cCc/AAAAAAAAAAI/AAAAAAAAAAA/tx2bwXaTH0c/c-rp-mo-br100/photo.jpg','3511292162159714121',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMJmqw5YQlKGTzmKbJLVkGYHhQUvxjKWxkmrooMHJM76hX7bHYRbD6LegB-SteuHV8KIPX_PUmp02cYgH1fQkpfMaTc5s','Wonderful staff! Alexis was great! Very attentive and helpful.','2017-09-10 00:05:11.288000','2017-09-10 00:05:11.288000',5,'sadie thomas','https://lh3.googleusercontent.com/-ogEnbnLaipk/AAAAAAAAAAI/AAAAAAAAAAA/0sIJJgc10LY/c-rp-mo-br100/photo.jpg','16590124370714063921',3938),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMjZMGGyxY7wz995hh4Dz0TweQyUN_TAKEo5g3iZSkYYNdVvzsi8y2fmjCWKfldKpdpCa7_AhHe3d4XduVH3Vqqmm_0Ow','The staff (Ashley B, Ashley K and my nurse Susie) were very friendly and very efficient . Thanks Signature ER I will be back if I need to see a doctor. \n\nThanks','2020-03-06 15:53:23.581000','2020-03-06 15:53:23.581000',5,'Sherry Kuhl','https://lh4.googleusercontent.com/-WdgaZIIc4Lg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckzI65rtfa0f85ZhW81hWe2MzzWeg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21188),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMK254DvfSAw6Dm-AHFN8jzMQI3NomUGs1k2YCLQwViiT2xr7xis2veJHnHhmmAWPaMeJPVowlpTZM6WRJy_ePBji9D4U','Everyone here is so, so kind and helpful. We received excellent care, had everything thoroughly explained to us, and had an all-round great experience.','2019-05-10 03:18:35.141000','2019-05-10 03:18:35.141000',5,'Katelynn DaCunha','https://lh6.googleusercontent.com/-HY96PPlYMkk/AAAAAAAAAAI/AAAAAAAAAAA/oblipqpBwUg/c-rp-mo-br100/photo.jpg','17898197009688164559',5746),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMka5EzzsJqpeCX9dy_T1KNy_qhsUatMfNQQG5aT0cVeeV5z5Igb27pDLPYc-cDFMGWyJV-6oDKH-03ecKIsJFO5s9kxM',NULL,'2019-09-27 21:45:29.122000','2019-09-27 21:45:29.122000',4,'Lane Hays','https://lh6.googleusercontent.com/-nd2_-DkHtWs/AAAAAAAAAAI/AAAAAAAAAAA/Fj5cimV6t_k/c-rp-mo-br100/photo.jpg','8626688543755174284',14673),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMKkxHsHprtIZjBkOfGY2fcNytdNGtysvJhY4YWFtCi8o7xpO0gOd9hePGmg0H-Re_zGFEB50WTNe7WIHAw2C2Y4AYNeA',NULL,'2019-02-21 01:29:14.627000','2019-02-21 01:29:14.627000',5,'Raquel Luera','https://lh4.googleusercontent.com/-FNjyaWQpl3U/AAAAAAAAAAI/AAAAAAAAAAA/0eb8PshDAts/c-rp-mo-br100/photo.jpg','17898197009688164559',5841),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMKO4lrAW_3eP6UN5SBVutJFnyi5LPthDQb66Vf9V_LFwcWEV1kyWhkpu8h211i_DYSA6eE-5ORQ5VUTPAMx85cnNzMac',NULL,'2018-01-16 20:00:36.615000','2018-01-16 20:00:36.615000',5,'Sarah Mayhew','https://lh6.googleusercontent.com/-bR7daSxbP_Y/AAAAAAAAAAI/AAAAAAAAAAA/V2GSjF3xHK8/c-rp-mo-br100/photo.jpg','16590124370714063921',3882),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMkt2WkGgBmpdmlpPwINYjlYoPPy__p0nMDifcu92m2T7bSV-q8YByNd4UPvABB49fV_ubNn-QOuV2w_r67NLnRwmUHXQ','Wonderful staff. Fast and professional service. Thank you Deanna, Dr. Thomas. Trisha, Tristan, Ellen for making my child feel better!','2019-02-26 01:07:41.019000','2019-02-26 01:07:41.019000',5,'Brenda Moya','https://lh5.googleusercontent.com/-07YYK4R4uPU/AAAAAAAAAAI/AAAAAAAAAAA/B7KzVAGvjT0/c-rp-mo-br100/photo.jpg','12541597562633926366',542),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMKxWl_3yZ6s2nqoNKek0B4NCipsWZw-ioMNRkKU4NPXA5ub7-iaUgYXzf53in2gLKpReNe6oTIiA60brijgGoL4HsJYA','I went to SignatureCare ER when I wasn’t feeling well, and it was the best place ever! They took care of me so quickly. If you are not feeling well, head on down to Signature Care ER. Stephanie is at the front desk, and she’s excellent. Rollie was my nurse, and he was so fast and caring. Dr. Daniels took great care of me as well.','2019-11-15 00:50:29.020000','2019-11-15 00:50:29.020000',5,'Mahamed Mahamed','https://lh6.googleusercontent.com/-MiKc4ybmbVc/AAAAAAAAAAI/AAAAAAAAAAA/anA_zpMBs3o/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8733),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMl3C5itCdWgL8TLdSfaUj71WI_SscsRaOTLz780rQmER9sIIXG1Qdc4TxdovqLD0P7GYo-NfdAPRlXG03Bj4aeqbudfY','Got in and out in 30 minutes. Facilities were super clean and well designed. Staff was extremely attentive and prompt. ','2017-08-20 02:02:30.492000','2017-08-20 02:02:30.492000',4,'Maya Kumar','https://lh5.googleusercontent.com/-104ZnOwvTRI/AAAAAAAAAAI/AAAAAAAAAAA/jnWrb_VYGsY/c-rp-mo-br100/photo.jpg','14567670160750071148',1765),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgML4r_0IvGl0p0HZZ_g7jupx-JAIhqjn1WtGWuEv_4vEv3Pylk87tDZbmIUQihPO0WvLbLUYUr3ytxplfWQFA4ouDx3Y4','The nurses and doctors were helpful on both of my visits. Very clean and I did not have to wait either time.','2016-08-22 19:40:39.616000','2016-08-22 19:40:39.616000',5,'Kory Adams','https://lh3.googleusercontent.com/-yInrWpWDYvY/AAAAAAAAAAI/AAAAAAAAAAA/Qhsk3mUya20/c-rp-mo-br100/photo.jpg','3511292162159714121',7948),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgML5knBDPaDty0XpYllZicgCTbhG-y6Nz7pegsbcEILe4292yMy3g6LF7iYJ7b_QelmaWN_bAsVpOz45TJ3jYw0I7UYn4','My nurse Mrs Regina was very kind friendly , she made sure I was comfortable and helped my nervousness down a lot . My doctor was super friendly he made not worry he was gentle and quick . I feel no more pain . Great job guys','2020-02-10 20:46:21.633000','2020-02-10 20:46:21.633000',5,'Chelsey Hatchett','https://lh4.googleusercontent.com/-Y-O1LYnF-OM/AAAAAAAAAAI/AAAAAAAAAAA/4tY12588E7k/c-rp-mo-br100/photo.jpg','14567670160750071148',13541),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMLcOfgczT72bXqVYsNbT44IbemEVd-dPSVWJlT0HyPWcIRqY4u_BgdmTJZ5HQSWyNAL8DTu-oFAT-QB6PdOAP91LaF1M','This was the best ever! Dyreliz and Arielle were super attentive and helpful, the RN, Remington, was very caring and gave detailed explanations, and the doctor, JR, was super nice, and very concerned for my well being which is really nice!','2018-09-12 15:59:18.489000','2018-09-12 15:59:18.489000',5,'Mallory Anne','https://lh4.googleusercontent.com/-mBEq-78B28Q/AAAAAAAAAAI/AAAAAAAAAAA/BsR4xnMGoCw/c-rp-mo-br100/photo.jpg','16590124370714063921',3733),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMlj6Zr0LBt7how37YFGAo2VOI0iiQPMT5A6M617pwrZFVl-ElXb1vlcjWNXfuoKAZjzXod1awiLiHsD_WDrqwHKDbHI4',NULL,'2020-08-01 21:11:22.186000','2020-08-01 21:11:22.186000',5,'meagan bittner','https://lh3.googleusercontent.com/-rA_RHRnvhLE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclSarq-1-QnmvgKTSXbycjyEuNqAA/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21939),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMLkhOvRFl9x8gthsBJaA93FIxns_IlIjtTSSMCRFVbteCsDp403aQ_9n8AFTaci3kjijTE_xgjcskoSVEsMkKQOYbsUI','Very helpful and nice. Took good care of me ASAP. No wait!','2019-10-16 17:29:14.457000','2019-10-16 17:29:14.457000',5,'Sebastian Rodriguez','https://lh5.googleusercontent.com/-DQpK-H42bp4/AAAAAAAAAAI/AAAAAAAAAAA/L3IT26NS0Vw/c-rp-mo-br100/photo.jpg','3511292162159714121',7159),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMll6hI4jg7KDKAaNq-CCXHxj-lVjagrNkxhpr5lV1bg4fc9Cy8q40_MKMrgG7Fl4UJXWHWr1h4gog-G3sgKO8ar5PLWQ','Dr. Faig, nurse Sarra, radiology tech Holly, Carly at registration and E.R tech Thelma where all very nice. I didn’t even start the paperwork and called my name. They whole process was quick and easy, I came in with back and leg pain and I walked out feeling much better. Thank you all for your help and Merry Christmas.','2019-12-25 04:37:25.826000','2019-12-25 04:37:25.826000',5,'Hasna Aouya','https://lh3.googleusercontent.com/--m1IcDjqjxk/AAAAAAAAAAI/AAAAAAAAAAA/WlPHStQ86e4/c-rp-mo-br100/photo.jpg','12541597562633926366',307),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMlmb3L0OFLUEwl0Tk-bfqUbHawZrGpLnnqCeSC0mAomuJVk8YtsZ_CGdFdmO7Gfy18GTZimfy_NA-AOi-PEaJTvyXGKs','(Translated by Google) All staff very friendly. very clean facilities. cody and peggy very friendly service thanks. Excellent all very friendly staff. very clean facilities. cody and peggy very kind thanks\n\n(Original)\ntodo el personal muy amable. instalaciones muy limpias. cody and peggy muy amables servicegracias. Excellent all very friendly staff. very clean facilities. cody and peggy very kind thanks','2020-07-29 15:23:50.281000','2020-07-29 15:23:50.281000',5,'Alfredo Saldana','https://lh6.googleusercontent.com/-vfS5ufWYX1Q/AAAAAAAAAAI/AAAAAAAAAAA/OFgzXQkndS4/c-rp-mo-br100/photo.jpg','2077061009497551125',22950),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMlmn85pLxNYT30TBDMN9PevOvL5eDdQhIcbwDbHanPWVokpzq4_ZiFLjmAEgsvauSAIV-7McPH6RuPxuKpWfw5jM9RiU','Dr. Osiecki was awesome! Very personable and professional. Senaida and David were extremely kind and helpful!','2019-01-18 04:52:02.527000','2019-01-18 04:52:02.527000',5,'Nohely Sanchez','https://lh5.googleusercontent.com/-O615hsuldiY/AAAAAAAAAAI/AAAAAAAAAAA/ndE-ufRvUhs/c-rp-mo-br100/photo.jpg','13486358490203335051',1103),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMly-NUP0WY4nXQoR8O-4y4BQvzgxEpMdDMS6p4QUnlRUmeXx5VnIow3Yn9PGt_vcsr2crrMMvGt7T6bnUSb705CucPc4',NULL,'2019-06-15 18:12:28.390000','2019-06-15 18:12:28.390000',1,'Doug Dicker','https://lh4.googleusercontent.com/-IFgziF6xmwU/AAAAAAAAAAI/AAAAAAAAAAA/s8MhixTxFEE/c-rp-mo-br100/photo.jpg','3511292162159714121',7308),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMM4dJCrQW7g5q4AofF9PQ1_Tj4eoQQ5i9RnzT6GFhV6Uqblcnv2ouAlauuR3CCkkji_g8h7HRjDHKcJS6d_pzJVnDBwU',' The doctor was great and the registered nurse I had was wonderful and I will be back at the one in the Heights all the time','2017-08-09 09:43:46.232000','2017-08-09 09:43:46.232000',5,'46 gessner 46 gessner','https://lh5.googleusercontent.com/-h55YH4ydNY4/AAAAAAAAAAI/AAAAAAAAAAA/ENgiaZGyxgA/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1776),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMm90ho9GuwJ8qirSV-MkSBarPA3yhhxVfz-HZB0SZGMjYOmqiPO2zbBhA5OPC15P2c0oDJB4T_wsd5qK-EXVoYGDQqvc','All the staff were very kind. Dr. Henman was the best. I wish he could be our pediatrician - no exaggeration.','2018-01-01 02:55:14.631000','2018-01-01 02:55:14.631000',5,'beth castillo','https://lh4.googleusercontent.com/-A5nbI0jYStE/AAAAAAAAAAI/AAAAAAAAAAA/zn39eZ4NIWw/c-rp-mo-br100/photo.jpg','8918455867446117794',9313),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMmAn-EBtGAGnuozfXBdLOn0IpoBDcbH0_xZMT5p8z6yQsLcsYRt_fL8tBGA8tsNa_9_6X8ofbJFcGwtGHx_yQd7TRONY','I sat on hold for three hours and ten minutes and then the phone hung up, after sitting in the same spot for said three hours. If I could give this place zero stars I would because that is just absurd. I wouldn’t even be able to tell you about the customer service because I never got to actually speak to anyone.','2020-06-25 05:23:06.390000','2020-06-25 05:23:06.390000',1,'Amanda Kleiss','https://lh3.googleusercontent.com/a-/AOh14GjFPdfCe6AmimjfwssMDfM7mAjqbaQbrOUjbig9sA=c0x00000000-cc-rp','16389487648212004696',21273),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMMC7FhuT2fOrTOohZ2ABwLVwF7rLrmAKPHzuEraeGx8tf4z8FuxLh9dR8VhzSGL7EhD_F0JHqWqldJMTgL_iymLLlvP8','All the staff was very inviting (Jessica S., Cindy, Seinida, Randi, and Eliza) even at 4 in the morning. The doctors and nurses explained everything as it was happening and ran adequate tests while also addressing pain promptly.','2019-12-06 10:42:47.194000','2019-12-06 10:42:47.194000',5,'Tailyn Gillette','https://lh4.googleusercontent.com/-PX7pG7BeFhQ/AAAAAAAAAAI/AAAAAAAAAAA/nFN0u6zInRc/c-rp-mo-br100/photo.jpg','6521947413723274945',8071),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMmFLpZBZLRrO-gz5umnvus22CSWX0tl28TAyudbHqQ1hcLrNx0aylMJ3pSRmp9mNrVPnfp4BWNaXyhW6gXVOiUXeZPQ0','This place is really amazing I would recommend it to everyone I know! Thankfully my friend is feeling better but it wouldn’t have been possible without the help of the outstanding memorial city team, Jordan, James, Mildred, Sylvester, and a special thanks to Olivia for making me feel so comfortable in a stressful situation! 10 out 10 all the way around!','2020-01-30 09:18:06.978000','2020-01-30 09:18:06.978000',5,'Alissa Jetlife','https://lh3.googleusercontent.com/-NuVpmksEYg0/AAAAAAAAAAI/AAAAAAAAAAA/vH5fa8lgFFU/c-rp-mo-br100/photo.jpg','14904078213800803294',13616),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMmhuQNeFpdAk203b4RO53T_gaQUV7PZj6tkfFQD9qA4QN4bCJ9W9kj9QPf5JgtEeaLH_dDvavWq78ZBWJo36HMUMc8_0','Great, fast treatment!!! I would like to thank Dr. Huerta, Allison, Kramer, Savy, Jose and Shania for the care we received. Very professional staff! I highly recommend Signature Care ER.','2019-08-15 03:42:49.765000','2019-08-15 03:42:49.765000',5,'Alicia Wright','https://lh6.googleusercontent.com/-qVfJkjtDT9Y/AAAAAAAAAAI/AAAAAAAAAAA/3yCTy_bBc4U/c-rp-mo-br100/photo.jpg','13486358490203335051',858),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMMHvAjGPq_BgEChRBzZzJ2qHNr5ay5rBTnwh_jKHiSHp3rK4g5AfgOSIhc5wQG0FG-T0UwEMlfe4K8bnvn_14DWKBWbw',NULL,'2020-02-02 20:31:32.057000','2020-02-02 20:31:32.057000',5,'Jamaria Chontel','https://lh3.googleusercontent.com/-YnzuDn79cn8/AAAAAAAAAAI/AAAAAAAAAAA/NZM-VnP7ruQ/c-rp-mo-br100/photo.jpg','3511292162159714121',14432),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMMiv-fAP61_YgCSTeSfNlpwloImGqNe5MeLkRE6g6_PK5Y-ztjvZnXSzDKlQgXcsI6qf3bfYTLmcZvGtBJ8J2tA75sEA','Great friendly staff , in a out in timely manner.','2019-09-21 12:35:14.538000','2019-09-21 12:35:14.538000',5,'Antionette Burns','https://lh4.googleusercontent.com/-HNl6gIbOSmo/AAAAAAAAAAI/AAAAAAAAAAA/wUwLgAAsV3A/c-rp-mo-br100/photo.jpg','16590124370714063921',3187),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMmKlL9dJ9FVFUDsybFyjcYzHegOo4xxXBKkcCOy5anFoJyN2FdhXa_IT1hWe_QL9qeU3GgG0s58bkW8-iGWq5Vk4lsiQ','Quick, easy and professional. Dr. Ortiz and his staff - Alvean, Jocelyn and Mike - were awesome.\n\nBeats going to the hospital ER any day of the week!','2019-06-22 17:41:31.621000','2019-06-22 17:41:31.621000',5,'Jessie Mann','https://lh6.googleusercontent.com/-sGIm8-WMOPk/AAAAAAAAAAI/AAAAAAAAAAA/W7b3UrksSoA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMMPZqOD51mO36xLEGQcZESnrR-UJvXN9i97Sf3juZv4hK5fh98eDSvBug5qc3e4G1Yi-nLzOwusPTfMSwYESHMP7ICSk','Fast, clean, very friendly and caring. I have never experienced such an amazing urgent care/ER before but I highly recommend this place to anyone who needs help and is looking for the best experience possible. Thank you SignatureCare!','2019-11-25 12:26:53.725000','2019-11-25 12:26:53.725000',5,'Kate Shrader','https://lh3.googleusercontent.com/-T0oAlsH_bgU/AAAAAAAAAAI/AAAAAAAAAAA/kIQy3f5q76A/c-rp-mo-br100/photo.jpg','2694018788013845459',6006),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMMuP_fTDVsyTgQysUCsU1qN-bMDaVQ6eRD3akIrxf57XWjULdoc8NYvB1e3lwHGbAnNjwp2chImOFUlTxcZ_K1p6NQHY','I love it they were fast explained everything and my nurse Katy was awesome !!!!!! DeAndrea Glass','2020-01-16 18:46:09.655000','2020-01-16 18:46:09.655000',5,'DeAndrea Glass-Stephens','https://lh4.googleusercontent.com/-6UmYAdanbsM/AAAAAAAAAAI/AAAAAAAAAAA/L3h0oxiEzQQ/c-rp-mo-br100/photo.jpg','3272657195432704501',9809),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMMwv8b_Kgcvmcvaj5XLpBGh8SYI_I9sBxY0V23VffBLozbqX8fG9ZP5XAj2oqrUvYfmDe_Yr4JcZwrQuj0Vc_cvhflYY','My wife brought our sick toddler here and we were seen right away. Nurse Christina, Christina C. at the front desk, and Townesend T. were beyond attentive and compassionate to my family in our time of need. Dr. Goodman had a wonderful bedside manner and treated us like we had been his patient\'s for years.\n\nI felt the costs were appropriate and affordable. I\'ll recommend this place to my family and friends! Don\'t forget to enjoy a warm blanket!','2017-10-04 19:18:52.023000','2017-10-04 19:18:52.023000',5,'A P','https://lh4.googleusercontent.com/-e8BVjRU2-1A/AAAAAAAAAAI/AAAAAAAAAAA/MBg4w_YTrS4/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4538),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMn7NF2MrSE3kPbIsJjTN0zoB9DmsBTNS6-gYve8A53Vdzxq1rELv2eqvDJdy34aUYjHHQmDpxBTZGTeBHjBmCIpAz9us',NULL,'2019-11-13 20:50:32.323000','2019-11-13 20:50:32.323000',5,'Muibat Kareem','https://lh4.googleusercontent.com/-DAnVgHa4pvg/AAAAAAAAAAI/AAAAAAAAAAA/UjNHhdiX65g/c-rp-mo-br100/photo.jpg','16389487648212004696',2711),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMNaSu7FMByfD14Y04tj5x8RG4luc9xPz0VBcA5EqBfxyLuz3TR3xzVOlRkr4O4rFyvgu_gdWsAm7-RK22r3RpF5t09tc','I came in severe pain and I was treated with great kindest and concern. Dare I say that I actually enjoyed my visit (minus the pain part). The facility is clean and the staff is absolutely amazing and kind hearted. I love when people educate me before something happens so that I can prepare myself of what’s coming. I was greeted by the warm and personable Tanishia who was very informative of the process of checking in. The nurses Susan and Daniel are great educators and have such a gentle touch. Fatima, who did my X-ray and CT scan was such a joy and constantly checked on me throughout my procedures with her. Elaine has such a great spirit and offered me so me snacks...I think I love her 😊 Last but not least there is Dr. Estevez whom genuinely seemed concerned about my health and my multiple concerns. She asked all of my questions with kindness and patience. If you need to go to the emergency room SignatureCare Copperfield is definitely the place to go. I hope I don’t need to go to the emergency room anytime soon but if I do my family and will definitely come here.','2020-03-20 06:39:13.465000','2020-03-20 06:39:13.465000',5,'Tee Street','https://lh4.googleusercontent.com/-ddcDjF-7hKA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckN5icXde_Q9rmUuA_JiFjcNx3Asg/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21082),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMNcXIRiwOfUOQAFGZDhpfNHsNdnW4qGjjm8WTHbVY03IswhwwesIknDkJmj1_7x5gtrZzV_YvXe8PFSa7IcxSDAOU4TA','Great experience at this site with a wonderful clinical and medical staff: Dr. jones, Calli RN, Brenda Tech and Nicole registration. \nI highly recommend this site for your care.','2020-08-08 16:18:17.438000','2020-08-08 16:18:17.438000',5,'Ross','https://lh5.googleusercontent.com/-n92yreJwd9E/AAAAAAAAAAI/AAAAAAAAAAA/sCPHTTGxRwg/c-rp-mo-br100/photo.jpg','2077061009497551125',22720),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMnD_pk0V_SkzSmDzih1pgxnEfZyRb_W6pdB7zxxH1nkk9U9zuxXiell05715rLziLHMItqhginc_EGnlzpwDoMO7HAuA',NULL,'2017-12-07 03:13:08.575000','2017-12-07 03:13:08.575000',5,'Remi Ogunlana','https://lh6.googleusercontent.com/-gSADEg5HF-4/AAAAAAAAAAI/AAAAAAAAAAA/dfGrK82KhtQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9328),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMNFMVKNT1myTJzRBsNAvIq-IZY8_uj7yIhldnJ4b0tOCL2fnCnZP3zI113bgjfGJq4HdUrnIry5g6oaU8P1Zl9sQrR2I',NULL,'2017-03-28 22:07:35.523000','2017-03-28 22:07:35.523000',5,'Dallas Mohler','https://lh3.googleusercontent.com/-31IW-3uMWpo/AAAAAAAAAAI/AAAAAAAAAAA/MJ-VNT3hGtw/c-rp-mo-br100/photo.jpg','3511292162159714121',7856),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMnJRRp-VbDxIHrR3jgp9xQ61ZdzoUNlbtKrbLhr2Wcf_JyjBbl-r8iaMNdEPQmu60B7zk2L6vU7z_5YTe15oFSPeXpt0','Clean, friendly, in and out. Would come back.','2019-11-13 00:50:19.886000','2019-11-13 00:50:19.886000',5,'Megan Davis','https://lh6.googleusercontent.com/-ySZKOkGvjCc/AAAAAAAAAAI/AAAAAAAAAAA/Ddcx6L-dgoA/c-rp-mo-br100/photo.jpg','13486358490203335051',744),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMNNNxKYStjLkB2N9CzhRF_tHTxXxjJbYATchD_PLsPzJzXOMz7KcajOJUJx4UFwAgScHXud88fH9lLbXeyBLeSyLyh3I',NULL,'2020-03-09 03:24:41.967000','2020-03-09 03:24:41.967000',5,'Ray Bustamante','https://lh6.googleusercontent.com/-_c4UD7XGwmU/AAAAAAAAAAI/AAAAAAAAAAA/mqMDn3fdAMM/c-rp-mo-br100/photo.jpg','6521947413723274945',21176),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMNTn5WRNT3Ku26KhXorvlDZN_r-ZhXxvMiHKR1Ss4w6Rcfs8xYPnAbSbSc0mop74ABWU-dY_8xtGzEq8defi-BqGBGQ4','Went to have my ribs checked out and got great service. They give plenty of information and lots of help','2019-10-17 23:30:30.010000','2019-10-17 23:30:30.010000',5,'Landon Richard','https://lh5.googleusercontent.com/-JNEd3pU8Dko/AAAAAAAAAAI/AAAAAAAAAAA/Qp_7ftTwZtQ/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',2804),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMnVpKB0gg4WSPBBGHvZC3w3sL7j3-Sqfi3Orv_BTYY17eSQLSzgy2aa8OPqWp1bWi5KOSvwE2Fp-iQi5ekE3xFF9mlA8',NULL,'2019-06-20 18:44:54.704000','2019-06-20 18:44:54.704000',5,'brooke Hollan','https://lh6.googleusercontent.com/-rjc0HCZvh1s/AAAAAAAAAAI/AAAAAAAAAAA/uVk8ue_FR-I/c-rp-mo-br100/photo.jpg','16590124370714063921',3342),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMNvRvgyp-4K3Y4hvRIYNOIymyrN-z33rQDfBvOqyLIYIH2YNdxi8gvX4gjNiBn0B8IupJsSEFY4V_-RQJl9CiJ8O6p-0','I had a good experience this morning at the west chase Signiture Care on Westheimer. Carly was amazing . She was so helpful and sweet to all the patients waiting! The Dr. and nurse were great too.','2020-07-08 17:01:25.851000','2020-07-08 17:01:25.851000',5,'rita smith','https://lh3.googleusercontent.com/a-/AOh14GifEaIkzhdbyj0gad0xEVsxPVMOsx4c1Ln_pKqp=c0x00000000-cc-rp','12541597562633926366',21331),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMoAOfAI2x9wm7GMFnkrqm0KFxXiv_kliLzsHUP3vQ0irXZxmIKp0fpL2BQs4f_X5ZB7IEnocIWqY2OyuQ6rn6pOludbE',NULL,'2020-07-28 07:08:48.873000','2020-07-28 07:08:48.873000',5,'ELVIN Escobar','https://lh6.googleusercontent.com/-zFQMaRupOQQ/AAAAAAAAAAI/AAAAAAAAAAA/-ixk3_ccG1A/c-rp-mo-br100/photo.jpg','14748677429039074158',21907),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMOe8TrlPBJ-t38oYamWY4WahrokuCHA_gCjed_JuYEfMAChqWNyJRikcSHDWEjSHx_ynzE0sWFvtP2QHbChtsHC06_NM','(Translated by Google) Good experience im very happy I recommend them very good attention and very kind\n\n(Original)\nGood experience im very happy los recomiendo muy buena atención y muy amables','2020-08-11 02:52:44.015000','2020-08-11 02:52:44.015000',5,'Michael Ortega','https://lh3.googleusercontent.com/a-/AOh14GgZfrleMSi_NAGnIHZy74591gjToG-3_WHlrfQk=c0x00000000-cc-rp','12541597562633926366',23011),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMOLiuavEfPDvmZ5pwM8d47hR7w6UHweQJVh7f6O-RegIPSCK0uETpSX4gp5KxMBjxcG8bbtLZTTI0iCPP7JMaJB4ZjFQ','The Service was amazing, Jocelyn greeted me and took great care and me by keeping me informed . My nurse Alvean was kind and sweet and made me feel very comfortable.','2020-02-19 16:45:33.596000','2020-02-19 16:45:33.596000',5,'Shuntrekia Brown','https://lh5.googleusercontent.com/-d-wL6hDrkzE/AAAAAAAAAAI/AAAAAAAAAAA/5VczOmsyrJc/c-rp-mo-br100/photo.jpg','16389487648212004696',10869),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMON6NDJTzPED8esOdhZjYJTvppuq0LaLNocSURJ391uz0IUGOcZHFMY3T9KN2Okfz82rgXzqBBf2pjRb3DjQU8rqWjJU','I came in today for an infection due to my upper wisdom tooth and everybody was awesome! This is my third time coming and each time has been great. The staff is lovely, the receptionist (Marcy) was very sweet and everything is very nice and clean. I will keep returning for future emergencies/ medical needs!','2017-02-25 22:47:51.101000','2017-02-25 22:47:51.101000',5,'Heather Leal','https://lh4.googleusercontent.com/-cKAKQm5gCL8/AAAAAAAAAAI/AAAAAAAAAAA/b9398KxCsyc/c-rp-mo-br100/photo.jpg','14567670160750071148',1876),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMorAR3CsUssqvKZ9z-1Jr4gzxdkUFCk7UDDMPSnabeEHYaSzI-_Dy5a79NgzKD0gcPTeVEASizfnGrpkMA_Pmo93QOnc',NULL,'2018-10-05 12:13:42.221000','2018-10-05 12:13:42.221000',5,'Noemi Barrera','https://lh6.googleusercontent.com/-cgoS9uaxKCY/AAAAAAAAAAI/AAAAAAAAAAA/qhfCwJEEKtY/c-rp-mo-br100/photo.jpg','17394740196501090048',4774),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMouOB5tugnSs1X4o6nsVYzp_w7wQ2534wSIh_wmcj4a64J-Fn7tl_OnLnXGjHYstBGFKZzCaHWZ4NWvhpnSVPa878chQ',NULL,'2020-07-11 16:43:16.731000','2020-07-11 16:43:16.731000',5,'Kizzie Penson','https://lh6.googleusercontent.com/-LNbqADUZdZ8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl2LAK0F_CzAyaXK-h4Gjr3vxxIxw/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22078),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMOWmBIzLU6hBh1WVPKuHG2tn8MFv58zFC4GonroUFzfCvEVvA0D_ugfSIl4w_MAXfREkv-J4bWric64vzeaDELuGLtQw','Signature Care took great care of my daughter. They kept her comfortable as they ran a battery of tests to determine what was going on. Dr. Grinblatas and his team that day (Aaron, Cynthia, Mark and Nick) were absolutely great! I would recommend Signature Care when and if an emergency arises.','2019-04-07 18:07:13.303000','2019-04-07 18:07:13.303000',5,'Dawn Wilson','https://lh4.googleusercontent.com/-NYnN6YdxA0g/AAAAAAAAAAI/AAAAAAAAAAA/3HTJy2n6JgY/c-rp-mo-br100/photo.jpg','14904078213800803294',2150),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMp9kXDWErHPesY9NZVydakUpPwRyl5gq4py_Oeg2jI5oik548ERarPXFyNvEol8FWZKppMxE6sKwJyYrDDskeQGNuyM0','Brought my girlfriend in and Keera & Kim at the front desk was super friendly, supportive, and helpful. She was seen pretty fast and atmosphere was overall really friendly and very professional.','2018-10-19 01:49:36.925000','2018-10-19 01:49:36.925000',5,'Abduction Productions','https://lh6.googleusercontent.com/-AaB02pUJFeo/AAAAAAAAAAI/AAAAAAAAAAA/nPRGvsZ_vP0/c-rp-mo-br100/photo.jpg','16590124370714063921',3697),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMPc8-WUk3Qf7w3Gm7ImH_i6Ircr3tc4mzt_ItF0HSwBxvQsuch8t8izCyrUlNSIyysZe9U3Rg7ne8jHdoVzw8P3ReFb0','Shania at registration got us checked-in in a matter of minutes, Jose walked us to the room in a matter of minutes as well and got us set up very quickly. Kim then took down the information of how she was feeling as Dr. Huerta examines her. They then took some samples and did some testing to determine what may be causing her to feel the way she is. All in all I would recommended this Emergency Center to anyone.','2020-01-04 07:28:09.249000','2020-01-04 07:28:09.249000',5,'Cayne Borrego','https://lh6.googleusercontent.com/-8bUOgsF5pXY/AAAAAAAAAAI/AAAAAAAAAAA/n_C1BeIUhr4/c-rp-mo-br100/photo.jpg','13486358490203335051',650),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMPCE6wPC0PaVrZG_W6q6mPYbYHbdFUYmIwrSIpcjzI-9gJpoTIJCmQv3Tc15TdHWkop3R7QVXlhpZ7ykHYGqt-IA3nU8','I can\'t say enough about the staff. From registration to discharge, they were great! Melissa, Jeff, Norma, Seble and the rest were just beautiful. They were very attentive. I can\'t remember the rest of the staff by name, but if I could, I would personally list their names also. Thank you so much for being there for me in my time of need.','2020-02-10 00:43:33.810000','2020-02-10 00:43:33.810000',5,'Trena Lowe','https://lh3.googleusercontent.com/-IYiiMTUyPsA/AAAAAAAAAAI/AAAAAAAAAAA/fmVmxuyzI_s/c-rp-mo-br100/photo.jpg','3511292162159714121',14418),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMpCrxhwrbHz4KCgi6KyuI6HGt2A_HgHVC4Omsj8de5Y-VZ9Ek02nJAggQEZbZ8hwyi_5eeoAwbIvFElYLrBNB-sDVNyY','Such a friendly staff and clean business!\nWill go back if I ever need emergency care.','2020-07-22 12:39:33.776000','2020-07-22 12:39:33.776000',5,'Becky Isbell','https://lh3.googleusercontent.com/a-/AOh14GhPw2XjHnhyCnG9cgo-JYUJPR5Tj5fZuOU2jm_T=c0x00000000-cc-rp','2694018788013845459',22117),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMpeKgi9iRyyy3eHNpNqvRUnWc46A53aIi5yq2Eq3mibeEJQQuTIvnCldHgoBWhrEoyNXQG7mhBIIzU6f4QrCwkdiEnC4',NULL,'2019-04-07 19:22:30.160000','2019-04-07 19:22:30.160000',3,'Alifa Karim','https://lh6.googleusercontent.com/-__kSimytYFk/AAAAAAAAAAI/AAAAAAAAAAA/QvwRCaI9TOs/c-rp-mo-br100/photo.jpg','16590124370714063921',3440),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMPGwgv2QV7R13UIvPtFronC1UOpsaujP62u3-8JZbWSvcWhaTuenrmXGcnrnKm50k_et2JTJDkZwyF6IyNJ3KOCwYE34','I was seen by a doctor before I could even finish my paperwork. Everyone was very pleasant and the building was very clean. My experience here was a breeze and they made sure I was as comfortable as possible.','2017-11-22 16:50:06.202000','2017-11-22 16:50:06.202000',5,'Stesha Chandler','https://lh6.googleusercontent.com/-dQ4SsPG8enk/AAAAAAAAAAI/AAAAAAAAAAA/vUTjpaOUU4o/c-rp-mo-br100/photo.jpg','8918455867446117794',9337),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMpHmvXBkJhBiDgU79qS4mQ8uMvj-vzrfzGK19zayxI4oc-_eRCsVlWVwwcyPktiE5zpzKEAxIQQ1R57WbecBedo53da4','Dr. Vakey and Anthony the RN were extremely helpful when I came in this morning feeling terrible. The visit was quick and easy, and I am leaving feeling so much better!','2019-07-31 15:11:08.599000','2019-07-31 15:11:08.599000',5,'Macy Dietz','https://lh3.googleusercontent.com/-cXbUKw5yVD0/AAAAAAAAAAI/AAAAAAAAAAA/MEOzbAn4b7I/c-rp-mo-br100/photo.jpg','16590124370714063921',3272),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMPQhxuavNmlWv7w1x76RtinLnLN6oGRJ-Ubxzz0aFxW9k5sN2MnD-a0_DchdpJc-HTXBxaa9lbbLfN0NvYfuyxgz5zUU','Quick efficient service. Everyone was kind and courteous. Was not judgmental or rude','2020-08-01 18:35:07.131000','2020-08-01 18:35:07.131000',5,'A H','https://lh5.googleusercontent.com/-6ktNVF9Pu3A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm0NkvtMBFgde1UrQUFYRfVn2QKWg/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21940),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMPtlAcNVpCv90mJkW_iUeboUyS-sPDIBysHLYu5fk_OrKvY0hceaQLeReLDtqwNy5m391MPvZhEn9XygpeMbLL1hfUlw','Great customer service. Highly recommended. Dyveliz, Jacob, and JR were all very helpful.','2017-08-29 20:45:23.331000','2017-08-29 20:45:23.331000',5,'George Toledo','https://lh5.googleusercontent.com/-yXgFh5zurYM/AAAAAAAAAAI/AAAAAAAAAAA/88Jw5XlsM9A/c-rp-mo-br100/photo.jpg','16590124370714063921',3945),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMpu-cphC58zNQRwx7dqDPBlD5hkGvt_ObCetxKZOlREYkNB8LvwHA-yZOBe_vjttCr8fTXLio9dNENl2eb1jXQy_TOJw','Cody and JD were awsome, great service, great attitude, very friendly environment, quick service.','2020-08-12 20:00:33.440000','2020-08-12 20:00:33.440000',5,'Victoria Hernandez','https://lh3.googleusercontent.com/a-/AOh14GgEnf62mCLUhtvOR6VsBt3AL0fhJST6w2SgFvTC9w=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMpUrNS1XsTMUTs9xKwyAgEWrK032XNGh9O-CYWz1lqyhJ9v3mGVtd5-dYS4zZsT0F3KXMbztvqu3FX0GJ-2RUENKtmJ0','I have been here several times due to a few incidents and they have been the best EVERYTIME!!','2019-12-31 03:47:57.630000','2019-12-31 03:47:57.630000',5,'Coco Alexander','https://lh5.googleusercontent.com/-DnE8aGpLSvU/AAAAAAAAAAI/AAAAAAAAAAA/qdL7V5nEUaU/c-rp-mo-br100/photo.jpg','12541597562633926366',284),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMPww7QywrBg2jMTKu2UOFnVFjqtSolbgWWcAqgM6VKo2U1q4C_0PG6tvTqTENUSX9t5HQqBfXDipeRLoGhrdgUv9oX8k','We came in for my boyfriends severe infection in his mouth and we were greeted by Tatiana at the front desk who was just wonderful. Then we were taken inside by Christine the nurse who was also so wonderful and nice. Not to long after Dr.Lim was in and assessed the situation and took such good care of my boyfriend. All in all such a great experience, I highly recommend this place if you need to come to urgent care.','2020-01-10 01:55:30.810000','2020-01-10 01:55:30.810000',5,'Victoria Gomez','https://lh6.googleusercontent.com/-wO0JisWZ8IY/AAAAAAAAAAI/AAAAAAAAAAA/piZVe20wUzA/c-rp-mo-br100/photo.jpg','14567670160750071148',9479),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMPy2gZpyictFhiHXGhnZUKcauY-AxNwWyNHDjrnPjZyjKYSZr2E47th6gRbM23bUhGScwIC4K_Ppc_4WPL9EWnyxd7fw',NULL,'2019-06-12 21:34:04.860000','2019-06-12 21:34:04.860000',5,'Christina Young','https://lh5.googleusercontent.com/-GqpZVe5-mqE/AAAAAAAAAAI/AAAAAAAAAAA/xLA2KPsDjyU/c-rp-mo-br100/photo.jpg','16590124370714063921',3355),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMQ2tFz9yVGDkuSC0pzXRAKkeiYlg6kpkNiBSMiNOpj2nkFE0o_xeg0CY7TkFOg63pjcjIS0jqhHm1IKfwszGy03AR7tY','I can\'t say enough amazing things about SignatureCare. The doctors are AMAZING, the nurses are AMAZING, the front office staff is AMAZING. Seriously I can\'t give enough AMAZINGS to them. In the past year we have probably been at least 6 times and every single time we have been there it has been AMAZING.','2019-05-09 14:27:41.268000','2019-05-09 14:27:41.268000',5,'Amy Latham','https://lh6.googleusercontent.com/-_TifgT8ZT7o/AAAAAAAAAAI/AAAAAAAAAAA/Rmknm38mSy4/c-rp-mo-br100/photo.jpg','16891069708558046635',4284),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMq8Cwm2Hc3YZswvjdr4ev817FLbs15BUnj5RyfKjiu4SBwmMWY_UU5opL2qhzp1N7F4jK6zqaumvKKFEkE5qvrsSvtog','Dr Ortiz was excellent, along was Nurse Kat and the Tech Mr. Rick! Also Ms. Melissa is a pleasure to have at the front desk','2019-05-05 04:32:55.043000','2019-05-05 04:32:55.043000',5,'Chloe Smith','https://lh5.googleusercontent.com/-ROJ3mtRPgyE/AAAAAAAAAAI/AAAAAAAAAAA/yi5zrTlKGT4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMQ8Lwq0ci8ApL7VmCFLD6hsk-SnfjZWIWbogFIePADQkhb9TfKsaA24VNNnmunkM2IJM2dVqpHFx13bz-OozKo6tFIQk','Doctor: W. Appiah, MD\nNurse: Lynn s\nReg: Ashley','2019-07-12 22:59:23.713000','2019-07-12 22:59:23.713000',5,'Priscila Mata','https://lh4.googleusercontent.com/-KMKM-qeMn2g/AAAAAAAAAAI/AAAAAAAAAAA/wAuIEBaHf6Q/c-rp-mo-br100/photo.jpg','17898197009688164559',5636),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMqA1mNjSIDboI-1-FDsXXXk3bTJpfCg12kPFEcBqrxR122oUam2BIFp-5QKJSaXe_tsF64DoCsq8fn6GPCualRPehu9c','The staff and Doctor were very friendly and I was in and out in under an hour. I would highly recommend going here, especially if you don\'t have insurance.','2019-11-01 23:48:40.065000','2019-11-01 23:48:40.065000',5,'sarah Tauber','https://lh6.googleusercontent.com/-acA_zOaT86o/AAAAAAAAAAI/AAAAAAAAAAA/cBVOycg4oQQ/c-rp-mo-ba3-br100/photo.jpg','2694018788013845459',6022),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMqD3NF_46J4dp5cCuWfQqswGSgEP1z3QNVebA384HUrx0rDu2V6oKR1CoBh9VoR7S6OhmdIm6SWUgyoyx4vfEcRzYTIc','Staff was very friendly and caring of my needs. I really liked how the Doctor took his time with me. I recommend anyone going here for your emergency needs.','2019-09-16 18:20:32.737000','2019-09-16 18:20:32.737000',5,'Suzy Ware','https://lh4.googleusercontent.com/-sZJPQKTEBEI/AAAAAAAAAAI/AAAAAAAAAAA/HtN0rl_YxhM/c-rp-mo-br100/photo.jpg','3272657195432704501',6892),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMqDhr-kQJ8Z68uwBtCbBUHaffZG-LLf3E_k3cXH7sNUrJ57HNpVN8H-GUQ_y25FKXxR96dRSyuyrfXs8SkKwtsTBavxk','Great location. Wonderful staff, and very quick. My family will be coming here for all future cuts, scraps and bad bruises!','2019-05-08 15:09:17.602000','2019-05-08 15:09:17.602000',5,'Darryl McGuire','https://lh3.googleusercontent.com/-sUl3icwtuog/AAAAAAAAAAI/AAAAAAAAAAA/T-x7CIZQdZg/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5749),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMqE3AlT4F_gYswyBf92rIz3-1FBbyjoSd7bH_Yyp6CF_rd69yggSk3kl95gMjS_1ebxIW65XbcDKPhcruM1w2oDIMQWc','This is a great facility! Caring, loving, and all about patient care!','2019-06-19 21:56:18.493000','2019-06-19 21:56:18.493000',5,'Christopher Dinh','https://lh6.googleusercontent.com/-GWOcq_Xijik/AAAAAAAAAAI/AAAAAAAAAAA/FuqdT8TCcN0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMqf-bK-1kB3VCCe1fC33Jh3iO7l3WKfb_QeoqMsXhqJnjOqANlSPrJmgmogCw16ppxOTec13vzowGGtCCiX3mUBLaSVY','Excellent service from Dr. Cavazos, the nurse took x-rays with Tricia the radiology, and Jesus was very helpful with registration.','2019-07-04 16:31:55.173000','2019-07-04 16:31:55.173000',5,'Vilma Majano','https://lh6.googleusercontent.com/-HllHY1t3Uz8/AAAAAAAAAAI/AAAAAAAAAAA/OvChDt0UNgs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMQTz5HfNs2ENjJZBgrlNzBlYOHu-TN0Rn1b2Z5KwwwTCozZm3ZtPwo4Voji4uplNsd2bUydcmfgqbyWaFiZ4YvVnKhfE','Quick & great service','2018-08-21 22:43:36.064000','2018-08-21 22:43:36.064000',5,'Madison Lindner','https://lh6.googleusercontent.com/-jUIL75Kk26w/AAAAAAAAAAI/AAAAAAAAAAA/IMxuOYGcBAU/c-rp-mo-br100/photo.jpg','16590124370714063921',3780),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMqXTirSfyOoXjAwjO8y4Z_hCL75f4Z_y9iIE_SAXOoHhLA8eACQdvGqcoavkrpM7_RBRB_3Brm7QzfRYYMy33R5fumoU','Quick and very helpful. Dr. OMalley was precise with the information and the nurses was accommodating','2019-05-14 22:39:45.548000','2019-05-14 22:39:45.548000',5,'Roel Calumpang','https://lh5.googleusercontent.com/-9wgYDmC_ahE/AAAAAAAAAAI/AAAAAAAAAAA/XH4b_18CtRA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMr2M_tH3J4ZakEXKNBNUmfpAdq3cvrqvnHLyCCxRXBcmYECiQucetJvSi2UFQu1nbbZCnns4RZdTX8TKFzgb87Bx_5QE','Everyone was very helpful! Great service','2020-08-18 03:29:23.516000','2020-08-18 03:29:23.516000',5,'Reyna Quijada','https://lh3.googleusercontent.com/-BXHjt7rZ-qo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmrmjVVKMTFK1Doi2HRHRvBYgix4w/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMr2SCHl3Og3tvtBV2zjloXp5MNEWvcqYXo3w241HhmS3nKsUT5c6rojvECvIScxvpYJD1TaQpL1OAF6PwIAsuZzq5Lr8','The front desk person Ms. Erica was super friendly and caring . The doctor came in to check in on me and update me every step of the way. I would recommend them to anyone.','2020-01-06 01:22:44.931000','2020-01-06 01:22:44.931000',5,'Jonae Johnson-Banks','https://lh5.googleusercontent.com/-s3AR3MPxkxs/AAAAAAAAAAI/AAAAAAAAAAA/ydplRJuO_w0/c-rp-mo-br100/photo.jpg','14567670160750071148',1144),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMr3ahca41QD8ksR8eATtkTCvjS-dBbKI1VYz_TeZbiV7a5XTnOA4FNGSAplDHG0Gd41J7iUjm2JlX8j3na4nV9jo5tYc','My daughter reciewed excellent care. Very friendly staff. Very short wait time. Lwb results came back rapidly. They are friendly and professional and treated us with such respect and professionalism. The facility was very clean. I will be returning in the future','2019-04-28 17:10:58.839000','2019-04-28 17:10:58.839000',5,'sherrita d Washington','https://lh5.googleusercontent.com/-vS4AEH7kamk/AAAAAAAAAAI/AAAAAAAAAAA/GHulyWGK7Ig/c-rp-mo-br100/photo.jpg','14904078213800803294',2144),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMrCDDlA-HOqo9Ejbz1110cC-ebutkqrMStHDpGjdVb8y4P_VyZjl_w59ZmGLWBNPDzDLIulEITlGv1t4gkMfoy9HbcYU','Amazing care, great staff and I am feeling so much better!\n','2017-01-06 17:58:05.675000','2017-01-06 17:58:05.675000',5,'Gina Balzano','https://lh5.googleusercontent.com/-PXp0TGdrdOM/AAAAAAAAAAI/AAAAAAAAAAA/PPysrFnx9ks/c-rp-mo-br100/photo.jpg','14567670160750071148',1921),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRcEYY9_YHPge0cNtU9VcQ4SC4D8yF3KUrCyM1QPoHavTbNgE54g8T10TbKVXpSNKRnZREw1iFNj2GdfzOzZQZu6mJhs','Very kind and professional staff. Fast service, clean and modern facility. I would consider them again if I ever need services again.','2017-01-26 15:52:54.955000','2017-01-26 15:52:54.955000',5,'Lisa Rodriguez','https://lh6.googleusercontent.com/-AVYMClLFxdA/AAAAAAAAAAI/AAAAAAAAAAA/NoNU6gWm_Sk/c-rp-mo-br100/photo.jpg','14567670160750071148',1904),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRCpsMM10gAm6Ff-IV9tRn3jmjLQd1MlUq7K_r28W9iTGGb_Gik4ps0bVkf9lx2S64q3uhKVAuFsuwp7DlrkBZ7V9E0s','Kim, Brad, and Morgan were outstanding!!! They were very helpful and helped me feel better already!','2017-02-07 23:54:00.991000','2017-02-07 23:54:00.991000',5,'Macy Marchman','https://lh4.googleusercontent.com/-UyrlC-CsZq0/AAAAAAAAAAI/AAAAAAAAAAA/Um7Z525hBXQ/c-rp-mo-br100/photo.jpg','16590124370714063921',4067),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRe3QwaWtwI-gHEbwq2bSHLaI5Q_vizEZ1VWVtheTeHQtDgcB0YqDaRusqts3OVYzw8DoqdNf7v6t3CHC8O59WoFAaa8','Omg the receptionist is amazeballs her name is Alyssa she has the best customer service ever. And the doctors are quick, nice and straight to the point❤️','2019-11-22 04:18:54.060000','2019-11-22 04:18:54.060000',5,'Latere Beaudoin','https://lh5.googleusercontent.com/-nQmq9m0HNCk/AAAAAAAAAAI/AAAAAAAAAAA/YbQk8HD7_rI/c-rp-mo-br100/photo.jpg','12541597562633926366',375),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRFxqJecWZIAIH102B6rh393t8t0-gJ32LAVnW0dpvDp1NLyOvYG73O5ZdKwyEuyyq3QEwtPcNm3szAwfx9MnKt_Ll38','I rushed my husband to this urgent care early this morning because he was in extreme abdominal pain. I initially picked Signature because of their reviews. I called them to find out wait time and there was not one. From my first phone call to the front desk personnel to the amazing doctor and nurse who assisted, the “state of the art medical technology, I have not an ounce of negative to say about our experience. Everyone there was so pleasant to deal with and handled the urgency with great care and attention. Not to mention a fraction of the cost of a ER hospital visit especially when you are “self pay” !! Thankyou to all who took great speedy care of my husband today! Now let’s pray he passes that kidney stone! 🥴😬','2020-07-11 02:11:23.896000','2020-07-11 02:11:23.896000',5,'Pizza Queen 68','https://lh3.googleusercontent.com/a-/AOh14GgFzxXavte53WjENAt4UGdqHr7kiyN9ttPc8E50gw=c0x00000000-cc-rp','16389487648212004696',21592),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMrjTseBVQej3S4RPPloM6w8MW98uaZzgkfwfOjlWD3t0teNDjfitHpKFVxqlzZNcOHQqJwsuA37iRTCAOJ4ueANa-CfU','They process was quick. We were seen fast by the nurse Jani. Kelly the Rad tech showed us pictures of our baby. Patricia at registration was very friendly.','2019-12-20 14:56:20.775000','2019-12-20 14:56:20.775000',5,'Dee Pro','https://lh3.googleusercontent.com/-BQnQBJckIAM/AAAAAAAAAAI/AAAAAAAAAAA/oQCFtAZVuG0/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2530),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRkvwqspWF7wQN17mEAvYUg6jwV6ZBHWg8LoUuIl4ZxtE_NdpcE4AEgdOvWgDLsacrzf_0OcWLv-y70ACrFexOK5QS0c','Highly recommended. From the moment I walked through the doors I was treated like I was their first and only patient. The front desk admin staff, nurses and doctor were all highly professional and most accommodating. Thank you!','2017-05-12 06:13:51.228000','2017-05-12 06:13:51.228000',5,'Camm Leslie','https://lh5.googleusercontent.com/-VaFv4dau9aY/AAAAAAAAAAI/AAAAAAAAAAA/vV8toIb9JU8/c-rp-mo-br100/photo.jpg','14567670160750071148',1825),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMrrfvDMJrdPnstXzYBthkEvgLmyk5jAxk0lPh1coUI55ZAZsmCMcHN2ipqLiw0YmrZZM2urOTiziUqP3qAEjGsyo46gY','I never leave reviews but this place was so amazing that I just had to do it. I was sent here from my job at a restaurant when I, unfortunately, was injured. The entire staff was incredibly friendly and made me feel very comfortable and even walked me through the Worker’s Compensation process. They thoroughly explained all the after care and made sure all of my questions were answered which really meant a great deal to me. I was extremely impressed and would HIGHLY recommend them to anyone who needs it. Thank you, SignatureCare! You guys are awesome.','2018-12-20 02:14:22.797000','2018-12-20 02:14:22.797000',5,'Kate Colley','https://lh6.googleusercontent.com/-27ctLs71fCo/AAAAAAAAAAI/AAAAAAAAAAA/D1wMbHFhN38/c-rp-mo-br100/photo.jpg','16891069708558046635',4386),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRTodT4cHGzhARv1iRcbD-lYvwSYGU3j-fJJ6synvD1x-ya3RhEVhw9tFWeQjPvz4WsnSgVgkYhZ6s1RIhdsXpU455ZE','Dr. Vakay was very quick to diagnose and was extremely professional. He explained what he was doing and why in layman’s terms, which helped assuage our worries. Check in time was great, and our tech, Morgan, was very open and knowledgeable.','2019-04-02 16:34:30.543000','2019-04-02 16:34:30.543000',5,'Daniel Stewart','https://lh3.googleusercontent.com/-xYTTQf8gSW8/AAAAAAAAAAI/AAAAAAAAAAA/49Ixt7zkNe4/c-rp-mo-br100/photo.jpg','16590124370714063921',3464),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRvRFCxdobouzmHFrZm6RMqvDQVwU_IdWozTWUNqHwL33_bmTig_X7FaAn6CN-9hbcx-FiJsNkp9n4qu0yATrApraGHo','Absolutely an awesome experience. They staff is SUPER FRIENDLY! Even from the initial check in! My staff was Brad/Anthony/Becca/Kristen/Ms Laura and Dr Vakey! Thank you guys for taking such great care of me','2018-11-06 20:22:06.043000','2018-11-06 20:22:06.043000',5,'Kaysee Hayes','https://lh4.googleusercontent.com/-mc54B2_UWWo/AAAAAAAAAAI/AAAAAAAAAAA/o2eeidIyEaU/c-rp-mo-br100/photo.jpg','16590124370714063921',3661),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRYtf1CG2kcny5xfEfAZDlyv0UaQTTEvvmPQfVs10IsVtEn1hxeHXO1aVFTpZoX14Bk5BzftxT8vDUrneF68TUDinDHo','Quick and easy. Took care of me right away!','2019-01-09 15:01:54.275000','2019-01-09 15:01:54.275000',5,'Tommy D Thompson','https://lh6.googleusercontent.com/-ZxvxMEmYcuw/AAAAAAAAAAI/AAAAAAAAAAA/7KLiRSxte_Q/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7503),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMRzs68ouajUA54MqsgXF559NmMvPiigFiWcTvobJ2683Ym0iUb-JmyqhrZ9kWnBm9bgrNElVlA8hqPUcp2Y2_0yHFbtI','I went in for back pain. Jocelyn A. from registration was able to check me in right away, she could tell I was in pain. They called me to the back in less than 2 minutes. Jani W. the nurse was very friendly. The rad tech, Marcus B., was very funny. Even though I was in pain I he was able to help me laugh through it. Dr Amy Patel was very nice and was very informative. I would definitely recommend this ER to anyone who is in need of an ER, it is very clean and the staff is amazing. Much better than going to a regular hospital.','2019-09-25 01:17:53.166000','2019-09-25 01:17:53.166000',5,'Jasmine Ramirez','https://lh5.googleusercontent.com/-A8_BKi3NpSE/AAAAAAAAAAI/AAAAAAAAAAA/7TAx7Lj59Bw/c-rp-mo-br100/photo.jpg','16389487648212004696',2886),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMs4Vi0voLuhejZyntK21PsshT7d39VMfRK2FQvtduOGC27cR4TyMizFGGuHNOwKjfZXvno6sk5sNAm2EANpFVe5OQfak','Fast sevice staff was all friendly great first time experience for me','2017-02-14 00:38:23.181000','2017-02-14 00:38:23.181000',5,'Marcus Wyche','https://lh5.googleusercontent.com/-prUcuBJeS4U/AAAAAAAAAAI/AAAAAAAAAAA/VCbYZQ3WOn4/c-rp-mo-br100/photo.jpg','14567670160750071148',1884),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMS6o-pwMwAJzK47gMJ2kKa0kptzV5RrKx6PcvDpFz7DvNxkAz9EI2q6BBAhfZJFQGMARXP_2x3XzNgtQiGomK9hsAwKI','I was here earlier today for breathing problems i was having!!! I must say, this has got to be the best emergency room visit i ever had. I walked in, they took me straight to a room.( No waiting at all)!!!! They immediately took my vitals and asked what was wrong!!!! They performed about 6 test on me, checked everything, before they gave me a diagnois. I was here a few hours, but it was worth it. I was scared and nervous when i got there, but everyone made me relax a little and get comfortable. The place was very neat and very clean... These people care about you and how you feeling. They give you step by step instructions on every procedure they are going to do to you. They explain everything where i could understand!!!\nI would definately go back again, if needed. I highly recommend this place, these people love what they do, very professional, very caring!!!!!.\nI love them all!\nOh and when you get finish, they offer you snacks and drinks, coffee & water!!!!','2018-01-05 05:19:03.175000','2018-01-05 05:19:03.175000',5,'sheryl joseph','https://lh4.googleusercontent.com/-Cu2dkhdkHyc/AAAAAAAAAAI/AAAAAAAAAAA/G_lDfsaLHgE/c-rp-mo-br100/photo.jpg','8679688254631342173',8908),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMsaylvhmlYndDE0Zt-qZL_jy4HLrKRq-qXDMqMIxhDf7bPTnJiTsV0g2f9guBfsKWND7KwMx-hjO9rnPTh35hBdJPMNE','What a smooth experience. It was clean efficient, and everyone was friendly. I barely waited to be seen. Amy, Sam, and Juan were very helpful.','2020-07-27 14:20:32.039000','2020-07-27 14:20:32.039000',5,'Debbie Collins','https://lh4.googleusercontent.com/-s3JrIqPRZHc/AAAAAAAAAAI/AAAAAAAAAAA/Wx9XUZNTOTg/c-rp-mo-br100/photo.jpg','2077061009497551125',22809),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMSbtpOFBN9WthyJ4F5FhmgqJARdK53dfU_nN-BSd_KEeKJxWjs45YD9-wrW3pSCXUK6ld29ELf_PclC_uQrewMVAiVpA','Nice staff always friendly and kind!! Always answer all my questions 😚 \nThanks Cynthia, jessica j. Ryan and jordan and stella... God bless u all','2019-12-19 15:44:37.573000','2019-12-19 15:44:37.573000',5,'Perla Tellez','https://lh5.googleusercontent.com/-awuzc05ZXNc/AAAAAAAAAAI/AAAAAAAAAAA/Heafi5p6hGQ/c-rp-mo-br100/photo.jpg','14904078213800803294',13654),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMsgtxz1BnNAIkMZhyn9L0NPDSVOJoiuuQxivuHjSGehciSHCqJW5hog9L9EvZOTh1556yU9Kwo51AAqjKC-c_EkQxYhU','Super easy check in and quick turn around time. Cody was awesome!','2020-07-29 14:23:08.628000','2020-07-29 14:23:08.628000',5,'Vivian Butler Najera','https://lh6.googleusercontent.com/-fSMu4swXGa4/AAAAAAAAAAI/AAAAAAAAAAA/nchz5IFy1O0/c-rp-mo-br100/photo.jpg','2077061009497551125',22766),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMsr-ufN2cHUrUOWZupcGgzQHh1WonAYPtbKzMjSRBaRahy6Ob5OQ1AojKqNdcArnSu-AnKn-eksgHuJQfm0CV-i6-K0U','Fast service!!! Leo, Sadie we great nurses, Lisa was friendly and welcoming','2019-05-17 19:23:32.740000','2019-05-17 19:23:32.740000',5,'alonzo urquidi','https://lh4.googleusercontent.com/-DNSUz7JcLbM/AAAAAAAAAAI/AAAAAAAAAAA/GTsgK2XAY-o/c-rp-mo-br100/photo.jpg','6521947413723274945',8277),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMSU-2dt_5aUcZpUyK4ItFP5fkENyf3QisBxeblD-L-fspjAP8r_KHcXoYbigWsmd5lLJNsIgnsM5ZgxP-rPMHSrIj69E',NULL,'2020-07-21 05:33:50.561000','2020-07-21 05:33:50.561000',5,'Priya Yenugunta','https://lh3.googleusercontent.com/-6xAtnqGwxgY/AAAAAAAAAAI/AAAAAAAAAAA/1qiNXi587Ag/c-rp-mo-br100/photo.jpg','14748677429039074158',21642),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMsybFQy225KmMq6XYihxHcRSeNi9fFDuSdRwI0-aTRCys9SyFpCMnk9zEskCu4nFahyq52GNj5UWWPtuhsyKs0GAkgus',NULL,'2020-07-01 23:03:32.580000','2020-07-01 23:03:32.580000',5,'Leah Rodriguez','https://lh6.googleusercontent.com/-M9YTjFja9Zk/AAAAAAAAAAI/AAAAAAAAAAA/LwvV8jY877s/c-rp-mo-br100/photo.jpg','12541597562633926366',21342),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMSZ4NJ9AKejw-jdMEU4UNW8GMgjwnHAXRwF6zu2arNgQ-HBzKDpeOfmtzdnie77CwGMcB-MjQBCI0ho4F1TaLhK2f6Y0','They get you right in. Let you know exactly what’s going on. They make sure that you are comfortable. They show concern. And they make you laugh while you hurt lol','2020-01-15 01:52:58.003000','2020-01-15 01:52:58.003000',5,'Alexander Taylor','https://lh5.googleusercontent.com/-ieDNnu2weuw/AAAAAAAAAAI/AAAAAAAAAAA/C6k7ohx_hhU/c-rp-mo-br100/photo.jpg','3272657195432704501',9814),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMTbR2Z2TJ3tHIDtwbGOLZ6O9Uqq6LHtrlJ7XaHedl-UlvoVPNKgA2AmGyeMLHqzi8AozXsRsBtEtNHmLWulLASN-3Uh8','Dr. Henderson and her staff Mollie,Eric and Tobin are are some!! They took excellent care of me and my migraine!!','2020-01-24 01:51:45.891000','2020-01-24 01:51:45.891000',5,'Jennifer Henry','https://lh4.googleusercontent.com/-pNchTVbn4eo/AAAAAAAAAAI/AAAAAAAAAAA/CW4WDzTQOgU/c-rp-mo-br100/photo.jpg','3272657195432704501',10279),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMtC9AoM4Ad63_8hiimvLfm0bOWvbJAE2ZhHPPUtSDF-3t7EchbM_TQzVKlJI6NGb6qha9ucsG9y92qmSQ5bMJXTazxq8','Great service great staff, very professional','2020-06-20 21:29:12.654000','2020-06-20 21:29:12.654000',5,'Tad and Nicole Golden','https://lh4.googleusercontent.com/-JdGPgPXlY3I/AAAAAAAAAAI/AAAAAAAAAAA/Ia6y_ej4h_Y/c-rp-mo-br100/photo.jpg','8918455867446117794',21227),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMtg-l5m5vHzqzijkv4WrcLC_UQMIqBRh_V6HEmHv0GdeEhnZCaNPwtSH1vlsS-DnC7bc98lli9fO58aJGhQJyN0fxojo',NULL,'2017-03-29 04:13:48.082000','2017-03-29 04:13:48.082000',5,'Kyle Pierre','https://lh3.googleusercontent.com/-Bxoeb2RjWjw/AAAAAAAAAAI/AAAAAAAAAAA/f0HyVegXiEI/c-rp-mo-br100/photo.jpg','17394740196501090048',5082),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMTLwjL_CjJ6Wi6YpQlvFVUv77_s86poS-m-xHqC9GVO6Zn2LujafYU1ygVTr1UN28l7mpAD8aD8SWjOM67jt8ilRGDOo',NULL,'2017-10-16 17:03:02.325000','2017-10-16 17:03:02.325000',5,'Musicman1170','https://lh5.googleusercontent.com/-UGESW1e4znE/AAAAAAAAAAI/AAAAAAAAAAA/CVFDe6XGP4Y/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3918),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMTnTPbWoZamALuBRzgoLfyu_lwKIvbF8lR_68bgOCPi-Io62CGQL_QoRim4pTfcjRx9Aqn3yqBNypZpNf8We5PanDTRg','The staff is friendly, and the site is very clean. The nurses take great precautions when caring for patients.','2018-10-17 22:10:43.455000','2018-10-17 22:10:43.455000',5,'Alana Lacey','https://lh5.googleusercontent.com/-IPm8xV8LO54/AAAAAAAAAAI/AAAAAAAAAAA/anjM_6LPqWM/c-rp-mo-br100/photo.jpg','16891069708558046635',4415),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMtrCPFXcFYPhO_nzvJyj48XYwX7YUXGCev5pPK6m_RG-Ra_Nvr-_uaM1lSTk1HgcUlrXWiSdDt1_Gr5N34PTM7q5tn5Q','Fast, friendly and caring environment. I would recommend this facility to everyone that an emergency.','2017-03-28 12:42:23.078000','2017-03-28 12:42:23.078000',5,'Ketutah Hoyle','https://lh6.googleusercontent.com/-_fTlqeWdyjo/AAAAAAAAAAI/AAAAAAAAAAA/LTju7BaqMHc/c-rp-mo-br100/photo.jpg','17394740196501090048',5083),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMtVIJbsWhbwVNuZBYODQ8kA3Sf5xzSduWYe9THFqjuIvc7aqfmXNhieiidOwZBXr3fgh9ntdKIp-gVsMnGi4MpFwP_ko','I came in worried and left feeling taken care of and with peace of mind. The RN, Anthony, and Dr. Vakey were very nice and super helpful. The thing I love about this place is they are quick and always so nice!','2019-07-31 15:29:15.638000','2019-07-31 15:29:15.638000',5,'Samantha Hughes','https://lh3.googleusercontent.com/-HzRvgJr-wj0/AAAAAAAAAAI/AAAAAAAAAAA/qKABK3WA6RU/c-rp-mo-br100/photo.jpg','16590124370714063921',3271),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMtxAtxquHcaucA-oQ6UNZV0Snm5TxmpTEAIeKSMFYWx-kocScVfALp-d_F2v-MY8w89f_Len09w1SZ977u1uZtsDDM7s','I love everything about this er everyone is so nice and welcoming! Ashley and I had a very good conversation she\'s very sweet. Sarah and Dr.then are a great team also! I highly recommend','2019-07-03 17:09:02.221000','2019-07-03 17:09:02.221000',5,'Matthew Bereal','https://lh6.googleusercontent.com/-UycJd2Vpf7E/AAAAAAAAAAI/AAAAAAAAAAA/N0IYybcQqD8/c-rp-mo-br100/photo.jpg','17898197009688164559',5669),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMTYneI3hAC5x2ugZRfjlrwuO-MrzFbkr6FxcBeTFdjo-WIUeK53_i6Cl3bgPouzhU6iSbE6m73TwngdPIb_g1yVPCs_s','This is my second time here everyone from the receptionist to the nurse, phlebotomist, registration, er tech were amazing on both visits and it was a different staff team each time. That’s simply the culture of this place. Dr. Appiah, Nurse Lynn, Jessica-Radiology tech, and Ashley Registration. Thank you!!!','2019-07-12 15:29:36.330000','2019-07-12 15:29:36.330000',5,'Crystal Wiley','https://lh4.googleusercontent.com/-RDweB-iT2xg/AAAAAAAAAAI/AAAAAAAAAAA/CPZBnlvVDHw/c-rp-mo-br100/photo.jpg','17898197009688164559',5639),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMu-fSLO3FDCdG_IMRcAikN3yXLFSKnW-W0HCnCwOSF60djm7nf4flRsu6iGxAtW3ksDqY3SCDt2D9dgWOBIKo3k6WbwM','Wonderful care and staff. Shout out to the Mercy in registration and Melissa the nurse. Thanks a bunch for the TLC 😂','2017-02-25 20:09:27.119000','2017-02-25 20:09:27.119000',5,'Sandra D','https://lh6.googleusercontent.com/-7A-Y2CbPXa8/AAAAAAAAAAI/AAAAAAAAAAA/V3teq9FNeCw/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1877),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMU1VOL9Zea5Wcf99vEWCEkO5ZjfOKxlxz8DZ6SblDJBoPjqv955yn5OcSwUHVX7m-Vg6WOspTcvvJ8oq-b9HVOlRQcFs','I came here to check up on some lower abdominal pain. As soon as I got registered I was tended to. Nurse Kayla and Jessica treated me well and asked all the right questions to know what was causing my pain. Dr. Smith treated me well with regards to my pain and advising me as to what could be the issue or cause of the pain. I got an ultra sound done and turns out everything is fine, other than what could possibly have been swelling. I was given medication in case the pain comes back and also given medication while getting checked up to ease the pain. Overall the Signature Care team works diligently to take care of their patients, I had no issues whatsoever and definitely recommend anyone in the vicinity to get care from this great team.','2020-01-17 21:07:52.675000','2020-01-17 21:07:52.675000',5,'PerplexedPotato','https://lh3.googleusercontent.com/-uhZI5CHi_Zc/AAAAAAAAAAI/AAAAAAAAAAA/S6x0KVj6GvY/c-rp-mo-br100/photo.jpg','14904078213800803294',13628),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMUfSi_wY71wc7HspmYvg1BhKyUmr5VbATgrRzSlCRYkK3Hia7RcqOzWd37e0zuVgLob2Mrhm4I2dHSaHFggsQvhlysbY','Signature Care got me and got me out!!! Fastest ER service ever!! Anthony, Rebecca, and Kimball all very informative!! Thank You!!','2019-06-17 23:08:07.655000','2019-06-17 23:08:07.655000',5,'kimmycakez95','https://lh4.googleusercontent.com/-wG2Mqd5UMa0/AAAAAAAAAAI/AAAAAAAAAAA/TQtyJIfkLxU/c-rp-mo-br100/photo.jpg','16590124370714063921',3346),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMUm9JRXfqeVkgRGYF4ke0XFFeE8BosYBlJLjuXWRu4f7upHT0dMPcj3lIklIxO3-t8xytpdmvV1hKWTcpOAnoClO3lPQ',NULL,'2019-06-23 23:55:55.624000','2019-06-23 23:55:55.624000',5,'sonya tarango','https://lh4.googleusercontent.com/-dzdxOv-P1yA/AAAAAAAAAAI/AAAAAAAAAAA/F4Vt_5KudXo/c-rp-mo-br100/photo.jpg','13486358490203335051',930),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMunqfUuXWGhGYdmFvhrgAQGru243E1S2B8QoeIySjOOSet7qDNQzLYFM4xecx70K1qZ6gnuNtQv7qZyHgW4DCKpe4KBw','Everyone at SignatureCare was absolutely amazing during our visit. Dr. Leavitt, Jessica, Melissa, Stephanie, and Ekaterini were incredible. No wait and amazing service.','2019-12-18 06:00:33.451000','2019-12-18 06:00:33.451000',5,'7vn Brand','https://lh3.googleusercontent.com/-n5cdX4Jwe2c/AAAAAAAAAAI/AAAAAAAAAAA/0DFEnTe-3MY/c-rp-mo-br100/photo.jpg','16389487648212004696',2537),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMUObj6bcrmWlRE3NSXJZ0HiFxFi3h1_4IdofCDuTXLi-qHWioKT2E1CU8jp2ngdeBkBIcSmuVDjJhzhPZbLSxkJFFzNk','Made an appointment to get tested for covid and arrived 30 mins early to give time to fill paperwork and still waited 3 hrs to get tested. I wonder what was the point in making an appointment','2020-07-21 18:16:58.014000','2020-07-21 18:16:58.014000',1,'Frank Morales','https://lh4.googleusercontent.com/-hJWFwdvT3Tc/AAAAAAAAAAI/AAAAAAAAAAA/dHu3OrPzF_M/c-rp-mo-br100/photo.jpg','14748677429039074158',21616),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMUr9nUCTEXC3KR8QoGbhwVm4eiGcld9tlBPbsONl8MI3Tn-IPpxCS031swrKQmFJJjMZSjayrxfGMu6PNntUbybgSYwE','Lisa V. And Dr. Chambers treated us like family!','2019-11-25 01:28:36.371000','2019-11-25 01:28:36.371000',5,'Matthew Saldana','https://lh6.googleusercontent.com/-i2dnYqqrYtg/AAAAAAAAAAI/AAAAAAAAAAA/FUHBBAeXWus/c-rp-mo-br100/photo.jpg','13486358490203335051',720),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMusn3uwYZPx29HnrwbKV1rfqBZokbuzwcZg7119bs76hHjiFW8fBtA4EIa81h2JzzYkAfjwpQkPYBXezpFXioUb0434A','Blake the morning shift nurse, and Therisa the afternoon registration are so sweet and very thorough!! They make you feel extremely comfortable and welcome and they made sure that we understood everything!! 10/10 recommend this ER!','2020-03-02 01:09:34.403000','2020-03-02 01:09:34.403000',5,'Kaelyn Charles','https://lh3.googleusercontent.com/-G2hmiYNCcNI/AAAAAAAAAAI/AAAAAAAAAAA/CVu9kyTnsfY/c-rp-mo-br100/photo.jpg','8679688254631342173',14715),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMV0KW9oj4-OZLXp5HeKNCbuT5i_8qQ6YZ_-ftQ-rSk2MvxH45eYKyItD2bKOv67uPXEhotc9DkVxywVhHnRRb2L7JfkE',NULL,'2019-03-25 06:37:55.027000','2019-03-25 06:37:55.027000',5,'Mose Mouton','https://lh6.googleusercontent.com/-ST6qT5baC3k/AAAAAAAAAAI/AAAAAAAAAAA/M2MB16kO7Lg/c-rp-mo-br100/photo.jpg','17898197009688164559',5795),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMv2y3EKWgGOoBbaNyuUPL2hmRlqY_NTNyzHNw0nh5lpAw371ejNThnFF-21Wg4ogoYd8gXoyoFS4ZATFz2NQqBCttWNU',NULL,'2019-02-03 07:22:59.954000','2019-02-03 07:22:59.954000',5,'Ascary Camarillo','https://lh5.googleusercontent.com/-mEbFj-De4aY/AAAAAAAAAAI/AAAAAAAAAAA/t_jZeEDe-SE/c-rp-mo-br100/photo.jpg','6521947413723274945',8314),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMV7y56NFWYVInFeJcQ7GcSSkKdxsn7iuaeTE-NEAIe5LvGS9h7Gwwn7sRqsEju4CloCEcFzTkBDrTeeE0VcyVObvlilE','One of the workers embarrassed me in front of the entire lobby filled with people. I waited in line for two hours and was let in the lobby and sat there for 20 minutes and then was told I had to leave immediately because they had people “with appointments” to call to come in. The voice message when called says no appointments needed and so does the website. I do not recommend this urgent care.','2020-06-24 03:21:50.249000','2020-06-24 03:21:50.249000',1,'Kacey Stoecker','https://lh4.googleusercontent.com/-uoONZKbPhKw/AAAAAAAAAAI/AAAAAAAAAAA/wmtQoZY_T3s/c-rp-mo-br100/photo.jpg','16590124370714063921',21018),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMvjn-bK5ZOIK2gjbbj6hS6GBK7OJ_uekW_PRK_fdjJzme6Yx0wXc0Q56eNjLaxh6UfbxduG2dtZT8kArKx76oB2NkmKA','They are awesome and very nice staff, all the staf was very compassionate and friendly.. Great place to go fast and efficient.','2019-08-10 20:29:11.324000','2019-08-10 20:29:11.324000',5,'Latrisa Joiner','https://lh5.googleusercontent.com/-axbAbZlXGr8/AAAAAAAAAAI/AAAAAAAAAAA/0AvPHbajpCs/c-rp-mo-br100/photo.jpg','2694018788013845459',6088),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMVLVOulR7Fz8mFR-OoniZkGB3C9cdIv3bp-muG7Bb8vpbg312oJvHoqNm3LDdLiB6oqBlTJLXM7Du0BL3Yk5tljkIie8','Jessica S. Gave awesome care, very efficient and nice!','2020-07-20 17:52:19.774000','2020-07-20 17:52:19.774000',5,'Sally K','https://lh6.googleusercontent.com/-JoBpSKbbgkk/AAAAAAAAAAI/AAAAAAAAAAA/yMyaiRC9xjM/c-rp-mo-br100/photo.jpg','14748677429039074158',21662),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMvOnPV_Upcul4DujlJexZjAUm_S4Aslf_d0Kgmf8jlqJImMjh7YM7THJXfnMagaZkgMGftz8tMYw5evXylLFr8vDmf2w','very nice facility, great staff. the front desk receptionist, Dee, was very sweet and helpful. overall great experience.','2019-01-14 21:51:32.115000','2019-01-14 21:51:32.115000',5,'Emma Arceneaux','https://lh4.googleusercontent.com/-UScxezNsgKY/AAAAAAAAAAI/AAAAAAAAAAA/bOZxXWr6J5Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7480),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMVoUWQbaiVPrQqT0V6Uj57j405_3X6S8s1jw-jOHrYEKB5CndgoLlZHpXcP5kide_N2ptqMg_SN9v9tRcI2tY5b42YbI','Dr. O’Malley was absolutely wonderful with my son who came in for hives. He went above and beyond and made him feel so comfortable as well as the tech and paramedic who started his IV. Great experience from check in to check out.','2019-12-27 02:53:18.806000','2019-12-27 02:53:18.806000',5,'TexasMom 23','https://lh4.googleusercontent.com/-m9qdct_D9gM/AAAAAAAAAAI/AAAAAAAAAAA/6Ww0IZ2QXFU/c-rp-mo-br100/photo.jpg','16389487648212004696',2508),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMvPTWpkGKve7ovFeBt9cn2aLXqO-3bhoDjZCu5XxF9zWKp1mZTghdYp_BuaO1gyHys9GjVYgulXRO0gXhuT09MlvZHWI','the staff was very welcoming and friendly very helpful, people like fatima, chantel, tanishia','2020-03-09 04:17:19.031000','2020-03-09 04:17:19.031000',5,'Andre Mancilla','https://lh5.googleusercontent.com/-GMETeZ_4ajM/AAAAAAAAAAI/AAAAAAAAAAA/6wUTxvJbAxA/c-rp-mo-br100/photo.jpg','17898197009688164559',21097),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMvqztn0ilwlJy5XO7nfeJs0t0I9KCSJJPnLaEqwsxdOq7vkjJKXA43iHTtmUpPIg2AvtbDrAdeM_iox8tWNGIvYexHyk','My experience was a great. Everyone was so nice and caring. Conviently fast.','2017-10-17 14:43:46.040000','2017-10-17 14:43:46.040000',5,'Jasmine Ramirez','https://lh5.googleusercontent.com/-A8_BKi3NpSE/AAAAAAAAAAI/AAAAAAAAAAA/7TAx7Lj59Bw/c-rp-mo-br100/photo.jpg','14567670160750071148',1745),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMVv_oHoHkIWuBiASPGKmasRu5nzKO-xiXE4NYxmzRAFmQMRk0GqR49lxlmFMb3ugO-WtxLFS8WQ3wvIRjAoetW9kCFHk','I was seen here for a persistent cough and quickly diagnosed with pneumonia. The staff was kind, attentive and the experience exceeded my expectations. I recovered quickly and want to thank Nurse Tony, tech Norma, rad tech Jacque,, Registration Leslie and Dr. Singla who were so kind and professional. Highly recommend.','2019-02-18 20:56:51.505000','2019-02-18 20:56:51.505000',5,'Brad West','https://lh6.googleusercontent.com/-tzHst6iKPGc/AAAAAAAAAAI/AAAAAAAAAAA/hk3UvUE1yu4/c-rp-mo-br100/photo.jpg','3511292162159714121',7402),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMvW2uUDFsLY4UpjCdQpJeMWvvq10eB_A0TkpPg9vWOX-BkSBvTD5tuAEqDWGQnUE4U7RzagrVB1VjrvR2L7ifZKdbOrU','It was a good experience overall. I came in on Friday, June 5th and I was barely walking. Deanna, Snelly, Jessica, Dr. Thomas, and Elaine all did their best to provide the best care that they can. It was a buzzy day and they went above and beyond to keep up with all the patients. They were also taking care of people who want to be tested for COVID. I felt that they were overwhelmed by the pressure that they were under, nevertheless, they were all professional and caring.','2020-06-08 03:34:18.660000','2020-06-08 03:34:18.660000',5,'Marwah Alsaedi','https://lh5.googleusercontent.com/-ZtVqqttHKVI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckkdpzWZeLNSeP5VPPVEcM9FHrq8Q/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22104),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMvzbeg6cahqSL5B2EUTVQMPJnygCLuad-DrHu8n61DyrReJBZJVknAKzZ-7269kz9d4AUdWczBUm64Gnv1_JLLg0gxaE','I had a great experience. Staff (Dr. Vakey, Remington, Rebecca, and Dyveliz) were wonderful and kind.','2020-03-16 14:36:27.778000','2020-03-16 14:36:27.778000',5,'neuroscienxe','https://lh5.googleusercontent.com/-WQIBJ47qHGg/AAAAAAAAAAI/AAAAAAAAAAA/zSgqZw6FDIs/c-rp-mo-br100/photo.jpg','16590124370714063921',21027),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMW6WWzhFyKHof2wfUuN_IHq6EXxkEv3V7Rt6DbHbwPV-_DYKIeSTnFBe09hza7mFWHrVAFLisbOHYLDh_EDW-tKRDrDo','Very good experience at this location. They are very nice, social, and caring.','2019-05-15 04:27:11.179000','2019-05-15 04:27:11.179000',5,'Angel Duhon','https://lh3.googleusercontent.com/-djQmjzY5vjg/AAAAAAAAAAI/AAAAAAAAAAA/JAqi7Nt-Bp8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMWMNqvPyT_8O8RbNi_220ibblj_-M0DajAMHQ7P4tGpeFwRsbGH2imUd72aqWXLkiXpkukLS2145U5VtqxuT4314cN70','What a awesome clinic the best staff and best service and support ever! We love 5 hours from here and they took us with open arms and we are truly blessed by there help! God bless this clinic!','2019-12-21 17:56:05.060000','2019-12-21 17:56:05.060000',5,'remington mcbee','https://lh3.googleusercontent.com/-QBR6iVD8E74/AAAAAAAAAAI/AAAAAAAAAAA/YCmZFlicBLg/c-rp-mo-br100/photo.jpg','3511292162159714121',14474),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMWneo79p01wQHG08xk_fMw8fr6sGj062kaQ9YQ0YXYGGUQxuPdw0elxdWMai9wfqBmqV4Xr7sollEGi8Egqr0nghudCE','Drove an hour for Covid testing after not being able to reach them by phone to confirm if there was anything I needed to do ahead of time and when I arrived they said that all the Covid testing spots were taken for the day. I checked the website to see if I had missed something there regarding the mandatory ahead-of-time check in and there’s nothing there.','2020-06-17 13:27:43.650000','2020-06-17 13:27:43.650000',1,'Taylor Levick','https://lh3.googleusercontent.com/-fM3e7w8D-0k/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl0UG7E5wtV3AFmnToUBBurr3KI7g/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21001),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMWoTx-CGsoqL5rcGfPZQNZ-WpjssFXbMI8B-oQIHjJp6W3b6QQ2Yh9Ux7QiVdiM7d6_JkgLeDf9qSYZl0U5Aptk3qgDw',NULL,'2020-07-09 13:13:17.969000','2020-07-09 13:13:17.969000',4,'Lezlie Cpn','https://lh3.googleusercontent.com/a-/AOh14GikiTEuG9EiajdzfwihrD62SGTyjMA0CPzBpb9v=c0x00000000-cc-rp','3511292162159714121',22177),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMwTE0uZscArAUquSIm8IRro_eIhQqc6VO_7kaRwcrPPTOMZIz88A238zCuSZ8T9vLcDwKcqOzW6MmE1zmnDTNkBVb4i8','I went in feeling very sick and nauseous, I was taken to a room very quickly not even 5 minutes. I was kept up todate as to what was being done. It was a great expierence and the entire staff is friendly and nice. I would recommend to anyone I know.','2016-11-17 00:37:55.826000','2016-11-17 00:37:55.826000',5,'John McGinn','https://lh5.googleusercontent.com/-Rvw8ri4xyYE/AAAAAAAAAAI/AAAAAAAAAAA/y3Idqi-0RWo/c-rp-mo-br100/photo.jpg','14904078213800803294',2446),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMWuKQxbs-oTKg3Bk4EEGSI0jkWZHH7s1gibet7rvf3vkemghdSF5aY2jPXXPbHITBK9gOsIbePTOFMcveTqjWYEvP_Gs','I was completely blown away by the quality of care that was offered my son. We were traveling and unfortunately my son got extremely sick. We happened to see a billboard for SignatureCare and stopped. Every person we encountered treated us like we were their only patient. We had zero wait time and never felt like we were waiting around for tests, doctors, etc. Not only did they make sure my son was comfortable, they made sure I was as well.','2019-09-03 15:40:01.346000','2019-09-03 15:40:01.346000',5,'Sarah Harrison','https://lh5.googleusercontent.com/-wqMDtNwowQ8/AAAAAAAAAAI/AAAAAAAAAAA/TJmHGe2RfFQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6899),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMwvKC-aq_LCVYpfq6y2pc0uCvI7oHxIzo04_9ef1Zp8Jaric8Lt06vgdymRgl4udSe5bXXS41rDVryfcm7_-VR4t-_Ek',NULL,'2020-07-23 00:26:25.518000','2020-07-23 00:26:25.518000',5,'John Metcalf','https://lh3.googleusercontent.com/a-/AOh14Ggg_bqDV4FZ6U4jI9aPq0SxVugtIUevj6cQDizkQQ=c0x00000000-cc-rp','2694018788013845459',22116),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMX8g9bqj4OkMnXoKwd-gEFlGMQmaS21LJlkHbdC93RRWzTO6mLaStxSDdj-CtZ7LVuys_Pp3Pv9Ya5WM-kY5kdsF5xCA',NULL,'2019-03-25 02:13:41.044000','2019-03-25 02:13:41.044000',5,'Yenenesh Mulugeta','https://lh3.googleusercontent.com/-VffVRFekUII/AAAAAAAAAAI/AAAAAAAAAAA/74wdGKPUadg/c-rp-mo-br100/photo.jpg','8679688254631342173',8858),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMXJ0erlS2xkf1w8jk7V4-Vtan7SBZ2ubMOXy6nJ78KbCFFt2xqaI1dkREa9QHe4OvBhtFx3naZ2i6mY0BWzYgSvJJ9g8','We’ve used this clinic on 4 separate occasions for my family. Each time has been great. Their care and efficiency have been tremendously appreciated. After all, the need to use their services are rarely a “scheduled” or planned event. Very pleased with them and I highly recommend their services.','2019-02-17 17:00:33.129000','2019-02-17 17:00:33.129000',5,'stephen nelms','https://lh4.googleusercontent.com/-N9-FTJg_DsM/AAAAAAAAAAI/AAAAAAAAAAA/Kagk0ERAUiQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1386),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMXJ42rAXrKWvnMB_XFId1gOcocTzG1Z0kRJGa35vHs9bZwreaI_Oszyjgtr4jDbQfSka_VYY_UOE-NyjRnJTvI2ZNjGA','Dr Do; Robert;Tricia; and Jesus were all great','2019-06-21 15:39:45.667000','2019-06-21 15:39:45.667000',5,'Morse Code','https://lh6.googleusercontent.com/-MFBdT8J_PAc/AAAAAAAAAAI/AAAAAAAAAAA/lt2yJT0LD4c/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMXKPiihlURmH8St2Vjm0fPm33B_VioM1yhF04xdEx9ZfyVfF5ZfasxqVQr1UzH2jbEJRbuQXRJFKG8c4511kULvcBv90','Fast service and friendly staff','2017-02-01 05:56:12.882000','2017-02-01 05:56:12.882000',5,'Sandra Perez','https://lh4.googleusercontent.com/-9TiD2CPYt9c/AAAAAAAAAAI/AAAAAAAAAAA/hMXI0_sBmwU/c-rp-mo-br100/photo.jpg','17394740196501090048',5122),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMxU6eQbxA6fxLFRRAZhlUge-jWyqgZBdiUHxYU1iFbOPi5kZzopxxbEtKPqtypakZ0Xs47YJrgnrinqBTsaZy5J-sAxU','Best ER visit. Staff was amazing, Jennifer was fast at checking me in and making sure everything was in order to get seen as fast as possible. Nurse Shelli was amazing very friendly and Dr. Elsbecker was amazing as well. Gathered my symptoms and took action right away to help me feel better. Aleen at check out was great and friendly had a great Emily the whole time. Over all my visit was fast and efficient will definitely recommend to all my friends and family.','2020-02-17 18:41:27.234000','2020-02-17 18:41:27.234000',5,'Anyssa Zavala','https://lh4.googleusercontent.com/-DPrwslFuV1k/AAAAAAAAAAI/AAAAAAAAAAA/q6jXjekE5a8/c-rp-mo-br100/photo.jpg','16891069708558046635',13947),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMXXvnCWwfEg-hXRCGRwyoAnvHjAVoa6bh3IX7Yx1-67fDgXCGlVytRXXIELgoSUkulZuaX6rNXFnvDWxOK1zF9mok6Fc','Great experience very fast and friendly. The nurse swabbing for covid made it a great experience.','2020-07-27 20:21:25.206000','2020-07-27 20:21:25.206000',5,'Shawn King','https://lh4.googleusercontent.com/-iuUf7vmTl_0/AAAAAAAAAAI/AAAAAAAAAAA/MtNbpuuQk1A/c-rp-mo-br100/photo.jpg','2077061009497551125',22806),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMY7RMFTasYxfj8k_6yzbQo35Cy_pBuoQuF9A1Coay7fo_eKObLbzvolS9qA--BwUVUZQHGRxER-U_mjSfAZQiwrlZ71s','Great customer service, clean rooms, and very kid friendly. My 2nd visit with my daughter and we will continue to come back if needed.','2020-02-22 18:15:46.079000','2020-02-22 18:15:46.079000',5,'Cody Fox','https://lh6.googleusercontent.com/-2F5uk1g-rdc/AAAAAAAAAAI/AAAAAAAAAAA/piOIz3kvTHI/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',14218),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMY97GW0VhE-H98MPA7bNb2RI-n_K60zM8V5ovUxrtQ_GJruNNYeSjY8rZnUrMQMYqRYcvUvTLFqnnRwLvZjmIOk3jwPQ','OMG so I have never been to the emergency room. However, this is the best place to go for an emergency. Very attentive they called me the next day to follow up and they sent me a thank you note. All of the staff from the doctor to the reception area was fantastic! Worth the trip! I hope not to be there anytime soon however if it ever happens again it will definitely be my go to emergency room! Thank you!','2017-07-17 01:02:17.383000','2017-07-17 01:02:17.383000',5,'Elsa Ruiz','https://lh3.googleusercontent.com/-13djqHmlmdM/AAAAAAAAAAI/AAAAAAAAAAA/6i1RGy3QdPk/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1792),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMyFCnnIYE5-y149ZKeMr2bTLsqw6NAnc_nPXlIULQ4Z1TJ2juMqvlcUEJh-vDFoUCaACf1DEONrP3bZDnFnvghXxLoNk','The front desk receptionists, Garcia, Stacy, & Shawn were a big help! Thank you guys .. If I need anything I will be returning to this location . From the care , treatment , & billing info ❤️','2020-01-31 00:25:22.382000','2020-01-31 00:25:22.382000',5,'Jamecia Strickland','https://lh5.googleusercontent.com/-kGR1HhE4VSg/AAAAAAAAAAI/AAAAAAAAAAA/ISOraRa7YjQ/c-rp-mo-br100/photo.jpg','8918455867446117794',14860),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMYMBznOO0DAmYVZpvtUdSyMrfxFIte-3O1ibPN8Qmg3FCxG1lAoBuIwNwdOobs_Ag5yWRwOoKLgFDUnxLn5LmF7qwRQU','Excellent service and friendly staff.\n From the moment you walk in care is provided without a doubt!! Awesome!!','2020-03-02 15:57:30.396000','2020-03-02 15:57:30.396000',5,'Jessica Diaz','https://lh6.googleusercontent.com/-D2PELVhb-80/AAAAAAAAAAI/AAAAAAAAAAA/evR4BwZWP88/c-rp-mo-br100/photo.jpg','8918455867446117794',17445),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMYPrdWYJPjfoTh4bToifHTQr_7AGvu58POTEfZWg_jd87wkSiavOOcu7gizlKbgARF9X7WEyJ3YA3GZdxn66RVFe-YNI','Thank you Dr. Andres, Audrey, Allison, Daniel & Sita for all of your help. This has to be the best ER experience I’ve ever had. Everyone was super nice and attentive to both me and my son. Thank you.','2019-12-25 06:55:11.002000','2019-12-25 06:55:11.002000',5,'Megan Pertile','https://lh5.googleusercontent.com/-EpKJ5IZuYYQ/AAAAAAAAAAI/AAAAAAAAAAA/f0baxuCJW7E/c-rp-mo-br100/photo.jpg','13486358490203335051',658),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMypTPx2zgBWt9KFM2Ot-XJa9bcqgSEXyBuSpOzT_x1EylNayGOJ1W9AeJY9x7h8ZCdaL4N_wVBKOBUzAz1YWEeG0CMfg','One of the best; we were assisted immediately and have been kept up to date by the friendly staff, including Shanna who was very helpful and kind to our family','2019-12-16 02:17:51.855000','2019-12-16 02:17:51.855000',5,'Jaden Hatfield','https://lh5.googleusercontent.com/-_QedxezUCuo/AAAAAAAAAAI/AAAAAAAAAAA/JVV6o7vBUDw/c-rp-mo-br100/photo.jpg','6521947413723274945',8057),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMyxc2VW_hw7AGnstHUwyiJJVftWbtbIF5b7E5AEaZXvw9OZeQqfHCWwFy4afYqL70JceN66VlEPhuu0WUyv6SWbc9K1M','The entire team is absolutely wonderful. Don’t get sick! But if you do....Come see Dr.Ybarra, Lynn, Fatima, Tanishia, and Daniel. I received outstanding professional service by highly trained and skilled Medical Professionals. You do not need to go to a\nLarge Hospital. Come here and get the best treatment in the industry. I highly recommend SignatureCare on HWY6','2019-10-14 01:21:57.631000','2019-10-14 01:21:57.631000',5,'Nate Allen','https://lh6.googleusercontent.com/-AlSnIFp2hLc/AAAAAAAAAAI/AAAAAAAAAAA/bF6dr_dXKlA/c-rp-mo-br100/photo.jpg','17898197009688164559',5508),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMyyDwyxvWCFpeP37_lKfJv-dlV3nZs_rgLsi95l7s3PEyDqUiMp1e_W5tikSikIbeKoyaCxKwDPoFqhCnIGJjo6u-FNo',NULL,'2017-07-31 05:20:46.271000','2017-07-31 05:20:46.271000',5,'Ramondo Johnson','https://lh4.googleusercontent.com/-PUi2ZkK3li0/AAAAAAAAAAI/AAAAAAAAAAA/UYdyb3Sgxfs/c-rp-mo-br100/photo.jpg','17394740196501090048',5009),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMZ0DYuw1iUl47PvFV383Y4Z3izsQ2Zc-53nt72dR4yeNWIPVm_ZDFju8HOu1jjWpTwBRzddVqTgaIcMNTLBdXUzkjNJA','Was in and out in 20 minutes, then waited in my car for results. Everyone was professional and friendly.','2020-07-26 21:11:25.665000','2020-07-26 21:11:25.665000',5,'Kylie Bean','https://lh5.googleusercontent.com/-IGOiB3PCf70/AAAAAAAAAAI/AAAAAAAAAAA/nedvQddsSbs/c-rp-mo-br100/photo.jpg','2077061009497551125',22819),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMZ7BSTIAmgQcwYsxIg2Ui1z1z1SYN8RHsUBavn7IdRVq5AJ94fb5Vjk1iM5lqvNf0G8asDZ70SvQ0rGenGSCWX7q4qhk','Very clean and nice facility. I was seen right away and they got me fixed up and on my way in a short amount of time.','2018-01-25 17:09:31.096000','2018-01-25 17:09:31.096000',5,'Phillip Talmadge','https://lh4.googleusercontent.com/-TSOESPF0Kaw/AAAAAAAAAAI/AAAAAAAAAAA/gmGE3rU5NB8/c-rp-mo-ba5-br100/photo.jpg','8918455867446117794',9298),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMZAepOcttGZ-9AlMRBbXmfAUhLTNd7jSuUm1rBFzh7UdEPg8Ken9upJP1U9WS0l1_ROIUmQm3z41NkJMrN3LTPfgE4ek','Great experience I came in and they treated me quick there wasn’t a long wait like other ER’s. And I felt comfortable and cared for. I would definitely recommend! 10/10','2019-10-23 20:39:04.521000','2019-10-23 20:39:04.521000',5,'Dominique Colorado','https://lh4.googleusercontent.com/-qRgwfdyAzys/AAAAAAAAAAI/AAAAAAAAAAA/xTx6bNDWarw/c-rp-mo-br100/photo.jpg','16389487648212004696',2785),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMzK4kzoan6jtjSrHQuCORwAWY_-W6lTJjC7IF0hY9urcnoql-oXDxp4PeVE7BD3XvzBBYQAFFOOA5q01a6TekHll6a-k','This is my third time as patient and I always get excellent care! I work at a medical facility myself and the care i give to our patients is the care I\'d like to receive for myself and for my loved ones. I saw respect, cooperation and lots of communication amongst themselves. I think everyone does a great job from the receptionist to the doctor. Nurses, you\'re the greatest!','2019-11-08 08:56:49.145000','2019-11-08 08:56:49.145000',5,'Faby Camacho','https://lh3.googleusercontent.com/-M6kSap4qF6A/AAAAAAAAAAI/AAAAAAAAAAA/faS3WLBNYYg/c-rp-mo-br100/photo.jpg','17394740196501090048',14076),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMZMq8CzzDI00tHSudyCuP_KvNSRI57oXc13XQIgW5TUuhU3AkdywwjAMut3OfnOQ5yVEVZJalOyXl9xZvVU0mpM4h7Fw','I visited Signature Care a couple of months ago for an emergency situation and I received excellent care. From the moment that I walked into the door I was impressed. Registration was prompt and her first concern was getting me the assistance that I needed (thank you Jennifer) because I was in so much pain. In no time Valerie (tech) and Erica (nurse) were on the scene getting my symptoms and medical information and doing all that they could to make me comfortable while obtaining information to relay to Dr. Thomas. Because of your experience, knowledge, and professionalism they had my pain under control as quick as possible considering. To Jennifer, Erica, Valerie, and Dr. Thomas thank you very very much. I give Signature Care five (5 ) stars.','2019-03-05 04:04:29.314000','2019-03-05 04:04:29.314000',5,'Cynthia Smith','https://lh3.googleusercontent.com/-Hf50LVq_yQs/AAAAAAAAAAI/AAAAAAAAAAA/FTlF24EawEI/c-rp-mo-br100/photo.jpg','8626688543755174284',8541),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMZonaBbe74eIE0kUioHxoVv4evLNiN-Ud6zoUGRmxeb7nhUcRURDRH0mkEYPYaS5h1OvIEVf0cvOl_-1m0k91IgW17Rg','I bring my family for emergencies here all the time the staff and doctors are very nice they explain everything and treat you with respect and make sure you are well taken care of. I definitely recommend this place for ER needs to everyone.','2019-05-31 12:50:01.106000','2019-05-31 12:50:01.106000',5,'Blanca Vallejo','https://lh5.googleusercontent.com/-fT5SoMj-jtk/AAAAAAAAAAI/AAAAAAAAAAA/_uBCYucwGrU/c-rp-mo-br100/photo.jpg','14567670160750071148',1318),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMzOWahMLeWt5Ikvani5W0ja-i2p83Yx4Ueg9jSn7TCKz1H3aCgPZD-wf1yDpZEhVrzZSLSMOuvSxa5-EgTLXQvzGEB3w','I can not say enough nice things about the level of care I recieved. Anthony, Brad and Dr Vakey, Dr Jones, Vanganese were all very thorough and professiona. At the same time I was treated with the level of kindness and concern I would think a family member of theirs would be treated. I am blown away.','2018-08-22 01:04:11.419000','2018-08-22 01:04:11.419000',5,'Isabella Loffredo','https://lh6.googleusercontent.com/-Aw0p1ndAZwg/AAAAAAAAAAI/AAAAAAAAAAA/4gDojNW3ucA/c-rp-mo-br100/photo.jpg','16590124370714063921',3779),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMzQwUGDOM2DA2nQ4rH4QkCiNg950Fk3KqKC_J_N6D41a0JPWn6osF63tVsjH_HGGO7LXID_EHNPYw2ikpHeZhRw-QIIs','Clean place with very friendly staff. Staff were knowledgeable and thorough with diagnosis and treatment.','2020-01-22 18:52:56.712000','2020-01-22 18:52:56.712000',4,'Bill Plank','https://lh6.googleusercontent.com/-IqOWsyT46hk/AAAAAAAAAAI/AAAAAAAAAAA/HdtIksOG6CI/c-rp-mo-br100/photo.jpg','3272657195432704501',10289),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMZy5ZDB4ErY4dm7fL0kVjRzL-TixPDLm2qVxMAzxZ39LSigYaimp4uIm7hna6GLZ9f8EZDAQYAUmb59nt_Db9i8a3PBw','We came here an just like every time had a good experience. Our nurse jeri was very good to us. Doctor cimball was funny an nice. This is the only er we go too!!!!!!','2018-10-15 21:18:34.933000','2018-10-15 21:18:34.933000',5,'Megan Glass','https://lh6.googleusercontent.com/-kAhDmraZC3w/AAAAAAAAAAI/AAAAAAAAAAA/cbZzvP64SV4/c-rp-mo-br100/photo.jpg','16590124370714063921',3702),('AIe9_BFLHEJ8hYqd4VCbbc-EtvgMZZu5ttg8ghlUPT8WL3wFzlbW65rqWCcB3khGfG4tNaVEXQYoY78uLTn-u7BXHmUB8xbOAMkGqo7vwuPJfcmzIHwlIVE','Skyler & Ashley were so helpful when I came in . They answered my 50 questions and made me feel comfortable , the facility is very clean and the staff is very thorough! They were able to get me in within minutes of walking in the door , the nurse & doctor who helped me were attentive & able to get me taken care of! Highly recommend!','2019-03-14 01:18:01.411000','2019-03-14 01:18:01.411000',5,'Alexis Johnson','https://lh3.googleusercontent.com/-XPoRdVBgedA/AAAAAAAAAAI/AAAAAAAAAAA/SQzHKr079MA/c-rp-mo-br100/photo.jpg','8626688543755174284',8529),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV_Oa9HvWbW33tGJZo1rT1H1jZhyNJK731YkQNBfajTLzITZFrWcZ7dhDEB1zMAgklRs-GSqGj7v2UJ2MeyCPbz2ytAZ0','Staff was AMAZING and PROFESSIONAL from the time I walked in to the time I left. Everything was very clean and they were all very welcoming, the warm blankets in the rooms and the drink offered was just the right extra touch. I would highly recommend this emergency room to anyone.','2019-09-09 01:02:42.557000','2019-09-09 01:02:42.557000',5,'T Gongob','https://lh3.googleusercontent.com/-EMeXnPl6gC0/AAAAAAAAAAI/AAAAAAAAAAA/p9vdUk0rCxw/c-rp-mo-br100/photo.jpg','2694018788013845459',6070),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV_q8j-qXaFEsWGF6VKSKb6odwaFbUZ2T9tevipvVoyLcz5PupzrPfkWHVZJC9u3h9JOQ5lhKjvD8k90xGg4q3pG_YITE','I would like to say this ER room was one of the best if not the best ER rooms ive experienced. They were so kind, caring and understanding. They listen and didnt judge and made me feel extremely comfortable. Dr. Dang was intimidating at first but once we got on the same page he made it clear all he wanted to do is help me. I believe him and he did help me! He\'s super real just fyi. My nurse tammi was the most sincere nurse I have ever met. She was kind, caring, even gave me water, warm blanket, remote for the tv and offered snacks. Kayla the front desk receptionist was amazing!! She helped me from the start and broke down my payments and just was super awesome!! Thank you to all that helped me because yall all saved my life and for that ill always be grateful. I 100% highly recommend Signature Care and i will refer my family and friends to this place due to the kindness and the honest help they contribute.','2019-04-14 03:31:33.896000','2019-04-14 03:31:33.896000',5,'Mark Camacho','https://lh6.googleusercontent.com/-lKvU_At2IhU/AAAAAAAAAAI/AAAAAAAAAAA/FE6sWG_cqFY/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',8853),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV_WuRSvqiOOSXh5dvCxlf6HrG-aaCTOGRiW2UF-2w2OD9ux6TvxoB-Sr8kMpJtNALIKuG6tQFefxzDHe3YOPk8eICraA','Very nice and friendly!','2019-12-07 06:07:03.291000','2019-12-07 06:07:03.291000',5,'Abbi Lanham','https://lh6.googleusercontent.com/-ryLVKCFqFF8/AAAAAAAAAAI/AAAAAAAAAAA/nyi9QP--S_c/c-rp-mo-br100/photo.jpg','16590124370714063921',3045),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV-9W7b8Rmfgj9wfFzqChcoyOTeHnPtRhYaSwcz_9CGj_ySCFo2DZPsjCLZ1-UCWePlq-loS5Y8ybGt46aAqVIeMLO0SM','(Translated by Google) Good service and they explain very well and very clean the place. Nurse Alvean and Patricia\n\n(Original)\nBuen service y te explican muy bien y muy limpio el lugar. La enfermera Alvean y Patricia','2020-01-27 00:12:43.111000','2020-01-27 00:12:43.111000',5,'quetzaly gonzalez','https://lh3.googleusercontent.com/-kL0_BuLKaBc/AAAAAAAAAAI/AAAAAAAAAAA/m7DkmTYNP1I/c-rp-mo-br100/photo.jpg','16389487648212004696',10171),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV-gziVkOnKE6zw7gqMBGnljqmvsuKZmg_C38q80qiP4xGgOnmA4GlhBVUawUb6zL88kFzLq28EoIT1k2MDT8QfItg4_s','Staff is great. They were very attentive. Very fast and made me feel so comfortable and like I was the only patient there. Will definitely recommend to family and friends!!!!','2020-05-28 02:14:55.698000','2020-05-28 02:14:55.698000',5,'Christina Hopwood','https://lh3.googleusercontent.com/-EQvPkktqy-k/AAAAAAAAAAI/AAAAAAAAAAA/HGc5gp5kNtY/c-rp-mo-br100/photo.jpg','16389487648212004696',21977),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV-NgZtNnTcsE2d8_1-7liOwDmFyyczWENnR7HYEK-utbwaJzcPzp_750yybdalkE7E4PbZ97ghChqAqCxKfjFvrSpCk4','Do not go here. They are considered out of network for everyone. I called to ask if they took my insurance before going here and they said they did. They did not disclose that they are considered out of network for all insurance carriers. They billed me $4k to put 3 stitches in a cut on my hand. My insurance doesn\'t want to pay their insane prices so now I\'m left fighting with the insurance and neighbors. My current bill from neighbors (after the part insurance has paid) is over $2k. If they had been in network it would have been $600.','2015-11-12 03:04:30.306000','2015-11-12 03:04:30.306000',1,'Erica Diaz','https://lh6.googleusercontent.com/-MyXSv2TQmic/AAAAAAAAAAI/AAAAAAAAAAA/xpMtNrZ0vqQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8926),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV-vdbFD2KaDLARPLOiFEtTvMYaTHrVU4GUxBy76QnE9GVpgkoDfWVukUtwEqTdxtfR0N1W5xgFASlxmFzkUgoXiOWpW4',NULL,'2020-01-28 00:42:22.423000','2020-01-28 00:42:22.423000',5,'Canah Logan','https://lh4.googleusercontent.com/-z1d8FNaCflE/AAAAAAAAAAI/AAAAAAAAAAA/cEAWXQUBPL4/c-rp-mo-br100/photo.jpg','3272657195432704501',10271),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV06feYdGhtOgsczH6LurvgLwV021K8yFGygVxikeyDWAuXyGKwpM2Qi_DXkFkWOFDHYW6J2MrkjEEpqd7k_w95gJYD9s','Signature Care was absolutely one of the best facilities I have taken my family to. Very clean and professional. Ashley at the front desk was very helpful and polite. We were taken back to a room very quickly and our nurse Erica made my kids feel very at ease. Thank you very much to the wonderful employees of this facility!','2019-01-04 15:51:45.829000','2019-01-04 15:51:45.829000',5,'Amanda Kemp','https://lh4.googleusercontent.com/-PsyKX0_TtBo/AAAAAAAAAAI/AAAAAAAAAAA/WFPpJWZKhx8/c-rp-mo-br100/photo.jpg','8626688543755174284',8610),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV08KeSVnvK1vW5rVeNW54rpooK-PRyiY9LxKk6peRUW0afHvuTaVr_j9rfhP_S3kS-pKJ3kDIr89gm7wgo8DVSIs2bPE',NULL,'2019-06-22 06:27:18.477000','2019-06-22 06:27:18.477000',5,'Renetta Singh','https://lh3.googleusercontent.com/-akLiaPqel6c/AAAAAAAAAAI/AAAAAAAAAAA/arpUPBaG9S4/c-rp-mo-br100/photo.jpg','13486358490203335051',938),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV0BUds03FjkOP_wGJOJyC59Gc41vzb4rWp7Z7zyjsH9-4dafA4AZ2OBBGM8sjKoj9dn8mx5eJDYHI2f1yx55juiLVQ3o',NULL,'2019-06-15 19:47:25.189000','2019-06-15 19:47:25.189000',5,'Kassidy Ashton','https://lh6.googleusercontent.com/-CMNHMlwNNaE/AAAAAAAAAAI/AAAAAAAAAAA/m0gvpIclm6o/c-rp-mo-br100/photo.jpg','8626688543755174284',8447),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV0kthedN2F6YIG9szhqVmOoEmi1zDYi68OMmw8Se2JR5Qgh-nRWj7GqYNGp5I6Hm57yIZuix8BvUXfk0ymRGovaU33p8','Excellent team Dr. Golla, nurse Jessy with fanny \nTech wendy and as well as Stephenie and sandy. I will refer my friends and family here','2020-01-27 15:41:59.723000','2020-01-27 15:41:59.723000',5,'Mina Gautam','https://lh6.googleusercontent.com/-x1w4qFcZyqw/AAAAAAAAAAI/AAAAAAAAAAA/bgDSfr2jfZ0/c-rp-mo-br100/photo.jpg','17394740196501090048',14041),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV0pSQnz8749j6QQWyj8FEUS5ZMJ0ht0H1nePdXXba90ELYFQdhAy3_1SfqEEMotxsbSpRQu7uItDPDcu3kQIgworJkC4','They were great, fast and very attentive, good please to go. Dr. Das is the best','2020-07-31 13:07:10.191000','2020-07-31 13:07:10.191000',5,'K Barillas','https://lh4.googleusercontent.com/-t78D99MMX6c/AAAAAAAAAAI/AAAAAAAAAAA/Vwh_uuvvD_k/c-rp-mo-br100/photo.jpg','14748677429039074158',21897),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV0wm8DvwH4_4bwHU9e1n3sF5EXQyLax1UfPMO8mbacbhqZaKMlzXPYyz8joWwLJks5r4DI5tuloot3vWyKtuOLudmITc','Great customer service. Honest and helpful.','2019-03-15 12:17:57.968000','2019-03-15 12:17:57.968000',5,'Deez Nuts','https://lh6.googleusercontent.com/-tJ45HIvtb-k/AAAAAAAAAAI/AAAAAAAAAAA/T9sVRDzxBCw/c-rp-mo-br100/photo.jpg','2694018788013845459',6179),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV0zBhKLIz70ok0EedjC4TFjGbpoDCeMbsvEuI_yequaR4MiqXkK7U_EmyqjqVBUMTbFSvbkNQsbFlESSXVAfs61hBlFk','Great staff great help! Left the hospital we to come here totally worth it','2019-09-17 03:42:44.956000','2019-09-17 03:42:44.956000',5,'Joe Perdomo','https://lh5.googleusercontent.com/-qETKbcVY0eY/AAAAAAAAAAI/AAAAAAAAAAA/NZUIc4XiZFQ/c-rp-mo-br100/photo.jpg','13486358490203335051',826),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV1IkIWdsJrP4zi41_1D09fWoq6G0b30HF7Y3TXq50kYxCIaDmKYkJndHf0tWMzJeKGtkGMvwH-tadT4n43_HKDY4ej5E','Huge thank you to Kare Banks and Xray guy Gunnar!! Everyone there were all super sweet and kind to my little man!','2019-05-03 17:08:11.609000','2019-05-03 17:08:11.609000',5,'Shaina Scoggins','https://lh4.googleusercontent.com/-TMYTmL-nE_M/AAAAAAAAAAI/AAAAAAAAAAA/CfvurbdrDkA/c-rp-mo-br100/photo.jpg','3272657195432704501',6969),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV1Ksw2_kROoM2OSZhFbVMXZnQxCzR1NdAsfXLFtqAxQEbdw4i4E-q2Ps6BRNwA7w5_mm_oo3Q4duCBdUV-8_ip-AUhpc','This place is great, I\'ve been here twice and both times was a awesome experience','2019-10-26 15:07:12.079000','2019-10-26 15:07:12.079000',5,'Ashley Dent','https://lh3.googleusercontent.com/-XD5CVGzMgw0/AAAAAAAAAAI/AAAAAAAAAAA/cDTU7nLnnAo/c-rp-mo-br100/photo.jpg','17898197009688164559',5476),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV1tayCV1qX_nADhs2Z2YopRLV-rFNTjh-5fLPtE1ruSxjd_xrE11iPuE4TQB2riPuYPBQ7F34vSgzQYplbnfEjDQuVPs','When I enter the building I was greeted with a warm welcome and clean waiting area. The wait time was less than 15 minutes to see a doctor. Nurse Jayme was great. Upon leaving I received a blessing from the front staff.','2017-03-20 20:59:37.465000','2017-03-20 20:59:37.465000',5,'Shannon Grimble','https://lh6.googleusercontent.com/-zfI4prK7Uko/AAAAAAAAAAI/AAAAAAAAAAA/5iJ12IZQIdc/c-rp-mo-br100/photo.jpg','17394740196501090048',5090),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV1txx4kQujUJrdMS4d7bfd0B-Brnu7bkMCjeOMS-RgFYMdVXv8Ao-3Q72h1pTOYo0SR0mhtFcAsAfUPUKE-xs5TKQFIE','I was with a good friend who need emergency care..The staff was friendly and very concerned about her problem.She was seen immediately and was released within an hour upon visit.. I\'m new to the area..and I would recommend this place to anyone...','2016-11-11 07:47:15.318000','2016-11-11 07:47:15.318000',5,'Keisha J','https://lh3.googleusercontent.com/-pW0wb3hyUg4/AAAAAAAAAAI/AAAAAAAAAAA/PAbj-ED-C2M/c-rp-mo-br100/photo.jpg','17394740196501090048',5176),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV29imSiWLxgSVEttXwJqZIu6F55wyjGLC75H2rgDSTpC8zanlOL3czFKoZhYyQVUY2kuVBZGgx7WWdUlKx5uQIEjfyiQ','Amazing staff. Went in for covid testing and then even though they seemed busy every staff member was very nice and kind','2020-06-10 19:28:19.968000','2020-06-10 19:28:19.968000',5,'Devon Henry','https://lh6.googleusercontent.com/-EoS_1MvEwe4/AAAAAAAAAAI/AAAAAAAAAAA/mqc2lG488vk/c-rp-mo-br100/photo.jpg','16891069708558046635',22687),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV2KjZAWQsF6WLAxfWY8r0spamEps_H5NT67Y1pKH-KQG0FHhZEI0pMTPjEyN8yKCDA9T1nGWkUb6S1mI0vmrs4L0K3-w','I visited the cooperfield location today due to a mva and was unsure on how to handle medical dealing with insurance companies. I was seen quickly and given the royal treatment. Maria at the front desk explained the billing process and gave me the reassurance I needed to make sure I am during everything correctly for my insurance needs. This place is the best and I highly recommend them for your medical needs.','2015-08-12 16:28:13.565000','2015-08-12 16:28:13.565000',5,'Shonda','https://lh4.googleusercontent.com/-yxTd-U6KXww/AAAAAAAAAAI/AAAAAAAAAAA/KgL0q8iIHJw/c-rp-mo-br100/photo.jpg','17898197009688164559',5951),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV2LRWtNsnUsKL42TZXHDLnd1GP9eJtF4SjrajemNuNkdUgx76SMQFqBYkq34S2-8ubQerXjiyAziVycvt3aGR-DHHp0M','Customer service started entering the front door. The receptionist was kind and made myself and the housekeepers smile.The entire staff was so pleasant and concerned about my wellbeing. This place is one to model after and the type of dignity and respect they give should be displayed at many hospitals. Unfortunately it\'s not and Urgent Care gets an A+. Thank you!','2019-02-28 15:49:03.079000','2019-02-28 15:49:03.079000',5,'Cynthia Turner Robinson','https://lh4.googleusercontent.com/-1l0v7-qYVtA/AAAAAAAAAAI/AAAAAAAAAAA/TjIJQIzPS7Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1378),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV2q35UiI8ZnTnro0crRlx5YEq3eu6aUc1JIeKEZSr0vexRPsLSe7TFWikwIRucHFIqZnbYpjp1dJp1fX2ZOS4YKfJJ2Q','Very nice facility, clean and orderly. Thank you Dr. Nguyen, nurse Alvean, tech Jordan and the receptionist Patricia','2019-12-20 17:36:46.926000','2019-12-20 17:36:46.926000',5,'Regina Pickering','https://lh4.googleusercontent.com/-lTG3bBQgi44/AAAAAAAAAAI/AAAAAAAAAAA/w3nUFZEBIiU/c-rp-mo-br100/photo.jpg','16389487648212004696',2526),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV2tFrBrxXudYrxv74bupVr8zguud5rAuu6oTxqPMjk7uUjIo7dAd1Op4REjKqZ6TmuL4f2ZylLHoZuV3vJGZxAlpk7AM','Tanishia is an amazing person, so nice. Will be back for the next checkup!','2019-12-20 09:15:27.124000','2019-12-20 09:15:27.124000',5,'Kawii Kitty','https://lh5.googleusercontent.com/-Ykys7i3hbaw/AAAAAAAAAAI/AAAAAAAAAAA/1bua_AVxRHs/c-rp-mo-br100/photo.jpg','17898197009688164559',5341),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV35lQQz-p-VWBebTfS6uLaV4J0ue5dpUxSQnu_tGQhJ9n-B1jXN8sza7B1IC0ChAuqjNfTT7BgaRC0gF450GCfhVsj6M','I am someone who has been dismissed and overlooked because of my weight and the way I look. I had also become accustomed to saying right of the bat that I am refusing any drugs or narcotics and I just want someone to help me. \nIsnt it sad when it gets to that point? \n\nSignature care restored my faith in humanity, not once did they make me feel like some druggie looking for a fix. Everyone of them from the front desk, to the nurse, the doctor and even the technicians all treated me and my daughter kindly. No only did they make me feel like a person, they treated me, properly. They figured out what my next steps for my health and wellness were going to be and gave me references for doctors who could help me do so.\nThe tech, Sam who did my catscan was also very calming. I am a single mother so my daughter had to come with me. \nI wondered how that would go, would she be scared watching mommy go through a machine like that? \nNo, Sam helped my daughter to not be afraid. He talked to her the whole time and even gave her a stool to sit on and watch me as he explained what the machine was doing. Even went as far as talking to her about frozen lol.\n\nThis is such a long review, truth be told there aren\'t enough words to describe just how amazing my visit was to this ER.','2020-06-10 14:12:22.718000','2020-06-10 14:12:22.718000',5,'Tiffany Rosenbaum','https://lh6.googleusercontent.com/-mDauj1xAcvs/AAAAAAAAAAI/AAAAAAAAAAA/8C7AU32zZK0/c-rp-mo-br100/photo.jpg','2077061009497551125',22867),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV3eJvx3RtokwVeNUW0cE70_6NyGeUhSCOJLD0uSgWpiR2Oy8M-HeitFAZposUK9aUwPunwokhfAXs5Uiyjm9MDX3FI2g','Great staff very professional. Irving and holly did a great gob answering our questions.','2020-08-02 20:10:46.245000','2020-08-02 20:10:46.245000',5,'Sara Alaeinejad','https://lh4.googleusercontent.com/-NljyCPZN_oU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclx9VHtrBSZATZ9qfgrz5iUWDIRcg/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22147),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV3Vjz5k0EvUTB-VT9qyAKB9yZI2YQnGp_F_IeXHpZjKbxzUFp_8P9Axd0ggSewVJ__2NLpOI4H3TpAWHkUAyUiIC7VYQ','Everyone was kind and attentive. They kept me informed about what was happening and did their best to make me feel comfortable. There was no wait time, and I was seen almost as soon as I walked in. I would definitely come back.','2020-01-30 05:55:26.351000','2020-01-30 05:55:26.351000',5,'Jaimauria Halyard','https://lh3.googleusercontent.com/-DBcXiqzdTB4/AAAAAAAAAAI/AAAAAAAAAAA/KOaTr-QJ08k/c-rp-mo-br100/photo.jpg','8679688254631342173',14773),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV44QzGko1RvEP3y7OFWS3iqI8XXQKQ-x9gXdTEIU3cpYP60GRV64mKj-B7Vhzp4mErdhAMQ-X9HSV_70Hl66KMyh96R4','Everyone was super great! My second time back and everything was perfect! Thank you so much Marcus , Alcear , and Doctor Chukwuma 🧡🧡🧡🧡','2019-06-05 11:43:12.554000','2019-06-05 11:43:12.554000',5,'PrettyDior Minks','https://lh4.googleusercontent.com/-KsGs6SbhpH0/AAAAAAAAAAI/AAAAAAAAAAA/l8gPK_dOz2c/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV46SVESMdwlCaUcJ40VSW3N_HqQZtz70TVuFE51N9TJDPY2evUhf56f5qCAYGtPJ3KI2Gt7ayV0Fn234pbJjfB4Pch8E','I fractured my knee and horribly sprained the other ankle on a trampoline - the staff at SignatureCare South Austin were AMAZING. Felicia at the front desk helped us figure out the insurance situation right away, my nurse Martin was extremely kind and attentive, the radiology tech Linda made sure nothing hurt or moved weirdly while helping lift me into the x-ray tables, and our Dr. Lingan was so informative, careful, and friendly. We\'re new to Austin and he gave us all kinds of helpful referrals as well. I couldn\'t have asked for a better experience across the board, and I highly recommend SignatureCare for any and all health emergencies!!!','2019-09-02 18:26:06.856000','2019-09-02 18:26:06.856000',5,'Emalee Smith','https://lh5.googleusercontent.com/-F6kiX-pJcZ8/AAAAAAAAAAI/AAAAAAAAAAA/q7_2wZCuD3c/c-rp-mo-br100/photo.jpg','16891069708558046635',4209),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV4ehp9XXqzMI_aR0eWdZ39W4xLoymcb2NNzOh36vXAAthMAOfnYRzOYQDaQyAzax0Oak7nfy8vESvKZ4ppW1QjXFNM-E','Hands down the best ER around. The receptionist Jennifer was very kind and welcoming, my nurse Erica was very helpful informative and professional, and Dr Simmons was awesome as well. Thanks Signature care for the hospitality.','2019-03-20 15:05:59.094000','2019-03-20 15:05:59.094000',5,'Kirby Needham','https://lh4.googleusercontent.com/-qYj8QfQ9sng/AAAAAAAAAAI/AAAAAAAAAAA/-4F9UTWVc3k/c-rp-mo-br100/photo.jpg','8626688543755174284',8520),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV4k6ZjJC_DR1TMbZR1i-kS19GMqEF8PeFzO3SWQ7CT4teDMCvrfmJJ9AY4mmyIoicAqvvxhG-xXTGL1jGb7EMJ4gBN3A',NULL,'2020-07-27 20:26:21.483000','2020-07-27 20:26:21.483000',5,'pepe holguin','https://lh5.googleusercontent.com/-4ZKqr6KTMWw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucku1iHFULGkvKOS8_YB2rEM4vLnCw/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21844),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV4kT6TrRLeI7DovVsaAY4naYmYR_G3daesq9QGvsdCX7CO22mHnVgT3rCzoP7V3gSInhNp_Ts3aHeckI_dI8QTvo7-XI',NULL,'2020-08-01 13:36:51.238000','2020-08-01 13:36:51.238000',5,'Enrique Castillo','https://lh4.googleusercontent.com/-DADGX-Ez5Do/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnJZfIRuewSbLhGfFiRcB5rkVUqgg/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21839),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV4oHqpGqX7stf2GXpnJYr08LDjBMrWV0XtMUJqWSrQy7vSYsm3V-7BRO8QNwXc9Oi6niMj4fxj3TdjR36FQWVcrcl17g','These people really care about you! Thank you Dee!!','2019-06-19 00:29:35.123000','2019-06-19 00:29:35.123000',5,'Cindy Hutton','https://lh5.googleusercontent.com/-hUVU8gELUhM/AAAAAAAAAAI/AAAAAAAAAAA/vuMYi9N36wY/c-rp-mo-br100/photo.jpg','3511292162159714121',7300),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV4QzDChUdDNwUSgGfJJ4MSi0vrwSyCoFss6RZovMXUcVJbTT9UOtuiyi6k2M7kZPgHz_Em96DGv4YyMp2oq6heObQhJ4','Jessica S was the sweetest! Everyone who helped me was very kind and patient with my questions. Thank you so much for helping put my mind at ease!!','2020-07-20 18:02:11.352000','2020-07-20 18:02:11.352000',5,'Mandy Brown','https://lh4.googleusercontent.com/-OLMkydkh_-o/AAAAAAAAAAI/AAAAAAAAAAA/jCaUC3P7kdE/c-rp-mo-br100/photo.jpg','14748677429039074158',21661),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV4TNkqjgnm12uyZ4aiCk_DIYryrUCa80KR--HZfJmpaYSAL1kjiRRE5FwPsOav7cH_pI0pZVuI0IDvpGUQLOfwnUP6yM','These people helped me through an extremely hard time with my health. They treated me like family and I can’t say that for any other emergency room or hospital since. They even sent me a get well card. I truly don’t know where I would be if it weren’t for these people. The best place to go if you’re in need of emergency care. I am very thankful for these wonderful people.','2019-05-18 09:17:29.053000','2019-05-18 09:17:29.053000',5,'Allan','https://lh3.googleusercontent.com/-z3fQnpQwHLU/AAAAAAAAAAI/AAAAAAAAAAA/CVw6cRQC_HQ/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7323),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV5aNjbW_A81OugexR-KjH2F-qBSTBpUttP12DyGjpZVeP6E5s_-CDASXM3MZXtxkM5po3NZjqpzafPwxspBZf28LUI4I','while on a 2 week road trip got dehydrated and two kidney stones decided to block my kidney... luckily I was directed to this location which I consider to be the future of immediate care, hospital 2.0. I was treated immediately for dehydration and was eventually transferred to a hospital for surgery. all the personnel were very professional and caring. I couldn’t have found a better place. Thank y’all','2019-07-16 17:22:44.546000','2019-07-16 17:22:44.546000',5,'Alfred Richner','https://lh4.googleusercontent.com/-qvavVtqE0Hg/AAAAAAAAAAI/AAAAAAAAAAA/s4S4kmwdR1E/c-rp-mo-br100/photo.jpg','14904078213800803294',2112),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV5DLGDGlPyJcsWwkFVeAck97fLIQ-m3e7LOxrvB2ZQxFN15ZxMag9onpLLDmjUqJXLfYTjgviv9jIM_JV1PaTp4-6uaU','Friendly staff, would definitely recommend!','2020-01-02 16:44:30.177000','2020-01-02 16:44:30.177000',5,'Lana Mayorga','https://lh4.googleusercontent.com/-ugwLBcjI4xo/AAAAAAAAAAI/AAAAAAAAAAA/V_BLBlsFW48/c-rp-mo-br100/photo.jpg','16590124370714063921',2992),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV5g99vac_pJdQprQVReM7iEiYsBlQJL6qnhrrWlyfg3d4rLwwEulV2shu1NCYYFnfqUMYYfhw9QXqreVb0NwdW8gNTtc','Signature care is ABSOLUTELY GR8!','2019-07-23 17:30:09.267000','2019-07-23 17:30:09.267000',5,'zoe lovelis','https://lh3.googleusercontent.com/-N2VuqZtIFqE/AAAAAAAAAAI/AAAAAAAAAAA/9li3LkZkEDQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6931),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV5PLR88zin6JmZb0xTnRlTScxDqxn64WZVd-G23Bb8OLlpmJUlwW7zSiExauWn6lKrlrtWqqaWgJQcpAM0qOzUj7oUzk','Very professional, friendly, and courteous interaction from check-in to checkout. I was seen by Dr. Yusef, Laura, and Olivia and received prompt treatment for my needs.','2019-01-30 14:50:09.573000','2019-01-30 14:50:09.573000',5,'Stol eas','https://lh5.googleusercontent.com/-KL21P12Aeao/AAAAAAAAAAI/AAAAAAAAAAA/jFndX7bBQdU/c-rp-mo-br100/photo.jpg','3511292162159714121',7434),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV5tD-oJkqM3mXdUwYjJ0E1-RcZx4_DcaIzwfyBZmzEpVa5JJ37KM0P1_nDcs_D6pVFTb_v5in5qwByFQlUvI79aMCJJk','Always fast and friendly. Thank you Darryl, Ke Aire, Lisa and staff!','2019-01-10 05:13:51.399000','2019-01-10 05:13:51.399000',5,'Tania Castle','https://lh4.googleusercontent.com/-PeIxIFem3cE/AAAAAAAAAAI/AAAAAAAAAAA/23AW0L9fsgo/c-rp-mo-br100/photo.jpg','3511292162159714121',7496),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV5yH5UjDZ3zRq8W26hgHtcU6NQ783bnkB0ngvWMfCMiQOTHvKDqugp2v71yFCACQeGZ-eDcao7OKvQgDIkt7AZCJ-bro','We brought a child to get seen over a incident we had experience while we were on vacation and upon arrival we were greeted with several staff members who kind and generous. We were taken in to see Dr. Diaz which seemed minutes rather then hours. Dr. Diaz examined the wound explained several options to explore. We were then dismissed.\n The whole experience took an estimated time frame of 10 minutes. I am amazed how quickly we were brought in to get examined and walked out of the building. Great job team. Thanks again on the efficiency and professionalism that was offered. \n If we ever have another incident that needs to be reviewed we will be come back to this facility.','2020-08-18 12:25:59.774000','2020-08-18 12:25:59.774000',5,'Orlando Chaidez','https://lh3.googleusercontent.com/-zYL_xvW9kzQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmpVtSt9N0rtuM2idhijgZUI_T49Q/c0x00000000-cc-rp/photo.jpg','13486358490203335051',22997),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV5yib-0lPgfUt9IoezZTZy3p7HZRgKdXoWMcl0KCphnJ7d9n9hqQLoJpHHu4EVKWGu84aFq8ufEDZMLJwNtZoOfj-FgU','LEWISVILLE, TX 75067 - 17 March 2020\n\nThe Receptionist, the Nurse, the XRay Tech and, of course, Dr. Vijayalakshmi were all OUTSTANDING!! I crawled in there at 3am with SEVERE bladder pains, and 2 hrs later, I danced outta\' there like Michael Jackson (Well, you get the point... :-) . \n\nSimply the Best.\n\nThanks Guys!','2020-03-17 10:52:04.292000','2020-03-17 10:52:04.292000',5,'Ronald Redden','https://lh4.googleusercontent.com/-YYje69JrBtk/AAAAAAAAAAI/AAAAAAAAAAA/VAKJkMeYkww/c-rp-mo-br100/photo.jpg','14748677429039074158',20966),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV5YjkztLVHbBoOPCvWB3RerrpfeK0ErViTZPvQpCsjhJym13nE02K4e43SWiuQyKXwR8EaSImDkvN9xsFGbNqpX6Hd_g','Tanisha is a very caring person who cares about the patients and makes a gloomy day turn around','2020-03-04 06:55:26.257000','2020-03-04 06:55:26.257000',5,'Frances Rivera','https://lh4.googleusercontent.com/-QhDwmciyfjY/AAAAAAAAAAI/AAAAAAAAAAA/acmJ8ZvCfiM/c-rp-mo-br100/photo.jpg','17898197009688164559',14108),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV6BMzmg2XYP8iBjZZvuuQMbNteY9DuCoYLQuQegAZqS98035AivKXeBUBbc3wfbf1qT_V56U0-7g8CJ1C_JVxMs05e8Y','Dr. Elsbecker, city ambulance and Lauren were extremely helpful when it came to giving me info on how to get COVID testing, super thankful for their services!','2020-06-09 21:34:35.827000','2020-06-09 21:34:35.827000',5,'Noriel Brown','https://lh4.googleusercontent.com/-VnVqnwAVCg0/AAAAAAAAAAI/AAAAAAAAAAA/Y5RvQ4Fnoqs/c-rp-mo-br100/photo.jpg','16891069708558046635',22689),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV6LLgYtO5nf_hj5O4UZKPhDLiJJfH8B-tyWRoLOYME_QbkkFVOqyHvSl26M_PK28ixsxS1YpTfOYJPagdYa--ftCidyo','Received great treatment \nMeredith alvaen Jocelyn very attentive .. being in pain they really cared how I was feeling ...thank you ladies','2020-03-11 19:43:45.612000','2020-03-11 19:43:45.612000',5,'Dorothy Sangco','https://lh5.googleusercontent.com/-F4OqEolQkIk/AAAAAAAAAAI/AAAAAAAAAAA/5vH4MQnBOvA/c-rp-mo-br100/photo.jpg','16389487648212004696',13710),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV6r_d1DR6No45Upkaz-LeBAKoO7DKckZvztRH3qRVyqoKoA0-MNin3Vxme2hmjDTKXz2c_tovQ8TF8CHXGR_BXSKuwzM','Maya the receptionist was a great help! My nurse Kristina was so kind and caring. I had great service. Way faster than an normal ER. Was in and out less than an hour and received great care','2020-01-05 18:35:42.532000','2020-01-05 18:35:42.532000',5,'yvette lee','https://lh6.googleusercontent.com/-ldYCNnCuSQ4/AAAAAAAAAAI/AAAAAAAAAAA/QeiizdImKBg/c-rp-mo-br100/photo.jpg','12541597562633926366',250),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV7nMwPv8m1NU7U9CTqE0Ce4bM6S-mBtlAfBBG-5WuC_xZbOsraiN7Ogl3_JcLsHaO1VlgW_718Fj6S-fvisJ-LoJ7Eu4','quick and great care!','2020-03-01 13:09:51.236000','2020-03-01 13:09:51.236000',5,'McCall Norton','https://lh5.googleusercontent.com/-FgPzw-NCAEc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucktoOfB47INUb8JZ6mgWsDA4wEyZw/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14308),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV7pmTuaGlq6Os5ZiNT4dZuFIAw346c3-b5B_DhN_BYB9G_-5e-6emi20LpFVW7q0yGcyCXiwrx9oluBnssTfuuiXUm1M','Great staff! Really convenient being able to go online and make appt, choose location, and upload insurance card to give a head start to your visit. Beautiful facility, organized, told me exactly what was going to happen and followed through.\n\nDr. Ortiz was very informative, Nurse Alvean was straight to the point, Michael was very helpful, Jocelyn made sure we were setup right and Ms. Tricia was my absolute favorite. Really everyone made sure we were absolutely set for greatness, but Tricia was really soft spoken, kind, made me laugh, let me know exactly what I’d be feeling with different fluids.','2019-06-22 19:26:40.426000','2019-06-22 19:26:40.426000',5,'Kiadra Wilson','https://lh6.googleusercontent.com/-nFfT916WrqE/AAAAAAAAAAI/AAAAAAAAAAA/ubLx97kzlmo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV7TdoZ7eI0VYY7Bk0G4cx8eVcUndtG9eF-C8D6CDcSBvbVtMt2eHUZdu_n4hLnRpvOTYqNto-4I0UtiSME7Dt8ep-FSE','Walked in and was provided a tour by Olivia.\nShe introduced me to Nurse Dawn, Rad Tech Eve, and registration Keaire.\nThe facility is very clean and the staff are very friendly.\nLearning about what SignatureCare can provide assures me Ill be treated in the best care in case of an emergency.','2019-08-16 19:36:52.463000','2019-08-16 19:36:52.463000',5,'Night Manager','https://lh3.googleusercontent.com/-r6nPu_782No/AAAAAAAAAAI/AAAAAAAAAAA/Y4E9aD5I2iw/c-rp-mo-br100/photo.jpg','3511292162159714121',7199),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV7zt_xfgK1gb6j6Twa8VYRAVpnzP9_lM2VYxCRJgMAtBuT9KCWAzjc9RWDDa2ygpPNGdrbzyDufejwbdvni7NtKBxVqo','Dr. O’Malley\nAnd nurse\nSharia U\nOlivia P \nPatricia was great very knowledgeable will recommend family and friends','2019-12-01 21:49:42.006000','2019-12-01 21:49:42.006000',5,'Love Meh','https://lh5.googleusercontent.com/-FqEoPAgeYJ8/AAAAAAAAAAI/AAAAAAAAAAA/mmT-IyCAWe4/c-rp-mo-br100/photo.jpg','16389487648212004696',2592),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV85KyaB7zpIBzUmB_cz3wDm3ryz0nDAcFh2KhdKpbIBohC3Ciu1D4c_BvzgbYoJqPVUpK_j-y-NShkrTYBYlXh0YoTAw','The staff at signature was great','2020-02-13 02:55:16.558000','2020-02-13 02:55:16.558000',5,'Abraham Almazan','https://lh5.googleusercontent.com/-BiPfmPMIuEU/AAAAAAAAAAI/AAAAAAAAAAA/tK1OgZiwTNY/c-rp-mo-br100/photo.jpg','13486358490203335051',13425),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV86dow8keYVKEXoL5XSYsoaHRHtpN3-f3QfGSkmynitX2jwGAbBKr1a-Tg9DbGhvGlo5KP_8F1Yy2208rUDS0vqGgRHo','Staff was decent. Doctor wasn\'t much help. Even though initial wait time was not bad but once we were in the room, the wait became lengthy. i drove 15 mins to avoid ER but the experience was no different. I feel doctor office is half staff and half doctor. if the doctor isn\'t caring, then nothing else matters. I would not recommend this place due to uncaring physician.','2017-03-18 05:34:03.010000','2017-03-18 05:34:03.010000',2,'Mujtaba Samma','https://lh3.googleusercontent.com/-HLV_v6oWY3E/AAAAAAAAAAI/AAAAAAAAAAA/TbhcfaZKODU/c-rp-mo-br100/photo.jpg','17394740196501090048',5094),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV87DtlnD8oNM_FI4GajAZQ_wPX57q9-2NwGihi5k7MuF4RE4obh3Z75j9zxDMnO4jCwl4mD9sUeschyvl8rNpqSx53JM','No waiting and friendly staff. Nice and clean facility. Did everything that was expected to check my daughters knee pain.','2019-09-10 19:30:37.628000','2019-09-10 19:30:37.628000',5,'Richard Martinez','https://lh4.googleusercontent.com/-K7xHI8ZzPYU/AAAAAAAAAAI/AAAAAAAAAAA/Tbz3DE2Kezs/c-rp-mo-br100/photo.jpg','16389487648212004696',2929),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV8om_qvrbHyfysFzsPgzfS5x2qHJIJ-_LFG8bgHGrgr6d_okJjJPGyM5vuHSPaew9uPtWyGL8DPYYTwALLLFGB4XK_u4','The bill is too high. :(. Where is the nearest hospital that i could drive to E.R. in-network in manchaca area? St david and southwest seton are too far. My visitation for my body weakened/anxiety was talking to the doctor and gave me rx. There were no labwork, ekg, or any devices to use, but a standard check for blood pressure, temperature check, listening heart and discussion. I was expecting like $300 for the standard, but it charges me over $800 with my full insurance. I put three stars because it has good service and nice people. Minus 2 stars for rip-offs on those people who lives in this neighborhood while the hospitals are too far. We cant help that but went to nearest one.','2018-03-07 16:46:11.634000','2018-03-07 16:46:11.634000',3,'Keri Keri','https://lh6.googleusercontent.com/-yJCctp050DM/AAAAAAAAAAI/AAAAAAAAAAA/Tatysnsqi9k/c-rp-mo-br100/photo.jpg','16891069708558046635',4502),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV95b5H-g8Ysij0760ATRR0IMRwDbxB6IxTkcM2VfhaUstkgaOiHMneB9Rq-2N4V7mgwWdVbxZqA0CpRyb-wI9Ru1dC78','Very nice facility but a bit cold would revisit again. Staff was very good...Tricia had great bedside care. Dr. Ortiz, Alvean, Tricia, Jocelyn, Mike, were detailed and made sure we understood the care they provided. Thank you for a great Saturday experience.','2019-06-22 19:09:53.280000','2019-06-22 19:09:53.280000',5,'lori jenkins','https://lh3.googleusercontent.com/-xSoxEVCxVac/AAAAAAAAAAI/AAAAAAAAAAA/EyZpDjHJ9EE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV9DjNQWJ5Fa1fBw8mXGnpvN7mt36h0qzGROwuZ3YUSF2EKAVphPvc1_2L7MxAr5YqcYbVrbVJty_N31yIuiYbzz6C5Ko',NULL,'2016-12-18 13:31:53.311000','2016-12-18 13:31:53.311000',5,'Martha Martinez','https://lh6.googleusercontent.com/-ferE8-aoMdg/AAAAAAAAAAI/AAAAAAAAAAA/FkciPSXZ3H4/c-rp-mo-br100/photo.jpg','3511292162159714121',7918),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV9FDMvH5PEJ93WpeP4Hv2ulEVl5giV9GLlDMYTSGjEu7IQDNjowbd94g_22JRJU_W51BMnxWBEtPPKv_9qGJRbWEjxLU','Politeness from the staff and I came in with a spider bite and they helped me fast and treated me like a priority and made me feel comfortable.','2020-01-30 17:59:40.037000','2020-01-30 17:59:40.037000',5,'Norma Ochoa','https://lh4.googleusercontent.com/-WVh63zfXChU/AAAAAAAAAAI/AAAAAAAAAAA/oz8rzK6M8Vw/c-rp-mo-br100/photo.jpg','14567670160750071148',13578),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV9H3p0T9agfVJ3j7kuvcG3Td1xyFmC7XbXY7wVUoD1_WDbxu4R29XLVuVbYTq9-uNTL11g9kHc_y-wtjEekwXPMUnrLo','The staff and facility are great.','2019-01-07 21:47:00.550000','2019-01-07 21:47:00.550000',5,'Alexa Kelley','https://lh6.googleusercontent.com/-_ihrwMci3Lo/AAAAAAAAAAI/AAAAAAAAAAA/6eY8Hu9tkwM/c-rp-mo-br100/photo.jpg','14567670160750071148',1433),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV9j22QvuTh1BYuJKjEq3TbW5UyVUTB8KqR1Bxkf44ov0T0OEDBSUo3Q4-Z19qXg3XjsLSmIiB7U-6v5qIGSe-dPpmGTw','Great service excellent and friendly nurses and doctors I would recommend friends and family to come here love it.','2019-01-22 03:29:53.782000','2019-01-22 03:29:53.782000',5,'Alex Mora','https://lh3.googleusercontent.com/-32c2w9H4MiY/AAAAAAAAAAI/AAAAAAAAAAA/g_Cbn8MxjpY/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4734),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV9mIGE0-kHji2YUlfPoFNDsnzSoI-uLgLiEAmM9Z52liUt9Rq3RM-ptWPZ40oheFbLwwawtzp5JMAVlTosz_eNzDjt7c','My experience went well. My nurse kat was exceptional. Very attentive and patient with my fussy four year old. Clearly loves her job. I love nurses like her. And doctor hasegawa was quick to the point and it was good.','2019-05-23 02:17:01.200000','2019-05-23 02:17:01.200000',5,'Destiney Mendez','https://lh3.googleusercontent.com/-AL893iNJz8Y/AAAAAAAAAAI/AAAAAAAAAAA/t0iBLKRuwGc/c-rp-mo-br100/photo.jpg','2694018788013845459',6148),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV9Ppxe0bHV8Na97kTdAY2b4GTjZHdbdvrQDpn34DcTYCkFCysdx4E0qpfZhRCNhXPQ3Ui33bDgW4mboeAXuCn5d2w1O4','I had a wonderful and stress free experience here. Alvean and Marcus was very professional and took care of me and daughter with anything we needed. Dr. Patel was very pleasant, and the receptionist was very nice and helpful as well.','2019-06-09 16:21:01.957000','2019-06-09 16:21:01.957000',5,'Aundria Curry','https://lh5.googleusercontent.com/-ie_wbXNruGI/AAAAAAAAAAI/AAAAAAAAAAA/EBOaUimaHSU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lV9W67FzFKRrKU3bpx0eudOTGqgqDzzxXCkA0LvZJVxj7K710vQSF7jXRPjL9GrQpZDl8tZ-fjUPMShsZQPpkD8e8YEZs','I really appreciate the welcome and hospitality from several people from Dr Mauldin to the Nurse William to the RAD Melissa and Reg Therisa.\nI would definetly go there without thinking it twice for any emergency. I soo recommend this place.','2019-03-12 01:25:31.843000','2019-03-12 01:25:31.843000',5,'Magaly Benitez','https://lh4.googleusercontent.com/-6hkjpVGoLfE/AAAAAAAAAAI/AAAAAAAAAAA/5ElPbd1LmKQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8862),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVA7ehUROYuZ30Iuh-soMYKsfTENtPNoFRFBD77TkiLaDkV8yh2sSbGJ9azaOPLMbzc6SUsKULjeSi5BRPRuvuJ-6UW_g','Dr Souman was very detailed with my issue and his nurse Alvean was very helpful with providing me options for care at home. Very clean and friendly environment and the building is very nice!','2019-08-28 21:19:55.868000','2019-08-28 21:19:55.868000',5,'Jaranell Jones','https://lh4.googleusercontent.com/-DzZCsitnogM/AAAAAAAAAAI/AAAAAAAAAAA/vLuHnszCaNE/c-rp-mo-br100/photo.jpg','16389487648212004696',2971),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVA8qv2BO4_mIhhbGv8kO-_rd5C2mSPaFP4W0fmZSV5QbTYf8AU5OvYhJYz44J5yVYA8HbpKr2ZWcO-f2QaHtBxU8-fgI',NULL,'2017-05-13 04:05:46.359000','2017-05-13 04:05:46.359000',5,'yash patel','https://lh5.googleusercontent.com/-GkLNxn9_Vqk/AAAAAAAAAAI/AAAAAAAAAAA/qeuoM6INQqo/c-rp-mo-br100/photo.jpg','16590124370714063921',3989),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVaao4lFtDd2hlwbcsoJfcQP1vrDD0UvWoEVHu81O8I2vmBPq4G5Qff0Nxn_-an-UjpxHFk9GmpJkbHnh_KzcHZ3PXLVQ','They got me in as quickly as possible, but my test had to be sent off to the lab. No one explained if they would call me or email me the results. I\'ve been calling for 2 days now for an update and after being kept on hold \"due to a high volume of calls\", the system always disconnects me. I\'m hoping someone from the Lewisville will see this review and look my info up and call me back. I really don\'t wan to have to drive back over there just to have one question answered. The staff there was great, but I\'m not happy with the automated call system. If call volume is that high, hire more people to answer the phone.','2020-07-08 17:23:43.362000','2020-07-08 17:23:43.362000',3,'Lori Hankins','https://lh5.googleusercontent.com/-pBBP-OZnDeo/AAAAAAAAAAI/AAAAAAAAAAA/smmNe2S2bqM/c-rp-mo-ba5-br100/photo.jpg','14748677429039074158',21381),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVAC3xukylk8c-BkvjRPwklKCTRVt_oHBPNe6o4RJ-pGZcd_7ce58cvBZLSXq2XQdylKHSqCYaVnpJiH8Yww9Tpf6o3Q0','Great place. Went in for an upper respiratory infection and was helped by Kendra, Dr. Vakey, Jacob, and Morgan. Everyone was very friendly, pain was treated quickly. Even was offered a warm blanket and something to drink while I waited (which wasn’t long at all).','2019-11-30 14:57:22.659000','2019-11-30 14:57:22.659000',5,'Megan Hargett','https://lh6.googleusercontent.com/-prLT8i5_Zno/AAAAAAAAAAI/AAAAAAAAAAA/BWEzJ98qKTU/c-rp-mo-br100/photo.jpg','16590124370714063921',3061),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVADoz9UREaTRoxpcy4UeyZifb0srAMkWopY8dpx1CLMPM1R-CgPU2_eLMinDHRTGLoYTtgCN9pzCPFAKivIAscGFQVhY','A wonderful Emergency Center with fast and friendly staff.','2019-03-11 20:22:58.526000','2019-03-11 20:22:58.526000',5,'Cassidi Marie','https://lh4.googleusercontent.com/-zGihztZ9RVg/AAAAAAAAAAI/AAAAAAAAAAA/nnHXZ6laJfg/c-rp-mo-br100/photo.jpg','3272657195432704501',6997),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVae3gWlN4Igg5a9cm6eLjH2KPfJXFN-ekrLgjTkKIAtwlRCqAPYwUf6rdCDpPBzbAL5og1yBBBCfZxnVKcsaKwr4RIwA','Even though it\'s almost 5 in the morning, the nurses and front desk have been extremely caring & attentive to my mother who is in terrible pain. They wasted no time trying to make her more comfortable as soon as we came in the door. Thank you SignatureCare!','2020-02-02 10:42:10.519000','2020-02-02 10:42:10.519000',5,'Penny Gracie','https://lh6.googleusercontent.com/-gzGvREblipY/AAAAAAAAAAI/AAAAAAAAAAA/yBAQnKGhsLU/c-rp-mo-br100/photo.jpg','16891069708558046635',13964),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVaKsoRyuSON52yy4qufiyb3PLdOV7b8cGqdxFWH6gyhxjxmT7qHREEylXEd62Zy5hNSMed9YKrOKd8MExDPjGq0jRET0','staff here go above the call of duty. always welcoming great bedside manners .... wish more hospitals had this same service. definitely a repeat of service from here ... and they feed you all of the good snacks you could think of 😁','2018-08-10 22:24:50.908000','2018-08-10 22:24:50.908000',5,'omesha hawthorne','https://lh3.googleusercontent.com/-KUVXX06r0po/AAAAAAAAAAI/AAAAAAAAAAA/AUfKfM0vF9A/c-rp-mo-br100/photo.jpg','8918455867446117794',9249),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVaNBqYisDPBQ8eIBviV-u-qndkojzbO_ImwCR9pvk7G5s39ydL7ivrBO0H4BicjRVaq0l9oGVYfz9sXmPKOTLjEGlAhs','Fantastic Job by Dr. de Walla the Eric. Would go back every time! Thank you!!','2019-10-31 22:05:54.328000','2019-10-31 22:05:54.328000',5,'Becky Howell','https://lh3.googleusercontent.com/-gDrJY_rsF34/AAAAAAAAAAI/AAAAAAAAAAA/-RLYdk32j8U/c-rp-mo-br100/photo.jpg','16891069708558046635',4166),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVAp_Rf0fCfbQmZvvT1GNWUIZXKHzMFzHFBgsaNO0mdmhUJUpfd6Yo3SDTt6Foid05BE9-E_iaq6aBeQY5ds9iDky6L-0','I search the metroplex for a COVID test that wouldn\'t require a week long wait or three to five days for test results. I drove an hour but it was worth it. I recommend making an appointment during this time when everyone is trying to get a test. I paid 175 for the rapid test because I have no insurance but I was only there an hour total. All the nurses and staff were very nice and helpful.','2020-07-04 00:31:31.486000','2020-07-04 00:31:31.486000',5,'Casie James','https://lh5.googleusercontent.com/-P_QdUgr3hqc/AAAAAAAAAAI/AAAAAAAAAAA/2rRBGuOkn3s/c-rp-mo-br100/photo.jpg','14748677429039074158',21387),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVARdkoVaWgHgMBSvvQW81VpzpUv44cwe8mTjLSXh8XD8qoOjhC-zu2YqFDz12idYMH1iczwVXELYwMtHZjVD1eVjI7lo','The service here is wonderful. All the nurses and doctors are very friendly and they make sure you are comfortable. I always leave well informed about my condition.','2019-03-14 10:51:28.851000','2019-03-14 10:51:28.851000',5,'divinewaya','https://lh3.googleusercontent.com/--yH7sxNSLR4/AAAAAAAAAAI/AAAAAAAAAAA/qf-FYFpolgs/c-rp-mo-br100/photo.jpg','17394740196501090048',4713),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVAv8wBpj5LcaZ3PuBETcRDQiy_kNBydq0QKX9e6iE-yeOo7EuPBlmuRXo-k9CoFud1iWznMvrDdOqule6jQDoTtLrsfA','Yes the place is great but the bill is horrific. \nI received antibiotics for a possible UTI in March. \nI checked my insurance website claim status and it said claim PAID. total: $1,675. \nAbsurd! All they did was take my blood pressure, give me a AZO pill, and tested my urine which came back negative for a UTI, but I wanted the antibiotics anyway because I was in pain.Hopefully the insurance really did pay for it. You see, this is why they are so nice to you and why the place is always empty. They are there to RIP you OFF. \nToday I checked the claims again and it has a new charge from the same day of $800. Unfortunately it has been DENIED by my insurance because they filed it too late. This is one expensive UTI that I\'m gonna have to pay for, dearly. So unless you have an awesome health insurance that pays for everything, don\'t go to these emergency places, it\'s a horrible idea. Next time I\'m going to a cheaper doctor.','2018-08-28 16:50:45.352000','2018-08-28 16:50:45.352000',2,'strawberrylemon','https://lh3.googleusercontent.com/-1aP9AGepRvY/AAAAAAAAAAI/AAAAAAAAAAA/0DLHFkBUa5I/c-rp-mo-br100/photo.jpg','17394740196501090048',4814),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVb1-1r0_SBuiuhuxsBQyWi7U0TdwwqDZRi1NmTrYEK0ic8KZlK-5JiFU6AJ6GuJRgLyX84Tz4cL6yjVu4NbqT6QYZkvk','Overall, i was treated on a very professional level. Norma, Tino, Churiah, Dr. Souman, and Amy were cordial, professional, and very involved. I would recommend this practice!','2019-05-04 21:17:47.666000','2019-05-04 21:17:47.666000',5,'Carlos Marin','https://lh5.googleusercontent.com/-ID7kZ6uX29c/AAAAAAAAAAI/AAAAAAAAAAA/kNrw7uJsB6Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7350),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVbaIJSc3y6jex3hX4ZWPsmwDODcITR2LMsnm-MW3e-5UDQaV9Rub6HhFhYbfXG4_msclmEUABstDirH3hjjmof-MfGdw',NULL,'2018-06-09 02:43:16.809000','2018-06-09 02:43:16.809000',5,'Chris K','https://lh6.googleusercontent.com/-OiDM7UlFSdU/AAAAAAAAAAI/AAAAAAAAAAA/B-spkRj1wGU/c-rp-mo-br100/photo.jpg','16590124370714063921',3818),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVBEsKtHHmUpcSkCGXWeJnLdXAWeT4cTti-MBx6PXgrdd8nUvZPTTdtmlWa9XoIE3ErDx56Lzbn-ASp8VgbB28ZU2UXnI','Dr. Yusuf and staff were awesome! This was a great experience and they took care of my son and wife','2019-01-24 16:32:37.677000','2019-01-24 13:07:40.951000',5,'Prateek Jain','https://lh4.googleusercontent.com/-Z65tVV4-Dg8/AAAAAAAAAAI/AAAAAAAAAAA/9dNlvH7lV3w/c-rp-mo-br100/photo.jpg','3511292162159714121',7454),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVbhqbeaTT01wOkSl1DSI7SuhkbnwFDsoFNAKp29uCgz4DtQRiAcUu3dPu8QkTZsPdAAsbLR1hOoCTMUZiAFRJEaTO6Mw','love this place','2017-10-13 18:56:09.867000','2017-10-13 18:56:09.867000',5,'Jakisha Wilson','https://lh3.googleusercontent.com/-rnyC_EDQXuQ/AAAAAAAAAAI/AAAAAAAAAAA/eM_KHP-8AzQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4950),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVBHXXhnu9sOquUONq5rfoxkKr5cVSfVIGXCCCipvSqTOXeSRujgbPsVgV3ZZOFdiaYGF4sWEpPkqhq_miy2iHQ5UZR4g','Signaturecare facility is amazing from the receptionist jocelyn to nurse Alvean to Dr.Appiah. Very knowledgeable and informative on patients as far giving them the right care to make them feel better And back to 100%','2019-12-18 16:28:36.916000','2019-12-18 16:28:36.916000',5,'Travis Caliste','https://lh5.googleusercontent.com/-RBllgTRBbXc/AAAAAAAAAAI/AAAAAAAAAAA/MruW9r6UHr8/c-rp-mo-br100/photo.jpg','16389487648212004696',2536),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVbj2_0Kf7G0m7I4DVKcMdLgIP6lU6nuqht8feg2w3uA0yizbbu8mSfefgeIchWQYz5A4ZfBwdhdAXlzFU_nfswkjAfHI','Very quick service. It is extremely clean and Kelly V and Trisha went above and beyond to make my experience as smooth and prompt as possible. Will definitely refer family members.','2020-08-17 21:46:05.402000','2020-08-17 21:46:05.402000',5,'Estefany Sanchez','https://lh3.googleusercontent.com/a-/AOh14Gjs1tnCUNGEDdM2N_CWQESF_3oBdKG-Mj2zOZBKqA=c0x00000000-cc-rp','8918455867446117794',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVBjm7uOyJcoSmDLrmbo0HE5H6nme44JM_BtutepyS8YFWvsj9ZwwP1myhX6YdUiOmsV4HTvE1LZc7Lkv5uvbFty5Pk5M',NULL,'2020-05-21 21:35:06.806000','2020-05-21 21:35:06.806000',5,'Seba Raquel Suber','https://lh3.googleusercontent.com/-TUqk0w2mTOo/AAAAAAAAAAI/AAAAAAAAAAA/vyntJnpIB5M/c-rp-mo-br100/photo.jpg','8918455867446117794',22943),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVBkG1f2Pflp3kAo2BfS0fXzXJLbc8X8Np5W7wg3oEv7j2XLV18kYuzg3h0be0TAj3vtXbUj1vbYui7bughhoM9Lh50uE','The staff was great, caring and truly cared that I get treated quickly.','2018-09-02 13:41:41.023000','2018-09-02 13:41:41.023000',5,'Brian Taylor','https://lh6.googleusercontent.com/-ZLCoD_P-t4A/AAAAAAAAAAI/AAAAAAAAAAA/W5xjs0F11R8/c-rp-mo-br100/photo.jpg','16590124370714063921',3751),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVBlgiXMDJYlIsdPE_vfBY77L_l_mWLmwImHLVLo_aFhWpESKOEuYa4gxNRCHnGYBUI2I9xE5-qoX1NuNm6lI59rQ5djE','Signature care is one of the best urgent cares in Odessa if not *THE* best. Staff is amazing and friendly, Dr. Sullivan talks to you like he’s known you for years and is very clear and honest about everything. The nurses Jessica S., Jessica F., are very friendly and definitely make you feel at home! Thanks guys!','2020-01-02 15:44:35.181000','2020-01-02 15:44:35.181000',5,'Ricardo Oronoz','https://lh3.googleusercontent.com/-xWYedKnhaEQ/AAAAAAAAAAI/AAAAAAAAAAA/2rKTJxWIGhM/c-rp-mo-br100/photo.jpg','6521947413723274945',8037),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVBX3GaHtOtVLsgjZgvyS5e7Ebcjtm3wAkDZ95srIbqiJjlQiwePCdupB2SHy87iL7m8HuzdLbS6Thb3q757IN0hYu4vA',NULL,'2019-05-01 23:17:34.969000','2019-05-01 23:17:34.969000',5,'Lamont Bell','https://lh6.googleusercontent.com/-gXW-6qOK6ck/AAAAAAAAAAI/AAAAAAAAAAA/sLJ_9U8-CZg/c-rp-mo-br100/photo.jpg','8679688254631342173',8845),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVbz1KqlKmyMVViyzjnJuND3CVjURHAeI0BbGEcN-qBkrXDZlHqgCiApvmUXjB6ZlvMKKC6IplWWOYYZT277KS9ziqdkA','Excellent experience. Nydia, Cody and Sam were great!','2020-07-28 19:35:35.894000','2020-07-28 19:35:35.894000',5,'Debbie Bailey','https://lh4.googleusercontent.com/-IF2eD1t9MR8/AAAAAAAAAAI/AAAAAAAAAAA/73ZT4enlAoo/c-rp-mo-br100/photo.jpg','2077061009497551125',22789),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVc3OpnUsm-Qp6gEgwWFuuFCntt8wFKgzaTgCB3T8E_mZtkMGW3Xbinxzofb0cbLzIpp2vnKkms9uNyLuDyPqhr2JXDQQ','Dr. O\'Malley, Alvean A, tricia E, \nSibienne W, Bryan','2019-11-14 15:18:57.341000','2019-11-14 15:18:57.341000',5,'karla rodriguez','https://lh5.googleusercontent.com/-1nG9A2YQJNc/AAAAAAAAAAI/AAAAAAAAAAA/6FVYFD0aDhE/c-rp-mo-br100/photo.jpg','16389487648212004696',2707),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVcC6Cl3mQfbM5vT5Ra8TKSH6DZ07NPs5I4uxjk3vMHCVbuImElaPgYWlnt-UvBqYtDu8CIJcBzVaLKU_5S0JHp4jLbSY','Kendra checked my friend in very fast & problem free! Very hospitable place!!','2019-12-06 21:08:44.529000','2019-12-06 21:08:44.529000',5,'K8 Pullen','https://lh3.googleusercontent.com/-en6Zcn0BZLw/AAAAAAAAAAI/AAAAAAAAAAA/64qdVsBn568/c-rp-mo-br100/photo.jpg','16590124370714063921',3050),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVcd8GJp5vFZij6ujmF4umTM12MgdOUnolrGqXtHNuywx6tcPH4QwcBryX1wwg8g4E-frFbczni4Yzb3GIpDP5O5Beg6U','👍🏽','2020-01-29 10:57:51.314000','2020-01-25 18:56:07.919000',5,'Mark Camacho','https://lh6.googleusercontent.com/-lKvU_At2IhU/AAAAAAAAAAI/AAAAAAAAAAA/FE6sWG_cqFY/c-rp-mo-br100/photo.jpg','17394740196501090048',10241),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVCdWuYVMDfYXm1XBTaqza_5qRAvDCXEV2X89RcmaotvXyo39FKvX0G8GYYVpupvp3Q8zchwAfm4S87EUBOLKCrqCw-oI','Nurse Karen was really sweet and nice to talk to. Tech son le was good on explaining the prices of the cat scan and the process . Dr Allison was descriptive on explaining things. Register delicia was nice when we came in help us get the paper work in Spanish and made everything flow easy. I had an overall good experience fast and quick.','2019-10-20 20:44:04.796000','2019-10-20 20:44:04.796000',5,'Itzel Cruz','https://lh5.googleusercontent.com/-OJTUijtZFhg/AAAAAAAAAAI/AAAAAAAAAAA/4eCSd8b-mvY/c-rp-mo-br100/photo.jpg','8679688254631342173',8782),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVCiHfAbMnmvpBBDk93sGLRpRdJ09nL0Lru70EdsI1ym7PC8HmnguG9ShVqKSd9SJvJxgpnzYv_UIwPAueVTrN9zhE8bk','I just came back for my sutures and Dr. Zhen had made it a very easy and quick procedure, the nurses Fahme and Daniel were very caring and helpful, lastly Tanisha was the best ever, she\'s very informative and fun to conversate with .','2019-12-09 02:02:22.932000','2019-12-09 02:02:22.932000',5,'S Rizvee Yaseer','https://lh4.googleusercontent.com/-ACaciF_chWY/AAAAAAAAAAI/AAAAAAAAAAA/6-pILd67n0Y/c-rp-mo-br100/photo.jpg','17898197009688164559',5369),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVcIVRfGFUnGEUKYgwR4_EHpVPXn740kic2dwULkLCl-BiTsw107YoCcHGBhQN0FEondRulh39sHsm3DQU3qRBhhXsn9s','Great experience! Luke was very helpful and gentle with our baby girl! Will definitely recommend this place to a friend!','2018-12-29 04:05:20.356000','2018-12-29 04:05:20.356000',5,'Mary Cigainero','https://lh4.googleusercontent.com/-rB6ym_oKPPU/AAAAAAAAAAI/AAAAAAAAAAA/KYtaQ4aVSqk/c-rp-mo-br100/photo.jpg','3272657195432704501',7080),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVcq29Ali10LDSH6b_D37jBxQy13M4nZL1flZBB7sablPoJ7QDO_EeEKk1VyAVY3-H_M1rs9VRA5scupJoChDVXfIFNvk','I loved how they took good care of me. They made me feel safe under their care. They also attended me well.i would like to thank Dr. Harjai, nurse Alvean A.,radiologist Marcus B,and finally Jasmine R thank you so much.','2019-10-15 20:12:40.943000','2019-10-15 20:12:40.943000',5,'Jason Jimenez','https://lh4.googleusercontent.com/-KuR5snf7avc/AAAAAAAAAAI/AAAAAAAAAAA/6js9LSkjZD0/c-rp-mo-br100/photo.jpg','16389487648212004696',2821),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVCVX1pYd2YjJvzs7RQzCbmRyNAt0GrpaAnAZmU7AsrudR4kGqv1LotoMFrCBylvIIX03JBQTdoQUhtlzZ1NdoIAN3prg','They had the best customer service!!!!! It is my go to in emergency situations.','2019-08-10 03:55:33.936000','2019-08-10 03:55:33.936000',5,'Robert Algarin','https://lh3.googleusercontent.com/-4Q9pZVDbiI8/AAAAAAAAAAI/AAAAAAAAAAA/QlO2QAx_HnI/c-rp-mo-br100/photo.jpg','16891069708558046635',4223),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVcWgEHe_H71EnApwVPY9BFEvfI8jK8x4zEB-7M6zTQF2g4NlQx6kXWqdsw71wtV5bNIi37T91w_rGtn2ndpihLyPQos4','Great experience at the Heights location. Prompt service and Jasmine was extremely helpful and courteous.','2017-03-14 00:04:45.802000','2017-03-14 00:04:45.802000',5,'Alex Michael','https://lh6.googleusercontent.com/-fuvS8t4YCfU/AAAAAAAAAAI/AAAAAAAAAAA/zmK96jvqyqY/c-rp-mo-br100/photo.jpg','14567670160750071148',1869),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVd5R9LCSGpfEBRpfaI47TTaPSsPfeYxyUxAujzl3JW3lZgFNm6FfkGVUQmZ4JU5HHcsRacNPJDU5bkaWCN8_OhvchNY4','Doctor Paul, Rachel, Jessica, and Ashley, definitely took care of me, their the best. (Better than Reg ER) Thank you .\n\nAnother Visit! The staff here is amazing, Doctor Zhen, nurse Lynn, Fatima, Daniel and Ms Tanisha took care of us and you can tell they genuinely care. Thank you guys','2019-12-09 06:48:15.913000','2019-12-09 06:48:15.913000',5,'DeShawn Brown','https://lh3.googleusercontent.com/-ct3k2WrNu4w/AAAAAAAAAAI/AAAAAAAAAAA/HQ70i-OOAr0/c-rp-mo-br100/photo.jpg','17898197009688164559',5368),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVdBdsQ4UBV31ZkDldpqpWGywLT_fgnF3ybY_qhfHD1L0zgdUNNPUV20Xa28A1dJjYvhP6Agaqd1TeRgA_edN5WYzKUbI','Dr Patel, Nurse Kendra and Teri got me in. Really nice and got everything taken care of in a timely manner','2020-01-15 14:39:28.255000','2020-01-15 14:39:28.255000',5,'Myquelle Chapman','https://lh6.googleusercontent.com/-pc6u-Rzbhhg/AAAAAAAAAAI/AAAAAAAAAAA/J64gV2oLLac/c-rp-mo-br100/photo.jpg','16590124370714063921',9754),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVdik6xZFf2oRrHsT9I_d-35vfKEUD1X4JyLd70hW8LuTB71pjqxHLa7tMTBr_D0QirDM1btj0F2twH7OJE87R01vsodw','Had a bill sent out to me when I wasn’t suppose to be billed. I left a review and the staff and billing company reached out to me to discuss the issue. They were able to resolve my issue quickly.','2019-06-12 04:22:51.160000','2019-06-12 04:22:51.160000',5,'michelle deliphose','https://lh4.googleusercontent.com/-W9aOzp7qED4/AAAAAAAAAAI/AAAAAAAAAAA/m1DRsJAZx2E/c-rp-mo-br100/photo.jpg','8918455867446117794',9126),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVDNeSEzi0LhlfwB5hc7Td33YwNI_DYrDB_wGQCx5L9Gl18ULn_kRISSgeX88s3pETiYc3SEbhKFJfHhnVMi85Zrgzw5g','The treatment I received was professional and thorough. Dr Appia explained all the possibilities and was bery detailed. From the time I walked in Joycelyn A greeted me with a smile and Marcus and nurse Alvean were amazing and professional as well. They didnt leave a stone unturned and I could tell their number one priority was to make me comfortable. \n\nWould recommend','2020-01-15 15:35:21.481000','2020-01-15 15:35:21.481000',5,'Lakeidru Blaylock','https://lh3.googleusercontent.com/-v6OYdeFDCH4/AAAAAAAAAAI/AAAAAAAAAAA/PLEeRQUvbo4/c-rp-mo-br100/photo.jpg','16389487648212004696',9729),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVE_ITfu7xDkKqt-WyrGYH-VOIqD-d0waLcwVNMMpzB7CnLHerweYOViOEaRyfF13rRlW_8I1RN_2zybJTvhWCXu4tI1E','Dr. Ding was very informative as well as Chris my nurse and Amy worked wonders with my insurance. Thank you guys!','2019-04-27 13:34:51.237000','2019-04-27 13:34:51.237000',5,'Tita Carroll','https://lh4.googleusercontent.com/-Xo-EJDcpKpc/AAAAAAAAAAI/AAAAAAAAAAA/LXTafzIpisI/c-rp-mo-br100/photo.jpg','14567670160750071148',1346),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVE44Wk3yjxJki8tSUop_LJvQsPCz6IQZWBy20o2qhbsxr2iL3ep6WKA99VOffe2VMErIKRupATlUSbNf9gJVyve3NtAU','Doctor ashbrooks talked down to my husband in front of my children and treated us badly the entire visit. I will not be coming back.','2019-11-01 23:08:58.883000','2019-11-01 23:08:58.883000',1,'Rose Phoenix','https://lh5.googleusercontent.com/-lB4VzZt9vvk/AAAAAAAAAAI/AAAAAAAAAAA/svnZHDxA9UI/c-rp-mo-br100/photo.jpg','3272657195432704501',6874),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVEe-N9NOtu4RkcOMmEqx2OQoAaYJGyHsFR2sicU7N5gn7Kuck0dw64njL1m99ELoukAzoAeOF8RMQ7hWfOgnDVXJ_OgY','From the front desk person to my nurses Adam and Freddy they all had nothing but smiles! They were truly great to me and made me feel so welcomed and cared for. At first I was scared to get an IV because of how dehydrated I was but Freddy made it feel very painless and was so sweet. He even asked if I wanted room temp or cold water as soon as I could drink something again. They always asked if there was anything they could do for me or If i needed warm blankets. I brought my mother with me and they made sure she was taken care of too. They asked if she was hungry and wanted any snacks or coffee multiple times. I will be making this my number 1 ER room to go too thanks to my awesome nurses!!','2019-03-19 22:23:12.348000','2019-03-19 22:23:12.348000',5,'Gabby Olvera','https://lh3.googleusercontent.com/-4q3BwhBliYA/AAAAAAAAAAI/AAAAAAAAAAA/0F90G2BJ4-w/c-rp-mo-br100/photo.jpg','16891069708558046635',4320),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVEEo-6ghOiHkE_uD1hZTRthPZXVyA24-lSUtKq1Sf1UFsPnfuYj6nEdkj2dPqLga54xjsR2Lh9T7ATTIe2Pc2I-ExUok','They got me in and out! And every single person that helped me had a smile on their face and were so sweet! Thank you Signature Care!','2019-09-03 02:22:16.343000','2019-09-03 02:22:16.343000',5,'Janelle Burkstaller','https://lh6.googleusercontent.com/-Fa-REbtGRCI/AAAAAAAAAAI/AAAAAAAAAAA/-zmlwOUMgWU/c-rp-mo-br100/photo.jpg','13486358490203335051',839),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVeFCEb_MIFA8xx2wn3P3hXAU0TIAzlSBwRnsdMV-Iux_IRiIBMPqsT-8mbo9llS8P-MoX-Ajf7EkYO3GcPuBHaX89RW4','Great experience! Love this place! After this visit I don’t think I ever want to go anywhere else! Thank you Jennifer, Austin, and Matt!!','2019-05-14 14:29:11.583000','2019-05-14 14:29:11.583000',5,'Elexus Hickson','https://lh3.googleusercontent.com/-8lk3fQjaKMA/AAAAAAAAAAI/AAAAAAAAAAA/qNAPGdhgYc4/c-rp-mo-br100/photo.jpg','8626688543755174284',8487),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVeKpOs9iGsfBbX6XS44NPLWWqgBV4BaoPC-E3NKLkprfOiwtnvajYuSrx0bau7iCLS0IIPI6sBRVmWGzNv3Ixon_NBzc','The Staff at Signature Care Emergency Center on Sugar land was very nice, respectful and caring. If I ever find myself or my family in any need of emergency, I will always look for Signature Care Emergency Center especially the one in Sugar land. This is my second there and each time was better than the last. They are wonderful people there.','2016-06-03 12:06:22.619000','2016-06-03 12:06:22.619000',5,'Odinakachukwu Agu','https://lh3.googleusercontent.com/-cnZ84RmGt7w/AAAAAAAAAAI/AAAAAAAAAAA/l0PPF-Varws/c-rp-mo-br100/photo.jpg','17394740196501090048',5245),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVEmKPEBiI3BOQB5pQvFSjdc68zSf1J9qTOxFatUJXv-zL0xpyWf_xOxvRtXQ8JweLLAy4lhUgaipffVwKU-kmQNtD46k','My experience at SIGNATURE CARE was excellent, comparable, safe... all of the above, I would recommend anyone (the staff couldn\'t be better) thanks Signature Care for a wonderful experience!','2019-01-22 00:48:40.520000','2019-01-22 00:48:40.520000',5,'Jerome Celestine','https://lh6.googleusercontent.com/-HY6yvPtf4RY/AAAAAAAAAAI/AAAAAAAAAAA/70EXlFmakwc/c-rp-mo-br100/photo.jpg','17898197009688164559',5881),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVEO20WZDPcQE-HWl-MgbAEgLzLrvBCbLi4Xq1akcSoXv6LUcU0xnvkUXwaXP3V7FLkH9Sc4PInGW0xopZHN7S8uUtZwI','Great experience! Dr. Cavazos and his team did a great job.','2019-07-04 16:07:09.720000','2019-07-04 16:07:09.720000',5,'Nathan Griffith','https://lh4.googleusercontent.com/-75dfRJ_ed4g/AAAAAAAAAAI/AAAAAAAAAAA/17VJYxsBsIU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVeqDCBcft9VY0jQUgniRFNETbfRT4MOwQKdutpUI6TICr9WoWEO6CDy-A7bALe2SqsKVqh215D_rIku5kg4bLmV-Wvm0','I made an appointment online to get the COVID19 test, showed up to my appointment and it was nice and quick. The doctor and the nurse (Cody) were really nice and the doctor was great at explaining the procedure. I felt i was safe and well taken care of.','2020-07-29 13:57:40.818000','2020-07-29 13:57:40.818000',5,'Karla Escudero','https://lh6.googleusercontent.com/-Mar_62gG4DU/AAAAAAAAAAI/AAAAAAAAAAA/xt2YbVmZmJE/c-rp-mo-br100/photo.jpg','2077061009497551125',22768),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVErV9v292dx2bP3px8duYQbzjceGuk9xSWpiktHtWHsh3VwmdwtwS2zFSQvfn2kNSmOFhBb621uUKPCSz_JVKUR9ANDY',NULL,'2020-02-18 01:12:55.475000','2020-02-18 01:12:55.475000',5,'Osvaldo Guzman','https://lh5.googleusercontent.com/-n32aBtaFmJw/AAAAAAAAAAI/AAAAAAAAAAA/BjEKy35vW1g/c-rp-mo-br100/photo.jpg','8918455867446117794',14820),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVewPDidAMba7wJR6s9IX1Ck8CNxf9CA7VlGb1Mp227f4vHabr6Jj_bOpV_nnC2AAV3diBXbsmIOw0kVjAJwS14PhQrss','Fastest stitches I’ve ever received. 👌🏼 Nice staff, clean rooms, short wait.','2020-03-11 17:56:06.924000','2020-03-11 17:56:06.924000',5,'Claycee Redford','https://lh5.googleusercontent.com/-nSY5AdbxMT4/AAAAAAAAAAI/AAAAAAAAAAA/bPQDfKxgFO4/c-rp-mo-br100/photo.jpg','8679688254631342173',21215),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVeyDqCYX-cmd9UqF78JXKvanz5Tqw1m0HyTdLdqsMfN1dihoSwHf03RogBQXs_VIqu5PGQQLPp6O1plsHiSc7zWrryVQ','Great experience. I had something in my eye and I rushed here. I received immediate assistance from the staff in the front, all the way up to DR. GRINBLATAS, NURSE JENNIFER B. AND BRYAN D.','2020-02-05 00:27:29.177000','2020-02-05 00:27:29.177000',5,'Demarcus Johnson','https://lh3.googleusercontent.com/-VfMOSLqZ0So/AAAAAAAAAAI/AAAAAAAAAAA/lNCDaDEnKm0/c-rp-mo-br100/photo.jpg','14567670160750071148',13557),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVeyLraP9ubgX0xLYTPCRtnFxp4FxsvyT7K2-ZSbZhRoKj71uleQA-24Jv70TMRD-jxj54WakIQdhgLPFbskYsiPPFw5U','Lucas was so understanding and compassionate with my stepdaughter. Clean and quick experience. Dr Yost was very caring, he explained everything that he was doing','2020-02-01 18:05:33.008000','2020-02-01 18:05:33.008000',5,'Shannon Scarbrough','https://lh3.googleusercontent.com/-mCR-cm1GZis/AAAAAAAAAAI/AAAAAAAAAAA/cImxX9bh1Qg/c-rp-mo-br100/photo.jpg','3272657195432704501',14384),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVF3BJ12YWrrJXWjRZTuA7AKqi0_xswPdbEKS1yptvvanFtStOBrM2bF-JfTOVcizztHyunbAQIJeDZtZcORnvvJB9Z7k','Staff was friendly and efficient!!! Place was very clean👍🏽👍🏽👍🏽','2018-01-06 22:15:50.490000','2018-01-06 22:15:50.490000',5,'Kesha Stennis','https://lh5.googleusercontent.com/-naCbaCYCQmg/AAAAAAAAAAI/AAAAAAAAAAA/xU_Kkzt_NaA/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1692),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVfE1n49xTzxynjZQo0C3i4lUcHFQ7VTjc3-gkiz1wOox-w_IIi_1uD99W4SynkPaBfQb3YYcrWbNU7xnVm42my_hiN1E','Zita and Danny made everyone comfortable with their friendly, professional attitudes. Every step was explained, from check in to check out. I would recommend SignatureCare to anyone needing urgent care.','2019-05-09 18:16:38.596000','2019-05-09 18:16:38.596000',5,'Michelle Wagner','https://lh3.googleusercontent.com/-5_Kf9VxbckY/AAAAAAAAAAI/AAAAAAAAAAA/AIL4HmfPffA/c-rp-mo-br100/photo.jpg','13486358490203335051',1013),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVFG0G9Jq3Ar2vdvPKhQCaoMOhbpLlzxVIttkUhimnUBA1Uw7_FvcgHvNPKoOJtWngZ9AMS9Pv5wLju-p7qkNXJXONb10','Fast, efficient and very caring. As busy as they were they took the time to listen. Thank you!','2020-07-20 10:01:34.954000','2020-07-20 10:01:34.954000',5,'Linda Rappelet','https://lh6.googleusercontent.com/-B5p_CXof32k/AAAAAAAAAAI/AAAAAAAAAAA/BMuMo1TH8mo/c-rp-mo-br100/photo.jpg','2077061009497551125',22856),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVfgR33IL1lwnL25aP5e7MPogWYpNo29jMx6K8Hav48Q31iJUtHAGOEJy9crkeK-qvRhx9g_6VeEjxfP632lEjVviSpWM','Came in on Sunday at 2:40am to be exact with excruciating pain... was immediately checked-in by a very welcoming young lady by the name Dayana Melendez. Was taken in right away to a private room and was helped by the wonderful Techs: Amelia and Fatima. Dr. Edwards came in to ask several questions to figure out a solution. Nurses Al Almaguer and Jennifer took care of me by giving all medications instructed by the doctor and within a couple of hours my pain was taken care of and I was send home relief with paperwork and instructions to avoid this from happening again. I was so blessed to have come to SignatureCare Emergency Center-Mission Bend to have been taken care by all the wonderful staff. I will definitely recommend them from the bottom of my heart THANK YOU STAFF @ SignatureCare Emergency Center.','2019-10-21 15:50:31.360000','2019-10-21 15:50:31.360000',5,'Mara Cabrera','https://lh6.googleusercontent.com/-K6VSpmGJIuc/AAAAAAAAAAI/AAAAAAAAAAA/y2WqvtoWMps/c-rp-mo-br100/photo.jpg','17394740196501090048',14082),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVFJ0iapInv9vWVSPdqPoAr4gZK2gorO_MjJbsh0UFehYbrk9Pc9hXTtG_Zss3TvDzxFYKutPvL-6JCHXaeE2_YKQOGF0','Very helpful and quick in service! Dr. Jaber, Brad, and Itza all helped me and were kind and quick to answer any questions!','2019-04-08 13:38:36.013000','2019-04-08 13:38:36.013000',5,'Morgan Currie','https://lh5.googleusercontent.com/-t84zByABfwo/AAAAAAAAAAI/AAAAAAAAAAA/KFqilrCNlUk/c-rp-mo-br100/photo.jpg','16590124370714063921',3437),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVFjxU7a-tn6DcQ5WjAUl6RgZLkQmKA2XQAP8VVZmCj4jwrbnDvawh4i8TKvhuwR_RbrIK2ROvRpFVaKCPW1avnRU2o5I','Cody, Nydia, and Sam were really welcoming and helpful during our COVID-19 test. I was going in really anxious they sure did make the whole experience go smoothly and calm the nerves of the actual test! Thank you guys so much!','2020-07-26 17:00:07.721000','2020-07-26 17:00:07.721000',5,'mikayla martinez','https://lh4.googleusercontent.com/-Q2vvC-gjj3I/AAAAAAAAAAI/AAAAAAAAAAA/-WnPKwEGJlM/c-rp-mo-br100/photo.jpg','2077061009497551125',22828),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVfUQwUtnRpJAGSemwQFCVwmZs_-zuPiQIC62e9o-iBExxrAPjswNiQSK9OkVDO4tZc5WrpGkfAP1TV2sHBRS1AaRQNSs','Fastest ER experience ever! Lorena made the registration quick and easy. Remington kept everyone in good spirits. We were in and out in less than half an hour, thanks to Rebecca, Laura, and Dr Ortiz.','2020-01-04 21:55:02.971000','2020-01-04 21:55:02.971000',5,'Michael Brown','https://lh3.googleusercontent.com/-G8rHPCF7hS8/AAAAAAAAAAI/AAAAAAAAAAA/s1Rk-LPRcmo/c-rp-mo-br100/photo.jpg','16590124370714063921',2989),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVFzP9uAbqe0U695A0BsQ7rLVNWV3-9QpKfYeHl-56hNjZNx1uIRhCuL_gE-UkgMZ_q9tZ5WGJvn2Zlc8v3XJZsLr2TV0','Very professional... Dr. Wang along with Laura, Jacque, Norma, and Gina all made me feel comfortable. I feel that they were very sincere in trying to help me and I highly recommend anyone in need of urgent care to go here.','2019-02-18 20:49:46.655000','2019-02-18 20:49:46.655000',5,'Jay Murphy','https://lh4.googleusercontent.com/-mQ6eTjkKmNs/AAAAAAAAAAI/AAAAAAAAAAA/C87fuL16vDo/c-rp-mo-br100/photo.jpg','3511292162159714121',7403),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVgfNkHh9-m8yy7yu0aCIH8zcrJVdsIAn5HctZD72t9ELGyJT0ki-yBlyuhz3AiLzJhw1WNTUsLsFaUOrl5jKhmTMz9eU','From Linda at registration to Amber RN and Christie the lab tech to Dr Carpenter everyone was friendly and took great care of me.','2019-01-18 05:24:01.802000','2019-01-18 05:24:01.802000',5,'mary hicks','https://lh6.googleusercontent.com/-3IvdF_7zyr0/AAAAAAAAAAI/AAAAAAAAAAA/GAVcncJl158/c-rp-mo-br100/photo.jpg','3272657195432704501',7052),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVghjWltTFR_9OMu80UIqEkj8Q7Dud9ASSkfznWp7ci5DWwiJ3pXdwmuzCdah2XGdPd9D08lpd2MAcfbhOhoMkqcOXzu0','Bryan in Radiation was awesome was a great help','2018-09-07 01:21:00.928000','2018-09-07 01:21:00.928000',5,'Michael Vasquez','https://lh5.googleusercontent.com/-H9m_txBdF3Y/AAAAAAAAAAI/AAAAAAAAAAA/udj6zAyK7ks/c-rp-mo-br100/photo.jpg','14567670160750071148',1526),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVGJrMvsOLjVGQjuV26OMHPPbn6L_JVwRWtTbrPonkN0nZrDo_Vad1mPy6jAKsZscqvX_tR4atWINw2mwFz6AkdrI4RE0',NULL,'2020-07-14 20:29:09.740000','2020-07-14 20:29:09.740000',5,'Liz Stowers','https://lh6.googleusercontent.com/-oILflFOoX7k/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnKYyGcnDYMHHa1KWhCwwYHSjl-Zg/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21854),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVgNGleL8RV6j4hpktBh1IDmRnHLkw6NtMecBjtJliPL2slaFvsL7XVzjDty4CZiyaUg2z0B14VE1Q9_ZNsvoZYGLgSys','Wait to get in for test was a little long, but the test took no time.','2020-07-18 20:40:18.444000','2020-07-18 20:40:18.444000',5,'Jerry Pruitt','https://lh5.googleusercontent.com/-C1sNYhpBTmU/AAAAAAAAAAI/AAAAAAAAAAA/dTosVhI8pAQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21725),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVGNVj8PZ61snh-g34ERCkSn--Wyly78f5KKyhNucwcRFjS1TRLgq4w4VMlLxAUuQbMYy0iyvXraZgbaBD95NpGwZnpU4','Becky, Anthony, JR, and the other staff members were very kind and knowledgable! I felt more than confident in the care they provided.','2019-06-19 14:12:14.920000','2019-06-19 14:12:14.920000',5,'Erin Fitzpatrick','https://lh5.googleusercontent.com/-qE_baEiiPhw/AAAAAAAAAAI/AAAAAAAAAAA/cN6m5-V_I4M/c-rp-mo-br100/photo.jpg','16590124370714063921',3344),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVH3MrS2IhO29OcPeKDE31MygTa23-A4pbIX6VxEDxpGBZJYVYv1lbyhPdlCt0eZLRpClTbKEqBVCD44tcO7lKOVL8ndI','Dr Omalley Alvean Clarissa\nThey have very good friendly service and nice doctors','2020-08-15 21:14:54.275000','2020-08-15 21:14:54.275000',5,'Renae C','https://lh3.googleusercontent.com/a-/AOh14GhJ7k4BGHsLlDLtc3sRqRgoR5pObCfjXigWP5mmbA=c0x00000000-cc-rp','16389487648212004696',23044),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVh90lQIAk3s3047umXpsWGqC68aM4V6h2U02eKQAHb1vNz0h7GDgeeAjLG6nRhJIF7VYrmNdnw3VVXHwyhUlANCnD-4U','Great bedside manner','2019-04-20 13:58:04.258000','2019-04-20 13:58:04.258000',5,'Simeon Law','https://lh3.googleusercontent.com/-1NkpU526GJ4/AAAAAAAAAAI/AAAAAAAAAAA/ZbqZrj9aabk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVhLmLCN61Advdz4hKrYsQLa-RouG3lj0j4lxq20jaL57egznb-4oJupTA9cuzisv6rsgBW2CnSy_LvkmAHx253N3JyVo',NULL,'2019-07-15 06:45:31.289000','2019-07-15 06:45:31.289000',4,'Veronica Montano','https://lh5.googleusercontent.com/-91nMDX0DYI8/AAAAAAAAAAI/AAAAAAAAAAA/wIR1YX6F5q8/c-rp-mo-br100/photo.jpg','6521947413723274945',8196),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVHRelfJUKKfGU5D5gP1ko83FCutRK-of5bGGxbrKn9in4HhSsDTjZY9PoK2I6IcMLaThUkv7EE03LRhSWrdUfSr-pHKU','Quick, friendly, and very efficient! The doctor explained everything during the procedure and the after care.','2019-03-22 16:39:30.074000','2019-03-22 16:39:30.074000',5,'Rachel Moye','https://lh5.googleusercontent.com/-b888qxfp9r0/AAAAAAAAAAI/AAAAAAAAAAA/bYwdhJjWhcs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVhVR8LTIHkkbSR6KoDDTu2gkVdyK8Iq5AJWVHYes_2y1wSQI3WwAHS-BokE5qvrptvBA3huV0doDpcbSRE0PinPGqVZM','Great Service!','2020-07-02 13:13:33.703000','2020-07-02 13:13:33.703000',5,'michelle trejo','https://lh4.googleusercontent.com/-LYB8Sm58SR0/AAAAAAAAAAI/AAAAAAAAAAA/smnnn6gJ5U8/c-rp-mo-br100/photo.jpg','3511292162159714121',21474),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVi5ewI-ueS4q1D_fibO0nbZz7C7EdzSxEmOMGU2wXBIOvIGCnvcpWzgmCrU8PHWgcPjQGOvzrktY2CsIKO6bd982qRAo','Extremely friendly, caring, and compassionate staff.. Beautiful facility and unparalleled patient care. Adam, Earl, and Townesend were awesome. Incredible experience.','2019-09-30 05:02:35.608000','2019-09-30 05:02:35.608000',5,'Garrett Paine','https://lh5.googleusercontent.com/-74zUm2KI5uo/AAAAAAAAAAI/AAAAAAAAAAA/B4t-DO6wNxQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4192),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVieCA5-ZE2_xta6QPzliNY8iGN5UBDHtagmXgVYbkjiUwjf--x85EgyD4E4pQ6QwJEpc2UQ5w7I0N8zhMBA5pnjU-YLs','Paid $10 for a drive threw covid test appointment. Let me tell you the process. I pulled up a lady came to my car and told me that the ER is packed full of people and that it will take 30 min at least to get my results. I explain to her that I have not got tested yet. She told me that I needed to go inside to register and then get swabbed then return to my car to wait for results??? Please tell me the logic in that process. I just needed a test for work I\'m not showing any symptoms. I obviously left and I\'m out $10. The possibility of being infected sitting in the ER waiting room full of sick people very very high! Be careful just because they are in the medical field doesn\'t mean they are smart! 🤷‍♂️','2020-07-17 21:27:40.888000','2020-07-17 21:27:40.888000',1,'T O','https://lh6.googleusercontent.com/-eqpfTPyM9Gs/AAAAAAAAAAI/AAAAAAAAAAA/5bTeBy4x1VE/c-rp-mo-br100/photo.jpg','8918455867446117794',22921),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVIFDWFFh27kQGWqgDsYtmCbr-LDffD5JB32XN0PP80Gn8ux8PAQ30LVqDjyXjYwMJ1pxf6MOJeSu0njzZ_Zm5fioQU0g','Any\nDr Daniels\nMaureen\n\nExcellent Service, Love Them.','2019-07-07 03:15:12.272000','2019-07-07 03:15:12.272000',5,'Xodiac','https://lh3.googleusercontent.com/-A0gZMoJyxuI/AAAAAAAAAAI/AAAAAAAAAAA/vmxmNmHeRC4/c-rp-mo-br100/photo.jpg','3511292162159714121',7269),('AIe9_BFLWlqwz3qGBnCfbAsLD0lViHAkVPNXfKhIHp1-q6QdZVwavD8Eb01Q-_ijgdJPHKJXJioHv2ka9rS3Ab5P0plysTsOosolrbEuZ98-oYgXGMcRpKM','As soon as I walked in I was greeted by Samantha. All the staff that was working that night was very friendly especially Brandon W and Bryan D. They made my visit very pleasant. The wait was not long and Dr. Singla was very good, he have great bedside manners. I can’t forget that Juan C and Joann G was friendly as well.','2020-03-07 21:06:56.653000','2020-03-07 21:06:56.653000',5,'Monique Cotton','https://lh6.googleusercontent.com/-Ps66_OTh4wQ/AAAAAAAAAAI/AAAAAAAAAAA/TzVu86mzcSY/c-rp-mo-br100/photo.jpg','14567670160750071148',20951),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVIKdB-3kH_Yfn-jJbgUusQO1gU2JXLXESCW8ZrfXH8Cp3nAOCPwJkQfEqAf6qK9ZZ1i8R6M7Caw25cZqlrCbLKcVYHBY','Signature Care in Stafford TX is the best location to visit if you looking fast and friendly service. I took my son in for an ear ache and they relieved his pain in a matter of hours. I was in and out and my son was feeling a lot better the next day. Thank you so much for taking care of my son Jessica, Carissa, Bryan, Bill and Dr. Garcia.\n\nKindest Regards,\nHollis Caston','2017-10-05 22:47:44.416000','2017-10-05 22:47:44.416000',5,'Hollis Caston','https://lh5.googleusercontent.com/-VHDhzm2g0ec/AAAAAAAAAAI/AAAAAAAAAAA/ZKVSt8Kg-aA/c-rp-mo-br100/photo.jpg','8918455867446117794',9351),('AIe9_BFLWlqwz3qGBnCfbAsLD0lViUNtFn6xdlo8V1a73b1G3O9aWc2TlZRYaaFUceisU_nvKU3kvE68JXAO4xK9fwYOU2ovhDCWVftRt53DK2DmZirnQJY','Great place. Very clean and efficient! Excellent staff. Alexis, Anthony, Victoria, and Dr. Jaber were each super nice and really tried to make us comfortable.','2018-09-16 13:43:58.866000','2018-09-16 13:43:58.866000',5,'Tracy McAnally','https://lh6.googleusercontent.com/-4m8OWJD2fQ4/AAAAAAAAAAI/AAAAAAAAAAA/4jYsyNA9WrY/c-rp-mo-br100/photo.jpg','16590124370714063921',3724),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVIvSpJOjn1n2nva0moxRfvRWY6T9iM1Cu-vIjWuR6O5pvAXMXeisjVgw7s9HF1-mzddgVtsGoyOke0-pdMVI-SY5GdMo','The staff here was amazing. They got me in super quick and with ease. The receptionist Tanishia W. kept my nerves calm while I was in pain. The nurse Shelley D. Was very nice and offered me a warm towel and kept checking on me. I saw the doctor R. Estevez a few times while I was here as she popped in to check on me as well. The staff is amazing and the care was excellent.','2019-04-03 07:05:09.279000','2019-04-03 07:05:09.279000',5,'Ladies Night','https://lh5.googleusercontent.com/-aV2Yy83J5-k/AAAAAAAAAAI/AAAAAAAAAAA/o5tRwUAfFCs/c-rp-mo-br100/photo.jpg','17898197009688164559',5781),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVJ1My3n95LGzPjPXPN2cUqcB6JvAcMEiVANzufVx-9P2AsWOZ8WipzNxrBpkgtixgt_S4TlqlDYF5QEEqMWuhBioSXS8','Lisa H, Krystal, Leah and Dr. Bose were all very attentive and had great bedside manner.','2020-03-14 20:47:31.329000','2020-03-14 20:47:31.329000',5,'Eileen Yeager','https://lh3.googleusercontent.com/-4h6gdsmruI4/AAAAAAAAAAI/AAAAAAAAAAA/07fFMT1hi_g/c-rp-mo-br100/photo.jpg','13486358490203335051',20922),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVj3Sw0nR4ieAe1QfMRKcdhzPjgSSVyvyIuR1pr7PsfE_KKLUT_Rz3a-XHXF0pfqOKFTYLvJzYrxTczWPWS5O4P3oI080','Great service','2017-12-01 14:36:07.493000','2017-12-01 14:36:07.493000',5,'Ricky C','https://lh6.googleusercontent.com/-pxzUUu0_ylE/AAAAAAAAAAI/AAAAAAAAAAA/z6c70tzPQ1w/c-rp-mo-br100/photo.jpg','17394740196501090048',4924),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVjFMK6v27hMRfX3Gx9lSLkAI-2WLtraIJdu0NMfDtP_GUuY8NTBd5bnL_X7PpqwzUkS5-DhHXykCtkKPWrhwOVYAfbZA',NULL,'2017-09-11 18:12:30.822000','2017-09-11 18:12:30.822000',5,'Arie R','https://lh6.googleusercontent.com/-PcpPvZmCnlk/AAAAAAAAAAI/AAAAAAAAAAA/87kFK2sG1VE/c-rp-mo-br100/photo.jpg','14904078213800803294',2327),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVJPBka83YiEOKFNeXbTNe3TfcKZnTqkZhfa6faBueyutHx0UTN9lS-RDImkW6bOzVrk7g2flMMMPCFivGvcbN6alHmBI','Very clean, fast and friendly service! Got labs, imaging and other tests all done in one place.','2020-02-04 20:41:01.266000','2020-02-04 20:41:01.266000',5,'Shawn Larner','https://lh3.googleusercontent.com/-BB1Hoodx_bI/AAAAAAAAAAI/AAAAAAAAAAA/Wf_68rxRGOY/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',13558),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVjpUbj9Mj_NVvVXBynCGv2TBF6RWI6tTs-ALY1YaU1cg5QXZaPrwhy5KqzQ52qReiXzCxGWdzetCH9IZQxOAdOtnPhp8','The staff was wonderful and very attentive. Dr. O’Malley, Patrica C and Ekaterini were wonderful. I would recommend everyone to come for there urgent care needs!!','2020-01-24 20:53:29.204000','2020-01-24 20:53:29.204000',5,'pmat aero','https://lh5.googleusercontent.com/-anzxL7h06s8/AAAAAAAAAAI/AAAAAAAAAAA/2l84cyHbK5c/c-rp-mo-br100/photo.jpg','16389487648212004696',10185),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVJR5FkeUmMrdIr6rgcJyWUrHqSZw8ZFU46BqZLHn6UaXPwI-dq1fei8WcGNGCdkInRjBjpYA9sIt1nB6o5lNJ-li05PQ','Courtney, Luke, Eric, and Dr. Edwards all took great care of my family. We were treated in a timely manner and appropriately, in and out in no time. Highly recommend Signaturecare for any medical needs.','2020-02-16 16:23:03.390000','2020-02-16 16:23:03.390000',5,'Sarah Kilcrease','https://lh6.googleusercontent.com/-SuQOSeKXuR0/AAAAAAAAAAI/AAAAAAAAAAA/AjW67NcVRcY/c-rp-mo-br100/photo.jpg','3272657195432704501',14357),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVjwTgh_bacDcJ_ZXKnoJ6NBmJkHIrRFIUDh0whdFFq6NunhcppK-8s0uvw5S-V1NI5Y6y87kHhgOevTxjgfLV1AcvLXQ','Came in last weekend because of flu like symptoms. Staff was very friendly and I ended up having type B Flu. Gave me my prescription and I was on my way. Called to follow up and even sent me a thank you card. Top notch customer service.','2018-01-19 20:29:44.919000','2018-01-19 20:29:44.919000',5,'Jacob Herzog','https://lh4.googleusercontent.com/-Tfo4u0EoEco/AAAAAAAAAAI/AAAAAAAAAAA/oxrKpqgt7Dc/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3877),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVKcwttZiBkTqOiuDBwxEJhpNMmi3fY1VQtDwuKRfGQ6QNBU7JyqLuPdDQyycR5uZRENlzBJIVpOFnufBCPhmZy2Xph5Y','My daughter had a swollen eye and the made her feel so much better','2020-03-02 01:51:39.896000','2020-03-02 01:51:39.896000',5,'tx Mz','https://lh3.googleusercontent.com/-h1IL6ijvXXk/AAAAAAAAAAI/AAAAAAAAAAA/uHzqsUwdYvc/c-rp-mo-br100/photo.jpg','14567670160750071148',14944),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVkeR_se2lPi7c3ZMNVyjKN5H-goEB1d3miquLp34vJFMhXo05BkkBPUPLD4udgJiNWDtBnFq455G3WJK70dXodDPRp7M','The team is very welcoming. Doctor Levitt L , Nurse Shelley D, Rad tech Heather G, and especially Registrations Alexis S. I felt like i was in very good hands and was going to be taken care of. They always made sure i was comfortable.','2019-02-22 03:00:31.425000','2019-02-22 03:00:31.425000',5,'Briana Mize','https://lh4.googleusercontent.com/-3BL0NybaeLE/AAAAAAAAAAI/AAAAAAAAAAA/pMzYBryyCYE/c-rp-mo-br100/photo.jpg','17898197009688164559',5838),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVKHya-DkxPVLC0lOC4VE4rUgWwaG4uTvLlTZ-6xurR6bysEfXm3PGZp-lN_w2N1tbcKrHXvby6HbEhWj3mOyqBHl7B-Y','Was quick & great. Dr Patel, Nurse Lynn, rad tech Jessica, ER tech Elaine & Genesis in registration we’re all nice & took great care of me!','2019-08-02 21:30:46.209000','2019-08-02 21:30:46.209000',5,'Andrew Campbell','https://lh6.googleusercontent.com/-IX270dYMJU8/AAAAAAAAAAI/AAAAAAAAAAA/k5uoiIPSuws/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5605),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVkILKnZ5sexfk6Y8ydM0p2AXdC4VY0BVOZOZx69x8KzIIyXhNPP05ovnKBmhE57pJ4Q1lUGahkFnU_xyRlzyCqekAKNo','The service was very fast. I was called in the back before I was even able to complete my paperwork. Once in the room I was given a warm blanket and my vitals were taken as well. I believe the longest wait time was approximately 20 minutes. Best emergency room visit I\'ve ever had because it didn\'t feel like an emergency room visit!','2017-08-13 12:38:34.413000','2017-08-13 12:38:34.413000',5,'Kai Harman','https://lh5.googleusercontent.com/-J21PI9CH4iU/AAAAAAAAAAI/AAAAAAAAAAA/DQ7tF_5YcF4/c-rp-mo-br100/photo.jpg','14567670160750071148',1773),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVKJtY0SFQlfapIjBbL47zpmh07DiIEiBlQ4sbB1noypggx0esKP21HsGd1r13KHQGjw2pARwzhRWykS1VR-KzBqn5jwo','Beautiful crew from the front to the back office. Very friendly staff. In and out! Just like that!!','2017-07-15 02:07:41.657000','2017-07-15 02:07:41.657000',5,'Carolyn Allen','https://lh5.googleusercontent.com/-ePbNA1f66uo/AAAAAAAAAAI/AAAAAAAAAAA/gI9QZXbn8lc/c-rp-mo-br100/photo.jpg','8918455867446117794',9377),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVkoBspeDEQ5OMC250SW-AuEEBAmT3A2YyJw3o_HkualoD3ftVPvL6At0QXcVPBC5PgrAoEc7aWmZo37VkyiNUJr7sWig','Some of the most professional, friendly and prompt service I’ve had in the health care field. The entire experience was positive. \nThank you to the staff for making me feel like person in need of healing and not just another number. \nDr. Elsbecker, Nurse Pinion and the rest of the team will most definitely be seeing me again should the need arise.','2019-09-22 00:07:49.590000','2019-09-22 00:07:49.590000',5,'P I','https://lh3.googleusercontent.com/-uAaVVf4C4eM/AAAAAAAAAAI/AAAAAAAAAAA/wbvPqj1Mgo0/c-rp-mo-br100/photo.jpg','16891069708558046635',4198),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVkSV42qXPPGQKSYA9FwqToaj6AalMCBCG1GBC-sve_nxTKVzoVVNa9Q6d9sURHEur_7wjHQulmsqunbaR1a5gFcKITfA','I went to location with having doubt about the quality of care. I was amazed at how well I was treated by staff, from the registration to my entire stay there, especially Tabitha and Leo. I will definitely recommend my family and friends to come here. we are lucky to have \"other\" options.','2019-06-18 18:27:29.065000','2019-06-18 18:27:29.065000',5,'Joe Salmon','https://lh5.googleusercontent.com/-o65x2YHOHRA/AAAAAAAAAAI/AAAAAAAAAAA/0d6L2ysyskk/c-rp-mo-br100/photo.jpg','6521947413723274945',8228),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVl__kE1ITkrrGsioQpijzcQix2duOKkV85V6TD619UxqFqLvXH1os5eqYpBwQWxmViI3EF7nDNteigJ0YwaA31AP51q0','The staff is kind, courteous, and caring!!','2017-11-01 16:22:24.393000','2017-11-01 16:22:24.393000',5,'Lily Bivins','https://lh5.googleusercontent.com/-VLTafGMjREs/AAAAAAAAAAI/AAAAAAAAAAA/uBmgi_ERnzU/c-rp-mo-br100/photo.jpg','16590124370714063921',3912),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVl-UQfWk1RfPrmBX23vBy_-p1I_IGADx3nacFD_5BYIYm4Hb01Spejv-EXEA5FQ4Xt4deG6J74GQtBHn1d6ZXa_pVOKA','I\'ve been to this place twice and they charge the same copay as my hospital\'s ER service. Check in was quick, staff was really nice, clean facility and most importantly, doctors are great','2017-09-12 03:24:34.170000','2017-09-12 03:24:34.170000',5,'Chinh Le','https://lh6.googleusercontent.com/-f_W__zIqHy0/AAAAAAAAAAI/AAAAAAAAAAA/mOhAO-EIXpM/c-rp-mo-br100/photo.jpg','17394740196501090048',4978),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVL9iP70uPaE7vf8UGDislMIB2zEbZrwvWOzncew0id4OX_m8afIt77Zt4ivf2cS70dLHVjef8ax39D9H_RbFd2iYSQq4','My husband had horrible pain from a broken tooth. He absolutely hates ER\'s, Physician office visits, medication and shots. He was in so much pain that he allowed me to bring him to the only ER that treats dental related emergencies. \nFrom the initial phone call I made down to the exit door, both of us had the most welcoming experience. I manage a clinic so I understand the importance of customer service. \nAs I opened the door we were greeted. The receptionist explained what to expect so well that oddly I had no questions. We were called back within minutes. Nurses began vitals immediately, the Physician was in roughly 2 to 3 minutes after the nurses informed us, \"the Dr will be here shortly\". Alot of physicians now days don\'t have great bed side manners. Dr. Singla was fantastic! Explained, recommended, informed and instructed very clear and concise. \nMy husband got a shot! He is terrified of needles. His first response, \"that didn\'t even hurt.\" \nHis nurse monitored him for 30 minutes and we were on our way. \nHands down the best ER I have been to! Thank you for making my husbands first ER visit better than I hoped for. ','2016-10-05 02:26:26.762000','2016-10-05 02:26:26.762000',5,'Corinna Sanchez','https://lh4.googleusercontent.com/-KjRbSIEDVfc/AAAAAAAAAAI/AAAAAAAAAAA/cL_L5R0IOkc/c-rp-mo-br100/photo.jpg','14567670160750071148',1960),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVLbaYiKLkj1sdXOZb3wGUeWqvyRbCNHzqtce3_QzuKPAi-NGqFpUf_fDxkLdNxuKCWSRBpJ8OZBnUAzgHQBSi1nmwHI0','The wait was a bit long, but the staff was very friendly and quick in the actual COVID testing process. They offered to answer questions and were extremely helpful. Thanks Dr. Angela!','2020-07-28 01:46:35.198000','2020-07-28 01:46:35.198000',4,'Anna Helmers','https://lh6.googleusercontent.com/-UNXUITab1fQ/AAAAAAAAAAI/AAAAAAAAAAA/YPh4p4ApXJ0/c-rp-mo-br100/photo.jpg','14748677429039074158',22551),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVlEEYgBUAK0mPF1p6vKgEd7OToU-Aj7zZKhJCdmbByC-bL2yrzxjTpXPdb3fbloRxOfcZxTkSUCfqj1ql3F-NerIeAOE','First time here amazing service from Dr.O’Malley Alvean Tricia Jordan and Patricia.','2019-11-30 20:42:00.000000','2019-11-30 20:42:00.000000',5,'Olga Serrano','https://lh6.googleusercontent.com/-Alr2YD4kHL4/AAAAAAAAAAI/AAAAAAAAAAA/pEv4WFId9Ck/c-rp-mo-br100/photo.jpg','16389487648212004696',2601),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVLG2k-6Dr8U5sfnnT6T-zUXOWy40Xg-qLnp2u1zV_ye5tBWeMlgl1LALp1dNj0CjJbUA4GBbaDV8sF5TELBJy6pbHAl0','Everyone was helpful , very great staff warm welcome I loved it , I waited 5 mins and I was in the back','2017-08-01 19:06:19.146000','2017-08-01 19:06:19.146000',5,'Ylonna Vaughn','https://lh4.googleusercontent.com/-YK7hHwiZHNY/AAAAAAAAAAI/AAAAAAAAAAA/DTF2UvSjQ-Y/c-rp-mo-br100/photo.jpg','17394740196501090048',5006),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVlicf7a-Uox9GuSlG2O6fJlMmL5tnJZv6xMLtMQgr83i3UrgQsnVMpY2TcrKHT_XoAMfDOFIHs_qn5mYQAxnU75cUFO8',NULL,'2019-01-23 03:05:48.003000','2019-01-23 03:05:48.003000',5,'nayeli hernandez','https://lh6.googleusercontent.com/-MzkCjZIehvs/AAAAAAAAAAI/AAAAAAAAAAA/_BsLozgR-9o/c-rp-mo-br100/photo.jpg','13486358490203335051',1092),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVliEzIk8AeSmILGar6uTwNNAgLmBgo7dnHvS037W73AIwXGHRhKZ9-BQ9-aP3s588j2RF_xknxCB_yBF25z9j7JkalwY','The receptionist, Kim was very nice and helpful. As was the nurse, Brad. He was very informative and kind. Would definitely come back to Signature Care College Station.','2017-02-07 18:10:53.006000','2017-02-07 18:10:53.006000',5,'Kennedy Potts','https://lh5.googleusercontent.com/-e8ZWB7OxK28/AAAAAAAAAAI/AAAAAAAAAAA/eVE9A7wUa-c/c-rp-mo-br100/photo.jpg','16590124370714063921',4069),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVLikqomojoGhScu3hPLlAigGO_6wTdNBHjS1ir7Jf_CrpMpzSOB4Zi-7NFhrp6A34iDcuqGk3Xwsfq2dqcd12cngK-1M','They were so nice!!! Followed protocol to a tee. I felt safe getting my covid test here. Def recommend. \n\nReg: Nicole\nRad tech: Natalia \nNurse: Rolando','2020-08-12 00:27:38.616000','2020-08-12 00:27:38.616000',5,'Tamir Lilani','https://lh3.googleusercontent.com/-fsxujvSkDZI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnvxhI45cA1_SbNqKh927XbZz2DjA/c0x00000000-cc-rp/photo.jpg','8679688254631342173',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVlKgQsMQ4O_jekCgOZk8bDBxYrlZDFi2ucQSQyvsli1bQ-J7cIfO_iGrtQSpPbT5U6FJ2NE1xJiD6CN5xzDSdIZxNtqE','Great experience! Rene was great. The entire staff was very helpful. I was in and out quickly.','2017-04-06 04:18:29.367000','2017-04-06 04:18:29.367000',5,'jhrt55','https://lh3.googleusercontent.com/-y5VMnTBMlB4/AAAAAAAAAAI/AAAAAAAAAAA/KYC16uWtOQM/c-rp-mo-br100/photo.jpg','3511292162159714121',7851),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVlVYB0qU-iBe-XQN5PszMje3htlcRf_Vaa-t4vnO0dBur9EaV0-a0NxFXL3WC7NMthkX7ogiXLoujhBe3tbZ8BnWXvWE','I\'ve been to several other ERs around and this had to be the absolute best Experience.\n\nDr. Boester was very professional and caring. The staff members were all welcoming and super helpful.\n\nThank you Lizzie, Josh, Melissa and Gina!','2020-02-17 03:04:10.034000','2020-02-17 03:04:10.034000',5,'Ultimate Auto Recon','https://lh3.googleusercontent.com/-Ri4q28ZTD2k/AAAAAAAAAAI/AAAAAAAAAAA/ckbPpJ94SEw/c-rp-mo-br100/photo.jpg','3511292162159714121',14414),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVM8WENnKmAC9U-Z81TatgQVf9bZiKqmSwA9CTKo1w-MoxDUGQk4_UicMnVXUKvdaiF9U-WSVhFbwTynDe0YRXs239aJ0','Hayleigh and staff were great!! Will return','2018-07-27 01:28:54.177000','2018-07-27 01:28:54.177000',5,'natalie prevot','https://lh4.googleusercontent.com/-D2F3SGeXm2s/AAAAAAAAAAI/AAAAAAAAAAA/Z0owv2AtxxE/c-rp-mo-br100/photo.jpg','14567670160750071148',1584),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVmAJh5Lzr7AqFnwBKPJ4b4gVcLJuorcSdHhECqA_CCfLPHYY1PHTWZ1cHT1ZXJAXQSWaYG1wIFNPHD5Ijn2zF5cEFTDU','Came in this morning for an impromptu eye irritation and was ushered through the door before I could even finish filling out the paperwork. Thanks so much to Dr. Vakay, nurse Jacob, and the lovely Mai and Morgan!','2019-05-26 17:02:25.759000','2019-05-26 17:02:25.759000',5,'Andrea Clark','https://lh3.googleusercontent.com/-wZ2_N-tzbcg/AAAAAAAAAAI/AAAAAAAAAAA/fKri62EzFDA/c-rp-mo-br100/photo.jpg','16590124370714063921',3378),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVMBidBMvCgOMoks8NFR9HBk6bqNOb2bh9HaT0L_QONAgFAqzO6ozYoqKiv9Y2A261se0b9lBRp7Eq6Ojj2dldsueZK0o','Super friendly staff, and fast service. Dr. Miller was exceptional, he\'s super nice, friendly, and courteous. I could not have had a better doctor! The nurses were all great too. Jasmine, the receptionist was able to help me out with my bill too when I couldn\'t afford my full copay. If I ever have another emergency I know exactly where I\'m going!! Highly recommend!','2016-09-02 01:30:10.097000','2016-09-02 01:30:10.097000',5,'E A','https://lh4.googleusercontent.com/-5vsVEtf6sV8/AAAAAAAAAAI/AAAAAAAAAAA/792T53HV4j4/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1979),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVME7JmtCna6jy2bjLCNi4gn_ZMQx8506sLKdD87rIQb-_SsG0CcqBU7AsD7PsvtZtGqIBaxn7smAo9LWdbr8bsvb3Tbk','I came in because of a cough and the whole staff really took care of everything and were super professional. Anthony the RN did a great job as well as Kathleen the X ray technician. Ultimately Dr. Vakey helped me out as well. Great staff.','2019-06-11 00:00:32.517000','2019-06-11 00:00:32.517000',5,'Tres Lyons','https://lh4.googleusercontent.com/-0OmTkOso5vw/AAAAAAAAAAI/AAAAAAAAAAA/UZ9qnZGA8_E/c-rp-mo-br100/photo.jpg','16590124370714063921',3361),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVmetXp1tl0psvriSdtWaJfUM32vPH1AMPo7BAXourtPAiSQB32LT1E3ZPGVwlP2ZbV0K_4TW9vvEOAQWtCOlxHpD5AYM','Today I went to signature care cypress and had an awesome experience. The registration Patricia c. Was very helpful and the nurse alvean a . was very gentle and helpful as well.','2019-12-26 20:26:45.514000','2019-12-26 20:26:45.514000',5,'Jazmyne Harrell','https://lh6.googleusercontent.com/-dkwWThsJzVQ/AAAAAAAAAAI/AAAAAAAAAAA/rBrgp7IQFjY/c-rp-mo-br100/photo.jpg','16389487648212004696',2511),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVmeuow_NyDPFO3o_VhWODN2lgNfrp3-JGRRQ20WPxe_BIbwv49F1JLLrQV9TCYnRo2-vVDM-2zGoZNtGTXwaPg4g1Qyo','This place is AMAZING! Jennifer Diggs was so kind and compassionate as she quickly got me registered and to a room! I had a horrible cough, chills and overall did not feel well! I was tested for flu and pneumonia (thank goodness I had neither) so quickly by Luke, my Nurse! Dr. Simmons was so thorough and so personable! I am beyond thankful to have a place like this here in Paris!','2019-01-13 03:49:19.507000','2019-01-13 03:49:19.507000',5,'Paris COG','https://lh5.googleusercontent.com/-2KnbW0Q9sD0/AAAAAAAAAAI/AAAAAAAAAAA/KzV6SLwumfA/c-rp-mo-br100/photo.jpg','8626688543755174284',8587),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVMMHg8rD427VYc3VeSHspzB28qsqZknbLXQhxouaO66QEwAQcdjgNL36R--LnCGES2IvYhmTYA6kwNv-JidSVc3RahsA','Great customer service and wonderful staff','2019-12-24 01:20:25.444000','2019-12-24 01:20:25.444000',5,'Christina Treybig','https://lh3.googleusercontent.com/-DsJgv53SOB0/AAAAAAAAAAI/AAAAAAAAAAA/URdC2X9jTbk/c-rp-mo-br100/photo.jpg','12541597562633926366',313),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVMoDsV8COBN971ze8VmraAWKwJm-dWEMNK6G7o8t5IGLYz1q90zQ-3fWda_N6AvSR5GpzmTYYOhb9HYwH7q25pRZR1oc','No wait, friendly, and I would recommend to anyone and everyone.','2019-01-15 00:30:19.059000','2019-01-15 00:30:19.059000',5,'monica gordon','https://lh5.googleusercontent.com/-QVl331d9D4Q/AAAAAAAAAAI/AAAAAAAAAAA/UfExmeTTY3Y/c-rp-mo-br100/photo.jpg','14567670160750071148',1412),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVMV8ee2_CCCWjhuWDwcKPPXXP4PsQVOx9A1fpumesmP0egA0XE5AKqPNb86VJMPv-Nxh4oEuXOsf3m7_ZpJrLYN3duN4','I had a great quick visit w/ Anthony-RN, JR & Dr Harjai!','2019-02-15 13:35:21.822000','2019-02-15 13:35:21.822000',5,'Philipp Ranch','https://lh3.googleusercontent.com/-Z260RGIWXOg/AAAAAAAAAAI/AAAAAAAAAAA/jnrmKd7RyAo/c-rp-mo-br100/photo.jpg','16590124370714063921',3547),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVN4H0fKhbRr01-ww-q6oQj49YPIePSdKTE1hmXeFCGx7Vo1k4y0TsZCoYWdf7zM45unI_g56z2ZfSHaMneU8rSXDEv6k','Staff is awesome! Super polite and made the experience easy. The center is extremely clean and if I need medical attention this will be the place! Thanks again for the nose swab. You guys rock','2020-07-25 00:25:13.710000','2020-07-25 00:25:13.710000',5,'micah adams','https://lh3.googleusercontent.com/-vNaNOdoAZFE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnO1TUlnFLOxGO6MYGmOKHLK1wVvg/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22033),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVn7ZPzLwtVt8uiJXskABckJwX9ghm1Oful7UFfKXvwkNlvP1JjUFtPJrVQ8wWjoGX0i-l9NEcdR4IsWuTw_vgVOq_yek','Great service ! Highly recommend for medical emergencies. We came in and Shania quickly had us seen by Dr.Huerta. Lisa took great care of us and Randy was very professional with his work . Thanks everyone . Even without insurance we were able to be seen immediately! They’ll take great care of you !','2019-12-06 03:05:50.763000','2019-12-06 03:05:50.763000',5,'Shaun Wexler','https://lh4.googleusercontent.com/-D6BEgVngKQo/AAAAAAAAAAI/AAAAAAAAAAA/2e0TtZF2lzs/c-rp-mo-br100/photo.jpg','13486358490203335051',705),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVNcgPgxVxzwPgkW9fIhXB0mmx44d_GHNI18MSqDGhndkg01lhX0zXv37xZrAwYLd57FNplUeYu-X5cH567QU9U7TiyZE','My husband, toddler, and I were able to all have a rapid COVID test done here. It was quick, easy, and safe. Would recommend anyone come here! They will take care of you.','2020-08-12 18:54:39.641000','2020-08-12 18:54:39.641000',5,'Liberty Walker','https://lh3.googleusercontent.com/a-/AOh14GiGVGRYltXNsTWtkwg3vuqkEoAF73fES4kS_oF1_g=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVNEBT-Acorl8vhSeLsW-6eSER4P1-xfSmb1BY9-4P7Lvl2Jv2OgCTt900feHOq2BLQ8KcrzGh9dydFx6lGXJT120rE2Q','You will pay and Emergency Room Copay (ours is 100.00) not an Urgent care copay (our is 25.00). Please pay attention to this. We were there just for business and stopped in because we thought we had the flu. It was just strep. The doctors and nurse staff were A+++. The front office on 1-5-19 was not a reflection of the care we received. Really the physicians and nurses were better than any place I\'ve ever been.','2020-08-17 17:37:47.817000','2020-08-17 17:37:47.817000',4,'A. L.','https://lh4.googleusercontent.com/-WQAN-bXIXgg/AAAAAAAAAAI/AAAAAAAATZc/AMZuucl0owsaA1OsuvZii1_2RXToxtGPZQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',8295),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVnt1mp7j_38DJYmdQe_c87SESENmL9NNKv1W02fWm6RI-GcqNyDLmMqL2xvp4fj7kL0FJLhryHpInP7fu9Jr9hnDv-Ng','Amazing attitudes, they are fast and sweet hearted and so easy to work with!!!!','2019-01-15 19:56:19.039000','2019-01-15 19:56:19.039000',5,'Wesley Howington','https://lh5.googleusercontent.com/-m8AKzHx2uqE/AAAAAAAAAAI/AAAAAAAAAAA/W16-ulfTwLU/c-rp-mo-br100/photo.jpg','3511292162159714121',7476),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVNtu3_KvpFzi1W-TfmMgXncYdlevNzgGDY_Fu9VsQSbcjvd5Q7PX4_ot7L931-BJ8ghhDHSVN56pIfG_wV8Cw75HhMT0','I had a great experience taking my friend in for an injured ankle. Thank you to Dr Alloju, nurse Rollie, our tech Natalia and Stephanie for the smooth visit.','2019-11-17 01:50:19.801000','2019-11-17 01:50:19.801000',5,'Moises Tacam','https://lh3.googleusercontent.com/-XCOjQzLZXxY/AAAAAAAAAAI/AAAAAAAAAAA/x_XojY8wL8k/c-rp-mo-br100/photo.jpg','8679688254631342173',8723),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVnX6y3L_Co2XH1fumGpI1v-rvKWcfESC2FIv685VGtddcr1p1cj1qvNz_LpO8jdgdopt0EE9TGp9J5tWDALTOOD0kS3w','Best ER I’ve ever been to. I’d pay the extra copay money to go there over a clinic.','2017-11-11 22:24:28.138000','2017-11-11 22:24:28.138000',5,'mike rodriguez','https://lh5.googleusercontent.com/-q0duGEDTJiU/AAAAAAAAAAI/AAAAAAAAAAA/yCPJSrPzEvg/c-rp-mo-br100/photo.jpg','3511292162159714121',7762),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVO_Tv43PAGMT2y-DX5rTh5Ma0TIFKhBRZr_fBWs314KZ4iidQI8Ve4HTaN4A0G8mw7PMU1blLT9LINMprindyGFIHZfQ','This has been the fastest emergence care I have receive from a emergency care. The young lady at the front desk Arieial was so patience and very helpful. The staff took very good care of me Dr. Shelise Edwards, Nurse Irving B, Thelma and Holly P. The office , patience room and bathroom was very clean. \nThank you for taking care of me!!!!','2019-08-31 06:41:46.407000','2019-08-31 06:41:46.407000',5,'Snatch Queen','https://lh4.googleusercontent.com/-6kQTeZ5lELA/AAAAAAAAAAI/AAAAAAAAAAA/32BJrgl9j3U/c-rp-mo-br100/photo.jpg','12541597562633926366',443),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVo2EpVuxn6wuTx9fscdrRsBTtYcemV7KMLBQOF_p-VXUwnswPC3l95_4Z2ee_w-HNNT2v_wm1Wu1s4A2tzVvHD0VlWhc','Wonderful super friendly staff. I highly recommend.','2019-12-16 23:13:13.334000','2019-12-16 23:13:13.334000',5,'Kandys Landry','https://lh5.googleusercontent.com/-Ae_apn98gM8/AAAAAAAAAAI/AAAAAAAAAAA/KqGsRn4pSRI/c-rp-mo-br100/photo.jpg','12541597562633926366',339),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVO5choZINNynJCk7av4lWLFm6HeYtfajzeEIX_ZvcbY98slw-5_Ps7dnWZM5Zv1cnp_9hiPH_yaGKqgOyfMa51htfT7Q','Wonderful Facility! Great staff that makes you feel very welcomed from check-in all the way to check-out. I love the premises, very accommodating environment and establishment as a whole. The staff is always making sure the patient is informed and updated regularly if there will be any wait whatsoever. Very fast service and care, and all emergencies are treated equally as important as the next. My number one option anytime I have to go to the ER. Thank you!','2020-02-11 20:26:18.771000','2020-02-11 20:26:18.771000',5,'Evelin Couto','https://lh3.googleusercontent.com/--WRtSpo6OMU/AAAAAAAAAAI/AAAAAAAAAAA/3jpzsE6ckW4/c-rp-mo-br100/photo.jpg','13486358490203335051',13427),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVo6vILvTXGZfyYbmXnuXzPPaLpClG8Qvlji4sl7qZz_ZjbCpGt6cIRdBZOnbcBSGnyWp7-LzI3Bl7oBwFa8F-n5ofCAs','Very fast & attentive.','2020-01-06 19:00:25.567000','2020-01-06 19:00:25.567000',5,'Karma _Official','https://lh5.googleusercontent.com/-6AEEG01ZMjQ/AAAAAAAAAAI/AAAAAAAAAAA/bEZHATOuUJc/c-rp-mo-br100/photo.jpg','12541597562633926366',9408),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVODWjkZ2UMz1pGD1xU3f-QTwi0D_thy4eL95EAMEtIJsj3XZAtvCTU8wBMpJPwjtBVMVTuDrxUKvDemTLfbfvZR9f79M','Kimberly helped get my paperwork done efficiently. Jacob was very co side rate and helped me out as much as possible and Morgan took my vitals twice.','2017-03-28 19:25:36.361000','2017-03-28 19:25:36.361000',5,'Cassidy Stevenson','https://lh5.googleusercontent.com/-8RBW4EEbTDE/AAAAAAAAAAI/AAAAAAAAAAA/qkZ-_JNFkoo/c-rp-mo-br100/photo.jpg','16590124370714063921',4019),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVoFPM6bDYywtRLsY-JUXC-mhIJ1MrjeoeTNxVbUpJr1PxCQn-BSWbvX0f9Y2hgtQqc3T7GGNiLoqYmLUSMZx70nNbqEU','I didn’t die :) thank u: Dr.Kotey, Ke’Aire, Dion, churiah, Agnes, Josh','2018-08-10 03:02:05.663000','2018-08-10 03:02:05.663000',5,'Davian Raggio','https://lh3.googleusercontent.com/-8g3dREGLX1o/AAAAAAAAAAI/AAAAAAAAAAA/n3EDoS5-Pks/c-rp-mo-br100/photo.jpg','3511292162159714121',7643),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVoh10eTGMaMfda4MVAA7IihamnJv8gVhAH889pfmf5xcauvIeRcniAUgrHpbDwFgXnAjODw3jBymoZX59p4pWUKWmRfg','Absolutely wonderful place! I have been feeling so bad and they got me right in and tests run in about an hour! Treatment started right away and all of the staff has been so sweet and caring! I will definitely come back for any emergencies that ever pop up! I\'ll recommend this place to everyone!','2020-08-21 21:31:22.891000','2020-08-21 21:31:22.891000',5,'Lisa Stanford','https://lh5.googleusercontent.com/-FAkpSzjhwgM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnnLzftsFO1f2O9hkNKN_IaSwEjuw/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22991),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVOial4EulWkzYXBQ_hbq2TsbUiSNAczrusq3k0Z0DG7__90zHdt9lHQ4vLCYh9Ucwh2wBvWPV6x08Q8F-E1sYlvmfL-0','Friendly staff','2018-02-06 03:15:37.149000','2018-02-06 03:15:37.149000',4,'Ivan Sorto','https://lh5.googleusercontent.com/-rke6DZETEas/AAAAAAAAAAI/AAAAAAAAAAA/9D39tl_j5nk/c-rp-mo-br100/photo.jpg','8918455867446117794',9295),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVOKidSy5s1r7fSbgo8PcGvQI0FB_AFUVRUXCDGiUBgJUCTCukPwVcAa_foS-TjJkeXoHu_8i36-dVZpkEej4R-mrhwqQ','Amazing facility with friendly staff!! Dyveliz got me into see a doctor within minutes of walking through the door!','2017-03-09 19:39:51.180000','2017-03-09 19:39:51.180000',5,'Kayla Linskie','https://lh5.googleusercontent.com/-hPN9J_W1738/AAAAAAAAAAI/AAAAAAAAAAA/PDmVLC05xgE/c-rp-mo-br100/photo.jpg','16590124370714063921',4038),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVoMAiqno-fCvkDPVig2C7QfzLPkOT8jFXo9Rw2HWl6CZnOO6yJd6niifFwdA1fNcwa1SPoOqpB7ArE_rLIXej-dCRZIM',NULL,'2020-08-06 22:40:29.506000','2020-08-06 22:40:29.506000',5,'Sara Alaeinejad','https://lh4.googleusercontent.com/-NljyCPZN_oU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclx9VHtrBSZATZ9qfgrz5iUWDIRcg/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21792),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVomZlrMlF2WJzUwwiSfw6pCkP61fFK5TzG8DoKMIDkMW88HQDwHqy33R_f7desEaqhuo5UxGwJc45eFnwDeBW5V7mgLg','Everybody was great, they even spoke louder because of my hearing.','2016-12-28 04:39:21.282000','2016-12-28 04:39:21.282000',5,'DOUG GASKINS','https://lh3.googleusercontent.com/-6rADv2VXWiQ/AAAAAAAAAAI/AAAAAAAAAAA/uzt3ICUpBLE/c-rp-mo-br100/photo.jpg','3511292162159714121',7909),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVOQAhcMaFnVmWBVvqjPptd5pHad078YCXBNemf3Xy-HaHzrUiCiOZaHOitMWahirt9qsaUYIy_zsl2geUHbhCis0hKE4','Shaunda, Dr Lingan, Cody, Chelsey we’re super nice. I loved Dr Lingan. They got to me super fast! They were really friendly also. So much better than a regular ER by far!!!!','2020-06-05 19:47:45.751000','2020-06-05 19:47:45.751000',5,'Melissa Kuhn','https://lh3.googleusercontent.com/-sFGLkMj-FMU/AAAAAAAAAAI/AAAAAAAAAAA/zjqJ1Q69zVo/c-rp-mo-br100/photo.jpg','16891069708558046635',22692),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVOsIsG_p_c1HkfiQosc2r35tUrLjRkThBHJutPz6Q3-_Tj1jo3kC7k8jj6luo-Zv5TIc9WLL9E-xHvfPEEoP7w0zjKbI','I was seen quickly. Staff were all prompt and courteous. Highly recommend! Dr. Ortiz is great and everyone was so sweet. Thank you Alvean, Tricia, Jocelyn and Mike!!','2019-06-22 22:40:26.538000','2019-06-22 22:40:26.538000',5,'Amelia Titus','https://lh4.googleusercontent.com/-wsFI72AGg1w/AAAAAAAAAAI/AAAAAAAAAAA/UweYYaBC1rw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVOUlvKOywL4-kSheyTaIaUkN9gPOcYndS90zOmNRLSnqJrh-goD55V5rupOfml0nLV69k8JbNm5_MSh4rFwCkWab6P5Q','Dr. Faig, Amy, Irving, and Holly were the coolest! Very down to earth people, I trusted them all with my life!','2019-09-13 02:40:12.232000','2019-09-13 02:40:12.232000',5,'Claire Vargas','https://lh4.googleusercontent.com/-EJSVb3mWmQY/AAAAAAAAAAI/AAAAAAAAAAA/jhRxiIL_zMA/c-rp-mo-br100/photo.jpg','12541597562633926366',427),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVowYO1qPyDJTD4QNxaeClRz3OWSlOqmrQ_tTPp6fmvPbNzXDzO06__8BN-pqSY4I0NJDBbdPkuQ3Y9tx0kpSnGWlR9rM','I really like the service and knowledgeable staff','2020-01-29 11:01:14.733000','2020-01-28 22:03:20.483000',5,'khurram adam','https://lh4.googleusercontent.com/-DNtqfDdSC48/AAAAAAAAAAI/AAAAAAAAAAA/QZQPTBrcvwA/c-rp-mo-br100/photo.jpg','17394740196501090048',10239),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVOXnYHSeKnfjqCghwBai7Pdgbjxx52dTBp4T_yETMHDGk8Ym2O9nKJquTitKNEhj7lqwEqq4FW29uzQcmx6zZbcVUKJA','Come here feeling really sick. They always take care of me. I\'m grateful','2016-09-05 18:47:07.131000','2016-09-05 18:47:07.131000',5,'Ruby Alvarez','https://lh6.googleusercontent.com/-DqNRCklin6k/AAAAAAAAAAI/AAAAAAAAAAA/GmCM1-q9gww/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5207),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVozcUYHBJW1BwRp5dUjfEa2nhLIDZsu_6Ax4Cq8v-ePSUWA9ReUlOHvxDjE4YRvDJPI7uB_1bI7BtvswQ6LZkEcb519U',NULL,'2017-10-30 18:44:20.816000','2017-10-30 18:44:20.816000',5,'Lanetta Preston','https://lh4.googleusercontent.com/-pEf6YhbxOeY/AAAAAAAAAAI/AAAAAAAAAAA/PL_9S2Au4UM/c-rp-mo-br100/photo.jpg','17394740196501090048',4942),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVp-gCY5vAx7LXeQgSemva-noyyBm4cW3gUAWawqlnKCRqdbtKyl4lFtIAX6KCt0p0u-BPrSSAKP-RRTfFkZ5jbDZiMzc','Dr. Ding, Jacob, Laura, Becca, and Lorena were all super pleasant and helpful. I was in and out quickly and didn’t wait very long for anything.','2019-09-29 18:30:42.714000','2019-09-29 18:30:42.714000',5,'Samantha Beirne','https://lh4.googleusercontent.com/-dnqfjmY0hWs/AAAAAAAAAAI/AAAAAAAAAAA/uLoISSy0fYI/c-rp-mo-br100/photo.jpg','16590124370714063921',3166),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVp0dk21tiqvlyr-ywUCl0Nxw3HC6nP484H86zAYteB0tvKQGWj--LvEG6AWjFVBhWm1jr-O_QPiOwmxAIOj1WIXbuNp8','One of the best ER experience we had. The staff was friendly and very knowledgeable. Thanks to Dr Garcia, Victoria, Maya, John, and Ricardo.','2019-12-19 16:00:49.654000','2019-12-19 16:00:49.654000',5,'Quyen Nguyen','https://lh5.googleusercontent.com/-vndIGPFctCM/AAAAAAAAAAI/AAAAAAAAAAA/Y2Ddy84oTLE/c-rp-mo-br100/photo.jpg','12541597562633926366',333),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVp3dxqQYA1Ex_jknypHOZkOWsiG86iIRNMK-eDwmqXnsGl3VOUO62J9Wva-owqZdbD6FaDZt6rmEUwle8_2rLwrCldHw','The staff is great and patient. I am glad I came here for help.','2019-06-25 18:33:07.540000','2019-06-25 18:33:07.540000',4,'Vanessa Johnson','https://lh3.googleusercontent.com/-iaPaILD5V6A/AAAAAAAAAAI/AAAAAAAAAAA/c1Omvtm_O_g/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVp60vg-DIkMLq8akSrUPfq7ZOMgx-Sj9yeGTJVEa4kz7PVyLfsKIm4FA0MlaexRTSiAFpXWIOgcczNT1-9Gj_3Zw9QSM','I went into this facility and I felt like I was very important from the moment I walked in the front door. I was great with a smile from friendly registration and was immediately escorted to a room. The nursing staff was wonderful, attentive and very caring. Richard and Lisa were my nurses and took excellent care of me. The doctors were very nice as well. The Dr. that took care of me was very caring, empathetic and attentive and made sure that I was comfortable during my stay and answered all of my questions. Dr, Hannan is a wonderful doctor with an excellent bedside manner. The facility itself is beautiful and very clean. I will recommend this facility to everyone I know and I will definitely be going again if I get sick. Thank you so much for the wonderful experience and the excellent care. This goes for the entire staff. ','2015-08-07 23:36:30.945000','2015-08-07 23:36:30.945000',5,'LISA SNYDER','https://lh4.googleusercontent.com/-HKPfTC0_X-w/AAAAAAAAAAI/AAAAAAAAAAA/IIRrL0TBYY8/c-rp-mo-br100/photo.jpg','3511292162159714121',8034),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVpgOfj3S4cwUZQSpJzftq2zPfoe9a9jOeucaIEbuIciV-JPCKU7JDCTkvwzle42zRASgrPIA6Rl6ChQ-V2IDDNvBTQJE','The visit was amazing rashaad was friendly and helping the staff, Madonna, al, brown, Amelia and dr. Grinblata made me feel at home.','2020-02-15 01:52:26.664000','2020-02-15 01:52:26.664000',5,'Bezu Taddele','https://lh6.googleusercontent.com/-CfGYkDmUmIc/AAAAAAAAAAI/AAAAAAAAAAA/aar3Dv3ICkU/c-rp-mo-br100/photo.jpg','17394740196501090048',14020),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVphykqW7Mty2Ww6X0MsInG8CwwuWXhrmXd4DcJ4a_Vtoy2vm-WBtucJn-4er0nNw_HCkmqJLO_Fvye9Cy47RDl8GZLK8','I visited on a Saturday, the place was completely empty and I was seen right away. I had the early symptoms of influenza and was heading to Europe in 4 days. My GP does not work weekends and I wanted a prescription for Tamiflu, so I tried this facility. It was quick, efficient and professional. The Dr did a few minor tests which did not confirm the flu but he suspected I had a strain that he could not test for, He wrote the prescription and I was out the door within 15 minutes. The Dr, also followed up a few days later....All good until I received the bill. $1407.05....Can you believe it! $93.00/minute. Complete RIP-OFF. This will be the only and last time I visit this place unless I am dying !!!','2013-12-17 04:14:31.593000','2013-12-17 04:14:31.593000',3,'Neil McHugh','https://lh6.googleusercontent.com/-AXEVXBJ49-0/AAAAAAAAAAI/AAAAAAAAAAA/mYy7r2zdU2c/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8944),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVpOPOm_jDCDiSqCGBRjkpRqBGwnwDH4FsmfyZ9FI9lhSAvPhEFzDDlGaoQQhGLmlgnQb-8UMOQtgiYAv0nLD2zH8dWZM','Wonderful experience. First time here. Awesome facility. Special thanks to Dr. Smith, Alvean our nurse, John, Jesus and Olivia for taking such great care of my 7 year old son.','2019-07-27 19:26:25.345000','2019-07-27 19:26:25.345000',5,'Richard Ivey','https://lh6.googleusercontent.com/-bbJp5Knvwz8/AAAAAAAAAAI/AAAAAAAAAAA/LlGTYqsdf-8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVpuaMpitTbCuKhyv6ieKQ2cv3W7NS2fTd_Wbc8gf7YnoJY9u5DvIAqA5NKdipZ_AP1jCBiABEGwLLgIn2rIt40MYhX8g','Very great facility, I loved ever person that assisted me on my visit (Doctor Henderson, Nurse Sarah G., Rad Tech Fatima, ER Tech Elaine, and registration Tanisha) all very caring. This facility is better than going to a top star Hospital!!!','2019-11-22 06:03:16.666000','2019-11-22 06:03:16.666000',5,'Ollie Richardson','https://lh5.googleusercontent.com/-ML1AbheD7KU/AAAAAAAAAAI/AAAAAAAAAAA/Thx7Jn4HuqM/c-rp-mo-br100/photo.jpg','17898197009688164559',5405),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVPUcwzDo8nkozlLDPLtGXyMfF6TvlZiIat3lAMmdZ91ZE4fWa5fgkIOuJYuc2fhOHatuHsBIRbBP_-kkvKYYR-YTFM9c','Went in late at night desperate for pain relief. Even in my haze of pain, I noticed the lobby was nice and had a free coffee station. The staff was super courteous and moved quickly to help me. Very skilled too. Got an IV line put in that doctors at Seton (where I was transferred to later) all commented on how nice it was. Special shout out to nurse Katie for being so kind and helping me stay calm and comfortable. Highly recommend this place if you’re ever in urgent medical need and don’t want to wait hours in a funky ER.','2019-10-17 21:18:10.784000','2019-10-17 21:18:10.784000',5,'Rebecca Ngola','https://lh4.googleusercontent.com/-9t9K7oilHJ8/AAAAAAAAAAI/AAAAAAAAAAA/Y3CqUWEs2TY/c-rp-mo-br100/photo.jpg','16891069708558046635',4180),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVpvDayu5CH2ig6dsXoCwqUe8y_2pzuY9D1R9YJAONVL3rmsNBQN985GkrzYjoMeo1L6THB7X-HfmQkfC_LTN16UI_dWg','Clean and modern facility, friendly staff, and efficient service. Thank you!','2016-11-07 20:02:20.804000','2016-11-07 20:02:20.804000',5,'Ruth Black','https://lh5.googleusercontent.com/-pOgqWVm_3Vo/AAAAAAAAAAI/AAAAAAAAAAA/qYRlWh60rpg/c-rp-mo-br100/photo.jpg','14567670160750071148',1947),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVqBRCLlMq2AbFwNpFqyrQlXMGWk6Z55ngQlDfezLepXQLuRRXPG-7_V2sYOsbeOdzFoFVgamykR052e6m5tKoS2gBo6w','Service was beyond exceptional. All the staff members DR QURESHI, nurse Danny, Sara, sherwin, Taelma, Carly was Amazing!!!! Great service','2020-03-05 02:37:07.734000','2020-03-05 02:37:07.734000',5,'Gab','https://lh5.googleusercontent.com/-JMjb3I0Zmxo/AAAAAAAAAAI/AAAAAAAAAAA/asaB9PByV6c/c-rp-mo-br100/photo.jpg','12541597562633926366',13314),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVqeuv7pXYbrY3HSx-tpqPPRazCCckSpC71VNfMVwlE9WZCS_aUvKex1TlScfGNcRrCt87I1e9P8SMzatTOA5ENfutZzk','Great staff everyone so nice treated my burn right away thank y’all so much','2018-08-12 14:02:18.637000','2018-08-12 14:02:18.637000',5,'Lego Midgit','https://lh4.googleusercontent.com/-ORM2-mTNLhs/AAAAAAAAAAI/AAAAAAAAAAA/7zbg9FmmF2M/c-rp-mo-br100/photo.jpg','3511292162159714121',7627),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVqGc3OB5cfwAaXOnr5aE8OLBkvehkEswN3qT84zePCfWBJ5Guf5PxxClcLkUk_AXU41E3_NemCR9ZRC52y8VLambsEmQ','This is what the BEST healthcare looks and feels like!!!!!','2019-12-10 18:50:21.809000','2019-12-10 18:50:21.809000',5,'Edward Benyukhis','https://lh4.googleusercontent.com/-CLjNC5TtgUQ/AAAAAAAAAAI/AAAAAAAAAAA/gi9IAEFw4zk/c-rp-mo-br100/photo.jpg','16891069708558046635',4126),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVQHm9_gzGfazFAVhNVHtBPahJkizstY1rq8M8S_xj0xmUc0dseJa6C4NsDzH9pyPwcolsnUsZh0U1oF02Vtr3FhfaYCY','I love this doctor.....','2019-10-24 19:18:11.794000','2019-10-24 19:18:11.794000',5,'Angela Guidry','https://lh6.googleusercontent.com/-xhYy83n9wFs/AAAAAAAAAAI/AAAAAAAAAAA/F7rtu4Lo4B4/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7154),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVQka7MJir2tC78fmqlEfW6YeGnBNUrFuO4PZsJlTCQTrY7wGZQ-aBGm7R3fcN2ysAJ_cA6QjXhYAiakY7LHA5GEzUe1M','I came here after a long day at work caused a severe sprain to get much worse, and I could no longer stand the pain.\nThe staff here was incredibly kind and took my injury seriously, even though I had waited to get it treated. \nI cannot Thank Dr. Davis and the staff there on the night of my visit for their incredible attitude and care they took of me.\nI felt safe, valued, and that they genuinely cared about my well being.\n\nThe only note I would add, Please make sure the list of allergies is read before prescribing andy medications.','2019-02-11 05:47:17.247000','2019-02-11 05:47:17.247000',5,'Ann S.','https://lh6.googleusercontent.com/--F65P4P0gZk/AAAAAAAAAAI/AAAAAAAAAAA/v7LOjUpLvfg/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1389),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVqVdVmiE1_qUdLBw-X5nhEgZ9CcAnXCzOgTPjiDxB857_Vum4ndQPivjcnemygJCtDBL7pc5yttACfQs2OK1dEMtoueA','Very fun, friendly staff and Teresa is nice.','2019-07-27 23:52:14.915000','2019-07-27 23:52:14.915000',5,'Jacklyn Millan','https://lh3.googleusercontent.com/-XJuxYVLMW08/AAAAAAAAAAI/AAAAAAAAAAA/L3adA-AFfMY/c-rp-mo-br100/photo.jpg','6521947413723274945',8175),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVr5GrtT79sXAegEcnb_bWdIWxANBLaCs7s1s5USkpRYxm6zBHJtYMHZzNSRX3cLuUwoX3fK9tRL7TdRJfQxdhctzsdBg','The entire staff from Katie, Christine, Dr. Elsbacker, and Townes were incredibly helpful. Helped ease my mind in regards to aggravated symptoms I was having from the flu.','2020-01-08 12:59:23.830000','2020-01-08 12:59:23.830000',5,'Jameson2018 Rhodesian','https://lh6.googleusercontent.com/-mJQ0kk5Uf34/AAAAAAAAAAI/AAAAAAAAAAA/1T0mSopu8oc/c-rp-mo-br100/photo.jpg','16891069708558046635',9448),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVRdb7wQrlmfWQFE4PR4xY_dcG9AIt3Ik6P4JnJLyRCAduXx2Q110gLvEm70dTYHFFeu2QoNj7kP4bJIOr_lMrkmoyZPA',NULL,'2020-02-23 16:09:20.681000','2020-02-23 16:09:20.681000',5,'Michelle Marie','https://lh5.googleusercontent.com/-JI11YM0uZIk/AAAAAAAAAAI/AAAAAAAAAAA/Ai2GVQXGfsM/c-rp-mo-br100/photo.jpg','3272657195432704501',14330),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVrFnvq6thqGw-bycC5EG8n_d1I2M-wCPK6vhkJgLObWzHjxmPFMp2sGMgwaokB0IGDbI8miLLjYwMLWIr_szh2Bji2xE','Great experience made the process smooth for me while getting my lip sewed up. Kaylee was super awesome and kept my spirits up even though I now have no two front teeth. Thank y’all so much','2020-07-23 08:22:00.015000','2020-07-23 08:22:00.015000',5,'Geoff Zaidle','https://lh5.googleusercontent.com/-wTqkVZRgBV4/AAAAAAAAAAI/AAAAAAAAAAA/bu_dxICircU/c-rp-mo-br100/photo.jpg','14748677429039074158',22574),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVrhYmxb2FPDQoNFJBg3nzLYUI6pA1kHsG3R2b2o7oHk4u7eKN4Yo8aB15DXt9ekdSMWFJTy1GTGg01ogWTSn1zdPjwdw','I appreciate not waiting to be treated. Very clean facility. Excellent care. My family couldn\'t ask for better care. Thank you','2019-02-15 16:02:50.847000','2019-02-15 16:02:50.847000',5,'Shari Wisham','https://lh6.googleusercontent.com/-Yhu2OCI2ixc/AAAAAAAAAAI/AAAAAAAAAAA/daFrk_uRqn4/c-rp-mo-br100/photo.jpg','8626688543755174284',8568),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVrLWa4GRR68zT3x9yF8z3ZhIDcfqZt30C-MXyveuQSqQvNaFa2PODzC-g_io6oAD1csk-C0CBwLRXzI6HmGlRq5WxoRw','Dyveliz and Itza were very friendly! They did an amazing job with checking in my son Joseph!','2019-12-16 20:26:38.450000','2019-12-16 20:26:38.450000',5,'Mayra Brogdon','https://lh6.googleusercontent.com/-XOrIgbSb89k/AAAAAAAAAAI/AAAAAAAAAAA/3A1lvMeKtNY/c-rp-mo-br100/photo.jpg','16590124370714063921',3019),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVrs9i0fB9i9d175Zht3Dr7rah1ZSlnRdyyRslFEezyFGxACOA1p4YZ5LkdLVn_sCBHZpeNbkEiVgqEuDwnvoKqmCTv64','Dr. Kotey, Ke’Aire, Dion, Churiah, Agnes, and Josh. Great experience!','2018-08-10 09:11:09.707000','2018-08-10 09:11:09.707000',5,'Sal Pellittieri','https://lh6.googleusercontent.com/-FCgalZRlmQ4/AAAAAAAAAAI/AAAAAAAAAAA/mWCHn_fZGOA/c-rp-mo-br100/photo.jpg','3511292162159714121',7640),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVscYJXS7U1YEmaxfYTBAQFfN9Xt9YWJM0bD8Vi_j4GFG60seXFCtK5X-iR6aT2BSnb8hLF6jEmZzUWdbxxfawiL69bwg',NULL,'2018-11-30 13:49:16.534000','2018-11-30 13:49:16.534000',5,'Zypher K','https://lh6.googleusercontent.com/-1WzelWLRTaY/AAAAAAAAAAI/AAAAAAAAAAA/neFaHvNQZ1k/c-rp-mo-br100/photo.jpg','3272657195432704501',7096); INSERT INTO `review_review` VALUES ('AIe9_BFLWlqwz3qGBnCfbAsLD0lVSDKX9djLsnPcN4RLrAVTL2XEcep6USzxIjmSHaiWJvS5BC99jo8_wUsfAkA3W9OkNWr25-MCeWfSGFnLjXrEP05n3Hc','Great staff! Everyone is attentive and nice. I would recommend! Fatima did my blood work and was perfect, Alvean was my nurse and was super nice and Jesus helped me in the front and was really nice. Very fast , get in and get out!','2019-05-31 14:15:55.723000','2019-05-31 14:15:55.723000',5,'Kiara Williams','https://lh4.googleusercontent.com/-HSbfd9-qyz8/AAAAAAAAAAI/AAAAAAAAAAA/C7CyAGIoXtk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVsh29zfYtgpl65BsV8xu6WhYPsUSpaMyuraMkgPB8Ol322tAg6u_YQ-Iyq2kk01FDHi1Ji_8h0Q-jsm38kgfmU2e57mQ','Thanks Alvean & Patrica & Thuy An for the great service. Facility is clean and comfortable','2020-02-23 19:05:02.983000','2020-02-23 19:05:02.983000',5,'Kathryn Stephens','https://lh3.googleusercontent.com/-Xz6DuBz4NA4/AAAAAAAAAAI/AAAAAAAAAAA/7W-79xYiMys/c-rp-mo-br100/photo.jpg','16389487648212004696',13773),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVsi2rx8dunJBPxSoeEI6_oDqKnpeU9oLBmLFUYOpqOvqM0ZGMqnkGhQOCSaTI0u6xkUrWyeOGRujDg_P1YjEGdgghiaQ','The people there were pretty chill. It was nice and peaceful there. They helped me with my tonsils. I overall liked it :)','2019-12-29 22:55:18.505000','2019-12-29 22:55:18.505000',5,'Onionring dies in Endgame','https://lh3.googleusercontent.com/-Ix8bALLWNXI/AAAAAAAAAAI/AAAAAAAAAAA/-mkvzRU4hf0/c-rp-mo-br100/photo.jpg','8918455867446117794',9021),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVsoGxnh5UCUqxY7SSpRY0qjZs1K_WvUNem8NsAt77kyRrQ4zh9_lm_e9EQdx8vhqxCzVGWsBUgEY0yx3Uz8qrxKuEIAQ','The Whole staff is amazing.. it\'s definitely paradise.. you forget about your illness due to the up an beyond generosity and hospitality.. Thank you Thank you!!','2018-12-13 20:33:30.467000','2018-12-13 20:33:30.467000',5,'Lasundria Roberson','https://lh6.googleusercontent.com/-nnnTlE0TfdA/AAAAAAAAAAI/AAAAAAAAAAA/RHkIGzVvtYo/c-rp-mo-br100/photo.jpg','3272657195432704501',7091),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVsSiTgk5SSEYbVw_X9E1foto2eNQNAyUZQ3a2ylLLrLjVhezliq5QWshFik6UaNNFAMYImzcCpfHh52oV1GRwmaNMpxY','My experience here has been excellent. The staff including the doctor, nurses explain thoroughly everything they are doing and its purpose .','2020-01-02 04:00:59.386000','2020-01-02 04:00:59.386000',5,'Maria Gonzalez','https://lh4.googleusercontent.com/-M8Da3YTeV0I/AAAAAAAAAAI/AAAAAAAAAAA/4rACBZvXFfE/c-rp-mo-br100/photo.jpg','16590124370714063921',2993),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVsV_iHDN4wX_pyxfqmVA3u3lUYXzXrf5SFenbBAnt9sD_22RYbsvarQMkuFugM-XHRPUqhz3tw5muWHpdLevYby1PtHg','The best emergency center any body can come. I’ve been coming for over 2 years now they are so quick, fast good selected executive people like Dr Wang , Fanny, EDA , Wendy, Angela . Wonderful people professoral . This is how health care suppose to be . Guys thank you so much for taking care of me and my family .','2020-01-12 16:18:19.941000','2020-01-12 16:18:19.941000',5,'Mister Miles','https://lh6.googleusercontent.com/-wkalk0xn0gs/AAAAAAAAAAI/AAAAAAAAAAA/QJVx8flu3_8/c-rp-mo-br100/photo.jpg','17394740196501090048',14051),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVSxMAeGuf4WOe8XtblZLH0EJpYExo9Pk3lUzlJRGstm2ihWFGwI41plYDoOQSEBmR4H1LdiWTphYFgiu6npu3583TBXk','Nice and friendly staff. Would definitely recommend this to anyone who is interested in good service.','2020-02-07 15:21:48.532000','2020-02-07 15:21:48.532000',5,'Melissa Tubbs','https://lh5.googleusercontent.com/-ZJbCU0JE3L8/AAAAAAAAAAI/AAAAAAAAAAA/dq9HOw_nLPE/c-rp-mo-br100/photo.jpg','17898197009688164559',14184),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVsYiBsHPptZxogqYVwrmgzJM-La67GZ2zpYZsySvPHlyqnuame20aUla84T0q5yIX6YP1fuajFOsTihGZqgtfi4n1I_M','Very helpful and very nice thank y\'all for all the help','2019-12-14 22:23:17.253000','2019-12-14 22:23:17.253000',5,'trevor shaw','https://lh5.googleusercontent.com/-uow2vQ17xdE/AAAAAAAAAAI/AAAAAAAAAAA/_jX_fxPh0GA/c-rp-mo-br100/photo.jpg','8626688543755174284',14648),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVsZGPOyXd3s291KvzVKOmiX5aC6cxbZZzD6cHSSW5obPTYiHChPR9RzBzhh-08FjbHRvMv1_LhaWY3vtOJlCp8sYHiWs','Jessica S.','2019-12-09 16:36:50.388000','2019-12-09 16:36:50.388000',5,'Chelsi Cherry','https://lh5.googleusercontent.com/-CpJ6lQ7Y13Q/AAAAAAAAAAI/AAAAAAAAAAA/Vkz0TvfIR2Y/c-rp-mo-br100/photo.jpg','6521947413723274945',8066),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVt2gC0W7p0YxE1jdap2pweQa-s9pdK6CVYUK1kwZl4jusDubOFyl47eybWuViaLuFJYIM3Ewb573tFNLY_Jre8c0c8vQ',NULL,'2020-02-18 01:46:19.484000','2020-02-18 01:46:19.484000',5,'Lorraine Gutierrez','https://lh4.googleusercontent.com/-x198AlAQ6Cw/AAAAAAAAAAI/AAAAAAAAAAA/k-jjdA5P42w/c-rp-mo-br100/photo.jpg','14567670160750071148',13527),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVTENHAtThkizNwVrEFVTQu7u7eej3gdwRjyUtlNmr2BOvM1KOHvCLNhC1SlwWPeWNVhliyGBoS3r712H-lYoGzuHJv9E','Nurse Lucas was great,','2020-01-20 17:45:17.799000','2020-01-20 17:45:17.799000',5,'Christopher Phillips','https://lh4.googleusercontent.com/-ugqQje3CIH4/AAAAAAAAAAI/AAAAAAAAAAA/SBBEf3HL3eU/c-rp-mo-br100/photo.jpg','3272657195432704501',10002),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVTFIgxUoqbkkePnCTv4S0md-LNeeeifUcuYtwuPpGgkUlJBZeO_cukQktwZcPDf2znVp_udmf0k4GT2MFz2FZxcbIFGM','Kim and Dyveliz were so kind at the front and helpful. It made the experience that much better','2018-08-14 19:07:19.790000','2018-08-14 19:07:19.790000',5,'Audrey O\'Neal','https://lh5.googleusercontent.com/-JDHvhwdGfLs/AAAAAAAAAAI/AAAAAAAAAAA/fTFa-a7Hl5M/c-rp-mo-br100/photo.jpg','16590124370714063921',3793),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVtMm-otdoJG2dxy2WftcaLXPj5y4GlBnvE0zGEm4KUamFCN4pJiFiFCCASDnyHuZggYB7DOQBPH0N-wjn44wH471QvfI',NULL,'2019-05-25 00:12:44.038000','2019-05-25 00:12:44.038000',4,'alena madero','https://lh4.googleusercontent.com/-T6O-amfkGv4/AAAAAAAAAAI/AAAAAAAAAAA/4i364jz9FBc/c-rp-mo-br100/photo.jpg','6521947413723274945',8256),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVtMoyeD5WBzJ_eyfMjfxNyLbi4bNz8_RwKu6XBziweOYssrTvDtN6m9sVqkG9L9MF85g0fZ5qig7SsxNi7HJObhEX2XI',NULL,'2019-09-23 19:57:52.677000','2019-09-23 19:57:52.677000',5,'Cameron Eldridge','https://lh5.googleusercontent.com/-lyRtRT9_yzQ/AAAAAAAAAAI/AAAAAAAAAAA/X0KSlPLZRxE/c-rp-mo-br100/photo.jpg','16590124370714063921',3180),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVtPwmbtdyC3QA9pO0KNe-49C_7We33O0qFmVbhbfFOnbBI5r-_A3P2MGAeda277Qw22uTOgNaURlaAh0V526QWzVE7AE','During your Visit you were taken care of by: \nDR. ASHBROOKS, MD, DARRIN \nNurse: Mollie M W \nRadiology Tech: Helen M D \nFront Desk: Sergio G G','2019-07-28 00:41:51.104000','2019-07-28 00:41:51.104000',5,'Roro Butler','https://lh4.googleusercontent.com/-fzpQq-Z2vLI/AAAAAAAAAAI/AAAAAAAAAAA/E3vpZ5IWQEQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6924),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVtXBEa7QW0vswYMnuM9zXayf2sBAv3X7WLMElT_ZWBQSwoKkV-ZRUR7R3GwJYx8QVaDHE_LljnmGhQagyDQXEo-Yecsg','Thank you Nurse Nichole. I was nervous about getting my shot. She was so gentle I barely felt it. Dr. Zheng, Trisha, Shay, and Val you were all Great!! Keep up the good work😁','2020-02-16 12:58:58.265000','2020-02-16 12:58:58.265000',5,'Sibienne Watkins','https://lh6.googleusercontent.com/-i-hwELzSCYk/AAAAAAAAAAI/AAAAAAAAAAA/OZe2pC6Ybt8/c-rp-mo-br100/photo.jpg','8918455867446117794',14824),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVU4rYziW2AuINnDl-h8S7UArAoF7SrDYvim37PYOnJZpIjdg2cXRCvShOPJTV69KFsPDmSUyKcW-w6rx0164p2bHh984','Very Fast and Friendly Staffs. Dr Ybarra very good as listen to your concerns. Highly recommended to people in need. \nThank you Dr Ybarra, nurse Sarah, Rad Tech Fatima, ER tech Elaine and Registration Briseida for your wonderful service.','2019-12-26 19:04:09.165000','2019-12-26 19:04:09.165000',5,'Tommy Nguyen','https://lh5.googleusercontent.com/-6oxt5Dsk8M0/AAAAAAAAAAI/AAAAAAAAAAA/ztldVmBeew0/c-rp-mo-br100/photo.jpg','17898197009688164559',5325),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVubLV9iH_Akt7YHR394jYNZ1hGlbSJQxFSoenIdOPpr1tguVmRt6LnbySOu16HfEP2-1sEvkkMW2Z1QmlVrBZD_S__wo','I had a great experience at the Pflugerville location. Amy was terrific and very helpful. They do a great job and are very fast and efficient. I definitely recommend!','2020-07-30 16:23:29.133000','2020-07-30 16:23:29.133000',5,'Miranda Carlson','https://lh6.googleusercontent.com/-_aGpmcFvCCc/AAAAAAAAAAI/AAAAAAAAAAA/ldayoOSYM1E/c-rp-mo-br100/photo.jpg','2077061009497551125',22967),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUCkzUv642ZnHVtSLcA-eDRJ4ZMOqTx5IdcQZgsO-YvXM-EWM-AC4ooCTwns_jAiZiUWdww11reter6qryQykWQOEPYY','The staff is SO friendly!! Very kind and quick service!! Highly recommend! April and Georgia were my nurses and they were AMAZING!','2020-08-12 15:17:18.813000','2020-08-12 15:17:18.813000',5,'Shaina Grisell','https://lh3.googleusercontent.com/-f0D5GFkzalA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm0I0zTMZTDSGtpzEjvCvN0SlUNZA/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23028),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUDKyTDXPtKkgGtjqpnnPv79TRWjf1BQRNbN5MWICiH8rz35_1WHiUD7PLaui8LRSx_aIN5NnUPLHWU7RSujo0w3bk1E','Fast service , even with other patients in facility. EVERYONE was super friendly, from the front desk all the way to the dr , everyone . I sss offered , drinks , snack and even a blanket , rooms are lovely and clean with cable and comfortable beds .','2018-03-05 15:39:17.205000','2018-03-05 15:39:17.205000',5,'Zip Will','https://lh3.googleusercontent.com/-7L5B1bIJnzw/AAAAAAAAAAI/AAAAAAAAAAA/xj-_KMYAkl0/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2276),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVuF2zqtIMgi88FDutDMKv4zoWWu_f1B_pTYmHbyffZW8UpPr8OooJe7Xwu3MiwzWbG0zSp4SkLpFdvHzbnhSigUclUyk','They were absolutely wonderful. The staff was so warm and welcoming. Jani, Tricia, Jordan, and Ayesha were all so informative. I would 100% recommend to anyone seeking medical attention.','2019-10-18 19:57:47.989000','2019-10-18 19:57:47.989000',5,'Anyango','https://lh3.googleusercontent.com/-nap4FGw9ywg/AAAAAAAAAAI/AAAAAAAAAAA/n6NXxtNl0fY/c-rp-mo-br100/photo.jpg','16389487648212004696',2800),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUFN1l2XiaGOIGdJoSg3ZzfcX2vMVSyrL51n40pizDCiAWES_9R2t0sqNmtWqEpBaFlbH_PVRM6Q4qQmOEmB9-ReqyZ0',NULL,'2019-07-15 17:51:00.140000','2019-07-15 17:51:00.140000',5,'Abby Davis','https://lh3.googleusercontent.com/-fS699bNvstg/AAAAAAAAAAI/AAAAAAAAAAA/hF7sZCBxzJU/c-rp-mo-br100/photo.jpg','16590124370714063921',3295),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUi1d7bSE2zeJGHLZX3vQqsaUUoPM3iQeSNlTCkrzg2RJtiiotR2A0CgIPUbEracVL2ty6bIumX9i9bHAcMlBAlBFlkc','I visited this emergency center about 3 weeks ago and my experience was, under the circumstances, a very pleasant one. I\'m happy to know that if necessary in the future, my family and I can trust quality care from this center.','2019-04-03 18:01:12.113000','2019-04-03 18:01:12.113000',5,'Julie Keel','https://lh3.googleusercontent.com/-iPbBdUR38Oc/AAAAAAAAAAI/AAAAAAAAAAA/f-M6GstzwDc/c-rp-mo-br100/photo.jpg','8918455867446117794',9149),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVuKJXzUicNhxQkNxVOX6HMjXitJHXIBnqXDb6jTqDJZZb8LY4PDy7dPJw7yhvV_TA7G5lJPJXgeHT6Tux6k6Knhze55Y','Great fast service and very caring! Helped my son greatly when we walked in with him covered in blood and missing teeth from his bicycle accident. They treated him with so much love. Very thankful for Miss Maria, our nurses Jose and Corey. Our radiology tech Allison and of course Doctor Jones.','2019-06-07 01:34:18.996000','2019-06-07 01:34:18.996000',5,'Theresa Barrera','https://lh5.googleusercontent.com/-ZuMUHq3l4VY/AAAAAAAAAAI/AAAAAAAAAAA/ICHoU_tL1u0/c-rp-mo-br100/photo.jpg','13486358490203335051',988),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUmx5ux5APnxjssz4Oe8gCqhmMjEFDxsYxj-aJimmlu1iIyypFCSG-gbkbk4Tv8iqHP-oj9SxUz3Gz970wLf03qeR1QY','Great experience! Much better then a traditional ER. Staff was professional, informative and had a great sense of humor. Elsbecker, Adam and Aileen Chris and Kara were on point. I\'ll be back...','2019-11-04 22:15:16.005000','2019-11-04 22:15:16.005000',5,'Rod Maestas','https://lh4.googleusercontent.com/-_CxaZbuQIyM/AAAAAAAAAAI/AAAAAAAAAAA/VAe7QPVOb6Y/c-rp-mo-br100/photo.jpg','16891069708558046635',4162),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUo9rUBukjbX9RFfrw5obMMOkH4EGRynebz8aEvdbJuZJULpL_Ve-4OGjMBTF-NNkFzEYD33O0YMOPGwlnWv25adOptg','Dr.Miller is AMAZING, she was very helpful, explained everything very well. Thanks again Dr.Miller! Shell the nurse was Awesome as well, very quick and helpful. Signaturecare ROCKS, recommend to everyone. Fast service!!','2018-09-19 13:42:43.532000','2018-09-19 13:42:43.532000',5,'Brittney Lopez','https://lh3.googleusercontent.com/-rSMASyoomNE/AAAAAAAAAAI/AAAAAAAAAAA/Ujot7UNCkTw/c-rp-mo-br100/photo.jpg','16891069708558046635',4429),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUqZ7l9PnLW57EKaPca5N5a7aCI3ymePvnLZKZJtOhOYf-VjH2DZC6Y0jWzNusk6Kq5wtS2KhSZbYeerHCfE0ddkmIS0','I am really pleased to have met the wonderful doctor Ortiz as well as Jereyia in registration, Nurse Konya, and Kerry in radiology. They are very specific about what your problems and they also make sure that you are very comfortable as well. Thanks to the Signature Care Team.','2019-02-17 21:09:23.849000','2019-02-17 21:09:23.849000',5,'Linda Curry','https://lh3.googleusercontent.com/-JTJOXbwiIOs/AAAAAAAAAAI/AAAAAAAAAAA/SJK3ahvMycA/c-rp-mo-br100/photo.jpg','2694018788013845459',6182),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUs2RPHfci7QIbs5T1RVUaoUyKxaMXX9BNoLhi8I4cczYUFEPoxJnjj_UXHZc6GnQLV1riFWCk1GIWMvbHlLXzWOUXNo',NULL,'2019-11-21 15:49:24.665000','2019-11-21 15:49:24.665000',5,'tyler barcena','https://lh6.googleusercontent.com/-6CQKGPaQfrk/AAAAAAAAAAI/AAAAAAAAAAA/GlqpThU123c/c-rp-mo-br100/photo.jpg','6521947413723274945',8085),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVuuob2svYJduKmLwh8gEx2N2eCfsdyJrBVatlpu4ZYhGzSp-oUmssfHfX_TZRHUwWOb-zZt5K7KFGTg4QoKUnUDgqKGc','This was my 1st time going to Signature Care Emergency Center & this is the place I\'ll b going to from now on. As soon as we got there they took my daughter straight to the back & they started to work on her right away. The nurses were awesome & they made sure we were comfortable & had what we needed. I do not like going to the emergency rooms @ the hospitals because I feel like they don\'t do their job. I would highly recommend Signature Care to everyone. Thank you so much for the awesome hospitality! \nVeronica Herrera','2019-08-03 03:07:59.809000','2019-08-03 03:07:59.809000',5,'Veronica Herrera','https://lh5.googleusercontent.com/-CSH-gI5mLvk/AAAAAAAAAAI/AAAAAAAAAAA/Oc6gmNLChjk/c-rp-mo-br100/photo.jpg','6521947413723274945',8170),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVUX4PxsgwUwnRSRvSzs8oeoAZzushT2riUA8LYnMFaX7rA5iUM90h24KhS3GiJOToF9D650l8MNOWKziXyiytn2z9U2s','My husband and I came in he injured his hand at work on New Years Eve this was our first time being at this facility walking in we were greeted by the ladies at the front desk immediately and was able to fill out the paperwork & handle the insurance just as quick. This facility is visually nice and very clean. We did not have a long wait at all for him to be evaluated, cleaned up, stitched up, a tetanus shot administered and discharged complete with his prescription & work notice. This location is about 10 minutes from my home so pretty convenient and great service what else could you ask for? I would recommend this place to my friends & family who are close to this location for their minor emergency needs.','2019-01-02 21:28:14.525000','2019-01-02 21:28:14.525000',5,'Jennifer Jenni JJ Ba','https://lh5.googleusercontent.com/-Urr24Hi1sOA/AAAAAAAAAAI/AAAAAAAAAAA/7-gNKKRWLvs/c-rp-mo-br100/photo.jpg','8918455867446117794',9200),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVuynjFzVyQA_F6Y67hL3Gmq3nIWhdB86zkPY2kb7ImUERpRqDwbEp0ZTa0t3wgHHYKT6qcEjfkJ0aLcmcX4wx-FwT8_8','Jessica S & Jessica M - Great customer service!\nMy family and I were in and out quickly','2020-07-16 20:51:54.612000','2020-07-16 20:51:54.612000',5,'Julie Clark','https://lh5.googleusercontent.com/-rdWYzCOGnE8/AAAAAAAAAAI/AAAAAAAAAAA/VmhrdHRHG6Y/c-rp-mo-br100/photo.jpg','14748677429039074158',21753),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVV_rTWu6gNYpyiW1ebKJ2sGbpYGfiG8L8XdwDUJtks8bVVZHhCNJ2NFRf0vv2WhSTzOffqaLtJGZkRtUvEz920zYUkyY',NULL,'2020-06-20 03:28:48.788000','2020-06-20 03:28:48.788000',5,'Nicole Benedict','https://lh6.googleusercontent.com/-QwAHM7ewpzA/AAAAAAAAAAI/AAAAAAAAAAA/P33RwYj5AFE/c-rp-mo-br100/photo.jpg','3511292162159714121',21146),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVV4GReR1jCEJ_SsRT02BjOYbRqQh6LmwwVx0YoNHd9mJkJbAtOc1Mp22qB9YtyvjO07-tMlx_ioFokP5lrzzWfKmA-Ic',NULL,'2019-11-14 18:35:00.671000','2019-11-14 18:35:00.671000',5,'Prentis Tatum','https://lh3.googleusercontent.com/-yaeC9BqDWtU/AAAAAAAAAAI/AAAAAAAAAAA/K4qrSlGUVZE/c-rp-mo-br100/photo.jpg','16389487648212004696',2706),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVV6-HVdAkm2KGyyNYjD8A3_UCJNYxU5oEVxRQb_X8yiprdRP3Pnd_2YX2eHltAThGc11DW7Dg6tFQwWwhdUviK4mAbmM','From maria at the front to the er techs to dr mullins...they were all amazing!!!','2019-12-05 15:42:53.595000','2019-12-05 15:42:53.595000',5,'Plix_Exlo','https://lh4.googleusercontent.com/-w5_mu_uvdVY/AAAAAAAAAAI/AAAAAAAAAAA/f61kAFBDLO0/c-rp-mo-br100/photo.jpg','6521947413723274945',8077),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVVAbUWGlc0hEBug1_iz2MQltJNrFo0SrqCM39y77oh8H2c4SOpN_9c-E6x1J7sXK7l9pYN_Q0m5qmsj9UJYu7UxPqukY','Great service. They get you in and out. Cold drinks available as well as coffee. My son fractured his hand and they were great at giving me the results quickly. They also referred me to a orthopedic and did a follow up call with me the next day. This is my go to ER for any minor accidents .','2019-06-17 18:39:17.264000','2019-06-17 18:39:17.264000',5,'The adventures of freckle face cupcakes King','https://lh6.googleusercontent.com/-99M33eKOJyY/AAAAAAAAAAI/AAAAAAAAAAA/6v98n5VzmH0/c-rp-mo-br100/photo.jpg','8918455867446117794',9121),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVVHSYsfbfh-ja49j4acUGkiIHO-A6xQrNOgGTMh9vtfqJ1DYXUQWVBDC23hURruvc-wuNgCBjEyN1cG5ObqwZe2qH9lc','I came here in an awful amount of pain, and of course it is Thanksgiving day. Patricia, Bram, Marcus, Nikaela, and Dr O\'Malley have been really great today. It was a bit pricey for a 1 and 1/2 hour visit but my issue has been resolved.','2019-11-28 21:25:43.116000','2019-11-28 21:25:43.116000',5,'Tremelle Moore','https://lh3.googleusercontent.com/-Rolr-LG-NAY/AAAAAAAAAAI/AAAAAAAAAAA/QfxzX5x9R_A/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2610),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVvIiLNU2li8aBpoqiEvlex4Ii4KXOZDfFZ7_QfQXRQs53eOarzNoZwomZl4QpBMJTktZSSHEYD65YtQaB3V7Rtc9zX_Y','Everyone was super friendly. I went in for a Covid test and was out within 30 minutes. Highly recommend!!','2020-07-29 02:12:00.284000','2020-07-29 02:12:00.284000',5,'Isa Morales','https://lh4.googleusercontent.com/-Yo_gTaqyBG4/AAAAAAAAAAI/AAAAAAAAAAA/PAZ9QuGMTsY/c-rp-mo-br100/photo.jpg','2077061009497551125',22778),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVVL6tM11R3UwESAcnfMdDVNpNlJ2TvbUgfxS1vW6wHP4t-dsLiKt2F771LP4M_KsT2rcKwDSlUKoi1-0e2-nJx-EpFx8','Helpful and friendly staff! Dr. Chiang, Candace, Frank, Dessere made us feel welcomed!','2018-01-09 05:23:36.043000','2018-01-09 05:23:36.043000',5,'Amy 512','https://lh3.googleusercontent.com/-kwe_aTqsihI/AAAAAAAAAAI/AAAAAAAAAAA/hsKIPhFFoLw/c-rp-mo-br100/photo.jpg','16891069708558046635',4528),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVVmEWw1QpBblI3VgcepBCjTghmCbiKVtJ9RFpHDkNl4yltYkdYMPBZBLZBmZ5_5As7mMvX6xtYonApXSmncj0VrkPWiY','Very pleased with my visit at signature care! Jennifer D was very great at the front desk as well as all of the staff who helped diagnose my daughter and myself and treat our problems. Very Clean and very nice facility! Will recommend to friends and family!!\nDefinitely will come back in the future.','2019-01-19 00:24:26.404000','2019-01-19 00:24:26.404000',5,'James Diggs','https://lh4.googleusercontent.com/-s6TC7MmlawI/AAAAAAAAAAI/AAAAAAAAAAA/BViFoWryL3c/c-rp-mo-br100/photo.jpg','8626688543755174284',8584),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVVOBuPYzJeKfQjqvteL_BbELmfTMsI4iUAkfopXgzNT6XwMxhSGgW_5X0grQKGzcSeWIGEKkbSYplZjGwPU9TzN7bD4w','It was a very good experience and the staff was very nice and helpful. I will definitely come back if I feel sick again.','2020-01-18 18:24:34.680000','2020-01-18 18:24:34.680000',5,'Matthew Bohac','https://lh6.googleusercontent.com/-0zKR1-BfVI4/AAAAAAAAAAI/AAAAAAAAAAA/CknmveaJ7N8/c-rp-mo-br100/photo.jpg','16590124370714063921',10062),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVVpI073x16eLTletJLvy3WQJxjn11TpQra7lLI7GlU_4ug6C2dFf9piLUJC-LBXrCO-wJ-R3UGyQ4kkZ1ON9JieQtuq0','Thank you to an amazing team that took top notch care of my Gram! As a retired nurse she absolutely hates going to ER but you all definitely made her feel relaxed and loved. From Natasha’s helpful and welcoming attitude up front, Amy and Mike checking in on her frequently to make sure she wasn’t in pain or didn’t need anything, Thai’s helpfulness and care with her X-ray, and finally Dr Hemerka—thank you for making her feel as a VIP patient and not just another number! The entire team made her visit an amazing experience and she sang all of your praises the whole way home...keep up the amazing work!','2019-12-13 13:40:57.610000','2019-12-13 13:40:57.610000',5,'Angela Stover','https://lh3.googleusercontent.com/-BmCLwbMUDvQ/AAAAAAAAAAI/AAAAAAAAAAA/MfSA2sjCnVo/c-rp-mo-ba3-br100/photo.jpg','2694018788013845459',5989),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVVxYOzRwXddt5pPn4s8hq3kRx5rLayIMj04FQU3J83cKwiI13mCtzybn52i__aLIWDEuS5N8M84FfjdBnSXSoiEYRzck','Staff was wonderful. Everyone was extremely friendly, and they even had a little fridge with snacks and drinks for the patients. Quick and easy, very kind. Wonderful place.','2016-11-28 19:17:23.328000','2016-11-28 19:17:23.328000',5,'Cassandra Dodson','https://lh4.googleusercontent.com/-JqyAlVrNtUU/AAAAAAAAAAI/AAAAAAAAAAA/BawVUAylhGk/c-rp-mo-br100/photo.jpg','17394740196501090048',5158),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVvYdkGkXuUKrw434No6P-GJbxoV5rRUjljRUsWK9THOdEMq2N6ivma6I8kAD2asn7zPIfhwtA12BoT3Q_63Qi7cKK10Q','Dr.ibarra, Nurse Irving/ Kelly, Tech Thelma and the ct/xr Tino where sooo awesome they made the time spent go by fast and they always was checking in just to make sure I was ok','2019-12-30 00:44:36.979000','2019-12-30 00:44:36.979000',5,'Adreanna Hill','https://lh4.googleusercontent.com/-_XKJAcJqIjA/AAAAAAAAAAI/AAAAAAAAAAA/N3hhZYyMM_4/c-rp-mo-br100/photo.jpg','12541597562633926366',287),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVVZkl3IgcaKr3ty7J0cJDyb3OYAhqH57dt2ax5sVHIPwjLW6JW95664SFxps2-10KD2-QSoHsoMetqgf4Em7YeVK4HAE','I\'ve visited this location twice. They are so incredibly efficient. I\'ve never waited more than ten minutes to be seen. The staff is friendly. I recommend this ER to everyone!','2019-06-17 00:05:04.857000','2019-06-17 00:05:04.857000',5,'Cheeky V','https://lh4.googleusercontent.com/-zfOw1_sxVFw/AAAAAAAAAAI/AAAAAAAAAAA/VVpEoG6KhNA/c-rp-mo-br100/photo.jpg','14567670160750071148',1301),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVW3-br6W1ouBLISe1CTBV6zkETeJHfDnPKWUheD20YVEieAYFBCqWXEOX6Kf-sAIA0SU3xNtNpEiwbDQG-pN8Gat96ck','Everyone was very nice and they take great care of you. They also have great snacks for the people in the waiting area!! :)','2019-09-21 12:27:03.292000','2019-09-21 12:27:03.292000',5,'Grace Henze','https://lh4.googleusercontent.com/-mBj-QMiewWg/AAAAAAAAAAI/AAAAAAAAAAA/9vI9rvFBKMI/c-rp-mo-br100/photo.jpg','16590124370714063921',3188),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVWanWKRRDmVQzCYR6Ai5Ukflm5K56Y9jn3MyUoonMmhLthPLiBdn8RW_0OH3XTljWx27HpXxHPqobE8HvVNtYkL7qU-U','Nobody ever wants to visit the ER however if you need to go and have a choice of which one to go to then this is the place. From the reception to medical professionals in this facilty I have nothing but great things to say. They were all very thorough caring and listened. They were able to diagnose the problem treat and provide overnight comfort and care. I pray for everyones wellness but in an emergency I highly recommend this place.','2018-11-27 23:42:14.607000','2018-11-27 23:42:14.607000',5,'David Steadman','https://lh6.googleusercontent.com/-3EYPHKOE5Zc/AAAAAAAAAAI/AAAAAAAAAAA/KcxB5rreYRM/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',589),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVwBxNhV20wO8CozFxrh1dMLoQ_QMQFShtlaxWpXZO9aGC76e0DJWTV6X5OeDlZ4E4HG5ulNvMLstiBtWM727-QeH6MIk','The place is clean and everyone is nice except the doctor. I went out of my room to ask for a blanket. Dr. Zheng just acknowledged and was still sitting at her desk doing her thing. Then Guess ( or Guss) passed by and asked me whether I needed help. He got me a blanket immediately. The doctor was very arrogant and made me feel she was un approachable. I would still go to the facility if I ever needed care, but hopefully will meet a nicer doctor.','2018-11-05 05:57:53.299000','2018-11-05 05:57:53.299000',3,'Gigi Vanguard','https://lh6.googleusercontent.com/-B-h4AJShRpo/AAAAAAAAAAI/AAAAAAAAAAA/wQa1AS9nSxo/c-rp-mo-br100/photo.jpg','8918455867446117794',9220),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVwCVFkQys0s_tFLFEAi1FVaUGwvfg4vawNMpRfPwYtRalaVUQmcbG7P4FTuWG9hRmyboyMcfaBGcx2xUAh51ACkUSqm0','The staff was very friendly and welcoming from the time I walked in until the time I walked out! Thanks Lucas(RN), Kim(Regis.) and Sherri(RT) for taking care of me in my time of need! You guys ROCK!!','2019-08-20 23:59:15.686000','2019-08-20 23:59:15.686000',5,'TOYA SHAW','https://lh4.googleusercontent.com/-VoflDcgkkyg/AAAAAAAAAAI/AAAAAAAAAAA/kLG5BT3tVwA/c-rp-mo-br100/photo.jpg','3272657195432704501',6907),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVwDgQh6iS4ksxe9skEPlAH5lu5wArNwKny0kj2rJjVBvQOpi8AGIkRLkwDeNdhC-bqyxVnA2KIZVpDz975SKtn6Jh2kg','Lisa H and Leo are amazing.','2019-10-07 13:54:25.123000','2019-10-07 13:54:25.123000',5,'Anthony Parker','https://lh6.googleusercontent.com/-YGUDEwMuA28/AAAAAAAAAAI/AAAAAAAAAAA/Fy5swbonSBA/c-rp-mo-br100/photo.jpg','13486358490203335051',790),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVWGdfYUiJsyqbr33dyul6W8qXMqKu8kxJQkzDHAt7i0JYegBGSOucLoLhi08KWmCtYqmJwxMBL1U776epN7OwARFniCo','quick and pleasant. normally I wait to the last minute to see a doctor but my staph infection on leg needed treatment before a trip. Thank you Akunyu, Agnes, Joey, Lisa, and Sindi at signature care. ','2017-05-19 07:05:36.042000','2017-05-19 07:05:36.042000',5,'Marcos Ruiz','https://lh3.googleusercontent.com/-vmaPxUpbrrI/AAAAAAAAAAI/AAAAAAAAAAA/KyoZLZc6Zzo/c-rp-mo-br100/photo.jpg','3511292162159714121',7820),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVWgFkyNdIBr_ALb5Hw8Euhj6sIu4fDRw_EnrdonTFQdtFTsOZaTQLlJ9vadv0XQ0Izw2otuXoZfo5GJGbUb7BVqIDY2c','Staff was really wonderful & attentive to my care of needs today .(Patricia , Alvean, Thuy An ) would recommend coming here for more future visits.','2020-02-23 20:45:42.844000','2020-02-23 20:45:42.844000',5,'antho green','https://lh5.googleusercontent.com/-XH8ipz6ybTg/AAAAAAAAAAI/AAAAAAAAAAA/UKC79y_UgmA/c-rp-mo-br100/photo.jpg','16389487648212004696',13768),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVWIpPCrhjGX5WGGbkl2df-f3S2UjzTSuyO9P6T5FxCuIWAxSJVFdu1jk1ErnS49IgRYuUgVpoKkL_3OHwWm7rY31Gipk','Great quick service. Jessica S, and some other guys helped me while waiting for my COVID-19 results.','2020-07-20 16:02:10.634000','2020-07-20 16:02:10.634000',5,'Hector Castellano','https://lh5.googleusercontent.com/-HtWDH6heKAw/AAAAAAAAAAI/AAAAAAAAAAA/8DpHMhZEKIU/c-rp-mo-br100/photo.jpg','14748677429039074158',21665),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVwMZSXV0TZMWxw1ceEKM5meuXZ6roCDUOP_jE9PY79gEHvt_QQTYuaiRGhwBSZzc2kjSarWlm1ThwwpAQIl2NcPOUPmg','Staff was friendly and did a great job of making me feel safe on my visit. They did a great job of explaining everything that was happening as far as tests and treatments they were giving me. They also gave me some very useful information regarding what they found. They also did a great job of listening to me and my concerns.','2020-07-20 13:37:29.509000','2020-07-20 13:37:29.509000',5,'Michael Ramirez','https://lh4.googleusercontent.com/-dQpt1SWhGI8/AAAAAAAAAAI/AAAAAAAAAAA/cGGM5ZVcNM4/c-rp-mo-br100/photo.jpg','14748677429039074158',21677),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVwPIkzg70cBfpIpGC9Vhh9WCyRhI5kVVsXxSWQ6iwZvHyiWFCTJLWq_ir1YiZ9F5N_tnrdCWFA-Du1teWPwBCmaW74g8','Dr. Harjai, Lindsay, Gabe, Cameron, and , Becca were all fast and helpful','2019-07-10 06:02:52.136000','2019-07-10 06:02:52.136000',5,'J Smith','https://lh5.googleusercontent.com/-BRxwTo0Q4R4/AAAAAAAAAAI/AAAAAAAAAAA/x0Er25BrksQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3304),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVWpLkOmKv2CjyXQHQYwmekRXXntWfiGMpBbfbnGLWhjNf8SElGcFr_Tj1uGuyJ8VQTf8dt3PqNpydeQYvacf44xYk9fw','This place is so amazing. The staff was so comforting, sweet, professional and friendly. I would definitely recommend them. Also so clean everywhere! I was taken back with in 15 minutes of arriving. Thank you Nurse Bass and Dr. G for making me feel so comfortable.','2016-12-27 02:47:15.568000','2016-12-27 02:47:15.568000',5,'Teresa slaughter','https://lh3.googleusercontent.com/-0VNnXRdLLzo/AAAAAAAAAAI/AAAAAAAAAAA/oAIIm-M0m_I/c-rp-mo-br100/photo.jpg','14567670160750071148',1928),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVwQFUC3OmkBogZHY8wgmJjfLzf6HA-iGg0Xc6_416NPL19f9_5kqRqD6CL1J9qQyArN3l26Sfi4cMK05DjJaoTeazWdI','The best ER center around, Anthony,RN was extremely helpful and informative. They made everything quick and as painless as possible. Will definitely be back here for any emergency needs!','2019-03-29 22:35:59.437000','2019-03-29 22:35:59.437000',5,'Amanda Hawkins','https://lh5.googleusercontent.com/-oB6Iw_fY8cg/AAAAAAAAAAI/AAAAAAAAAAA/VOU8V-eXOd8/c-rp-mo-br100/photo.jpg','16590124370714063921',3476),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVwrVmlXlZTZXtPoPBqY2Y-MgzXm6rw0cwwU7KDr0GiW_5d5S_p-hdpjW2ZWNWYSZH6s6bxE4NU1cYo7s_Xbv4vmQgntw','Thank you guys for making the whole Covid-19 testing experience comfortable and informative from the start to the finish... especially while dealing with Jessica S... Very nice person.. and overall helped make the whole experience that much better ... Thank you SignatureCare Emergency Center!!','2020-07-16 18:37:10.147000','2020-07-16 18:37:10.147000',5,'Micaela Sampang','https://lh4.googleusercontent.com/-vaMUJBw1AkM/AAAAAAAAAAI/AAAAAAAAAAA/pCSZOI5HXjw/c-rp-mo-br100/photo.jpg','14748677429039074158',21755),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVwxLcwrdxldZgh17qpF35AUCfOcHt_M5ASe1XU62l7Gotl6MQmqVy58W-scmr_YafB5yGOjT47qqxwjcby-BqiyczcnU','Great!','2020-01-27 17:48:32.327000','2020-01-27 17:48:32.327000',4,'Jonathan Baron','https://lh3.googleusercontent.com/-_R415Dha7Y4/AAAAAAAAAAI/AAAAAAAAAAA/nNrQBNtxq6Y/c-rp-mo-br100/photo.jpg','8679688254631342173',10328),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVX-FDyb1IM7FBq7vptmSelic98NF9LUt40tj-nZngck4nTZFHSfZ3UQYvRqK13PiqeL1swAUYN8qUPCmeVf3ZUcg_L8k','quick and handled my illness correctly','2017-02-12 23:07:22.786000','2017-02-12 23:07:22.786000',5,'Nicholas DiCenso','https://lh4.googleusercontent.com/-VphWB2-5hHU/AAAAAAAAAAI/AAAAAAAAAAA/sLobB22c1jw/c-rp-mo-br100/photo.jpg','14904078213800803294',2412),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVx2sdzXKjZzhcG1HJYiVbb3bIqtFLW5bkTlHZjVx5YujtHwumBq43PUOlF7g7SqGsYb6EpaD8MeAQ6uwo6SmvZqIr7aQ','Great care and very clean and friendly staff!','2019-05-21 02:58:53.735000','2019-05-21 02:58:53.735000',5,'Sonja S Ikeler','https://lh5.googleusercontent.com/-kpiW0VUlq5w/AAAAAAAAAAI/AAAAAAAAAAA/PhoOzcrHWI8/c-rp-mo-br100/photo.jpg','6521947413723274945',8266),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVx4aY2VJIXjZ84RPgMXrAwgsmTxwrJRTSHvt2fI8PBdlcjKwDsv19FAJnM74QWNMUfHLrUUE5GpkNihVp9ElamCQT6g0','Unless it’s totally out of my control, I’ll never seek emergency medical care at a hospital emergency room again. SignatureCare Emergency Centers rock!\nIn and out, full service, real doctors and caring staff. No waiting! X-ray, MRI, surgical abilities, child birth, heart attack, stroke...\n\nWHY WAIT IN A CROWDED HOSPITAL WAITING ROOM???','2017-12-09 04:59:34.430000','2017-12-09 04:59:34.430000',5,'keith hollis','https://lh4.googleusercontent.com/-S9Scr-FolPU/AAAAAAAAAAI/AAAAAAAAAAA/8VvTGrxqtLk/c-rp-mo-br100/photo.jpg','14567670160750071148',1719),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVXAPY1_vM4yJxLHgnyaRdDKY1IqD5pXuF3W8aBqa1j5_6x_EkjcmcNenv2tCtCaJKbm_vfCo-g-12E6I8ytw5ClYOxPU','Brenda was front seat person she greeted us with a smile and made the check in process quick and easy. I was escorted to a comfortable room in the back where I waited for my husband there was refreshment and a pleasant place to wait. Over all our visit was quick and very welcoming by all of the staff. Olivia was real nice and attentive. Thanks Signature Care Staff.','2019-07-07 18:04:48.448000','2019-07-07 18:04:48.448000',5,'Tena Hicks','https://lh4.googleusercontent.com/-5QpygGq8M9w/AAAAAAAAAAI/AAAAAAAAAAA/Nb3iC46XpkE/c-rp-mo-br100/photo.jpg','3511292162159714121',7264),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxbgaBAFe47g1rH072b45sY8kfQt7vZ-Mi_CanfOfM6VbM-8JqDwS6KBEE5PI0zv_yWl7sF6BA34GdLW8YsGSiGCbQis','Very nice and efficient staff!','2020-08-02 19:05:27.366000','2020-08-02 19:05:27.366000',5,'Mark Thompson','https://lh5.googleusercontent.com/-I9qBF2dEZqI/AAAAAAAAAAI/AAAAAAAAAAA/hBssuYhQzwY/c-rp-mo-br100/photo.jpg','2077061009497551125',22974),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxDl9CO4ZGzJlMWFVxyGDr7DEOoUsjnY3M6DOJkw3WQbR6jB7zPEh0i3myPMlR8qXJILxglQkoXbnaLxb9zhMZZkxrTQ','Everyone was very friendly from the front desk, nurse taking my vitals and the doctor who came to see me. My visit was quick and they listened and treated me with care. Definitely a plus!!','2020-07-08 00:15:43.870000','2020-07-08 00:15:43.870000',5,'Michelle Buchanan','https://lh5.googleusercontent.com/-drd7BPlt0uQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmDt7-UdtV6_djtL4BbVlUUUHtWKA/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21434),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVXfDXNAjtnJZXYHfxgu_z5ve1jnVfvBSA--wVS55-o8EijsJcD5FqApyY7Z62yocvBjE90One0lZnsST7Q1z4KWVBLig','Thanks to Dr Henderson, Alvean and Mr Marcus\nMy daughter had a very healthy day today..thank you guy at singnatureCare emergency center..','2019-03-29 17:29:09.201000','2019-03-29 17:29:09.201000',5,'Ronald Winston','https://lh6.googleusercontent.com/-xF99ZgnCaR4/AAAAAAAAAAI/AAAAAAAAAAA/OPpdp997jSY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVXfn42r02l7krPkYvPG5ckuB-_sOZGc0clGQZncHL5oI61WQvR_2upwNNl5XSHGK2Wfm5PiYSVC89k694lFbX5v1bQ3E','Hello folk! I was on a trip to Houston for the super bowl. Got sick! :(\nBut looked up and went to Signature Care, and their staff was incredible!!! Mercy at the front desk was awesome!!! She took care of me right away and the doctor and nurses, were great as well. So I highly recommend this clinic for you\'re under the weather!!!','2017-02-04 15:31:39.274000','2017-02-04 15:31:39.274000',5,'DJay Campbell','https://lh4.googleusercontent.com/-GJ1-eYWYpDk/AAAAAAAAAAI/AAAAAAAAAAA/zMN0uLebJjo/c-rp-mo-br100/photo.jpg','3511292162159714121',7885),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxGprbxYsPTp5_pLaOcVLV07q3sO-m4a2ffAw7CnWEw7UdBt4FDaTh51rEwGkAUqh2P1l_zCH-QD0TlNm_rchr1a8zs4','To say this place is friendly is an understatement. They where not only professional they where concerned as much as me. I took my mom here because she could not hold food down for three day. I came inside in a panic because at this point she was throwing up. I was freaking out and despite my shortness and tears the receptionist was still a sweetheart. Jasmine again I am sorry for freaking out on u. Then we where meet by a Mr. Marcus. He was so great. At this point it was fighting back tears and unable to set still. He calmed me down and informed me the will do all they could to make sure my mom will be ok. He obviously loves his job because in the mist of my panic he remain calm and even managed to lighten my spirit. He was super attentive to my moms needs. Jani the nurse was really nice a super sweet. She keep on my mom regularly. Dr. O\'Malley was great he made sure to check everything. He even found a great surgical doctor to send her to. He let me know everything that was going on. This place really cares and I recommend them highly. Thanks for taking care of my mom.','2019-06-18 23:17:19.673000','2019-06-18 23:17:19.673000',5,'Cheryl Williams','https://lh6.googleusercontent.com/-Ub7hi-IxHVc/AAAAAAAAAAI/AAAAAAAAAAA/G76RHUQ2ZRw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVXHXWn6Bs6fiX_R31VOGuA9gPBCT6lc3tjXaRlpXOql3eYje_99z-asjI6WH2czDc_Y_LuhhnyhS7c6GvCTQvGw_jLuk','The facility was professional, courteous and fast. The wait time was less than 10 minutes from in the door until I actually saw a doctor. The cost was very fair as well. I would recommend this facility!','2019-12-24 19:13:57.875000','2019-12-24 19:13:57.875000',5,'Ondrea Pasley','https://lh3.googleusercontent.com/-4uhDdinGhrw/AAAAAAAAAAI/AAAAAAAAAAA/B4r_kF0yNoU/c-rp-mo-br100/photo.jpg','16590124370714063921',3008),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxjZliXLWW85lmibBmbamSYM3beIO2SRDx7-QI9SpL4hTZrC9I1ZFxN7EbuIIFCawbk5R3qUK2tABL01A3X3UZzPzU0s','It was a very good experience!!! We had the best nurse ever Shawn K. He was so helpful and registration was very polite Elisa T and Tracye D.!! The ER Tech was awesome and helpful as well as Dr Hehman was absolutely the fun and great doctor!! You guys rock!! Thanks a bunches!!!','2020-08-12 03:59:02.034000','2020-08-12 03:59:02.034000',5,'IDontWanna BeLoved','https://lh3.googleusercontent.com/a-/AOh14Giea-VpKvh7NOxS-ampXE7EftK2l_2PWH7d5jMvcw=c0x00000000-cc-rp','8918455867446117794',23086),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxKxfBqUU3OVQ7Qdq3YfLYuKwMcxxo6TIjNOpqIUMWEtAW_5f19A5O7ShOJJPXxdEI02GUXNU55iHqEfpytKGAUMCUFU',NULL,'2017-04-04 15:58:50.415000','2017-04-04 15:58:50.415000',5,'Leah Whitney','https://lh4.googleusercontent.com/-sJX6zS5s0Sk/AAAAAAAAAAI/AAAAAAAAAAA/TBsmpnQaPCA/c-rp-mo-br100/photo.jpg','14567670160750071148',1856),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxMffHQTlYFiLIGddgRR8dXgMKloecPMtdP91rxKKysq4wlmqiTN9Zoq4m6nFptks0xU4We8yT1tVJaxEcUwEjFJeRKc','Dr. Kotey, my nurses Gina and Cris, my techs Anastasia and Dion were all so kind and helpful! \nEven Keaire with registration was helpful! \nThey were able to assist me and get me feeling better within 24hours!','2019-06-22 12:25:35.221000','2019-06-22 12:25:35.221000',5,'Shelby Smith','https://lh6.googleusercontent.com/-KbEGhBiwesA/AAAAAAAAAAI/AAAAAAAAAAA/p2ifzhlZenw/c-rp-mo-br100/photo.jpg','3511292162159714121',7291),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVXNtRAvr1cL29ugf_E-gDKZScf49Mf8GMZQRXWRTKK18SFbmOzvm1FUG69cTibH6sIJkSt_SlZ9_RGQF1jFdhjKbjTng','Very quick service.','2020-07-19 15:55:16.489000','2020-07-19 15:55:16.489000',5,'Gino Del Ponte','https://lh6.googleusercontent.com/-xMBtjzBAmN0/AAAAAAAAAAI/AAAAAAAAAAA/LncnuGOVhpQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21716),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxNW4hmY8sSNmvO4Uw3lPNLTSkmcCOOIW_qSqG8jGIOHMGkEyCkIFd_tj4hfZWJ2IbeYtsJTheUbhYYkqqIloMghRdyE','Great staff and facility. Ashley Burton at the front desk was extremely friendly and got us checked in very fast!','2019-02-28 21:32:05.741000','2019-02-28 21:32:05.741000',5,'Jamie Payne','https://lh6.googleusercontent.com/-4njVW8JPN6Y/AAAAAAAAAAI/AAAAAAAAAAA/9xhNDtv0WcY/c-rp-mo-br100/photo.jpg','8626688543755174284',8545),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVXR2taW1c_4NCKMklD7y5g8DS50g4pMqwmc4zTgGMtahoxzf_9iqrvtOSdEcRpUZmigBh6WQ1b7CRUP8EQykDwloZkvE',NULL,'2017-05-18 12:30:14.549000','2017-05-18 12:30:14.549000',5,'Gabby Fraga','https://lh5.googleusercontent.com/-m4smb9Pd1pU/AAAAAAAAAAI/AAAAAAAAAAA/IuVITk67zDk/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7822),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVXSrA4c8SplQ8y2gv_bQiieD6zORbDVbdhVgdx2vwwzk13c6zwKSNqzUvyhEoGYBTwsuc5g7Dr4BOFFwfwuNV4Pgi6os',NULL,'2016-05-05 05:31:53.780000','2016-05-05 05:31:53.780000',5,'Pooja Chopra','https://lh4.googleusercontent.com/-g9BKaGM_WTE/AAAAAAAAAAI/AAAAAAAAAAA/votb1C1uubU/c-rp-mo-br100/photo.jpg','3511292162159714121',8008),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxyP8wkrzWN8_zlvet-_7jVWc3gaJ3GoZJbHVveAmrdm3pjjRz_gmO1-4Dft8-kuDo9gZ0Xg24gCiHlpRsvmLfkjtO1Y','I had a wonderful experience at Signature Care Emergency Center. We were greeted immediately by receptionist, less than 5 minute wait time and Dr. Braun, nurses Melissa and Leah, and techs took wonderful care of my daughter and husband. Yes I had 2 family members in the ER at one time. The facility was clean and all their tests results were reported to me in a timely manner. I would DEFINITELY recommend this ER to anyone needing emergency care.','2016-03-18 13:47:03.841000','2016-03-18 13:47:03.841000',5,'Kathy Froehlich','https://lh3.googleusercontent.com/-7WakEhUFAKA/AAAAAAAAAAI/AAAAAAAAAAA/gOCgFgxEsjU/c-rp-mo-br100/photo.jpg','14567670160750071148',2044),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVxYuKAiykWbdtacypNIiNlR5kXaDIkXXGWUW1cMMo_oFqS-Pz8x3LQOAYma6VthL-_RgfVZnKiR0kFrAHXPSL5ypHG5g','Emergency care was excellent from Dr.Patel and nurse Alvean.Spot on performance and great knowledge on how to take care of symptoms. Thank you for your excellent work.','2019-08-07 15:46:14.885000','2019-08-07 15:46:14.885000',4,'Brianna Ceasar','https://lh6.googleusercontent.com/-Q07IaTzgiNs/AAAAAAAAAAI/AAAAAAAAAAA/KF0lHHWw_EI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVy0BwTrYMRjaI4mthysXO13mohSDCcKitEaRY3AfD4QxDTSXnMaGoCb90znrlZynHhjc-CJRe9B0iy2IBVeooUwylrT0','Best staff all around!!! Thank you everyone for always making us feel so comfortable and taking care of my entire family!!!','2018-10-13 00:54:51.494000','2018-10-13 00:54:51.494000',5,'Ivan Longoria','https://lh3.googleusercontent.com/-C-x6vFYNeDA/AAAAAAAAAAI/AAAAAAAAAAA/I7YnHTuKNHE/c-rp-mo-br100/photo.jpg','14904078213800803294',2205),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVy1teld9ju9GFBRgFlj_Ta08EtiZxFCr2jGJdRSD95-4VedsE-32mckpKSPrU8wOBqqgeuic7BUOIlfGaH8wY4_9eoHY','Signature Care did an amazing job caring for my very scared 4 yr old. The staff was able to put her at ease very quickly. Christina RN was cheerful, kind and even allowed my daughter to participate in her care. The xray tech, Townsend, had my child excited about riding in a wheelchair and was extremely patient while taking multiple xrays with a wiggly kid. Above all, Dr deWaal was incredible! He spoke with me at length regarding treatment options and knew just how to communicate with my daughter. He managed to get a few giggles out of her. In fact, she did not want to leave once we were discharged. I can\'t thank you enough!','2018-01-26 23:57:58.946000','2018-01-26 23:57:58.946000',5,'Vanessa Geck','https://lh5.googleusercontent.com/-jbnSz52nw4Q/AAAAAAAAAAI/AAAAAAAAAAA/1-lvQRUSuak/c-rp-mo-br100/photo.jpg','16891069708558046635',4521),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVY5BLsMAtIgQGr3H5wDl20h_vea8R7RU1PqXxDSclwC9UGYWfxf4sUuKgB9L-HbToBLcYcNDMptIyaLDK-MZdveT8PSE','Highly recommend! Staff was a pleasure to deal with and made the whole experience easy and as pleasant as a trip to the ER can be! Clean building, quick service, and excellent overall.','2017-11-02 15:10:22.995000','2017-11-02 15:10:22.995000',5,'Bianca Vance','https://lh6.googleusercontent.com/-emdcwd40Fww/AAAAAAAAAAI/AAAAAAAAAAA/GP59SBt_3o8/c-rp-mo-br100/photo.jpg','14567670160750071148',1736),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVyC_4Ho4spASZBCDhCU_DkIaVC6nLZchxUD9GaZrOBrXrzfCKAhDJaO96raTx5lw421ls8RegnHaUY3C1QA8QUIdoZ5M',NULL,'2019-06-21 15:57:06.408000','2019-06-21 15:57:06.408000',5,'Lori Ochoa','https://lh3.googleusercontent.com/-y0pMY7Ii1ZA/AAAAAAAAAAI/AAAAAAAAAAA/ifsMcgT4SRk/c-rp-mo-br100/photo.jpg','13486358490203335051',943),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVyFLKWRisxxnTbZtWAoy96WbmpUwNxzUOAg0-KXtuud0G68hHIgO9CWEK50FHlHkJH2Ns9Xow903kr9woO0yUoYBVFCU','This place is a fantastic emergency care center. Warm and friendly staff. Awesome doctors ready to help and at your service in less than a second your cared for as soon as you walk in.! Thanks signaturecare center','2016-12-05 04:42:39.067000','2016-12-05 04:42:39.067000',5,'Johanna Caldwell','https://lh5.googleusercontent.com/-atG4rPipR_M/AAAAAAAAAAI/AAAAAAAAAAA/PQ36IMDfMP4/c-rp-mo-br100/photo.jpg','14567670160750071148',1937),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVyMLMwGLiXfEE_jtdgRxyWXrQyqGQEAXWIP6gajh-k32VREuhhl5sC_YffC-Z8RAZwtWpqyr3Q2fjw2le2bGMzwWmVV0','Great hospital, Dr. Straface is amazing and helpful when you feel like crud!','2020-07-21 04:26:18.714000','2020-07-21 04:26:18.714000',5,'Megan K','https://lh3.googleusercontent.com/-MPTAHwGvXOw/AAAAAAAAAAI/AAAAAAAAAAA/y807ncthf4o/c-rp-mo-br100/photo.jpg','14748677429039074158',21647),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVyPi634MRWTcmzn1MhwW48debhGmXQgcSHUa8H3iEkm7A_1avTkSJTu8SoP-jPy2LLJu6xdwiDHof0VhQaDaHzGAJvcQ','Thanks to everyone for their care. Thanks to Tanishia and Susan for your great help. Dr Pham you’re great!','2019-11-06 04:52:47.288000','2019-11-06 04:52:47.288000',5,'Sherry Myles','https://lh4.googleusercontent.com/-gaWQq6u4tTk/AAAAAAAAAAI/AAAAAAAAAAA/uFlv5a8aXx4/c-rp-mo-br100/photo.jpg','17898197009688164559',5462),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVYzaiD-VC4stNTj364OOzAkJiKZ3BjJR8B10MaWjxFX9XpYXz1IuV3LfUuUeEh6R3ndbWvUbf8TZ-CXE-zCZMfwVpYG4','My nurse Kat S. was amazing. She checked on me regularly and was there when I needed her. She made sure that I was taken care of and her personality made me more comfortable than I have been at other ers. Joshua in radiology was awesome. He made me feel comfortable and the experience was not stressful at all. He made sure I was taken care of and his personality was very calming. Deanna was kind and also made me feel less stressed which is not usually the case with other er registration personnel. Dr Mauldin explained everything in terms I could understand and when I got upset about what I was going through he showed compassion and calmed me down. That is also unusual for me at other ers. No wait time and great people who are here to help you. What more could you want. I would recommend signature care to everyone I know.','2019-06-13 06:00:48.040000','2019-06-13 06:00:48.040000',5,'Shelly Hensley','https://lh4.googleusercontent.com/-mRIrxP5ntS0/AAAAAAAAAAI/AAAAAAAAAAA/N--n-Ym_sS8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZ3YbCe3UiI3qBTPwQpw1KeDnM66R3YKtpSAWywk_RaXxSF3NjK1utPgUutK1RWc8i_wl3aBookfMdtQUZxiJPb00Tzc',NULL,'2019-06-30 22:21:09.484000','2019-06-30 22:21:09.484000',5,'Kendall Stewart','https://lh4.googleusercontent.com/-gRqc9edYMaU/AAAAAAAAAAI/AAAAAAAAAAA/t5nEY8o6u1s/c-rp-mo-br100/photo.jpg','16590124370714063921',3327),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZ7DAefXa7kfV0L1Hg9rIjLBdq8UwuWydqI8uZC9PTWbbdoUfknLQcSTK7t5HQBb2WhYZmWAmrM_BoBlYDe2nGRH6a3U','Absolutely love the energy between the employees.\nDr.O’Malley\nNikaela R -nurse\nJessica M - Radiology \nLusia R - Registration','2019-04-16 02:44:59.490000','2019-04-16 02:44:59.490000',5,'Dewayne Townsend Jr. ひ','https://lh4.googleusercontent.com/-Wm4h3cSdBtA/AAAAAAAAAAI/AAAAAAAAAAA/jwI-dNRhLGg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVzcesJm89E0pxCXDdUh1BrfWqo7TIbEgIvCF7STQNt44Ql-DgHOP-o8lY28aKZ0_LOK9uGYye6Un7NZ9J_O1JUmEeZQA','I brought my boyfriend here with extreme abdominal pain, and he was seen immediately. His nurse, Alvean, was kind, considerate, and thorough, and Dr. Pham with his excellent bedside manner took the time to thoroughly explain everything and answer all our questions. My boyfriend got excellent care here without delays or long waits or a loud, busy environment. Coming here was so much better than a standard emergency room, and we will use again if we have future need.','2019-05-15 15:35:32.920000','2019-05-15 15:35:32.920000',5,'Susan Thrash','https://lh3.googleusercontent.com/-kVJuLXpByjA/AAAAAAAAAAI/AAAAAAAAAAA/j6L52xwxwok/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZdqRl5HJ8iVtEUJmL_JvwL7SNaKhfFg8_pvta_W3pdlQYGqpxL_bvnfCZ5Fq7WNMZ4dRs5QD-WPsCJsqGgjjZDFH3fo','Rachel, Breanne and Jacob were awesome as usual. That is why I come here.','2020-07-24 23:56:13.519000','2020-07-24 23:56:13.519000',5,'Angel Ethridge','https://lh4.googleusercontent.com/-NclFU-fhpPw/AAAAAAAAAAI/AAAAAAAAAAA/9teVNJw_724/c-rp-mo-br100/photo.jpg','16590124370714063921',22651),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVzGu7mFDXD6Pg2MT5KdkqtOZgAYs73gdLvsbKPfnauwL0OQ5qgGj4N4ROz8KDhwPIhefu9FP7V6PK-DjFv8ErudA9HZ8',NULL,'2019-05-10 20:15:39.080000','2019-05-10 20:15:39.080000',5,'Jadon Hay','https://lh3.googleusercontent.com/-D5aIXfF4mFE/AAAAAAAAAAI/AAAAAAAAAAA/8-Fs3MkTbIg/c-rp-mo-br100/photo.jpg','8626688543755174284',8491),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVzH_csvJ1kSnub5BpHCQurnvTcEQrZ4rYQtPExGGM7vK_jHeERrys2OkGjUa2J7ZNtRPcvC2xuqlq_s_-Kgs6xgpDsQA','(Translated by Google) Very good service excellent staff Jocelyn alvean marcus\n\n(Original)\nMuy buen servicio exelente personal Jocelyn alvean marcus','2020-01-29 17:27:41.052000','2020-01-29 17:27:41.052000',5,'leafar tapia','https://lh3.googleusercontent.com/-zM-8sJtF54Q/AAAAAAAAAAI/AAAAAAAAAAA/7VKLNbV4m6E/c-rp-mo-br100/photo.jpg','16389487648212004696',22632),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZh4SwQ8NmG3b8oI-lpEFii8c3S-xVauoRnX_5vVaAkD8m0wjOhlP9gJ1A32fKEeBIDCnhau9zqJgb-BZMHjyucwcVjo','This was a wonderful place to be seen. The employees were very friendly and caring. John, Norma, Jacque and Amy took really good care of me. Dr Boester has a great bed side manner. I highly recommend coming here as a patient.','2019-02-18 13:06:00.680000','2019-02-18 13:06:00.680000',5,'Jose Alvarado','https://lh5.googleusercontent.com/-d2ehst2ogHE/AAAAAAAAAAI/AAAAAAAAAAA/DtldzSNNAb4/c-rp-mo-br100/photo.jpg','3511292162159714121',7406),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZhm-KxM8iFWNbBCpO_xWxgP1Itaq1d5CMGFRfV38b9Os8Gmt0zTarrsj42G5rROhCX9KlqNScJ91EubRhD_BSoFkYMc',NULL,'2020-06-17 13:15:38.967000','2020-06-17 13:15:38.967000',1,'Masha Sharf','https://lh3.googleusercontent.com/-3xA2O0hoSJI/AAAAAAAAAAI/AAAAAAAAAAA/Ym11nGLpm3s/c-rp-mo-br100/photo.jpg','8918455867446117794',21232),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZHzW73W3qdvW9Zc7Gn-z6p8k3r0aZoYxaPEwehnI3Q1HTKQPdURadqc8LngQdP38fSH2TFeblogzzheAhA5MOxim4Pc',NULL,'2018-02-15 08:06:19.497000','2018-02-15 08:06:19.497000',5,'xaveh c','https://lh5.googleusercontent.com/-uymeF4xp-hk/AAAAAAAAAAI/AAAAAAAAAAA/tCdj7YX8juo/c-rp-mo-br100/photo.jpg','8918455867446117794',9286),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVzLoeX-wfo_fJoJvI9LAZCT7K6dGkxmOvAQ5DGmM7p6xPekmCj9bFxnrZHGF4hySS5UT7vz7Su6kjLLFAPQpmq5hJ7wc','Kendra was a great help and really sweet!','2019-11-03 15:49:48.834000','2019-11-03 15:49:48.834000',5,'Aden Herrera','https://lh4.googleusercontent.com/-v3vRrxm0Lpo/AAAAAAAAAAI/AAAAAAAAAAA/JL5b1ATogP4/c-rp-mo-br100/photo.jpg','16590124370714063921',3108),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZnfDhiXmJz3frVAMPhp7rBqMpJ7w4L8lBe-LMf1YgISrpYfUl4zleY0Q98TTxDqNGroWlUDdkYUw2PWTF9LBHGd3U6c','This facility is cleaning, customer service excellent, staff is very helpful Dr.O’Malley, Alvean, Sibienne were all helpful and made our visit a breeze , you also get complimentary drinks/snacks and a warm blanket while you wait. I would definitely give this place 10 stars if I could. I just love love love their professionalism. Great job guys keep up the good work!','2019-11-14 19:13:35.752000','2019-11-14 19:13:35.752000',5,'Richblvck Guh','https://lh6.googleusercontent.com/-PdGyORzO7ww/AAAAAAAAAAI/AAAAAAAAAAA/2bT50fViT40/c-rp-mo-br100/photo.jpg','16389487648212004696',2704),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZnoNr7NG8KBd-4aOFSgXLTC_3t6c_WDhQam0Is_WHrjvQ3stc6AM4O7_rd3YOj37jaQL-0GT19imLJi7zXY8wTB1g6A','From the first call to the drive thru service Signature Care Austin took care of all my family of 7 covid 19 testing in a snap! Excellent and friendly staff','2020-06-05 19:46:07.318000','2020-06-05 19:46:07.318000',5,'Mistine O\'Connor','https://lh4.googleusercontent.com/-bfNU7l-xfC4/AAAAAAAAAAI/AAAAAAAAAAA/ToIWaz5D9HE/c-rp-mo-br100/photo.jpg','16891069708558046635',22693),('AIe9_BFLWlqwz3qGBnCfbAsLD0lVZwzj3j6iGG3MD-xPxvvv8Ga8d7T6_bnfnKBaUnMTxxrZVufiV0QBwCRyA4ClFCOIJud-rcA63ipqyX7QjrZ9EvRe9QU','Excellent service! Nicole, Irvin, and Katherine were all great nurses. Recommend to everyone!!!','2020-02-07 03:52:05.288000','2020-02-07 03:52:05.288000',5,'Nathalie Alfaro','https://lh4.googleusercontent.com/-Pw5D3rZuUIM/AAAAAAAAAAI/AAAAAAAAAAA/HlBqKFmOJEY/c-rp-mo-br100/photo.jpg','12541597562633926366',22476),('AIe9_BFMK6FB7k24ANEBV5CospTT_bGAc-_w168HJ85qww02AV4bXQIPvlreLN2R3Cxx8n3adgkKSXS2dSqaYz_Q7Zj0pqh7cPIvoUKdiz65cSuMZgJcVkM','The entire staff was wonderful!','2017-08-01 16:44:30.226000','2017-08-01 16:44:30.226000',5,'Greg Thurman','https://lh5.googleusercontent.com/-y1vx0pOvle4/AAAAAAAAAAI/AAAAAAAAAAA/J__r50at_fU/c-rp-mo-br100/photo.jpg','17394740196501090048',5008),('AIe9_BFMK6FB7k24ANEBV5CospTT_N1hmPaZAe7mJTgtMygqN0_Zfp9x8Sw2BD41TCpVaR6wd_rk4GhcZ4esnCzNU0eQEgIO-IvMc_6raEHMbQa825dpaP4','We took our 11 year old for a cut and Dr. Grinblatas and Bryan and both nurses were so compassionate and calming for him. Would definitely recommend!!!','2018-08-27 06:04:08.304000','2018-08-27 06:04:08.304000',5,'Life of Ms. B','https://lh4.googleusercontent.com/-XUrsFDNOCb0/AAAAAAAAAAI/AAAAAAAAAAA/_RZE2MbonD0/c-rp-mo-br100/photo.jpg','14567670160750071148',1545),('AIe9_BFMK6FB7k24ANEBV5CospTT_tHful6vpigCs6jeXhbfTLlDE_JY4rf1w4n2p0VpjeCV2BxOf6-wHFJDu_XKVWEHqZpYqvkVG1txZOOholW_rhO9h5Y','I had a great experience, would recommend anyone to this facility for any medical care!!! Nice, clean, seen fast ... in and out great good guys !!!\n\nThanks you,\n\nDr. Mauldin \nEkaterini S - nurse \nMarvin M - radiology \nMelissa E - registration','2019-06-30 02:48:11.609000','2019-06-30 02:48:11.609000',5,'Christopher Vigil','https://lh4.googleusercontent.com/-SMj4FHgN_7I/AAAAAAAAAAI/AAAAAAAAAAA/6rq7IxnDh6s/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTT_vGrHlei2cp5QGEJykvjMqkoQJACff1k6ciC7iHYWFtqnFF5gZgxbR03Px8kx-FqtBaIrxDCEdcu78f3xbNPcmXTKxM','Best experience we’ve had with a health care provider. We brought our son in for flu and a high fever and they took care of us right away! The staff is so caring sweet and attentive.','2019-02-22 18:36:35.936000','2019-02-22 18:36:35.936000',5,'Hannah Forsythe','https://lh4.googleusercontent.com/-K35H2mcjHbA/AAAAAAAAAAI/AAAAAAAAAAA/H3Nvc-jA05E/c-rp-mo-br100/photo.jpg','16891069708558046635',4345),('AIe9_BFMK6FB7k24ANEBV5CospTT-B_f-qs9x2Dd4UG7oZSSNe69tGv-bOKAfYafLWfw19WkIDcYvoSMdzy8YhbFXVKqvd2Bm5ViM3MHntJlCGgwi9GaDvs','Very friendly and helpful staff. I\'m glad we went here!','2018-08-03 05:43:37.448000','2018-08-03 05:43:37.448000',5,'Anthony Parce','https://lh6.googleusercontent.com/-XzZCi_vp-38/AAAAAAAAAAI/AAAAAAAAAAA/af7K_sIuzt4/c-rp-mo-br100/photo.jpg','3511292162159714121',7669),('AIe9_BFMK6FB7k24ANEBV5CospTT-m88mTRVuAbFUnlI0m8L4JUBFzNpKRtQGR4z59B4P2hTn9EqC1Lr5HRKSNb79-8aVr-B045Lwig4vTucI6yGU9TXXlo',NULL,'2020-07-11 17:46:39.688000','2020-07-11 17:46:39.688000',5,'Ingrid Sanchez','https://lh6.googleusercontent.com/-qqdsNwuIoiw/AAAAAAAAAAI/AAAAAAAAAAA/p2JXCt2BXQ0/c-rp-mo-br100/photo.jpg','8918455867446117794',22928),('AIe9_BFMK6FB7k24ANEBV5CospTT0uaIcXrGHS1JeCXJlIlMlxA0Sb1PYFNRtBExOYQUASigz7W5QDQIoIZdH-THhOx9MxCDJnSw3lN_EhQvlZcPDtBmFfQ','Great place!!! They are all sincerely friendly and caring.','2019-09-03 13:55:33.288000','2019-09-03 13:55:33.288000',5,'Sylvia Tristan','https://lh6.googleusercontent.com/-SBB42dhvYp0/AAAAAAAAAAI/AAAAAAAAAAA/Q4wSp23GPlo/c-rp-mo-br100/photo.jpg','2694018788013845459',6074),('AIe9_BFMK6FB7k24ANEBV5CospTT0Y_-cidNEALZn-cIp91v9N3JYozVSY_Es-HmEJX_vzlZPxBypCAE1nsVvT7cIMvB9xVj_J7Z2SrOWw4HMoijH-mbfHw','It was great! Thank you Jennifer Diggs & Tabitha','2020-03-14 16:17:14.224000','2020-03-14 16:17:14.224000',5,'Jerry Montgomery','https://lh3.googleusercontent.com/-05qtw4wmSmM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckgllMHoQBmh4AjiR33EzZBcrepAg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21183),('AIe9_BFMK6FB7k24ANEBV5CospTT1-CIpqpSMj0GDLOJGkgYVUAFiJMNkvU8aVsgcJK5LMRuUrxZAmG-mS_oL7taWTN4g7Az1RikCOhr7Jl2rZIW80Ddf-w','This place treats you like a 5 star hotel! Fast and so nice!!!!! Dr Miller was clear and so helpful. Shelly made the needles quick and as painless as I\'ve ever experienced. I don\'t have all their names but they were all very nice and took great care of me.','2018-03-14 00:05:19.218000','2018-03-14 00:05:19.218000',5,'J M','https://lh6.googleusercontent.com/-ONVWFzR82xo/AAAAAAAAAAI/AAAAAAAAAAA/3T6dMYAQ-8Y/c-rp-mo-br100/photo.jpg','16891069708558046635',4499),('AIe9_BFMK6FB7k24ANEBV5CospTT1bzi-MBIiUo_G4NJC-tlVB5q80Dqv-dZ9B9ehVVmAD_1vB7X0DKJwIEdfZOZQB1rg9Kp0tXQVHB7DThp8JZi5jgAJEo',NULL,'2020-02-02 14:48:27.310000','2020-02-02 14:48:27.310000',5,'Josie Martinez','https://lh3.googleusercontent.com/-Qa_U29Ise08/AAAAAAAAAAI/AAAAAAAAAAA/_EMRQiib2_k/c-rp-mo-br100/photo.jpg','16389487648212004696',10410),('AIe9_BFMK6FB7k24ANEBV5CospTT1Pa6OfKJR1anyLvaiA6Q3sYQdwco4ekrwKR3M2h6JAFXPMYhz851NVRv1O6v226WHCr7NuBwCueMbu3Gc8tqewPQVrk',NULL,'2017-10-13 16:13:34.612000','2017-10-13 16:13:34.612000',5,'Cynthia Unger','https://lh3.googleusercontent.com/-2G2K052azqs/AAAAAAAAAAI/AAAAAAAAAAA/Gmfgv3GP-Y4/c-rp-mo-br100/photo.jpg','3511292162159714121',7776),('AIe9_BFMK6FB7k24ANEBV5CospTT2K4676TDnGhQV_NJQir7YoUI_P6cFqhuWPszDvNw8PkGZMt_pByZZcopLChSp8hjUbK7ljat-Oe9yY9oUiqbESMgg1k','I had the best and quickest staff ever today and they are wonderful they got me in and helped me with my pain and made me very comfortable i appreciate my great helpers today thank you to Dr.Jaber. miss Alvean A my nurse ❤❤shes and angel and Marcus B very funny guy and miss vanessa g at Signature care thank yoh guys so much','2019-12-10 20:14:43.766000','2019-12-10 20:14:43.766000',5,'Dutchess Cooper','https://lh6.googleusercontent.com/-fkGbZcsR7-w/AAAAAAAAAAI/AAAAAAAAAAA/8hObfMvWGKg/c-rp-mo-br100/photo.jpg','16389487648212004696',2558),('AIe9_BFMK6FB7k24ANEBV5CospTT2kTQ-u8n09D7iBp5UJSbfjcF35bLmUe6a7V-Xgfl_221J7DsSI4w-6SA0oqirvW-xp_I_dZuAgeJ4C4rrcix64YA2mw','Andrew did good job keeping me company while waiting on my test results and keeping my mind off the pain I was having. Had me checked in and in a room before I even started my paper work doctors and nurses are extremely helpful and made this visit easier since it is Christmas. All in all a great visit here and deff will use them in future','2019-12-25 22:31:25.733000','2019-12-25 22:31:25.733000',5,'Maxwell Ammons','https://lh4.googleusercontent.com/-B5p4Y0eUC40/AAAAAAAAAAI/AAAAAAAAAAA/3J-CZo4eTD0/c-rp-mo-br100/photo.jpg','13486358490203335051',657),('AIe9_BFMK6FB7k24ANEBV5CospTT2NyboNQD__jESPsqagD60-tK-M4KQQxiFaPhu5E9-l1fj9jVohqlE5A9rSGCYUhzWsX_3rx-my4BloSyfFShO9eLVoQ','I was treated so nicely by everyone. Laura, the radiologist tech, not only did some xrays and vital signs, and was the first person I saw. She couldn’t have been nicer, efficient, and put me at ease quickly. Victoria, my nurse, was the same way, and made me feel very welcome, cared for. She did her job very well, and continued in the nice, warm manner of Laura. Dr. Ortiz was my doctor, and very nice, answered all questions we had and was very thorough. The check-in and check-out was very fast, and handled in a friendly, quick, and organized manner by Maya. Yes, I would definitely use this location of SignatureCare the next time I fall off of a treadmill or for any other emergency.','2020-01-17 18:54:23.914000','2020-01-17 18:54:23.914000',5,'Leslie Stewart','https://lh3.googleusercontent.com/-W_XX93yRj8U/AAAAAAAAAAI/AAAAAAAAAAA/DmXMN8MB9VU/c-rp-mo-br100/photo.jpg','12541597562633926366',10023),('AIe9_BFMK6FB7k24ANEBV5CospTT31fqtc_yqxy1sA4vyYOQ-A0YJt42yshDQryNqwA4-qhRiuJuZ6X96mXYyYPzurzzaT0aDc4CZ3H7MIo-LJJ1KCWrxvs',NULL,'2020-07-24 17:08:29.730000','2020-07-24 17:08:29.730000',5,'Michael Bouchahine','https://lh3.googleusercontent.com/a-/AOh14Gi0qCsGz63o8BBwXuBcWcwC-ojE2BP9so_qA59e=c0x00000000-cc-rp','14567670160750071148',21869),('AIe9_BFMK6FB7k24ANEBV5CospTT358kJe3i76W4OnGe188ncgBBrsewtxOo16Otzk70TfboJHsJSZ__KWZZqG5TTtQXe0Jbyk9K2eoh4TxooykklKpeT-0','I was sick, a very bad case of food poisoning. The staff here (Dr. Noor, Nurse Naureen, and Dion) took such good care of me and were so sympathetic. They even feed my poor boyfriend who\'d been taking care of me all day. Keaire at the front got me in and out with no fuss. One of those places I hope I never need to go back to, but if I or my friends/family ever do need urgent care, we are going here. As a side note, i had been to a different location previously and the staff there was great too. I am very impressed with this organization.','2019-08-02 20:24:08.587000','2019-08-02 20:24:08.587000',5,'Stephanie Craig','https://lh3.googleusercontent.com/-do5TGbTL_vQ/AAAAAAAAAAI/AAAAAAAAAAA/66GtzsLEnF8/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7228),('AIe9_BFMK6FB7k24ANEBV5CospTT3E9hPW7DIV9j-stFGB2EuCcG7vlQExfySBjkoJsoXH9w4sk_ir0w8rAsL0D148I9RdE52ZC5LqQ-oX_UCtgibYSlQWs','(Translated by Google) exquisite team Manny Magali Maria Dr. Plants\n\n(Original)\nexelent team Manny Magali Maria dr Plante','2019-06-21 15:15:27.157000','2019-06-21 15:15:27.157000',5,'Melanie Chavez','https://lh4.googleusercontent.com/-oVupQ0YvrJk/AAAAAAAAAAI/AAAAAAAAAAA/zk7EMWGdJJM/c-rp-mo-br100/photo.jpg','6521947413723274945',8223),('AIe9_BFMK6FB7k24ANEBV5CospTT3uZj0QHtLUtQ6oNKxWIm5s-K45YjmcFeCUNKNUVPbqxeqbo92bxrsxqFf2TlmrmNdHNYcVqlxTxLyI-tWTZa9Z-itx0','Quick and very professional. All around best medical experience ive ever had. Was kept very comfortable my entire visit.','2018-03-20 22:12:35.339000','2018-03-20 22:12:35.339000',5,'Robert Templet','https://lh3.googleusercontent.com/-sRMX_vgI5QY/AAAAAAAAAAI/AAAAAAAAAAA/AAjoMBI6X3I/c-rp-mo-br100/photo.jpg','14567670160750071148',1645),('AIe9_BFMK6FB7k24ANEBV5CospTT3yvrqjyeuLYuyR_ZYBt4gyEH0PWwgDGteafcw5-o0YMddBCToo02iOP1TkHixOf4JAd3ydJAe-fUm15Tt7WC2t9s_yU','Attened us right away, friendly staff, they took good care of my daughter','2020-02-01 16:11:01.084000','2020-02-01 16:11:01.084000',5,'Elizabeth Brito','https://lh6.googleusercontent.com/-J--QA91CSbQ/AAAAAAAAAAI/AAAAAAAAAAA/OhJPOLYbVZo/c-rp-mo-br100/photo.jpg','14904078213800803294',13614),('AIe9_BFMK6FB7k24ANEBV5CospTT45iOevNEt8FU7KPshJNrQ7fRpmnkSpH043FHRyqmChX0NEpWR2LWusqZOF5NysUrRq311Tbg_-neyymJhLC9-aca1bY','The wait was not long and every one was super nice. Dr. Das was very helpful an explained every thing to me .','2020-08-14 06:01:37.069000','2020-08-14 06:01:37.069000',5,'Adrian Ezeike','https://lh3.googleusercontent.com/a-/AOh14GgPiNjo5XugLy6BlCB8MGNokkqvxvF-lS4aYGeu5A=c0x00000000-cc-rp-ba2','14748677429039074158',23019),('AIe9_BFMK6FB7k24ANEBV5CospTT482MDX2gtk8hZ_LR36nI0D3z5NMsdWv3lcP0qSWX2l-DxYIJBjCVaVV6_OY-Ci7fSUwIk5ARmmMjiZ0wH9mrRFwHF60',NULL,'2020-08-12 20:05:57.140000','2020-08-12 20:05:57.140000',5,'Hunter Gollihare','https://lh3.googleusercontent.com/-1GjUQK5jm7w/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmzcsJ-1H2V6Rd3r9_7Gd0NlrOpHg/c0x00000000-cc-rp/photo.jpg','2077061009497551125',23068),('AIe9_BFMK6FB7k24ANEBV5CospTT4BBYZ-NHQUYSLbEdTbV3ch6M4iQFb2GvjCugrJJ8VDzh6-2Uj5aMZrAvW4lgTLqdr1h2NLtwckPZyC0yvKIXVO94q8U',NULL,'2019-08-22 05:21:59.917000','2019-08-22 05:21:59.917000',5,'joel romero','https://lh3.googleusercontent.com/-Kl5OHpDPTjU/AAAAAAAAAAI/AAAAAAAAAAA/8j16mcu-9mE/c-rp-mo-br100/photo.jpg','8918455867446117794',9075),('AIe9_BFMK6FB7k24ANEBV5CospTT4d2LImMV-2sK7MJOAGpy4eopjCgyc-3RU1-qyfA1W9EibdIupOOBuyJPU59FD1Hpl_vp3jkM_smAjyvRIBsmsd0EqUg','Very knowledgable doctor, very quick, and best of all the most friendly customer service. They catered to my every need, explained everything in depth, and made me feel comfortable. I will never go anywhere else than here in the College Station area!','2017-05-21 14:56:34.333000','2017-05-21 14:56:34.333000',5,'John 15 the Ministry','https://lh6.googleusercontent.com/-ESM2DdAMbr8/AAAAAAAAAAI/AAAAAAAAAAA/xn0QjiQqXIQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3981),('AIe9_BFMK6FB7k24ANEBV5CospTT4DIHiI01i8xVStrDlG1DmThJ1NPK_6p--ugbsIbsxla0HKEY0XFqCll3txBH8bu1CFJkJ56jiTapKoDO8jPqmc0DQmA','Incredibly fast and welcoming! We were seen within minutes of walking through the door! Everyone was very friendly and no feeling of judgement! Highly recommend vowing here when needing urgent care!','2019-11-29 21:55:50.245000','2019-11-29 21:55:50.245000',5,'Levi Dickson','https://lh6.googleusercontent.com/-KBA0l76XGVE/AAAAAAAAAAI/AAAAAAAAAAA/97WxxsN6G5o/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',5998),('AIe9_BFMK6FB7k24ANEBV5CospTT4FagzHjZd06KgX6M2DmIoZjXcJ-D9TeXOmjcdNCoLL-svS_DvtHrJ6weDmlfNOXVZ5ZV3Bkr4mEHzFuQRvl40-8qx1I','Had a great first experiences. Was very fast & made sure we were comfortable. Ran tests and to rule out what possibly could be causing problem & turned out one was positive. \nAwesome staff.','2020-02-16 04:27:55.397000','2020-02-16 04:27:55.397000',5,'Jordan Dean','https://lh5.googleusercontent.com/-jR7S4uOZtZs/AAAAAAAAAAI/AAAAAAAAAAA/9GO1Arts50A/c-rp-mo-br100/photo.jpg','2694018788013845459',14231),('AIe9_BFMK6FB7k24ANEBV5CospTT4gIeEuH4lRiA4GmXM3LmWOs1L6H7_kaUSdXfBD8u2gCnHXwZDd8MgzjGcX8UXjVH397GDHiRwsfZC5DLhwzBcrKO5TM','Good experience and good treatment and great stuff doctor:kotey ,md nurse :Lynn s. RS tech Fatima b , er tech , Daniel b. Registration . Tanisha w','2019-12-23 05:35:09.512000','2019-12-23 05:35:09.512000',5,'Jitiksha Vadiya','https://lh6.googleusercontent.com/-pBuf36bt7ag/AAAAAAAAAAI/AAAAAAAAAAA/agwNNex4jPw/c-rp-mo-br100/photo.jpg','17898197009688164559',5337),('AIe9_BFMK6FB7k24ANEBV5CospTT4h05feH7Z0G0_7EUnHeioMs_mEMV2YjUQ27j9AMdGvw7Cl13XCNOYvTzNVeiQnBdAgAx7b8JiTQ0yKSLX_veXsNFTes',NULL,'2019-03-27 21:57:08.816000','2019-03-27 21:57:08.816000',5,'Vu Ngo','https://lh3.googleusercontent.com/-t23RQ3QKECE/AAAAAAAAAAI/AAAAAAAAAAA/vCVMaKbOK44/c-rp-mo-br100/photo.jpg','17394740196501090048',4701),('AIe9_BFMK6FB7k24ANEBV5CospTT4iJ1ji_GVQ0X5Refk9AlJ_c6jbWk-gvnN4z8FHnc3FWxD_IT-i2KpeFEN440e3W_xT7UvKuqZoOOVcY0j8cBMskZtQM','Love this Signature Care facility! This was my second visit and each time I leave satisfied. Very clean, nice staff, and thorough doctors. Maya and Kristina were friendly and professional during my visit! Definitely my choice when it comes to my emergency care away from home(California).','2020-02-23 12:52:14.378000','2020-02-23 12:52:14.378000',5,'Chandra Marshall','https://lh5.googleusercontent.com/-tWm9IvobpeM/AAAAAAAAAAI/AAAAAAAAAAA/Snkjz2z36-4/c-rp-mo-br100/photo.jpg','12541597562633926366',13353),('AIe9_BFMK6FB7k24ANEBV5CospTT5GzC7m6qCZdoAdRUDf0suTGMMZJl5R3PGTuova_Qc0kfNMh8LMizsawOJDH7nKDywjpJR2rdFDd9hq2TPz96DWcNC6Q','The treatment and care I received today from Dr. Nguyen, Nurse Jani, Kelly the rad. Tech, Jordan N. The ER Tech and Patricia was amazing. Thank you guys for everything.','2019-12-20 14:56:02.108000','2019-12-20 14:56:02.108000',5,'Tiffany Prophet','https://lh3.googleusercontent.com/-etVzMBlFZrc/AAAAAAAAAAI/AAAAAAAAAAA/DjLIyfxqqhs/c-rp-mo-br100/photo.jpg','16389487648212004696',2531),('AIe9_BFMK6FB7k24ANEBV5CospTT5j5syYHJMAzo3RrHpH06oaU259e4jJm9htecVvqflQjP6gZ5HnKdHfZJCBbARD0Mis19CB5arXlAxJHxHk0MY87uCV8','I love fast y’all got us in. There was no wait and we got everything taking care of.','2020-02-12 02:08:13.594000','2020-02-12 02:08:13.594000',5,'ray coleman','https://lh5.googleusercontent.com/-ZSqmlH9MBFE/AAAAAAAAAAI/AAAAAAAAAAA/2bh3jLSC430/c-rp-mo-br100/photo.jpg','12541597562633926366',13384),('AIe9_BFMK6FB7k24ANEBV5CospTT5SbHN4frs--ifoX4UpTlT0MgO68N0rMoJJPxEmbS5W07mLtzmaqMZWsMYiJJCxo3l1sf_LV0G0nT8vkw3xEhKSlYzHo','Everybody was very nice, eventhough we did not have an appointment, they made every effort to help us. Amy at registration was very nice and made the registration process very easy. I was impressed as to how quickly they called us to have the test done.Jaslyn and Dr. Rodrigez were very professional and the test well done. Thank you all!','2020-08-01 21:48:14.933000','2020-08-01 21:48:14.933000',5,'Sonia castaneda','https://lh6.googleusercontent.com/-6ibgTR5Q4xw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck0WrhG5ytbNQGlNuojGXCOxriUaA/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22912),('AIe9_BFMK6FB7k24ANEBV5CospTT5SX7is97QuX_RY6La_eAdoUsNA7AiO2bz88kEeU4iBButI_2TNi_eTb_XELudSRH7pdQTlQIjqpZVg5C1UJ2h_r75mg','The fastest service I’ve ever received as a patient, the Doctor,and staff were very hospitable. Will be the new place I go to for all my medical needs!','2018-07-21 09:06:53.412000','2018-07-21 09:06:53.412000',5,'Chibike Uzoh','https://lh5.googleusercontent.com/-vMa7TtmieyY/AAAAAAAAAAI/AAAAAAAAAAA/GHYwEdd-4pM/c-rp-mo-br100/photo.jpg','17394740196501090048',4827),('AIe9_BFMK6FB7k24ANEBV5CospTT5VgFS2hetR5zg4AyiDZ6WUaKoCROOwYzWgx1ASj8vqhadB9Fi2_ix35WnQZXjaOZ3-VbkrcHhJQyQmbOZnBHnNAdq4U','First time coming here and am very impressed with how professional and caring the staff is. They ensured all my medical needs were met and provided a comfortable and safe space. I would definitely recommend this facility to family and friends. To Dr. Guharoy, Gina, and Olivia thank you for making it a wonderful experience.','2019-01-30 20:35:03.245000','2019-01-30 20:35:03.245000',5,'Regina Perez','https://lh6.googleusercontent.com/-4wklVBDDD0g/AAAAAAAAAAI/AAAAAAAAAAA/RKboXJs08aE/c-rp-mo-br100/photo.jpg','3511292162159714121',7430),('AIe9_BFMK6FB7k24ANEBV5CospTT62kB1q4Md5NKiMSXV9wbCcxxtqvgbaGFmmt4q8EP64TUdj3JchgoW-qKfCCNFgVNcf_12G-TXo4YkshECWsD-x6Ssdo','Came for an urgent matter not related to covid, and the staff was working hard at managing emergency patients from covid testing patients. The staff went above and beyond while I had to stay the night for observation. They were professional, friendly, and accommodating. They ended up ordering food for me to be delivered while I was sequestered and hooked up to IV’s. The staff was great. Highly recommend.','2020-06-29 03:01:46.643000','2020-06-29 03:01:46.643000',5,'Andrea Steede','https://lh3.googleusercontent.com/-cMHPtrZXnUw/AAAAAAAAAAI/AAAAAAAAAAA/LENiEFNoi9Q/c-rp-mo-br100/photo.jpg','12541597562633926366',21347),('AIe9_BFMK6FB7k24ANEBV5CospTT65ZhHW0KceD8V-5eiWspsKVJMsIV_Wk_92YWfA7fu5aSEb5PpfYo3ApKYLg2eur3u_RmAiY0-6clgkih_meNitLpp3c','The Doctors Kotg and Thomas were very helpful and explained everything very well. The nursing staff Jesse Bryan Fatima were very amazing and kind would recommend this place. They treat you very well and welcoming','2019-02-10 01:49:12.769000','2019-02-10 01:49:12.769000',5,'Natalia Ulloa','https://lh5.googleusercontent.com/-L9nyXbiWAHE/AAAAAAAAAAI/AAAAAAAAAAA/gsRFJPpY2nY/c-rp-mo-br100/photo.jpg','8679688254631342173',8872),('AIe9_BFMK6FB7k24ANEBV5CospTT6NYOkmmMT2Td0h8h5WppQt8lIujn9k_xh7ODAl-ZbalOxR2PCN0d5cS4Zi4hRWnZ2IS0DpEIPUTtchuUPVekXzGuB9o','(Translated by Google) Very good attention all very friendly and much hygiene\n\n(Original)\nMuy buena atención todos muy amables y mucha higiene','2019-08-14 16:53:19.932000','2019-08-14 16:53:19.932000',5,'Dania Forcelledo','https://lh4.googleusercontent.com/-VGz6r3Z7QGI/AAAAAAAAAAI/AAAAAAAAAAA/AIizolgkPTg/c-rp-mo-br100/photo.jpg','17898197009688164559',22714),('AIe9_BFMK6FB7k24ANEBV5CospTT6olh_6u2r6ZCAxGN_XrsKO_7FpNK_JAM2Qrr0gltyIeb1yzP7na__kSPzqVE_s0FPBZmHmGFiXbfKmHjHPeCHnWgkgY','I went in for a horrible sprained ankle. The staff was very helpful and friendly right as we walked in the door. Christina took my x-rays, and Dr. Rose gave me the full rundown, textbook included, of what happened when I asked why this sprain felt worse than ones I have had in the past. Overall everyone was very lovely and helpful.','2020-03-11 17:36:44.907000','2020-03-11 17:36:44.907000',5,'Nichola McDowell','https://lh6.googleusercontent.com/-ea8uTYKP8-8/AAAAAAAAAAI/AAAAAAAAAAA/NxHdLcHBtXA/c-rp-mo-br100/photo.jpg','16891069708558046635',21056),('AIe9_BFMK6FB7k24ANEBV5CospTT6QI1AdpU39mSB1-1lAC4GTnUNze0NII-0MuKhqL7PXM9QA99DDOgLX_ZSEHCxYyo-goKsQpoeOuVDqt2bAmD8lbd8XE','Stephanie Natalia and other staff were cool.','2019-11-17 02:40:27.091000','2019-11-17 02:40:27.091000',4,'Henry Hill Jr','https://lh3.googleusercontent.com/-9yA2AlF_qT8/AAAAAAAAAAI/AAAAAAAAAAA/IJKOgTSBaAo/c-rp-mo-br100/photo.jpg','8679688254631342173',8721),('AIe9_BFMK6FB7k24ANEBV5CospTT6s1CygPNwGjXLemCmiL8p76reW7dw2fkCVyWre9IhDqu-Uz5gU3NyKLipK1L4SqA4-Aihqx1CGrFjmM2UbbZcT_ZnSk','The Amy, Nichole & Dr. Zheng are helpful and nice they attend to our son needs he was I. A car accident this just to say thank you.','2019-07-05 16:22:35.338000','2019-07-05 16:22:35.338000',5,'Pat Lee','https://lh3.googleusercontent.com/-Tw4htxVuqf0/AAAAAAAAAAI/AAAAAAAAAAA/67q73lcv__8/c-rp-mo-br100/photo.jpg','8918455867446117794',9100),('AIe9_BFMK6FB7k24ANEBV5CospTT6SiM3Dv7dU-H20ptGTL0xGRiTwBvHikZBThcy-ljkwxDnK7LfkFHjdrUMkNWZqzg_qeqmi3j02ITYb3izd81l9enkQE',NULL,'2016-10-02 00:38:44.066000','2016-10-02 00:38:44.066000',1,'Corey Hooks','https://lh3.googleusercontent.com/-MSOEbjVIIgM/AAAAAAAAAAI/AAAAAAAAAAA/2GmaMMtSQkM/c-rp-mo-br100/photo.jpg','16891069708558046635',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTT7_RR0s8c1MyyeU4wNj_9XILqYZGMV6fBS1WUokUysWniorP97UpGxsc1r9Z2nC331xz2MtpQqDIctvfZpVQWwtbW1U0','Dr. Chowdhury was very kind. Nadia was as well. We drove about an hour to get here, so we could get rapid Covid testing done. Well worth it to get results without waiting. The whole staff gave us peace of mind about our situation. The front desk staff was very quick to get us processed. Overall a great experience!! Thanks!!','2020-08-05 22:22:32.698000','2020-08-05 22:22:32.698000',5,'Jennifer Spilman','https://lh4.googleusercontent.com/-o56EHoLq620/AAAAAAAAAAI/AAAAAAAAAAA/P_7K_mN7vUc/c-rp-mo-br100/photo.jpg','14748677429039074158',22518),('AIe9_BFMK6FB7k24ANEBV5CospTT7F1p_IlSkJJv7CF1jzH0hTq-0Gnuoo6j3-yYSjRUHGXlsBM8TtUJHdci-qstd6K58mjC2cyIN6_I5lxvOei8SfJ4q3Y','Staff was great and made the visit so easy! Especially Marcus, Alvean and Patricia!!','2020-02-06 22:52:21.168000','2020-02-06 22:52:21.168000',5,'Christine T','https://lh3.googleusercontent.com/-MEcN-RLYzgU/AAAAAAAAAAI/AAAAAAAAAAA/h3EkA6zZMM0/c-rp-mo-br100/photo.jpg','16389487648212004696',22614),('AIe9_BFMK6FB7k24ANEBV5CospTT7jTFWP47Yq6uSzvkduO0T6KqzTNZPBJI6a27K5BAweRJb6FaagBeKtaZ6gYaPj6A6oPw6CWt4tQqf8xbNJAlk4qfuZE','Being new the area and not a fan of hospitals I opted for the signature care emergency center-I made the right choice! I scheduled an appointment online-although there was no wait when I arrived. I was quickly put back in a room and taken care of right away. My service throughout my care was wonderful from the docotors to the nurses and techs I delt with. I highly recommend this establishment and will return if I find myself in need of emergency care.','2018-09-06 19:59:29.911000','2018-09-06 19:59:29.911000',5,'Rachel W','https://lh6.googleusercontent.com/-gmfX1rn-S14/AAAAAAAAAAI/AAAAAAAAAAA/13Jq8Y27YHI/c-rp-mo-br100/photo.jpg','16590124370714063921',3741),('AIe9_BFMK6FB7k24ANEBV5CospTT7nmmdfj3iXOD3JQtAQGCWCx6oFk4HJTi4zoF4GXxl-acluTBSdAGG3ql6041yFyacpn4c6xmK6bxKSWqbBQ-UrJa3EU','My name is Sheri Young. I was at the Odessa location of SignatureCare Emergency Genter on Saturday 19, 2019. I am chronically ill with a very long list of diseases. I go to the Infusion Center at our local hospital Monday, Wednesday, and Friday every week for fluids and almost always I needs a Potassium. I am in complete gastric failure. I have J-Tube & a G-Tube. I cannot eat at all. I also have multiple autoimmune diseases which leaves me in the ER often. Our local ER has told me that I do not belong in their ER. When I cannot stand the nausea, vomiting, pain, etc.... I have had no choice. I went to your ER today. I was completely amazed by the care I was given! I felt like I was at a spa! I was taking back quickly. They were fast getting my IV, running my blood, and getting me treatment. The whole time I felt cared for. Not because they were just doing their job, I could tell they really cared! The unbelievably warm, soft robe was beautiful! They offered a shower and had a bag of miniature beauty products. It felt a fancy hotel and welcome!\nI cannot thank you enough!\n\nSincerely,\nSheri Young','2019-01-20 04:37:38.034000','2019-01-20 04:37:38.034000',5,'Sheri Young','https://lh5.googleusercontent.com/--FrlzHJqkPs/AAAAAAAAAAI/AAAAAAAAAAA/tMi5FaviQZE/c-rp-mo-br100/photo.jpg','6521947413723274945',8320),('AIe9_BFMK6FB7k24ANEBV5CospTT7ti2gZB6r1uHqVax_yHRml8ApIPfNQU8qeEhMu8hUhf6tyet7mkjH_iW7TL3hWMwS_rE9RpZ6aqioPvcqtVf7H5Z2qQ','Patricia at the front desk was very nice and helpful, and doctor Nguyen and nurse Jordan were very nice, I do recommend this clinic','2019-12-20 17:25:45.947000','2019-12-20 17:25:45.947000',5,'Tiara Bradford','https://lh5.googleusercontent.com/-R9zN1j-DXFo/AAAAAAAAAAI/AAAAAAAAAAA/Wp_NXBxJg9Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2528),('AIe9_BFMK6FB7k24ANEBV5CospTT7U6EUKDV5zwJyE_fCdiQw_q-TgjlnkRZZyq7tvauDfgeNjxX_tOmIYw8guizoYx4FFImCxpMycZVt3n0jpgXRPwHxME',NULL,'2016-10-09 01:50:11.516000','2016-10-09 01:50:11.516000',5,'Robert Cruz','https://lh3.googleusercontent.com/-RJdpxGJFBA8/AAAAAAAAAAI/AAAAAAAAAAA/Xil-E1f57PM/c-rp-mo-br100/photo.jpg','3511292162159714121',7930),('AIe9_BFMK6FB7k24ANEBV5CospTT7WgWdlXhwKLn729NAnlQaugCsJVg70S9PcW8qpgN-NLMWYzHexxvSXP0_R-cqFjDD3hwgNWCeuDxIDkFOYxAdGV-Cmg','My experience was fantastic. From the moment I walked in until the time I left everyone there was nothing but caring. Even without insurance I was treated fairly and got seen within 5 mins of walking in the door. I was cold and they​ offered me warm blankets and took care of my problem in a speedy manner. I\'d like to thank Robin, Dr. Vakey, Rebecca, and Kathleen for all the help they gave me. I will definitely be going back if anything else comes up!','2017-06-19 16:22:01.675000','2017-06-19 16:22:01.675000',5,'Evelyn Thorpe','https://lh3.googleusercontent.com/-Okd2nijaPnQ/AAAAAAAAAAI/AAAAAAAAAAA/rZLY37AxwmY/c-rp-mo-br100/photo.jpg','16590124370714063921',3975),('AIe9_BFMK6FB7k24ANEBV5CospTT8PrpMaIJrBgJxrky4E2D3uFqjwLv-M3PqsEz_Ih89Zl-g4guyOpvPvJcba7aDlyuzCBxSxqXN8xRjm-kbpcw_Le3zuw','Good and fast service! Was seen quickly and out the door in 45 minutes with my appointment.','2020-07-08 16:00:24.111000','2020-07-08 16:00:24.111000',5,'Handy Girl Decor','https://lh5.googleusercontent.com/-COPp9Ulg1RQ/AAAAAAAAAAI/AAAAAAAAAAA/GnIrJThkYxM/c-rp-mo-br100/photo.jpg','2077061009497551125',21442),('AIe9_BFMK6FB7k24ANEBV5CospTT9awR0vX0DpzTWRkxMbJ46L22pdQnwP5FM0jSGD_7Q20gqsoRp1wChU9BzONWX2MPO3PR_NKlFCbPBPcParSCLJTERvM',NULL,'2016-05-27 11:44:46.080000','2016-05-27 11:44:46.080000',5,'Kim Portillo','https://lh4.googleusercontent.com/-XzIOCitegEI/AAAAAAAAAAI/AAAAAAAAAAA/v1D9fjDpKWc/c-rp-mo-br100/photo.jpg','17394740196501090048',5250),('AIe9_BFMK6FB7k24ANEBV5CospTT9IDG59SKBqPsof0RgUvkbnzSX8dS7WkH_naaFb8AiNPIeoOXxoRS-XgDgU_pfG7y12OG0xsC71BmXAEfmFzvU_G4kFg','I am only giving 3 stars because the receptionist, nurse and technicians were all great, otherwise I would give 1 star. The physician on staff was less than impressive. My daughter and I went in to be looked at after an auto accident. The physician on staff didn\'t examine me, he just ordered some xrays and a CT Scan. Today I went to see my physician and I have a separation in my wrist. I pointed out the lump on my wrist to the physician at signature care and he dismissed it. I feel cheated after paying for a service I really didn\'t receive. I would NEVER visit this place again.I had to amend my rating when I received the bill. The physician charge for my daughter and I was $800 each. The physician didn\'t even examine me. We were not even treated. My bill totals nearly $7,000 and my daughter\'s is $3,000. My daughter had an x-ray and I had an x-ray and MRI. These prices are ridiculous. I have had quite a few emergency visits at memorial herman and none were this expensive.','2020-02-28 15:02:03.595000','2020-02-28 15:02:03.595000',1,'Necitha Madison','https://lh6.googleusercontent.com/-DlPcfh3OLZY/AAAAAAAAAAI/AAAAAAAAAAA/2MUIQN6lRPA/c-rp-mo-br100/photo.jpg','8918455867446117794',16783),('AIe9_BFMK6FB7k24ANEBV5CospTT9nkRbfzfYaiH0GsMy_UQfZKLGgV8u5ZWJeU4eSr5hfUcRU5GJnFrbMOXPP0MYtt8TScUIngHo2qeV_FUUUIseATWokA','Great service and very quick! Dr. Ding and Nurse Irving is the best! Thank you !','2019-09-18 23:52:53.022000','2019-09-18 23:52:53.022000',5,'Ariel Ferguson','https://lh4.googleusercontent.com/-rNz-mRUvO-s/AAAAAAAAAAI/AAAAAAAAAAA/SjxZyVvCeqk/c-rp-mo-br100/photo.jpg','12541597562633926366',419),('AIe9_BFMK6FB7k24ANEBV5CospTT9QobLnOwT3keixPJu-U09_c9-CSCCqiYjFB6yKB-fYTVTV2-U0atKi9VF14dEK2mw_Qf4hAtnGEpJs3bLml3vkRNaUA','Nurse Manny and Dr Starr are very caring and have great attitudes.... they made my daughter laugh and made the visit so much more enjoyable... wasn\'t like an er visit at all!! Thank you all!!','2020-03-03 17:02:00.858000','2020-03-03 17:02:00.858000',5,'April Weiss','https://lh4.googleusercontent.com/-7wyuNICFEF4/AAAAAAAAAAI/AAAAAAAAAAA/eiXwj13J5QY/c-rp-mo-br100/photo.jpg','6521947413723274945',14521),('AIe9_BFMK6FB7k24ANEBV5CospTTA-iD637pXW3pDSPjPp2U0Au7wcFDFhgrc0hKY8-s6NjriOtEOFzM0ezPNY8xwQ8e8ajedO4bKUPok9eq8Yvo4unp-LM','The staff was lovely and very quick service! Would definitely come back. Kim, Jacob, and Dyveliz were awesome and so welcoming!!','2018-01-16 18:11:59.272000','2018-01-16 18:11:59.272000',5,'Sophia Harris','https://lh6.googleusercontent.com/-atF1GX-dvDU/AAAAAAAAAAI/AAAAAAAAAAA/Myas812Tfsc/c-rp-mo-br100/photo.jpg','16590124370714063921',3884),('AIe9_BFMK6FB7k24ANEBV5CospTTA3ZXQouf0l_epj7nBqAxYOXppOCknI3Wx-lYj7lFe_T9x5Em58AFwjYq7TGb1jBYP8fbO5CVmxJPY-UwvDkRHTcgtPw','The staff, Dr. Do, Robert, Tricia & Jesus, were great! I would definitely recommend this location to everyone!','2019-06-21 15:55:25.767000','2019-06-21 15:55:25.767000',5,'Lilian Olvera','https://lh4.googleusercontent.com/-UmA8pqvN2PU/AAAAAAAAAAI/AAAAAAAAAAA/wMb47fT5t1o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTAA0fVICwaicF81e4T86E8uNk4ikKwIjz4bDZt6FDlXv3HSimPpFW0goziZREXXrY6Brjr6hj78FrylX3k5lnF3A4L8I',NULL,'2020-07-27 23:27:02.253000','2020-07-27 23:27:02.253000',5,'Antonio Martinez','https://lh6.googleusercontent.com/-6DTfAZG4e30/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnle1gdK35eN3FrMR2lzNxj5fEDeg/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21956),('AIe9_BFMK6FB7k24ANEBV5CospTTaBllP-EomJcwQjxy0LJkaAiVe3JckRu7hTMyPGH-i6Dw4xcljG1399Mrd6mep7M2JR4t8So3ritGgkAzTMnTxowM7k0',NULL,'2018-11-27 02:16:28.729000','2018-11-27 02:16:28.729000',5,'Taylor Bluemel','https://lh3.googleusercontent.com/-AQDr-p0i3Ag/AAAAAAAAAAI/AAAAAAAAAAA/R30nYKvsb-8/c-rp-mo-br100/photo.jpg','16590124370714063921',3639),('AIe9_BFMK6FB7k24ANEBV5CospTTAE--bO1ZZ7awaCyK0Ch7K3qumY9SlPQ286s5JXhK3pgFm6PFIZgXqhDPhYwvzowZx9AiqaS4VQOE9Q5vgFjzJ8mmaFU','Very nice and helpful!','2019-09-30 19:33:50.924000','2019-09-30 19:33:50.924000',5,'Abigail McKinney','https://lh3.googleusercontent.com/-cMYVplNS37o/AAAAAAAAAAI/AAAAAAAAAAA/XZAKHrxs5Ag/c-rp-mo-br100/photo.jpg','16590124370714063921',3163),('AIe9_BFMK6FB7k24ANEBV5CospTTAhHznyoaL_SxUjIScLaaX26VTNhT0Yx8E_4LTq-1rwlfrgqPwjNBvz2ix5hfXNyrnfFjFrNFrYkRfDeSvzzyHxXp704','I came to This Place and The Doctors and Nurses and Staff Were Really Really Nice Quick and Professional about Their Job they Did Absolutely Excellent Great Job You All thank You for Y\'all\'s Time I will come back again!!!','2019-09-15 19:38:07.144000','2019-09-15 19:38:07.144000',5,'J House Vlogs','https://lh5.googleusercontent.com/-rxK7JN2cfnE/AAAAAAAAAAI/AAAAAAAAAAA/qXXNtOwhcJ4/c-rp-mo-br100/photo.jpg','6521947413723274945',8143),('AIe9_BFMK6FB7k24ANEBV5CospTTALQf7sg_ScqONutc0YlK9ZwLPzdweOW29kRKNMayiF8XavEW6mLwKDo3VOm4KvSBHo0VXJ6BUm-eg1IIEbdPxtzVIw0','clean place, and nice that they offer 15 minute covid tests. however, i had scheduled an appointment, and when i showed up for the appointment they said that “lost the record” and i have to wait behind 5 other patients. don’t see the point of scheduling appointments if they’re just going to lose them, might as well walk in.','2020-06-29 22:36:26.748000','2020-06-29 22:36:26.748000',2,'z/a/c','https://lh6.googleusercontent.com/-8CZi1nyEYIc/AAAAAAAAAAI/AAAAAAAAAAA/I1Z6zh-l1jc/c-rp-mo-br100/photo.jpg','2077061009497551125',21444),('AIe9_BFMK6FB7k24ANEBV5CospTTaRAot_tRf2uvxZjJ60FJH1MZQAQYnM8zbO-RUdfcolw8nK6xjOrNEotEBnvGas7GRGTIbIJ7fN0gqtFGPP93DWHIz6c','Everything was wonderful, the staff was amazing, Dr. Souman, Churiah my nurse was great!! Thank you Jackie, Kenzie and Dee!','2020-01-13 15:46:12.371000','2020-01-13 15:46:12.371000',5,'Glenda Ageitos','https://lh4.googleusercontent.com/-D49SoqMqV2A/AAAAAAAAAAI/AAAAAAAAAAA/q4vtrWypZj4/c-rp-mo-br100/photo.jpg','3511292162159714121',14461),('AIe9_BFMK6FB7k24ANEBV5CospTTask5s82XofsEFxRMjvhasxWMuoAgpJmXJ-pyjDH-11qFc4PMPPBpL3JkRmKnjtCuzS2f0l7OZnQSAn75lSh0NQPdv5M','Wonderful staff...Ashley...Erica and Nich!! Calm and relaxing atmosphere!! ER visits are never pleasant but this is as close as it gets!','2019-01-10 19:27:48.705000','2019-01-10 19:27:48.705000',5,'Bridget Kent','https://lh5.googleusercontent.com/-S-BWqoRztzY/AAAAAAAAAAI/AAAAAAAAAAA/iT46lwHKaXQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8589),('AIe9_BFMK6FB7k24ANEBV5CospTTaTaWBwybhll6LuqCwg67coJz8DAzhWlMvHF6xY3Vix-Fi3vEp-wIYkdjSaLQTbUOKlm7SB0ja2LzZdMENNOJ0RpD_7g','Had no one to get watch the kids, so \nwe had to bring them them with us. The staff was so attentive to my husband and to my 2 kids. They gave them juice and crackers as we waited. Elaine and Lynn made our experience great.','2019-08-02 18:47:42.239000','2019-08-02 18:47:42.239000',5,'ortiz family','https://lh5.googleusercontent.com/-A2u0ED3zXZc/AAAAAAAAAAI/AAAAAAAAAAA/YVidzXb77XE/c-rp-mo-br100/photo.jpg','17898197009688164559',5607),('AIe9_BFMK6FB7k24ANEBV5CospTTayAa0Qzb5ZKibR8khipbbkl_6inGNDuGKQZ-9ftSyoy2K2StBwPzfc3MxBFmx10fzSJkIbhIUdDYXkU-QjFVoRYnm6M','I came here because I was having flu like symptoms. I was greeted very quickly by Patricia at the front desk followed by Tricia and Alvean helping me in the back with great patient care! I would highly recommend if you need medical care quickly.','2020-03-12 22:04:02.274000','2020-03-12 22:04:02.274000',5,'Pamela Munos','https://lh6.googleusercontent.com/-CMw9-88uGIA/AAAAAAAAAAI/AAAAAAAAAAA/xuW5IPMMmoo/c-rp-mo-br100/photo.jpg','16389487648212004696',13706),('AIe9_BFMK6FB7k24ANEBV5CospTTb_rc7cNCTiNRevGesgUpML7Dv7O-r-T6JdlpFyh3ll3FoT_6HkL5JvW_MyeLPeEwZw3w1dC_ENZAOSxFgep_Ox4G4yY','Above average patient care! Very fast and highly knowledgeable doctor and nurses!!!! My son n law came in with welding accident and they quickly responded ! Thank you Dr. Pham and the nurses Alvean, Tricia, and Elida! We are very thankful for you!','2019-11-26 14:15:56.021000','2019-11-26 14:15:56.021000',5,'Tressa Howe','https://lh5.googleusercontent.com/-rrZeIKvClzQ/AAAAAAAAAAI/AAAAAAAAAAA/vpi8_-j8DYo/c-rp-mo-br100/photo.jpg','16389487648212004696',2631),('AIe9_BFMK6FB7k24ANEBV5CospTTB0ebFLqZEu4OuqVuZ3rGVxfowfTsy1Dc1Zzv55ZHTm3j1wM9SVZ6DSXYoiuJOJ9s7nF2lHkyaA9CfOga7w6mMaKaddY','Excellent service by ALL personnel (Dr. Curtis, Lucas, Sherry, Kim)!\nThey are the awesome!','2019-02-14 22:57:08.120000','2019-02-14 22:57:08.120000',5,'Lori Dillard','https://lh4.googleusercontent.com/-unXta_wK4M8/AAAAAAAAAAI/AAAAAAAAAAA/1o9ZdzTNMvE/c-rp-mo-br100/photo.jpg','3272657195432704501',7015),('AIe9_BFMK6FB7k24ANEBV5CospTTB0m-u5R1qc1Az2cDpyw5c-23hJ5opuxQb0-HnmAKE-foMhsJ7fsIM5D2ZUv8gg3irlfAvEK6VHja-5x0zOLk5RVe4ao','Great experience! Came in with some breathing problems and the staff was very attentive and friendly. Adam the nurse was great and very helpful and resourceful! The doctor was also really great and was very friendly and accommodating to our needs. If for whatever reason I find myself in Austin again and have a medical emergency, I will go out of my way to go here again.','2019-10-14 14:45:04.814000','2019-10-14 14:45:04.814000',5,'Dawson _','https://lh5.googleusercontent.com/-VVrIfZvQGEY/AAAAAAAAAAI/AAAAAAAAAAA/I2SkX5GPnNk/c-rp-mo-br100/photo.jpg','16891069708558046635',4183),('AIe9_BFMK6FB7k24ANEBV5CospTTB6SArWgwUwj2rRImCLjdtb_f54izikl07wSBWkQPe-PUbnsFSrKQr5aB_5td_OX09pVin742rVc-Xc9dDN1FrtqAT9A','We went in on a Saturday morning because my boyfriend felt like he might be having a heart attack. They saw him right away and we ended up staying all day for testing. They brought in a very nice cardiologist from the Med Center to help with more testing. They made a bed for me to stay in, offered drink and snacks and were very comforting to us. Everyone who works there is so kind, helpful, professional and thorough. We’re so glad we chose to come here for help and I highly recommend them. It’s so nice to know we have a place like this in Montrose. Thank you to everyone who helped my boyfriend feel better.','2018-02-05 17:21:43.388000','2018-02-05 17:21:43.388000',5,'Sharon Barile','https://lh5.googleusercontent.com/-tUVSCciy1Sc/AAAAAAAAAAI/AAAAAAAAAAA/eqwzBFftwh4/c-rp-mo-br100/photo.jpg','3511292162159714121',7726),('AIe9_BFMK6FB7k24ANEBV5CospTTBdwyj0_qXYjUeifTFwjVeVx9lBs9WTwgHmlvMHsMX1gwEA8H6qoat6-EaRPHcd_yRFgbvlL8Hp1RGABawX5y-SlvXDg','Everyone here is incredible. The secretary, nurses and physician were all nice. They fixed me up really good and they\'re all good people, I highly recommend you visit here.','2018-10-04 05:40:04.906000','2018-10-04 05:40:04.906000',5,'Art Thou Doge -','https://lh3.googleusercontent.com/-asTp6kjyfNA/AAAAAAAAAAI/AAAAAAAAAAA/u7dpMyniUsw/c-rp-mo-br100/photo.jpg','14567670160750071148',1480),('AIe9_BFMK6FB7k24ANEBV5CospTTBioGnnIdqEZgdBLssHOs0hSygoF6OKlMA_Oqvvr7X20EHWSV4HjJYUgucSWHloMlUEu1m92rBJ6iV40cGrTWabX0DiI',NULL,'2019-07-03 18:00:03.572000','2019-07-03 18:00:03.572000',5,'Meadow Phillips','https://lh5.googleusercontent.com/-FhRGwkiqHjQ/AAAAAAAAAAI/AAAAAAAAAAA/PigWz_G8w8s/c-rp-mo-br100/photo.jpg','17898197009688164559',5668),('AIe9_BFMK6FB7k24ANEBV5CospTTBjrWfgit4lZ0hudlD1ue0RhWhKchEz3fCeFhUrQUCcootaSAe0sVKLWoo5Dkb1jrla7g1y005BLslMKqf0qv6VXnwFA','Overall the experience was good once you got inside the facility. The line outside in 100 degree temps was RIDICULOUS when you have a sick child. It would make a lot more sense when you have an appt to wait in your car and receive a text to come in. I did like the fast results.','2020-07-17 19:08:44.289000','2020-07-17 19:08:44.289000',3,'Melissa Carter','https://lh3.googleusercontent.com/a-/AOh14GiMX1MbhMpYFYOmrhwPgLX5hqJKzLt3TqMpXgPoMEo=c0x00000000-cc-rp','16389487648212004696',21962),('AIe9_BFMK6FB7k24ANEBV5CospTTBKf-pZaX406kSYlk7lxmfygFi4qSCZH3QcN6nCB4TyvpprVQv3N52FYPat2VGKVQZwPGuSH29oicw3qN4ag81Jmv8Ts','Efficient and helpful 😃','2020-08-06 15:20:14.967000','2020-08-06 15:20:14.967000',5,'Betty Holub','https://lh3.googleusercontent.com/-3-x0idvduRM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckZeMGnuHCm0GO8n6jZaMeTjEYJLw/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22263),('AIe9_BFMK6FB7k24ANEBV5CospTTbnNZloSfhohC6PfyKJmz7Ix8Vo7lCShB5hPmrmnIV8flHgVUGrpWAcEBs5HxZiqIIQVPBBKkYwFnBCatHqBZ-T2Gnm8','Great care quick and attentive. There were always nurses available and doctors well informed for any questions we had. Also gave great advice and even let us be discharged early, and invited us for a follow up as well. Alexis, Kristen, and Kathleen were extremely helpful!','2017-10-16 03:50:23.122000','2017-10-16 03:50:23.122000',5,'Kaitlynn Nguyen','https://lh6.googleusercontent.com/-gTnN9w2ghuE/AAAAAAAAAAI/AAAAAAAAAAA/HLgScLxiXvo/c-rp-mo-br100/photo.jpg','16590124370714063921',3921),('AIe9_BFMK6FB7k24ANEBV5CospTTbxnQWSK5fIIn_0h-et3GB_zveE4BQyHZ1T_YH-rWNtjbNbJF07fSLHDqmvDaNtoAV-ywNHXrvjv18N52RVHQIc4rHcc','One of the best ERs in Texas. They always take great care of me and my family. I am very happy to have a location in Stafford closer to me. I love that they are open 24 hours and I never have to wait more than a few minutes to see the doctor. Thank you for opening this location!!','2017-05-02 17:07:15.827000','2017-05-02 17:07:15.827000',5,'Jennifer Martin','https://lh5.googleusercontent.com/-0ycG5ZqhsBY/AAAAAAAAAAI/AAAAAAAAAAA/sz3AGkb0UFo/c-rp-mo-br100/photo.jpg','8918455867446117794',9404),('AIe9_BFMK6FB7k24ANEBV5CospTTc68g60NxQ_K9Z-ABrotCZaXjGeh_PTCa8GZCpW3ekovuOgIYlhlupKyqmFsIbf2tu-ZAzUEvjWiPOokc5itWFUT0l1M','I went in with severe pain in what I thought were my ovaries ... I was in tears! From the moment I stepped in everyone was so welcoming nurse Larry made me laugh and feel so comfortable!! He gave me a warm blanket . The Dr was super nice as well ','2017-01-11 14:19:16.687000','2017-01-11 14:19:16.687000',5,'Elle The Realtor','https://lh5.googleusercontent.com/-bmyZxfcTLQg/AAAAAAAAAAI/AAAAAAAAAAA/AbfuGL6ViYM/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1916),('AIe9_BFMK6FB7k24ANEBV5CospTTcAUvrJo0xD_3uF0hCGRtDh6S71etEas1d4Ja9RNnxCBT_L0i7X1k4oq-3ZmB3rMzQW7sjhP3n09PBtRuzZKpqT5RV9c','Great service! Thank you to Dr. Vaagenes, Agnes RN, Hamas RN, Kelsey and Eve!','2018-08-24 17:29:59.033000','2018-08-24 17:29:59.033000',5,'D Paradise','https://lh6.googleusercontent.com/-fVbsEOKhwKU/AAAAAAAAAAI/AAAAAAAAAAA/tOg9ncXQGVg/c-rp-mo-br100/photo.jpg','3511292162159714121',7609),('AIe9_BFMK6FB7k24ANEBV5CospTTCbXvKWi32yh4KJ_7w8_754DxmPvk62r2DFg6eCEOdpVwfgJmR-1yQaQG6tmRl35FUrtX23MVDROezqcmjyDyZQImgxY','The doctors, and entire staff, from reception to nurses were amazing. Very friendly. There was no wait. I had a car accident. They ran all the tests necessary and thoroughly explained the results and treated me quickly. I hope I don\'t ever need urgent care again, but if I do, I will definitely be going to this clinic before anywhere else!','2016-09-29 23:20:05.153000','2016-09-29 23:20:05.153000',5,'Norma Abad','https://lh4.googleusercontent.com/-N53_zhuR2y4/AAAAAAAAAAI/AAAAAAAAAAA/i_bWo239jHk/c-rp-mo-br100/photo.jpg','17394740196501090048',5196),('AIe9_BFMK6FB7k24ANEBV5CospTTCoj5j9Vj0gMAeVyMRsSjXGDaaTeBP7hSoRdKk-mVRxn92_7-5CIJmv30EjXwF7fMx6iTS5jbjniPaIxxqsSBoL_2p34','The staff was so kind and friendly, but most of all helpful during my visit when I was hurting so badly. Dr. Henderson, nurse Alvean, radiologist Tricia and register Patricia were truly angels from Heaven!!!','2019-09-22 19:24:14.991000','2019-09-22 19:24:14.991000',5,'Lauretta Atkins','https://lh4.googleusercontent.com/-7o28EGJTFeM/AAAAAAAAAAI/AAAAAAAAAAA/yz8ir_h0QaY/c-rp-mo-br100/photo.jpg','16389487648212004696',2890),('AIe9_BFMK6FB7k24ANEBV5CospTTcQQ9iWWv_rHC4KXkm2L1JmgDycuHL2M6VpKG2tdBmUnT5MaMX_Slu6NEGSb_OLK4fKt3nXllGLBkNlukv07rWRdPQGw','I had kidney issues for years and every so often it flairs up. I went to the ER here expecting similar treatment to the hospital down by Richmond. I was pleasantly surprised. Not only was I treated with care and compassion, they did the best to help me. Not only did I get the meds I needed but fluids and pillows and blankets and a CT scan (which I needed from my doc but missed my appt).\nBut the best part is they gave me all of the labs so I could give them to my doc.\n\nSo i am happy with the treatment and would recommend them above the hospital if you are in Westchase. (or the other areas). They are however, the same cost as the an ER visit so bring your insurance card.','2018-10-18 21:44:20.839000','2018-10-18 21:44:20.839000',5,'Michael Thunderclap','https://lh5.googleusercontent.com/-yyPuJaORX_c/AAAAAAAAAAI/AAAAAAAAAAA/rzg0i1RL87k/c-rp-mo-ba5-br100/photo.jpg','12541597562633926366',596),('AIe9_BFMK6FB7k24ANEBV5CospTTcSHo6LJPkgQhyo6gNghn-LlBix76pBalyJacI1gXJn2H_fTUsuYhV9Y-Zl-CslHpUfXYugG4z4ZUNf4HSWxuCum5cUo','I walked into this location feeling horrible! I was attended to in less than 10 minutes by Alvean and Tricia. They were very patient and comforting to me. I really felt like I was a priority! Dr. Wang was great also. He sat at my bedside and explained everything and was very reassuring. This team deserves 10 stars. I left feeling better and knowing that I really mattered and they really cared. Thank you! As healthcare providers, you don’t hear that enough. THANKS for all you do!','2019-05-23 22:34:44.072000','2019-05-23 22:34:44.072000',5,'Jimea Jackson','https://lh5.googleusercontent.com/-PaSTnDiSvnM/AAAAAAAAAAI/AAAAAAAAAAA/ldPG7iIx5Eo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTcZjFE8e0d-h-rg1E07vsgoFQjSuR9GV5CetaqyzIyiGkMQk9dK3SlSECRh2PzovhgEv48LgEqiFOBaioG7sRCZ0tZ0E','Service was great and fast! Definitely would come back again anytime no matter the distance!','2019-02-09 03:59:47.257000','2019-02-09 03:59:47.257000',5,'Leslie Danielle','https://lh5.googleusercontent.com/-S4gHr3RTYOs/AAAAAAAAAAI/AAAAAAAAAAA/7aMwATr-6Yk/c-rp-mo-br100/photo.jpg','8679688254631342173',8877),('AIe9_BFMK6FB7k24ANEBV5CospTTD0xurDZYRmoyU6oCuQcY0Gzl-G7Pnlq2uzCKVS6gUgN-q5cZb7DRtyM8XaYnOwSzp2mLwBmvlWgQiR1YZgbpiIOwbtQ',NULL,'2019-09-01 03:08:49.552000','2019-09-01 03:08:49.552000',5,'Alexis Bonus','https://lh3.googleusercontent.com/-OrFNPNPlRv0/AAAAAAAAAAI/AAAAAAAAAAA/gWL8ikUNUDY/c-rp-mo-br100/photo.jpg','16590124370714063921',3225),('AIe9_BFMK6FB7k24ANEBV5CospTTD4LwsLcfhwgJnmvktiVleESGQSF6Bh3uzPbqLGPVq-jpVvcdTU8XGz9X81VJz5mKnUTNeiCT47ckyEfk25JurO8jKQE','Awesome environment, Kim Allison was very helpful and polite Doctor.','2019-08-21 01:47:59.950000','2019-08-21 01:47:59.950000',5,'Ruvim Demov','https://lh4.googleusercontent.com/-XYfS3UvH5XY/AAAAAAAAAAI/AAAAAAAAAAA/eKVZZCtcb6c/c-rp-mo-br100/photo.jpg','13486358490203335051',849),('AIe9_BFMK6FB7k24ANEBV5CospTTdHzG79u0v4uzRhl9LnOY7XOQVotBmX97QxrSTzMJ3KSWYJ6cuZhNhIYr42DvfxvR1QGsWHb3GwhYDpxSVr_SqAEO0VQ','Great experience. Came in with a lot of pain and it only took 5 min wait for someone to see me. Dr. O’Malley and Dr. Appialh were awesome. Alvean and the entire staff were great and friendly. Very impressed with the facility.','2019-07-10 14:02:22.792000','2019-07-10 14:02:22.792000',5,'Luis Lacayo','https://lh5.googleusercontent.com/-drmF8aIREtM/AAAAAAAAAAI/AAAAAAAAAAA/nOu7PjsfGBU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTDifGey6z2wQtIMCUkZfC6xgu6bYKK3YoE95po2riAuHoKRAGSbIbhRSlIslSmlBqHjSLsDRmn3uQGGOi3fhaUArDTB4','Mercy was helpful and had me seen and taken care of quickly . Great staff and doctors!','2017-02-27 21:38:03.783000','2017-02-27 21:38:03.783000',5,'Diana Dennis','https://lh4.googleusercontent.com/-LMBguUHLMTs/AAAAAAAAAAI/AAAAAAAAAAA/0jW_TkGN-so/c-rp-mo-br100/photo.jpg','14904078213800803294',2396),('AIe9_BFMK6FB7k24ANEBV5CospTTdJ07FYd1jx8ot569t8hhCnc-A9A33NP62O0fPwjLoqxPXcOu2n_TWvOYjRge6mEpkvEW6rq3BqbTCIQ-n1nTVUeIrGg','Such sweet nurses and doctors. I had the pleasure of being seen by Dr. Katy, nurse Robert, the tech Ellen and the X-ray tech Fatima. I came in so terrified of why I was feeling so dizzy and short of breath. They helped keep me calm and answered every single one of my questions. I usually go to the one on tc jester but I had to be here since I was on this side of town. Signature care, no matter where you go takes such good care of there patients. Would recommend to everyone.','2019-01-13 08:36:55.603000','2019-01-13 08:36:55.603000',5,'Arlene Flores','https://lh4.googleusercontent.com/-mYokBFc9iiw/AAAAAAAAAAI/AAAAAAAAAAA/r68yCVVl8vk/c-rp-mo-br100/photo.jpg','17394740196501090048',4740),('AIe9_BFMK6FB7k24ANEBV5CospTTDjp_88bEQ70m4jxZC_sOV5-diY059qFpz8RYvjjMzBYLjzEu0w9YAhPAK_Wx7nb04ekf7lHS0fKujcshqnN7a6FiW5M','Dr. Dang, RNs Rachel and Al, RadTech Diem and Cindy in Registration were all amazing, friendly and professional!! Five stars!! I would definitely recommend SignatureCare Mission Bend!!','2019-06-17 04:09:13.158000','2019-06-17 04:09:13.158000',5,'Amelia Merchant','https://lh4.googleusercontent.com/-uA7mky_8HeI/AAAAAAAAAAI/AAAAAAAAAAA/DVtm-mAmnVM/c-rp-mo-br100/photo.jpg','17394740196501090048',4662),('AIe9_BFMK6FB7k24ANEBV5CospTTDKpUdeWRPA97DDBPqEsbjhFcqHTpMBQMjVnafWMoJCnL_D3jb6yaYMjQ_75llEfJCBW-XekBI-TTv6pKt5JX5je3a5k','Great experience! Quick, fast and easy. Staff is very attentive','2020-07-29 14:45:36.924000','2020-07-29 14:45:36.924000',5,'Roxanna Briseno','https://lh5.googleusercontent.com/-rC2rfFmAbKE/AAAAAAAAAAI/AAAAAAAAAAA/nORzWN0jEtw/c-rp-mo-br100/photo.jpg','2077061009497551125',22765),('AIe9_BFMK6FB7k24ANEBV5CospTTdmqvERQGYjlgVERpPJrxivbUhgdBFaJNDsEXJ0smM-_vrKNxYwdTYHwz8pWqpp6iDwtzgwQrwAZTqd8cvPPjwTl1tro','Sarah the nurse was very comforting. Dr Zhen has really set good expectation, made me feel comfortable and answered my question. Really good experience!','2019-07-03 21:54:15.496000','2019-07-03 21:54:15.496000',5,'Kenny Mokuolu','https://lh5.googleusercontent.com/-F1CxrKCQP9U/AAAAAAAAAAI/AAAAAAAAAAA/rtbwlS8Csus/c-rp-mo-br100/photo.jpg','17898197009688164559',5663),('AIe9_BFMK6FB7k24ANEBV5CospTTDN6Hz2onKGWseO197f6YfJs6TCmHAd3rOjKOxb4ZTL8f1cOSg-lYEkc5IShdnlQHzte9QOuUKYuDOVNOAZHe5NHhHtM','Very prompt service, and took great care of my father\'s injury.','2019-11-24 00:15:45.402000','2019-11-24 00:15:45.402000',5,'Steven Gillette','https://lh4.googleusercontent.com/-Uohm69axU3w/AAAAAAAAAAI/AAAAAAAAAAA/jHSs59YYiF0/c-rp-mo-br100/photo.jpg','13486358490203335051',721),('AIe9_BFMK6FB7k24ANEBV5CospTTdryc7aSOhi8exHOs6mjH6e4gN-dZjRAnbm6VNNzcHSZz4an6YNp9AU8qR0lvuHyRiwbprIvORTq7qGuTTj4ne_3uNCY','Great Customer Service','2019-02-22 05:31:36.118000','2019-02-22 05:31:36.118000',5,'Michelle Washington','https://lh4.googleusercontent.com/-vbEs2Ui-5SQ/AAAAAAAAAAI/AAAAAAAAAAA/J5PJe_TZVQM/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5837),('AIe9_BFMK6FB7k24ANEBV5CospTTdwszizNQgBmCAY1HQ9GgDiWfznqEXS9b9m3rBQOjwxJG81OMsrIB_NuCkM0lasxzf6AQqSE0d9tuttBgPP0L1zeJ8aE','I loved the staff. Everyone made me feel secure and safe. Clean and friendly.','2020-02-25 19:13:40.738000','2020-02-25 19:13:40.738000',5,'Graja Mundy','https://lh4.googleusercontent.com/-oOp8Qcuj2Tc/AAAAAAAAAAI/AAAAAAAAAAA/KYlcPLDqxFM/c-rp-mo-br100/photo.jpg','3511292162159714121',15342),('AIe9_BFMK6FB7k24ANEBV5CospTTDwTkfrDh57Xg5t6hqqL7bLpnnk3-kiIUZuw22GWnnC4fm1MSDJtL8hubtw1qRcQGO1J0n-kQKWR1mBNOixfPGfYC12c','Staff was wonderful, Nurse Angel, Rad Tech Can & Registration Ashley, Thank you','2018-12-20 15:48:26.916000','2018-12-20 15:48:26.916000',5,'Susan H','https://lh3.googleusercontent.com/-iyvWh4v1sQk/AAAAAAAAAAI/AAAAAAAAAAA/EhnKBvFkv5A/c-rp-mo-br100/photo.jpg','17898197009688164559',5909),('AIe9_BFMK6FB7k24ANEBV5CospTTDzAyta5k_YCPLhqcMIGiZlhYLxGUetpSSPxnKE5HnOSQHYDLIt-vmcw4pD5hD4dk3yNnnP4ZVj90HvHnoMAB1_RvgjE',NULL,'2020-07-15 02:18:37.999000','2020-07-15 02:18:37.999000',5,'Poiised_Flow 00 00','https://lh4.googleusercontent.com/-mMpIc1cxeAw/AAAAAAAAAAI/AAAAAAAAAAA/8pSHhal8aPI/c-rp-mo-br100/photo.jpg','14904078213800803294',21950),('AIe9_BFMK6FB7k24ANEBV5CospTTe_QBXecB39DAbRnrNqgNlQMwhVZ8JJctvLvRsLCSDzhc9Zjw9Lg0I-DHkVKPNBelUlpowx2s_N1SD82XiisOXGuPnFM',NULL,'2018-10-23 22:12:48.338000','2018-10-23 22:12:48.338000',5,'Addalyn Thrasher','https://lh4.googleusercontent.com/-5WaIMuRhRa8/AAAAAAAAAAI/AAAAAAAAAAA/QC0cshCmGDE/c-rp-mo-br100/photo.jpg','16590124370714063921',3690),('AIe9_BFMK6FB7k24ANEBV5CospTTe8qJZMpMe5WiAhfvVDgOX4vxyPY5prEuATZqrLNlx9VSiqCqzAW8RDjqigTLn7y5v_lbY4qfafB-8QO6tbCvjwr0BXQ','Staff is great! Friendly, courteous, efficient and listens to you very carefully with their full attention. \n\nThe best part was the warm blanket, Gatorade, and animal crackers while watching tv in my private room. 😁\n\nI really wish I could remember all the names of those who helped me today. They were all awesome. I even got a post op call to see how I’m doing.\n\nDr: SYLVESTER, MD, CRAIG F \nNurse: Joseph Ryan B deserves 5 stars!','2019-01-20 16:53:34.306000','2019-01-20 16:53:34.306000',5,'Elva Kiel','https://lh5.googleusercontent.com/-C5QbPPxq9p8/AAAAAAAAAAI/AAAAAAAAAAA/diGAeF0_dwc/c-rp-mo-br100/photo.jpg','14567670160750071148',1401),('AIe9_BFMK6FB7k24ANEBV5CospTTeEmEWLW2PsyMh-nBoeCPUxP3NKrlEqwueNiagtkiVpxbYRfYTDUkp8ilANSy7ZgdUDkemx2Pf5vipKCBKhRWSPul1Xk','Took my fiance here for an allergic reaction. Clean facility, quick wait time, and staff was awesome. I don\'t know why I would ever go to a regular hospital. How do these things not exist everywhere? Why are more people not going to these? ','2017-08-16 16:16:34.106000','2017-08-16 16:16:34.106000',5,'John Padera','https://lh3.googleusercontent.com/-oVL1vVF-11A/AAAAAAAAAAI/AAAAAAAAAAA/HeqSTiLgGLY/c-rp-mo-br100/photo.jpg','16590124370714063921',3964),('AIe9_BFMK6FB7k24ANEBV5CospTTEhHKPIW3fv-9PDy_Hzt4uwRSS57upplSHn68QMgvJDPfNYDv83V0oViyZjqn3fEAZUHLQtJxnfNZFItvBrot6y4EHPA','Friendly staff, got test results done very fast. Was out of there very quickly and got the medications I needed:','2018-11-22 20:52:32.092000','2018-11-22 20:52:32.092000',5,'Anna Mill','https://lh3.googleusercontent.com/-skiQbbmC_cw/AAAAAAAAAAI/AAAAAAAAAAA/TGJvdOiMO7k/c-rp-mo-br100/photo.jpg','14567670160750071148',1459),('AIe9_BFMK6FB7k24ANEBV5CospTTeJ6UGrBuf_B-pz11CCj1GCqC8lTNccS61vhQeQNDGErrZauYBnwqwRnr1t_rvs6qq8whE2aU3TtkHG_yufXTtJ1riFY','Incredible staff, clean space. Unfortunately I came down with the flu on Christmas Eve. I went to the SignatureCare Emergency Center that morning and was quickly seen by Dr. Rose and her staff. They were extremely informative and friendly. The place was very clean as well. Additionally the manager of the Center called me on December 26th (he said he usually follows up the next day but didn\'t want to call on Christmas) to check on my progress. That is next level customer service. Highly recommend if you need quick care.','2018-01-09 15:48:16.105000','2018-01-09 15:48:16.105000',5,'Tanner Nall','https://lh3.googleusercontent.com/-HxnVwKCjwwI/AAAAAAAAAAI/AAAAAAAAAAA/wr7v0uq_4C4/c-rp-mo-br100/photo.jpg','16891069708558046635',4527),('AIe9_BFMK6FB7k24ANEBV5CospTTejhpTqQMufmAgWNE6n-y8MqeDKsdGY1XK-A4p8YVRAsqoCU0fY-dxwvJ5EEwL9v8nr9ovAU6ehQ1foxfccgqrVvSjd0','Good staff \nReg: Rashad\nDr. Wang\nRn: zinaida and almaguer\nEr tech: Olivia\nRad tech: fatima','2020-05-17 06:08:14.680000','2020-05-17 06:08:14.680000',5,'Abdullah Zeeshan','https://lh4.googleusercontent.com/-DYpkWw5r8OQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck9lhjo2UCxdlUPDFjeakeooWpbgA/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22087),('AIe9_BFMK6FB7k24ANEBV5CospTTeO9dXjsDnRxLWqjj0s4P2NUoyf9ImDZqKNih1qgKFMFsUMYCfeGHs2ugz_T77C8epNta47-9pWGpB4DTnScILCCDW8Y','Fast and professional staff. Very friendly and great care.','2019-10-26 07:32:00.453000','2019-10-26 07:32:00.453000',5,'Stephen Langley','https://lh6.googleusercontent.com/-Mk5y0h5cxaY/AAAAAAAAAAI/AAAAAAAAAAA/kldkClZ0WWY/c-rp-mo-br100/photo.jpg','2694018788013845459',6031),('AIe9_BFMK6FB7k24ANEBV5CospTTEtUUhGsNNmr4VGbs7lVamaBXJAToJa9KrHYm8pALWOWaBk9dawZHTsTzVu8ipU1MT5lgmipiofpqNLrQVG-xfp8vAsY',NULL,'2019-01-27 22:22:01.343000','2019-01-27 22:22:01.343000',4,'Shelby Horton','https://lh5.googleusercontent.com/-CLyigOzejQw/AAAAAAAAAAI/AAAAAAAAAAA/NluJJp2k4Tk/c-rp-mo-br100/photo.jpg','16590124370714063921',3567),('AIe9_BFMK6FB7k24ANEBV5CospTTevnu1hd7Abx6zv19fVR71XUS34QKb4F52XvpM6V0j-3n5JxpRRg-CPiVojKCTd-zX9-sB-vDrbPwSooc2tuMwSj1wnI','This facility was fast and I was in and out and received a good referral for dental care. They even contacted a dentist near my area even though they were able to assist me fully. Shaunda H with registration was awesome and Christina the nurse were amazing.','2020-03-18 23:18:04.024000','2020-03-18 23:18:04.024000',5,'Jay Carter','https://lh6.googleusercontent.com/-uk4vCuVaPr4/AAAAAAAAAAI/AAAAAAAAAAA/Wk3BrFiKCQY/c-rp-mo-br100/photo.jpg','16891069708558046635',21043),('AIe9_BFMK6FB7k24ANEBV5CospTTF-avW1VvcDMWccNC7pIG_nOrKsuLDXy4d3NtezNrVilUTrHofvMMmQ78YRvjc9GBKDkyLNkWZO7eep-drMxUUWrCZEI','This is my second time at this ER and each time has been a great experience despite the circumstances! The staff are incredibly kind, helpful, and understanding. Tanishia attended to me at the desk and made the check in process very efficient. Dr. Henderson and Charlotte were very kind during my procedure and very reassuring and great at explaining each step they would be taking. I’m very pleased with my experience and I highly recommend this location for any issues you may have!','2020-03-13 01:24:15.234000','2020-03-13 01:24:15.234000',5,'Sarah Garcia','https://lh4.googleusercontent.com/-H1OhhioFHWo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl4_n4sZD_xHq9ajckEkE2AsxtEPQ/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21091),('AIe9_BFMK6FB7k24ANEBV5CospTTF2ms5LFoyCYe_CAzdaGKn366HpjhynK6vd88jsnTo4a-diGAN-NtWv80vvOQ6IvI880k9Fwtn3iggQIyJMB0r966T8c','Very fast and friendly','2019-07-31 21:22:17.150000','2019-07-31 21:22:17.150000',5,'Jose Rodriguez','https://lh5.googleusercontent.com/-hxnzbpmXwl0/AAAAAAAAAAI/AAAAAAAAAAA/vwrmEsN3now/c-rp-mo-br100/photo.jpg','12541597562633926366',474),('AIe9_BFMK6FB7k24ANEBV5CospTTF3eODO8XjjCtK7zXUMvDc70XEWOmNfezHJebVA1gtBJxAs3Q205VdBREPsmwDrjWNDa6brC6PypJ87E_yWT50tHaAbw','This place was awesome the nurses and doctors was great! Also have great snacks!','2019-03-02 21:34:51.917000','2019-03-02 21:34:51.917000',5,'Ashton Van Duzer','https://lh6.googleusercontent.com/-0EGdYET4rlU/AAAAAAAAAAI/AAAAAAAAAAA/1ZNpjUsEr50/c-rp-mo-br100/photo.jpg','16590124370714063921',3515),('AIe9_BFMK6FB7k24ANEBV5CospTTF6zYMrOiIfSITSbKFUOf89sy8QJsG0lxrSca2OnZtFGZToSJNgK3TU4hb1sqLDxA06d8OYgs3EQ8R3NyfjQxudmqOC8','Amazing customer service, thank you to the Nurse Jacob!!!','2019-02-13 22:00:50.926000','2019-02-13 22:00:50.926000',5,'Kalein Hicks','https://lh3.googleusercontent.com/-PA5Xz0L37uc/AAAAAAAAAAI/AAAAAAAAAAA/DA4Bh-LPShY/c-rp-mo-br100/photo.jpg','16590124370714063921',3553),('AIe9_BFMK6FB7k24ANEBV5CospTTF7YS7lstjMEOIuuXK0RZ9Do5rRoS8WRK8fbPz25ClSQ6Ge2dn00eU8c_p6SapSV892We0m1dBMpEQ5lZK4OG5t-Vnd4','Out standing care. Got me in-and-out very fast!! Carrying staff. Number one urgent care!!','2019-05-24 00:53:30.369000','2019-05-24 00:53:30.369000',5,'Dakota Cole','https://lh5.googleusercontent.com/-Psxw4kqMupE/AAAAAAAAAAI/AAAAAAAAAAA/BMHF6gzBahU/c-rp-mo-br100/photo.jpg','17898197009688164559',5725),('AIe9_BFMK6FB7k24ANEBV5CospTTFDlAmctyOa7dSSMPnGya80PMgeLZQIHIDJOKiAONieuGzAB2vCPoMSon5NguWS14j3MzdePS7s0t1rC4hOBcKE6U7qM','I was very impressed with their hospitality! Everyone was professional and thorough. I highly recommend this emergency center!','2019-01-13 13:26:13.269000','2019-01-13 13:26:13.269000',5,'Major Latin','https://lh4.googleusercontent.com/-tcXn9nCVQgM/AAAAAAAAAAI/AAAAAAAAAAA/lwvCKuvRkQU/c-rp-mo-br100/photo.jpg','14567670160750071148',1415),('AIe9_BFMK6FB7k24ANEBV5CospTTfdRcTMZNevMWwwCs-lLuSA1BeeaMo_9k3jz6Q8n1FAcerBw00SU4_63RWcpEa4_fimTlTSH3TxWS-bH2IKCW_d4dU1I','From the time I walked through the door the staff was friendly and helpful and educated me on everything during my process and stay here. I actually felt like they cared unlike most hospitals and they continuously checked on me while I waiting in my room to be discharged. Thank you to Carly, Sarra, Sherwin, and Christian for my amazing visit today. I Rate 5 stars.','2020-01-30 02:10:18.734000','2020-01-30 02:10:18.734000',5,'Diamond Williams','https://lh3.googleusercontent.com/-Y--R5d5bop0/AAAAAAAAAAI/AAAAAAAAAAA/nPrtq7O_Xpc/c-rp-mo-br100/photo.jpg','12541597562633926366',10083),('AIe9_BFMK6FB7k24ANEBV5CospTTfJ4sS_lKr6bb_D_ZndAdS36VrKvaObB7p-aOmL5GhMf40woG573o-UCf94TrUOAF26f19oNY0gmzAk_6y-HQ5zdhOa8','I came in after a vehicle accident in which my car was totaled after being hit from behind. \n\nThe care I received from this emergency care facility and the wonderful staff was beyond my wildest dreams! When I think of an ER, let’s be real, I think of a long wait and rushed staff that is short with you. \n\nThis experience was anything but that! I walked straight back to be seen. I was offered heated blankets (three separate times), water (multiple times), and was repeatedly checked on while waiting for results. \n\nThe nurse, Katie, was so sweet and personable. The physician, Rose, was just AMAZING! She took her time speaking with me and hearing any and all questions and concerns I had and answered them in detail. She was so wonderful I wish I could see her as my GP! The radiologist was funny and personable and the lovely ladies in registration, Jennifer and Shaunda were so sweet and helpfully with all of my questions when working with payment and auto insurance, etc (which is never fun). \n\nUNBELIEVABLY amazing experience and I would drive miles out of my way just to go here in the future.','2019-12-19 02:00:47.163000','2019-12-19 02:00:47.163000',5,'Genavee Maxfeldt','https://lh3.googleusercontent.com/-UiLjM_X9FiM/AAAAAAAAAAI/AAAAAAAAAAA/ITRMne9ObjU/c-rp-mo-br100/photo.jpg','16891069708558046635',4109),('AIe9_BFMK6FB7k24ANEBV5CospTTFk5iUGKr62GuWcFAR1vNSCr9ynfF85RRWF9xoCdGBBeUd5qaw3BHfIzThAQdrTQL1NsHARh13x8w6J8USKTbmZ2uuag','First time coming here, and the experience was amazing! From the moment we walked in they greeted us and made us feel at home. The experience here was fast and professional we were in and out in less than 2 hours. Plus the hospitality was very genuine. Thanks to every staff member who made this visit easy and stress free.. and also making it as fast as possible to treat the care of my wife. \nThanks Dr.Golla\nNurses: Jubril and Tammi\nRadiologists: Sandy\nER Tech: Ralph \nRegistration: Patty','2019-09-23 18:21:41.840000','2019-09-23 18:21:41.840000',5,'Marco Reyes','https://lh6.googleusercontent.com/-NfwXeFU2cnk/AAAAAAAAAAI/AAAAAAAAAAA/u5qekm1hV9s/c-rp-mo-br100/photo.jpg','17394740196501090048',4599),('AIe9_BFMK6FB7k24ANEBV5CospTTfNewZK_DZ_MZmG-rxU1uvnEdulb55g1fO9NyurcOgomhnjWSqfLjhaBw59xcykXEdtdnZRyWAFIckDBlwAzJb7WHgsU','Brought my wife here to be seen the doctors and nurses are very professional and informative and kept us updated as they found out more thank you dr Sylvester, Dawn ,Reagan, Norma, and Ke\'aire','2019-11-03 15:02:19.609000','2019-11-03 15:02:19.609000',5,'Jason H','https://lh5.googleusercontent.com/-8ldZArbeIqs/AAAAAAAAAAI/AAAAAAAAAAA/4obO3_a4eR8/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7149),('AIe9_BFMK6FB7k24ANEBV5CospTTfnQU9GZudr_Ypu0ZdP02hPkBPqgarDLvrFmJARt_J55RMnQVUoT0obQaIxdHxw8cJC5E4Dk5GpAJTH_QrRWtn5SCqGk','Very easy process. I was able to make an appointment 30 minutes before and get right in. The staff at the front were great and made it very simple. Thanks to Alyssa P., Bianca M, Brianca L, Brodrick R, and Airianna C.','2020-08-13 11:58:39.117000','2020-08-13 11:58:39.117000',5,'Alexandra Galla','https://lh3.googleusercontent.com/-AspHuyLc9G4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnpyT6LXD7Yrs5fwzaiPUCvT9CgEg/c0x00000000-cc-rp/photo.jpg','8918455867446117794',23085),('AIe9_BFMK6FB7k24ANEBV5CospTTfSk2LGfl3kKZH4ASmN35-EuHXlN_pcHJDE6yBjX6T92jx4zFjarlmyP1FBnA2oyFZrdQq7-gkPohDZzF_k2tcvwbCos','Highly recommend this establishment I\'ve never felt in better hands professionally ran clean with the most competitive staff I\'ve come across thank you Dr Guharoy, Laura,Dee ,Olivia,Gina and Jacque !','2019-01-29 18:42:18.622000','2019-01-29 18:42:18.622000',5,'Juan Abrego','https://lh6.googleusercontent.com/-_WmXKz24quE/AAAAAAAAAAI/AAAAAAAAAAA/_km38D7zEkg/c-rp-mo-br100/photo.jpg','3511292162159714121',7443),('AIe9_BFMK6FB7k24ANEBV5CospTTftqmxsJth-_x859PLL5WPbIKoAmotJnZxPyhRr8D1h0xy8UWsJUtA1bzVd5EZmhNxmvJOCdPRC8olhL0iNenXgikZ9M','Great service, caring, professional and fast.','2020-06-08 21:07:09.057000','2020-06-08 21:07:09.057000',5,'oscar oviedo','https://lh4.googleusercontent.com/-srlbIJ1dn_0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckCBEjirXw7whj8IiMjcveM02J7Pg/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21455),('AIe9_BFMK6FB7k24ANEBV5CospTTg2UjP3-jQM_Tly6gKHzg7z8DP8-mGMNqdFzuST_jvRUzkUs1BE1LegpYMxYgkrpHxrQW_0Sx5qvf3SrDRDo32MlrA_A','The nurses at 24 hour went beyond my expectations , Dawn, Ayesha, Marcus and Dr Thomas , referred by family members.','2019-06-22 22:41:07.153000','2019-06-22 22:41:07.153000',5,'Gorge Juarez','https://lh4.googleusercontent.com/-4suJIoh37T4/AAAAAAAAAAI/AAAAAAAAAAA/wtR742EZikI/c-rp-mo-ba4-br100/photo.jpg','17898197009688164559',5681),('AIe9_BFMK6FB7k24ANEBV5CospTTG9gURW1lv3fcvUV9fWgyJoyC54qW1DMX4SMQE-foGymaln1Xao9FVw6P50FMQD-SG4Qqd_ZozndsP-Sn7kmsVp_40EY','I have already been here twice. Each time I am very pleased with how quickly I am in and out and how I am cared for as a patient. They are fast and efficient and are very nice. My nurse Alvean is always professional, fast and friendly and Jocelyn up front is fast and efficient and makes sure she answers all the answers needed. I will drive 15 mins from my house just to receive great treatment.','2020-02-06 00:06:32.899000','2020-02-06 00:06:32.899000',5,'Angela S','https://lh4.googleusercontent.com/-ENunuEZag3o/AAAAAAAAAAI/AAAAAAAAAAA/FJZOaVwUlpo/c-rp-mo-br100/photo.jpg','16389487648212004696',22623),('AIe9_BFMK6FB7k24ANEBV5CospTTGbySvIflPF2c83DwdxXmfFMUmH51lXjOSiB5Io386JziuvBo3WRBU7YSoEv4aqLdm4XSuD8jiicxU2b8gz9IQLCSG6M',NULL,'2020-02-12 23:38:47.187000','2020-02-12 23:38:47.187000',5,'Kensi Bledsoe','https://lh5.googleusercontent.com/-4wfnQb8ac7A/AAAAAAAAAAI/AAAAAAAAAAA/ui598__tDHk/c-rp-mo-br100/photo.jpg','16590124370714063921',13858),('AIe9_BFMK6FB7k24ANEBV5CospTTGCKE2KQ9cB3fyjsKPDrA7cYQc3cbNDzu1jDk2WGu-QNiPWqs0U3a_t1Syh-fYIgma3mNjXFwCD11h2tdIXv-FxG179c','Very great service. Was seen in less than 10 minutes, all the staff were nice. I was treated and was given information how to make sure I got better and sent home in an hour. I definitely reccomend this SignatureCare.','2017-10-06 16:49:26.225000','2017-10-06 16:49:26.225000',5,'Kailean Hunter','https://lh3.googleusercontent.com/-g9bObdMa91A/AAAAAAAAAAI/AAAAAAAAAAA/i-M_am1tRVk/c-rp-mo-br100/photo.jpg','8918455867446117794',9350),('AIe9_BFMK6FB7k24ANEBV5CospTTGd9dOweLyos6T9AsL7XNukjHX9EqUGh-pPCciS3IzYCWTT07_Mcfe6RxHpuOiq1H6hstaK8bx343k2ZaV92M-p323I4','I had been fighting a sore throat for two days. Because I have an important appointment for work on Wednesday the 25th, I decided to have my throat looked at so that if I\'m contagious, I won\'t infect others. Also, I was tired of the pain when I swallowed. The Center got me in almost immediately and the process began. My vitals were taken and my history was recorded. It all took less than 5 minutes once I got into the examining room. Dr. Lingan could not have been more caring or professional. He gave me the appropriate medicine to address my throat and said to get back in touch if I continued to have problems. My overall experience was outstanding. Kuddos to Nurse Christina R. and Christina C. at Registration. They are all part of a wonderful team!','2018-04-24 21:46:09.441000','2018-04-24 21:46:09.441000',5,'Stephen Garnett','https://lh3.googleusercontent.com/-hrkz9e5xOpU/AAAAAAAAAAI/AAAAAAAAAAA/vDiiz-nV6Xo/c-rp-mo-br100/photo.jpg','16891069708558046635',4484),('AIe9_BFMK6FB7k24ANEBV5CospTTGhprB63nOaJZwptr8IElTGNUN4MrjiMxsiWaIshh73URYswTT48HPmhbKnubhf4RdqfSo6G-eiJutgqeof-ss3Sm2Ak','I got on the spot service. Everyone was very good at there job n very nice. Very up to date facility. ','2017-04-16 03:05:26.304000','2017-04-16 03:05:26.304000',5,'Bea Behrens','https://lh3.googleusercontent.com/-z_SZW_OUdz4/AAAAAAAAAAI/AAAAAAAAAAA/6nlrAiYQRaY/c-rp-mo-br100/photo.jpg','16590124370714063921',4008),('AIe9_BFMK6FB7k24ANEBV5CospTTGk2ZzyvEYb1xtNRtxvpUl5vfGX4tWZAZ9PdhvImePwb5bXGXeGkZBbASZV3Xro91xUK2HVMEm4xUL4EFJQVGfuFKKhY','Very friendly staff. Carly made sure my check in and check out time wasn’t prolonged. Dr. Akunyili diagnosed me and prescribed me with the proper medications. My nurse Irving was funny and helpful in time of need.','2020-01-14 06:31:56.800000','2020-01-14 06:31:56.800000',5,'tyjanae smith','https://lh4.googleusercontent.com/-y7W4-MjiI68/AAAAAAAAAAI/AAAAAAAAAAA/wK7V97P_ahI/c-rp-mo-br100/photo.jpg','12541597562633926366',9662),('AIe9_BFMK6FB7k24ANEBV5CospTTGrSpzsJBVObRkZYAAAcNsuBD6U8WVIXBiaCanQt9Qo1wJ01VxiIM7kYK0E7DRSaDkWT4CWdX1s2hGrfHLuMj6vk2tdI','Great friendly, knowledgeable staff. Very caring and professional. I came in With a skin problem and was sick and the staff quickly took care of me and even checked up on me in the days following of my recovery.','2017-08-19 03:08:44.655000','2017-08-19 03:08:44.655000',5,'Rick Nunley','https://lh4.googleusercontent.com/-8YLi2_QJW-Y/AAAAAAAAAAI/AAAAAAAAAAA/j8NZ4Vxj57E/c-rp-mo-br100/photo.jpg','16590124370714063921',3959),('AIe9_BFMK6FB7k24ANEBV5CospTTgs1wuRD98XcciMA5Kg3WjdZyVE_SeBPFrWPAPc9TtwFk0hU3G9gwjVU4i-vBmK1iy2vZOE95-kR9FGRJSm9QqgIGmG0','Took our son in on a Sunday night. He was seen very quickly. Great care by Dr Diaz and staff. Would come back for emergency care.','2019-09-30 02:07:14.909000','2019-09-30 02:07:14.909000',5,'joe keeler','https://lh6.googleusercontent.com/--u2axKIo1a4/AAAAAAAAAAI/AAAAAAAAAAA/KxSyTCq1hxQ/c-rp-mo-br100/photo.jpg','13486358490203335051',800),('AIe9_BFMK6FB7k24ANEBV5CospTTGW-fHkALagWwMRY7FUhqFb7lCV-eyxpwH8ixObwTqV1oEBZbUXk5wV34XYDunBgNUwzcBdIXFzdeVcqnhbbaEvbjcxg','Absolutely most professional emergency care experience I have ever had. The facility is extravagant and breath taking. All of the doctors and nurses that helped me are very nice and professional. I am in Killeen for work but if I ever need to go somewhere to get checked I will definitely come back here.','2019-09-14 16:02:50.942000','2019-09-14 16:02:50.942000',5,'Dennis Buchanan','https://lh5.googleusercontent.com/-R_v9WmEDt-4/AAAAAAAAAAI/AAAAAAAAAAA/FMhrOvDQ6Gk/c-rp-mo-br100/photo.jpg','2694018788013845459',6066),('AIe9_BFMK6FB7k24ANEBV5CospTTgW4OlylCK8bAcfgx1YR28KieEFWej_hizZQfvtjYMx25-R0LIbjaTWyc1Fz-_jY-rFNAW7Q_MAkKlo8iFdJswDNR2oc','Very professional place. Staff were amazing!','2020-03-14 06:51:03.585000','2020-03-14 06:51:03.585000',5,'Darrel Davis','https://lh4.googleusercontent.com/-oQaUKsqwyNU/AAAAAAAAAAI/AAAAAAAAAAA/huDTYc4Kmsk/c-rp-mo-br100/photo.jpg','14748677429039074158',20975),('AIe9_BFMK6FB7k24ANEBV5CospTTH7U1lG0HRyIWhJwtzmgjls0LvQZ1VeSirmX1KiWByFJ7vFJAxgof_m0jXYBFQQEMLuURu6GNTmp5k47VVdCMXdtIOmw','Great Nursing staff!','2020-08-22 20:43:46.903000','2020-08-22 20:43:46.903000',5,'Christopher Dupree','https://lh3.googleusercontent.com/a-/AOh14GizLuf3VPFjWabUm0X5LgDQrq3MxYay91A4MV_Y=c0x00000000-cc-rp','14748677429039074158',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTHCQYJmJgCRdT4BU74ovRmaOn72ZHXOprcnxvZHxZj8tAvvknz3l0CBnZPGKy9MPHIjTaVCxuMYf_oeBtCBZvvZPtApg','Checked in this morning and received excellent care. Shellie, Jesse, and Dr. Elsbecker were quick to get me diagnosed and find an appropriate method of treatment. I would highly recommend this place if you are wanting to be treated quickly and received the best care. Thank you Signature Care!','2019-08-19 14:07:42.765000','2019-08-19 14:07:42.765000',5,'Kristy Reissig','https://lh3.googleusercontent.com/-NpTeNWJlYkE/AAAAAAAAAAI/AAAAAAAAAAA/PPeBt-pE2jQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4217),('AIe9_BFMK6FB7k24ANEBV5CospTTHcSYML2r-uu79lPrEsR9V00Enfl5xUgLnxlRLkY3MfEINQcYHzUwBWVEA65xw0wPKFAig-ozVznFmNO3UvlCC8kVxuc',NULL,'2019-03-20 14:01:16.300000','2019-03-20 14:01:16.300000',5,'Stephen Brown','https://lh6.googleusercontent.com/-GktK5LDQdW4/AAAAAAAAAAI/AAAAAAAAAAA/D41lsldtd5k/c-rp-mo-br100/photo.jpg','8626688543755174284',8522),('AIe9_BFMK6FB7k24ANEBV5CospTTheneeTqL4mgBtcYHPm31hysxF5eFlDgbG1DyTYGe2-b405tpxyWE-F2FBumf3Lt1bYTURbzcB1LdoYGO4TjKcNE5NXI',NULL,'2020-08-11 10:46:19.693000','2020-08-11 10:46:19.693000',5,'Johanna Holguin','https://lh4.googleusercontent.com/-pQW1g_EYrFk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn1FbImlKbfLuE3Iun8PQJEN9n7qA/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23031),('AIe9_BFMK6FB7k24ANEBV5CospTThEvH949cgoBmGcthRVby1aUYwMVZ25JsWNKgqxV98uzSLKx8-8_WvndxaAitudbGB1cKomfWIvRCx7gEYeinR9TaRh8',NULL,'2019-07-27 12:20:17.425000','2019-07-27 12:20:17.425000',5,'ellysa english','https://lh3.googleusercontent.com/-MrL8SMy49gk/AAAAAAAAAAI/AAAAAAAAAAA/w6hD4u6M1Xk/c-rp-mo-br100/photo.jpg','16590124370714063921',3277),('AIe9_BFMK6FB7k24ANEBV5CospTThgi3OHU8r9rQ3XpfVGXwOIaHHxr5eVuKqM4XntreKiJGTqmCi0Zrc0YWgC-yyhsHkBxXiTOnuHpXBn_sdvLUg9NXKyQ','Harjai was great and so was all the staff,visi visi my daughter and slipped and back went out, took great care,very speedy,thanks','2019-06-16 23:17:47.150000','2019-06-16 23:17:47.150000',5,'Chad Hopper','https://lh5.googleusercontent.com/-Mt50XynyQIs/AAAAAAAAAAI/AAAAAAAAAAA/sZKMPOI8qxM/c-rp-mo-br100/photo.jpg','16590124370714063921',3348),('AIe9_BFMK6FB7k24ANEBV5CospTTHHNbNbJbo7YEpuP6QR2vorQBeAOOoB7xKM4kAfTEVrw-dAcwec5Dfi-QmayaOcnSMYaymG_xHYPQZqdzMVpVshzpxt4','Dr. Patel, deanna, John and laura were all helpfull and very kind. clean facilty, and registration was was easy. I will definitely be back in the future for any of my er needs.','2018-09-08 19:17:31.350000','2018-09-08 19:17:31.350000',5,'Rachel Gleason','https://lh4.googleusercontent.com/-6mf1oBdEST4/AAAAAAAAAAI/AAAAAAAAAAA/waTzWO24kBc/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',613),('AIe9_BFMK6FB7k24ANEBV5CospTTHkcv_VMMN2AZQeA6TAq2AhOxgxg2VV8vaEZnILdt7SxB2IIt5AAN5xiwJCf_sZ3-XeAErVQtAYHcIBm3a-ltPoVxTPI','Had an excellent experience at the clinic. My husband and I were taken good care of by the staff in attendance. Special thanks goes to Karen, Laura, Betty and Dr. Chiang . We recommended our neighbor Pat Meurer to visit the clinic when he got sick.','2018-01-09 01:38:10.242000','2018-01-09 01:38:10.242000',5,'latifa khan','https://lh3.googleusercontent.com/-9EAo6J_Hv3A/AAAAAAAAAAI/AAAAAAAAAAA/ffdKnJq2sf4/c-rp-mo-br100/photo.jpg','17394740196501090048',4904),('AIe9_BFMK6FB7k24ANEBV5CospTThlCqBdmE2vmROWnzY1l5JcLfU4zrR36LLFTo1wSFpi1ILo6WzBGb3g-b99XJZt3Z4dqn5Al_dF0wrxhTLUUeSovkXFA','Fast efficient professional kind and CLEAN!','2018-01-24 18:32:36.101000','2018-01-24 18:32:36.101000',5,'Rita Maniha','https://lh4.googleusercontent.com/-XMnKlhMt7UY/AAAAAAAAAAI/AAAAAAAAAAA/mdy4Adv_8-Q/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7734),('AIe9_BFMK6FB7k24ANEBV5CospTThQ34zPm8Ig4V56mRB4OyqGAfO45OjBX_6uQg6FpP0XCkSGTWLxsI2ex6ao_Na_7SYwGgjRDBLen0SOxqqYWntch80D4','I had the opportunity to visit this wonderful facility on Friday and ended up needing to have my gallbladder removed so they put me in observation overnight before transferring for the surgery. This place has the absolute best care and best team! Dr. Elsbecker was quick to diagnose and treat my symptoms and get my pain under control. Nurse Shelli, Aileen in registration and techs Andrew and Carolyn were attentive to my needs and made sure I was comfortable and taken care of. I was even lucky enough to meet the night shift and nurse Gabe and X-ray tech Roderick were just as nice and caring as the rest of them. I thank you all for taking such great care of me. It’s never fun being a patient, but this place felt more like family taking care of me at home. I’m very grateful to know you all.','2020-01-05 15:08:24.974000','2020-01-05 15:08:24.974000',5,'The Best Friend Channel','https://lh3.googleusercontent.com/-XygcU_hcRac/AAAAAAAAAAI/AAAAAAAAAAA/QyVo9o0tteg/c-rp-mo-br100/photo.jpg','16891069708558046635',4095),('AIe9_BFMK6FB7k24ANEBV5CospTTHSjIhONza5BprmAh5FOwHVUxvpHypVXnmKlZkJWmKY92UoQgtw1VLbXR7wgG1PVdohpvCnZqjC9U0zBwpAAI5b8PTFE','Amazing staff, very clean and got me in and out super quick!','2020-05-18 01:31:08.976000','2020-05-18 01:31:08.976000',5,'Samantha Beiter','https://lh6.googleusercontent.com/-Q3EMpnjUBIE/AAAAAAAAAAI/AAAAAAAAAAA/wMgfE1e_Gws/c-rp-mo-br100/photo.jpg','16590124370714063921',22683),('AIe9_BFMK6FB7k24ANEBV5CospTTHVosyOvs6c1bvdRAmBmWDY0sw7DODqrn7rT-Nk886WHvYRzHZfA3JtKPya9d1b_OtLlOYzXLCue7J7EMRyxmXAOCccQ','They were very helpful and worked very quickly to find out what was going on with my boyfriend we will be using them again.','2019-03-07 01:02:06.441000','2019-03-07 01:02:06.441000',4,'Chrissy Chase','https://lh4.googleusercontent.com/-I3Ee0PN6M_k/AAAAAAAAAAI/AAAAAAAAAAA/KHr3nTgPu0Y/c-rp-mo-br100/photo.jpg','17898197009688164559',5818),('AIe9_BFMK6FB7k24ANEBV5CospTTi-7ZfJgK-qXw5SKp-IIWOtav7HzaaJX8ykwueG-BEGREHCDYZUfYuSOse_OtQC61EYJq924ySE9Y4WZ12QbHenIALtc','Second time I’ve visited this ER in the last few months unfortunately, but the staff is very welcoming every time I’ve came with my child. This time around doctor Plante was our doc and was very polite and so was the nurse Keira and tech Daniel. The facility is clean and they do a pretty good job of getting you in and out. I would definitely recommend this ER.','2020-02-20 00:55:53.211000','2020-02-20 00:55:53.211000',5,'Weza K','https://lh6.googleusercontent.com/-q0nSqDTNbYc/AAAAAAAAAAI/AAAAAAAAAAA/6f9_F3oF-zs/c-rp-mo-br100/photo.jpg','6521947413723274945',14572),('AIe9_BFMK6FB7k24ANEBV5CospTTi1HQzt8Bwej2DjHcaiptcpD6lq4Eh3tXM0fQF3IfHmDkJ4kVvpaCi_HcFv8mtumjJ8ZSeizefCF2l_vS6riLiIyPyxA','Great customer service and great team! Was there around 130am and it was super fast little one was feeling better! Thank you!','2019-01-15 18:36:15.297000','2019-01-15 18:36:15.297000',5,'Alma Castillo','https://lh5.googleusercontent.com/-HodVJI1UVcU/AAAAAAAAAAI/AAAAAAAAAAA/1BNJgpgMOss/c-rp-mo-br100/photo.jpg','13486358490203335051',1113),('AIe9_BFMK6FB7k24ANEBV5CospTTIA62hV629DOD0lHV7LUH0hj-vNTLiDK2u-xAcbrN85rPEUurQmkHFGMbZR75ehonSbac3Xycx5x5UKVdRdKvgP_yaC0','Jerry and Taylor were extremely helpful and offered great hospitality, care, & jokes to lighten the mood. Top notch.','2017-03-11 04:05:11.805000','2017-03-11 04:05:11.805000',5,'Matt Binnicker','https://lh4.googleusercontent.com/-6WxbUeGoTjM/AAAAAAAAAAI/AAAAAAAAAAA/QOZ38Hfqzgk/c-rp-mo-br100/photo.jpg','16590124370714063921',4034),('AIe9_BFMK6FB7k24ANEBV5CospTTIAVd42EIigC8U77X0DU19SXxSLNeqPfEl-7ag5m7t8jFEo7p8o4PC5YXu7kP19bzpYB3ujpPJVSEA2qiQHfU8XIWlMc','Hayleigh S was great and awesome.','2018-08-31 00:46:01.006000','2018-08-31 00:46:01.006000',5,'Anthony Francis','https://lh4.googleusercontent.com/-DK8vs8i3ROo/AAAAAAAAAAI/AAAAAAAAAAA/Hcpf7gQArLs/c-rp-mo-br100/photo.jpg','3511292162159714121',7606),('AIe9_BFMK6FB7k24ANEBV5CospTTic934SCiYXq53Bd3Ioveal37PV0-1vYUATFmTeErqCp5H1SRFLla2iNncNSO4By7njvSbKmfNQxJXMKN6MAKBwzUr6w',NULL,'2020-02-17 13:42:10.326000','2020-02-17 13:42:10.326000',5,'LaShardae Harper','https://lh6.googleusercontent.com/-eeFIjum0o08/AAAAAAAAAAI/AAAAAAAAAAA/yZQXMEKV4g4/c-rp-mo-br100/photo.jpg','3272657195432704501',14354),('AIe9_BFMK6FB7k24ANEBV5CospTTID3rE8AhqSJzqH4-JwjdYJjPV9Wsxhu-TA4jGQRGVdbzSF3d9Jjjw_-no_-QVc4YuzB71dAipN8heocFve863StzDf8','Ended up getting strep throat but came to this care center for the first time and was greeted very nicely by Aileen. Quickly made my way to the back and Adam, Chris, Linda & Dr.Jones took GREAT care of me. Made me feel better about getting the most painful butt shot ever 🥺','2020-02-02 21:55:11.342000','2020-02-02 21:55:11.342000',5,'Lizzie Benson','https://lh6.googleusercontent.com/-U16qi7b5rlk/AAAAAAAAAAI/AAAAAAAAAAA/gQ_tlBvdSKY/c-rp-mo-br100/photo.jpg','16891069708558046635',13962),('AIe9_BFMK6FB7k24ANEBV5CospTTifST00LpEwBBQFBMdJJRDXLAbSsqUIwNQ7Xban9kRu5fM1ZKRuOG2I03pR2yCM21aylPl917hLgxHFSXz300eP5Y6UI',NULL,'2019-08-24 17:38:50.299000','2019-08-24 17:38:50.299000',5,'mattison withers','https://lh5.googleusercontent.com/-gBxBUzgNcEg/AAAAAAAAAAI/AAAAAAAAAAA/MDFZo2zfM5s/c-rp-mo-br100/photo.jpg','3272657195432704501',6906),('AIe9_BFMK6FB7k24ANEBV5CospTTigGJZ2nsTCd_agqcQyzcUgD8Cy1ueCxk4OQFef5KnATKcKh_9zeVuz0drb7fIEec_LsLkOc3p7VNpKmPcKc2R-mXIgg','I came in for a COVID-19 test, and everything was really smooth and easy. The nurse did the test so quickly it was over in seconds. Everyone here is really friendly and nice.','2020-07-25 19:34:52.982000','2020-07-25 19:34:52.982000',5,'Debbie Rogers','https://lh5.googleusercontent.com/-1L0oV0jPdtY/AAAAAAAAAAI/AAAAAAAAAAA/9PFDq8mMuSc/c-rp-mo-br100/photo.jpg','16590124370714063921',22642),('AIe9_BFMK6FB7k24ANEBV5CospTTiiBba9k07qAUzg5ksbD7NBcz-Y8JP3g8as7XWZhr94gzqgXkiTsIraeLGQbEylMkvzROxaUi0L3-GNwqfGD_mZG7-34','My daughter was sent home from school running a fever of 102.7. I knew it was too late in the day to get her seen by her PCP and I did not want to have to wait til Monday for her to be seen. Sindy at the front desk welcomed us as soon as we walked in and got us started on the paperwork. Before I was even finished her nurse Melissa was there to take us to the back. Between Dr. Miller, Melissa, and Diem my daughter was very well taken care of. They were very thorough, kind, and seemed to really care about making my daughter and I comfortable and getting her better. Thank you very much for making a scary experience as nice as it could be.','2019-03-02 14:59:33.633000','2019-03-02 14:59:33.633000',5,'Tareena Guerra','https://lh3.googleusercontent.com/-XoMQ47gA_ZM/AAAAAAAAAAI/AAAAAAAAAAA/uD4H0PN4zHE/c-rp-mo-br100/photo.jpg','14567670160750071148',1376),('AIe9_BFMK6FB7k24ANEBV5CospTTIIgJ4iExL8ehbjare-7vypUeuDB0b5jIFoBA169PJOcCCyOy0zzYBgsFZmGmgKX61Amec1tfzy9JhDM5LEgVh1EA9j0','They were so fast getting me in to be seen, everyone was so sweet and helpful making sure I was taken care of ! I’ll definitely be going back','2019-08-27 13:10:39.075000','2019-08-27 13:10:39.075000',5,'Sabrina Snider','https://lh3.googleusercontent.com/-76boJ0s-4Ak/AAAAAAAAAAI/AAAAAAAAAAA/YEQPC0Tv8A4/c-rp-mo-br100/photo.jpg','3272657195432704501',6903),('AIe9_BFMK6FB7k24ANEBV5CospTTiJc6QkWHvJyMV5r5NYRsS-Jjys191XAzAMq0xmcUXAv7p-RrDoXYEEOVt56GyjWapP9v2HV23TVSCuF2HfEBTNf08jc','Very fast and efficient. Great facility, great people. Very helpful\n\nKimberly and Jacob were very helpful and nice. Very considerate.','2017-02-25 20:36:38.031000','2017-02-25 20:36:38.031000',5,'Mark Eby','https://lh4.googleusercontent.com/-czfNNUBomr4/AAAAAAAAAAI/AAAAAAAAAAA/xdgGsVpRIkE/c-rp-mo-br100/photo.jpg','16590124370714063921',4049),('AIe9_BFMK6FB7k24ANEBV5CospTTILGwnNSohzU_insRNAqSkcROSv5oMVbZutHOp-ek7p0Zalk4h4MWv3pQbYZAxcANHT2pXO0yrMr8Gx4qJuJkNiVdHhQ','Dr Das, Erica, Sam and Brad were awesome. Great service, great care!','2020-03-10 14:00:48.057000','2020-03-10 14:00:48.057000',5,'Beth Sharma','https://lh3.googleusercontent.com/-hNsQ5EXZISQ/AAAAAAAAAAI/AAAAAAAAAAA/7MbEmpHdJFU/c-rp-mo-br100/photo.jpg','14748677429039074158',18846),('AIe9_BFMK6FB7k24ANEBV5CospTTimfGyr8HWkUGbeawYj4zNfz5oSZCYhofv6PaDgng8FMdz_-H0IoRwS3vx9k6dxHETl0Uck0OMPEDK8DQbmCg3Q_CKPA','I don’t leave reviews, but this location was absolutely amazing . The entire staff was very kind welcoming , I came in at 4 am and left at 8am . Saw both shifts staff and both of them were great . My family also felt very comfortable. I highly recommend this location, very nice and clean . \nThank you for helping me out , if I went elsewhere I wouldn’t have gotten the care I got here .','2019-05-13 20:07:35.937000','2019-05-13 20:07:35.937000',5,'Valeria Medrano','https://lh6.googleusercontent.com/-ur25Jm4l90Y/AAAAAAAAAAI/AAAAAAAAAAA/_OjHMsWmb-I/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTinpbjOkZdv7gCfC68j4tH90nCdzKGFFRBhZ4bqjNFTKzFrhRuZhLOwfh-eoHSJGR4PhscYdxa0ntFc6m1snzuk21eWM','First time here and this has to be the best emergency care I’ve ever been to and the staff is extremely nice.','2018-07-27 15:00:09.698000','2018-07-27 15:00:09.698000',5,'Amber De Dios','https://lh4.googleusercontent.com/-qZ_lt5iwP9E/AAAAAAAAAAI/AAAAAAAAAAA/41b-oyZhQ2Y/c-rp-mo-br100/photo.jpg','16891069708558046635',4456),('AIe9_BFMK6FB7k24ANEBV5CospTTiTRGo4onH36DN2oeudxs5RlSNmt05mhLHc9AvewfX78sSZtWI-8nP1jrdkyXb0sLpGlMr3E62991nvX0qGRgB4jMNCA','My daughter and I were involved in an accident a week ago and were not receiving the service needed at another location. Left still needing assistance my daughter suggested Signature Care, only based on us driving by. The service we received was great. Employees were thoughtful and considerate. I only wish this facility had an MRI machine in addition to or instead of a CT machine. \n\nBig shout out to Dr. Henderson, RNs Mollie and Gary, radiologist Eric, and Tobie in registration. 🏆','2020-01-01 06:09:35.416000','2020-01-01 06:09:35.416000',5,'Roslyn Price','https://lh6.googleusercontent.com/--baLAQlpL2I/AAAAAAAAAAI/AAAAAAAAAAA/fNljhKu8FrM/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',6809),('AIe9_BFMK6FB7k24ANEBV5CospTTIwDGXyxGu6_Rakgl0jtdH6o6ckiTdB7xkwAQ_WDoSDvvwrbMoGXpbBzgb6-VgPBvTc-UiLqclWmYkYZHaD3pbwYV85I','Fast service and great staff','2020-02-29 02:23:01.826000','2020-02-29 02:23:01.826000',5,'James Wright','https://lh6.googleusercontent.com/-OTi3hlE9354/AAAAAAAAAAI/AAAAAAAAAAA/q_MVb3iek2k/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',13327),('AIe9_BFMK6FB7k24ANEBV5CospTTj0HMGk3A0WLDfsWDCw-dovQ8kJ5s4xVRpBolDcNds-1xA6MMgIslcvjV3fay6xWsgcTzoWj7NyeQqSD2LUh-XOrOejc','My girlfriend has been sick for the past two weeks and everyone here was so helpful! Dr. Ybarra and our nurse Blake were fantastic. And Son Le and Delicia helped get us all set up. Thank you!','2020-01-24 20:08:37.044000','2020-01-24 20:08:37.044000',5,'Charles Frizzell','https://lh4.googleusercontent.com/-83ZOaLYDrU0/AAAAAAAAAAI/AAAAAAAAAAA/8DccTxRlgB0/c-rp-mo-br100/photo.jpg','8679688254631342173',10337),('AIe9_BFMK6FB7k24ANEBV5CospTTj7IK_bBkpYsVNx8jIfMrYm1buU4iJOWinGCuHvBgBLEhEe19JZ63Rs_nrvJd9sWd-hFh9g6ZwMKAOjUpvjZKzVFk_N0','Place is nice. No wait. Cecilia at the front desk was very helpful and quick to get me checked in. Brian H, Brandon and Bryan D all came real quick to check my bp and hooked me up with a gatorade. Doctor Jolly was quick to diagnose and treat me.. bam.. in and out in a half hour. Nice system they got here.','2020-02-18 03:19:26.991000','2020-02-18 03:19:26.991000',5,'Nader Saadeh','https://lh6.googleusercontent.com/-6vC0TcExcWU/AAAAAAAAAAI/AAAAAAAAAAA/d4VhUE8ai-Y/c-rp-mo-br100/photo.jpg','14567670160750071148',13524),('AIe9_BFMK6FB7k24ANEBV5CospTTJCEldU2yZOw278Vb7nwbidlyElTYdGMSc8nkZ7mO_6LedMmmf3qJLtZF7_13fqcA_iVkfPNDXHLMahUrTPQG-6nq7q8','I cannot begin to express my satisfaction with the staff and services at Signature Care. From the front desk, to the nurses, and the doctor. Each and every one of them was courteous, professional, and made my visit as comfortable as they possibly could. My wait time in both the waiting room and the exam room was short . Dr. G & the cardiologist on call put me at ease and explained everything. \n\nThanks!!','2020-01-17 11:06:31.093000','2020-01-17 11:06:31.093000',5,'Martha Johnson','https://lh5.googleusercontent.com/-xAvCxzCMFCM/AAAAAAAAAAI/AAAAAAAAAAA/bT2ke2yRT2o/c-rp-mo-br100/photo.jpg','14567670160750071148',10037),('AIe9_BFMK6FB7k24ANEBV5CospTTJEpYaI7SluCx7Hqo2fDTVaCBm6TDxmEiJsFkTJxU_fe-2fSJvzU6YjbXEGSOSh5PDxerXNnWlwigX_MPJsu1Pgz_v1k','Dr Estévez was very thorough, helped us understand the diagnosis and treatment needed.','2020-03-04 04:40:20.732000','2020-03-04 04:40:20.732000',5,'yeci baza','https://lh3.googleusercontent.com/-I0PTwJiuU2w/AAAAAAAAAAI/AAAAAAAAAAA/B5yApI7EkYQ/c-rp-mo-br100/photo.jpg','17898197009688164559',14112),('AIe9_BFMK6FB7k24ANEBV5CospTTjqbhWybbcpOhA03yYe34VLqf-CGq0UE9o21nCTWPrKmXwCVd7Px3WJuJTZr-orCt8lTpwG8jfMLdV9Zjn9CH3VO1CEE',NULL,'2019-05-04 14:40:25.924000','2019-05-04 14:40:25.924000',5,'Jezco Rentals Inc.','https://lh6.googleusercontent.com/-CPsUrZb5spc/AAAAAAAAAAI/AAAAAAAAAAA/Ta4iJypwPWg/c-rp-mo-br100/photo.jpg','13486358490203335051',1022),('AIe9_BFMK6FB7k24ANEBV5CospTTJr4feiZeCHgjwuq80izZJ-uz-C7b-xyNvTdYIF7QPQhrf6RBR7LMcEUadZpsQD4fBk_Mwe7W6eL6hNX7Xh4vQSLFz0w',NULL,'2020-08-10 03:54:31.194000','2020-08-10 03:54:31.194000',5,'Jaa A','https://lh3.googleusercontent.com/-2Wl6KOEeqvo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl4QiGFoeUGv6EI_SSjluFl_6y9YQ/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22503),('AIe9_BFMK6FB7k24ANEBV5CospTTjwbW14rLoa1Qti3LlIh9GxOzCJQFCyDtZgBFnYegB-36ZV1dejCwRMsyfvMX_0SDJgnapHj2iCZK_BEnBmGWDHtd4oA','Very nice people. Your ER to go.','2018-08-27 00:54:49.349000','2018-08-27 00:54:49.349000',5,'Xuan Kuai','https://lh4.googleusercontent.com/-t99YmY3VN_4/AAAAAAAAAAI/AAAAAAAAAAA/b7xVptJrypo/c-rp-mo-br100/photo.jpg','14567670160750071148',1547),('AIe9_BFMK6FB7k24ANEBV5CospTTJxtWMNNLGmoLJg52SfDprYEauJMw9XDZHCBkAUPqme4ToZP0S9EwMjJwz36tHwNMPpKl_scrzCSzLxXkPRRqgiUwXLw','Very quick and friendly staff. They were very understanding and patient. Thank you so much','2018-01-09 02:52:19.046000','2018-01-09 02:52:19.046000',5,'teresa estrada','https://lh4.googleusercontent.com/-hgQ-dW_JyZ4/AAAAAAAAAAI/AAAAAAAAAAA/_rlGZAIDNhk/c-rp-mo-br100/photo.jpg','16891069708558046635',4529),('AIe9_BFMK6FB7k24ANEBV5CospTTK4MxLh04waqAItOYBlwuyziwo5jwO-fwMZ16nUC8RPBh0YD1B-HpB_bSB4nF-q6wW9GQuOBM5F12zOFNM3TpCuoqaFo','It was so fast and easy the doctor made me feel so comfortable!! Explained everything they were doing !','2020-01-29 19:59:27.326000','2020-01-29 19:59:27.326000',5,'Megyn Rowdon','https://lh4.googleusercontent.com/-JaiLaw4Lzi4/AAAAAAAAAAI/AAAAAAAAAAA/ajoP2A94SuM/c-rp-mo-br100/photo.jpg','2694018788013845459',14262),('AIe9_BFMK6FB7k24ANEBV5CospTTkFJ14WPS89lvOVXBVlVEaFNoSZ3E6zl9rnV0jS3fNE8Rf_l_blGC_6xVtqCQG8EUPcrjaVKSjFsM13pKcW_uKNzHXLY',NULL,'2019-10-25 02:58:30.432000','2019-10-25 02:58:30.432000',5,'ANGELA JACKSON-MOSS','https://lh3.googleusercontent.com/-nadp5kSg3yQ/AAAAAAAAAAI/AAAAAAAAAAA/Zc6seMeHTsQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5479),('AIe9_BFMK6FB7k24ANEBV5CospTTKIun9PBziIaO_1ufR7k4ql2nmy2RE6WPNmE-4JVHye1uyFRkDNcY2aDagdLtONSjoGwnNykmdb6MbIxDR5y34gwM-c0','Fantastic customer service, and the doctor’s diagnosis was on point! I started to feel better the next day. Everyone was so considerate and kind, especially at the front. Very much needed when you are not feeling too well.','2020-03-04 21:26:04.619000','2020-03-04 21:26:04.619000',5,'deniz','https://lh3.googleusercontent.com/-_bXdnH2Ud9g/AAAAAAAAAAI/AAAAAAAAAAA/9hBAJxWRFtc/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',14710),('AIe9_BFMK6FB7k24ANEBV5CospTTKkedO65B7VG7Le010RFg0Ubru6WzH6fgGgbzkeU1bUSL1EW9bqPGPKoeUryVmtngTcOekRKFHo78GvL2Bzw5WoTbCbE','Awesome staff!!! Christina at the front desk, Christina R my nurse and Dr. Jones were amazing and provided excellent care. I will never wait for hours again at a traditional care facility. If you need medical care, try this location out. They are the best.','2018-02-28 00:25:20.144000','2018-02-28 00:25:20.144000',5,'Greg Williford','https://lh6.googleusercontent.com/-RZDub2wXc-s/AAAAAAAAAAI/AAAAAAAAAAA/EMkoH-c7Yek/c-rp-mo-br100/photo.jpg','16891069708558046635',4505),('AIe9_BFMK6FB7k24ANEBV5CospTTKL8e1BPEfkK040-wwo6-noqXb9nmYWWPGotej7UaqOsLI2yVHdvINHvrBENogEWdWm8dzMvhKl-Se4HJJBxa2JCJOdo',NULL,'2020-01-30 05:48:38.933000','2020-01-30 05:48:38.933000',5,'Andrew Williamson','https://lh5.googleusercontent.com/-goV_eC2JxU4/AAAAAAAAAAI/AAAAAAAAAAA/meysGy1eR3w/c-rp-mo-br100/photo.jpg','8679688254631342173',14774),('AIe9_BFMK6FB7k24ANEBV5CospTTKM0U-P6K6lz0RXcRdKoeBgnJmCWPjAXx96qRHj1quZqVS_8SUFqADcz7YJ1J8iOB5XFoEU4xyGxBG_LF2v_GKBZSg7M','Came to the clinic late at night very nervous about my situation but the receptionist (Rashaad and Sindy) were friendly and upbeat considering the time and Dr Wang explain to me in detail on what I should do. I left the clinic in relief!','2020-02-07 05:29:37.797000','2020-02-07 05:29:37.797000',5,'fernando marquina','https://lh4.googleusercontent.com/-e-EReFSsl34/AAAAAAAAAAI/AAAAAAAAAAA/0PAV5Mn_UvY/c-rp-mo-br100/photo.jpg','17394740196501090048',14026),('AIe9_BFMK6FB7k24ANEBV5CospTTkNNgny6fkUbFzSERWZZZxtmOKk5RdngfEBg5AOCVKXrVx8ReA-7TxE4JHwiM4TFGqnalJifEjv6DkGHgsrwHBk3cOrA','I am a female.come to this place at 11:30 pm 06/24/17 try to use restroom. Since I been went to other gas station in this area they are refused to let anyone use their restroom. So I thought a emergency care will at least let me use restroom because they are doctors and their main thing is helping people. But the restroom door locked, I ask the security guy can I use restroom I can\'t hold nomore. He said sorry we only let our customer use . I ask him why , why they and other businesses won\'t let people use restroom. He said because lots homeless people around here. So all the businesses don\'t want those homeless people come in for cool AC and use their restroom. OMG I\'m shocked. And those businesses people are Christian? I feel shame for GOD . Anyway I finally find a Kroger store and use restroom. So when daytime out there is so hot and they will not let homeless people come in just blow a Cool AC and won\'t let people use restroom. That\'s human being???? I really mad today I will share this information on media let other people knows \n','2017-06-25 04:57:20.692000','2017-06-25 04:57:20.692000',1,'Kelly Lee','https://lh3.googleusercontent.com/-B7mSN7gIkX8/AAAAAAAAAAI/AAAAAAAAAAA/7vcZ4lLQ52Q/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7808),('AIe9_BFMK6FB7k24ANEBV5CospTTkSDvsy8vsp14LThrNaqUWLqIUV7RT-46Ao2QiwdUcM6UlcU8ff1mzFum7tj1UOHHnc6yEOKT0GVe5WPWNEzJzQfKljE','I was checked in by Kendra and seen by Dr. Vakey, Jacob, and Victoria. Everyone was so helpful and went above and beyond to help me and make me feel comfortable. Would definitely recommend!','2020-01-19 07:24:40.685000','2020-01-18 23:48:58.433000',5,'Amber Molina','https://lh4.googleusercontent.com/-b4GJAIph6T8/AAAAAAAAAAI/AAAAAAAAAAA/7dwI4xPviIk/c-rp-mo-br100/photo.jpg','16590124370714063921',10057),('AIe9_BFMK6FB7k24ANEBV5CospTTKUW1whDwBTIoBCLUrFgxiCyBO9Ff4TyKkL3-EwWPePLil4Ohvn6tlw7TFcVnsg2QHk5wcO4LoPJG5GcwCtRC64tYLOk','Went in last night and was attended very promptly. They ordered tests and helped soothe my pain in a timely manner. I stayed over night and was given a plush robe and full toiletry kit. This isn’t your ordinary ER. Very nice, clean, modern facility and the doctors/nurses are great! Definitely recommend!','2019-06-13 16:35:04.700000','2019-06-13 16:35:04.700000',5,'Christina Deloach','https://lh5.googleusercontent.com/-HX9hE_CZ4iE/AAAAAAAAAAI/AAAAAAAAAAA/SKlvvFEJWOw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTkybtDFL6B72QBYRT849PDDsKhtdpWcN0FFP83rA-WDiDyJhL-OCV4equ1g7S6fftWAeDwvDuklMgx977FYzAY7_UFc0','This place was awesome! Great personnel, great service!','2019-06-25 21:44:56.626000','2019-06-25 21:44:56.626000',5,'Erika Barber','https://lh6.googleusercontent.com/-ZsFgHOVzg4U/AAAAAAAAAAI/AAAAAAAAAAA/jAFVza-84ag/c-rp-mo-br100/photo.jpg','16891069708558046635',4242),('AIe9_BFMK6FB7k24ANEBV5CospTTKZJOFGM1fKYsTVqKm9UMv0i-EzLidG3mIcFGdreRPZ5t6kaoMB5AftgA5FCxNywm_s-9z2p8Z78m1Y6O0S5S4VevgVo','Dr.Daniels was amazing as well as her staff truly caring and showed great concern. Amazing place for care I\'m glad that I came to this facility!!!Awesome job to everyone from the Receptionist to nursing staff!!!.\n\nDr.Spangler was Great very knowledgeable and caring as well as the rest of the staff Delicia, Karen and Rick this place is amazing and they genuinely care about your health!','2020-03-13 15:10:47.231000','2020-03-13 15:10:47.231000',5,'Yvonne Keller','https://lh4.googleusercontent.com/-8i-p3-UO3wA/AAAAAAAAAAI/AAAAAAAAAAA/FR2T4BwH0xc/c-rp-mo-br100/photo.jpg','8679688254631342173',21212),('AIe9_BFMK6FB7k24ANEBV5CospTTL3s8vmr3C70IqnuYtiDsoJISXIgta0PeusETBmzGKlTDOKROtvk6fR3SJ1ktvvWeSGs-f-D3ZDP6UmAlM-PNFSfsT-g','Signature Care was very friendly and quick at getting me the care I needed at 4AM. I feel so much better after only two days. Thank you so much.','2019-05-12 05:50:06.783000','2019-05-12 05:50:06.783000',5,'William Sedlacek','https://lh6.googleusercontent.com/-RVxH8JMSTuQ/AAAAAAAAAAI/AAAAAAAAAAA/SpGPphL8Hr8/c-rp-mo-br100/photo.jpg','2694018788013845459',6158),('AIe9_BFMK6FB7k24ANEBV5CospTTla_0yhW0pibLHR6awLH94yZoeFt78d-d8-1L8hKutWajHKB6ED1EZQthm8gKGBnlYoYLxVHpduJ9dsBDH5mAR0a_9Qs',NULL,'2020-07-22 07:30:04.440000','2020-07-22 07:30:04.440000',5,'Alexis Reyes','https://lh3.googleusercontent.com/a-/AOh14Gh852Szki_TtqiZ35U-5pWgIP9djtc0Bn3Whwwc=c0x00000000-cc-rp','3511292162159714121',22158),('AIe9_BFMK6FB7k24ANEBV5CospTTLep12_BsRb5sFjfmJdI2sXU5VdlyKMQzhJjVL0kvGHWCcIG994TYLK3U3TH_54xgUdIErqcJqbgJxbmnwr6ztCJP-P4',NULL,'2019-05-23 22:13:15.625000','2019-05-23 22:13:15.625000',4,'Raphael R','https://lh5.googleusercontent.com/-_mXcwsOf_7w/AAAAAAAAAAI/AAAAAAAAAAA/5quf-I8ghHo/c-rp-mo-br100/photo.jpg','14567670160750071148',1319),('AIe9_BFMK6FB7k24ANEBV5CospTTlF9ToAv4QOmeV7ShHH40UiP5T02N4BPqnU3y6vZzUoZvucH76GS5hi4q0d8013R4U_Gwoi-sQlDj5iwsxJbzJ9yCU_k','They where great and fast thanks to everyone that take care of me \n\nPhysician:lingan\n\nNurse:Amy \n\nRadiology:Kevin \n\nRegistrations: natasha & elie','2019-08-26 01:47:59.996000','2019-08-26 01:47:59.996000',5,'mechant 04','https://lh3.googleusercontent.com/-PrLJAHPxwUc/AAAAAAAAAAI/AAAAAAAAAAA/YLvv7zjqz_M/c-rp-mo-br100/photo.jpg','2694018788013845459',6079),('AIe9_BFMK6FB7k24ANEBV5CospTTLfKsgAc43DgoG14OPjdu50fOgT2c4AFzTWDQjDwAcAJk1Xze3IwOZ6Q3DVQQZsgRau8PioQZUso2j1Z4GEd3b-jg2Fk',NULL,'2018-03-07 06:39:46.500000','2018-03-07 06:39:46.500000',5,'Nafisah Hankins','https://lh5.googleusercontent.com/-48eFvaJ3MUs/AAAAAAAAAAI/AAAAAAAAAAA/91PIqtt-OII/c-rp-mo-br100/photo.jpg','16590124370714063921',3852),('AIe9_BFMK6FB7k24ANEBV5CospTTlHUbjzzAiRd44lY3ULDom-extvmP6L3rQnZsiuswaAJjxXL7wUotiVN4OZ5XC1zZ_ts3MAQQaaxAumT6HDN1-NlmIMk',NULL,'2019-11-27 02:38:05.895000','2019-11-27 02:38:05.895000',5,'Mrs. Allen','https://lh5.googleusercontent.com/-rA1-Rv0fV6A/AAAAAAAAAAI/AAAAAAAAAAA/l7QOK8paDGI/c-rp-mo-br100/photo.jpg','13486358490203335051',717),('AIe9_BFMK6FB7k24ANEBV5CospTTLpklUc3qRnx3IN22JkSBzBQ0ydYslzsbUfEkj1SBMo0f4HjUAw1ao0s7uzDUvCfN3EtznFy48puMcPCd1gnZI8TMYHQ',NULL,'2016-05-17 00:35:47.947000','2016-05-17 00:35:47.947000',5,'Jegors Jeskovs','https://lh3.googleusercontent.com/-ajDmxNGhfPo/AAAAAAAAAAI/AAAAAAAAAAA/U5A7_rYvYFQ/c-rp-mo-br100/photo.jpg','3511292162159714121',8000),('AIe9_BFMK6FB7k24ANEBV5CospTTlxfjkP_1kJGjRDEn1BIkC_GqVNxtLOqQRJf35NEOb5WHRvfEVdntP94fj2iNtpxsIzcvie8pA7i_KnnlvR3hHDeTemw','1st time coming in..felt welcomed by Jocelyn, Marcus, Janice and definitely dr Lindsay. They were nice and very professional.','2019-08-05 18:36:12.114000','2019-08-05 18:36:12.114000',5,'Marisol Solis','https://lh5.googleusercontent.com/-6ne5mmiZ-y4/AAAAAAAAAAI/AAAAAAAAAAA/AJgQUlydvzA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTlyrIrSLn3T4eaHy2guE9k2pZEBlPtaNh5UM1GFrLnh4Gn1HSywgBeBZ1mH_TvbTgZk5mY0wEjmvCCxeqCSQVaDnLfGE',NULL,'2017-09-15 13:18:36.440000','2017-09-15 13:18:36.440000',5,'Brandon Lentz','https://lh6.googleusercontent.com/-aDpxg3_dYfQ/AAAAAAAAAAI/AAAAAAAAAAA/OXkHYCIRfbo/c-rp-mo-br100/photo.jpg','16590124370714063921',3933),('AIe9_BFMK6FB7k24ANEBV5CospTTLZbEdwxiXdGJfNrbs6n-JiynBbb2zkqEDa3eQ60_7SB4jCICJEWJFW9N1YAx4-OQkHThKE06IHtWJ393E80eh8GPqH0','After working most of the day with a bloody head injury the staff welcomed me in with open arms! They were just what I needed. They were warm, kind, professional and very very helpful. Christina C helped me fill out my paper work, Christina R was a sweetheart. Dr. DeWaal was amazing! Very kind and understanding. Three staples later and I\'m at home feeling very greatful. Thank you to the entire staff!!! Thank you! Thank you! They even gave me stickers and treats for my baby girl I had to go pick up. I loved the attention to detail. Oh yeah and loved the warm towel I received while waiting for the Dr. \nI believe that\'s one of their many attention to detail things they do for you!','2018-05-18 01:06:08.099000','2018-05-18 01:06:08.099000',5,'Mercedes Flowers','https://lh3.googleusercontent.com/-f_47OrgAPgw/AAAAAAAAAAI/AAAAAAAAAAA/PVaWzTKRHqo/c-rp-mo-br100/photo.jpg','16891069708558046635',4479),('AIe9_BFMK6FB7k24ANEBV5CospTTM9tPToHBpcfKBlEhXVbILP7HxSqG0bdUTXFDknP74s_d0GJCpKnw1iQQvOhZS7g0YNI6hvLTHbTtIgtVH7L1cRoi2Vo','They helped really quick and very nice too help','2019-01-13 20:54:19.042000','2019-01-13 20:54:19.042000',5,'Jae Megan','https://lh6.googleusercontent.com/-DVDG0RQBokQ/AAAAAAAAAAI/AAAAAAAAAAA/uIkrgUkd-3M/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7482),('AIe9_BFMK6FB7k24ANEBV5CospTTmCXIY_z2V83RW6zGYG5jap6KaBbQ51C4U3ZNB-HnCGQH70PIVWn4PtxzUCpXBz-_whyRVi92O3Be2nZuBmP3QfThxMI','Kim, Lucas, and Sherri are amazing!! The care was fantastic!','2019-07-23 17:42:29.028000','2019-07-23 17:42:29.028000',5,'Emily Fuller','https://lh5.googleusercontent.com/-MjjBWtC53Z0/AAAAAAAAAAI/AAAAAAAAAAA/er6_KiX1-NY/c-rp-mo-br100/photo.jpg','3272657195432704501',6927),('AIe9_BFMK6FB7k24ANEBV5CospTTMdCDf0otRQX-S-SnHw-EAr6jcNLAq696w3leeMVbyMRybLEjUPEMadchcIke84Waxy75UvMLbBlUKlXLgV6SNZEWGNw','Very fast Tory has a beautiful smile and very cool','2017-03-10 01:53:23.023000','2017-03-10 01:53:23.023000',5,'TERAN CLARK','https://lh3.googleusercontent.com/-ds8RkYKa8no/AAAAAAAAAAI/AAAAAAAAAAA/HSBebJ4JeAk/c-rp-mo-br100/photo.jpg','3511292162159714121',7862),('AIe9_BFMK6FB7k24ANEBV5CospTTMhO8cUtsfQUKjxq9QH-P3EjwhGfmxnMWCzEsmwtbOX7j0I2XVR6FCxdVQbnNHwVB4d8WaRkTbc5hbjvy0k-tCuMLApg','I had a shoulder injury that was really painful. The staff onsite (Tatiana, Nicole, Chris, Dr Patel) were really knowledgeable and helpful. I was in and out within an hour.','2020-01-23 08:05:58.680000','2020-01-23 08:05:58.680000',5,'Taylor Bass','https://lh4.googleusercontent.com/--z96k9f34og/AAAAAAAAAAI/AAAAAAAAAAA/iT5133o00hU/c-rp-mo-br100/photo.jpg','14567670160750071148',10139),('AIe9_BFMK6FB7k24ANEBV5CospTTMHuEHv9XmzWOGXd6MmhV99xr2MbOBovJR9tdNbvryX41Rq7M215gbqPdd0jPZguZr68RO41NjN_0m79jsmmxf7AEnGA',NULL,'2017-10-16 12:42:27.642000','2017-10-16 12:42:27.642000',5,'Athena Cashiola','https://lh4.googleusercontent.com/-tHGwSqIOFMo/AAAAAAAAAAI/AAAAAAAAAAA/rhANdZjLMsk/c-rp-mo-br100/photo.jpg','14904078213800803294',2319),('AIe9_BFMK6FB7k24ANEBV5CospTTMkmbYsuCQvUtd3uZ1RCF3G-4yW9ON0l9D-zOywMHjfOCVcEjtOLvP5R0ggk6x7HYOBfeFsEsxjx89FOb4eKm24Bsu2s','Terrible staff don\'t care about the patient whatsoever and they just make people waste there time and tell them lies. I was told i would be called withing 14 hours if not sooner and here I am almost 2 days later no call no courtesy call or anything explaining nothing. I drive all the way back up there and just to be told very rudely \"we will call you when we call you\". Wow expected something totally different based on reviews and website. Don\'t be fooled people go somewhere else where you will be treated like you deserve. Go to Bellaire ER they actually give you an appointment and stick to it.','2020-06-22 01:15:43.088000','2020-06-22 01:15:43.088000',1,'luis ayala','https://lh5.googleusercontent.com/-q-tFiOkUf_k/AAAAAAAAAAI/AAAAAAAAAAA/7U6TKMdq_qs/c-rp-mo-br100/photo.jpg','8679688254631342173',21204),('AIe9_BFMK6FB7k24ANEBV5CospTTmP2iKuf86RKfmC7wgGtbYH4RP1yLAVLaCoJk84DSemD72fovSnThApqVdRJUTx4vmxPeQ7hUOCEhNZ0GXq188buI_48','Took employee to get checked out for a sprained ankle. Maria, Andrew, Aaron, Alexis, and Krystal were awesome.','2020-02-02 09:56:15.254000','2020-02-02 09:56:15.254000',5,'Maribel Granados','https://lh6.googleusercontent.com/-WqFLai2K48c/AAAAAAAAAAI/AAAAAAAAAAA/Ypf_WstFUvs/c-rp-mo-br100/photo.jpg','6521947413723274945',10484),('AIe9_BFMK6FB7k24ANEBV5CospTTmZcC2p4VSPdwP4cROfFcRsdRrlhGjmYMB6Ptu8tuyPca7I2dwe0OdphfR5rLi-5q0leuNjM5qlfWLZuotCe5JKxxgOQ','I absolutely love my experience with my child at this hospital','2019-02-02 23:31:08.644000','2019-02-02 23:31:08.644000',5,'Lisa Bee','https://lh4.googleusercontent.com/-gbVB2iVSU4c/AAAAAAAAAAI/AAAAAAAAAAA/GyUGgIJcrIQ/c-rp-mo-br100/photo.jpg','13486358490203335051',1076),('AIe9_BFMK6FB7k24ANEBV5CospTTmznTNZniK2VeMAjnQLrU3hZCHpwsRkOjEf5bJ3AbgRLQZ6u9vjcHHwfimH-IaZjY69U5-1Y-On0Fp2KpvuPNROC8-cg','The nicest medical staff I’ve met in a long time. They were really sweet to my child and very helpful.','2018-01-18 13:27:16.037000','2018-01-18 13:27:16.037000',5,'Anand Whitney','https://lh3.googleusercontent.com/-AXS3IINeGEg/AAAAAAAAAAI/AAAAAAAAAAA/n2gDIjMednY/c-rp-mo-br100/photo.jpg','8918455867446117794',9304),('AIe9_BFMK6FB7k24ANEBV5CospTTn_X08Ps_FL7OpIrfQEV7kNzHg8DswTm-7RSXHBJgXkfj6mJTy383rBr4RXNTmcHtXJr5SpU3Rit8ytKMxiVjKiFuiXw','The team (Dr. Leavitt, Alvean, Traevis, Amy, Keith) we’re all great. Very professional, courteous, caring, and polite. The wait time was nonexistent, we were seen within 8-10min of arriving. The facility was very clean and cozy. I can’t stress enough how great of an experience I’ve had considering my situation.','2019-11-17 18:53:24.733000','2019-11-17 18:53:24.733000',5,'Janitta Thompson','https://lh5.googleusercontent.com/-zw_khAz9YFQ/AAAAAAAAAAI/AAAAAAAAAAA/GU6bEsuQhT8/c-rp-mo-br100/photo.jpg','16389487648212004696',2672),('AIe9_BFMK6FB7k24ANEBV5CospTTn5GUJWcczowWkYusxZ5JOzjxzx4A7mV3FoVfEMrjb532xgk3x7KS93ECdXW0_yNkhywbvLS3QoferzfEmcsruW7gveQ','Staff was okay as far as customer service. However, this place needs to understand that as a patient I deserve some respect. I made an appointment at 6pm and waited for almost 5 hours to be seen. That’s not even the issue turns out that another person was called before me, I had been waiting more than an hour more than him. NOT FAIR! The least they can do is get their files right and call people how they should ! Ridiculous','2020-07-09 03:34:46.324000','2020-07-09 03:34:46.324000',1,'Susana Quinonez','https://lh6.googleusercontent.com/-hd-nRNLZohw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm8heIcePL39CYWBDLln1PDBa2nwA/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21433),('AIe9_BFMK6FB7k24ANEBV5CospTTnB4B4O9ND9k6-_LG3KPe3YFic0leb8AQkkNkj-L-XmUH4HcMg01mzPv29oyz43yG8QO0mY0TokgO97KR6MNuZJZKLA8','Christina R, Chelsey, Adam, Linda, Christina C and Dr. Elsbecker were amazing and this was the best medical experience I’ve had.','2020-03-05 18:09:24.011000','2020-03-05 18:09:24.011000',5,'Will Rodriguez','https://lh5.googleusercontent.com/-0zNsUae5wzU/AAAAAAAAAAI/AAAAAAAAAAA/DD-rcCMlFZk/c-rp-mo-br100/photo.jpg','16891069708558046635',13917),('AIe9_BFMK6FB7k24ANEBV5CospTTnBaZdwys3WS8TGvnXaIz4FKxdoa3uCugaENInqVpfdj8uVWo0jFfmVtIosFevrW3qUoxaCCw3HMaXxb0sN0_Tsn5MQo','Very pleased with my experience at Signature Care ER in Paris. Fast friendly service. Ashley Burton at the front seat was great. Very helpful. Seen a doctor almost immediately. And the facility is very clean and nice. Definitely recommend to family and friends.','2019-01-10 01:49:07.848000','2019-01-10 01:49:07.848000',5,'Tonya Day','https://lh3.googleusercontent.com/-YhKD9lWP6xE/AAAAAAAAAAI/AAAAAAAAAAA/WMpKDA1SvLQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8592),('AIe9_BFMK6FB7k24ANEBV5CospTTnBHAmRD6GMahbA-PuQk91prPNgDtQU2sflZ9yec2r8QX7qfdC7WHsKCgqJPX1HAJNLnKHYFjW3dHtjXAGM32UmuQbqo','Clean, nice office. Friendly staff. Would definitely recommend','2017-12-26 19:07:14.167000','2017-12-26 19:07:14.167000',5,'Katherine Whiteley','https://lh3.googleusercontent.com/-u7YFKpJSNwc/AAAAAAAAAAI/AAAAAAAAAAA/ep3-T5nG5cc/c-rp-mo-br100/photo.jpg','14567670160750071148',1703),('AIe9_BFMK6FB7k24ANEBV5CospTTnDmPMwbtrSoZldW15F90eOwlRjcXRkjSpNQVCQeUI9vOBPhT8fLWlL8yacKNRgi0FwxL-tO9CrAgReAsSSVuJIGeFOU','The website specifically says, if you are experiencing symptoms of COVID-19, no appointment is required for testing but when you actually get there they say you must make an appointment and of course no one answers the phone to inform you of this before you arrive.','2020-07-01 11:04:18.864000','2020-07-01 11:04:18.864000',1,'Danisha Walker','https://lh6.googleusercontent.com/-yXK4wsDmjaQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclUbKIHxP2pJJu82YIprLa7I-72rw/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21449),('AIe9_BFMK6FB7k24ANEBV5CospTTndPa22j1mrO1cYPpL3SgYPxz4hPmPgCSuP2T2M451eaIyM3x7YMsThlwZ1SOnjfHrE3KU0qQC7ylAl0xRAO9dzYlNOU','Very fast and friendly service. We were seen and discharged within an hour. Very professional staff and doctor.','2019-12-19 15:09:46.452000','2019-12-19 15:09:46.452000',5,'Katrina Singh Chea','https://lh6.googleusercontent.com/-cFYTR5dbzZg/AAAAAAAAAAI/AAAAAAAAAAA/8BE11akFlYM/c-rp-mo-br100/photo.jpg','8679688254631342173',8687),('AIe9_BFMK6FB7k24ANEBV5CospTTNfFfpvKoVbp-8APx8yU_P56vxL3pOQxFlOyYKzLjRYTp7bhrdlMcPnkvQ7MK6kHYPrgPX7s09Rm5-KIsrqh6gEnHMRY','Great and very professional staff!!! Definitely recommend this place if you need any medical assistance. Will use them again!!!','2017-09-19 16:15:44.754000','2017-09-19 16:15:44.754000',5,'Jegors Jeskovs','https://lh3.googleusercontent.com/-ajDmxNGhfPo/AAAAAAAAAAI/AAAAAAAAAAA/U5A7_rYvYFQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2324),('AIe9_BFMK6FB7k24ANEBV5CospTTnGdht4M5puByLSrhg27Q8OHJ99DbgvtuF5_4248phN6Whuwlv0zGRwTcRNbqTqjnwWMhSbVL85qVOStwxFN9sGBkjfw',NULL,'2019-10-29 05:32:26.007000','2019-10-29 05:32:26.007000',4,'Marlise Bond','https://lh4.googleusercontent.com/-2FXl6r4MO-8/AAAAAAAAAAI/AAAAAAAAAAA/fCTlio8L3MY/c-rp-mo-br100/photo.jpg','6521947413723274945',8104),('AIe9_BFMK6FB7k24ANEBV5CospTTNJHFUH9xfEqmxke1LMIKfmQkAHJukZqXBHsq2S0SVXDCQGkd4tB5SLIufLrsi-6E1DshdoCYCpXvq576ofw1TNqq9Kc','By far the best place to go 😊 I have never been to any ER where EVERYONE is so sweet, from when you walk in til you leave','2020-02-23 01:13:42.064000','2020-02-23 01:13:42.064000',5,'Stacy Blake','https://lh6.googleusercontent.com/-7e3rYROSVCA/AAAAAAAAAAI/AAAAAAAAAAA/qiifeT-ggT0/c-rp-mo-br100/photo.jpg','6521947413723274945',14560),('AIe9_BFMK6FB7k24ANEBV5CospTTNJzKi1pzlNXtVAeAoVCmGPx1KUDkTByo11Xzl3tXvIM_HVA1_JZVWHKTKPTfX0BYQ9ea0_AwEDkF-Dy0wRqCAey1DsY',NULL,'2020-01-31 00:54:34.270000','2020-01-31 00:54:34.270000',5,'Marriana Dobbins','https://lh3.googleusercontent.com/-2avPKScJWRY/AAAAAAAAAAI/AAAAAAAAAAA/Vlf0pQNnx1U/c-rp-mo-br100/photo.jpg','2694018788013845459',14260),('AIe9_BFMK6FB7k24ANEBV5CospTTNmVknlQqVhoxpUkG39FAZGUP1HrQE96dHfoUiJvjNvGRKzsgacfd2jbNbErod9XWiIoOsF4Wa5Iygt594kRO_NcSoBw','I came for not an emergency visit and they were still able to get me in with no wait at all! Very friendly people I usually hate going to the doctors but the receptionist Dyveliz and Nurse Brad made me feel very comfortable! I would recommend this place to everyone!','2017-09-05 22:41:57.029000','2017-09-05 22:41:57.029000',5,'bri morales','https://lh3.googleusercontent.com/-lt4gPQzgrJs/AAAAAAAAAAI/AAAAAAAAAAA/IlYuI8pTD3A/c-rp-mo-br100/photo.jpg','16590124370714063921',3942),('AIe9_BFMK6FB7k24ANEBV5CospTTnPnuJTnKMamCCJ1VkmAxVoLS2xcxiJriVdIrMgzAVVUnoL-_8YiHdT_v0GWDsHm-sSdSb0En84xx2Ou9-MOF7vW2uSo','They always have such a kind and helpful staff. There’s NEVER a wait to get seen by a doctor.','2019-07-19 14:44:38.829000','2019-07-19 14:44:38.829000',5,'Sara Sanchez','https://lh3.googleusercontent.com/-_m68FBJDxVY/AAAAAAAAAAI/AAAAAAAAAAA/Z0ukePUL_hc/c-rp-mo-br100/photo.jpg','17394740196501090048',4626),('AIe9_BFMK6FB7k24ANEBV5CospTTNSUsyp9hqeOTPSuf39S1Ag9X0U-SzjLBQI599niD90vgtRrUJ-cmXl_IuYq_TPp4obCVoNKf6g6iRRRl1qi1zbFW2uY','Melissa greeted us as soon as we came in and jumped into action as we explained the situation. Jani and Jose then lead us into the back and asked us the appropriate questions and gave us the proper aftercare information. Dr. O\'Malley gave us proper treatment and was fast and efficient.','2020-01-13 03:34:45.791000','2020-01-13 03:34:45.791000',5,'Dystani Jackson','https://lh3.googleusercontent.com/-2nPEecY6Syo/AAAAAAAAAAI/AAAAAAAAAAA/B9021ypaodk/c-rp-mo-br100/photo.jpg','16389487648212004696',9546),('AIe9_BFMK6FB7k24ANEBV5CospTTntUozJB_1dq6f77TGgucYupI-ogXvn3NQFrRwr0aw-Z8tAN6xYpiz0p7VHKK8jxMjiw2BhuhXTc4V623M2bno-CHnt8','Extremely professional! Everyone is nice and friendly. Alyssa very nice, Joseph very courteous and Dr. Garcia super professional. In general this is the best experience I ever had even when I was in pain. They take care of you and your companions. Thank you very much guys please keep working hard and never change.','2019-10-04 22:38:19.921000','2019-10-04 22:38:19.921000',5,'Adriel Ss','https://lh6.googleusercontent.com/-kUB6DQmQa7g/AAAAAAAAAAI/AAAAAAAAAAA/KoneMkykHWY/c-rp-mo-ba4-br100/photo.jpg','8918455867446117794',9064),('AIe9_BFMK6FB7k24ANEBV5CospTTnwbSyfpuNwuwb9o9C5-AV8jVeZNtEmzO5asQh_U5KwqjjfnMy5QPcVD1TQSCLQT3FcpKd6NxpYYZYVBCHyesN5MiI9Y','My experience was excellent with excellent service, including the snacks, warm blanket, and treatment from the doctors and nurses.','2017-04-07 22:26:34.710000','2017-04-07 22:26:34.710000',5,'Tristen Francis','https://lh3.googleusercontent.com/-Q-pmK5losY4/AAAAAAAAAAI/AAAAAAAAAAA/dcrhIS132Yc/c-rp-mo-br100/photo.jpg','14904078213800803294',2372),('AIe9_BFMK6FB7k24ANEBV5CospTTO2jliMzB3DcFuoo2_2HlW3ikYExn-GvfPH3Cev5QaeN-oL6eQ2kn-rRV5zECqZbhrPDJGDxoXpj2QA2lBT8XWOiIVz0','This was the fastest,nicest emergency care service our family has recieved Every one was so nice and friendly, Lorena, Remmington,and jr were super nice to us when we came and left. Dr. Vakey was also amazing taking care of the kids.','2019-07-05 20:32:44.755000','2019-07-05 20:32:44.755000',5,'Brittany Vigil','https://lh5.googleusercontent.com/-U3OYrbvt4Lg/AAAAAAAAAAI/AAAAAAAAAAA/ph7MDICDsF4/c-rp-mo-br100/photo.jpg','16590124370714063921',3316),('AIe9_BFMK6FB7k24ANEBV5CospTToDMQfSVoxYiTVqXMPF8ozbKMPmnazcEDnELYQf3b5-v8t1P-5V06YWLVnxr-5OE8wpARSjkm-9sNmUqcSCFPJvhA0UI','Very comfortable place and very fast the ppl are so nice and very friendly','2020-02-24 16:24:22.287000','2020-02-24 16:24:22.287000',5,'Samuel Hearne','https://lh3.googleusercontent.com/-MAl8dyG7dl8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnjyyjkHOdz98g7NsgnjrwGUsPW2w/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21197),('AIe9_BFMK6FB7k24ANEBV5CospTToNTdIsJM2drIrfQNIyR45mkU82cnsSENkeJgPftBTIS-vxIgTg9E2uR3f5L5SgTgyva8U6OSxqsf8_JRTA-dnTQRxQY','I visted the mission bend location and it was a very comforting and warm environment. Everyone seemed so helpful and down to earth. They gave me warm blankets and gatorade. I came in with a really bad sinus infection, and left feeling a lot better physically & mentally. The doctors/nurses took great care of me. Absolutely no long lines like your traditional emergency room would have. Great customer service and professionalism!','2017-12-02 22:53:13.762000','2017-12-02 22:53:13.762000',5,'Brianna L.','https://lh6.googleusercontent.com/-g4T2Z1pfS74/AAAAAAAAAAI/AAAAAAAAAAA/P-4o4pYXkMc/c-rp-mo-br100/photo.jpg','17394740196501090048',4921),('AIe9_BFMK6FB7k24ANEBV5CospTTopXnVVwRIjOif5gMs1rhs4OZ8izK3r0iUiUx2W7WKLZIAoRUbb1QczfZl0Ck0hxWGdLLzZnb982ET5ud_Ii3OQ-DhRQ',NULL,'2020-08-17 19:39:06.305000','2020-08-17 19:39:06.305000',5,'Sidney Lartey','https://lh5.googleusercontent.com/-5g47m-nCQZo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck4yHHK6vxQA-vXqYlZGvLJ_a_Rjg/c0x00000000-cc-rp/photo.jpg','2077061009497551125',23065),('AIe9_BFMK6FB7k24ANEBV5CospTTOqhUGbfMlIF71SOG1anHaVlzJ9d5cL9tSH46zJIFahAEtqMZAfivuWhwV1QZ8vS3MOzk_kyUCTJMVZEP6PJgJSR8PPA','Epic','2019-12-22 05:10:55.265000','2019-12-22 05:10:55.265000',5,'Bran flakes','https://lh4.googleusercontent.com/-oSmSv-XN6_8/AAAAAAAAAAI/AAAAAAAAAAA/01hWYJnXBtc/c-rp-mo-br100/photo.jpg','13486358490203335051',671),('AIe9_BFMK6FB7k24ANEBV5CospTTOs3QHesqeHnydLFTwDoy7AiHFP0Mby3K3iDDg4XVf1U9poOnGv7r0fCj5QYCtwdc1c5J5i8d2ZxVzasN6RgsZp0SzzY','Even though I went in feeling as awful as I did, I had a great experience. Dr. Garcia and his staff were absolutely wonderful. It started from the moment I walked in and greeted by Jessica. She could see that I wasn’t feeling well and quickly took my information so that I could be seen quickly. My nurse Rolli (I’m not sure if I spelled his name correctly) spoke with me extensively of what I was feeling and I felt heard. As soon as Dr. Garcia walked in, even though he had gotten information from my nurse, he still took the time to listen to my symptoms and my thoughts and asked questions and truly listened. Thank you Dr. Garcia for listening and helping me when I most needed it. Thank you SignatureCare for being available at my time of need and making it as pleasant as it could be at the worst time. All you can ask for when you’re not feeling well is to feel like someone cares and they cared and Dr. Garcia did all he could to make me feel as best I could and much better than how I felt when I walked in the door. Thank you for your attention and your awesome bedside manner, I 100% recommend this facility for your emergency needs.','2018-03-23 11:45:52.294000','2018-03-23 11:45:52.294000',5,'Elizabeth Villa','https://lh5.googleusercontent.com/-__1Eb4KlcAw/AAAAAAAAAAI/AAAAAAAAAAA/6FsRKSd1kXI/c-rp-mo-br100/photo.jpg','8918455867446117794',9276),('AIe9_BFMK6FB7k24ANEBV5CospTTp0YYL5omTywdzfSP5xe-xyxnOBnwTfOc3kq5IcHp6G9aMcdE8l-XssXR4MwbqVd4U5gd2yW0-Cs-oaXAtHmh6a7XCyE','I came in pretty bad shape but they made the experience great. All of the staff was cheerful, nice and had the can do attitude.','2020-03-13 17:01:38.647000','2020-03-13 17:01:38.647000',5,'John Ambrose','https://lh5.googleusercontent.com/-TmiQjuOJrRU/AAAAAAAAAAI/AAAAAAAAAAA/Os1o2NbiJ_I/c-rp-mo-br100/photo.jpg','14748677429039074158',18842),('AIe9_BFMK6FB7k24ANEBV5CospTTP9LaiZ2y6FJ3NTS7oEPrBihg0-Ad1FXAha11Gfy1UrEh9LCXAJnTK4f0Rp15XWlizv8zIcG1b6abs1SWPZvFeOJIzLY','The staff at the front desk, the nurse, and the doctor was incredibly nice and helpful. I went in to get my COVID testing. I highly recommend this clinic. It was easy to schedule an appointment online. The process to admit and see the doctor was quick and organize','2020-08-02 12:45:00.707000','2020-08-02 12:45:00.707000',5,'T Will','https://lh3.googleusercontent.com/a-/AOh14Gjtj2nc2uGes0r5gQ-kvPFP_Di3S6hxyJG17QBlRQ=c0x00000000-cc-rp','14904078213800803294',21935),('AIe9_BFMK6FB7k24ANEBV5CospTTp9vXPqAMWcthzk7340Zha0xSeKQW5LZ_0zTb4TZZgEL6szH9avzvdmSxxkeu-7m-T3tmzt2vzR9qq7KURufs5_9gP0k','All the staff here are wonderful, very courteous and nice. They attended to me promptly. They are very eager to help. I strongly recommend this center.','2018-02-17 18:54:32.705000','2018-02-17 18:54:32.705000',5,'Oguntuase Bukola','https://lh4.googleusercontent.com/-5lFbJxq5i1k/AAAAAAAAAAI/AAAAAAAAAAA/3S5eTeez5Ec/c-rp-mo-br100/photo.jpg','14904078213800803294',2282),('AIe9_BFMK6FB7k24ANEBV5CospTTPDyU1jS0AzSWHNzJepvOEdmwjCFLsbisgtyEG331ZLiJa3YOwSqLf9qqwBpBErsuolvH-xTAOqZieZHUFd8GL3ll0_s','I\'ve came here for my own medical emergency and my partner\'s, and during each visit, the professionalism and efficiency displayed by the staff here is outstanding. They are attentive and want to understand your concerns, being extremely thorough and listening to your complaints without hesitation. This has been by far one of our most pleasant ER visits in my life, no waiting room full of sick and wounded who wait hours for treatment, being cattled by nurses at a major hospital that have no interest in your welfare if you aren\'t deemed a medical emergency, ER rooms that are not maintained due to being overly used. \n\nThe waiting room here rarely has someone waiting because they see you right away, the rooms are modern and extremely comfortable while being well-maintained, and you will always be offered a warm blanket (which comes in handy when you have a 101 fever and chills, as I did during my visit). Even while accompanying my partner during his recent visits, I am offered coffee or a blanket since it can get quite cold in the facility.\n\nThe staff are amazing and do their best to make you comfortable. They don\'t treat you like a number and only goal is to get you out. I say all of this, because I\'ve had many interactions with major hospital ER staff and only a handful were actually pleasant, but I can understand the volume of emergencies they receive can hinder their ability to actually want to make your experience pleasant (this is definitely not the case here, the staff are amazing and you will always have a nurse come in to check on you, not an hour going by and have no idea when you\'ll see someone again). \n\nI say all of this because I trust this facility to always get to the bottom of our problems and do whatever it takes to provide comfort, while being efficient, which can be a difficult experience to find a major hospital in area. I highly recommend any SignatureCare location, but my experiences are based on my visits to this location (Wilcrest/Westheimer), and I will continue to come here for any medical emergencies. I have no complaints about any of my three visits to this location, and is the best emergency care I\'ve experienced in my life (no exaggeration, from Louisiana to Texas, and previous ER experience at large general hospitals, this is the best without a doubt). Thank you to the staff and doctors who\'ve helped us during our visits, you are making a huge difference.','2019-03-09 08:45:43.055000','2019-03-09 08:45:43.055000',5,'Kai Loki','https://lh4.googleusercontent.com/-saxEFCcn0R4/AAAAAAAAAAI/AAAAAAAAAAA/_b3GWY0c0vE/c-rp-mo-br100/photo.jpg','12541597562633926366',538),('AIe9_BFMK6FB7k24ANEBV5CospTTpL2tNJO_jXFHpSIoHWKT6erFShXc0AsehH_dQHJLkDsMQBSq-BYBixuyvN8_JdutEINqwSy7RxOzHuD7c-X8LY5OeSM','Excellent experience, rapid service, Nurse April was courteous, attentive, and kept us at ease throughout. And of course knowledgeable and very professional.','2020-07-26 18:18:16.399000','2020-07-26 18:18:16.399000',5,'N T','https://lh6.googleusercontent.com/-65eZ0u_tTD0/AAAAAAAAAAI/AAAAAAAAAAA/Kwl2wBU_lug/c-rp-mo-br100/photo.jpg','14748677429039074158',22562),('AIe9_BFMK6FB7k24ANEBV5CospTTpLFGL-ajLyTQzOM77A1mFqNGnvJ-7HhJDMaWaANLpxgWJI4A7WznTCYLGQ6I94VnSmVGThHb_0WjgHDcSNc9oCGIjIA',NULL,'2018-01-15 15:54:58.858000','2018-01-15 15:54:58.858000',5,'i l','https://lh6.googleusercontent.com/-XLNiHHSFtT4/AAAAAAAAAAI/AAAAAAAAAAA/4GP95qfZZ8I/c-rp-mo-br100/photo.jpg','8918455867446117794',9307),('AIe9_BFMK6FB7k24ANEBV5CospTTPLGDu95syJEkWm2fY-PsBiwRfYcCbPltmO5v_JnoxNUvQMrKfiuq1vU3FZkMB3juD9mKQt-TH9RV11-Ardk0Cbnd1Dc',NULL,'2020-06-09 22:00:22.303000','2020-06-09 22:00:22.303000',5,'Patricia Martinez','https://lh6.googleusercontent.com/-UeI5mlE4g_M/AAAAAAAAAAI/AAAAAAAAAAA/t00BoSkoV9k/c-rp-mo-br100/photo.jpg','13486358490203335051',21360),('AIe9_BFMK6FB7k24ANEBV5CospTTplzMqPW2CgJX7KGHAK_l4lFO_Csn8_a4FhMDNzd3g5s-xwdA-vCAv0JFa0PCqIORtJGD2KXk1Qzi_Cgx7-JRtM0EVh4','A shockingly wonderful experience. I highly recommend over an ER at a major hospital of it is not life threatening','2018-11-06 20:33:00.697000','2018-11-06 20:33:00.697000',5,'Andrew Golnar','https://lh6.googleusercontent.com/-0p4jZwmmiyk/AAAAAAAAAAI/AAAAAAAAAAA/aOvrrZ3HVto/c-rp-mo-br100/photo.jpg','16590124370714063921',3660),('AIe9_BFMK6FB7k24ANEBV5CospTTPMCEjuCkuf6YuWrJxerYDpv36uW9P4vCthGgCzIfiVUyRDlQv-CY7nbCGKClGItVkhD75ZOSLy2HCfPDZZdkL488xxs','Patricia and Vivian are the best. Dr. Dang took very good care of me within a great 30 minutes. Will be back in case of emergencies.','2020-02-18 20:44:57.058000','2020-02-18 20:44:57.058000',5,'Kinesha Fernandez','https://lh4.googleusercontent.com/-jwBMLTTg3Lo/AAAAAAAAAAI/AAAAAAAAAAA/2JT6ugau1MY/c-rp-mo-br100/photo.jpg','16389487648212004696',10874),('AIe9_BFMK6FB7k24ANEBV5CospTTpWHn1aasFKHdIio-y5LOp50CbQZthSskyOWz0IOMNI38tFZ81KKAWy_cVU5TTxCwu1vLGUHKy6PTFWvyROGtwjHxLfs','The care was great. I was checked in immediately and they quickly did all the tests necessary. Doctor Soli was very helpful and gave me all the information necessary. Mercy helped us check in and see the nurses as soon as we arrived. Great service!','2017-02-17 18:27:08.544000','2017-02-17 18:27:08.544000',5,'Sepehr Moravej','https://lh3.googleusercontent.com/-BtCNtrjKah8/AAAAAAAAAAI/AAAAAAAAAAA/umspD_MwMUw/c-rp-mo-br100/photo.jpg','3511292162159714121',7876),('AIe9_BFMK6FB7k24ANEBV5CospTTpyYhT5xI5edf8zQdcqiLCrrhVYpcxqZEbF3Ap08bZgFucfGZ0_uo64tod-9oWeVKFf_bbZr-OZxZocPHHziHLuydKTY',NULL,'2019-12-23 03:29:59.705000','2019-12-23 03:29:59.705000',5,'Denia Flores','https://lh5.googleusercontent.com/-jDfjXfqKpXw/AAAAAAAAAAI/AAAAAAAAAAA/GMVogS8VFoc/c-rp-mo-br100/photo.jpg','13486358490203335051',666),('AIe9_BFMK6FB7k24ANEBV5CospTTpzcmTvDMcSCKDVDGgyFjJOiQ0S8PnjoN9xAUuiXive-W0vCAp66V5Szy9GJpCkxg-JeYZpjHl08Utywy7qzNW0mIlLQ','Friendly staff, and loved the warm blankets!','2019-01-09 22:59:26.308000','2019-01-09 22:59:26.308000',5,'Jessica Torres','https://lh6.googleusercontent.com/-2tiZCV4xqoY/AAAAAAAAAAI/AAAAAAAAAAA/dD7ywKffD3c/c-rp-mo-br100/photo.jpg','8918455867446117794',9195),('AIe9_BFMK6FB7k24ANEBV5CospTTQ4lycy3NPJO4-Hji-y6l4LDg5yr1xxuZAcNwlEFckkS4fcrhjHwi_2c3D3ZJPG9FmWXXeiBLTVH-miFKHlgAlZggoKw','I had a good experience and got the help I needed in a professional way','2016-06-17 17:55:48.295000','2016-06-17 17:55:48.295000',5,'Jose Cuevas','https://lh5.googleusercontent.com/-gRpyzVeze84/AAAAAAAAAAI/AAAAAAAAAAA/kHiZERNrwD8/c-rp-mo-br100/photo.jpg','3511292162159714121',7978),('AIe9_BFMK6FB7k24ANEBV5CospTTQ8amYE7O2n13i3kfCaLyO_YXEUOtWrs_QTWPVKBvRlSpu11HpOvJ7ZaYsxVviTBYrT3L3Q7FoxRUW-ZpeFulytWgGHQ','They were caring about the situation I was going through and were quick to get me in and taken care of. I would definitely use them again.','2019-06-09 21:02:18.596000','2019-06-09 21:02:18.596000',5,'Shelbe Stein','https://lh5.googleusercontent.com/-rc1ZI8dxKQo/AAAAAAAAAAI/AAAAAAAAAAA/BHJjocj9wbs/c-rp-mo-br100/photo.jpg','6521947413723274945',8244),('AIe9_BFMK6FB7k24ANEBV5CospTTqaCHA1DL1nKHgZNt0tFb0wRIobOQoidFMP4SxnywklqeU7_z45qwC7idRCIRPhyncgpJj9f5IgeS81WsbaTbn0sgbh8','(Translated by Google) Like the place nice, fast, clean place natalie, Tricia, alvean, Dr.faroogi. All very lovely and speak both Spanish and English\n\nI liked this place very much Natalie the resepcionista speaks English and Spanish very friendly and the nurses Tricia and Alvean also very friendly, and Dr. Faroogi also very friendly and explains very well things I liked the place very clean and tidy everything.\n\n(Original)\nLike the place nice,fast,clean place natalie,Tricia,alvean,Dr.faroogi. All very lovely and speak both Spanish and English \n\nMe gusto mucho este lugar Natalie la resepcionista habla inglés y español muy amable y la enfermeras Tricia y Alvean también muy amables, y la doctora Faroogi también muy amable y te explica muy bien las cosas me gusto el lugar muy limpio y ordenado todo.','2019-11-01 22:13:27.182000','2019-11-01 22:13:27.182000',5,'CLAUDIA E PALOMO','https://lh4.googleusercontent.com/-SD_CltUU5aI/AAAAAAAAAAI/AAAAAAAAAAA/5I5PrmvvhDg/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',22640),('AIe9_BFMK6FB7k24ANEBV5CospTTqarseSxhiKtfFO64ptvA1oWQrcLAQ-uxHGp6lSiMzJyjRvkZstBxw8vg9zWDJQCFFmZFUvvNt_v3DgZ32VWCFGxli3U','I was SO impressed with the staff here. They were very kind and sympathetic!','2018-02-28 14:58:22.892000','2018-02-28 14:58:22.892000',5,'Mary Elise Lovejoy','https://lh4.googleusercontent.com/-gDF8eHlmBSI/AAAAAAAAAAI/AAAAAAAAAAA/jPFfqtSizlQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3854),('AIe9_BFMK6FB7k24ANEBV5CospTTQCfPEnvVb3KaXyruAH3VG-6vQpRgaqdhc6XIwSOTiuyxEgSzPBuc6lckmsSqz1dZr-SoAGaILh8kWihXvNgfIPguGXE','Very good staff Dr Faith Nurse Jennifer Tech Fatima Registration Tanishia were excellent','2019-12-20 06:23:00.496000','2019-12-20 06:23:00.496000',5,'Chad Samuels','https://lh6.googleusercontent.com/-Vbeh9fBwxkk/AAAAAAAAAAI/AAAAAAAAAAA/SYbP5s4ZFlY/c-rp-mo-br100/photo.jpg','17898197009688164559',5346),('AIe9_BFMK6FB7k24ANEBV5CospTTqD5KW4OU1xVs49PoOU0qKFCaxaGdNZXbauBYLBYRbk8TUvuDSDxtAdaKfb8shFM0xMkkSORw4FiMCWW3Lmwcl2Sz2Yo','Pradeep Golla is fantastic! Took excellent care of me! That man deserves a raise.','2017-08-24 16:39:56.573000','2017-08-24 16:39:56.573000',5,'Devon Wyszynski','https://lh4.googleusercontent.com/-4LuzLxrorSY/AAAAAAAAAAI/AAAAAAAAAAA/xyGTuEzY_E4/c-rp-mo-br100/photo.jpg','17394740196501090048',4990),('AIe9_BFMK6FB7k24ANEBV5CospTTqkqmMA9aQSjOSTWBElASrP62BlTFbWwOcUxX_xebCrVM5dCB_7fDqYcn_FXbOyVdunmzM06PsWalY_UqNb5fSTrAEks','I had to visit the Urgent Care on a trip to Houston. Never have I been in a better run, more immaculate, professional medical center. My wait was 5 minutes, I was screened by wonderful nurses and treated by a doctor I only wish I could bring home with me to our town. The flu is not fun to live through while traveling, but I am grateful to the caregivers at Signature care who got me through!\nUPDATE\nI received a bill for $1800 for a flu test! Great place, good care but absolutely absurdly expensive. I was traveling so out of network. I’d have to say go for the less shiny place and keep your dime.','2020-08-22 20:30:40.884000','2020-08-22 20:30:40.884000',5,'Monica Farrington','https://lh3.googleusercontent.com/-DeX85l8gqLQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmmrXT8Ht1qV-bW7zzg1o8ys3cu2g/c0x00000000-cc-rp/photo.jpg','16389487648212004696',10409),('AIe9_BFMK6FB7k24ANEBV5CospTTqmqyiWqZ2GOPNyMEAl7msxHf1YKiiieadHXXe5ddlfc63VMUhIIiCZs5roeQ-MwU6R6KWMUMfZlkSsocXZfdS_WPG2c',NULL,'2019-06-27 21:55:14.013000','2019-06-27 21:55:14.013000',5,'Phil Dozniak','https://lh3.googleusercontent.com/-ChLWYV75qvM/AAAAAAAAAAI/AAAAAAAAAAA/FiAkaUv1ceo/c-rp-mo-br100/photo.jpg','6521947413723274945',8218),('AIe9_BFMK6FB7k24ANEBV5CospTTqn89T_a1UZh17CdQXYcsxerj8uLeGdoYaEIU8JBGwW4dhQno3pdVu-btjRMhdx50vShFYJnUBse8P-spF3vH1Q7VyoQ','I brought my mother in this morning to be seen for an acute condition and the care we received was truely amazing. The nurse that saw us, Dana, was friendly and helpful, Dr. Akunyili had a great bedside manner and was a really good listener, and Sindy at the front desk was great too. I would absolutely bring her back or come back myself.','2019-09-13 13:32:37.923000','2019-09-13 13:32:37.923000',5,'Daniel Bahrenburg','https://lh6.googleusercontent.com/-WlELearPwpk/AAAAAAAAAAI/AAAAAAAAAAA/AOAVeIhr33E/c-rp-mo-br100/photo.jpg','14567670160750071148',1245),('AIe9_BFMK6FB7k24ANEBV5CospTTqNPiQW35OjCitGC-WY6cthQ_Ty9JTvpa8HDd-6CpocKYmTvrgplv_-TinxNDMUo242UeUEqJIL7mtICq_Kj0dG1tDNs','Thanks Dr.Henderson, Nurse Alvean, And Tech Marcus Very Professional We Had A Amazing First Time Experience.','2019-03-29 17:27:18.799000','2019-03-29 17:27:18.799000',5,'LaSha Harris','https://lh4.googleusercontent.com/-acYaby6ApSo/AAAAAAAAAAI/AAAAAAAAAAA/8LJZu7akX2o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTQqiTih2Z0vgB_2P0QHx4RdNAAam9xfEaHFV8bOI1I63f8IGGlmy3q9o-HpiToHKi5rCcJpglAAh1gtqQkMBJfRDPnpE','the staff is amazing! the dr who helped us was amazing, nice, and really explained everything to us in detail. he was very transparent w everything that was happening. we unfortunately had to be kept overnight for observation and the rooms were well kept, and comfy. our nurse manny was perfect!! he was very knowledgeable in the small questions we’d ask him and super friendly! would definitely recommend. 10/10.','2019-11-23 13:37:30.038000','2019-11-23 13:37:30.038000',5,'cassandra tarango','https://lh5.googleusercontent.com/-dNWxSs9bO60/AAAAAAAAAAI/AAAAAAAAAAA/ACRCVLwm7Vw/c-rp-mo-br100/photo.jpg','6521947413723274945',8082),('AIe9_BFMK6FB7k24ANEBV5CospTTR33R0hN4NoDQa10CUQvGeYhbVGZdLjEcAusGne-o3JLb98QRu7fviPXc0QUuzppBu4tc-cVVybmsfU6TN0l7gl-LghU',NULL,'2020-01-02 16:58:56.309000','2020-01-02 16:58:56.309000',5,'Anoop Shankaran','https://lh4.googleusercontent.com/-Q_KiMsrRHWU/AAAAAAAAAAI/AAAAAAAAAAA/pj0P6wW6P5U/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',264),('AIe9_BFMK6FB7k24ANEBV5CospTTra0KOUH0R1WvyCg-K_BBXV--dih82iJktJzvNwDeA2fmgRPIJ1rvEAXSzz9pfDgyr_mbN6qFqUMZhrYfnZ9jH6hSNEc','I came in with a friend and was taken good care of by tory, she was very nice in offering me to sit in the waiting room with the tv and refreshments, will definitely recommend.','2017-02-22 01:47:26.885000','2017-02-22 01:47:26.885000',5,'De\'Ja Brinson','https://lh5.googleusercontent.com/-5zG7irngeKY/AAAAAAAAAAI/AAAAAAAAAAA/GxnquK2mtiY/c-rp-mo-br100/photo.jpg','3511292162159714121',7870),('AIe9_BFMK6FB7k24ANEBV5CospTTrDf6p06ZCevZY4xI3ao8uP2KpqfvIGuV8CgXHacTbEVhs9FmSX9NYszn4ApUxYt1suiq3jREQRObZ9CfEcCLNzYbNDg','Came in after throwing up multiple times the staff was quick and professional. And I left feeling much better','2018-12-09 15:28:17.604000','2018-12-09 15:28:17.604000',5,'Samuel Boswell','https://lh5.googleusercontent.com/-nRusL6ddhv0/AAAAAAAAAAI/AAAAAAAAAAA/idozV7r6ZRs/c-rp-mo-br100/photo.jpg','16590124370714063921',3618),('AIe9_BFMK6FB7k24ANEBV5CospTTRicC23rQCebzNAkRwn7n92gsXWAquD1CEg0SYZlai5Ad3Hnj-5OC6Okd1-ZCVo4MXpZuSzrQjLRpsDjPDzqtHhLMVqc','Staff are amazing! From Dr. Ybarra to Stephanie, everyone was very friendly! If you have a problem, go here!','2019-10-20 05:46:36.056000','2019-10-20 05:46:36.056000',5,'Cpt America','https://lh3.googleusercontent.com/-EzjcbJa7AU0/AAAAAAAAAAI/AAAAAAAAAAA/X420VVEzL_M/c-rp-mo-br100/photo.jpg','8679688254631342173',8784),('AIe9_BFMK6FB7k24ANEBV5CospTTRQ9UlrKDtOuL7mabGumr8fYyF5oe0WDQDLNNKS8ERdF9We3IVAyxG1_bb_kXTePn4Q5Y8dG8eDlLcYcRJzjglc-cd54','So! This place is the answer to patients who need to be seen quickly, professionally and compassionately. This is my second time visiting this facility (once with my husband a few days before Christmas) and both times the care has been remarkable. We have the ability to be seen by any provider (military) and this has been the best option for us on the civilian side. Let\'s start with the location..10! You could not have convinced me that the building was not constructed with a medical facility in mind. The beautiful and eclectic decor is second to none! Then there\'s the wonderful and amazing people who work there...10! Shout outs to Dr. Leung, Nurse Katherine C, Registration Coordinator, Angela H and the technician who did my vitals! Listen y\'all, these people are the real deal! Professional, friendly, personable, thorough, and the care has been consistent in all aspects. Yall. Please. I don\'t usually write reviews but I couldn\'t resist being able to voice some positives in a world where everything seems so negative and people seem to only care about selfish gain. The people see folks from all walks of life and I can tell yall that here, you\'re in a no judgment zone...you\'re in a place of warmth..comfort..care and for a little while, you\'re the only person that matters to who you\'re being seen by from the moment you walk in to the moment you walk out.. They treat people in the way that they want to be treated because here.....you\'re family. Oh..and they call the very next day to check on you to see if you need or have any questions about anything. \nThank you to the geniuses and angels of God who were inspired and led to bring such a wonderful facility to the Killeen area. Emergency health care as we know it is gone bye bye but a refreshing and innovative prospective has taken its place and we say....WELCOME AND THANK YOU!!','2020-01-22 15:48:30.787000','2020-01-22 15:48:30.787000',5,'rechanda primas','https://lh5.googleusercontent.com/-iPxVvtNqmwc/AAAAAAAAAAI/AAAAAAAAAAA/lcl0Vmasxls/c-rp-mo-br100/photo.jpg','2694018788013845459',14268),('AIe9_BFMK6FB7k24ANEBV5CospTTRQpYaPr0d8c_o0rGKh_8saRcVMdY_5iYhQgbHftQ51X22RwHZZYjZin87Jh5EsuTXfjjSw5bxKal7ns24o5kWZXodJ0','Staff is great very fast as well had a great experience with dr. Harjai nurse Dana and Alvean and radiology Tricia I truly recommend them if you ever feel sick','2019-09-05 23:54:45.840000','2019-09-05 23:54:45.840000',5,'jonathan cruz','https://lh5.googleusercontent.com/-sjjKa5oDLV8/AAAAAAAAAAI/AAAAAAAAAAA/i54y5ewfGh0/c-rp-mo-br100/photo.jpg','16389487648212004696',2949),('AIe9_BFMK6FB7k24ANEBV5CospTTrz4CvPVz-a3B9vBOmlvd1FOZlluNBkQCocY7tXuaD-JBxC63MR0vEp3KCj8ARhELAqAhdvZUGJm8yX9x7afJAbHLVAQ','The staff was very professional and courteous. They did their best to process every patient quickly, politely, and efficiently. I would definitely recommend this facility for outstanding emergency care.','2020-07-29 12:20:17.413000','2020-07-29 12:20:17.413000',5,'Patricia Doyle','https://lh5.googleusercontent.com/--rlF697F8BM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucky7cPA8R1OClkvIwW0HcBsIMREgQ/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21954),('AIe9_BFMK6FB7k24ANEBV5CospTTS9PJuWPKkA-6TM9EO7-SvJB3mTMbb_ztQ2Be6s_ioJS_ySYRF9J6qqnQcDNjDieTXZjnxzXAv7lCCSC9AcLIhbnK-wc','they’re all very nice :)','2020-06-12 16:52:24.045000','2020-06-12 16:52:24.045000',5,'ZOEY ZEEFF','https://lh4.googleusercontent.com/-H-krPdebD9I/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm5Jgq7VNmSzlFHFNyxwN5hAdH9vg/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22056),('AIe9_BFMK6FB7k24ANEBV5CospTTscf_bHJKr5jeQwm2XnX1Q8aA7oT8BUZxZLVUVHKukT5uZfFjl5fA007QwDm_2X925C_lBHfB-Apg5h2vhI4VKwO-vX4',NULL,'2020-01-08 23:25:56.334000','2020-01-08 23:25:56.334000',5,'Vivek singh','https://lh6.googleusercontent.com/-gzMR36AiIAQ/AAAAAAAAAAI/AAAAAAAAAAA/yps5CvHoOq8/c-rp-mo-br100/photo.jpg','8918455867446117794',14879),('AIe9_BFMK6FB7k24ANEBV5CospTTSG_g3y7WouSkVsYAiru6R2LfypnOu6e9AIHSZwOfozoosZEG0Np-jrOGdqBN3q1WBv6kZwL1RSB2l7kTWEQ-YOl5h8g','Staff Was Very Friendly , Quickly Attentive , Doctor Miller Very Awesome ! They Make Sure To Get You The help you need .','2020-01-01 17:56:59.402000','2020-01-01 17:56:59.402000',5,'Sabrina Mejia','https://lh4.googleusercontent.com/-NxeUcOdVFZQ/AAAAAAAAAAI/AAAAAAAAAAA/LP9A09Pouc0/c-rp-mo-br100/photo.jpg','14567670160750071148',1150),('AIe9_BFMK6FB7k24ANEBV5CospTTSkHCmJ33qY6m85BHDaIuwQJQeIKRy3wO1PjmC4mixMaH8xiNdPSs41syWsrtdyNezpM9fkGQxx6iUA9ON5XVxyOGohA',NULL,'2019-08-02 17:17:39.247000','2019-08-02 17:17:39.247000',5,'Nayra Sanchez','https://lh5.googleusercontent.com/-GmZiHYHM8MQ/AAAAAAAAAAI/AAAAAAAAAAA/OHPuhKjB4HY/c-rp-mo-br100/photo.jpg','13486358490203335051',870),('AIe9_BFMK6FB7k24ANEBV5CospTTSTOxEOqIGT_M5Unw7rKFogUdn1Kz9bogWuPRhXNmbSjBojcq6gIHI6w_qEpj2nC-qjO2Xjad9KZG23jOSKUr0Yxjai0',NULL,'2020-02-16 18:59:23.173000','2020-02-16 18:59:23.173000',5,'Heaven Haynes','https://lh6.googleusercontent.com/-0rLAhHWSUTs/AAAAAAAAAAI/AAAAAAAAAAA/Cvyhuq5m04I/c-rp-mo-br100/photo.jpg','17898197009688164559',14169),('AIe9_BFMK6FB7k24ANEBV5CospTTt9M0IqhTctn6hFqCywfP7VPIB9Ltwp80H7xUXwPWzVIq7U-Eiq-CIrFo47AriSWn4SwbDBPPiGbr0kzH9b2toopuzyI','Dr. Guharoy and the team we’re great! Quyen and Sindy were awesome too!','2020-01-13 13:27:41.525000','2020-01-13 13:27:41.525000',5,'Rodney Dede','https://lh3.googleusercontent.com/-8e2_3uROEM8/AAAAAAAAAAI/AAAAAAAAAAA/9erpyO1fiGA/c-rp-mo-br100/photo.jpg','12541597562633926366',9571),('AIe9_BFMK6FB7k24ANEBV5CospTTtDCucFCdDUqMysnIa2WEe4ix50cMGPoBWAuUYXxIRa1dRbtT2E7jwrRtfy4y8czAHwfuMiMcKlBC2M7SshoTH1GBPa0','Nice staff, great service.','2019-09-28 03:23:55.135000','2019-09-28 03:23:55.135000',5,'Maguete Diallo','https://lh6.googleusercontent.com/-pFObPvEmHsE/AAAAAAAAAAI/AAAAAAAAAAA/CxyTUvF_9QM/c-rp-mo-br100/photo.jpg','8679688254631342173',8800),('AIe9_BFMK6FB7k24ANEBV5CospTTTiD3v0l3xK786FbAalzg8_Bk52GK0nJ8VRJ21V1zCajpOyxsMQj8HTRR4fqns3eINbT_eTEkRU6APrgYADeU5p0rVtI','Dr. DING was quick and very nice. Amy was very sweet and Joseph is kind and informative.','2019-04-27 13:23:33.548000','2019-04-27 13:23:33.548000',5,'Albred Carroll','https://lh6.googleusercontent.com/-uSqYaoc-0us/AAAAAAAAAAI/AAAAAAAAAAA/MIrpkQL4ckI/c-rp-mo-br100/photo.jpg','3511292162159714121',7353),('AIe9_BFMK6FB7k24ANEBV5CospTTTNOHDHrfPqHVZyyTDyc8wlpmEigeeuFhq7nmGFvLoz6DoXG8v39297Lo1Cr-kc0oT9127zP1Hvl224v_3l2tOWGdQ5M','The warmth and caring was felt as I entered the building starting with registration (Delicia) , nurse (Kelly) Rad Twc (Son/Le/Vasmina) and Dr Guharoy! Thanks for being an Awesome Team','2020-01-13 17:14:19.108000','2020-01-13 17:14:19.108000',5,'Sheryl Wallace','https://lh6.googleusercontent.com/-XeZGNkXBk4Q/AAAAAAAAAAI/AAAAAAAAAAA/QuAE6S6Y_QU/c-rp-mo-br100/photo.jpg','8679688254631342173',9836),('AIe9_BFMK6FB7k24ANEBV5CospTTTS5vqzLE-Woi5zPce1jpG-MDj_HMpXQLiN7zyxjtvY3IeAPHd3-c9vO5PWBUdYkgIX5u9Nbn5vVjGsZO0GpDM2bdy9I','There was no wait, they were super friendly and professional.','2017-09-20 13:35:53.100000','2017-09-20 13:35:53.100000',5,'Sara Gueory','https://lh6.googleusercontent.com/-5hc3bQKDyKE/AAAAAAAAAAI/AAAAAAAAAAA/iAJlpAx6uvU/c-rp-mo-br100/photo.jpg','14567670160750071148',1754),('AIe9_BFMK6FB7k24ANEBV5CospTTTWN8u-QIg8K8gdgDrZ1CKEAS0vqvtCLbPBlKCnt9E5Fd7CJAd_DcUPlwUtsQA43KrunxV_QpBCThMuXkta2-BLCRmKE','This was my first visit.  I showed up with a severe wound to my finger. The staff took care of me immediately and knew what they were doing. Due to the severity of my wound I had to be transferred to another hospital with a hand specialist. I was very glad this place was here to take care of my immediate needs and get me stable.','2017-08-11 20:34:38.434000','2017-08-11 20:34:38.434000',5,'Dennis McSwain','https://lh5.googleusercontent.com/-e2BWRy4Zg78/AAAAAAAAAAI/AAAAAAAAAAA/srWLigTF-Vk/c-rp-mo-br100/photo.jpg','17394740196501090048',4999),('AIe9_BFMK6FB7k24ANEBV5CospTTTxIYmY9DYizpkol3Ia0vPgt7zOX33zhkKoBcBe3V8m8zeWlxQzZGwdcs44RWcJ7dzWbPAn01r5iXT_oHHBqmUOj5WFk','I was a bit worried when I walked in 🙄 as is your worried about your self on what your going through 😏 the staff was great with kindness, caring, thoughtful, I felt so comfortable very friendly here 😀 lisa, Kramer, Krystal, Aaron and especially the Doctor: DR HUERTA he took the moment to speak with me on a certain subject.. I\'m so glad I came here 😊 I know I\'m gonna be ok 😀 God has my back He knew where to sent me they all took good care of me!!','2019-11-22 02:33:48.954000','2019-11-22 02:33:48.954000',5,'Sandra Kay Hernandez','https://lh6.googleusercontent.com/-GoHHGMqd2Fs/AAAAAAAAAAI/AAAAAAAAAAA/lGIns9Fzu24/c-rp-mo-br100/photo.jpg','13486358490203335051',730),('AIe9_BFMK6FB7k24ANEBV5CospTTTYSDOjnneK_cjNxGbuuPLKhOUtoBNfRYMS_9oM-BNYbbwwM3MxHrMeGU40DCaZ9CS85oZaS0Q9z3Y0WyH6BTVJHwWGg','The staff at Signature Care Montrose were friendly, prompt and very attentive to my needs. They are fast and efficient and very thorough with your patient care. The staff, starting with Rita in registration, my nurse Churiah, Joey in radiology, my ER technician Josh, and especially my doctor Dr. Kotey, were very warm and had a great bedside manner. I love the warm blankets, coffee and snacks, all while I watched T.V. in a nice warm room. Thank you Signature Care Montrose for making me forget that I was in pain and making me feel like I never left home!','2019-01-05 02:48:09.538000','2019-01-05 02:48:09.538000',5,'Margaux Mabrie','https://lh6.googleusercontent.com/-AMG7OXcal9E/AAAAAAAAAAI/AAAAAAAAAAA/9mv5PMOzPaM/c-rp-mo-br100/photo.jpg','3511292162159714121',7521),('AIe9_BFMK6FB7k24ANEBV5CospTTUDV24AS37zZqNorWfqgjkv8jLksjZiR-qIbVh_2h373GPO3EBcEpAfP3-LLwRIJ6MUJpVM1Vf6bclCINs-S0hFDFFH0','The service here was great and I was taken care of right away!','2019-02-23 18:22:05.612000','2019-02-23 18:22:05.612000',5,'Isabella Phillips','https://lh5.googleusercontent.com/-EDN9uYWiiY0/AAAAAAAAAAI/AAAAAAAAAAA/SnCXMOCxq9o/c-rp-mo-br100/photo.jpg','16891069708558046635',4344),('AIe9_BFMK6FB7k24ANEBV5CospTTue6rktZeV56boBXGADaA1C7kCJCl5JVF8Hl64QNTxRwA_IhIkV1to5ECZ-0JOxYXHEvpBekajVJi7V0cRfKAEcH5heM',NULL,'2018-10-15 00:23:19.397000','2018-10-15 00:23:19.397000',5,'Ethan Hoasjoe','https://lh3.googleusercontent.com/-zdw3NFU5tT4/AAAAAAAAAAI/AAAAAAAAAAA/LfCkZcCCVyQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3707),('AIe9_BFMK6FB7k24ANEBV5CospTTUg3Dhtjyx9mF08Z0mt8MJe0-M1FiJ-NvO3yGum67xuza4Q9Y-pjldd6c70ih8qhjezwH8BymrJphYjPoCtK_esHJH98',NULL,'2019-09-20 02:50:45.536000','2019-09-20 02:50:45.536000',5,'Dolores Guerrero','https://lh4.googleusercontent.com/-KobdFEde1Yc/AAAAAAAAAAI/AAAAAAAAAAA/QhHifRPjsuc/c-rp-mo-br100/photo.jpg','16590124370714063921',3193),('AIe9_BFMK6FB7k24ANEBV5CospTTuvZVjcAgWHJRL4YWrc0DFdkRGPpeMG7sMACzCbgJf_aj7VhE9ybZpKWvrjnxSDwPwDSMrH4x4ixlpaQIp_eNlbOaNHw','Fantastic care for an animal bite. Highly recommend Dr. Kimball, Kendra, and Jacob.','2020-01-05 18:25:42.723000','2020-01-05 18:25:42.723000',5,'Patrick Dolan','https://lh4.googleusercontent.com/-WTfmd7cZGOM/AAAAAAAAAAI/AAAAAAAAAAA/2S65KIe1Xag/c-rp-mo-br100/photo.jpg','16590124370714063921',2986),('AIe9_BFMK6FB7k24ANEBV5CospTTuXu--FO1pr6msTQpHBxuGtadAIxI6UsiYVhMpBng_DBWjg88CvmlVcC6sdtcmVMfX6wiZxrEEK8P0kbyLtEKsSgzSus','The best care in the city Dr. Miller is the man!!','2020-08-11 21:37:47.547000','2020-08-11 21:37:47.547000',5,'Sean Carter','https://lh4.googleusercontent.com/-CvO2gyluegE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnGt_zckqJPa-T3JocbgVeB603PEw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',23009),('AIe9_BFMK6FB7k24ANEBV5CospTTv-SSIRZvnIJs3JpDaeX_Y_1Evou2PrtGIM_-LUYe806TKnEdn2vFBovvg08hDOSfMF0t0RxWnMyVuJaorszJNJ2s4k0','Got me in super fast and gave me a warm blanket. Crazy nice people and all with up-beat friendly attitudes. Not the norm for an ER. Glad I looked at the reviews and chose this place.','2019-02-18 21:01:58.766000','2019-02-18 21:01:58.766000',5,'Tyler Cantou','https://lh3.googleusercontent.com/-HGuxjRMzg2E/AAAAAAAAAAI/AAAAAAAAAAA/EAcpKJGp2Ls/c-rp-mo-br100/photo.jpg','3511292162159714121',7401),('AIe9_BFMK6FB7k24ANEBV5CospTTv3roxjjVrS6vINJziXQ378XbANPB6EL0r3jqk5Ax2UzJg-D1Dv_jDK4L15jMtOxh06WmW8vJP8jijOQsKbc514WLSfo','Great stuff karly the receptionist was great and friendly. \nSuzy the nurse was helpful and caring about our situation. \nAnd our tech was amazing. Definitely will be back if needed, hopefully not but it was a great experience.','2019-10-18 19:35:58.052000','2019-10-18 19:35:58.052000',5,'yenedi Suarez','https://lh6.googleusercontent.com/-2MSOW58dv8k/AAAAAAAAAAI/AAAAAAAAAAA/hYSNTFEk50Q/c-rp-mo-br100/photo.jpg','8626688543755174284',14666),('AIe9_BFMK6FB7k24ANEBV5CospTTv62L9ga9-kdm-WEuXP2jzRssfdMZyvLck8eeAKz1PJv4OvyEmlE7Z7uXNhAdTOooJiUKKc1_OIGmD4ADWupU9JDr-pc','I went yesterday for the first time and it was quick the nurses where very nice and efficient as well as Dr. Jones in fact they just called me to check up to see how I was doing now what I call A-1 services thank you very much.','2019-10-03 19:54:15.531000','2019-10-03 19:54:15.531000',5,'Bokeem Gregory','https://lh5.googleusercontent.com/-GAhIcTMqZck/AAAAAAAAAAI/AAAAAAAAAAA/ouorDekxt8w/c-rp-mo-br100/photo.jpg','2694018788013845459',6057),('AIe9_BFMK6FB7k24ANEBV5CospTTV7-6ylAgM5NmuJ4zmnREfi_FPmj3d-UsaE-7TgVdFDI-H51Ww5QgaejHCTVX6jaOlzjMqBw9p2oZCwbXgPmeUs-9sIU','Georgia was very attentive and caring when assisting me. She made me full very comfortable while in a very scary situation. The wait time was minimal and the staff was on top of their game.','2020-07-20 15:26:20.160000','2020-07-20 15:26:20.160000',5,'Claire Beadles','https://lh3.googleusercontent.com/-1ZiQo97Q6NU/AAAAAAAAAAI/AAAAAAAAAAA/6L3yOPRCV-g/c-rp-mo-br100/photo.jpg','14748677429039074158',21670),('AIe9_BFMK6FB7k24ANEBV5CospTTVb7IjBG8Jd_wj0HSl1t58FP-csrMrUI0KVhes9LW_vCkWltYvRJxoTNgpLp0EC9_wFQt7XYTwI3AWC5_demFsGi3HaU','I Dr. Lindsey was very kind an thorough in evaluating me. I was made comforable by friendly staff like Ms. Delecia, Mr. Rolando, Ms. Karen, Ms. Sonle, and Ms. Amy! Thank you for a great ER visit!','2020-08-23 22:01:04.219000','2020-08-23 22:01:04.219000',5,'William Collins','https://lh3.googleusercontent.com/a-/AOh14GijS2lGlicgPZGgY6Oks9yoPp_xNeG2zufKQcg42A=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTvElIgM7Su5Jd-GGz8LI-vqj6zMIi7bxoPTCzdb5Y12jVc_h9r-SklnnngcO8BGdnxee3_uqMA55apHjqDKo9lBUOCCw','Dr. Grinblatas and the nurses are so helpful. They give you their full attention during the diagnosis, and best part is i didn\'t have to wait at all. Couldn\'t have a better experience at an ER.','2020-01-27 17:15:41.243000','2020-01-27 17:15:41.243000',5,'Amiel Chen','https://lh6.googleusercontent.com/-RKNb2dsXGcM/AAAAAAAAAAI/AAAAAAAAAAA/Hyr3sa_6Imw/c-rp-mo-br100/photo.jpg','14904078213800803294',13620),('AIe9_BFMK6FB7k24ANEBV5CospTTviAOCkzP8vLfxDcAwgLpCHHDfM83IA4Z0wjyX2YvFguBp5hB8J58eGj2zgTMFaOIsPNYiB7q2WWCpFrZBmiXJtC4F70','Very hospitable and attentive! I had Dr Vakey and Nurse Jacob. Came in for minor virus and they gave me blankets, water, and were very efficient! I recommend coming here for any injury/ sickness!','2019-10-22 16:04:27.949000','2019-10-22 16:04:27.949000',5,'Stephanie Daniels','https://lh4.googleusercontent.com/-jHpvnbj7Lvs/AAAAAAAAAAI/AAAAAAAAAAA/y4dGc3cSxsw/c-rp-mo-br100/photo.jpg','16590124370714063921',3126),('AIe9_BFMK6FB7k24ANEBV5CospTTvN8aNxjKdnrSgd6VceJxfZyB8ZRJ6z4bgyB_6hWPir23WjT5cmMGXM_9mZ6Z5_pygcc_CecfCpyLIwcHrOyZyS83Cbs','Robin did a great job and getting me through the paperwork as fast as possible. Courtney was very helpful with ensuring I made it to my room eaisly and that I had any snacks or drink to be comfortable while I waited for the Dr. Billy made my discharge from the facility fast and easy and engaged in conversation with me until I was in the waiting room. This is the best ER visit I have had in Paris, TX. If I need to go to an ER again I will certainly be going back to see them. Friendly staff from start to finish.','2019-02-13 04:03:20.891000','2019-02-13 04:03:20.891000',5,'Kyle Butler','https://lh3.googleusercontent.com/-JQjcs_EHWzk/AAAAAAAAAAI/AAAAAAAAAAA/qcB1ZZCJlmw/c-rp-mo-ba3-br100/photo.jpg','8626688543755174284',8569),('AIe9_BFMK6FB7k24ANEBV5CospTTVoEquXZt-NA-3aa9-L9kpvJ1XAQBm0Ly7pgH_rdziMgh_M4dGEMLDsi5Qj9Z1eibXzJzFjBQExiJ-2zE8ZT49RpbkFk','This was a very painless experience. Because we were from out of town, we were concerned about finding immediate medical attention. The service was so kind. We were helped immediately and were walked through everything we needed with ease.','2020-03-11 17:32:20.573000','2020-03-11 17:32:20.573000',5,'Hadley Oehlert','https://lh5.googleusercontent.com/-xvzARVzIwPk/AAAAAAAAAAI/AAAAAAAAAAA/WG_ki5_5giM/c-rp-mo-br100/photo.jpg','16891069708558046635',21057),('AIe9_BFMK6FB7k24ANEBV5CospTTVQiufvPJBfCcC6eJXmmOkTQLleFLsQ1829hRDfoJCk4fqKB0lYuYm8iL6phbStgZBbPypaciT9Zv7sr7ny1ZvZ5OzRM',NULL,'2018-08-31 02:46:54.249000','2018-08-31 02:46:54.249000',5,'Shaun Gains','https://lh4.googleusercontent.com/-ZNfcr6ClYdM/AAAAAAAAAAI/AAAAAAAAAAA/JmwVvin9C5Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1535),('AIe9_BFMK6FB7k24ANEBV5CospTTvtNBZi4D-Ot0B1mUIj0LPZC3h4zTThy7akTm53NulzuDITHPUroetZ5kdOFZvPNq_wb7xa5_PgOOQeBzGtqdwgIVDIs','This place treated me so well i gave it a five star because the doctors were very nice with me and treated me nicely so I\'m giving this place a 5 star!\nThe above comments were written by my 9 years old son and I share the same enthusiasm. The staff were very attentive and professional to both of us.','2019-12-28 03:01:11.999000','2019-12-28 03:01:11.999000',5,'Ramon Maldonado','https://lh3.googleusercontent.com/-GmuSdi4NMFA/AAAAAAAAAAI/AAAAAAAAAAA/YeztfhJmvlQ/c-rp-mo-br100/photo.jpg','2694018788013845459',5973),('AIe9_BFMK6FB7k24ANEBV5CospTTVWGjHCGdyp53hmxpArccsTB79Q8QML0O9RcakCXxbfmkoijqSWuXjZkRqGU43iJ5P7-GWRy8yOJhNq4LUowKSkfoI60','Fast and efficient Gabe, Kristen, and Kathleen, and Dr. Werzanski got us seen and taken care of. They were knowledgeable and made our experience very welcoming. Super nice crew!','2019-07-02 05:18:46.891000','2019-07-02 05:18:46.891000',5,'Clare Carroll','https://lh6.googleusercontent.com/-iaVW0yQ0EbU/AAAAAAAAAAI/AAAAAAAAAAA/9BYAEOk6nis/c-rp-mo-br100/photo.jpg','16590124370714063921',3324),('AIe9_BFMK6FB7k24ANEBV5CospTTw4YlyratuzF-LlZ4jI3JoyK9KaRvYqpLNCKwbpgR91W89tVEmr_-GVUVPSKkEENYGYJTHfCqCeX24LDeJzS-o1J1VYQ','Itza, Dyveliz, Brad, JR, and Dr. Harjar were all super helpful and kind! The visit was very smooth and timely.','2019-08-01 17:48:19.370000','2019-08-01 17:48:19.370000',5,'Becca Kelley','https://lh4.googleusercontent.com/-l4UNGwPyL_k/AAAAAAAAAAI/AAAAAAAAAAA/X1TxYdYm9RA/c-rp-mo-br100/photo.jpg','16590124370714063921',3270),('AIe9_BFMK6FB7k24ANEBV5CospTTwAZq1x5KCbowlmvx19t-ehl-3Tnf6CE4pFquT5PI7C08yhk8qd4p7B23uzKfRiFtjAaXghcLhz9ERef16I-wmB3zGQU','Great job! Anthony (RN) and Dr. Kimball did a great job! Highly recommended!','2018-08-28 19:28:52.260000','2018-08-28 19:28:52.260000',5,'Dana Corbett','https://lh3.googleusercontent.com/-FtxSM5u1Ujw/AAAAAAAAAAI/AAAAAAAAAAA/zEbxpf0Vnb8/c-rp-mo-br100/photo.jpg','16590124370714063921',3760),('AIe9_BFMK6FB7k24ANEBV5CospTTWBfMnAjGIVX7tSgVtBU32fhJFaWw3KXbTzoASGOYwjAEAZospS_9d8rKrKw4KEUmf5Jo49k8C-Da-p244FDw4rjWPGI','Everyone there was courteous and checked on my brother frequently. They were willing to answer any questions we had. We felt very comfortable there.','2019-02-04 15:01:18.105000','2019-02-04 15:01:18.105000',5,'Dawn Brewster','https://lh6.googleusercontent.com/-7B3RsAOcu-M/AAAAAAAAAAI/AAAAAAAAAAA/wBBjl2Tbd4g/c-rp-mo-br100/photo.jpg','17898197009688164559',5866),('AIe9_BFMK6FB7k24ANEBV5CospTTWbo6ijai0K9CWsU31m6e6AGhG5z6uyaNtuv7KXXdX69PSxeUrfY_jT6zJBeFZLHyHq28k2xG_Q4hpYGamlxnnb1PmuE','Best ER experience I\'ve ever encountered. The staff was very attentive, compassionate, personable and very friendly. Dr. Mauldin made me feel very comfortable and explained step by step what my treatment would be. Nurse Dawn S., Rad Tech Can N., and Registration Coordinator Ashley should be named the dream team. Everyone made sure I was okay from the time I walked in and their bedside manner was excellent. I will definitely refer my family and friends to this ER.','2019-01-08 22:03:10.696000','2019-01-08 22:03:10.696000',5,'Tonya Massey','https://lh4.googleusercontent.com/-7dh9-Omf-EM/AAAAAAAAAAI/AAAAAAAAAAA/9TdPOjFxVI4/c-rp-mo-br100/photo.jpg','17898197009688164559',5892),('AIe9_BFMK6FB7k24ANEBV5CospTTWNF0_YcZK8l9ilzoVnjf6hIzTr6GLt-Hwaggnt7OoTmTovYU4bFmb2JLLr_fGOhCuhZZMr-abTbdtlWGL6OFQeZ-fhU','Everything was quick! I am happy I came here instead of going to a major hospital. Everything is clean and updated. The staff are friendly! Highly recommend!','2019-12-08 03:43:09.705000','2019-12-08 03:43:09.705000',5,'Sonia Poston','https://lh5.googleusercontent.com/-FEfT24PEjNg/AAAAAAAAAAI/AAAAAAAAAAA/Kh56zl5Lyhc/c-rp-mo-br100/photo.jpg','2694018788013845459',5995),('AIe9_BFMK6FB7k24ANEBV5CospTTwP88QhC2zprpg_fa72FWmApfmyBW-q-tO3LV7SYomVarXbWJyrzba5sg4mEirU0n9eYf1aKheNufHBgQIncJzB2DQEs','I have been here twice now, and each time everyone was very friendly and helpful. Would recommend.','2017-04-23 17:59:58.333000','2017-04-23 17:59:58.333000',5,'Kira Tussing','https://lh4.googleusercontent.com/-Bl7kxxzhyaM/AAAAAAAAAAI/AAAAAAAAAAA/zmgwAILWqk4/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7831),('AIe9_BFMK6FB7k24ANEBV5CospTTwwCNCpzsU3AVL75ta0LeY4LWyqEUe2wkycsQs0mLRXATfmEFGS3L-o0WV1_rmCHuowJpean0Jlpy37oZeXL-zJ__h80','Anthony RN and Dr.Kimball were very welcoming and explained everything extremely well while providing excellent care','2019-07-12 03:01:11.142000','2019-07-12 03:01:11.142000',5,'Molly Persha','https://lh6.googleusercontent.com/-_JFlQTyK1kM/AAAAAAAAAAI/AAAAAAAAAAA/2EjKhRyXofQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3302),('AIe9_BFMK6FB7k24ANEBV5CospTTwxw9r6RHb3mDmLhoA2BYm3nhF0RkXx4WAzHmfqqNMMSwq7syC3A2sslzuWwfcpcNXz3TOfl_QkLyUe0xcHcY1UIyBk0','This staff is amazing! From the moment we walked in the door the receptionist took care of us right away, the nurse Lia , Laura, Shay, Aerial and Dr. Wang all made us feel so comfortable and taken care of. We were so concerned and they took care of everything. I would recommend ercare to everyone!','2019-03-15 02:18:16.210000','2019-03-15 02:18:16.210000',5,'Crystal Tobias','https://lh4.googleusercontent.com/-I4c35-tt31g/AAAAAAAAAAI/AAAAAAAAAAA/sSwDI-ztew0/c-rp-mo-br100/photo.jpg','12541597562633926366',536),('AIe9_BFMK6FB7k24ANEBV5CospTTWzqCVMp3H3qmeX546FtH1DZPMrMfC0WDwLEZDT82v7la1JeL500-FGIDxjy9vP7dAPmQclKKVAUClf7PLHEnyatkK_A',NULL,'2019-04-20 09:12:34.436000','2019-04-20 09:12:34.436000',5,'Jani Whitney BSN,RN,CHPN','https://lh6.googleusercontent.com/-hfUByySbU6E/AAAAAAAAAAI/AAAAAAAAAAA/12CGdwjzf-4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTx8FwZrBE-kdFMNAnkqvlYDwe4uRkFhOrEucpou-frQ6LFsK8CXUuHkYWZwC3XgcgJq9m7prBF3luU6jUEaltczZJztY','I absolutely love this place! They are so helpful, I\'ve never waited, for my daughter they took us both times into the paw patrol room, definitely captured my daughters attention. The very first time the staff was amazing, one nurse held my daughter so I could fill out paperwork as it was incredibly late at night and I was clearly frazzled, the 2nd time the doctor (DR. HEMERKA, MD, JOSEPH N) was amazing with my daughter, he figured out what was wrong with her and was incredible with her, also never touched her without permission which I loved, if she\'s super sick again we will be going back there','2019-12-11 04:52:05.159000','2019-12-11 04:52:05.159000',5,'Mikayla Bynum','https://lh4.googleusercontent.com/-6hEV-dlDTn0/AAAAAAAAAAI/AAAAAAAAAAA/pA0lRDRkd5M/c-rp-mo-br100/photo.jpg','2694018788013845459',5992),('AIe9_BFMK6FB7k24ANEBV5CospTTXAAcTIq8euYt7ckKWAzyA0vgtbmbqIri9Y4izzBQ-5yYIyV3KNiWtkVzKHfxIUVLHsPTKk9isLDTVNm3fsvcMnZ9Fkw','Love them!! Nice staff and always keep you comfortable. I got there freaking out because I was concerned with my breathing and all the medical staff kept me calm and relaxed. They go to the max to take care of there patients. ','2017-06-21 14:03:38.566000','2017-06-21 14:03:38.566000',5,'Arlene Flores','https://lh4.googleusercontent.com/-mYokBFc9iiw/AAAAAAAAAAI/AAAAAAAAAAA/r68yCVVl8vk/c-rp-mo-br100/photo.jpg','14567670160750071148',1806),('AIe9_BFMK6FB7k24ANEBV5CospTTXaJQr9LjNuoZ_KfQwZWVFI3ZsxupO1tvjNBs-ESLTA42-YpqXHTLJUneNgXsRDdpWQsMIjyOLk6PzNo6AuujW9hNSZw','JD, Cody, Sam and Nydia assisted my daughter at the Pflugerville SignatureCare emergency center today. My daughter was extremely scared and all 4 of them made her feel so much better!! A+ experience!!','2020-07-28 19:49:42.247000','2020-07-28 19:49:42.247000',5,'Katy Frank','https://lh6.googleusercontent.com/-vjJaqME9CTk/AAAAAAAAAAI/AAAAAAAAAAA/iFBntUMUyfU/c-rp-mo-br100/photo.jpg','2077061009497551125',22788),('AIe9_BFMK6FB7k24ANEBV5CospTTXciuOy30uOMyLAj3nVY6uC1XAWzvRXq3UrbqtTKP3A8NksRyB9sMtE2buqecAnxsNHr6hLCiVgWAMQ-h4JUmxSb5W_c','Had a great experience! Staff was quick and super friendly! From the moment I walked in registrar, Tanishia W. greeted me with a smile and was very welcoming. My nurse, Jennifer B., Rad tech William M. and ER Tech, Patrick S. were all very attentive and took great care of me! Dr. M Thomas was awesome and took his time examining me and made sure all my questions were answered! \n\nAwesome team and great service!! 👍👍','2019-05-31 00:42:45.938000','2019-05-31 00:42:45.938000',5,'Juan Villarreal','https://lh3.googleusercontent.com/-mMZptAnOjFI/AAAAAAAAAAI/AAAAAAAAAAA/KtzthH11bPI/c-rp-mo-br100/photo.jpg','17898197009688164559',5717),('AIe9_BFMK6FB7k24ANEBV5CospTTxGuyG3W2A4jkv4zYwKO1rsHLUH2QcYsQjX2cVEaYuUjcZBBTk01ZBDa5CJkGBknOruk2wrO1izJ_d6B1NPQzdV25XX8','De. Leung, Yeovil, Amy, and Jessica took care of my mother very well and were Professional and the visit was quick and took care of her needs. Would recommend everyone to come see them','2020-08-15 15:01:35.409000','2020-08-15 15:01:35.409000',5,'Frank Gudino','https://lh3.googleusercontent.com/-rIDdtKfJdsI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnP_GiWNW5jZB6lEsY7KGYLPokdnQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BFMK6FB7k24ANEBV5CospTTxHiZVtXVSBm6AfCjy2BtDyF8nIn3kYJ7_ExIsuW_apcCaMi9oZUkFzdbPGUOLB4zeLNGd7-3GLFTvL3bnVRahOjEcWI','I absolutely loved coming here for my care. The staff was super friendly and loving I feel as if they really cared about every aspect of my health. Kimberly P., Joseph B., and Katherin L. were so nice and they made me feel so welcome. I definitely recommend coming to this emergency center if you want to feel loved and cared for!','2019-10-12 18:38:21.786000','2019-10-12 18:38:21.786000',5,'Sophia Rodriguez','https://lh6.googleusercontent.com/-gMuLFLbWY3M/AAAAAAAAAAI/AAAAAAAAAAA/hL7eXKZZdHs/c-rp-mo-br100/photo.jpg','14567670160750071148',1218),('AIe9_BFMK6FB7k24ANEBV5CospTTxogWY6cV-uJsPatJYJFKEmURQN6F1mFYOiU0h9vyanL15lU_0tj_0_wn6ObtbNjiIRxTDKOPAzw9Z4Cm9LomiAhi5io',NULL,'2020-08-21 03:38:43.353000','2020-08-21 03:38:43.353000',5,'Misty Newkirk','https://lh3.googleusercontent.com/-L3-b_Xyc2Dw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn0OzJ-lh_zhox5ldNoyKHQFwzpow/c0x00000000-cc-rp/photo.jpg','2077061009497551125',22993),('AIe9_BFMK6FB7k24ANEBV5CospTTxVDVSEP6LDub_O9eWK7YbkJKy6eK06FbClzcsp4rM3ayCm3euTRbBlBnYJconnd-3iPARlVycngFcTzJyGz_2ZxKA24',NULL,'2020-01-09 01:30:12.171000','2020-01-09 01:30:12.171000',5,'T Jackson','https://lh5.googleusercontent.com/-_23213FW4Yo/AAAAAAAAAAI/AAAAAAAAAAA/ffh_vvxGIks/c-rp-mo-br100/photo.jpg','17898197009688164559',9449),('AIe9_BFMK6FB7k24ANEBV5CospTTXxHh97SucaNTxRnGcQcUeNKRCF8_jnInzuc5Jn7VcL0OrWFtNBXC4bUfFSxDq8dJNsc6pLbovQlSqM9W1hK2SB7iXAQ','They are quick to get you in and are very helpful. Cody and Sam are very nice and answered all my questions. I am so happy I chose this place would come again.','2020-07-28 22:08:39.363000','2020-07-28 22:08:39.363000',5,'June Mitchell','https://lh5.googleusercontent.com/-nMAUuPsAlG8/AAAAAAAAAAI/AAAAAAAAAAA/PK1Px0oaJV8/c-rp-mo-br100/photo.jpg','2077061009497551125',22780),('AIe9_BFMK6FB7k24ANEBV5CospTTxxlwpynkg4uQBiXZqj4CXG5wpibX6EC6emqSLD00mNx6qzNiqhQEwlQMgeK7NoQ-UWF6LDjseTR8TW7NG4wbVGD2p0Q','Came in with my boyfriend after he sprained his ankle. The was very friendly, and the doctor was very informative.','2020-03-12 23:55:13.781000','2020-03-12 23:55:13.781000',5,'Tiffany Johnson','https://lh5.googleusercontent.com/-94wpXkn_VWk/AAAAAAAAAAI/AAAAAAAAAAA/tAj3ncCTqeA/c-rp-mo-br100/photo.jpg','17394740196501090048',21064),('AIe9_BFMK6FB7k24ANEBV5CospTTy-m4E9AQE0zd6SyrQ19KmIRfHjPumTGYLbIby5y85v3r9B4HgMptTBjm8rjoTQFb07YclzaJG8NV9PYIrdlrzER3WBc','Awesome staff and awesome service!!! PATRICIA C. & JOSE P. Very courteous and considerate','2020-01-02 20:40:18.103000','2020-01-02 20:40:18.103000',5,'Takeeyah Sterling','https://lh4.googleusercontent.com/-3yaOQY2RZMw/AAAAAAAAAAI/AAAAAAAAAAA/SOwpURdZNtA/c-rp-mo-br100/photo.jpg','16389487648212004696',2489),('AIe9_BFMK6FB7k24ANEBV5CospTTydKTCgMM0QK6fpHWpu0HtxSS86XUqW-NZ6UPJZPL5z3UqCSpV-48haasfmTCQ9H2w120VECfDMq8YwdqtZ2YpOQXyhY','In and out! Very helpful staff.','2020-07-18 03:38:36.817000','2020-07-18 03:38:36.817000',5,'Melissa Carter','https://lh4.googleusercontent.com/-9Q5HEhw9-sQ/AAAAAAAAAAI/AAAAAAAAAAA/uZXDBnH_4BE/c-rp-mo-br100/photo.jpg','16590124370714063921',22671),('AIe9_BFMK6FB7k24ANEBV5CospTTYEjE83M0tvW8P7Hptoq38sQExoPXjOZ2pJTnShbSAAZhqdPx0xc7WHtDO1ssrBnVLVJy76oGPlEiUtFk9wU1fqjHOdg','Every single member of the staff was very caring and attended to us immediately. From our first contact, Tanisha to Dr. Mauldin, Nurse Chantel, Laura and the very hilarious Matt. You were all very warm and compassionate. Thank you all so much. \nAnd oh, thanks for the warm blankets too :)','2019-08-12 09:10:48.131000','2019-08-12 09:10:48.131000',5,'Ibk Thomas','https://lh5.googleusercontent.com/-2bsqHZtC6VA/AAAAAAAAAAI/AAAAAAAAAAA/rkMkcIcsRWw/c-rp-mo-br100/photo.jpg','17898197009688164559',5592),('AIe9_BFMK6FB7k24ANEBV5CospTTYfvn42zJ8-KlMb-PUMR-923b8aIwFAIk_09dwM1pued9HHs3gvVwsVhkSfvFPF70Ex4ilKE-P09L9UVrtzqVjPtlA30',NULL,'2019-06-08 02:37:46.296000','2019-06-08 02:37:46.296000',5,'Alyssa Taft','https://lh4.googleusercontent.com/-t-lcdrW3xN4/AAAAAAAAAAI/AAAAAAAAAAA/QVb1IjD7NGw/c-rp-mo-br100/photo.jpg','13486358490203335051',982),('AIe9_BFMK6FB7k24ANEBV5CospTTyHdm0_E3biuAvgOALXEyGOEXl4zB6uaPLc474tjWMg01U2ivxNZ_foLsLC5oe4g8EijejO6zHXygqH1fqawQOwFRXEI','For the last few days I have been feeling really sick I came to Signiture care emergency center and they took care of me quickly not a long wait at all Dr.Henderson Alvean, Jordan and Jocelyn made my experience worth while I was take care of and released pretty quickly I would recommend this location to any who needs to go to the emergency room... and best of all they are an Er not an urgent care.... much better for my 𝐈𝐧𝐬𝐮𝐫𝐚𝐧𝐜𝐞','2020-02-05 17:15:19.489000','2020-02-05 17:15:19.489000',5,'Demi Sha','https://lh3.googleusercontent.com/-NiAW5n0Wz8o/AAAAAAAAAAI/AAAAAAAAAAA/mcbUb9Oxh6A/c-rp-mo-br100/photo.jpg','16389487648212004696',22629),('AIe9_BFMK6FB7k24ANEBV5CospTTYjbMohzkPoAJISq60Zt6l-3H3QwGR4hXgdmmoR6073IRf7wiHy5tE1cqbw28yiJUPABQvr6MK6d2HRNVPE4eN0L-bJk','I have never had such a wonderful experience as this at an Urgent Care. The staff from the security guard at the door to the nurse to the X-ray tech to the doctor were phenomenal!!! I really felt like they truly cared!!! Hats off to you Signature Care!! And you to Rachel!!!💖💖💖','2016-04-26 17:49:45.439000','2016-04-26 17:49:45.439000',5,'Dr. Marlo Washington','https://lh3.googleusercontent.com/-jmO0tzpLPzM/AAAAAAAAAAI/AAAAAAAAAAA/8445iGOgp3k/c-rp-mo-br100/photo.jpg','17394740196501090048',5261),('AIe9_BFMK6FB7k24ANEBV5CospTTypmPxK-jidwHjpfwR2UHvo-9WxoGTmm01UIsKluHhbmZnSlnIeBU4ButVWUTX4Re-1WtcRxtKIBzU94hdcjLQ5Mcdnw','Dr. Craig, Laura, Eve, Olivia and Cindy were more than awesome. I really appreciate how they took care of my daughter. They were all very courteous and helpful. Their bedside manner was beautiful. Thanks so much for superb service.','2018-08-09 18:03:23.356000','2018-08-09 18:03:23.356000',5,'Jennifer Coleman','https://lh6.googleusercontent.com/-5KDpJ9TQTec/AAAAAAAAAAI/AAAAAAAAAAA/gyGWi94pOOA/c-rp-mo-br100/photo.jpg','3511292162159714121',7650),('AIe9_BFMK6FB7k24ANEBV5CospTTyvXt24BeXNXUjPa5NC-FQuAb-zS2rSbb7eHr7xayQkKLKWPZJLFACZTY_VzGCudkGCPW7jDicfSAwg8XQT98Ota6ceI','The staff and dr where wonderful here and will return in the future','2019-06-03 16:51:29.471000','2019-06-03 16:51:29.471000',5,'Chera anderson','https://lh6.googleusercontent.com/-wHyHHMbgT-o/AAAAAAAAAAI/AAAAAAAAAAA/2ORBNgoqVlI/c-rp-mo-br100/photo.jpg','8626688543755174284',8464),('AIe9_BFMK6FB7k24ANEBV5CospTTyxL8ILUUAzuANmBlXFAyjon9zYT0hmldcueMO_ODSCH3ANHtLUikfikCkWi8xqYMjJCXByKVVpJM2Pu1VJmVDZS6pL4','Great nurses & doctor ! \nStrongly recommend , Dr.Patel,Nayan was really helpful & nurses were very nice','2019-07-10 04:51:04.479000','2019-07-10 04:51:04.479000',5,'Nicole Castaneda','https://lh6.googleusercontent.com/-g3rDE-GBjes/AAAAAAAAAAI/AAAAAAAAAAA/a3m3tR9o4IA/c-rp-mo-br100/photo.jpg','3511292162159714121',7256),('AIe9_BFMK6FB7k24ANEBV5CospTTz0n8DiEhqZZZSlR1DFaQT4c6zUX64EHqKk0WrHcLIjW685oWBB-_qe4uuQJeJdaB_e4r2bLnlwAC4IcT0VNGqJQjZwc','It\'s great and fast service very polite doctor and nurses.','2019-01-13 20:08:04.870000','2019-01-13 20:08:04.870000',5,'Lisa North','https://lh4.googleusercontent.com/-o4gPkRnu62o/AAAAAAAAAAI/AAAAAAAAAAA/CnJC4u_ZO3U/c-rp-mo-br100/photo.jpg','17394740196501090048',4738),('AIe9_BFMK6FB7k24ANEBV5CospTTz5ABlXpK7ch-KBQ8nJvNon0p7xYN4N7HcuTbopJWr_vEv3p0WOaTMqHjOMHL8u5SODV3kvFPM3phgLSgTkwKnDxbExM','We were in great hands with Cody and Kelsey. They made my appointment fast and efficient.','2020-08-03 21:33:53.713000','2020-08-03 21:33:53.713000',5,'Joshua Bannick','https://lh4.googleusercontent.com/-BSyL9kx6a0I/AAAAAAAAAAI/AAAAAAAAAAA/TK3LGbK6fE4/c-rp-mo-br100/photo.jpg','2077061009497551125',22742),('AIe9_BFMK6FB7k24ANEBV5CospTTz6hczJ0fnmA47tkZGeI1Gu1RWXWM71oAGGMCS9vN-1LKz58ehz5uJTTqyIWvhNcghnt2lm1B1vx_P9iFn3BwFKnKoZQ','I visited SignatureCare memorial last weekend and my experience with this facility was great. The staff, nurses, and dr were all super nice and professional. The facility was clean and comfortable. Should I need to see a dr over the weekend in the future, I would come back here.','2019-07-24 12:47:14.904000','2019-07-24 12:47:14.904000',5,'Paige','https://lh3.googleusercontent.com/-tl6lpxU7Xcc/AAAAAAAAAAI/AAAAAAAAAAA/VPJ-nTC2RCI/c-rp-mo-br100/photo.jpg','14904078213800803294',2108),('AIe9_BFMK6FB7k24ANEBV5CospTTZa8-pNP97Rz4OQeQTqiY4iV5yXjQa072AasFVpHUvkxoLgGfl1Nq24-wxcInILMDlSJ_vW1Kmu9J2SHKvQokSoMkyDw','Everyone who provided me care was exceptionally professional and attentive. From the front desk to being escorted back to a room. Signature care provided me with everything I needed done. The Dr, nurse practioner and team were all so thorough and caring. I stayed for over an hour because I had several testing done, but I was well taken care of and comfortable in a room while I waited for the results. Which were also explained to me very thoroughly and my questions were answered so that I fully understood. I am so happy they are right down the street from me.','2017-10-25 18:18:47.228000','2017-10-25 18:18:47.228000',5,'Laura Benavides','https://lh4.googleusercontent.com/-9jKXM6nNowA/AAAAAAAAAAI/AAAAAAAAAAA/5USKOsRsFbg/c-rp-mo-br100/photo.jpg','14567670160750071148',1741),('AIe9_BFMK6FB7k24ANEBV5CospTTzVFP9ltlnDSbasyXbmPlN9yXsz7WMOU-dbxSD1CeMnTZNpRPfZ_eyGXukoMs7cg4V_4vR4eA629Mud60JojZBLCCeM4','Husband came in, his knee was hurting really bad \nThey were all helpful very fast service. Would recommend highly.','2020-01-17 01:48:22.649000','2020-01-17 01:48:22.649000',5,'Melanie Brito','https://lh5.googleusercontent.com/-LIe2BFUFJVQ/AAAAAAAAAAI/AAAAAAAAAAA/zVkst6Y-t4g/c-rp-mo-br100/photo.jpg','13486358490203335051',13479),('AIe9_BFMK6FB7k24ANEBV5CospTTzVLAyn7bGTg98K9zi4cVz5TOMrBwfHG8pUpkQ9fiFdGx_zaju47c-qmINnqG6JrwY1h--xXK3cnk33JnMZaVfSbxzCI',NULL,'2019-06-24 02:14:56.855000','2019-06-24 02:14:56.855000',5,'Brock Niezgoda','https://lh3.googleusercontent.com/-7hU8QnqS7o4/AAAAAAAAAAI/AAAAAAAAAAA/p1D2sRpmMpI/c-rp-mo-br100/photo.jpg','14567670160750071148',1287),('AIe9_BFMK6FB7k24ANEBV5CospTTZWSJ7b6coBOOkqTdkz94_xnqGUe93DGuB6E57ZM4HdvK2TV7zhi0FaZbIyyBG1XfJSNt5fkqrwnD7gQlSz1bcUZ-gcE','Good medical service. Terrible billing department... I never received a call or statement and wrote a Lien under my name 10 days after the service date!!!!','2018-07-16 14:55:07.723000','2018-07-16 14:55:07.723000',1,'DAVID GINEBRA','https://lh4.googleusercontent.com/-yR6Y_urX28I/AAAAAAAAAAI/AAAAAAAAAAA/oB03_j_QGMs/c-rp-mo-br100/photo.jpg','14904078213800803294',2238),('AIe9_BFMK6FB7k24ANEBV5CospTTzXDGfDJEMdTvoEzW0_5qZNvXfyw8FleHJoa4cNb9YzcMrcc2OgpI-aAXhvC-BSwrud5xcXW1e4b-Ak8haSEJcueal_8',NULL,'2015-11-25 02:37:16.424000','2015-11-25 02:37:16.424000',5,'ayesha ibad','https://lh4.googleusercontent.com/-MdR4X96zHDk/AAAAAAAAAAI/AAAAAAAAAAA/PL601POdJH0/c-rp-mo-br100/photo.jpg','17394740196501090048',5291),('AIe9_BFml1g03-jEFpSzhzgS2Oed1MSpMqmf7hQL3_cjjsTjgtBq5sVd4AIPWhyzgbKg9A8LNTfEHo9_glgQMuqNWJK7qClQXo4_vR51-3HjX9-g6HycDxI','Tricia Jani and Sibenne were the best staff. They made feel so comfortable during a very time. The facility is beautiful. Will definitely come here again when the need arises.','2019-11-22 23:43:21.381000','2019-11-22 23:43:21.381000',5,'Crystal Arrechea','https://lh4.googleusercontent.com/-8Xc5aYXaszA/AAAAAAAAAAI/AAAAAAAAAAA/2bkZpC2vzxY/c-rp-mo-br100/photo.jpg','16389487648212004696',2640),('AIe9_BFml1g03-jEFpSzhzgS2OedHxBGfEGAKuXpcT5yqrpTpJ0p8K8r_nb25mLiD9uVR5L8s0QuSe1PYioq2gvPXt_x6ogBmOlwXMiGdDT7zc-zfC_W4T4','Great staff!! We will be back!!','2020-01-03 13:31:35.924000','2020-01-03 13:31:35.924000',5,'Anitra Francis','https://lh5.googleusercontent.com/-BLqQMtS9wNc/AAAAAAAAAAI/AAAAAAAAAAA/FbxVs_yq6EY/c-rp-mo-br100/photo.jpg','12541597562633926366',261),('AIe9_BFml1g03-jEFpSzhzgS2OedJsZm5-zgJQ6zdIW-erv13ZEthHkqhA2_nicRSuhWelGMKn_II0IEwN8HNDeMdCxInyMknt190_hoomAeTvQCAmugs7s','This Cypress location has helped me and my girlfriend when needed I genuinely thank everyone who has been apart of making us feel better.','2020-01-16 18:18:43.800000','2020-01-16 18:18:43.800000',5,'Jajuan Thompson','https://lh6.googleusercontent.com/-UtARkrxWMv4/AAAAAAAAAAI/AAAAAAAAAAA/sGq1xb0Uuew/c-rp-mo-br100/photo.jpg','16389487648212004696',2587),('AIe9_BFml1g03-jEFpSzhzgS2OedZgEPSNTizuzaK9cDv_kYY4Tkj-5FZ92EJzDeHiJunQKqNb5_uV_vhkwGrs9kwk1uWPGf4bKvaOTuH1qyC2WGn3YmrkE','Had a great experience everyone was really attentive and friendly.','2018-01-09 04:07:20.965000','2018-01-09 04:07:20.965000',5,'Brenda Rubio','https://lh6.googleusercontent.com/-OCWQOseL084/AAAAAAAAAAI/AAAAAAAAAAA/Iaa3n2HrqX4/c-rp-mo-br100/photo.jpg','8918455867446117794',9311),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn_fl3MEkQt0tDe_8miHXQocceJZ96J5NyTOWgSs9yI0usXdS4zdxJGSxCyROT3T18xeAsyB7jjv1JWXRxf_GtlOzQm4Q','It was a really great experience. Friendly staff and very attentive.','2018-01-21 23:55:33.438000','2018-01-21 23:55:33.438000',5,'Yesenia Saavedra','https://lh4.googleusercontent.com/-tCvBdFW6lkY/AAAAAAAAAAI/AAAAAAAAAAA/mWyJUD_7L-I/c-rp-mo-br100/photo.jpg','14904078213800803294',2288),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn_fZqeny7Iqm2se66zqMugPCUtuV28cZTiFDtp_yVZpi2jQySQYqFtuMLjXAwPKEwOeQwmDcNNjPkE2ZwvdKEG3VneCU','great and fast service','2020-03-02 17:40:27.508000','2020-03-02 17:40:27.508000',5,'VictoriaCraziChick Johnson','https://lh5.googleusercontent.com/-ymwD2vzT_Ao/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmxYu6OqWagsygapqcgvW3EEB0c5A/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14304),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn_hVG4Mv6k1UjHANzpguT8QcFjPt0fyfMSMnXnqctkJ5CVun2I0MQUNK05_CF_9awukUv-nbc1DsZie-yKVGEwmo86IA','I recommend everyone Dr. Kotey, Robert my nurse and Rachel and Amy with my service!','2019-03-18 01:04:52.447000','2019-03-18 01:04:52.447000',5,'Andy W','https://lh3.googleusercontent.com/-wMR_GwPJ3Iw/AAAAAAAAAAI/AAAAAAAAAAA/joh2_Vmt39Y/c-rp-mo-br100/photo.jpg','17394740196501090048',4711),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn_LQbGa53ZSCbLh_wPbqYUlePd9pXufkJbxhAZta3GVhrKo5SHccfVO0gZAf2f9cekvkBmIwXJubvDsomzegtfAdBgtQ','Everyone was great! I appreciate how quick and easy it was to see Dr. Lindsay!\n\nUpdate:\n\nI feel the need to update my review because I feel I was lied to. I recently received an astronomical bill from my insurance provider for literally just checking in, examined and receiving pain medication. I was not in network as I was assured I was and because of this, my bill is insane. While I do stand by my original review everyone was kind and I appreciate the ease of my visit, I regret coming.','2019-04-16 23:27:13.093000','2019-04-16 23:27:13.093000',1,'Wendy','https://lh4.googleusercontent.com/-BDYkKcqAyjs/AAAAAAAAAAI/AAAAAAAAAAA/TaKo9Z8Sckc/c-rp-mo-br100/photo.jpg','17898197009688164559',5771),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn_QJBgZI0O2NuIYavSwZDQp_IL-Vx2psKoYiP_TZKwio1QiKliPHMVDufPjnrbtD7AeuNEJEosYME8eeAr27sM2UNDq4',NULL,'2019-11-18 18:56:41.759000','2019-11-18 18:56:41.759000',5,'Cassidy Coleman','https://lh3.googleusercontent.com/-UCuZBX3E8yU/AAAAAAAAAAI/AAAAAAAAAAA/V30s3e1Dj9E/c-rp-mo-br100/photo.jpg','16389487648212004696',2665),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn_sxk9joTjLBzE_y_La57QlhLq7PgHlSxzjBXSfvNSUUdUwBz5Nw1dPGGAOx8Eq9xkvwMyYk6hm7tMTabOaz3xjz93ag','When we first entered Tobie, at registration, was fantastic. She helped us get in and get through the paperwork. Answered every question. Once in the room our nurse, Mollie, was just as friendly and helpful. Our wait for Dr.Curtis wasn’t long at all and he was a wealth of information about the diagnosis and cause for it. All in all fantastic and wonderful staff!','2019-12-28 07:04:24.234000','2019-12-28 07:04:24.234000',5,'Vanner Maximus','https://lh6.googleusercontent.com/-mKiWf9guHgY/AAAAAAAAAAI/AAAAAAAAAAA/1-aSbaWkz5Q/c-rp-mo-br100/photo.jpg','3272657195432704501',6825),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn--FEmNXL4JU-k5EH9_rjJpCrcq3gNw1nC5iRM3-5Mdv3eVLL7YGdFCjl69kdbJgXDH0YRg_qPXZPVQ1UxFRR2aoaEl0','Staff was amazing. Very attentive and answered all questions I had. Thank you so much Jocelyn, Alvean, Tricia and Dr. Nguyen .','2019-10-02 19:31:50.260000','2019-10-02 19:31:50.260000',5,'Lisa Spraberry','https://lh5.googleusercontent.com/-mM5jaqkrRPU/AAAAAAAAAAI/AAAAAAAAAAA/dgMyR_Hiqm8/c-rp-mo-br100/photo.jpg','16389487648212004696',2863),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn-633uzNCGL8VVHg69yk9JC0dLs2vE8LUFmrKWSrX5tD9NFgYFITGWdpqePqTXK-ZgCtFnC9LULEd1nyDZh2FFPwfk0c','I received exceptional care at SignatureCare Emergency Center in Texarkana. Tobie, Mollie, Sarah and Dr. Edwards were all great. Thank you for everything.','2020-02-12 09:52:52.134000','2020-02-12 09:52:52.134000',5,'Kimberly Oglesby','https://lh6.googleusercontent.com/-R89xHBZXp5E/AAAAAAAAAAI/AAAAAAAAAAA/J9Pd6TFv08E/c-rp-mo-br100/photo.jpg','3272657195432704501',14365),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn-7ag_PeN-eUDbBO5iAaVYkwBTQQt718yxKobp5MfITSOLCYgdArhBE3j-NIzFwbai21VSjCrqdtWdpXZc_g4iHap0XY','Awesome staff. Mercy is very welcoming and Agnes is the best nurse I\'ve ever had.','2017-09-10 16:58:58.933000','2017-09-10 16:58:58.933000',5,'Lilo de Paris','https://lh5.googleusercontent.com/-EKsb3n6kbuc/AAAAAAAAAAI/AAAAAAAAAAA/EDkOlZ6KfcQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7790),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn-7XWC_-R4DJ2Jezbgn1oMT34uRG4vn5yPHVMQ3FBX2PkObSlwMLOB3oqovl13cyCZ_tAsE8MS1NfMJIcWfJUCvxLzr8','Best Emergency room ever!!! The Nurses EDA, Selina, and Fanny are awesome, and Patty is ALWAYS cheerful and attentive. Thanks Dr. Zhen for sending me home better than when i came in.','2019-09-08 18:45:45.666000','2019-09-08 18:45:45.666000',5,'J Hickman','https://lh4.googleusercontent.com/-wi2hjJCgChM/AAAAAAAAAAI/AAAAAAAAAAA/QQoj5pcDdQE/c-rp-mo-br100/photo.jpg','17394740196501090048',4607),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn-A0wlFK-HImeqlVgARqshaSZYYR20S80pujCkFNcmTDfTiQmfadr0mYAxwI2VxeiVjTZpq4tXj59ma0QU8pNFZavN6w','I have not been serviced myself although the place is really clean and the nurses were nice ','2017-04-01 04:07:14.711000','2017-04-01 04:07:14.711000',5,'Carina Molina','https://lh3.googleusercontent.com/-QAp26OLLLYs/AAAAAAAAAAI/AAAAAAAAAAA/eGMOxTfsE3U/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1861),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn-n8LuZanx3Cx4q0MZ8HN_e0RjaK0v9CIlTpmEqc0cLgwFBosIjFerf8R5OnwDT8u6iYRBdOjaZn0R48FxrhmOvi9QK4','Love this place. Not much of a wait, and great care. How many places takes the time to call and check on ya the next day AND send a thank you card. I will continue to go there. Very affordable and wonderful care. Get bloodwork, CT scan all done in the same place without going from place to place. Thanks for the care that you provided Alicia, Erica, and Matt! Thank you, Dana Landreth','2019-01-13 12:26:47.683000','2019-01-12 03:40:38.298000',5,'Dana Landreth','https://lh5.googleusercontent.com/-EjFDplfD0YY/AAAAAAAAAAI/AAAAAAAAAAA/5iyyxWxi_Mo/c-rp-mo-br100/photo.jpg','8626688543755174284',8588),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn-VMgWuiA4c5NvFpQF26vrdqJnQ54ViHAfcpXRfZEH0JtAbgm9W88or8y2WGzk5fLO9FFTUcOBCHPB-S_YN8sNs8FBqA','Short wait time, clean and inviting facility. Absolutely great staff so nice and friendly. Nurse Kristina was funny and caring. Everyone was so nice and wonderful. Everyone from the ER tech Scott to the radiology tech Mayra, even down to the registration woman Malissa who was so sweet that when she told me it was all out of pocket, i couldn\'t even get mad. Dr. Patel was fun and thorough which is great. this experience was so much less painful then a major hospital. If I can help it I would definitely come here before going to a bust over crowded hospital. PS sorry to scott for my bestfriend asking and those unnecessary questions about the difference between CT scan and MRI..','2019-07-26 21:50:27.045000','2019-07-26 21:50:27.045000',5,'Mychael Jackson','https://lh6.googleusercontent.com/-U2BcTktNJbQ/AAAAAAAAAAI/AAAAAAAAAAA/vdaW4Mp6fWg/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',477),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn02dwytM-FDA4FqM8JYPrhcEuYW-LE_JNdy-AZs_2YDhfz3xJ2szSUEc2AQq4WfuC1Ux4SWnxo4FtMC5AOxGn4EauSII','It was great. The staff here actually cares about you.','2019-01-04 23:58:25.012000','2019-01-04 23:58:25.012000',5,'Hannah Priester','https://lh5.googleusercontent.com/-yikhiePWwjM/AAAAAAAAAAI/AAAAAAAAAAA/C5Wl4a6aLY0/c-rp-mo-br100/photo.jpg','3511292162159714121',7524),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0484Efu4Qy94JggXFp7NVbRlduFVhMp_7gtP1gcqJB6e7JsIP9N16yf-1lNduWE5UXowxcFx3DYO1X_68IAu2-_N26A','Theresa M was very great! Fast and quick at getting me tested with COVID19 and very friendly as me being nervous about being tested','2020-07-16 17:15:54.988000','2020-07-16 17:15:54.988000',5,'Mark Lopez','https://lh5.googleusercontent.com/-CrVWJGWm-ko/AAAAAAAAAAI/AAAAAAAAAAA/AcqNwt1UPig/c-rp-mo-br100/photo.jpg','6521947413723274945',22893),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0dY6UIXkP8Xd2FkMQS6UJMi19rXSEvtJBtlnwARF0GFx4pLizkZrej6G5Fieb8ypLiMLWjHDmftg1814mDM2vumSlrk','I went to the emergency room last month and the quality of service and care from the doctor and nurses was outstanding! I highly recommend them if you’re ever in need of medical care.','2018-12-21 05:31:51.661000','2018-12-21 05:31:51.661000',5,'Chronic 45','https://lh5.googleusercontent.com/-SoDbKG1sQ48/AAAAAAAAAAI/AAAAAAAAAAA/n7txDSm9MiY/c-rp-mo-br100/photo.jpg','17898197009688164559',5906),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0hFDP_ledktBANSuUbzoZTfwX38zXqcK3uYnhtti4hMukWlTSUPalNDoQepDTcYJsOhmF_GU9jz8ERPRVGC-Y22XFWI','The entire staff was amazing\n I was nervous to bring our two year old but Dr.Nguyen was amazing with her. Dislocation fixed so easily. \nVery happy and grateful we had the staff we did.','2019-05-14 04:47:51.614000','2019-05-14 04:47:51.614000',5,'Alaka Parker','https://lh6.googleusercontent.com/-mxlBHFKR52c/AAAAAAAAAAI/AAAAAAAAAAA/oKF7CsmOkoA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0jSWbE-bOqkv-J1vb0By4cwRbkoHCeOgn3PKpcDZ8WM1gWxlVPpi-xRYYnGq-aTIjAHnhTqGaYNOsfsPOjZaFNRJeeE','Great facility!!! Would reccomend to anyone needing care... Wonderful staff and quick wait time. I must say as soon as we walked in the door Tanishia was 1000% on point and made us feel welcome. Never saw such amazing customer service from her and the rest of the staff. Thanks again!!!','2018-11-26 09:41:13.938000','2018-11-26 09:41:13.938000',5,'Manuel Entrada','https://lh3.googleusercontent.com/-afNEnhF0uPU/AAAAAAAAAAI/AAAAAAAAAAA/rylbGIvoJI4/c-rp-mo-br100/photo.jpg','17898197009688164559',5923),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0m4UOY1FUi839KmpU1Y8m3Qwe_wGr-2KZx_wqEEjYvej9vkRzOtLDOeV_NLA9ROAtrO3fHS8oXKgcajmo0CiWKYIHZc','They were great with my Children!','2018-09-28 00:32:28.794000','2018-09-28 00:32:28.794000',5,'catherine balinski','https://lh6.googleusercontent.com/-KWp7gScfn0w/AAAAAAAAAAI/AAAAAAAAAAA/UOnxiZl4mmA/c-rp-mo-br100/photo.jpg','14567670160750071148',1491),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0sDONNKLvl83Qeaep7B_kMiYBLVY5ZDTEE4W0JyxC6GfMw-LrM0na6-EGCuLq_ZSSYN0pF784j6JNCW08vc8A8F4Jqs','I HIGHLY recommend this place. I have been here several times now and they are fast, friendly, clean, and do a thorough job providing for your medical needs. I have never had to wait as they call you in within a few minutes of signing in. They are great for children, too. They also have x-rays, unlike some other 24 hour facilities, so they can provide care that other facilities cannot (except a major hospital of course). I was treated by Dr. Ding and Joseph the RN and they were so sweet. Amy at the front desk was efficient and wonderful as well. They truly care about your comfort level and send you home comfortable. They also work great with our Insurance. I will always come here!!!','2019-04-27 21:47:46.700000','2019-04-27 21:47:46.700000',5,'Crissy Siarski','https://lh5.googleusercontent.com/-X-qnJQX9MZ8/AAAAAAAAAAI/AAAAAAAAAAA/bh_vsHBvWp0/c-rp-mo-br100/photo.jpg','14567670160750071148',1334),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0SVp4xOQlK1beCW54nskG960cSETSQ4SV5-S8yFkccoi3ihaQB0L2Siwy1QrkkhDC6Zax-Vx5BrguH3qGgSRKnZyVdo','I had an overall wonderful experience at Signature Care. During my visit I had the pleasure of dealing with Dr. Appiah, Nurse Alvean, and Jocelyn at the front desk. They were all great!','2019-07-10 16:46:17.469000','2019-07-10 16:46:17.469000',5,'Anyse Baldez','https://lh3.googleusercontent.com/-m0-Ln-ZS1eY/AAAAAAAAAAI/AAAAAAAAAAA/xYGHhB9GiJs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0trzBs1bbuOBwep2PbKcGxiQ1KwD9yp5aSeU5OsjnPjIzb29JOROuQISNhCT68m70GuBE36FyJaujJwpHlK-vrvng-E','The staff here was excellent. I brought my girlfriend here for treatment and it the staff was very attentive and made sure she was taken care of. I know exactly where I’ll be coming when I need to seek medical care.','2019-06-04 19:31:11.020000','2019-06-04 19:31:11.020000',5,'Patrick Frazier','https://lh6.googleusercontent.com/-VUkbnxDCX4A/AAAAAAAAAAI/AAAAAAAAAAA/Vw5HWwgSE2c/c-rp-mo-br100/photo.jpg','16891069708558046635',4260),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0uPBTcQ7rQnPofJA_W0U0wdvS8gnzUWbmlLkQ2sZOOTVYI3Bh2P74NARSu-SBYajLOBRFPG3t5ztNJ4fdXd2gOVwZ_c','I have been to a lot of ER\'s with my many children. All have been terrible experiences until now. Signature Care was the best! NO wait time! I walked in, got treated, and was out in 45 min. Completely amazed at how professional, clean, and thorough they were. VIP all the way.','2016-05-18 20:54:51.967000','2016-05-18 20:54:51.967000',5,'dane youngblood','https://lh6.googleusercontent.com/-UtTnyZHIBn0/AAAAAAAAAAI/AAAAAAAAAAA/CtLybvUzCKM/c-rp-mo-br100/photo.jpg','3511292162159714121',7999),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0VBd11VZw5DibJYu9-qoWU3qY9DBVIkTVJqc_WF7KzJdSBBPajAogsv9LUF4L9XwyUxXyXsbves-BEIegjBh9W6ewgw','It was quick and easy. No wait at all! Mercy the receptionist was very polite, had no problem getting put in the system. I recommend this emergency center for others in the community.','2017-04-13 20:50:09.863000','2017-04-13 20:50:09.863000',4,'Dalila Green','https://lh3.googleusercontent.com/-mSaNRzPI2ic/AAAAAAAAAAI/AAAAAAAAAAA/w8TgEA6tr2o/c-rp-mo-br100/photo.jpg','3511292162159714121',7844),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn0VX5GxxQ5AuCDZr22Bm84N4dHRVfGF254QmcASPJsastEJwan1kq7mnbFGr1oDNuG7DWsR3EdvtNDnPTj_yzDmlqDl0','Really impressed with this ER. I’ve been here several times and always really good care!','2019-09-15 01:42:23.192000','2019-09-15 01:42:23.192000',5,'Braden Pate','https://lh4.googleusercontent.com/-QgzZ1awUo6k/AAAAAAAAAAI/AAAAAAAAAAA/b_UOe2n8RDY/c-rp-mo-br100/photo.jpg','6521947413723274945',8145),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn17fvb6h7Hawtp7Fx-ETIknelgJVFafVpjVP7OjGe4FAxD_XUYdG4g1RDEYR8vuosm9rcrGZogryNxkvxRRGMe_wIK7Q','M.Thomas,Sarah G,Jessica N,Ashley S very friendly and reliable staff','2019-08-21 20:24:47.028000','2019-08-21 20:24:47.028000',5,'Binje Tv','https://lh4.googleusercontent.com/-VijF3l1Wgfc/AAAAAAAAAAI/AAAAAAAAAAA/tbnMOUbq4hA/c-rp-mo-br100/photo.jpg','17898197009688164559',5572),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1C2u1nr-a8VjIavKYAHA5wIl_DnUAc8jcD4XSCrwMsVjQyt0hPaVONJHGNzwVs86nmD_IRbCNzhsjVHWwC5JHNat6T8','fast, thorough, friendly, successful, great people!','2016-06-21 15:51:13.910000','2016-06-21 15:51:13.910000',5,'Anthony Wright','https://lh3.googleusercontent.com/-cgi16zZ1ybM/AAAAAAAAAAI/AAAAAAAAAAA/6JUoco73-tU/c-rp-mo-br100/photo.jpg','3511292162159714121',7974),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1Cn6o8u5NXDdEVil561qxRWpRQFgdk5fgHnkGNuF621oPaUFfso4PNJWdmOIvzFJobQF8N5vry8Pp8YOh0LlNMGjdsw','This is the most amazing ER I have ever been to!\nEvery one was so friendly! Customer service was PHENOMENAL. The front desk, I believe Natalie G. was so personable. The nurse, Alvean A, was so kind!\nChris the new trainee who swabbed me for the flu and strep was HILARIOUS AND TALL! Ms. Trivia B was an awesome radiologist, and Dr. Farooqi was the BOMB DOT COM!\nIf ever I get sick I will make the drive here, and I live IN KATY! \n1st impression is EVERYTHING, and y’all did the thang’! Thanks for taking care of me! \n\nI pray many blessings to you ALL.\nXOXO,\n\nC.Richards💁🏽‍♀️💯💋','2019-11-01 12:38:16.917000','2019-11-01 12:38:16.917000',5,'Chardonnay Richards','https://lh6.googleusercontent.com/-qpMZPKZ9q6c/AAAAAAAAAAI/AAAAAAAAAAA/gho446oF4S0/c-rp-mo-br100/photo.jpg','16389487648212004696',2743),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1dXT7t9bdyOHGsiiNXryI6oWyra-pvQU7a_ACfzfn529dyNzCDtQ_ECeFrkJ0a67-81OXAj38q6aYzRvupEDWz4yVTw',NULL,'2017-09-18 18:26:33.787000','2017-09-18 18:26:33.787000',5,'Lupe Flores','https://lh3.googleusercontent.com/-IhbgsaB4zc0/AAAAAAAAAAI/AAAAAAAAAAA/JOZVGUs1Nt8/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2325),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1FbIBA2kfDP1dI9BJ5qCQGMxlDgsd7QJGXQgvQirEj-vYadUURu5QzLkok7AoU5QZwItgj4fw4DPGT2vMVAy1yfPz1M','Had a great experience and was taken care of very well. The staff was courteous and really respectful. Dr. Osiecki, Nurse Manny, Registration Nancy, Radiology Tech Magali, and ER Tech Ector were wonderful and were helpful.','2019-02-14 17:27:46.901000','2019-02-14 17:27:46.901000',5,'G RAD','https://lh3.googleusercontent.com/-asjd00p9O4U/AAAAAAAAAAI/AAAAAAAAAAA/dRfbL46pws8/c-rp-mo-br100/photo.jpg','6521947413723274945',8307),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1IWeRgK0Qkk5Q74FJ4ATVFyA-4Li4R7H9FFbZLx6rEewXVGvgIU21WEb8fLBaJGW9awddq14eoEeqJIMhPMLJ2XuoN0','My family and I received excellent care at Signature Care! The receptionist Robin greeted us with a warm welcome. Our tech courtney got us back into a room very quick and made sure we were settled in. Billy the nurse did a fantastic job at entertaining my child and making him comfortable during our stay with a high fever. He put the patient first. Thank you Signature Care and thank you Tiffany for sending us in the right direction.','2019-07-16 04:37:48.378000','2019-07-16 04:37:48.378000',5,'Katelyn Nelms','https://lh6.googleusercontent.com/-znNgIFoNvxg/AAAAAAAAAAI/AAAAAAAAAAA/BBXQhzaouKo/c-rp-mo-br100/photo.jpg','8626688543755174284',8430),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1kOTJDLh1U3EWiAFX06SqBp6bdwmo2CHS6REfWY6bHRc6Ob_fKRXwuBIsuU1jzg4tdzlOMkF-1LBeBkLi29cFDsB-i0','My father\'s nurse was Meredith and doctor Harjai and reception was Jocelyn were very pleasant and sweet while my dad was having a tough time with his issue 👍 Also super fast cause they were done with the procedure before I was able to come and support my dad after work 😄','2020-01-08 23:35:07.908000','2020-01-08 23:35:07.908000',5,'Alexandria Y','https://lh6.googleusercontent.com/-1_iLHgJ6FNQ/AAAAAAAAAAI/AAAAAAAAAAA/r5wLpF3Uy9E/c-rp-mo-br100/photo.jpg','16389487648212004696',9444),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1L5itJBzhfdTOPn-7ThUWp3xrCHV4wjRs656jkDs_So6Ue-cJN0BFaa5J7D9PjH94p4yUGj0voVV352cPoIX83JhnTM',NULL,'2017-12-11 21:42:41.955000','2017-12-11 21:42:41.955000',5,'Evelyn Castillo','https://lh4.googleusercontent.com/-_u555rA-sT4/AAAAAAAAAAI/AAAAAAAAAAA/2qs_q0dvZ68/c-rp-mo-br100/photo.jpg','14904078213800803294',2300),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1q2tVANkmQ6Qd0TLR8hD1ninByh7ezKGKarWrDVMkyV__KOABiZLcKSVmk3IFhUZAdLMGf9i1KnHJQvZ95vzPsmNBcw','Great service.','2020-07-21 12:16:20.069000','2020-07-21 12:16:20.069000',5,'Leonel Morales','https://lh6.googleusercontent.com/-YUcXXxDHb9U/AAAAAAAAAAI/AAAAAAAAAAA/6iGJAjrouB8/c-rp-mo-br100/photo.jpg','14748677429039074158',21629),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1RICSpQoKXr1PGdItNONyxhpePUr7o-dM5ebG8KOvnGw4rgrccyxai51rfr6N4MoubuyHBxdh-Mn6K0wBMamxMQ0rJc','This place is amazing... we got in and out and service was excellent. I would recommend this place to anyone...','2019-03-04 04:30:11.741000','2019-03-04 04:30:11.741000',5,'K Marie','https://lh6.googleusercontent.com/-hmvXRuErxI4/AAAAAAAAAAI/AAAAAAAAAAA/0tSK6NQk-WM/c-rp-mo-br100/photo.jpg','17898197009688164559',5826),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1VOKAT8pOvi6-GKDZrqhTUkbKolTuZenxg_YIcvLkhHqLBoJyElwWjzv9HHcLBmpEvCf8Tyxw1KDb7Iag06JVYXlzMs','Had a weekend yard work emergency and goggled urgent care who take Blue Cross insurance, SignatureCare Emergency Center came up. Since I never heard of the facility, I was anxious and in pain. I say with 100% confidence, from admission desk to check out, the care and professionalism was top notch. The facility was peaceful and clean. The staff was friendly and comforting. I was taken care of by nurse, Dawn Smith and Dr. Jogesh Harjai. If I could rate 6 stars I would, for their calming bed side care, strong communication and patient care.','2019-05-27 13:16:42.929000','2019-05-27 13:16:42.929000',5,'Joyce Bontke','https://lh3.googleusercontent.com/-ZG7OuSIrU20/AAAAAAAAAAI/AAAAAAAAAAA/v5e9uFYMBeQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5720),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn1yoEib1C0RySOmjTOHhRLnmsZ2lCY-_ZHbChoO67e8YIwnj1lG3IXz_QtdXiLqKZBgD5tcxdR-P1u7Omb4bDHEoQlJI',NULL,'2018-01-16 22:07:30.293000','2018-01-16 22:07:30.293000',5,'Hannah McQueen','https://lh4.googleusercontent.com/-D9wfPErgujg/AAAAAAAAAAI/AAAAAAAAAAA/pGpqwb0-1aE/c-rp-mo-br100/photo.jpg','16590124370714063921',3881),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn24P6vjiTxsHi80RjY3pjmy650pIuetS0Jh1QGtbaYQttBlwhkm08Z9M8f76vHEhLsR8M51ilizzrZb1OVzzkmlSciGk',NULL,'2020-07-16 10:47:56.066000','2020-07-16 10:47:56.066000',5,'Mostafa Keroumi','https://lh3.googleusercontent.com/-Z6PE4cuuqpQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclAJhspRsXIf-5a0oXa1mqx4rOttQ/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22037),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn29MFdpZ3OQ3K25k9ocZNbbx6OP4or7qmYPCEqUxme_RcfF3V-IfXu9ZcQbeAmQRwdingitxSb0rsxS1qMWtXEKR_cgg','Thank you Dr. Smith, Remington, Itza, Rebecca, Victoria for a welcoming visit and speedy service. Definitely coming back here when needed.','2019-08-24 22:07:59.095000','2019-08-24 22:07:59.095000',5,'Karla Garza','https://lh3.googleusercontent.com/-7c7GCe8BGUw/AAAAAAAAAAI/AAAAAAAAAAA/eCjlnv-qM4I/c-rp-mo-br100/photo.jpg','16590124370714063921',3236),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn2KhZbfzrpI2oqE1_NDtQXA3fthD_Pxe2E-aAJV4KoM9LzmP_DeAbpF95FfDifYnsLbxndXDk9HnSxY2B4XBuqoo73j0',NULL,'2019-07-12 05:52:35.952000','2019-07-12 05:52:35.952000',5,'Nathan Fuentes','https://lh6.googleusercontent.com/-uFfrv1sXEAk/AAAAAAAAAAI/AAAAAAAAAAA/XLiRIRq6dz0/c-rp-mo-br100/photo.jpg','6521947413723274945',8201),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn2OSJzM1JzKWh9Z99a5CWfe0cajqUo-a3ELjbGpP0z5HBMx-GnammFaYNN5ad91-3NfO8bs2eMQ12WNnnAZIykP7tw_A','I was greeted by Jesus who was very nice & seen by Dr. Wang only 10 minutes after I walked in they were fast and great.... Jani and Fatima were very pleasant & I would definitely return if I have another emergency','2019-06-15 14:31:04.790000','2019-06-15 14:31:04.790000',5,'Tyesha Bennett','https://lh5.googleusercontent.com/-v4gBYwxzxyk/AAAAAAAAAAI/AAAAAAAAAAA/JaudGnCCrRo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn36NMpNJG9sK8GN_Z4JFYwLZ0TBxwaFtZ_ydMnEDuqEZy9s5UuKIwlf-mUz6Uy2mL9cz5YkVKKwH-ASFWROUilnCGzD0',NULL,'2019-01-23 18:50:00.927000','2019-01-23 18:50:00.927000',5,'Lisa Giddens','https://lh5.googleusercontent.com/-fB_2ujhdixc/AAAAAAAAAAI/AAAAAAAAAAA/3nUKboVBsrA/c-rp-mo-br100/photo.jpg','3272657195432704501',7043),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn3a8S8Gn1gGtCjpKMb6rDlTBbxrsU0bg5U4RaAk5Sgnjwa2CUwJSAQ1cxX9PNj0Cda_POjfdUXIpZoxRo8dv7A64jD2c','Great service. Fast and quick','2017-01-18 03:11:54.025000','2017-01-18 03:11:54.025000',5,'Jeff Case','https://lh3.googleusercontent.com/-776Ei0kdxyI/AAAAAAAAAAI/AAAAAAAAAAA/lmr5RMDuhyc/c-rp-mo-br100/photo.jpg','3272657195432704501',7110),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn3bcwZdi8hXfT3pJmk6KLy6uMApwshUzq1MmiFdPVdS8edl5d25lALsGPKX_Kxaj9HHThNZwukPXSUhSTc0eLxs_YIzw','Blake RN , Silpa MD,Delicia Front desk. they could take away any pain without even give painkillers they were very kind and supporting .the rest of staff was also very nice .','2019-04-07 11:14:15.990000','2019-04-07 11:14:15.990000',5,'Rolando Antunez','https://lh6.googleusercontent.com/-mSDH1aMIcnQ/AAAAAAAAAAI/AAAAAAAAAAA/w9VC6BnYs4Y/c-rp-mo-br100/photo.jpg','8679688254631342173',8855),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn3dwiVL94izogQUZ0Lix1UOD3WYZxNk4dCzQyoIXtE7ghTOz1kzVtqZVJV5Wmce_1iklxkx6HcpEWCtqWYRF93C3vgdU','So sweet!!','2018-02-23 22:07:13.081000','2018-02-23 22:07:13.081000',5,'Alex Campos','https://lh6.googleusercontent.com/-My5Slz39njo/AAAAAAAAAAI/AAAAAAAAAAA/bax-zQ6t3qM/c-rp-mo-br100/photo.jpg','16891069708558046635',4507),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn3H0cixx2dGVThgWUuqZ-GFlAESdD2ZwkTWzZflh5swZWIWV0AzigcqzQHShRlC5u0BOl6SePsYoZ8NVt48xkOmAo6_Q','SignatureCare don’t have long wait lines like regular emergency rooms they’ll have you in your own room in less than five minutes and offer warm blankets. Best place to go for quick emergency’s...','2019-11-15 18:49:18.048000','2019-11-15 18:49:18.048000',5,'Brenicole Brooks','https://lh6.googleusercontent.com/-f1NvU7QzyEU/AAAAAAAAAAI/AAAAAAAAAAA/bnb9SlNTqVs/c-rp-mo-br100/photo.jpg','16389487648212004696',2691),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn3NY92vG5VBhj92bTGM0YLFpCE0Jt8jpEcixgnzVi-ehQu-O7NBYUHaBHdBS_M5NkfTYu2Y57ZS2evwlFoFx3EYbMoBQ','This is the second time I visited this location. Everyone is extremely nice and professional. Dr. Wang was very knowledgeable and made me feel better. He took his time and talked to me and gave me great information on how to better my health. Rondya, Brandon, Aminata, and Brenda was all very nice and helpful. Thank you again!','2019-11-06 23:27:42.760000','2019-11-06 23:27:42.760000',5,'Andi G','https://lh6.googleusercontent.com/-cb2tIW_wzEA/AAAAAAAAAAI/AAAAAAAAAAA/9NVQji704sg/c-rp-mo-br100/photo.jpg','8918455867446117794',9051),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn3UHVpxE1wyqy0oM9exsRI9dPZTr3drrKZUXCo-0OaRJKw-glZDeSxpXEgwAvfkQ-LBFABqkuYjJHjBaLZj1U3-f5ukg','My previous visit was great. DR Edward\'s, cindy C, Chasity the ultrasound tech and the nursing staff were a big help.','2019-07-02 20:20:58.114000','2019-07-02 20:20:58.114000',5,'Nicole Bookman','https://lh4.googleusercontent.com/--BgEJYlVpAQ/AAAAAAAAAAI/AAAAAAAAAAA/ZUgCJjk0ktw/c-rp-mo-br100/photo.jpg','17394740196501090048',4639),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn3WuRBwfH-JcGL4EjQIUacMOyWBhdNlUo7_A0VVSthcqHdFqS2mF591zknvISkd23Jyw8RZj9TKdlmWKrZ1D4Mtkppiw','All the service was exelent.Dr. Nguyen and his team \nNurse karen, tech Tricia, tech Sean, registration Patricia','2019-08-30 21:09:33.169000','2019-08-30 21:09:33.169000',5,'Marlene Diaz','https://lh6.googleusercontent.com/-_KFano476Lk/AAAAAAAAAAI/AAAAAAAAAAA/pDqUUy43l_I/c-rp-mo-br100/photo.jpg','16389487648212004696',2961),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn45F7iaDec4r_y2We9MrC2Pv5ZF-fW-YDk7mEOa3KpVDIcbmkic37rH3JhwzMqIxVyPyQku_wc7kjfE74zSqLxpKYajc','Cody and marquitta are dope','2020-08-17 16:51:08.268000','2020-08-17 16:51:08.268000',5,'Jameris Smith','https://lh3.googleusercontent.com/a-/AOh14GiXiqHi88xmBQDGb4ycEuBq2SYH3YFJjXBewj3C=c0x00000000-cc-rp','16891069708558046635',23058),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn45NFPEHGK_gj8pt8EPOrKjTEy9HqrnjE0A8EJOVvPzZXveD2IAzxC2meFDb-mTYQs_yS2oevr7k5VN5pWQz0pZlcMoE','Dr. Vakey was very helpful with my diagnosis. Both RNs were very understanding and gave me medicine that helped me feel a lot better within a few minutes. The women in charge of the registration Dyveliz was very informative.','2019-01-20 21:49:59.871000','2019-01-20 21:49:59.871000',5,'mia nanez','https://lh5.googleusercontent.com/-1AUf_Dhr3BE/AAAAAAAAAAI/AAAAAAAAAAA/sh-CsTgSqFI/c-rp-mo-br100/photo.jpg','16590124370714063921',3584),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn49dTq1M48cSAyQtGQ0tCHj9N-szXorwZ9knGIUty4Wvwft9LZf4sIYAXPUw06b4J9ktboiMqDQRZeYav3_O6RV4kwFg','Very professional, courteous, and clean.','2018-08-29 23:59:27.131000','2018-08-29 23:59:27.131000',5,'Shelby LeCamus','https://lh6.googleusercontent.com/-Cae553dWXNM/AAAAAAAAAAI/AAAAAAAAAAA/kqIoJgoT5Qk/c-rp-mo-br100/photo.jpg','14567670160750071148',1543),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4bnkpaWuuV_ocS2vDcHc7Hf_RYTMR0gQMzv3lCvXaS4uNncU69pMfFfVYS5lAjGAgB9dkkEdwQPush95nrdvf2FMXJg','I always have a good experience Nurse Irving and Doctor Edwards was really nice and helpful.','2019-09-01 00:19:41.465000','2019-09-01 00:19:41.465000',5,'Mimi Wilks','https://lh6.googleusercontent.com/-1zJd28IFlRY/AAAAAAAAAAI/AAAAAAAAAAA/PBkz9BPLgjY/c-rp-mo-br100/photo.jpg','12541597562633926366',441),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4c-nbmaAQA9OscASb7jIj6Af2oJMRNA50RsbqUqaHbBKfYboCtBXhzGCszQmD9KpSJ-vKCOy3yOTpVYZ8zPodYLxe8o',NULL,'2019-12-25 06:51:29.878000','2019-12-25 06:51:29.878000',5,'jerzei mitchell','https://lh3.googleusercontent.com/-SPhSJTcZzd0/AAAAAAAAAAI/AAAAAAAAAAA/DUjQyk9_Y_E/c-rp-mo-br100/photo.jpg','13486358490203335051',659),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4C1vI3RihXG_30NXbBGca_7O34l91ZOuoYCNT-ia_6IFeUR_YTIFecjNPEMsHYoqi7rx83IsU_sTNZ4BLxAcGnhG8II','We were at the Midland Memorial ER Monday for my daughter- 2 hour wait. My husband called here and they said they had no wait. We were about to leave and as we were getting up, we got called back so we stayed at Midland Memorial. Thursday was my turn and I decided to come here first. So, so glad I did. In within 5 minutes and began receiving treatment. Great, friendly staff, clean facility, and fast- we will be coming here from now on!','2020-01-10 04:14:26.845000','2020-01-10 04:14:26.845000',5,'Lindsay Ogden','https://lh5.googleusercontent.com/-fERKkPvvo6M/AAAAAAAAAAI/AAAAAAAAAAA/axsE6dUs-FM/c-rp-mo-br100/photo.jpg','13486358490203335051',9468),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4kOtXNqg15WNBl8hZ5aXiM6BDpM9qeT0iLHGwr5evo2ePqNIyBOV3tHQNjNR4v97fYseJiHPcIcW92wX4Pm615YcF-0','Everyone was wonderful and helpful. From Keaire at registration, Dawn, my nurse, and Dr. Yusef. They were all attentive and welcoming.','2019-09-27 12:26:16.874000','2019-09-27 12:26:16.874000',5,'Joshua Garza','https://lh5.googleusercontent.com/-VDb2uwn2wwA/AAAAAAAAAAI/AAAAAAAAAAA/9a4YHRNbh8c/c-rp-mo-br100/photo.jpg','3511292162159714121',7171),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4Lt1WykCK5Yn9b6moj0JXIc9RIp1S2ZrZlR7HqzllNMY-qDBwf5B_HI50bkivnhmGI8rjnu5sj_3W4hWcBBmg4WLE-8','Quick easy service. Friendly and helpful staff. The nurses Vivian and Gina were great!','2020-01-25 20:32:01.538000','2020-01-25 20:32:01.538000',5,'Ashley Cousan','https://lh3.googleusercontent.com/-CAP1P635ER8/AAAAAAAAAAI/AAAAAAAAAAA/7KglBChaVaI/c-rp-mo-br100/photo.jpg','14567670160750071148',10122),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4OTQzD4Lxj0lFlIXfq4-e-PRcYgVy9WLBTtrI4y7bpXXQfMQTnI3dCWA-VjHtuHzOOvP6RAfOGbfABiQOt5S8T0yaOA','I had a great experience. In and out in no time and ER Tech Leah was very polite and helpful.','2020-08-04 13:56:37.496000','2020-08-04 13:56:37.496000',5,'William Derendorf','https://lh3.googleusercontent.com/a-/AOh14GgcOu3o1Ja8-Xm0n2-v8p4R2obDaQm-nRoFhnan=c0x00000000-cc-rp','13486358490203335051',21821),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4WA6KeO04FcQPoEKt7iHFAHTmYpSiwcEk3UBPl6Qryur1QnKIGuLtKkWLorxNYDB_bpDJ-ZXk85eealZKakVRxJvg_8','Very professional, fast experience I have ever had . Hospitals take forever but they did not and have a very clean sanitary area. Any problems I have in future definitely coming here for 24 hour care','2019-10-26 19:16:02.967000','2019-10-26 19:16:02.967000',5,'Dreka Lewis','https://lh4.googleusercontent.com/-UZIRSCYQF7o/AAAAAAAAAAI/AAAAAAAAAAA/NdjRR8cbHw8/c-rp-mo-br100/photo.jpg','16389487648212004696',2768),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4z1IDx9fqk0Oev1zETY9yhbzgLDYI0KuN9XnX154KMxG77A5gXChimWJDehg6O7W_TKpGQwS2jhQm6n5Tu7xVUHMKus','I had a kidney stone emergency and quickly ran to the emergency room before the pain became unbearable. From the second I got there, the staff was incredible. They understood the urgency of the situation and went above and beyond to speed up the check-in and start the CT scan. I want to give a shout out to Jackie Franklin and the team who were very attentive, friendly, professional, and took great care of me.\nPS: When they talk to you about your diagnosis and treatment, nobody \"dumb it down\" or brushed over explanations. It was essential to them that I understood that was going on, completely and accurately. I really appreciated that.','2020-01-09 03:47:01.265000','2020-01-09 03:47:01.265000',5,'Wanderson','https://lh6.googleusercontent.com/-A10Wnc48pj8/AAAAAAAAAAI/AAAAAAAAAAA/3DLS0JA-GBI/c-rp-mo-br100/photo.jpg','3511292162159714121',14466),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn4ZcIqsScaBcWglEwcjxds0Q1DbTdiHgO6ObVpLHCWVFKwMkrVbsMPuJ2jNdJ4RgXef4ERrjD4Ffbdsf2NygR2y8eT18','This place rocks!\nThe front desk is super fast and has professionalism.\nMiguel and Viv are an awesome team in the back💓','2020-01-12 16:53:07.299000','2020-01-12 16:53:07.299000',5,'Yesenia Escalante','https://lh4.googleusercontent.com/-yhrD7ZCeKSA/AAAAAAAAAAI/AAAAAAAAAAA/0PX0OyLFwGM/c-rp-mo-br100/photo.jpg','14567670160750071148',9542),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn581tQzKyr96CaqaBRH1yL3lsvt6CKQhx_0lM_mjHxPuJJJ7k4IDK2AWKp7TmDvcoCZm9gFWXb3WC7-LCfwT4Xdi4woo','This location was great! The staff was very courteous and quick! Special thanks to Cody, Sam and Brenda for taking great care of me!','2020-07-26 20:20:07.929000','2020-07-26 20:20:07.929000',5,'Erin Michelle','https://lh5.googleusercontent.com/--tVFSNqeXa0/AAAAAAAAAAI/AAAAAAAAAAA/4usn28_FENA/c-rp-mo-br100/photo.jpg','2077061009497551125',22820),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn5cpm0NdG6VFQOtm4ThdX9C8AT5cn8FoglpfYSF5zbq0udc4mzomah4PQLYG9fP2TOAdRHa1ZXavn9FqHuT327uylSS4',NULL,'2020-02-18 17:54:11.769000','2020-02-18 17:54:11.769000',5,'Mona Ahmed','https://lh5.googleusercontent.com/-5QHLrGWApSw/AAAAAAAAAAI/AAAAAAAAAAA/pVODfQzQbz0/c-rp-mo-br100/photo.jpg','12541597562633926366',13365),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn5nfoyT1HRU_N0BAtiXDxkUxe1MG5HfA8jHLunsqe-R4WUyVay0qYyi9O4A8zNUGo9VkOGBUQfeZUCQUqXth-EFxN6NM',NULL,'2019-10-19 06:15:24.537000','2019-10-19 06:15:24.537000',5,'kaity brown','https://lh3.googleusercontent.com/-vdfeUJqaUGE/AAAAAAAAAAI/AAAAAAAAAAA/F5tgoQVM77A/c-rp-mo-br100/photo.jpg','6521947413723274945',8115),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn5oa9gfPJ--ptHhM6tUy9MNDXuK5MElwvJjN36UYG34dEVwrSgz6JAkoDFA6fFxtN_f_gt_clIdg-6M4Fky16nxeVoyc','Hands down the cleanest, friendliest, and best ER experience I\'ve ever had. Would absolutely come back, but hope I don\'t have to.','2016-06-26 22:51:10.711000','2016-06-26 22:51:10.711000',5,'Gene Crocker','https://lh6.googleusercontent.com/-btCCq6qaJGA/AAAAAAAAAAI/AAAAAAAAAAA/gRR7f1CVHf4/c-rp-mo-br100/photo.jpg','3511292162159714121',7972),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn5p6dc1lSxdc9WwJbDef4ByL6cFh67x7IiNk7tm-djaeZyzLWATzjJoA9VWUHmShpcbF4uXMWE9EoES7CDgV1QCXfA5U','Dalia, Brodrick, and Kelly were so kind and very helpful, wonderful and quick service','2020-08-19 17:16:58.554000','2020-08-19 17:16:58.554000',5,'Anthony Sidaros','https://lh5.googleusercontent.com/-be93v03Qt8Q/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnWEhJ2qRdfR0lID9hZ7zSpprQP2Q/c0x00000000-cc-rp/photo.jpg','8918455867446117794',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn5Tk-nWZZFtzBKDMSQyfhEh-N2EVhuJ9UcegKkL1qJ8b0MKqZHY2nP8WIFumud9Tax1XkoIHixbW7gACi-GXSxWElpuk','Tanishia W. was very friendly and nice she helped us with everything with no problems very outgoing.','2020-02-19 10:02:04.531000','2020-02-19 10:02:04.531000',5,'jaela hughes','https://lh4.googleusercontent.com/-OjMpabLVztk/AAAAAAAAAAI/AAAAAAAAAAA/tVl_3w1fOms/c-rp-mo-br100/photo.jpg','17898197009688164559',14155),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn5zTzJdnVVyYPuGyBI5cFG2FDTkIpO0P7DZq_Z02oKoeeF8W0ZwemtF33IEyt7C5iY_BebdRF12OMMq3DVliMNzpBv50','This place is really clean and the staffs are really nice also the doctor 🤙👍👌','2019-09-28 06:02:43.196000','2019-09-28 06:02:43.196000',5,'Dora Sheppard','https://lh4.googleusercontent.com/-u-MpCq3Akrg/AAAAAAAAAAI/AAAAAAAAAAA/DTTR_YAQQqI/c-rp-mo-br100/photo.jpg','17898197009688164559',5535),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn62gdAZRPstYgsx26YrwgbAMYuhC5428VZDwmJJ8NLrGwT2-gDadHkp-JdsObHYzEOMRqq32iPhMuPL3gVpbTEawpIgI',NULL,'2020-07-17 18:20:55.051000','2020-07-17 18:20:55.051000',5,'laura gill','https://lh4.googleusercontent.com/-y21sHBbyyqM/AAAAAAAAAAI/AAAAAAAAAAA/3FJt0rnND0U/c-rp-mo-br100/photo.jpg','14748677429039074158',21748),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn64wZeDtfmmCh1Lug3d427CV8OxgEMj-PyDUMdWCipZ2oOU6sRKPiBTIAdDxSqSdjmdUbEKroGtOM05_JBKNrztCVNeg','Came here to get care for my pilonidal cyst and, even though it took four visits, they were able to assist and accommodate to my care. Thanks to Mercy for her care and the doctors for helping take care of my issue.','2017-02-17 20:31:21.299000','2017-02-17 20:31:21.299000',5,'Erick Miller','https://lh5.googleusercontent.com/-xwZmz2LofLs/AAAAAAAAAAI/AAAAAAAAAAA/2xyG3X4hFXg/c-rp-mo-br100/photo.jpg','3511292162159714121',7875),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn6clz-ts8lj3TrUUy8RyLVZgxZa9BPDwLcQUzhiazYn8NUGclMF24GR8CydoX-otmLAbUv-MkdjD00RUClG63MYdcAEo','Went in with a throbbing headache, congestion, earache, and sore throat. I left with the same symptoms. I was told I had a sinus infection, yet they didn’t prescribe me any antibiotics. I was told to get some NyQuil and you should be better. It’s been two days, and I still have the same symptoms. \nDr. Simmons was not helpful AT ALL! \nJohn Bell, my nurse was awesome! He made sure I was comfortable, offered me snacks, something to drink, and even a blanket! \nI will not be back. Worst service I’ve ever received from a doctor.','2019-01-03 02:33:11.286000','2019-01-03 02:33:11.286000',1,'Jane Doe','https://lh4.googleusercontent.com/-pHkisLaPjbg/AAAAAAAAAAI/AAAAAAAAAAA/2vXzoepkjDA/c-rp-mo-br100/photo.jpg','8626688543755174284',8618),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn6EKJIEc4mnGdXgGf953IiKY3K6pyOzG6KdI8gdYiFt1FLiOHx5L_aqi3ZeJ241cgYR-UqQJu4k9zadgPEP-M5DA4UX0','Today I was sick I went to signature care but they have very bad behavior with me they gave me application form and tell me that you have to filled out outside of the clinic I wonder and told them I am sick how can go outside they saying sorry this our policy I am not telling lie I have two witness \n\nPlease anybody can tell me is that right?','2020-08-15 03:36:41.696000','2020-08-15 03:36:41.696000',1,'BIlAL AKBARI','https://lh3.googleusercontent.com/a-/AOh14GiR8iJg6ImrNi62r5sMi3jVr_hb7Du-tnmrrqTecg=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn6F4k_4O7dfegZScoG6VoeJ5jmntZj_vNb1M64Pm-4bHdAAm2yariHnwnRRFtkpQoHDDtbUfvO3QJeDUlKTeFi5UKyxU','Staff is caring and patient. Called in my prescription. Gave me a high dose of antibiotics while there. I felt much better immediately. No wait at all. Love this place! And so will you! I plan to go back if I need care again.','2019-03-09 21:49:48.210000','2019-03-09 21:49:48.210000',5,'Julie Hejducek','https://lh3.googleusercontent.com/--hbKkgeiXdQ/AAAAAAAAAAI/AAAAAAAAAAA/wh9tD2GA1Zc/c-rp-mo-br100/photo.jpg','17898197009688164559',5815),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn6lSJgJWsxpKJut05n8MtTBGzF6iT5aJMlLEwkbG_SHygBTLBf1m1SfjXIK5brEED4EA3sModsSoV9UuJgh__YBfsRaI','I had one of the best experiences everyone on the staff. Was super helpful and took care of my needs Dr.Leavitt , nurses lia. , Grace , shay all great ladies','2019-03-30 02:13:39.740000','2019-03-30 02:13:39.740000',5,'Htx Foodslut','https://lh3.googleusercontent.com/-nWTrz1t1aW8/AAAAAAAAAAI/AAAAAAAAAAA/8upYNLfRd2A/c-rp-mo-br100/photo.jpg','12541597562633926366',526),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn6lZ1bLeqNHkX81L1qAO9XO3zyI2ZmpFZ6DtTqYd74pqKMeZYehsfHDjUUNM0kjS2MXtBtqX9UPwPn9dA-iGQ_ib434g','Dr Patel (so sweet and funny) and Dr Smith were very easy to talk to and they were very informative in what care they were providing .Kat and Alvean were both very friendly and helpful . Everyone\'s beside manner was remarkable!!!! Thank you all for taking great care of me!!!!!','2019-06-07 16:00:31.819000','2019-06-07 16:00:31.819000',5,'Pryncs Laday','https://lh3.googleusercontent.com/-J8QwEcU6qA0/AAAAAAAAAAI/AAAAAAAAAAA/HzarObIaWxs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn6m1Y3ZLM7Izpc_CgfGtyPSSncxOs575XrbwE4D65oH8y20dlpD19zRA2ubgXsbrcRywapl3vNrrOtFMtXQYEvjZeRsk','Took great care of my wife. Thanks Dr Smith, Alvean, Tricia, Jesus and Sean, you all were fast!','2019-07-13 17:02:54.524000','2019-07-13 17:02:54.524000',5,'Justin Lewis','https://lh5.googleusercontent.com/-PxPdHFbxB9I/AAAAAAAAAAI/AAAAAAAAAAA/jrzUVOD_NKM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn6pUG8lleb5QDUtjx_5ZXV3k9Ynx7dBvsqFZqkldypo7GWgT41caWm1hiR1vhDMt8ba35UyAvA3VSQ6VkNCTq2jn0eig','Quick service. Very clean and prompt care. My entire visit was so accommodating.','2020-06-29 14:31:50.626000','2020-06-29 14:31:50.626000',5,'Nikko W','https://lh6.googleusercontent.com/-T62mIkrCCoU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckCKs4PH-YY6gFFQWz4IszCEWv5JA/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21438),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn6SZNRITNN-kOio2gQfeWLIp8HQMxy3d77zy5-EX0uNUS1H8WfSBa9GE8nrZEeNI-WRGolLdUeCkgkfe8MBjXKFjA68o','I went into Signature Care for chest pains that I have been having for two weeks and I got treated. I was only their for 1 minute and then I was called to the back. Also it only took them two hours to get me out of there. Both of my nurses were friendly and I appreciated their care. I felt that the front desk staff could have been more attentive and the doctor wasn\'t as friendly as I would have liked. She kind of made me feel like I was making my pain up, which is something I would never do because I have no medical insurance, so I don\'t go to the doctor for fun and have to pay out of pocket. The X-ray tech or doctor was the best person I met there. I truly appreciate him for his sincerity. I hope that the meds I was prescribed will solve my problems instead of just breaking the bank. In addition, I have a small bruise from the injection site of the IV and the medicine they put through the IV was painful and it burned going in, it all most had me crying a little bit, but overall they were great, overall I would return if need be. Also they have a price list and if you\'re emergent they don\'t make you pay before treatment, but if you\'re not emergent then you have to pay before they treat you. My total was $750, but they allowed me to make a payment towards my bill. Thank you Signature Care for the help.','2019-11-06 17:11:15.035000','2019-11-06 17:11:15.035000',4,'Lakrisha S. Davidson','https://lh4.googleusercontent.com/-T9D1Y5gEYA0/AAAAAAAAAAI/AAAAAAAAAAA/B1HwpfKukag/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',3102),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn7FbA1_heBN7DfMEqNqvE3rVg-nbf1WdkYzNtlTYryxyIUiTZjHCKgBv0YSJTP5ohG7mumMzJL0Hf8Zgl4Z5l6kAIVjc',NULL,'2019-07-07 18:23:28.724000','2019-07-07 18:23:28.724000',5,'Emily Findeisen','https://lh4.googleusercontent.com/-wq1hteX-G7E/AAAAAAAAAAI/AAAAAAAAAAA/lnU-YmBbWt8/c-rp-mo-br100/photo.jpg','16590124370714063921',3311),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn7iAnUtjg7qoGvc5zXr5XFapQsu4Vg38MIOpI1AWc0Pypf_d39kX7ebl_mZBW3j_SJ1fMKOpIAayks-3JnMryohmvEYg','Very good Care and helpful !','2019-05-01 10:00:46.021000','2019-05-01 10:00:46.021000',5,'Huy Tran','https://lh3.googleusercontent.com/-vRcoh1O8k_k/AAAAAAAAAAI/AAAAAAAAAAA/Lr1tgFji-NQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5751),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn7kBR3aGD5sw1C3zdNJvujXmumKuvkuQWpIgI2lYJZrsLK3i0n6l-LVL-Rbsr4UunX_z0EghnPZs9wpQQjAfhhEd0WNE','Fast care, friendly staff, all around good experience. Anthony the RN made sure we stayed comfy, Dr. Wezanski was very nice and quick, and Kathleen took great x-rays!','2019-05-27 01:43:26.270000','2019-05-27 01:43:26.270000',5,'Cameron Parker','https://lh6.googleusercontent.com/-J_aPIpdezFo/AAAAAAAAAAI/AAAAAAAAAAA/a88JLlNZ-9w/c-rp-mo-br100/photo.jpg','16590124370714063921',3377),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn7laskTVDyjIXTRwaOe2bQuwqFsVIWJAjN3N39fKcFkTdbNDQNpwXyWd8wJ9U4HseSP_8Jer94NmOSEa9dVTYVuZ0io8','I have taken some of my family to this location in the past and have always been impressed with service and care. This time it was for me. Sinus infection that I could just not clear. I was in the back room before I finished the paperwork, warm blanket waiting for me. :)\n\nNurse took vitals and the doctor appeared right as this was completed. Quick check of my symptoms and query of my general health, and I was out of the door with a scrip for what ailed me. Feel SO much better now.\n\nNote: This is pretty much like an ER at a hospital, without the \'ER\' experience of massive waits, etc. So the cost is similar vs. medical clinics. Still, your costs might not be much more compared so while it might be overkill for sinus infection, you know you will get full care from a doctor with all the tools and skills vs. a simple clinic. GO THERE, you will love it!','2019-01-02 15:57:56.509000','2019-01-02 15:57:56.509000',5,'Mark Rizzo','https://lh6.googleusercontent.com/-Nm5dnGIesx0/AAAAAAAAAAI/AAAAAAAAAAA/5bONUWeyFP8/c-rp-mo-ba5-br100/photo.jpg','16891069708558046635',4381),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn7PtG0BsrKPT88Q5AP94qLWHwc0JyVkYAMeEVOWODnKVXfcdW5YqUlM5hSf_q3PBd4osgyySHxDWq2UITLrwLFrnTNZ0','I visited tonight and received the absolute BEST experience. They took very good care of me. I was in and out (with labs) in less than 2 hours, feeling much better than when I arrived. I appreciated Dr. Dang taking time to address my concerns in a way that showed he cared. Nurse Al Raydon was heaven sent. He listened to all of my questions and helped me overcome some fear. I felt like I was at a spa, with the fabulous treatment I received!','2019-04-21 03:33:14.557000','2019-04-21 03:33:14.557000',5,'treberry 713','https://lh3.googleusercontent.com/-FoINvC4FcZA/AAAAAAAAAAI/AAAAAAAAAAA/theE7rbL6Ys/c-rp-mo-br100/photo.jpg','17394740196501090048',4688),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn7sbQqWrJRo6udx0shFPqb_IRkNp6THo4VtiBWz0vmKk4Q4moLftjIUPO3tVDfj4a7Xg4sm6kuET5NwPSkh6oZ-9lJSM','Dawn, Amy, Dr. Yusuf, Amy , Dawn, Isaac, Norma, Eve you all treat me like a queen and have very professional staff. Nice & clean environment good take out','2019-12-20 15:19:33.945000','2019-12-20 15:19:33.945000',5,'Lisa G','https://lh3.googleusercontent.com/--89tdjT_ui4/AAAAAAAAAAI/AAAAAAAAAAA/3i3GysF_MlQ/c-rp-mo-br100/photo.jpg','3511292162159714121',14480),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn7zyQxji9sDzBXTcWAvbWYcrg9nVhx9CHiq1u7enioZgZHSRjerPT6YyuS4FCvMmkm8FnsBD-OCmyJN9DVhMemFb6nd4','Very quick, and the staff is nice','2019-09-27 22:00:30.198000','2019-09-27 22:00:30.198000',5,'Trention Croke','https://lh5.googleusercontent.com/-105jvFSlSRI/AAAAAAAAAAI/AAAAAAAAAAA/YtcQT7U3hsY/c-rp-mo-br100/photo.jpg','8626688543755174284',14672),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn86VRunivFubLTuQGWWaOBdbIIVRvSuxoMvSXyB4aJzoAKB3BJwsI8eeWMt2bwQMm6TKA668yNAvYzivXUydpRAlBlbQ','Very friendly and helpful.','2019-02-18 04:16:34.571000','2019-02-18 04:16:34.571000',5,'nhra500','https://lh6.googleusercontent.com/-MjOKwWk5nzA/AAAAAAAAAAI/AAAAAAAAAAA/vSP1S_fm2zY/c-rp-mo-br100/photo.jpg','17898197009688164559',5848),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn882ir2h4If10HlnPOYAIF5elASxxX4eZusOuNMmAk0TQ3HTiM-6Cbn5VTiR5R1JpbdjfgePsirXM0pcATNKTX2A68vs','I had an excellent experience and Dr Evans and crew were very hospitable and courteous. The made sure that you was kept inform during every procedure.','2018-06-09 17:26:07.883000','2018-06-09 17:26:07.883000',5,'Yolanda Scott','https://lh5.googleusercontent.com/-rBrueQ1j5kw/AAAAAAAAAAI/AAAAAAAAAAA/fZlIVs9p7D0/c-rp-mo-br100/photo.jpg','17394740196501090048',4839),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8Dprw8Xg__eDFb93MkGtd_uCI6307C0kxbc8zE7w5emWxq_xgdf1ZCUA5w67XTBj3r8upRH2uxjOzZ8HB5g2yrFWrJY','Everyone was extremely professional and made me feel comfortable','2019-12-22 06:11:59.575000','2019-12-22 06:11:59.575000',5,'perry davis','https://lh5.googleusercontent.com/-UNB-8rwg0EE/AAAAAAAAAAI/AAAAAAAAAAA/FEGny4_ueBk/c-rp-mo-br100/photo.jpg','12541597562633926366',322),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8eKSs97Ade74cgfdZf-GrHynKTS5y-noUqyedU2BLh9Qeyhd-kuckKZRkddlPl8hyuFtueHM1tA3S8qr2hi9-tqb-1g',NULL,'2019-02-08 22:04:31.686000','2019-02-08 22:04:31.686000',5,'Jess 25','https://lh3.googleusercontent.com/-WG7kJVNlJnk/AAAAAAAAAAI/AAAAAAAAAAA/AhU1R_UfzRE/c-rp-mo-br100/photo.jpg','3511292162159714121',7408),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8fogGRaK40L0on5rSYFn0Zuk9Kp5NmHNvjTX70P7-7FwAg6uSw8Wex6APeg2YS4SZhgnlJ5B0oYHZ9bjmRxW2bpvQKs','Great experience! Ashley B was especially helpful and friendly! Can\'t recommend enough!!','2019-03-14 14:17:41.810000','2019-03-14 14:17:41.810000',5,'Randy Parr','https://lh6.googleusercontent.com/-QCJtkfcKnJg/AAAAAAAAAAI/AAAAAAAAAAA/9Hfj1JzMcGY/c-rp-mo-br100/photo.jpg','8626688543755174284',8528),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8HVw7B24LKdufing-opkA_Lc-gs15uab1dICE-kb2sGOMaA5cejplThhkmWXWkD_NEAzuGzcfEUt-bY-jwBEGORUnkQ','Very nice and helpful staff. They help with all the questions we had!','2019-10-16 20:43:16.761000','2019-10-16 20:43:16.761000',5,'Michell Serna','https://lh5.googleusercontent.com/-lOEKcW8Q4pQ/AAAAAAAAAAI/AAAAAAAAAAA/2naE__pY8R4/c-rp-mo-br100/photo.jpg','6521947413723274945',8117),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8IiDbCHWqwZGWWAtc313Bl4pD3wgCpib04JTirKKpfhaBqWoER1D_Z6EWovK-PN4toPFWe4ntbopo7PiZmx5nQgo9s8','I’ve has the best experience with this signature care (westchase) the staff is amazing ! Ariel , dr grinblatas was amazing with my daughter took real good care of us in less than a hour ! Very greatful for nice and caring people here at signature care!','2019-07-23 00:18:00.627000','2019-07-23 00:18:00.627000',5,'Ellie Butler','https://lh4.googleusercontent.com/-5kYsGSDDfkc/AAAAAAAAAAI/AAAAAAAAAAA/Mt2vRmC82bU/c-rp-mo-br100/photo.jpg','12541597562633926366',482),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8pKfEnQNTFDG9OAwDV1l3H64QuHLutV5BGn7JP635zeY8KKu5-ybv7Hi_5idgzrNWzf5rTdZzSpsbKbZ4VLsKLf2B0Y','great experience , a very welcoming and friendly staff with Dr Henderson , Alvean our nurse , Jocelyn A at registration , and Sean.','2019-10-26 20:46:33.283000','2019-10-26 20:46:33.283000',5,'vanram ting','https://lh3.googleusercontent.com/-vP2RBZKlTpA/AAAAAAAAAAI/AAAAAAAAAAA/xOv0dmMOIPA/c-rp-mo-br100/photo.jpg','16389487648212004696',2766),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8sGEyySGThSTaWnUWka6ATC5iizujiD5-En0xBiprtKt38U650CW606LxT6-3I6ibhAeQki7js5IaOVmkDx35zO2TaA','Once I got to the emergency room there was no wait and I was seen in about 2 minutes after being in the waiting area. My nurse Hamzah J A was AMAZING!!!! After going through such a traumatic experience, he made me feel comfortable, safe, and not embarrassed. After telling him about my job interview he even gave me tips on how to email my interviewer and explain what\'s going on. I was also offered a heated blanket and water while I rested and waited for the lab info to come back. The doctor and lab tech were also so compassionate, careful, and amazing as well! I will never go to another emergency room after having such an amazing experience here. The next day Hamzah J A also called to check in on me and see how I was doing. Signature Care is AMAZING!!!','2018-12-19 02:29:17.733000','2018-12-19 02:29:17.733000',5,'erica oliver','https://lh4.googleusercontent.com/-rt0iDxQmp84/AAAAAAAAAAI/AAAAAAAAAAA/UNgySTsrCQc/c-rp-mo-br100/photo.jpg','3511292162159714121',7545),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8sVDpxq_ZafOAXLfVP-V6xcORm1Wu62jtHjlyb44TvrYKddp_kEeTSyvHcY4gwL7ndkPYD1GdqkZrckGcED7QoYm25I','Nurse Manny and Doctor Mark Mauldin helped me greatly in my visit here. I recovered quickly with their treatment and thought the customer service was 10/10. -P.J.L.','2019-01-24 13:49:08.054000','2019-01-24 13:49:08.054000',5,'Wrrunk','https://lh4.googleusercontent.com/-y05ZtxwyRqA/AAAAAAAAAAI/AAAAAAAAAAA/FghJz6RnXFU/c-rp-mo-br100/photo.jpg','6521947413723274945',8316),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8wb1PzPNMG5G-C5UYcXzhKtaBDDwnXw7SJtlVDO3tlAJJ5zHCGg_csZPg1jOL5XKR0gmPP_ofITzerrd4rUOvbDvjEA','I fell down from ladder my leg is broken I gone at signature emergency center stafored branch. they gives me fast emergency treatment service after small peperwork formalities. Thay provides Cold pads,wheelchairs, warm blanket \nThey get my X-ray and send me e mail same time. If anybody have emergency medical problem I advice you go signeture emergency center.','2018-10-10 05:31:56.052000','2018-10-10 05:31:56.052000',5,'moiz xyz','https://lh4.googleusercontent.com/-DRm5kRrorBA/AAAAAAAAAAI/AAAAAAAAAAA/5_HuZxpmIW8/c-rp-mo-br100/photo.jpg','8918455867446117794',9228),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8y_cyb74ZVU-5YYPHMIglrV0TaTUYdJv_mgW9ROa7LRyLJOh3UuI1TcUPbx3S2VVeWb8hzFQGAxzx_x2aGD5wYxWNrU','Very friendly environment and Aaron Ortega was extremely helpful, he made the process go even smoother. I appreciate his help! If needed again, I would definitely come back.','2020-06-27 22:50:32.985000','2020-06-27 22:50:32.985000',5,'Hayley Jones','https://lh6.googleusercontent.com/-GAJ8CW4mOFY/AAAAAAAAAAI/AAAAAAAAAAA/Q_NBUCZicZs/c-rp-mo-br100/photo.jpg','13486358490203335051',21246),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn8ya2_yw2oUpOPfVbtS6k8UBsfpBM7PAYgB4AV4SJfiv_RX9Dl_Ln1vcf2Dqx0FA24OZXOk3R0Qo-IcCj13TDxJwAxkA','Everyone was very nice and caring. It is a clean facility. Everyone was very informative about what was going on. My daughter loved the doctor and we were very pleased.','2019-03-27 21:10:12.301000','2019-03-27 21:10:12.301000',5,'LaNiqua Smith','https://lh6.googleusercontent.com/-j7fDGVzrGqc/AAAAAAAAAAI/AAAAAAAAAAA/-WeRafY34V8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9415wAzAW2wLnkXWcFbwZC9Ww6eZUBBzClsCykUXZVhobqHolcPViqvE-Tc-NO8HkEK5FLhHPYshBiOQ9sYXFoJE_J0','I was so nervous coming into the er care with my brother. He was in a car accident. However, I pulled up and our nerves were put at ease from the very beginning. Mackenzie and the security guard were so kind and brought out a wheelchair to assist my brother since he could barely walk. Once we came in, Stephanie kindly greeted us and assisted with paperwork and getting us quickly seen. Her smile helped to comfort us even more. Nurse Rollie began ice packs and pain meds to help my brother feel better which made us feel relieved. And a few minutes later he met Dr. Ybarra who had a very good bedside manner, was very kind, and assessed my brother. He ordered a cat scan and exam which Natalia, the Radiation Tech quickly took and brought him back from. Over all, under the circumstances, the staff helped to make a bad situation become much better and really cared for my love one and quickly resolved the health issues which resulted from the accident. I will always come here and refer my friends and family.','2020-02-22 03:12:43.745000','2020-02-22 03:12:43.745000',5,'Ifetayo West','https://lh4.googleusercontent.com/-xuZIg2i2Yvs/AAAAAAAAAAI/AAAAAAAAAAA/q-yABow8H1Q/c-rp-mo-br100/photo.jpg','8679688254631342173',14736),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9DtiWtKxKsPoYwLmX4cFdqdFahZwJXBjP1Y6-0eUD6rOjJB4UjF4oBvc9AOMbwjSnLF6sEr8Vyzozqm_EEv6dt87Sgk','Super clean and comfortable. Staff was very friendly and helpful. Thank you.','2020-08-03 18:46:35.290000','2020-08-03 18:46:35.290000',5,'Julisa Rodriguez','https://lh6.googleusercontent.com/-wcS4uHrhdVc/AAAAAAAAAAI/AAAAAAAAAAA/D2teOvnWNk8/c-rp-mo-br100/photo.jpg','2077061009497551125',22750),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9hDrUG6lLW5Kqy-iVbt4iIk8Xu3wWBg-1SKtHClhD6TV81fcPQ7HdGhxJ80YvtcSbOUFW83AyAk9Oon5LIQZMxdlivM','I always go here when I\'m sick. Dr. Nylund, Leslie, Dawn, Norma, and Eve are great.','2020-01-30 06:05:06.449000','2020-01-29 19:50:26.679000',5,'Megan Hurwitt','https://lh5.googleusercontent.com/-3E3UDQ7An2g/AAAAAAAAAAI/AAAAAAAAAAA/avNIDSducuc/c-rp-mo-ba5-br100/photo.jpg','3511292162159714121',10294),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9jXgm-yA2XIwSH0BUdHuJwUhqXe3vJbjqaU2xcfspccZIE95EfYzXdyRwHWAejy0PBt0lKmRlaWAwWvkrxCvlW5YNhQ','the service was speedy and prifessional. Adrianna and Jared had amazing bedside manners and made sure I was comfortable the entire time I was there!','2020-02-28 22:38:35.684000','2020-02-28 22:38:35.684000',5,'Lydia Mathis','https://lh6.googleusercontent.com/-_ZWFLLBkwmA/AAAAAAAAAAI/AAAAAAAAAAA/IBInuREJq-0/c-rp-mo-br100/photo.jpg','6521947413723274945',14531),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9oiQwbrMzy-N2SAd4TKv9-FCZ7QoyZJ3RiKzjbz_cfYjEmkj4sJza00Aw0BkLUES-UtvJT0ezotLjGmRyS0Pmy-SWVc','Say what you want to say\n\nGreat experience','2019-05-24 18:22:52.465000','2019-05-24 18:22:52.465000',5,'Betty McPhee','https://lh5.googleusercontent.com/-MVda5HvHmy4/AAAAAAAAAAI/AAAAAAAAAAA/7QxJ5aYYOig/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9pFekoSaARc_iri48XzbIof9TbWLGUm6qaA6Uut8tx5V2NpufZG9nKAZI3qZTgzU6RUhqkIFU1KsE3LV6nzTtoIAvOE',NULL,'2019-01-08 23:48:05.543000','2019-01-08 23:48:05.543000',5,'Maya Munoz','https://lh3.googleusercontent.com/-7wg9RbApbxg/AAAAAAAAAAI/AAAAAAAAAAA/_fRMOPjiLbA/c-rp-mo-br100/photo.jpg','3511292162159714121',7505),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9SI9ofo6Z0J7Y3MjN4ToP9GLnAqtmYdAWWtSBUlc7a_ZL8lRdTuOvr5OuQTFwl8htHHjAx-0rqi7bkPiBC9fxZXp-mQ','This is one of the best experiences I’ve had at a clinic. Every person I interacted with, the doctor, nurse, rad. Technician, etc., was very kind and helpful. I worked with Kendra at the register, was treated by Dr. Vakey, nurse Jacob, and Jacob the rad. Tech. Each individual was enthusiastic, respectful, and kind. I was treated in a timely manner despite the business of the clinic and I would definitely recommend for anyone seeking medical treatment!!!!','2020-01-18 22:05:49.133000','2020-01-18 22:05:49.133000',5,'Arianette Campos','https://lh3.googleusercontent.com/-sM5W3QSLXDw/AAAAAAAAAAI/AAAAAAAAAAA/9e7vLN5Xlqo/c-rp-mo-br100/photo.jpg','16590124370714063921',10058),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9UmccQSkSyjoiN-qZZPzTiQyFcjOKFJzGBwnvsbbN-82yyOZTEtN6GklqlNs3FLA4UFXnuLvic6YfUHNHJnxtmF74oE','Right as you walk in, you’re greeted by Jackie. Very helpful young lady. She explains in detail what you’re filling out, as far as paperwork, and explains how it all works, and what to expect during your visit. Super nice. I didn’t have to wait long at all. The nurses and the Doctor were all helpful, kind, and took great care of me. I would recommend this emergency center to everyone. Very clean and the staff is professional, but kind and caring. Thank you!','2017-10-24 19:24:50.859000','2017-10-24 19:24:50.859000',5,'Wendy Nicholson','https://lh4.googleusercontent.com/-XQ6puoj_QUQ/AAAAAAAAAAI/AAAAAAAAAAA/keaadNdi7S0/c-rp-mo-br100/photo.jpg','14567670160750071148',1742),('AIe9_BFmRFRFwJGRfUDOW8jG3rXn9V5gL0iKmAIUbwgLWns6-xw7Wcll4SwgQla5bJzKRyIuwtRv0BBsWPsqPgMvO2eCuj5NQrW9KLrC001KvN08n041RIM',NULL,'2019-03-18 16:28:49.848000','2019-03-18 16:28:49.848000',5,'Dallas Richardson','https://lh3.googleusercontent.com/-bDml8PZBmoU/AAAAAAAAAAI/AAAAAAAAAAA/GFP831nfq1c/c-rp-mo-br100/photo.jpg','8626688543755174284',8524),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnA2bKuWNcVanPpcai7yeu9K29kRPBBaQaE5kvq2rvTV8gsky2jW-Qp2Ws_zZ92UlCd5J_ZSsP9kBkvXtlKdY0UzYRZO0','Great staff! Really fast service and friendly. We were out in less than 10 minutes. Really helpful! \nDr. Yusuf \nAmy \nNaureen, RN.','2019-06-01 23:55:05.764000','2019-06-01 23:55:05.764000',5,'Gisselle Ramirez','https://lh5.googleusercontent.com/-X_XA5mC8eP0/AAAAAAAAAAI/AAAAAAAAAAA/83-B3jOjpBQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7314),('AIe9_BFmRFRFwJGRfUDOW8jG3rXna94amYzpRGGkXmh-pWx9LQjoiGTJNWrFNPYllJWO-r2-yl9YVSN6RNp--ahyVrl_Mwd4SyZqokGrs5kP7iBpShRbJHM','Clean and Friendly Place! \n\nI was helped as soon as I got in the door. Fast service and I would defiantly go back anytime I\'m injured or sick. ','2016-11-07 15:35:46.539000','2016-11-07 15:35:46.539000',5,'Jimmy Yates','https://lh5.googleusercontent.com/-7bcDNQkm6n0/AAAAAAAAAAI/AAAAAAAAAAA/0UdoQpUUUvA/c-rp-mo-br100/photo.jpg','14567670160750071148',1948),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnaGTLVRc7HAYmyQh7BIREBUQyRO1U9pC4Nw4_HA2Af5ghomfMRIvAEJIrcocs4rxpwo2b_0f7ypSwY1uVogPfohE6b2Y','I came in right when COVID 19 started, and was experiencing chest pains. They took me in.and took care of me. Thank God I was tested negative. But the care at this facility was AMAZING','2020-06-22 03:15:24.765000','2020-06-22 03:15:24.765000',5,'Windi Knight','https://lh5.googleusercontent.com/-QZsRfiqPBcQ/AAAAAAAAAAI/AAAAAAAAAAA/jqfPlIrUzg4/c-rp-mo-br100/photo.jpg','8918455867446117794',21222),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnAjAOIV_Ju-RClaTwTFWhzj4OyBcqO6bQW1rnOtr8C34_jM6hieThZ2nHdYaoZmMle5QBHXaABJKOs58oRY4yFADi1Uo',NULL,'2019-11-18 16:57:47.759000','2019-11-18 16:57:47.759000',5,'LJ birriel','https://lh3.googleusercontent.com/-uYnISSoUjkE/AAAAAAAAAAI/AAAAAAAAAAA/W-No3zDgSqs/c-rp-mo-br100/photo.jpg','3272657195432704501',6860),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnaK9gJ6_svrZHVGjjBpE-DrHExT53hM6kG7_LPs-JcU606uBR1LjxvdYsRFosHVJ62RNSKooYnsLPvmaP7jeJqlDe-RQ','Dr. Akunyili and staff where the best i will coming again for any emergency.','2019-08-25 21:23:09.619000','2019-08-25 21:23:09.619000',5,'Isacc Garza','https://lh6.googleusercontent.com/-3M8taapYEMg/AAAAAAAAAAI/AAAAAAAAAAA/VGbsPtRSJCs/c-rp-mo-br100/photo.jpg','16389487648212004696',2977),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnakZIyCf8uNxTzk7wPMVK0igkZem3zq6PtvmHRPM7VULIpGTtospo7g7BFkpDbomTT69KzRB1UcbR3lkZnGTm_PoKgxM','The staff was awesome! Dr. Lingan, Adam, and Roderick listened to me, made me feel comfortable, and continuously checked on how I was feeling. They are a warm group that made the best of rough time.','2019-10-27 09:05:26.128000','2019-10-27 09:05:26.128000',5,'Claudia Ritchey','https://lh6.googleusercontent.com/-fPJdNM8UjkM/AAAAAAAAAAI/AAAAAAAAAAA/CVdkbEB_QcI/c-rp-mo-br100/photo.jpg','16891069708558046635',4171),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnaNg_5fuFrNkySciUVSY3razu_lpZqdf6ngvBy3yqeKwpDI7siZFgHe0Igxh7HPxq5GbjjQ3po45klVOrn9Gr0Ex-luk','Our visit was extremely pleasant from the time we walked thru the door from being greeted by Tanishia W. and Security Officer B. Fleming. Rad Tech - Heather G. took us back within 5 minutes and started vitals. She offered us refreshments as well and made sure we were comfortable. Shortly after, Nurse Shelley D. came into the room and got the pain level down from a 7 to a 2 by the time we checked out. Also she was very pleasant offered us refreshments a well as Tanishia who came back into the room. Dr. Pham explained everything thoroughly and ran test and gave us post- op instructions. I\'d definitely would recommend this location to anyone.','2019-03-15 03:36:20.949000','2019-03-15 03:36:20.949000',5,'Brandie Latrice','https://lh5.googleusercontent.com/-RKVf1DkhpoI/AAAAAAAAAAI/AAAAAAAAAAA/qrxCi5o_5VM/c-rp-mo-br100/photo.jpg','3511292162159714121',7378),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnanMs7LGDIO4URfbY80ey-0KHGRD4cjjap-ZxAMp9TYljRuoHIaPAEH8h243D__xwL-t7UeHwAU6oHe07JTWvvGKtn9Q','Best ER ever! Tobie and Regina the registration ladies got me in a room quickly. Chloe did my swab and she was was very sweet.','2020-07-29 01:22:33.082000','2020-07-29 01:22:33.082000',5,'Kelly Leilani Buck','https://lh3.googleusercontent.com/a-/AOh14GhO__IEY8kT26tIh6pTQRU7QDbKmHqRaiQlIqND=c0x00000000-cc-rp','3272657195432704501',14327),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnaOVRTCwJu-qe04M4o2io-ZSZsB1RF5-ZlFqg7sHstWynYcQ5CdlyD8YS_Q-vmD0nAEH9AxNXs83RaFBQCoTTpk1p4zs','Amazing staff! We have been here twice and every time we had the same amazing service. The 1st visit we saw Dr Wong and he took care of my husband with very gentle care and showed lots of compassion. Today we saw Dr. Ortiz for a follow-up visit and he was just as amazing. The staff is so knowledgeable. Staring with registration with Jocelyn so sweet and welcoming. Nurse Alvean and tech Mike gave us all the information we needed to knowfor my husband\'s hand to heal. If we have any more unexpected events happen we will definitely be back. Also they have a pediatric doctor on staff for our kids if we ever need anything for them in the future. Thanks you signature care emergency for taking such good care of my husband!','2019-06-22 20:21:21.544000','2019-06-22 20:21:21.544000',5,'Donna G','https://lh3.googleusercontent.com/-vyi4MdfXoXU/AAAAAAAAAAI/AAAAAAAAAAA/sI0xk8AFjoY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnATsjIHtrRosxtlwmAHj-FU7jSla15UXt7fWj1v0tDqvPdj4YhsgGiMcqV2L9Qzij-rQSpxU_dCt2yy-YPxYu83o22aU','Had a great experience. Every one was so professional and very nice. Made you feel welcomed and comfortable. \nLorena T. and Victoria P.\nJeri D. \nJuan C.\nDr. Akunyili','2020-07-31 15:33:37.542000','2020-07-31 15:33:37.542000',5,'Erica Padron','https://lh3.googleusercontent.com/a-/AOh14GiD9HOx7k3Dye_nYAzBPbv9M_pesK7xHrEC0M5kIA=c0x00000000-cc-rp','16590124370714063921',21993),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnavAEaOwYitrXs1Cg94bBeEAXRDuuCL4vUCly7CVgH0p4flL_LdUxzu11sod9zmQiM3gZj_wgSVaS5_xrrKOj82059nQ','Very good service, from the front desk to the back rooms,very friendly staff,treated us with care and concern, never at one time did we feel pressured or not well taken care of,very clean interior, clean rooms,would reccomend it to everyone looking for a clean,professional,friendly atmosphere to get treatment.','2019-03-12 01:50:32.227000','2019-03-12 01:50:32.227000',5,'Paul Mugo','https://lh3.googleusercontent.com/-T0Fo_OvYFhg/AAAAAAAAAAI/AAAAAAAAAAA/-eL9IUPQgz4/c-rp-mo-br100/photo.jpg','2694018788013845459',6180),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnB6JidNFl0gMSwOJSALeN29y1SWwmmQWRx54cFb4yD8UT-XyobR_cU1bjD0z_Pd3A8d7XkVBRafSwD6SixoV9efrpGlk','Excellent healthcare providers, professional service. Definitely will be feeling better leaving here. Dr. H. Tran, RN: Katrina, Reg: Therisa','2019-12-20 04:16:17.137000','2019-12-20 04:16:17.137000',5,'Dantrell Washington','https://lh5.googleusercontent.com/-4Gt0rPJK9d4/AAAAAAAAAAI/AAAAAAAAAAA/r4hL5dnw6pE/c-rp-mo-br100/photo.jpg','8679688254631342173',8684),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnB8Lt2iOA8zaHMRxe4YqQ6dzf2zgPafUS-gbNVXIAVxFnbwWqN3IxU0gB-IPkvVPpAUwVaEjWSmMEcGK7okkC_Db1OqU','Awesome experience \n Robert H- he was amazing and he was smiling with my son\n Dr Iheme-he was very nice\n Melissa E-when you always come she always treat with a beautiful smile','2019-11-16 08:27:46.270000','2019-11-16 08:27:46.270000',5,'Cecille Gierbolini','https://lh6.googleusercontent.com/-1bl7pr1WhI8/AAAAAAAAAAI/AAAAAAAAAAA/4JsfdHe_m-A/c-rp-mo-br100/photo.jpg','16389487648212004696',2684),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnbH_P3D28RCV9K5rZw898nURbVJoAV8iRNoevTENDgQ-w5EvRlHe6cF31Sr5FEUqd4_JVqHqxsX76iu4deEjM8yxSHAQ','Confidential','2020-07-24 13:13:26.678000','2020-07-24 13:13:26.678000',1,'Lilia Chavez','https://lh4.googleusercontent.com/-EIpW9lFnpE0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnD3sVPfMdNIvSXI6BSBVEIm7bubg/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22154),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnBKBFZbtXBzr6-NfRYXtiW7nKur4SozqYL_Yi43Teid2KGxipat6-pvZFLPikO4sX0wWWBBlgSqVPguSu9Yww1fZOxOg','Dr. Marc was amazing! Mrs. Tanisha Was an amazing receptionist!','2019-08-10 03:50:15.309000','2019-08-10 03:50:15.309000',5,'Ciara Beasley','https://lh6.googleusercontent.com/-YgkViOOiYbk/AAAAAAAAAAI/AAAAAAAAAAA/DE_lnDjq7Ew/c-rp-mo-br100/photo.jpg','17898197009688164559',5596),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnBnJ5vALNh6MSnGFf0DdU0ODDKT1-92XjJn0OEAIOG8O8McYAuCZyDy5zCcknofgQAPg-oU_Cv1dswMnxblGt4GEDhYY','Location was clean and service was quick but there are very sketchy practices in place.\n\nI went to this location for COVID testing a second time in the same month due to a second exposure. I was told multiple times by staff at the location that I had to do self pay as \"insurance was rejecting multiple tests because this is an emergency location\". I naively paid at the time but called my insurance the next day and was told no such policy was in place at all. I followed up with the location after getting this information from my insurance provider and was told that their senior management required them to tell customers this. Now, while trying to get an itemized bill to place a claim myself I have been told my their billing department that it will take 7-10 business days before the information will show up in their system. Overall this is turning into a huge headache.\n\nDo not listen to what they say concerning your insurance, they will just say whatever shady information required my their management. Call your insurance provider.','2020-07-20 13:15:04.509000','2020-07-20 13:15:04.509000',1,'Aaron Stone','https://lh3.googleusercontent.com/a-/AOh14GiyyWiI0VdByW7PBoQq0F1_-b_CGh77Y9LgY1vnGw=c0x00000000-cc-rp','3511292162159714121',22159),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnBNKImqiymtEkzp-k3kGkfWhImAIevTrv_zdqTDP2u-w0ikEPPRkru8efhXSMcbOVsY267Cg8TfPcxvb_9-PUO5f7gQU','This is an excellent facility. Clean, quiet, fast, and comfortable. Staff is friendly and professional. Luke, Sherri, Courtney, Jennifer, and Dr Ashbrooks were on top of everything. They are very thorough and truly care about their patients. Signature care is the only er for me and my family.','2019-08-05 12:37:08.367000','2019-08-05 12:37:08.367000',5,'Joe Russell','https://lh4.googleusercontent.com/-74VjgkM6P-w/AAAAAAAAAAI/AAAAAAAAAAA/n9M8AnbtS_U/c-rp-mo-br100/photo.jpg','3272657195432704501',6919),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnbrgUGIcwWQlDdksObfouWo_GCiPo_bbih4lOyfJ-3M-A96JHuyjIt2tH9mwSz3QZgNC-OT8EOoSz71HwogOKF5TVmIg','I have been here several times with my kids and I love this ER. We will always go here. The staff is wonderful with their patients - especially Dr. Harjal, Lorena, Cat, Kathleen, & Natalie!','2019-07-23 01:10:27.152000','2019-07-23 01:10:27.152000',5,'Tiffany Lambright','https://lh4.googleusercontent.com/-RrjiWReSels/AAAAAAAAAAI/AAAAAAAAAAA/La-oNQ_lwGQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3281),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnBUb-2_mPPKOWPIGi1NZQiHMo2z5yjRm3u6rWdSrT-ZJYS331nTqdJJsI98nlzUmCu0G7KZyRfiM30T2eFyGUicqdtSk','This is a very Professional and friendly facility. Treatment here is very through and the wait is minimal. Thank you to Dr. Henderson, Linda,Jennifer and Doug ...','2019-12-24 03:44:30.909000','2019-12-24 03:44:30.909000',5,'Yvette Gray','https://lh6.googleusercontent.com/-K0l-wGFay50/AAAAAAAAAAI/AAAAAAAAAAA/iKo4F_CWS-g/c-rp-mo-br100/photo.jpg','3272657195432704501',6830),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnc5AOPzYnGWfU0GZS4XYZxCL4_yHF_4WiOfqTXIJiyodk0WVqsflI-Hh5sXpozYjRpGNaz0rKyW579e_b3v02g3DVd7I','Outstanding facility with A++ Doctors and Staff. Needing medical attention can be scary and nerve wracking. Everyone working, no matter how late was attentive and kind to my needs and worries. Highly recommended for first rate medical attention in the South Austin and Central Austin area. We are lucky to have this location.','2018-10-17 14:06:11.475000','2018-10-17 14:06:11.475000',5,'SpiersATX','https://lh5.googleusercontent.com/-_INX2YdJRHo/AAAAAAAAAAI/AAAAAAAAAAA/B4UKPaixvps/c-rp-mo-br100/photo.jpg','16891069708558046635',4417),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnC9tyVClrtIaPYOE9PZHkvzNJRjJm57uxSVyYZSE3m6IwGfTHFLRbyqTRyoHtvydIfb5NI_2lBaabmB1RmaYR6q5Y-EY',NULL,'2020-01-13 18:35:42.056000','2020-01-13 18:35:42.056000',5,'Laura Gravestty','https://lh4.googleusercontent.com/-e25jc203-9A/AAAAAAAAAAI/AAAAAAAAAAA/NMduhZ1w0Uc/c-rp-mo-br100/photo.jpg','8626688543755174284',14627),('AIe9_BFmRFRFwJGRfUDOW8jG3rXncaVcXo28dwFXf95NU-cyL5TrIToOdlMExU9P4CFoJQOy_ju971k5IjxeQSwEtoIzyqYF_oULwgGSjieVyqEArpeYR5U','Long wait times','2020-06-06 01:20:52.320000','2020-06-06 01:20:52.320000',1,'Tinbite Yonas','https://lh3.googleusercontent.com/-CXwIR0iL80s/AAAAAAAAAAI/AAAAAAAAAAA/dil7giBTEMw/c-rp-mo-br100/photo.jpg','8679688254631342173',22255),('AIe9_BFmRFRFwJGRfUDOW8jG3rXncE-AJDela05PGIFP6ygIwD9qRR0kyOGIKO84KTtXVqzgdLMSNXiI0rk30OVbrkhXMdn3za5LsqEJTW8l4jFKk7iRtLI','Great service and super attentive. I was seen within minutes of arriving. I also received a follow up call 2 days later to check on my health. Definitely recommend!','2017-04-11 16:13:17.057000','2017-04-11 16:13:17.057000',5,'JJ GiGi','https://lh5.googleusercontent.com/-7JMyOHc3F6k/AAAAAAAAAAI/AAAAAAAAAAA/NMKHyQivwMg/c-rp-mo-br100/photo.jpg','3511292162159714121',7846),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnCFFDR3W6GfZ9nksGTTaVqpkxvopEG1htrPWZwqfEpQJAULFrcRSLdx-4n1FfshVohMu5nHebqclgXBRUpFraHV-okM4','I brought my teenage son here on a Friday night to be seen and everyone was excellent. They made my son feel comfortable and put him at ease. I had to bring him back for a follow up and again the staff (Fatima, Tanishia, Nurse Lynn and Dr. Dunn) were excellent. We were in and out in less than an hour. I definitely recommend this ER to everyone.','2019-11-11 02:43:33.490000','2019-11-11 02:43:33.490000',5,'Tairajae Zachary','https://lh6.googleusercontent.com/-AKCZJmVzkpA/AAAAAAAAAAI/AAAAAAAAAAA/-EaktQ1AR8M/c-rp-mo-br100/photo.jpg','17898197009688164559',5449),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnCGgikvWldBpNq9PvwNs7sLp_KX1G9omt6eWpzYc9ZUo0KL9dq7p_f_jfhBAggQprKYLhLmE6YyQNycHKm7Bs5ffRUZg','Dr. Vaagenes \nAlvean\n& Marcus was the best man appreciate y’all idc if I was dying it would’ve been a dope way to go out 😂😂😂💯','2019-07-30 18:22:39.290000','2019-07-30 18:22:39.290000',5,'600 Musical','https://lh4.googleusercontent.com/-QqerRctqrXc/AAAAAAAAAAI/AAAAAAAAAAA/Cl7zyQudYvE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXncGgnUL1NEX8XDByFJbPrCXjnxI184C_ClHd-Njpp7IyBFDt21Q8ygCDYQN3naL9xeGydNTBEsJXxs7u8Wjd4ydTS5wM','This is her fantastic daughter and my experience was amazing. Kristina and John were so kind to me and gave me snacks. I liked that Doctor Garcia sat down to talk to me','2019-02-22 23:06:44.836000','2019-02-22 23:06:44.836000',5,'Jen Bower','https://lh5.googleusercontent.com/-aLcsIF0_0oo/AAAAAAAAAAI/AAAAAAAAAAA/0zmNJB9Kh5k/c-rp-mo-br100/photo.jpg','12541597562633926366',546),('AIe9_BFmRFRFwJGRfUDOW8jG3rXncGnLiQegT2XLkDXVDv4XaeYCxqtluIX9YPFn1pw_jyhb1ytfMRAmBGSchklz1ADSJGWnuhFdvc-0I1VANCwcrzygLyA','Staff is very friendly. This was the second time coming here. Both times I was comfortable with my visit. I will continue coming here . Great job !','2020-08-14 13:38:41.830000','2020-08-14 13:38:41.830000',5,'Tom Carvell','https://lh4.googleusercontent.com/-UbOxUnpR6aI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm69kMGKb3mSQ7L0OozhoeNHdpF_A/c0x00000000-cc-rp-ba2/photo.jpg','2077061009497551125',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXncI-BN6OsxpRQi3xaiqVe8hpukA04zFVJlJlX6lIO-KQMak5GlgXmxCxEB_shg6FkZtiUQjpU743_dwLC9qWvaSqozm0','Awesome place! The staff got me right in and was incredibly thorough! Everyone from the person that checks in to the Dr. was really friendly and cared. I was even there during a shift change and the next group was just as friendly and helpful. I did not meet a single person that was not caring or friendly, which I have never been able to say about a business or medical team before. I appreciated them being so nice and making me feel cared for. Thanks to the nurse Hannah who really made me feel comfortable and welcomed. I would rather need an emergency room in Texarkana than any where else after my experience here!','2018-11-27 15:45:47.237000','2018-11-27 15:45:47.237000',5,'Candice Hill','https://lh3.googleusercontent.com/-kcXYt2Z78wA/AAAAAAAAAAI/AAAAAAAAAAA/i6WEqo_2koI/c-rp-mo-br100/photo.jpg','3272657195432704501',7098),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnCOsGlcm5sj3n0_PUFeMFeiRyi80Qlx2yj4nAX18i0FXIwzJUP-v3WRVP9NQ5tSkvk1ND5QrWjKWyOesLsoDFd-r31mM','We went here during the night with sick kid. The place is very clean and neat. People are professional, kind and efficient.','2019-10-25 05:34:31.603000','2019-10-25 05:34:31.603000',5,'Zhijie Dong','https://lh4.googleusercontent.com/-0FWRjL6H-g4/AAAAAAAAAAI/AAAAAAAAAAA/E_9_L3VbDrk/c-rp-mo-br100/photo.jpg','16891069708558046635',4173),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnCtcbcaw6qxfI4YY4e_QN93hMaOX4goM3NWAqM1wBIv2OWFT5bH_gS1KbkK2JjRAweVM87BdF_xrMMPdvfbCrgbxXOSQ','I had phenomenal service! The RN Anthony was amazing. He gave me all the information I needed and made me feel very comfortable.Dr.Vakey was great he listened to me and acted upon it phenomenally.','2018-09-06 15:55:08.065000','2018-09-06 15:55:08.065000',5,'Stephanie Stancil','https://lh6.googleusercontent.com/-aLUQ8rUUiQ0/AAAAAAAAAAI/AAAAAAAAAAA/ySLUNETm66c/c-rp-mo-br100/photo.jpg','16590124370714063921',3743),('AIe9_BFmRFRFwJGRfUDOW8jG3rXncuwDv4YNgyopzAbscpXCn6RwAElUF3ULR5kvr5pPs5i_NP66AByX2G5I5cNKFf-6LWilUt1F_NKmsVxE66bPLBAw_Ao','Awesome staff and very attentive. Teresa, Holly, Ryan, Dr Zheng & Queen Cynthia were very attentive and professional. Yes, come here for your emergency needs.','2019-09-22 13:01:06.540000','2019-09-22 13:01:06.540000',5,'Vicente Sosa','https://lh5.googleusercontent.com/-CFP3mH2Fp7U/AAAAAAAAAAI/AAAAAAAAAAA/TrRPMuqs5UM/c-rp-mo-br100/photo.jpg','14904078213800803294',2093),('AIe9_BFmRFRFwJGRfUDOW8jG3rXncvP0thD3Sc5MIQPhsW1DXatMepKgsu6rr2TERoJwXurEV7RkL-dycQp9sAeGQp1FOYnYpz627kxsk-0O2ShjNrflF2w','I was so thankful for how quickly I was seen. The staff was extremely kind and made sure that I felt comfortable.','2018-01-23 00:17:41.661000','2018-01-23 00:17:41.661000',5,'Magen Ross','https://lh4.googleusercontent.com/-ykSgoh3NwSA/AAAAAAAAAAI/AAAAAAAAAAA/2vViQQOlscU/c-rp-mo-br100/photo.jpg','14567670160750071148',1673),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnCYmpEiMEQ1tN1gjM_xtyjA7sWgV7K_tenOSdo44UAyiotqraJSmU6vghDojy8lxrBAHc0BgIAZ1E9q7ZlPlvIKFpPvA','5 star !!! They was very quick !! VERY NICE ! need to see someone quick and Fast I totally recommend coming here','2019-10-13 04:56:13.415000','2019-10-13 04:56:13.415000',5,'Jaylon Guidry','https://lh3.googleusercontent.com/-K59CdPZN8PM/AAAAAAAAAAI/AAAAAAAAAAA/V9plcPNTx-g/c-rp-mo-br100/photo.jpg','3511292162159714121',7160),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnd3PRWRIKbLjbuXSF3BWj_1V285UBRoMjKWVuj7Y26oIM0M5bhBx-L9gbdE08-i9LNls9kSDwLrnO7bLGHkNxaP8SkMg',NULL,'2020-07-26 22:22:43.684000','2020-07-26 22:22:43.684000',5,'Jose \"Pepe\" Cervantes','https://lh3.googleusercontent.com/-oGVgQP6FSNM/AAAAAAAAAAI/AAAAAAAAAAA/hiK1fZgY81M/c-rp-mo-br100/photo.jpg','2077061009497551125',22815),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnd8mlTKtEVuPhkNcJDq0fu3kYuecFVwTYa-LHPWMTGUPYwHLFGK6USTaAMkdYWwQ8LL7k-9CMXcXNGQV2KRtdlIA8kQ0','Nurse Dawn and Dr. Yusuf were very friendly and fast. This was definitely a pleasurable experience','2019-07-18 13:47:59.970000','2019-07-18 13:47:59.970000',5,'Brett Mabrie','https://lh6.googleusercontent.com/-5ZZW15E44sU/AAAAAAAAAAI/AAAAAAAAAAA/A05I6YMzMwU/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7246),('AIe9_BFmRFRFwJGRfUDOW8jG3rXndAzQUwJedRCHJXntaQ8AdKOD_PzZaP42eby7y6rHmsjdXvzefTHhVfPgi-DTHBjRDebTZXbhPXbUL3cyRSXq73cfy0M','Fast testing. Rachel was helpful and kind.','2020-08-06 01:03:14.403000','2020-08-06 01:03:14.403000',5,'Joshua Sullivan','https://lh3.googleusercontent.com/a-/AOh14GiOwQis1yWKyfHJYVuq0ZFleMm_hdlnrCF1b-oF=c0x00000000-cc-rp','6521947413723274945',22181),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnDfZdS09O2fTsWj6rY2GiEvkrJmLveDM9nh4PnwmXWwxmLLF7o3UoD58_dFjBIxiJQAQcp63G2nHd61NqbCtIHAX0RLc','My 1 year old was running a high fever and coughing which is very worrisome for most people right now. Dr. Kristi Henderson, Nurse Jared Ryan, Sarah (Radiology) and Carla at the front desk were all extremely wonderful! We were seen in a very quick and timely manner. My child was tested for what was necessary and every single person did their best to make him as comfortable as possible. Signature care is our favorite urgent care center!','2020-06-07 02:22:49.767000','2020-06-07 02:22:49.767000',5,'Taylor Surratt','https://lh4.googleusercontent.com/-vpuf1nB9_qQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnfVDAic1sMw8Q02jo3oc9Dy-prHg/c0x00000000-cc-rp/photo.jpg','3272657195432704501',22128),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnDHEwQbkG8xwqaCFfkFwNXO36218dbbnxoSeaHa-nzKxORDI_GbZkOkAf4x-OI762VzSE3v-QKOQf0x__ouRSKN37c3w',NULL,'2017-08-10 14:17:09.944000','2017-08-10 14:17:09.944000',5,'Pumpkin Queen','https://lh5.googleusercontent.com/-eoxu6_qWP9c/AAAAAAAAAAI/AAAAAAAAAAA/_oBnLzmAAtQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5002),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnDJXvDjv__l3bKIgxbklTvnRIM4BMOAmyO1t_pxRLXgv7cliCwmnDWOrlN-PFSWdDWhKXReQu6J4r1ZWTY3EIFYcIf0U','Awesome customer service thank you Alvean, Patricia, & An.','2020-02-06 15:37:19.000000','2020-02-06 15:37:19.000000',5,'Channon Williams','https://lh5.googleusercontent.com/-p97wRsZle-Y/AAAAAAAAAAI/AAAAAAAAAAA/Azu-u6kStZc/c-rp-mo-br100/photo.jpg','16389487648212004696',22620),('AIe9_BFmRFRFwJGRfUDOW8jG3rXndMuSkdvEKNt1kVZeTscG5YGBeyI_kfeLxkYqC2ZQmrl57O768YtsDUlMOMKG-MRrEF_e5W3ZQRMRmOpOMGzXMS9ju5o','If I could give 10 stars, I would. I was in the waiting area less than 5 minutes...the nurses were extremely attentive and friendly and the doctor was very informative and did not make me do unneccessary expensive testing! Best ER experience I have ever had!','2019-09-04 23:17:24.345000','2019-09-04 23:17:24.345000',5,'Kimberly Chinn','https://lh3.googleusercontent.com/-_NWBpRQiV18/AAAAAAAAAAI/AAAAAAAAAAA/tGqsmc3KVww/c-rp-mo-br100/photo.jpg','2694018788013845459',6073),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnDp66JLx_LY1LDBKGhLT24mpOFcUyUoGAS_i2s9Nqi7K5d6ViraeMVKKL81Xx215KTN7xr6g-qez60s0efLg8rU17Enk','Amazing!!! I took my sister here for a leg injury that she had been walking around on for 2 days. Turned out to be a hairline fracture of one of her leg bones.\n\nThe care was amazing from before we walked in the door as a nurse came out to ask us if we needed a wheelchair, to the radiology tech who took the x-rays, to the nurse and tech who put a wrap on her leg.\n\nThey made sure she was comfortable, made sure she had a snack so she could take pain meds and made sure she was comfortable using the crutches.\n\nCan not say enough good things about this place.','2019-11-29 20:53:20.700000','2019-11-29 20:53:20.700000',5,'Elizabeth Cook','https://lh6.googleusercontent.com/-nqqL95cACYQ/AAAAAAAAAAI/AAAAAAAAAAA/oH66vYHWkwg/c-rp-mo-br100/photo.jpg','8918455867446117794',9044),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnDqbK2MBb8RlHpphWCzXj8nP6FSBkGBLn_lEUQr6i8a9ccfyB8IveswWsE2JNGQ75SR4MsJPR-HVyhvSqcKBwg_DwEAo','Great job don\'t change','2019-05-18 04:27:44.378000','2019-05-18 04:27:44.378000',5,'Luis Martinez','https://lh5.googleusercontent.com/-8UV9M21yYMc/AAAAAAAAAAI/AAAAAAAAAAA/Ahq35q1g5S8/c-rp-mo-br100/photo.jpg','17394740196501090048',4681),('AIe9_BFmRFRFwJGRfUDOW8jG3rXndRALIACV9IxEL2tTHg3STWGpkvDRVaYxMBvhW4f1yNzbiA_MqUE7dylafF7Yfuq0jIIZj-KZxAPqWKh1gl5AzunpuHQ','Everyone was wonderful, Rita at the front desk was great and welcoming, Dr Faig was also good to me! My nurse, Valentine, was so sweet when going about the procedures, such a kind person! Rad Tech Selene was super helpful with everything too! :) Thanks so much SignatureCare!','2019-06-23 01:18:15.205000','2019-06-23 01:18:15.205000',5,'Maryann Del Rio','https://lh5.googleusercontent.com/-1eypn9Ntywg/AAAAAAAAAAI/AAAAAAAAAAA/TO9MfeJ98QQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2127),('AIe9_BFmRFRFwJGRfUDOW8jG3rXndUkI2mr_OmKqAPnA6lEHWBbDl9JbVGNoVYUBVfGz29Oy_t3y7tjuonVx1bH4rXzE1lE6Uz4VEQpUTgBnC5rBVv-JaMY','Clean ,quick and easy nurse and doctor down to earth and understand spike to me about parts of the body and symptoms to look for better then any other emergency room !!!','2020-03-06 19:14:53.005000','2020-03-06 19:14:53.005000',5,'Christina Argraves','https://lh6.googleusercontent.com/-73UTAkgaUu0/AAAAAAAAAAI/AAAAAAAAAAA/hJQ1w11O0fQ/c-rp-mo-br100/photo.jpg','2694018788013845459',21118),('AIe9_BFmRFRFwJGRfUDOW8jG3rXndUx_hlVx3wzRmY8fUcK9hXJ1kXfQcumaHq99HsuN7MNmkGHYrHTk5FHgNrKx83pp1WMLFVUTXsIMzna2aYBxFVxOfJk','The staff was all great. I was taken care quickly, they listened to all my problems, they made me feel welcomed and not rushed, From beginning Evelyn check me in quickly, Waldo explained each procedure step by step very nice. Fanny was very nice as well she kept checking on how I was feeling. And last Dr Daniels was awesome from beginning to end she explained all test results where I could understand.','2019-06-06 23:07:02.854000','2019-06-06 23:07:02.854000',5,'Faye Freeman','https://lh4.googleusercontent.com/-p0K8kdckqQI/AAAAAAAAAAI/AAAAAAAAAAA/Dhc35m97o2M/c-rp-mo-br100/photo.jpg','8679688254631342173',8838),('AIe9_BFmRFRFwJGRfUDOW8jG3rXndvnIxWD68DqVXEkZPcm1zgIGL3tNMBshweFUzzQRvvWNcNiSId55tvEoBIchdDlpZQH-ixEtcUtZTcRrlVSc5SyzkBk','Friendly staffs: Dr. Mauldin, Nurse Charlotte, Lynn, Reg Briseda, Er Tech Elaine are all awesome. Good experience','2020-03-12 08:54:02.313000','2020-03-12 08:54:02.313000',5,'Vy Tran','https://lh3.googleusercontent.com/-33fFT6NwJG4/AAAAAAAAAAI/AAAAAAAAAAA/SMI4oHy2bmI/c-rp-mo-br100/photo.jpg','17898197009688164559',21093),('AIe9_BFmRFRFwJGRfUDOW8jG3rXndwlj0ysTpd-ap_bXcVdiwIEUrIWVYHGrUGIxMmBBjFmQPcB5BkfDPvSi5EB8qLgEu1VLThtxoDfkfCNR8DGQcA3tdvU','I do not come to the doctor ever, for anything. But I’ve been having such horrible foot pain that I had to. When I walked in, Jennifer D was so sweet and helpful and got me checked in fast. And John was stellar at his triage skills and made me feel safe during my procedure. Matt is also a great guy and very professional. \n\nIf you have to go anywhere I’m Paris for mergency or quick care, come here. It’s amazing. I’ve never had such great care.','2019-03-05 15:54:35.078000','2019-03-05 15:54:35.078000',5,'Erin Montgomery','https://lh6.googleusercontent.com/-4zcjiwJ1538/AAAAAAAAAAI/AAAAAAAAAAA/Tq73h14KdZA/c-rp-mo-br100/photo.jpg','8626688543755174284',8539),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnDwzrpwCP1W93N_6p3NfrgDUnAnxknd66wdBIDCASpBoh8fDVjGnow8i34if7M5p1p-GPQVjMEcbE1swxhJdS-CnGDPg','Received fast and friendly service from Olivia who checked me in. Dr. Das Sajal was very nice and ran all the appropriate tests. Brenda, at the reception desk was wonderful and efficient in checking me out. Thank you for providing caring and friendly service!','2019-02-19 16:33:54.228000','2019-02-19 16:33:54.228000',5,'Felicity kiesling','https://lh3.googleusercontent.com/-Z3cfmSvulIg/AAAAAAAAAAI/AAAAAAAAAAA/IEsHKzFez4U/c-rp-mo-br100/photo.jpg','14904078213800803294',2166),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnDZ94BWYqDjg73nZqbcYn6NY7_KxA18fylqPpSSrYvWvuzjRk1N_-kNdjZdpobpbHoSLt4iDox_EnQC2KeZlEtERd19o',NULL,'2017-01-19 06:03:14.400000','2017-01-19 06:03:14.400000',5,'Ibrahim Helwane','https://lh4.googleusercontent.com/-8i2DJ8CHB1Y/AAAAAAAAAAI/AAAAAAAAAAA/FNw3vP34aQk/c-rp-mo-br100/photo.jpg','14904078213800803294',2426),('AIe9_BFmRFRFwJGRfUDOW8jG3rXndzopaktQypV3H-ijr5RwIcFMpz409_lRDd7oImXsVPIOT64tLlUhcRojDHTSOVyCloJILFnwKRtduKg7qySgi9Vatw4','Was here this Morning for a turned ankle great service, friendly, staff Dr. Elsbecker was super nice and knowledgeable. Chris was awesome !!','2020-01-21 15:29:28.419000','2020-01-21 15:29:28.419000',5,'Kimberly Fertonardo','https://lh5.googleusercontent.com/-ybKxLlcSs7s/AAAAAAAAAAI/AAAAAAAAAAA/_1Bt7zKFicw/c-rp-mo-br100/photo.jpg','16891069708558046635',13982),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnE4o5KUDrhg8TLhpMIXr_B5DprrIX7Tk-bSeTZn6_yzKVvsz47mBp-UME6m3Vx_EIkFVVTLLBQX4PuMHW3ePzvYK7DWY','Awesome group. Dr. Ybarra, Rollie, Natalia, and Stephanie','2020-01-28 01:50:21.345000','2020-01-28 01:50:21.345000',5,'Cliff -N- CJ','https://lh3.googleusercontent.com/-SmcbL8SvM0o/AAAAAAAAAAI/AAAAAAAAAAA/_YmT6a_ZOtU/c-rp-mo-br100/photo.jpg','8679688254631342173',10326),('AIe9_BFmRFRFwJGRfUDOW8jG3rXne65NutbKQyG-dQVbjAJNz0cyuJFHW4hoPkYX1hItaRA-Idv8ZPXGhlWjFmlumnMOM-A1tuwoDIKtMOn51WIOtvwzOpM','Staff was very nice. I called with a few questions before going in and Victoria was able to answer all of my questions. She sent me a text with the google maps link and also had someone come outside with a wheelchair to help me in. Mark and another gentleman took great care of me. Had an X-ray done and was assessed by the doctor. I wasn\'t even there for a hour. Great service! Thank you all!','2016-10-01 01:19:00.630000','2016-10-01 01:19:00.630000',5,'MiriCole Jones','https://lh5.googleusercontent.com/-2CQbMOhv3o8/AAAAAAAAAAI/AAAAAAAAAAA/vG2aSFEIeWA/c-rp-mo-br100/photo.jpg','14904078213800803294',2456),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnE9x0WUvD4mwZRWCsl1fqHd1b3p_t6v_oHPBhTb6GKWr7mxRUQNjX9Sjx1gPXsqhwRZMckOk-JvtI1N_D44XshelIaCA','I am leaving this review for nurse Katrina Valyan. She took excellent care of a very close family member of mines. She was extremely kind, professional , and made her feel comfortable. Thanks Katrina! Keep up the good work! 🤗🤗🤗🤗','2019-10-29 21:02:52.778000','2019-10-29 21:02:52.778000',5,'Boss Lady','https://lh4.googleusercontent.com/-PQoFZ4WdAkY/AAAAAAAAAAI/AAAAAAAAAAA/_k7u6CTQsTo/c-rp-mo-br100/photo.jpg','8679688254631342173',8762),('AIe9_BFmRFRFwJGRfUDOW8jG3rXneARrahaD7BCTZUPIJKSkINL1yJ0l57uil_ACX9dE6eI3ky0a9ql7-AbeLfcv0Ecm1-jWCba8fJnZKpCQQ3r8yQ1-mUM','We had to come back last night 3/12 with my daughter this time and being treated for the flu ☹☹☹ everytime I walk into the facility Airianna greets us with a beautiful smile and prompt to registar Alexis to get her in the back. \nGina & Josh were quick to triage and felt really good to see then ask about Leo \"since he was just treated on Sunday\" Dr. Lindsay was quick to come in and evulate Alexis and start running test. SOON we were informed my baby has the flu ☹☹☹ Churiah even came in to check on us and keep my grandbaby entertained while I was caring for my daughter. Signature Care is AWESOME and truly makes everyone feel welcomed and our health is their main focus...... Thank You for the wonderful care 🤗🤗🤗🤗','2019-03-13 14:06:31.908000','2019-03-13 14:06:31.908000',5,'Rita Aguillon','https://lh3.googleusercontent.com/-GRPCAmvhtcM/AAAAAAAAAAI/AAAAAAAAAAA/NbClzNFVm08/c-rp-mo-br100/photo.jpg','3511292162159714121',7379),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnEbl6laFhKVcKhyl9-1DqVbTLtvIK_T15Z9ZziZw7NLzPMQYEaBJmQL-Xr3iZCicTs75-tkJnTbPPjU_Msz_LYkjpmHk','This place is wonderful. Everyone who works here is kind and caring and quick! 100% recommend','2018-01-17 21:22:50.142000','2018-01-17 21:22:50.142000',5,'Jenna Lopiparo','https://lh6.googleusercontent.com/-SNX0Al4imTs/AAAAAAAAAAI/AAAAAAAAAAA/bWkNJ5Wp6Qw/c-rp-mo-br100/photo.jpg','16590124370714063921',3879),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnEib9ql2uri2EbsGoue2bs-RWWRQiyKqHXUDxfkFv9uBWNB5jq7WL-piuQniZ1YT_AG0A3RUngvF7PC3NkpuBQ4dQwGk','Aivanna the front desk asst was very fast and Sufficient not to many friendly and inviting. They make you feel very comfortable.','2018-01-26 22:21:49.668000','2018-01-26 22:21:49.668000',5,'Jonathan Lacy','https://lh5.googleusercontent.com/-mbg-pB6CW9s/AAAAAAAAAAI/AAAAAAAAAAA/tn7XvrjQpE4/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7731),('AIe9_BFmRFRFwJGRfUDOW8jG3rXneIx0bveP_ZLvyMBIfIsPelKk6nfZNAoZO7u0stiQ7VNegTZFflvEbowbgrFUwRX7IcZhoqslZb9YxShB18M5ur15T34','I had come in 4 wks post op hysterectomy experiencing pains Brandon, Meredith the nurses, Sharesa who did my radiology scan and Dr Leavitt treated and took extreme great care of me. I’m thankful to have a place this close to home Wonderful team at this location','2019-07-01 21:26:10.081000','2019-07-01 21:26:10.081000',5,'Sabrina Lopez','https://lh3.googleusercontent.com/-jlMQYM3w0Xs/AAAAAAAAAAI/AAAAAAAAAAA/cqZFjA-vN_s/c-rp-mo-br100/photo.jpg','14567670160750071148',1279),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnemhQIpOWUJH9Yt491N23ZlVcWHcHIUg3c_cK7jSZNaP-T5e94wfw4yft1Jz1nqpesYXmsBD5jeJZSGkoLTXT6ZP3F_s',NULL,'2020-08-03 17:18:32.532000','2020-08-03 17:18:32.532000',5,'Raquelin Rangel','https://lh4.googleusercontent.com/-OSXYYCyyr2w/AAAAAAAAAAI/AAAAAAAAAAA/qd2Cr4fT7V8/c-rp-mo-br100/photo.jpg','2077061009497551125',22982),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnENn3GoRHIv39EiQPtsGAGWXcX62S8E3byDCl1D6Ng1-AIQqhdNAO4oPIq3_JoWdqBXSTN-slJUK5o5fEWmW6iil9iQE','Very caring staff. Had to stay overnight and they made it very comfortable. Highly recommend','2019-01-29 16:47:02.856000','2019-01-29 16:47:02.856000',5,'Jaelyn Chum','https://lh3.googleusercontent.com/-hYGjPxKo4OM/AAAAAAAAAAI/AAAAAAAAAAA/8chatCB7x88/c-rp-mo-br100/photo.jpg','14904078213800803294',2177),('AIe9_BFmRFRFwJGRfUDOW8jG3rXneNQm2AF4x5lQWuYcijtVUG3PXsCcTEJN8RmSiVapxn0RrHdZDJ3DPqjA0Ia0Q0JpLdUKypp2zvbRmwwcIdTkrBZ1G1s',NULL,'2019-06-25 11:00:03.882000','2019-06-25 11:00:03.882000',5,'Aaron Stone','https://lh6.googleusercontent.com/-HO9PQWx3UJk/AAAAAAAAAAI/AAAAAAAAAAA/KY5m8ztm1Bg/c-rp-mo-br100/photo.jpg','13486358490203335051',926),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnEvQ7yKWug55ERZjWFTg2rRdg3bvOf1y-LGaWA1wb18MYKGw6NDy1VwNH6ZGwn4KSs2VxJ1j3Y6FRa6kqqoW4pQeRBn0','I had a wonderful experience with fast care from the staff and would like to thank Jennifer D, John Bell and the Tech Matt for the quality of care provided.','2019-12-31 16:31:50.570000','2019-12-31 16:31:50.570000',5,'Rachael Watson','https://lh5.googleusercontent.com/-slRUy_YcphU/AAAAAAAAAAI/AAAAAAAAAAA/gyg9S7NBZEE/c-rp-mo-br100/photo.jpg','8626688543755174284',14633),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnEvY6ZPun4Y0pcFmrUMwx3Hr-aXMzDl_sa-Qex1ZZ02aLGIy6sSoE2YOSwm7dgUlWx0jdxdBk3NpJos8Vdmz3HVrRCcI',NULL,'2017-07-08 13:39:03.374000','2017-07-08 13:39:03.374000',5,'salma lalani','https://lh6.googleusercontent.com/-s1jTC-vGe7k/AAAAAAAAAAI/AAAAAAAAAAA/Nf7ey9nbkf4/c-rp-mo-br100/photo.jpg','17394740196501090048',5022),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnf1R4GuCAy9yLFnmtuH2StbtJnN_B-DJ_8UE8NGGr1uFbo0T7vssDx1dUVSJR678e5vk0fxARLPrQZ0J0jB947fZ-Z04','I’ve been coming here for almost a year because they’re so good and kind. Elizabeth T was kind and friendly — helping me to check in. Churiah is my nurse. She is helpful. She listens closely. Thank you to this SignatureCare team for your genuine care. It makes me feel better every time.','2019-09-25 12:29:08.383000','2019-09-25 12:29:08.383000',5,'A Galloway','https://lh4.googleusercontent.com/-bEjWZEWZgjw/AAAAAAAAAAI/AAAAAAAAAAA/7oe8FJYLk3g/c-rp-mo-br100/photo.jpg','3511292162159714121',7172),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnffUFbZNI3XUjXspR-VHvKCrHuuj7RyyXy0DRap7pRTe589zzPOZE6zILxLPK7aKt5K-nDWYGn5JhljKH8P6vtclEpzU','Went in for two bad falls, and was greeted nicely by the receptionist. Little to no wait time, and told them my symptoms. Supportive staff, was offered snacks and drinks. They were professional with the whole routine and made me feel special. Would highly recommend this place and would come back for any injury’s. Thank you SignatureCare!','2020-02-10 06:05:26.371000','2020-02-10 06:05:26.371000',5,'Ace Stewart','https://lh4.googleusercontent.com/-NaQANgXgQA8/AAAAAAAAAAI/AAAAAAAAAAA/QdVuvbvG4aA/c-rp-mo-br100/photo.jpg','16389487648212004696',22595),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnfHMHYGqvqzJHZpwEaOrwUaZ0kDcny0aNymWz1hoO1EcnzXbzyH_D26HogXpOLw07r_YF6kPrU6ND0iHDQ8_ioo8Nv2s','Been here twice and always have a great experience! Staff is kind and attentive, always making sure you are comfortable. Highly recommend for emergent care or a covid testing appointment!','2020-07-28 22:57:03.597000','2020-07-28 22:57:03.597000',5,'Taylor Smith','https://lh6.googleusercontent.com/-8S_h_iXsutg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckmb2SC3UUhrkAlTayCritqVbzhhQ/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22009),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnfIK0ql5FBE9rIhu4mchSQbi2yuseHFQiNERF-dTioq8E8N5N7p19F6t2JkqIf2-CwaA6fM5FnXGaeYro8JD-uy-GgTU','This place has the nicest facilities and the staff were all fantastic. Special shout out to Lisa v. Kramer and Allison they were all very nice.','2019-12-07 04:04:00.510000','2019-12-07 04:04:00.510000',5,'Walker Partin','https://lh3.googleusercontent.com/-c7ZKwe3COB0/AAAAAAAAAAI/AAAAAAAAAAA/1LwdAGjNv6M/c-rp-mo-br100/photo.jpg','13486358490203335051',703),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnFK2WwnJVRtLy8qlJ8cSFYm-Xp8k8Hg0BLbufRqdPY1S9buhhTSs8737eaZTNeHZ2KPseWJuTTse_AIguFisHaOg8_RQ','So glad I came here I was treated with the most care and respect. They went above and beyond my expectations with the levels of care I received. They kept me informed and very comfortable. The staff was extremely friendly and caring. Thank you Signature care!','2019-07-23 09:12:43.710000','2019-07-23 09:12:43.710000',5,'Erica Resto','https://lh3.googleusercontent.com/-IR53g0IKiU0/AAAAAAAAAAI/AAAAAAAAAAA/BZeFOHVTOKk/c-rp-mo-br100/photo.jpg','2694018788013845459',6106),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnFkuB1hU6H7wE30QhbFhOVA2bn_xL_WCCIiZAbdqBOrT7xu53FhwXIv-owra5CFyIeQza_pmRIQegTEL4ofmGg2_wLLI','I went today paid 170 because of no insurance ..There was no people it was calm , the front desk lady was nice and the nurse and the doctor really care for there patients . Cero wait time ...I would go again','2018-08-31 06:36:02.963000','2018-08-31 06:36:02.963000',4,'Gina Serrano','https://lh5.googleusercontent.com/-fXZw_-vkKxE/AAAAAAAAAAI/AAAAAAAAAAA/Blv17J-S2pE/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4812),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnfNT93T0heVmVJl03-67IFgFHWfFVHbt2CoIPSGc71AAceba-r0CPF62eKsolK9EzM1Jy0Hlr0IszpAkbYUGR6vxkO94','I’m never going back to military er again!! SignatureCare is amazing. I started my stay with Kat and Alexa and everyone who I saw after that got better and better. Dr. Hemerka was amazing and informative and very friendly. And I’m not leaving out Shade. Everyone here went above and beyond the call of duty. Highly recommend. They accept Tricare! They’re quick and thorough. A very clean facility. They gave me warm blankets! This place is what every ER should strive to be like. Smiling faces everywhere and people who actually love their professions.','2020-01-17 05:26:00.732000','2020-01-17 05:26:00.732000',5,'Military Mama','https://lh4.googleusercontent.com/-tKpJ4gIw3KI/AAAAAAAAAAI/AAAAAAAAAAA/v7rBBNaDxOs/c-rp-mo-br100/photo.jpg','2694018788013845459',14271),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnFPic4rtrrkOpM6sdGxhDJ2WMB-LAzzrWkK86mOLsrJSOPhXTYJQBHUccI7dkAXydm5Ahuv68fkqUbXpFFs9TFbCAFe0','Extremely professional and friendly. The individual care from the staff and the doctors bedside manner is 5-Star!!!!!','2019-02-28 13:51:58.907000','2019-02-28 13:51:58.907000',5,'T. Anthony Terrell','https://lh3.googleusercontent.com/-vGTa_toiWTM/AAAAAAAAAAI/AAAAAAAAAAA/shTpzk61dXk/c-rp-mo-br100/photo.jpg','16891069708558046635',4339),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnfR_n2-WyK7jPk4RYgU0Z3hChnYvRhhNUGGFOv8rQmH1Ifd4ScLjxhhZQTeATCs61zACtMbCRB6OBicdZ8Z_Fimw29ZA','Even though they were super busy with ER patients and COVID testing, all of the staff were incredibly nice, kind, and understanding! The process to get tested was simple and well-explained.','2020-07-28 02:13:23.580000','2020-07-28 02:13:23.580000',5,'Erin Staudt','https://lh3.googleusercontent.com/-duMSE63oQMo/AAAAAAAAAAI/AAAAAAAAAAA/sRotqSB4XtA/c-rp-mo-br100/photo.jpg','14748677429039074158',22549),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnfR3B1BhTZ5r5KuAW4RlW5661RM0LhwHrvG0poAayroIO4W2OmZx6uG1Y04eBG6_hm19Jt_RaLwtoduAALR9_voKwzdU','Location was great. Wait time was non-existent, which is wonderful after a long painful day of work. Staff offered excellent patient services.Tatiana was very friendly and welcoming, Dr. Sylvester, Karen, and Quyen were all professional, and friendly. I will most definitely come back if need arises, and will recommend to others. Way to go SignatureCare Westchase!!!!','2018-06-19 02:31:27.839000','2018-06-19 02:31:27.839000',5,'Tracy Jones','https://lh3.googleusercontent.com/-swn7o3Omh30/AAAAAAAAAAI/AAAAAAAAAAA/lcA3Vp4akn8/c-rp-mo-br100/photo.jpg','12541597562633926366',644),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnFrk_Lj4-RL3wMGy0igFD09-5wghAiMFj_oLaah7xwQ9HzO0qxdoHewA-_XJGMDDj59kPmF0FEvpjxpz4fWrVF2cCGv8','The whole staff was courteous, knowledgeable, and prompt — from the front desk (Delfino), to the nurse (Candace), to the doctor (Dr. Elsbecker), to the tech (Townsend). I will definitely return if I ever have another emergency.','2019-01-05 01:35:46.598000','2019-01-05 01:35:46.598000',5,'Atwood MHC','https://lh5.googleusercontent.com/-LlXOJE-PD6I/AAAAAAAAAAI/AAAAAAAAAAA/-d9z13BojR4/c-rp-mo-br100/photo.jpg','16891069708558046635',4378),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnfWigeT80IZD6Wc8Anx818OabRD57_-dZPJGDWIZdxXUlTAirRED-Qn55EEg29zkxZ3E1qLjJYrAkjMi_gk5rUSzt1OY','great experience with Dr. Morical, Nurse Jacob, Tech Juan, and Registration Dyveliz! really sweet staff!','2019-09-19 19:38:57.160000','2019-09-19 19:38:57.160000',5,'Abbey Huskinson','https://lh4.googleusercontent.com/-dFy0WmmvOgo/AAAAAAAAAAI/AAAAAAAAAAA/n1e1Ik9f-9Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3196),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnFXp2leOWBTvByW95-YBZgzlptWg1rJarXv7EXsv3HnKR7NyZNSYPGk173hl71Hxj06F6YXgxIdd5NveDcEYbXZwtu-Y','Our experience here was unlike any other care we\'ve received outside of a hospital. We went around 9PM on a weeknight and it was not terribly busy. Even while just parking, the super friendly security guard on duty, Officer Hinton, asked if we needed a wheelchair or any other assistance. Once inside, Jessica and Becca did intake in record time. The facility is clean, modern, and comfortable. The waiting room had free cold drinks, snacks, as well as a coffee. Once we were taken back, the nursing staff performed quick assessments with personable and friendly interactions. In what seemed like less than 10 minutes, Dr. Soli came in and was informative, listened to our questions, and had an incredible bedside manner. Overall, I am not sure how we could be more pleased or impressed with the entire staff or the facility. My wife and I definitely recommend this place without reservation.','2017-05-24 14:16:00.847000','2017-05-24 14:16:00.847000',5,'Jason Ramirez','https://lh4.googleusercontent.com/-VHTlFrHIq8I/AAAAAAAAAAI/AAAAAAAAAAA/f3IyFRWmtXw/c-rp-mo-br100/photo.jpg','8918455867446117794',9398),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngAPEYyzuF7YUZivEremTHJA4Qz58Jw6-v1T8qelazRSmAQI6KZbA5GRxzSa7_4YrMDVbUTebjEjIhHqidm7w-F5f02Q','I would like to give a special thanks to Mercades for get me in as quick as possible!','2020-03-08 14:56:58.482000','2020-03-08 14:56:58.482000',5,'Denes Gilleylen','https://lh6.googleusercontent.com/-_pQj2SPHNH8/AAAAAAAAAAI/AAAAAAAAAAA/4UviUFJSxCE/c-rp-mo-br100/photo.jpg','8918455867446117794',21240),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnGARvYQVB1490cwxLirvhjTP7JtpyVaj1Nw8D8fJj5tioYuaBtZTts40JsCjtnLpkBDbRvDDtfnoU6Cn6o6XWRIpzoww','Really great! Excellent service. We came here for COVID testing and everything went great. Nurse Carly was really helpful to us. Thank you so much!','2020-07-07 07:34:02.118000','2020-07-07 07:34:02.118000',5,'Reina Guillen','https://lh4.googleusercontent.com/-JCXyANxnGM0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckm8UnOnP6gH67GpEsWhb1fWhb_6w/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21294),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngCsmQ6smipX9UPLsjeiPsfUF9mYXAjnazVYLi4KOrRi7RaAp5_YbwElLiAWh9y54_rbQIHJzOm_Kk35QJLlCJS89Q1I','thank you Audrey, Lisa, Leo you made my experience so much better from making me feel comfortable in your office to getting me feeling better and on my way quickly. i will be recommending to everyone.','2019-10-30 19:18:49.394000','2019-10-30 19:18:49.394000',5,'AAa Aaa','https://lh3.googleusercontent.com/-gi9We8vc8WI/AAAAAAAAAAI/AAAAAAAAAAA/IOEbBucoxc0/c-rp-mo-br100/photo.jpg','13486358490203335051',756),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngGllTlUEEwgvDihWoKdzxy-QWm14ReyzwoempaYIV23acI1h3kd9ZIQAIBb8v31xC-0oLBKnBmaZYWNJtMuENtI7x8w',NULL,'2020-02-15 04:34:00.656000','2020-02-15 04:34:00.656000',5,'amanda keys','https://lh4.googleusercontent.com/-GzrBicpJQEw/AAAAAAAAAAI/AAAAAAAAAAA/iCBElSiinaA/c-rp-mo-br100/photo.jpg','13486358490203335051',13422),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnGIImSWvvcHKYUCJYff7lwmxY3i1mwuxiBbAgdnuh8x_fBdHK0wzHYY1RVVTG8IS8uBfalcuzF3i6lYNfJ2Y5lE34bss','Dr. Patel\nAlvean . ..nurse\nEzequiel -radiology\nJocelyn - registration\nSean - tech\n\nCompassionate, caring, helpful and great information givers.','2019-09-07 18:57:28.007000','2019-09-07 18:57:28.007000',5,'Nita Lee','https://lh5.googleusercontent.com/-7AxxOyvTihM/AAAAAAAAAAI/AAAAAAAAAAA/bbJd27MnBLQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2942),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnGIM_lntl_WExOJRsgPuBL9Cvx5OaGnxd0GAk6cNzmnPsOQ6tQyaWpwYeYrIIjdCkdDa1zCTyTo6qivfEBnUWC3tFyJM','Nice and friendly staff. Prompt service and everything is explained thoroughly.','2019-02-17 13:46:01.483000','2019-02-17 13:46:01.483000',5,'Mo O','https://lh4.googleusercontent.com/-dcW0hEbA0pE/AAAAAAAAAAI/AAAAAAAAAAA/NPYzgDXOrd8/c-rp-mo-br100/photo.jpg','17394740196501090048',4719),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnGnzhyVXO27BpQzWPLGsP0rZoDsXToOcWMhsuX67MbVS-FI9rtnxWCxNg6llfzChmw_SUFRhikhrX9LLMQgEJaqJf-Dc','Let me first start off by saying this facility is absolutely remarkable. Everything about this facility deserves a 5 star!!! My visit was excellent!!! Everyone there was extremely nice and gave great quality care!! I have told everyone I know about this urgent care and they were surprised about what great care I received. This place is extremely clean and the staff is awesome! This urgent care has the setting of a true emergency room at the hospital but even better!!! There was not one time that there was an issue. The doctor and staff caring for me were very patient and very understanding. I have never been to a urgent care that provided this kind of service before. I was really shocked!! They even call you after a few days after visiting to check on your condition as well to see how everything went. Out of all the urgent care facilities I started to go to I am glad I went to Physicians ER.','2014-03-13 17:51:41.064000','2014-03-13 17:51:41.064000',5,'Tori Woods','https://lh5.googleusercontent.com/-sC66Q7B4oBA/AAAAAAAAAAI/AAAAAAAAAAA/ZPcZDYrJxrg/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5305),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnGoIVP9tvPcrRDBMH7YVvzvQstq_omlluyAFRyBJz7WEf1BAph0Tqwq6DDktHmN5vZMWtkYOv_70T0I4LCiX8IfqYgvA','I went when my daughter broke her ankle. Alvean and Tricia were great, and so was Dr. Thomas! An overall great experience for sure.','2019-04-25 17:38:54.058000','2019-04-25 17:38:54.058000',5,'tjude1922','https://lh6.googleusercontent.com/-SGbRew-xMMk/AAAAAAAAAAI/AAAAAAAAAAA/0qpom0BhiHc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngOX8WNSH-m-6ECFyqlmvj8atHeVXDs2kKolJ0Whl0dygwSQSSiv2A2IcthkfCt5-iVVewm6ZXnqtnn_CM4V6ZY7EJ5k','Maya at the front was so helpful. And very nice with everything with my MVA.','2020-02-21 18:59:50.704000','2020-02-21 18:59:50.704000',5,'Kevin Zarco','https://lh3.googleusercontent.com/-1Kt7OCQ0kRE/AAAAAAAAAAI/AAAAAAAAAAA/FB4CyVvFreU/c-rp-mo-br100/photo.jpg','12541597562633926366',13358),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnGPC_0tQlExDoViZdIugo35oh2OcQnFyY7BVvtQAzbA3cgbhSCY_qwHmjAQGUFy8q2-RlU8OlU8CPNRPyPGok3GzxBsA','Almost cut my big toe off, foot slipped and came down on a sharp tile edge. Oh yea I was in my bare feet. I was bleeding like a stuffed pig, did I mention I was on blood thinners. My wife and I tried to stop bleeding for a couple of hour at which point the smart one said \"you\'ve got to go somewhere\". Found this place on the net. I didn\'t want to go to a Hospital emergency room--have you been to an emergency room lately? \nSo we drove to this place. Sat. at noon and they weren\'t busy. No they didn\'t take my insurance. I said what the hell, fix it please. 8 stitches later and $300 and fixed. Great folks, very professional and caring too. They even called me the next night to see how I was doing. I\'m impressed.','2018-09-24 03:31:21.105000','2018-09-24 03:31:21.105000',5,'Nelson Miller','https://lh6.googleusercontent.com/-VTEBX4olU0g/AAAAAAAAAAI/AAAAAAAAAAA/KMYZdyd5uoo/c-rp-mo-br100/photo.jpg','17394740196501090048',4789),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngSdBI2oIrscySHXZXa5ltmlI4qEaDUu8ijkm-8_vIeaQK9H4-3XcTav25e7IH-z2sHOhUEawg36fwvVmnbfc-S1VM90','Great service from The Nurse Sarah,RT-Marcus,Reg- Ayesha,MD - Dr.Thomas. Most definitely would recommend You Go there','2019-06-22 19:29:58.784000','2019-06-22 19:29:58.784000',5,'Marquisha Randolph','https://lh6.googleusercontent.com/-VXLsCNMDuRM/AAAAAAAAAAI/AAAAAAAAAAA/FkaK3CeVMLY/c-rp-mo-br100/photo.jpg','17898197009688164559',5684),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngTg4-vA-lZvKa6LLTI7HYWVZ0sbXQsaJT69Z55yD68jCRIkohzkmBqzrp8chOO_W9qPKyKgqqALAWyMWDw61L6Qr410','All the staff were very nice and considerate. I am happy with the works of Henderson, Chantel, Daniel, and Tanishia.','2019-10-28 02:18:40.302000','2019-10-28 02:18:40.302000',5,'Jacie Ford','https://lh6.googleusercontent.com/-LnrLRS7g42Q/AAAAAAAAAAI/AAAAAAAAAAA/s7BwWCyftTk/c-rp-mo-br100/photo.jpg','17898197009688164559',5473),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngY1T8wVtxOvXN1-oXOz4nX1dzpkfSoh0DA9GyEVxRu1goysyAyeg74fCFF11TPZrn6qEmkAPeVB2siDonc-oWDYtCzA','Booked an appointment for a Covid 19 PCR test. The website stated that was an option, as did a follow up message through google. Megan Hurwitt responded to the question of how long, on average, was it taking to get PCR tests back from the lab. Her response was 3-10 days on average. Check in process was pleasant and we were even given a form asking if we wanted the rapid results covid test. My wife asked the woman at the desk if we had to have the rapid test if we wanted the PCR test, to which the woman replied no and that if we needed the PCR test that was an option. We took the test and THEN were told it would only be a rapid test. We asked the doctor that gave us our results (Hays or Haynes) what determined who got the rapid results test or the PCR test, to which he replied, \"Oh we dont do PCR testing here\" My wife pointed out that the website stated the opposite, to which he replied \"I dont know what our website says\" and we were rushed out of the way. Both my wife and my employers prefer the PCR testing due to accuracy, which was the reasoning behind us asking for them. The misinformation and lack of communication between staff is unacceptable during times like this.','2020-08-04 00:37:22.807000','2020-08-04 00:37:22.807000',2,'Jeffery Hendricks','https://lh6.googleusercontent.com/-9xPpORGtdKI/AAAAAAAAAAI/AAAAAAAAAAA/Ze44nvoZUY0/c-rp-mo-br100/photo.jpg','14748677429039074158',22529),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnGYzqjwxgdK32l0FY8GlJNFhjvkW8uySkWsp_dfdEgKJ7pvAVG0emwnz6z9PPXfoQbKUv1IpUIg7qF26LjnSo8qdw1C0','Absolutely love this place. Woke up with excruciating pain and came in early in the morning. There was no wait and the entire staff could see the pain i was in, and right away got to it and made me comfortable. Dr. Patel was spot on & all the nurses have been beyond helpful. Highly recommend this place and so thankful for Dr. Patel, Tammi, Nanci, Norma, & Vy for caring for me so well.','2020-02-23 22:59:46.968000','2020-02-23 22:59:46.968000',5,'Alex Trevino','https://lh5.googleusercontent.com/-WyZ5Wjed7ck/AAAAAAAAAAI/AAAAAAAAAAA/NO0igjmqc9Q/c-rp-mo-br100/photo.jpg','17898197009688164559',14132),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngYZuXUAK5i7K2s4MaFChPUEIQgaIBwYAqNr8yzAnOWQhlzUnmPpvzs6Vj681mEbFm9cBmp13a80tlDA8U-jQqrYbXiE','Very fast and easy, no wait time, the nurse, the administration and the awesome doctor explained everything to me that I needed to know. I will definitely be back.','2019-11-13 15:36:04.105000','2019-11-13 15:36:04.105000',5,'Daniel Feagins','https://lh6.googleusercontent.com/-_sARz-6GGLQ/AAAAAAAAAAI/AAAAAAAAAAA/HJI79IS09Ts/c-rp-mo-br100/photo.jpg','16389487648212004696',2713),('AIe9_BFmRFRFwJGRfUDOW8jG3rXngzjIA9cBBkEKjuzbeDljnoAwUgU_SGRVHu8sQYWC8dL5Xtdfr73SJl9R2_szenEkhT_WPc-0aMpe_NxHL6M7NK5DRWw',NULL,'2017-06-11 00:59:00.958000','2017-06-11 00:59:00.958000',5,'Gregory Hughes','https://lh4.googleusercontent.com/-Whh-nG8qwEo/AAAAAAAAAAI/AAAAAAAAAAA/H3zZ0KqHp-A/c-rp-mo-br100/photo.jpg','16590124370714063921',3976),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnh6_RE2-v3nC_knVvv24mSxRTDZkijGpx3_U4NKJca8TeKVyVe5xOi84A8frbFQy44g19sW5oy-F2Jh_ld6btwuTrD-U','I had a wonderful experience today. I was feeling terrible but everyone was so comforting and nice. Liz, Cameron, Jacob and Dr. Kimball were attentive and helpful. They were so quick and it was amazing to not have to wait very long. Would highly recommend.','2019-05-01 15:12:04.134000','2019-05-01 15:12:04.134000',5,'Alice Richter','https://lh3.googleusercontent.com/-dQVCPd864gU/AAAAAAAAAAI/AAAAAAAAAAA/g5D6F5nRvVI/c-rp-mo-br100/photo.jpg','16590124370714063921',3395),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnH69a17I2kG4ZMQY51gf2ESjwtX_hA7_suV3H4Aai6RIN1BO_ULbjNqvtquC6DWnKoc0tL5NzKnxhyDNIJdlVJbu7jMo','Genesis & JJ at registration we’re super warm and welcoming. It was so fast, and I came for what I thought was a broken foot so being seen fast was super appreciated. My nurse Catherine was so patient especially with my boyfriend who asks a million questions to every doctor we see (lol). My ER tech Scott and radiology tech Quyen were knowledgeable, helpful, and again quick. The common theme in this place is to be quick which is so different from many places. Special shout out to Catherine who made sure I was comfortable and happy the whole time.','2020-03-03 16:06:34.500000','2020-03-03 16:06:34.500000',5,'Jessica Anevski','https://lh6.googleusercontent.com/-4SifjV1Wzvs/AAAAAAAAAAI/AAAAAAAAAAA/0emCYVbvqO0/c-rp-mo-br100/photo.jpg','12541597562633926366',13317),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnhf-mwlO1_mQg9n3JWEnl5HNrvLPPxx0jFZwbjIoRccq1yucvL9An9OJdx4KqusDft_F_fwaDQMIzzuhCOZiGqNHpDvg','Brought my daughter in the day after Christmas with what turned out to be the flu. Other urgent care places in the area had super long waits according to \"online check-in\"options. We had no wait in the waiting area, the staff was very efficient and helpful. Other patients were there, they were simply already in patient rooms and being cared for. I\'d definitely return if the need arose!','2019-12-28 15:19:17.069000','2019-12-28 15:19:17.069000',5,'Sharron Sanborn','https://lh6.googleusercontent.com/-hJ8A5Y9HYQ0/AAAAAAAAAAI/AAAAAAAAAAA/VF9py13OPcc/c-rp-mo-br100/photo.jpg','14567670160750071148',1153),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnhgKRDODTYDzVFGIGDmKQOMdc1_A3NZgyadRhTIsUeWByGT4HjcneDvzr-qRQ23CrWysLVM5ThpCpsW4QTSt0apY2UA8','Cody was great! Super nice!','2020-07-29 21:45:49.255000','2020-07-29 21:45:49.255000',5,'Kaelyn Flores','https://lh5.googleusercontent.com/-1_Z2jeRCdkc/AAAAAAAAAAI/AAAAAAAAAAA/mwqsIXJfYzM/c-rp-mo-br100/photo.jpg','2077061009497551125',22960),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnhnWZcCSTYa51BSV7eVm2dNNTDJS9HTlvgoFSUQRJoL4wyHYhfPezhOeS0aXr4nhXgfbHOiD2swc_Bqoc-cGjwp1bx48','Quick and liable place to come to. Nice staffs, they take your visit very seriously and no time wasting. I’m glad I choose them to watch over my care.','2020-02-25 07:00:46.620000','2020-02-25 07:00:46.620000',5,'Myein Myein','https://lh3.googleusercontent.com/-mZ8rZq8G2Qo/AAAAAAAAAAI/AAAAAAAAAAA/fBUgu8eISTs/c-rp-mo-br100/photo.jpg','12541597562633926366',13346),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnHnz-F18DkBnAvU1vdhSq72y1AjYFUoXl3GuKkBTJRgky07HLUs1wuKbaMJcLp-wWOjtsSivmVuu7EZqI6zBZfsZZJ3o','Thank you sita jose allison and dr plante for the best service','2019-06-26 00:19:56.710000','2019-06-26 00:19:56.710000',5,'Joordan B','https://lh6.googleusercontent.com/-GRKNn-A8HOI/AAAAAAAAAAI/AAAAAAAAAAA/u0sjaxcVlyY/c-rp-mo-br100/photo.jpg','13486358490203335051',924),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnhocvPJ6eHuvaDqBoeDC-91v692glJHGRV48YBvn9MUu735tdMBbVFxjZH0cZRs9quy0u7E4ZN0MMRM03LSs04QRUwhg',NULL,'2019-12-11 02:17:32.863000','2019-12-11 02:17:32.863000',5,'Taylor M','https://lh5.googleusercontent.com/-mjnglPQdNCU/AAAAAAAAAAI/AAAAAAAAAAA/-BBuH7oSrEs/c-rp-mo-br100/photo.jpg','13486358490203335051',694),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnHQctHqjsNrKvA7cFmsbkoSZE8Zhyd68yL9EINLBzxyXFXj-WHOn8gmPSW4dM4Z3zCT1OAWeiGVudpEiNKTeUJldZbeE','Just wanted to leave a review from my experience last week with my husband. We had a pretty serious situation that caused him a lot of pain, and I was nervous going to an urgent care because of cost. They didn\'t make him wait uncomfortably, they got us right into a room and immediately had a nurse and technician ask him preliminary questions and get comfy however he wanted. The doctor was super friendly and knowledgeable, and then they performed the procedure right then and there. He went back for a follow-up and they provided him with instructions. So far, so good as he\'s been healing up. The price tag was way under what I thought it would be too. Super thankful for these friendly professionals helping us out at a difficult time!','2019-10-22 22:28:13.662000','2019-10-22 22:28:13.662000',5,'Ariana Gurel','https://lh6.googleusercontent.com/-nq3uydAFNQA/AAAAAAAAAAI/AAAAAAAAAAA/WG-gdQ8l4rM/c-rp-mo-br100/photo.jpg','14567670160750071148',1210),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnhr-5adQaIKF0vbwZuK41GUT93lSmiQLeM_Xoj3jKiXX9mOJBDSLXF2Rc8-EjpkBK49VB6Dqv18malalo2HCqKBX743s',NULL,'2019-12-09 16:35:15.105000','2019-12-09 16:35:15.105000',5,'Matthew Parker','https://lh4.googleusercontent.com/-IW6xBXuEgiE/AAAAAAAAAAI/AAAAAAAAAAA/MMXFSumnQBE/c-rp-mo-br100/photo.jpg','6521947413723274945',8067),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnhZxXSPzHngHKdBkrt30IwvUWftdKs3GcGXgxDImQOKt63wtqVrdM7kB_6aQzpRG4no8jNkD4iNCDB2RhvnU2J72rZq0','Natalie at the front desk was very courteous and welcoming. I had never been to an ERcare24 before but she made the experience start out just right. My nurse Hamzah also made me feel very comfortable and was also very personable which made me calm down even though I was worried due to my current issue. Great nurse that took his time with the questions and made me feel like he really cared about what I was going through. The radiology tech Marvin also made me feel welcome and was very accommodating and came with a wheelchair even though I didn\'t need it. I was worried about having to get in the machine to get a CT scan but he also helped calm my nerves with his calm demeanor. Dr. Yusuf was very patient with me and made sure to ask all the questions to get a better understanding of my exact condition. I honestly felt I was in great hands with him as my doctor even though I had never met him before or knew anything about him. Just extremely professional all the way around. In conclusion, I don\'t think I will ever go to a hospital ER ever again due to the awesome care and treatment I received at this location and not to mention the time all this was done was only about an hour. I would HIGHY RECOMMEND them to any of my family or friends. Trust the staff at this location. They take great care of you!!!','2019-01-07 15:14:04.567000','2019-01-07 15:14:04.567000',5,'Michael Marbut','https://lh4.googleusercontent.com/-_c-OXmyM9xM/AAAAAAAAAAI/AAAAAAAAAAA/ZVwRnWN7SbE/c-rp-mo-br100/photo.jpg','3511292162159714121',7512),('AIe9_BFmRFRFwJGRfUDOW8jG3rXni2RftYrDFuPwX5mGYtHYkl_331dRpweWZM96Ciw0Oe3AihTYjjFxVAxfgVkRWAYvFeUabOjMvCqlZ6lev40KxbZLFuw','everyone was wonderful. Very fast and friendly','2019-06-14 18:44:39.516000','2019-06-14 18:44:39.516000',5,'Baylee Covington','https://lh4.googleusercontent.com/-tDZVUXmfa1s/AAAAAAAAAAI/AAAAAAAAAAA/3rA3PKzlNZE/c-rp-mo-br100/photo.jpg','8626688543755174284',8448),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnI4qUDSXZtNWN5yfhxX1tikeviGNioXY1Q5FiC_7fHnUXBe3E0Dn08ELQh97TuplL9DHZk8RDdwez2XM1YNRdzWKx9sU',NULL,'2019-09-14 01:49:32.343000','2019-09-14 01:49:32.343000',5,'Rosalinda Torres','https://lh4.googleusercontent.com/-D1W6xwFGyCw/AAAAAAAAAAI/AAAAAAAAAAA/qQ2K5IUu0oI/c-rp-mo-br100/photo.jpg','13486358490203335051',832),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnI73xo3B3eCHKI7ZVTltnuPDZdD-HkqMxLX030CuJChttikwG6UqlxFTRgpIaMGWpHRQfMCuasmPDY3jnIQlN7phBPps','Made an online appointment, arrived early & received very quick, friendly service at a time that would be considered \"after hours\" elsewhere. Check-in w/Delfino & insurance was simple. Nurse Gabe was accommodating. Dr. Elsbecker was kind, patient. My problem was solved w/minimal hassle. This place is deserving of patronage from the South Austin community.','2019-05-18 03:19:33.027000','2019-05-18 03:19:33.027000',5,'Andrew Wright','https://lh3.googleusercontent.com/-a61cb60n2Gs/AAAAAAAAAAI/AAAAAAAAAAA/KeHIThIHiVA/c-rp-mo-br100/photo.jpg','16891069708558046635',4276),('AIe9_BFmRFRFwJGRfUDOW8jG3rXniDn5IAQe6-kZ3xDPHjjXbovRzyAifLFvIEOiAY9iaZSzctxnckW0-S_noIHwWy0N5Xe_fXSdryrS_700Zjgri4vRNQI','Dana, RN & Dr. Sylvester at the heights location where great! They did an excellent job very well educated in their work and very nice and friendly... best service I ever had !!','2019-09-16 13:14:48.592000','2019-09-16 13:14:48.592000',5,'Serpio Horne','https://lh3.googleusercontent.com/-fstunTHn17A/AAAAAAAAAAI/AAAAAAAAAAA/M6Be0aXVxQc/c-rp-mo-br100/photo.jpg','14567670160750071148',1237),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnifF1DyKRG7K0tcchmGhhDDDHjsuFiyuXPNzHnqpwMdmm3Meh7cSfTdoTke_J-TISF3-9tU2FkbXIikcroWPscj1g2dA','Very professional staff, great customer service and very helpful. Especially that beautiful RN Jessica F. 😂 She was amazing took good care of me . Was in and out super fast . Definitely recommend. 10/10','2020-03-01 23:58:34.983000','2020-03-01 23:58:34.983000',5,'CLASS 47','https://lh3.googleusercontent.com/-vu53ibYJkKA/AAAAAAAAAAI/AAAAAAAAAAA/xvYQtFkna2k/c-rp-mo-br100/photo.jpg','6521947413723274945',14525),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIGDyVbE3z9GR3NmFHL1oYl5T9IMMz6aG-IWt2rugL43E-WTwpb_qsW7Vx2P_sCIVCl70Rde_HsrLneYGL5dK6-t8n8Q','I came here after a car accident & was far better than any hospital i’ve been at. Pham, Sarah, Fatima, Daniel, and Tanisha were all very welcoming & helpful. Id recommend them any day.','2019-10-02 01:31:24.781000','2019-10-02 01:31:24.781000',5,'SSRKITTY','https://lh3.googleusercontent.com/-JcJuE2kDtHU/AAAAAAAAAAI/AAAAAAAAAAA/9XKDEybK3YU/c-rp-mo-br100/photo.jpg','17898197009688164559',5528),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnihw2Ia27NGb__JW6zXdACIewDMfM9GC3e3NsBmfhRYvActjLn6t3UG1qrC3O2HiWoMklh0ikP_wNHjLf80PaXcdFJGY','Dr. CHUKWUMA AND NURSE ALVEAN WERE GREAT. Professional with great bedside manner.','2019-06-05 21:06:23.530000','2019-06-05 21:06:23.530000',5,'whitney','https://lh6.googleusercontent.com/-al7i0VbcrfY/AAAAAAAAAAI/AAAAAAAAAAA/MMkAo_IYNp4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnII1PFiEhUWaAeA5xBGcxmfz0x2HKclxnq41-N7X_phAhj2BhUTeSAiclEUfz2NPvj6_qcY6aeEy33DlAxGp3nsbT01k',NULL,'2020-07-17 03:17:51.219000','2020-07-17 03:17:51.219000',5,'Stephanie Lara','https://lh6.googleusercontent.com/-Z2RHg0lEOeQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckTjzVyrE1qhI2010TsYmQ6MscxoQ/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21885),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIiAoY7rDETNtL7Bzi9imblyHLxGFk6KanISjV7w15FnSIkB7lsK3871-vA06hh6azNKUyBVoulPcXA6wE_ixYJv_mO8',NULL,'2020-08-09 16:11:50.473000','2020-08-09 16:11:50.473000',5,'Jana Bowles','https://lh5.googleusercontent.com/-oeWpiE-3Aho/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckjJmdIq2fc2Wklxbalc8_BOzI9Iw/c0x00000000-cc-rp/photo.jpg','13486358490203335051',22484),('AIe9_BFmRFRFwJGRfUDOW8jG3rXniITRxeJr2bvf80puTeweweqNAjvfyXuLnMsJV1JZm6lFxHtyJqLSfxoNJ-DzLwHfwYOMefUNfBoUxoQ3PGNxNNs71es','Fast and efficient service with little wait time. Thanks to Dr Garcia, Maya, Victoria, John','2019-12-19 16:14:20.984000','2019-12-19 16:14:20.984000',5,'Caroline Hoang','https://lh3.googleusercontent.com/-Uv16FTw4X0c/AAAAAAAAAAI/AAAAAAAAAAA/0xHWrr1O818/c-rp-mo-br100/photo.jpg','12541597562633926366',332),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIJddPpXQcgbO16YtLOODH0aSdnZUKVDoLNjgbbBsBsIYrrdcni8RQBkTdvvtueAvwV3uEisUT1nZQxqlZMjJ_Wrniro','A great Facitlity with Awesome Doctors and Staff. Fast, Friendly and Informative Service very welcoming here!! Maya the receptionist was so welcoming','2020-01-16 18:00:35.483000','2020-01-16 18:00:35.483000',5,'Ahmad Robertson','https://lh4.googleusercontent.com/-ay-NSog5mZ0/AAAAAAAAAAI/AAAAAAAAAAA/E4M4aN7kaio/c-rp-mo-br100/photo.jpg','12541597562633926366',9655),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIjQg8m_MLXH0MJDAb3jZq50-Y9Z_0k4ppSvn-0rfpb-5Pahd6t-rkusdNJyln9QWR7z47diYgs3Xy3zRIcJA86QnMd8','This facility is incredible! The experience from the front desk to the end was just amazing. Staff and doctor Faig were amazing and very attentive. An all around amazing experience. They even called an specialist to come talk to me about my psychiatric concerns. They went the extra mile to make sure I received the help i needed. Highly recommend! Thank you!','2019-03-16 00:17:44.430000','2019-03-16 00:17:44.430000',5,'Omar K','https://lh5.googleusercontent.com/-UM6mM3piJwQ/AAAAAAAAAAI/AAAAAAAAAAA/_YDD0WqQSaU/c-rp-mo-br100/photo.jpg','14567670160750071148',1362),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIJvZpO0uHgAFP9aIxESIrimkj_5CGQHZBWccG5CKVqDb30eC0r3NQybDZ1f88aiQPzz7-mdc3Q6R-WIwzzL9Q1RatHQ','Dr. Thomas was awesome, the whole crew was awesome. From check in (Tanishia) to the nurses (Jennifer and Jeff). Dr Thomas was informants really compassionate. I hope I never come here again, but if I do, I know I’m in right hands.','2020-02-12 04:35:33.563000','2020-02-12 04:35:33.563000',5,'Sergio Garza','https://lh6.googleusercontent.com/-ZC3uJ0vWTX8/AAAAAAAAAAI/AAAAAAAAAAA/KGz6T3PGsEE/c-rp-mo-br100/photo.jpg','17898197009688164559',14176),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIKONHU4Q_8v2ZeKqaU-MqpnLZZEVdm0XA3s8gAfnuEFT-Sy6eu6xDXVlQTCLR28Oi0CPIG0KIq7bYJJQIydyBo3z_y4','This place is SO great! I got checked in by Lizzie, the very sweet person at the front desk. After that I was immediately taken back to a room where I met my nurse Melissa who was very friendly and cheerful and took the time to listen to my concerns and got a full picture of what was going on with me, during this time the tech Josh took my vital signs. After that Melissa brought me a warm blanket and a water and a few moments later Dr Yousef(spelling?) came and saw me and explained what they were going to do. They had me in and out of there in under 2 hours. Thanks again SignatureCare!','2020-02-19 10:21:02.032000','2020-02-19 10:21:02.032000',5,'Gabrielle Nunez','https://lh4.googleusercontent.com/-hWTAIXSt42I/AAAAAAAAAAI/AAAAAAAAAAA/ognu6uBJEzY/c-rp-mo-br100/photo.jpg','3511292162159714121',14408),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnil8TnbpxBNmrlm8EiN5FOdwJ_BrYIRtn0lnfYtJ5ogR5DYq_BpevV7XBj3JyPrSivXMosaB86Jv88r57P3UaIG9SEhg','What a great place to be for all your emergency care indeed I was 100% satisfied when I took my daughter there.','2019-12-26 12:35:09.622000','2019-12-26 12:35:09.622000',5,'Mark Amankwah','https://lh6.googleusercontent.com/-zrin_Xpu_YQ/AAAAAAAAAAI/AAAAAAAAAAA/vWuNXpo3rK8/c-rp-mo-br100/photo.jpg','2694018788013845459',5975),('AIe9_BFmRFRFwJGRfUDOW8jG3rXniLvzKh7rjZR38B1zzR72JE1Vx25Emsff6He8INt_Ium-T4bMpjmgXapV8lDNH3GE16I8Cfzjxxnwqq3TmhXok_bFyN0','The customer/patient service was impeccable! From the moment I entered I felt welcomed and comfortable! I had strep throat so I was miserable but all of the nurses, doctors, PA\'s and front desk personnel were so sweet and were more than accommodating. They offered me beverages and a warm blanket, and I joked about staying there for the rest of the day to relax, they told me I was more than welcomed to! Loved everyone there!','2016-07-02 04:34:52.423000','2016-07-02 04:34:52.423000',5,'Natalie Dunn','https://lh4.googleusercontent.com/-CPYbNq_YnvI/AAAAAAAAAAI/AAAAAAAAAAA/Q9dVRzNTViM/c-rp-mo-br100/photo.jpg','17394740196501090048',5228),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnImLoIiCo2bkIBaKZiCnuG0rY5fTYPsUjQ62dS_BgX13dIYwJhIb8-0VEMC1wY3Y0ccIyn25DLXEqs-zQhDdK5FtKfxg','Was seen VERY quickly, was tested, x-rayed, diagnosed in the blink of an eye, treated in the facility, prescribed medications, and out the door in an hour. Everyone from Ms Watkins at the desk, Mr. Brown in radiology, Nurse Garriel, and Dr. Evans were ALL GREAT. Was so impressed by the cleanliness of the facility and attention to detail by the staff that I immediately sent my sick son, who received the same awesome service. I would highly recommend them to anyone.','2018-02-13 18:54:31.027000','2018-02-13 18:54:31.027000',5,'Adran Tyler','https://lh3.googleusercontent.com/-1CdvjHWFfR8/AAAAAAAAAAI/AAAAAAAAAAA/9sq8xPsd9vc/c-rp-mo-br100/photo.jpg','8918455867446117794',9289),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIsFktKIuv2Gf5RDQkBYeDok0z7EKlMvr3bdh0wd2c_atawAajhCa_Z9LZJT_BGzT6rSuEjdzfqKmmWHGc7g_lJNlOn0','I took my partner here for a severe migraine, and everyone was extremely helpful. He was seen within 10 minutes and treated fast. Hospitality was great and the place was clean. The team was also courteous and respectful of our wishes. We worked with Billy Millen, who was the MD, Hamza who is the RN, Eve, the radiologist, Olivia, the technician, and Stephanie, the registrar.\n\nI would definitely recommend this place for anyone who needs immediate attention when the wait at the hospital is too long.','2018-12-01 14:45:03.831000','2018-12-01 14:45:03.831000',5,'Jaren Cooper','https://lh4.googleusercontent.com/-lzIW4OSZB5I/AAAAAAAAAAI/AAAAAAAAAAA/EPfq5U1DG-U/c-rp-mo-br100/photo.jpg','3511292162159714121',7552),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnisLh0DGUYp15qYERIQIKJ0LksznDbOwSRMH4sxEvYwTo2uiRnRVhk0fH1RI73_irKTDmpneIGAQp9hcjZoT4IGZrRlE','amy, sala, brian and Dr. Lim were great','2020-08-03 16:17:50.391000','2020-08-03 16:17:50.391000',5,'Nicole Robbins','https://lh6.googleusercontent.com/-J1c1yrTUZ1M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm_Lq8PzUX3RbCklNaRYXow5aV5Hg/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22139),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIUFwRPzV1WZI6G1KNyXa5eBGKOZxjZbAtaFv3wdqq5_qacSHP0NL6VN48ZwHUqusexjTPx3-wD2BZOqJdChfuHC5x5s','great, professional, prompt and friendly!','2016-09-20 01:12:43.095000','2016-09-20 01:12:43.095000',5,'Michael Noyes','https://lh3.googleusercontent.com/-LLQiuy96fY0/AAAAAAAAAAI/AAAAAAAAAAA/LY6WJFwmWyA/c-rp-mo-br100/photo.jpg','3511292162159714121',7939),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnIuIVc5OfkX5tqierb1XyIhKpjjyWmsUdVBRz9EaSJeayg8_4SMGqNHwQG2DrZMbQoTXYqzZuypk6kVcoIXL2FsNtUSA','Ashley. B Ashley. K and Erica thank you so much you guys answered all my questions and we\'re very polite and helpful didn\'t know what to expect I\'m new to the state and I had a good experience I appreciate it keep up the hard work','2019-06-13 15:28:53.967000','2019-06-13 15:28:53.967000',5,'Daniel Vargas','https://lh5.googleusercontent.com/-Tq3AsC0WUkw/AAAAAAAAAAI/AAAAAAAAAAA/DdV0O1xfFdE/c-rp-mo-br100/photo.jpg','8626688543755174284',8451),('AIe9_BFmRFRFwJGRfUDOW8jG3rXniWNUgACeTUz8vGpoMUiCtvNUmLr-PzNexxrzXEwUJF2TR12s8igbSOFgFmB2Y-3lTcaiM4yjxWawaV0iwPFwpIVLQdE','Great service. Very fast!','2019-12-05 05:09:05.478000','2019-12-05 05:09:05.478000',5,'Edith Martinez','https://lh3.googleusercontent.com/-mvrnNbNjH74/AAAAAAAAAAI/AAAAAAAAAAA/BR3DTOzOuIw/c-rp-mo-br100/photo.jpg','16389487648212004696',2577),('AIe9_BFmRFRFwJGRfUDOW8jG3rXniyR8n8j5yAYKYslk8edJlFHsiqFyu_aytj6RvBjMkZSzdx3h2IegJSEAx-A-DoGAee3CcyenFDNMoCSCqgkhM_TQAuI','Simply wonderful. Super clean, super efficient, super accommodating.','2017-12-19 13:41:44.471000','2017-12-19 13:41:44.471000',5,'Bebe Russell','https://lh5.googleusercontent.com/-YOFl0T3eBDU/AAAAAAAAAAI/AAAAAAAAAAA/HX3gpa3gASo/c-rp-mo-br100/photo.jpg','14567670160750071148',1710),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnj09S3xKi8wUUuH1g6VPL-E97gdWWbzeBu4gcEbZI-zhvlkguhYP_0-qWugaC7XRyb-t_0sxs0AZBlERddIphWZQMThk','This location was GREAT from beginning to the end. They called me to the back within 5 mins and from there everything was quick with no long wait. My nurse name was Troy and he was awesome but everyone was very nice. I would recommend this location to anyone.','2018-03-03 04:40:06.748000','2018-03-03 04:40:06.748000',5,'Laketha Steward','https://lh4.googleusercontent.com/-FpAzIHutYhA/AAAAAAAAAAI/AAAAAAAAAAA/HlBiLGFDoQI/c-rp-mo-br100/photo.jpg','8918455867446117794',9282),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnJ1HAX6Ah9MCq-LMaEZ0m14PmFJKsizGMYnLtxLctht_2_upZHTG9AmODmq_q_S2DEaNNt0MUm6dYjFmqEANDJpDlWYs','Very professional and accommodating. \nTook 5 minutes to sign in and another 3 to be called back. The nurse was great, did all of the preliminary work and 3 minutes the doctor was in doing his think. After some diagnosis, some shots were given and discharge paperwork was completed. In and out in about 45 minutes with the wait after the shot to gage any reaction. \nI would definitely use them again.','2018-06-04 22:57:48.746000','2018-06-04 22:57:48.746000',5,'John Centner','https://lh6.googleusercontent.com/-kvjZa6t_rns/AAAAAAAAAAI/AAAAAAAAAAA/lFFJqoJCUaw/c-rp-mo-br100/photo.jpg','3511292162159714121',7701),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnj5dBNnwv7OwgMgkTBINfFwuhFczRJkbkzHX_UMgdoz-Uax4GIKX90MuWTHD12E781TJULbvJu4gIYmL_dMIkEk2dEuI','Went to get tested for COVID-19 at around midnight, once I was in the building I was pleasantly surprised by the professionalism and positive energy from the entire staff. From the moment I walked in to getting tested everyone was so kind. Thank you to all the staff, including Nurse Jennifer, for being so energetic and positive in such trying times.','2020-07-12 23:13:14.940000','2020-07-12 23:13:14.940000',5,'Jennifer Orellana','https://lh6.googleusercontent.com/-2HwM1WtnUiI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmGSIwPAlr6QYQImWaPdAEI5egAiw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21808),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnj7GpzBoKhE9fAqBT92RylLj1ufPYvCVnB7YFFppb4gH8UmqmNYbG2mRXhkEVVQe6GNCM5C1Eve8N9fSXaLv0zytgVQw','Dr. Hall, Alvean, Tricia and Jesus were all very courteous, kind, explanatory, detailed and friendly. Would highly recommend using this location!','2019-08-09 18:04:56.194000','2019-08-09 18:04:56.194000',5,'Marlo Lubbers','https://lh6.googleusercontent.com/-npmWMmXw_GU/AAAAAAAAAAI/AAAAAAAAAAA/H3vAFfgVP7o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnj8Eb76Wu5RhDCoe2oBjA3Fd8C7OMu5IluMPZye6oYAkCa8CxRTwPHvN0UB-fElAsMrL-e3anD-yefKbq9HXJcfRIrck',NULL,'2020-06-25 00:47:39.953000','2020-06-25 00:47:39.953000',5,'Adrian Ibarra','https://lh5.googleusercontent.com/-Yic2M9DblWc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckj8iMCghlvo5seWiTy22EGBNv6eQ/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21280),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnjFlXukkTbyBdPKa3CGD2_jWxnzOgxDO4ceFz6M18_XwjPC-kEPAPC1vxlaPPlA5CtwH5e_vaU5ylTy5snIW7uhKOlMM','I visited SignatureCare Emergency Center in Stafford last month and I can\'t give them enough praise for everything they did for me and how they made me feel. There was no wait, I was seen immediately when I walked in. Everyone there was so helpful and nice, very easy to talk with and so attentive. I am so grateful they were there when I needed them. They made me feel very safe and comfortable. Their customer service is wonderful. This is definitely a place to go when you are in an emergency and want to know you are in good hands.','2019-02-14 03:50:34.815000','2019-02-14 03:50:34.815000',5,'Kristen Matlock','https://lh6.googleusercontent.com/-q5gAZxwfvIo/AAAAAAAAAAI/AAAAAAAAAAA/UptdV88ahaw/c-rp-mo-br100/photo.jpg','8918455867446117794',9180),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnjFoBUpNSQTlkrcAoYI74_9hZfO42zfINcqxKSuAyJjGw3QVeSpVDG0T1N11xL87dCsnl29WFl2AJV-i5sJkmC7W8--U','We received prompt and personable care from Alvean, Tricia, and Dr. Harjai. They provided complete instructions for followup care for our personal doctor.','2019-05-25 13:35:55.299000','2019-05-25 13:35:55.299000',5,'Angela Allen','https://lh6.googleusercontent.com/-Vo3so6spgjk/AAAAAAAAAAI/AAAAAAAAAAA/lV8jr5GJ0xc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnjgimbDKdFN4tXdNCP18dWv6-5MwIEjePGTHpQghM8a9vAkYyWqQv50Xjbd7ZMZ-63cdKumJFlQEaizHLP6wN6YfssOU','The reg. Dyueliz was amazing and I had quick assistants. The tech. Morgan was very help full my experience was great and very likely to return.','2017-09-16 20:23:43.894000','2017-09-16 20:23:43.894000',5,'Kyle Regalado','https://lh3.googleusercontent.com/-Zix7B56zwJw/AAAAAAAAAAI/AAAAAAAAAAA/_FHRvnmA4xI/c-rp-mo-br100/photo.jpg','16590124370714063921',3931),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnjM8yw7CCOND-8rWjqjsl6SMGmgymMpC2DcX1QvmZwSA6K2uHIPxNcW4pA5G-L7xrf8Xysalb3-ORAXLbo3_vv7c7-nA','I took my grandbaby today 4/30/19 to get seen and right away was greated by Airianna with her beautiful smile 😊😊😊 she checked us in right away and provided us a gown since my grandbaby decided to vomit on the way 🤮🤢🤮🤢 we were quickly taken to the back to see what is wrong with my grandbaby and the result came back with the flu ☹😷☹😷 the doctor was very patient with my little one and answered my questions and made sure my grandbaby was able to tolerate fluids before we left..... Thank You Signature Care for providing the best care for my grandbaby 🤗🤗🤗','2019-05-01 00:50:23.971000','2019-05-01 00:50:23.971000',5,'Rita Aguillon','https://lh3.googleusercontent.com/-GRPCAmvhtcM/AAAAAAAAAAI/AAAAAAAAAAA/NbClzNFVm08/c-rp-mo-br100/photo.jpg','17898197009688164559',5756),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnjn2L6CoROxng86-z_K2-3HL6NBbhwacM4aKqQhozuYa0Ddthf5zLVO5ekLTkVr8DMFlJyAXmqvXC92Nu1LKTvL3zhIc','DO NOT COME HERE FOR A COVID-19 TEST! I showed up to bring my fiancé here who has been having mild cold symptoms at 7:30 AM this morning because they said their rapid tests are first come first serve starting at 7AM and they only distribute 100 per day. This has been an unorganized disaster. There was a line around the building when we arrived, they gave us paperwork and we waited, with very little instruction. 2 hours later they came out with a clipboard that they asked everyone to write their info on so they could call us to come back. They passed this clipboard straight down the line and everyone was forced to share the same clipboard and pen. Real smart in a COVID testing line.... then a large group of us left. They called us 4 hours later and when we arrived (literally moments after they called), we realized they had completely disregarded the order of the list and put us at the back of the line. In the meantime, they had already seen all of the people that had been behind us. The group of people who had originally been put on the phony wait list had to wait in line all over again. We waited outside for an additional 2 hours only to be pulled into a lobby of about 20 people with little to no social distancing. The blatant disregard for patient safety and time is unbelievable.','2020-06-14 19:29:11.413000','2020-06-14 19:29:11.413000',1,'Austin Horst','https://lh3.googleusercontent.com/-qo6rbO7nMHI/AAAAAAAAAAI/AAAAAAAAAAA/pjePNSv-fvs/c-rp-mo-br100/photo.jpg','3511292162159714121',22874),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnJP4dzf-cB9V4scLf0_iekLYhy0f1z268CfmLnLVnuHpy9wEv29TmLK5v-e6PDWa6H3onZOIkZ8_gCHSbarzYIYqADcw','Staff was friendly, nurse and Dr who assisted me went above and beyond. Also they have great snacks and drinks','2019-05-08 16:20:58.685000','2019-05-08 16:20:58.685000',5,'Marlon Briones','https://lh3.googleusercontent.com/-D6hLmxhO7YY/AAAAAAAAAAI/AAAAAAAAAAA/qSMAhjTz4Nw/c-rp-mo-br100/photo.jpg','14567670160750071148',1325),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnJPc7akelDCkusCDtqS8DwiPr1xkXx7J2t-7_TAcR0T0WGH4TugrIUg5rB01yCExZULD4M9-VotzubmN2YjIZhrYoIao','Great people, great environment, and very professional. They exceeded my expectation, just left me with a heart warming experience ✅','2019-01-10 19:41:24.744000','2019-01-10 19:41:24.744000',5,'Lillian Ubani','https://lh6.googleusercontent.com/-Ijuqtm0vjAs/AAAAAAAAAAI/AAAAAAAAAAA/I79PfwUC4v0/c-rp-mo-br100/photo.jpg','17394740196501090048',4746),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnjVxL5EE_BgfA1CHNyFjbLXGbiH4wZPja1kZnzapjqGz_4M1T5kdAfuARr3sya3KWmhkMvSO7biOuP8lCHldfTvrOcyc','My nurse was Jessie he was very informed On my issue and helped in every way possible and the front Amy was very quick with getting me checked in . My Dr was Grinblatas he was superrrre sweet , explained everything step by step made sure I understand and gave me background information . \nGreat experience .','2019-03-23 15:13:11.091000','2019-03-23 15:13:11.091000',5,'ebony russell','https://lh5.googleusercontent.com/-3xY71fUhZds/AAAAAAAAAAI/AAAAAAAAAAA/VaxCzMjbYKs/c-rp-mo-br100/photo.jpg','17394740196501090048',4703),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnJwn_CMQfSlDzun8RcHT-LJHu8jLl-cNeT0Iym6qmL8TuVY58S0pIChrxKJ_NY2coqujwl9X0auGHfKtpPcj6b3UiDV4','I was immediately put at ease when I walked in the facility. The staff was very knowledgeable and comforting. Every staff member listened to my concerns and addressed them all. Really great service. ','2016-12-21 04:00:18.159000','2016-12-21 04:00:18.159000',5,'Yeda Ramirez','https://lh5.googleusercontent.com/-x7tkS9d-GJk/AAAAAAAAAAI/AAAAAAAAAAA/iAvsT2Fz9X8/c-rp-mo-br100/photo.jpg','14567670160750071148',1931),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnjYD3Z6bBOQi6ZCNiL49iIGC29UzWfe1sblAvaxvrocxcC4PvJaR6D7OI5uIdQnJm2Fbil8GZSARzIL0HDk-AI5mDSvc','Great place , Callli, & Dorie Took care me !!!','2020-05-31 03:26:40.730000','2020-05-31 03:26:40.730000',5,'Diamond Yates','https://lh4.googleusercontent.com/-BFri6rQAAuw/AAAAAAAAAAI/AAAAAAAAAAA/JvXnaSmwX1k/c-rp-mo-br100/photo.jpg','2694018788013845459',21460),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnk-mPJv2jx3ttv2YFJ0HF4Vzut-pYp5Yq-w4nPSZ-0neYQJ44JA1pNcye4ik3WXzDEKD48-wA3Ks98umxeaIN91zXgxE','Dalia and Alyssa are very friendly people very nice,great place.','2020-07-23 22:38:53.244000','2020-07-23 22:38:53.244000',5,'Shanon Williams','https://lh6.googleusercontent.com/-LW-NcIR5Vx8/AAAAAAAAAAI/AAAAAAAAAAA/vjGG-qcPFVM/c-rp-mo-br100/photo.jpg','8918455867446117794',22295),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnK1LzMYEd2BeTURzv3ENBFXxrTkKpImeRPTdzHC4MnmO-ODlf92FbZh3qsne0PgM8PRfCU5UTQ-cjlJUiTjFaolrhiqA','Cleanest, friendliest, ER center... EVER! Coffee, snacks, bottled water, AND A PHONE CHARGING STATION. Thanks for taking great care of my friend! ❤️','2019-03-27 15:08:30.983000','2019-03-27 15:08:30.983000',5,'Taylor Conley','https://lh3.googleusercontent.com/-Zof74xtiBI8/AAAAAAAAAAI/AAAAAAAAAAA/0RsYatYfy2o/c-rp-mo-br100/photo.jpg','16891069708558046635',4312),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnK2Qux3do-NkJcnAyfBWOfek5uTz7boPXs7j1JxWGEp-tUnuadSjHS80sBUfM8iS5YlyeuA1lMl0jlHlRr-Hzw9ICW-A','I had a good time there at Bellaire Ms Karen, Delicia, Cedric and Dr Mauldin were very helpful 👍🏿👍🏿❤️','2020-02-27 22:39:07.740000','2020-02-27 22:39:07.740000',5,'Lewis Ba','https://lh6.googleusercontent.com/-XTi3zLwcJu0/AAAAAAAAAAI/AAAAAAAAAAA/bubXa5Cq7iM/c-rp-mo-br100/photo.jpg','8679688254631342173',14720),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnK3QUPHHqUSrf42qdhLZjBVzJTxWwfIwrMoDGklc0Rd3OSWCp997xJWltV8dmqjQRiUY08tfbODZpG2aT3VBuOXy_lMg','I found this location by doing a search after waking up with my entire right side numb and swollen. This location was extremely welcoming and the staff so inviting. I couldn\'t believe how nice everyone was that I came in contact with. I\'ve been to other ER Centers, but this by far is the best!! They took amazing care of me and I even received a follow up call the next day to see how I was feeling. I would definitely recommend this location to anyone should they ever need emergency care.','2017-01-03 07:27:42.753000','2017-01-03 07:27:42.753000',5,'Raenada Mason','https://lh3.googleusercontent.com/--DNwt-PHJAA/AAAAAAAAAAI/AAAAAAAAAAA/lw_3QIX5HuU/c-rp-mo-br100/photo.jpg','17394740196501090048',5138),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnk4Sw8XdCR5W-U4-ZofUOuLQdYEhzZA9iCC-TXutev1pnIFnF2rlow6nm-bb7U9ny4NqXBpCoO6Hucphq1FDqDnAuqnI',NULL,'2019-10-13 20:16:31.196000','2019-10-13 20:16:31.196000',5,'Mary Pesina','https://lh3.googleusercontent.com/-6F1S3KHQgvw/AAAAAAAAAAI/AAAAAAAAAAA/zvFxoAGnoj0/c-rp-mo-br100/photo.jpg','6521947413723274945',8120),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnkBoGqB3bfWTCwfRzupG7VPMVRIKChBrYyWXj_qI7clEGtDszjqlE2BsP7mg-GdKkMMprTEwlMB3hh1MxsCtUzbe1nzs','Great staff, clean environment, and good timely service! I will return!','2019-02-06 01:44:11.156000','2019-02-06 01:44:11.156000',5,'Sawaya Washington','https://lh3.googleusercontent.com/-Uyn1R4AmYV8/AAAAAAAAAAI/AAAAAAAAAAA/-7mwR5CEZUI/c-rp-mo-br100/photo.jpg','3272657195432704501',7025),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnKED_0A8HSw6dk908m5hSYfepNoxq5G8dSJXN6ShGcBA43hbd-elnQ60G7zOB9Hg6hQAvXQmMd7Gyj_IFJiOKW-laapM','The staff were very friendly, reassuring, and informative. We felt super comfortable while visiting this facility!','2020-03-14 06:08:44.320000','2020-03-14 06:08:44.320000',5,'Miranda Nauman','https://lh6.googleusercontent.com/-Mlxelkq9Olw/AAAAAAAAAAI/AAAAAAAAAAA/Mxp-Hk4TcJw/c-rp-mo-br100/photo.jpg','14748677429039074158',20977),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnkewRZ5F3eM7Z5HgULKlyLs9t2-P0CANZPnhAnKYGhYQrIyHuag1qm7Ljn3BgQPEVWcqwXeLZ-CglleL9e01xpLWXy-M','I recieved excellent care here! From the time I walked in, Carly at the front desk was so sweet and helpful and got me to the back before I could finish the paperwork. Dr. Lindsay and his team were wonderful. Sarra was my nurse and she listened to everything I had to say and asked all the right questions. Thelma was gentle starting my IV and held great conversation to distract me. Sherwin was quick and accurate while taking x-rays which I really appreciated. I will definitely come back if ever needed.','2019-12-20 05:18:35.152000','2019-12-20 05:18:35.152000',5,'Chrissy Bishop','https://lh3.googleusercontent.com/-bwEcdmMJPp4/AAAAAAAAAAI/AAAAAAAAAAA/uPABjVxNITI/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',329),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnkfFprIBNMpIhfGudBShNRhkpudDg_sedqs5fmSlgxCJCiZmbMqxpqx1kXkmwbE1yByOAiOTxxK-1msnlzO_fPPzxRCI','Everyone on this establishment did an excellent job! Will definitely recommend it!','2019-06-04 14:39:31.018000','2019-06-04 14:39:31.018000',5,'Norali Osuna','https://lh5.googleusercontent.com/-pQqMBH_ktQc/AAAAAAAAAAI/AAAAAAAAAAA/ENNAxy7O5cU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnkOlcBkVuQl1ys9gFtzPLo4hZRFFD42Ycu5M9pd4h64KyUfzHsJXqcS1JydaLd54zhPTuLQSgOXWJHyyxHPsn9pQLsWg','Wonderful experience! Kind, helpful and SUPER fast!!! Thank you so much. My daughter felt very comfortable and well taken care of! Would absolutely go back!','2018-04-09 20:48:49.223000','2018-04-09 20:48:49.223000',5,'c r mcmillan','https://lh3.googleusercontent.com/-RqRzzmJ6HAE/AAAAAAAAAAI/AAAAAAAAAAA/aoVMDzaMWzk/c-rp-mo-br100/photo.jpg','14904078213800803294',2265),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnKoUD8pA8-YpSQfJzT6A2F--UpwTwCXVbsMb9WkHT3hhRJPKUAhEG-uaa5fB9qcmN1iMFeMPnh_1b7IdNAqPe0sD3Ws8','Nurse: Rachel B. was informative on explaining test results and caring treatments. Doctor: Esteves explained diagnosis of medical conditions. Thank you for excellent service.','2020-03-01 18:40:06.545000','2020-03-01 18:40:06.545000',5,'Terelyn Bair','https://lh3.googleusercontent.com/-VEaD3oQlngk/AAAAAAAAAAI/AAAAAAAAAAA/rPwSs7bRO1g/c-rp-mo-br100/photo.jpg','17898197009688164559',14120),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnkp4-REJhY4dVYypomoem3iIJAtDgewCE-nztmovKVl3fSS_kKjZ5eNSMhH5sjaqRm9I0HWpY2rG1re7jmmHlOpnas2s','Wife had an emergency and did not want to go to the ER. Long story short, the staff here is amazing. Very friendly, talkative and always concerned for the well being of my wife. She even got snacks for getting shots. Nurse was very friendly and funny. The doctor was very friendly and made conversation. Will Definitely come here again if we had to. (Hope we don\'t have to, just saying).','2020-03-15 04:39:17.017000','2020-03-15 04:39:17.017000',5,'G V','https://lh3.googleusercontent.com/-OhDBsvUhRh8/AAAAAAAAAAI/AAAAAAAAAAA/-0GYJUJOyWo/c-rp-mo-br100/photo.jpg','14748677429039074158',20972),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnl-M5oBQMJhWnsus64jM05ohI23-BAFWC7f0cYaW6Zw7-xC8jCxY9tcn1kpZ5AqP3m9X8j3M-yCPBj4JOdqJPsnPo07g','Funny and friendly staff. Jones, Kat, and Frank were very caring and took care of my cousin.','2019-07-04 07:40:05.801000','2019-07-04 05:37:26.274000',5,'Meester','https://lh6.googleusercontent.com/-jEL9iBC6Mb0/AAAAAAAAAAI/AAAAAAAAAAA/h3bQIs9BJxA/c-rp-mo-br100/photo.jpg','2694018788013845459',6116),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnl74Vw_sl2r05tXGH8AbKiXgwQPwk3r5wm5qMGT7Ij6sXcCOt7PJGQemQIXgny1SQ_qPks97b5knwgvQIQbTjVgmIXls','Would definitely recommend this facility to anyone looking for emergency care. I came in on a Sinday evening and was seen within 10 mins. The staff was amazing. They made me feel comfortable and had great bedside manor. I stayed overnight and was checked on throughout my stay. Thank you to everyone at SignatureCare for all your help!','2018-05-05 02:08:16.558000','2018-05-05 02:08:16.558000',5,'K M','https://lh5.googleusercontent.com/-PUjyaUBK-do/AAAAAAAAAAI/AAAAAAAAAAA/Zv1lJGi5JTc/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4853),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnLF2yLKUSrM4OzPMifThyO_1CLP1qFYlFYNn5bs23IUB_5_DbaCVAefIeIfQxl6pscbojvoEdCwbxxnR-2lE2yH2r5z0','Went with my Granny early in AM ,, and everyone was so friendly,, fast service alsoThanks 😊','2019-11-01 12:46:52.784000','2019-11-01 12:46:52.784000',5,'Vanessa Williams','https://lh6.googleusercontent.com/-fk3vOOl41ZI/AAAAAAAAAAI/AAAAAAAAAAA/2_TF1h5pRcY/c-rp-mo-br100/photo.jpg','16389487648212004696',2742),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnLLN2YcwvjtZ-25ORHJo-XTbJReE7SsV8eVjrDqxqvTlUYZ31fUqsHDGUPjPcV6CcTAAIUeaTWNlF6LeKWLgzBZAI9_I','The service was amazing, the only we did not like was the fact that they did not give us the doctor\'s note to excuse the absent of my daughter , and we really needed it. They said that they would send the note later, and it was not true','2018-10-08 15:11:17.899000','2018-10-08 15:11:17.899000',4,'Angie Paiuk','https://lh5.googleusercontent.com/-InvwKFcNmHk/AAAAAAAAAAI/AAAAAAAAAAA/dyUuC6CXdfE/c-rp-mo-br100/photo.jpg','14904078213800803294',2209),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnLmfqd8Bq3QqazHEX2KOY0zldwugsSG8MOITOWQGF23Kq2tK0efAAtuMvfonhgQzpH3JUDcSqK53CFVU-oVgDZKxw4jo','Kendra was very nice and checked people in in a timley manner!!','2019-12-08 18:04:05.710000','2019-12-08 18:04:05.710000',5,'Savannah Wilkinson','https://lh6.googleusercontent.com/-vnMkglw02OM/AAAAAAAAAAI/AAAAAAAAAAA/yo83n_4kQmw/c-rp-mo-br100/photo.jpg','16590124370714063921',3033),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnLNEPzgzQk_kjqlYof3wMwqmEmw1Cw1SlaDZngzRuLUpljfKkldSQDI6CRgyCf6QaidUKLJ20CJrFMyk9MEvA2tioSaE',NULL,'2017-04-26 13:07:13.615000','2017-04-26 13:07:13.615000',5,'Fauzia Kurjee','https://lh6.googleusercontent.com/-qEr5DQVR294/AAAAAAAAAAI/AAAAAAAAAAA/un022L5jJdY/c-rp-mo-br100/photo.jpg','17394740196501090048',5070),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnlspHMUKb1WXVXcuHi2o0WSYsotcxxa4kS6Da43l8ArCk__4DuE9jni6oaXd6Hwg2iXIRMyPxSoehM32OneuBDH8wY6E','Wow they were fast! I came in with abdominal pain, and they quickly diagnosed me and got me feeling better and helped me understand what was going on. The staff was extremely friendly and I was extremely pleased with everything. 100% recommend coming here!','2019-11-18 16:29:16.200000','2019-11-18 16:29:16.200000',5,'Matthew Priester','https://lh5.googleusercontent.com/-7_VM06ndeLQ/AAAAAAAAAAI/AAAAAAAAAAA/9RNvISi-48w/c-rp-mo-br100/photo.jpg','14904078213800803294',13663),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnlvgNqZEen0a99I7GpSjnI3P6iKN52IhlpCOEVnvgPizHefLPJHqiJTrbHQOWGzc35nskUtNpeg0zcRaYVl73qPe6sHs','Great experience and really nice customer service Dyveliz and Jacob were very nice and knowledgeable. Went in for an easy consultation for free','2017-12-23 15:41:20.900000','2017-12-23 15:41:20.900000',5,'Travis Stahl','https://lh4.googleusercontent.com/-a-32VFNLmwI/AAAAAAAAAAI/AAAAAAAAAAA/pc-Al2AMNyg/c-rp-mo-br100/photo.jpg','16590124370714063921',3892),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnLVUjRMUKQXBdmgwZFaLgqjg__Fkk7CVqjeDu8oOe5JNbOeope6Z-yQq0soJuPR7xFVJJIdS8RW2gruBl3KUeRy8Yxq0','Excellent experience from start to finish','2017-10-07 10:57:38.983000','2017-10-07 10:57:38.983000',5,'Damond Peoples','https://lh3.googleusercontent.com/-UMZrpHFwnEw/AAAAAAAAAAI/AAAAAAAAAAA/e1-bdOU3xOM/c-rp-mo-br100/photo.jpg','14567670160750071148',1750),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnlxS3vrnty6ik9yUQa19pfqgLiBDwczzaZdUT3Krn6CGqybzTqIRgJ_UU3JUjhQy6TSzAio4IYfeCakjCHwQis9j6B5A','Alvean, Patricia and Thuy were very polite and professional effective','2020-02-23 20:00:34.785000','2020-02-23 20:00:34.785000',4,'Cesar Rendon','https://lh6.googleusercontent.com/-OFOKKAXVhVs/AAAAAAAAAAI/AAAAAAAAAAA/w3wPcR-VUAQ/c-rp-mo-br100/photo.jpg','16389487648212004696',13770),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnM8rAnnlxZO2UtNS5gKi2wNyFqWcG4VtgWJuRIEISMu0vVfMwNQAWzBI1d8q6syIGozed-uFPdL45UkQsG1zGtj62pHc','I was met with fast and friendly service. I came into this facility in a lot of pain and they made sure I was comfortable right away. Dr. Ybarra made sure I was properly tested to get an accurate diagnosis and my Nurse Blake took great care of me. Delicia and Son LE were very informative which eased my anxiety. I would definitely recommend this facility to everyone!','2019-11-15 22:37:38.957000','2019-11-15 22:37:38.957000',5,'Cheri Lane','https://lh4.googleusercontent.com/-PCKeXLatJt4/AAAAAAAAAAI/AAAAAAAAAAA/x43DdlMkihE/c-rp-mo-br100/photo.jpg','8679688254631342173',8731),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnM9pXurRLnt82N2LdeBgFrzCZh57G3FWYT8UhR7HAviubanT7d516sx9We2vVd8OF6tLDd6mqIVu9-qll2P-nd0itAXQ','Very professional with a amazing attitude. They make their patients feel very comfortable. Dr. Nweze. Nurse Alvean A..Radiology Tricia B and Registration Jocelyn A..Thanks you guys for all that you do. Y\'all make an awesome team','2019-10-16 15:47:03.321000','2019-10-16 15:47:03.321000',5,'Diamond kl','https://lh5.googleusercontent.com/-_w_XkfkvPLQ/AAAAAAAAAAI/AAAAAAAAAAA/MMPY3Sosa8Y/c-rp-mo-br100/photo.jpg','16389487648212004696',2817),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnmbDxOL7su2oYwP0ty_0jAWojuJtr8kOxuBJKbnLSFGienA52JfzDFvGUNemSz3FY8TDR07NavOU62h_fxStBX6_nYp0','Terrible place called the number posted for Covid testing but apparently it’s a call center that doesn’t know what is going on at the given location. They say you can drive up but apparently you can’t. The left hand doesn’t know what the right hand is doing. Tried to make an appointment inside for testing but you can only do it online. So if you are elderly and don’t know much about technology you are screwed because they can’t tell you if they available to help. So thank you for nothing.','2020-07-10 22:40:06.756000','2020-07-10 22:40:06.756000',1,'Daniel Gutierrez','https://lh6.googleusercontent.com/-dvBBKShdOsc/AAAAAAAAAAI/AAAAAAAAAAA/X1GyyszSFnI/c-rp-mo-br100/photo.jpg','8918455867446117794',21593),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnMdDdLg_vziSmpB1qjkTIxcSeHZqsepKOgLy-GuEicdskXzcZ19jStl9pZh-K8JCTSr4-ox1rjeHGSE9S6g-fy39qt4k',NULL,'2018-08-30 05:28:59.299000','2018-08-30 05:28:59.299000',5,'Audrey Pruneda','https://lh4.googleusercontent.com/-g9rNOHqJfUo/AAAAAAAAAAI/AAAAAAAAAAA/azpGXq5EVYw/c-rp-mo-br100/photo.jpg','14567670160750071148',1542),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnMDWu8LmwI2Xfe_I7s9-6e4Iga56Ldf2dKHXCY8HDQvv7oOxgVpLRuvliaJEUgZTNRzHcRqvHdJ4lms4GbTjW7aBYFso','Peaceful environment, and the entire staff was friendly','2019-11-20 18:50:21.926000','2019-11-20 18:50:21.926000',5,'Rayquan Jones','https://lh4.googleusercontent.com/-xt59Jx9VDU0/AAAAAAAAAAI/AAAAAAAAAAA/98C6ynGCX_U/c-rp-mo-br100/photo.jpg','16389487648212004696',2649),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnMgkg-mTXDhPhPNSX37dU5li8fzkmR2WxpInJio8E6moenh7AtfybBm4NUzirhNnOTtr05EA4g8E9VZBNZDmCtjgxtAs','Way better than any other hospital emergency room super fast care and amazing staff I wish I could give them 10 stars I know if any of my children should have a emergency this is the place I will take them I was taken care of very well !','2017-12-01 11:20:43.397000','2017-12-01 11:20:43.397000',5,'Joe Ruiz','https://lh5.googleusercontent.com/-FowhsrY-yAg/AAAAAAAAAAI/AAAAAAAAAAA/hUqq1qWNf-I/c-rp-mo-br100/photo.jpg','14904078213800803294',2305),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnmiRCnDQLE2ymyg-F39FFwnLnXfp_sQoI8vd5gT8AflxZdP5QlfSikCMtktPgb3VzEhkMfAiQP9_KVmCmbqtcJcu_hzc','Katrina was very nice and helpful','2019-12-24 06:23:11.024000','2019-12-24 06:23:11.024000',5,'Kahryn Matt','https://lh5.googleusercontent.com/-v-wuGYFAUL0/AAAAAAAAAAI/AAAAAAAAAAA/ANFRiM2XNUY/c-rp-mo-br100/photo.jpg','8679688254631342173',8676),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnMlMGPxEIwm8CbdiJpI8PwzeD2cm3So6cwv_tMHV_IqH0K620zpD6KkH2iuNixzBc_fOvrMrJrnO7LkaKHMYZtRJJejg','Alvean, Marcus, and Jordan are awesome.','2020-01-07 22:38:32.078000','2020-01-07 22:38:32.078000',5,'cassiedouglas12','https://lh5.googleusercontent.com/-1N__0q6MQ6Q/AAAAAAAAAAI/AAAAAAAAAAA/9lb7o-ZWsPk/c-rp-mo-br100/photo.jpg','16389487648212004696',9426),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnMn0GslEh-trsOMUr9zZXujPpF6Nc0UYyvv36UJT2ZbgehZ7kLPfwfeFxutZzza7KueE7eL97NQffO9QX_SoEkd7n7EE','Great experience quick service! No wait time. Staff extremely helpful. Nurse Karen and register delicia were very helpful and sympathetic towards my situation. Same with Dr yabba and tech Sonle','2019-11-04 23:06:09.019000','2019-11-04 23:06:09.019000',5,'Jodi Liane','https://lh3.googleusercontent.com/-AYXYRBTxBPc/AAAAAAAAAAI/AAAAAAAAAAA/3_tXIuckTIQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8748),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnmQLqN4nO-Bkw9JYSLYNUf3V-n3YFknHMhEPJm0bhdfJ33EqBpwN2Gn2OGcx1kBUJfIAmWZeT6-zOkSHSAlGOsVE6w2E','I came into SignatureCare where I was greeted by a friendly receptionist. She was fast and there was absolutely no wait time! After being brought to the back, two nurses began assessing me very quickly. Both were attentive and kind, even offering me a heated blanket. The doctor took his time hearing out my concerns and was very clear about the plan of action. After being told I\'d have a CT, I got a bit nervous but the sweet radiology tech did a great job of calming my nerves. Over all, everyone was fantastic. I would highly recommend this ER. Thank you to the Montrose team: Dee, Gina, Churiah, Eve and Dr. Singla!!','2019-05-22 21:04:41.781000','2019-05-22 21:04:41.781000',5,'Norma Trevino','https://lh3.googleusercontent.com/-Bpe8I80ZB4A/AAAAAAAAAAI/AAAAAAAAAAA/hwboe1seKZU/c-rp-mo-br100/photo.jpg','3511292162159714121',7319),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnMTQpKiZiU8zWuD3J55aRE9H7epzZQdlSYK-FeVrBIl9qVhLle6kGF-ubtaynwNNh0Oxh8mhkB7-mrv0l5Q4iqjpnGU0',NULL,'2019-12-13 03:43:27.038000','2019-12-13 03:43:27.038000',5,'Chadlee Lester','https://lh3.googleusercontent.com/--DGB0TFy8DU/AAAAAAAAAAI/AAAAAAAAAAA/5gUJxShpd4A/c-rp-mo-br100/photo.jpg','8626688543755174284',14653),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnmulAP5OoZukKdK8JDDaYipbIEV7gmnF5q3LZC_fs8WE2t-Swv7lHUkppF2qlZ17TQUNgmV1RoZjF12ospwPLNXtqhbE',NULL,'2019-09-01 02:56:00.531000','2019-09-01 02:56:00.531000',4,'Cosme Silva','https://lh3.googleusercontent.com/-MfFQUC9Ybio/AAAAAAAAAAI/AAAAAAAAAAA/14pO7icswKw/c-rp-mo-br100/photo.jpg','8679688254631342173',8813),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnMwfnU6ox7lc5nAwjM7Opy8aW58XGWxwCvqyVXM8gcUZVRUb5P6lBxAAJkHpCfo8MZ_EXWXxp6aOp_qpu5JKy07jZd6M','(Translated by Google) Wild MD, Laura and Amy excellent service\n\n(Original)\nSilvestre MD, Laura and Amy excelente servicio','2019-04-13 21:49:11.474000','2019-04-13 21:49:11.474000',5,'Fernando Yakowsy Rojas Pineda','https://lh5.googleusercontent.com/-vvBZpujWwVI/AAAAAAAAAAI/AAAAAAAAAAA/lxFakHmvqqA/c-rp-mo-br100/photo.jpg','3511292162159714121',7365),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnmWwej_NYiu4iBHh3LaT667namFy2UkcaEPuzEPlb33NpAAR3v73jfMfg0tirak_2lYp5xDVq-_ELf4fJzqW4P9szdu8','Everyone was very kind and knowledgeable. The facilities were incredibly clean. We were seen very quickly.','2020-01-09 21:13:47.545000','2020-01-09 21:13:47.545000',5,'Christy Ta','https://lh4.googleusercontent.com/-LHTm3T2NT3U/AAAAAAAAAAI/AAAAAAAAAAA/6zLtqr-4WUQ/c-rp-mo-br100/photo.jpg','12541597562633926366',9462),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnn_IfsHw2RiYhfbW3kmbFIH897YLtVdteSO0OWkDOnqyjE4sPhapgGzkHscPu4qyh0qq0wdaJwgn-d7c319hGG6M0fY8',NULL,'2020-06-10 21:57:29.722000','2020-06-10 21:57:29.722000',5,'Jessica Stanford','https://lh3.googleusercontent.com/-vs4WVww_5yQ/AAAAAAAAAAI/AAAAAAAAAAA/vXERwwi4Ca8/c-rp-mo-br100/photo.jpg','16891069708558046635',22684),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnn-6ritcjDoCrZ1GnR6Hkf0Q1G_Q1CGHZIhiKXhxdnCF9JWehY-RoHfAozLxqKNcmnt0OrsXSReMaJe8PcfyKWeBkUL4',NULL,'2020-07-09 01:41:00.857000','2020-07-09 01:41:00.857000',5,'Demi Williams','https://lh3.googleusercontent.com/-VwXtTJHD0sw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclMqV19urOat1tZ4Qc_hfscEt3Bhw/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21402),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnN-s-jFPci846b8AUTdK7Fq_EpIh-2XrSPX6JwjP8MJ6NU7fQEAKmvZNe-8Aqb6hMvZAaW-dvVJSoEJPh8uTJgbzsAK8','My little man was sick and after my experience here a while back, we decided to bring him here. the doctors were great as always, the front staff is so welcoming and everything is always immaculately clean! I will definitely be back if one of us gets sick again!','2020-01-11 19:28:20.909000','2020-01-11 19:28:20.909000',5,'Kaylee Clyburn','https://lh5.googleusercontent.com/-RvtoKHkoo6M/AAAAAAAAAAI/AAAAAAAAAAA/Ros1C95NMWM/c-rp-mo-br100/photo.jpg','16891069708558046635',9499),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnN5HABPV9D6ZtLYuSC-n1tjikXSz68G5xltGEwHu1Z2MFCtUjBAGrLmXowQL8KtULzQ4IaU5xyAZQqqZpaJzwR38fZRE','I was in pain and had to leave work. When I came to Signature Alief Doctor Golla is incredibly good as usual Also eververyone was excellent.Everyone is caring and you will love it. Cindy the front desk manager is always caring, she is like a personal friend you have not seen for a while.','2019-04-04 11:46:28.800000','2019-04-04 11:46:28.800000',5,'Hillsglobal Enterprise','https://lh4.googleusercontent.com/-p5sgiRS6Bgk/AAAAAAAAAAI/AAAAAAAAAAA/07F--ufXMx4/c-rp-mo-br100/photo.jpg','17394740196501090048',4699),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnn9il1v_BYN4TO6oEqLFSMZf0PBifoFqLSPR9ThuRDCBknfhuynzzg9t7hG9mPxNKjxF7jzDy_9NjdpbA9lni32KOrPw','Dr. Harjai was excellent and so was Tricia the radiologist And Jocelynat registration','2019-05-25 20:24:58.926000','2019-05-25 20:24:58.926000',5,'Paul Perez','https://lh3.googleusercontent.com/-D5XWwLGfqwc/AAAAAAAAAAI/AAAAAAAAAAA/1I1IQc3azDE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnnEtH_-x4bAjG6zdZiVzZ3KLBydbx6cHIr06YpmrDfP2TMxkwBEJZ6OVoDvIJ9fXkxr-qWsdJj2EgQVV3_3mkLuQg6NA',NULL,'2020-07-21 05:00:47.346000','2020-07-21 05:00:47.346000',5,'Chris Keaveney','https://lh4.googleusercontent.com/-UozLB2Ji504/AAAAAAAAAAI/AAAAAAAAAAA/P2Q2RQweJGg/c-rp-mo-br100/photo.jpg','14748677429039074158',21643),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnnitDqDCuygJkOC5f20E3E1KOY8x1crHw2OnXSkSWLN6Uk9AkQ414MwglNlGP8ZzAXdTcap96d1_QHGNRfvA19zoANbI','Very caring and friendly staff. Great service test and procedures . Treated me very well !!shaunda , Dr hemerka , nurse Amy yall are the best!!','2020-02-08 16:40:36.061000','2020-02-08 16:40:36.061000',5,'Dannilys','https://lh5.googleusercontent.com/-F7un1661TK4/AAAAAAAAAAI/AAAAAAAAAAA/2dRwF30g8wo/c-rp-mo-br100/photo.jpg','2694018788013845459',14249),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnNkqUUOxbSXC_DcMDrHT7KwRpGK3dgA8oe6fFDokXNvwTn6XWmHZuhwR83n5GZe8CHcD-w-ZLhhZFkn6xuKhiuV5dWMk','This place was awesome! I was seen with no waiting. Everyone was friendly and nice. Very attentive . I definitely recommend if you are needing medical attention! 😊','2019-07-30 01:03:33.671000','2019-07-30 01:03:33.671000',5,'Annette Hernandez','https://lh4.googleusercontent.com/-6Ne3-2I6S_o/AAAAAAAAAAI/AAAAAAAAAAA/9k1I4J_Sb7s/c-rp-mo-br100/photo.jpg','14567670160750071148',1266),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnnmtd47UYh24AFJh2EjLgNR0QnXB17DDBYCDPN7vNJFkQV7k7H7_l3dM5jt50Q4Fa69XGC03CWDxgHQt4NdbvG93LXqk','Itza was so nice and attentive! Jacob and Rebeca were very quick with administering pain medication and were fun to talk to. Would definitely go again!','2020-01-20 21:27:51.440000','2020-01-20 21:27:51.440000',5,'Alaina Reyes','https://lh5.googleusercontent.com/-fu006YBkLts/AAAAAAAAAAI/AAAAAAAAAAA/7nRG0BeQWjg/c-rp-mo-br100/photo.jpg','16590124370714063921',9974),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnnqbRgdN5JIyohjQBiHXZ2KUZkVf_qrHo6JrjuR0yd4MkqRpoPZDvYhRMOyaHdk-YBceQb5ERA7yK6AOtnJUyUt5iepw','Went for COVID 19 test today.\nExtremely impressed with the service .\nThe doctors were very cooperative and easy to interact with.\nWould highly recommend this place.\nThey also gave me a t-shirt and face mask.','2020-08-01 15:51:27.911000','2020-08-01 15:51:27.911000',5,'Faraz Ahsan','https://lh5.googleusercontent.com/-Rmv2vbfqY1A/AAAAAAAAAAI/AAAAAAAAAAA/XS8OzQ8prmk/c-rp-mo-br100/photo.jpg','14748677429039074158',22356),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnNQODiL6VLiMv1PsykFPT9sUjl26CHFgZc7y_74nauyP3hOL1XCFknYbxXelzW6w4HtV_TfcySLj9kOg8b3qK5_1QLbo','From the moment I arrived until I left everything and everyone was amazing. I went in feeling all panicked and they did everything in their power to help me calm down and feel comfortable again. Best Emergency Experience I have ever had./ Thank Yall','2019-05-06 15:00:06.320000','2019-05-06 15:00:06.320000',5,'Collette Dionne','https://lh3.googleusercontent.com/-9K9vNh_xILI/AAAAAAAAAAI/AAAAAAAAAAA/YIxJCnpK1HE/c-rp-mo-br100/photo.jpg','3511292162159714121',7337),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnnuYYMSp_kvxDYsRGfqKTgXS3xk1ek4B5jBTaQ1YwPpcnBnyADlXZf-OVRo5jzS96IeUAH_Z_tc1EfhVJfk3Ed3eDQ0Y','The staff was absolutely amazing! Lucas, Sherri, Kim, and Dr. Curtis have been most helpful! They made sure the patient was taken care of as well as their family members. Very attentive and friendly! Thank you all so much 😊','2019-02-14 22:49:07.404000','2019-02-14 22:49:07.404000',5,'DyAnne Dillard','https://lh5.googleusercontent.com/-aAcQJQi1A_Q/AAAAAAAAAAI/AAAAAAAAAAA/_krp9doXPi0/c-rp-mo-br100/photo.jpg','3272657195432704501',7017),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnnwtQLiQd39oM27dP6pbFMTSsPhjo38HU99M8SRC3yHntSe9MFtznUShPp8iQRPSEjDLLiv0PCWfOJNzeDluuep8jVPk','DO NOT GO HERE. Please read other negative reviews! Although the staff and doctors are kind, the billing is insane. My husband and I had been to the center 3 times in the past year and (after specifically asking the staff at the front desk about this very issue) were led to believe the $30 copay of each visit was all we owed. We have BC/BS and they charged our insurance thousands of dollars, never sent us copies of our bills, and then sent the debt to what seems to be a collection agency. \n\nAt the time of my original review (1/05/20), they were offering a Starbucks gift card to any one that leaves a positive review, presumably in an attempt to bury any negative reviews about their predatory billing practices. \n\nOriginal Review: We had an amazing experience! Kendra got us checked in quickly, Dr. Kimball was super reassuring, and Jacob took great care of us. Definitely will come back if we need care!','2020-06-26 20:39:25.660000','2020-06-26 20:39:25.660000',1,'claire n','https://lh3.googleusercontent.com/-v9nkcw9WJKE/AAAAAAAAAAI/AAAAAAAAAAA/9afJTgRYlJw/c-rp-mo-br100/photo.jpg','16590124370714063921',21262),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnnwY9O5RPsztjvlwWV0Zv3E_rXmqOXOGMuxiYAn538USfmQ7FyxXtHeLpKHG2a1TGiRUIbATnApGsmLZRpWEMHhsiSQQ','Dr. Patel and alvean (bsn rn) have been absolutely astounding during my stay here last night into this morning. Patel has thee best side manor i have ever experienced in my last 4 years of craziness health tornadoes. Ray has been a godsend from the beginning i walked into signature care ER & him and his staff are continuing to excel in excellence of medical care to patients like myself that need a little more tender love and care.','2020-02-23 06:23:53.573000','2020-02-23 06:23:53.573000',5,'Sara Piazza','https://lh3.googleusercontent.com/-ntokBAh7r7M/AAAAAAAAAAI/AAAAAAAAAAA/b_rxFiIyDpw/c-rp-mo-br100/photo.jpg','8679688254631342173',14734),('AIe9_BFmRFRFwJGRfUDOW8jG3rXno-kRmYAfIsMJSPKd8pM2yiqV2f-b-JUDR6_8yfl5Le7cvbEBuvSfydTfslJJnF7aNwXnzevHhCeObnGtvJg6yG_ejnc','They provide excellent and fast service! Dr. Wang and Nurse Kristina provided excellent care.','2019-12-20 20:08:17.423000','2019-12-20 20:08:17.423000',5,'Tracie Jones','https://lh6.googleusercontent.com/-9BUHv5w8PU4/AAAAAAAAAAI/AAAAAAAAAAA/wATyQpZxJAc/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',325),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnobZbdvyyXOJaKwheWEr9urW43X54tCcGFwXlaM7SHhGXadrX78pu69zK5keFupTO-8C3eyKCxgeSnZlQ0_-HghVzICE','I have always gotten excellent care here. The nurses are patient, even when I\'m a big cry baby about having to get needles.','2019-06-16 02:06:49.884000','2019-06-16 02:06:49.884000',5,'Megan Hurwitt','https://lh5.googleusercontent.com/-3E3UDQ7An2g/AAAAAAAAAAI/AAAAAAAAAAA/avNIDSducuc/c-rp-mo-ba5-br100/photo.jpg','12541597562633926366',497),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnocymLxPHW9a9noTWdbln6KJhc9WxzUfozO01OILWeOhkSMHD_-5X_n3Hhu_VQt_6bro3Hdc-UdaHSlnMvMY5jiXt3d4','Excellent care!! Jennifer and Kelsey were absolutely wonderful!!!! Dr. Jordan was very helpful. Fast service, in and out!!','2019-01-06 22:48:11.381000','2019-01-06 22:48:11.381000',5,'Betty Dollins','https://lh3.googleusercontent.com/-pKDFfjAtyfc/AAAAAAAAAAI/AAAAAAAAAAA/i11YO5_92jc/c-rp-mo-br100/photo.jpg','8626688543755174284',8601),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnoFYKVFpah_yq1Z5gh4qLBZoxMfN4CIU8wdXx-YBE9WfBULG0i8FfnurbUeq3uEEHTUINJ2am2Rz8HRtuki1FOs2jEAU','I am a bit late due to just life! Ha. I just want tot express the great synergy that this signature ER embodies, i was there early on a Thursday sometime In February/2020. My emergency was just a annoying knot that grew on my body but had no pain.. Stephanie-Main Receptionist was super kind, Informative, very courteous In many ways ; Like allowing me to have some candy bars that weren\'t necessarily for me (Patients) to have. Rollie-Nurse he is great guy wee spoke briefly about (man stuff) which made my experience a bit easier. NAD Tech- Natalia- was nice i think we laugh once about something silly either one of us stated while she was trying to get vitals, blood pressure etc. lovely lady. Dr. Ding- super cool I never thought I would laugh and converse as much with a Doctor at such a early part In the morning. FYI, I am a people person and this experience was really fun and had genuine people working for this particular emergency clinic. Thanks to you all. M.A.','2020-03-05 06:55:45.215000','2020-03-04 18:04:50.485000',5,'Marcus Allen','https://lh4.googleusercontent.com/-NDxVlpoT3MY/AAAAAAAAAAI/AAAAAAAAAAA/rjFrjdvwucw/c-rp-mo-br100/photo.jpg','8679688254631342173',11625),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOg1lo-ijh1FJXXcgouaOq4iVmHOPn4Re5UYRezrppCm_D9EMV69Aj0k9yxgpDUhjjWE527JLTddgYmkNKke8mR1Qdco','Not the best experience. I scheduled an appointment at 2 in the afternoon...and waited over 4 hours. I was put after patients who came in after me and was given no explanation. When I first arrived they told me they were running a little behind and I would be seen in 30 minutes. The least they could’ve done would be to apologize and explain the situation... this is very disappointing especially since I heard such good things from this ER. However, my experience in the room with the nurse and doctor was exceptional! My nurse was extremely gentle and caring and the doctor was very personable.','2020-07-29 04:09:26.602000','2020-07-29 04:09:26.602000',3,'Olivia Dyck','https://lh4.googleusercontent.com/-gHYR3zwjYUA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn0rRwaycMEo8l_nHxvOIIfdA7i5w/c0x00000000-cc-rp/photo.jpg','8626688543755174284',22233),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOhFdxAAnzdIfzcjJ3r-pnBWo0sJeyLRxM3mFtTPXssQjT8f7S6TxzMYk53bY9qK2EYKAYgTYzVhM2deow_NV_5-hBLs',NULL,'2019-12-30 11:50:20.368000','2019-12-30 11:50:20.368000',5,'Brenetta Jackson','https://lh6.googleusercontent.com/-vLDyum8xn_M/AAAAAAAAAAI/AAAAAAAAAAA/ncBRafb5ZC0/c-rp-mo-br100/photo.jpg','3272657195432704501',6813),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOJICJgsP5xwd4nhm4_aYp8JEnp6GlFJO8lMtxqWO778tXLPwe_SIP-Uv9YdRQ_Hi7Z5I2MZO2f4s_aYtbvpgiKNt_LI','We are always in and out and the doctors are very thorough, caring and the facility is nice and clean.','2019-11-04 17:42:05.923000','2019-11-04 17:42:05.923000',5,'Sandra Tiffany','https://lh6.googleusercontent.com/-P1P18zMO_CY/AAAAAAAAAAI/AAAAAAAAAAA/Y_L-cVWTRV0/c-rp-mo-br100/photo.jpg','8679688254631342173',8750),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOJKIybyFHbKY3tQL5_Ywr6D8-cptuBgf5yH6CnRfNwbnAcBg5rbSK90ep-BK2eVvsL1CS58_hJwzsYJgF-2xmjjTqf4',NULL,'2019-12-30 18:46:14.525000','2019-12-30 18:46:14.525000',5,'Kiwana Hamilton','https://lh6.googleusercontent.com/-g38wEfufrTM/AAAAAAAAAAI/AAAAAAAAAAA/Wn1fXYb4yNo/c-rp-mo-br100/photo.jpg','3272657195432704501',6812),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnojrM6X2THPW-6DJ0zXPqXLFDFktKi3P8PL9CP-QRVq1m-cDZgBbWlAjaUKzMERb0nI6CV1OMKLJpkHAtMZ6SGOm9KSg','I had a great experience here getting swift and professional care. They are the only place in town offering rapid COVID tests and with the backlog in normal testing methods, this is the only way to get results without having to wait for weeks. Rebecca V and Amanda C were great at the front desk and Dr. Mauldin was kind and professional. Nina the ER tech was very nice as well. The facility is also very clean and state of the art. Overall, I thought the service was great.','2020-07-30 19:52:22.613000','2020-07-30 19:52:22.613000',5,'Jessica Mitter','https://lh3.googleusercontent.com/a-/AOh14GipxPiX1KOk_YHmes2TQXaVlBWwQMBR1o82hwI0rQ=c0x00000000-cc-rp','16590124370714063921',21998),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnojyolBqLxM1ge5GdEo4NFmjI4X2CBa2s2jiD3xybGyDQ72Ja8WctPWzWlgUGwpq8I25Bgkxn5r3LnRireQYSYWv7kmM','Awesome experience. Friendly staff. Doctor took his time explain everything. Highly recommend for emergency situations.','2019-07-03 14:38:14.469000','2019-07-03 14:38:14.469000',5,'Imelda Morales','https://lh6.googleusercontent.com/-028W0VYHCls/AAAAAAAAAAI/AAAAAAAAAAA/Af1N8USA9LY/c-rp-mo-br100/photo.jpg','6521947413723274945',8214),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnoMB62a8mt9r758l4w-S_1w5W1555Cw9m0X0Iou5g9do4bshZDn4fYtCHIBKig1qJZ_DbmO3imFmvrPyEoioGjsL5TEg','Great service every time I come here! Doctor Ortiz, Nurse Sarah G, Rad tech Fatima B, ER tech Daniel B, and Tanishia W. from registration attended to my visit and they were all nice and very helpful. I highly recommend this er location','2019-12-25 01:40:14.910000','2019-12-25 01:40:14.910000',5,'Huong Dinh','https://lh6.googleusercontent.com/-C4yGNMCGH-k/AAAAAAAAAAI/AAAAAAAAAAA/CtJYSFMTgrc/c-rp-mo-br100/photo.jpg','17898197009688164559',5331),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnoNxvturcQrcOTBuoBT1NxkOCbknhpYwAGnYnzvBd-34GbyBG00rFHb_lUhmhXiVeqKBmVthclFJkJ9w_yiEYNR0SVWg','The service was great! They got to me in a timely manner. The doctor took care of me. All the staff was nice and helpful!','2020-02-28 16:31:10.201000','2020-02-28 16:31:10.201000',5,'Danyell Bartholomew','https://lh5.googleusercontent.com/--NMhfXnZpHA/AAAAAAAAAAI/AAAAAAAAAAA/B5bakK3CQZk/c-rp-mo-br100/photo.jpg','2694018788013845459',16663),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOOu_BDXeABySHewqFuaFFImXOEkVe-wMLMlqNwxpKcSFSW6mS0JwrIk4QdZSySp1A9ubmWiwMuleC6cWIMETx3_ij3k','Beautiful place. Staff is professional and very nice!\nEdit: The receptionist was very welcoming and helpful. Kat and Daniel were very nice people, too. I felt like I was treated extremely well - and quickly and In a very timely manner.','2019-12-11 06:13:54.877000','2019-12-11 06:13:54.877000',5,'Katie Edmondson','https://lh4.googleusercontent.com/-q6TXaXAD1as/AAAAAAAAAAI/AAAAAAAAAAA/qi2QkdJTqkk/c-rp-mo-br100/photo.jpg','2694018788013845459',5991),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOQyleJyvFb3o9t19hhMusyg0jKT4eQzU7EDtKJ4iue36W7aAGTZf8WOf498RcYlJ-5D6wGNa2x1f5QfUxGedj7mt4xE','Went in for a dog bite, was taken back quickly while the receptionist dealt with insurance matters for me. Rooms were clean and bright. The staff was really great at explaining what was going to happen. They checked up on me while I waited for animal control to show up with questions. Overall, my favorite ER care location. I hope I don\'t have to go back, but if I have something come up I know they\'ll take good care of me.','2019-10-14 19:23:49.812000','2019-10-14 19:23:49.812000',5,'Michaela Suder','https://lh3.googleusercontent.com/-DqKN888N_uw/AAAAAAAAAAI/AAAAAAAAAAA/0xK5Vxzj_MM/c-rp-mo-br100/photo.jpg','13486358490203335051',777),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOrhr1X0_9v7b5XQDIm3SdTkoLGMjVYeU2YuwUIaA68qkA3Fyad8stPb54p24BL57m9L1LpEaDmhHvg5isu7IdCK6iLI','I had a great experience here. Ms. Taneshia, Ms. Lynn and Dr. Dang were super helpful! Thank you guys for everything!!','2019-11-18 05:55:44.433000','2019-11-18 05:55:44.433000',5,'J’da Crawford','https://lh3.googleusercontent.com/-EFb7faVQlnI/AAAAAAAAAAI/AAAAAAAAAAA/yFm8uVzncgQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5428),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOTzSLTQ9l6WEQN3hvrRg8wtdA5QNcwd7msKIr4-XjXNPsgBQH0wOkbreB9lrAzHoVf_90_BwyXRXB46jHi5XDaLdIEo','Rayven is really nice, fast and very outspoken','2018-12-25 02:37:31.810000','2018-12-25 02:37:31.810000',5,'Tre Mathis','https://lh4.googleusercontent.com/-taMHON8VxG0/AAAAAAAAAAI/AAAAAAAAAAA/L2xfhcVJHxA/c-rp-mo-br100/photo.jpg','16590124370714063921',3603),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOULvsc4NrP0Ya2zXel_ibmRZG6hfz2Wi6l38le_rZ2P-FR3rRLK0VLUFiLH-5mlF7jdm6mMM2MSQx1COysxbdrbEufo','The staff was extremely friendly, welcoming and accommodating offering me beverages while I waited for my doctor. Dr. Singla was really patient with helping me understand my condition. Off topic, he was really attractive and nice. Either way, I\'d highly recommend going to this emergency center due to the positive care and the uplifting environment that I experienced.','2016-12-22 06:34:40.101000','2016-12-22 06:34:40.101000',5,'Kathleen Espinosa','https://lh5.googleusercontent.com/-nZgOsLtvBok/AAAAAAAAAAI/AAAAAAAAAAA/braRl1-80xI/c-rp-mo-br100/photo.jpg','14904078213800803294',2436),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnov4uLlSKAq1rW61CLChRErZH-y3b1XvEX-bzfh8lt0iieQMp-WjmCNLtHx37StO3Ik1fItL5iLYLiJbZ1JUlTHk8B1Q',NULL,'2019-12-07 16:10:06.282000','2019-12-07 16:10:06.282000',5,'christopher bartee','https://lh6.googleusercontent.com/-MalTIQ7NKSI/AAAAAAAAAAI/AAAAAAAAAAA/bXYsm7qYKrI/c-rp-mo-br100/photo.jpg','16590124370714063921',3041),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnoVr_XyykOkWOUSEx3uQAMMdcfmjeGLsvBHRt2E3G9yBk2zaCwtQ7s5f3SOQVPtDXvPSbefgl60Ycp-4lTejBY2lNZPI','Leah was helpful and professional. I appreciated her taking the time to make this a quick visit','2020-07-05 11:46:00.521000','2020-07-05 11:46:00.521000',5,'Missy Missy','https://lh5.googleusercontent.com/-pZEZF99rOpQ/AAAAAAAAAAI/AAAAAAAAAAA/7MqlU2Zqx8M/c-rp-mo-br100/photo.jpg','13486358490203335051',21349),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnOwC7I0ULLXHjG6FsfbOLbzIod0_h-H5IpSHvqZjQtVDMbBzjRPFdsUvOf9iAjo9ToGx1gKZnd9rtnHsTpL2JlUCriyc','Lucas, Kim, and Sherri were gr8!','2019-07-23 17:24:43.530000','2019-07-23 17:24:43.530000',5,'zoe lovelis','https://lh4.googleusercontent.com/-t2Aq41DDzLc/AAAAAAAAAAI/AAAAAAAAAAA/vVTjvJKrO8Q/c-rp-mo-br100/photo.jpg','3272657195432704501',6934),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnoxbhjYb_SG2K6eSRSXp_H8N2LgP1IRt8g_eqklIjRMOeauKPDufJywTFHp0xKj26JYIV8ooEs2NrG_ZJNRPWdrusxkg','Me and my family use signature care for all our emergency needs they are fast and realy get down to businessfinding out whats wrong.','2017-07-27 02:29:55.977000','2017-07-27 02:29:55.977000',5,'Adam Castillo','https://lh3.googleusercontent.com/-E0QIWFYNBFs/AAAAAAAAAAI/AAAAAAAAAAA/BmpeNUfun9M/c-rp-mo-br100/photo.jpg','17394740196501090048',5013),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnoy6ovrC9D3KSnAgV2zGXnnq9rC9Noeti4xbD4JiKLJ7a9mTov_nP022pz3cI7U6dpBt7NgZ6RiK8z-cOgwVTDnfzv7M','The process of checking in and getting a room way very quick. All the staff was very attentive and professional. Thank you to Dr. Ashbrooks, Kelly, Jennifer, and Gunnar.','2019-07-29 14:43:27.574000','2019-07-29 14:43:27.574000',5,'Brittney Haynes','https://lh3.googleusercontent.com/-MYD04l6sY8g/AAAAAAAAAAI/AAAAAAAAAAA/U7k2LduY0VI/c-rp-mo-br100/photo.jpg','3272657195432704501',6923),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnp1O-NEx72PLmSsZ77zRH0cG-q7hvbvM4floe4ysD36QsmAlWzToplSah8NEOucct0Cq5nJIbcYzt7i1Ruu5ixkesh6U','My second visit to Signature Care and everyone was great. Dee at the front desk was very polite and got me back very quickly. Would definitely recommend others. Dr. Faig was great.','2018-07-19 12:29:05.921000','2018-07-19 12:29:05.921000',5,'Kalipha Mohammed','https://lh5.googleusercontent.com/-Tezjwk00cog/AAAAAAAAAAI/AAAAAAAAAAA/X-gXa1g3H44/c-rp-mo-br100/photo.jpg','3511292162159714121',7688),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnP373dbCW9CTJrqKIR1qVBZ5BtwoePwstfUAeiGIZZUr-_2xunFZQhuc9KSnP8cbE-LoTrLg6zV2dIhpwhwi5tKjrEIA',NULL,'2020-07-09 15:49:20.451000','2020-07-09 15:49:20.451000',5,'rjz','https://lh6.googleusercontent.com/-jM3Jt-V3QME/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm0ciQeZS88z3j7YGndoAkiA6CGZQ/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22175),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnp6_TKtmdXpE8Qf-mpkYA_6PQNfStmGKQw25_oB4GHlbU6paNDz_6bmzn46sWcaesU7cM28C1HuUv_TSarU-763U29gc','Easy, fast, and very helpful. My go to ER.','2019-10-09 18:20:13.693000','2019-10-09 18:20:13.693000',5,'sam cure','https://lh3.googleusercontent.com/-Y0xG2pTa6W4/AAAAAAAAAAI/AAAAAAAAAAA/s2B9nTCt4tA/c-rp-mo-br100/photo.jpg','16891069708558046635',4189),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnpA1Z8SIhARNb-sPWhjkqVe7QaguAL1wEMKPI_UjYXL5P5kNoRf5hs7EPJvwD0POgSyLtWs9XciyguN6H7m-sI4QZZkk','Great care! My nurse Karen was so helpful and kind. Dr. Alloju was understanding. Registration with Mercedes was quick! The radiation tech Le was kind! I would recommend','2019-11-02 15:52:17.378000','2019-11-02 15:52:17.378000',5,'Tavia Booker','https://lh6.googleusercontent.com/-6WZoWQtMheE/AAAAAAAAAAI/AAAAAAAAAAA/ItVKj63dAZk/c-rp-mo-br100/photo.jpg','8679688254631342173',8755),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnPCAumex61ARN9oqlERabF2Hp1nTIUH4voXqqRTZDwBpoa1ymTHCMhT0Zn555JiDNAUOG2lktB0A-92rHN3V9r8_6OEQ','Vivian S. Great help and excellent service.\nThe staff is really great and fast check up','2020-07-31 00:56:15.571000','2020-07-31 00:56:15.571000',5,'Steven Mino','https://lh6.googleusercontent.com/-iq0qphupj2M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmfWLruU5fVpgm2NxtMCTxzQ3Er_g/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22272),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnphHQCn7Y1V6tjbhQKjvJcls8tI2wU5yUd_dcxPq7hSbEcUH3SciwOoxldEOo4RZVLijvYMynRJly4j_O-sWhcbfTWJ8','This emergency room is excellent. Extremely caring and comforting staff. Robert, Brenda, and Chris were awesome, they made me feel right at home.','2018-10-25 22:05:49.778000','2018-10-25 22:05:49.778000',5,'Katelyn Waibel','https://lh3.googleusercontent.com/-9ZMrUdwMsR4/AAAAAAAAAAI/AAAAAAAAAAA/4zTWN3VBhWw/c-rp-mo-br100/photo.jpg','8918455867446117794',9224),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnPHZCuYGEKE5SP0L-pqP1D4s4em3IwR4ygq-ivFroxGKp0K1MHaEbKwemYxXU8T4l3pWnNVYBBvREHNlTbyCzXgLUCYA','There is a lot of flu going on here in south Austin. My youngest daughter received a positive indication that she has the flu. Of course my oldest daughter a day later, after 5 PM, decides to tell us that she think she has the flu and was in a very bad place. Most of the urgent care centers nearby had already closed. We wanted to get her attention sooner than later so we chose 24 Hour SignatureCare Emergency Center. Let’s just say it was the best decision we’ve made. From the time I called them on the phone to see what the wait time was, which was 15 minutes, to the instant we walked into their lobby, everything just felt right. Every staff member was incredibly kind and patient and welcoming. The lobby was very comfortable with complementary beverages and snacks. They got us in to see a doctor before I even finished the paperwork. Every staff member to include Dr. Elsbecker, Christina, Jesse, and Edward compassionately tended to my daughters needs as if she was their own child. Nothing but heartwarming care! Even though my daughter had negative indications of flu and pneumonia, she definitely was fighting something and they gave her as much medical attention as they could to make her feel better and get comfortable. It was a major transformation for her in just two hours. Thank you SignatureCare for taking care of my baby! You‘ll definitely will have our repeat business!\n\nFor the record, I am the type of consumer that reads a lot of reviews but rarely ever post a personal review. Last night my daughter and I walked away with respect and admiration for how well run this facility is! A five star review that I genuinely owe them!','2019-01-31 17:20:38.020000','2019-01-31 17:20:38.020000',5,'Travis Haley','https://lh5.googleusercontent.com/-DJuME4ODz_s/AAAAAAAAAAI/AAAAAAAAAAA/02EiV9XUNV0/c-rp-mo-br100/photo.jpg','16891069708558046635',4361),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnPpCAqlKTzsSDNRzJ3P403Ku703tcKsN519E3djIH9hxClF3YsXQm7-tnB40S4zTnpNmr8ux5-yiAWDWJAKwgDOnZOi4','When I walked into Signature Care I was greeted by friendly staff, great attitudes, and rapid service. Within three minutes of arrival I was taken into the back where two nurses and a physician followed me into a room. The treatment was prompt and professional. \n\nNobody wants to have a medical emergency, but when those times arrive your place of care should not add to the stress. Signature Care will be my first choice durning the next emergency.','2017-05-13 11:36:01.025000','2017-05-13 11:36:01.025000',5,'miles hill','https://lh4.googleusercontent.com/-pELDt865LWk/AAAAAAAAAAI/AAAAAAAAAAA/RDpVN_swerQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2358),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnprnQc79UqX6cLOYa3DkvI5_uu04y0D7Tix5J6m1zz7wQNehlobHXVWZS-WW9Ad37h8QBIRxZJb1XcLZw3eoEozLYv_0','Entire staff was friendly, caring and knowledgeable. Highly recommend if an emergency occurs. I had a severe allergic reaction late at night and was seen quickly.','2018-05-03 02:40:33.543000','2018-05-03 02:40:33.543000',5,'Mkfrtx','https://lh3.googleusercontent.com/-epirWCJR2NQ/AAAAAAAAAAI/AAAAAAAAAAA/wk_UPpjcIC4/c-rp-mo-br100/photo.jpg','14904078213800803294',2258),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnPyb9BXOatY8kHxTh_kwV6o8TIDAw6Qo0827augCknwvKaEkMOPThRy3fXEFIB8qdmRxSSckNIniqG1Garec5xAj8Z8c','The staff has been absolutely amazing! Everyone is no nice and explains everything so the patient and the whole family is able to understand what is going on! So caring ! Highly recommend','2019-12-10 16:16:45.142000','2019-12-10 16:16:45.142000',5,'Ethel Ginsburg','https://lh3.googleusercontent.com/-nLRFKugBH2Y/AAAAAAAAAAI/AAAAAAAAAAA/ZjUf_zzWIjU/c-rp-mo-br100/photo.jpg','16590124370714063921',3026),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQ-sj361hqkMaXd-9a2dYlFR1IcAZxofYS3B8733Cr_Z3kTwPhEFKwQsi6G8Mqw0rhyCtorxLS6EjAKafxsxYHCjdZv4','Everyone was super nice!! Shoutout to Haley!! She rocks!!!','2020-06-16 22:26:44.385000','2020-06-16 22:26:44.385000',5,'Shalondee Holt','https://lh3.googleusercontent.com/a-/AOh14GjCACwZ2QiDeRvtjdPPtf4diCK3eewYsw5AruGyGA=c0x00000000-cc-rp','3272657195432704501',21125),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnq3Q21CWqAZLIh8vtzCuv_fYvFtpQ0ppWpetU4nJ3xFVtf_-YZTbyWU3OvsH0hsmbu-J1JNnCsexcMCTen1ucI6kHr5M','Very professional kind and caring facility best ER experience I\'ve ever had, were greeted with a smile and compassion upon arrival and when we left','2017-03-27 07:41:16.902000','2017-03-27 07:41:16.902000',5,'Moniquel Rogers','https://lh5.googleusercontent.com/-vKigAuExYEA/AAAAAAAAAAI/AAAAAAAAAAA/cLsJYs7MT9c/c-rp-mo-br100/photo.jpg','16590124370714063921',4022),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQ4--D3K8G-VDVpZKFw6ydpviqdTxg55qWtdkKLRncHTzw-bQ59x0r04Jj41sGSmQErXhGkFkMvoGKwkIF4Cpl8YXVpg','They got me in super quick. I talked to the doctor, he wrote my prescription, gave me meds and I was on my way!','2018-10-23 22:13:02.809000','2018-10-23 22:13:02.809000',5,'Sarah Richmond','https://lh6.googleusercontent.com/-ie78u-0Lvck/AAAAAAAAAAI/AAAAAAAAAAA/WqkxNTvHWP4/c-rp-mo-br100/photo.jpg','16590124370714063921',3689),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQ6Vebjnoov9c0e6BOZk6EDodrOz--AfaCF4LNIFPprObpH0axrXeKr7Obz0QAA4lJ1uf9E4Q3lB5kMDJqu_lh5U2Mm4',NULL,'2017-02-03 02:20:44.328000','2017-02-03 02:20:44.328000',5,'Patty Tilney','https://lh5.googleusercontent.com/-sZP4sTF6dU4/AAAAAAAAAAI/AAAAAAAAAAA/L8dG6JhAX6Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7890),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnq6XTE9HUlwZwT2Fggk_MhXQ2iyAD_qgQPDnPq0-jfflawSUU347VBpCS7utBrAJzG3WK9ImjqFW8fKBYEeHWIxJWf7k','Great place super friendly staff I love coming in every day when I break a bone in my body because of my boneitus. They also have refreshments that are well stocked and cold! I even remember the staff by name there’s Lisa H, Maria, Corey, Savanna, Lisa V, Jamie, and Dr. Huerta all super great people!','2019-06-18 20:50:18.784000','2019-06-18 20:50:18.784000',5,'Dan Campbell','https://lh3.googleusercontent.com/-Kq7JjZUP4CM/AAAAAAAAAAI/AAAAAAAAAAA/cRrbgDSGrA4/c-rp-mo-br100/photo.jpg','13486358490203335051',950),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQb6-xmfwbDJ4QR7PZEXCMUWxakNhfI9kgk4baPWlnV3aGRo971CG44VWu5MXgUUVzKyofFEzhTDmjWkyhyYZ4MVXAz0','My girlfriend was provided great care by Dr. Patel, Kristina, Scott, Tino and Maya. They were very nice, kept us informed, and always checked to make sure we were comfortable. Will def be be back here if I have an emergency.','2020-01-25 17:24:46.943000','2020-01-25 17:24:46.943000',5,'Jonathan Miles','https://lh5.googleusercontent.com/-siHIki1xHoE/AAAAAAAAAAI/AAAAAAAAAAA/eTKnNKsCljs/c-rp-mo-br100/photo.jpg','12541597562633926366',10096),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQBGSOh51uB_K-vZGwQHctssSKaP590zyD-w1w0WLf64SnuuRj1UQNvUCuEl_FLPuNRuCI_tUH3zwREM5EfFigIdkri8','Had a GREAT experience at Signature Care! Everyone on staff was so kind and helpful!','2020-08-05 20:24:41.790000','2020-08-05 20:24:41.790000',5,'Karli Switzer','https://lh3.googleusercontent.com/-JN-VJvTghpo/AAAAAAAAAAI/AAAAAAAAAAA/wuxUc10Ib8Q/c-rp-mo-br100/photo.jpg','14748677429039074158',22525),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnqEvIGB7QrenYc3D9Q7YTUFy211BpL8CFXNMwnQm_5xDcgCH_B6Sbcytb9GpIFwSsctNNopLNfZdv-ZrPKUOBMWFT7Qk','Great and super friendly staff. From the front desk all through out the visit. Highly recommend any of their locations.','2019-07-23 04:44:25.778000','2019-07-23 04:44:25.778000',5,'Omar K','https://lh5.googleusercontent.com/-UM6mM3piJwQ/AAAAAAAAAAI/AAAAAAAAAAA/_YDD0WqQSaU/c-rp-mo-br100/photo.jpg','14904078213800803294',2111),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnqF1yKKDnBj3M2zHrl7nCIrDa4yPyT9HLSsULhCJE-NqJV7TkTatq_GNrAGAQbzqc6Yry7Y63M7Kc-vqrIfXwRZaXFPE','Amazing service! Dr. Rosenthal and his staff were super nice & got us in and out in 40 min including with having a CT scan of his neck! Definitely recommend and would go again!','2017-05-10 20:39:46.393000','2017-05-10 20:39:46.393000',5,'Jeanie Taylor','https://lh4.googleusercontent.com/-PLSeohLtxxY/AAAAAAAAAAI/AAAAAAAAAAA/2vCyw3uhPSU/c-rp-mo-br100/photo.jpg','13486358490203335051',1131),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnqFE_H_lC5y4_soJq5hbsMx-Dxft8NmwdEwIp-kizH1bdrVlSRKY4wlQD7-GJLDeEoxg_QT0H5Bl7zkVGHbO3TiRdx3U','When I came into SignatureCare I was in a lot of pain. The staff came together as a team to place me in a room quickly and assess my situation. Luisa, in registration, worked around everyone and helped me complete my paperwork. I was in a tremendous amount of pain and she was so patient. Nurse Kat was very kind -She instantly made me feel comfortable. She wasted no time getting things going, did a great job starting my IV and even offered a heated blanket! Dr. O\'Malley took his time with me. He was very clear about what tests would be ran and what to expect but besides that, he was well-spoken, patient and warm. It\'s a shame he can\'t be my primary physician! Lastly, Rick did my x-rays and he was very professional. Overall, the whole team was amazing, I\'d highly recommend this ER! I can\'t thank you all enough!','2019-05-22 21:40:21.450000','2019-05-22 21:40:21.450000',5,'Norma Trevino','https://lh3.googleusercontent.com/-Bpe8I80ZB4A/AAAAAAAAAAI/AAAAAAAAAAA/hwboe1seKZU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQGDmSv7_S8mBR6MhL3ZObXPa1qJxW3uhIwWr1EHXXeNDxuvOWRoAdrt8RnI1ElxrBzEBbg3qYAY-VhoA5ZsJSy8_Zyc','I had a pleasant experience with SignatureCare. From the receptionist to the Nurse and even the doctor. The environment was clean and welcoming, service was quick! And efficient. They even called the next day to check up on my niece that I took in to see the doctor. If you don\'t have insurance, they have convenient payment plans that allows you to pay up without feeling overwhelmed. I will definitely recommend this facility to my family and friends. Thank you to all the staff!','2018-06-21 15:57:59.042000','2018-06-21 15:57:59.042000',5,'uyigirl1','https://lh3.googleusercontent.com/-wBanXEUWehQ/AAAAAAAAAAI/AAAAAAAAAAA/mJ7uzvAif8Y/c-rp-mo-br100/photo.jpg','17394740196501090048',4838),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnqh3VsnX2MaDVVg68q942YQAaW-aCv0Cnx03N16_88EaLVlph0K-5CcxobNvDRpEcItv1VT2Kh587KzuXAxQKILcEOJ8','Fastest ER place every! The staff is super polite, super friendly, very efficient. Love this place. Dr.Estevez is amazing','2020-02-11 02:59:44.395000','2020-02-11 02:59:44.395000',5,'Nathaniel Gordon','https://lh5.googleusercontent.com/-SvP6O-jeRv8/AAAAAAAAAAI/AAAAAAAAAAA/rT-3GHjHiSw/c-rp-mo-br100/photo.jpg','14567670160750071148',13539),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQhzHt-hv2w9ftTRnkPqngtrQnAZl-IHEu2GTeVE2LT1h-sa2YPldv4EtZITrOU1Ki3MOrdOnVnH3FTmN5UIh6-Iow1I','was kinda dying come to signature care &’ they gave me all they could so my pain would go away, did many tests to properly diagnose me thank you to the signature care staff especially dr starr &’ nurse krystal marquez','2020-01-30 18:32:28.893000','2020-01-30 18:32:28.893000',5,'juju maraj','https://lh5.googleusercontent.com/-PQ0JdgHw-JY/AAAAAAAAAAI/AAAAAAAAAAA/7QvH_IzNDKI/c-rp-mo-br100/photo.jpg','13486358490203335051',13452),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQkcyN52GMiXcg0gbVg5lBCHznAhhYPbgL4e2mQRvJGKWb_9DEq3zbP6cnoTjlv5FtOPzHiVB2GoZGtw_KOxGXkO56Sk','I came in with an awful stomach bug. My nurse (Fanny) checked on me often and made sure I was comfortable. Dr Henderson explained to me the tests he was doing and did not rush his time with me. Luisa at registration got me in as quickly as possible and was very patient. My time there was not rushed and I am thankful for them helping me. I have gone to ERs before where I was swept under the rug. Here I felt like the only patient.','2019-01-02 19:59:50.889000','2019-01-02 19:59:50.889000',5,'Chrisy','https://lh6.googleusercontent.com/-liRxjIVrYyM/AAAAAAAAAAI/AAAAAAAAAAA/mBud5mywtW4/c-rp-mo-br100/photo.jpg','17898197009688164559',5898),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQMB-fbS8Icgz8VdNaCqRyDsXhcIft0zRDwboQhj0Gj2y4gKLUTLq8nylogMB908j6pGiZArAfxtu5qI1mtXb_SjjoRo','Very fast and very nice.','2019-07-25 19:20:58.492000','2019-07-25 19:20:58.492000',5,'Angela Barthelemy','https://lh4.googleusercontent.com/-0myG2apmV6Y/AAAAAAAAAAI/AAAAAAAAAAA/0nBONLqShN4/c-rp-mo-br100/photo.jpg','14904078213800803294',2107),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnqUYkJlF5uPbzCbPNulBEkjER_N6XZEXllrqoumNdGV0idhQnn7hqEZzY7VT8bajwagnNu5czt3BIDGSD6mgwNnNO5zw','Dr. Henderson was good to me and Karen my nurse has amazing bedside manner and Amy treated me right and checked me out quickly! I highly recommend this ER!','2019-03-20 05:37:46.008000','2019-03-20 05:37:46.008000',5,'Ahmanda Polk','https://lh5.googleusercontent.com/-bAmPL3h-V40/AAAAAAAAAAI/AAAAAAAAAAA/A4argkKIlUY/c-rp-mo-br100/photo.jpg','17394740196501090048',4707),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQWwY7zSptgiQyz2jYnmHsc89kQv3kb19FLIYcy-cWJxr6z0bPyijvRIrE7Bp9z0JcrrwFC4U3QO3riwuJMexWCYzUww','Got me seen quickly. Friendly staff','2019-12-29 03:42:27.283000','2019-12-29 03:42:27.283000',5,'Crystal Farr','https://lh4.googleusercontent.com/-UtDQ_lettvk/AAAAAAAAAAI/AAAAAAAAAAA/ad9kwujzDIY/c-rp-mo-br100/photo.jpg','2694018788013845459',5972),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQxBQfxyZIklFOhXlOw5I8pU7it1YnQ4_lhZGPkvjdw_afj7QTYLPd8jNgdi7fpJXoOu6F7Hs_b2KlIswV7RuyQFPk8I','Rebecca V and Dyveliz have been super helpful making this experience a little calmer!! So grateful for their service!','2019-12-05 02:33:19.227000','2019-12-05 02:33:19.227000',5,'Katy Seela','https://lh5.googleusercontent.com/-iaWatSG_adQ/AAAAAAAAAAI/AAAAAAAAAAA/3jwMKjxEtqc/c-rp-mo-br100/photo.jpg','16590124370714063921',3056),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnqy68Y9sR0LoYmgNfkxBTAIoVwFiiIJ9O6SWniDcvn6nxp5XVXW0PlLq7XGeflmSa32a-3km5Xitodp0wTmRgbTCJGUI','Quick and to the point. Seen by NP Bryan and Nurse Eddy. Friendly staff, needs were met.','2020-07-30 16:25:43.721000','2020-07-30 16:25:43.721000',5,'Heather Kim','https://lh3.googleusercontent.com/-HdnEnysarsw/AAAAAAAAAAI/AAAAAAAAAAA/7iBvhxoQuI4/c-rp-mo-br100/photo.jpg','2077061009497551125',22968),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnQYOutG9vffBauN6oj74PSHMIhe3dGYCLC1NOeyNy3ELqhYZ1F6vn8v-utQTOqN_e8GoB91rpF-jPB4ZQi4cvytWOdMY','Jones and Amy and Kelvin and natasha all were great got me in and out','2019-08-12 19:53:11.611000','2019-08-12 19:53:11.611000',5,'Deaja S','https://lh5.googleusercontent.com/-NppCam_bwuQ/AAAAAAAAAAI/AAAAAAAAAAA/-K_vRr00yIY/c-rp-mo-br100/photo.jpg','2694018788013845459',6086),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnR-tIB-XyZOXgpiaEt2w_7kqlmwhLdIBexDHOC07UzRKu0ZL5Xq6rSQJP8RAvuhZpPbTiODUxVfxorur8M9sTvkY3nfI','Great service, very friendly. Deanna greeted us as soon as we walked in, with a timely manner and friendly attitude. Nurse Kat S was very nice and patient. Mr Joshua was nice and understanding with our 1 yr old. D . Appiah was great at explaining what the issues with our son\'s health could be. \nEveryone was very helpful.','2019-05-23 01:08:45.925000','2019-05-23 01:08:45.925000',5,'Luis Ambriz','https://lh4.googleusercontent.com/-Dm8MjbrNRbo/AAAAAAAAAAI/AAAAAAAAAAA/xA4U_CaSQp0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnR1fh4NrFsLMcHNYIRcgn9nP7yncqGLLcdXkGttPqij7n3k7e338OeOcXezwfkMWg-bhqxVnzhI-vQuap-tRk_TiEtKY','Signature care has really great service! Their detail ,specific and very friendly!','2019-06-21 03:13:59.623000','2019-06-21 03:13:59.623000',5,'Paco Fowler','https://lh6.googleusercontent.com/-OYccpbLTcQ8/AAAAAAAAAAI/AAAAAAAAAAA/_bdcM2aqB-s/c-rp-mo-br100/photo.jpg','3511292162159714121',7293),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnR3FqClvzCV8IQn0C93Zkvm-Z24-Bp37dp-uwLaoitvPEFibmX_LQSA-rS584CHC0_iHy-QVBIlS9L9pMAGHFBuHkYxo',NULL,'2020-08-01 18:10:14.658000','2020-08-01 18:10:14.658000',5,'Anaya Perales','https://lh6.googleusercontent.com/-go_Uj3JM_Wo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclOG8ndeHgo_Lm9VdSw1dWNihoGfg/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21836),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnr3GUWEzWJen4EA1xYcjnANjX0kkQBgG73neB2X_XS-zAAvmAMqmjLZ62SJNSPHRMmLtkAaAEkVkOC9MHQcaQxuYCFNg','This experience was great Sindy was quick and very nice as well as the nurse’s Vivienne and Gina','2019-11-13 23:00:01.125000','2019-11-13 23:00:01.125000',5,'Development Yuh','https://lh5.googleusercontent.com/-i2XgQXy6heA/AAAAAAAAAAI/AAAAAAAAAAA/4e1ZfwzY3IY/c-rp-mo-br100/photo.jpg','14567670160750071148',1190),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrf7ShwruXlrEmhErk_x1YXiD9c4Nv58MrNq-DKlgQtOfXyRKJRMU602T5g5AVX8I27Tehx_UQmf4ifdWPdWzT7hQreM','UPDATE:\nThe quality of care was good, but their billing was bordering on exploitative. I received a bill for thousands of dollars months after the visit after already spending hundreds on the day of the visit. At no point was there any indication that there would be an additional bill and the prices were insane for the services provided. I would avoid this place at all costs unless it\'s a truly serious emergency that can\'t wait.','2019-01-21 05:10:34.420000','2019-01-21 05:10:34.420000',1,'Ryan Randle','https://lh6.googleusercontent.com/-gAA_-pGj3jk/AAAAAAAAAAI/AAAAAAAAAAA/IulwBcBRwW8/c-rp-mo-br100/photo.jpg','16590124370714063921',3583),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnRFsCt486iazlpRXD610Avju4qXqbY4C-EGXIu8ToqeiE3PQ00jy2t7PXje00YrynnMDQcOEeij64jZLx6BD1s7GvrK8','I took my 2 year old son there I first went to the ER at the hospital it was a 2 hour wait he couldn’t breath I knew he needed help right away and I’m so thankful we went here when we arrived they took us right in his oxygen was so low and got the help he needed if we would have stayed at the other ER no telling what could have happened \nThey treated us like family with fast care. Thank you to Kim, Jaime and Andrew and the rest of the staff at Signature Care ER. I wouldn’t go anywhere else for urgent medical care. Y’all are the best!','2019-04-09 18:00:44.815000','2019-04-09 18:00:44.815000',5,'Jessika Rodriguez','https://lh5.googleusercontent.com/-bBEp99nKJ18/AAAAAAAAAAI/AAAAAAAAAAA/D-91mtrRmKg/c-rp-mo-br100/photo.jpg','13486358490203335051',1045),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrfwYJ4ls7iCDoc9qx0-pKI27pKLHk9eYkwEvd33408o1Vl5P7PHLZd_dGAgQRIpGvS6324kCnTLOXUR0D3pt8Kq6AzE','Staff was super friendly and we were taken back right away. Doctor was very helpful and accomidating to my sick child. Would definitely reccomend to anyone needing to be seen. Great location and very clean. \n\nThank you SignatureCare Emergency for taking such great care of my daughter!','2018-08-19 16:22:33.237000','2018-08-19 16:22:33.237000',5,'Alexis Bonilla','https://lh6.googleusercontent.com/-2rk1WN27VXU/AAAAAAAAAAI/AAAAAAAAAAA/b4qJksdCAZI/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7612),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrGMfczWCcV6KXe7ZU5sl02QUfKpoDAXxYrAXWmn21iSPZMyoYgOQKSGDIGMkEKdnj0OcQNfrmC7Gk8uRhK2mhhO0Abc','Great place, treated very well.','2019-05-28 05:47:16.057000','2019-05-28 05:47:16.057000',5,'Xinglong She','https://lh5.googleusercontent.com/-0nslLHfl088/AAAAAAAAAAI/AAAAAAAAAAA/6jwrt4qY34o/c-rp-mo-br100/photo.jpg','16590124370714063921',3375),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrjA44ebC621KzEqe_ZW4te1v0CxIL-e9NXMZOOPQE4gAjEEHxUx1JOQQrtddKYYjFsSByMyApCaP43Acri3TloLLG4Q','Very polite and made the testing for covid process easy and convenient. The staff is great!','2020-07-19 15:55:26.870000','2020-07-19 15:55:26.870000',5,'Jacklyn Canales','https://lh6.googleusercontent.com/-2YkUtIVuVAk/AAAAAAAAAAI/AAAAAAAAAAA/uVM1tmT_lhI/c-rp-mo-br100/photo.jpg','14748677429039074158',21715),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnRJcydWye9b4mFYbI198C0V13790U8wiwCCsDmpkIrxbp-kxWyIXOXBBTY0Zf0_bt1JeA1an0gwTSBigjmE4gOp5KsCY','Quick and nice service the people are very nice here kim and Kramer and lady at front desk was great','2019-12-07 05:17:51.843000','2019-12-07 05:17:51.843000',5,'charles gilbert','https://lh4.googleusercontent.com/-7A8zblr6GKg/AAAAAAAAAAI/AAAAAAAAAAA/tH07ZIxT2Cc/c-rp-mo-br100/photo.jpg','13486358490203335051',702),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrm1KniMBPxw5RPlTrfntZdPGE_UIJ5TQgRysLxx1bLelX2ZjlAr7oVUuv-m9cjEbNP4JcOMHbZUHsfim2gxW7ZfxLls','The staff was really nice. Especially the ladies at the front desk. And the man that was my nurse. Also it was very fast.','2019-04-13 22:02:31.015000','2019-04-13 22:02:31.015000',5,'Alannah’s Life','https://lh3.googleusercontent.com/-7ixtpv2z1sk/AAAAAAAAAAI/AAAAAAAAAAA/5tLbJ8QGnxc/c-rp-mo-br100/photo.jpg','14904078213800803294',2149),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrN0Nj3rgyW95G155k3ImwtnpThNSadHhXTZtEIdmULgACemHDSOrhybmytCa4ARcshTdY4kkAmIunp3tL7TdMhGi9e8',NULL,'2019-12-25 06:49:06.039000','2019-12-25 06:49:06.039000',5,'michelle g','https://lh5.googleusercontent.com/-bdMqWEYLbm0/AAAAAAAAAAI/AAAAAAAAAAA/mBMr4GUxmfc/c-rp-mo-br100/photo.jpg','13486358490203335051',660),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnRnGuagdt4XHlLiUdpRPxxlJGcquGLH2ogtKzeIqK6iusmFqZunIncVIiedYMKrE8J4Tyb3GGvQ9BTfVQpF3Fbzum7gc','Very good experience. Always asked if I need anything to make me comfortable, asked me if I wanted snack or drinks, and gave me a warm blankets. If you’re near by I would definitely come here!','2020-01-23 21:59:07.979000','2020-01-23 21:59:07.979000',5,'Kayla White','https://lh6.googleusercontent.com/-7EiR-U4id3E/AAAAAAAAAAI/AAAAAAAAAAA/jTk02ch821o/c-rp-mo-br100/photo.jpg','17898197009688164559',10250),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrqfs-rYiTL2bAjVNao-k9mzmlIryHId313rev_304LHpQlHGlF_9obe2WPP7edtXgH40JSXIchUziDCL82MjemXZ-cc','This was my first visit to Signature Care in every time I go the staff is always very nice and professional and the doctors are always attentive and listen and seem to care about your problems and wanting to help you','2016-07-09 18:39:33.156000','2016-07-09 18:39:33.156000',5,'Berta Johnson','https://lh4.googleusercontent.com/-O5NGS2hC--U/AAAAAAAAAAI/AAAAAAAAAAA/AskkJmUtY6s/c-rp-mo-br100/photo.jpg','17394740196501090048',5227),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrSuCmcC27X3REvSmaKhDZAVHtl8ZtKQyKwoyxrP8XK1IIuL2QzpzdDhygSBnmye4YeKG_qBTDtc_XQTJdsBbuGQ_SFQ','Came in with a severe allergic reaction and everyone from the front desk, to my nurse and doctor were all exceptionally accommodating and helpful. Once I was feeling better, Adam, a registered nurse and the facility manager, came by to see how I was doing. He was incredibly friendly and we got to talking about my attending UT as a marketing major. Upon realizing I was looking for an internship, Adam was so kind as to ask Lauren, the marketing manager, to step in to talk to me about a possible opening at Signature Care. Lauren took the time to have a great conversation with me about her experience in health care marketing and her role as marketing manager at Signature Care. I learned a lot and am genuinely excited about health care marketing as a possible career path I hadn\'t considered before. Hands down my best ER experience, and really appreciated all the thought and care put in by everyone. Will definitely be recommending Signature Care to all my friends and family!','2018-09-18 23:50:33.898000','2018-09-18 23:50:33.898000',5,'Madhav Patel','https://lh4.googleusercontent.com/-DyOaVJKIfP0/AAAAAAAAAAI/AAAAAAAAAAA/1SvXTuXIjrw/c-rp-mo-br100/photo.jpg','16891069708558046635',4430),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrxEdJrP2uwMxpLVvHfkVnQqrrEo3c5Pp8dLK_50FbGvpLxumU67JOHT-n61DgivPZ6wHcnl3LftEaM2HPmVxK81UumI','Excellent service. Exceptional evaluation by physician and nursing staff. Highly recommend.','2019-12-25 11:48:32.232000','2019-12-25 11:48:32.232000',5,'txnyc2','https://lh6.googleusercontent.com/-tqnGG922UV8/AAAAAAAAAAI/AAAAAAAAAAA/mxZje3j1Hf4/c-rp-mo-br100/photo.jpg','14567670160750071148',1161),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnrywf6HRdd6c_aEupjV5PH0lcuJr5jiE9KYuDHAe8wysQ4cG4aJQXWwcqYzNzIBPdh3xrUv6TyU8KRb6y4xRFCG-MXzg','This ER facility was fantastic and made my stay with them comfortable and fluid. The nurses Patricia and Alvean had stupendous bedside manners and made my time here enjoyable despite being sick. I highly recommend this facility to anyone needing care.','2020-01-16 23:00:29.280000','2020-01-16 23:00:29.280000',5,'Mustafa Al-Nomani','https://lh4.googleusercontent.com/-g_pYECLOpjM/AAAAAAAAAAI/AAAAAAAAAAA/hSGmaNXMcM8/c-rp-mo-br100/photo.jpg','16389487648212004696',10053),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnS3KEZr9VZ6veMJ1GcuGhcGC6BFKsnoZ0Rn3BQpO5vwPuO_zY0krHZh4iP9lm49eSe5uHTSdImozsMVK8lbMQcASqlE8',NULL,'2019-12-21 20:27:36.801000','2019-12-21 20:27:36.801000',5,'Leannda Fazzio','https://lh4.googleusercontent.com/-8kejZLJ7YXQ/AAAAAAAAAAI/AAAAAAAAAAA/GX9k42Pyn1Y/c-rp-mo-br100/photo.jpg','13486358490203335051',676),('AIe9_BFmRFRFwJGRfUDOW8jG3rXns5_V6iodmxYtbn8kH5CIpBbHxaDwdx7ECBUG6oPiuIYGab7NasdL5uQ_1zkzJY4TcL9O4EkZobr3isCRzLSDZbKw4bQ','Had great experience and thanks for the help from dyveliz brad and Morgan for the help','2017-08-16 21:20:07.096000','2017-08-16 21:20:07.096000',5,'Austin Johnson','https://lh6.googleusercontent.com/-dEsw8tdii74/AAAAAAAAAAI/AAAAAAAAAAA/J2CDvS4UE3U/c-rp-mo-br100/photo.jpg','16590124370714063921',3963),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnSBiKwfL7srAScmZLwaRW2121LKka-XvtUIPEe6EMI0z9RVeGsifRUruM2u_43t5KJu0zdcztrQfMulkW_-4MoYrhgC4','My visit was excellent!! Keera was sweet and an amazing help!! Thank you 😊','2019-06-08 12:54:36.839000','2019-06-08 12:54:36.839000',5,'Bethany Finstrom','https://lh4.googleusercontent.com/-ziWZSQ45HG4/AAAAAAAAAAI/AAAAAAAAAAA/QajImCLDHJ0/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4670),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnScOjdsCxiXHuLp8lnikKkx_4_H7fhfXOsr4_EN0P5PeNVnHpnePPD_sm2xC-yT-qMCybT71VcFumbt0cqkzOequseRs','I love Signature Care Mission Bend Location they provide the best care, \nare very efficient, and there is never a wait for Service!! I give 5 Stars to the facility and Staff Pradeep Golla, D.O., Keera the Registrar,and Nurse Selina they are the best!!!','2019-07-02 18:43:22.244000','2019-07-02 18:43:22.244000',5,'Lissette Smith','https://lh6.googleusercontent.com/-m1Zveun7vFE/AAAAAAAAAAI/AAAAAAAAAAA/D-7fowuDa1Y/c-rp-mo-br100/photo.jpg','17394740196501090048',4640),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnSCWmoqGV6tJsKWauarsPQ9CY_vEYekKtHkUASCfZ9ftFw1ovBGHmy_wWsRxIVTgKuiUwfGoI8M-LLdsK3v_dsO_aS3Q','I went in yesterday around 2AM, after being turned around multiple Urgent Care locations. Bryan, Samantha and Dr. Lim were amazing, they took really good care of me, got me tested and in and out. Amazing Service! Highly Recommened','2020-06-17 03:21:25.322000','2020-06-17 03:21:25.322000',5,'D\'Lites Cakes','https://lh5.googleusercontent.com/-iuOPbPnc75g/AAAAAAAAAAI/AAAAAAAAAAA/Tv1ugeUoh7I/c-rp-mo-br100/photo.jpg','14567670160750071148',20940),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnShcJLWaK6HTUHciM_0pnfAQPghjxGwIeawrFqviGvnTRhJooP9ToAgzVYT49V83R5QELvScZqCEGsnlsni0whejOzu0','Went here for COVID quick test- was quick and staff was extremely friendly.\nHave used them for employees multiple times. Webstie to book appointments is very easy to use!','2020-07-06 13:53:49.429000','2020-07-06 13:53:49.429000',5,'Jamie Plunk','https://lh5.googleusercontent.com/-jMCEjcD9myk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckRXlVZkbD2G4k-xSa6YwX6-6bnBQ/c0x00000000-cc-rp-ba3/photo.jpg','17394740196501090048',21315),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnSJVrzujx6AnCzGoIB54UbkvojSfVWD1O4nMY0jQf-hV_7HEHFo-AwW86_Zb9SrXTY9To_xDUpH-sa8iXNZCzWqOIXDE','Bretnie and Jacob were GREAT!! Super quick! My appointment was at 2 and I was out of there and in my car waiting for test results by 2:25!','2020-07-24 19:34:42.074000','2020-07-24 19:34:42.074000',5,'Lauren McCollum','https://lh3.googleusercontent.com/-jE-WzSvmXAY/AAAAAAAAAAI/AAAAAAAAAAA/YInUW6QkgqY/c-rp-mo-br100/photo.jpg','16590124370714063921',22652),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnskJpjY8SxkyS0TGgGVCBAugdu6i2wpSZT5RfzEznSJc4hoV_jScQLnuT9OS_XM7ODpwiJqYuVAXS8CcjYc4EY1WRJ3s','This place rocks!! Staff super cool great place to go to after a bike fall 😅','2019-07-24 04:01:56.853000','2019-07-24 04:01:56.853000',5,'Daniel','https://lh3.googleusercontent.com/-nh89uxhKhgc/AAAAAAAAAAI/AAAAAAAAAAA/fT795r2q9l8/c-rp-mo-br100/photo.jpg','16590124370714063921',3280),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnsm806vHhhtQC2tG_wRmUW8Z4tYHExbGvrQFvu8zF0Gj0wP5v2SEFuV8ey9H1kxHy9LXk7ccGn1p8yb9Qbm4msu4DbzY','Great experience for my girlfriend who was feeling terrible . \nMs.airianna \nMs.Mercy\n\nThey were GREAT 👍🏾','2017-10-25 20:11:08.382000','2017-10-25 20:11:08.382000',5,'Josh Gay','https://lh5.googleusercontent.com/-tVr2pch7o5A/AAAAAAAAAAI/AAAAAAAAAAA/WKhaDiL-BoE/c-rp-mo-br100/photo.jpg','3511292162159714121',7769),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnSMwe-Dt7p2WQSek0lmwn0eDiOzEB63szz44Eu52FuNKoLA_Rm980sJA5uoBejlDoxFKJBwnnU5UdNfITSQAxRR5cF7w',NULL,'2020-03-01 19:07:30.308000','2020-03-01 19:07:30.308000',5,'Johnna Yow','https://lh6.googleusercontent.com/-S6N3T6Q9u8U/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmLBurPcCsiyJ6wcTtOJqpfDrQf5Q/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21192),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnSp1hd2qcAHaFrP6UHgRKQy-GE60k95-GnTUI2FrsHN7NsvVUjFHPhD77UTPjXO-1rxN-JyEPIDJZl7iwk6_hyLTY-LQ','They were soo fast! and friendly, every one was very honest regarding cost and treatment. \n \nand I left with a snack and drink :)','2016-10-04 17:56:04.120000','2016-10-04 17:56:04.120000',5,'Kristal Rios','https://lh6.googleusercontent.com/-KQfAJ5WEwo4/AAAAAAAAAAI/AAAAAAAAAAA/dlc66zpALWU/c-rp-mo-br100/photo.jpg','14567670160750071148',1963),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnSsgsTcpkDKeaEpp_iwewAanisnHnsii7VlqXvNmA98jCZK8kpESRXn9wgVXWQQYnGMpHzWopihthhRjXOqIbsGcKpsc','I brought my son in due to an allergic reaction. Jocelyn at the front desk greeted us and made the paperwork process quick and easy. The waiting area is clean and filled with snacks and refreshments. We were called to the back by Alvean after waiting for only about 5 minutes. She was friendly, knowledgeable, and offered us warm blankets. Thuy took my son’s vitals, she was gentle and nice as well. My son was quickly diagnosed (so we learned he’s allergic to shellfish 💁‍♀️) and treated. We had a great overall experience.','2020-02-22 19:47:18.322000','2020-02-22 19:47:18.322000',5,'Mary Gonzales','https://lh5.googleusercontent.com/-a-EnfC3pbDk/AAAAAAAAAAI/AAAAAAAAAAA/ZLMaPNrh7cE/c-rp-mo-br100/photo.jpg','16389487648212004696',13782),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnstqrKhYQ41vvHoFUyiCCB8EyVo6peRR098UiWGuamOvT1vdfJAhvViUyADxw_Eeo0stO0yMWUfV1UD5gw3yStFaY1VY','I had a really great experience. The staff were so nice to me and funny. Not to mention everything was done very quickly. I definitely will go back if I need to!!','2019-08-14 11:52:01.315000','2019-08-14 11:52:01.315000',5,'alexandria ramos','https://lh5.googleusercontent.com/-zXcvZBeMrDc/AAAAAAAAAAI/AAAAAAAAAAA/SiQuSBYd9ak/c-rp-mo-br100/photo.jpg','14567670160750071148',1257),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnSUru1bsZeMPv-RTZk10EIx-0xi8IBObnUd_v_WZiB1TdwJHyhelN2PuEENThHtG3JbE6uWzSscB18h8blOypmNHOwKY','I had a very positive experience . All the staff were pleasant and informative','2020-02-15 12:49:57.309000','2020-02-15 12:49:57.309000',5,'Marlo Miller','https://lh4.googleusercontent.com/-32QdTqUuNy0/AAAAAAAAAAI/AAAAAAAAAAA/hI3nrVz-tfQ/c-rp-mo-br100/photo.jpg','8918455867446117794',14827),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnswhcUU4qtqc5HRg7qM0iDoGk1smfk-3BM7QHBjpG0zkcoFgzSn-KjMLDMF3vssnIqihi9Iyo06gBopEpNwFQy4ViS-k','The Staff, Nurses & Physician\'s provided very professional prompt care. I haven\'t beenn here long but,so far this is the best health care I have received so far in Houston. Everyone was urgent & polite & professional as an urgent care shoul be.','2016-01-13 01:40:59.475000','2016-01-13 01:40:59.475000',5,'Keya T.','https://lh3.googleusercontent.com/-em_lV1Hb-qw/AAAAAAAAAAI/AAAAAAAAAAA/VHBIS6ThK54/c-rp-mo-br100/photo.jpg','17394740196501090048',5290),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnt_zI1JL1ng4Yevn07Cb5H3a5Oum3deqJAyI1VzTUBa4XRNtMe4fMrWNRnhOFVzQn90Z_MblANdXZoR5pGOj2o9DvzKQ','I was in and out of this place in an hour! This included the x-rays and results. It was an amazing experience (for a bad situation) and I will definitely be back if ever needed in the future. The doctor was great and sat and explained things. The entire staff was nice.','2019-04-03 15:42:34.750000','2019-04-03 15:42:34.750000',5,'Melissa Poteet','https://lh4.googleusercontent.com/-FQX57PRFH8w/AAAAAAAAAAI/AAAAAAAAAAA/Hjqdhqcxe3I/c-rp-mo-br100/photo.jpg','17394740196501090048',4700),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnt-_NKCCiNh-bF9tNPGnc9ekSe-jZ7QJs4KarwmoAQSXd14Lk26wLH9idmoU3WhZ4Anjswbj7MhmQAC_hD_37_VnaXA0','Teresa M. Me and my daughter felt extremely comfortable with this nurse, she asked us questions, swabbed us for covid. She was gentle and genuine and overall a great nurse. Thank you Teresa M.','2020-07-16 15:40:57.233000','2020-07-16 15:40:57.233000',5,'Rosie Serrano','https://lh3.googleusercontent.com/-5PHrJtv_3dI/AAAAAAAAAAI/AAAAAAAAAAA/CiDKA-8GgzU/c-rp-mo-br100/photo.jpg','6521947413723274945',22900),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnt4lQ-EROegup3ESMaDmZ95rq1FjesgK0UJ-9F2ucqSC01THxIY-wLIzF-DSC1qSAHaJB_28SkRoyDjKiO8jqs3L81nc','The entire staff was extremely helpful, friendly and professional. It was a fast process, but they did everything for my daughter that needed to be done. It was very well maintained and cleaned. I would definitely recommend this clinic and would come back again.','2020-03-08 13:54:04.901000','2020-03-08 13:54:04.901000',5,'kim ferralez','https://lh6.googleusercontent.com/-DJKu2wQ90g0/AAAAAAAAAAI/AAAAAAAAAAA/OtWVKArZDuU/c-rp-mo-br100/photo.jpg','16891069708558046635',13907),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnt4M3MPUT429ubmG3iYalUZxdEma5lISS-5ZpTtWrEOSfyX1YhRNofgZGEhqcqcOuCLOsOlTmxJl_kIQKeRSRnQ6Xopc','No wait time. Staff was very friendly, caring, and knowledgeable. Very patient. Thank you to Ashley, Kristina, Tino, Olivia, and Dr. Wang!!','2019-12-16 01:00:43.796000','2019-12-16 01:00:43.796000',5,'DJ DOBBINS','https://lh5.googleusercontent.com/-4PcZn9Tsnds/AAAAAAAAAAI/AAAAAAAAAAA/-7ebLmaXxsA/c-rp-mo-br100/photo.jpg','12541597562633926366',342),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnT7RnBTD3H2iW7nXlHVlLxV_GfntDYOnJK6cPUFXKE6KFdJKw9VD5YMglaD7Svb4CukyGO2gtTyN8z8dnnG02nNRgx8A','I recently had to bring my mom in to SignatureCare. Every member of the staff was friendly and professional. We had no wait times. My mom had great care and straight forward billing. I am very grateful for the service we received at SignatureCare. Thank you Dr. Braun and everyone else!','2017-02-27 16:11:03.224000','2017-02-27 16:11:03.224000',5,'Nathan Lindstrom','https://lh6.googleusercontent.com/-JNFbWv4il0k/AAAAAAAAAAI/AAAAAAAAAAA/9ftvM0918P4/c-rp-mo-br100/photo.jpg','14904078213800803294',2400),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnT7WnajnOnKjAkhmy-OoD_uhU-SCup7jKXc-X2i9pdLI6ly1xjp5fXCRZQx6Yeu1ZlJRu-UwW9bLOV-QItYDu6w4ZZuM','Wow!! Kudos to the staff!! I had the pleasure of dealing with Jaqueline, Nancy, Pete and Dr Daniels during my visit. I felt horrible due to my illness, but these amazing folks created a \"most healing\" experience. God bless y\'all!','2020-02-22 02:41:05.984000','2020-02-22 02:41:05.984000',5,'Michael Carrasco','https://lh5.googleusercontent.com/-qQ9ft0EBEAQ/AAAAAAAAAAI/AAAAAAAAAAA/_q22ajnWQ7g/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',14563),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnTahhx7J70cWw9QxkAZdltbjz4TXrbryKiB3Y2O4wjj5uFHBJ1znk09HiO4-ERgnB_FPVSvj-J7BBGgGCpVuT4NP-QrU','From the time I walked in to the time I left I felt well-taken care of at Signature Care Memorial City. The staff was friendly and the doctor was personable and knowledgeable. Dr. Spangler made sure I understood the injury and how long it could take to heal. I would recommend SignatureCare and if I ever have an emergency would go back (hope not) but if needed would.','2017-12-10 17:37:22.500000','2017-12-10 17:37:22.500000',5,'Linda Clayton','https://lh4.googleusercontent.com/-GXHoeobQSao/AAAAAAAAAAI/AAAAAAAAAAA/Ip8CT_R8l5o/c-rp-mo-br100/photo.jpg','14904078213800803294',2303),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnte8hFFlDerf2HHYZYuCcPJq2p91gA5O415ElOcsfK-UM2tpuDcXrMr8_Il3QHiEPMmwsr9i8f0-IIedwVhrSdqM2pgM','Best emergency room visit I have honestly ever had. And I have been to a lot because I have not had medical for the past three years. Me seeing an urgent care or emergency care facility is more familiar than I’d like. However, at SignatureCare in Pflugerville, TX is hands down the best. Their staff is genuine and you can tell they care about who walks through their doors. Thank you guys so much for taking care of me! Highly recommend!! 💜','2020-08-04 16:02:04.231000','2020-08-04 16:02:04.231000',5,'Megan Wallace','https://lh4.googleusercontent.com/-lxdnujAuqAU/AAAAAAAAAAI/AAAAAAAAAAA/FCl9THDLmNA/c-rp-mo-br100/photo.jpg','2077061009497551125',22733),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnTek0Loi2Up7Iq9karkJNmsfwdX9cnoo8omVebPwvrzFjHzOHQPtFoY2zUNyt-q9tNnKYsafjffXVtS_prKS5cRiOTho','The staff is always so friendly. Catering to every need.','2018-12-24 01:47:55.251000','2018-12-24 01:47:55.251000',5,'Shun0 Love','https://lh3.googleusercontent.com/-sf4UDX-mtF8/AAAAAAAAAAI/AAAAAAAAAAA/HXGxIDq0lig/c-rp-mo-br100/photo.jpg','3272657195432704501',7089),('AIe9_BFmRFRFwJGRfUDOW8jG3rXntKx2zM6qupJ-i1XdoCXmevKgy8p2Lr4xoku3YF_0lnRlG3e40zt7ts1EPjC9uUFjCh1V3ru-eV21F4NJBwOWQqcbb3I','A very competent staff and a seamless protocol for getting in, getting tested quickly and out. Very kind staff as well. Thank you April!','2020-07-29 20:17:09.706000','2020-07-29 20:17:09.706000',5,'Michele Perry','https://lh5.googleusercontent.com/-gZZDFifN8hM/AAAAAAAAAAI/AAAAAAAAAAA/api14EHfvic/c-rp-mo-br100/photo.jpg','14748677429039074158',21903),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnTnSM9NC0QWYlFlmlWJVYKp2tRzzmKhdMlOleKOrDcxdKI6Ip_DXAF6sNkGjk1YkgBOQK1ASaB1Wf_9IyOhqkX7ZnaXc','Very clean, very fast service. Very informative.','2018-08-08 18:13:03.105000','2018-08-08 18:13:03.105000',5,'Josh Miller','https://lh4.googleusercontent.com/-S3z9Ysde57c/AAAAAAAAAAI/AAAAAAAAAAA/GXu-ZITKYHU/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7653),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnu_PjMWJsWjaYdSKQfg_oTaaH3qUkuAn3vDJBmQc2J9Scq_MjzFdkv0-pewT-YszWvCnqEDuT2rIb81wOvDjk-KlbkSM','This facility is incredibly nice and clean. The staff was attentive. We were helped by 2 nurses and a doctor for a just small issue. I was in and out in 45 minutes with the treatment.','2017-07-10 13:31:25.754000','2017-07-10 13:31:25.754000',5,'John E','https://lh6.googleusercontent.com/-GKGX9trNvIc/AAAAAAAAAAI/AAAAAAAAAAA/TzwQR816Pdo/c-rp-mo-br100/photo.jpg','14567670160750071148',1799),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnu6QXdRXDpRptCcc19sDEKdOQf-qevtl1MrxAeJAj-aPV41R2-eR3kzUEbHC6losw_uFX77uE2QUtlgGhbe3sPgUgwsc','This place is great! 4yo had ear pain at 11pm on weeknight. Took here and they saw him right away. Very clean and professional. Made out LO very comfortable giving him stickers and talking to him. I was tempted to go to a \"children\'s\" care center but glad I can here. Highly recommend! \n\nOwner - may be worth making it known you are so well setup to accommodate kids. ','2016-06-16 16:11:13.283000','2016-06-16 16:11:13.283000',5,'Chad Brown','https://lh6.googleusercontent.com/-lrAMgFapf-8/AAAAAAAAAAI/AAAAAAAAAAA/oG0xSJH_U5k/c-rp-mo-br100/photo.jpg','14567670160750071148',2016),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnU6sfJbsrOeQFa7sR4Z4ER4xK8DouvO6KIS9KB5A5cvu5fMKl-uSgZbikFt0TKraAqGULe-KjmihjmrBZmjH0TPT3AGs','They were funny & fantastic! 😆😱','2018-12-02 22:27:40.443000','2018-12-02 22:27:40.443000',5,'Carone Estell','https://lh3.googleusercontent.com/-FaL7HrY49pc/AAAAAAAAAAI/AAAAAAAAAAA/_Z3MX--eFnU/c-rp-mo-br100/photo.jpg','3272657195432704501',7095),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnU8EGSy4ezNB_R7tXnXZfYuJLALs_AkJFuD2NT04YW0JkbWgNweoSYEn2XqXURhDPeUXCMtpBtBECNE4FxxSxS4yBfwI','I just got out of here and we had NO wait time. I saw Dr. Leavitt for severe neck and back pain. She was amazing! The entire staff was very accommodating and friendly. I would recommend this place to anyone.','2018-04-02 06:29:45.922000','2018-04-02 06:29:45.922000',5,'charles hathcock','https://lh3.googleusercontent.com/-iNcb9lFPmOk/AAAAAAAAAAI/AAAAAAAAAAA/EMc6fUGH-Eg/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4865),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnuAWW8tNmbYKDOt3yHRdSIbK5qgckQWy6_PupfkHGkYUWPUy06wFTSJUuo02l9OZetJsl6hOpOr1RL2D7O77h4_lbdDM','This is the best er I have ever been to. If I could give more than 5 stars I would. The staff was wonderful this is my new Er!!!! They listened and new exactly what to do I feel so much better. Thanks to the receptionist, nurses,techs and the doctors you guys are awesome!!!!','2018-04-03 22:48:30.944000','2018-04-03 22:48:30.944000',5,'Shirley Thomas','https://lh6.googleusercontent.com/-OTOa-JLBH0s/AAAAAAAAAAI/AAAAAAAAAAA/pz-RUKVRZwg/c-rp-mo-br100/photo.jpg','14904078213800803294',2268),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnuGnDMD4NHi1_0gvqgtfVfzV2YSgXdXyg9KBXt32W1iOqx36za6r_YASQf5W685PUcvWl6oF6NqIhYN_WA71MaYRf9Qc','Place had a great environment. Staff was very friendly and they ran a tight ship! Lorena was amazing!','2019-12-31 21:14:59.158000','2019-12-31 21:14:59.158000',5,'Tristan Reed','https://lh3.googleusercontent.com/-fVl5gYpDcNs/AAAAAAAAAAI/AAAAAAAAAAA/klzTgPMWh8A/c-rp-mo-br100/photo.jpg','16590124370714063921',2996),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnUGW3WoDnpqQukYLBq-ePVSmMb4m7z2tTkBHGWujWTBPhJVFOQ1B-IWvRwGd0g7UNWOxj9qsnBvA8HFM1FcBD1IwGx4Q','Sarah G was a great nurse took care of our problems with no problem. I would recommend this location to anyone that needs great customer service and with nurses that care. Again thank you for your service.','2019-08-08 15:00:31.397000','2019-08-08 15:00:31.397000',5,'Michael Nelson','https://lh5.googleusercontent.com/-tJCWf_ngKQI/AAAAAAAAAAI/AAAAAAAAAAA/8ztZ104l7Lc/c-rp-mo-br100/photo.jpg','17898197009688164559',5599),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnuTJd-henJIhW6040-b9jVtX4fZ-96rhS2kybj3AYpJ08x3uL4bUuP3SxieLS21YlzwRpL7SvysdXIARecz3-tvkO_bA','Everyone was so attentive and caring! Sindy was so welcoming and nice! Nurse Reginna and Diem were super nice! Dr. Golia was very caring and made me feel extremely comfortable! He was so nice! Honestly, this was the best experience I’ve ever had. Highly recommended!','2019-12-27 17:43:08.350000','2019-12-27 17:43:08.350000',5,'Jackie Martinez','https://lh3.googleusercontent.com/-EFXatPuU-2M/AAAAAAAAAAI/AAAAAAAAAAA/4iUxnPs6Cv8/c-rp-mo-br100/photo.jpg','14567670160750071148',1156),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnUUKezTYrGFp-tzZ0EbSqD0uGZtt3SnjHugXejLvezqcZZ3nQtZc2ninNg9Rth5YyFIaWp4iM7BIhlN4k0E9rqfi7l-E','Itza was very attentive when we first arrived. Jacob and Rebeca provided good nursing care and were very helpful in answering questions and putting us at ease throughout our visit.','2020-01-20 21:28:23.330000','2020-01-20 21:28:23.330000',5,'Jacob Johnson','https://lh5.googleusercontent.com/-skLlMvH4lo0/AAAAAAAAAAI/AAAAAAAAAAA/_8wabFItpAg/c-rp-mo-br100/photo.jpg','16590124370714063921',9973),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnUWoxPeysSuOJ4RUOu-Bu-NaTgSjPR0gisz1ADQXltjFoc1ntxv5LbGFveA1SFlFR55vzDw3XqMr-TVCQXDMXPdoocbI','I have been here twice and the experience was amazing, I was very well taken care of and always felt very comfotbale! My most recent visit with Kimberley, Jacob and JR was great they are very caring and took great care of me!','2017-07-28 20:19:29.510000','2017-07-28 20:19:29.510000',5,'Elijah Garcia','https://lh5.googleusercontent.com/-fVgTH69XshU/AAAAAAAAAAI/AAAAAAAAAAA/zF3r6mekm_Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3969),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnuX6kQTkQEmRZ3W1A_uwW7zTH0XWxtQdBFlIoE18N0NNQgdd5F2jFWr0PfgKqASE_cbF9yZUiaiMhXpMHPQoyP-UfagU',NULL,'2018-05-29 12:01:35.329000','2018-05-29 12:01:35.329000',5,'Angela Sanchez','https://lh4.googleusercontent.com/-4nrnsgmxbPQ/AAAAAAAAAAI/AAAAAAAAAAA/wGGbNeGMwIA/c-rp-mo-br100/photo.jpg','17394740196501090048',4844),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnuyCuRBFmCuuH9FoAxic6ca_bzRck4NItDKnZBZmVuZkVuccQQX51fIWZhJGxVKFdbilaKHgqMK3oW7nYyhal-J4Irps','Kathleen, Kimberly, Cat, Baker, and Techa were wonderful! I had such a great experience here. Great service and very informative!','2018-04-11 02:38:39.116000','2018-04-11 02:38:39.116000',5,'Brittany Roller','https://lh4.googleusercontent.com/-dBad_dU3vPg/AAAAAAAAAAI/AAAAAAAAAAA/eNHythEQGGg/c-rp-mo-br100/photo.jpg','16590124370714063921',3841),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnV_4fCpy5PdL88jFUs5fKPCj4wNsszs7ggFuIiSQqCK0Cy0L9uSA_A2KNsB2RiuLYiBVK4aJX9UJlFrze038sKdwSWW0','Everyone Was Very Kind And Professional....From The Reception, The Nurses, X-Ray Tech And Especially The Dr\n I Was A Nervous Wreck. THANK YOU TEAM!!','2020-02-17 03:48:35.264000','2020-02-17 03:48:35.264000',5,'kim shipp','https://lh3.googleusercontent.com/-R9yse-SKjBY/AAAAAAAAAAI/AAAAAAAAAAA/Vld4p2EweOA/c-rp-mo-br100/photo.jpg','17898197009688164559',14166),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnV-EbTxSjXSILrJHp0R-aLXop7uryTvyqpruhSXJTOxMs5-g8-3eqUygLGjDr173M-xp8NhILMZeSpRNNL7lFSdlkDWc','Came here with my boyfriend and this is by far the best ER we could have gone to! This staff is incredible, from Dr. Iheme to Nurse Alvean, truly an awesome team of people! I knew when Jocelyn greeted me with a smile and took me to the room my boyfriend was in, offered snacks and drinks, that we were in a great place.','2019-12-04 18:21:36.499000','2019-12-04 18:21:36.499000',5,'bchupe','https://lh6.googleusercontent.com/-0zqF2Jq5Rr0/AAAAAAAAAAI/AAAAAAAAAAA/SmfFoucZCmk/c-rp-mo-br100/photo.jpg','16389487648212004696',2580),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnv4hixVJ29EXWnXkdjJbSBkJibwp1AJBQcgri7o7fycRjpyiHPXtVF4-neXzFCQ8v306s7Pxzz0QHPPIKH_XUvydYODI','It was amazing! Would deff come back! Kotey was very helpful along with Fatima and tanishia and zinaida! She took care of what of sickness I had! And Sarah gave me and warm blanket :) loved all the service I have gotten','2020-02-21 05:30:53.595000','2020-02-21 05:30:53.595000',5,'Brieanna Arevalo','https://lh5.googleusercontent.com/-hdlpXxAz5Pk/AAAAAAAAAAI/AAAAAAAAAAA/kkznx6sbVi4/c-rp-mo-br100/photo.jpg','17898197009688164559',14145),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnV4Jly__SHH6869CQDgOFpWQGUGyTQrqZq2Y1QE3fD6KAn4q9mauxEm9-kQewaYWY5xUaZq3NRjgjDIof0sKm8f303IA','Amazing service and care from Jennifer at checkin to Erica and Ashley to the back. They me feel like I was the most important person here at the time. Plus I was in and out in 1.5hr!','2019-07-18 22:50:32.117000','2019-07-18 22:50:32.117000',5,'Tricia Reed','https://lh3.googleusercontent.com/-LlgfhcoQ27I/AAAAAAAAAAI/AAAAAAAAAAA/CsxS-c8eTI4/c-rp-mo-ba3-br100/photo.jpg','8626688543755174284',8428),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnv6ykCwHmVSVRXwdrkl8ahLGT2pD-SiQmXWWjCD3LvVmxwa93jZocSEdTJ7T1qcIHAw36QBaWMrUPaWwbXKtsuMs2BJg','Great job by the team','2020-01-10 22:58:44.839000','2020-01-10 22:58:44.839000',5,'Reyna Colejio','https://lh5.googleusercontent.com/--bCzQCRk0us/AAAAAAAAAAI/AAAAAAAAAAA/o4eeNzQ0phc/c-rp-mo-br100/photo.jpg','14567670160750071148',9473),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnv84L-MeQObfXXVMLKDhZOJzJeUmaHdzDB6GatLrkmyL8XXXz7Rqt3TbmhuWZG05i4UIel4E2nyLajvK0En0T8DBgquo','Wait time was less then 5 minutes. Kendra at the front desk was really nice and explained paperwork well. Nurse Jacob was very accommodating and even asked if I would like a warm blanket. Highly recommend over other urgent cares/emergency rooms.','2019-11-07 14:31:01.169000','2019-11-07 14:31:01.169000',5,'Andrea Crisafulli','https://lh6.googleusercontent.com/-y21jI7WyFqs/AAAAAAAAAAI/AAAAAAAAAAA/me1WQQ6-Xtc/c-rp-mo-br100/photo.jpg','16590124370714063921',3101),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnv9m20O8C3Ik0_n3OqgBU7nZIDupLT93APlCvgTC26VMF_Ml_yjfhTDp8bRtYxCV1ECTdZL03EPk6PiJfu2qhRwAt96c','They were so amazing and nice. Made me feel like their friend. They explained everything perfectly. Thank you Jennifer, Susie, Matt, and jorden.','2019-05-22 13:16:37.903000','2019-05-22 13:16:37.903000',5,'Montana McCraw','https://lh4.googleusercontent.com/-c7vqBUUzCGY/AAAAAAAAAAI/AAAAAAAAAAA/X97obvUClfM/c-rp-mo-br100/photo.jpg','8626688543755174284',8477),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnvbO_irewyv4mcYrsiYbP0t0oSHgsnRQ044ixRCq3yjSyf6LVhCadi10W-KHB7yTU7suzRUx_NntmTognekRJXzjVbLA','This had to be hands down the best experience at an ER I have every had. The wait time was so short and the staff were so friendly and willing to go above and beyond, it was maybe the first hospital experience where I really felt like someone cared about me more then money. The facility was so clean and organized and the medical care was fantastic. The next time I am faced with an emergency visit I will for sure go here again.','2020-02-07 18:50:12.689000','2020-02-07 18:50:12.689000',5,'Andrea Rushton','https://lh5.googleusercontent.com/-uT9YJRxC_Ug/AAAAAAAAAAI/AAAAAAAAAAA/HIrWt2i_aEE/c-rp-mo-br100/photo.jpg','17898197009688164559',14182),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnVhObsvHr45Jdxo1WrxgfpJ1yMD0eDeJ7hAy4orMZ8rZKYi-mVxlg_KlkT9tLb191hIgbJ_tA81Kcd18G25BeByL-hZ0','Cody and Sam were very helpful very fast service in and out right away did take very much time out of my day great service friendly faces I would come back again','2020-07-28 22:08:46.280000','2020-07-28 22:08:46.280000',5,'Mark Mitchell','https://lh5.googleusercontent.com/-VLHBfs5SQVo/AAAAAAAAAAI/AAAAAAAAAAA/hDp8xq67r6Q/c-rp-mo-br100/photo.jpg','2077061009497551125',22779),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnvjkBrQWYHhCfIm8yCj8wS-5-tFJBbcy8RXj5GGuJ0IYYHbtNQBd5uXjq7welbtOIOdNaJ_AHAPqikD_IoThJLPB-a0U',NULL,'2019-02-19 22:54:59.006000','2019-02-19 22:54:59.006000',5,'Joseph Krum','https://lh6.googleusercontent.com/-rfiljstMJDA/AAAAAAAAAAI/AAAAAAAAAAA/tEfztU-pxbU/c-rp-mo-br100/photo.jpg','16590124370714063921',3538),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnVkAp1CWT0Q8-6lFqv8nf3_N1c_1pnxZq4KvBygNXXuu5YBKYoBya-ZMkz02eCVsnh7qFRwEDVJJjyNZRKo1vGinwDaI','Went in to get COVID-19 tested. Didn’t wait long at all in the waiting room to get checked in once all the forms were filled out and signed. Explained all of my symptoms and got tested with a nasal swab. I prefer a flu test over strep test any day so a three second nasal swab with slight twisting of the q-tip stick was easy! Made my eyes water but no pain otherwise. I can see how some would say it causes some discomfort.\nCurrently waiting to get my results that should be done in about 15 minutes. \nA very professional and courteous experience from check in to walking out!','2020-07-29 16:41:15.841000','2020-07-29 16:41:15.841000',5,'John Anderson','https://lh3.googleusercontent.com/-NoBLGnk-lAo/AAAAAAAAAAI/AAAAAAAAAAA/O7wFYH3yNAo/c-rp-mo-br100/photo.jpg','2077061009497551125',22764),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnVkqVhhXm_0XUbnfLvUiH19MkyeFD1UtX1PJryhJ4jqAAw_A0PJ9jiYETv1yLZVYXH_VP3uLCQp4UNvY5O2otV4C0460','From the moment that I walked into the front door of the facility, until I left, it was “5 star” service. The empathy that was shown as well as the quality of care that was provided by the entire staff was stellar. I would recommend SignatureCare Emergency Center located in Stafford, TX to anyone.','2019-03-18 12:58:39.151000','2019-03-18 12:58:39.151000',5,'Ivory Noah','https://lh5.googleusercontent.com/-7EZ_7vM6y10/AAAAAAAAAAI/AAAAAAAAAAA/vadO4pjLGaw/c-rp-mo-br100/photo.jpg','8918455867446117794',9154),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnvKsTkBtHft8artAVxOBgK7h8sbNxQIbXVDUIO83weej2E4pxBr6hmR3k2HiKJpd3L4GDUXvy7VK3NbzregjB4P8RoCk','Thank you all- Dr Yost, Gunnar, Karen, Kim Domanski!\nVery kind and wonderful care. Thank you so much','2020-01-29 08:53:22.671000','2020-01-24 21:45:59.678000',5,'Sherri Campanini','https://lh6.googleusercontent.com/-S5vWASfKgUM/AAAAAAAAAAI/AAAAAAAAAAA/XcmFJDHdNXQ/c-rp-mo-br100/photo.jpg','3272657195432704501',10278),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnVMqkYoxJY7tpAb-lr1wMXsZm1oaQg1IsLdK0h3aV-YtNOm3oIkdPtWA5h2ZmQKpn1jtE2EfitsAG2zA07Umf9i1QSTA','Anthony and Natalie was amazing','2018-12-05 19:46:15.978000','2018-12-05 19:46:15.978000',5,'Sierra Henderson','https://lh4.googleusercontent.com/-skNvJP9TW5w/AAAAAAAAAAI/AAAAAAAAAAA/ou6DCA8Q4eA/c-rp-mo-br100/photo.jpg','16590124370714063921',3624),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnVrw4yMIH5MuhzK7o47r0SYPpv6QoTxdClj6vF2TNfP5ExZ_VAXeZXTLSrEMf93lj3LWV08JpFt8vcpv8qfK8ycIQ46Q','Service on 11/17/2019 Dr.Faig, Nurse Balliu along with the customer service rep at the Copperfield Signature Care were amazing. Service was rendered in no time. Simply great customer service. I appreciate the care I recieved for my family.','2020-01-23 05:08:05.706000','2020-01-23 05:08:05.706000',5,'Kymora Thomas','https://lh3.googleusercontent.com/-fRaA37Ctm_M/AAAAAAAAAAI/AAAAAAAAAAA/MMMDeSW0Zvs/c-rp-mo-br100/photo.jpg','17898197009688164559',10251),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnVtiAeCnhK94r4FBJPZ94tLNQpeu2DgldwITTbBmN7Jj3j64XuljDJbNXZISrQcKO2MxGuxtJPp8aFhUJok3rLQN3k58','The level of care was above and beyond my expectations. Clean facility, as soon as I checked in I was already being called back to be seen. The staff is very friendly and work very well together. The nurse even called me back the next day to see how I was feeling. Thank you Jasmine, Brian, Janie & Dr. Mauldin for taking such great care of me, and making my experience as stress free as possible.','2019-05-05 18:33:58.796000','2019-05-05 18:33:58.796000',5,'Alicia','https://lh4.googleusercontent.com/-OfpX8TJ2DcY/AAAAAAAAAAI/AAAAAAAAAAA/7cvTSkuEBX8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnVtLwHUY_rl6X48-nbpB4OyM0cQMTeBz22YboPMTTUevObSiLQELyF2bIoAIo13r_rR2FffyPzvll4CDSfvPNFrpRQwk','I had an excellent visit here. It\'s really nice ','2017-09-04 20:05:43.571000','2017-09-04 20:05:43.571000',5,'Kynder Lewis','https://lh4.googleusercontent.com/-vikxzxszhr0/AAAAAAAAAAI/AAAAAAAAAAA/vFeT2ULQVgo/c-rp-mo-br100/photo.jpg','8918455867446117794',9364),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnVYjQ-xQfgWzdgoTgcuo14TsDdsABtI0QFCvn1lUNmgiSBD7PKcZzYjaMTlJgNfHFueWZDokZFcazllh1D6831G1XE3M','Lorena and Amanda at registration were super efficient and kind while getting me checked in. Nurse Matt and Nurse Jacob were great too and Morgan was super funny and eased the stress I was having. Additionally, Dr. Cabaniss and Dr. Sara were super nice. All in all it was a great visit and I would definitely recommend this location because of their great staff.','2020-07-25 16:14:46.955000','2020-07-25 16:14:46.955000',5,'Nikki Restivo','https://lh3.googleusercontent.com/-W4CjGh4P51k/AAAAAAAAAAI/AAAAAAAAAAA/q2inRdUNjr4/c-rp-mo-br100/photo.jpg','16590124370714063921',22647),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnvZ3L0l1xqUufQN5uBSAz5ZD_IzsA1_yUwCTj8RiMDe19J0tvvSGMOnRk9lt1HgvZ9NH8HWWkGVdgoyc9sxqpMvDSycY','Alvean , Jordan \nGreat visit , good communication .','2020-03-02 20:48:42.498000','2020-03-02 20:48:42.498000',5,'Keoshia Henderson','https://lh4.googleusercontent.com/-qkVymqjIlJk/AAAAAAAAAAI/AAAAAAAAAAA/X4EXSO_GJAc/c-rp-mo-br100/photo.jpg','16389487648212004696',13745),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnW_rKA3_Z8defeqXpR5TWxWVNiuEbq0nAvhIu2KtWSSop2f7uWNrrD9r74uiOkUChwxX2I7bAEXGveUh1PBtgBJ7rxSk','They have the best staff to make you feel very comfortable and at ease from Tory at the front desk to Jasmine. It was my first time ever to go to an ER by myself, but I can say the staff handled my situation in a timely manner. They were very informative, patient and caring.','2017-04-12 06:53:25.195000','2017-04-12 06:53:25.195000',5,'Adrianna Coronado','https://lh4.googleusercontent.com/-2sK1cpgr2zY/AAAAAAAAAAI/AAAAAAAAAAA/bGlN7963jjA/c-rp-mo-br100/photo.jpg','3511292162159714121',7845),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnw0X2adnkuNZsxRKtKpd1gdgshOW_bsRMvbGunRPRiIVG0x9z_uOhauLzmaU4CHTzWSBKMd9i5dFYTwE84Treq4r004E','I came in with my boyfriend over his bad cough/sinus infection and the experience was great! The girl at registration, Naomi, was very nice and helped us as soon as we walked in! Doctor Harjai and Nurse Jacob were very polite and attentive! The x-ray tech, Becca, was very nice and my boyfriend’s x-rays were done in minutes! The care was very fast and we were out in less than an hour! Highly recommend!!','2019-09-15 18:08:56.150000','2019-09-15 18:08:56.150000',5,'Destiny White','https://lh5.googleusercontent.com/-V1osUi591CY/AAAAAAAAAAI/AAAAAAAAAAA/ZBS6nLRT6Ro/c-rp-mo-br100/photo.jpg','16590124370714063921',3204),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnW1AAh2tXqMltzGdR-PHAaNotQSMuj6a3l36ZsyZRXVG1yNzZcO1lwtO-ZCjDSvxc0EKEvMRXoVoMBzB7hSQexy7qk5E','Most amazing place ever','2019-07-10 22:10:32.437000','2019-07-10 22:10:32.437000',5,'Jason L','https://lh6.googleusercontent.com/-NM5anFIXrmE/AAAAAAAAAAI/AAAAAAAAAAA/JqhgJMxlnqI/c-rp-mo-br100/photo.jpg','2694018788013845459',6114),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnw48w57zxYiOQDVByOQrlm8CUO0odFLhVeWnBl7Wi5E3sHLUhZvwk6ytOAJAcpmRjtgJ92qQ-0_9XEl2Um_5IR3JcFO8','The receptionist and staff were welcoming and friendly! Highly recommended 👍🏾','2019-03-17 12:44:24.626000','2019-03-17 12:44:24.626000',5,'Autrice Carey','https://lh6.googleusercontent.com/-KZd4QXCuvyY/AAAAAAAAAAI/AAAAAAAAAAA/sP7JilClzBk/c-rp-mo-br100/photo.jpg','8918455867446117794',9155),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnw4AkFb8zmufkrwwC-JhOlPgWAcdc1HFIy1Gd_XdfecXPzmWn7i4Yg515mYbEpkFsthpxpZYU3ftDmB84iXcSNLzuNCg','I had such a great experience at this location especially since I walked in stressed out and worried about being sick with two kids at home. Ashley at the front desk was amazing, she made me feel so ease and was so helpful and patient. She also was really informative about the insurance process so that I didn’t have to worry about getting a big bill later. I was also super impressed with Dr. Appiah. He took extra time to talk to me about my situation and gave me lots of information and answered all of my questions. He was funny, personable, and I felt he was very knowledgeable. Even though there’s a location closer to my home, I would probably drive out of my way just to go back to this one.','2020-05-20 12:49:32.673000','2020-05-20 12:49:32.673000',5,'Jessica Young','https://lh4.googleusercontent.com/-j7fdzJsLxaI/AAAAAAAAAAI/AAAAAAAAAAA/FgBrLtg_f1g/c-rp-mo-br100/photo.jpg','8679688254631342173',22257),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnW4g4iP8slWTnRB3tk70QbAajK4mQ3aDjZFyH5fCVyBtgQ4AFhqDxj5T-VOa6CbrZHKeehSuC12Oa2sjIDmTnVq0gXR4','Great experience, and wonderful staff!!','2020-07-18 20:57:18.358000','2020-07-18 20:57:18.358000',5,'Jamila Gilliam','https://lh3.googleusercontent.com/-JWCoh1RRIz8/AAAAAAAAAAI/AAAAAAAAAAA/_8SqUEeB_pM/c-rp-mo-br100/photo.jpg','14748677429039074158',21724),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnw5FZU42cOHPObA-ce1iiLaIc7j2Js9FxS8edTG5P3DBfptrd52Lbs-iyRgh81PKh7AG1sKJG7MvmQufK8Ap5aa_Wf5c','This place was top notch in service. Very kind and friendly, especially the service desk lady, Shanna.','2019-12-16 02:29:14.741000','2019-12-16 02:29:14.741000',5,'Alyssa Connelly','https://lh3.googleusercontent.com/-c-dDAFxsgWA/AAAAAAAAAAI/AAAAAAAAAAA/hAEUxiInOpc/c-rp-mo-br100/photo.jpg','6521947413723274945',8055),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnWaFebig4wm0cWrAcMLWIDUwL5NSTYHKa_5m4gjmQApBt3pQqdw-yoxBk5yNcFX7mXQwYqqtISBvSXPH7q5wW4vEfBW8','This place is a nightmare. The staff is friendly with, but this does not make up for the complete incompetence of their system. We scheduled a 9 pm covid-19 rapid result test at a cost of around $200. We had to wait in our car until 12:30 to get the test and the results which were supposed to take 5 minutes.','2020-07-10 18:34:56.178000','2020-07-10 18:34:56.178000',1,'G Andron0462','https://lh3.googleusercontent.com/-ESVb13f480s/AAAAAAAAAAI/AAAAAAAAAAA/pjv9aa04dE8/c-rp-mo-br100/photo.jpg','2077061009497551125',21596),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnwAlmFiL19sFr7vO3dAt9TzoShRuzU6QFt-gKuO3iM0ZR2faYAdv4DLGfyj0PHTIO66InX5hQ12AteKK4ZKfdVw63WZg','One of the best emergency care centers I have been too. Everyone was very professional and they took care of me in a very timely manner. Rebecca and Jacob were awesome! They made me feel comfortable and made sure I was okay at all times. I definitely recommend this clinic!','2019-06-30 22:19:47.331000','2019-06-30 22:19:47.331000',5,'JJ Johnson','https://lh4.googleusercontent.com/-tbwuL3oUqpA/AAAAAAAAAAI/AAAAAAAAAAA/DLp7vzqA0aY/c-rp-mo-br100/photo.jpg','16590124370714063921',3328),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnWbhEis4v5AQQASRlgoYZr42boi6ZguwfUhbwqp-qayQBXA7LYDnxoA0SKLrnQW75OAGpyu_fN8mgwoiuoJ4HY67VMdk',NULL,'2020-02-10 21:31:56.373000','2020-02-10 21:31:56.373000',5,'S.R.C B.I.G','https://lh4.googleusercontent.com/-X3UajQ5EJaI/AAAAAAAAAAI/AAAAAAAAAAA/0-qtUf2QWmw/c-rp-mo-br100/photo.jpg','16389487648212004696',22593),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnWe2u2swgns-BWAA7g_MyNtIxWYph_lvHIcN75qSETckyEWAnv8z_B-zL6W3zl50-oac1Qx6BUimudujXKlbz9UtPmt8',NULL,'2019-06-09 18:50:18.225000','2019-06-09 18:50:18.225000',5,'fleet Alejandro','https://lh4.googleusercontent.com/-cti8EZRlAuM/AAAAAAAAAAI/AAAAAAAAAAA/nA9KGVF89eY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnWeufbM7muq25K0uba0bkCK28rQUh5fXHkp9C1CFqsCWZO-NOIkSUyVHgJISUSZ6_qAhH0S-bCgNfhVEOXu5kGL87LKY','Great Care, customer service from each staff member that assisted. We are thankful, that your center was available after 11:45pm on Christmas Evening Thank you God Bless','2017-12-27 19:22:15.207000','2017-12-27 19:22:15.207000',5,'Amada MartinezNino','https://lh6.googleusercontent.com/-1yiMKz1887M/AAAAAAAAAAI/AAAAAAAAAAA/GqETAeBFZ88/c-rp-mo-br100/photo.jpg','3511292162159714121',7746),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnwf1DBGqFheExXMZ6RHA6A7crDVl0gYAezJ3xg3hdR_Nofnbax0LrKqZbVW5m4q7vxIRv1F2iG5IFEB-_19d5iiOMvP4',NULL,'2017-01-18 09:36:06.618000','2017-01-18 09:36:06.618000',5,'Felicia Justice','https://lh5.googleusercontent.com/-JF2uCSn5E80/AAAAAAAAAAI/AAAAAAAAAAA/kMktsjN-HAE/c-rp-mo-br100/photo.jpg','17394740196501090048',5129),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnwGUBwXaoz7uJuYpLVhyF6Gelr4HnQfDNCP1VnxscnR3DhOAdUXpYnOTtDoXp3zeeDOEOqYYVocqzV8WRsy8PYwinlrM','I had been fighting a cold going on a week now that just wasn’t getting any better so I decided to take myself to an urgent care. I found the Bellaire location to be very close to home so decided to come here. I’ve heard nothing, but great things about this location and I have to say that I completely agree. From the moment I checked in with Mary Ann I felt welcomed. She was very professional and explained to me the process of registering and what was needed from me. After a while I was called into the back to get my vitals and even the staff was great! I was seen by several people Blake, Yas and Doctor Ding who were all incredible , but I must say that my favorite was my rad tech Sonny. He was very attentive and had me laughing a bit, which eased my discomfort. The wait time was very short and smooth. I would definitely recommend this place to anyone should you have the need to visit an urgent care. I don’t normally like hospitals, ERs or urgent cares, but if I have to go to one this is definitely the place to be.','2020-01-28 21:28:39.899000','2020-01-28 21:28:39.899000',5,'Raenada Mason','https://lh3.googleusercontent.com/--DNwt-PHJAA/AAAAAAAAAAI/AAAAAAAAAAA/lw_3QIX5HuU/c-rp-mo-br100/photo.jpg','8679688254631342173',14779),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnwLQUjdFXozKGx6F--hhgEhMI2ZFy0qgzDllfvC51-ZjfjbDfl0hMrwQLIkqq_29W6RwucxG4XwZdpbTUL_7dW4xjYMc','The facility is very clean and well maintained. The lobby is comfortable and is equipped with coffee, water and light snacks. Everybody was very kind and helpful throughout the process. The registration department, nursing and the doctor were all exceptional. We will be sure to return for all of our urgent care needs. Thank you again!','2020-01-04 00:46:44.440000','2020-01-04 00:46:44.440000',5,'Grace Yerkes','https://lh4.googleusercontent.com/-jvTDH3vtjmQ/AAAAAAAAAAI/AAAAAAAAAAA/D_TzYoR2zMo/c-rp-mo-br100/photo.jpg','16891069708558046635',4097),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnWLrqZf5fAdv9gl9kN_EpT64VmRe-ZJ1m5Tf_jV8waecx9lFFnd8ydhmBD1CbIu7V11O43qkH9S7JVxz8kRniAjC7fX0','Signature Care never seems to disappoint. Every single staff always makes the patient feel welcome from the moment we walked in to the end being discharged. LOVE THIS PLACE','2018-07-06 11:59:06.502000','2018-07-06 11:59:06.502000',5,'Rita Aguillon','https://lh3.googleusercontent.com/-GRPCAmvhtcM/AAAAAAAAAAI/AAAAAAAAAAA/NbClzNFVm08/c-rp-mo-br100/photo.jpg','14567670160750071148',1606),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnWna0UQd1dStn_LqeiA88rp0Lo7LTNu6Si6o2UDKetxLoYWV0uuis6T4LGVwvqHtcHIVLVQ9JZWKY1fSahaz4BnBUj18',NULL,'2020-06-14 17:21:54.452000','2020-06-14 17:21:54.452000',1,'Harka darjee','https://lh3.googleusercontent.com/-gsjYma0iG9g/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnQhaeWMysjVjNpVeILNQ5U6T96rA/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22081),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnWO7TWK55Aie6xXcAkSy4tBhJWEtaQskuMDwk1g6Zb05yYMYulaglJ4wGn4lP_KJ-uEPqDaH5dV7HqYMUuLV1b7i6yug','Excellent staff DR.Golla is excellent and the nurses and front staff, Keera was helpful as well. They took care of me 100%. I came in hurting and I feel so much better. Amen Anen','2019-07-20 14:50:07.535000','2019-07-20 14:50:07.535000',5,'Hillsglobal Enterprise','https://lh4.googleusercontent.com/-p5sgiRS6Bgk/AAAAAAAAAAI/AAAAAAAAAAA/07F--ufXMx4/c-rp-mo-br100/photo.jpg','8679688254631342173',8819),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnwRgOYnN4EjswaRHHm9gLUu35s5FqkBGNU5dO3aMjItnvS8g6DY5FhMH1GmJeyD-B7z_uadL-zQTMwL5nw9wwQXsWMuw','All of the staff were friendly, informative, and provided extremely fast service. Aerial, Lia, Patel, Kat, and Mayra all made my experience comfortable and easy!','2019-01-19 03:49:52.478000','2019-01-19 03:49:52.478000',5,'Mercedes Mosby','https://lh3.googleusercontent.com/-_lLteHQR_6s/AAAAAAAAAAI/AAAAAAAAAAA/FVGg6bElmtA/c-rp-mo-br100/photo.jpg','12541597562633926366',561),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnwv05g_p7Wq1e6VskqyOk8eiZo8D36J9l6QAqSnl-lQMWQIhdNh683_q5ZvX0S7PDaHoHsk_wLDw4Sf6-VyGADs9rzuo','All professional!','2019-04-24 02:06:55.658000','2019-04-24 02:06:55.658000',5,'Jennie Smith','https://lh4.googleusercontent.com/-A3MIVePeVcY/AAAAAAAAAAI/AAAAAAAAAAA/wDoaRdQMVBc/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5761),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnwvKpzJxFNwqy-ROde3Jg0Dy0x7cnJB-YSiwFMrf-bBTNfL6QYzCtMYErpC0-uDyRWK_b9Us-wSxRy_Tik2xarwxAefc','Dr. Tran, Troy Nurse, Marvin Radiology, Jesus Registration, Sean ER Tech. I was well taken care of tonight the whole staff was wonderful.','2019-09-25 04:02:11.454000','2019-09-25 04:02:11.454000',5,'Marvin Marshall','https://lh6.googleusercontent.com/-dH_OSVAwPVs/AAAAAAAAAAI/AAAAAAAAAAA/FimBkVfOOoM/c-rp-mo-br100/photo.jpg','16389487648212004696',2883),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnWZXDKj-LCEzy_04kErZOVEOmlHsoe6IlfPjug1DmexUPK7RMxQ5XEhJkFIN-dDCUksWQQg0JyitzvnrNk1QQlM2VsdI','Highly recommend this signature care very caring warm hearted and professional. Care from radiologists Tricia was great the whole staff was wonderful and took care of needs highly recommend','2019-05-15 15:59:12.573000','2019-05-15 15:59:12.573000',5,'Dee Joiner','https://lh6.googleusercontent.com/-cdOEpFbprx0/AAAAAAAAAAI/AAAAAAAAAAA/qXe_aIh3Ads/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnXbiCIseJYOA90l-npcu38uogjYFzLFpCjnC4deXqY9geuOaYLafjx5Psd5RaAWB5PMVzCMs8Y43h0wF_guuG2QRQKDw','Great experience the whole staff treatreated me like family.','2018-07-30 14:30:23.206000','2018-07-30 14:30:23.206000',5,'Teaira Johnson','https://lh4.googleusercontent.com/-1abZOi2CO-0/AAAAAAAAAAI/AAAAAAAAAAA/7rHw3FhHD9g/c-rp-mo-br100/photo.jpg','14567670160750071148',1579),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnxCNTEMsbV1kpJ3SAGABYiZSnVRVo0U8x2yj_htCr-abLwdNLTUuXraoK-QP-NhP03SeaEREuH7VaVu4nBvf2K9KrT4Y','I had a great experience, there was no wait, the care was great and the staff was amazing. Kudos to Katrina, Dr. Ybarra, Cheney and Theresa!!','2019-10-26 04:19:21.583000','2019-10-26 04:19:21.583000',5,'Jessica Adams','https://lh4.googleusercontent.com/-exQQfDehY3Q/AAAAAAAAAAI/AAAAAAAAAAA/BOvhKmsm_Gs/c-rp-mo-br100/photo.jpg','8679688254631342173',8773),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnXCOIwCLTYNB_-RqwYDhMgw4KK64XRdNk2qh5a80ht4KdyJPoFYepLsOwVt53JsoFtEYeK498T_kRxcO7PDVZZ6pmkkw','Entire staff was great.','2019-07-17 03:39:33.924000','2019-07-17 03:39:33.924000',5,'Patrick Storm','https://lh4.googleusercontent.com/-Zo0YljRtMcQ/AAAAAAAAAAI/AAAAAAAAAAA/OwW68I6qAH8/c-rp-mo-br100/photo.jpg','17898197009688164559',5630),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnxCtgyPFVMsd-52cdEQE8xqh4bbW9OUCQJmOIgz44IMv8dlil2iP2KdWLyJ7_qZEk3_KZ39kXK0OEPIAJ_674AzB0lak','Nurse Fanny, Nurse Eda, and Dr. Wang were excellent to us. They were all very warm, welcoming, accommodating, and addressed every single one of our concerns, taking the time to carefully explain what was going on in a concise and understandable manner. We know exactly where we’re heading if we ever need medical attention.','2020-01-11 23:47:59.044000','2020-01-11 23:47:59.044000',5,'Alexander Tran','https://lh6.googleusercontent.com/-LSIRGvut26o/AAAAAAAAAAI/AAAAAAAAAAA/xXtn3EAfSRU/c-rp-mo-br100/photo.jpg','17394740196501090048',14053),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnXnsUO_qAZqEpl0ru8uy6Q6nK_cb7sYu8bVpmB--vj93tXb0K00zGARJArIPXmH_rt2aenKFsGNoIGxZ8Fc70MKv19rA','We had an amazing experience with Dr. Vaagenes and Jacob. They were very accommodating here at signaturecare, from the front desk to the examine rooms. The doctor and the nurses was very helpful in explaining all the procedures and providing anything we needed. Definitely would recommend anyone to come here and meeting the nice people here hopefully without any major problems.','2019-07-14 17:44:18.146000','2019-07-14 17:44:18.146000',5,'Mujahid Alhulailah','https://lh5.googleusercontent.com/-vJrl12wsSWc/AAAAAAAAAAI/AAAAAAAAAAA/b2gY_vgGq1E/c-rp-mo-br100/photo.jpg','16590124370714063921',3296),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnXpLqgSN4ukp8d18xGrx9-4hI0ndTHVABePvrzIv5UbIQrwPzeBDUzEg6MDfRtpA2xH3OyU6IJr-Pm9ZBZkLxpwG0uXg','Service was great! Kim, Sherri, and Lucas were all excellent!','2019-07-23 17:40:16.098000','2019-07-23 17:40:16.098000',5,'Emily Fuller','https://lh5.googleusercontent.com/-tfvE8mbX2cc/AAAAAAAAAAI/AAAAAAAAAAA/uOzNQIbGkZc/c-rp-mo-br100/photo.jpg','3272657195432704501',6928),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnxraEKiPTY23OTzUekX4yKLW-yOcim__yzJOqssEuM0F2b49KyRWMLZZu3Fl5Ya902Bnh5Y0P-SjTr5NXiRk1gAinlug','Kendra was nice from the moment I walked in. My nurse Brad was really professional as well as my Radtech Starovic. Dr.wang looked out for my best interests and gave me great advice to feel better and I would definitely come back.','2020-03-07 02:58:40.095000','2020-03-07 02:58:40.095000',5,'justinthegod','https://lh4.googleusercontent.com/-PiUOwDM7Q5g/AAAAAAAAAAI/AAAAAAAAAAA/4r1YtWWd5_c/c-rp-mo-br100/photo.jpg','16590124370714063921',21036),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnxTpL2NWaz1zoqctKk4Laovzxmvz9ylCi2fnDNjqy79AtLeQBKp6riCsJbyrd14GmbbMc0TrqNtCF_2YZtYDzcWGoLqc','Dr. Pham, Naomi, Annie, Ekaterini, and Ezequiel were AMAZING. Very quick and easy process. We were in and out in no time ! THE BEST ER','2020-03-14 16:02:29.970000','2020-03-14 16:02:29.970000',5,'Janae Jones','https://lh3.googleusercontent.com/-dVMfBuiluhE/AAAAAAAAAAI/AAAAAAAAAAA/9W43KavuiTM/c-rp-mo-br100/photo.jpg','16389487648212004696',21015),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnxVjumea_CW1nE7lBJDNlGJhM6DMu3nCfiFKwxuNQQQddW5_Z3mvyguw421Z3a4W-S6XfuYRrQdWzKi-A_Imze8eUiQI','I had a great experience, The staff is great.','2016-08-21 12:10:52.495000','2016-08-21 12:10:52.495000',5,'Oscar Garcia','https://lh3.googleusercontent.com/-zFDBjt79iXU/AAAAAAAAAAI/AAAAAAAAAAA/Yde3fl3lk5g/c-rp-mo-br100/photo.jpg','14567670160750071148',1987),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnxWBVHm5_AvIOd88HSdW60c7HcZ_lRhNOIl95jPfuog7ih8BpWMBIkoFg9cH52DPHzQkKst2oTk8f26DikLxxFLwXXvE','The staff was fast, friendly, and knowledgeable.','2020-08-01 14:46:13.583000','2020-08-01 14:46:13.583000',5,'Darrell Lowe','https://lh3.googleusercontent.com/-mYL15qd6T5M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmLJNx7WBbFGN8zxZlRgIoA24ZPxQ/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22266),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnxYe08i-ox8PCPp4xo6C_xKpgfve9x6wAqRPLtzsTLfbYgIYWHQwNXW8NMSOjw_-6AX6gDUbFDGHhb0NGQsYqMRRu1dg','Wonderful experience! Very friendly and efficient staff. They treated me as if I were someone important.','2019-09-01 11:50:34.676000','2019-09-01 11:50:34.676000',5,'Thomas C. Thompson','https://lh5.googleusercontent.com/-O50xtpnEqyQ/AAAAAAAAAAI/AAAAAAAAAAA/_sZcuug7EOc/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4610),('AIe9_BFmRFRFwJGRfUDOW8jG3rXny2Ygbs8sBalqpvFCFS8qYorGhKfWgQPwlkHUUvGSGkx_d11OvLoKh3jp7nHjBKCbFQJkv39VQG35pWoHHMEHSa6j9wU','great and fast service','2020-01-29 01:47:47.143000','2020-01-29 01:47:47.143000',5,'Isaac Abrego','https://lh3.googleusercontent.com/-rQAzDK_TJzs/AAAAAAAAAAI/AAAAAAAAAAA/xStbpBDp_Hw/c-rp-mo-br100/photo.jpg','16590124370714063921',10210),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnyGyTA_o1MGTM_C7nm2MxFwwcSF_wBoRGyULztEWTQ7R5L6dLe_3ECd3YFcd08E5Ho4_F6uuJNBVbxaLdjlgo3e26yA4',NULL,'2019-11-27 03:33:06.900000','2019-11-27 03:33:06.900000',5,'Tru Avants','https://lh6.googleusercontent.com/-kZsCMgFOrSs/AAAAAAAAAAI/AAAAAAAAAAA/BFFFFYmvTqo/c-rp-mo-br100/photo.jpg','13486358490203335051',716),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYhC-Usvr991GQjiiUGzxnnXeIx6BgLOxbS7QnJrkyAVPKlRXSKjIBFlrGrMzGy20ArHCX8DfhyI51jWPYc_9n66Tx2M','Rollie, Natalia and Stephanie where absolute rock stars. Rollie and Natalia where super compassionate and patient with my pinched nerve. Stephanie did amazing in explaining how the billing was going to go down. Everyone was super friendly and super understanding. Definitely coming back for my next emergency.','2019-09-21 03:20:16.132000','2019-09-21 03:20:16.132000',5,'Allana Greenslate','https://lh3.googleusercontent.com/-0o9wbwusM5E/AAAAAAAAAAI/AAAAAAAAAAA/r31YRs4LvIs/c-rp-mo-br100/photo.jpg','8679688254631342173',8801),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYIbuJlHNiN3G7iEDIVV7e94ZePRXSW9qIqPFAGXfITflYpSKE8XzUhVNGnr7c-01UZii19fq_9FBPqpLQOtCOB0EtH0','Loved the staff! Kat was awesome and even offered my son a warm blanket! Amazing and efficient service! They made our ER visit as painless and quick as possible! I will definitely recommend to everyone!’','2019-03-29 03:52:46.592000','2019-03-29 03:52:46.592000',5,'Bruni Ortiz','https://lh4.googleusercontent.com/-7-e-r-ladT8/AAAAAAAAAAI/AAAAAAAAAAA/h2zw054BkRA/c-rp-mo-br100/photo.jpg','2694018788013845459',6175),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnyJ8M0sDtabe46drh_zRUlNsZMfxIPDtd_VXViBy709vf0ovcGCOlsbA7h0a2iBeQJOIoaQ7rkAzhStzWuzQvLFWDnvo','Great place for quick pop up visit\nAlvean A. & Patricia C. took real good care','2020-01-02 20:11:40.528000','2020-01-02 20:11:40.528000',5,'Dondria Cooper','https://lh5.googleusercontent.com/-XZWPdAx-SxA/AAAAAAAAAAI/AAAAAAAAAAA/fgYntCGk920/c-rp-mo-br100/photo.jpg','16389487648212004696',2491),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnyjGihicmBfEfTScflcf0adiR4RI4WU4j5mvItTY7CnUcrj7wE7OYKriIF722nW1ta-W0Yhbw160t7nbS4lbTHtShI8M','The help received at this location was excellent. The staff was very quick to assist me and very friendly.','2020-08-10 15:50:23.643000','2020-08-10 15:50:23.643000',5,'Blake Wagner','https://lh3.googleusercontent.com/-JlfA07pTO4M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmC_pZYmgWxORA0IckacQKjCkwC9Q/c0x00000000-cc-rp/photo.jpg','14904078213800803294',23040),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYjLqJzrvwi2hJlLxJ0F8u-T7wPjnD7jkWNKapY6Hk6zgj6W6iJrEkQ2RFtIVA6KBnAX7Re1-72MVb_wEO22bYzw6Sn0','I came inside nervous and the wonderful greeting by the register was so welcoming. I was treated by Nurse Katrina who is wonderful and knowledgeable and very very nice. She kept me comfortable and manse me less worried. Ms. Therisa kept me warm in this colds weather with the warm blankets. Dr. Alloju was very patient with me and let me know everything was going to be ok. Overall this is the BEST location in the Houston area','2019-11-12 05:36:38.925000','2019-11-12 05:36:38.925000',5,'Sheneria Holland','https://lh3.googleusercontent.com/-Hk-I3YnS8sg/AAAAAAAAAAI/AAAAAAAAAAA/htK97y-JhU0/c-rp-mo-br100/photo.jpg','8679688254631342173',8737),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYNhiA-v4Fui6IuXM0LhaFRQYPfQpslzSazSFrG7oJ9QIfzJXx_RKgXfo59-aeUsREr_vWOJwMD-9bRZm__civXaYDGE','Rayven was very polite and welcoming when I came in. She was very fast and efficient when it came to answering questions.','2020-01-08 03:25:41.863000','2020-01-08 03:25:41.863000',5,'Eryn Harper','https://lh6.googleusercontent.com/-ESRKOuYkhMs/AAAAAAAAAAI/AAAAAAAAAAA/h8gGdGI9r6Q/c-rp-mo-br100/photo.jpg','16590124370714063921',9431),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnynskt-TREppeSFQPeEJ5RlvzlUjS6pUAs1fn2EOC5L3cRi1FsXcyggG5f59yTnZ9NzGM_Ntdo2QIifu0osWM2LzTyX4','I was feeling terrible for two days, not getting better, so scheduled a covid test. Results came back negative, this cant be right, i feel so bad. i went back in to request a different 2nd type of covid test, when they took my vitals again they realized i was having a heart attack and it actually began 2 days ago. Thank God i was at a SignatureCare emergency Center and not just some tent or my actual problem would not have been noticed. They took great care of me and sent me off to the hospital in an ambulance. I am not sure exactly who all was helping me but THEY know who they are and I want to thank everyone involved, with all my heart. Thank you SignatureCare Emergency Center, Stafford.','2020-08-17 15:58:15.942000','2020-08-17 15:58:15.942000',5,'Scott Atwood','https://lh3.googleusercontent.com/-NqF1yD4Xxzw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclTEok5hAEJyFwv2XtkY-Pi6npTlg/c0x00000000-cc-rp/photo.jpg','8918455867446117794',23081),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYQbno9VtTdmJmUgGNCrMGc9rPPcq5ITO46e5M-2vQt0V36FFnwo-YvYDLzc89qNpf4xbVlYOd12qq3xS-XCwfhzj0oc',NULL,'2019-07-12 21:23:57.958000','2019-07-12 21:23:57.958000',5,'Myeesiah Holmes','https://lh6.googleusercontent.com/-YgGZR8fZIOY/AAAAAAAAAAI/AAAAAAAAAAA/MnBSKxoMPsw/c-rp-mo-br100/photo.jpg','16590124370714063921',3299),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYtmuLj3ULXgsqdh1DDkP6CXzGpTZMWMeMk2_RR6tZ_xpJjSdOwqod_crbnLakEbySzguxUeyc1dzIpAAJAAkunn1M4A','Everyone was quick and very nice, they seemed to honestly care about my situation and the price i paid was very reasonable.everyone that assisted from check in to check out was great. Lindsay who checked me in. Nurse jacob who checked on me periodically to make sure i was okay,and Dr.Vakey who was very caring and patient throughout our visit. Highly recommend!','2019-12-01 21:22:59.211000','2019-12-01 21:22:59.211000',5,'Michael Beltran','https://lh4.googleusercontent.com/-lY1TFSrTXqs/AAAAAAAAAAI/AAAAAAAAAAA/aRfpkPcIqVc/c-rp-mo-br100/photo.jpg','16590124370714063921',3058),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnyUHur1HKD0A-llqZtCagAYUJgCpTmWeRkTL1Si5-mbKqHFXRShaLm6S2a52Qgnq4W8bKYLoigV9xqn9tRFP0ou07du4','Awesome place! John Bell provides exemplary nursing care. He puts the patient first and has A calming, knowledgeable persona. A+','2019-02-19 01:47:22.333000','2019-02-19 01:47:22.333000',5,'Sally Jackson','https://lh5.googleusercontent.com/-TWL4f_78MuA/AAAAAAAAAAI/AAAAAAAAAAA/M3CXO780-FA/c-rp-mo-br100/photo.jpg','8626688543755174284',8557),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYuOF5OE00kGrwkcucbrc7VluZ3Fs41CcyRKvj3B4iZunwkCe5IYKMi3_OvQKcKCRcN_ZZcqyG5HCSi1qFrJHbYDYswU',NULL,'2019-03-24 20:06:14.201000','2019-03-24 20:06:14.201000',5,'Billy Smith','https://lh4.googleusercontent.com/-uJLBwWtexUk/AAAAAAAAAAI/AAAAAAAAAAA/F054Q7kin1c/c-rp-mo-br100/photo.jpg','3272657195432704501',6985),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYuRbbqZtI0ldBeU1Adg6wUhbyiva3eII1-39C0I8-ZHT16QMf8okhM0fw3GX37n8uCQKUeKR4dNgt_ocWlePxrSKZVU','Shaunda, Ricardo, jennifer and aileen did a great job! Highly recommend this place!','2020-06-10 22:29:44.825000','2020-06-10 22:29:44.825000',5,'Maelyn Taylor','https://lh6.googleusercontent.com/-LMdU-G7_pRk/AAAAAAAAAAI/AAAAAAAAAAA/JuHfB3A5gps/c-rp-mo-br100/photo.jpg','16891069708558046635',22058),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnYWvxt0EqH35EsxCRTN92Gnbd3Gojxi6198l24n-NFPc3QpXg8b2AyCmXEliVN_--7y3f9K0qv2RXwZZru2ailh64a0U','Been to a few ERs around here. With a big family, feels like we are monthly visitors. This time was for my wife. These folks are great. Customer oriented and just overall very pleasent! Kat the nurse made her feel comfortable in every way. They all cared about the wait. Got to us quickly and got us out quick. Hopefully we don\'t have to come back but when we will, we will come back here!','2020-02-05 02:38:51.913000','2020-02-05 02:38:51.913000',5,'Jo FRiCH','https://lh6.googleusercontent.com/-ziOG68DRXpw/AAAAAAAAAAI/AAAAAAAAAAA/tlnbZ1yCfKM/c-rp-mo-ba3-br100/photo.jpg','2694018788013845459',14252),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnyWxupbXvm8SjB1HCneKnXDpYL5gsxu5MD68Zc3nY5wMSlHrAMP1TDDDYWo5yj4qlGxhH7FXJM7yasZ-oSuUdSfzUvyk','Great service. Everyone was nice and addressed the situation.','2019-01-28 19:22:21.664000','2019-01-28 19:22:21.664000',5,'Micaela Rocha','https://lh5.googleusercontent.com/-icdwKxlihCA/AAAAAAAAAAI/AAAAAAAAAAA/zIWdNSXNXSk/c-rp-mo-br100/photo.jpg','13486358490203335051',1084),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnyX3yaJzh9K2Hw8UY_0f1ZKTlrbsMkVzPTKE0vy1enebN1_iNpsR49WgARlBOYwbxC6ARR4urMHQrnnvlhchwUDaR_SA','I came in here with excruciating abdominal pain and they were very quick to get me signed in and started on some pain medicine. the receptionist was very patient with me even though I\'m sure I was a bit short due to the pain, and the doctor and nurses were polite and attentive. I would definitely recommend coming to signaturecare if you need medical help.','2018-03-11 11:09:04.626000','2018-03-11 11:09:04.626000',5,'eboni daniels','https://lh4.googleusercontent.com/-y5lDe4BRpp0/AAAAAAAAAAI/AAAAAAAAAAA/P_XbUAEJbE4/c-rp-mo-br100/photo.jpg','16590124370714063921',3851),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZ-HaZF1L2i1cHcrPQp2-tt2LXrTdoy6dDegNp12ly07RH9OPjaQJ4HwG94UkELjtS_fXNaPNBx_FOUXY2d7_ZHta-Ig','Friendly staff and nice atmosphere. Will come again','2019-01-10 21:12:09.948000','2019-01-10 21:12:09.948000',5,'Autumn Rosa','https://lh4.googleusercontent.com/-qaoWapFcXU0/AAAAAAAAAAI/AAAAAAAAAAA/jMosTOi6YNw/c-rp-mo-br100/photo.jpg','3511292162159714121',7487),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZ4ixp-laspIyJ6Kr5GrCwMTtiexNmXgels6FzEvWHiu4y9PSFHV9lYK81WwQuyDTcQQhgkziRr-qkGJ78wbUzHpvB-4','I saw Dr Alcanter and really liked her and the staff a lot. Everyone was very professional and there was no wait time at all. I would definitely use this place again and recommend it to any of my friends and family.','2019-06-15 20:58:40.642000','2019-06-15 20:58:40.642000',5,'S Dubya.45','https://lh6.googleusercontent.com/-4dFrwUZ9ZTY/AAAAAAAAAAI/AAAAAAAAAAA/qj7QfnA5KlE/c-rp-mo-br100/photo.jpg','3511292162159714121',7306),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnz4UE3QWs4ZQ6g06QraqaF2wyGDhWHTusmW9NeWRur2cCFJNtTcuucYA6bmdmdYB5MW7g_MoIMCgI1ILCAJXa52V4TGA','Everyone was very caring and helpful. If you have to go to the ER signature care is an excellent choice.','2019-12-16 17:13:08.155000','2019-12-16 17:13:08.155000',5,'Janet Braun','https://lh5.googleusercontent.com/-MXMWmR1N0IA/AAAAAAAAAAI/AAAAAAAAAAA/xBpjKoCquSA/c-rp-mo-br100/photo.jpg','8679688254631342173',8689),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZ4ZuJOtbH-geOZAHVJXHgeprc5OFpBPVRpF2bF5olNS53GknKO86NM0nEWPVdag27lDpwldAJnv0axutPMQHoKog1PA','Dr. Fair, Jennifer R.N., Rad Tech Fatima B., ER Tech Elaine M., and Tanishia with Registration were all wonderful with helping my son when he was sick with the Flu Virus. He was made to feel very welcome and was well cared for during our stay! I definitely recommend this emergency room to everyone that finds themselves in need of emergency care!','2019-12-20 09:13:43.752000','2019-12-20 09:13:43.752000',5,'Lacey Martinez','https://lh3.googleusercontent.com/-5uUhdmU-9ks/AAAAAAAAAAI/AAAAAAAAAAA/CeBdKisAe2s/c-rp-mo-br100/photo.jpg','17898197009688164559',5342),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZ8cnzEiAeszalvhaXqkp6FJnJib-LpqJ-Dh-0o8wQgb-J6joYEK7Gnn1gTH942PJPssNy8zj0VQdBSiWNoL1JHDHfcQ','SignatureCare was great! They took me back almost immediately and began my work-up. The facilities were both clean and comfortable. Everyone was extremely friendly and prompt. Thank you Dr. Ortiz, Gracie, Niki, Bryan, Tim, and Hayleigh for making this a smooth ER experience.','2018-09-06 04:24:57.540000','2018-09-06 04:24:57.540000',5,'Joey Michelle Lopez','https://lh3.googleusercontent.com/-4oqVnslDqTc/AAAAAAAAAAI/AAAAAAAAAAA/KGIVRyZeVyE/c-rp-mo-br100/photo.jpg','14567670160750071148',1530),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnza-LNREb1mp6ZPPAzkAUgiyXhd5JkHyUmMSjGIje9DvUY1y0tse4Hh1bgMo4--QhjDGph-ATnYistUaPdilKUc6al3k',NULL,'2018-12-26 19:37:09.270000','2018-12-26 19:37:09.270000',5,'Rebekah Sanchez','https://lh6.googleusercontent.com/-McdeYVVTulE/AAAAAAAAAAI/AAAAAAAAAAA/3olv5z6wKnE/c-rp-mo-br100/photo.jpg','16891069708558046635',4384),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZBwxEuVy5nwf-yAcW16reGpruoUnoH5U38ks5tgudWxExsYRmJG7n9_0wtWDLmvdpkPPQWQg3FEYW6ZEzHZnoqd7bEE','My experience with this ER was amazing!\nFast, friendly staff! Gracie, Ellen, Sam, are awesome\nAndrew the manager is so professional, caring & kind!\nDr Hehmann is informative, made sure we understood the diagnosis, spent plenty of time with us! \nOverall amazing experience','2019-06-27 05:37:07.978000','2019-06-27 05:37:07.978000',5,'meenakshi avila','https://lh5.googleusercontent.com/-jxegDQy8XvM/AAAAAAAAAAI/AAAAAAAAAAA/1Q514uiW1PU/c-rp-mo-br100/photo.jpg','8918455867446117794',9109),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZj2ZD7KMGPYx2yyikY8jd0x9E-QgRC4nkpc1qAZyw0ZkcnY_-UPfRVqW8T-nEtxtyPSeu_FnZy_SphfMZcHyQ1XUe54','I brought my friend here for a bad UTI infection and immediately upon walking in we were greeted with disrespect by the nurse. He was extremely rude and treated us as if my friends pain was not extreme. He treated us like children because we did not walk in with a parent, disregarding the fact that we are all 19 years old and pre-med students. My friend was in extreme pain and we were not treated with urgency. We were the only people in there and we waited multiple times for an extended period of time for the nurse and or doctor to treat her. I am extremely disappointed with the way that they treated me and my friend who was in a lot of pain. Many passive aggressive comments were made and we were treated very rudely.','2019-05-02 05:55:14.117000','2019-05-02 05:55:14.117000',1,'Stella Sable','https://lh6.googleusercontent.com/-sAIfb_zatJU/AAAAAAAAAAI/AAAAAAAAAAA/u7laXzOXrNA/c-rp-mo-br100/photo.jpg','14904078213800803294',2142),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZks99pXUT1aP75SexEH11qKRRIz38ZAi79fA-D7RbM5Cs6ZqomAfhAvepJSqe8k2Wr-T_kGKjLtssvtPE-8VsaH3_Ck','My appointment was at 10am and I was able to get tested and grab my results within the same hour. The staff was extremely helpful from the front desk receptionists to the doctors. Make an appointment for the same efficiency.','2020-08-03 15:56:23.380000','2020-08-03 15:56:23.380000',5,'Samantha A. Olivares','https://lh6.googleusercontent.com/-6OWRqVgPYxo/AAAAAAAAAAI/AAAAAAAAAAA/KvuTndAMMeM/c-rp-mo-br100/photo.jpg','2077061009497551125',22755),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZm_daczoTUhtDlQkUzZjmwHP26JrG1_H9mtcutGfEnDgtJGyI_PJM9o5yv6QYx3hCb2Xs4rFd0SUk5uB1lOmtGOHx4A','Top notch facility! Very compassionate and attentive staff. Nurse Alean and Dr. Dendy provided excellent treatment, they were thorough and very professional. I was seen immediately. This is an excellent facility to go to for an emergency issue. I hope I don\'t have another emergency, but if I do I\'ll be visiting Signature Care!','2019-05-31 13:12:38.848000','2019-05-31 13:12:38.848000',5,'Sharon Tate','https://lh5.googleusercontent.com/-quCFgR3A9oo/AAAAAAAAAAI/AAAAAAAAAAA/t_bH6MyHU6o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnzQx6w91UKtAJAXTMo1tB-NwYE1py1DpEUXNsn61l0_KSIC67yeu3CRmV0Wh7c3SPfDaBVi5WkIdp-ddBkUlrTZfUYa4','This place is amazing and the staff are very efficient and friendly. Makes you feel safe and taken care off. Totally recommend it.','2020-08-07 17:15:26.950000','2020-08-07 17:15:26.950000',5,'moy2820','https://lh6.googleusercontent.com/-PmTPoqHXIbo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmjysqWbzO-VzVPct6LomNHHHCNMg/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22513),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZri9b6Xn4NtwQZ9KVNM28nI32Cjx4gzB0KNDDPV9pNjmiEYhYu86hlXfuhPEAfFycpEWD4EQlN8THDPay0UJsqZgyLo','I had a 5 star experience.the care team was efficient and knowledgeable from the front desk all the way to the back. Alvean .A and Jocelyn. A where absolutely great. And the Doctor was very efficient ..I love SignatureCare..','2020-01-08 16:08:04.379000','2020-01-08 16:08:04.379000',5,'carolyn thomas','https://lh6.googleusercontent.com/-6jtd5Z2JeZU/AAAAAAAAAAI/AAAAAAAAAAA/vlF3qgXUxeM/c-rp-mo-br100/photo.jpg','16389487648212004696',9445),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnZTjkYUtULdcPelJwNcJQmUd3XtQaArp2tidCYQAJgefLvsNiTuekSVC_8UpalInt8aZBHEg7tbQVhTUp94P7111HXiQ',NULL,'2020-07-13 00:48:04.007000','2020-07-13 00:48:04.007000',4,'J.','https://lh3.googleusercontent.com/-_RCrqn_yXr8/AAAAAAAAAAI/AAAAAAAAAAA/gXWc72b9LLE/c-rp-mo-br100/photo.jpg','14748677429039074158',20960),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnzYCDOWszcsOr4YqgmzfJ_Wecbsgi6CHRm8Ow9wlJz5wkm7O26c4P7xuC_UQMtfmvYLaBZs0ybQUKL-JLnP-ZD6chD6E','I cannot say enough positive things about the doctors and staff at Signature Care ER Center. I came in late night with a potentially serious condition. Dr. DeWaal saw me almost immediately and began a series of test. I was never left alone and constantly asked how I felt. These people treat you like family, very caring. Dr. Rose saw me the next day and thoroughly explained the process I was undergoing, she\'s AMAZING. I was finally released but not until after a thorough evaluation and the doctors were satisfied that I was in good shape. Dr. Rose even scheduled a follow up with another doctor that I saw the same day. I\'ve never been treated with such care before, you are in good hands by coming here!','2019-04-11 14:08:17.077000','2019-04-11 14:08:17.077000',5,'Ricardo Quiroga','https://lh3.googleusercontent.com/-s8PTNt0QLO8/AAAAAAAAAAI/AAAAAAAAAAA/Dm7geCRw5Ko/c-rp-mo-br100/photo.jpg','16891069708558046635',4303),('AIe9_BFmRFRFwJGRfUDOW8jG3rXnzyy37z-LR2CF3lOl4QtcdLjgJto5cNgeJdG7yOHP2792qrDW74xR3fvBq-T5DRA75ljziBTaMgwZVxLnnvaYPeTS3p4','Dr. Dang , Jessica, Olivia, And Keaire were very helpful. Everything went great. Thank you all','2019-08-17 14:24:17.635000','2019-08-17 14:24:17.635000',5,'li chen','https://lh3.googleusercontent.com/-xEFXb-cy-O4/AAAAAAAAAAI/AAAAAAAAAAA/-1ms9rS1t4Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7197),('AIe9_BFO_N1Cx3C6UN4125l-j0fs2ze5RNAhRCnF_Mlj4Z80FGyugmHvIB3ReDPbfP3Q4rNu_XpxOLaSxcFiaxfJ0c2_3kjo3yuMOvo7MEHmJI7OFBwqJ1k','We came in panicked with a flesh wound, there was no wait, and stitches were done in a whip. No meds required! Great experience.','2019-10-27 14:36:01.743000','2019-10-27 14:36:01.743000',5,'Laurin Rodriguez','https://lh3.googleusercontent.com/-yl75iNO5-fw/AAAAAAAAAAI/AAAAAAAAAAA/EWE4WaQ0E0M/c-rp-mo-br100/photo.jpg','16389487648212004696',2761),('AIe9_BFO_N1Cx3C6UN4125l-j0fs4JyAIq71yt6TXYbEy4FcBtNdz15OfO9I9BjfhdVHV6ZL1q1A1phlLomZ-wNrWg3a813Fh7siWF0A9iOBEy5AItu2gDg','I am from Alabama visiting relatives. Before driving here, I had an accident and broke a rib. It was healing, but when I arrived in Houston I had a little setback. I walked into SignatureCare in Stafford and from the time I got there, I had the best experience ever for anyone who needs quick medical attention. From the front desk person, to all the nurses, techs, and doctors, I was pleased from the first minute there til the end of my visit. I was called back quickly and everyone was genuinely concerned for my best care. Thank you to Alyssa, Andrew, Lonnie, Dr. Smith, Do, and Jordan for all that you did to help me have the nicest experience for the pain I was in. I wish we had such a facility with caring staff where I am from. Thank you for all that you did!','2019-12-28 00:06:44.370000','2019-12-28 00:06:44.370000',5,'Eleanor Oakley','https://lh3.googleusercontent.com/-ZPbDShQIvSc/AAAAAAAAAAI/AAAAAAAAAAA/sBJbU8IR0rc/c-rp-mo-br100/photo.jpg','8918455867446117794',9022),('AIe9_BFO_N1Cx3C6UN4125l-j0fs5lZYIb3Ek5Y8JdZKTpnpljmcQC_SWElmn6JjUZ_iSOjYRQ4BSirSBkn1CRII0iQh7_aHF4HA_PyggKqUnnSHiRoz_es','Alvean \nMarcus\nPatrica \nI Had a nice time at this place today','2020-02-06 19:43:43.467000','2020-02-06 19:43:43.467000',5,'Darrius Gentry','https://lh5.googleusercontent.com/-OpRUsOYj9qA/AAAAAAAAAAI/AAAAAAAAAAA/OaYkwCWd4mM/c-rp-mo-br100/photo.jpg','16389487648212004696',22616),('AIe9_BFO_N1Cx3C6UN4125l-j0fs9-RTrKR5ePwkw2vypNqCKbOkAMDQpb0W18VScpxdenQgt-cM8YlkVz5PRn0SJRaBWSFIRbYASi3pw00aUUobgm4xBpE','I had a wonderful experience and was treated like I was the only patient. The facility is a great facility and the staff is very kind.','2019-06-04 19:30:43.862000','2019-06-04 19:30:43.862000',5,'Odessa Edwards','https://lh4.googleusercontent.com/-i0LZl0KCBfY/AAAAAAAAAAI/AAAAAAAAAAA/SHc9kO8ZEq0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFO_N1Cx3C6UN4125l-j0fsA6VkaBa7-vGqGr4XZDNyvIBb8YbNX-zZkPz3mR_RIoDYAFWhAaSr8VFgt_Dzv0zIyQCq1mC1_8mSZXNIPJSuBuILJcI',NULL,'2020-06-30 20:26:26.969000','2020-06-30 20:26:26.969000',5,'David Allen Wood','https://lh3.googleusercontent.com/a-/AOh14Gi8M-WXCeUrkGPjFK5tXwjwMS431g8eg9psFwohjw=c0x00000000-cc-rp-ba3','8626688543755174284',21482),('AIe9_BFO_N1Cx3C6UN4125l-j0fsAxd9bVT9500XR-REqAovpz1Aw7obcFNePVIYzJhQWB06Ze1MAbu6GDJz2Xu1TeQ6mZZjeky66CONmQ_446WLyDB2MpI',NULL,'2019-01-16 01:26:25.413000','2019-01-16 01:26:25.413000',5,'Franco .Gomez','https://lh6.googleusercontent.com/-jcRm3pXuMoc/AAAAAAAAAAI/AAAAAAAAAAA/BzX1KL1SO3o/c-rp-mo-br100/photo.jpg','13486358490203335051',1110),('AIe9_BFO_N1Cx3C6UN4125l-j0fsbSciMHpkUMGgK6iHKE999o8qJZUqwaar1J0GrFg9WLlNPdW8hxWY88eb32TciGDR09zJL04AwX9SVeiHVcunQ-vJsQ8','Dr Miller, Amy and nurse Brandon took great care of me during my visit. They were prompt, thorough and attentive. I was offered a warm blanket and frequently checked on. The location could not be more convenient! I will definitely come here for future emergencies and recommend it to friends and family.','2019-08-24 02:11:32.510000','2019-08-24 02:11:32.510000',5,'Ella Traylor','https://lh4.googleusercontent.com/-cRRJmBLsTmM/AAAAAAAAAAI/AAAAAAAAAAA/tSujk-zzIQ0/c-rp-mo-br100/photo.jpg','14567670160750071148',1253),('AIe9_BFO_N1Cx3C6UN4125l-j0fsEcBlFtD-B1TPctvf77asWpKDkj99iJj1pfjWjqS9aiYHjJfodKvW-G8hiJP3yO10vzTWzY9hxKVWlqheD1gh5kyZFtc','All I can Say was my experience was great!!! Dr. Ybarra was very knowledgeable and kept me at peace when I thought something was really wrong with me. Katrina was very nice and helpful , to me she’s the Ideal Nurse. she went over and above to help me. Therisa help me out to, she made sure all my information was correct and that what I was being billed was accurate great she had customer service, I can see her being employee of the month one day. I appreciate my experience it was a good one','2019-11-11 01:02:15.319000','2019-11-11 01:02:15.319000',5,'Kenneth Ellis','https://lh6.googleusercontent.com/-j2aAGi0Iefc/AAAAAAAAAAI/AAAAAAAAAAA/iKR0W3ZwfoY/c-rp-mo-br100/photo.jpg','8679688254631342173',8739),('AIe9_BFO_N1Cx3C6UN4125l-j0fseKsTRgyRD2nkLBGDoh_8E5IjmPcKQaznrP6GVGfs_4vB1ZMDVMS4BESUV0VblNfNJXyRwZwEdKlor2pbjwRyDeNKjoU','Today I worked with Rebecca V, Amy Patel, Jeri and Gabe, Patrick and Stephanie!','2020-02-22 07:08:58.074000','2020-02-22 07:08:58.074000',5,'Dekota Carpenter','https://lh4.googleusercontent.com/-eV2FRSZz0VA/AAAAAAAAAAI/AAAAAAAAAAA/d9lcgAtL8mY/c-rp-mo-br100/photo.jpg','16590124370714063921',13831),('AIe9_BFO_N1Cx3C6UN4125l-j0fsIcB4EuzfUPmzFoj64_TIGZFY9Nh3O8cYHsOMcLZztJt4vP4quogTYCWkp_HD4b257zStRnVLw2jE5fGXIihun_M-TBI','Plenty of parking in the lot right in front of the building. Went in for extreme abdominal pain and was taken to a private room almost immediately. My boyfriend and I were offered soda and water right when we got there. The nurse abd doctor saw me right away and did my diagnosic tests and then gave me an estimated wait time for how long I should expect to be there. I was also given meds for the pain right away. I highly recommend this facility.','2018-09-16 00:09:29.549000','2018-09-16 00:09:29.549000',5,'Ariana Rupp','https://lh4.googleusercontent.com/-WnUpFtrPGvo/AAAAAAAAAAI/AAAAAAAAAAA/UkRZnpyfzVk/c-rp-mo-br100/photo.jpg','3511292162159714121',7596),('AIe9_BFO_N1Cx3C6UN4125l-j0fsiLZQdecRlCUlvyRK06AjpFym-7QNhlxhGc9ffyQ2MTuAr4WfF-CXVsyP6YymyU0_usKxeGWeH_ptFBqjnY0jSDnhrxQ',NULL,'2019-05-02 15:56:17.423000','2019-05-02 15:56:17.423000',5,'Michelle Evans','https://lh5.googleusercontent.com/-kRJ23QMgE4Y/AAAAAAAAAAI/AAAAAAAAAAA/qhV12_RsO58/c-rp-mo-br100/photo.jpg','6521947413723274945',8286),('AIe9_BFO_N1Cx3C6UN4125l-j0fsKKrM73-s-LNAZcDWJ6oOoj1v05i3lE-czKdwxKYHVaKzXjgPn9cmP5NPcjUxuMd3P7fPPKIrQeqNRYofpMOby7wY5qE','This er is one of the best I’ve ever been to. Very friendly and helpful staff, they’re great! I would highly recommend this place any day.','2018-07-19 19:12:51.096000','2018-07-19 19:12:51.096000',5,'JERRI\'NICOLE White','https://lh6.googleusercontent.com/-uEEh5ZrKdhw/AAAAAAAAAAI/AAAAAAAAAAA/EJRxFLzYWTw/c-rp-mo-br100/photo.jpg','12541597562633926366',630),('AIe9_BFO_N1Cx3C6UN4125l-j0fsm-eYtmHdXoZ44xZkiLMtUt3g5F4WVqc6ZNVRiJ7TExnmPKXhcB754oxI_pluovBVyDOElaQAmsKqzHUwsuBy9c0akFs','I can honestly say this was the most amazing ER experience I\'ve ever had. When I got there, Angie was very friendly in getting me set up, I was seen pretty much immediately after walking in the door. Chris and Lonnie were very kind and helpful and the entire experience was as pleasant as it could possibly be. I have always hated going to the Dr and I didn\'t want to go today, but the experience I had today exceeded any expectations I may have had and provided me with a diagnosis and relief in less than an hour! This place is amazing!','2016-12-31 06:02:54.901000','2016-12-31 06:02:54.901000',5,'OKina Alford','https://lh3.googleusercontent.com/-C7gdov_dww4/AAAAAAAAAAI/AAAAAAAAAAA/XhDohv-wLXA/c-rp-mo-br100/photo.jpg','14904078213800803294',2431),('AIe9_BFO_N1Cx3C6UN4125l-j0fsPMdvZESW2nvxKaceuMVPb8I_h0UQyC6oxTyFy1g9iZhmaSBoPujargG-m6iCnbPHX5-e5Hw-ADQ7NSnVrcEXsz34aZc',NULL,'2019-08-26 11:48:22.430000','2019-08-26 11:48:22.430000',5,'Necole Walker','https://lh5.googleusercontent.com/-tPE49Pf_hMc/AAAAAAAAAAI/AAAAAAAAAAA/IzQaZYJP-Hc/c-rp-mo-br100/photo.jpg','3272657195432704501',6904),('AIe9_BFO_N1Cx3C6UN4125l-j0fsRhh56E6W9s90sel8rlpJgRDvN-QsZkM-DMTLPtvCLWD9YN5ofN-hamEPuh0MV2BeTFXadGYIGfe1JU0q_arXWG_Od6A','They were quick to get me back to be seen and very quickly clean for the Dr to see me. I love the doctors and the nurses are amazing.','2018-07-21 16:13:26.260000','2018-07-21 16:13:26.260000',5,'Jennie Lovell','https://lh6.googleusercontent.com/-n1zDR_5pF1Y/AAAAAAAAAAI/AAAAAAAAAAA/OYOySTbc1KU/c-rp-mo-br100/photo.jpg','17394740196501090048',4826),('AIe9_BFO_N1Cx3C6UN4125l-j0fsrMIZNBo6ntpZSsvF-G9FdEt61w4WDAdDgN00LCXktuC_FejTpVbChNHsfCZs92kVAExUVZN6AJ8pgW6t3F2-WJ0YRWo','Very Happy with care/treatment I received at the SignatureCare Emergency Center - Montrose. Everyone from the receptionist to the nurse to the doctor was very welcoming and warm. I most definitely recommend anyone to go to this Center for emergency care.','2016-07-06 17:53:44.146000','2016-07-06 17:53:44.146000',5,'Johnny Gant','https://lh6.googleusercontent.com/-ELMW3rZv50I/AAAAAAAAAAI/AAAAAAAAAAA/8CSM5cCNYM4/c-rp-mo-br100/photo.jpg','3511292162159714121',7966),('AIe9_BFO_N1Cx3C6UN4125l-j0fsrWJ6ndZ500D7CqUcgdBa35grF3j8SBbmHTPzd588VNF7-772TeoubW2ypcljvjU_17gt5VhsAuECdvmYF4Tzeu0yLkE','No wait at all, Kendra and nurse Gabe got me treated right away.','2019-12-10 17:38:18.711000','2019-12-10 17:38:18.711000',5,'Layla Alĸowaтlι','https://lh6.googleusercontent.com/-7UAlQ4ZIqVk/AAAAAAAAAAI/AAAAAAAAAAA/00lb3jikkwc/c-rp-mo-br100/photo.jpg','16590124370714063921',3025),('AIe9_BFO_N1Cx3C6UN4125l-j0fsydTF0Rq2oDyUczZMilpeaSMG1PUjeYAyWyPEr_ITNA3U6HP66SR-1rpjUFhapzw89LCQ33tj5yeqq-iD24FC3isPhb8','I have been here 3 times once for me amd twice for my son. Service is great, place is amazingly clean. In and out quick. Perfect!','2017-12-14 05:07:41.228000','2017-12-14 05:07:41.228000',5,'Alejandra Arechiga','https://lh6.googleusercontent.com/-BjFAhRMjCS8/AAAAAAAAAAI/AAAAAAAAAAA/br2ZlsqQy0Q/c-rp-mo-br100/photo.jpg','8918455867446117794',9326),('AIe9_BFO_N1Cx3C6UN4125l-j0fsyYeSugj2BOKTigFNrKAXlGN7vvJY7DhOS_I8JHfcMmtPXcrtGxjEZ_-G6AcMNDcSHK3DsJ4zammJb_9OnrHgwxuhLSc','I cane to the SignatureCare hoping to have the problem solved And thank to Dr.O’Malley, Alvean A, Tricia E, Sibienne W, and Bryan they got the job done quick and easy.','2019-11-14 19:17:23.831000','2019-11-14 19:17:23.831000',5,'Torian Thmas','https://lh3.googleusercontent.com/-ht1LxLiRboA/AAAAAAAAAAI/AAAAAAAAAAA/9Xi9_8iWTWc/c-rp-mo-br100/photo.jpg','16389487648212004696',2703),('AIe9_BFO_N1Cx3C6UN4125l-j0fsZKixRTDQOM7xCfnLxGZ5QR2lYwhYATgQL8RaP99yeGuVOgOo6r6aKcGhJcNbmWxVqZnxVSoHJCFreGWjeUnbisHTex8','Had a smooth experience from the front desk to the nurse and dr Patel did a great job .👍','2018-09-19 17:41:26.297000','2018-09-19 17:41:26.297000',5,'Francis Adjes','https://lh5.googleusercontent.com/-O1WrWqsfzqY/AAAAAAAAAAI/AAAAAAAAAAA/gG8glqoKz8o/c-rp-mo-br100/photo.jpg','17394740196501090048',4793),('AIe9_BFQ5F7lhNP5_ppaS_sKelW40jmli9Wl2k-a9vv0CugIOvsZYV0Va4t6bIo8wjjwRc_pyS3VUFZP1MAdaE2v_u6jKVee6b5ebQjpBYOhszwg8BVYZtY',NULL,'2017-03-08 14:23:37.377000','2017-03-08 14:23:37.377000',5,'Shika Shika','https://lh4.googleusercontent.com/-fwgd3FVaCus/AAAAAAAAAAI/AAAAAAAAAAA/9nzBrrDNPfY/c-rp-mo-br100/photo.jpg','3511292162159714121',7863),('AIe9_BFQ5F7lhNP5_ppaS_sKelW46uLvsRB7YQWGSXGZw7AydPTqRpvCI5VUfmEgNlMxLd8MEb3JNpzgcB4hH-5IgPcPq8qG8ngYrmoqUvkcanUQhWPCKgs',NULL,'2020-03-14 03:13:28.807000','2020-03-14 03:13:28.807000',1,'Marinelle Vargas','https://lh4.googleusercontent.com/-MQ8_S1OMozs/AAAAAAAAAAI/AAAAAAAAAAA/-F3SmU12W_o/c-rp-mo-br100/photo.jpg','8918455867446117794',21234),('AIe9_BFQ5F7lhNP5_ppaS_sKelW48EzIGaa5-tyJFz-DqwPKGWjAsfHWrpdq_bYqe3ErtbItXHeLTmyjVIdhtymnsE8Z5w2Y7t5LrVQOxfImWg6RaG-_Efo','Quick and easy service. The staff, especially Itza at the reception, were very helpful and friendly as well.','2019-07-08 15:21:48.188000','2019-07-08 15:21:48.188000',5,'Naren Venkatesh','https://lh4.googleusercontent.com/-lv99uZvBd1c/AAAAAAAAAAI/AAAAAAAAAAA/ff2Zk5omWtE/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3307),('AIe9_BFQ5F7lhNP5_ppaS_sKelW48f1qY5GZQ6Pph37mOTZCU8agJ7dp1WYux0bZXv1w_Xa19bjiTYFFRkQcgb0p3UPNyt_F6TqoPw3DJheWHoSbK2GS6-o','Seen here recently. Experience is awesome as always for the family. Staff was awesome from Lisa M, Senaida, Maria G, and Randy. Always recommend to family and friends.','2019-07-24 03:08:25.263000','2019-07-24 03:08:25.263000',5,'Manny G','https://lh6.googleusercontent.com/-2763yJs68uw/AAAAAAAAAAI/AAAAAAAAAAA/as6LfXwtthA/c-rp-mo-br100/photo.jpg','6521947413723274945',8184),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4AUfubIr1-P68s7Jv0i-NEcxQh97vNs1jsx7agwR3_YXq9FVcoz8TMpQHSks4B3XHCEKOoh8QOOJqASZO5m4E9dfy8wU','Very clean Emergency center!! Wonderful staff!! I would highly recommend Nurse Jessica, Front office staff Ashley, and Tech Eliza, Megan in radiology','2019-11-04 00:48:46.717000','2019-11-04 00:48:46.717000',5,'Amelia Ford','https://lh4.googleusercontent.com/-OsosXokpVAY/AAAAAAAAAAI/AAAAAAAAAAA/X5X5Ar_ttvs/c-rp-mo-br100/photo.jpg','6521947413723274945',8100),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4GWxBYml3Tt8pUkgNJyGAhi_MH3sikS6RkubqTqD3SLK3XdKwuuPnKuMuYYMNOKnN4wyo_DswE9vcWvilXNCV1XWYa74','Lizie was very helpful with getting us in promptly and explained everything clearly. Our Dr. Chunah was wonderful as well, very knowledgeable and kind. Overall we had a very good experience, and my husband was happy we didn\'t go into a major hospital to get the same great care.','2019-04-27 15:33:57.711000','2019-04-27 15:33:57.711000',5,'ninfa m','https://lh3.googleusercontent.com/-xs0xLQH4RQw/AAAAAAAAAAI/AAAAAAAAAAA/CkUbMi-znm0/c-rp-mo-br100/photo.jpg','3511292162159714121',7352),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4iJqD5j627uGyOZwO22o_AdMZRbTNVnIUrYyVyapSTsIRlk2XOSKVlrw0AmSLw1I2tKCUQY9g6-NgDYC__8SHdDPEwMc',NULL,'2020-02-17 19:50:56.197000','2020-02-17 19:50:56.197000',5,'Jason Sprayberry','https://lh5.googleusercontent.com/-gH6KQ7-Na6k/AAAAAAAAAAI/AAAAAAAAAAA/rVMDZni44HQ/c-rp-mo-br100/photo.jpg','3272657195432704501',14348),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4J5MpwOQDqC0DVppviSjMV4zGL7a9WJnXe_SPDX7U3nzH5zIr8VpbJVRAiFeli8Q71FBSB_dip_CSywAirDGuQyZmMX8','From the moment we walked in, they kept trying to get us to leave a good review for them. Once I got back in to see the doctor, (he was foreign) he was more worried about my period (which I haven\'t had in several months because I have the IUD) and thought that may be the problem when I know my body well enough to know what that feels like. He wanted to argue with me and he felt like he HAD to prescribe me pain killers so I wouldn\'t leave a bad review for them. The nurse who did the blood work missed the vein and now I have a huge bruise on my arm. The receptionist came in at one point giving us info on how to leave them a review, in which they bribe you by offering a gift card to a coffee shop. All they cared about was their reviews. Well here\'s an honest one. I do not recommend this urgent care.','2019-08-08 19:23:20.707000','2019-08-08 19:23:20.707000',1,'Shelby','https://lh4.googleusercontent.com/-PkAXTRyWxfM/AAAAAAAAAAI/AAAAAAAAAAA/YBNXQW0kC-E/c-rp-mo-br100/photo.jpg','8626688543755174284',8418),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4jF20v9Yibxg1Rkw0UDPgT66qLOpNJg8ZqUNQ_aW2gY0fceNtNZEBotUkZta9WbRj7w1esljgvJ8FLgnMkG3faBYaRLw','I was taken care of by Alvean and Amy. The doctor Dr. Leavitt did everything she could do for my tooth ache and I greatly appreciated everyone there.','2019-11-17 20:30:39.175000','2019-11-17 20:30:39.175000',5,'Nicole Honora','https://lh5.googleusercontent.com/-CYYBzfkU5hQ/AAAAAAAAAAI/AAAAAAAAAAA/OgUqs_LndMA/c-rp-mo-br100/photo.jpg','16389487648212004696',2670),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4Lia1Ev0MAm5sku_eCNXWI-bBcPaP-m9Mq1MUMS5MlVyNF2Fwz2_5Zs1A6DTZqbDATuQJ3zy9jdZGYImN5iHZsfE0GjQ','Good service! All personnel is very nice! Will recommend to friends and family. Definitely felt much better when leaving medications worked and knew what I needed.','2020-01-25 17:03:11.260000','2020-01-25 17:03:11.260000',5,'Ana Gallegos','https://lh5.googleusercontent.com/-SYeeHQks1IQ/AAAAAAAAAAI/AAAAAAAAAAA/dnPqFDu7mqk/c-rp-mo-br100/photo.jpg','14904078213800803294',13622),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4OIEvBSJW3Q3PpsoKhpPQ2C2O2JGyF5ruZ5r9DjKrQBvSB3Gaysoc1hvA3VwGLlhQZ2461iLqk7iqQV0p31GVbUyJmCs','Amy, Dr Boester, and karen were such a help!!! Such a compassionate team!!! The absolute best!','2019-06-29 01:54:51.491000','2019-06-29 01:54:51.491000',5,'Kayla AsAlwayz','https://lh3.googleusercontent.com/-hiya0_Ly7tA/AAAAAAAAAAI/AAAAAAAAAAA/AcFa6lHtRNU/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1281),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4pI4eldzzTmolb_NO_K4bwhO_cHGfHIoios-RVPRO640pp-anbC0reX-xyTxaloc9A6MbyEXHrrZrW_2JnkyNDnIvesg','These people are wonderful the whole staff! They were welcoming and very helpful. When I left I wished Doctor Rose was my regular physician.','2019-12-03 16:03:20.216000','2019-12-03 16:03:20.216000',5,'G Win','https://lh6.googleusercontent.com/-NHi_Kc8N5mA/AAAAAAAAAAI/AAAAAAAAAAA/j1OlKvNefCQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4130),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4PRL-sxpMh6luqrwq71E6wxAoFV5QV3U8SUrv4iIakock38eZFMYzZqz1B9OziSNg1sUfISTwr6Xd6WWA9Po0a_et75k',NULL,'2017-03-08 14:11:20.361000','2017-03-08 14:11:20.361000',5,'M. Mobin','https://lh3.googleusercontent.com/-NwYb4Lx1iYw/AAAAAAAAAAI/AAAAAAAAAAA/3QyMdJDgc5A/c-rp-mo-br100/photo.jpg','17394740196501090048',5100),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4Q34iyg4siNkUKJ5vbQ5kBnjsYYd90xCokwE-FqpyIbGYXCyJesHVc6eolztqVgX9D9u7Xw5IHoGbuSRvYT2pCCavjUM','Lucas and Jennifer they where both nice and sweet','2020-01-19 01:13:01.116000','2020-01-19 01:13:01.116000',5,'Kaylea Rucker','https://lh3.googleusercontent.com/-gQoUB4EX980/AAAAAAAAAAI/AAAAAAAAAAA/hgShlQjWbEE/c-rp-mo-br100/photo.jpg','3272657195432704501',10007),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4sugIa-MPJJLzVpkoQpmCjesRX8S92hsQUkyjHsL2AOZ13inBB57wzJ4Q0Q4SkFi5WB4oiaZTLECx0oXBVXTOJdZo31I','I had a great experience here! The staff was very nice and very attentive. I was in and out very quickly.','2019-10-31 19:09:23.612000','2019-10-31 19:09:23.612000',5,'Joshua Fuller','https://lh6.googleusercontent.com/-V94eUqjAatQ/AAAAAAAAAAI/AAAAAAAAAAA/UEe-7uayfMY/c-rp-mo-br100/photo.jpg','16389487648212004696',2747),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4TQFGK5BXwwduoaIdx6zOyNsZEibNNmUTeZaEvsSu7fgw54NXehVOcZkHjfXxTVR5Q6lBMg_wUN5gmsA9io2EJDi2dHg',NULL,'2020-08-18 23:07:38.497000','2020-08-18 23:07:38.497000',5,'Deanna Wexler','https://lh6.googleusercontent.com/-_hCxiPPYOtE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnUPw7Vi5dlNKCyyNtAPCDdSyq7aw/c0x00000000-cc-rp/photo.jpg','14567670160750071148',22996),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4XoWWHEXMFkINI_iybsQp_xtJYAtFO74hoN9kN2SpHdw8sCMjGdAiIDjJyWln8wvBk8jEcg',NULL,'2019-12-22 14:27:50.188000','2019-12-22 14:27:50.188000',5,'Hannah Waid','https://lh4.googleusercontent.com/-jF-dgynje0s/AAAAAAAAAAI/AAAAAAAAAAA/USDdFOnm0NI/c-rp-mo-br100/photo.jpg','3272657195432704501',6833),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4zg0G10YVlQIUEtOTRGl2NzzVdDhSCJFnHkiUGXrsI6XtufIfmU_DteIVA71D1ddOD4AeojoZ8HmlpDtX1fQ85WYHeIk','Attentive, clean, respectful, and efficient. Although I hope no one is faced with an emergency situation, in the event one occurs this is the place to you want to be.','2017-02-21 20:17:00.322000','2017-02-21 20:17:00.322000',5,'Mary Borrego','https://lh3.googleusercontent.com/-Us5-7I4cNCQ/AAAAAAAAAAI/AAAAAAAAAAA/UC1himg03x0/c-rp-mo-br100/photo.jpg','14567670160750071148',1881),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4zHj5mvdE06Je4PXA3sqBa-9j5TY-hoUWouKw-kY7WYEVQWxJ-rf2KHpmWPaDIRIErQFj5hTcgfQAzagI0YEHVOq17lM','Theresa M she is very good at her job and she really cares about the patients','2020-07-16 17:19:04.821000','2020-07-16 17:19:04.821000',5,'Juan Carlos Lopez','https://lh4.googleusercontent.com/-AHrNvRPwMLw/AAAAAAAAAAI/AAAAAAAAAAA/l3hlgAKZzJg/c-rp-mo-br100/photo.jpg','6521947413723274945',22892),('AIe9_BFQ5F7lhNP5_ppaS_sKelW4ZomVEF3T179Id6-W5qMLMBltraGQem61fV8cmvTEkM6mCeU2wfQKOdM-75C-eEY290Ux4IyvBZ5u2LeEZjRIsgf6gDY','During every visit, the Signature Care staff is polite, informative, and caring. Jessica S, Eliza, and Erika were very helpful and courteous. Thank you!','2020-02-17 23:00:06.637000','2020-02-17 23:00:06.637000',5,'Alivia Aguilar','https://lh5.googleusercontent.com/-43xsLkBj1Mw/AAAAAAAAAAI/AAAAAAAAAAA/OIlbHhDczsk/c-rp-mo-br100/photo.jpg','6521947413723274945',14574),('AIe9_BFqh_zr355jzGaEpH7666zc_2tBRj3fqWkU8knEwQrBiAFrS1_4zJ7LdYZbUaXQAjLPPDiW9YDCuahkJGWwl0Pu_dl2kfjrSfCZkexFgrHfIUVJBoo',NULL,'2019-04-20 20:07:05.610000','2019-04-20 20:07:05.610000',5,'Carlos Leclaire','https://lh4.googleusercontent.com/-kISsPHM4Kjk/AAAAAAAAAAI/AAAAAAAAAAA/vLqRhIE9OTI/c-rp-mo-br100/photo.jpg','8626688543755174284',8506),('AIe9_BFqh_zr355jzGaEpH7666zc_EfFL7Endg_29ID_0nvHThGRjc9Pc3miZACnJ-sr4tPzjIqsw-wmSjZ0B72qV7hiYwK05qAEZ1pBbNmmZwtZcrKuvUU',NULL,'2019-03-16 22:37:37.236000','2019-03-16 22:37:37.236000',1,'Lyssy Poo','https://lh3.googleusercontent.com/-BTlGVUt8xh4/AAAAAAAAAAI/AAAAAAAAAAA/kWkKjLGSxqI/c-rp-mo-br100/photo.jpg','14567670160750071148',1361),('AIe9_BFqh_zr355jzGaEpH7666zc_K_z9IZvYXaQ_SXSU7mjM7Jqm6gjvgFeWw4oEsYsHWaa57yTJ1yHS2gfJwwBZe5KMWB9uCvLebrnf0VeNTaOGSahMCA','Best ER CARE for Covid-19 testing! \nWonderful staff and very friendly! Lizzie T. , Alanna, and Dion! Very helpful and made the process smooth! \nBest security 24/7! Thank you Deshaun! And all the stuff that works here! Highly recommend','2020-06-24 10:57:56.623000','2020-06-24 10:57:56.623000',5,'Amber Ruiz','https://lh3.googleusercontent.com/-4GNERY1LXQs/AAAAAAAAAAI/AAAAAAAAAAA/bg1XilEMSWE/c-rp-mo-br100/photo.jpg','3511292162159714121',21292),('AIe9_BFqh_zr355jzGaEpH7666zc_PELksmgu8_LZXMyFaP75qx-sIhkc-Xu19X7bfNnRVhW5-hYC5hG-kUJHH4uVHuMT53uN5hJBG-WCTco-XL2yBofHXk','Speedy... courtesy... service','2017-11-06 19:00:53.224000','2017-11-06 19:00:53.224000',5,'James Turner','https://lh4.googleusercontent.com/-edqMxQOcgtg/AAAAAAAAAAI/AAAAAAAAAAA/SjJYqlmvzyA/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1735),('AIe9_BFqh_zr355jzGaEpH7666zc_WEOQY6-X0Phrk2HNtoq6YBAzFZOu3_-qPFh787VzSDEj70V9apeLJhw184BIeiygx8i1iVddtv7EzqD4lXfUX8owBA','This place was great! Staff very friendly and fast! No wait time what so ever! Amazing!','2019-06-17 03:18:22.363000','2019-06-17 03:18:22.363000',5,'BEASLEY','https://lh5.googleusercontent.com/-ZxMOIk5AL38/AAAAAAAAAAI/AAAAAAAAAAA/RKkgMk37wI0/c-rp-mo-br100/photo.jpg','12541597562633926366',496),('AIe9_BFqh_zr355jzGaEpH7666zc_WPeTqS_euu4pbGBTQ-S27p_BHDmBZMaT6IZ1CrlUL5LUcuNjlIaCGmbrUw5KTkOg1mxsdnpJgvW9oi5-xYQEOosXhw','Jocelyn on arrival was very helpful and lead me straight to the back to my spouse very professional!! \nNikalea the nurse was also very helpful and professional the whole time there. Highly recommend this place in any emergency!!!','2020-01-18 23:05:50.862000','2020-01-18 23:05:50.862000',5,'Beverly Edmonds','https://lh3.googleusercontent.com/-4hgIs4twn9c/AAAAAAAAAAI/AAAAAAAAAAA/g27H_p147TM/c-rp-mo-br100/photo.jpg','3511292162159714121',14456),('AIe9_BFqh_zr355jzGaEpH7666zc-_W_x2uOiLbX1BUWeaXzXc62I0t3okwo10ptjo1H1eVvGYMndN13mt8zwjpZAwb9Ey0sCZCfxXjLyNQlLk_ECZStCgg','They very friendly& helpful. They all have people personalities. For sure come back& and they take care of there patients. Thank you, Dr. Pham, Susan, Angel, Tanishia, and Evelyn.','2020-03-04 01:47:43.907000','2020-03-04 01:47:43.907000',5,'Hallie Rivera','https://lh5.googleusercontent.com/-pLck8_RED8U/AAAAAAAAAAI/AAAAAAAAAAA/8vnHksalV1c/c-rp-mo-br100/photo.jpg','17898197009688164559',14113),('AIe9_BFqh_zr355jzGaEpH7666zc-OamroHlbiClv-AxyTRkWV6aCqTOSFzCBFSvOuQlKcTHCmlDxnUmSo3OAJovTBN3NHtSlrYtsfAl5AJEH7L-U9mHDsc','I waited 3 hours on hold for yall to hang up on my call once it was my turn! How unprofessional!!!!! Very frustrated & now to call back & have to wait another 3 hours! This is a joke don\'t bother calling this place they will just hang up your call when its your turn!!!!','2020-06-25 04:41:54.236000','2020-06-25 04:41:54.236000',1,'Cory Gomez','https://lh5.googleusercontent.com/-BtMEsKd-N4w/AAAAAAAAAAI/AAAAAAAAAAA/cCdLQmBNHsU/c-rp-mo-br100/photo.jpg','8918455867446117794',21274),('AIe9_BFqh_zr355jzGaEpH7666zc-pG64S7UuBU47B0hdUqV34C_YACMHLJ88gVfNz9bYOxiuEcJfO82oOYngootVVE-fum_vUIigiZyTAL6VqdIXX1f6Us','Beautiful and very helpful and i cant ask for any place better for hands on care.','2019-06-24 03:36:24.124000','2019-06-24 03:36:24.124000',5,'Alexander Gates','https://lh3.googleusercontent.com/--OQA7avz8Bo/AAAAAAAAAAI/AAAAAAAAAAA/0EsGrrJlkE0/c-rp-mo-br100/photo.jpg','2694018788013845459',6125),('AIe9_BFqh_zr355jzGaEpH7666zc0gOX7Ar1MJQncIm6d2hgK3frqRNOTESP9H-mThDBykvdgcSq1iIk12p0o1O9Y0jFhHniiGXwSDN1MnXAGtXPVo_lj_o','This place is amazing! We were seen right away, the staff was quick and caring, and it’s way less expensive than the hospital ER. The facilities are clean and they have coffee and snacks. Highly recommend! Thank you to Rommel, Jonathan, Dr. Leavitt, Adolfo, and Rita!','2020-02-12 19:34:38.885000','2020-02-12 19:34:38.885000',5,'Nikole Haney','https://lh3.googleusercontent.com/-px8jd1dY_vo/AAAAAAAAAAI/AAAAAAAAAAA/GrY4PdDp5RM/c-rp-mo-br100/photo.jpg','14904078213800803294',20311),('AIe9_BFqh_zr355jzGaEpH7666zc0q9MHM24yeSIV1QNLTmAcmVgogBPgw1M7rkvhqeDEmRjBaVLBwe2HhD9CtRfKZlfJPKm5wRsutGQFJuTqKLAT8rNM-k','My son came into Signature Care bellaire ER and received outstanding care. From the moment he walked in with Stephanie in registration, Rollie the nurse and Natalia the rad tech she felt so welcomed and cared for. Thank You signature Care!','2020-08-11 00:33:52.734000','2020-08-11 00:33:52.734000',5,'Natalia Correa','https://lh6.googleusercontent.com/-YUtNOEMfRGA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclQFcrIPEfgNzTkoNDbYQkqMxHp3g/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22914),('AIe9_BFqh_zr355jzGaEpH7666zc0rRYSSCsUk3qIyuX2Zn8Fj3PTEISsblhRnh5ljbix7GLZq9cwD8XychKj4yN0bO5sDmZ_fbBOQv6foM0_F2SRgkr0vU','Amazing patient care experience! My son loved his ER visit. Docs and staff very friendly.','2018-06-02 19:16:51.948000','2018-06-02 19:16:51.948000',5,'Dr. Amanda Wilson-Wong','https://lh6.googleusercontent.com/-mG5xNkwGbMo/AAAAAAAAAAI/AAAAAAAAAAA/zPuEfxJgJFc/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4471),('AIe9_BFqh_zr355jzGaEpH7666zc0u9lTA79eBJKDdyi0pgw26cwzM5_pQnFfLpnxThgHYeJo9YkEqfqT2JH8j1vZ8Jv_R_ZLcc9rQoLtUjuz7svW6ldDrU','Staff is extremely amazing they take very good care of you. God bless them! Dr. Zheng is great also Jessica and Teresa we awesome and explained every medication to me very well and friendly. Genesis greeted me with a warm welcome very friendly as well. And Johnny was awesome when i came last time. God bless you all for your kind heart!','2019-10-04 15:24:40.374000','2019-10-04 15:24:40.374000',5,'Melissa Vasquez','https://lh3.googleusercontent.com/-aKbLNGJAYWc/AAAAAAAAAAI/AAAAAAAAAAA/UIe9pyFAts0/c-rp-mo-br100/photo.jpg','14904078213800803294',13680),('AIe9_BFqh_zr355jzGaEpH7666zc14aphkaiSblOo9YMuecYDRBOdtG0StbhzXiKWlO116b00wBPXrktOvP6L7TtJNrIMNegkEtNIj9wMw1IyAu9-R2XTU8',NULL,'2019-10-06 15:49:25.466000','2019-10-06 15:49:25.466000',5,'Slava S','https://lh4.googleusercontent.com/-2Pa1MD79tv0/AAAAAAAAAAI/AAAAAAAAAAA/yhzVtRclEvE/c-rp-mo-br100/photo.jpg','17898197009688164559',5514),('AIe9_BFqh_zr355jzGaEpH7666zc1UlI30nefKOAUm8eWFkt4n31O48ltkzKAX53WO83qAJL5flGB9Tj_CQqebcLJBZnVqdkuOmIjHUQ97eRlnjHc2bxJ1g','Very Friendly Down To Earth People. Gunner and Nurse Karen Made Me Feel Welcomed From The Time You Walk Through The Door, & Dr. Yost Explained Everything From Beginning To End. I’m So Glad I Came & Will Definitely Come Back!','2018-12-30 20:06:23.216000','2018-12-30 20:06:23.216000',5,'Latekka Brewer','https://lh3.googleusercontent.com/-1N89Cnf6SPg/AAAAAAAAAAI/AAAAAAAAAAA/cSI2kpctKOk/c-rp-mo-br100/photo.jpg','3272657195432704501',7077),('AIe9_BFqh_zr355jzGaEpH7666zc2_jo9SIGeUMAe97eZcd-1U_b-SPatwbqdU4KbjsvyAeDsfq4oGPJb7-1XM4z2Lr_XeAI-N6kqVrrv9GOglmel_FrQAc','The signature care in college station always takes such great care of me! Our nurse was very helpful and offered us a warm blanket once we were settled. Dr Vakey made sure I was very comfortable with all of the prescribed medication','2019-08-31 17:58:15.056000','2019-08-31 17:58:15.056000',5,'Jillian Hayes','https://lh4.googleusercontent.com/-K4jDBCXVFoQ/AAAAAAAAAAI/AAAAAAAAAAA/ZY-I36aSlOY/c-rp-mo-br100/photo.jpg','16590124370714063921',3227),('AIe9_BFqh_zr355jzGaEpH7666zc2b4y3CGSshBVrBujNgZRwBNYjkImgNfiNVbjNgJu1aQ8uYAci8D5dVvxUfdpcM9DGsQOJLZU4wNbVytpXC8_E5Zyqmc','Friendly staff, excellent service. I felt like they care. They made sure that I was okay before I left. The atmosphere was calm and caring. They ordered me dinner. I recommend this location.','2019-04-30 11:05:17.967000','2019-04-30 11:05:17.967000',5,'Jennifer James','https://lh3.googleusercontent.com/-UGaIHh7IneE/AAAAAAAAAAI/AAAAAAAAAAA/lT_TXnZeaWQ/c-rp-mo-br100/photo.jpg','12541597562633926366',509),('AIe9_BFqh_zr355jzGaEpH7666zc2pxJl12NeSYKaqpz-pukxgCTJMUPwjnJWqKGF_hLvUP3P1XeNhCLQNwsFPP859u5Cqn_XykgTGS4fuwnSmFTOJKBKX4','They were quick on taking me in. Went in not feeling good at all and they helped me feel so much better. The doctors are so nice and help you feel comfortable. Will definitely come back if ever needed. I also recommend this place to anyone looking for an emergency center.','2017-09-08 15:27:27.795000','2017-09-08 15:27:27.795000',5,'Brenda','https://lh5.googleusercontent.com/-dH8AjBneMOw/AAAAAAAAAAI/AAAAAAAAAAA/JA52fx8-k-0/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2328),('AIe9_BFqh_zr355jzGaEpH7666zc30ry371bUJtkWf2PeEmlrBuHmqwCmiQ1UxvUYZFkGE_5f5d9Sgy41Mf2KwJo7Q4ayjRl7PghTbKhFaPPui5aNBAt3aM','Very prompt, I was seen to immediately after entering and describing my issue. Both the nurses Kristina and Jennifer were quick to get me set up in my hospital bed and get me on IV, just as a side note they got the IV needle first try and with calm hands which is always nice. Dr. Miller was great checking up on me and following up to make sure I was ok and if my issue was subsiding, has very good bed side manner and a sense of humor. Finally Genesis at the front desk helped me get all my paper work in order and offered to describe any of the paperwork that I had to sign.\nThis was a great facility from beginning to end. I’m glad that I came to them when I got sick.','2019-11-22 20:31:42.833000','2019-11-22 20:31:42.833000',5,'zach leal','https://lh5.googleusercontent.com/-5j6wtDdt3Do/AAAAAAAAAAI/AAAAAAAAAAA/tKxz2gDsRog/c-rp-mo-br100/photo.jpg','12541597562633926366',374),('AIe9_BFqh_zr355jzGaEpH7666zc36OedyowDDUilPS-EonB3Z50YQ7YERXyFdMZQ8T5fLjqCNb2NEPxAB1ODCY8cMz7S9B87viAQChiN0cQ6vYer23x1nE','This was the best Er and recieved the best care. There was no wait and I was taken to the back really fast. I was greeted by Yami and she was lovly and nurse Brenda was amazing along with Dr Souman who was very helpful and worked with me. I was really glad Yami explained the self pay process to me and i just has a great experienc!','2017-12-16 17:10:16.810000','2017-12-16 17:10:16.810000',5,'angel lee','https://lh5.googleusercontent.com/-zM97_5tfDVg/AAAAAAAAAAI/AAAAAAAAAAA/kfHZI60Gmcw/c-rp-mo-br100/photo.jpg','8918455867446117794',9323),('AIe9_BFqh_zr355jzGaEpH7666zc3eZo9Oo-lDeXyKHAYjR4V3PXpBVkrEsgfvDxZw3R1-436WHUKRH8VzGu4BVQs3hthTpwFQtPyH2YffzVNpUslO17LrI','This was a great e r everyone was nice and helpful','2019-05-31 00:23:28.731000','2019-05-31 00:23:28.731000',1,'Sunny Jackson','https://lh4.googleusercontent.com/-YCR4XcK82g4/AAAAAAAAAAI/AAAAAAAAAAA/ELp8i2ckj-8/c-rp-mo-br100/photo.jpg','17898197009688164559',5718),('AIe9_BFqh_zr355jzGaEpH7666zc3GXVGBbziH8elKi60A30RlA_Mk0QurmQ9y3h9sIwp_TZXXhnI3bRxAeq5FYNZZmjS_PvKT0mHIpcOmjp6fssRpgRjF8','Great workers! \nDr. Reukaut\nKelly V\nPamela M\nAmy M\nValinceia P\nJulesia H\nDalia R\nStaci M','2020-07-22 17:54:50.464000','2020-07-22 17:54:50.464000',5,'Enrique Reyes','https://lh4.googleusercontent.com/-55ZsVb4F7i4/AAAAAAAAAAI/AAAAAAAAAAA/fIxU2zn2c64/c-rp-mo-br100/photo.jpg','8918455867446117794',22915),('AIe9_BFqh_zr355jzGaEpH7666zc3GYYSfioFaDv90qenCLt21kCCiekLbs1BNKz3z-yYZYh8EdLXIw4MExZZqXSBw2wt0Lm-xZdm3y6cLR3l6zAQRbjrkQ','I would definitely recommend this place. I was in and out in less than 20 minutes. Special thanks to Jasmine and Dr Patelfor everything. You guys rock!!!','2018-12-13 16:30:45.174000','2018-12-13 16:30:45.174000',5,'Yaya Diaby Rapontchombo','https://lh5.googleusercontent.com/-WsP8pcX7a3w/AAAAAAAAAAI/AAAAAAAAAAA/alQhtDedmD0/c-rp-mo-br100/photo.jpg','12541597562633926366',583),('AIe9_BFqh_zr355jzGaEpH7666zc3oKWxsMADrYDFSkb__twIr85mEziQipm-NqsSOzFb1fhsaeNj4hShkP3nrJTMdwTQQxHaU3fhJccy4nZ_T9kG9H1Dtg','Very friendly staff quick and efficient. Amy an Dr. Smith are the best!','2019-03-09 00:38:10.064000','2019-03-09 00:38:10.064000',5,'sania hasan','https://lh4.googleusercontent.com/-IQ-uRsZuyIo/AAAAAAAAAAI/AAAAAAAAAAA/r-7ulhQrJlE/c-rp-mo-br100/photo.jpg','8918455867446117794',9168),('AIe9_BFqh_zr355jzGaEpH7666zc3rlR8qKIO0FacF7AmQc2I96CvVPPmY3DNrIWIcHziCiCvUdt5kQcBCxl9SIylu8YTpqmGqacgbCVUymXE9BZU1uqWtc','The first time I was here, I came because of a back injury I sustained a couple of months ago, I was in terrible pain and the care team got me into a room and on pain meds before my family even finished the paper work. Today I’m here with my dad who has been vomiting all day and thankfully we were able to get a diagnosis in a couple of hours after a cat scan and blood work. We received the same if not better treatment this time as well. Thank you to Dr. Soli, Meredith, Sherri, Bryan, Denise, and Jasmine for taking such good care of us! Will definitely be recommending this facility to family and friends in the future!','2018-09-21 00:39:34.600000','2018-09-21 00:39:34.600000',5,'Samantha Arredondo','https://lh4.googleusercontent.com/-ZMd_e-14oN8/AAAAAAAAAAI/AAAAAAAAAAA/v9BmhqJ9TN0/c-rp-mo-br100/photo.jpg','14567670160750071148',1500),('AIe9_BFqh_zr355jzGaEpH7666zc3UgzEAJ-52wX13MDnGSibVa48AmUG5D-6NK2Dax9xSQqaBGx3sLKu7IGHPiFffuaX4JHE9V50qoJS2JJF1fzuJ8NGXM',NULL,'2019-12-25 03:49:49.742000','2019-12-25 03:49:49.742000',5,'Kelly Hall','https://lh5.googleusercontent.com/-eigv8NJtBHs/AAAAAAAAAAI/AAAAAAAAAAA/m27beC-hQc4/c-rp-mo-br100/photo.jpg','13486358490203335051',661),('AIe9_BFqh_zr355jzGaEpH7666zc4cyYtP_XaVVJjx4QkmeqmwqjIkaOAlIRlU1LXe3fMr-ecqsLJlR0otSxxMQ_v6EypZ93sfxPXwLmzh5-5A4je4NSBd4','Great service. They we\'re very carrying and attentive to our 5 year old definitely lived up to their 5 stars. I would go there again if I ever needed to','2019-12-30 00:11:02.142000','2019-12-30 00:11:02.142000',5,'Angelica Vasquez','https://lh3.googleusercontent.com/-_gN-37_ppnc/AAAAAAAAAAI/AAAAAAAAAAA/uqMRov9cH6A/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8039),('AIe9_BFqh_zr355jzGaEpH7666zc4jMpBT2Xj8wnAJ0st4TXdDHhPAqPoUy-TJ8RxHiILlN6KdfaypODJ8A9gPTo7OCOhe0swEQZgwq4YDzJ9YCA-jFHd5Q','Remington \nBrad \nDr Vaagenes \nKristen and Laura \nWe’re cool','2019-07-16 02:01:26.891000','2019-07-16 02:01:26.891000',4,'Gabriella Gutierrez','https://lh4.googleusercontent.com/-1ux2Tek5kHY/AAAAAAAAAAI/AAAAAAAAAAA/rOCvMcupmls/c-rp-mo-br100/photo.jpg','16590124370714063921',3292),('AIe9_BFqh_zr355jzGaEpH7666zc4kW-J9eHNtbg8r9jkM5N-RtF6gYPyQ5EftnTdlLTlGbHt6pZciuihpJCtGdi1rhACFxRxj5gmsW_REz5qzM0tqXHZJ0','Signature care emergency is a really nice and fast place with their work and helping people thanks to Kim, Lucas, and Eric for helping me out with my emergency they were really awsome and nice to my daughter as well','2020-02-28 20:24:50.459000','2020-02-28 20:24:50.459000',5,'Hannah Cunningham','https://lh6.googleusercontent.com/-_i6Cb_mCvpM/AAAAAAAAAAI/AAAAAAAAAAA/t0TZHr1kork/c-rp-mo-br100/photo.jpg','3272657195432704501',14317),('AIe9_BFqh_zr355jzGaEpH7666zc4nGZy9IGznvlZHDammL55LbaLh9rT1-j2NMmjl9DzScF6S7v65izUTDvI-uY2wSZQ8lIRyRgmucw1rRJ8SJQ5sMv9Uo','I loved the experience of going to signature care emergency room it was super fast and easy you should go there the doctors was Dr Zheng and the nurse was nurse angel','2019-07-03 18:09:57.185000','2019-07-03 18:09:57.185000',5,'Madison Phillips','https://lh3.googleusercontent.com/-FJTJaGGSMMU/AAAAAAAAAAI/AAAAAAAAAAA/qHJDPzSs7dk/c-rp-mo-br100/photo.jpg','17898197009688164559',5667),('AIe9_BFqh_zr355jzGaEpH7666zc4s2PZfSlu5ZKI62QeNzTNMIeqEH8BeqxMJqobCzKykC2Pb_ZsNkYiQVACJnzlHbnD8RtNjJHd5cOUsjz3KvFzsTo0Yc','Wonderful staff Doctor Nquyen is a great doctor very detailed as to what was going on and gave helpful solutions,I highly recommend this clinic.','2019-10-18 19:00:16.191000','2019-10-18 19:00:16.191000',5,'Stephanie R','https://lh4.googleusercontent.com/-z0VbL2tNSLE/AAAAAAAAAAI/AAAAAAAAAAA/zwzo5ZGUg_E/c-rp-mo-br100/photo.jpg','13486358490203335051',773),('AIe9_BFqh_zr355jzGaEpH7666zc4wJvDsuYyJhWKP3r4SdFYSuvOHEz6l6sy6fcgj0BAKyZcHLWPM7b8lbTu0R2NLAU0pDROLXDVt2gJZX8ixhjQG6TUlw','All the staff at Signature Care Emergency Center took great care of my daughter! Seen very fast and everything was explained to us every step of the way!','2019-11-05 11:51:46.578000','2019-11-05 11:51:46.578000',5,'Gina Perez','https://lh4.googleusercontent.com/-csa2_MoheuU/AAAAAAAAAAI/AAAAAAAAAAA/tGrbLLW81uc/c-rp-mo-br100/photo.jpg','3272657195432704501',6867),('AIe9_BFqh_zr355jzGaEpH7666zc5F6OTL2flKkQojoHwGml4wAuiEuIO-WMS3TIxcvRrE9ED9o30x5dQ0kjn368PkHwP8t4SMyUFi8_fAm2mnMhSQ97TsA','Dr Nguyen and Alvean were very helpful on my issue. 👍🏻','2020-03-04 18:46:14.580000','2020-03-04 18:46:14.580000',5,'Efrain Hinojosa','https://lh4.googleusercontent.com/-hFnw7um6elk/AAAAAAAAAAI/AAAAAAAAAAA/SxNKksnRTG0/c-rp-mo-br100/photo.jpg','16389487648212004696',13736),('AIe9_BFqh_zr355jzGaEpH7666zc5O5awRrab5ouCUmipJVGvOYcbT1avDiaEPR1j8tun544KwVnAVkd1TPIaNdHuA9oTHipAZFbhZLpoUQLer07rM17DAk','I loved the staff their just like family they recongized Me after i went for my Husband 2months ago & the remember us ! Thats so awesome their gonna be to go to place when i need something . I apeprciate the care all the guys tooken care of me Mark is like our bestfriend he is an awesome guy ! As well as the night nurses they helped me with my pain from a kidney stone ! I love how their so hospice & taken good care of their patients ! \nBtw i loveeee my robe you guys are the realest ! \nI wish i couldve did the whole nine yards with you guys but you have tooken care of me 90% & the other hospital did the 10% of work ! \n\nLove sheila & christian perez 💕','2019-01-24 23:16:56.023000','2019-01-24 23:16:56.023000',5,'PerezFamBam','https://lh4.googleusercontent.com/-1TgxO-CoLBc/AAAAAAAAAAI/AAAAAAAAAAA/3P3OCBWuYIg/c-rp-mo-br100/photo.jpg','14904078213800803294',2179),('AIe9_BFqh_zr355jzGaEpH7666zc5sDdXZKtR-bwMIJSPQf2wnPFzk3jK2HiigL60hLNh2Sj9164UAnpxcoDf5_YssYNOG07yCHTcZy4qMlGUsmIFiqdtlQ','Came to this location after being referred by others who took the COVID rapid test. If I could have gone elsewhere I would have due to the rudeness of the front desk associate. \n\nBefore arriving we looked on their website to see what we needed to do to have a COVID test done. Their website CLEARLY states \" If you have COVID-19 symptoms, no scheduling is required to get evaluated\". We arrived at the location and there was a security guard who stopped us before entering and asked if we had an appointment. I told her no and she then took a phone call on what looked to be her cell phone and made a hand gesture to come in. \n\nWe walked in and a front desk associate asked what we needed. I explained we wanted to take a COVID test and explained our symptoms. She then spoke with another front desk associate who then came up to us and again asked us what we needed. I explained again that we wanted to take a COVID test and explained our symptoms and she asked if we had an appointment. I told her no and she said I would have to make an appointment online. I told her their website stated if you have COVID symptoms no appointment was needed. She then said because we are having shortness of breath and that is a life-threatening emergency that they would be able to see us.\n\nShe handed us paper work and we took a seat. About 5 minutes later she asked out loud from behind the desk if we were done. I assumed she was yelling out at us because I saw no one else in the waiting room filling out paper work. I yelled out back at her no, thinking in my head you JUST gave us the paper work and why not call me by my name if you have a question? I was also helping my sister who was not an adult fill out her paper work as well. Another few minutes passed and the same front desk associate said out loud \"what is your phone number\". I looked at her and asked if she was talking to me because there were other people in the waiting room and she was. Was I suppose to yell out my phone number back to her? Again she could have called me by my name or asked me to come up to the front desk rather then yell out what is my phone number. I didn\'t get her name but she was short and petite with long black hair, perhaps Hispanic / Filipino. \n\nAnother few minutes passed and she yelled out for us to come up to the desk but I told her we are not done with the paperwork. She said that was fine and she would help us fill it out. She then took the paper work and flipped it to the pages that needed the signature and asked me to sign. I didn\'t even get a chance to read everything through?! I was already feed up with the way we were being treated and just signed the papers and gave them to her. \n\nThe actual process to take the test went good. There were two men who were helping us and they were both very friendly and explained everything to us very thorough. The same front desk associate came back to collect payment and this time she was humming and seemed to be more happy helping us? Yet, that didn\'t change my mind about the rude attitude she gave us earlier.','2020-07-08 21:57:37.899000','2020-07-08 21:57:37.899000',2,'Kelsey Huerta','https://lh4.googleusercontent.com/-LuyQu7Vlrek/AAAAAAAAAAI/AAAAAAAAAAA/lt6YCUklCYM/c-rp-mo-br100/photo.jpg','8918455867446117794',21489),('AIe9_BFqh_zr355jzGaEpH7666zc5SithnvdH7SNAnOwjFjhuZ1R_DzBCWPWire_Qp9i9Bmr2CGMEGTMQyRp-RMCsur_WeaewzN87j4Tromt22mtec4IGF4',NULL,'2019-08-22 15:33:50.520000','2019-08-22 15:33:50.520000',5,'Karolina Nk','https://lh5.googleusercontent.com/-at5RQRHwwTk/AAAAAAAAAAI/AAAAAAAAAAA/KgHUBHJMhmk/c-rp-mo-br100/photo.jpg','12541597562633926366',455),('AIe9_BFqh_zr355jzGaEpH7666zc5wnSeeNHk2jzc9QgfcanXBMMjk0zde9sqLVv_FId5SiyRzjGH52qW7TmjqhtCDZbT9P3Q1EL4etCDxTFD73Og5eGUqc','Great facility.Speedy customer service and very professional. Dr very knowledge and able to assist.','2019-06-23 04:18:29.554000','2019-06-23 04:18:29.554000',5,'Charnae Thomas','https://lh3.googleusercontent.com/-rwQVvqb-SBc/AAAAAAAAAAI/AAAAAAAAAAA/AzNtjTlwm1k/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zc60_2lephkuaVsUnc38HcsJ8xRMEF2XIJ4ldNSLz4d7Yapeu3h8AKyE5QOwrBlbLjZcNxMugCp8MY_992uv6zFcEApmU','Dr. Craig Waal, diagnosed me for an eye issue. No waiting on a Saturday night. Impressed by the entire staff and would recommend this Emergency Center confidently.','2019-02-24 20:16:31.550000','2019-02-24 20:16:31.550000',5,'helene gordon','https://lh6.googleusercontent.com/--L4TdBGNDr4/AAAAAAAAAAI/AAAAAAAAAAA/Uon7HDAr3Ug/c-rp-mo-br100/photo.jpg','16891069708558046635',4343),('AIe9_BFqh_zr355jzGaEpH7666zc63oEYQsxtVaXyp3WECNNhB7vg7Pdm7aBKLwvvFDri6DBhh_9bggPgDuMNn6EG7V1eucNVUWeivChKREIGQXCWrJYuNQ','I was impressed with staff, service and Dr Tran. Got in and out quickly and price was less then I expected.','2019-11-02 21:05:12.755000','2019-11-02 21:05:12.755000',5,'Brad Bohlin','https://lh4.googleusercontent.com/-2FWOsGrDFhg/AAAAAAAAAAI/AAAAAAAAAAA/OLB8CWLf-1Q/c-rp-mo-br100/photo.jpg','12541597562633926366',388),('AIe9_BFqh_zr355jzGaEpH7666zc6gtiFfbwZSi3LqaLkc7aOI8L5PtbJH8r7HgqeamAWzrGEviDIcBkLt_cNRRtRtRdddmQPj8WIdgt3AIqwAn1cfg8pIA','Outstanding attention, always great service. Thanks! Dr Wang, Leslie, and Tanishia were great.','2020-02-28 04:27:27.474000','2020-02-28 04:27:27.474000',5,'Mario Benjumea','https://lh6.googleusercontent.com/-9JfSe9KUt-I/AAAAAAAAAAI/AAAAAAAAAAA/SzqxMOzUCmo/c-rp-mo-br100/photo.jpg','17898197009688164559',14123),('AIe9_BFqh_zr355jzGaEpH7666zc6J8HPMm_OmHFacGCcbISM_g5dAmsJlfG_xV1r6DOJTBOe-EPf_suqT0FpXFt3T-UCedY7phRroZJI_Zd8nFfImiuZbw','Awesome experience! Anthony, Natalie, Kathleen, and Dr. Frausto were all so helpful! I was in terrible pain and they resolved it quickly.','2019-02-19 05:59:55.460000','2019-02-19 05:59:55.460000',5,'Samuel Asay','https://lh5.googleusercontent.com/-dKhvrQD0Ryg/AAAAAAAAAAI/AAAAAAAAAAA/C6lEXHmjv5g/c-rp-mo-br100/photo.jpg','16590124370714063921',3540),('AIe9_BFqh_zr355jzGaEpH7666zc7n1q_vG4qTjFfg6pExcVwRr0Dc6ssIHwMUafRJTXAWXKEIC-uL7pfGtIboUN1oMWIjYcRGRWKzV9QzdYyWqnfroDQyo','Quick service and excellent treatment.','2018-02-21 17:48:20.859000','2018-02-21 17:48:20.859000',5,'Carol Tyger','https://lh6.googleusercontent.com/-XNpVT2-iTxE/AAAAAAAAAAI/AAAAAAAAAAA/vYGgzue13tM/c-rp-mo-br100/photo.jpg','3511292162159714121',7723),('AIe9_BFqh_zr355jzGaEpH7666zc7ni4rdDbKTQUMhEKBH8LIDeiIE50L-Uch6xkaxUiVSfAsthjemLajOJLwIgCH_eqx92SUM6x7q9GDPqFexu7vuxTcyE','Kim, Dyveliz, Anthony, and staff, Thank you!!','2018-04-17 21:41:42.336000','2018-04-17 21:41:42.336000',5,'Takashi Gollnick','https://lh4.googleusercontent.com/-cRJTj32mlhY/AAAAAAAAAAI/AAAAAAAAAAA/ZKH0wFndIvw/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3835),('AIe9_BFqh_zr355jzGaEpH7666zc7OjTmS7Zd1kGWhMLgtrHNeu03YTM8jwhXz5xyfuT_7WnqeFQ36HzXEkeAGFQ2Pg8UAUSrNcV2r_nsCF-p6maU1aprDw','They were so nice and helpful! I felt so embarrassed about my injury, but Fatima, Sarah, Dr. Henderson and Daniel made me feel at ease and like it was no biggie! I’d for sure recommend this ER to all my family and friends!','2020-01-14 12:38:22.356000','2020-01-14 12:38:22.356000',5,'Bailey Todd','https://lh6.googleusercontent.com/-H9zcN1D83NU/AAAAAAAAAAI/AAAAAAAAAAA/1z7T8c0__fo/c-rp-mo-br100/photo.jpg','16389487648212004696',9731),('AIe9_BFqh_zr355jzGaEpH7666zc7T4Vy3tjhmTBD24ihUjd5hr64bO52pETBNBZAyNIDDlaYs4ykXZDwjnftyO2r6F9_MiFot8hsEJBSt_wZ1k0WH8I2D0',NULL,'2019-03-17 14:03:21.813000','2019-03-17 14:03:21.813000',5,'Lewis Allen','https://lh5.googleusercontent.com/-jEFEJLGRHTw/AAAAAAAAAAI/AAAAAAAAAAA/WVugYUUonGM/c-rp-mo-br100/photo.jpg','8679688254631342173',8861),('AIe9_BFqh_zr355jzGaEpH7666zc7xBLTVmqdvfYgjdf9AnkxhK8eXQEVbsenkVFD5HbSBCtOT5ZvhraHjQQdgclK-4bEgwTxQsR2Hs14NbgLp1wBkzFgG0','I made an online appointment around 8:00am for a 10:00am spot, arrive a few minutes early to complete the standard intake forms and was out of the clinic by 10:45. Everyone was friendly and I am pleased with the service.','2020-07-29 23:11:41.512000','2020-07-29 23:11:41.512000',5,'Justin Bayles','https://lh4.googleusercontent.com/-jTpD0nhF8IQ/AAAAAAAAAAI/AAAAAAAAAAA/awlIhmA0aTg/c-rp-mo-br100/photo.jpg','14748677429039074158',21901),('AIe9_BFqh_zr355jzGaEpH7666zc8edF6BF7H1C1VDCt0K2ACU3Kjy0FJITpgBqMrq4TlniRD1RzcuYnsQpVLHtdPGw7c-kikRdsq5qCKM9U4q4qnRFAAw4','Very knowledgeable and caring staff. Will return if we ever need to','2018-08-10 23:55:19.555000','2018-08-10 23:55:19.555000',5,'sam burke','https://lh6.googleusercontent.com/-G8qkv7zZIAw/AAAAAAAAAAI/AAAAAAAAAAA/Ir65gLdTjj4/c-rp-mo-br100/photo.jpg','3511292162159714121',7639),('AIe9_BFqh_zr355jzGaEpH7666zc9gX0AsOhqV8WJvIK1GENX3QouelpWOyHUDM6CpsPlXea8YpMwU1Hs9_KOb8V8W-areIeA_gs_IrQSi4OXw81CCsLARQ','The only place open 24 hours in a college town where late night accidents are bound to happen! Super great and super helpful!! Definitely recommend coming here!','2017-10-23 03:39:29.782000','2017-10-23 03:39:29.782000',5,'Courtney O','https://lh6.googleusercontent.com/-BrsIRZVuT1Y/AAAAAAAAAAI/AAAAAAAAAAA/Mcvd0mA40Cw/c-rp-mo-br100/photo.jpg','16590124370714063921',3916),('AIe9_BFqh_zr355jzGaEpH7666zc9I3KMzPIeRMk_LJYNnKIHxggFyucBpmrHyoFvrJ6gH_LA5oi27XrlW2bcDnMIjEKs1QbGlaMFQ_65exXcsEhI564XXY',NULL,'2016-09-21 14:41:58.622000','2016-09-21 14:41:58.622000',5,'Michelle Newell','https://lh5.googleusercontent.com/-hleVSenMIYg/AAAAAAAAAAI/AAAAAAAAAAA/HZ33tHIEMVI/c-rp-mo-br100/photo.jpg','3511292162159714121',7938),('AIe9_BFqh_zr355jzGaEpH7666zc9Nv9WhQmrKfY1V6zoR1YR1XRjiSykvYKr4e5RUUHb2cj7nzuyyMMGy14yxWgA2v4B0xzNw3_g8hXJMi2WUANdPLxl48','They great you as you walk in ,super friendly and super fast','2019-08-01 16:15:35.194000','2019-08-01 16:15:35.194000',5,'Erika Barrientes','https://lh3.googleusercontent.com/-L4f2HysfroA/AAAAAAAAAAI/AAAAAAAAAAA/Amrd6YyigzE/c-rp-mo-br100/photo.jpg','6521947413723274945',8174),('AIe9_BFqh_zr355jzGaEpH7666zc9OHSZK_Wwcf84YJGmRFfR9RFJVHvWU7jWp4z9nnFQd3S4j5ZyPelBM7Ldl0yx4sVM4JBPiMTjEKEqMHhWg4YrW_4Rsc','Excellent staff :) Kristina, John, Hanh, Genesis ans Doctor Jaber were all very nice to my brother and very informative','2020-01-19 21:27:00.599000','2020-01-19 21:27:00.599000',5,'David Delgado','https://lh4.googleusercontent.com/-Po7krXQdfBU/AAAAAAAAAAI/AAAAAAAAAAA/9OSctNRk2JE/c-rp-mo-br100/photo.jpg','12541597562633926366',9942),('AIe9_BFqh_zr355jzGaEpH7666zc9vdGYwTJMjLBxZsBfAXKhnoT2icr3Ijj1pns_IggkJekXV1RtA2oJNw5a9Lebq-wmxDA8dzMYZsQHxbxvBSZjl3Ajs4',NULL,'2019-05-01 16:18:46.049000','2019-05-01 16:18:46.049000',5,'zaccarias rodriguez','https://lh4.googleusercontent.com/-WZfg2ScdZWs/AAAAAAAAAAI/AAAAAAAAAAA/bYxv6oapk_k/c-rp-mo-br100/photo.jpg','13486358490203335051',1026),('AIe9_BFqh_zr355jzGaEpH7666zc9Vq_MrTihZChJTFsM6a5BqezeNhv5xx_1jtnbZckwZII1ep8jezEwEq1QAKF19Ks_sbP1f0JJ-x9qBBZ5gdaKvblpwQ','Extremely efficient and organized. Everyone was collected and patient and answered any questions/concerns that anyone may of had. Will definitely recommend to others in the future.','2020-07-23 17:24:14.526000','2020-07-23 17:24:14.526000',5,'Susanna Neidhardt','https://lh3.googleusercontent.com/a-/AOh14GgU1Q3ZvpYvn0mU_GzK7JblzBffihihkgXZJsd-=c0x00000000-cc-rp','14567670160750071148',21870),('AIe9_BFqh_zr355jzGaEpH7666zca0Nh4-fY4HK3llEAxGf6yQI81jK4BaXVU8RcNPmFUO7OiyawBnX5lf1mEns7xDSiyFssAtQwGp8-C2IcuOw5zR9yehQ','The staff was very rude and unprofessional.','2020-05-28 03:49:49.081000','2020-05-28 03:49:49.081000',1,'Kristinfaith Richard','https://lh6.googleusercontent.com/-jE2O_r_X3jI/AAAAAAAAAAI/AAAAAAAAAAA/XEqOZK6_QvU/c-rp-mo-br100/photo.jpg','8918455867446117794',22938),('AIe9_BFqh_zr355jzGaEpH7666zcaV_5McFShXti8zFd0YW7WjjjO2AD--GPyULMJtRIu74Ad3rgrIQsaLRTnZxxwTjYgsMqlEBqp0NUxQ-DERJAvtSYVJY',NULL,'2017-03-27 19:28:21.612000','2017-03-27 19:28:21.612000',5,'Julia Carnes','https://lh6.googleusercontent.com/-UrwaY_4Gvi0/AAAAAAAAAAI/AAAAAAAAAAA/rkZhpADcm68/c-rp-mo-br100/photo.jpg','14904078213800803294',2379),('AIe9_BFqh_zr355jzGaEpH7666zcAzFjkXM0mQNx-iZcWRae_ljKVNZo0p0Uz81i7ZGXpuJ2LBxeN52Smjv2p92b-Dn4NTC9iuCpkCGdrJI5dz-zLtSpa8c','Friendly staff, no wait time and the doctor was very precise and nice.','2017-05-18 16:32:35.845000','2017-05-18 16:32:35.845000',5,'Alma Criollo','https://lh3.googleusercontent.com/-JQ08Tj2jNzM/AAAAAAAAAAI/AAAAAAAAAAA/wLirB6IqUvQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5051),('AIe9_BFqh_zr355jzGaEpH7666zcb1fn41qvo5HQylc0_EgRGVjsDIxK5oa8NNLzRWC_iVrCaMKcoRs8YZJ8RyeRjN9a530KBj9jk6mQqR02TevWCPSigqw','Very prompt nurses and doctors. The facility was very clean and everyone was nice and professional. I would refer anyone.','2017-05-05 19:08:23.425000','2017-05-05 19:08:23.425000',5,'Tameka Odums','https://lh5.googleusercontent.com/-TKdQSi3Vm2Q/AAAAAAAAAAI/AAAAAAAAAAA/KLeP-aqgtDM/c-rp-mo-br100/photo.jpg','17394740196501090048',5065),('AIe9_BFqh_zr355jzGaEpH7666zcb3DH3gPMs3wRUwYmGaezxq-R9-yrHT4kQSgWck7vrpcN6VId1XfklrK4s5aulHHVKJr3JmiDepBVSqzPEE1rXAyI2iY','Jeff, Wendy, Laura, Terra, and Dr. Golla were truly amazing!','2017-11-10 21:15:45.521000','2017-11-10 21:15:45.521000',5,'Sonia Melendez','https://lh3.googleusercontent.com/-w34qGR0OEQs/AAAAAAAAAAI/AAAAAAAAAAA/nVfCi5j7dPw/c-rp-mo-br100/photo.jpg','17394740196501090048',4935),('AIe9_BFqh_zr355jzGaEpH7666zcb8H9zaRQ1ZYbKEJU8HlFaS77WUm0Y9MJmR2fIo-FM15kJHIcJjYN6pM3bw8-9m6fsGdrJ9wNXlL2Kh2GprjzKsPYMI0','Everyone from Jennifer D. In registration to our nurse Kelsey to Matt the tech was absolutely great, the care and concern they showed us was great. We appreciate everything they did for us.','2019-01-06 16:24:41.065000','2019-01-06 16:24:41.065000',5,'Sherri Benson','https://lh5.googleusercontent.com/-qelkRuJk19o/AAAAAAAAAAI/AAAAAAAAAAA/aaMfY1YPPtI/c-rp-mo-br100/photo.jpg','8626688543755174284',8603),('AIe9_BFqh_zr355jzGaEpH7666zcbC5dEsE5dX0yEHSYTLb-1yjCdCvUJ5qIucdwajIqO20tOxSsy73bquGiWjSFMt_idQzzLMb3ubSM35KPJDkKPgMie2Q','These people are amazing! The best care I’ve had, Tricia, Jesus, Dr. Cavasos, and Shola are all amazing and caring people. They were able to take me on really quickly! Would come here again if ever need any more emergency care!','2019-07-04 14:41:09.406000','2019-07-04 14:41:09.406000',5,'Jay Dub','https://lh5.googleusercontent.com/-BXo-YHlydco/AAAAAAAAAAI/AAAAAAAAAAA/zW7TBAgYBrM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcbFO8JBhcnVEwTXsdVPzYGwSRdfOcXQvv0D2NDI_s6neVbNO5HG2EGsf8iJ0CiT8h0qvy9b2bvNMxh9ZQpOwflC1Nlag','Really enjoyed my visit. Quick & attentive!!!','2018-01-04 08:41:30.412000','2018-01-04 08:41:30.412000',5,'Dynastie Francis','https://lh6.googleusercontent.com/-ixDv-zf6smM/AAAAAAAAAAI/AAAAAAAAAAA/myUyUfJVFG4/c-rp-mo-br100/photo.jpg','14567670160750071148',1696),('AIe9_BFqh_zr355jzGaEpH7666zcBhAjOL8YxJ5abenfMGUrHk6_AekuIOzMRkjD1QA2N7RpdzZH_J-z6thtTkr3gnMCLwFehj-g9-PeI3IIwRHwEziOxok','Dr. Estevez, Alvean, Tricia, and Jasmine treated us with 5 star service. They made seeing the doctor a joy. Not to mention the facility is like a 5 star hotel','2019-07-25 18:42:02.729000','2019-07-25 18:42:02.729000',5,'Maria Anderson','https://lh4.googleusercontent.com/-TLPFNfUATg0/AAAAAAAAAAI/AAAAAAAAAAA/4W6-oQ1garU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcbi_yvpRqRy6LFX-fgr3CUGLjH48_uMy8z3jzQAKIezii-Hlmmcis5xlKB8E66JIvfIsLTbXgE3Vzo4OItpqb-wR4VaA','I stopped by this center in late Sept 2016 because I had been having some pain in my foot. The building is brand-new and everything is impeccable. I was taken care of immediately. The young woman at the reception desk is kind and speaks clearly. Both the nurse and the doctor were amenable, friendly and professional. I was wearing a skirt, so for my x-rays the tech immediately offered me a sheet to cover myself: I did not even have to ask. To me this shows that these individuals are observant and proactive. \nWhile I waited for my results I was offered a nice warm blanket and water. I really think this is an excellent place and if I ever have any other minor issues this would be the place I would come to.\nThe only thing I did not like, and which I think would be a good suggestion to this medical group, is that I walked out and I have no idea how much this is going to cost me (or not?).','2016-11-10 16:51:11.931000','2016-11-10 16:51:11.931000',5,'Alex Simmons','https://lh6.googleusercontent.com/-c5LRW-9yHec/AAAAAAAAAAI/AAAAAAAAAAA/Bf_VWhkXakE/c-rp-mo-br100/photo.jpg','14567670160750071148',1944),('AIe9_BFqh_zr355jzGaEpH7666zcBIOIZY4Au368CqTA9_l54C-Vs3xQoT1Gemi_5a3t6JhojOYceM_WANSyiZADwtomnyC7X1wBhpODSCXjS-axUqFyQkw','This place was amazing...Great care from everyone...Jocelyn the register....Alvean..the nurse...Tricia from Radiology....And of course Dr Henderson...great care','2019-06-20 14:40:52.230000','2019-06-20 14:40:52.230000',5,'Tammishicka Carr','https://lh5.googleusercontent.com/-ZVIUYYpHZY0/AAAAAAAAAAI/AAAAAAAAAAA/iiwEryuFlPs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcbmzRZMzlvG-WxDdW_r-9gY0vH5HQ2N2DGEbQghLzU_RdEg4do4dPQEgGy92AE6JFzeZ-teja2vve_gsAcDDt2Rtm0HM','Amazing working space very child friendly. \nNurse Samantha was wonderful \nand very helpful. \nI’m glad to know we have help in any place needed!','2020-02-26 04:21:28.912000','2020-02-26 04:21:28.912000',5,'Moses Vasquez','https://lh5.googleusercontent.com/-ZM7oQ-fjumQ/AAAAAAAAAAI/AAAAAAAAAAA/8HRIdu1K7gU/c-rp-mo-br100/photo.jpg','14567670160750071148',13510),('AIe9_BFqh_zr355jzGaEpH7666zcbTc_AJn9v3GwDm1Zr3brBBZK4Q87J0y3BsIvP7nnOx7fQYauhRyetokMlzggcUrBkkJC_TnLXhUq6t9w33YKAeKADZ8','Everyone here is always helpful! We use this er a lot and never had any issues. We get a call the next day to see how we are doing. Today my son has Dr. Osiecki, Nurse RN Leo, ER Tech Pete, Radiation Tech Carolyn, and our amazing registration lady Lisa! All were amazing and got my son seen fast and was happy with the results!','2019-05-19 17:39:58.455000','2019-05-19 17:39:58.455000',5,'Kimberly Rownd','https://lh6.googleusercontent.com/-ZnQ8gKDCrVg/AAAAAAAAAAI/AAAAAAAAAAA/WYR1R4MEVO8/c-rp-mo-br100/photo.jpg','6521947413723274945',8273),('AIe9_BFqh_zr355jzGaEpH7666zcBtQuRPqgeNihFiAvFBHmN64k-2lR4BwsuTK_I0oFQCnGsu66VVsnO499FUWh1dZeJrJICl3pWR9VwV3gOXqFh17AOo8','I was greeted very nicely by the front desk lady, Vy T. I was then called in very quickly after my arrival and was taken care of by a very sweet nurse named Tyler M and an ER Tech namer Courtney G. Dr. M. Pham was my doctor and he clearly listened to my symptoms and told me about my diagnosis. My nurse and ER Tech were very nice and patient as well.','2020-05-21 23:03:00.113000','2020-05-21 23:03:00.113000',5,'Ana Husted','https://lh4.googleusercontent.com/-C72vVJyB_KY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckddQChtlJgwiYk8C4TFdDm1sYqig/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22107),('AIe9_BFqh_zr355jzGaEpH7666zcbw7MbqiK8wE3Vrkn7-fpdaDwtrER60YD1fVL48WwRdGG7j4xihkzz_tEKYLhvVGDPRnSYxqlxHMoh5Q91gpd9QYg9kI','I think the team did a great job. The treatment was much different that I thought it was going to be but extremely effective. They have an eager team that is looking to help solve any problem (Dr. Elsbecker, Adam, Shelly, Linda, and Jennifer). I would definitely go back if I have another issue and would recommend my family members to them as well.','2019-11-26 01:20:40.174000','2019-11-26 01:20:40.174000',5,'Matt Jachimiak','https://lh4.googleusercontent.com/-LR1pu7zTnc0/AAAAAAAAAAI/AAAAAAAAAAA/cgKlZNhcFa4/c-rp-mo-br100/photo.jpg','16891069708558046635',4137),('AIe9_BFqh_zr355jzGaEpH7666zcBXlKDnDcYcESR_vE3Gt8JHXbDHdBQtqWKVWn9eeV_VJKhcqab8ExLaMZcOG9RDMUmMSlLXl7D7IoQbxPPI3xS54f7H0','Jessica S was amazing! Kind, compassionate, and made sure we were all taken care of! Highly recommend this place!','2020-07-16 16:39:11.062000','2020-07-16 16:39:11.062000',5,'Danny Giesbrecht','https://lh4.googleusercontent.com/-IQXdDJHw_y8/AAAAAAAAAAI/AAAAAAAAAAA/Nze-Lbp86l0/c-rp-mo-br100/photo.jpg','14748677429039074158',21758),('AIe9_BFqh_zr355jzGaEpH7666zcC0355YnIsOQVWoRXRGdYyviA8PDV-aoFrEzRy7J-NC_OlfF3jyMjQ5QqnrlKfc9GI9IEbiHU9VrZ03aoBm2rAQvNd3k','By far the cleanest and nicest ER I have ever been in. Jeri and Hunter were super nice and really quick about taking care of us and making sure that everything was alright. 10/10 would recommend.','2019-05-08 00:55:30.030000','2019-05-08 00:55:30.030000',5,'Abigail S','https://lh5.googleusercontent.com/-wVT-o0Krub8/AAAAAAAAAAI/AAAAAAAAAAA/QPc-sCA3Gqs/c-rp-mo-br100/photo.jpg','16590124370714063921',3393),('AIe9_BFqh_zr355jzGaEpH7666zcc0vIg1gKKp8woJEvKYroewfwHIbqp4NlfcqNeiih3vjkQIFqFGTHvGFb9mLjyAhff0k20lsDOMSJvqJXnt8InA463nU','Went here because I had a car accident. Wait time was short, and all the staff were nice and helpful.','2020-02-19 22:11:15.172000','2020-02-19 22:11:15.172000',5,'Alyssa Nhel','https://lh5.googleusercontent.com/-pcUz3To15QM/AAAAAAAAAAI/AAAAAAAAAAA/SHgUZpMqeuk/c-rp-mo-br100/photo.jpg','8918455867446117794',14814),('AIe9_BFqh_zr355jzGaEpH7666zcC9Q5ZX3EDj69E7otNjNFx_faJBH0dm4Mk6J7cNFMKMeyofueZ7OfrvPZiZLV7myreNI9QdadAU9vMKW2Mq3aXzzmx5E','I had to take my son recently for a visit and everyone was exceptional. Alicia was caring and friendly during registration, and John showed compassion to an upset 3 year old. Dr Odedra was awesome. I appreciate having options for medical care. Thank you Signature!!','2019-01-08 16:23:35.905000','2019-01-08 16:23:35.905000',5,'April Farmer','https://lh4.googleusercontent.com/-iiaMxnBKl4c/AAAAAAAAAAI/AAAAAAAAAAA/Wf7MGlSEL8o/c-rp-mo-br100/photo.jpg','8626688543755174284',8596),('AIe9_BFqh_zr355jzGaEpH7666zcceC8e6hNCIRv0_-zRQLu2SNu7BXQj-xMrDeDjG7shyLAY_FjGpAO1V_T6NmXATJG4hnluhcKq1cG3DbU8a50vjfQIq8','Dr Patel aldean Brian Jocelyn Jordan great','2019-10-23 19:24:14.652000','2019-10-23 19:24:14.652000',5,'Francina Neely','https://lh5.googleusercontent.com/-4zxDTpyY44k/AAAAAAAAAAI/AAAAAAAAAAA/4DXZHt4JqV0/c-rp-mo-br100/photo.jpg','16389487648212004696',2790),('AIe9_BFqh_zr355jzGaEpH7666zcCEP7A072GGBm5B6OTC6c9bJ4bnwR2YlBqchgWUxAKOTZUJ1hV7gmDfbfhebY9zYeCekX14TlJROb_nTST9Fp_-U_tYE','Came in on a Saturday night to Stafford location. They were busier than I expected, but it was still an easy and fast process. They did a good job at the door of only allowing a certain amount of people in at a time due to social distancing. The waiting area was clean. Although they were busy the front staff was polite and helpful. Brodrick helped register me, he answered all my questions professionally and was very helpful. I know how overwhelming it can be to know you have a line of people waiting (outside) but i appreciated that i wasn’t rushed and all my questions were answered! The nurse was also great, she answered all questions and was very knowledgeable and getting my test results was fast and easy. Great experience!','2020-07-22 19:39:39.440000','2020-07-22 19:39:39.440000',5,'Bertila Navarrete','https://lh5.googleusercontent.com/-ws05vL_fV24/AAAAAAAAAAI/AAAAAAAAAAA/tCiPy26-j_Q/c-rp-mo-br100/photo.jpg','8918455867446117794',22304),('AIe9_BFqh_zr355jzGaEpH7666zcCfosK7KaQ09WUAtq8Qxu7o2ohvkDIu6ZSLroR3B4kHFpCg9nfeqooiUgtNclL9aCcvI1T52ahbJccZJF0veRrPbQQM0','Anthony, Ravyn, Patrick, Stephanie and dr bare were wonderful and a very big help for me. Asked if we need anything to drink, offered me a blanket. Gently with putting and taking out my IV. Very nice workers!','2019-04-26 01:48:49.763000','2019-04-26 01:48:49.763000',5,'Zay Shivers','https://lh6.googleusercontent.com/-YHGFZ3LL8nU/AAAAAAAAAAI/AAAAAAAAAAA/qc40-zLBBOA/c-rp-mo-br100/photo.jpg','16590124370714063921',3406),('AIe9_BFqh_zr355jzGaEpH7666zcCFw4TVdopWu7GF9OAAA4hH3qOv5mKLYIHHXFtpkwnoDs9SvNwv3MmXXVeTpzcHfLQE1jHv9E0N7Kf9qtkCIu_n3MSrQ','This is the second time I\'ve been to this clinic and they were just as fast and attentive as they were the first time. The doctor was very informative of what was going on and the nurses as well as the receptionist were super sweet, as well. Definitely recommend this place.','2019-03-18 16:31:50.958000','2019-03-18 16:31:50.958000',5,'Erin VDB','https://lh4.googleusercontent.com/-IIUbwvj2fG8/AAAAAAAAAAI/AAAAAAAAAAA/hw2QaABWAvM/c-rp-mo-br100/photo.jpg','16891069708558046635',4322),('AIe9_BFqh_zr355jzGaEpH7666zcCkf5ze_UWwgCA5tB8uo1HA6Kw_59rgHPp3GVfltpEcX0DtQ1xD4UM3IJ61XrMR5C7v37LSkJDv7opbyAmfAXkU5LQB8','Quick and excellent service','2019-09-14 17:29:34.007000','2019-09-14 17:29:34.007000',5,'Arlene Shelton','https://lh6.googleusercontent.com/-BzEPnoUbr8I/AAAAAAAAAAI/AAAAAAAAAAA/KfhP1m48Mec/c-rp-mo-br100/photo.jpg','14567670160750071148',1239),('AIe9_BFqh_zr355jzGaEpH7666zcCnUfCYyFMjiwlp6EFfa0yyxjyZpG3jyg9LYiz6PErgUDUTMMp5wMI6x4PxGajMmu-mQfgBPqcHqXdfs_BJ396xeVyHU','Kim was the receptionist...everyone did great today.\nThis is not my FIRST time coming...everyone is Super.','2017-01-19 21:52:09.858000','2017-01-19 21:52:09.858000',5,'Darlene Williams','https://lh5.googleusercontent.com/-pFQgYUekF7U/AAAAAAAAAAI/AAAAAAAAAAA/q-jwJy03YuA/c-rp-mo-br100/photo.jpg','16590124370714063921',4087),('AIe9_BFqh_zr355jzGaEpH7666zccvI_VyTeL6B_iGqaFoHgzQRZTWx-fiGKGEW29UnghvXhmJH2vR4b2IJO23_SeG38eC1At63WrsiFVuJ84NnJwzQsTpc','Beautiful facility with excellent care. Dr. A, Tricia, Robert and Jocelyn were great!','2019-08-31 15:43:15.762000','2019-08-31 15:43:15.762000',5,'Carmen Brand','https://lh6.googleusercontent.com/-qkxRtzi5CNs/AAAAAAAAAAI/AAAAAAAAAAA/yfqE7LgEY0A/c-rp-mo-br100/photo.jpg','16389487648212004696',2958),('AIe9_BFqh_zr355jzGaEpH7666zccw85mU9MqHfCtkCQBPYS7__DEqYaVQtJnEayE-NefkcWfb07JJT3WTo6ynch9nu6j_Ziam_G6J8cJkX_ldy2XsndCiU','Great staff! Awesome service, made me feel better just by the positive vibes.','2018-12-11 12:31:21.624000','2018-12-11 12:31:21.624000',5,'alyssia darensbourg','https://lh6.googleusercontent.com/-q6tikJM3jng/AAAAAAAAAAI/AAAAAAAAAAA/i3r-yAyFv5A/c-rp-mo-br100/photo.jpg','14904078213800803294',2189),('AIe9_BFqh_zr355jzGaEpH7666zcD-JEzyf93j27A6Oec__TFCPgNHdkHFTlNqGcC-B3jNBK27yRYQ0CtuDK8SkKTCn29GSJ_iIvm0Gui6TgoMkZeuhvZ3k','Dr Akumyili,\n\nGreat doctor very very informative an nice great customer.','2020-02-18 15:22:29.396000','2020-02-18 15:22:29.396000',5,'michelle paul','https://lh4.googleusercontent.com/-DRaN90MZeRQ/AAAAAAAAAAI/AAAAAAAAAAA/IzXvcXD216E/c-rp-mo-br100/photo.jpg','12541597562633926366',13366),('AIe9_BFqh_zr355jzGaEpH7666zcd2QSYIRj98gH5vW2CUm0EgZLekIx_DpWjFW2gPXV3D9ICxrmixZuobv7Fl_ekCL5VhqU_U5O-uGAIiaiWxjV8Yt8WNM','Took my son to get tested for Covid and even though the wait was long Maria was so nice and patient as the line got longer Supper professional.','2020-06-23 01:00:51.833000','2020-06-23 01:00:51.833000',5,'Carmen Valentin','https://lh5.googleusercontent.com/-MaGbWHjDIDs/AAAAAAAAAAI/AAAAAAAAAAA/6W4GLoBqeHo/c-rp-mo-br100/photo.jpg','2077061009497551125',21098),('AIe9_BFqh_zr355jzGaEpH7666zcdcMX7laWolFQZi2M50fGIeBs6K-sTayou_9pM73ic28Y13VFp8WIgAytb4nlOOsImYJKvrk0UXyT_HIgcGmjkcVD0TI','I made an online appointment. Came in about 20 min early and did all my paperwork. Even with the amount of people the wait was not terrible and they call you to your phone when they are ready. The staff was very kind and made me feel taken care of. Covid testing was quick and easy! Highly recommend.\nShout out to Georgia, Zack and Jessica S!','2020-07-21 17:38:08.479000','2020-07-21 17:38:08.479000',5,'Jordan Feigelman','https://lh4.googleusercontent.com/-3frx9nTjkLo/AAAAAAAAAAI/AAAAAAAAAAA/LE3cquV0g7s/c-rp-mo-br100/photo.jpg','14748677429039074158',21617),('AIe9_BFqh_zr355jzGaEpH7666zcdiBla1WZJY7V8QSNL8uejuqYDqPmCD9EqKagElGx9prg_1LQAm1scsWpXhL5wG_CMVXst-OcetvlhYc9M9hkfJwKiwM','We had a great experience here after a pretty dangerous injury. Brad, Becca, Lindsey, and Dr. Vakey were all super helpful. Thank y’all!','2019-09-20 21:05:57.239000','2019-09-20 21:05:57.239000',5,'Courtney Atkins','https://lh5.googleusercontent.com/-wdsGrWVX5cE/AAAAAAAAAAI/AAAAAAAAAAA/VtrkukCmSUA/c-rp-mo-br100/photo.jpg','16590124370714063921',3191),('AIe9_BFqh_zr355jzGaEpH7666zcdIYAFyEpSbU9__ZeCOnG8qoYkC8oeFEQeh7RM6SQk_vtYJpPXrKILFl-nV-bZERqjO5L0NTME70f078qANCUrP2mlGc','Dr.Datta was very friendly, Jesse our RN was helpful and friendly very attentive, Amy at the front desk was very helpful on the check in process. Over all the wait time plus the staff was amazing','2019-07-04 16:20:51.219000','2019-07-04 16:20:51.219000',5,'Sonia Luciano','https://lh6.googleusercontent.com/-pdtpm5EJ4II/AAAAAAAAAAI/AAAAAAAAAAA/tAZVm2nSrpU/c-rp-mo-br100/photo.jpg','8679688254631342173',8823),('AIe9_BFqh_zr355jzGaEpH7666zcDkqYjcl5pbzsfmDxO836TtgElSr41tR0AQM4t-PE4LzA1QdXq-WWKmmb_s8FUVfTlvK_B9F8k32PzNff-3B_1EV_hWo',NULL,'2016-06-16 02:13:05.585000','2016-06-16 02:13:05.585000',5,'David Haman','https://lh6.googleusercontent.com/-Iz6Tps0kEuc/AAAAAAAAAAI/AAAAAAAAAAA/DI2v9IlHmz0/c-rp-mo-br100/photo.jpg','8679688254631342173',8922),('AIe9_BFqh_zr355jzGaEpH7666zcDMltiW2Ewlv0bFr-0r9QcsiJNeKcoiLfEtdFw1wNHcJMhzuHrJ5S5-r0PXP-WAIvup7c5N8mR-5CYKZ9g5ZPvpf4_Jc','The doctor, nurses, and staff at SignatureCare were very kind, friendly, and informative. They answered all my questions and concerns I had with honesty and attended me promptly. I received superb care and would highly recommend this place to anyone seeking medical care.','2019-10-11 14:28:10.125000','2019-10-11 14:28:10.125000',5,'Alejandra','https://lh5.googleusercontent.com/-mK5gBDxVsXs/AAAAAAAAAAI/AAAAAAAAAAA/1bCG_mMKcDQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1222),('AIe9_BFqh_zr355jzGaEpH7666zcDNMjhjVOuhG0yj2TZJF2oxwIVQmXZo5AptcrvfgZ0ZIbQfMI-ai2rUqSX6EWH4Hjdqqy92UYJyIxISJQXDSS1wPPPRk','Great experience from Dr. Garcia nurse Robert, Tech Sherwin and Shay, and Brenda from registration.','2019-03-22 02:21:23.130000','2019-03-22 02:21:23.130000',5,'janeth Atkinson','https://lh5.googleusercontent.com/-fzdaES9_e-w/AAAAAAAAAAI/AAAAAAAAAAA/Uf7xTBCU3xE/c-rp-mo-br100/photo.jpg','12541597562633926366',533),('AIe9_BFqh_zr355jzGaEpH7666zcdu0x9fuxa7H9ZvQyzti6BwPedwGZDKYiSkI-n4DtTpN5Q0VF4YnjKN3JOs6DdeUDVOHS78YdYb4DnFJWh6R8SoZjjdg','If you have private insurance, why you would choose to go to a hospital emergency room is beyond me. Maybe you don’t like a pristine luxury setting, friendly employees, a serene environment with no alarms, moaning, or screaming and professionals who are efficient, courteous and spend time with you. If you are allergic to any of those qualities, don’t come to SignatureCare. You’d be disappointed with an ER that treats you like you have a first class ticket and you pay the same insurance obligation as coach. \n\nIn two hours on a Saturday, I was checked in, treated for flu like symptoms and discharged with a complete explanations due treatment plan. \n\nSignatureCare, Thank you for valuing my time.','2018-07-07 16:51:34.532000','2018-07-07 16:51:34.532000',5,'Cedric Dupont','https://lh5.googleusercontent.com/-ono4b_-67Jk/AAAAAAAAAAI/AAAAAAAAAAA/DphcynTjqc8/c-rp-mo-br100/photo.jpg','16891069708558046635',4461),('AIe9_BFqh_zr355jzGaEpH7666zcdxpGWTlAIjCcsaTJEXn-iNocAxaU707pln2DESwLFamZC8OWjIm9dAw0XzaA2teSFdBVqmCc-oeMAJnOMly5v9FXKSI','Absolutely excellent care!!!!','2019-10-05 16:43:25.182000','2019-10-05 16:43:25.182000',5,'Mitchell Moon','https://lh4.googleusercontent.com/-cIe7yfqCXkU/AAAAAAAAAAI/AAAAAAAAAAA/xg8Bz2lEsbw/c-rp-mo-br100/photo.jpg','3272657195432704501',6885),('AIe9_BFqh_zr355jzGaEpH7666zcDZk6NpGZ0lPDrHda4XzrycLu8Nsz2CUY207C2xbCHGoyr1r27b9DajCDC1KN4v9jb84Wvp0LshPvkQ3nyE3CZ5hgor4','Everyone was very nice','2019-05-06 09:36:56.357000','2019-05-06 09:36:56.357000',4,'Shala Oneal','https://lh3.googleusercontent.com/-EP07GO1B8A8/AAAAAAAAAAI/AAAAAAAAAAA/bIopO5yxd04/c-rp-mo-br100/photo.jpg','13486358490203335051',1015),('AIe9_BFqh_zr355jzGaEpH7666zcE4dgddlmaUmdoYkeGtEnjHQz9jlJwzj9-vDPwW1qrRHGy_5ogF6SFyRcT6iQe_COtlOZmxcLMSimNW5RwIiBAEfqT0A','Went into this facility a couple of days ago for the displacement of my jaw, as soon as my husband and I walked in the front desk receptionist (Courtney) was very welcoming and immediately got me to the back to see the doctor. I was seen by DR. B.S. ADAM D.O \nNurse: Anthony,Shobha  and Radiology Tech: Brown,Lonnie. After leaving this facility at about 130 am, The security guard made sure I safely got to my vehicle. All these caring people took great care of me while I was there. I would recommend this place to all.','2017-11-22 20:41:51.683000','2017-11-22 20:41:51.683000',5,'Ashley Cruz','https://lh4.googleusercontent.com/-Qiocc7x95uY/AAAAAAAAAAI/AAAAAAAAAAA/_04mmd2aNbY/c-rp-mo-br100/photo.jpg','8918455867446117794',9336),('AIe9_BFqh_zr355jzGaEpH7666zceajwJE9eeftDYG11gYUxPIjc4DSsEAfJ81vFvCLdjW2UYfwwydtmg7Ir1qrETQpUQFvZj9tLfhGTySxJ-LanGUGP7xg','very nice staff','2019-09-16 11:03:11.599000','2019-09-16 11:03:11.599000',5,'wendy alexander','https://lh6.googleusercontent.com/-Wfx3JMbO8bw/AAAAAAAAAAI/AAAAAAAAAAA/VPBrqpZ1Ihg/c-rp-mo-br100/photo.jpg','3272657195432704501',6893),('AIe9_BFqh_zr355jzGaEpH7666zceeQuvxiCx6RDIakNXG33NX-Cj7lZxLGp3LZuxJX4LPU3cN3uxlfI9vx_cluALnsaeIBzjEBwcEdxvUdchAQBDcZ9t0E','The staff at Signature Care was amazing, they’re very quick to get you into a room and highly attentive. Special Thank You to Anthony, RN, Natalie, Tech and most of all Dr. Vakey','2019-01-04 00:20:18.160000','2019-01-04 00:20:18.160000',5,'Karen Castorena','https://lh4.googleusercontent.com/-AoFuIN4MrgQ/AAAAAAAAAAI/AAAAAAAAAAA/5h5ScYjsTPQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3595),('AIe9_BFqh_zr355jzGaEpH7666zcEJa5zsltTUQsaO6nH5eSUnpOMhcaJ9dFscAy16vYDoXfYosSyXwKPkfcThSrig_jTcEQN--EMGEu9wnck0rCyTSrB04','Dr. Kotey was great as well as AL and how can I forget Cindey at the desk. Thank you all :)','2019-06-13 14:05:46.211000','2019-06-13 14:05:46.211000',5,'Saad Saleem','https://lh3.googleusercontent.com/-cU6brOIlXRw/AAAAAAAAAAI/AAAAAAAAAAA/49IVRySV3mw/c-rp-mo-br100/photo.jpg','17394740196501090048',4666),('AIe9_BFqh_zr355jzGaEpH7666zceN3Nz2396FfNEKPmdAeDGYi4wOsDn9BSbsqW5iMLUOXX6jHUX1WIA6of3EqYL8kgnalCU2GuKHbFdgLphG0abLHcxWk','Recieved awesome care from Dr.Yost, Brandi, Karen, Kim, and Gunnar.','2020-01-22 23:12:34.655000','2020-01-22 23:12:34.655000',5,'shelby lejeune','https://lh6.googleusercontent.com/-Mhq1Wy3Z7fY/AAAAAAAAAAI/AAAAAAAAAAA/70PoYTvRliI/c-rp-mo-br100/photo.jpg','3272657195432704501',10286),('AIe9_BFqh_zr355jzGaEpH7666zcEPVbRmMvS96ulUWvrwcluHqEu_IcIbDnO84CUcUtKcKPuASOYN0hGDtsa2Afmh2fHJc8Y6JB6w9-Ul8bJOZZMeoct7k','I appreciate the quick feedback and resolution that this facility provided to me. Thank you Dr. Frausto, Alexis (Reg) , Anthony (RN), and Natalie (tech) for the help!','2019-03-26 00:39:28.591000','2019-03-26 00:39:28.591000',5,'Savannah Maier','https://lh4.googleusercontent.com/-rUiad_BmC28/AAAAAAAAAAI/AAAAAAAAAAA/naZsZiURAkk/c-rp-mo-br100/photo.jpg','16590124370714063921',3480),('AIe9_BFqh_zr355jzGaEpH7666zcER2ORXi2lloJd8y8xtgUm_knBbxeVIgkoRij1yoMdJ40zdgWhNtFvgoEsMOFDpAzmdZG1nkC_dJq24RTrzY1uu9inqY','Great staff, very professional and fast','2018-09-12 22:42:45.341000','2018-09-12 22:42:45.341000',5,'J Roc','https://lh5.googleusercontent.com/-lNGtRnxBlVw/AAAAAAAAAAI/AAAAAAAAAAA/nWa6-7xwgUo/c-rp-mo-br100/photo.jpg','17394740196501090048',4797),('AIe9_BFqh_zr355jzGaEpH7666zcerDegoiZMv5U1y_my2c71-FpM-4BI9Wimjebkmdar5mgI3g4-FvnbpZm0vqF02vPeoARCZFrKozlHxhuRcSRJi2wHHw','Always very friendly, never takes forever. Always get right in!!','2019-01-05 16:20:34.456000','2019-01-05 16:20:34.456000',5,'Alyssa Cox','https://lh4.googleusercontent.com/-lA0IQc7oFcg/AAAAAAAAAAI/AAAAAAAAAAA/cFuPCcnEp48/c-rp-mo-br100/photo.jpg','8626688543755174284',8605),('AIe9_BFqh_zr355jzGaEpH7666zcf-BwanhNA7TJfE6VX_jEmjSAoclW2QkumLPKV4MoIkuL3VPbN2rSzOniAj-N_KgRLTjKfNj1mr7e1_gqijd20WNTnHo','Dr was friendly. It was a bit slow, but this is the first time I have ever had slow service and they were busy and I had alot of test run . Over all still a great place to go.','2017-04-12 22:54:02.645000','2017-04-12 22:54:02.645000',5,'Jennie Lovell','https://lh3.googleusercontent.com/-oNqPLzMXgjQ/AAAAAAAAAAI/AAAAAAAAAAA/ijahH15O4l8/c-rp-mo-br100/photo.jpg','17394740196501090048',5076),('AIe9_BFqh_zr355jzGaEpH7666zcf1hZsaRJ73lGf3y9IHbJocB4deyVj_1LRwtAoNRvI7DO8gMngUyEtzTHbMmr_rw-LX9uPPYjSfvUebXCflsAsELlzWM','We had excellent service and it was immediate. The doctor saw my daughter right away.','2019-07-09 14:30:52.488000','2019-07-09 14:30:52.488000',5,'Deborah de Flores','https://lh3.googleusercontent.com/-fwPbPYqjtOg/AAAAAAAAAAI/AAAAAAAAAAA/TPONf5bNmr4/c-rp-mo-br100/photo.jpg','16891069708558046635',4238),('AIe9_BFqh_zr355jzGaEpH7666zcFdEBf0I2zG9IMU5OeMOsJSiV53Rg8x5Y8PM_XXlh6hr8Vciu3fM_lCJZiB621HGFLwkF3kTH8EjKjO_fOys1m4l5cEk','I recommend anyone with an emergency to come here. I stepped on a screw and had to come here. Everyone here very nice and efficient. Signature care rocks','2018-08-10 01:11:18.291000','2018-08-10 01:11:18.291000',5,'Pleshette McClain','https://lh3.googleusercontent.com/-GoCcFdaspeo/AAAAAAAAAAI/AAAAAAAAAAA/7Nnhlcfdg3U/c-rp-mo-br100/photo.jpg','14567670160750071148',1571),('AIe9_BFqh_zr355jzGaEpH7666zcFdWSRn977Ux3olzmDiNHBAneMpw8Wzfkdh1gRdwvfKEZ1WUdJRtk_seFdL50bUwF_-sxcAaDTcJDupYgCAgznpFjsUE','The staff at Signature Care ER were very courteous and professional. We didn’t have to wait at all and they checked on my son several times during our time there. If we need an ER service again I would not hesitate to come back to this place.','2018-11-20 02:09:38.892000','2018-11-20 02:09:38.892000',5,'Rachel Williams','https://lh5.googleusercontent.com/-L6xKEwjjfvI/AAAAAAAAAAI/AAAAAAAAAAA/Y7__mM961gI/c-rp-mo-br100/photo.jpg','16590124370714063921',3641),('AIe9_BFqh_zr355jzGaEpH7666zcfGFH3vBJux_ntJhlYQY0xUNI24SKGS_ZR0Z40k05qsXBThK7eAFFCo47FCm89w2xYIMyMsyb6A3y6iAyoxpHKFN1t1E','Great experience, we were in and out in no time.','2016-10-03 12:21:10.695000','2016-10-03 12:21:10.695000',5,'Mika Frettie','https://lh4.googleusercontent.com/-xagtCMzMY0I/AAAAAAAAAAI/AAAAAAAAAAA/bPoOkVqsPgQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5195),('AIe9_BFqh_zr355jzGaEpH7666zcfT8ltFMdPSnkIN9GO4EOvZ5g2oXcLKsARydAKeR6YIjW3W9TrmHKIFnB_bk0SxO4Z9PLXT0EZzi_QWbkixB0vZAofr4','My girlfriend had some issues so we decided to stop here and the service provided was outstanding. The receptionist Tanishia was very friendly ever since we arrived, she offered me snacks while I waited for my girlfriend. Hands down the place to go for any emergencies.','2020-02-07 02:35:12.118000','2020-02-07 02:35:12.118000',5,'Edgar Rodriguez','https://lh4.googleusercontent.com/-oFBDSWg5Td8/AAAAAAAAAAI/AAAAAAAAAAA/_w08mICMIzA/c-rp-mo-br100/photo.jpg','17898197009688164559',22707),('AIe9_BFqh_zr355jzGaEpH7666zcfTpM0CVmv4mEcPND4k_P7ErEi7J5I0sZ2BN8kjvQ10UKGDKMPUEX1Q1g6tpz7Ia4X5CW27xCfKdrQ86CfT8jXY8fW8k',NULL,'2020-01-12 16:56:57.978000','2020-01-12 16:56:57.978000',5,'Da wa','https://lh3.googleusercontent.com/--3YNPfJ6IpM/AAAAAAAAAAI/AAAAAAAAAAA/k6JeG5epnLM/c-rp-mo-br100/photo.jpg','8679688254631342173',9562),('AIe9_BFqh_zr355jzGaEpH7666zcg7LfDh6Ax0tcVDmoaV5lQ7CgrYk_EZmlOntByxQlQMDcRnHERKslaEl7ayrlnRJqYffqbYtujTszLEdCeuU0DV3cJoM','Great team of healthcare professionals. Dr.Ybarra, RN Rollie, as well as the RA Natalia were all very attentive to my health concern and efficient with my time. Even Stephanie in Registration was personable. I will definitely recommend this location to friends and families.','2020-02-22 00:33:42.964000','2020-02-22 00:33:42.964000',5,'Ashley O','https://lh4.googleusercontent.com/-gVJ_81JGdNg/AAAAAAAAAAI/AAAAAAAAAAA/dEOOkqNtAKQ/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',14738),('AIe9_BFqh_zr355jzGaEpH7666zcgam6b32nxbugJdpHyyGyxZMzXk_lwPp1jGwwZ_R_iHaTSXsMVuf-VALl8GuhnQgKxcti8_yC9Bxfb6nB2bEqy1vVpPY','Went to put my name on a list on a Monday knowing I would have to wait to be seen. Two days past and I return Wednesday just to be told my name is no where to be found and I must have missed their call (which is false) and told me to come back the next day just to put my name on the list again (which will probably get lost once more). Very unorganized and inhospitable.','2020-06-17 14:36:22.991000','2020-06-17 14:36:22.991000',1,'Sabrina Guzman','https://lh5.googleusercontent.com/-iKs3aFdDgv4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmQPJX0pR0jUnAljGcW7LcZYoL8ZQ/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21039),('AIe9_BFqh_zr355jzGaEpH7666zcGBqO0K0FNya2szPzk2EJWka8hrH01NmMZqs0ExnwtKeMT0Kw2TsKl4hQb0WmQxxOtjxy_d-deWQm1g5DhAAEl-mV_DQ','All the stafff at this location were very welcoming, and friendly and helpful! Tanisha was very helpful and Shelly and William kept me laughing appreciative of their help!','2018-11-28 07:27:17.175000','2018-11-28 07:27:17.175000',5,'LaQuala George','https://lh5.googleusercontent.com/-rI1bt2FRoSo/AAAAAAAAAAI/AAAAAAAAAAA/3d7_uXhYmk8/c-rp-mo-br100/photo.jpg','17898197009688164559',5919),('AIe9_BFqh_zr355jzGaEpH7666zcgjfsf1vTA2GzOVKR5oyrom80Y2Lmf5s17KywD12JDNpztXQWAhMLj9SCdIb2-GVdH4CdABigbHwpUaYZvXzXhf95fnE','They were well organized for Covid testing. Had us line up and 3 at a time. We got there early. Now the location on shepherd, chaotic. I got there at 9:30 am signed up and was called to be seen at 1 am. By then, I was at this location. They were very nice, even the phone personnels! Thank you so much.','2020-07-01 00:29:15.329000','2020-07-01 00:29:15.329000',5,'Chocolate Capricorn','https://lh5.googleusercontent.com/-p2AHKx1VjtE/AAAAAAAAAAI/AAAAAAAAAAA/jDfwE3yA8CM/c-rp-mo-br100/photo.jpg','8918455867446117794',21503),('AIe9_BFqh_zr355jzGaEpH7666zcgn39wGBeBvUURX-d4t85eOZgk-_YuvorzuFvn2L8CT7p3n4uoc3I4xRKwqgm1IWO8vZwiRI_Yk1RdMggZ8lmRzdu0sU','Second time visiting Signature Care in Montrose and as usual, everyone I came into contact with were totally service driven. A clean atmosphere and peaceful, friendly and professional. I rate 10 stars!!','2017-11-02 18:06:57.928000','2017-11-02 18:06:57.928000',5,'Darrell Washington','https://lh6.googleusercontent.com/-1ufTGYUZyYI/AAAAAAAAAAI/AAAAAAAAAAA/kcoJ1pFLs_8/c-rp-mo-br100/photo.jpg','3511292162159714121',7767),('AIe9_BFqh_zr355jzGaEpH7666zcGn7LloXmz6WU9n41GnGtqzKGwsYRr7e4nam1z5mG5XjaJgI5b06X3UY2H4mwei8dD4yo4_9QUiUGpSmFSdMHxiIjfbU','I have experienced ER’s before but I have to say hands down this is the best ER I have ever been to! From the sign in procedure to my nurses and doctors everyone was helpful and kind. My only issue was the front desk while I was in the hospital bed because I had to stay overnight was her asking for my copay. HOWEVER the doctor fixed that and it was handled. Overall if I ever have to go back to the ER I will ALWAYS come here. I had to do a CT scan, MRI, and give blood and all of it was handle with care like I was family! You will not regret coming to this location.','2018-09-08 16:30:09.065000','2018-09-08 16:30:09.065000',5,'Bre E.','https://lh4.googleusercontent.com/-eKLGz46ncJk/AAAAAAAAAAI/AAAAAAAAAAA/9A9brsPAHl0/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7599),('AIe9_BFqh_zr355jzGaEpH7666zcgtqSKPB8AoCayPzx6eN0bkzGJNUNZ7IcIyq5QL1QFT5xLxYb_hG6jGJydZFFbGF21WJtascrleMUVKir2NrdROzcNQ4','I went to the Stafford facility with my 9 year old grandson, and even though they did not accept his insurance, they did a free evaluation and gave me suggestions on what I could do for him. They told me step-by-step what the process entailed and if he needed emergency care they would discuss a payment plan later. Everyone I came in contact with was knowledgeable and extremely friendly. He was also given a nice little care package before we left and he was excited. Clean, fast efficient service and I would highly recommend this facility to others.','2017-11-15 03:30:50.805000','2017-11-15 03:30:50.805000',5,'Sheila Jordan','https://lh6.googleusercontent.com/-2pEPQWcUmYI/AAAAAAAAAAI/AAAAAAAAAAA/3jj5f_nivnI/c-rp-mo-br100/photo.jpg','8918455867446117794',9339),('AIe9_BFqh_zr355jzGaEpH7666zcgv-yxKQS95AYn2hciqRbkmRS_PO6S5X1lpZtReCr4qJEZbE57JduDyk3YoKlsqGprVZgrPFeVEzvTL6aZB-7ajnFy88','I was in and out with in and hour and felt so much better!!','2018-08-23 02:33:25.686000','2018-08-23 02:33:25.686000',5,'Robyn Perez','https://lh6.googleusercontent.com/-q6JlL22adGE/AAAAAAAAAAI/AAAAAAAAAAA/hVSg5rx2cbo/c-rp-mo-br100/photo.jpg','16590124370714063921',3766),('AIe9_BFqh_zr355jzGaEpH7666zcgzQJFhUnDBCzzEQGDEY0UN4HejxVvMaH_IzTx16nvCfR9-dUxUFa3q7UMjC1pIyCTdszOKlvf3UShOu5SnHhBhpCLls','Friendly & Profs staff and their service was amazing and super fast! Highly recommended!','2019-02-15 17:07:25.016000','2019-02-15 17:07:25.016000',5,'kraig jackson','https://lh5.googleusercontent.com/-KeSS-Ug8gHs/AAAAAAAAAAI/AAAAAAAAAAA/NwU6MM-Tycc/c-rp-mo-br100/photo.jpg','14904078213800803294',2168),('AIe9_BFqh_zr355jzGaEpH7666zch2ZojhkP_MNcuZoD4kSqDfSjby-mWilSdMYKtz71VpTtOprV7haiuPWsL4QknIaJ6mtHyWcCGjQ7wm5zcomtLcjeDgY','Absolutely loved my experience here!!! Dr. Smith was amazing and he listened to my concerns. I was seen immediately and treated just as fast. I felt really comfortable here. For any other emergency needs I will come here not the hospital ER.','2019-04-15 23:19:19.733000','2019-04-15 23:19:19.733000',5,'Terris Eddington','https://lh5.googleusercontent.com/-dSxRJSK8DwA/AAAAAAAAAAI/AAAAAAAAAAA/iy8yZCLl54E/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',517),('AIe9_BFqh_zr355jzGaEpH7666zch7dsQwfTkfo3OgALlP1GYGHlNLVJcWeULNtgjjuR5_YUNW28bp41WuUExFJxd8BhDnuwPFPmg_Q3De_NQlfZGKLiUYo','The Staff was very caring have nothing but good things to say about the staff .\nDr Lindsay..Great\nJani.Great\nMarcus .Great \nJocelyn .Great\nLove the service..','2019-11-10 14:06:35.718000','2019-11-10 14:06:35.718000',5,'Thomas Hayden','https://lh6.googleusercontent.com/-EwTU45CdcdY/AAAAAAAAAAI/AAAAAAAAAAA/CB4ETENHjFM/c-rp-mo-br100/photo.jpg','16389487648212004696',2717),('AIe9_BFqh_zr355jzGaEpH7666zchGyOJfeA6T4jOBL7Uza44dfo5VDTASR4Z76atlEPEdzQfH4t1HpewTap4-psTDu17AJtsuMMXtsTBi4bQs6s7DknTI8','Overall great experience Jocelyn at the front desk was supper nice. Alvean and Jose has a really cool vibe and Dr. Do gave off good energy.','2020-01-11 18:58:18.371000','2020-01-11 18:58:18.371000',5,'Reynaud Jackson','https://lh4.googleusercontent.com/-4TAXucZ4qW4/AAAAAAAAAAI/AAAAAAAAAAA/ua3ZFL5OHYw/c-rp-mo-br100/photo.jpg','16389487648212004696',9484),('AIe9_BFqh_zr355jzGaEpH7666zcHSuyhwQuxGjKeTLr5m2GLcDsBpHNQSLkY4tnf7lxKnhK_TIwtO2GiKr47bPObQnPuhbYynv1z3DRXupq8K6AA1EPbxA','I took my son in due to him not breathing well. From the minute I walked in until I walked out I was treated like family. I like to extend a huge thanks to, Dr. Jones, Hannah. S, Helen, Sergio,Karen, Gunner, and Keo, they went above and beyond to find out what was wrong with my son and didn’t let us leave until he was feeling better. I would strongly recommend this emergency center. Very professional and quick. Thanks for all y’all help.','2018-11-21 00:35:55.314000','2018-11-21 00:35:55.314000',5,'Victoria Dunn','https://lh4.googleusercontent.com/-_XNqFJiWEDs/AAAAAAAAAAI/AAAAAAAAAAA/V_T5UMzFYNo/c-rp-mo-br100/photo.jpg','3272657195432704501',7099),('AIe9_BFqh_zr355jzGaEpH7666zcI1OWxQlW3wVIjDJXjDLyPebn0Kz5IfXy1_I69Qd-crAq6uhT3TgYotV4K7zgcZ3OwCXagrygUT4eIiidLquxzMCmVjs','This is the best ER I have came to.Very friendly and fast service.Thanks so much Dr.LUIS ORTIZ!He vas wonderful!Thanks Veronica too sweet and fast nurse.Highly recommend this place.','2020-08-19 15:18:27.026000','2020-08-19 15:18:27.026000',5,'Ana Popovic','https://lh3.googleusercontent.com/a-/AOh14GjyUDg5vvjgBX2Gp61pTtCWFyxGLu-qoy9j3J2G=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcI358fLCCdG23yNVMeKjvV6pImGbawrXhDA9wdq_oB6bHvdUu_MEhf8QmbOths72aMWihyfoH9-Lmxv8skObcN8yVF6Q','I had a very pleasant experience at signature care emergency center, (even though I went in for a fractured finger.) The staff was a true blessing . Rachel the nurse is an angel who went above and beyond to care for me. And Dr.V was very kind and helpful in helping my situation. I will sure come here in any future emergencies, and I do recommend this urgent care to friends and family.','2017-07-14 10:48:24.416000','2017-07-14 10:48:24.416000',5,'Mercedes','https://lh4.googleusercontent.com/-sWzRCGKQnHQ/AAAAAAAAAAI/AAAAAAAAAAA/kArLOl38d7Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1795),('AIe9_BFqh_zr355jzGaEpH7666zcIeRsU_22uC4V8bG_RnyYrrN51Ha62hnAXFHAoNZj5GC4sWOxEesJqKded0JslsY2zuBSd--cGSyOhFF9owVsGZrKUEQ','The staff, nurses, and doctors were very nice and treat you with care. I was welcomed and attended to right away and notifyed on the spot I had a fractured foot.','2018-03-09 01:47:32.436000','2018-03-09 01:47:32.436000',5,'jaslynn olvera','https://lh3.googleusercontent.com/-hbmzodn8BBo/AAAAAAAAAAI/AAAAAAAAAAA/FbO5X1_ZXqc/c-rp-mo-br100/photo.jpg','3511292162159714121',7719),('AIe9_BFqh_zr355jzGaEpH7666zciEYZn7aKlqGdmKI3TG_BiWcfWointJa7tVOwxzBGQBtS17o16j9DLR6TRZFINuX6hmsf81EV3t96nBLQmiTYnIMe_0A',NULL,'2017-11-04 19:08:18.755000','2017-11-04 19:08:18.755000',4,'Dzevad Traljesic','https://lh5.googleusercontent.com/-p7JbVFCefAM/AAAAAAAAAAI/AAAAAAAAAAA/X_n9vZJuYRA/c-rp-mo-br100/photo.jpg','17394740196501090048',4938),('AIe9_BFqh_zr355jzGaEpH7666zcismY95KD_pMwYlNnBEv4actDG5Mjxv58zEYh0S1r7GMFUe7P35KSRqwd0aXRBazfeIPCMRwhQdLV3pY4ceJmWHdvSac',NULL,'2020-01-03 23:34:39.254000','2020-01-03 23:34:39.254000',5,'Keisha Harper','https://lh4.googleusercontent.com/-7K9cXD8Pysc/AAAAAAAAAAI/AAAAAAAAAAA/fbVgmhbtCpE/c-rp-mo-br100/photo.jpg','16389487648212004696',2486),('AIe9_BFqh_zr355jzGaEpH7666zcizhfqv08juv2ARZTt6A1YMphqAzeJArh7AQzeI_hUqdUnvSBgSyFOXQputDawC4eD-aPmPT7B4bOfNbfQRGhQCHUBGQ','Dr Farooqi, Alvean A, Tricia B, and Natalie G. It was an easy in and out visit, much easier and faster than expected and the staff was extremely friendly and attentive. Will come back for sure.','2019-11-01 15:08:02.623000','2019-11-01 15:08:02.623000',5,'Bryan Barrett','https://lh3.googleusercontent.com/-u-sbG3TJoko/AAAAAAAAAAI/AAAAAAAAAAA/LAnM21SIX6k/c-rp-mo-br100/photo.jpg','16389487648212004696',2740),('AIe9_BFqh_zr355jzGaEpH7666zcJ8xA89pWCO0hTPL7YrS6HiFBDmBj0c_sq4Bh4WqPf0bN4z6poOCxYUVw78ZsKsz_TJXztomQrW_MD3awHDS9b-Qr4Vs','Great experience. Dr. Harjai was great, as was Anthony. They were super attentive and listened to my symptoms carefully.','2019-05-15 23:03:31.805000','2019-05-15 23:03:31.805000',5,'Hayley Field','https://lh6.googleusercontent.com/-hCeHvp4NZKM/AAAAAAAAAAI/AAAAAAAAAAA/8MvGKM20l88/c-rp-mo-br100/photo.jpg','16590124370714063921',3384),('AIe9_BFqh_zr355jzGaEpH7666zcjg2k3RagR0hB3HbdWt6vuMJNykeolOSF62st5TmQJQA4EzrZeI34wyS09LnQ-f4akrzQR6ssNVeK9OwLhxMYOltaYc4','I was immediately attended to by Patricia at the front desk and as soon as I sat down tricia called me back and was taken care of by both her and Robert H. Dr Ngyuen made it very comfortable and was professional.','2019-08-30 15:38:22.657000','2019-08-30 15:38:22.657000',5,'Elizabeth Alford','https://lh5.googleusercontent.com/-k4I4I2P6rHQ/AAAAAAAAAAI/AAAAAAAAAAA/CbPicBJvfog/c-rp-mo-br100/photo.jpg','16389487648212004696',2963),('AIe9_BFqh_zr355jzGaEpH7666zcjh-QiIWtqnFM3bvyN0bW_y5UbCnbcOO-ux7jOdOr7Xd2L5RT6osIcZ6e7jWEQNxaOB-lZC3kAbDSfk74Hqhzc9sRPdY','I was a patient here and even though I was feeling horrible they made me feel great. I would like to thank Dr. Yost, Lucas RN, Sherri Rad, and Kim Regis. I hope y’all come here if y’all ever feel bad because it is amazing here. Hope everyone has a great day.','2019-01-21 19:45:33.756000','2019-01-21 19:45:33.756000',5,'Aaleciyah Brown','https://lh5.googleusercontent.com/-BFjO7QFAru0/AAAAAAAAAAI/AAAAAAAAAAA/xK5U7E6DtEs/c-rp-mo-br100/photo.jpg','3272657195432704501',7048),('AIe9_BFqh_zr355jzGaEpH7666zcjM3DpvvBLuZ_nfVwL8L2eBgzFhZcK1BVOF26cZnKWJ84TtKdpeAefe3aZAaVuyzlfr2upIqhXKQ6C8IjgMzBdEQr1EI',NULL,'2018-12-21 01:30:51.607000','2018-12-21 01:30:51.607000',5,'Maily Gallardo','https://lh3.googleusercontent.com/-r8Fv4fNfooI/AAAAAAAAAAI/AAAAAAAAAAA/7qxfTkeXCLc/c-rp-mo-br100/photo.jpg','14567670160750071148',1447),('AIe9_BFqh_zr355jzGaEpH7666zcJrdorQrZAsxUw9nda44kAPpdz6o4X-B54RoYDLhKmEct_ORqPVzf8XSNz3HZq9M_oL5oEJhsZBMiNndsTJum5pF1WVc','The care and attention I received (both times) visiting this facility were phenomenal! The nurses there are some of the most kind and patient I\'ve ever encountered.','2020-08-02 14:42:15.773000','2020-08-02 14:42:15.773000',5,'Brennan Alexander','https://lh3.googleusercontent.com/a-/AOh14Gi45_sAluRZ33ggjKoSPuhB0HcnWVALyEdRyYL6=c0x00000000-cc-rp','14567670160750071148',21860),('AIe9_BFqh_zr355jzGaEpH7666zcjsnqNUQYQGRDtgI4tLI6MblJ26qQ0sZR8JJWNL5sXN7soIzIfDm5JXA80fSUjBraFQ1GRFF1E4998a6b6P2uJjPBXD0','Honestly I had such an amazing experience at this location with the help of Ikenna Amaliri he was so understanding and didn’t get frustrated when I ask silly questions. He had an awesome personality and a positive attitude I most definitely will be coming back there if I’m in need of care.','2020-07-07 03:05:47.324000','2020-07-07 03:05:47.324000',5,'esosa Evbuomwan','https://lh5.googleusercontent.com/-6VNV72pvSg8/AAAAAAAAAAI/AAAAAAAAAAA/gxlJncMqy_4/c-rp-mo-br100/photo.jpg','8918455867446117794',21494),('AIe9_BFqh_zr355jzGaEpH7666zcJWSisD2xPTnkFmQ6leVWS4iSkby1fNZqX0qMRrU56Lm7iJd6Oxd_x3MykSRd5Eaaf_26sHCzWBXzlZAIK6DB-C2YjbM','Mike and jemilat and Nydia were super!!!!','2020-08-06 01:15:53.036000','2020-08-06 01:15:53.036000',5,'Carolyn Reeder','https://lh3.googleusercontent.com/-OmYRtcOyUpI/AAAAAAAAAAI/AAAAAAAAAAA/aQTjBRpNixI/c-rp-mo-br100/photo.jpg','2077061009497551125',22728),('AIe9_BFqh_zr355jzGaEpH7666zcjXl60hNbwdHxEIizg6uFxp7ioDDjbkRgZ85M0A70EFNHa8euflOXtZk-DzRxM_xy_dqiqQq2rOwB-vfGEmU4qc3BOc8',NULL,'2018-02-03 20:25:24.394000','2018-02-03 20:25:24.394000',5,'Nicole Kuhn','https://lh5.googleusercontent.com/-7T62ZKPjE4k/AAAAAAAAAAI/AAAAAAAAAAA/ojTrBfAVYOQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3867),('AIe9_BFqh_zr355jzGaEpH7666zcJxoOsh60ey7fiehdZo_u3iotJeQZoeBlVE1ygEPLKpTthBanl6pmFKO1WX3DXfWqTk_kt1OrgKbGrwfB6cSm1sbpNwQ','A very friendly environment and easy to get seen right away. I was seen by Dr. Harjai. Very kind and great communicator about medical condition. Jacob, the nurse, offered me a warm blanket, water, and some television while I waited for my samples to be tested which I haven’t experienced anywhere else. I was also helped by Tori and Naomi who were also super friendly and helpful. Great atmosphere and people.','2019-10-19 08:27:23.897000','2019-10-19 08:27:23.897000',5,'Vanessa Rajan','https://lh4.googleusercontent.com/--BFbYDkMfek/AAAAAAAAAAI/AAAAAAAAAAA/xSLGRWM4kDM/c-rp-mo-br100/photo.jpg','16590124370714063921',3132),('AIe9_BFqh_zr355jzGaEpH7666zcjXukW4SXiZUYe8rk2vyqsnUf9vWRD9GBtDTrOvzQct6i2_mY2MoJylanjl9mpwayE47p5RtrMbf86aQ5ZkmEX90FqLI',NULL,'2020-07-28 05:50:29.503000','2020-07-28 05:50:29.503000',5,'Yasmine Rodriguez','https://lh4.googleusercontent.com/-ayr02onVqAE/AAAAAAAAAAI/AAAAAAAAAAA/d4cFK6pFmfI/c-rp-mo-br100/photo.jpg','14748677429039074158',22536),('AIe9_BFqh_zr355jzGaEpH7666zcJY3zFZhs5ckufVXJzXcfK7P-ZFd78nYVjTiB2gvN9L7yxWQBOWTLDWESgvH7D7_XG_QEES5XDXwZlOtdRX2z-YTw1Oc','Mercy was great, super nice!','2017-02-17 17:51:06.044000','2017-02-17 17:51:06.044000',5,'Shion Aikawa','https://lh3.googleusercontent.com/-tfJwfly0aJQ/AAAAAAAAAAI/AAAAAAAAAAA/qpblVGfvQpE/c-rp-mo-br100/photo.jpg','3511292162159714121',7878),('AIe9_BFqh_zr355jzGaEpH7666zck5yLtRjveYRtyTofFlDuUChywLehVX3-jKLHlN1CzMFyP8R0tZoNiOnFXCV4I8EwwNDDcghdVWjEJt3-i-OqZi7Ksv8','Dr. Ybarra and his staff were the best!','2019-12-21 21:24:24.790000','2019-12-21 21:24:24.790000',5,'Maxine Maldonado','https://lh5.googleusercontent.com/-MuVVkE9jrD0/AAAAAAAAAAI/AAAAAAAAAAA/r1Fk0xLqVPs/c-rp-mo-br100/photo.jpg','8679688254631342173',8681),('AIe9_BFqh_zr355jzGaEpH7666zcKB-Om8fkvClFA8d-wEVghls35zXMB8WXSRbCijxzavTEG0nDYPgWVf9wcWsW0Idm2LgoZYgVgruhaRhVbEFPcB6rBFQ',NULL,'2018-06-30 21:02:23.677000','2018-06-30 21:02:23.677000',5,'Chloe Brown','https://lh6.googleusercontent.com/-SYaicSVzRJA/AAAAAAAAAAI/AAAAAAAAAAA/8ojYih6K74w/c-rp-mo-br100/photo.jpg','17394740196501090048',4834),('AIe9_BFqh_zr355jzGaEpH7666zcKBfWUqVv6Ww9ARYtdXnBV8gN71qVw4EWaeVoR1arlSw3eYoSlpRVwuc30-ByqQJNK6PFcbrvncaM_nsu9EhS8YDH94c','Very professional services.\nThank you','2020-07-19 00:30:19.106000','2020-07-19 00:30:19.106000',5,'Sebastian This channel','https://lh3.googleusercontent.com/a-/AOh14GgR8x-NazbFN0WSDmhD97RFoJ8qa2mts_FdAb7I770=c0x00000000-cc-rp','14567670160750071148',21883),('AIe9_BFqh_zr355jzGaEpH7666zckC1JyB-lB1_Tom3PEh0XCmNZyNi4vQG1tEDy7K22VvuvsickKuYbvD-_hHpJroNLnzbvKKszljSVLf7ukPvSSCH51h8','Very fast and friendly people..I was in and out within 2 hours','2019-09-24 13:06:59.228000','2019-09-24 13:06:59.228000',5,'Kim Flater','https://lh6.googleusercontent.com/-lLI3uq9V08A/AAAAAAAAAAI/AAAAAAAAAAA/U2LEojxt_y8/c-rp-mo-br100/photo.jpg','2694018788013845459',6059),('AIe9_BFqh_zr355jzGaEpH7666zckgaitaJFwT38OKX8_IVNGiur8QoaofZfyjP7V-hAgEjF9d8Ds2Z9dBDZ9z36TbRZfERwr6lrFo_InXIIyf-XXllAZmg','Staff was super friendly and very helpful through the entire visit!. Robin, Billy, and Courtney were very attentive and took great care of me!.','2019-03-27 03:41:43.251000','2019-03-27 03:41:43.251000',5,'Brandi Coco','https://lh6.googleusercontent.com/-JYAE2Be7_zA/AAAAAAAAAAI/AAAAAAAAAAA/LuZlSweJpUc/c-rp-mo-br100/photo.jpg','8626688543755174284',8517),('AIe9_BFqh_zr355jzGaEpH7666zcKIUQw_qmdRYwaWWTr9hJWQ1VX7tefb7KtkfAOq-WUi61k1N8A6gyugp_uorjvVsJHbbAiCmL8PfcHCjoZTKRahyC5zQ','Well respected workers, very kind and helpful\nDr. Garcia is well educated and brilliant \nRaven was awesome and greeted me as soon as I walked in!\nNichole offered me a blanket and also treated me as a good patient.\nJulia had a nice personality \nStaci was Also on point! \nGreat service','2019-06-12 14:09:32.839000','2019-06-12 14:09:32.839000',5,'aerion hartwell','https://lh3.googleusercontent.com/-LVSRUk1HcWo/AAAAAAAAAAI/AAAAAAAAAAA/RMGTcTwzSMM/c-rp-mo-br100/photo.jpg','8918455867446117794',9125),('AIe9_BFqh_zr355jzGaEpH7666zckkgHZ_AtTU6p0jpT51YcsGPwbd9tK_jW3S5aOZsp6IcQFwmqNVjWTGWPki-QvpsQsv-d6x6AHbA1OIhl8i8QasX_15k','Came here for covid-19 testing, everyone was very nice!','2020-07-19 23:13:20.299000','2020-07-19 23:13:20.299000',5,'Charlie Jones','https://lh5.googleusercontent.com/-11uTFBn7V38/AAAAAAAAAAI/AAAAAAAAAAA/NZnM_I6hJeQ/c-rp-mo-ba4-br100/photo.jpg','14748677429039074158',21685),('AIe9_BFqh_zr355jzGaEpH7666zcKS9Ly_lWY1v47XFep0HNV5fDJEvxPPkcanu1f22cmdJSl5Oq2gk-07lfYfFxZTC-NFN1EEX6X8zbv2DJLOuArseTOj4','Extraordinary service!! No wait time , we were assisted very welcoming and homey , James greeted us immediately. Brian came right away as well and made sure we were comfortable and warm. Gave us toasty blankets and checked in to make sure we didn’t need anything . Dr. Odezie was wonderful and really explanatory on our situation and fixed it up right away , James did a great job in communicating with us and taking care of my wife all the way from taking us in to walking us out ! Amazing staff ! Front desk ladies were awesome as well !','2019-01-16 01:02:00.816000','2019-01-16 01:02:00.816000',5,'Alex Jaramillo','https://lh4.googleusercontent.com/-iBGrZKitHcI/AAAAAAAAAAI/AAAAAAAAAAA/NtrzhxvLbDY/c-rp-mo-br100/photo.jpg','14567670160750071148',1409),('AIe9_BFqh_zr355jzGaEpH7666zcKuMNkdgA6cUDpRNcxvC9SUYh7XdtJw6CnnkjLZ35eGZzTWOVJLsejhXolBP5CTNoQpgGxA9Jo5URTMgZM5E0O-zMMaU','Amazing staff! Thank you Dr.Henderson, Matt, Sarah, Fatima, Tanishia!! We were seen quickly and treated by the best! Highly recommend it you have an emergency','2019-09-13 00:20:01.248000','2019-09-13 00:20:01.248000',5,'Deirdre Brock','https://lh6.googleusercontent.com/-KSLUjhk4eOw/AAAAAAAAAAI/AAAAAAAAAAA/XSdPx0rqHJ0/c-rp-mo-br100/photo.jpg','17898197009688164559',5551),('AIe9_BFqh_zr355jzGaEpH7666zcL2wEfx4hFtaYt49pBda7L9xtonQXl0mGLIlSJBm9NUxmzbDHCNiKWzIpiIv8gGLieOHjFygRTPuzTp5z5gXIZv_hzCE','They were very good. Treated me like their own. Would recommend them all.','2020-01-23 02:05:20.657000','2020-01-23 02:05:20.657000',5,'kiara parker','https://lh4.googleusercontent.com/-rMBPWUirF0s/AAAAAAAAAAI/AAAAAAAAAAA/K5jrQOW_w3k/c-rp-mo-br100/photo.jpg','8679688254631342173',10344),('AIe9_BFqh_zr355jzGaEpH7666zcl6iFgDzvrgZkah5MLIz-Jr7sUMOM2lOswrHpY7hdXvB0E7vLNgvTqtOSyl1UXE-1jppxdVlyhKeryBGTxGdvIfaUWVk',NULL,'2019-12-11 16:24:39.924000','2019-12-11 16:24:39.924000',5,'Kimberly Griffith','https://lh6.googleusercontent.com/-PRicKTa_Vm0/AAAAAAAAAAI/AAAAAAAAAAA/Q9bME7xfLQo/c-rp-mo-br100/photo.jpg','2694018788013845459',5990),('AIe9_BFqh_zr355jzGaEpH7666zcl79iJ04LqIRGvwgQrZrPkulLl1Y7V7fxIl1Pp1X6XEiHCUxB3UMkhuIIFp6aSEgOXCw_jssavyof5GRqpFf9eecKNsM','Amazing hospital! The staff is wonderful! No nice and very understanding and actually care about your well being!','2017-05-16 07:38:19.163000','2017-05-16 07:38:19.163000',5,'Kelsi weaver','https://lh4.googleusercontent.com/-XW41zWfUFwQ/AAAAAAAAAAI/AAAAAAAAAAA/kyo8BFyrXvA/c-rp-mo-br100/photo.jpg','16590124370714063921',3987),('AIe9_BFqh_zr355jzGaEpH7666zclFL0IsJweV7Suu7NJDLHNi35ZTHlmkZVTMIcCuYG5CwBC1ScCxyiAATfTX_9UTAc2eugkm0Gyi_BrP4P_qTHVmZyNLI','Very fast, efficient and the staff is amazing. Kim, Lisa, Kramer, Allison and Dr. Huerta were absolutely amazing','2019-08-19 03:43:15.920000','2019-08-19 03:43:15.920000',5,'Rebecca Harrison','https://lh5.googleusercontent.com/-UtuOCoWZ3fU/AAAAAAAAAAI/AAAAAAAAAAA/DRpGAvgLdww/c-rp-mo-br100/photo.jpg','13486358490203335051',852),('AIe9_BFqh_zr355jzGaEpH7666zcLgaXy2bymILa464xmYdd0rptBIYGTbL0LeYu8bSW43vqJnDVOd7wzCjfoGguL-RmBAVY5dgZFIVX5YPdACkq9hv41EU','Despite the circumstances, this has been one of the best medical experiences we\'ve had. The staff has been friendly and attentive with out family. Dr. Henderson was very thorough with explaining the results and situation. Aldean and Patricia were very friendly on providing information and keeping us updated.','2020-02-08 17:23:09.324000','2020-02-08 17:23:09.324000',5,'Diana Montesinos','https://lh4.googleusercontent.com/-Dd7jzfzjzug/AAAAAAAAAAI/AAAAAAAAAAA/0GTmQHvxxL4/c-rp-mo-br100/photo.jpg','16389487648212004696',22609),('AIe9_BFqh_zr355jzGaEpH7666zcLge84qRqQEct0qjRsZocQB-NNN6VIFXoN00jftA5GM9_Wf30koVOKTZ5utJcZhtDe23gWj82t1_Um-MojhfeHwe6u1k',NULL,'2019-06-07 23:54:54.621000','2019-06-07 23:54:54.621000',5,'Celeste pino','https://lh5.googleusercontent.com/-dBG9atQp14I/AAAAAAAAAAI/AAAAAAAAAAA/PQVxH1sJLRA/c-rp-mo-br100/photo.jpg','13486358490203335051',983),('AIe9_BFqh_zr355jzGaEpH7666zcLhF0--5T5LbEBxJJzdz1DnC5nWVy3C01WUwP1SkqdZxYHwy9XZccziB2UxgDh36Y3CHWPwhf5hV5Jo1rFG7UzZwIV9k','They were very attentive to my needs, and did try to find what was ailing me. I can appreciate that, as I\'ve had many terrible experiences elsewhere. So thank you~','2019-08-16 20:52:25.649000','2019-08-16 20:52:25.649000',5,'Jo Dee','https://lh6.googleusercontent.com/-A6bAgTUr28Y/AAAAAAAAAAI/AAAAAAAAAAA/TGjXEKz6rSU/c-rp-mo-br100/photo.jpg','17898197009688164559',5579),('AIe9_BFqh_zr355jzGaEpH7666zclivcpnElS09yykeQfpprqdmdgIX-wRlVd89SDtNXg2si5H9OojxfV5Vi_eb9F_8deLNIdKyYrNIqh4Cjd-DAB9U14s0','Best medical office I\'ve ever been to. Everyone is helpful and caring. What a place!','2019-12-22 16:29:43.707000','2019-12-22 16:29:43.707000',5,'Action Jackson','https://lh4.googleusercontent.com/-dNssh2mgLPI/AAAAAAAAAAI/AAAAAAAAAAA/I-m6rl8gwWM/c-rp-mo-br100/photo.jpg','16891069708558046635',4104),('AIe9_BFqh_zr355jzGaEpH7666zclj1jZ4byg8LpDwYY8h5AUv6sr7ZBcEehdtiTU9TTJVKkMf97PEEc981fWVrUVhhHeTO8manFqizgCjcljaMHBl00Kfo',NULL,'2020-07-27 19:28:01.074000','2020-07-27 19:28:01.074000',5,'Front Desk','https://lh3.googleusercontent.com/-EGU_Y93jJ0I/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckTiPpVG_Lw0cYGi15m56YGdQ1ceA/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22014),('AIe9_BFqh_zr355jzGaEpH7666zclkSkLizHMRm3yALCS02y2CiiM77vpyEqN5WWCyntbzZqviiMcW_UaMiSialc-26cBH0db87qARX-XmJu45BoMrPKhe8','Best emergency care ever. They treat you very well since the beginning. The staff is beyond awesome. They even give you free drinks and snacks in the lobby haha','2017-02-16 22:45:46.436000','2017-02-16 22:45:46.436000',5,'Cesar Hernandez','https://lh3.googleusercontent.com/-rji_xOiCuI0/AAAAAAAAAAI/AAAAAAAAAAA/MMR15fmimdM/c-rp-mo-br100/photo.jpg','14567670160750071148',1882),('AIe9_BFqh_zr355jzGaEpH7666zclUBbO3InfYf7ihJcVdDK0nAv2fo3QHH5pdlziDJmnt7n7mDqbRU6w18Bx8dHI8qU-VBvTjKAium4RT6dMyzIvom7gMY',NULL,'2020-08-03 14:11:24.329000','2020-08-03 14:11:24.329000',5,'Diego Guerra','https://lh3.googleusercontent.com/-nqogauXqefo/AAAAAAAAAAI/AAAAAAAAAAA/k7un9DNnv5g/c-rp-mo-br100/photo.jpg','2077061009497551125',22980),('AIe9_BFqh_zr355jzGaEpH7666zcLWW095uu6QnmuyKEoTRUbmUoTYuL-Xck-twMFA33QryQBsb19CzF70IVOJ3AD5ymK35zM-B_88DKZY5oWdLkU4C9lYo','I had a great experience here! (Minus the reason why I went). I’ve had kidney stones before and knew the pain I was experiencing was probably due to that again.. when you’re in an extreme amount of pain and discomfort the last thing you want to do is wait... and I didn’t have to wait at all here! I walked in gave my info and before I could even think about sitting down, I was being escorted to a room. The nurses and doctor were so kind and comforting. They made sure I didn’t have any questions throughout the process. I definitely recommend SignatureCare !','2018-06-16 04:59:15.751000','2018-06-16 04:59:15.751000',5,'Casey Joshi','https://lh3.googleusercontent.com/-o6GWhmWTbrU/AAAAAAAAAAI/AAAAAAAAAAA/5d40kporxXM/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7697),('AIe9_BFqh_zr355jzGaEpH7666zcLxWfMeu1PcnYBWMRfGaDmjT0rroQHjQ_sWB4CUtnAcpewkbvsfxN5p4rhiqa9YiRY81fNqN8vXT9SzsOr_axpnMkVHQ',NULL,'2019-05-11 18:22:13.095000','2019-05-11 18:22:13.095000',5,'Jay Eilenberger','https://lh3.googleusercontent.com/-7sncupu0FIg/AAAAAAAAAAI/AAAAAAAAAAA/KlfAzjsuTO4/c-rp-mo-br100/photo.jpg','13486358490203335051',1012),('AIe9_BFqh_zr355jzGaEpH7666zcm0c1PUpvF04Ud6v9KtHs5og0wJfoLQ8cnVaZCkJ5dCRgR9NbIxqn7LTgg4HftS1MloPBZwIv2t06SCgiVPRU81ZBr0g','I\'ve used several SignatureCare ERs in the area. They are all beautiful facilities with all the essential medical equipment, not to mention extremely kind and experienced staff. The heights ER is no exception, and it\'s location is so convenient. I had to take my young kids there on a weekend when they weren\'t feeling well and the pediatrician\'s office was closed. There was no wait, the doctor evaluated and worked up my child quickly but thoughtfully. We left feeling reassured and with a detailed treatment plan. Can\'t say enough good things about this establishment. I would definitely seek their care again if needed!\n','2016-03-19 04:32:44.521000','2016-03-19 04:32:44.521000',5,'Ke Zheng','https://lh4.googleusercontent.com/-1l1aKRrRtAo/AAAAAAAAAAI/AAAAAAAAAAA/LzAt1Z9kxTQ/c-rp-mo-br100/photo.jpg','14567670160750071148',2043),('AIe9_BFqh_zr355jzGaEpH7666zcM26vd00_Lsfc37-lhXZgOAYuICtm1kmvQMvCg7OKOIqHv8jhhgSuvIzPiahvaP1LQMdmOj7kkHpyUSM_Sp9-YK5QDlE','Very welcoming and professional from the moment I walked in patricia was very welcoming and made sure I filled out everything needed before nurse Jani saw me and she was very professional along with Mr. Brian','2020-01-03 22:40:42.473000','2020-01-03 22:40:42.473000',5,'Carlos Olvera','https://lh5.googleusercontent.com/-g06H0kWQPew/AAAAAAAAAAI/AAAAAAAAAAA/lV2NeMsDiY4/c-rp-mo-br100/photo.jpg','16389487648212004696',2487),('AIe9_BFqh_zr355jzGaEpH7666zcmCNJeeVEuJd4Nx7_rV4QiWZNimJCryJYUl7N13V-ofSbyWA61ZEuDNZn_ErFuQkNpcVc27U1BubYbmJD1sr_TNHXFg8','Dr. Soli and Nurse Jeff were outstanding healthcare providers. I came a bit nervous about a sensitive medical issue and frightened about being gouged at an Urgent Care facility (like I have been in the past at other facilities where they send me a huge bill after I leave without any warning). However, the care was outstanding, the bed side manner was outstanding, and the cost they quoted me on the phone is what they charged, and it was very reasonable for this or any type of facility where you see a qualified doctor. I only wish I could give them more stars. Jose','2017-06-26 23:20:12.190000','2017-06-26 23:20:12.190000',5,'Life Traveler','https://lh3.googleusercontent.com/-9ySZlKFJyOM/AAAAAAAAAAI/AAAAAAAAAAA/SK-7ug_Ym2Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7807),('AIe9_BFqh_zr355jzGaEpH7666zcMdNIN5WCj2fffiqZEGgUzUIFZ16NjiHQGIoDgc3RzVHFZFu5_bSGptqtRYLqV8NKp-ucK1PYpHTrYcR-Zhe-L8GcDJw','They were all so great. The receptionist Mercy was such a delight.. I love my visit everytime I come. Oh and my daughter loves this place..','2017-11-29 14:32:30.083000','2017-11-29 14:32:30.083000',5,'Amanda Bing','https://lh3.googleusercontent.com/-GW-qoX2lYxg/AAAAAAAAAAI/AAAAAAAAAAA/AZdVBecDWWQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7754),('AIe9_BFqh_zr355jzGaEpH7666zcmPzkvWayixFNKLiMS0JmXwsZG7CqLULnmfJAwRQ5WC2txmqxwJIot6Y6q2i38QSjvIQTgWrenKmjw7zOq1bhooctfBI','If you want to be treated like a VIP I definitely recommend coming here! I was offered snacks and everyone was so sweet <3\nAlso Shout out to Sarah G. For being named Sarah and obviously so sweet <3','2019-08-14 03:52:33.701000','2019-08-14 03:52:33.701000',5,'Wedner Lopez','https://lh3.googleusercontent.com/-6SyYYsN5utQ/AAAAAAAAAAI/AAAAAAAAAAA/Puis0QzY6ZY/c-rp-mo-br100/photo.jpg','17898197009688164559',5590),('AIe9_BFqh_zr355jzGaEpH7666zcMsswK03KCKOfmu5hDjgJ43k-LkWj_X-Le5Yg1rSrvxuk-wZfkr59e3eIHZxNblZ89NFoAzxR8yYyfX_P3UQ_2Uoq0V8','Came in feeling horrible & Thanks to nurse Norma i didn\'t feel my IV going in, Thank you nurse Tammy & Thank You very much Dr. Patel for explaining everything to me. Walked out feeling much better,Friendly all the way around','2020-02-23 20:53:18.364000','2020-02-23 20:53:18.364000',5,'Yvonne Almaguer','https://lh3.googleusercontent.com/-uYEWVZYGIqY/AAAAAAAAAAI/AAAAAAAAAAA/164pt2_VgG4/c-rp-mo-br100/photo.jpg','17898197009688164559',14133),('AIe9_BFqh_zr355jzGaEpH7666zcMX1Q55EGVXNMquWCxi-MPtDkFTKDbfE-HD-F-r9DFCEZrPREM4DBEO0lOQvlqvxi_Dyrg-Y580eLfuo6XBPfu-LDN4g','Excelente staff! So kind and very warm. I will definitely come back. The place is super clean and pretty.','2019-11-20 07:07:53.376000','2019-11-20 07:07:53.376000',5,'Rosibel Rodulfo','https://lh5.googleusercontent.com/-sn5ywjBpmdk/AAAAAAAAAAI/AAAAAAAAAAA/-F5DMgOIv5g/c-rp-mo-br100/photo.jpg','17898197009688164559',5414),('AIe9_BFqh_zr355jzGaEpH7666zcN-TRV8r5twdGTzrvsD-lzcLgCGZG4XNQteuvk-8gG1GfT_aJbSoN_s4msv3Xt5FuB_-KtJuew0NSObfwz4-75NvCJbw','Dr.Iheme,alvean, marcus, and Jocelyn very helpful and fast service.. Very clean','2019-11-20 17:17:34.965000','2019-11-20 17:17:34.965000',5,'corey goodall','https://lh3.googleusercontent.com/-JzqNISyX3ew/AAAAAAAAAAI/AAAAAAAAAAA/pZVxRT0QGns/c-rp-mo-br100/photo.jpg','16389487648212004696',2650),('AIe9_BFqh_zr355jzGaEpH7666zcn4GoEogUdxdAhbC81emMUcGxhTmazTUp6KNQ_XIzh8rJtRZ4tvjwLq1f0Cmow8ozctCTMHXVLMQl7EfcIZJYOIyGCtQ','I have come here several times before and my experience has always been more than satisfactory. \nAnthony (RN) and Dr. Wang, and Alexis (front desk) are fantastic. Highly recommended.','2019-04-16 00:48:28.088000','2019-04-16 00:48:28.088000',5,'Avery Fly','https://lh5.googleusercontent.com/-JRdJHrRV74o/AAAAAAAAAAI/AAAAAAAAAAA/HJ-aFKjNuoc/c-rp-mo-br100/photo.jpg','16590124370714063921',3428),('AIe9_BFqh_zr355jzGaEpH7666zcnAQoOCQnYPBpKNCtD86vwCLpxD-L49zNhcghE-AKlRXe6SB0c_bvDxMa5rYBbmriWPtHfO772MTwe3bMeuVBicnljvI','Alvean and Marcus were very sweet and attentive. Made me feel comfortable throughout the whole process. The Dr was pretty great as well!','2019-04-28 22:32:18.519000','2019-04-28 22:32:18.519000',5,'r rey','https://lh4.googleusercontent.com/-K2nc5uLapzw/AAAAAAAAAAI/AAAAAAAAAAA/YDrTav_HOro/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcnBeAiPzveWCRcmgdOkuhRzRVzMo0_xmPrk-2cEX0bkm0CCUAZ94crhF6Rucgsu63QWw-SqoT29EYDzUiRL6z_x3Dm5c','Great faculty here. Friendly and professional, Dr. Kotey and the staff (Ke\'Aire, Churiah, Josh) are excellent.','2018-08-10 06:59:43.600000','2018-08-10 06:59:43.600000',5,'Paula Lee','https://lh4.googleusercontent.com/-9ZLB5qpTiVY/AAAAAAAAAAI/AAAAAAAAAAA/asQcPuRsbKQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7641),('AIe9_BFqh_zr355jzGaEpH7666zcncE4IXaJnCV497Z01k0JcFODvySfHlFjGmHLMv52s_LlFjii5hK9e_B92jRrw674rLz8QfszHVvxYl38bW6DRGJB_yw','Excellent service. Thanks for the snacks. Tanishia to Dr. Kotey. Thanks! All the staff was great!','2020-02-21 05:19:39.164000','2020-02-21 05:19:39.164000',5,'Kiaron Odomes','https://lh6.googleusercontent.com/-_ACTNcafHho/AAAAAAAAAAI/AAAAAAAAAAA/XyD11MnH8uQ/c-rp-mo-br100/photo.jpg','17898197009688164559',14146),('AIe9_BFqh_zr355jzGaEpH7666zcnClsdPnpLLGCSEAAKkZdSdCleALUP_1TllY_UyGsFD2iPX71VIcjTeo3JFxsEyfOo6m0OozXhrWEYSsmUxAEPElv8FY','Outstanding staffs!','2019-11-16 18:31:01.059000','2019-11-16 18:31:01.059000',5,'Breasia Green','https://lh6.googleusercontent.com/-3yVk6abDmpU/AAAAAAAAAAI/AAAAAAAAAAA/iLA96N8MWLs/c-rp-mo-br100/photo.jpg','16389487648212004696',2682),('AIe9_BFqh_zr355jzGaEpH7666zcnCqjnvrSjN-VkjDo9lDHtxceA-P4x_Jmd_Hbbkyx-yX8cpNq5P2REWqifqdmY3ofOMm8wZyaCWrXWoiGQVN2p2zWQb8','As I walked in the staff was so concerning and well welcoming. The process for getting attended by a doctor was very fast. They take care of the patient very well, showing concern for their troubles. 10/10 would recommend!','2019-08-14 13:17:29.934000','2019-08-14 13:17:29.934000',5,'Toni Zelaya','https://lh5.googleusercontent.com/-l05MqZIClLk/AAAAAAAAAAI/AAAAAAAAAAA/ECbXYTbvdRk/c-rp-mo-br100/photo.jpg','2694018788013845459',6084),('AIe9_BFqh_zr355jzGaEpH7666zcnEu464wXkHfYwKFmFPUhLecSpZlFwOUnuHuCe23ZLkHMJkaeUaN-XrIvYBbufejjuCcJaxNSsojNFca8oSGuCjO2yuI',NULL,'2020-05-29 15:09:28.831000','2020-05-29 15:09:28.831000',5,'tre Leblanc','https://lh6.googleusercontent.com/-JoSUuYZe0Bo/AAAAAAAAAAI/AAAAAAAAAAA/x_yYNkH9Rh0/c-rp-mo-br100/photo.jpg','16389487648212004696',21976),('AIe9_BFqh_zr355jzGaEpH7666zcnexKYsHk1PhSX5LX0TKn8WSfIXJmhOA5BagFBRkzZgiGml1T8tXx_RjPZ1PBFNu2951rtOB_ejo0suVsJCq_xnEDMRw','Very good staff and very efficient, good service the nurses Amy M,Valinceia P,Julesia H,and Dalia R','2020-07-22 18:59:32.579000','2020-07-22 18:59:32.579000',5,'Maria Almanza','https://lh6.googleusercontent.com/-l6XzBiVMZJQ/AAAAAAAAAAI/AAAAAAAAAAA/sN8mmGUwiqk/c-rp-mo-br100/photo.jpg','8918455867446117794',22305),('AIe9_BFqh_zr355jzGaEpH7666zcNJucxdspsS7HJhVIxyMWzVfwfx4JLimMYaK9FZELp966J0KugtW5J29DDFbZEwrBhdlFV-jBN-uzERXzQ-S5wCTTdZw','It was the best experience in an ER EVER ! The staff was awesome ! Professional and super kind! \nI am new to the area and I was so happy to meet my new medical friends !\nTHANK YOU ! Dr. Kotey, Carly , Sarra , Sherwin and Thelma!!!!!!!! Muchisimas gracias!!!','2020-02-05 08:08:06.612000','2020-02-04 21:54:13.020000',5,'Aricia Rener','https://lh3.googleusercontent.com/-2ZmogCMeemo/AAAAAAAAAAI/AAAAAAAAAAA/ybVcPA1wQvE/c-rp-mo-br100/photo.jpg','12541597562633926366',10531),('AIe9_BFqh_zr355jzGaEpH7666zcNMcpCx-ysxJf-p6GnPssv9exQH1o7AilHTejNUFl_jKxrHl93B7XSL6EHx_9ov2JfNY5HOAlR33UBaH7HjGz-r45Z1o','I was so happy with my experience at Signature in Lewisville. This is a great place and the front desk staff know what they are doing and are very helpful when I asked a million questions. The care I received from the nurses and everyone else was quick and efficient but they spent time with me even though they were busy. When I was ready to go the manager Gary stopped in and asked me how I was doing and if I needed anything. Glad I went here!','2020-07-16 17:34:10.991000','2020-07-16 17:34:10.991000',5,'M Parsons','https://lh6.googleusercontent.com/-AExCzREvuO0/AAAAAAAAAAI/AAAAAAAAAAA/7uvI2x_imnc/c-rp-mo-br100/photo.jpg','14748677429039074158',21757),('AIe9_BFqh_zr355jzGaEpH7666zcnOpGUr6_Wg8uK2yE4RjX4-h5xag9Roz28hdWNL3xmIDyyWo4WImOhumlpYgKmwtnouzHtWKzZipb6tGg7-jfp6R0gnY','Had 2 root canals done and the dentist only gave me ibuprofen for pain. When my face started becoming un numbed again it was the worst pain I\'ve ever felt. SignatureCare had me in and took care of my pain in less than 20 minutes. I hate hospitals but they made it more than just bearable.','2020-07-17 13:03:29.172000','2020-07-17 13:03:29.172000',5,'Zach Hicks','https://lh4.googleusercontent.com/-Pqn8tGRbd6k/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucndE5ZvHXqj_mOhHe86UTt3eSNfFA/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21884),('AIe9_BFqh_zr355jzGaEpH7666zcnQjUOL28q4xoA7PMjznSvy72ukaaglukxdoIMG0iJEWYKcyNcYbD_PyQzmg4Gnqt93Nb5J-UdotQ3rQ2PJiGIablKrs',NULL,'2020-08-03 15:06:22.555000','2020-08-03 15:06:22.555000',5,'Justin Dvorak','https://lh3.googleusercontent.com/a-/AOh14Gg7J9mkqBVkZtNEx1SVIY9Mn2vf73o8q5Ndkqpd=c0x00000000-cc-rp','3511292162159714121',22142),('AIe9_BFqh_zr355jzGaEpH7666zcntKZ9-WHtghICDLHbIKD36R1q_C8fmb1DOzWZGLZqVlE1U8nWx5LIMD5POw5lA0_iZ8Rd_vnU-U8xgDgBuRfd36-2N8','Excellent service and care from the moment I walked in, and throughout my visit. Each team member was very attentive and caring. I was seen without a wait and offered a warm blanket. In is hard to come by such great care and after a car accident it was such a blessing to be cared for so well. Thank you!!!','2018-12-22 18:56:23.982000','2018-12-22 18:56:23.982000',5,'Erika Lea Peterson','https://lh3.googleusercontent.com/-5F7T5VyBNt8/AAAAAAAAAAI/AAAAAAAAAAA/kEHVk4IhWwQ/c-rp-mo-br100/photo.jpg','13486358490203335051',1122),('AIe9_BFqh_zr355jzGaEpH7666zcO_irXjmoFt3p44wxBHyf1NfVLXFb1Hpv7t6p2hEt4t2d3-yZc56xqN0dnYBvgdgXsPcI9FIe1j9qGKcPkA-EM-KZopY',NULL,'2019-09-21 04:45:29.032000','2019-09-21 04:45:29.032000',5,'Jeff Spangler','https://lh6.googleusercontent.com/-4W2EIle90HY/AAAAAAAAAAI/AAAAAAAAAAA/1BoIy-XKy1o/c-rp-mo-br100/photo.jpg','13486358490203335051',817),('AIe9_BFqh_zr355jzGaEpH7666zco7m3OLVKLrCuXPPBGb14S3vsFJNfDdplbcC0yNuu4BFGlMtTtvTEZpzW52Idj5kok9aKo5CUbtvh3t9_tC_Oq63cOgM',NULL,'2019-09-08 02:28:34.033000','2019-09-08 02:28:34.033000',5,'•[Lunamoon]•','https://lh6.googleusercontent.com/-8xZjHMW_MrI/AAAAAAAAAAI/AAAAAAAAAAA/Sy1-d2RVvfI/c-rp-mo-br100/photo.jpg','17898197009688164559',5555),('AIe9_BFqh_zr355jzGaEpH7666zcoFVOFRUwPGjeuel7FpWJFfVC4ar2LX2JDHFyvOw_slYx_h6Z-qRw_-4285gsGct2i-ruqvZlbcuJvTHOgCrQ-p9QEnQ','I took my mother here today, and the staff was absolutely outstanding with such a great sense of humor and bedside manners. Best emergency visit my mother and I have ever experienced in our time on Earth. We were seen within 5 minutes of stepping into the facility. Everything was thoroughly explained. She does not have insurance and that made no difference. I could write a 1000 sentences about them but I will say being here is everything you would want out of a doctor visit. Thank you Aaron, Tiffany, Dr. Miller and the whole stand-up staff!!','2018-04-10 02:36:01.317000','2018-04-10 02:36:01.317000',5,'Keisha Williams','https://lh6.googleusercontent.com/-nKQ4LzB26uU/AAAAAAAAAAI/AAAAAAAAAAA/xjU4rmgicpc/c-rp-mo-br100/photo.jpg','14904078213800803294',2264),('AIe9_BFqh_zr355jzGaEpH7666zcOj8mC4UkCr6MNnblLjMyNesYYvQ6szAMPP6QnTaHFb0t_eljr2VpjEnrJ9_eENgasYUem3RLfKNavohqLdyDav3Ldz0','I found Signature Care by chance. I walked in the door and I did not know how sick I was. They took be back right away and worked very hard to figure out why I was so sick. Once they figured it out they treated me for something that could have turned into a very dangerous situation. I stayed there for 24 hours. They gave me the best care I have ever had! I will never be able to thank the staff enough.','2016-09-06 19:22:47.563000','2016-09-06 19:22:47.563000',5,'Alex Aguilar','https://lh5.googleusercontent.com/-1QYEJOG2L-0/AAAAAAAAAAI/AAAAAAAAAAA/MdlDe0B2bTo/c-rp-mo-br100/photo.jpg','14567670160750071148',1975),('AIe9_BFqh_zr355jzGaEpH7666zcojqVhub_MBpzget-MrXCrIPiPCwb_iU_bDnrYtqsKwrHV5zC4n1V4A9jQYEx7hpRmSJLnblprgPi8VaGpouZ_E7goBc','friendly service, helpful under pressure from Rebecca V and Dyveliz','2019-08-30 01:58:00.419000','2019-08-30 01:58:00.419000',5,'Giovanni Rocha','https://lh4.googleusercontent.com/-dHkQr-GUt5o/AAAAAAAAAAI/AAAAAAAAAAA/69uBdvHt6Gg/c-rp-mo-br100/photo.jpg','16590124370714063921',3230),('AIe9_BFqh_zr355jzGaEpH7666zcoNjtjWSHOvAJICOQJguZNpc5_WXveHDRNeX5S3BCPKPzL1hVhc7IHaRNTiQ0Xr5ze5F0UCEo9LbhFA9q3X5Jm6v7y2U','Great care!','2019-06-04 03:39:58.913000','2019-06-04 03:39:58.913000',5,'Jodi Flaherty','https://lh4.googleusercontent.com/-FhtEdfpzHZU/AAAAAAAAAAI/AAAAAAAAAAA/M8fo2vYpLzI/c-rp-mo-ba4-br100/photo.jpg','2694018788013845459',6136),('AIe9_BFqh_zr355jzGaEpH7666zcOQQOlwlp6limZDsaDATplz0A13ZUN11MpR_lmbF0LEQeA8SNUjsss5umTbCAhv700A0hIYjj0IQB2k2zJVlj1UOolK8','Signature ER was amazing and took excellent care of me today. Jennifer, Gunner, Carla and Dr. Edwards were very knowledgeable and caring. Thank you!','2020-01-26 23:58:26.831000','2020-01-26 23:58:26.831000',5,'Amanda Bowers','https://lh4.googleusercontent.com/-puqK-XY63nk/AAAAAAAAAAI/AAAAAAAAAAA/aegZrTpjHY4/c-rp-mo-br100/photo.jpg','3272657195432704501',10274),('AIe9_BFqh_zr355jzGaEpH7666zcouFND4Wp7fBF2GkTCHjT2QLnD3AgrVG7Uuo0FrvAvBcd9GGxjIFHOBipV2yY33Zdq_CSWng9ik2UFR1YwV3XvABNrPA','Nice and friendly staff!! \nPatricia C. -registration\nAlvean A.-Nurse\nWere they were both so helpful!!','2020-01-26 21:11:28.404000','2020-01-26 21:11:28.404000',5,'marshonda fields','https://lh5.googleusercontent.com/-PUWrCHhmPqA/AAAAAAAAAAI/AAAAAAAAAAA/pKVBOPMGRyY/c-rp-mo-br100/photo.jpg','16389487648212004696',10176),('AIe9_BFqh_zr355jzGaEpH7666zcOW1nsRS8xxQtiy3OPAgSMiddJTTUvjG0DbszfDizHkAC6sJWlqVit-rAG37540JT2kEhJrgIsceflT0ewjRPYkL2VHw','VERY helpful and super nice!! They were the only ones willing to help me due to current events and they gave me red carpet treatment, LISTENED to my symptoms and medical history and diagnosed/prescribed the proper medication to get me back up and going. After 2 teledoc visits, 6 days of 100F temp and dismissive care, they took care of me properly. THANK YOU!!!! ❤️❤️❤️❤️❤️❤️','2020-05-18 16:33:59.080000','2020-05-18 16:33:59.080000',5,'Maribeth Charles','https://lh5.googleusercontent.com/-GzffvCnemg8/AAAAAAAAAAI/AAAAAAAAAAA/yDzBQVY9by8/c-rp-mo-br100/photo.jpg','12541597562633926366',22461),('AIe9_BFqh_zr355jzGaEpH7666zcp_FJwdBfAD6xAAsVX005ljEgxWvLSI473q-WjFQz0rKdxWxVkGaSDsmOIKfMxRMoSEVsnZklnPaQWAgbrCxo1USsGps','It was so fast and efficient. Dr. Leavitt, alvean, traevis, Amy, and Keith were amazing. The receptionist was so helpful!','2019-11-17 21:27:09.930000','2019-11-17 21:27:09.930000',5,'Mílagrō Gramz','https://lh3.googleusercontent.com/--EXirorj6FY/AAAAAAAAAAI/AAAAAAAAAAA/0YlBAiepJOs/c-rp-mo-br100/photo.jpg','16389487648212004696',2667),('AIe9_BFqh_zr355jzGaEpH7666zcP_H0CgbmQW1HUR8FqSyETTkjYRjnaPluwaNuoi_jyGOtvZ2ce9eXFNVJUdIu8zOGoRO73DmOUtyBOim10Kj7s5s3klM','Great experience fast and friendly and i hate going to the doctor.','2019-10-30 20:30:57.183000','2019-10-30 20:30:57.183000',5,'Alexander Huff','https://lh3.googleusercontent.com/-zhAeoIWYuao/AAAAAAAAAAI/AAAAAAAAAAA/22J0vIeR4HE/c-rp-mo-br100/photo.jpg','8679688254631342173',8760),('AIe9_BFqh_zr355jzGaEpH7666zcP2UbHjqY9JhjAek_AhJDQu-OEi48aO_GkgJvipgQYolC6YJgPJbNAL6hRcdgOpemhA1RjpP6A8PTco-FRRMeZpmHY_4','Really friendly staff. They definitely bring a positive ambiance that makes the experience well','2018-10-20 15:28:43.600000','2018-10-20 15:28:43.600000',5,'Michael Ortiz','https://lh6.googleusercontent.com/-_NuTN_gV0VM/AAAAAAAAAAI/AAAAAAAAAAA/FrpN9bneopA/c-rp-mo-br100/photo.jpg','16590124370714063921',3695),('AIe9_BFqh_zr355jzGaEpH7666zcp60IypdBNvE4xbWyxx3BrMot5kHCwEksaXO58k6SxiVCnfy2tIKDyPrI34b0ZwmPFPya2tCva4YqvXW2oN6Wtyd6myA','Registration : Tiffany D, Nurse : Jennifer C, Tech: Courtney K, all three ladies was amazing and very helpful! Thank you all 😊','2019-09-10 04:09:26.144000','2019-09-10 04:09:26.144000',5,'Pat Young','https://lh4.googleusercontent.com/-C8UQLjqTq5M/AAAAAAAAAAI/AAAAAAAAAAA/tgc85e0lb-I/c-rp-mo-br100/photo.jpg','8626688543755174284',14678),('AIe9_BFqh_zr355jzGaEpH7666zcP6VA3inAJTeFjLW47Nspvif5eSMz3NOzVczbp01fFmA09LZPzxJIW69Xc-XMzoJvNggN4-bePzstHxtxV4PJTdmzT2A','Very friendly staff n thorough love this place fast service no wait time ','2017-02-08 04:34:12.458000','2017-02-08 04:34:12.458000',5,'M Villarreal','https://lh6.googleusercontent.com/-gUiZpkaNnFs/AAAAAAAAAAI/AAAAAAAAAAA/IhxpxwEi6CI/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5118),('AIe9_BFqh_zr355jzGaEpH7666zcPDk3LS5MD5IXVJPq5GT3cmF3quO9EvEu60hOvXpf3LqlTwhJCnO_eGwoOMadpKuD4Ovw1KC3mfkOWi7vnEfWsd_nAcI','Great team first time, and I had a great experience I would definitely recommend them. Had a great team of nurse Alvean she did an awesome job with Marcus had a great experience first time someone actually made me feel like a patient not a mom lol thank you to Signature Care team','2020-03-02 17:09:01.632000','2020-03-02 17:09:01.632000',5,'Alma Marquez','https://lh5.googleusercontent.com/-Y_fsKJpyZv8/AAAAAAAAAAI/AAAAAAAAAAA/ZSlVGjMnxLE/c-rp-mo-br100/photo.jpg','16389487648212004696',13748),('AIe9_BFqh_zr355jzGaEpH7666zcPEx3j7dtV9s7f-8XY__FcdJmzet8NhMpFXX_WJ0IsCCYkdwzS3cM7KnKu5yF4QVGN4f30aqfXTUmlgRSyMjfaJqMmc0','I had a excellent visit cavazos , Dana , Tricia , and Jesus is was wonderful','2019-06-14 20:04:15.003000','2019-06-14 20:04:15.003000',5,'Shirley Gaines','https://lh5.googleusercontent.com/-_TDkdlGY0C4/AAAAAAAAAAI/AAAAAAAAAAA/HK_9_AjrbHw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcPhITrsjhwUEh8zGd0MmBarmy3-L1EcX_3sAeAdwHQcCIcVpcxYih0gh_buQMoZKQVhVGi228tdhxkNNENetmZSv27fk','Irving and Marissa R was amazing with performing COVID Testing on my 2 and 4 year old. Thank you so much for all that you do!!!','2020-08-07 00:17:48.003000','2020-08-07 00:17:48.003000',5,'Traniqua Smith','https://lh4.googleusercontent.com/-KEWrtVpt4QI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclwzzuNElgbEGSL37x9JjqujpXtrw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21791),('AIe9_BFqh_zr355jzGaEpH7666zcPhojd6RZTXLI_dQyfdeBNJvE-iTmrlathWJG9Mrt0HX4gaAmvAu1ppOBV0ifdUGJGRnTk5Bzui-7KdGIcz99KBdVbWg','From the receptionists to Johnny, to Dr Jolly, everyone was professional and caring. Thanks again!','2018-10-09 23:53:21.194000','2018-10-09 23:53:21.194000',5,'JR S','https://lh6.googleusercontent.com/-kTBHq98CfY4/AAAAAAAAAAI/AAAAAAAAAAA/i0APd7dKfDQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2208),('AIe9_BFqh_zr355jzGaEpH7666zcpiGUJSCknA1F66X2oNAp6ObsLLtB-E1yoTXbF-0hcRfDqJTZH52bQwz3VoVrtw6PkcF0m73Sn3Xd3u3tSzcGj0H6aGg','This location had staff that was very kind and had very fast service! Thank you Rebecca V!','2019-10-03 04:59:40.166000','2019-10-03 04:59:40.166000',5,'Mekaela Murphy','https://lh3.googleusercontent.com/-pg5hWgJcWPA/AAAAAAAAAAI/AAAAAAAAAAA/ekUy8Qy_D8U/c-rp-mo-br100/photo.jpg','16590124370714063921',3159),('AIe9_BFqh_zr355jzGaEpH7666zcPJbAWRkkwe6U0L_U6Z2EmrwMDksTPE7HQp3nhNP0qbrJgFE6TzyX1FZXk_PPUWK3Bok9KmvBG4jPTTKHMACCsaw261Q',NULL,'2019-08-15 02:13:14.682000','2019-08-15 02:13:14.682000',5,'aaliyah carson','https://lh3.googleusercontent.com/-l5PuQvaHPto/AAAAAAAAAAI/AAAAAAAAAAA/JQTd6tDXJ-Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3256),('AIe9_BFqh_zr355jzGaEpH7666zcPJWvK6W9a7rGhmzoUeqI709swLTjkHLicHOAALkQZ4idEHtcLfbx-ekmeAXWqnXRb9y9n5uBaIsESP9qdaCxM-MOXYE','I had a great experience at my visit today everyone was extremely friendly and caring from the moment I walked through the door Ashley in registration and my nurses Erica and Ashley were all so very caring they made me feel right at home I would highly recommend signiturecare to anyone!!','2019-03-15 20:28:56.315000','2019-03-15 20:28:56.315000',5,'Carolyn Adams','https://lh3.googleusercontent.com/-Nw9c9F8Mhis/AAAAAAAAAAI/AAAAAAAAAAA/7zYlK_Bpytc/c-rp-mo-br100/photo.jpg','8626688543755174284',8527),('AIe9_BFqh_zr355jzGaEpH7666zcpm_gCwWs4bVn032KBgaT1jwINAAOxo1wXl3I6b568x2yzRXVygMAvgGgocMNwPBOdoO1gWco4H_1RlGglBjaztsHm9c','The staff here is incredible. Super friendly, warm, and took care of my family right away.','2020-02-04 19:40:33.899000','2020-02-04 19:40:33.899000',5,'Eric Espinoza','https://lh3.googleusercontent.com/-dkhWpdGuitM/AAAAAAAAAAI/AAAAAAAAAAA/AxXBrvPwvW0/c-rp-mo-br100/photo.jpg','14567670160750071148',13562),('AIe9_BFqh_zr355jzGaEpH7666zcPPos57SXYSiTgbtflX9QQnYFDHKoR5lad8LMt856VZRTrNkgk9LT1rmWknWMgwSJPJDul_DBLLNSnz2OYGnDOWx97a4','The people here were very warm and friendly. I was in and out within an hour for an xray.','2018-09-05 22:22:28.022000','2018-09-05 22:22:28.022000',5,'Richard Dickson','https://lh6.googleusercontent.com/-s4HIY4HTU_4/AAAAAAAAAAI/AAAAAAAAAAA/dixYkrlJUP0/c-rp-mo-br100/photo.jpg','14567670160750071148',1533),('AIe9_BFqh_zr355jzGaEpH7666zcpwM_UdOwTfDHM3cA72B4qDEqY-5gvRgx-G3LAwDG2H0jhwcqI6Q41Y47kJ45EU8whLt5QPffspXAtxp-UFMVJbQ1v04','The staff is very friendly ,helpful and caring especially Jessica S.','2019-09-12 02:33:44.310000','2019-09-12 02:33:44.310000',5,'wendy scott','https://lh6.googleusercontent.com/-Mip2oOZr6ZU/AAAAAAAAAAI/AAAAAAAAAAA/UA8VjfYG9CQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8148),('AIe9_BFqh_zr355jzGaEpH7666zcq5gmBUt0ZxHEmgg160nrDNt_sTyoilxtnaxyl2Dcq4b091ZZzGMuPOmF44F8DnN9gzmZdqhP4bcKzMWbs8Kdxa9gzWc','Came to get checked today. I was super worried and the staff all around was super helpful & caring. The registration, Dyveliz answered every question I had about paper work. Dr. Vakey and Remington were super helpful, and made me feel so much better.','2020-03-16 20:08:46.847000','2020-03-16 20:08:46.847000',5,'Maya Dominguez','https://lh4.googleusercontent.com/-UkKkWOFscy8/AAAAAAAAAAI/AAAAAAAAAAA/aTqJu0wZ4m4/c-rp-mo-br100/photo.jpg','16590124370714063921',21024),('AIe9_BFqh_zr355jzGaEpH7666zcqa-E-8hwYy8kFcmZUlTn67YlBOMugujYaEdpzK3c6DKiETmgEgWkzcWoYEWpgtuDfuzAw2eJyboKwIOzfemWvkhMRhg','They are super fast very nice an caring!! Kim at the desk was very sweet and caring! Loved the nurse he got me a dr.pepper😁 this is the place to go if you want to avoid the wait an chaos of the er!!!!','2019-01-21 20:03:39.825000','2019-01-21 20:03:39.825000',5,'Amber Miles','https://lh3.googleusercontent.com/-ULfdGv0UjzM/AAAAAAAAAAI/AAAAAAAAAAA/67QwPJ-zLZM/c-rp-mo-br100/photo.jpg','3272657195432704501',7047),('AIe9_BFqh_zr355jzGaEpH7666zcqbHcrx5DwfbfRKY20liMFlkSg8xTrh8EoAx_Ips2lA7ShHyYPNpqCdibnxt64vMacgt6M1WTyI1WyNwBT9KohO2y1xs','Quick, easy and almost painless! Staff was friendly and knowledgeable.','2018-08-24 01:59:11.048000','2018-08-24 01:59:11.048000',5,'Yvette Ramirez','https://lh6.googleusercontent.com/-AtyPZNBA90M/AAAAAAAAAAI/AAAAAAAAAAA/IG6WLquSkzc/c-rp-mo-br100/photo.jpg','14567670160750071148',1557),('AIe9_BFqh_zr355jzGaEpH7666zcQiFXT0LpA8PWM-yyqwX9MnWTpf5GKux3m5zogPFlw7clAHJjRzSIfv5LaQ0diVkST-M8lg5xzQ9iflJBiN8JaiTvvA4','I came here after I got into a car accident. I was greeted promptly by the receptionist,Amanda. She was very helpful and courteous. The RN, Barbara came in and took my vitals and made sure that I was comfortable. I really liked her bedside manner and how comforting she was with me. Dr. Akunyili was very friendly and attentive. I could tell that it was important to him that I was receiving the best care and that my discomforts were being resolved and explained to me. I had to get XRays and Bryan was very friendly and attentive. The staff here has been awesome. The RN James , Ricardo, and Amanda made sure that I was comfortable and helped promptly. I would recommend this facility rather than any other emergency care center in Houston.','2019-01-15 02:12:48.554000','2019-01-15 02:12:48.554000',5,'Mar B','https://lh5.googleusercontent.com/-Ijmnn50EYx8/AAAAAAAAAAI/AAAAAAAAAAA/--pSfI4VvJo/c-rp-mo-br100/photo.jpg','14567670160750071148',1410),('AIe9_BFqh_zr355jzGaEpH7666zcQkdnaUA4zIcb8ahk_cFs7oQyido0A02_kWofVHJpx03iDYIPlYBgRtbtfMxX1nhho8AjKcajTkDtyQm70ds6X6_Lq7Q','The staff was amazing including Dr.Estevez, Alvean, and Tricia. I have never had more faster and professional experience before.','2019-07-25 23:15:40.371000','2019-07-25 23:15:40.371000',5,'Daisy Smith','https://lh3.googleusercontent.com/-J13loUf1UQQ/AAAAAAAAAAI/AAAAAAAAAAA/H36moMpdxtc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcqLX9BrcDFtHdgN5U2SA48FC2gdXbj5eIx_LRuxSeStbGchocZfygQ7dXcnqYdewkBUZjvG3_cJLs6uLpsskVM0pMjuo','Staff was very professional and quick to help was a very quick experience was glad i wasn\'t waiting for a long period of time','2019-05-18 23:12:47.831000','2019-05-18 23:12:47.831000',5,'aaron alvarado','https://lh5.googleusercontent.com/-l0Tl4FtyPK0/AAAAAAAAAAI/AAAAAAAAAAA/YjBVO1WxPC0/c-rp-mo-br100/photo.jpg','6521947413723274945',8275),('AIe9_BFqh_zr355jzGaEpH7666zcQOp5eiLhMEBqK-5C3HvyxRKSILm_HynDh4mrf0ULBmuyw3WRKjTBkHQlsoa2inUDfikqR_DS7Cd8LWOkmk5v7bPToE0','It’s a very good place with good staff and well experienced doctors','2019-11-27 02:28:07.794000','2019-11-27 02:28:07.794000',5,'Dayveed Youtube','https://lh6.googleusercontent.com/-ktXkfVqTrtU/AAAAAAAAAAI/AAAAAAAAAAA/kKnHhTlJ7IA/c-rp-mo-br100/photo.jpg','12541597562633926366',365),('AIe9_BFqh_zr355jzGaEpH7666zcqQCAIHPHpb_P_2PfQNLPghY2qN-Lqe-nNyRi4060soawE4_nFOmQ2UcplUYiYc9HqvbtoDf3YtD2LY1jaxLNUSYqFYE','This is the best place to go for an emergency visit. I rolled my ankle in workout camp and it swelled and very painful. I was not sure what I should do. It was the Saturday before Christmas and I just knew that I was going to spend the whole day waiting to see the doctor. I came in and Dee at the front was so nice and informative. She gave me a few forms to fill out. I could not even sit down before the Nurse Nikki called me back. I was impressed with the urgency! They took me back to a nice private room with a TV and Nikki and Dr. Souman were efficient and friendly. Diem had x-rays taken and got me all wrapped up with a boot and crutches. I was all set to go and spend the rest of the day with my family. I checked in at 10:45 and out at 12. The facility was clean and the staff was very friendly and helpful. I will be back for my future emergencies.','2018-01-10 21:01:08.877000','2018-01-10 21:01:08.877000',5,'Yolanda Miles','https://lh3.googleusercontent.com/-ckEHba9yDlU/AAAAAAAAAAI/AAAAAAAAAAA/UOQAsjXI7rA/c-rp-mo-br100/photo.jpg','14567670160750071148',1686),('AIe9_BFqh_zr355jzGaEpH7666zcqS9UlfQCTnotJ_STY9IwGMLrzkdZQ3pkzxOivWLjv23SZBJ7ZTlJiZcSes5N8x75nX0D0CQRLYdYDuAO4s9qvpx2Pww','They greeting us as soon as we walked in and gave us very good care. Everyone was very nice. I will go back to them if I ever need to.','2016-10-08 16:43:34.514000','2016-10-08 16:43:34.514000',5,'Diana Mottu','https://lh6.googleusercontent.com/-rffjoG_uOGM/AAAAAAAAAAI/AAAAAAAAAAA/9aUILaFummU/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2455),('AIe9_BFqh_zr355jzGaEpH7666zcR7WxvoAQ3Fk5wGERaGPMcRgePyT0qiXmrXuvr_bzzSKZ1g061xESQF-X2ClnKLXiGT7nP-9pOuUpySdtG3nzFPJUL9k','Everything was great! Registration was very patient, thanks Dee for everything!','2019-08-14 14:57:45.186000','2019-08-14 14:57:45.186000',5,'Mariam Laraj','https://lh3.googleusercontent.com/-eMFiyH0dsMc/AAAAAAAAAAI/AAAAAAAAAAA/8t6bxi_nGug/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7211),('AIe9_BFqh_zr355jzGaEpH7666zcRCgJuVAieskHPeoJCoTPV1O118Bgu2ZFy-qh5HpfBImvVEXu7pw-oCwh8jxPKCpvwXYBxw-cZBHrJFRyuZxflLSRVQA','Was greeted with alot of energy by Jasmine, the very kind and helpful receptionist. Dr and and nurses where all very nice and professional. I was in and out in less than an hour. Definitely recommend it to anyone needed care.','2017-02-11 02:47:52.411000','2017-02-11 02:47:52.411000',5,'John Mike','https://lh3.googleusercontent.com/-P2FsyeMkoqw/AAAAAAAAAAI/AAAAAAAAAAA/yId_fUUomQ8/c-rp-mo-br100/photo.jpg','14567670160750071148',1888),('AIe9_BFqh_zr355jzGaEpH7666zcRgrrQU9FQXd1cwqXe3HcB9E0KdqdqSIa_XXnLejzGo0xozBobyNXQeCkEXTlWWvs54Yu5Pan7iHTWpFmORNJcD2fifQ','Kendra, Jacob, and Vakey were a very kind staff and I left feeling treated properly','2020-02-16 16:17:50.058000','2020-02-16 16:17:50.058000',5,'Macy Zidek','https://lh4.googleusercontent.com/-FmKUgYaXQfo/AAAAAAAAAAI/AAAAAAAAAAA/NVmYWvEYCW4/c-rp-mo-br100/photo.jpg','16590124370714063921',13850),('AIe9_BFqh_zr355jzGaEpH7666zcrLyIuefOntKZRb-viYW0H3rRCszXl06DVCXV1jTYWpM8EZSIReazj4qWPXqDJlfnBPnBcJ_8FiI6vFoUJ0muIE8lMAY','Good staff amy,kat,Fatima and Dr chukwuma','2019-06-06 02:15:50.452000','2019-06-06 02:15:50.452000',5,'briana dilli','https://lh3.googleusercontent.com/-z8MZxe_GpR8/AAAAAAAAAAI/AAAAAAAAAAA/gUiyRcs3Hic/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcRNbFYpPLZjAp_MnV7BdarfQrblEGQi9t-eZrY2RB4NZv_lpGcc8G5i5GhQECCeN_2WG6TEtW_MsEHPMRSjuKC76tcMM','Friend busted his lip and so we took a late night trip to SignatureCare. Rebecca V. Was working the desk and was very helpful!','2020-01-18 07:56:04.316000','2020-01-18 07:56:04.316000',5,'Elijah C.','https://lh6.googleusercontent.com/-Qk9Fp-zhlTU/AAAAAAAAAAI/AAAAAAAAAAA/OYSOmpRPFKI/c-rp-mo-br100/photo.jpg','16590124370714063921',10065),('AIe9_BFqh_zr355jzGaEpH7666zcRtw25vmRGs1xsJS4BNBuGNnY5kXfhFBKcjtTfpmFCe3_MZ9lZMWutsXHHweDSY6v9CjAURlPL6sGqOe6W4mFAezHFIA','My husband came to Signature Care for a thumb injury and Dr. Golla was very caring and helped us get everything fixed! The staff was amazing as well!!\n\nDr. Golla\nRegistration: Leslie\nRN: Churiah\nER Tech: Olivia\nRad Tech: Eve','2020-02-06 16:36:56.332000','2020-02-06 16:36:56.332000',5,'ANDREA LEASSEAR','https://lh6.googleusercontent.com/-T3H6-GYT1fQ/AAAAAAAAAAI/AAAAAAAAAAA/9Invrsz-eq8/c-rp-mo-br100/photo.jpg','3511292162159714121',14425),('AIe9_BFqh_zr355jzGaEpH7666zcrxidC-7GDf9XrMO-cBYZuWb4f_VMLzgsRz1wKi9WVvhhrnF8_DsJQJPKSBHJwSgMOYzEennuYJdMWYnhpUYborFljDw','Excellent patient care in a very timely manner. No long wait times as a normal Emergency Center. Will definitely be visiting again should a situation occur. Thank you to all the staff for the help and medical care.','2019-12-01 20:37:54.742000','2019-12-01 20:37:54.742000',5,'Kevin Cha','https://lh5.googleusercontent.com/-3tb-OqnxoS0/AAAAAAAAAAI/AAAAAAAAAAA/cAoaiWKzgr4/c-rp-mo-br100/photo.jpg','2694018788013845459',5997),('AIe9_BFqh_zr355jzGaEpH7666zcrYyfSZsGBuMJtYv4dLLqF7stTaMIAsDWNYvKAEzZeWas__lpo3EeXqNHotl29gVArP_HAS1_rHYb8pRNHkXS8dIDt1w','The staff here with all the staff that hellp out did an amazing job! Thanks to Anthony, Kathleen, Dr. Chukwuma, Konya, and Rayveu for all their help!','2019-01-08 04:57:46.327000','2019-01-08 04:57:46.327000',5,'Joshua Allen','https://lh3.googleusercontent.com/-ZsdDh21u3Vw/AAAAAAAAAAI/AAAAAAAAAAA/5YX8kj2Q3xE/c-rp-mo-br100/photo.jpg','16590124370714063921',3593),('AIe9_BFqh_zr355jzGaEpH7666zcS2go5wPGsp54OiWLv8sthY4fMNG_8FHXca9mhqzvpBI2Cul6d7eiI6bTWs3PVSADg1ZhhVZFKJuS_R5yOohS-uBORIk','This will be my second visit here, both times I hardly had to wait and everyone was very friendly!','2019-07-06 00:11:09.271000','2019-07-06 00:11:09.271000',5,'Sierra Samaniego','https://lh3.googleusercontent.com/-K2B1UxEQn1U/AAAAAAAAAAI/AAAAAAAAAAA/8y2aEIvWoZw/c-rp-mo-br100/photo.jpg','13486358490203335051',899),('AIe9_BFqh_zr355jzGaEpH7666zcS2XrJP0M8Ms67QNNjcntsAaIQGZXPX7A5glLx7H4YFM5kIwGMKwx17Bp0s-TbWVvVpiv69QJbMAwxZ_WGr4wi8y_wLQ','Treated quickly and with care by Anthony and Dr. Vakey','2018-11-28 14:06:53.133000','2018-11-28 14:06:53.133000',5,'Brad Phillips','https://lh3.googleusercontent.com/-KwRvcGsXwNg/AAAAAAAAAAI/AAAAAAAAAAA/j3vFzSe3duA/c-rp-mo-br100/photo.jpg','16590124370714063921',3633),('AIe9_BFqh_zr355jzGaEpH7666zcS6F_CCh-uWE_EdFpVSrm0huZpmVSun6Vw--9XKVZiQciMfMH2TwOwa4ELbW93S7nw675_hLa3aaeeYzVWOj6Hu34tKo','They have great customer service. Ashley Burton did an awesome job answering my questions','2019-03-13 16:43:38.010000','2019-03-13 16:43:38.010000',5,'Casey McClain','https://lh4.googleusercontent.com/-Kzi3DoFv1fc/AAAAAAAAAAI/AAAAAAAAAAA/v4RBvPtlmQg/c-rp-mo-br100/photo.jpg','8626688543755174284',8530),('AIe9_BFqh_zr355jzGaEpH7666zcSGDVkRyWudStzLmZxQkOE3v8DS4d1TCO8scc7_UfCPcBpz3muq1vILmzilZxYdAeWyYcR_IPPbyrfRYzppiPOrVNdh8','Brought my son for a visit and I the staff Dr. Nguyen Nurs Susan and Registar Tanishia W. Was very helpful and nice. I will be coming back.','2020-02-05 02:45:54.583000','2020-02-05 02:45:54.583000',5,'Alisha Russell','https://lh5.googleusercontent.com/-TIurAeqZZvk/AAAAAAAAAAI/AAAAAAAAAAA/D0ihLVX1R2I/c-rp-mo-br100/photo.jpg','17898197009688164559',10549),('AIe9_BFqh_zr355jzGaEpH7666zcSMUKYCgoXnPsxlJLCTfMOa7QV0m_pIgVXM8KptCpJcgHkl2hYXSpmQh_4n5H-HgOObivzlDWsS0ohonG7lcuKPwWzG0',NULL,'2019-12-01 07:59:29.679000','2019-12-01 07:59:29.679000',5,'Josh Pilgreen','https://lh6.googleusercontent.com/-SB5RjblHNi0/AAAAAAAAAAI/AAAAAAAAAAA/IUZKA9ntbDc/c-rp-mo-ba4-br100/photo.jpg','3272657195432704501',6848),('AIe9_BFqh_zr355jzGaEpH7666zcSN-8if1Lg4retivPqyTmvuC0iBSb01WZie6E6Qf_Gns3J3kQQzYLdhQHeR7y4MsvMOJifH1h0_7jWq-02uLa8DlIqOs','this facility was awesome...the staff was very sweet and the speed of service was the best ever. Thanks to all the staff I am definitely referring people. Thanks again for making me feel at ease. Dr. Daniels , Nurse: SherriSherri , Registration reps were Jasmine and Amanda and Ebony did my ultrasound ..Thank y\'all so much I was so nervous but you all made me feel so at home','2018-08-03 01:14:52.136000','2018-08-03 01:14:52.136000',5,'Angel Moore','https://lh3.googleusercontent.com/--sqLCyU-ygo/AAAAAAAAAAI/AAAAAAAAAAA/Iw7fjitJuig/c-rp-mo-br100/photo.jpg','14567670160750071148',1576),('AIe9_BFqh_zr355jzGaEpH7666zcsrYD0BoOaCp77ZsIg4B5gLIWP2yR9elDMTyIZoyIeYp3nQPVhJj2hw4QS5wtEMKsYSe2PuANkgGg-ehDQ7OXe6LUT8E','This facility is outstanding. The staff is absolutely wonderful and goes above and beyond to make sure their patients are well cared for. The level of care is above and beyond anything I have experienced before. I definitely recommend coming here in the event of any medical emergency. Dr. Thomas, Leslie, Laura, Gina, Jacqueline, and Olivia are all fantastic.','2019-01-03 17:43:19.647000','2019-01-03 17:43:19.647000',5,'mark lawrence','https://lh3.googleusercontent.com/-rbB5SkYtGlw/AAAAAAAAAAI/AAAAAAAAAAA/Dzi-9lxSHto/c-rp-mo-br100/photo.jpg','3511292162159714121',7530),('AIe9_BFqh_zr355jzGaEpH7666zcsTe1QQ6rfjK9JjPCsyxgxMGm0MbAt1DwDXCZ3v2ebAtR2vANHGj4HJOGgzw6Y1HK2d93vHGHD094idV3JjWyxNi13cU','My experience was exceptional. No wait time and staff was very courteous.','2016-05-29 22:19:12.993000','2016-05-29 22:19:12.993000',5,'Kristen Tolleson','https://lh3.googleusercontent.com/-TTbIiwd5TfQ/AAAAAAAAAAI/AAAAAAAAAAA/5UwswzxSCJw/c-rp-mo-br100/photo.jpg','14567670160750071148',2029),('AIe9_BFqh_zr355jzGaEpH7666zcsuMotTcry0j9Acn5yNtzHYkCVFnOAX0qVJkH23dACBNHPDuwRNVD2dp4qrI8EB5rlwpmEOxbu2vvmm0DWCeHvxHKxW4','I came in and the staff took good care of me and helped me get over my stomach virus. I plan on using this place again','2020-02-20 00:40:28.641000','2020-02-20 00:40:28.641000',5,'aaron gigout','https://lh6.googleusercontent.com/-0L36Wgy1odY/AAAAAAAAAAI/AAAAAAAAAAA/yFnfop4Ewqo/c-rp-mo-br100/photo.jpg','16590124370714063921',13840),('AIe9_BFqh_zr355jzGaEpH7666zcSYHRKCdHfCaCXARCBuGB-qpI7Du0edciKSTphIYX0HdL_FAsCX9sh5NcEFxagQaQHNvKraVRIjL4Ns-aCQrH5TkCyFk','Great service, Thanks','2020-02-02 03:12:43.149000','2020-02-02 03:12:43.149000',5,'Patrick Mink','https://lh4.googleusercontent.com/-1ko6WO5ZNQ8/AAAAAAAAAAI/AAAAAAAAAAA/7X1DGS_bC8I/c-rp-mo-br100/photo.jpg','13486358490203335051',13444),('AIe9_BFqh_zr355jzGaEpH7666zct-ySXMWGJAVIYg-WzWfjxCZAW4X2Q_YdDkDUz0bNVITSrD1CdxVfUoCFMbvTQMpEbe5D7hbaJlLznIgUGayfO1ZWAk8',NULL,'2020-02-21 23:31:19.131000','2020-02-21 23:31:19.131000',5,'Barbara Skinner','https://lh3.googleusercontent.com/-ZCK9CUE6B1k/AAAAAAAAAAI/AAAAAAAAAAA/RBSZCqjugRo/c-rp-mo-br100/photo.jpg','8679688254631342173',14741),('AIe9_BFqh_zr355jzGaEpH7666zcT8YbypJR3iLECFtpP-zKBFRWRNU5yBl-sAE1gmS6wz8hdGh8ft62eX4qN6iVbGoBd8km8-iQzFRVAFUL6sGI6SUCSww','Very professional and very friendly Team\n\nDr.Diaz\nNurse-Kristina\nTech-Kramer\nXRay-Allison \nReg-sita','2019-11-27 11:30:08.924000','2019-11-27 11:30:08.924000',5,'Andres Delarosa','https://lh6.googleusercontent.com/-9bUj1bhnSQ4/AAAAAAAAAAI/AAAAAAAAAAA/vEpjmv9YY0o/c-rp-mo-br100/photo.jpg','13486358490203335051',713),('AIe9_BFqh_zr355jzGaEpH7666zcTAXyHMdi787M0fcbD6GOitLHK7fmnK-3dVvlSoAH7MCcR9nVyAkBeanaedMuT-WVsA8UFvd7vJwlMVsSGY4hoMvyNGU','Staff was informative, thorough and most helpful while my daughter was being treated. Huge shout out to Dr. Vakey and Nurse Remington for making her feel comfortable while I drove 1.5 hours until I could be with her.','2020-02-05 22:14:14.052000','2020-02-05 22:14:14.052000',5,'Sparkle & Shine','https://lh3.googleusercontent.com/-VmQBl3pEdz4/AAAAAAAAAAI/AAAAAAAAAAA/M7KUM6e1mGo/c-rp-mo-br100/photo.jpg','16590124370714063921',13878),('AIe9_BFqh_zr355jzGaEpH7666zctIvPYLEZ57N4unxDFX02Bdhg4ipRWUpeQXUUtGjDJ2_yACOJXg3wfu2BBi75U4N4RD2teoz60sj4JrsbCQK6DgupEd4',NULL,'2017-09-26 12:09:29.480000','2017-09-26 12:09:29.480000',5,'Deltora Hewitt','https://lh3.googleusercontent.com/-drf27kTXr1A/AAAAAAAAAAI/AAAAAAAAAAA/ZQpgwtwVuM4/c-rp-mo-br100/photo.jpg','17394740196501090048',4963),('AIe9_BFqh_zr355jzGaEpH7666zcTmuFAU7M3ZGEhKqiYJ03ptNTdRGnI5uoH8xQoOi0bS-0oEID2bKK8yGN5sw-sGiPFALRnh6Mq42zk66j6QYa8kSe8J8','Everyone was great, very friendly and accommodating. Dr and Nurses went out of their way to get medicine in me right then to get me feeling better. The Dr even researched to find an antibiotic that would work for both issues I was having. They even called today to make sure I was feeling better. They were fantastic!','2017-01-25 20:21:53.012000','2017-01-25 20:21:53.012000',5,'Tori Gagneux','https://lh4.googleusercontent.com/-qxegsIBmwjM/AAAAAAAAAAI/AAAAAAAAAAA/zZ5mCdf2GM8/c-rp-mo-br100/photo.jpg','14567670160750071148',1906),('AIe9_BFqh_zr355jzGaEpH7666zcTNO7E30EVJxW2tYeC-jSok-kbY4C_l_MFHlUVA3QrWEN-0jRS7TpkBJiLO-jD0mk2GhWJKGZ0VZeIa2tyThXrXHAmyc','Great team first time, and I had a great experience I would definitely recommend them. Had a great team of nurse Alvean she did an awesome job with Marcus had a great experience first time someone actually made me feel like a patient not a mom lol thank you to Signature Care team','2020-03-02 17:01:45.049000','2020-03-02 17:01:45.049000',5,'Alma Marquez','https://lh5.googleusercontent.com/-Y_fsKJpyZv8/AAAAAAAAAAI/AAAAAAAAAAA/ZSlVGjMnxLE/c-rp-mo-br100/photo.jpg','17394740196501090048',21074),('AIe9_BFqh_zr355jzGaEpH7666zcTnyPHPMDTCIuoFsRjzpP3EDyhlevNgFK3y3TaqUwdQIgXJre9_gnSEL4l3nYliVN0rJ6_ScAjr980OwoMznTCwDMUS4','Seen fast for an emergency issue. Dr came over immediately to assess. \n\nAlso went in another time for covid testing. Appt was at 11am, was seen at 11:05. Test done and results back before 11:20. Everyone is super hospitable and patient, answers all questions. Definitely recommend!','2020-07-25 17:39:17.214000','2020-07-25 17:39:17.214000',5,'Shera Lehman','https://lh4.googleusercontent.com/-nlSoxBG9M-E/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckcr9-L2AIjdZ8LN2Y1GYN-Dn7law/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22243),('AIe9_BFqh_zr355jzGaEpH7666zctXhCrTYh7O_8927L8bhmStvM01IP4vwM0PZ9bsxCL5lrdfpAsRH7JWARftaJySQW5Vipn8955r7wU56mY5XN090dNYU','Excellent emergency center. Super clean and all the staff super careful how you feel.','2019-11-17 21:10:34.184000','2019-11-17 21:10:34.184000',5,'Daisy Reyes','https://lh3.googleusercontent.com/-wan886MKVmo/AAAAAAAAAAI/AAAAAAAAAAA/fflIs1RBbU8/c-rp-mo-br100/photo.jpg','2694018788013845459',6011),('AIe9_BFqh_zr355jzGaEpH7666zctYe17hBKYFB3kVlSN51BmbYZVSlq_s5OvV4ji886CtKpxa_m8X7cK0NCAkASc7Bu23Kcf6sbMpMnH27q875WWWwMfLQ','I really like this place, they are very friendly and helpful. I appreciate the nurse Ms Chantel and the registration Ms Tanishia . Thank you for your help! Love you !','2019-11-11 03:49:21.401000','2019-11-11 03:49:21.401000',5,'Huan Hoc','https://lh5.googleusercontent.com/-Z6_sTs1B0WE/AAAAAAAAAAI/AAAAAAAAAAA/knRRnYzvzLM/c-rp-mo-br100/photo.jpg','17898197009688164559',5447),('AIe9_BFqh_zr355jzGaEpH7666zctzi5o0gS4RsmYwcEFWbtBhpZ74QZoFlkU68Fiu28WlxvF4mvwxVy7pUWTsYP8VLKTYursv0SIGUL6sHrOfUGr0PwwdI','Excellent and fast service !! Totally recommend rather then going to a Hospital Emergency Room. We had different people service him which made the process go by really fast. The nurse was Sarah, ER tech Daniel and RAD tech Carletta. Dr. Pham gave my husband 7 stitches and was done in no time!','2020-02-20 01:03:34.772000','2020-02-20 01:03:34.772000',5,'ADRIAN ORTA','https://lh5.googleusercontent.com/-35AcRut0TPY/AAAAAAAAAAI/AAAAAAAAAAA/gjxA0Ux3lGA/c-rp-mo-br100/photo.jpg','17898197009688164559',14152),('AIe9_BFqh_zr355jzGaEpH7666zcUhet9Kc3VeLMgH5KRMFFG0hrKUUe55ec1NKAZyANBI3ODQE4IRKnGqbfzFa46oqL8Huf9k2-CQwL3jBRY3r3jEl_-0I','Very helpful and nice ! I love coming when I’m feeling sick ! You are really In the best hands here ! They will take care of you 🤗','2019-05-08 16:19:12.437000','2019-05-08 16:19:12.437000',5,'Jay Bayonne','https://lh6.googleusercontent.com/-vIuMH4IBCQ8/AAAAAAAAAAI/AAAAAAAAAAA/hAIhXhxm_YM/c-rp-mo-br100/photo.jpg','3272657195432704501',6964),('AIe9_BFqh_zr355jzGaEpH7666zcUKEgnPvDlMNbO5fY-4kocY9t5cZhBYvLb8bwytUUE58uq6Hdmo9n01uBR5VSaya40Sy3vvbEqDob4mkQht9ZtVvg6Hc','Brian H and Brandon W were very nice and friendly. Brian D and Ricardo G were so helpful and Dr. Jolly made me feel very welcomed. Service was fast and took care of me with gentle care. I have been coming here for two years when an emergency arise wouldn\'t go anywhere else.','2020-02-18 10:31:55.041000','2020-02-18 10:31:55.041000',5,'Alexis Dow','https://lh3.googleusercontent.com/-oyV5FOw9-TA/AAAAAAAAAAI/AAAAAAAAAAA/1PjJDXpKyw0/c-rp-mo-br100/photo.jpg','14567670160750071148',13521),('AIe9_BFqh_zr355jzGaEpH7666zcuwjtxVuC_O6aVeIoo6C82fWLQMsH0n3kGcca5CK_yz5dtz3aCeZiTwfioSZWUuIdSFlvoq806v2R8OnWAaQfJhWzw0E','Keera and the entire staff were wonderful!','2018-11-08 06:27:42.501000','2018-11-08 06:27:42.501000',5,'Baylee Floyd','https://lh4.googleusercontent.com/-rkYcg-URN_A/AAAAAAAAAAI/AAAAAAAAAAA/-MKM8_otxJc/c-rp-mo-br100/photo.jpg','16590124370714063921',3657),('AIe9_BFqh_zr355jzGaEpH7666zcv2-d-TPkaCCiQIWJXWGySi8puPBxMkXjalVoCxyvR8TW5-0WdKO0LbvnFBjMuTUUiDzOsjVw5ZgRP-6TYSI996JKDRs',NULL,'2020-07-29 03:13:15.021000','2020-07-29 03:13:15.021000',5,'Sajiree Padalkar','https://lh5.googleusercontent.com/-4pc5BACjyMI/AAAAAAAAAAI/AAAAAAAAAAA/ps7_wJG8lck/c-rp-mo-br100/photo.jpg','2077061009497551125',22774),('AIe9_BFqh_zr355jzGaEpH7666zcV5iA-GGUqEOvQK06zHM6ReeETs-U0mApBaLPZgjmtUNRaoS4IsjJeQfYQCeKEvXugojpT-jWX6RMyLqxREH_10pUSTA','Dr. Golla & Liz are so awesome! Friendliest people ever! Plus, they\'re so attentive and very caring.','2017-10-08 00:35:45.493000','2017-10-08 00:35:45.493000',5,'Jackie Benitez','https://lh5.googleusercontent.com/-k19fU8Dr1_g/AAAAAAAAAAI/AAAAAAAAAAA/UgNaVEVGakc/c-rp-mo-br100/photo.jpg','17394740196501090048',4957),('AIe9_BFqh_zr355jzGaEpH7666zcvCaMbRbl2YMY1OVjpDb6u52GjNzRG2qUAlkfLHBkLz8oJkFG7Lm0H4PyUFIvE-4BCbwc0LBsMrfQNP7yisqev65txAM','I was pleasantly surprised and immediately put at ease when I was greeted by the front desk person. The Doctor & Nurse were professional and showed an honest interest in my problem. This is one of the best/top experiences I have had in a medical facility.','2017-01-14 22:19:02.948000','2017-01-14 22:19:02.948000',5,'Lorena McLaughlin','https://lh5.googleusercontent.com/-ou2LhEkspI4/AAAAAAAAAAI/AAAAAAAAAAA/TaRFcPM_T7w/c-rp-mo-br100/photo.jpg','14904078213800803294',2429),('AIe9_BFqh_zr355jzGaEpH7666zcvDf1cG3qyA-WQmC1bpvY2g2oTz6pPVKV5yI_mxaeYW8MjGp75CL9SH1bDIYg2xlSfMnlfEDyhgLc1Cd4xY2E85ESPik','Luisa was very welcoming. Jani and Troy were amazing and Marcus was halarious thank you so much Dr Cavazoz for taking care of my mom!','2019-08-19 02:36:57.961000','2019-08-19 02:36:57.961000',5,'Natalie Duran','https://lh5.googleusercontent.com/-H6090uzYgSw/AAAAAAAAAAI/AAAAAAAAAAA/VhZA9PFcLXk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcvfRz4xCd0Gj7ACrzK3R_JsDEc53J6JxcAR7D7Sf6ZDhI5MjOjhbBGWUyQESGu-L3gSmdX5N-sDwSe9viCl7atU1HOz0','This staff here is always so amazing! This is my 4th time coming here due to strep throat and other circumstances. They’re always so friendly and really listen to what my needs are.','2019-02-23 17:30:36.373000','2019-02-23 17:30:36.373000',5,'harley lerche','https://lh3.googleusercontent.com/-42-wILGJTdA/AAAAAAAAAAI/AAAAAAAAAAA/CrJx7j5qkec/c-rp-mo-br100/photo.jpg','16590124370714063921',3528),('AIe9_BFqh_zr355jzGaEpH7666zcvl8dsT7bATptPdyVCcDE3UkcYot8sr5Oo7-6RFbtmmhZybWYQyRzR8-RCeOXYv-eVuko8mF9c4vAdAmkgJciZ9rgiWI','Amazing,amazing,amazing. Brought my son in. He does have autism so I worry about emergency room visits or stressful situations out of his comfort zone. The whole staff made this as stress free and nice as it possibly could have been. They really explained things well and everything was a lot faster than I expected it would be. Dr. Huerta was kind and Savannah,Rebecca,Jair, Maria,and Erin were exceptional. Andrea the ultrasound tech was absolutely amazing. She really made everything great. We loved everything. We felt like we were getting so much attention and everyone cared. Thank you so much.','2019-04-10 16:03:51.724000','2019-04-10 16:03:51.724000',5,'Shannon Dilulo','https://lh3.googleusercontent.com/-cUoqpok0zzE/AAAAAAAAAAI/AAAAAAAAAAA/K8bBP15nZFc/c-rp-mo-br100/photo.jpg','13486358490203335051',1043),('AIe9_BFqh_zr355jzGaEpH7666zcVNIQYCk0dBlGanE6s22R7QAsuS8aqSO1j8c8qbk31mLXUQkL8s_llcrJwx5NJTBGuWI2ikk6S-6Ppe5-9DiD-4I6Gn0',NULL,'2019-07-05 08:29:21.663000','2019-07-05 08:29:21.663000',3,'Ty Turk','https://lh4.googleusercontent.com/-BA-XptuhxpI/AAAAAAAAAAI/AAAAAAAAAAA/VWEzrzOREJg/c-rp-mo-br100/photo.jpg','3511292162159714121',7275),('AIe9_BFqh_zr355jzGaEpH7666zcVPNB0xFtrg9S1IsmuplxTWGRLcbaW45EAI9QzSAsE-gHAHufak1R5Ohag0RCdFyzDSa6ZEWS_p4r_UX3jFOZxpMFUcw','I was in terrible pain and from the moment I walked through the door until the end, I felt as if these people actually cared for me. They reassured me they would \"get it figured out\" but wanted to help me with the horrible pain and they continued to work. They moved quickly and efficiently with incredible attention to details and true depth of compassion. I can not review them more highly. My team consisted of:\n\nPhysician: Giancarlo G. Soli\nNurse: Naureen N M\nRadiology Tech: Jose Erasmo R\nFront Desk: Elizabeth A T\n\nThank you to this wonderful team.','2019-10-17 13:36:36.612000','2019-10-17 13:36:36.612000',5,'James Creighton','https://lh4.googleusercontent.com/-PRo_1g30x30/AAAAAAAAAAI/AAAAAAAAAAA/XrwjsRbga28/c-rp-mo-br100/photo.jpg','3511292162159714121',7157),('AIe9_BFqh_zr355jzGaEpH7666zcVR2rY-MonzOZNECnMghfiPYKOTMSpdVVjuVRmq6HZp_LjRR0H2fgM3iCHkjQNocVOJcuGzwls6_ThnXTejZVDlIMh9Y','Amazing service, staff, and I highly recommend if you need some immediate Care. If you come across Laura and Mercy you are in good business.','2018-03-01 14:48:30.493000','2018-03-01 14:48:30.493000',5,'Corisha Rogers','https://lh6.googleusercontent.com/-5s7kL4J6sQE/AAAAAAAAAAI/AAAAAAAAAAA/WM-mHO_jiNo/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7721),('AIe9_BFqh_zr355jzGaEpH7666zcW14mzMWqRP3zpqxaFP05oCEWFtsOS0OocYqc5h1hBhOyP-WfoUZZikiijGnG1n26veNSSk7YyqaxYLO9AGqoWvm-Qxw','Dr.Miller, Agnes, and Amy were so sweet and helpful! They were also quick to service. Will definitely come back!','2019-06-16 03:21:22.594000','2019-06-16 03:21:22.594000',5,'Denah','https://lh6.googleusercontent.com/-Thct7altITk/AAAAAAAAAAI/AAAAAAAAAAA/tTgXgwmfX24/c-rp-mo-br100/photo.jpg','3511292162159714121',7303),('AIe9_BFqh_zr355jzGaEpH7666zcw54c8u8_Q0uLFb-i_TitL9JuRdoaVUdXFnjpoVC4m7nSv6aWhSsPqnBIBnOSZRtEcDlnt4futxORpJE7d68J36Hg3LE','Very satisfied \nJennifer D.\nSusie\nMatt','2019-05-29 19:55:16.312000','2019-05-29 19:55:16.312000',5,'Amanda West','https://lh5.googleusercontent.com/-W3g9l4HNc-k/AAAAAAAAAAI/AAAAAAAAAAA/RK0Nga_Idn8/c-rp-mo-br100/photo.jpg','8626688543755174284',8468),('AIe9_BFqh_zr355jzGaEpH7666zcWcMOFyT8600dkbGqqOrxk-wnvvlBO1q9NJ1kevmecFhfNNwziUjFqW05wp-OhK8OwiBVlqmbMghRNeA1YMatrDCce-k','Went here last week when my husband injured his finger. Felt welcome and reassured from the moment we walked in. The front desk staff was friendly and helpful. The facility was spotless and very nicely decorated. We were taken back to an exam room immediately and saw Dr. Braun. He was very warm in his bedside manner and thorough. He sat down and got the whole scoop about said finger injury and carefully looked it over. After a couple X-rays (which he looked over with us, and pointed out exactly what was going on), he placed a split and it wasn\'t long before we were on our way. The nurses were all super nice and professional and made sure that I (the super pregnant wife of the patient) was doing ok too.\nWould not hesitate coming back here or referring friends to this excellent facility!','2016-05-02 17:11:51.137000','2016-05-02 17:11:51.137000',5,'Allison Eisenberg','https://lh5.googleusercontent.com/-A9o4P0RxS6M/AAAAAAAAAAI/AAAAAAAAAAA/PLkrI3EjrMQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5258),('AIe9_BFqh_zr355jzGaEpH7666zcWjuOG5IO54Cn1klDnF02loeB8Izff0vzrCzFAUgtgeIU_7rbol01AITQ0BmNS2nhZJjISHOUV5_4YElaldipUUZ0DKE','The lobby has a wonderful selection of snacks and drinks, a nice tv and comfy seats. I was offered a warm blanket and treated very well. Dr. Nweze was very professional. Thank you','2019-11-07 19:03:17.682000','2019-11-07 19:03:17.682000',5,'Creative Splash','https://lh5.googleusercontent.com/-x6VFPH9WmhQ/AAAAAAAAAAI/AAAAAAAAAAA/d-nYN9K2_QU/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8740),('AIe9_BFqh_zr355jzGaEpH7666zcwLXxSfFX7BNpetwwGUV7-ClWR_A3nSVOn1MKoKXwdOIyiuHhFvktPnjDpSMOMK5TED36AseFpguvQAiDI-GVAUadkVw','No one wants to visit the ER, but everyone I encountered was helpful, smiling, and concerned about me. Definitely made the visit easier!','2020-07-05 09:01:34.675000','2020-07-05 09:01:34.675000',5,'K\'Lynn Childress','https://lh3.googleusercontent.com/-zbEplPETGAM/AAAAAAAAAAI/AAAAAAAAAAA/zGN85kcC-Nc/c-rp-mo-br100/photo.jpg','12541597562633926366',21338),('AIe9_BFqh_zr355jzGaEpH7666zcWs63SJSnoCDZa5umqFZUtyEbiMJDRGCakbkPE39fqciz40GNTFMjRiAdjFmaTsV3BkdG_gXlobO4lNSuv7XgdyJxJtw','Great people! Quick and easy! No waiting','2020-01-02 05:20:45.280000','2020-01-02 05:20:45.280000',5,'Phillip Delariva','https://lh5.googleusercontent.com/-8ibhsABNcXw/AAAAAAAAAAI/AAAAAAAAAAA/Qc2Okhs-Oqc/c-rp-mo-br100/photo.jpg','8918455867446117794',14883),('AIe9_BFqh_zr355jzGaEpH7666zcx_JuSGwqsGjjBLIgKGKF0oTLs0_20CNFvwv5w_7qbB1QMCZiYB2B886zcIkZn8occKMiw0GF7irdmOvafLMzcgVRevo','Everyone was nice!','2019-05-27 03:31:14.594000','2019-05-27 03:31:14.594000',5,'Carme Tolbert','https://lh6.googleusercontent.com/-g9VTvfGvR-Y/AAAAAAAAAAI/AAAAAAAAAAA/fsP8D4aszng/c-rp-mo-br100/photo.jpg','17898197009688164559',5723),('AIe9_BFqh_zr355jzGaEpH7666zcX7j2kaatkeU3QAoIVJ0oGwWN5smh_pPyzDcSOsCLXe93CKeE13YOeefEL_VcNGovRHMn-EqJPdpGmo10PcvJ-ORUYZU',NULL,'2018-11-28 04:25:59.932000','2018-11-28 04:25:59.932000',5,'J dog','https://lh5.googleusercontent.com/-Vo_eG1DsvDs/AAAAAAAAAAI/AAAAAAAAAAA/hlca9a26YYs/c-rp-mo-br100/photo.jpg','16590124370714063921',3634),('AIe9_BFqh_zr355jzGaEpH7666zcxcBMf7YNgc-z-PhOk23NmgoPW9oGoNhf6L8AxHKaPbu-8Pz2ul1KtBgKtQ0UTmUlAO6CWOzKQS4YoOXkm24pKjjfUqA','Alvean,Luisa,Elida,Tricia. You guys were BEYOND AMAZING(AMAZEBALLS)!! Thank you so much!! I would high recommend.','2020-07-04 22:10:36.328000','2020-07-04 22:10:36.328000',5,'Oscar Astudillo','https://lh3.googleusercontent.com/a-/AOh14GiKyiA3UZJJHO8cuhh6AG-kGRvwHKlExpSaQ_XP_A=c0x00000000-cc-rp-ba3','16389487648212004696',21403),('AIe9_BFqh_zr355jzGaEpH7666zcXFAJxZiwGfM3Y-NqFpTiv4af9IvGER32iA-ZYiW-LNYWkChN4Z1TlnUP0auU4Pkap8dO8qZw2JJxOfoUsLck8ot9YmE','Dyveliz was super kind and made us feel welcomed!','2018-11-14 04:14:21.159000','2018-11-14 04:14:21.159000',5,'Sydnie Acker','https://lh4.googleusercontent.com/-ay2TyaiDSMs/AAAAAAAAAAI/AAAAAAAAAAA/mQQ1GF3mNQE/c-rp-mo-br100/photo.jpg','16590124370714063921',3651),('AIe9_BFqh_zr355jzGaEpH7666zcxHCdIp8v_DkO77M2yJQxdETUMZAh-L2H1yG2zVQ5722eKQd3oiIYbn5KcE3A4HdpnLgR8LM8fJ7tKVVI4dkKobrCfSc','I have been here 3 times this year, one time for my son. And 2 for myself. All at different times of the day and night. Each time the experience is the same. From the moment you walk in, to the moment you leave.Very kind, and professional. It’s an amazing experience, the staff is super nice, it almost feels like you are at home. This last time I was there for an extended period of time, and didn’t have anyone to care for my son, so he had to join me while I was being treated. The staff was super nice, and kind with him.( granted he was well behaved), but the staff acknowledged he was there, played with him and didn’t make it awkward for us. I will forever be grateful. They truly do have a signature care. Keep up the great work! I hope I don’t have to go back anytime soon. But if need to, I know I will be in great hands. I truly recommend this location to everyone.','2019-05-30 05:42:55.489000','2019-05-30 05:42:55.489000',5,'Alex & Rose','https://lh3.googleusercontent.com/-ICut882Q-xI/AAAAAAAAAAI/AAAAAAAAAAA/Kqjn0uBc6Ok/c-rp-mo-br100/photo.jpg','14904078213800803294',2137),('AIe9_BFqh_zr355jzGaEpH7666zcxM_9CADPh6cbN6rmMZERTMtqRbmKIXF8e5MTPlrE7A5K9elERHgG1hlmcwQSX7_kopI8wAPyWIrqJuBHZztOMnBfjn0','This is how healthcare should be. Gabe is a pro.','2018-07-25 09:14:11.486000','2018-07-25 09:14:11.486000',5,'Winston Hughes','https://lh4.googleusercontent.com/--nQXGX2v_2c/AAAAAAAAAAI/AAAAAAAAAAA/3ryo6PrPoh4/c-rp-mo-br100/photo.jpg','16891069708558046635',4459),('AIe9_BFqh_zr355jzGaEpH7666zcxP_hLlbfXi8o-Hw2yYRf-Sk2pAlT6PRdyzudCij9VvngEdo52fzlLxyvkXmlwohFeBtTlXWUQbQwL3_Jg_xSiaz7AfI','Everyone was so nice @ the Copperfield location. Dr. Estevez explained everything so I could understand exactly what I was experiencing. The Nurses, Sarah and Rachel were extremely helpful. The Rad Tech Nancy made me feel so comfortable. The facility was very clean and my wait time was very short. I would definitely recommend this location if you want a relaxing environment that will make sure you are well taken care of.','2019-12-03 04:01:01.869000','2019-12-03 04:01:01.869000',5,'Natural Monai\' Love','https://lh6.googleusercontent.com/-rquOApEnIU0/AAAAAAAAAAI/AAAAAAAAAAA/ES2VMSliV4c/c-rp-mo-br100/photo.jpg','17898197009688164559',5385),('AIe9_BFqh_zr355jzGaEpH7666zcxP7Al1r0LIcpX1P35SwZWv1b62VoCLfSOZryy3tzpoePHuOuKnvr_kgD6mOowsBfCtYpCGbSZj-SNwlEYFswoWZUK5Y','These ladies (Rebecca V., Dr. Herbert, RN Jeri and Rad Tech Stephanie) were all soo nice even though its midnight','2020-01-03 06:56:23.010000','2020-01-03 06:56:23.010000',5,'Trevor Motsinger','https://lh3.googleusercontent.com/-4KAhceM_2Is/AAAAAAAAAAI/AAAAAAAAAAA/euR45NUbrys/c-rp-mo-br100/photo.jpg','16590124370714063921',2991),('AIe9_BFqh_zr355jzGaEpH7666zcXqUiGzZoB_6L4IG3ybjkpcA-ki0jlKrpTUr8oCT_jJailhAvdy7-zgxTqA2fs8_qzdfewO5d8qWcuofqr-GUypR7rFc','I\'m an emergency room doctor. I heard what happened to a great friend of mine in an emergency situation. I\'ll do whatever I can to stop this center from dispensing inappropriate care that jeopardizes human lives. My dear friend almost died due to the lack of proper care at this facility. \n\nViolations of state laws and federal statutes. Extremely rude, grandiose and aloof staff. \n\nSuch a horror. r. g','2019-11-22 20:20:56.381000','2019-11-22 20:20:56.381000',1,'RetailStore 5210','https://lh5.googleusercontent.com/-u9mB0WEl3QY/AAAAAAAAAAI/AAAAAAAAAAA/mJhHApl2lug/c-rp-mo-br100/photo.jpg','16891069708558046635',4142),('AIe9_BFqh_zr355jzGaEpH7666zcXrmVOznlLds7gqK-KaKRQophmNPmL8VcYtr1PVBj9-VC4nvibqi7CilxDxPFCbkN0r0cLDn1d7XnAi6-k52Hv7O2mn8','Great and fast service. Alvean is awesome.','2019-11-26 14:33:06.867000','2019-11-26 14:33:06.867000',5,'Reyslie dee gabata','https://lh5.googleusercontent.com/-orTegwhvUXk/AAAAAAAAAAI/AAAAAAAAAAA/BxjWEeUPj3k/c-rp-mo-br100/photo.jpg','16389487648212004696',2629),('AIe9_BFqh_zr355jzGaEpH7666zcxz2wme8Rk2QIgcoIflGxFX3ZVXAKa6ItIiPRmA4NbYfQbtxuuFViVh7mwiQJx1k9rQ7hNPnwy3g4CgpvKjBYYuESRhc','My visit here was fast and very comfortable, from the registration Robin at the front desk was very kind and got me sign in we quick, My nurse Billy was great he had a great bed side manner and was very gentle with my Iv. CT scans can be very scary but Courtney the tech made me very comfortable and at ease. I went in thinking I had kidney stones But Dr got down to the bottom of it. Highly Recommend.','2019-06-18 03:19:10.491000','2019-06-18 03:19:10.491000',5,'STEPHANIE MUEHLENBEIN','https://lh5.googleusercontent.com/-13oQ713gwo0/AAAAAAAAAAI/AAAAAAAAAAA/oVHAtIC-T1E/c-rp-mo-br100/photo.jpg','8626688543755174284',8444),('AIe9_BFqh_zr355jzGaEpH7666zcy6lRsldFEH3T69u4uaYnFbujqXbQEjaFcQ2tbWLWu2DkJfF7pBSgKnjNBHqISwNBz0d66DUEnJA0BSTm_U-kgjtSvbI',NULL,'2019-05-23 21:34:45.558000','2019-05-23 21:34:45.558000',5,'Heather Hayes','https://lh3.googleusercontent.com/-Ki0z9zmV8iM/AAAAAAAAAAI/AAAAAAAAAAA/feCofQJvz10/c-rp-mo-br100/photo.jpg','8626688543755174284',8476),('AIe9_BFqh_zr355jzGaEpH7666zcYE1SY21YIBpJvYm1PoDf_nfcGysJfJDDYdYsFJDi4YyyOvuO8qGBghUaOz53_kkCiscqyK9e8dVtyO7tRWjKmib1eqE','Great service and very quick with the Covid rapid test. Doctor Das was very helpful! Well recommend','2020-08-09 17:43:49.643000','2020-08-09 17:43:49.643000',5,'Jon Villagomez','https://lh3.googleusercontent.com/a-/AOh14Ghv0TjJ-TLQ2rDu8-O9N7nfXI-NO7J8eAIBJew0ig=c0x00000000-cc-rp','14748677429039074158',22506),('AIe9_BFqh_zr355jzGaEpH7666zcYfMvUgKT2nuaMTNBE2KBh9NmF_3CPgAFjtX9B12lS2mannYb_9OLbbto4lMMBXFyvGyTBz9GNkNao5JEFz9cDhGKJN0','Had a great experience came in today for a follow up from Saturday as soon as I came in sat down 1 minute later was up and ready to head to the back . Such a good location. Easy convient and friendly staff','2020-03-10 20:50:17.817000','2020-03-10 20:50:17.817000',5,'adekoya adeleke','https://lh5.googleusercontent.com/-i6HJ2kePwGM/AAAAAAAAAAI/AAAAAAAAAAA/C39a6zYNblA/c-rp-mo-br100/photo.jpg','17394740196501090048',21066),('AIe9_BFqh_zr355jzGaEpH7666zcYlCwUG5zr-pELLy5ZIuH1pYLq6XPfE3LuPL3CZGbnsv3vdH8FeNsQ7cfXf7ObLqr7t_0NaJL0IS9uztQKs8_40oFuQ8','This place is the best. Fast service and they just do their job efficient and in a professional manner.','2018-03-17 06:34:08.283000','2018-03-17 06:34:08.283000',5,'Krysshondra King','https://lh4.googleusercontent.com/-lcQCR3-0_LE/AAAAAAAAAAI/AAAAAAAAAAA/sYEK2aBp08M/c-rp-mo-br100/photo.jpg','17394740196501090048',4869),('AIe9_BFqh_zr355jzGaEpH7666zcYShgycWmRxLfjsiioMRvomM1oiqgTNAG0hH0xyVX34wBttf3v2jypN1pBGud0ze7eUrAZYtafO6b61Gas0FnSRy3Cmo','Great experience and facility! The team that took care of us were brilliant namely the team dr Thomas, Sarah, Marcus, Matt and Ayesha! Very professional and took great care of the patient. Highly recommended.','2019-06-22 19:33:35.734000','2019-06-22 19:33:35.734000',5,'annie khaidem','https://lh5.googleusercontent.com/-pgTRu9n2U4s/AAAAAAAAAAI/AAAAAAAAAAA/oggR6DrEA8Y/c-rp-mo-br100/photo.jpg','17898197009688164559',5683),('AIe9_BFqh_zr355jzGaEpH7666zcYti9uLM0YGUcboN_DpW-7ODgfQr94ma1PmwV9oxVOYJKeYFWkRtovIF7RU0iLO098ijJUopQ_fUQgEzEH958_wyLz_c','Dr. Ding and Jacob were awesome. Very quick and thorough. My daughter\'s been sick all week and they were able to quickly diagnose and prescribe the correct medications. Lorena at registration and Laura and Becca were the tech people... everyone was super helpful','2019-09-29 18:33:42.902000','2019-09-29 18:33:42.902000',5,'Karin Beirne','https://lh5.googleusercontent.com/-_K0WpHhqTcQ/AAAAAAAAAAI/AAAAAAAAAAA/DwKF4ezhMFg/c-rp-mo-br100/photo.jpg','16590124370714063921',3165),('AIe9_BFqh_zr355jzGaEpH7666zcYTVkPWsF0rTxbOfPog6-wu8begMMEkKrUjSYCRde87aUfEuQs9d-_pGc07YLfshj2ISMeRgmgEiMS0-3qb4KY6qUyiU','The care that I received here was amazing. They treated me and my concerns with respect. I was informed of every step and given treatment options. Amazing staff and service.','2018-09-18 01:17:03.810000','2018-09-18 01:17:03.810000',5,'Jeremy Petty','https://lh5.googleusercontent.com/--dlb9xslRHE/AAAAAAAAAAI/AAAAAAAAAAA/aE-OlAK6EVo/c-rp-mo-br100/photo.jpg','3511292162159714121',7593),('AIe9_BFqh_zr355jzGaEpH7666zcYwE4-Z2g30fOWIKPB6wm4qfhXIm6VBCeD_vytd_wA_gQa0Q6TW7qlzfv6_R60xFOcCRjS-0Z0XWkALMQyRhKA0E8cs8','This place is a scam. I came here after a car accident, did not get any xrays, was literally given a piece of paper that was supposed to be an educational handout (could’ve gotten from google) and a prescription for extra strength ibuprofen. I saw the doctor for a total of 60 seconds and received a bill for over $1000. When I called the billing company, Round Table physicians, to ask about the erroneous bill I received they were unable to explain why I was charged that much and refused to offer me medical billing codes so that I could verify I was correctly charged for my visit. I will NEVER go here again. \n\nWould choose a traditional ER over a private one any day had I known the difference. The time, frustration, and money wasted trying to understand their scams would be better off spent at a hospital ER. \n\nPs they offer a Starbucks gift card in exchange for a positive review which is probably the only reason they’ve ever received greater than 1 star.','2019-02-05 12:22:26.778000','2019-02-05 12:22:26.778000',1,'alexis liscum','https://lh3.googleusercontent.com/-4KsPTwnR8T0/AAAAAAAAAAI/AAAAAAAAAAA/-NCO4-Dv9rE/c-rp-mo-br100/photo.jpg','3511292162159714121',7410),('AIe9_BFqh_zr355jzGaEpH7666zcYxP1Q7Za69ZHXmdGvmjeqYAtvnBJcLTAEtEMaMD4De5BIfbHgJj-NfKRd2G9L6vziSoT9q3N6pKGkhNsB_uutSoN0WQ','Horrible emergency place I will never ever bring no one here they refuse my 4 yr old son here because they want me to pay first he had a fever vomiting, and diarrhea and he was turn down bad bad bad service so I took my soon to the hospital','2019-08-24 01:07:07.379000','2019-08-24 01:07:07.379000',1,'America REYES','https://lh3.googleusercontent.com/-2IhZELi4iwY/AAAAAAAAAAI/AAAAAAAAAAA/Hze8IzbYWlk/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1255),('AIe9_BFqh_zr355jzGaEpH7666zcYYFMJw6M3mGHUCRkw6xHa3MBrr_cVvXHYK-A959paBcJkCtvW3wB6-HZASQqlkzSuuE-mkk3qTgc1APwta1vouLscno','Excellent Customer Service and Patient Care. All the staff that worked that evening when i went in 5/22/17 were very professional and actually cared about me and my well being. I will mostt definatley recommend Signature to everyone I know.','2017-05-23 01:33:26.794000','2017-05-23 01:33:26.794000',5,'Rey Garcia','https://lh5.googleusercontent.com/-UPnmG4oKM9M/AAAAAAAAAAI/AAAAAAAAAAA/Qg4VrRDh2H4/c-rp-mo-br100/photo.jpg','14904078213800803294',2355),('AIe9_BFqh_zr355jzGaEpH7666zcz1y2dzNkXNX02rCEq6xADEeJt3R76aSEewTNYdXRuILpcyOWrBZyJwAeFw1_lyq5AGSThVwrH1e7bkWI6DL12GQ6f9A','This SignatureCare facility is amazing! My father had severe abdominal pain, and we visited two other outpatient facilities that turned us away before we stopped here, and we are so glad we did. Our experience surpassed our expectations. Jesus C. at registration was so kind and informative, Tricia was so calming with my father being nervous about receiving his IV stick, Jani was courteous and informative as well, and Dr. Nguyen had an answer for all of our questions, and explained everything thoroughly. We are so grateful for the care that we received, and will definitely be coming back for any immediate needs!','2019-03-21 15:59:03.573000','2019-03-21 15:59:03.573000',5,'Vanessa Elliott','https://lh4.googleusercontent.com/-y3v27eXNUVg/AAAAAAAAAAI/AAAAAAAAAAA/czEe9wg2WmE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFqh_zr355jzGaEpH7666zcZCF-1WZehv1WZCyvwcHJBQIHhgdqivsUQuvQLHNr_csj47eflgBukC3GdYQj0w0mlwkU9618jOyLoU8uT4EvC3641cs','Amazing service. Dr Miller was very nice. Whole staff was helpful, really appreciated Sherri, Jani, Bryan, Time, and Jasmine. Such a nice staff that makes you feel comfortable! I had a horrible cut in my finger that needed stitches and they took care of if so efficiently and I am all better now.','2018-10-26 00:07:15.955000','2018-10-26 00:07:15.955000',5,'Audrey Fogle','https://lh3.googleusercontent.com/-YnFzikr7j0M/AAAAAAAAAAI/AAAAAAAAAAA/Dr4hxubSUIM/c-rp-mo-br100/photo.jpg','14567670160750071148',1465),('AIe9_BFqh_zr355jzGaEpH7666zcZDC7a-qYnNar373uCLxoIcdNkq9FKO3cimPnWPDkMjTHVfU_GiU80J-vk8ksbpAMWDYMLlzlaF0FB_4RZD1ItQmJPC0','Needed to test for covid due to work exposure. Thanks to Dr. Hehman, nurse Nicole, and techs Lonnie and Shay, the visit was quick and almost painless (swabs aren’t fun).','2020-07-27 13:28:25.411000','2020-07-27 13:28:25.411000',5,'Ke Zheng','https://lh3.googleusercontent.com/a-/AOh14GhZt0VO8PmESTCMmDCnKZ89JFQ69urA5pjIP5Hapg=c0x00000000-cc-rp','8918455867446117794',22285),('AIe9_BFqh_zr355jzGaEpH7666zczND3sERnqho6N5G8M8lo7cSYuoJXCAMK7poyLOte4NSA-c5FLSMK8JXahhEDC58oinQsEsCqp-APXbYMZ_KvZFkcfd8','I usually don’t leave reviews, however I have to express how thankful I am to have an emergency facility so close to home that goes above and beyond for their patients. Amy was extremely helpful and made the registration process quick. We were called in less than 5 minutes and were seen by Dr.Leavitt shortly after. She’s amazing with children and thorough. I felt everyone ( Nurse Alvean and Keith) were exceptional.','2019-11-17 20:50:41.709000','2019-11-17 20:50:41.709000',5,'Chavonne Ayers','https://lh6.googleusercontent.com/-KlBKZfEQZ0U/AAAAAAAAAAI/AAAAAAAAAAA/tir-oCZVXBc/c-rp-mo-br100/photo.jpg','16389487648212004696',2668),('AIe9_BFqh_zr355jzGaEpH7666zcZp4BCqTeCHKWTCUhgYljizdAAzWTJnuOGqQ1pP2B1o1t8lKiHYc4Ib3ENWBt0YiUKEy4rutq_ERNfVAuZMbJqZW9q1I',NULL,'2019-10-04 21:53:01.012000','2019-10-04 21:53:01.012000',5,'Tonya Rodriguez','https://lh3.googleusercontent.com/--JJk1X7Mo7I/AAAAAAAAAAI/AAAAAAAAAAA/Wqh8hpdF_BU/c-rp-mo-br100/photo.jpg','16590124370714063921',3158),('AIe9_BFqh_zr355jzGaEpH7666zczUr-DnI5uoaDHP_ZlS7QncjjNzlLhs4nUqpOzYYhu3uw0oG43fy3s_40rBGOziUPBYmH15X41j1ffNtsCHHXRSmslik','I got the best care, the staff was very friendly and helpful. Shawn was my nurse, he was very knowledgeable. Thank you guys.','2020-02-12 23:56:45.590000','2020-02-12 23:56:45.590000',5,'Shanikka Samuel','https://lh6.googleusercontent.com/-yuEyKyiBkyA/AAAAAAAAAAI/AAAAAAAAAAA/T7qZFp0telg/c-rp-mo-br100/photo.jpg','8918455867446117794',14833),('AIe9_BFqh_zr355jzGaEpH7666zcZvkSkA7zveB-K7Ilt-GDE12oX_YYG8BIqSZ739-I4a4q5H9dX6Id_fInOQUIUw8o842SpbvD06XCc_NqobWVk7d1MDo','Ended up here before our wedding for my flu, and then took my wife in after the honeymoon when she sliced her finger when cleaning the house. Both times had great, prompt, and thorough care. Dr. Elsebecker, Chris, and Adam were both incredibly calming while injecting the right amount of humor to reduce anxiety. When she sliced her finger we knew exactly where we wanted to go based solely on our previous experience. Although I hope to be done coming here, if we need and ER this is the place I\'d prefer to go.','2019-11-05 01:32:10.846000','2019-11-05 01:32:10.846000',5,'Spencer Copeland','https://lh5.googleusercontent.com/-XCVDNTm4sCE/AAAAAAAAAAI/AAAAAAAAAAA/AunjXMiQTS0/c-rp-mo-br100/photo.jpg','16891069708558046635',4161),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-S322Vic0AKHGHmDCYKq8w-G69NTxIcyVZuXCGj65UKVFgZ87gVspFajqM10wNepQPoaQ5ns1u70ApD2z0fuOxa1WBbvk','I went to SCE bcoz I was in pain. Everyone was nice, friendly and polite, starting From the Security guard Barry when I arrived there he asked me if I was OK, if I needed a wheelchair to the registration lady (Jasmine), Dr. Booster, Ricardo (nurse), Kristi (x-ray tech) and I received a call checking on me the nxt day from Rachel 👍 Good job guys 👏','2017-01-27 17:27:58.562000','2017-01-27 17:27:58.562000',5,'Xavi Lionel','https://lh6.googleusercontent.com/-ru-H7YiFjwY/AAAAAAAAAAI/AAAAAAAAAAA/gjlnS0TS0yA/c-rp-mo-br100/photo.jpg','14567670160750071148',1902),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-S8rX4tE1su1D89deJ74kWIwA61XlMTc2z7dAnPHn70o4FbT7hmyri5CjX0g_LFusKQOeiIOlS2WRzNaXk1U_hzvIzcBc','We had an appointment for COVID-19 they did a very good job. Very friendly staff and answered all of our questions. Jessica S was very helpful and answering all my questions and was very professional.','2020-07-20 14:26:28.449000','2020-07-20 14:26:28.449000',5,'Farid Kara','https://lh4.googleusercontent.com/-ETxSy3fE1z8/AAAAAAAAAAI/AAAAAAAAAAA/P66f3hXMaRg/c-rp-mo-br100/photo.jpg','14748677429039074158',21674),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-S8vLIguuGRSNYDALQy6tOzRXm-w-YrsBH3BMSfmtYkvN8LG-KyxlR5au7Li7wjuKKK62HF2Q9ABMixBoEvdw2L6zAhW0','This place is awesome! Chris was an excellent nurse as he tended to my every need and was very informative. Upon arrival I was greeted by the friendly staff, had little to no wait time and was seen by the Dr.Miller who took great care of me. Every question I had was answered and I didn\'t feel the pressure to commit to anything I was unsure of as the staff explained everything to me in great detail. This is a go-to place for quick, efficient, and helpful care!','2020-01-14 22:50:40.395000','2020-01-14 22:50:40.395000',5,'Ashley Mills','https://lh3.googleusercontent.com/-SFYdgYcHuyA/AAAAAAAAAAI/AAAAAAAAAAA/88kWX1PWGHY/c-rp-mo-br100/photo.jpg','14567670160750071148',9697),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-Sa08gjbukMKa61cI7aseg08w4j2vbVeXF-zxjN3WThLsqlmK_CP1EDgE5GsHrsQy8BiduVfib2VfYRwpAbbfEcAfjqKQ','On Friday 10 May my husband took me to this facility for care due to a high fever, migraine and body aches. From the time I walked in the staff was there eagerly with a wheel chair due to the migraine and light I could not walk well. I was taken back where they began to access and given extremely fast care from nurse Dawn & Susan. Once blood was taken Dr. Thomas MD ordered a brain cat scan and radiology tech Jessica was amazing with me. Each medical personal I was provided was very attentive to my needs and tried to accommodate with quick results. As all of this was occurring Ashley with registration was ensuring my husband filled out the correct paperwork to ensure all my needs were taking care of. I recommend this facility to anyone who needs medical attention and especially if it is urgent care. \nA big thank you to Dr. Thomas MD, nurse Dawn & Susan, Rad tech Jessica and Ashley in registration, you all are awesome!','2019-05-14 15:13:16.505000','2019-05-14 15:13:16.505000',5,'Michelle Parker','https://lh6.googleusercontent.com/-6eyXf69iYng/AAAAAAAAAAI/AAAAAAAAAAA/GBKUcHTLyQU/c-rp-mo-br100/photo.jpg','17898197009688164559',5739),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SaDHq9YR0V-7pLHnmT2WOYucswzD_JAigLVLVGy5en78VodG0IlHDtLQm5UV4kDONS0dhjppa_fbNDNoHf2S7u-2ffqw','Had a assume experience','2020-01-29 20:34:10.960000','2020-01-29 20:34:10.960000',5,'Dewayne Holland','https://lh5.googleusercontent.com/-blgsWqUMee4/AAAAAAAAAAI/AAAAAAAAAAA/_xPcTfPjxt4/c-rp-mo-br100/photo.jpg','8918455867446117794',14862),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-ScfK0y1hQ__nDSODzRBt_zs2EsZNncTS2Ejgafp00mPx8wQD308rynkPOBcovAWKXj1EZvpujChyRHixH6GSXpQhK7nA','Gabe had me and my roommate laughing the entire time while taking care of us perfectly. The ladies at the front desk explained things great and the entire staff made me and my roommate feel very well taken care of.','2019-10-16 00:30:10.545000','2019-10-16 00:30:10.545000',5,'Saku Akarui','https://lh5.googleusercontent.com/-pBi-0lmrT4Y/AAAAAAAAAAI/AAAAAAAAAAA/I327WYDS_OE/c-rp-mo-br100/photo.jpg','16590124370714063921',3137),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-ScoQfmFXokhQDfI70BHjIpzCLkmSHelRisBFist_s0twahbbfIHNVNiGa9i1hFDk-ry2qGEugLTdasftNAp-uuFl94fE','Very professional facility. Was greeted with happy smiling friendly faces. My husband was seen in no time. Very quick and dr explained in details. Highly recommend coming here!','2019-12-06 18:43:53.625000','2019-12-06 18:43:53.625000',5,'Courtney Ducote','https://lh5.googleusercontent.com/-z4O1JrC0zgs/AAAAAAAAAAI/AAAAAAAAAAA/_H3EL7TBbvE/c-rp-mo-br100/photo.jpg','13486358490203335051',704),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SDfk5sLF5pEHmtR9iUqLd0WmVb3nZmqsBhAv4t_BNCctnsosN2g64Z0LGl_AWKNRIACSAMxJAhqUOFx-23SJoMEu_ZbQ','Dr leavitt \nRita\nJonathan\nRommel\nAdolfo your all awesome I felt welcome and left feeling better thank you!','2020-01-20 22:33:10.437000','2020-01-20 22:33:10.437000',5,'Devan perez','https://lh3.googleusercontent.com/-pX4CSy26IOU/AAAAAAAAAAI/AAAAAAAAAAA/kF2Y13LOid4/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',13625),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SdhaB4U7seKoLBNKMq7vSLOilMt6Lcb6jLqyqnSmrR-xTmf5J_tKWz-Cr85clD_J4KyR2kOe5oyoCl-Cj_gPZ4zxc8mk','I arrived to the patient pick-up area and a nurse immediately came out with a wheelchair for my sons fractured ankle. We were in the waiting room no longer than 10 minutes and the staff was very sweet, attentive, and knowledgeable. So glad I found this 24/7 Urgent Care center!','2018-01-27 04:36:42.710000','2018-01-27 04:36:42.710000',5,'Miranda Gonzales','https://lh5.googleusercontent.com/-BuOemTvpiqc/AAAAAAAAAAI/AAAAAAAAAAA/qJktoozksvw/c-rp-mo-br100/photo.jpg','14904078213800803294',2286),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SE8MhOKX_VWCR6xGgqi9GJCNrdMe8mmAG4YPwMMOJvKEeUXM2PJyVdD5oMSRYPQ8j2_CQtE5k5NehwXWPe7QRAMr9HaQ','Great staff... They make you feel like you are in the best care in the world','2020-03-12 23:25:18.611000','2020-03-12 23:25:18.611000',5,'Dominique Lane','https://lh4.googleusercontent.com/-wChyf9DDFhI/AAAAAAAAAAI/AAAAAAAAAAA/T8pZYeycFKs/c-rp-mo-br100/photo.jpg','8918455867446117794',21237),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SePLkzxFmH5Tie_nWGCxh8YrRRzza4QVfFzoRsPGL5rrxQmVP1zcc6m2aQcKqjY8KvJJjb8kDXm7Gn39HFkUOaD2kWYw',NULL,'2018-10-01 07:55:46.428000','2018-10-01 07:55:46.428000',1,'Mingo Yanez','https://lh6.googleusercontent.com/-vU-bqyPljXc/AAAAAAAAAAI/AAAAAAAAAAA/wMLUkuZgyKw/c-rp-mo-br100/photo.jpg','8679688254631342173',8897),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SFo9rn7WwIvpO7prKkQ_xTp4KUUgkkflTlWvPKlvSnCbSZH0s5Q-G2MDTft73maDJAevEWTbZzCOz3JjGegm34ntYVXA','Excellent service and quality of care. I am from 4 hours away and felt very comfortable. Thank you Dr Ding, rad tech Rick F., nurse Blake H., and Ashley S. I highly recommend this this place.','2020-02-01 16:55:45.412000','2020-02-01 16:55:45.412000',5,'Denton Culpepper','https://lh4.googleusercontent.com/-7Uo5LtmmqSs/AAAAAAAAAAI/AAAAAAAAAAA/BlKx5ke1Xm0/c-rp-mo-br100/photo.jpg','8679688254631342173',14769),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SGaysj8l647VZjV2jK9_eGszVoWGcA2i-8Dc_fXDggEfsRRawtD8yg-6ddmE9IvITs0bc5jLel83M_N3EbuSjWJiYzus','Dr. Bansal, Betty, Lisa, Eda, Liz and all the others, involved were absolutely very professional and extremely fantastic. I came in very sick, they immediately went to work to determine the cause of the infection. After all the necessary tests were completed, the appropriate medication was determined. I had to stay for observation and administration of the IV antibiotic. My whole experience at this site was excellent. I was glad that they where there and available to take care of me. EXCELLENT CARE AND SERVICE.','2016-03-02 05:12:38.964000','2016-03-02 05:12:38.964000',5,'Jean Chynoweth','https://lh3.googleusercontent.com/-2RyqNvSBedI/AAAAAAAAAAI/AAAAAAAAAAA/B0A_fGEZ7ho/c-rp-mo-br100/photo.jpg','17394740196501090048',5276),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SgHK5SePPnxn_bI6L_qMMTHn-KqQ9IRXa79NYQsAq5ImT4M7KGy1zc4P12G94_QG3ba03_WKC6jSG4a-yKEkHKmj5PNo','I had to visit signature care emergency center for my brothers head injury, when I walked in I immediately notice how clean it was. Jesus was very friendly and got us checked in, in under five minutes. Once in the back nurse Alvean was super friendly and saw us immediately. Dr Henderson followed shortly after and made us feel comfortable and like we were going to be properly taken care of. After he was done talking with my brother Tricia took him back for his xrays and what not. Everything was done quickly and when we were waiting for results they kept us updated on how long it should be. 10/10 would recommend','2019-08-16 22:25:34.580000','2019-08-16 22:25:34.580000',5,'William Vaudagna','https://lh5.googleusercontent.com/-QpSKSIuv8bg/AAAAAAAAAAI/AAAAAAAAAAA/77evEUhWBGQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SHIEZ4f4rSfPet7Do71I-mC25Ez_deOun58XBJTDao5A74KypYWh7pAhsbH52GuFKY8c_Cfzo4qEx4OBZ8NS9CGawr5g','Very nice staff, and got the job done.','2019-05-05 06:37:47.108000','2019-05-05 06:37:47.108000',5,'DJ TONYTHEGREAT','https://lh5.googleusercontent.com/-OWZSnkdtDCc/AAAAAAAAAAI/AAAAAAAAAAA/Qci4QVjgJxs/c-rp-mo-br100/photo.jpg','13486358490203335051',1018),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SKEvc3NC0L4td-UMtLrizb-Zxs1gqz7ixi5F7nV270AgHrHAAhGFv7lTtvTlVWveMMkSC2N1e1rtR9Tv-ujIHNeEYRXo','Very satisfied with the service. I came in for a urinary issue, the staff (Samantha, Christine M, Nicole G, Dustin, Ricardo & Dr Singla) were great. I think I had a 2-3 minute wait at the front desk, the nursing staff & radiology tech saw me quickly & gave me information about what they were going to do & why. Dr. Singla was very informative, gave me the information on what was going on with my body plus some other information I didn\'t know. I really appreciate the staff here, the efficiency, kindness & knowledge. I was in & out in about 2 hours which is awesome!','2020-02-16 02:42:54.535000','2020-02-16 02:42:54.535000',5,'Brittany Rose','https://lh5.googleusercontent.com/-QDsBmLewrP4/AAAAAAAAAAI/AAAAAAAAAAA/yj5PFiIAIAI/c-rp-mo-br100/photo.jpg','14567670160750071148',13530),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SNrOz2L7GP6wRCh578GMLPkYZLDzBoqacjE0UM2QYTjQ8VuyQg92D14-tHMUGvjNyga46JcphewkEwTB8xIv-dJRudC8','They are always so good.I love the staff Jorge and Cynthia are friendly Jeff nurse was so caring and help ful not to mention Waldo was excellent and Bright and Dr. Ramerze.Exellent staff...','2020-08-22 18:29:45.105000','2020-08-22 18:29:45.105000',5,'Nicole Bookman','https://lh5.googleusercontent.com/-mef367KfS7A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmntSnwVf2qc62Qsjw28kVzReIBzA/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22988),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SOZppcw_Ed9aNKlp0Rx7fQ1j3OV-gTIcTffHCa2fKlJ4jYwdIqmd4529enn9LZgDFeQQVt8Y3XFuiB86BEXjIZvjVyXs','My daughter and I had an excellent experience when we were there on Friday, August 24, 2019. The doctors and nurses were very attentive. My daughter has always asked A LOT of questions and they answered every single one of them with no hesitation. We were seen by the following:\nLisa P., Manny, Delpha and Tabitha. They were excellent in caring for my daughter while she was there. Thanks!!','2019-08-26 15:45:24.695000','2019-08-26 15:45:24.695000',5,'Kristi Eicher','https://lh5.googleusercontent.com/-ealXaBYkyXc/AAAAAAAAAAI/AAAAAAAAAAA/EkLWzoRuG8U/c-rp-mo-br100/photo.jpg','6521947413723274945',8156),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SQWlEK2qDsyXza9jMZvFVXbNBdXXSL6xr-4u_e0lz9GwVS4xhpoyqZ77nw9sB24Ttg3Z0BCD3D7VA-2rzpXgwzaaJ6B0','I recently visited this location and I have to say I had a great experience. From walking in the front door and being helped by JANET all the way to being seen by the nurse LIA, and being talked to by Dr. Kimball. The whole visit was great. Not to mention they had me in and out in about 30-45 minutes! Great place to go!!','2016-08-16 15:08:13.596000','2016-08-16 15:08:13.596000',5,'Raquel Ramirez','https://lh5.googleusercontent.com/-CTHhlDVSE7E/AAAAAAAAAAI/AAAAAAAAAAA/JSteuRXsT4c/c-rp-mo-br100/photo.jpg','14567670160750071148',1991),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-Svra0Aqt2vzQ9n3x6bUGVKabpskQuv43E26_Nm2ENX6jOqxnxjbdr1E_VgFXf4QVYHgMpQSzQTK76XSFRGA_Euw-N_5c','Very professional staff has provided quick and efficient service. Dr Elsbecker and Nurse Cali took very good care of us and my 4 year old daughter loves going to the doctor because of it! Would definitely recommend this facility to friends and family.','2020-02-24 00:32:26.587000','2020-02-24 00:32:26.587000',5,'D Antoine','https://lh4.googleusercontent.com/-gvRFlJU1qMA/AAAAAAAAAAI/AAAAAAAAAAA/y37MTiLAbhk/c-rp-mo-br100/photo.jpg','2694018788013845459',14211),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-Sx_WAhNGMeZjLd6nrovNYCU6Oa2JxNoyICV49VlCcf2gIbAZ_apnH0zk0-JYFFRPM8SNI3qvDwLGfexW6o234VblSHuA','Staff was excellent and friendly, very efficient with no wait time! Gave me a nice blanket, added some brownie points. Very thorough!','2018-11-16 22:10:44.170000','2018-11-16 22:10:44.170000',5,'Leah Voss','https://lh5.googleusercontent.com/-nTJE539jWBc/AAAAAAAAAAI/AAAAAAAAAAA/eKstTgWG0Fo/c-rp-mo-br100/photo.jpg','16590124370714063921',3647),('AIe9_BFrHfJ2dmEi-Vy2qpFFGM-SxAznNjGMYmWG9c4q3DqMWHPptKJlmLh9v65bS7iTj0Lc7SeWv_gH6gxDID9QsifC0mLrlKzrpxbakweg7s6Ty_okyC4','Great experience fast and easy dalia.r and julesia.h took good care of me got me in and out quick','2020-08-18 15:40:32.093000','2020-08-18 15:40:32.093000',5,'Alberto Nazario','https://lh6.googleusercontent.com/-OhnCONToP6k/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnTYaR9-XTSParQfln_wbQSkvSOzw/c0x00000000-cc-rp/photo.jpg','8918455867446117794',NULL),('AIe9_BFti_U5DbLM9ftEqbg1-wUm2DgarNpVpzEnat7mWoTed2KCY8Q6LdvcBhhKKYo5YzEHeLLefykIRa3-ObdZKBGNDZBp0bzFWfZB3l-mfZUKAQyBO24','Very slow and not very professional, they miss placed my test and kept trying to blame their lack of motivation or general know how on anything available. Seek service elsewhere if you can.','2020-06-24 14:07:55.795000','2020-06-24 14:07:55.795000',2,'fludspyder','https://lh3.googleusercontent.com/a-/AOh14Gji7glWyp8AsppegHDF3O0DXcv6SXdLFPoI6eyl=c0x00000000-cc-rp-ba5','3272657195432704501',21290),('AIe9_BFu3rdicGrPrzdyu4PDXmqM__T7PB7M9i_iT6svxWsZKWWt6aOoP_Bnkv_e1ObuShYlEIU4X7mV3TKy_7PsjKo1gPX8zG8sImnqQ31SF0znZFBfpN4','My experience was very good. The receptionist Keera was great too. Thank you.','2019-09-30 16:56:44.843000','2019-09-30 16:56:44.843000',5,'HERCULES M&MC','https://lh4.googleusercontent.com/-5YrlFkt_7qU/AAAAAAAAAAI/AAAAAAAAAAA/c6Wkn7tOOrs/c-rp-mo-br100/photo.jpg','17394740196501090048',4592),('AIe9_BFu3rdicGrPrzdyu4PDXmqM_2VMLO-sCnp8pn9NsGoOo1U8Uish2W6_glmoC0Nzwav9m_5SPuJ_I6JC7C-weFBYhh2fdKJ4JGUBU0v1HCo6dRXbcDo','By far the best ER experience my wife and I have ever had. My wife had an eye issue and we were seated in waiting room and saw nurse in 3 minutes and doctor in 10. The doctor did the tests 5 minutes later and we were able to leave in under a hour. Everyone was very friendly and reasonable fees too.','2020-02-18 04:27:16.271000','2020-02-18 04:27:16.271000',5,'JJ Hendricks','https://lh6.googleusercontent.com/-RuwMZRIvwwE/AAAAAAAAAAI/AAAAAAAAAAA/8CMH5kETmVU/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',14412),('AIe9_BFu3rdicGrPrzdyu4PDXmqM_3A2m6j9at1pbHul-crRitAnsuQwVQ0d8WrUWR3ox6M6T94iIPpyFmMQTpX9VxfqNUs2AUFPF4SpoJ6oj5_XNemQUuc','Excellent service! Doctor Nguyen took his time to explain everything and answered all my questions.','2019-12-08 07:47:49.012000','2019-12-08 07:47:49.012000',5,'Brenda Cruz','https://lh4.googleusercontent.com/-2e9YjJ7vtNI/AAAAAAAAAAI/AAAAAAAAAAA/HWIOrRqiDrw/c-rp-mo-br100/photo.jpg','17898197009688164559',5370),('AIe9_BFu3rdicGrPrzdyu4PDXmqM_5plN3LcBQgD_fTRpdv0IPIiSmuI9cSgnDhtXotUPmHMM89r_Egbl5uj_9SwFmuigZYGD2jHzSLKW7g6hgVvwueBUvk','Good atmosphere! Loved the attention from everybody! Nice and clean place . everybody very friendly. I highly recommend this place. Channel, Fatima, Elaine and Tanisha all very helpful and caring!','2020-02-24 03:08:58.401000','2020-02-24 03:08:58.401000',5,'Ana Karina Rodriguez','https://lh6.googleusercontent.com/-wd0DXbKXND8/AAAAAAAAAAI/AAAAAAAAAAA/dLqrQtxlAYM/c-rp-mo-br100/photo.jpg','17898197009688164559',14126),('AIe9_BFu3rdicGrPrzdyu4PDXmqM_AZNvagJZzdoX4S8YaPGQL8YZUNUjvK9uwqMz_TvtTzl1DC5uIJaae_jn5s0qG3n7AJ_O4UCppYwk-7B2KgcX9NMzC8',NULL,'2020-03-05 20:53:39.066000','2020-03-05 20:53:39.066000',5,'Robert Wright','https://lh4.googleusercontent.com/-QaNui5b6ajA/AAAAAAAAAAI/AAAAAAAAAAA/AidVmS-pRD8/c-rp-mo-br100/photo.jpg','16590124370714063921',13805),('AIe9_BFu3rdicGrPrzdyu4PDXmqM_DIUXq958zEkom_wEb_CR4BuETHmvD-UfQSCIKCuoUOtnm39io1za7ntmI5K4WJ1OQq_hUPbG7ncQbZQxdtFxczQXII','Great Service everytime! Anthony the RN was so helpful and compassionate and truly made me feel at ease. DR. Patel was very informative and answered all my questions to insure a speedy recovery. Kathleen was so nice and gentle while taking my Xray. Not only did they make sure I was ok but they also inform me of everything I needed to know about my health issues and what to expect during my recovery. I can go on and on about how wonderful they took care of me when I was there. A GREAT PLACE and GREAT PEOPLE WHO TRULY CARE thanks guys for everything!','2018-12-18 02:45:26.859000','2018-12-18 02:45:26.859000',5,'Dominique Small','https://lh3.googleusercontent.com/-Lr_aoeS5j-I/AAAAAAAAAAI/AAAAAAAAAAA/pxg2dZEF5D8/c-rp-mo-br100/photo.jpg','16590124370714063921',3607),('AIe9_BFu3rdicGrPrzdyu4PDXmqM_yGlJDHlPp1U9d300oeLA2mckc1Nl1Y_g92z6OMorSfQmR_n8QzlgXODUT3Mzzy8SPEhPkDZMxwjgsRtWe8frjC0tFY','The staff was great!','2019-02-22 22:29:40.635000','2019-02-22 22:29:40.635000',5,'Dana Hancock','https://lh4.googleusercontent.com/-qivGLflvhRU/AAAAAAAAAAI/AAAAAAAAAAA/nbSH6TRgvzs/c-rp-mo-br100/photo.jpg','3272657195432704501',7005),('AIe9_BFu3rdicGrPrzdyu4PDXmqM_zIafEq1YhfANxIa7k2K4BxxhI9TPCUSA0yJZRrMYWfaUMhExW_z0cUB3hsIVGLvG_CI1TzXucS0Tzl-kve_IbZlVTg','Great and fast no waiting time 👍👍👍👍','2019-04-02 12:15:53.700000','2019-04-02 12:15:53.700000',5,'Al Miller','https://lh4.googleusercontent.com/-XspMfxtKZf0/AAAAAAAAAAI/AAAAAAAAAAA/lBorFrW2-gc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqM-2pTBcTzLtjL89CKZ9Q__x2dWOOh3G5gndTiftAbS1VE8ABlPnfL3-VTv8vcA3Tj-kPEOIV5Wk89pNjVGCLUa-ql1-8',NULL,'2019-03-31 19:55:10.707000','2019-03-31 19:55:10.707000',5,'Carson Mackie','https://lh6.googleusercontent.com/-2wx2otTt7O8/AAAAAAAAAAI/AAAAAAAAAAA/cyf_UHYxYQw/c-rp-mo-br100/photo.jpg','16590124370714063921',3469),('AIe9_BFu3rdicGrPrzdyu4PDXmqM-9anrnhe3RNrab2ZJxVkhajPrPk31kwxmWch6JeeUEiKSd3kl1HjR_B2MSk9vgwxa-z35E9OvR4S1O_PdsVk8S9DoAI',NULL,'2020-03-11 23:27:44.708000','2020-03-11 23:27:44.708000',5,'Isalmis Jacomino Carmenate','https://lh5.googleusercontent.com/-TWtvY0o64Zs/AAAAAAAAAAI/AAAAAAAAAAA/AgaE3fRHgfY/c-rp-mo-br100/photo.jpg','6521947413723274945',21172),('AIe9_BFu3rdicGrPrzdyu4PDXmqM-bNAT6RggNdsccvwiupBmlHy2ZchLoL1KdxNkBqGOuc6K0vR_ccyQJEnxgy7j_4dgKcvFBsOJLVsMUjv3cwYfxiphwM','Great experience at the Signature Care! We came in at 11:00pm on a Saturday and received remarkable service. Each staff member was extremely attentive and did everything they could to help us. Super friendly staff members that make you feel comfortable throughout your time spent here. They never leave you waiting','2018-09-30 14:10:50.034000','2018-09-30 14:10:50.034000',5,'Kirsten Briegel','https://lh3.googleusercontent.com/-y-Pan-Lmr98/AAAAAAAAAAI/AAAAAAAAAAA/gU1X1l_zqWQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1483),('AIe9_BFu3rdicGrPrzdyu4PDXmqM-UJLRzbO-k0-f5bhgBX-9On23S5n4WSwh617QDkHzbkoQya1DfrZs8NdU3s4uve2rvKk1QZ7ZnPnqNzddqHSlHJxKK0','Jose Corey nurse. Radiology tech Allison .DR baker','2019-06-25 23:48:53.146000','2019-06-25 23:48:53.146000',5,'germaine jones','https://lh4.googleusercontent.com/-ILlQlwOyTmA/AAAAAAAAAAI/AAAAAAAAAAA/XJk4FlFd13A/c-rp-mo-br100/photo.jpg','13486358490203335051',925),('AIe9_BFu3rdicGrPrzdyu4PDXmqM-xstNCrI_rhc4CVa_FLSAxuO8_4AEwv4jpuzOuDgu4oz12uj4iSiChYRD7_nnubW_3Umirj78Y54y-SWZNHOX97Oux8','Such a great experience fast and efficient. Leslie was very nice and professional. Customer service is excellent.','2019-04-16 14:10:45.146000','2019-04-16 14:10:45.146000',5,'Desire Davis','https://lh4.googleusercontent.com/-9-lfSwEmvXw/AAAAAAAAAAI/AAAAAAAAAAA/3SrcOUVWjmY/c-rp-mo-br100/photo.jpg','12541597562633926366',516),('AIe9_BFu3rdicGrPrzdyu4PDXmqM-znGgdWepoC9h6r7yBOALLuKIhF99DjvAKwWDTDZCHsjy1H-h0jL0Ghsuz-csUu2t9HXEaCu5OwrtsxgeR59vh471m4','Clean facility, friendly staff, and fast care. Would definitely recommend signature care to anyone because the doctors here really care.','2019-05-10 20:04:53.954000','2019-05-10 20:04:53.954000',5,'Patience Barnes','https://lh5.googleusercontent.com/-XRLwXIueBpI/AAAAAAAAAAI/AAAAAAAAAAA/35ZExofhqYE/c-rp-mo-br100/photo.jpg','2694018788013845459',6160),('AIe9_BFu3rdicGrPrzdyu4PDXmqM0_i1AcJyoo740NZgV8c-Jqxjg8hEHl_nUceL2NLrVgg42-q2oa6qVmsUS3iFl7UgQUyuefm5aJr_zR2fdNfnej048nc','I was seen on 7/15/20. I am a nurse myself and knew that with the symptoms I was experiencing I would need a Covid test but I also was concerned that I had developed an infection in my Spinal Stimulator. Due to my symptoms, I was taken back very quickly. It was determined through testing that I did in fact have a serious infection in my stimulator. The staff and providers here were amazing. They took excellent care of me and got me stabilized. It took several hours to find a hospital to transfer me to due to hospitals being full (thanks to Covid) as well as needing a specialist that could deal with my situation. They continued to take great care of me and keep me comfortable while diligently looking for a bed for me. I am now on the mend and just wanted to say thank you so much for you excellent care! Would recommend this place 100%!','2020-07-20 15:29:14.712000','2020-07-20 15:29:14.712000',5,'Vanessa Corinealdi','https://lh3.googleusercontent.com/a-/AOh14GhKYaHWLTPcObKjsBh3oSAZr48k_i58sRl_At09=c0x00000000-cc-rp','2694018788013845459',22119),('AIe9_BFu3rdicGrPrzdyu4PDXmqM0IbATg2J4E03XZSOrDbUX14ejrfIw6O-Gw7r6MqU33D0ntKS3Pnc1gpOgCieT1hyefSX4BhQH4AJ7dYSQhWYK344Plk','I loved Dr. PATEL, Nurse Sarah G. and Tanisha. They all did a great job tonight with my mom. Very professional and kind.','2019-11-08 05:32:05.105000','2019-11-08 05:32:05.105000',5,'Stacey Lexa','https://lh4.googleusercontent.com/-iJO1xddsxiA/AAAAAAAAAAI/AAAAAAAAAAA/Xqn1hXR6ALU/c-rp-mo-br100/photo.jpg','17898197009688164559',5454),('AIe9_BFu3rdicGrPrzdyu4PDXmqM0l6mBeXUcoi3CR6feS1T57iiO_WVujtySOyUFVuoe3JWP2TP8SyQVbyseJH4bmPoOq89goC0JvcMOmqqCe5JFSOmAoA','Dr.Vakey, Nurse Jacob, and Tech. J.R were great! Very professional and very friendly. Liz at the registration desk helped me immensely.','2019-09-24 17:21:04.781000','2019-09-24 17:21:04.781000',5,'James Stretcher','https://lh3.googleusercontent.com/-By7TNu1xUpg/AAAAAAAAAAI/AAAAAAAAAAA/jzVKUdXDw7g/c-rp-mo-br100/photo.jpg','16590124370714063921',3174),('AIe9_BFu3rdicGrPrzdyu4PDXmqM0ryEu-1Pubbe7TteixStEqrSeqHUeAWNTW7YqbWs4jGILPnH5CXv5eXPZz-g9BiURCVyiU5c4U8ipgSTfps6H7ugAjU','Very poor service','2018-09-06 20:04:38.305000','2018-09-06 20:04:38.305000',1,'Darrel Cotner','https://lh5.googleusercontent.com/-gXbZfund3os/AAAAAAAAAAI/AAAAAAAAAAA/JnOg44ztzdU/c-rp-mo-br100/photo.jpg','14904078213800803294',2217),('AIe9_BFu3rdicGrPrzdyu4PDXmqM0s9xSvtKdvqmb9t7RAEXtLZTUodL1cUQA7itJJlsQhh3Ej5twhTdu9bcWRtRzLuf32JOh-LqqWMLV60Bm9-2-P2rQMY','Went to Signature after an eye infection that was causing a lot of swelling. Note this place is an ER and not urgent care, which may matter to you. The person handling registration, Dyveliz, was fast and helpful. Saw a doctor quickly who explained the issue. Overall experience was very good.','2017-05-04 13:42:44.002000','2017-05-04 13:23:01.832000',5,'Joshua Hanophy','https://lh6.googleusercontent.com/-0nwrBacZc6w/AAAAAAAAAAI/AAAAAAAAAAA/u9CeQMyRkOw/c-rp-mo-br100/photo.jpg','16590124370714063921',3993),('AIe9_BFu3rdicGrPrzdyu4PDXmqM0X1RIftZMh32EyB9sALiqR3Yd7CmzNABuu3NlivW8guhsLAZ_y5HGc1yRiQahAx-GPgmOx9RvSmgwjKh8-MQt_xb3xg','I took my daughter to Neighbors for a stomach virus. The next day, the doctor called to check up on her. I highly recommend this E.R.!!','2017-03-12 00:24:57.305000','2017-03-12 00:24:57.305000',5,'Dorrian Wallace','https://lh6.googleusercontent.com/-rVXkKQZun0g/AAAAAAAAAAI/AAAAAAAAAAA/jTLPqBTBuG8/c-rp-mo-br100/photo.jpg','6521947413723274945',8356),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1GoyQR_iUJk7Rm5WpG1MufFUA22SaMjBk5Byazz45j5cQmlPyGIfYP39VBmFDAQFCPOluZY3MyNbhY7utLZEeGYd-xc','Very clean place with professional staff. Denise helped me with all the paper work letting me see the doctor faster.','2020-08-09 13:21:07.415000','2020-08-09 13:21:07.415000',5,'Jonathan Harris','https://lh3.googleusercontent.com/a-/AOh14Gishwtxnr6xmE9gCCemNvRnQ6080OCwMvvonHji=c0x00000000-cc-rp','14748677429039074158',22508),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1hIhs5O61_6mrp4Ar9y1W6TwWkss7xid_oKgqIEn-7wtWhtop4e4Tpfu4AzpELbUAy6HBUh4XW67Du499QxYrqpVFq8','The entire experience was so positive. There was no wait time, ALL of the staff were very kind and caring. I will be recommending Signature Care Emergency Center to all my friends and family. Thanks SCEC!','2020-01-13 01:07:11.048000','2020-01-13 01:07:11.048000',5,'Torchie Beatty','https://lh3.googleusercontent.com/-jBXP0lDqh9A/AAAAAAAAAAI/AAAAAAAAAAA/3AMfSlwC1CM/c-rp-mo-br100/photo.jpg','3272657195432704501',9558),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1iEhJzkbNcuYADnmfNVCXfV3uCYR5w7mPeguXnR8WRhia0JsdI3BIvdxZBEPT7WV1Y4XkDKY5lilxqV80IZBrIZzqUw','Dr souman, miss cherish, miss Agnes , lisa ,shay, dion and keaire were excellent and helped a lot','2018-10-26 03:19:26.411000','2018-10-26 03:19:26.411000',5,'Brittni French','https://lh5.googleusercontent.com/-6z7O21ikf4E/AAAAAAAAAAI/AAAAAAAAAAA/FxZUmsxnXYg/c-rp-mo-br100/photo.jpg','3511292162159714121',7566),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1mLPiKg65z8BT78Vi7u7dzysLk5zjqA_rr4z9ks0Ow-zlyx2UTDJaLKxLip_KP0NyHQPM8SNOO_1fr1_laOQO3gg_d4',NULL,'2020-02-06 21:07:01.919000','2020-02-06 21:07:01.919000',5,'Owen Robinson','https://lh5.googleusercontent.com/-rMr5ehscYL4/AAAAAAAAAAI/AAAAAAAAAAA/jnvcOT4vIK0/c-rp-mo-br100/photo.jpg','16590124370714063921',13876),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1n7fpJIMxDlx89pOd2JJ1OI3WHo1YE4Lb3LT1NMkCmGL00Gk-z_nxETVhYy2adeG_9kQgW2iHie8TL8vGD4Xck8CflM','I have visited this ER a couple of times and I love the staff and doctors. Dr Faig was on this last visit when I had intense pain. Nurses Irving and Marisa are so professional and friendly. Their compassion they show for their patients is above a five star. They make sure you have plenty of warm blankets to make you comfortable as possible. They are the best at at what they do. Dr Faig makes sure he finds out what is wrong and gives you the treatment needed if it can be done at home and always ask if you feel ok. Nice personality and easy to talk to. \nAshley is a great ER tech and the front registration Ana and Kandi are friendly and make you feel you came to the right place. When you are in pain and worried the drs and entire staff makes you feel better.','2020-08-07 08:09:51.607000','2020-08-07 08:09:51.607000',5,'Jean Blasingame','https://lh6.googleusercontent.com/-rBIKhBaNi_A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmlqLwnIkEbZbPxvvXa7WToclTpbg/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21790),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1pvu0zMKETNw85zwHoShs74msDSzSCL3Zdco_lus2FT1JibxvSxJ6Saolq3yKXXNiESJi4o53FGSG8WXPFUhwRlvG2M',NULL,'2018-02-15 03:30:54.331000','2018-02-15 03:30:54.331000',5,'Lydia Nichols','https://lh3.googleusercontent.com/-lHnt0He9uQE/AAAAAAAAAAI/AAAAAAAAAAA/kLvitx-d260/c-rp-mo-br100/photo.jpg','16891069708558046635',4510),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1rEKJJ9cCvGJXZFbECsUIqiu4-j4EBarjQ4zHIr6lkKlfzArp3ySUI98EDCzFUHjNp6Q6A3LLGlk--jEEsGliz49uyk','Got in a car accident and went here afterwards, staff was great! Receptionist, Rebecca, was super quick and friendly. Remington was the nurse I saw, he made me feel very comfortable about everything, Doctor Frausto was the same way. They all had a very good attitude and valued my time as a patient. The radiology tech Stephanie was very helpful and let me know exactly what was going on at all times. I hope I do not have another emergency but I was referred to go here by a friend and I can certainly see why! Made my bad day less terrible haha','2019-10-25 02:40:04.074000','2019-10-25 02:40:04.074000',5,'Julia Delgado','https://lh6.googleusercontent.com/-u2rZ-0FGnoQ/AAAAAAAAAAI/AAAAAAAAAAA/aMDlz-xkneM/c-rp-mo-br100/photo.jpg','16590124370714063921',3124),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1tDAd8a35X-Yz2z25ho5DRhItwCJNBMJtrt1V2MiyS6_i0uBZJsmkEmRqR91Uj-7Ud21lrCqvEwil8sUrn-1cZYvQe0',NULL,'2020-07-21 03:56:34.820000','2020-07-21 03:56:34.820000',5,'Virgil Franks','https://lh4.googleusercontent.com/-YruZ7Ve_jBI/AAAAAAAAAAI/AAAAAAAAAAA/8e-tGJUIk2w/c-rp-mo-br100/photo.jpg','14748677429039074158',21649),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1TYs2J7SPp3uyEzsjL9Re0Xig2clpLUoIP_g-hXpAfYoMe2XpkSua8B8ZYBNEMGIdA0dVwPJl51uEbBjXdXUFkn3GZs','Drove up, staff was very professional and polite. Once you were done with the procedure they told you where to park and all you had to do is wait there until they knocked on your window. Overall good experience with all the staff and Dr.','2020-07-20 05:11:57.513000','2020-07-20 05:11:57.513000',5,'Sam Barreno','https://lh4.googleusercontent.com/-qSbCRuYFRwU/AAAAAAAAAAI/AAAAAAAAAAA/bDs6wxZyAvE/c-rp-mo-br100/photo.jpg','6521947413723274945',22879),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1u6O-Ir6FeKFd1SfPDv4SQueGq5bEHHVH0MvFZ2FqCJiBlFie3VE88-fRYzk8zUcKmmgL8DMismswsRqGihNG3vnX0M','I was here last week because I was having chest pains and needed to go to a emergency room as soon as possible, and I am glad I did. Everyone, including the front staff, Dr. Ding, Ms. Nurse, Really buff but kind Person taking the EKG and x-ray was kind, professional, and welcoming. Thank you. I appreciated the follow-up call/voicemail also. This location would be my first choice if I am in need of emergency services in the area.\nEdit: Heated blankets!','2019-05-08 13:51:01.289000','2019-05-08 13:51:01.289000',5,'Daniel Kwak','https://lh3.googleusercontent.com/-gedt1lH4lxE/AAAAAAAAAAI/AAAAAAAAAAA/iApKaAsSA8Q/c-rp-mo-br100/photo.jpg','14904078213800803294',2139),('AIe9_BFu3rdicGrPrzdyu4PDXmqM1VPq64wU6nmHTLrSUlbHB-pQbdO78TsAl8CAwAap2xohdzFkOVBibsXyHpcpdIzbFOsAz1yLVC56JPUjLvni4KqGmrI','Very clean and very friendly people in the office. Got us in very quick with no wait. Anthony and Dr. Baker were great and made us laugh the whole time we were here. Had a very good experience.','2018-12-12 04:23:48.128000','2018-12-12 04:23:48.128000',5,'Hailey Hearn','https://lh6.googleusercontent.com/-fYn1TGLCgAY/AAAAAAAAAAI/AAAAAAAAAAA/Q0ariBc7Hu0/c-rp-mo-br100/photo.jpg','16590124370714063921',3610),('AIe9_BFu3rdicGrPrzdyu4PDXmqM20XF9e-JSOXqhKLNK8AVAIDtoVPiC9hp9OCBl6c8N8a91Y5VDl2iafZ7RAKKuY6Xx5JOzOqIcTeRpi9XG3P011odV38','This was a very professional and quick center. Everyone had smiles and i felt like the staff wanted to be there! Huge thanks to Dee, Gina and Dr. Faig!','2018-12-19 15:43:07.219000','2018-12-19 15:43:07.219000',5,'andrew seifert','https://lh3.googleusercontent.com/-LTa3Z9JHa5U/AAAAAAAAAAI/AAAAAAAAAAA/aOZSo5a7DBU/c-rp-mo-br100/photo.jpg','3511292162159714121',7544),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2F5ewyKBDCChCtaeZR3NV9J8_ZQOov57f3CSgYOmUlwODP4xdKRuMYq6rhZA_u-S87JzmbJYD4_a4r-SOJBzFJh4abI','(Translated by Google) Dr.Zheng\nAmy\nCountries, RN\nJerin\n\n(Original)\nDr.Zheng\nAmy \nPaíses, RN\nJerin','2019-07-05 21:43:29.730000','2019-07-05 21:43:29.730000',5,'Karen Guerrero','https://lh6.googleusercontent.com/-dHsdWsOCXoc/AAAAAAAAAAI/AAAAAAAAAAA/k9zb3JU3XR8/c-rp-mo-br100/photo.jpg','8918455867446117794',9098),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2HB7tyG35YS-ALVLWS2FltjEfrwkmMx3E_lHsLTnCo74tbDmKGTaDJl70KF7xn-hTkEHuhUaG6h3OKV2mzHUUCWsVtE','The service was very nice everyone was very helpful and Doctor Golla was great ,Keera G and nurse staff Jesse and Selina all very welcoming and made sure I was taken real good care of.','2019-09-25 14:37:59.891000','2019-09-25 14:37:59.891000',5,'Nicole Bookman','https://lh4.googleusercontent.com/-SdGgG2tFHhw/AAAAAAAAAAI/AAAAAAAAAAA/1xJsxGYAgSs/c-rp-mo-br100/photo.jpg','17394740196501090048',4595),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2I-kUHk2_l9d0-mFwZkVc3xM7ObDc2DoQP4GNKlLPLSvVpeDwPkaToGZPqYOvs0Rond_iXE3l1rKgMqnf9hf_c4ntz8','Friendly and knowledgeable staffs, they take very good care of me. They\'re short but completely clear on your instruction on what they want their patient to do. my experience here is very positive.','2019-04-19 00:14:09.526000','2019-04-19 00:14:09.526000',5,'Pan Pham','https://lh3.googleusercontent.com/-OF_ZCL3lZ7E/AAAAAAAAAAI/AAAAAAAAAAA/gb6FgUA2DjA/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4691),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2iD2v0rRFZLP_O4Dce8iQcyfRqAeuzWUlwCAhBw0GSH5b3MU4VS9RBUKu9bvqxsK8D82aJYdeWFE1OcV04U8UdTbxhM','Absolutely terrible! I went in to receive treatment for a possible ear infection. I do not have health insurance right now and cannot afford to pay upfront to go to an urgent care. I asked the lady at the front desk if I could be billed for the visit and she said yes. After seeing the doctor they told me I will have to pay upfront to receive a doctors note and prescription. This is a trying time for all of us right now and I cannot believe I was turned away from treatment because I was unable to pay $175. Ridiculous. Shame on SignatureCare!','2020-08-11 16:57:21.584000','2020-08-11 16:57:21.584000',1,'It Is What It Is','https://lh3.googleusercontent.com/a-/AOh14GjgwS2pedhuTYuoxjKuRLelfKACqPtJBBdcAkesFQ=c0x00000000-cc-rp','14567670160750071148',23015),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2IWKxmvvE_AZeLyBGhAYuZo-ZhrM4aXTupQuZiPOY7XzBQ_q8hgQ2-Q6fVBeFV3AlnetkXso4gXbB4wYh71x73dTwkI',NULL,'2019-09-11 02:53:05.118000','2019-09-11 02:53:05.118000',5,'Obie Harmon','https://lh4.googleusercontent.com/-RLYP4etV2PI/AAAAAAAAAAI/AAAAAAAAAAA/gZZWaZ7wpBk/c-rp-mo-br100/photo.jpg','13486358490203335051',836),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2RP2VE--GNGR9XapswwepVdd4F59paVCRUwpqA3x9lvM2rXTQmUJEJtTjEz4q-3FM6M8fHDaIBkvmXLNph0an76fjeU','When asked to provide my insurance information for their pre-employment drug screen, I refused. Upon refusal and stating “I have never had to give my insurance information for pre-employment drug screen”, they became upset and stated they obtain this info from EVERYONE and that all employees have their insurance information on file. I still refused And requested they appoint me as “cash pay” and an employee decided to walk to the back of the office and yell “we have someone for employment with us now who is lying”. I called their HR, who then called the MD on site and I could hear her say that I was unpleasant which was definitely not the case. Just leery as to why an future employer would as for my insurance information for their requested drug screen. I then was contacted by HR and was questioned about my COVID positive results, which by the way, I had NEVER done. The recruiter then stated she would call me to discuss what happened, but never received a phone call. I now had a text from yet another administration personnel and when given my decision on this company, texted “ok, not interested”. I get the feeling that this company is not at all what aligns with my belief on how people should be treated.','2020-06-24 15:38:36.184000','2020-06-24 15:38:36.184000',1,'V Torres','https://lh3.googleusercontent.com/a-/AOh14GgwRp9SuhFPVLGkL1_nyJHYXepL-pSAx_jy6Nyw=c0x00000000-cc-rp','16891069708558046635',21289),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2rqTWRY7zEE-4dAGqlWeAPYgE6Hk3QbPtPJ1bPK_AXpr-jE3PdPlo8HP35CuQ3FFAFKVWypxW44cTbcEnTSFI8bNVYE','Great experience, Lorena T, Amanda C , Rachel and Dr.Harjai were all very helpful.','2020-08-08 19:03:49.665000','2020-08-08 19:03:49.665000',5,'Veronica Banuelos','https://lh4.googleusercontent.com/-KwwIE8ZAq7g/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclSz5OBXH-8yojicUEjBvO3phMGHw/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21978),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2v_PrjpCGqP8Z8R8FNgSlKsVwOWHY6w6ZuMZnIUYFIcoHzgfS8RLCGfgDcj656__hJoTsocqkQ_MLIqgN3HQaD3rOsg','Well I posted a good review back on January 16 when I took my husband with a bad throat infection.Now I regret that review I was soo ignorant and too nice after all money I have pent It was a waste of time and money.\nI paid $300 for 1 pill Motrin and 1 Shot supposely Steroids. and the only prescription was Amoxilin, well we already have those at home. Dr Anders all he did was open mouth and say ahhh. \nI regret the Positive Great Review since he never got better the following Monday I took him to Clinica Hispana OMG they were awesome they cared they talk they diagnosed, Gave him 3 shots and 3 follow up shots and only 5 strong antibiotics pills. He was a good by the end of the week.\nSignature Care oviously is either Racist or they didnt care to take care of some gay couple. Never again','2020-02-11 21:18:40.240000','2020-02-11 21:18:40.240000',1,'Javier Ronquillo','https://lh6.googleusercontent.com/-sYkgyKO9qFw/AAAAAAAAAAI/AAAAAAAAAAA/u4rvLwSVlE8/c-rp-mo-br100/photo.jpg','6521947413723274945',14583),('AIe9_BFu3rdicGrPrzdyu4PDXmqM2XOyX4Kbo9rXEDzRs4J_dcVqpqjMtmNlvMsi6n2UTS40dnmlyjmSLceQCL3gKPManet-V3HROxM7YtXXCH2tKe1iOaQ','Very Prompt..and Knowledgeable staff...','2017-08-21 18:58:59.438000','2017-08-21 18:58:59.438000',5,'Sexythickums4u 2have','https://lh4.googleusercontent.com/-jSVobT27I_8/AAAAAAAAAAI/AAAAAAAAAAA/EckvNzxevhU/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7794),('AIe9_BFu3rdicGrPrzdyu4PDXmqM32E3qu6JbMS5a_cqV-LThQP9Y0QCRDI6wkzXu2wImpr1u_ZezGSuYqraDZEUz0McxQliAg4_mC8DsIsK8wJ32CLavqs','This facility is very clean and the staff members are friendly and caring. While i was there, they were very attentive to me and made sure I was accommodated. I definitely recommend them.','2018-11-27 17:43:40.316000','2018-11-27 17:43:40.316000',4,'Lupita Hernandez','https://lh4.googleusercontent.com/-kqcjkrRwWcM/AAAAAAAAAAI/AAAAAAAAAAA/POUWLx51lxc/c-rp-mo-br100/photo.jpg','17394740196501090048',4758),('AIe9_BFu3rdicGrPrzdyu4PDXmqM3AIn6zMTgljXMLQCv_4mqmFeyDhrHV25ASLqMpa3Sw_6BXKWy87PeXEsujmIXzw3M21D9wyk9K5FZvDuKpSH-gj4eec','As a mom of 3 boys we visit these places more often then I’d like to admit! This time was for me! I’m very clumsy! This was by far the BEST ER I’ve been too ever! Receptionist were sweet and friendly! Kat the nurse was fantastic! Very kind and hospitable! Dr Jones was caring and had great bedside manner! This place was great. Hoping I won’t return anytime soon but if I do we’ll definitely be coming back here!!','2020-02-05 16:43:38.969000','2020-02-05 16:43:38.969000',5,'TX_Chica','https://lh6.googleusercontent.com/-XRf9Z2FUxtc/AAAAAAAAAAI/AAAAAAAAAAA/QzPEcruFU_M/c-rp-mo-br100/photo.jpg','2694018788013845459',14251),('AIe9_BFu3rdicGrPrzdyu4PDXmqM3cRA64jle8hB4hPmbXYGHE0zX61RmhN53RC0zW__lYoG5lsq1Ui88oCeQN-mopP7Qk2xtC77oDFXGv7KHB93f9EIfLU','Very fast and efficient. Cody and Sam did a great job. Would highly recommend.','2020-07-28 16:36:51.076000','2020-07-28 16:36:51.076000',5,'Joe Thompson','https://lh6.googleusercontent.com/-2Tpz2t7KiAw/AAAAAAAAAAI/AAAAAAAAAAA/t4qZ47ed9ck/c-rp-mo-br100/photo.jpg','2077061009497551125',22794),('AIe9_BFu3rdicGrPrzdyu4PDXmqM3fGwfMYZOqZShQm3jAfl4E-SDFGkTCPa38MXUT0wkeREBsf2oJS_IBv_eLeDpsQwQa8u9AuGIItpDidzVkaafArr-Ao',NULL,'2019-03-31 22:27:20.907000','2019-03-31 22:27:20.907000',5,'Lois Treadway','https://lh6.googleusercontent.com/-xDmeKyZDNNw/AAAAAAAAAAI/AAAAAAAAAAA/K53cUnTnHNo/c-rp-mo-br100/photo.jpg','14904078213800803294',2152),('AIe9_BFu3rdicGrPrzdyu4PDXmqM3hAwlN3bsS_pPtnm8iMlJLvwcFzBQ9V29h0C1qO_kmuegrmn_DG5vyQ-8uguic9xEZvFan7g45dwJ3du1Zia5B1DSUE','Ashley Burton was such a delight to deal with. I definitely recommend SignatureCare ER!','2019-02-18 15:19:00.482000','2019-02-18 15:19:00.482000',5,'Jennifer Ramos','https://lh4.googleusercontent.com/-_JMQ0IZ_VTs/AAAAAAAAAAI/AAAAAAAAAAA/9VQyJ4HRZMg/c-rp-mo-br100/photo.jpg','8626688543755174284',8561),('AIe9_BFu3rdicGrPrzdyu4PDXmqM3pLX4UzYu3NxJhU1lQIGhApuWuFcGO_ZdWaUbYD7d0IHBTcIg-iMVgo1tFk6lIasuu-mBRlBv1_NEF2RecD9cvvYNMw','I usually avoid doctors because i feel like they dont care about the patient, but Dr Sylvester was just amazing and so helpful. ','2017-01-16 20:12:04.025000','2017-01-16 20:12:04.025000',5,'Mirtha Uriarte','https://lh5.googleusercontent.com/-ykXUkYYqdcs/AAAAAAAAAAI/AAAAAAAAAAA/_7fyn2_xJDA/c-rp-mo-br100/photo.jpg','14567670160750071148',1914),('AIe9_BFu3rdicGrPrzdyu4PDXmqM3QrJkLwJ2GaTyYN8RGr9bOQNej2Mq8NPZ4lTs09RPEAgBWkveN18uoVP3-3Bor_Gw4fj7cbVLWv2vyRHMs0HwhF-o8g','Excellent patient care! Staff went above and beyond to make you comfortable. OMG the warm blankets. Doctors did a thorough evaluation, very attentive to your needs. Even between shifts (thank you to eveyone involved in my care) staff didnt miss a beat and provided their best. When they mention minimal wait time (<10mins), its just to register/sign in. Thanks again to Dr. Estevez, my nurses Chris, tech. Brandon W. and Bryan D.. Feeling a lot better!!','2020-01-22 18:59:02.992000','2020-01-22 18:59:02.992000',5,'Samantha Santacruz','https://lh5.googleusercontent.com/-VL4QAvlZheo/AAAAAAAAAAI/AAAAAAAAAAA/1XVMrTwFojo/c-rp-mo-br100/photo.jpg','14567670160750071148',10144),('AIe9_BFu3rdicGrPrzdyu4PDXmqM3qvSOiu4OcEwA9IFuh7YeytEy1DyITzZt_JHp9cHuQInWyQW21tOopLAxcz57TTQTPnv4oI_MtfkHYRlnX-DKzgwo4w','Service was extremely fast and patient. Stephanie was amazing and super friendly, she offered drinks and made me feel very comfortable. Ybarra, Rolando, and Natalia was awesome as well and as a team all together i would definitely come again if anything was to happen. A+++++++++ !!!!!!!','2019-02-09 04:12:40.537000','2019-02-09 04:12:40.537000',5,'Teaira Lavigne','https://lh6.googleusercontent.com/-mWOmffUbf-M/AAAAAAAAAAI/AAAAAAAAAAA/rEtI9NjBytY/c-rp-mo-br100/photo.jpg','8679688254631342173',8876),('AIe9_BFu3rdicGrPrzdyu4PDXmqM3R8JYpGKJ8zhBjC3DkP25zkeQU1FicETa3wU-K8DAGvrXmvXhiBjmr8D498Iij66krZFeInoHlz42BzMeyC45-oG5vw','Great experience! Great staff, wonderful doctors!','2018-12-15 20:21:23.750000','2018-12-15 20:21:23.750000',5,'Lisa Evans','https://lh3.googleusercontent.com/-iHQ1yy8l4tU/AAAAAAAAAAI/AAAAAAAAAAA/9hqm-vf_7Ok/c-rp-mo-br100/photo.jpg','16590124370714063921',3609),('AIe9_BFu3rdicGrPrzdyu4PDXmqM47WYoZNlZwxQ8o5jPUQ7MbV-xITkYFQLtKzmSoAPNHZxaws0_R232Qu4-LxY-xVlsJNmcyKhyjl3UuxLCz74btoi-6k','Short wait time!\nStaff makes you feel like you are V.I.P \nEverything is explained very well \nI wish I could make this Signature Care my P.C.P\nDon\'t think twice to try this place out they will take care of you.','2016-10-13 00:30:28.749000','2016-10-13 00:30:28.749000',5,'Pablo Alvarez','https://lh3.googleusercontent.com/-YkcvAz6VkxQ/AAAAAAAAAAI/AAAAAAAAAAA/MaBjLI1YJJ0/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1958),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4dNBUID252rZ5gXnQ3XrC4LcUi-U9r_I1o58ekOqovptCqNcQH9kFAsydDydNDNexjkEOw_EQyII8nvSVmMP9YZOlm8','Everyone was so nice they took great care of me in a timely manner','2020-02-26 02:00:56.753000','2020-02-26 02:00:56.753000',5,'Justin Stevenson','https://lh4.googleusercontent.com/-ZXNe1oDJz1w/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnI8o6VGnNZ_JEdilnyCJJ9dw2y4A/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21194),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4eOqMSv3O0xXn-puF8zMZ4jlt0b9BshsaHpQmmutYcdQaTNcgLVs4OlsCdGupo3kMSI8Le_LYbSgVge0T6QWJ8DdZY4','Both visits here were 5 star quality. One was a morning visit and the other was a late night one, both for different eye issues, months apart. Each time was under a 5 minute wait from the time we walked in until we were taken to a room.\n\nFrom start to finish each member of this organization was so friendly and pleasant. Their tiered pricing system is well balanced and generally affordable for those of us without insurance. I would highly recommend anyone to come here if you\'d like to avoid dealing with a general hospital.','2018-04-22 23:56:53.820000','2018-04-22 23:56:53.820000',5,'Daniel Aguilar','https://lh6.googleusercontent.com/-VnQWKI4NlDw/AAAAAAAAAAI/AAAAAAAAAAA/9mzHYBMfKDc/c-rp-mo-ba4-br100/photo.jpg','16891069708558046635',4485),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4fYH9VLaKX4pJ2noqF4gQX1DvYZoWK7YsHenyNGC-RdHpReC2pO0ld_d0lVOtQiIehVUc21xUWNH4HJPE2Ofp2qShUI','I was seen back in August for a esophagitis and extreme dehydration and literally felt like I was dying… I walked into this place three hours before I had to fly back to San Diego and these guys were absolutely amazing. The attention they gave me was the best and their professionalism and ability to expedite my visit was absolutely amazing as well. I received better care from this emergency facility then I have an any other hospital emergency room I have ever been to in 31 years of my life. I would HIGHLY recommend this facility and their team. Thank you all from the bottom of my heart ♥️','2019-09-19 23:58:07.519000','2019-09-19 23:58:07.519000',5,'Christine Quaiff','https://lh6.googleusercontent.com/-PqCfYuJfQRY/AAAAAAAAAAI/AAAAAAAAAAA/Wc40o-yGOzI/c-rp-mo-br100/photo.jpg','8679688254631342173',8802),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4nNC-ffZZ_DFTx_KZu4Q23Z8LltTd06rn38PW3QgDr2umJ_u7iCn2TdTDUb3Zqt0jWQToorAKa8qCl9zX9NGWsFfNgg','Alvean,Jocelyn, and Dr.Henderson where very professional and had excellent customer service','2020-02-05 23:51:47.868000','2020-02-05 23:51:47.868000',5,'Reginald Willis','https://lh5.googleusercontent.com/-0v3qP5gk8bM/AAAAAAAAAAI/AAAAAAAAAAA/30iOTpCOT5Q/c-rp-mo-br100/photo.jpg','16389487648212004696',22624),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4NugdBp0ocxW1RCK7DkvZnfA3vx3akyouh7VO-UvvwwnmHO-c-oDPaRVybsFy3hjyik6tM-k8nhTgLcr9QWFt2PIuPE','Friendly, professional, efficient. Dee was kind and welcoming.','2019-08-14 15:15:49.510000','2019-08-14 15:15:49.510000',5,'Megan Bradley','https://lh3.googleusercontent.com/-yKwcA7rOH00/AAAAAAAAAAI/AAAAAAAAAAA/hmEXrr0wmU0/c-rp-mo-br100/photo.jpg','3511292162159714121',7210),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4S8YbrW9B9-tM2e5AwDbVppFG4yVUcF1nqB0xpnjx7NiW00FbGnGtRD77VfbrYiq4LR991LiOWW57OFli9iVZfIlADw','Thanks to Dr Henderson, Sarah G, Laura H, Daniel B, Tanishia W... You guys were great with care.','2019-10-23 08:27:54.155000','2019-10-23 08:27:54.155000',5,'Nairobi Perez','https://lh5.googleusercontent.com/-uQKiDelyHJA/AAAAAAAAAAI/AAAAAAAAAAA/Ladt8vFf0S0/c-rp-mo-br100/photo.jpg','17898197009688164559',5485),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4sOPzG5EuVkJSktH4YJWwcGRwJ0Vzh-aLHY4SsJQ29LL26HDtkhjcpuP9-DnuUZzupRm-08nwZVqhBbdbQP3LAJqpZo','My experience was great. The service was excellent. People very sweet.','2018-08-12 03:29:52.848000','2018-08-12 03:29:52.848000',5,'Silvia Espinoza','https://lh4.googleusercontent.com/-uahsBsoiC7k/AAAAAAAAAAI/AAAAAAAAAAA/36vwZMnvvL8/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9247),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4SqYb91B7Uvkfas7kUS9d2eiaENCQz39Dhfung4NUic3WrFnXyp0IzmseKYit9kTzdOuyyri3HjkDpq0L3cJaS8i2OM','Nice friendly staff, very welcoming and comfortable chairs. Also, complementary snacks are always a plus! Elida, Denise and Alvean were so helpful answered all my questions. Going out of their way to make sure i was comfortable. No wait time. In and out!','2020-02-20 14:20:19.890000','2020-02-20 14:20:19.890000',5,'Ashley oppCoovertviuoo','https://lh4.googleusercontent.com/-LabPBB_1m1Q/AAAAAAAAAAI/AAAAAAAAAAA/y807d6vcQj0/c-rp-mo-br100/photo.jpg','16389487648212004696',22585),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4t3aqUaUNiAIbszFH2frkNVDselRpI2F1u0VSQsLsAiuyKvQznjBenvrwXTX6nv4UfsgPTGmZpaZdMuodFv4qB353nI','Always helpful and take well care','2019-01-12 16:07:12.577000','2019-01-12 16:07:12.577000',5,'Ali Jabran','https://lh3.googleusercontent.com/-PKTgRACK7Uo/AAAAAAAAAAI/AAAAAAAAAAA/RgYoVSj-MY0/c-rp-mo-br100/photo.jpg','17394740196501090048',4742),('AIe9_BFu3rdicGrPrzdyu4PDXmqM4XzJGpiaAI1EVBQqJN_4EFEoA8vRsT-HoDVfXRzmh-yfRnrbGpOD-oiorumrN_QGV1w0VT_VcSa6KsxdUtLA3u9G0e0','My granddaughter broke a bone in her foot and was treated at ER 24 Care (Signature Emergency). We were greeted immediately and the wait was only as long as it took us to fill out the registration forms. During that interval we were offered something to drink and a snack. The staff was extremely personable and polite. We were taken to a treatment room within ten minutes of arrival and my granddaughter was offered a warm blanket and was made comfortable. She is autistic and the treatment providers were calm and patient with her and explained, in terms she could understand, what was going to happen in the examination and X-ray process. \n \nEveryone was very nice and Nurse Reginna Lindsay was exceptional in her handling of my granddaughter. Kudos to all but especially to Nurse Reginna!','2019-09-07 20:47:33.857000','2019-09-07 20:47:33.857000',5,'Janice Ward','https://lh6.googleusercontent.com/-ZTvbrbdmP-8/AAAAAAAAAAI/AAAAAAAAAAA/Piy3XXx0ZFo/c-rp-mo-br100/photo.jpg','14567670160750071148',1249),('AIe9_BFu3rdicGrPrzdyu4PDXmqM513-HKAdJ6qUR2QumJzv9icQZj9vQD_8asMOKzGQBtZHj_nghnn9V0mk6kOXm8usiPXqR5-fBe9A-hYuAOIXC6vlBp8','Extremely friendly staff! Very understanding with officiant and quick workings! The place is also very clean and still looks brand new! 10/10 recommend.','2019-01-29 23:28:40.390000','2019-01-29 23:28:40.390000',5,'Leacy M','https://lh3.googleusercontent.com/-oZGpx7oP1BQ/AAAAAAAAAAI/AAAAAAAAAAA/9kN8UEe5jX8/c-rp-mo-br100/photo.jpg','3511292162159714121',7440),('AIe9_BFu3rdicGrPrzdyu4PDXmqM5fcyRYM9Uf92JY-MN_D6g9o1nLY0Si74whXJ4CTE0m63Z0bUjO1vbZ0C69SlzJShlLhjgeO4ovGk6rSDXaUBGArHuQc','This place is awesome, they are fast and extremely courteous.\nThe staff went above and beyond and the Admin, Mercedes really helped turn my frown upside-down! I\'d definitely return!','2016-06-09 17:44:55.298000','2016-06-09 17:44:55.298000',5,'Marissa E','https://lh5.googleusercontent.com/-cvwcsSvKVXU/AAAAAAAAAAI/AAAAAAAAAAA/g_yP8fH6nys/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5237),('AIe9_BFu3rdicGrPrzdyu4PDXmqM5grrsWDjPdmaTDW98FmvGCNSOLtFeKzTCvVvovVR4nLaedY6Koz4ct0dh6WrxkRmpGlG7VwHNTQRlk63DawUnyG-ufI',NULL,'2020-02-05 13:57:01.753000','2020-02-05 13:57:01.753000',5,'Grace Navarro','https://lh4.googleusercontent.com/-nbgeruRalYQ/AAAAAAAAAAI/AAAAAAAAAAA/r6hRjwpnGRA/c-rp-mo-br100/photo.jpg','16891069708558046635',13959),('AIe9_BFu3rdicGrPrzdyu4PDXmqM5H5uPeOe2MXkZNo4UWOCIqub8zL-EL9yPie4AMJd3eC4-MfhS0emA-dZSw5vK2tJDFn5R7kLFv8kIBlDtWQFIdQxAdw','Almost No wait time my daughter was treated with great care.','2019-05-03 18:40:36.669000','2019-05-03 18:40:36.669000',5,'Emiley Campos','https://lh6.googleusercontent.com/-le-qlJTf-l4/AAAAAAAAAAI/AAAAAAAAAAA/mKSK1IYdpc4/c-rp-mo-br100/photo.jpg','17898197009688164559',5750),('AIe9_BFu3rdicGrPrzdyu4PDXmqM5heFotEwLf4SvLx8k6KXS06j7FwbT5lkeK9CGv3_MdzplVxjzHUawXRBobncRPIk9XqvmCwjIdwjwLC-xZRdNfnOdys','Very fast and to the point! Was greeted as soon as I walked in the door and was taken back within minutes! Very friendly staff, also informative on what was going on!','2020-02-18 05:24:39.688000','2020-02-18 05:24:39.688000',5,'Kate Gilbreath','https://lh6.googleusercontent.com/-deoAZXmyD1Q/AAAAAAAAAAI/AAAAAAAAAAA/7tGlX9yA0xw/c-rp-mo-br100/photo.jpg','16891069708558046635',13944),('AIe9_BFu3rdicGrPrzdyu4PDXmqM5PPKWbwqRqBvwfljcSJkCpVa0p2d4vXehghE6NdOcmpgJmOLKp6LZN6UEbxmW0a-dww9RPPI2bFTZYXpj0EMV6dhQ7Y',NULL,'2020-02-20 00:22:01.461000','2020-02-20 00:22:01.461000',5,'Kathy Lester','https://lh5.googleusercontent.com/-ECR3fttITbM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclVgy_VwoLck_Z50iQoEipdLRYaKQ/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14605),('AIe9_BFu3rdicGrPrzdyu4PDXmqM5q9ZW9Lh8AU3W78dQC4lK80Iccne455A-IpuajHJ6Tmpeh8x1uk86hdXmv0BTPaarbzbzOfj7snep_G2DS0KOpE389Q','The crew of Dr Henderson, RN Mollie, RAD tech Sarah and the REG Tobie were all very friendly and helpful. There was no wait time and they were right on helping us. They made sure we knew what was happening and what was being given the whole time we were there. If we had gone to the hospital we would’ve sit there for hours but we were in and out within a couple of hours. They made sure I was doing ok before I was released. I would recommend this to anyone who need to go to the dr.','2020-03-09 15:39:54.860000','2020-03-09 15:39:54.860000',5,'Loretta Robertson','https://lh3.googleusercontent.com/a-/AOh14GhQAaz5gsIN0hGqEvpHUBg7K5sJv05-AeklnsWj=c0x00000000-cc-rp','3272657195432704501',21138),('AIe9_BFu3rdicGrPrzdyu4PDXmqM5QlAB-f2EWy-qYVmmzJ3waIZQc6LE7P-xwMWh6Au9gNcUVaQ8jOGOX8JimNJZ4nK-tnhsyx7j3qKE6ouwAgiCOrootE','Beyond disappointed with this place. We have a special needs son at home and my mother-in-law needed to be tested to come be with us and help. She is from over 2 1/2 hours away and found this location that does rapid covid testing near us. She called last week to confirm no appointment needed. My husband also called last week and this weekend to make sure. Before she left East Texas this morning she even called to make sure she didn’t need an appointment and they said no just come on in. She got there and waited over an hour just for them to turn her away because she did not have an appointment and they were too busy to see her. Told her to come back Monday. Which she cannot because she has nowhere to go other than back home over 2 hours away until tested. The voicemail and the website still shows no appointments to just come. I understand this is all new but telling someone numerous times to just come in knowing she had to drive hours to get there is not okay. You don’t treat this people this way.','2020-06-21 15:30:28.210000','2020-06-21 15:30:28.210000',1,'Haley Troxell','https://lh5.googleusercontent.com/-7Yo54FymrPo/AAAAAAAAAAI/AAAAAAAAAAA/_d1fi3L4QQs/c-rp-mo-br100/photo.jpg','14748677429039074158',20274),('AIe9_BFu3rdicGrPrzdyu4PDXmqM6_PO2s5cqoLuBR8IpmzXXyoVY5NeREmJ8QRbrk_RFfU8FYdtSjjywOLm5_InIOEPRdwZF613J323fW7DsCdtL5MCU78','I highly recommend Signature Care. My daughter suffers from chronic pain due to a genetic condition, as well as anxiety. If it gets so bad that her normal meds don’t work and her docs aren’t available, sometimes we have to go into an ER. Too often, she gets prejudged as someone seeking meds, when that just isn’t the case. Signature Care was attentive and most importantly, compassionate. I was very impressed, and honestly, quite grateful.','2020-05-25 15:40:28.762000','2020-05-25 15:40:28.762000',5,'Carol Blevins','https://lh3.googleusercontent.com/-p6sjXWcRVl4/AAAAAAAAAAI/AAAAAAAAAAA/QPFPp_KvDdQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21783),('AIe9_BFu3rdicGrPrzdyu4PDXmqM67XzooyjkPAufk_o8rcwqtJy8BfSZB6v4nwfGh8wxEP7MHgm_BC0PPkrxWcXjVXCI0muekOrQ4SghcjJKVgzcLvoDTc','I had a great experience and was treated well by all the staff at Signature Care Emergency Center.','2020-02-23 16:43:49.129000','2020-02-23 16:43:49.129000',5,'Keith Herald','https://lh5.googleusercontent.com/-Mk98AEi9k-Q/AAAAAAAAAAI/AAAAAAAAAAA/_H9zUdBf97w/c-rp-mo-ba5-br100/photo.jpg','2694018788013845459',14217),('AIe9_BFu3rdicGrPrzdyu4PDXmqM6DJTb-iEo3b2mMQIt5bVMEkVSeLw_gbcP6grVFv_xLOhoPqJ0z92TAhwDh7Gwj_kPkllxCWB_stwf3FjmDiQfzQpE1I','Maya and Kristina were so helpful and wonderful I recommend it','2020-01-05 23:07:58.080000','2020-01-05 23:07:58.080000',5,'Celeste Tzunux','https://lh5.googleusercontent.com/-2dfbnh71YiM/AAAAAAAAAAI/AAAAAAAAAAA/svufqTTv90c/c-rp-mo-br100/photo.jpg','12541597562633926366',247),('AIe9_BFu3rdicGrPrzdyu4PDXmqM6DvOYUGOVdGCgA_-TYAOQJy7qSlZizJ4aiLdXDLq-C-xCAoJ0gawN5M6xP0LT2JuHYSVQ2yXRxZu11QS1bpBYz7ILy0','The care here is much more personalized compared to ORMC or MCH. Our nurses Magali & Teresa were fantastic and the doctor was able to diagnose the issue and refer us to a surgeon.','2019-07-20 20:32:45.224000','2019-07-20 20:32:45.224000',5,'Stephanne LHommedieu','https://lh4.googleusercontent.com/-_cSo6oqspQQ/AAAAAAAAAAI/AAAAAAAAAAA/ztpe8VOvdr4/c-rp-mo-br100/photo.jpg','6521947413723274945',8188),('AIe9_BFu3rdicGrPrzdyu4PDXmqM6hhisZIpPpGd5v4fFhOi1kWqnmskHBpv2qIvqOo1mjI2w6zOwEPNnZxyTw_2Wr0gHceK966qj5qe-tz8qGvpsq7cvuc','Fantastic experience from start to finish! Every single staff member was amazing: front desk, medical staff, doctor, everyone! Apparently this ER changed ownership and the new owners are much better than the previous owners. which shows in the staff. Keep in mind this is a freestanding ER, not an urgent care clinic. Thanks for a great experience. Highly recommended!','2018-11-27 15:31:47.351000','2018-11-27 15:31:47.351000',5,'BAW Prez','https://lh4.googleusercontent.com/-xqrAiLJs84Q/AAAAAAAAAAI/AAAAAAAAAAA/B-Xw2OcrwPU/c-rp-mo-br100/photo.jpg','16891069708558046635',4398),('AIe9_BFu3rdicGrPrzdyu4PDXmqM6p1VQzw31o28aCyS8uZkfkKrN33pwNqrj_55WYoTNYxGh6ghEb-vACl3NOrSO9gTY4F7yTiZZsnWuEVqCQfDgNWpOa0','Everyone was very helpful. \nDr harjai was very nice \nNurse erika was very helpful \nMarcus was very nice and offered a hot blanket \nPatty in registration was very nice and always smiling\nGreat place','2019-09-25 22:19:28.857000','2019-09-25 22:19:28.857000',5,'jr pena','https://lh6.googleusercontent.com/-Wpz-0CNr3S4/AAAAAAAAAAI/AAAAAAAAAAA/6uB8wyBkDYE/c-rp-mo-br100/photo.jpg','14567670160750071148',1228),('AIe9_BFu3rdicGrPrzdyu4PDXmqM6RiDFsuQT6KM1iC_YpHwdvgQWqa0D9pLs9FQOD5NXojHpS7kIODkdfVM0rxuFjgKrU4PIBE-Dv0naKzfw2wc2Tvcpyc','We were in and out fast. We had went late at night around 11pm. My daughter elbow was dislocated, Doc pop her elbow back in place in a second. It was so fast my daughter didn’t even cry and she was happy she could move her arm again. Good Doctors and nurses.','2019-03-19 06:03:34.812000','2019-03-19 06:03:34.812000',5,'Melissa Albarran','https://lh5.googleusercontent.com/-YNfu9CWLGN0/AAAAAAAAAAI/AAAAAAAAAAA/3CYuOIY-FIY/c-rp-mo-br100/photo.jpg','17898197009688164559',5803),('AIe9_BFu3rdicGrPrzdyu4PDXmqM6vBTulkuensYBo3sQQuBGOgGk8NO0g4_y-JNNdJndsQ7y4GgUhuqycigjU4PToyrzmRGnu86gTo4KdxFQ9Tp4GWNkiY','I came here with my mom since she fell at her job. I felt like the doctors were really doing their best to make sure my mother pain and injures were well taken care of.They were always insuring that she came first and that she ate well before taking medicine. Doctors and nurse Alvean A. and Chanell were just doing an amazing job at making sure my mom was okay, not in any pain, they also were very good listeners when my mom was explaining the Incident. So thank u for thanking care for my mom and I would definitely come again.','2020-01-12 17:29:33.724000','2020-01-12 17:29:33.724000',5,'Dina Tabora','https://lh5.googleusercontent.com/--e3tDgJ_4MY/AAAAAAAAAAI/AAAAAAAAAAA/uPcfQhWZ_eA/c-rp-mo-br100/photo.jpg','16389487648212004696',9549),('AIe9_BFu3rdicGrPrzdyu4PDXmqM6wqee4DETP7jvza_MUvWv7ucap9CG7n_UTN39hhDPrsb_7zLl0zHHPubs32gIQZ2uivUIu11xmuIiXacnJYFHvMz9tE','There service is good and they move fast. They also answer every question you have during your visit . Jocelyn ,Alvear, and Thuy are nice and friendly and happy to do there job.','2020-02-22 22:20:00.627000','2020-02-22 22:20:00.627000',5,'jj Ybarra','https://lh5.googleusercontent.com/-Nf4azY7QvfE/AAAAAAAAAAI/AAAAAAAAAAA/56rEvTNYLNI/c-rp-mo-br100/photo.jpg','16389487648212004696',13781),('AIe9_BFu3rdicGrPrzdyu4PDXmqM7DJjDEDoC8RFI3D5lwfUJqUlRdJXErlz4CMT6fWx4b_t6Oc0vHnAJg1SEK_bO0TsuDbzwAF-42xo95vquMpaDhBSdyE','They are fast and super easy. I actually came here before because I had a gallbladder attack and they made me feel a lot better. I was transferred to Memorial Hermann And I have to be honest, SignatureCare seemed more caring. Today I brought my mom after a fall. I didn’t hesitate in calling in to bring my mom. They accept her insurance which is even better.','2017-11-17 20:56:52.838000','2017-11-17 20:56:52.838000',5,'Ana Rodriguez','https://lh6.googleusercontent.com/-5lTXj-ffDr4/AAAAAAAAAAI/AAAAAAAAAAA/B2WXI-FXVeY/c-rp-mo-br100/photo.jpg','14567670160750071148',1729),('AIe9_BFu3rdicGrPrzdyu4PDXmqM7dOLTntpI5EJt4L2OyHk6z985JcqBn5u103B5EAjJwtue_N-QgZDtilaeMWSNwgYtq6xOkR_4j0RV-xPjbrGp2eQFgo','I injured my ankle around 9pm on a Saturday and thought it might be broken. They took me in immediately - no waiting like most ERs - took x-rays, gave me a diagnosis, sent me home with care instructions, a boot, crutches, prescriptions and recommended that I follow up with a podiatrist. Very friendly and helpful staff.','2018-12-19 04:07:55.351000','2018-12-19 04:07:55.351000',5,'Samantha Cavanaugh','https://lh5.googleusercontent.com/-xIxn3dUlt74/AAAAAAAAAAI/AAAAAAAAAAA/ats7YcfBqsA/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1449),('AIe9_BFu3rdicGrPrzdyu4PDXmqM7fKpUZmPfHeyyLqqxhmrNRoqxQI4JBidoTjRnZ_fT1pN5smaEibJV7-ljg65oRTZefog1O96qjgeiRqJGfnY_UjFW7Y','Wonderful experience with super patient and professional staff. Would definitely recommend anyone to go here.','2018-11-25 14:44:22.848000','2018-11-25 14:44:22.848000',5,'Ayesha Newton','https://lh3.googleusercontent.com/-ByWm7TVmzgA/AAAAAAAAAAI/AAAAAAAAAAA/QMPOZPbRfSk/c-rp-mo-br100/photo.jpg','8918455867446117794',9212),('AIe9_BFu3rdicGrPrzdyu4PDXmqM7kN-RwEKi3q4jtMEXeSwVICpLuo5TH57rglL6jk5sJG-6-d0TDngZ4uajYMltFZxUv2t8y5ljAr1H7YOGPsfCNwWfVI','Ms.Tobie was so kind, the entire staff was amazing. I do not go any where else!','2020-01-15 02:19:39.175000','2020-01-15 02:19:39.175000',5,'LaSable McDaniels','https://lh6.googleusercontent.com/-jJ2FQ-g6FWg/AAAAAAAAAAI/AAAAAAAAAAA/6W354tbHtT8/c-rp-mo-br100/photo.jpg','3272657195432704501',9813),('AIe9_BFu3rdicGrPrzdyu4PDXmqM7pRDowJ1MdG6eXJzQb6he7k3EkfuTO3tN0GwvfcCvOgk5AowTVNBb8rNqeVBYqmEplcblRTLcUgVweVXpcPG6VnEQiM','All the Staff were very helpful and informative. They made me feel welcomed and treated my wound with care and attentiveness. The staff that helped was Doctor Thomas, Nurse Sarah, ER Tech James, and Receptionists Tanisha.','2019-11-20 01:30:12.936000','2019-11-20 01:30:12.936000',5,'Traverez Johnson','https://lh5.googleusercontent.com/-U_AHY2St4H8/AAAAAAAAAAI/AAAAAAAAAAA/j8s9gBFJvr4/c-rp-mo-br100/photo.jpg','17898197009688164559',5419),('AIe9_BFu3rdicGrPrzdyu4PDXmqM7PzsjX11CwynCaPBnrBnHmgYWY3YYqMDymyBqI6U9DuWSNtkDyXlPUR5KcqEad-Pn73rl81mSq48PaEuociJJXq9hGg','All staff that I was in contact with were all super friendly and took time to talk with me. They were prompt and therefore wasn’t there for a very long time. Of course this may be because I was there very early in the morning, however, I wasn’t left waiting. Overall the experience was great and I’d pay $175 any day rather than sit in a Community Care for free!!! Thanks a bunch, everyone was great!!!','2020-02-29 08:47:42.592000','2020-02-29 08:47:42.592000',5,'Melissa Colunga','https://lh4.googleusercontent.com/-BeFWECNNxOU/AAAAAAAAAAI/AAAAAAAAAAA/SZQOv0_inZY/c-rp-mo-br100/photo.jpg','16891069708558046635',13925),('AIe9_BFu3rdicGrPrzdyu4PDXmqM7SxAdEwtasPsARR8-Lu4r5oOmqYNAkp5-FgA6kiljJTGlWfTyo8-y27MGD_nRYVo8xJVVhcwKJj-SrC8SsAjphuMxzw','My wife came in with not feeling well and the staff (Tobie and Kelly) were kind and polite from the moment we walked in the building.There was not a long wait time and we felt right at home. Will definitely be coming back here the next time one of us are ill.','2019-02-02 23:46:02.937000','2019-02-02 23:46:02.937000',5,'Bubba Ray','https://lh3.googleusercontent.com/-yepM_VGIs58/AAAAAAAAAAI/AAAAAAAAAAA/S6M9wODIais/c-rp-mo-br100/photo.jpg','3272657195432704501',7029),('AIe9_BFu3rdicGrPrzdyu4PDXmqM81M9dA_ga0km2rEJE5v1i27I1My_uN9XMQ1MgiJwa7OBt_k79bLh15dxCZAPeP2qcew9uaBlVqgJqG8yBaBMIlS5bwQ','Had a pretty decent experience for it being so early in the morning. They took care of me and covered every possibility before actually providing a diagnosis. Your normal average wait time','2019-02-28 07:08:16.812000','2019-02-28 07:08:16.812000',5,'Gracekelly Ovalles','https://lh5.googleusercontent.com/-ZRTxOAyV5kA/AAAAAAAAAAI/AAAAAAAAAAA/6cKpGzHzGHE/c-rp-mo-br100/photo.jpg','17394740196501090048',4717),('AIe9_BFu3rdicGrPrzdyu4PDXmqM84SvSkrfACTWLF2FxNaGvCq787NaDjcnCfQDCd4h_vDpj0biRaC5oKTc58dQTUTvvFxbnhZ7n0UBr3KVlp-wIzrRWPE','Jennifer was very friendly and helpful when we came in the door. Nurse Erika was friendly and thorough in her check up. Dr Dillon came in quickly and answered all of our questions and got us on our way. Thank you all so much for your help and fast response.','2019-01-25 20:40:39.142000','2019-01-25 20:40:39.142000',5,'Trinity Dority','https://lh6.googleusercontent.com/-m4H1scYlGxk/AAAAAAAAAAI/AAAAAAAAAAA/1UBQvxn4PYI/c-rp-mo-br100/photo.jpg','8626688543755174284',8581),('AIe9_BFu3rdicGrPrzdyu4PDXmqM89B-rLI1j9aE62Q6jQwyoW8DmVKY76LffC44zwtIrqKfnx-R40rC5AgL6DN-5g4CYNKo3xkKIwVl6Qzepbo-3u6eVYs','I have been to Signature Care emergency Venter twice now, and both times I have been beyond impressed by the service and care they render their patients. Everyone is so kind and quirky there. My Nurse Dawn was awesome and had a bright personality, and my tech Norma was extremely attentive. I give a special thanks to my Dr. Yusuf for diagnosing me. This is my go to Emergency Room.','2019-12-19 21:14:49.800000','2019-12-19 21:14:49.800000',5,'Alexis Goodwin','https://lh6.googleusercontent.com/-yCaWmjzcRKg/AAAAAAAAAAI/AAAAAAAAAAA/M54Qacj2uQo/c-rp-mo-br100/photo.jpg','3511292162159714121',14481),('AIe9_BFu3rdicGrPrzdyu4PDXmqM8EVsm22heoxTtMADromqjZPMGoSzGr9ymmrc26hqqUuIudjFDQuXMd87lBX-cFRXnlLl-lGIkYIC5tu8Z252VDqbbzI',NULL,'2019-11-15 11:58:36.834000','2019-11-15 11:58:36.834000',5,'Jason Johnson','https://lh3.googleusercontent.com/-UkiAj-YWzU0/AAAAAAAAAAI/AAAAAAAAAAA/RmP1nTSC5P8/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5432),('AIe9_BFu3rdicGrPrzdyu4PDXmqM8Fkc7V3zIE4TILz6hbzUatnMezAFHIoHfxGyVY27buIdQGlzyOxqFgZxWoDj4qOsdU8KLest9wsVYbvy5C0R0PayZPM','The staff was really friendly and I didn\'t have to wait to receive attention.','2017-03-22 17:26:45.919000','2017-03-22 17:26:45.919000',5,'Alyson Valdes','https://lh3.googleusercontent.com/-c0KXz1lcRMY/AAAAAAAAAAI/AAAAAAAAAAA/9WxtLmpTxtQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5086),('AIe9_BFu3rdicGrPrzdyu4PDXmqM8NBj8nmh_lTuO9hD5Z9lXU1xIBZMuglz5DzFrUUg7tAazERMYrgnBI_qdSfUVBLvWq9U06CYpJZCu8hcbPPNRpafvhM','From the moment I walk through the Er doors, these guys have been nothing but amazing, From nurse John, to Er Tech, to Dr. Jones, and Mr All Star David the radiology Technician was grear','2019-12-19 04:26:48.256000','2019-12-19 04:26:48.256000',4,'Mz. KAY\'S KORNER','https://lh5.googleusercontent.com/-4PiDe8qq29I/AAAAAAAAAAI/AAAAAAAAAAA/YltffadKBoI/c-rp-mo-br100/photo.jpg','2694018788013845459',5981),('AIe9_BFu3rdicGrPrzdyu4PDXmqM8PD8p6kN_i_R6xrPFRHBhgjP8XI9rKwVVEDolEm-LEVSuefQexLfErJqdV_-TXGCpnw9tZHolnAiRK2tnTpu5rDCJLo','Overall this was a great experience. I was very impressed by the cleanliness and appearance of the entire facility. The other thing that truly stood out was the friendliness of the staff. From the moment I walked in the door to the moment I left they were all smiles.','2017-03-29 18:29:43.315000','2017-03-29 18:29:43.315000',5,'Dan Butler','https://lh6.googleusercontent.com/-E30FKgeq4ys/AAAAAAAAAAI/AAAAAAAAAAA/7lsbhsg3qi0/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7855),('AIe9_BFu3rdicGrPrzdyu4PDXmqM8WRxrQGpIR3IOO0aF2RjapRlLuycUP-12EoAleXKIr0cDgp9-oJGxMjh590-vr7fSy9vCdqIVl0Ps-dYFDrszUWyKvg','I\'ve been to SignatureCare Emergency Center twice, and have been extremely pleased with the service received! Dr. Singla, Dee, John, Derek, and Eve, thank you for treating me very well!','2018-04-19 03:08:13.464000','2018-04-19 03:08:13.464000',5,'Angela Morgan','https://lh6.googleusercontent.com/-Hr0CgbT30-w/AAAAAAAAAAI/AAAAAAAAAAA/eMdNn5gKVEM/c-rp-mo-br100/photo.jpg','3511292162159714121',7709),('AIe9_BFu3rdicGrPrzdyu4PDXmqM9_O3VQrUrPBfd5etx4TC0wJNBBArQheGd-X06lMm2tVbazzkkYbW3k_vxe2-XW_lI7sf0btAbdBN8Z1OUDkWdTYrUGY',NULL,'2020-06-28 07:38:17.967000','2020-06-28 07:38:17.967000',4,'Alonso Flores','https://lh6.googleusercontent.com/-Wtuty4anErk/AAAAAAAAAAI/AAAAAAAAAAA/8SJ-jEkujqw/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',21243),('AIe9_BFu3rdicGrPrzdyu4PDXmqM98cipLGOJ_kI1naXO7SBKcjLgYNWuacJCt4Xq48VOIvnl0FJh_K7BXB3TKjKRt5o0rgm1H8KpmzpwOYfBHvEgGTg0SE','I felt very welcomed by Sita when we entered the building. She was very kind and helpful and very professional. We were also pleased with our nurse Lisa V. She was very informative and made us feel comfortable while waiting for the doctor. I highly recommend this emergency center.','2019-09-17 03:14:26.112000','2019-09-17 03:14:26.112000',5,'Anastasia Macias','https://lh4.googleusercontent.com/-uXNYizcsWqE/AAAAAAAAAAI/AAAAAAAAAAA/36x60yda4h8/c-rp-mo-br100/photo.jpg','13486358490203335051',828),('AIe9_BFu3rdicGrPrzdyu4PDXmqM9FfBlgXYHp7CdJbxoP58F5-wX4PoqsJjbO6X1OIVZ5kubLR7Gsq8PJVd5iiUdUp8G7uDHxWgi9Q1LeNfFKtM_rt5zmE','Very friendly staff. Dr. Cavazzos, Patricia, Alvean. Have been here twice before and will continue to visit.','2020-02-27 18:55:35.865000','2020-02-27 18:55:35.865000',5,'Eunice Fuentes','https://lh3.googleusercontent.com/-TrT6ttCwSYM/AAAAAAAAAAI/AAAAAAAAAAA/8qEexRL_zYM/c-rp-mo-br100/photo.jpg','16389487648212004696',13756),('AIe9_BFu3rdicGrPrzdyu4PDXmqM9nlZ4EZBHJKRqgpj20bkdpeHlgpsBEQ8hGh-PKYCn3E6zCpc8V4kGjL1j_4_M1iKUdkiy2dUYyfnnOQ-QTB5YIoKi_o','\"Awesome service, nice cool atmosphere my nurses Nichole and Dr. Hehman Rad Allan were all caring and very helpful... a wonderful ER facility to receive urgent care.\" Thank You!','2019-08-21 13:43:53.671000','2019-08-21 13:43:53.671000',5,'Geraldine Bradley','https://lh4.googleusercontent.com/-SdctFtSn7Po/AAAAAAAAAAI/AAAAAAAAAAA/EhLGvlW0jXo/c-rp-mo-br100/photo.jpg','8918455867446117794',9076),('AIe9_BFu3rdicGrPrzdyu4PDXmqM9rXS0HXEb6yLOzqXsKPKhELrI9m9rzKwoOzNMieDQCzQrIb52CZbMOkmrVxBN1WWSTGR71k8aW4wujGYYIvHpSGl3Co','Very friendly staff and short wait times! We were in and out in 40 mins!','2019-05-07 04:54:54.643000','2019-05-07 04:54:54.643000',5,'Stephanie Lopez','https://lh4.googleusercontent.com/-PNux_zWOgqA/AAAAAAAAAAI/AAAAAAAAAAA/7nWbkk6adCI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqM9uSivq1qRvTa3Z8-3Zf13LP-6E2kti5nX1d4eakbu7LKb-1iTMQXpmeM10UidmmV1zjY6AhToQYaAnzXMgcgTVRMBGk','Best Service Ever Natalie was wonderful Kelly and Stacy were so empathetic and Dr.Hehman was awesome!','2019-12-30 22:02:38.593000','2019-12-30 22:02:38.593000',5,'Val pickersgill','https://lh5.googleusercontent.com/-8c-pTeZbo1I/AAAAAAAAAAI/AAAAAAAAAAA/w6Nvjxqh7ZI/c-rp-mo-br100/photo.jpg','8918455867446117794',14884),('AIe9_BFu3rdicGrPrzdyu4PDXmqMA-35n4bSxnQ1JMwu514Y5C7q5lt4l-d1lGtwTFi5GEes39be6vfzNOAihgM6PHJ6H4Uflf3XBZ2dLFRM8meoX_9Ke_A','They were amazing, super professional, specially Tanishia W. And Sarah! Thank you so much.','2020-01-17 03:43:31.802000','2020-01-17 03:43:31.802000',5,'Gabriela Stanley','https://lh6.googleusercontent.com/-mqlJeXVESfg/AAAAAAAAAAI/AAAAAAAAAAA/5u8X2Ws0O-g/c-rp-mo-br100/photo.jpg','17898197009688164559',9997),('AIe9_BFu3rdicGrPrzdyu4PDXmqMa2TpkRA_Ec9dmzRz88Vi8sKfXopwk0gJWmX7o-vjQ4f2bSg9-AhWbsPOZu8b3IWJdAU56uG7-lS0M6IWb_sRYa-vihM','Very professional staff & extremely quick service! Will definitely return and refer other family members','2020-02-07 04:26:08.407000','2020-02-07 04:26:08.407000',5,'Vida’s Vibe','https://lh5.googleusercontent.com/-NmyXn3ZkGuU/AAAAAAAAAAI/AAAAAAAAAAA/u-_NCrQ5RB0/c-rp-mo-br100/photo.jpg','8918455867446117794',14842),('AIe9_BFu3rdicGrPrzdyu4PDXmqMA7KmQm0sjeBL7zg8Ah7pFkTC0LSrOVq4QUIgWi3L6UWwQYw89my5mzVZhS9qTY1hGUVkG1KpGvIvd2vhhsUb4oGD9P8','Staff we amazing. I was in and out within an hour or two with full diagnosis. \n\nStaff were friendly and went the extra mile to make me feel comfortable','2020-05-20 07:37:32.554000','2020-05-20 07:37:32.554000',5,'Adam Mills','https://lh6.googleusercontent.com/-0QcD8Wmw3dY/AAAAAAAAAAI/AAAAAAAAAAA/4QJ1pYtZnAE/c-rp-mo-br100/photo.jpg','3511292162159714121',22875),('AIe9_BFu3rdicGrPrzdyu4PDXmqMAC0CnPWuyJlocFTSV5xALAv-sarpGnCmzrVrv4q-s5kANFE-FH56HNzd3EqpsL5B_AUui8VbPVuOlEc0oc1C-jMxTF8','Great place, and better people! Leah was my care provider and made me feel very comfortable and safe.','2020-08-04 13:01:33.840000','2020-08-04 13:01:33.840000',5,'Tanner Culp','https://lh6.googleusercontent.com/-Dw4h8-48KfQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmJNhEIEviJ6yGExIT8byMd4yhtjw/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21822),('AIe9_BFu3rdicGrPrzdyu4PDXmqMaerC3rZU4bKcZUOt-vasT8eKOM0ICHJUjtWi9SiC7ymG_Hg07jdXswwASZrYfEC4mTObVmfD92xXvcplnSyKkP7HOoM','When you visit this Neighbors Emergency Center or any medical facility, you need to understand your health insurance policy and benefits to avoid many surprises later when you receive your service bills. Don\'t blindly accept and receive the medical services before you review and understand the charges for the services.','2015-07-27 17:02:38.241000','2015-07-27 17:02:38.241000',2,'kayla_ugly','https://lh4.googleusercontent.com/-lIW5DRX5lts/AAAAAAAAAAI/AAAAAAAAAAA/yp5asW9NpIY/c-rp-mo-br100/photo.jpg','17898197009688164559',5952),('AIe9_BFu3rdicGrPrzdyu4PDXmqMaFPMTVz5_pJwTOKpqgjjCgrmZXghqZfJydICIptivmvSmgbEUg_d3dmMLOiI38MXxNqJxKCc6QYI1vr68VvPiSdOFLk','Recent visit\nThis was my first visit to Signature Care and I can say it was the nicest, cleanest emergency center I have ever been to. Everyone was so nice and the service was very quick. I will recommend this location to everyone I know in our area','2019-05-10 00:45:18.685000','2019-05-10 00:45:18.685000',5,'Life of Jordan','https://lh6.googleusercontent.com/-yZGLhzKI-X0/AAAAAAAAAAI/AAAAAAAAAAA/BbOdV0Ds4zc/c-rp-mo-br100/photo.jpg','17898197009688164559',5747),('AIe9_BFu3rdicGrPrzdyu4PDXmqMAI02O5chkJm6-rGtFCumDS3cqHt2iPCGra7vr-pzHiQsiimyEa1pRpMQMCLRcmkJ-JHACjc-jPhiiDzVrc0YKZYmnaY','I\'d like to start by saying that I\'m giving this establishment one star based on the lack of professionalism and rude behavior executed by the Check in Representative: Brenda. I have never encountered such unethical behavior at a professional health establishment. Not only did Brenda lack the ability to rightfully explain why she was refusing to grant me copies of my documentation, but she also went so far as to abruptly snatching forms off of the counter top to prevent me from retrieving them. As the first point of contact at any corporation it is always vital to maintain a polite and professional demeanor. I\'m surprised that Signature Care would have someone so reckless and unprofessional representing their corporation. \n\nWith that being said, the nurse and doctor were extremely delightful. The facility was kept clean as well. I\'d actually return had I not encountered Brenda. First impression is everything and I seriously urge management to reconsider who they have greeting and checking in their guest.','2020-03-12 17:20:24.521000','2020-03-12 17:20:24.521000',1,'Brittany Bass','https://lh5.googleusercontent.com/-yg0qm4pLR7A/AAAAAAAAAAI/AAAAAAAAAAA/0LbURkDyX8g/c-rp-mo-br100/photo.jpg','3511292162159714121',21157),('AIe9_BFu3rdicGrPrzdyu4PDXmqMAiOL1VQ-uywuVGqg2o3YuV9ye9Vu5zfGgnDitD_EgC5nM6usunIsLIJ5oihsWRowXWYk89P55UyUmfyL8b5xfckUO3g',NULL,'2017-10-01 11:10:12.034000','2017-10-01 11:10:12.034000',5,'Misael Alamillo','https://lh6.googleusercontent.com/-KE94hJkR1JY/AAAAAAAAAAI/AAAAAAAAAAA/W2vPlsfNnB8/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2320),('AIe9_BFu3rdicGrPrzdyu4PDXmqMaNF1n7bnkmFPXBVv1WI_8nw-a6MS9BuEd5R9uutgehCUSE0uQt8hezPe-Rbz5FOhf7pJripc8_oGDhFhZM7_HDFl1b0','Awesome visit. They were super quick, and very friendly. Dr. Do was gentle, nurse chantel was kind, Laura, Elaine, and tanisha were very kind and professional. I will definitely come again.','2019-09-23 00:43:26.488000','2019-09-23 00:43:26.488000',5,'Melissa Burks','https://lh6.googleusercontent.com/-KurOSe0uYD4/AAAAAAAAAAI/AAAAAAAAAAA/FhBrPnRtQFY/c-rp-mo-br100/photo.jpg','17898197009688164559',5540),('AIe9_BFu3rdicGrPrzdyu4PDXmqMaNJzQxGzcYYp0McJP0gztOTOOVkGAmoafM1WN4-oPy7diLa0T9RQhnuk18FVnY1XmJdVLaa1IQyoOMtRVTCyeCPKlMM',NULL,'2016-11-20 21:55:28.557000','2016-11-20 21:55:28.557000',5,'KENNETH MASON','https://lh3.googleusercontent.com/-Zv8mm5q80wo/AAAAAAAAAAI/AAAAAAAAAAA/cTMaV_W-pp8/c-rp-mo-br100/photo.jpg','13486358490203335051',1134),('AIe9_BFu3rdicGrPrzdyu4PDXmqMAOH5OMzX4wUWpqAfZ5ueJziiqTwQCTqKSCT0dwqxJWFMQuql_uv92nWILwhNDMQLF3tA-sIfUW74xTWHsFCVKDj57kk','Mercy, dr.garcia, and Blake where all so kind. Felt very welcomed and they helped me as much as they can! ','2017-02-24 17:31:23.938000','2017-02-24 17:31:23.938000',5,'Alexandra Umanzor','https://lh6.googleusercontent.com/-NfhFyUhyJJI/AAAAAAAAAAI/AAAAAAAAAAA/sjttOxhu2yc/c-rp-mo-br100/photo.jpg','14904078213800803294',2402),('AIe9_BFu3rdicGrPrzdyu4PDXmqMaryj5ow__ISaPASmsCh6ahyT5VU2Y4eP7ldKZ0P8yEm8xyO0UtKUKfcNk83cKz5zWrsq5ngzRsjufksm-SO-_3hA53w',NULL,'2020-01-21 18:32:01.602000','2020-01-21 18:32:01.602000',5,'Deon Washington','https://lh4.googleusercontent.com/-DgPuyYEvD5I/AAAAAAAAAAI/AAAAAAAAAAA/G1OrX6nOkWs/c-rp-mo-br100/photo.jpg','16389487648212004696',10202),('AIe9_BFu3rdicGrPrzdyu4PDXmqMAs67fbgXB5PSs8YCdwbWubCYWQmxoqsaWC6CECSELWNGKm6HiUGUmhVorB9z_D2u_UjkZ5WXrOLS4oyxHPMmEDKBhQs','Great Dr and Staff, very knowledgeable and helpful','2019-10-05 16:06:32.946000','2019-10-05 16:06:32.946000',5,'Shane Santiff','https://lh3.googleusercontent.com/-tgBhVHJ3oug/AAAAAAAAAAI/AAAAAAAAAAA/G3PBhFnr5w4/c-rp-mo-br100/photo.jpg','14904078213800803294',13679),('AIe9_BFu3rdicGrPrzdyu4PDXmqMawyxNDhXhuPNUtHZ-NqS9GpFCXqfHismZXcI9fj4DT5naKk9MMGaMAI7CXwJvOU5d6INVEyp6gZyfy6HymbOxSw4stA','Awesome and quick service. Dr.Nguyen, Erika, Elisa Jasmine and Jordan are very professional and delivered great service.','2019-12-12 18:48:13.348000','2019-12-12 18:48:13.348000',5,'Tina Green','https://lh4.googleusercontent.com/-p38C0vrsR5Y/AAAAAAAAAAI/AAAAAAAAAAA/ttB4FvmUF5k/c-rp-mo-br100/photo.jpg','16389487648212004696',2551),('AIe9_BFu3rdicGrPrzdyu4PDXmqMAZyZyJvjU03Qqy4OqRsFfNrDcbolG5UlKaoVEBu6h8qRTpUIvYXE3Y-K6LbWhBGGiVLTkecZp8R6ATCEtyLUb6QnQcc',NULL,'2019-11-24 17:16:55.290000','2019-11-24 17:16:55.290000',5,'RollaGangE110','https://lh6.googleusercontent.com/-CKl3Zp2si6A/AAAAAAAAAAI/AAAAAAAAAAA/FzwB1TynWFU/c-rp-mo-br100/photo.jpg','8679688254631342173',8709),('AIe9_BFu3rdicGrPrzdyu4PDXmqMB-CX_ryGZQd7vAb2V7bsq2AZvzkPnZZJLgd9YEF8KAYMcS-tilbueEjeFso5Nr_iVFVUZW2zTAbs4dluzfUiIR9eu-k','This place is absolutely wonderful. I went yesterday with tremendous pain that I have been dealing with for almost three weeks. I was miserable. The staff and doctors were impeccable. I thought I was going to be waiting an eternity because it was an ER, but I was wrong!!!! I was only in the waiting room no more than 5 minutes. The place was clean and well kept and everyone there were so welcoming and genuinely concerned about my well being. They even called me the next day to see how I was doing! 😳🙌🏾 The entire process with the diagnosis and the procedure was a little over an hour, which is unheard of in any other ER. I felt like I was being treated by family. Selina and Dr. Vaagenes were amazing! If I ever have any other emergencies I will only come here! Thank y’all so much!','2019-04-20 22:45:04.411000','2019-04-20 22:45:04.411000',5,'Chloe Jones','https://lh6.googleusercontent.com/-dtAD4eftuLc/AAAAAAAAAAI/AAAAAAAAAAA/727NX0Lyr20/c-rp-mo-br100/photo.jpg','17394740196501090048',4689),('AIe9_BFu3rdicGrPrzdyu4PDXmqMB0URMeOSkk7aayB2SzDqW3RCB7xv9YssixhKHZfpvFxa26YVkL5_p51oVFB8P_uTlkv2LcYcWKkceq6CD225yrWlj8k','I developed a skin tag over the years and wanted it removed. I started a home remedy with the dental floss tie off then string and it became tender and i was worried i had made mattes worse.\ni went to the Signature ER and they were able to cut off the skin tag and send me on my way. The staff were \nprofessional and caring. I am sure they could tell I was a little nervous about the removal of the tag but they did a great job of easing my worries. I would recommended this facility.','2017-10-16 17:17:01.341000','2017-10-16 17:17:01.341000',5,'Ms Jones','https://lh6.googleusercontent.com/-n0LpTbG6OaU/AAAAAAAAAAI/AAAAAAAAAAA/nKeRQJRdRfA/c-rp-mo-br100/photo.jpg','8918455867446117794',9346),('AIe9_BFu3rdicGrPrzdyu4PDXmqMb13F11xpVq82Y2aLz91ZA_QoIu4yF2YZazmrJqldRAGRAIFoGLtIfDH0CNsGiul6WJ2eTr6SLcmfRqh3auxVKAvrr0M','Staff always quick to help. virtually no wait','2019-03-18 22:58:35.968000','2019-03-18 22:58:35.968000',5,'Andrew Herrman','https://lh6.googleusercontent.com/-MdNDlTwV4Wo/AAAAAAAAAAI/AAAAAAAAAAA/tCquRG25eUQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8296),('AIe9_BFu3rdicGrPrzdyu4PDXmqMb1ejF9l6keWsML03PnM1siWlDLW_QOMgIgKT2lrEqm8FjFm2pyUWNDLPlymc5DlKk3NmPg_xc2itCk5GW6D_sS2DdrU',NULL,'2020-07-09 00:27:02.152000','2020-07-09 00:27:02.152000',5,'Steve Rodriguez','https://lh3.googleusercontent.com/a-/AOh14Gi0UUetsodg6Gx75rGEjgtY87y8YWF51tee-6CX=c0x00000000-cc-rp-ba2','12541597562633926366',21330),('AIe9_BFu3rdicGrPrzdyu4PDXmqMB2PQhJHHqJOWBAP89yCC5Usepx9Qn0yN8Qvc3Bm0pF1TncK9fQZDJ1EIz-wISrpkNlkGLbgnlW7C0T8A0HnGKREcMos','My receptionist taylor was awesome\nAnd this place is a treat!','2017-03-29 21:02:56.295000','2017-03-29 21:02:56.295000',5,'Carsen Durham','https://lh4.googleusercontent.com/-POargxYEAjQ/AAAAAAAAAAI/AAAAAAAAAAA/Tnl1JfOAxgg/c-rp-mo-br100/photo.jpg','16590124370714063921',4017),('AIe9_BFu3rdicGrPrzdyu4PDXmqMb9nV_2WABR5_yTh8nstyEvee_1XZ_uK3l7gc1QJgkqbknp9AhNewU8sdeEqheEXQRWxAKqwbsbt-NU2ulVs8fwWFUMs',NULL,'2018-11-23 16:45:17.427000','2018-11-23 16:45:17.427000',5,'Lynnette Smothers-Jones','https://lh5.googleusercontent.com/-Fjpgb0nEQRA/AAAAAAAAAAI/AAAAAAAAAAA/wCgzMJadbN8/c-rp-mo-br100/photo.jpg','14567670160750071148',1458),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBBAxcY4OLjZ7kWUyVVXzsFjMHrvPdtcHJ31HhlFDhENbKYPaaPiUUTsbYuWdqqOG_BCbuLjCOgWyMpfKzhpoEEqKrQA','My experience here was great, although I was not treated my brother was taken care with love. We were helped by Tanishia which transitioned throughout the experience we the nurse Jennifer, Fatima the tech and Dr. Faig.','2019-12-20 08:14:32.514000','2019-12-20 08:14:32.514000',5,'Ortez Williams','https://lh3.googleusercontent.com/-8jdj8AkitUA/AAAAAAAAAAI/AAAAAAAAAAA/bLw4Rn_MvCU/c-rp-mo-br100/photo.jpg','17898197009688164559',5344),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBbWpFzz6esmlL6U9iI3FPsAtlx-0QJcmAFQmsMdSwotOzV7rDgeOSyWiHWzVF7ZHTbOljminWufDbhWmHEwWkhryU-0','I had a great Experience! Meghan RN was so thorough in explaining what she was going to do and what you expect.','2019-05-16 12:25:04.214000','2019-05-16 12:25:04.214000',5,'Tabitha Fierro','https://lh3.googleusercontent.com/-6BkI42xokYc/AAAAAAAAAAI/AAAAAAAAAAA/f_dS5DnQ_2I/c-rp-mo-br100/photo.jpg','6521947413723274945',8279),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBf6bMjprvoKJZo3XLsklrBo6WN2y6l7x_KnhBK8HbZHi4OOy89pSVgP39zEQhAiz9ClcJ0KMcl6FtAvYRQWIg4Zpl-I',NULL,'2019-09-05 22:38:42.676000','2019-09-05 22:38:42.676000',5,'Kim Gowen','https://lh3.googleusercontent.com/-CWVbTYVKySY/AAAAAAAAAAI/AAAAAAAAAAA/k-YaaSwE9fE/c-rp-mo-br100/photo.jpg','8679688254631342173',8811),('AIe9_BFu3rdicGrPrzdyu4PDXmqMbgTyQxR5T10Z_2_u9bxY9SayOELYIE38GpSA5XZb47vpjcEw_4sQKx2HI87M1POfOEBUO3wEiQDJXkpxWCXUvu5x00w','Great customer service! Lorena T and Amanda C at the front desk were knowledgeable and friendly. Nurse Jeri D and rad tech Morgan S were so kind! Dr. Harji was helpful and respectful!','2020-08-08 16:07:51.105000','2020-08-08 16:07:51.105000',5,'Isabella Gage','https://lh6.googleusercontent.com/-cMxvF3bvLFU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckASQKYFbq7ze7QdXxQ_GxZbMrwbA/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21980),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBJPL596BLm00juCgygqJq1h9YUQaAa05-Fks4oSWlnj0exUBvCHqXhItR9PYiYXsC9g3xfZRrYqyY1fvGxATWBgdVSs','I scheduled an appt on July 3rd for an appt on July 5 at 5am. July 4 I get an email around 7:15pm stating it had been rescheduled for 8pm July 5. Not seeing the email till I woke up for my 5am appt I showed up to see if I could get it done anyway. The front desk girls were rude and weren’t willing to help. They said they ran out of tests. My question is at what time did the extra supply of tests show up? Moving on, I left and came back and checked in around 7:40pm got all my paperwork done and turned in before 8 I waited till 11pm to get called in and went and checked multiple times for updates in between that window. Again the girls at the front were no help. I get that it’s busy and understand an hour or so around appt times but three hours on a reschedule that y’all picked. Once in the exam room I got my test done and waited for the results. My door was left open (exam room 2) and over heard many fascinating conversations from the staff. The nurses assistant I’m guessing said she was out of practice for over a year and the next one which bothered me the most was heard two gentlemen staff talking about how they don’t even clean the rooms or wipe anything down in the exam rooms if the patient came back negative for Covid! Another gentleman was going to discharge a positive covid patient and forget he needed to wear his N95 mask which he was reminded by another staff member to put one on. I was in the exam room for about 45 minutes and heard all that. I don’t think it is fair for people to choose your site and entrust your staff members and facilities to keep them safe and not just going thru the motions because the mass number of tests. I personally will never go to another one of your facilities after my experience. I want to report your location for negligence but don’t think it would do anything. I hope who ever reads this addresses the things in my comments and makes the changes needed.','2020-07-14 21:51:27.264000','2020-07-14 21:51:27.264000',1,'Grady Ihnat','https://lh6.googleusercontent.com/-z1_AodS05ik/AAAAAAAAAAI/AAAAAAAAAAA/ATgcTGgkdA4/c-rp-mo-br100/photo.jpg','14748677429039074158',21761),('AIe9_BFu3rdicGrPrzdyu4PDXmqMbM20zYbHmnuIboXl6Wi4Tr0qGvxIu0PhHym4RQDeEPZKHsY-P8TDj_2LmtxAOhp2OveDPi3HAYhxIx2bttA34gB-CUg','They staff was wonderful! Anthony, Morgan, And Dr. Vakey were so nice and got me everything I needed in a timely manor. I highly recommend coming to signature care!','2018-11-19 20:10:03.415000','2018-11-19 20:10:03.415000',5,'Remy Hebert','https://lh6.googleusercontent.com/-b7ZMNSq3bsw/AAAAAAAAAAI/AAAAAAAAAAA/MdpMQVUUONk/c-rp-mo-br100/photo.jpg','16590124370714063921',3643),('AIe9_BFu3rdicGrPrzdyu4PDXmqMboPbU4RNOUDZBWFV-3wp11OMzc1DpfZ0ySeeXfjEq9kts8itNEse_WYWJYN1IJUVVm6IxLOcEUDFIT15E2qHpSpoXdI','Great service, always!!! No wait and they always go above and beyond!!! Thanks Dr. Oappiah, Daniel, Fatima, and Tanisha was amazing at front desk!!','2019-10-16 02:24:40.406000','2019-10-16 02:24:40.406000',5,'Brittany Rayburn','https://lh4.googleusercontent.com/-KFLV3nBfvGA/AAAAAAAAAAI/AAAAAAAAAAA/0tf0yFoPYIw/c-rp-mo-br100/photo.jpg','17898197009688164559',5504),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBPm92eoL6f26myO2DWkIvUSim0oHqKOGOOCXKMVY1VaSgQXd384Fu_onD6FV6I1hy0ZQ24XXm6JKBaQIoHIPUKKVgxM','Waited a long time. But nice staff.','2020-07-21 06:09:48.090000','2020-07-21 06:09:48.090000',4,'Rebecca Degg','https://lh4.googleusercontent.com/-XemdMT1ac7o/AAAAAAAAAAI/AAAAAAAAAAA/WxV45Ruou1Q/c-rp-mo-br100/photo.jpg','14748677429039074158',21641),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBsg8hu1Pkf4N43KLzfg4VG1tK-QopSYfGEBmbsRmnvmsibkBiwkemu0M7dR4024d14Iqk23s9-nZobgsztnkqks6Ebw','Dr. Edwards, Delicia, Blake, and Waldo were all were great.. Very nice and patient with patient lol. They did every thing in a very timely manner and I highly recommend this location on','2020-02-19 22:33:29.123000','2020-02-19 22:33:29.123000',5,'Diamond Adams','https://lh6.googleusercontent.com/-h21r68-lIRo/AAAAAAAAAAI/AAAAAAAAAAA/hdzuJ4n5PUU/c-rp-mo-br100/photo.jpg','8679688254631342173',14746),('AIe9_BFu3rdicGrPrzdyu4PDXmqMbSqac5VEgdgWE_o5vBaU9Pqniv6o2CeLYKq07Iie7YUAwvctFRMNn2OIGVbVyqqfkjqpGZ5l8tXVDXkyehLsxfwgm6s',NULL,'2020-03-03 17:12:30.434000','2020-03-03 17:12:30.434000',5,'Abigail Lujan','https://lh6.googleusercontent.com/-edivoUGYHbw/AAAAAAAAAAI/AAAAAAAAAAA/N0YhXaJx4OY/c-rp-mo-br100/photo.jpg','6521947413723274945',14516),('AIe9_BFu3rdicGrPrzdyu4PDXmqMbsy3tFDGf0QiX61RdINhPSG-Zl-eJozDiWVim4PB8bOW5ffac2jAAj0zFvpYz4PKGO_rsVRKbOASK7dFRqx-du3gBCI','Fantastic service!!','2018-05-15 11:13:41.890000','2018-05-15 11:13:41.890000',5,'rick Zapa','https://lh3.googleusercontent.com/-XpWfXbd3heQ/AAAAAAAAAAI/AAAAAAAAAAA/lKJAF-jbXio/c-rp-mo-br100/photo.jpg','14567670160750071148',1623),('AIe9_BFu3rdicGrPrzdyu4PDXmqMbSzGKIxZwlnrSqpzyWrHF2moZo9xKH0YmGDxZBQ58Yit94TnmyUKtUExuZLgrcewflstUAXL-m1MyfWt4Ukdo0uvdXU','Friendly and efficient','2020-07-29 03:36:04.227000','2020-07-29 03:36:04.227000',5,'Ferony Enterprise','https://lh5.googleusercontent.com/-x2Pj8BQvPmQ/AAAAAAAAAAI/AAAAAAAAAAA/wlLZA8q8t3s/c-rp-mo-br100/photo.jpg','2077061009497551125',22772),('AIe9_BFu3rdicGrPrzdyu4PDXmqMbt6hon2Gv29qH5_sGr20YBk5pEwvFdiJCLqjLibHhJzm-Y9NtkpVjI2wXUYGq1E-8OuUXgkYYuuuhIcIeyhpKYqiXg8','The absolite best experience considering why we were there. The staff is friendly, kind and caring. I would highly recommend this free standing emergency room! Kim D. at registration, Lucas, RN , Kim Davidson, Rt, Ryan Rn, Brandy RN , Doug RT, Linda N registration and finally Dr. Henderson. Love this place. Love these people!!!!','2020-01-22 21:36:32.552000','2020-01-22 21:36:32.552000',5,'Neely Lee','https://lh4.googleusercontent.com/-T9_bxuMiJUQ/AAAAAAAAAAI/AAAAAAAAAAA/JOVObtcTqmA/c-rp-mo-br100/photo.jpg','3272657195432704501',10288),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBtq28YJ785KuZPnTbLbFhBxP2KJjItiYA66PNs5oqrspsrphTmce0gV3sjlueHzYYaZ8aR3gU1LYY1zyjY71Smc_7XY','Nurse - manny and Alexis \nDr- estevez \nEverything was great','2019-12-09 19:37:17.267000','2019-12-09 19:37:17.267000',5,'Lauren Johnson','https://lh5.googleusercontent.com/-HYirKOcMOhc/AAAAAAAAAAI/AAAAAAAAAAA/nv8OzbH5Jgk/c-rp-mo-br100/photo.jpg','6521947413723274945',8065),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBW2KO7N7CC5XnMjT3uGgEWqoEryPSATqekbl4-KQyrnH0nrHMIkoAicR8khv0GVFVYUdZ0zBM884d6KLusZXiay6mpE','Jesus, the guy at the front desk was warm and welcoming as well as the woman at the front desk Melissa!. \n\nDr. Cavazos was awsome! Helped explain what I needed explained! The nurse Dana was very nice and strait forward with things and Tricia the woman who does radiology was very kind!. Would definitely recommend!','2019-06-14 23:16:41.359000','2019-06-14 23:16:41.359000',5,'Brianna Myers','https://lh3.googleusercontent.com/-4dDBzpfWkMI/AAAAAAAAAAI/AAAAAAAAAAA/0kaxmeFi_Wk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMBYIbHOcZFxUcKu1a0K64vKkJk7J_CjVOR9J7lkF4qulWhER9gkvtu_bJX_njdb8n3v6lzK674iqBrLASjbeGJDeaMuo','Leslie has customer service and allows everyone who enters to feel welcomed. The hospital is very fast and efficient. I love the atmosphere and the positivity','2019-09-09 19:35:40.645000','2019-09-09 19:35:40.645000',5,'Atire M','https://lh5.googleusercontent.com/-40CyGaEPgWg/AAAAAAAAAAI/AAAAAAAAAAA/AubFD3D_7L0/c-rp-mo-br100/photo.jpg','3511292162159714121',7178),('AIe9_BFu3rdicGrPrzdyu4PDXmqMbzUXbJTnYQ-slGet6XzHhlF0uWyNnVwHFlvzzGBMmalJpPQW26-NDpHv-59n_kzvlAEpL0_I1r3pgU3l76_UJkIofDk',NULL,'2017-08-31 13:20:29.066000','2017-08-31 13:20:29.066000',5,'Khoi Do','https://lh4.googleusercontent.com/-u_ttGizY17E/AAAAAAAAAAI/AAAAAAAAAAA/ffR8wvA9pW8/c-rp-mo-br100/photo.jpg','17394740196501090048',4988),('AIe9_BFu3rdicGrPrzdyu4PDXmqMc-0fDaLhiwC4b5LJqut8zwTuFQxC3OHD_Q21T_uE-56A2EoFE4Lcm6k9VdTokUjQe_ImW0ESA0aWASiD6qU11WK3oE4','Took my 3 y/o son here after he had a bench fall on his foot to make sure it wasn\'t broken. The staff and service we received were world class. Aileen had us checked in swiftly and explained all of the necessary forms for our insurance, Marty and Linda took amazing and compassionate care of my son, who is usually leery of new people (I\'m still stunned at how great they were and how quickly he seemed to trust them), Dr Tran was confident and knowledgeable in her diagnosis and treatment which put us at ease, and Adam make sure the whole thing ran like clockwork. I think we were in and out in <1 hr with x-rays, forms, treatment, and everything in between. We will certainly be back here should we need expert, quick, efficient, and most importantly compassionate care in the future.','2019-12-10 18:25:03.016000','2019-12-10 18:25:03.016000',5,'Jeff Pharis','https://lh4.googleusercontent.com/-QR79wtaE3uw/AAAAAAAAAAI/AAAAAAAAAAA/3h9JYQb2yrg/c-rp-mo-br100/photo.jpg','16891069708558046635',4127),('AIe9_BFu3rdicGrPrzdyu4PDXmqMc-P5NMGfTyVyxT049GB_0qXhwg1sx7E7wM0Y7IMI80qyD86n6z6c2sQJQ0QmXTXPNHJIMXBr41wjd5rmh0-UgNJ0EPU','Very professional and friendly. They showed that they care about their patients and made sure my visit was as comfortable as possible!','2020-03-17 13:25:53.202000','2020-03-17 13:25:53.202000',5,'Ashley White','https://lh6.googleusercontent.com/-5Hegty4ptkw/AAAAAAAAAAI/AAAAAAAAAAA/dYmWzzh1EBo/c-rp-mo-br100/photo.jpg','14748677429039074158',20965),('AIe9_BFu3rdicGrPrzdyu4PDXmqMC0Zew9i0AYh9tNtPpXDGNV2CYUqHN98a2q4BT_3XrdP7ecuK_wie_VlxpRgBT1XI378FohKxigVcZWN6jxA6NFwnCaY','Exceptional medical experience. Tremendous attention to the injuries (5 broken ribs) I sustained on a recent business trip to Houston. The attending staff of SignatureCare at Memorial Center- Dr. Braun, Nurse Katherine Ayers and receptionist Airianna Carrasco took me in quickly on July 19. I had fallen and was in a lot of pain.\nThe sense of urgency, sincere demeanor and clear explanation of procedures, my condition and treatment plan is unmatched in my experience with any medical institution. Dr. Braun answered the many questions I had with patience. I had to stay overnight due to pain. The overnight staff with nurse Chris went out of their way to make sure not only was I OK but gave my wife (who flew down to help) a bed and answered her many questions. \n\nWhen I returned on Friday July 22, for them to check me out for the flight home, my experience with Dr. Akunyli Edozie, Nurse Philip Okeke, Front Desk Stephanie Garcia was also first class. The Dr. could see that I was in alot of pain with muscle spasms and the 5 broken ribs. They took an XRay and gave me a blend of medication that didn\'t affect my thinking but controlled the pain for the flight home which encountered severe turbulence. \n\nI highly recommend SignatureCare for any medical emergency. My only disappointment is that they don\'t have any locations in Massachusetts where I live.','2016-07-26 17:22:03.439000','2016-07-26 17:22:03.439000',5,'Ben Cross','https://lh5.googleusercontent.com/-scW1-b2XWQE/AAAAAAAAAAI/AAAAAAAAAAA/Q6Afnha8fzY/c-rp-mo-br100/photo.jpg','14904078213800803294',2473),('AIe9_BFu3rdicGrPrzdyu4PDXmqMcaFKpNq-_1CCoDbOChR7M_T3Shhw1AjU0PNX4rVA0X6UAhe_4ewNl1MJiLpPaoJWAsINFu5wxOgLMZMF1O0GgZcPGWk','Thanks to Luke, Kara, Gunner, Dr. Ashbrooks, and Mrs. Linda. Yall did great!','2019-07-21 04:51:33.700000','2019-07-21 04:51:33.700000',5,'Jonathan Rader','https://lh4.googleusercontent.com/-tRI91NAMkzQ/AAAAAAAAAAI/AAAAAAAAAAA/S4Z-H48Y0Nw/c-rp-mo-br100/photo.jpg','3272657195432704501',6939),('AIe9_BFu3rdicGrPrzdyu4PDXmqMcIf9BMGjAduw-NzqND07UK2LusHLVEnlLPaPJ6SlKMsdPHjvRp48Qr63chpCQz-74r4E8-Z_bkDSTNRjCsWz_F0PCV8','Everyone was great. I was in and out. Tatiana registered me, Brandon Williams and Nicole G checked me in and Dr. Sylvester was my doctor. Everyone was very kind.','2020-01-02 00:36:59.430000','2020-01-02 00:36:59.430000',5,'nick warren','https://lh4.googleusercontent.com/-erZAyg4pWIU/AAAAAAAAAAI/AAAAAAAAAAA/TdI3YbxLpnE/c-rp-mo-br100/photo.jpg','14567670160750071148',1149),('AIe9_BFu3rdicGrPrzdyu4PDXmqMcL7rf6RgVQ1coUf0s51laxsYpQoOFui9bY-nvA56XwKXSYNfg7WiVFKjqqcsGkTAmTWIKvfPRNYDPECx5q3FC-pQHWs','I came in today with my first allergic reaction I’ve ever experienced and the staff was amazing, everyone was incredibly friendly and helpful. All of the RN’s Jacob, Anthony, and Cat were very knowledgeable and very attentive, as well as Dr. Vakey who helped explained everything that was going on with me. The 3 amazing people who helped when I first arrived, Kim, Rebecca, and J.R were super friendly and ready to help as soon as I arrived! Will most definitely return to these amazing people if in need!! Thank you Signature Care College Station!!!','2018-11-30 01:03:54.347000','2018-11-30 01:03:54.347000',5,'Mason Berry Videos','https://lh4.googleusercontent.com/-paAKUrhs7qg/AAAAAAAAAAI/AAAAAAAAAAA/qArpBtr0zp8/c-rp-mo-br100/photo.jpg','16590124370714063921',3628),('AIe9_BFu3rdicGrPrzdyu4PDXmqMCR3_88MI0xnrlQLthJKP5bHOVsdbelMrAYESURhKwnYj5_fmip-DC-OQIr3sGGf8Ufr_bFMpF7WPJMonZSJbnq8BY7w',NULL,'2019-11-08 18:31:18.828000','2019-11-08 18:31:18.828000',5,'Keywaysha Belford','https://lh3.googleusercontent.com/-JBThSRgUxZo/AAAAAAAAAAI/AAAAAAAAAAA/gg_luSRv8tE/c-rp-mo-br100/photo.jpg','3272657195432704501',6865),('AIe9_BFu3rdicGrPrzdyu4PDXmqMctJMH1XsFuS9h0krZkGQgO6QsrBUtdah0SDeHsjjMpEkWT83XKaRGhlQYay7IhnUVY4hMx6BFhvGKNX9HzPdOGa7Bu4','Was helped by Dr Singla, Dustin, Ricardo, and Nicole G. They were awesome!','2020-02-06 01:23:41.203000','2020-02-06 01:23:41.203000',5,'EMMAEZ LOPEZ','https://lh6.googleusercontent.com/-09VIHZB8sb4/AAAAAAAAAAI/AAAAAAAAAAA/h7XYLXNxhMc/c-rp-mo-br100/photo.jpg','14567670160750071148',13556),('AIe9_BFu3rdicGrPrzdyu4PDXmqMCy9xo7MUmbVxZuH2T8lVD1g5kKdVfT-hUDHKkOJLzPO-x6-QoBBeYLwoLOhyHudVn6mEQ8oJCxTluDzjkwvpzuJjdqw','The staff is phenomal. They made me feel very comfortable and at ease. Great job will recommend:)','2018-08-06 20:01:46.108000','2018-08-06 20:01:46.108000',5,'savannahceleste','https://lh6.googleusercontent.com/-uSCvaL9QzJs/AAAAAAAAAAI/AAAAAAAAAAA/hFZZo5a-dKU/c-rp-mo-br100/photo.jpg','16891069708558046635',4452),('AIe9_BFu3rdicGrPrzdyu4PDXmqMdaxJp0PaYMR74uE45YPFbCR9ZW23DDVMjEr-zusvEMRccfsmI5bULNaY-ro5eYsauEIz9acTJUrRv9wHuCCzYrTDrq4','After struggling w/severe colitis attack for several weeks, reluctantly realized had to go to the hospital. Aisha, our mobile IV nurse with Luxe IV, recommended Signature Care Emergency Center as better option. With flu season in full swing, much faster service w/less exposure to other sick people. They also accepted our insurance. Such a relief. \n\nSo glad we took her advice. From the moment we walked in their door where we were greeted warmly by Patricia in Registration, we found ourselves in excellent hands. \n\nDr. Cavazos was so very patient and listened to us carefully. Such a warm bedside manner, yet thorough and very professional. The nurses, Nikaela and Lee, were very sweet and helpful - stopped me on way to bathroom so I could also give urine specimen. Good catch! A very special thank you to Ekaterini (Kat) of the sunny personality. She brought me a bottle of ice cold water and 3! warm blankets. Jordan, tech, was very patient in taking my vitals. Kelly, rad tech, has my deepest gratitude. She did my blood draws and inserted my IV with no pain at all. \n\nWithin 2 hours, I was rehydrated, given a shot of steroids, had blood tests, urinalysis, got results of all tests, good clear explanations and recommendations, and got a Rx for the medicine I needed. They also sent us home w/a complete care packet written in clear language repeating all verbal info with a copy of all tests results and additional care recommendations specifically tailored to our health challenges. \n\nUpon exiting treatment rooms, we were welcomed by a huge straw basket of complimentary old fashioned lollipops. What a lovely gesture after our exhausting ordeal. \n\nCan’t recommend highly enough. \n\nUPDATE: Just received a follow up call to see how I’m feeling. So impressed.','2020-01-20 00:00:29.881000','2020-01-20 00:00:29.881000',5,'KA Hall','https://lh3.googleusercontent.com/-_fom2RXifV4/AAAAAAAAAAI/AAAAAAAAAAA/Dh-4EV52u5Y/c-rp-mo-br100/photo.jpg','16389487648212004696',9969),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDDgwXECpjAohgHFpLo_StWYx93PG1kuCX3IlWE5NHLlm7FKHIldaE0DCmT0fKC8EYzqogS-TxqOpfJj27gVdONmF02Q','Had a great experience. Dr. Smith had a great bedside manner with my son. Alvean was a great help also. Jocelyn at the desk helped up check in quickly!','2019-05-26 12:38:24.889000','2019-05-26 12:38:24.889000',5,'Paul Smith','https://lh3.googleusercontent.com/-4IkdyyHctsQ/AAAAAAAAAAI/AAAAAAAAAAA/mRBApPRz7pY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMddtoM9Xfnp5YDdp8xC6rHqLKsagcxzEIyNc2P_zLl4d18ru5CNZMmSqXeV9JiPrjaO092S51R-7Qc--WtWE1rsqth9Y','Dr Dendy and all staff were very polite. Troy (the nurse) is the best at administering shots. You won\'t feel a thing.','2019-10-01 03:42:15.823000','2019-10-01 03:42:15.823000',5,'Manuel Garcia','https://lh6.googleusercontent.com/-YOqCuPP2r0A/AAAAAAAAAAI/AAAAAAAAAAA/VBsZljFtwIg/c-rp-mo-br100/photo.jpg','16389487648212004696',2871),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDe-GmgpFSSKyr0XGZyGUJmvQ0R0hh61Kc8ILZoENUBOL0AtBtbJRgr0Lq8uhHkHURnT3Dn1pexxFjptAvjMFF2JZKBM','Process was fast and friendly. I made an appointment online as recommended by Cody. I took my daughter to get tested. All staff very friendly, results in 30 minutes.\nThank you Nydia and Brenda and the whole team!','2020-07-26 22:20:24.023000','2020-07-26 22:20:24.023000',5,'eliseo ramirez','https://lh6.googleusercontent.com/-S2TT_jKTFTA/AAAAAAAAAAI/AAAAAAAAAAA/A8G8ViODZzA/c-rp-mo-br100/photo.jpg','2077061009497551125',22816),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDgaFxdhvc4bSIdV4wSLM1CNWB-IcTfgB9564Vco5XUbW8rcky6A3FOdPZLr9yoSI__vykdTeHtrpfc791a9-ZDrsDuE','No one enjoys going to the emergency room, but the staff here made it a better experience. I’ve been to other ER’s and it was hectic and I just felt like one of many patients they didn’t have to time to deal with. But here at Signature Care everyone was kind and patient. I dealt with the nurse Rachel and she was great very gentle and considerate. The ER tech Jessica that did my ultrasound was gentle and informative. The doctors I dealt were also good, I didn’t feel like I was being rushed they answered any questions I had and were helpful and friendly. Also the ladies that do the registration were very upbeat and friendly. I had an overall great experience here. I would recommend this place over any ER. The staff is great.','2019-01-27 15:04:55.239000','2019-01-27 15:04:55.239000',5,'Concetta Palmer','https://lh3.googleusercontent.com/-pAMNMjS--wo/AAAAAAAAAAI/AAAAAAAAAAA/VeilPflqi5E/c-rp-mo-br100/photo.jpg','17898197009688164559',5874),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDKJVYNgjR1wfDpVUwfkJENTyvNvh9SM_BgAuFXA6SZPCG_GsQWV8hWOoRM-sk0cowwSuHI3bEwvYVbEJEqDhbod6NTs','Had a great experience Laura was so helpful and made everyone so welcomed!!','2020-03-01 19:28:57.346000','2020-03-01 19:28:57.346000',5,'Alexis Lamastus','https://lh5.googleusercontent.com/-1yK5msiFOVk/AAAAAAAAAAI/AAAAAAAAAAA/_8c_82z0HCc/c-rp-mo-br100/photo.jpg','16590124370714063921',13812),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDKXosZDEsfpfnxMIVz5rEKgVlEENu_1Fr0r_dPy6W2usOJd6bWL14IjAfXcwYnqrEt0PFvKwcYxT-OlT1M8y1TUOVog','Great experience!! Alvean and Tricia are wonderful people who made me feel at ease. And Dr.Wang is awesome!','2019-05-23 14:58:43.034000','2019-05-23 14:58:43.034000',5,'Robbie Conner','https://lh4.googleusercontent.com/-PkqWdfMWoi8/AAAAAAAAAAI/AAAAAAAAAAA/udL2A2VluBQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDlQNmgZ5myd6Hc-OXA0ttZfy3AQo_dIksBaPi4VJQgCMfVAkxG6zT3rdm5gEf3KuWhpmJ5HDgean6WTWeG8a3qbSps8','Came in for Covid testing I was so nervous, the staff starting with the receptionist was very kind, caring and attentive. They took me back in less than 10 minutes. Got me taken care of quickly! I had my results in about 15 minutes. Dr. Wong was super caring and informative !! Definitely recommend this urgent care hands down !!!!! Thank you Signature care !!!','2020-07-30 21:41:15.830000','2020-07-30 21:41:15.830000',5,'Jenacy Chlamon','https://lh3.googleusercontent.com/a-/AOh14GigxnMb7Cuk-ahBhoXa4-rgWsOFLaeT5Gvs5U2rNQ=c0x00000000-cc-rp','17394740196501090048',22064),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDo0-TJjBbBe8OqEngX0Xz9GhaLK4wuQxZwJxqVdIOg4gy2UhGcmuDzFHg-QOMrE9VTaM-3Fn4niSYXV1c1XRK9LJLTs','Everyone was great and efficient\nGreat job melissa jani jose david and andrea','2020-01-13 03:31:11.890000','2020-01-13 03:31:11.890000',5,'Robert Vaughn','https://lh3.googleusercontent.com/-fPMby7Gs0RM/AAAAAAAAAAI/AAAAAAAAAAA/Ni4TuPVdi8w/c-rp-mo-br100/photo.jpg','16389487648212004696',9547),('AIe9_BFu3rdicGrPrzdyu4PDXmqMdq6EYegEfhsuODZjdpRuse5siwG6d8CEyRIiEmqbwNfRFgPj2VQo9JRazhwMTMzXPvEirqVcay9Izx6G2LqUrgzsEuw','Everyone I interacted with at 24 HR emergency in Pflugerville were so friendly and sweet! Made my visit a breeze!','2020-07-25 23:13:43.029000','2020-07-25 23:13:43.029000',5,'Chelsea Bousquet','https://lh3.googleusercontent.com/-ZHfnka70HC8/AAAAAAAAAAI/AAAAAAAAAAA/XDsfWI0ppKI/c-rp-mo-br100/photo.jpg','2077061009497551125',22839),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDSDmlFelmcYJKXtGCYJUJgTKiHgMNMnlv_sqQUYuduDz5D1BMqYCu0VpZEP1qI0wKArhjWJ6pZv6YcXrh46svItihZs','When my mother-in-law who was visiting from Japan came down with bronchitis, I brought her here for care and was very grateful for the attention and services she received. The staff did a great job making her comfortable.','2017-10-20 22:01:38.723000','2017-10-20 22:01:38.723000',5,'James Watson','https://lh6.googleusercontent.com/-bDIqyyhRXfE/AAAAAAAAAAI/AAAAAAAAAAA/uoKuwdTbuBQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4536),('AIe9_BFu3rdicGrPrzdyu4PDXmqMdtgxuh8iwnppbHm5PiuCX6vkcT9GPEDNczyQAPokdPh1XxiS-4Y62Bm8x-YSBDCx_ZxppnhpedY1oBjDkhe1UOqptP0','Wonderful staff, super fast. I was seen by Dr. Tran, Troy, Marvin, Jesus and Sean.. amazing team of people','2019-09-25 03:44:11.207000','2019-09-25 03:44:11.207000',5,'Jules Tresa','https://lh6.googleusercontent.com/-4M_1Sj7bphs/AAAAAAAAAAI/AAAAAAAAAAA/JCgT7gzQfZ0/c-rp-mo-br100/photo.jpg','16389487648212004696',2884),('AIe9_BFu3rdicGrPrzdyu4PDXmqMdUBt-1FCrx-WeEe9P21Agp9r6Lvu-1PxQ15awCgYlYcHANFM4JPbR5TP5XISuQp_jVzqAsWUqA151L7vnqVF1FrFbXE','I had to bring my daughter to the ER this evening for abdominal pain. The staff was very friendly and made sure she was taken care and also made sure I was comfortable. We were welcomed Veronica and she was friendly and got us seen fast. Her Doctor was Dr. Zhen answered all of our questions and made sure she checked everything, nurse Irving and Tech Thelma was great!! They were very attentive, her radiology tech Sherwin was knowledgeable and fast.','2020-03-03 07:36:10.686000','2020-03-03 07:36:10.686000',5,'Terrie Palmore','https://lh4.googleusercontent.com/-8pNAc4YHQf4/AAAAAAAAAAI/AAAAAAAAAAA/HpDJOR5KOxw/c-rp-mo-br100/photo.jpg','12541597562633926366',13319),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDV5s5Z4tDIEGAgIVQxrUWZWKoUNC3WB1DOhRX5f7rLLRarS5KFkRk1f0CG4t5m9jpRu1wsK9K1Fn13-rN4KC7OQWQeM','It was fast and easy. Keera is the best!','2018-09-07 01:32:59.607000','2018-09-07 01:32:59.607000',5,'Luigi Martinez','https://lh3.googleusercontent.com/-vmgXCxQHmuA/AAAAAAAAAAI/AAAAAAAAAAA/OTTeV8otMlA/c-rp-mo-br100/photo.jpg','16590124370714063921',3740),('AIe9_BFu3rdicGrPrzdyu4PDXmqMdw-NkTUJiR5tqjzyYsAzaS_Erd8YT8cpwurSjDj_m_APClz-5FFP9Al5hiC--f19440DCksKsU301UKTma5egc9AKk4','Great service !!! Fast Thank you','2019-05-08 21:14:02.534000','2019-05-08 21:14:02.534000',5,'Heavy Equipment Mechanic Kell','https://lh5.googleusercontent.com/-SPa3Vaf5mSs/AAAAAAAAAAI/AAAAAAAAAAA/_TCuJ-SWbAA/c-rp-mo-br100/photo.jpg','6521947413723274945',8284),('AIe9_BFu3rdicGrPrzdyu4PDXmqMdXaLaiqqErp6uxwHpLBiajj8IuE58sqRQourQhAqbgmz56vl08mZtokg5hN5TcAt9-saEYz6Gf2olGF1io4v0eLVH-Q','I got a COVID-19 test and had as good of an experience as I could for 4 am. Spots are obviously limited but then again, tests are limited statewide so that\'s just par for the course. Staff was very pleasant at 4 am and had some good humor. Instructions and communication was clear and effective and an overall good experience. As a mild disclaimer though, I haven\'t seen the bill yet. Hopefully it\'s reasonable but then again if it isn\'t, even then I\'d blame insurance.','2020-07-18 20:18:28.164000','2020-07-18 20:18:28.164000',5,'Bradly Montgomery','https://lh3.googleusercontent.com/a-/AOh14Gi0AX1IQe_iZSa_7_LyXt56EcDNol14uLCkuUnCLA=c0x00000000-cc-rp','16891069708558046635',22036),('AIe9_BFu3rdicGrPrzdyu4PDXmqMdy_X6q8XBVpj6q4eSYmzqOULPurIH3xll29l6-fp-fsITwKnJGytAVJyHW9qyejKXcqDZBuEs0PyQXT7Gd9PRkUJEvo','Keera was very nice. Thank you','2019-06-25 12:40:01.595000','2019-06-25 12:40:01.595000',5,'The Drone','https://lh4.googleusercontent.com/-8znxmnH9oNg/AAAAAAAAAAI/AAAAAAAAAAA/_IGoSUvSEIk/c-rp-mo-br100/photo.jpg','17394740196501090048',4652),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDYkNKv4mJqfRBrfPcT8nXP38t9WYpuEJb0njdUsACMi8FMI74jr_HyjFF9e8mk-XqRFCHA2B6Yr-ks4DgylQeow9uG8','Great staff! Excellent care, very fast and clean facility!','2019-06-30 19:47:00.159000','2019-06-30 19:47:00.159000',5,'Jerran Townsend','https://lh4.googleusercontent.com/-rjNG1MTHSM4/AAAAAAAAAAI/AAAAAAAAAAA/cFkS4NFai4k/c-rp-mo-br100/photo.jpg','13486358490203335051',908),('AIe9_BFu3rdicGrPrzdyu4PDXmqMdYM-n1mA_TEtkEUoNtUNczB9VZVz73wj_1Qi518EibQ85mQjoanGUem1EaKuCIflqby0u_geaJ9lxznutlnBsEOh-CY','Great staff thanks Dr.Dang','2019-06-08 00:12:45.549000','2019-06-08 00:12:45.549000',5,'Andrew Spencer','https://lh3.googleusercontent.com/-ekUKqWF_xec/AAAAAAAAAAI/AAAAAAAAAAA/VnArfEFgcPs/c-rp-mo-br100/photo.jpg','14904078213800803294',2132),('AIe9_BFu3rdicGrPrzdyu4PDXmqMDzrt6o8tLl0CURyL685BdxdArPg5ms73cKEucTzB6nOdESLrJa_rwQgvKMYYyCmUjVU5iSLmvf2WvcENcKYacZs-ork','It\'s was a welcoming experience, Dee was polite prompt in getting you to the doctor','2017-12-16 18:13:48.952000','2017-12-16 18:13:48.952000',5,'Vonzell Charles','https://lh5.googleusercontent.com/-Gg6klw_u-us/AAAAAAAAAAI/AAAAAAAAAAA/I9TdlGEw8qM/c-rp-mo-br100/photo.jpg','14567670160750071148',1712),('AIe9_BFu3rdicGrPrzdyu4PDXmqMe1liGm3uI6YsTN5dKP132atp899GnlsYOm27mDw0yhKe1d81K0yuwLEtuK7Na1Nq9VcfW89b8tpuyAe9EVq9TSjzTD0','This place great, The staff and the nurses helped me With so much care i felt like I was home, they’re very friendly, helpful, and welcoming; here are the doctors names who took there time and made sure I was alright: Ekaterini (Nurse) She was very nice soft spoken and able to talk to, I definitely recommend people to ask for her, Marcus (Rad Tech) He was a great guy as well he checked my vitals as I came in and got me help ASAP. This hospital is great and I definitely recommend this hospital to family and friends They get Five Stars from me! ⭐️ ⭐️⭐️⭐️⭐️','2020-03-13 15:50:22.869000','2020-03-13 15:50:22.869000',5,'brandon james','https://lh4.googleusercontent.com/-EinZaftAFmw/AAAAAAAAAAI/AAAAAAAAAAA/MrlBTTDakes/c-rp-mo-br100/photo.jpg','16389487648212004696',17233),('AIe9_BFu3rdicGrPrzdyu4PDXmqME4rag9xvdP0TZBNQCWA6A8RvvtszlenMD_NoCQkiCwpXn5-GJsvadlYZ-uDb9zPs_hLk6mSwn2KofyvfUR6fg5gUcMA','Excellent service. Thank you so much Erica,Joseph and Regina. You guys are great','2019-12-23 18:33:27.259000','2019-12-23 18:33:27.259000',5,'Marcus Wilson','https://lh6.googleusercontent.com/--MXujpkq5Y8/AAAAAAAAAAI/AAAAAAAAAAA/zd_-orE3IBk/c-rp-mo-br100/photo.jpg','14567670160750071148',1162),('AIe9_BFu3rdicGrPrzdyu4PDXmqMe6KMrmgoMoDWkbuxR56Wj6ZuaIZhywIHLRhdxOIrF3Q80UPIDiN77O-bDaKIIMDI1GLKN0Y7NtqYyHo48j7XWnnMtwM','Jennifer D. And nurse John Bell and tech Kanyon did amazing. They took very good care of my baby. I recommend this place to anyone. Definitely an A one care.','2019-12-16 17:30:21.922000','2019-12-16 17:30:21.922000',5,'stormi debo','https://lh5.googleusercontent.com/-GhS2_5BxHzA/AAAAAAAAAAI/AAAAAAAAAAA/CJFadJaDEF4/c-rp-mo-br100/photo.jpg','8626688543755174284',14645),('AIe9_BFu3rdicGrPrzdyu4PDXmqME9gxdrV5UkN12tCZLQotEH2mnnxaa5kFLJg9NcCUA5agZGudfGDwtMWwSy34FL0ilpzp2ODCLryLe7xQ-AuwAiPZUQ8','Great people and excellent care. This place shows great hospitality and were very detailed in their care. Highly recommend.','2019-02-16 02:45:16.268000','2019-02-16 02:45:16.268000',5,'Justin Torres','https://lh4.googleusercontent.com/-E8JWjrH4a44/AAAAAAAAAAI/AAAAAAAAAAA/bgxe7sP14So/c-rp-mo-br100/photo.jpg','16891069708558046635',4347),('AIe9_BFu3rdicGrPrzdyu4PDXmqMeAzPzjq5rvZubiC_ShDvKDQ6GyPudJmayaHe0U-bpRYW5BQgFXd4xNoBEXvPoOhT9ZHM97KQiLH0BHdh4eyvR6GEWnE','AMAZING. Tanishia was so welcoming and wonderful. Will for sure come here for any emergencies in the future.','2019-01-02 01:12:04.391000','2019-01-02 01:12:04.391000',5,'Michelle Besaw','https://lh6.googleusercontent.com/-Rj-5CtdarMc/AAAAAAAAAAI/AAAAAAAAAAA/oNEr1pg4m20/c-rp-mo-br100/photo.jpg','17898197009688164559',5899),('AIe9_BFu3rdicGrPrzdyu4PDXmqMEbVPe7YXw993BiELHUGLLePg6vAQ1WsrQNMhPS5EMuJMpb4S4xgi1AsHFRKMiOswjMJ-nEHOTGfTp6whg6uUg5FWuqk','I highly recommend this emergency center to family members and friends. Very Clean facilty and takes good care of patients in a timely manner.','2018-01-23 03:31:32.410000','2018-01-23 03:31:32.410000',5,'Emily Estrada','https://lh3.googleusercontent.com/-AMJIIbum64o/AAAAAAAAAAI/AAAAAAAAAAA/w0rxHMFY_Eo/c-rp-mo-br100/photo.jpg','14567670160750071148',1672),('AIe9_BFu3rdicGrPrzdyu4PDXmqMECtFgG7jHOj3u7XULDBlUYKQWjIcB7pgq3a9B2fv-H4M0zEkZ8jE1_6ulPjQur-ADv_Ug5k5vcV4vDGnOprvuE931-8','I really loved how I didn’t have to wait and how they gave my brother a stuffed dog for Valentine’s Day!','2020-02-14 23:05:25.686000','2020-02-14 23:05:25.686000',5,'Lonely. Flora','https://lh5.googleusercontent.com/-PRLp-uuXFzk/AAAAAAAAAAI/AAAAAAAAAAA/MOwT2HUaq90/c-rp-mo-br100/photo.jpg','3272657195432704501',14361),('AIe9_BFu3rdicGrPrzdyu4PDXmqMeeNa-w5wBzFueUZfhQcPw8iBeehtZWChvsJ3FabAlJHO7ZTtrTGiO5KdX3UQbZ5fuqp5t4oeEqmcsYFvzkVNUrc-gzI','When I arrived my blood pressure was really high. I did not have to wait in the lobby long at all. The young ladies at the front desk were very friendly. The nurses really took good care of me. And the was awesome; good bed side manners, caring and very passionate about his work. He even referred a doctor for me to follow up with. Thank you Evelyn A.; Diem T.; Rachel B.; John L. and Dr. Vaagenes','2018-02-28 00:07:17.758000','2018-02-28 00:07:17.758000',5,'Sheryl Neal','https://lh6.googleusercontent.com/-PpVjYtQwogg/AAAAAAAAAAI/AAAAAAAAAAA/9yaEfbvnA4I/c-rp-mo-br100/photo.jpg','14567670160750071148',1650),('AIe9_BFu3rdicGrPrzdyu4PDXmqMeHgP7NWOrWx-FLZkVlldbnZGSwnZmGFaYTaBpe4jashzMUjE706eisx70mCEF0QqTn7nP4y-qOFt4VcbSxf0fHAtWm8','Thank you to the team at SignatureCare! This injury to my hand could have been much worse if it hadn\'t been for the care and insight of y\'all.','2018-09-10 20:54:33.713000','2018-09-10 20:54:33.713000',5,'Andrew Martin','https://lh6.googleusercontent.com/-eU3kzqm_jwg/AAAAAAAAAAI/AAAAAAAAAAA/fO-Ya6dqpkY/c-rp-mo-br100/photo.jpg','14567670160750071148',1514),('AIe9_BFu3rdicGrPrzdyu4PDXmqMej4DUO1yLie0HPUvKrz4GkucFvKQi7GwAkiprmnhGcxgKhlKj_edtk-ncGAx5edx2Bfd7rcRqgcxYG5U8PIo578tDis',NULL,'2019-09-27 05:14:34.940000','2019-09-27 05:14:34.940000',5,'Carlos Garcia','https://lh6.googleusercontent.com/-W_pzr-w2KXM/AAAAAAAAAAI/AAAAAAAAAAA/ngKPuJ5_lN0/c-rp-mo-br100/photo.jpg','13486358490203335051',812),('AIe9_BFu3rdicGrPrzdyu4PDXmqMEm7gwaZ1xDrHql6eZObZdsAQerSzl3lBPZOT9n7BvxGXnJR_w_RSdqrttgY8RnHPultFYES0KLXlhJ9FyJMe6CbqTBA','Dr Yost, Mollie, Brandi, Shannon, Tobie and Shelbie were great with my son at Signature Care!','2020-02-23 01:59:57.390000','2020-02-23 01:59:57.390000',5,'Brandy Campbell','https://lh4.googleusercontent.com/-Z5CWiyq-uSs/AAAAAAAAAAI/AAAAAAAAAAA/AhPNsSlCEks/c-rp-mo-br100/photo.jpg','3272657195432704501',14332),('AIe9_BFu3rdicGrPrzdyu4PDXmqMemptyT5-MRy3ELHistEeMnFtZMDiwEwZXAzlpKluP-kPY9zNcyYZwBHsefTQkNNFxLqBGX00H31u1mXR0PPZJ3m1Pa4','Very welcoming crew who explains everything and answers all questions.','2019-03-17 16:26:51.302000','2019-03-17 16:26:51.302000',5,'Jude Ricondo','https://lh5.googleusercontent.com/-7PHCIJIFqg4/AAAAAAAAAAI/AAAAAAAAAAA/iwDPK1h7BDQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3501),('AIe9_BFu3rdicGrPrzdyu4PDXmqMePu67UIQQ3X014jaN_8DI2_1kzFelDXlq5sQ5W7sapWPd3hssa5fi0j6bUPHfPjmyef2iKa07Ieg6ZB9sI7RqqcGQEs','Nikaela, Brittany, & Jocelyn was so helpful and my experience very comfortable. Great staff!!!!','2020-02-29 16:43:14.957000','2020-02-29 16:43:14.957000',5,'Tasha Calli','https://lh6.googleusercontent.com/-3SUnMdMXxeU/AAAAAAAAAAI/AAAAAAAAAAA/mxoP12Oy3Jg/c-rp-mo-br100/photo.jpg','16389487648212004696',13749),('AIe9_BFu3rdicGrPrzdyu4PDXmqMeXH0C4n80MIiMbMEAS1XX6ZnRMn8DJkiLQbK9l_J1DGkiaprzrNu1AvIOggesiUshvyKUIrOe5OY9GDFZjOHaVpi8As','It was a pleasant experience being that I couldn\'t walk in with my knee being injured. I was greeted by a great staff and Nurse Karen was very attentive even worked with me with my insurance. Dr. Boester is very observant along with staff. Thank you a great weight was lifted knowing my knee wasn\'t dislocated again.','2019-10-29 04:30:29.854000','2019-10-29 04:30:29.854000',5,'KKjoy Peters','https://lh3.googleusercontent.com/--FX_q8mnMs0/AAAAAAAAAAI/AAAAAAAAAAA/lAM38yYMqTc/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7153),('AIe9_BFu3rdicGrPrzdyu4PDXmqMEy82Y90Q5LtRN9u3GAvC2QPvz0yrU6u3neh1W3aZ8doALJfp1706mf1Dlq79BqhYxGRWoRJlnZAZtyoi7Y3WAoAps3A','I was very impressed with the care I received at Signature Care ER. The receptionist Christina was very welcoming. Unlike other ERs I\'ve been to, I didn\'t have to wait for hours. I was taken to a room right away. Both Christina (nurse) and Dr. Lingan are very knowledgeable and compassionate, they took the time to listen to all my concerns. Overall, I was very happy with my care. I definitely recommend this facility.','2018-04-10 18:16:19.629000','2018-04-10 18:16:19.629000',5,'Janet Alcantar','https://lh4.googleusercontent.com/-lTEWHsN1CcI/AAAAAAAAAAI/AAAAAAAAAAA/1ZKm-R9rxlk/c-rp-mo-br100/photo.jpg','16891069708558046635',4489),('AIe9_BFu3rdicGrPrzdyu4PDXmqMF723ncFuW-axSQWS_6y6FuxtUyll2d0b9qvkGTNYv1EvI98oglR_urEJvoy6nH9_rd3eV_Rw-vCYj3hUQPDA1B46WEU','Friendly staff, minimum wait time. Jocelyn at the front desk was sweet and helpful. Alvean was my nurse. Her attitude was great! She gave me a shot while she distracted me... that says a lot, I hate shots! The doctor explained everything to me and he was super friendly as well. Amazing staff and service. Thank you for making my difficult day a little easier guys ;)','2020-02-19 15:55:45.808000','2020-02-19 15:55:45.808000',5,'Marionnth Dcroz','https://lh6.googleusercontent.com/-BifQB2-adUs/AAAAAAAAAAI/AAAAAAAAAAA/Nf71TkXxBG0/c-rp-mo-br100/photo.jpg','16389487648212004696',10870),('AIe9_BFu3rdicGrPrzdyu4PDXmqMFAMQuNqVMLA9hENYBcUesABikufT8UyEPeebRZd31qveZmz1H-DmSY9dUcn7eb2sh-zo4lzcscWpZD_zT6E9hVRbx7E','Had a great experience here. I had gone to a clinic the day before and they didn’t help me much. So I looked up other centers and found this one! And it was a great choice. They attended me right away and got me a room and were able to help me with my situation. And I was out quick with the solution solved. Great staff and great customer service. ❤️ Highly recommend. Thank you guys again! :-)','2019-04-30 15:49:49.356000','2019-04-30 15:49:49.356000',5,'Genesis Robles','https://lh3.googleusercontent.com/-rlxONn2drzI/AAAAAAAAAAI/AAAAAAAAAAA/ZKYklrjDgoQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4292),('AIe9_BFu3rdicGrPrzdyu4PDXmqMFe-6QJfijqL3Ycx77KC5RGjZPzysMIwpX7IMPN127TSbqzRVlPER8Q6RuHn5iVGw_sI24Iu1bRPTQArXf0SF_wIHBug','Everyone here, from the front desk to the nurses to the doctor, were outstanding and provided thorough care/treatment. I definitely felt like an actual human being instead of just another patient to go through. Would recommend 100%!!!','2017-08-14 19:11:29.677000','2017-08-14 19:11:29.677000',5,'Katie Henning','https://lh3.googleusercontent.com/-HRDsmbm8bxI/AAAAAAAAAAI/AAAAAAAAAAA/OdCfcZEE8GY/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7795),('AIe9_BFu3rdicGrPrzdyu4PDXmqMfevLGZ4gqM-EmO5wLz_wqbF6UUzpjN84HYtM1OJOXEvUTcbqMeJECHIwAS33otAEd3I5AfiMYygRu54asuyjUobZX3c','Dr. Edozie\nJani nurse\nEr tech Brian \nRad Marcus\njasmine registration \nThey are all awesome I love this place...','2019-11-12 15:00:31.940000','2019-11-12 15:00:31.940000',5,'Erica Davis','https://lh6.googleusercontent.com/-8gusyEof3TU/AAAAAAAAAAI/AAAAAAAAAAA/y8otrQ8NGlA/c-rp-mo-br100/photo.jpg','16389487648212004696',2714),('AIe9_BFu3rdicGrPrzdyu4PDXmqMfEzj6_Az9gZ7XHmfoqbZ0hjYBpfT9rolmWpFIGdTVjXgEJbUpRqIVChqG83rjuMYHfKviOjSHeQiqGtSUqrg4HsCkWQ','Clean facility! Staff (Robin, Courtney, Brandy, Dr Jorden) was very attentive and provided care in a timely manner!','2019-05-06 01:43:25.048000','2019-05-06 01:43:25.048000',5,'amanda young','https://lh5.googleusercontent.com/-fl7jQ7CMD5Q/AAAAAAAAAAI/AAAAAAAAAAA/V3waSo2C9W4/c-rp-mo-br100/photo.jpg','8626688543755174284',8494),('AIe9_BFu3rdicGrPrzdyu4PDXmqMfg7rypNzEu0NBfOD6bAXbxwBFRAM_HGCnMjYKFYc6LKV0Ni18u3NxSwBtPx84pOWvHbo-fc_Dzdxh4nkVn9N87RtXMo',NULL,'2019-04-12 12:20:47.442000','2019-04-12 12:20:47.442000',5,'Tim Arredondo','https://lh3.googleusercontent.com/-Nzu9nHXgg-s/AAAAAAAAAAI/AAAAAAAAAAA/SK-liwWbUPs/c-rp-mo-br100/photo.jpg','13486358490203335051',1039),('AIe9_BFu3rdicGrPrzdyu4PDXmqMFjL9l0OTgk1nAwkX-KaxzFu5BLBOVA9oU9WkekGvKqeCV6buPL8HSPfZboBfaHSkhdfymGhRmS46-tPMCApBVexJ_GQ','A great experience here. From my greeting when i walked into the door to our nurse Manny Guerro and then to Dr. Osiecki. They treated my daughter with great care and were very generous. I will definitely be coming back. 2 thumbs up!','2019-01-19 15:33:26.801000','2019-01-19 15:33:26.801000',5,'Joseph Prochazka','https://lh3.googleusercontent.com/-nzw9JQjAx1k/AAAAAAAAAAI/AAAAAAAAAAA/5RDZgwjoBSY/c-rp-mo-br100/photo.jpg','6521947413723274945',8322),('AIe9_BFu3rdicGrPrzdyu4PDXmqMFKxVXY8gyNUn1qYMIJT1tzBicwkNHwCwQOY78WtjNFAzwGut-5OHKcPWdUEdSarZNUBcay_TTYNFR-mCPNDmO4o4DXo','We were seen in less than 10 min! The staff was very friendly and helpful with our questions. In total we were here for less than an hour!! \n\nEDIT UPDATE: so I get that it’s considered an emergency room but to over bill us over 2 months later is a joke! Now I’m dealing with our insurance and trying to figure this mess.','2019-12-20 02:14:18.724000','2019-12-20 02:14:18.724000',1,'Eliana Arnold','https://lh4.googleusercontent.com/-M8RNNcN-Bfk/AAAAAAAAAAI/AAAAAAAAAAA/-8_vlLZUbZ4/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',684),('AIe9_BFu3rdicGrPrzdyu4PDXmqMfQbIFad-UI2VRdOsngY7FBop-_YeJWzwpu969BC7vOAdac2DvVvngNzbf5D7yKIWz4kdnntl1qzAPJUJsycPuyR-1J0','Awesome service!!! Clean facilities, superb attention, everyone was friendly and cared about my issue... I was seen in a timely manner and everything was explained to me in detail. Definitely recommended!','2019-11-07 03:06:02.065000','2019-11-07 03:06:02.065000',5,'Herbert Castillo','https://lh6.googleusercontent.com/-eF3lQ63MSFk/AAAAAAAAAAI/AAAAAAAAAAA/JMyvLg8sn0U/c-rp-mo-br100/photo.jpg','17898197009688164559',5458),('AIe9_BFu3rdicGrPrzdyu4PDXmqMfWFmSkaqZw9Wkts3y2RI4-tCckrxBVsZdXSCAo56P7ZBlhUZWunnqVwPuay_HkoO4czWu1LR5E3RwjjG-sN9Bn9vc2Y','Thank you Signature Care staff in Odessa Tx. You all did an awesome job taking care of our baby. Thanks for being polite, kind ,and patient. \n\nThank you\'ll,\nDr. Osiecki, Maria, Leo, David, Manny, Magali,and Delpha.😁\n\nSincerely,\nSoto family','2019-06-08 22:53:00.538000','2019-06-08 22:53:00.538000',5,'amanda soto','https://lh4.googleusercontent.com/-iTfryYhS7yY/AAAAAAAAAAI/AAAAAAAAAAA/Jv5nbQn_qO4/c-rp-mo-br100/photo.jpg','6521947413723274945',8246),('AIe9_BFu3rdicGrPrzdyu4PDXmqMfXaMQ1KgSDV5bA46YUMmu07Z5FD6vEzDNzYqpWyuucpAU1Unuse_58lnnYjiy7yf4Fws0pKElDbq3xnZryqEE_0KUSo','Ashley and Dawn was awesome.','2019-06-08 18:47:28.832000','2019-06-08 18:47:28.832000',5,'monique sonnier','https://lh4.googleusercontent.com/-sWSX2QK-GWo/AAAAAAAAAAI/AAAAAAAAAAA/NBGic2mUbIo/c-rp-mo-br100/photo.jpg','17898197009688164559',5707),('AIe9_BFu3rdicGrPrzdyu4PDXmqMFyJHTj6Ug0DqfZE6Www3Ho-82jScZ_Z0M0Y1AdurlCe3-eQyaInggfP6l8OnOJZ3QridFlHZl2JheaJUkUMsWObL7As','We were a bit worried about Testing for Covid but Jessica S took all the worries away....Thank you guys for the testing as this was the closest place to where I live to get a test done','2020-07-16 18:42:03.249000','2020-07-16 18:42:03.249000',5,'Tirrell Morrison','https://lh6.googleusercontent.com/-s5dOEqxc_90/AAAAAAAAAAI/AAAAAAAAAAA/FprOE0U9qjY/c-rp-mo-br100/photo.jpg','14748677429039074158',21754),('AIe9_BFu3rdicGrPrzdyu4PDXmqMG-AOQ6As9ydQbMHOl6OG2Pu4YgjOxy6KsafCKha9EhwyjZ9br1RfBgd8xW9apjXLKKY19heh9bgstpgPkFbh3muyMr4','I went for a COVID-19 test. I was \"forewarned\" that it would be a long wait, and that I needed to go (in person) the day before in order to get an appointment/wristband for the following day. I went on Monday afternoon in hopes of an appointment on Tuesday - but what I had heard was not quite right. They start assigning appointments at 4am for that particular day. The guard at the door said it was best to get there between 3am and 5am. Just to be safe, I got there at 1am Tuesday. By about 4:30 (yes - over 3 hours wait) I had my appointment set for 7am so I went back home to grab a short \"nap\". I returned at 7, but it was 8:30 am before I finally got called in. I got my result at about 9:30.\n\nDespite the delays, I gladly give this place 5 stars because, again, I was expecting a long wait anyway. I had tried another test provider late last week (a non-rapid drive-thru one) and it was chaotic. SignatureCare, although slow, felt organized and professional. Given all of the unpredictability and craziness with this pandemic, I don\'t think the back-and-forth and delay I experienced was unreasonable at all. Like another reviewer noted, the entire staff (security personnel, reception staff, nurses, and doctors) were friendly, caring, and calm during the whole time I was there. I would recommend this place for COVID-19 testing, with the stipulation that it does take a long time...plan to wait but be patient! \n\nI really appreciated the entire staff, their hard work, and their ability to stay cool and upbeat under pressure, even with the constant threat of virus exposure they face. It helps that I tested negative, but I just wanted to express my thanks!','2020-06-23 18:40:26.517000','2020-06-23 18:40:26.517000',5,'John Byers','https://lh3.googleusercontent.com/-vy6XFa8IbUs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn2qJJ04jQTJUs6mUb2geTd3jyMtA/c0x00000000-cc-rp-ba3/photo.jpg','17898197009688164559',21078),('AIe9_BFu3rdicGrPrzdyu4PDXmqMG4Aaj63Jb3i9SxAtcjaSsnUAs2FAFPjG6xffLckU4l7elCChkBKxzeNyjWIkPDUa6F7JC9RWZusksBOxBdBU4jT2SCI','Keera was great and very helpful!!!😊 Anthony was wonderful and very caring!!! Thank you SignatureCare!!!','2018-10-11 06:14:32.381000','2018-10-11 06:14:32.381000',5,'Kelly Waller','https://lh4.googleusercontent.com/-AWYd5n6rsgw/AAAAAAAAAAI/AAAAAAAAAAA/6XjW9baYfVU/c-rp-mo-br100/photo.jpg','16590124370714063921',3710),('AIe9_BFu3rdicGrPrzdyu4PDXmqMG4qVBfEV7376wPWq6HJNUgNE9TRYllZDlb1feONQmkYOW_jxi3j2-eMQRIvM_KJugqkS_j0UFW1Lu3MA6jJmfZTPvfM','Very quick service and accommodating staff! Great experience.','2019-06-15 03:23:26.285000','2019-06-15 03:23:26.285000',5,'Brad Hoegler','https://lh5.googleusercontent.com/-JuJIWLYbjjU/AAAAAAAAAAI/AAAAAAAAAAA/l2jssRV8tvg/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1305),('AIe9_BFu3rdicGrPrzdyu4PDXmqMg5BjeNwXp6lwComPVs7fBSOJze-7ZzeLCBKqOg5aamPdnyqoOSkGN7e3oYHt6G6Obp0UiioGcrNdjw81Oi9mcqBbRwg','Awesome place very clean and professional','2020-06-08 18:32:22.036000','2020-06-08 18:32:22.036000',5,'Rosendo Salcido','https://lh5.googleusercontent.com/-pA-cNhtrPwo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckzv31Xl5I6p4gNHWTCOORfytGYxg/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22103),('AIe9_BFu3rdicGrPrzdyu4PDXmqMG7dEPsNOduihPsX_ChJomQszkgjkB5WOJg-d5mD6k9fgpA6DfoVuouZZHA6vteoq0E3IRUuxwt-C7J7ESK3tow7pZus','Nurse : Jacob \nDoc: edozie\nTech: Morgan\nRegistration: Liz\n \nGot me in super fast, were super professional & friendly.','2019-02-20 15:33:50.078000','2019-02-20 15:33:50.078000',5,'Becca Duke','https://lh3.googleusercontent.com/-mOt6o4sYtWo/AAAAAAAAAAI/AAAAAAAAAAA/ccnpwJvTpaE/c-rp-mo-br100/photo.jpg','16590124370714063921',3536),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGDg_tSOHhS2_gqon1HTR4cxhh4sNCaZ8YR9VgC3nsdUQbjMKuWgYqLHZBXUC4auSOu47jXh7rbFCAVG-iu4l4O14_cc','We, my disabled mother and me were sent to Signature Care to have a Covid 19 test on my mom. We needed to have this done before the nursing home would take her. On July 8,2020 we got there at 11:00 a.m. by 6:15 p.m we still were sitting in the car, the staff said it would be better to keep mom in the car. Over 7 hours of sitting in the car. I went in a number of times and not one time did any of the staff mention if a patient had symptoms they were being put in front of someone without symptoms. After 4 hours mom needed to go to the restroom. I went in and a staff member gave me a wheeler chair for mom. Then took us back to a private restroom. We went back to the car. I went in several times asking how many more people were in front of mom. I was told 4, 3, 2 then the last time I went in which was about 6:00 p.m. I was told 5. That confused me so I asked why and THAT IS WHEN I WAS TOLD ABOUT SYMPTOMS VS NON SYMPTOMS. We finally left after 7 hours and mom DIDN\'T GET HER TEST DONE. We might have been there until the next day. It is a 24 hour care after all. So what did I learn through this, if someone tells you it will only take 15 minutes run. I will say the staff was very nice they even gave me and my mom something cold to drink.','2020-07-09 01:12:56.311000','2020-07-09 01:12:56.311000',1,'Anita L. Harrod','https://lh3.googleusercontent.com/a-/AOh14GgqF_XUjPgldW-2Fjr7bP0OWsP2TYjzlDNDpfwcf5o=c0x00000000-cc-rp','3272657195432704501',21466),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGdNiHHPAxewd9upJyBB3naDj4xkDAwk3460KvlTgyWhQsDG1t0MpKIuj_rOc3HUo90GH1XjCW9WsxkQ-EpFgz_wqY5U','Love this facility. Aerial was very patient with all the paperwork and checking me in and out!','2019-09-14 00:44:37.603000','2019-09-14 00:44:37.603000',5,'ilham kharrubi','https://lh3.googleusercontent.com/-EaK2IvvlLsI/AAAAAAAAAAI/AAAAAAAAAAA/2K65Hn0Wulk/c-rp-mo-br100/photo.jpg','12541597562633926366',424),('AIe9_BFu3rdicGrPrzdyu4PDXmqMgeTJCFeaV9hFmvVeiX0rQSGRWW1I_dnrqXBcYuxkDuO7PJGwfLCHSutPcnPs8jR-WI9LmZxHYSQWm9T85-N9OJLIxzs','Great experience with doctor Patel, quick, professional team! Makes emergency room visits less stressful','2020-03-05 03:43:17.359000','2020-03-05 03:43:17.359000',5,'Nah mahindra','https://lh3.googleusercontent.com/-iwU0d_CFH9w/AAAAAAAAAAI/AAAAAAAAAAA/-wlHluzC9kg/c-rp-mo-br100/photo.jpg','17898197009688164559',14106),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGg2Av-out0RWTNWTcQEcYP6h0hvXvqVrZesmkdhc9mo6MNdeNUjj1_8dsrhIKuw-64m3nyOjrVWlhofMKW4z6qrv5cg','Always fast to get you checked in, great service. Actually listens to your needs, you leave feeling better than going in','2018-05-14 20:52:48.665000','2018-05-14 20:52:48.665000',5,'Brooke Penaloza','https://lh4.googleusercontent.com/-HS7IXW8XvxI/AAAAAAAAAAI/AAAAAAAAAAA/7iOk6l34LOM/c-rp-mo-br100/photo.jpg','16891069708558046635',4481),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGKMY87aqhbRtrAkLllnTa_EuWK0IXoQhcD27MFZWAZFJQD-aHb2MUcia9CuB8lyZU5V6mXgvRrY6k0betz9CtD-iG3k','Came here for my kidney stones and was taken care in such a great way! The staff was super friendly and helpful and made a bad experience much better!\n\nWould definitely recommend anyone to come here if you want to get a treatment where you feel heard and safe.\n\nDr. Patel, Gracie and Amy made the process enjoyable and effortless.\n\n10/10','2019-05-06 03:17:46.235000','2019-05-06 03:17:46.235000',5,'2face_gaming','https://lh6.googleusercontent.com/-moO8bGMGWgY/AAAAAAAAAAI/AAAAAAAAAAA/RAiB2MS_mM4/c-rp-mo-br100/photo.jpg','3511292162159714121',7341),('AIe9_BFu3rdicGrPrzdyu4PDXmqMgLE8H8yKLlsAMxS0IopGTEf8OzW0iKLH64HBoDaKhaZcS3fQht_nkF0Gf83A213L1TA5XfeXRmAItSFqtICNBMAzFPQ','Mercy was the receptionist when I came in, and she and my nurses and the doctor were all so helpful! I had multiple concerns and all of them were addressed in a timely and caring manner, with all my questions answered. Highly recommend!','2017-04-20 13:06:24.270000','2017-04-20 13:06:24.270000',5,'McKenzie Watson-Fore','https://lh4.googleusercontent.com/-_qhZmKMSDZM/AAAAAAAAAAI/AAAAAAAAAAA/A_M7WtJoc-8/c-rp-mo-br100/photo.jpg','3511292162159714121',7836),('AIe9_BFu3rdicGrPrzdyu4PDXmqMgMrDy2K3Jy_U1spJGsLcROgGb3rj6-veImOdqp4vl-tOhyKU3G1sqEH9bVAJldaiHL0tNg-XULlR22C97KD32ksmg5s','One of the cleanest & well rounded urgent cares! I would absolutely recommend to anyone! Have had multiple family members come here & have always left so so impressed!! We have always been taken care of quickly! Highly reccomend SignatureCare!','2019-06-21 05:16:04.266000','2019-06-21 05:16:04.266000',5,'Danielle Barreno','https://lh4.googleusercontent.com/-QV83v7b-5cQ/AAAAAAAAAAI/AAAAAAAAAAA/UTC1RD0xAec/c-rp-mo-br100/photo.jpg','13486358490203335051',946),('AIe9_BFu3rdicGrPrzdyu4PDXmqMgPDbfR_U2WKDT3FmWInbcvwhys0zjlhHF-oPPjM-Leo2Mlt3koAhgBxKAN-us75EmlDdQQ1SWPgBwYX_6zKWE1RQAGU',NULL,'2019-12-01 13:25:03.633000','2019-12-01 13:25:03.633000',5,'Loren Barker','https://lh4.googleusercontent.com/-0MmTbM1PgYY/AAAAAAAAAAI/AAAAAAAAAAA/AojU2OPILNQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5392),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGpxv6UgWq-JL-KRn6Qc_f19pGmuymXbQjZqzI3jedEuEIZzjUKxlsDLICm7OaRevnEjdkp9GZBWykb2XxtMu919juVY','Excellent compassionate staff. Wide scope of services are offered with virtually no wait time. Would highly recommend this location if you are in need of any type of immediate care.','2017-12-13 18:51:18.114000','2017-12-13 18:51:18.114000',5,'Wendy Van Den Boogerd','https://lh6.googleusercontent.com/-47AO6KoGmLk/AAAAAAAAAAI/AAAAAAAAAAA/v1DVfxPpEhM/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4531),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGrAWWPworsuUNm1oAwytsxJ2jCOOC56MF4-UHGwd41Qt3SWa9locMDaaXJIJfb1uCzzuuEhKpsg98nU6JZWKTwffpnM','The best urgent care I\'ve been too. Remarkable fast and professional service with everybody there. Very insightful with helping me with everything I needed to know. Definitely will recommend to anybody. Thank you for helping!','2018-01-24 00:06:24.383000','2018-01-24 00:06:24.383000',5,'Royzell Smith','https://lh6.googleusercontent.com/-zZ3FPcGl0oU/AAAAAAAAAAI/AAAAAAAAAAA/UIvs5vZFxkI/c-rp-mo-br100/photo.jpg','8918455867446117794',9301),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGrnQ-Fho2sLdG8_amoLR8K9ovkjrN1bHiqJLQw-rWY4p7pJAhafYrvsX_NW5HGoeM7UJrKZSfcckfCjHtj0Yh782VZ8','The staff very sweet and the doctor personally did her best to make my visit worth the wait.','2020-07-28 00:57:17.072000','2020-07-28 00:57:17.072000',5,'christian ojo','https://lh4.googleusercontent.com/-uBVwjFh1P4M/AAAAAAAAAAI/AAAAAAAAAAA/Rc844iaMf1Q/c-rp-mo-br100/photo.jpg','14748677429039074158',22555),('AIe9_BFu3rdicGrPrzdyu4PDXmqMgSBw1rg_X8ocp2t_BnGyBiaQD32E5dZYdayGfClxkrNcntjimsDfv7usRw_i0AZDdoJ-VSm0eHzDXi91VJtrcRpPwTY','Great service and even better people! Highly recommend if you need assistance.','2019-05-13 22:10:23.313000','2019-05-13 22:10:23.313000',5,'Noah Brogdon','https://lh6.googleusercontent.com/-udlSg9niVRc/AAAAAAAAAAI/AAAAAAAAAAA/ExYV8BtT6nY/c-rp-mo-br100/photo.jpg','16590124370714063921',3385),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGUM4GdbEXk3yFd_IrR9JuTfCOE7LULeS5VzMxwSJR0gWSLef9o-3D3VtTpFrbhYUtXAqPFLyfTA3VtStbw0IlainiY0','Dr. Patel, Deanna, John, Laura and Nicole treated us with pure compassion and care when we walked in for a severe migraine. Once they confirmed her diagnosis they immediately sprang into action and had Jess comfortable and relaxed. Just wish we had come sooner rather than waiting at home thinking her normal migraine meds would work. I would recommend this facility and the extremely great staff should anyone need assistance.','2018-09-08 19:51:41.398000','2018-09-08 19:51:41.398000',5,'Michael Stulberg','https://lh3.googleusercontent.com/-AvbSNNOjN2w/AAAAAAAAAAI/AAAAAAAAAAA/TvdfvGMQm2c/c-rp-mo-br100/photo.jpg','12541597562633926366',612),('AIe9_BFu3rdicGrPrzdyu4PDXmqMGve1gRl5VF4OydMZ295htCvbPcp02uowuasi1x4MoC2uczFbnRHVfiPpaC1j7RwWoStox3FZcKo0buo3bprnNzgNYGo','Fade fast and prompt service wife was in a car accident and they took the other vehicles car insurance and did not charge me!','2020-01-19 16:49:09.835000','2020-01-19 16:49:09.835000',5,'Saher Nabulsy','https://lh3.googleusercontent.com/-bidP31HyQBM/AAAAAAAAAAI/AAAAAAAAAAA/-I0bmjU9E0c/c-rp-mo-br100/photo.jpg','12541597562633926366',9945),('AIe9_BFu3rdicGrPrzdyu4PDXmqMgxwi2Dr5QtqQ-9WGa9cZsi2RMo_XjO9GaOHg2rt-hq6s0iJLvosHtTm7-_EnvtIwglsOepwIYWuy1XqHL3MltJAeplM',NULL,'2019-11-22 01:40:03.074000','2019-11-22 01:40:03.074000',5,'Angelina Jernigan','https://lh3.googleusercontent.com/-EKhiT3JUXrg/AAAAAAAAAAI/AAAAAAAAAAA/mk6HmrDs_J4/c-rp-mo-br100/photo.jpg','13486358490203335051',731),('AIe9_BFu3rdicGrPrzdyu4PDXmqMgy3_CnosKbOJ0NYAni83zdQlpLQb8hOeWBaVDu-Y5xBpTL9G4NmVG5O-oXlCSat4UZicggSRcagardkHjf1IhoZKs_0',NULL,'2020-08-02 18:45:06.651000','2020-08-02 18:45:06.651000',5,'vp m','https://lh3.googleusercontent.com/-yTZPToeR8GE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclCXgSRSXiBL0DV5y8ilbjR_2pZDw/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21934),('AIe9_BFu3rdicGrPrzdyu4PDXmqMgZVLGJMkb0wPbDsA5csnA5_dEcvfGDVfcTbppO2E9Pxfu7TTfEHfEEtzl5ua1GkeV1CXNYS3ZcFmnlPlz5T1StYe6-A','Dr. Henderson, Alvean, and Patricia helped me, and they were very polite and helpful! Really recommend it here!','2020-02-08 20:59:03.498000','2020-02-08 20:59:03.498000',5,'jiminshii excuse me','https://lh6.googleusercontent.com/--k64G5KUXjU/AAAAAAAAAAI/AAAAAAAAAAA/14TH0Y9vlMQ/c-rp-mo-br100/photo.jpg','16389487648212004696',22605),('AIe9_BFu3rdicGrPrzdyu4PDXmqMHgBN6cpG0glywbQG0hgqWwxo97taVnmULUuqF8uKDnfHqVzok_LswoUCYKVPLRRVmLDQdmHE84LeW4fes1F6VuFy340','My son was having issues with his asthma and they got us in quickly and Lisa and Rachel were really good with my sons care and the doctor was also very attentive. We were even asked if we wanted a warm blanket which was pretty nice. Thanks again for the good experience.','2019-02-23 17:00:45.736000','2019-02-23 17:00:45.736000',5,'Kristan Galindo','https://lh4.googleusercontent.com/-DdFZpfJ0SWw/AAAAAAAAAAI/AAAAAAAAAAA/dxuUTqbpIdY/c-rp-mo-br100/photo.jpg','6521947413723274945',8303),('AIe9_BFu3rdicGrPrzdyu4PDXmqMHjcEFTVJT5kq25QESGZ82QSLWOWVUSyPk6PKJD_zAnUK9rvZhaFTV_fMB1hUR2BkJcqpP5yu768b2WrXSEaAtn8YRTA',NULL,'2019-12-24 14:28:37.381000','2019-12-24 14:28:37.381000',5,'Tanika Box','https://lh6.googleusercontent.com/-IA4bhV1n1nM/AAAAAAAAAAI/AAAAAAAAAAA/ICfhu8_ZDd4/c-rp-mo-br100/photo.jpg','3272657195432704501',6829),('AIe9_BFu3rdicGrPrzdyu4PDXmqMhJjYkNKwS2Mz6dXB7cuxGth4LsDqeLRtT_PN1U4eLpol0yTK0OWg9UirS6SdwXvOont7M0THA_IhJcHxohBNRgOKiXk','Nurse Mollie and Dr Yost are amazing!! They were on top of my care and did everything help me feel comfortable!!!','2020-01-16 08:18:27.985000','2020-01-16 08:18:27.985000',5,'maranda Kellam','https://lh4.googleusercontent.com/-yR1rN-Mt4Mo/AAAAAAAAAAI/AAAAAAAAAAA/pO-jwB2jaRc/c-rp-mo-br100/photo.jpg','3272657195432704501',6862),('AIe9_BFu3rdicGrPrzdyu4PDXmqMhJKEjBCeMM6f8VYtn4p_sVt1tmenGit_Jb3XbnsUhzFOeFjhXh7fY4G4CLwCPE_xWy2TZuVL75XJNGOeuRmTmdDw2So','This was probably one the best emergency room offices I have ever been in. The staff was very nice and professional. The facility itself was clean and well designed. We were seen right away. Dr. Thompson was so knowledgeable about the situation and was very pleasant when explaining what I could do to help in the healing process.','2020-02-15 19:16:29.536000','2020-02-15 19:16:29.536000',5,'Mckinley','https://lh5.googleusercontent.com/-hLd6AT6DN7s/AAAAAAAAAAI/AAAAAAAAAAA/e8zIXhzdCOM/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',13371),('AIe9_BFu3rdicGrPrzdyu4PDXmqMHkzjRuJV9PTguNhHIcWDLcv6Rg3SvSHgP1g574GnZuOJCTSsGS3TwC9RnA07Le2Tv6h0rpeUmrN2guuU3oIGdjM5J-I','Great care from Kendra','2020-02-16 20:01:29.939000','2020-02-16 20:01:29.939000',5,'Adriana Salgado','https://lh6.googleusercontent.com/-tAEor2XAGs4/AAAAAAAAAAI/AAAAAAAAAAA/iqbru1FL23Q/c-rp-mo-br100/photo.jpg','16590124370714063921',13848),('AIe9_BFu3rdicGrPrzdyu4PDXmqMhmDq6jFWxj7AHVMiIQgUzEvXBLkm58Az_qawaPXQAeVE6SRa7rI1p3s32LWiPN3j_pA5LZD4Ivxx8k_roCI4C-GEITY','Every one was wonderful..Dr.Leavit...Jeffiner...Christohper..Patty','2019-09-21 14:14:28.449000','2019-09-21 14:14:28.449000',5,'Dannette Smith','https://lh4.googleusercontent.com/-A6Qh2OTDB7Q/AAAAAAAAAAI/AAAAAAAAAAA/kvI84LuL3FU/c-rp-mo-br100/photo.jpg','16389487648212004696',2891),('AIe9_BFu3rdicGrPrzdyu4PDXmqMhmvoIH1_5QoVQU_LFSIwYbjwlVrMrr0RlJWcbzHSjLvM2Y_Jq0U1-M7knZHabUy2iOXszBG-hoDFCVR8-adnwwOPl-4','The service was great, quick, and efficient. We were in the emergnecy room from 6am-6pm on 6-6-15. Thank you to all the staff and doctors, especially to Melinda from registration.\n','2015-07-09 12:48:33.972000','2015-07-09 12:48:33.972000',5,'Tamara Stephenson','https://lh5.googleusercontent.com/-TpykxQ6uirE/AAAAAAAAAAI/AAAAAAAAAAA/ZaLA9qCLz8E/c-rp-mo-br100/photo.jpg','17394740196501090048',5295),('AIe9_BFu3rdicGrPrzdyu4PDXmqMHP8HfrZlaK-XJ6DsXFcR4kmrgqq7ao_TTztS7sRcZUG_MM1OCPEUlz7qy6qbrbsAsuv45fB4Ci6RWjZMZAyjg_-rens','Meridith,Marcus, Patricia they all were very great to me I love this location.','2020-01-15 19:20:59.246000','2020-01-15 19:20:59.246000',5,'Kilo Mathis','https://lh4.googleusercontent.com/-i7OFGiiEYpY/AAAAAAAAAAI/AAAAAAAAAAA/Q4wGsHR1pTc/c-rp-mo-br100/photo.jpg','16389487648212004696',9727),('AIe9_BFu3rdicGrPrzdyu4PDXmqMHtWQntENmL4x6UlIwfUlV91K4UQg-ZH50VSbhHgtbjF2UcLAm2G9gAz8G3mqrxbLinCFNhcA2xKDRoSAWlrktidAKGQ',NULL,'2019-09-16 17:39:11.329000','2019-09-16 17:39:11.329000',5,'Emma Sager','https://lh5.googleusercontent.com/-vYmMzIGr9I4/AAAAAAAAAAI/AAAAAAAAAAA/LZp-3tc_iNs/c-rp-mo-br100/photo.jpg','3511292162159714121',7177),('AIe9_BFu3rdicGrPrzdyu4PDXmqMHxgz9zHINa7C9C7eeNubiz8vGRpyZtmZF4EX_35pAArkxPJhzK2ht2s3026-8EdAd8b-Khlb4_B3aUSPLvo8C7YX1Ng','Kristina and Dr. Quang were efficient and helpful in aiding me.','2020-01-28 23:48:40.221000','2020-01-28 23:48:40.221000',5,'Jarnell Watson','https://lh6.googleusercontent.com/-BWBosGQHkYc/AAAAAAAAAAI/AAAAAAAAAAA/CkUxkvQRhUQ/c-rp-mo-br100/photo.jpg','12541597562633926366',10085),('AIe9_BFu3rdicGrPrzdyu4PDXmqMhXKX3J0Vzkap1ChNa-ZuPbNfM8eQrT48ur4aesnhbPm4bvWFisnQBp8DnfKpCdNNnjqJrx1rIZ0RWFmX9ytlfzxMsuk','Everyone is super nice and super fast with everything.','2019-10-27 17:53:13.091000','2019-10-27 17:53:13.091000',5,'Gaby Casas','https://lh6.googleusercontent.com/-TXunT7JQxmg/AAAAAAAAAAI/AAAAAAAAAAA/8NjdKlwCJto/c-rp-mo-br100/photo.jpg','16590124370714063921',3119),('AIe9_BFu3rdicGrPrzdyu4PDXmqMhXLVJV_UimnDQovxDQIbouDQeX-i1WzcQuST3FkXbq3mHWayFyQlFTpmlqG7UebfsRIjt2u6FeaoWJR8kIkOm6b_6yQ','I had a great experience when I was here. Earl was helpful and polite when checking me in. Chelsey & Katie were great and we laughed through all the uncomfortable stuff. They really helped put my mind at ease. Dr. Lingan and Townsend were kind and professional. This is my 2nd trip to this ER and even though it’s not the closest one to my home, I’d rather drive a few extra miles because I know I will be well taken care of. It was an ER visit but the staff made it a painless, quick, & friendly visit. Thank youEarl, Chelsey, Katie, Townsend, & Dr. Lingan!!!','2020-01-29 09:36:29.161000','2020-01-27 15:53:06.366000',5,'Heather Smith','https://lh3.googleusercontent.com/-YBaRRsCumL8/AAAAAAAAAAI/AAAAAAAAAAA/1dRXpOxg2eY/c-rp-mo-br100/photo.jpg','16891069708558046635',10222),('AIe9_BFu3rdicGrPrzdyu4PDXmqMHzX-aSd16ZfYuxCMZc5P32H6sovFfO6HWODg4qZiqjTFO72qafMJ149MecF32NeBDDV44y_DAccxnCPzCaQpFsxT2ww',NULL,'2020-06-17 05:13:30.152000','2020-06-17 05:13:30.152000',5,'Hany Nasr','https://lh5.googleusercontent.com/-pKzPD2a47uY/AAAAAAAAAAI/AAAAAAAAAAA/fQ0IHi2-2t4/c-rp-mo-br100/photo.jpg','8679688254631342173',21205),('AIe9_BFu3rdicGrPrzdyu4PDXmqMI3EWYxaQvEc90h6_hAI1zAj71MJOsvvMlynfojuZg-KxUWIuv0Xop8ddIl0dzdDfkmjGlLFkqbAltVVQ04by36G2LYY',NULL,'2019-12-12 08:57:11.365000','2019-12-12 08:57:11.365000',5,'Family Ireland','https://lh6.googleusercontent.com/-xe3bhrtJnNQ/AAAAAAAAAAI/AAAAAAAAAAA/5Fr9qyjMPi8/c-rp-mo-br100/photo.jpg','12541597562633926366',354),('AIe9_BFu3rdicGrPrzdyu4PDXmqMIa33SM2dQC19WxL4tEijxqWSj-FGKkx7GyOt6Bp4ew5hSP7GsxHvfU1WyJ4KGl6TQ13b31orkH-aEmu5TO6FXAXHemA','I went because my son had a asthma attack we were seen as soon as we walked in. It\'s was very clean. The doctors and nurses were very nice and helpful. When we got hungry (after being there since 3am) they even had snacks you could have a no charge. I would deffinetly go back if I had another emergency.','2017-04-13 14:29:10.793000','2017-04-13 14:29:10.793000',4,'Laura Alvarez','https://lh6.googleusercontent.com/-ZvCfx_yI1Bw/AAAAAAAAAAI/AAAAAAAAAAA/-5Hvnoda_Ko/c-rp-mo-br100/photo.jpg','17394740196501090048',5075),('AIe9_BFu3rdicGrPrzdyu4PDXmqMib-X5duplfYvroD-ZYyBen5olcNc0ijh9JSHgrx_Oa4qxSFEDkXccJPEh-TiW6J2XoJorJhsFs7QsMAaWJdBrNt7zgs','My medical team Racheal, Courtney, Dr. Thomas, Jessica, and Evelyn were great!','2020-03-12 19:04:22.815000','2020-03-12 19:04:22.815000',5,'Jose Depaz','https://lh6.googleusercontent.com/-XO5MwnyJM8U/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckkUjuTeLr4ITLoE9gY8Xo6bF6XPg/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21092),('AIe9_BFu3rdicGrPrzdyu4PDXmqMIBO-G6V5UfVIbi3avbM5E2Al5blfoRmHcVpBll_xMWMF6-o0c4NjEsGtP033qWlVklkeXZLYfORU_wM7RFJOqquvbbc','Thanks so much Dr. Wendy! Amazing team! Blake , John , Jaslyn , Jazz and Rolando! Super clean! Helpful and affordable!','2020-08-02 14:57:30.993000','2020-08-02 14:57:30.993000',5,'HTX Boss Babes','https://lh3.googleusercontent.com/a-/AOh14GgKJV6DnHxx8ZuJDgNCOnJWesEK6Komt8_5xy_Aog=c0x00000000-cc-rp','8679688254631342173',22240),('AIe9_BFu3rdicGrPrzdyu4PDXmqMICvKcrlzFe3jUkZq0BnaqpforTpiPO109d_X73lm85mYy1vUPT4JlQmro5LKcDsufmZxyaMi0K7zIntD6SyqCkcgOEk','Very good service and fast. Very helpful.! \nLorena, gracie, Er tech. Brancroft\nNurse theresa B','2020-07-26 16:41:35.984000','2020-07-26 16:41:35.984000',5,'Ace Duece','https://lh3.googleusercontent.com/-cqZZbzFxgHE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckSV-nuYkOSXJyJyYubIEnRuYuGAA/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22208),('AIe9_BFu3rdicGrPrzdyu4PDXmqMIDmAVJYt6XJxD6nwrsDRxoeZXVeCj02dtXJarrazVVrBAGZDcECib5lQLGmMqrWX1VI7Q2NsaxkX4eKTuM3Zl6WrHZI','This was the absolute best experience I’ve had at a hospital/doctors office. The staff made us feel at home and really cared for us. I wish we places like this in New Jersey.','2018-10-19 22:51:56.114000','2018-10-19 22:51:56.114000',5,'Beniamino Farina','https://lh5.googleusercontent.com/-G49WFtpydEI/AAAAAAAAAAI/AAAAAAAAAAA/YklDhcvw0Y8/c-rp-mo-br100/photo.jpg','16891069708558046635',4413),('AIe9_BFu3rdicGrPrzdyu4PDXmqMIDOxIMU4YwjojDj9MSthSP5oJawBd202PTzq1jpqrMUhlzqK6wMCc6A_poaUczVqey1IgAliKXVlxuPUKHkwHY6Plmw','DR. DANG HOANG HUNG D.O. \nNurse: Carlson, Delena Marie \nFront Desk: Penunuri, Alyssa\nThanks for taking care of me for the night','2016-09-04 22:55:35.544000','2016-09-04 22:55:35.544000',5,'Joseph Vega','https://lh5.googleusercontent.com/-scdcpY7tTu4/AAAAAAAAAAI/AAAAAAAAAAA/iPqq8JSE4Qo/c-rp-mo-br100/photo.jpg','3511292162159714121',7943),('AIe9_BFu3rdicGrPrzdyu4PDXmqMIe7xLH4z5e31n7qEc17o0MLMaGW9ZuZ9F5GFpk4a5kjH7GcEnGvQ5td9eqPeDu_e7_u2m1Al6WtnX8Yz7k1RHlbUndc','Dr.Vakey and Nurse Jacob were very helpful and knowledge.','2019-10-12 17:14:49.981000','2019-10-12 17:14:49.981000',5,'Mac McClellan','https://lh6.googleusercontent.com/-u1kV8IMVu0o/AAAAAAAAAAI/AAAAAAAAAAA/-NUUYNsymho/c-rp-mo-br100/photo.jpg','16590124370714063921',3146),('AIe9_BFu3rdicGrPrzdyu4PDXmqMihyhjnbN4HOzITP5OytKKHTfL9TdsCmd3K3EeVnOBUnQWLxfflzUfJt1KHGm5o2fLgJP2jOeABjfgmc6jd-2QSFOecQ',NULL,'2018-03-19 19:49:03.230000','2018-03-19 19:49:03.230000',5,'Jennifer Leon','https://lh5.googleusercontent.com/-Wgn-HsGB0Wo/AAAAAAAAAAI/AAAAAAAAAAA/rOU8kcM7isQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7716),('AIe9_BFu3rdicGrPrzdyu4PDXmqMiiwKcpH2hxQ9roafB_Rtg8RGhSpDhSmjfwnUz6TO7GW8mHHjfteKHvffWHeyE5goR2HsEMtz5eWV4rWyb20Jmt8uGU0',NULL,'2019-01-17 05:54:40.837000','2019-01-17 05:54:40.837000',5,'Fine Kula','https://lh3.googleusercontent.com/-730vUnx67zo/AAAAAAAAAAI/AAAAAAAAAAA/hRla0df0nUg/c-rp-mo-br100/photo.jpg','13486358490203335051',1106),('AIe9_BFu3rdicGrPrzdyu4PDXmqMikQXgDZkeJZAqzLvr4l98fU3USAoSMSwQWkJizEAzZQ3YYnRGYRYfJlersiy1-Wlia8eJUTuUEjCGUAxFrdwPaBpHqs','fast, friendly service! everyone was very kind, professional and seemed genuinely concerned. They were very attentive and there was a very short wait. We will for sure come here next for any Er needs','2019-01-22 14:41:52.706000','2019-01-22 14:41:52.706000',5,'Brandon Scroggins','https://lh5.googleusercontent.com/-_FwuNx01fI8/AAAAAAAAAAI/AAAAAAAAAAA/100syc3Pg4o/c-rp-mo-br100/photo.jpg','13486358490203335051',1096),('AIe9_BFu3rdicGrPrzdyu4PDXmqMIkUWnjmzsKOWrhIN4T3Jv2C_-qi2qBsYN1_UF4-s8lDfBdyp1pd87gr6KPU19vyqNk_lmwTbFgpQxvp1mUmoUQP2fcs','Top notch facilities and such friendly staff!','2020-01-17 03:02:00.896000','2020-01-17 03:02:00.896000',5,'Natalie Dowd','https://lh3.googleusercontent.com/-Q9kyimdTEW4/AAAAAAAAAAI/AAAAAAAAAAA/c38GCXuUtVY/c-rp-mo-br100/photo.jpg','13486358490203335051',13478),('AIe9_BFu3rdicGrPrzdyu4PDXmqMilcs6IkLZlEMOrq_I5OjsNkEpWmqiKYq2ok0LjNBQy57vXhXuu4Gb0E3gbio9U_CtVoKSRHzv_akaW0gJIoNX5T_P4k',NULL,'2019-11-24 03:31:27.269000','2019-11-24 03:31:27.269000',5,'Kat Green','https://lh6.googleusercontent.com/-qI0brBGSdBs/AAAAAAAAAAI/AAAAAAAAAAA/WbUE9CFMsBw/c-rp-mo-br100/photo.jpg','8679688254631342173',8710),('AIe9_BFu3rdicGrPrzdyu4PDXmqMiMZuWZt0KxCo9Qr9KfHBs_eJsbPMyKPPrPpjmHZwNygrsapVW8-TDl7mRrDPT2oPQKBrzjV2ed6GU94mjGEfqPE7Vus','Great care facility. They make you feel welcome','2019-01-09 13:56:48.038000','2019-01-09 13:56:48.038000',5,'Charles Porter','https://lh4.googleusercontent.com/-UZngg9IT2qQ/AAAAAAAAAAI/AAAAAAAAAAA/4jDwfzoA5Fg/c-rp-mo-br100/photo.jpg','3272657195432704501',7064),('AIe9_BFu3rdicGrPrzdyu4PDXmqMItydwxSooNT2GDELE7VS8rOdeVAxN06jogLNZDd8lAg7wNRBwQ-P6d3JJ8JpPh69jKI6YoM5MnsVaGQCEmBa1eFRxnE','Nobody likes to visit an ER, but when you visit a place like SignatureCare it makes it a lot less painful. The service and the installations are great but what makes this place different is definitely the staff, their care is wonderful, they really make you feel safe and that they really want for you to feel better. Big thanks to all the staff especially Dr. Grinblatas and nurses Laura and Delena.','2017-01-27 17:34:16.603000','2017-01-27 17:34:16.603000',5,'Gabriel Gamio','https://lh4.googleusercontent.com/-Tfs5OWtaHNc/AAAAAAAAAAI/AAAAAAAAAAA/7EBV7nSzotA/c-rp-mo-br100/photo.jpg','3511292162159714121',7892),('AIe9_BFu3rdicGrPrzdyu4PDXmqMiwj3D9vqhUHOZ6f0LkKlWvzdJxE8pf_kuAPp5iE8EDpjsDGkguvc-mO_5lrYNx4E_X24bzuV-RUoLi1__jSRfLAJAGg',NULL,'2019-01-22 20:24:07.703000','2019-01-22 20:24:07.703000',5,'Shekoya Griffin','https://lh5.googleusercontent.com/-ke5m6LHWdpw/AAAAAAAAAAI/AAAAAAAAAAA/jaA5JbNExsU/c-rp-mo-br100/photo.jpg','8626688543755174284',8582),('AIe9_BFu3rdicGrPrzdyu4PDXmqMiWO9dy9na8VxSmMvDV3V32swHMPUCQGsPD0wtZfGl6VKqy5u8zjwRB77GjLRqAvwT0OZSzwl7wA-wS54Uczcwef5-jQ','Stephanie, Dr. Soli, Irving, has given wonderful service to my daughter...FANTASTIC JOB !!!! LOVE IT','2019-12-23 23:30:53.683000','2019-12-23 23:30:53.683000',5,'Kiara Brown','https://lh3.googleusercontent.com/-SRBcgOe9P-w/AAAAAAAAAAI/AAAAAAAAAAA/Q3fKjZHSuno/c-rp-mo-br100/photo.jpg','12541597562633926366',314),('AIe9_BFu3rdicGrPrzdyu4PDXmqMiYsRhiC73JyMJgYr_Hqb93ZdnEnrgWNoq9Ly5QUDhbdvDLMnEF8p85kF_zL3mZmOdpFw4Od-iXg-m4E5LCNDrtdze5g','As a college student who has only been here 10 days, I really enjoyed my experience here. They were all so friendly, informative and gave off the Aggieland Spirit that got me to A&M. Highly recommend Keera at the front desk.','2018-09-01 02:19:06.937000','2018-09-01 02:19:06.937000',5,'Cade Hudson','https://lh4.googleusercontent.com/-AZ1wmWi9TLc/AAAAAAAAAAI/AAAAAAAAAAA/a9BTV3A52dY/c-rp-mo-br100/photo.jpg','16590124370714063921',3756),('AIe9_BFu3rdicGrPrzdyu4PDXmqMiZruz0EXGEYm75fytuKsXyHvuA0HRaYd_vFqm6rh-KMLg_AeK_W65HIktCKGpFCt85JuhfqqzjtDJkR_2Dfc0EofczI','DR. Jordan Smith D.O. & Nurse: Kolodny, Mark, were great and tended to my husband and I very well. They were courteous and made sure we had everything we needed. Thank you!','2016-11-24 04:09:59.838000','2016-11-24 04:09:59.838000',5,'Fabiola Ramirez','https://lh6.googleusercontent.com/-IqjvIPUG6cE/AAAAAAAAAAI/AAAAAAAAAAA/nluv22PB2HM/c-rp-mo-br100/photo.jpg','14904078213800803294',2445),('AIe9_BFu3rdicGrPrzdyu4PDXmqMj2QYglLLc3LcwfSoFhu5KoRelh8Bw4dLTQoEDcg635D_-rGuQdoIWT5YKAcdBxNDZbtSFZrT7QTaQVaZUdcEKJkObhU','Very nice and friendly staff! Made me feel very comfortable. \n\nDr. O’ Malley \nAlvean A\nTricia B\nJocelyn A and\nKeith were all great!','2019-12-11 20:31:28.604000','2019-12-11 20:31:28.604000',5,'Donny Leyva','https://lh3.googleusercontent.com/-eM2ScASe-ZE/AAAAAAAAAAI/AAAAAAAAAAA/GVIdhT_3aYg/c-rp-mo-br100/photo.jpg','16389487648212004696',2554),('AIe9_BFu3rdicGrPrzdyu4PDXmqMj5DxH3dG-vF3b9mLvqNW6uhe65Gh6X5wlP4TKL-g5ij6dNFs60UPP5q604Z5Y8bBHnK4-vGPZuexiEi_mURkp825Aa8','Absolutely the best service I have ever received, I went in thinking a heart attack, the staff was second to none! Tammy was my nurse along with the rest of the staff. Everything was on track immediately with less than 30 seconds at the front desk, doctor was by my side in less than a minute! This whole crew rocks! Never again will I go sit at a hospital for anything! During my overnight stay, the service never stopped, moved us to a comfortable room with a bed for my wife! Totally amazed!','2019-07-04 00:32:52.926000','2019-07-04 00:32:52.926000',5,'Roy Poe','https://lh4.googleusercontent.com/-V61MXqmlsOk/AAAAAAAAAAI/AAAAAAAAAAA/JIIYSNXHfxE/c-rp-mo-br100/photo.jpg','17898197009688164559',5662),('AIe9_BFu3rdicGrPrzdyu4PDXmqMj6jr7yryNmCRXamxNtNKdvDtr4qPtXYPOUhkc2dUKNFczJ1-leNgwQBH7nGdz-aehfbrlV7OTajzpJZLXuwHi3_LQQs',NULL,'2017-10-19 14:29:10.028000','2017-10-19 14:29:10.028000',5,'Zachary Banks','https://lh5.googleusercontent.com/-B3Sg-0cZJ_o/AAAAAAAAAAI/AAAAAAAAAAA/2COfS8-zqvk/c-rp-mo-br100/photo.jpg','3511292162159714121',7773),('AIe9_BFu3rdicGrPrzdyu4PDXmqMJ98AA4Cma0xEIxg0avWGc1AwSvk410h3zSXYlV1dJSdqhdd8tfvJEPpNLBWsWJfn0U1MEQTvVmiSjRYKC03m43P3gXg','The facility was very clean and modern. The entire team was amazing! The treated me immediately and had me feeling better quickly. This will be the only emergency care facility I will go to.','2019-12-07 01:07:24.165000','2019-12-07 01:07:24.165000',5,'Robert Hart','https://lh5.googleusercontent.com/-CWc1HvwBp44/AAAAAAAAAAI/AAAAAAAAAAA/LdCGFnb4ctU/c-rp-mo-br100/photo.jpg','3511292162159714121',7135),('AIe9_BFu3rdicGrPrzdyu4PDXmqMJEf0QIxlVFgOk1xSpHjvgjHt6Mij-BEwfkrRzTTT_CEbic0j7AO48VTULX6wgpeGJSs7bdHTsro6FaprMv2xEHKnWhg',NULL,'2019-03-19 01:49:57.857000','2019-03-19 01:49:57.857000',5,'Aaron Upham','https://lh6.googleusercontent.com/-8hrTtgLwHIY/AAAAAAAAAAI/AAAAAAAAAAA/rBOi7ZFttJ0/c-rp-mo-br100/photo.jpg','16590124370714063921',3496),('AIe9_BFu3rdicGrPrzdyu4PDXmqMjgnisWfht-fkqxQZiOoa97X2xqWVcSS7RITLt1C6irTxuSTiW6Lp_tYerTBQhVrVKX3ZHogY3J_VOT8iEs-99XuH8F8','Front desk staff was very helpful. We didn\'t have a long wait and the nurse, doctors were extremely nice.','2018-12-10 04:57:18.875000','2018-12-10 04:57:18.875000',5,'Kenyatta James','https://lh6.googleusercontent.com/-5ZFZHjwJKR8/AAAAAAAAAAI/AAAAAAAAAAA/99akfOgv19Q/c-rp-mo-br100/photo.jpg','16891069708558046635',4389),('AIe9_BFu3rdicGrPrzdyu4PDXmqMJGXt4xcagHzR5ewe3CmdiK1aHIlwn2zE6E_9IEKlywfvfNI0yEGmw4wuWh4j2wZNzz6slQGoXJf_GjuO9N2CVLFO8Sk','Great customer service here! My friend needed stitches after canoeing and they got him in and out really quick! Would recommend','2019-08-23 16:41:24.653000','2019-08-23 16:41:24.653000',5,'Alec Martinez','https://lh5.googleusercontent.com/-naLWCNHf3UM/AAAAAAAAAAI/AAAAAAAAAAA/MAfAR23TgWk/c-rp-mo-br100/photo.jpg','16891069708558046635',4213),('AIe9_BFu3rdicGrPrzdyu4PDXmqMJKxaH3GLkA-0tA9horxL34PDG_gvpMw8WYAXaLx1AIGawL1zDMp7dxqUGhyYjxHm8r1AwkGKfhonYnoPcZgyXe2OF8M',NULL,'2019-09-10 18:20:09.280000','2019-09-10 18:20:09.280000',5,'nicole howard','https://lh4.googleusercontent.com/-yXYBpMxqwi4/AAAAAAAAAAI/AAAAAAAAAAA/AOpImtvOEFU/c-rp-mo-br100/photo.jpg','16590124370714063921',3213),('AIe9_BFu3rdicGrPrzdyu4PDXmqMJMZBhsWMQE17EixQCQ6bJzO41la_rwU2GH0H_XQrDJYtTio_PzKyPSsZZHVDgZ5eMXhepG4SnfCyInNcF73J9Aa4VsQ','I saw Dr. Jasmine Thomas and nurse Jesse Reed. Both were very kind and caring! The facility was very clean, no wait time to get in, and I received excellent care while I was there. Thanks to all of the staff and physicians at Signature Care Emergency Center!','2017-03-13 23:19:30.031000','2017-03-13 23:19:30.031000',5,'Kelsey Dry','https://lh6.googleusercontent.com/-VSmvQWktKzA/AAAAAAAAAAI/AAAAAAAAAAA/zmoB82Jt92I/c-rp-mo-br100/photo.jpg','17394740196501090048',5096),('AIe9_BFu3rdicGrPrzdyu4PDXmqMjn_khQ2N6lsvAcfWWe067Ord06Xe183b5LKq_4awFFFvrvr3K7AjEUTFuVB3AowoJQZ7BOFkbP0ERqdBDyg5Kx7XUX8','It is very clean and as a patient I felt very welcomed and I felt that I was properly being taken care of. Anytime in an emergency I recommend them. Their service is too adequate. 5 stars for a reason.','2016-11-16 12:14:34.750000','2016-11-16 12:14:34.750000',5,'Deja Ham','https://lh4.googleusercontent.com/-2rRZwgZ50EM/AAAAAAAAAAI/AAAAAAAAAAA/jrHPnJWe7U4/c-rp-mo-br100/photo.jpg','14567670160750071148',1942),('AIe9_BFu3rdicGrPrzdyu4PDXmqMjofjOLHb2u92A7onWOog2Bg1Q7pg7kFLE-bys64OZZl2NLCC_3YjAdL_dFjDPx1lIf1tVzRo5JF26IYLPjmXncavl7k','I had to take my daughter to this emergency center last night. The staff was amazing. Friendly, funny, knowledgable. The place was impeccably clean and well organized. My favorite part was probably the price. As a cash pay patient they had flat rate fees which I absolutely loved and it was reasonably priced. They\'ve won my business!','2019-04-02 20:36:54.545000','2019-04-02 20:36:54.545000',5,'Jessica Anderson','https://lh6.googleusercontent.com/-NSQS17fAZ8U/AAAAAAAAAAI/AAAAAAAAAAA/p-eZlIqKA6w/c-rp-mo-br100/photo.jpg','17898197009688164559',5783),('AIe9_BFu3rdicGrPrzdyu4PDXmqMJs2TjkxefSTVqFTXyRkozBtkHKh3-bKnujlJLDuBe9lebP_vsXaXWsIdSvk9dDLmcBDwsmrwGgO8zREckxjDdEnmlfU','Ryan (at the front), Lisa (my nurse) and Dr. Edward\'s were all very nice and informative. It was a very nice first experience. This is a free standing ER and it\'s not considered an Urgent Care, so be wary. It won\'t be covered by insurance because of that! But really, this place was great. ','2017-08-26 21:45:40.590000','2017-08-26 21:45:40.590000',5,'Karla Hernandez','https://lh3.googleusercontent.com/-V7fxehKsQSw/AAAAAAAAAAI/AAAAAAAAAAA/BIx6oIlvRTE/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4989),('AIe9_BFu3rdicGrPrzdyu4PDXmqMjsNPaq1_TBzxnJ--eNWEy3wLjmRrzBt_SX01ETSFbxSkS37q5nXLeeA03FIp95mKkcyV8_zCQSGnYDta0Q89AmTv2Xo','I was in a car accident and felt awful afterwards. I don\'t have medical insurance so I\'m always very reluctant to go to any hospital but I decided this should not wait. I went in around 7pm and I did not have to wait at all before someone sat me in a room and did what they needed to do. The price was extremely reasonable and I was in and out in about 45 minutes and they called me up the next day. ','2012-11-09 22:54:03.671000','2012-11-09 22:54:03.671000',5,'veena Courtney','https://lh6.googleusercontent.com/-aPhKRb4zCXg/AAAAAAAAAAI/AAAAAAAAAAA/ZJoyk-d2mNI/c-rp-mo-br100/photo.jpg','8679688254631342173',8949),('AIe9_BFu3rdicGrPrzdyu4PDXmqMjSWu1ZHEWN7mfTTbyKYyU2g1Iujnj6XmYqOx8EfGHRYZb3gbg4aefLNNNeJFTaGMmup4iT-efKzZGWTMnuRDTyrxXPk','Kim, Danny, Jair, Allison and Dr. Baker were all super helpful!','2019-04-23 12:45:15.912000','2019-04-23 12:45:15.912000',5,'KrashtonTV','https://lh6.googleusercontent.com/-rvpkulCkvKM/AAAAAAAAAAI/AAAAAAAAAAA/D8VxDcCL4Cg/c-rp-mo-br100/photo.jpg','13486358490203335051',1031),('AIe9_BFu3rdicGrPrzdyu4PDXmqMJxdVHcz6yqt7KRsoA83mIDRBhhnAhDakpwrVI79EjGsVwZyFm8gbov9zxCj7pWBPGg6tsO8hcx-RGM7ngkNY-5mC3Wc','My friend was dying and we came here. Long story short, she lived and was treated very very very well. Everybody here was incredibly professional, attentive, caring, thoughtful, and fast. The facility itself was spotless, tidy, clean, you name it. Definitely coming back whenever another emergency arises.','2019-12-08 14:46:37.916000','2019-12-08 14:46:37.916000',5,'Daniel Salinas','https://lh6.googleusercontent.com/-VV59N3lK8ds/AAAAAAAAAAI/AAAAAAAAAAA/Qd_bU3orWlI/c-rp-mo-ba5-br100/photo.jpg','13486358490203335051',699),('AIe9_BFu3rdicGrPrzdyu4PDXmqMk0mgGhdROgLXzsHBqJ7a5WrWQJOHNO7syxhVvqzjTCfpZbcg3MgtlxDoiJCNXagGCEn9KE-PLdALDWyDVtWcFCESyoU','Skittles \" Sir Thomas \" doesn\'t know how to do math. They only have one nurse and one doctor on duty according to the security guard that was sleeping at the door! If you want a to get covid tested it is pointless to make an appointment because they still make you wait and you have to wait outside in the heat and sick! Like they have no system for the testing or for covid period! Worse place to go to staff is very unorganized! If I could give no stars I would but I couldn\'t!','2020-07-12 05:11:37.972000','2020-07-12 05:11:37.972000',1,'Michelle Spivey','https://lh6.googleusercontent.com/-OAzJMBY1tQ4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmKYWWKCqvtsZ7CIETcZzCNWIDPVw/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21324),('AIe9_BFu3rdicGrPrzdyu4PDXmqMk68O9JCVxtk_Pajg8Gyjg6Ksfw9iio5gTf-dxR7h7VffQ09jcLtc31uj4ps-wwznUkxGQx6A-Ljkn_rYQfMZzu5Tdj8','Wonderful ER, fast, efficient, friendly and so Caring!','2019-02-11 14:39:51.276000','2019-02-11 14:39:51.276000',5,'Nadia A','https://lh4.googleusercontent.com/-VXli4x7HSNk/AAAAAAAAAAI/AAAAAAAAAAA/A_QxX0dfXv0/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',551),('AIe9_BFu3rdicGrPrzdyu4PDXmqMkayMRQGTN8fxwShpxHV8bOMHX1KAwfBZEbfrNxf7x5lo4FfgiN9-Ta0mYtiySSb4Zzkhqc7i2akuuP8i60rgvRbszDs','Dr Jones and my RN Anthony were very accommodating and kind and really cared about getting me better!','2019-04-18 21:21:23.541000','2019-04-18 21:21:23.541000',5,'drew johnson','https://lh6.googleusercontent.com/-IChBEXDBJfY/AAAAAAAAAAI/AAAAAAAAAAA/M1zGSTDIp5g/c-rp-mo-br100/photo.jpg','16590124370714063921',3421),('AIe9_BFu3rdicGrPrzdyu4PDXmqMkeJ9Z9P8UyhKofa-spysF-j7QMwy1Sv1i7K1rQx6rtJ7VfZIoc8dbWQ2nw-G_9xxxfKQdIqYs5IXaeVwlpN9CMRBVj8','Great place! Very nice and clean inside not like your normal boring emergency room. They offered us blankets and drinks as we came in. Staff is very nice and helpful.','2019-05-31 20:49:08.836000','2019-05-31 20:49:08.836000',5,'Amber Ramos','https://lh4.googleusercontent.com/-s44yyK-3AMQ/AAAAAAAAAAI/AAAAAAAAAAA/m1e68GesFuc/c-rp-mo-br100/photo.jpg','2694018788013845459',6141),('AIe9_BFu3rdicGrPrzdyu4PDXmqMkeML4tGtCCtz5sj0alLSkXllDiTj7NCL8n5hYxvsWxKGXIWAfchfLPiBWf85sewh8zxhaBmkZ5r8L1LBHTp-E0Jro_o','Dr.Appiah,Alvean, Tricia,Ayesha,Jordan are the best.','2019-10-11 16:15:41.189000','2019-10-11 16:15:41.189000',5,'Kehinde Oyekan','https://lh3.googleusercontent.com/-kWj7LIPlbtk/AAAAAAAAAAI/AAAAAAAAAAA/cpfXtYc6FbQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2827),('AIe9_BFu3rdicGrPrzdyu4PDXmqMKGwEMjpI7-VQqojwhbeyheDrv9u-Kr-t2MrLMgzkupp04FX_Ee9adaHoudV-8Fmqa-lEtsrWnwjPp9fpuvxFc3_ovIM','My experience with this place was very pleasant. I came in because my throat hurt so bad. They made me feel very comfortable, and was very welcoming and informative with all the questions I was asking.','2018-09-15 04:09:20.837000','2018-09-15 04:09:20.837000',5,'Jack Malacat','https://lh5.googleusercontent.com/-1srwk3t8J8g/AAAAAAAAAAI/AAAAAAAAAAA/OU8Qle8KKfY/c-rp-mo-br100/photo.jpg','14567670160750071148',1507),('AIe9_BFu3rdicGrPrzdyu4PDXmqMkIdQ6NOZ_oXZwb6hNxS278-xxeoyX3mqh1oQmMoeGZhE24WQ8n0UpFF14p5wJahkqEMf8Gt730GY3ET0e71iIUWKzx4','Everyone was amazing and everything was so fast!','2018-06-08 16:49:41.094000','2018-06-08 16:49:41.094000',5,'Adelina Matta','https://lh3.googleusercontent.com/-OBu7hp-9VU4/AAAAAAAAAAI/AAAAAAAAAAA/j17L2sOGCkM/c-rp-mo-br100/photo.jpg','17394740196501090048',4840),('AIe9_BFu3rdicGrPrzdyu4PDXmqMkJnXefikm_EJc447J-iTQIi3MhwVukd4wK-9vDZQC0S9QOa2KpsLDSeO0DTD-g0EWwi3UADqeY30OfLe5BQrdbmlG2k','A friend of mine needed emergency assistance after injuring his ankle. We called signature Care and spoke with registration Tanisha, who was very helpful with instructions on how to get to the emergency room. As soon as we arrived Tanisha greeted us and we were given assistance right away. Doctor Zhen and the entire team were all very accommodating, informative and welcoming. Even though my friend was in pain, tech Matthew lighten up the mood and had my friend laughing. Thanks to everyone who helped us at signatureCare','2019-06-17 03:58:01.772000','2019-06-17 03:58:01.772000',5,'Xavier Rodela','https://lh3.googleusercontent.com/-tR4SnqTtw1M/AAAAAAAAAAI/AAAAAAAAAAA/C5JRiZ7_1uQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5697),('AIe9_BFu3rdicGrPrzdyu4PDXmqMkKRAj9DH4nsc94JVghEBACH_vYg55mA_LYo2TgTbkgBOAD0hTzmmK-30wgl4MOLtrQ1k-djZYwBhln73rk14xxSUETk','Great experience with Lia, Aerial, Patel, Kat and Mayra. Thank you guys','2019-01-19 03:37:28.998000','2019-01-19 03:37:28.998000',5,'jaleesia rosemond','https://lh4.googleusercontent.com/-jJsr-keiwKU/AAAAAAAAAAI/AAAAAAAAAAA/HsJJda2yAIo/c-rp-mo-br100/photo.jpg','12541597562633926366',562),('AIe9_BFu3rdicGrPrzdyu4PDXmqMKr-2rN50-DYYuY08PLs0Eak9ixD4euiFSpF-EcKcEnT8wqU_hE6fCBxk4AgImoeqKjFD4MZW1_YP30l25H9IvLYbCHc',NULL,'2016-06-26 15:15:28.706000','2016-06-26 15:15:28.706000',5,'Joseph Lewis','https://lh4.googleusercontent.com/-WpWXAeFDV1U/AAAAAAAAAAI/AAAAAAAAAAA/OlsNvJ3-C74/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5230),('AIe9_BFu3rdicGrPrzdyu4PDXmqMKrfEVTrpyBCK4vbZn5bibFIoEJd3kZ_S-_rCIdSs7qjzlnOpsVJ7zsOjlWQj8Przj3SsJ765Lp5ihK2cblASUze8bY4','This would be my first and always to go for Emergency care. The staff, nurses and doctor treated me with great care and compassion.','2017-09-30 15:35:51.513000','2017-09-30 15:35:51.513000',5,'Jayden Le','https://lh5.googleusercontent.com/-5n_U3gjQ2JE/AAAAAAAAAAI/AAAAAAAAAAA/Oeog4IxOBaI/c-rp-mo-br100/photo.jpg','17394740196501090048',4961),('AIe9_BFu3rdicGrPrzdyu4PDXmqMkrPCiV3esPBlnIrdkKQJZhb9mA_9MgjP1VG1x-iHEZM9NRSVJixcogMYrmL9cw9ttWfrha4mA8P7oCicG0ZghhYi3Ik',NULL,'2019-12-21 21:37:27.454000','2019-12-21 21:37:27.454000',5,'Toree Easterwood','https://lh4.googleusercontent.com/-n3Z2Vd1NckY/AAAAAAAAAAI/AAAAAAAAAAA/gI12Qg8Joiw/c-rp-mo-br100/photo.jpg','13486358490203335051',675),('AIe9_BFu3rdicGrPrzdyu4PDXmqMKsxosdjNzvCSDdvOmJpwz_XHS9zsSVm0CUWr5eTgccMpCUyZg0jfwPF5Wp24giH0sPr2TvpWgoehJaKcBZftLiSg_LU','I have had to visit this place 3 times in the past week for 2 different medical issues, and all 3 visits were exceptional. Wait time has consistently been next to nothing and the staff is super friendly and accommodating. This is going to be my go to place and the place I tell people to go to for any urgent care problem. Could not recommend this place more!','2019-01-01 22:39:27.257000','2019-01-01 22:39:27.257000',5,'Laura Fickel','https://lh5.googleusercontent.com/-4sHOmx58V88/AAAAAAAAAAI/AAAAAAAAAAA/XRkiJoAI53k/c-rp-mo-br100/photo.jpg','3511292162159714121',7535),('AIe9_BFu3rdicGrPrzdyu4PDXmqMKumMDp_wf0gQeMsZGtEso_XZMJYPTVRMbyLrt11CfI8juiMBdFeD1vB-tvSILbKLM5DWon57PcbOV75MnckC-aTeJZo','Every single time we come to this facility my children are treated with great care!','2019-11-21 12:26:17.912000','2019-11-21 12:26:17.912000',5,'cindy vansyckle','https://lh6.googleusercontent.com/-AKrgW_MtkVk/AAAAAAAAAAI/AAAAAAAAAAA/xw_Eb4r7oj0/c-rp-mo-br100/photo.jpg','6521947413723274945',8087),('AIe9_BFu3rdicGrPrzdyu4PDXmqMkYH53FRquWOCjfZSm5uTPDQU9DU1edLhm315e1Dph2ANMP1EnHohB9eK-ymmLhdUfiGZDc_aX1Mitt8YWtzHdPS4oxc','Reception was very friendly. Speedy to get me in for a Covid antigen test. Kevin was great! Recommended.','2020-08-18 15:56:31.607000','2020-08-18 15:56:31.607000',5,'William Waldron','https://lh3.googleusercontent.com/a-/AOh14GitygMpu97yyNI8DbHiH99Y3Euj_tRgCGuHxstB=c0x00000000-cc-rp','14748677429039074158',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqML6nq7b_ECPel7Pzr6VwizUxK1RXZrSJpIfTYNyFO5uy7IzFIUrd_DgWqa1HapD3bgfOOy_huCUlWQbYu9-o58TMvgCY','The staff was very profesaional and friendly Amy, Agnes to name a few were very attentive. I would recommend anyone to them!!! Great place!!!!','2019-03-10 01:03:21.273000','2019-03-10 01:03:21.273000',5,'Quatima Pierson','https://lh4.googleusercontent.com/-z9VVSAqlSd8/AAAAAAAAAAI/AAAAAAAAAAA/FU5HiVoc3XI/c-rp-mo-br100/photo.jpg','3511292162159714121',7392),('AIe9_BFu3rdicGrPrzdyu4PDXmqMl6uiuR5Ie_6LnSIBXgZtFC3GIpIj9TyOrnKXsZENEuhXHDlsqAY4KaDU93_c7jDYefp0w1pYuIUcjYjsqaDEZDuLKjk','My visit to signature care tonite was very comforting and I really got answers I needed and on my way to feel better. The lady at the front desk Jessica S was super friendly and answered all my questions.','2019-08-03 01:17:21.555000','2019-08-03 01:17:21.555000',5,'B Tharp','https://lh5.googleusercontent.com/-RrluGojaDRc/AAAAAAAAAAI/AAAAAAAAAAA/CyPg4QRhD04/c-rp-mo-br100/photo.jpg','6521947413723274945',8172),('AIe9_BFu3rdicGrPrzdyu4PDXmqMl8swjvq2j3iYqVV2Ig8A1MviRUz3aLR0wq_DzAVSfS27Rp9JSNObbJmk91T6bri2NAncweYEFWI5jqaUpskuQA-uIhg','It was great','2019-07-07 16:27:15.030000','2019-07-07 16:27:15.030000',5,'TheWinniepooh1994','https://lh5.googleusercontent.com/-PTWofDCPQlo/AAAAAAAAAAI/AAAAAAAAAAA/b0az7twj4XY/c-rp-mo-br100/photo.jpg','17898197009688164559',5659),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlBmBURYSyNMsJYcfJzJR1DW-T2fV94lgW8FdtzZ63KADLfzuYOIs95Ngy5gRQZBdGkZfZZkY8obi5vxlUdL14GZznCc','My experience was very pleasant. Adrianna . Mari. Magali and Pete were great. Thank you!!\nAlso Dr Dewaal Thank you!','2019-12-11 17:46:15.629000','2019-12-11 17:46:15.629000',5,'Tabitha Fierro','https://lh3.googleusercontent.com/-6BkI42xokYc/AAAAAAAAAAI/AAAAAAAAAAA/f_dS5DnQ_2I/c-rp-mo-br100/photo.jpg','13486358490203335051',691),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlC8a2TNF8urat8mLGppZP_AS2jas3huOoi7iyZX5C2hGASxug0DciKIOn-vnrx4bb8TKVizjfq3q2GCSN6t7CByx0WY','Huge CHEERS and thanks to Dr. Das, Kara(RN), Kim(radiologist) and Sergio at Signature Care emergency center. From the moment we walked in to the moment we left, we were treated so well. I was very nervous, scared and in pain for my son but they made the experience the best it could be under the circumstances we were in. The way they all were with my son, you could just tell they loved and enjoyed their job. Again thank you all!!','2019-05-05 05:03:44.439000','2019-05-05 05:03:44.439000',5,'Berkley Plunkett','https://lh3.googleusercontent.com/-rNIK0wKinFQ/AAAAAAAAAAI/AAAAAAAAAAA/TlFNakDP9QI/c-rp-mo-br100/photo.jpg','3272657195432704501',6967),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLDpew32lUNhRlaqoJp7gV27VyC8TWq1d9EEXAKGhLn0dl191uH0qlIWcQDm58bo170r0u3pRHE9i25PwBlTCuLfZwu8','service was wonderful. dr grinblatas is an amazing doctor as well as the nurses he works with. their customer service is a 10/10! Agnes is one of the nurses and was amazing! Thank you so much for the help. :)','2019-01-06 05:34:45.631000','2019-01-06 05:34:45.631000',5,'Caitlin V.','https://lh3.googleusercontent.com/-OWSyVzHUcS0/AAAAAAAAAAI/AAAAAAAAAAA/hQQh8HQNEpo/c-rp-mo-br100/photo.jpg','3511292162159714121',7517),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLhFgl1r8WzSQZVy2CfoPsNXJtqVOY46oF022axdlpqcpF6kfDjyD417v1P4dEgr4vaugugLUNuPCZssyFfWJNnGQolU',NULL,'2019-03-29 20:55:02.694000','2019-03-29 20:55:02.694000',5,'Thomas Cole','https://lh5.googleusercontent.com/-uFTU3nzbxmY/AAAAAAAAAAI/AAAAAAAAAAA/0cGLkZ_og30/c-rp-mo-br100/photo.jpg','16590124370714063921',3477),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlIC-amjA3m__g7fAkZtDHr-8YLgk0n6nwdxh4gxAApGG2i3Kz8zbrMvJwJEYA_zg4aipv4n80umqiUR08Ury_xOiIqs','Fast','2016-02-22 04:21:27.671000','2016-02-22 04:21:27.671000',5,'Jenn K','https://lh3.googleusercontent.com/-uYc44G8P1ZE/AAAAAAAAAAI/AAAAAAAAAAA/HLIJ1c0NJIE/c-rp-mo-br100/photo.jpg','17394740196501090048',5279),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlIG2z6y2p_xzyQpc2gaVgL4EKdo8qfGRFJGFCM2IGJjenPyCtA52aNn8_SCHo7MwVlZnf7LnFXdKfdYEDJZ7xLFXbZQ','Great team !','2019-04-14 20:16:40.469000','2019-04-14 20:16:40.469000',4,'Destanie Brumfield','https://lh5.googleusercontent.com/-COskMBQqaPk/AAAAAAAAAAI/AAAAAAAAAAA/m4yHw1SAi2s/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLIMR3frhR1NQK2cn82_TMNONCK5ZOiYwcWanmROu6hKfDfPUP1E4z23SOUD_QmnFM3UbZdP0-MkjtaDvu6OJ5WIBygw','Friendly caring staff. Very rapid service. Will return','2018-08-05 01:14:11.309000','2018-08-05 01:14:11.309000',5,'Martin Monjaras','https://lh5.googleusercontent.com/-9ua-_d5fsmM/AAAAAAAAAAI/AAAAAAAAAAA/s4zheAKD4vQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9252),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLIZycjYgAD07Y1p78Xm0vdaRW-5sPkFq2wpDzEE91pQIcWfWYXaXXT-ZSVfv5AEJhqQmmBKG9W0JWkb9Dc01tDSan94','Very friendly staff and clean facility. The wait was not bad at all. I highly recommend.\n\nUpdate 2018\nSo I have had to use this facility twice this week for my daughter and myself. Both times we went they got us right in. The doctors and nurses were all so kind and took their time to explain everything in detail to us. I highly recommend signature care. They go above and beyond to make sure their patients are taken care of.','2018-02-13 19:00:49.174000','2018-02-13 19:00:49.174000',5,'Eleni Hatzisavvas','https://lh4.googleusercontent.com/-G4qUT4fM4H4/AAAAAAAAAAI/AAAAAAAAAAA/JUW6OwlhjBY/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1656),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlJUTfdUd9bMGQvD4ujdGpwFHF3z9ZJGL2yoAnG21YZO6PWwX6GMX88GHQ1W_dHHimEqNILydzf8kic9RosGWk8GnNUM','Fast service and wonderful staff','2016-09-02 06:12:19.717000','2016-09-02 06:12:19.717000',5,'Nikkita Baker','https://lh3.googleusercontent.com/-dtllCCuBJvg/AAAAAAAAAAI/AAAAAAAAAAA/7HkNkHa2yrc/c-rp-mo-br100/photo.jpg','14904078213800803294',2461),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlKntiDYLSi0vcYIfe5LYC2KVhK7s80-RrbEf30VA8_nAcPeQaPF-ZLqVttLANDlgVSbJpP9VqeoaZ4EdENVZ6ftEYr8','Is better then in the hospital waiting alot when you can get a better service and beutiful smile of caring about your health','2019-05-18 04:23:31.865000','2019-05-18 04:23:31.865000',5,'CINTHIA MARTINEZ','https://lh5.googleusercontent.com/--lYtMCnQ6r4/AAAAAAAAAAI/AAAAAAAAAAA/vg9cvnCSYSI/c-rp-mo-br100/photo.jpg','17394740196501090048',4682),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLLr2WXYK8EGgo1qMD0O788V0QeB7_3kW7ktZBCf5WyMZMohp3ZaeImRQrKIZboyWopn0K_R1RPpFWCSpjlNbMsP-ZZQ','Jocelyn, Marcus,Alvean,Jordan..All staff’s were great and friendly very attentive. The place is very clean and quite.','2020-02-26 14:48:37.581000','2020-02-26 14:48:37.581000',5,'Kaleisha Brown','https://lh5.googleusercontent.com/-jnhQnmLK9_Y/AAAAAAAAAAI/AAAAAAAAAAA/lfxYKJjiTQQ/c-rp-mo-br100/photo.jpg','16389487648212004696',13764),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlLTHHbkNMoaZtrAd-3uNFLRCt4ouKkOXyTwZsnaQDUd6WVde-FjDjkfEHZXU0cJrl_VESWiaGW0dt5Cs4SI1_1T_Vg0','Thank you Ashley Burton & Ashley Keely for getting me the assistance I needed in a timely manner! You guys rock here at SignatureCare‼️','2020-02-08 21:12:54.712000','2020-02-08 21:12:54.712000',5,'Jazmine Porchia','https://lh4.googleusercontent.com/-orjEUCrjn1Q/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck4eGjvRft_i7jU2de-_Unf65FpYQ/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14620),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLPBEdz_WS9cCkKjl_THTXAgYF52MtEJElD0qPSpupOY5cMz6BnaV9gBK4dStkLG-kQWjnrA4FC0y9eWo34KYh5uOgAg','Friendly staff:)','2019-12-18 05:58:56.984000','2019-12-18 05:58:56.984000',5,'Fabian Barrientoz','https://lh5.googleusercontent.com/-hzzwZANUy-E/AAAAAAAAAAI/AAAAAAAAAAA/-B37jDKBFG0/c-rp-mo-br100/photo.jpg','6521947413723274945',8047),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlSt0oG2wcV5FT22JPotKbHiVXqnCBGO7r4jAsBl6_T7XVQzoX0pdsCDr-ooR5Jwb0O4C7ybHh26A3ykzeDzBMM4a8P4','VERY NICE PEOPLE!! everybody was amazing,they treated us very good....all the nurses the doctor and even the receptionist! explained everything to is very well,veru clean place! KEEP UP THE GOOD WORK!! 👍','2019-12-22 05:14:16.287000','2019-12-22 05:14:16.287000',5,'Iris Bonilla','https://lh6.googleusercontent.com/-uUshSgQlW9U/AAAAAAAAAAI/AAAAAAAAAAA/NdxmYVd4RUQ/c-rp-mo-br100/photo.jpg','13486358490203335051',670),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLsuQim0eP3dHaK25kaJUKP7JhU0HCPnvISI-gzn-Tmeft-yHJmS-GgjZMJKE4v8lG8DPMMUU3W7PBIVxSVlBaGiquK4',NULL,'2019-12-20 20:04:01.040000','2019-12-20 20:04:01.040000',5,'Queen Kashy','https://lh5.googleusercontent.com/-2ERgZp4ODZM/AAAAAAAAAAI/AAAAAAAAAAA/i28J9IuvYPI/c-rp-mo-br100/photo.jpg','16389487648212004696',2521),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLYj9qOqdvlekzaoC9SoZtQCqu3YsIUE8agkMb9jSIfu3aQrlDY0w4JP5AgeDZthxzbGgJUpmBj1KG9OwjkmOPVy5NNI','The staff here were very kind and helpful in what was a scary event for me. They even called the next day to check on me, which I appreciated.','2019-01-28 21:08:19.171000','2019-01-28 21:08:19.171000',5,'Carolyn Welch','https://lh4.googleusercontent.com/-TzuMY8hRENc/AAAAAAAAAAI/AAAAAAAAAAA/iYxZOz2reiA/c-rp-mo-br100/photo.jpg','14567670160750071148',1399),('AIe9_BFu3rdicGrPrzdyu4PDXmqMlywlVZg8F3h0NTZBhIxEs_HnmRl3g1KJ58pEeR4pg8ISspPVsEIfcMYCbw_KeYP6WpJSVDIKSyu9-jleR-YOiqdw0fc','This place is wonderful! Dr.miller and nurse Chris helped me with a ear plug that was stuck in my ear. They were so kind, professional and treated me like I was family! I can not say enough about this clinic! ALL of the staff was very friendly! I highly recommend this ER! I will never go anywhere else when I need to go to the ER! Simply THE BEST CARE in town! Thank you for taking care of me and making me feel so comfortable and relaxed in a highly stressful situation!','2020-07-16 00:34:05.393000','2020-07-16 00:34:05.393000',5,'sarah votaw','https://lh3.googleusercontent.com/a-/AOh14Gj6JnLgUT_juA64AH1v4oq_dPR20Da-mYX4HQj52Q=c0x00000000-cc-rp','16891069708558046635',22038),('AIe9_BFu3rdicGrPrzdyu4PDXmqMLZ3Y8aQsHuXW__PpasX4JDNdYK-rQ5vaFNgR9KuqcE60O-yTfr-fjkx1vrZ51ntQe3B0VpV7YDjM8O04cNW14POWcuc','Don\'t go to this place, you make an appointment for no reason. They make you wait for hours even with appointments and no nobody comes outside to say anything. There was a extreme sick person in line, they should separate depending on case. If you don\'t get it from the someone else you\'ll get it from this people. They make you go inside instead of staying in the car. Don\'t go to this place you can clearly see they are just making their money from people that is worried.','2020-07-11 11:39:06.687000','2020-07-11 11:39:06.687000',1,'Javier Medina','https://lh3.googleusercontent.com/a-/AOh14GiEQSz6ABrsav9rIXQpel9yHnLn8gM6jNB75dh5yw=c0x00000000-cc-rp','16389487648212004696',21588),('AIe9_BFu3rdicGrPrzdyu4PDXmqMM_ikSm8NDb9AtZXZ-Ze_xhjuVV3OqIAH8Td3CffSunSfoxQao1Ckgyv1VSKds834QrgIl9YGzQmxiJrwi2YuuXVoIiU','Quick, easy and professional! The staff was very friendly and knowledgeable. We were well-informed about everything that would take place and they were gentle and patient with my daughter. Would definitely recommend Stafford SignatureCare Emergency room to my family and friends.','2019-12-08 00:04:06.343000','2019-12-08 00:04:06.343000',5,'Renee B','https://lh3.googleusercontent.com/-w4WUpru-brI/AAAAAAAAAAI/AAAAAAAAAAA/Uh6_OhRH_60/c-rp-mo-br100/photo.jpg','8918455867446117794',9038),('AIe9_BFu3rdicGrPrzdyu4PDXmqMM0RjKo70h2oaQFwc0M3GzgWAmUQzLvUyp3M5PG1Ps-ApF34UsWWrAa7b7p2RoEOOTfB_7wiZHBcJVjIb4cGtsRGUyHc',NULL,'2019-02-22 17:15:29.881000','2019-02-22 17:15:29.881000',5,'Casey Barnhill','https://lh3.googleusercontent.com/-aHyChjmrLUE/AAAAAAAAAAI/AAAAAAAAAAA/GdQfDxqAgI4/c-rp-mo-br100/photo.jpg','17898197009688164559',5835),('AIe9_BFu3rdicGrPrzdyu4PDXmqMma0Wmf3bnu74SShVuWqIPYa91LO4yu5v-ae27MS1nhw6iwguqqX0bfY74kPze8hbaWbDPzeAdxgfs6UC8_buEtIgGU4','Lucas, Kim, and Sherri were all super helpful and friendly.','2019-08-15 19:17:54.912000','2019-08-15 19:17:54.912000',5,'Malachi McCool','https://lh4.googleusercontent.com/-ULeFNw0TqV4/AAAAAAAAAAI/AAAAAAAAAAA/SWPXQK-d6Yo/c-rp-mo-br100/photo.jpg','3272657195432704501',6910),('AIe9_BFu3rdicGrPrzdyu4PDXmqMMaUOEGKgZ071qt-5EtRIYIbEfmj_ZQutUNROpLYPUpqxtQK10Dv1wG1xTbEQm-rByR3VdDyCHTfvYSDAuYFU0thXLGk','One of the best and affordable clinics I have ever been too. Everyone staff member is nice and very caring. I definitely recommend to everyone, even if you have no insurance. Easy and affordable payment plans. Cristina and Dr. Jones were very nice and professional.','2018-10-04 18:42:20.442000','2018-10-04 18:42:20.442000',5,'Christopher Munoz','https://lh5.googleusercontent.com/-xjdG0KFpGyQ/AAAAAAAAAAI/AAAAAAAAAAA/nnheDO67yrc/c-rp-mo-br100/photo.jpg','16891069708558046635',4423),('AIe9_BFu3rdicGrPrzdyu4PDXmqMMEx5h9kcABnv80qOiabMvLfDNqztdnyyMYMeSrKqz3qHowS5OzV-z4jHCOn73kMtTw7wwrEyd8SrASuRIxxvpfJ32vI','Best experience ever. ER was very clean and well mantained. Dr. Alloju, Blake, Delicia, and Son Le provided excellent care.','2019-12-02 21:11:08.969000','2019-12-02 21:11:08.969000',5,'Itza Gomez','https://lh5.googleusercontent.com/-0bv6E7IOxCI/AAAAAAAAAAI/AAAAAAAAAAA/3H8y71-Q5T8/c-rp-mo-br100/photo.jpg','8679688254631342173',8701),('AIe9_BFu3rdicGrPrzdyu4PDXmqMmHfXfGaTpc-Faa_o8s4PMzvGs9tVDiRSP42mLq78GYtWlk1Du-m1qU2MoYcgFGDw9bCJ9sgyNNBbqr2st-zg7A58DUE','Great staff from entrance all the way to the exit. All staff great on attending my baby and helping out','2019-11-12 03:16:53.388000','2019-11-12 03:16:53.388000',5,'Armando Lopez','https://lh5.googleusercontent.com/-226hyJY2zlE/AAAAAAAAAAI/AAAAAAAAAAA/8zsue7rTsE8/c-rp-mo-br100/photo.jpg','17898197009688164559',5442),('AIe9_BFu3rdicGrPrzdyu4PDXmqMmIs3pkkVQV-RzgtY7SRsb99AOzEYQtqn-k5wu7IJ_1q7kLWAr8teshfnnvYEcxhmd_rpXx0XBcYzu8CH3IGc7G18cAM','My visit was great!! Keera, Selina, And Dr. Baker were really nice and helpful!!','2019-05-30 14:35:41.367000','2019-05-30 14:35:41.367000',5,'Amber Porcelain','https://lh5.googleusercontent.com/-2KxIHA2-LjQ/AAAAAAAAAAI/AAAAAAAAAAA/1DaPzjKEuDs/c-rp-mo-br100/photo.jpg','17394740196501090048',4679),('AIe9_BFu3rdicGrPrzdyu4PDXmqMmIv6JnoUJc-JZpWsqm5TE1X-JYa33CEkCEmvh2XVJQqZIX1dkt9i_ODmHN6EyYf9qmnSNAkLEoYxprS2S-zAtZ3Yhts','As soon as I walked in I felt comfortable and welcome. I didn’t feel like an inconvenience and was seen promptly. They made me comfortable and treated me quickly. Results took a minute but the room was clean and comfortable and made the wait definitely bearable. All in all, an excellent emergency room experience.','2019-07-16 05:05:30.783000','2019-07-16 05:05:30.783000',5,'Allyson Ruble','https://lh3.googleusercontent.com/-JGGrC1oCgcg/AAAAAAAAAAI/AAAAAAAAAAA/jDg8WRSjVl4/c-rp-mo-br100/photo.jpg','2694018788013845459',6108),('AIe9_BFu3rdicGrPrzdyu4PDXmqMmJ00fcPwu3jDYrVxiTp2aToFSqJpbb2r1we1NKCeQzyhRmEa2LELf3c1yq30kacn3IRNnPz3CFcjDz9ypRDHQYUuE_M','One of the most pleasant emergency care facility experiences I\'ve ever had! No wait, friendly and attentive staff, treated my neck spasm quickly. 5 stars!!!','2016-08-08 14:10:57.288000','2016-08-08 14:10:57.288000',5,'Sage Beck','https://lh3.googleusercontent.com/-JKdjTqczoxU/AAAAAAAAAAI/AAAAAAAAAAA/bvk0fWKIdPQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5217),('AIe9_BFu3rdicGrPrzdyu4PDXmqMmjTT7Jt93kKCYs6k6GwD9ZIzmRY_mIffhNJt8dSh79WlcnV5CHYDIrdHGh6ear2q7vhw89S0UjGgx3gmaoscsSdlUeo','This emergency facility is 5 star all the way around neat and clean facility when you walk in excellent greating the front staff is professional and back staff they take there time and make sure everything is there for you and very friendly and caring I told them that I have never been treated the way they treat a patient.I want really put a big five 🌟 for Dr. Adam Boester this was my second visit were he was the Doctor for that shift and his service is over excellent the treatment and the out come is excellent and RN Shabha Anthony was very supportive and care was excellent everybody gave excellent excellent care o wish guys offered primary clinic care I would switch from my primary care physician of 18 yrs to you guys..like I stated Dr Boester is superior in what he do thank you guys so much for caring the way you do...','2019-07-28 03:06:40.569000','2019-07-28 03:06:40.569000',5,'Channell Brown','https://lh6.googleusercontent.com/-x6PG_eECLdU/AAAAAAAAAAI/AAAAAAAAAAA/T31qGrWNlGI/c-rp-mo-br100/photo.jpg','8918455867446117794',9084),('AIe9_BFu3rdicGrPrzdyu4PDXmqMMlxf8EG5rZDfTCviMkqAx2ptiTr-H6leNc-RVFh6E7IZTRI6SDPKvAq5Q88kWuYyFWtcEbGu4dAc6mu56VmVMrRRFYg','The staff was outstanding. Thank you Dr Faig, Laura, Jacque, Norma, and the front desk ladies!!!','2019-01-22 19:36:42.770000','2019-01-22 19:36:42.770000',5,'NOLA LOVE29','https://lh6.googleusercontent.com/-wI6UiSAr9eQ/AAAAAAAAAAI/AAAAAAAAAAA/GP94ekDRJ78/c-rp-mo-br100/photo.jpg','3511292162159714121',7458),('AIe9_BFu3rdicGrPrzdyu4PDXmqMMM0SA3H-6TuVEfi7BV5kVJge1uoTgE9QWhgIYBkGjl0o0gC_bKw671i79sw_lbcn_7HNIfpyOVvnSdkz3hPRmox0qqc','This is a excellent place to get help doctors are great staff is friendly and helpful. Dr. Henderson, Dr. Edwards, nurse: Karen, Rad tech: Ricky, ER Tec: Jaslyn, registration: Maryann','2020-03-02 18:52:46.795000','2020-03-02 18:52:46.795000',5,'renee victoria williams johnson','https://lh6.googleusercontent.com/-3MZwd3-G5Lw/AAAAAAAAAAI/AAAAAAAAAAA/FPJOtcEINNI/c-rp-mo-br100/photo.jpg','8679688254631342173',14713),('AIe9_BFu3rdicGrPrzdyu4PDXmqMmMwJP2QT9pqao0M-y092Kowh9dsxkwpZBe8Mz_CM3dbCv6bciHwQH_iAB25d2Tl3_uAmq5KddCWVsrech7liioEeruE','Tanisha is the sweetest lady here and so caring btw she’s also very optimistic and just makes any person feel better ! Thanks for everything.','2020-03-04 06:51:50.701000','2020-03-04 06:51:50.701000',5,'Kassandra Villasenor','https://lh4.googleusercontent.com/-TCz89FNfcpE/AAAAAAAAAAI/AAAAAAAAAAA/15D04IyHuHc/c-rp-mo-br100/photo.jpg','17898197009688164559',14109),('AIe9_BFu3rdicGrPrzdyu4PDXmqMMnL-iDQLrq4FY2G6ZcSgJmIl0DVYyyaw4Mw3lvhUwasJ85mEUXiTfBVt9tfI_j0DG1UG32FdXb9UH_Zdz2ewiG5EYHM','Huge thanks to Dr. Miller, Chris C, Kimberly, Cecilia at the front desk, as well Isaac and Natalie as well as the all the other staff took great care of me after a back injury.','2020-01-14 20:09:49.600000','2020-01-14 20:09:49.600000',5,'Chuck Bird','https://lh3.googleusercontent.com/-mZcrCfGDUag/AAAAAAAAAAI/AAAAAAAAAAA/koZrJoZ7lfY/c-rp-mo-br100/photo.jpg','14567670160750071148',9698),('AIe9_BFu3rdicGrPrzdyu4PDXmqMmQ2iYRbJhMf76xB6Yj_6bPMi-Do-busW9fbqZHE5P6K6-FTeL_1cf-9hpmMqpBRhMhfrlMKcH0UcIWTyHc5k4Loctyk',NULL,'2018-07-09 21:15:38.015000','2018-07-09 21:15:38.015000',3,'Nelson velasquez','https://lh4.googleusercontent.com/-b4YXJNVe3CE/AAAAAAAAAAI/AAAAAAAAAAA/_JSMKORQ-fM/c-rp-mo-br100/photo.jpg','17394740196501090048',4833),('AIe9_BFu3rdicGrPrzdyu4PDXmqMmtg9K1Z3gOcm-3zWb7fcH9vk7qdpWJaIYP2ecSc7C7ZtFLxHj__fKc56BStj-txB4LTa9NtLKvRS9pOqp-mpeYfoVNs','This is the 2nd time I have been here. Each time they have been fast and so nice. They enjoy working with each other. Because they work well together, they make you feel relaxed and by the time you leave you feel much better.','2020-01-29 19:29:18.249000','2020-01-29 19:29:18.249000',5,'Cheryl Phillips','https://lh3.googleusercontent.com/-C4do2Yulakw/AAAAAAAAAAI/AAAAAAAAAAA/RCkoSeuLZzM/c-rp-mo-br100/photo.jpg','16389487648212004696',10159),('AIe9_BFu3rdicGrPrzdyu4PDXmqMN_193beRknG_idjhAuj7Y0y2fSeK-pipMhOk6Z2j2y1TGdXqt-_LMKbeet3mMJrhCC83fkS48zxDP9QAf2XmgxxS5Jk','Nurse Jani and Radiologist Tricia were great. Both were very helpful at my ER visit!','2019-04-18 15:21:40.847000','2019-04-18 15:21:40.847000',5,'Brittney Brown','https://lh6.googleusercontent.com/-cW2XAIO3gE0/AAAAAAAAAAI/AAAAAAAAAAA/yJ-C9Ba59MY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMn8bCgIWshbyCBsAHiOWu1Fxo7CeHX0Gax46jkWjRjd1eTAh9KlntN1_dr4h4HPaehyiv5DnR-QUuckphhzeRvyH0-sc','I went in to get checked out and follow up due to a stomach illness. The day before I went to a family practice and they gave me 2 IV and send me home with antibiotics and nausea medicine. The next day I didn’t felt any better so I decided to try the ER , the front desk lady told me flat straight there’s nothing they could do. That I need it to allow time the antibiotics to work. I didn’t had the energy to fight it so I walked out. I would appreciated more if she took the time to go and consult with a Doctor I don’t believe she’s qualified to make that decision. She’s not the one going thru the pain.','2020-01-15 00:20:08.961000','2020-01-15 00:20:08.961000',1,'Sheila Flecha','https://lh6.googleusercontent.com/-SwhShm-KwCo/AAAAAAAAAAI/AAAAAAAAAAA/_TRSdsGqARw/c-rp-mo-br100/photo.jpg','13486358490203335051',13482),('AIe9_BFu3rdicGrPrzdyu4PDXmqMN8DPgTAR4u73sv0lDNtDgpRgiJIGh7TXOnaIfiyeHDeebT6WajnNHWqT3-cJRXidsV_JeebKlLq46wbIffqCQX7cFtI','My experience from start to finish was excellent. Facility is nice & clean. Staff, from receptionist Tanishia to nurses Shelly, tech Jessica and Dr T. Lindsay were professional, informative & compassionate. Definitely recommend SignatureCare for ER services.','2019-02-18 03:52:27.146000','2019-02-18 03:52:27.146000',5,'Elizabeth P','https://lh5.googleusercontent.com/-4qCau4BuqOY/AAAAAAAAAAI/AAAAAAAAAAA/9izz-kbrzvo/c-rp-mo-br100/photo.jpg','17898197009688164559',5849),('AIe9_BFu3rdicGrPrzdyu4PDXmqMnaaKInpNfchqmeDmLOMgxHT3S-5YNnVYiWj76vG5XSJ-VC-PFLaWpD7OCyg4Sqw_gzDq-fTZJ2RING0anS82IQ1_RmE','Exceptional. All staff was very professional and friendly.','2016-06-28 03:19:16.704000','2016-06-28 03:19:16.704000',5,'Gracie Presas','https://lh5.googleusercontent.com/-hy0_1G2PZwU/AAAAAAAAAAI/AAAAAAAAAAA/kiRhvGwZ32Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7971),('AIe9_BFu3rdicGrPrzdyu4PDXmqMnENGob0lr2toOpW5BN-lzbAOmpoN0ykwCbYbxtzDMnuDWsSdRuIK9f9RjJY08We4XnW9_ehhpe8ThE69UVyBWuRZ0Jo',NULL,'2019-04-03 22:12:27.616000','2019-04-03 22:12:27.616000',5,'Max Paul','https://lh3.googleusercontent.com/-E699BmP9BN4/AAAAAAAAAAI/AAAAAAAAAAA/YQ5xa0PAcTg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMNGa4IaloN2hT02z6P6IiWU9zDJVLxnFsM2B1TisDFAlyR5ONBMz6EhyP1KL2klyZKt2lAwR98m_ZzqYaWhxQdrMvFX4','Dr. Ding and the wonderful staff including Chris and Amy at the front desk helped us yet again for another visit. We are always so happy with not only their care but their follow up. Thank you for all the special care and attention they show their clients.','2019-04-27 13:04:43.435000','2019-04-27 13:04:43.435000',5,'Judith Irvington','https://lh6.googleusercontent.com/-Tjlhd2Ilw90/AAAAAAAAAAI/AAAAAAAAAAA/cxdJ66sUPfo/c-rp-mo-br100/photo.jpg','14567670160750071148',1347),('AIe9_BFu3rdicGrPrzdyu4PDXmqMNmnDfXN8i7mxLby22ay16glFgZxrMYbHo3oR1A2wMGS2RSo652hn5gYMACpJ6S2WKmTPdquvtCgOH0lkW33FDqQknek','Got checked in for abdominal pains. Everything thing was quick and smooth. Staff was kind and professional. Needed surgery after some tests and that was also booked fairly quickly. Overall, it was a good idea for me to come here. Alvean, Tricia, Dr. Patel were great in terms of communication and attentiveness.','2019-06-06 17:17:48.371000','2019-06-06 17:17:48.371000',5,'Mike Nguyen','https://lh6.googleusercontent.com/-jVuRbz1EguI/AAAAAAAAAAI/AAAAAAAAAAA/ZcILUInlSxc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMnmxyf35zV6zKK5g9r_ki1UMzSeBHbtUJDXFLb6y_wJfAs15GiGdGL9QlBf1wh4I4aKT1P8l4iUze2MjrDVN0B05AVX8','The best emergency room ever !!! The front desk is awesome and staff on the back was super nice to us !!! Thank you 🙏🏻','2020-08-15 01:42:57.866000','2020-08-15 01:42:57.866000',5,'Childrens Daycare#2','https://lh3.googleusercontent.com/a-/AOh14Gi8_rtqygWwb4VVCPGNtfLzvwo9mAVNNPtaCunc=c0x00000000-cc-rp','12541597562633926366',23004),('AIe9_BFu3rdicGrPrzdyu4PDXmqMNoctB_F5XFlbbEEt2XjG3wQEzAOu_R-Csp105gGvW7_l_LduyJF7h_f23Xrzytfh7Nfu40FhEg3juzD2LFrEIUg32dU',NULL,'2020-07-24 16:42:05.774000','2020-07-24 16:42:05.774000',5,'Thomas Montelongo','https://lh5.googleusercontent.com/-tjPG6FfkuRs/AAAAAAAAAAI/AAAAAAAAAAA/afrai-q5qAs/c-rp-mo-br100/photo.jpg','2077061009497551125',22851),('AIe9_BFu3rdicGrPrzdyu4PDXmqMNOyR2yDyixIFArMP5TQVKp4xwaLH3BHFArLzGc5vyzr8x5xmgqdfshAYgcZM80w4oz0XqNnAuxIZZhjjO5-FV3sLyNA','Everyone was very helpful and professional!','2016-08-20 19:23:54.649000','2016-08-20 19:23:54.649000',5,'Shirley Rush','https://lh6.googleusercontent.com/-NIhGO7tFOb4/AAAAAAAAAAI/AAAAAAAAAAA/XDJu1ynel2k/c-rp-mo-br100/photo.jpg','14904078213800803294',2465),('AIe9_BFu3rdicGrPrzdyu4PDXmqMNPxArhXOL-KXG2G1zQ6sYVJIuaULeGfhZu5ftzVxcDRIAKTeG6ZD70d2fWJMLqxY8zcjNjuvznhBn3rg7EhmP2X60ZI','I had a fast visit here. The staffs Son Le, Dr Cavazos , Nurse Blake , Delicia are very friendly. They welcome you in and comfort your visit. Thanks I will love to visit again.','2019-12-13 14:26:32.518000','2019-12-13 14:26:32.518000',5,'Shakeida Seals','https://lh4.googleusercontent.com/-NMgcc68hcwU/AAAAAAAAAAI/AAAAAAAAAAA/KK-MFjDebJE/c-rp-mo-br100/photo.jpg','8679688254631342173',8692),('AIe9_BFu3rdicGrPrzdyu4PDXmqMnUfZBsmipQ9MJoE32UCrpKY6jv6UzxpAUxRRrUo78NJ9bY2iW9zoODS8sMXZFhd6Fq_MhRrneKysYpXhi5irteXePlg','My first time here and I have no complaints. \nService was great they answered all of my concerns \nMaya, Kristina, Laura and An treated my with care.','2020-01-31 13:27:02.912000','2020-01-31 13:27:02.912000',5,'Haydee Garcia','https://lh6.googleusercontent.com/-DMZ8b1Hebo8/AAAAAAAAAAI/AAAAAAAAAAA/hUhABNdpDF4/c-rp-mo-br100/photo.jpg','3511292162159714121',14438),('AIe9_BFu3rdicGrPrzdyu4PDXmqMNUyBhsla4YngrAOE2b3XPIUViHkP0tiJ1LgymOVdysXVw9_Pm9dU_BOlK25tGGDD3WRpymtM8XdLeC_7zt-Pu9ZlHLY','Friendly and professional staff, quickly serviced','2020-07-20 22:23:21.671000','2020-07-20 22:23:21.671000',5,'Donecia scott','https://lh3.googleusercontent.com/a-/AOh14Gh1uJJyygRryWVhUZzeZUAE0neVXjg79F7eIhg5=c0x00000000-cc-rp','8679688254631342173',22248),('AIe9_BFu3rdicGrPrzdyu4PDXmqMo-WqINsXwOOfeVdo30Y5XMhYFbv8_suyByfHMDRgtk-M5_Ie0GBLmtRODCJxn0Evl2_KkkJKqDFfnpVSHOsOWb1a4O4','The receptionist preethy was inviting and friendly.....The advertising is true, there is no wait and you see the doctor immediately. The thoroughly explain everything and they are sincere.','2017-02-28 18:05:01.948000','2017-02-28 18:05:01.948000',5,'Reckless 713','https://lh5.googleusercontent.com/-qoVVlhzLNus/AAAAAAAAAAI/AAAAAAAAAAA/IG-Gc1alpzk/c-rp-mo-br100/photo.jpg','17394740196501090048',5105),('AIe9_BFu3rdicGrPrzdyu4PDXmqMO6kZhQrrZONhj1WRqUizJiBhuBkfcMfvvITJgrhhTLPJJcPLh2kArzKbR9Xmukg-dRm7ep1BkhKE_hlL3W_wG9UJV50','The staff was great and everything was quick and easy! Dyveliz, Jacob, and Becca all did a fantastic job and were so nice to us during our visit! 10/10 recommend','2017-08-19 16:31:31.716000','2017-08-19 16:31:31.716000',5,'Garrett Northcutt','https://lh6.googleusercontent.com/-2dvEZeUuWag/AAAAAAAAAAI/AAAAAAAAAAA/S6YrZpU-tM4/c-rp-mo-br100/photo.jpg','16590124370714063921',3957),('AIe9_BFu3rdicGrPrzdyu4PDXmqMOaygHsrFGlOvcH4qL8QW7krCeYwAKXXjhT-OuD45OBnfM9-09IRjChdeIzqGPgB1Z9vn68-i3LEL7XxL6iQTvg8mLZI','Nurse Audrey, Dr. Huerta and Jaime the Rad. were all so nice and took great care of me. I felt very safe in their care and recommend Signature Care to everyone.','2020-03-11 22:17:38.260000','2020-03-11 22:17:38.260000',5,'Chris Ann Whitney','https://lh4.googleusercontent.com/-VSn0FXMejXs/AAAAAAAAAAI/AAAAAAAAAAA/xeSbPPLkD-E/c-rp-mo-br100/photo.jpg','13486358490203335051',20924),('AIe9_BFu3rdicGrPrzdyu4PDXmqMoDhpOgtJqjX972NiC35io80K0foO8-vZhRO-6lLC7tCEg3W5ekLdzGsL1nzXGV3ts_BaHvUE6yHerxh3YdqIPCu6s7I','Awesome facility!! Easy appointment scheduling fast in and out process Dr Angela was so sweet!! The nurse that helped me when I first came in was very gentle and kind. Would definitely refer Signature care to my family and friends.','2020-07-28 02:54:30.554000','2020-07-28 02:54:30.554000',5,'Nicole Zavala','https://lh4.googleusercontent.com/-0O59DoVFg4U/AAAAAAAAAAI/AAAAAAAAAAA/69cJQwY5-og/c-rp-mo-br100/photo.jpg','14748677429039074158',22545),('AIe9_BFu3rdicGrPrzdyu4PDXmqMOHI_pwc1ob_qcZo2ZAM0yGQlO8ZTHHVd0lIqm1PkmmjOJQG__To7UwdnjLoenss28w8MBap-kdAUUBZcnRBFxR2lKpk','The team here at this emergency room we\'re were excellent caregivers. Prompt service. I would highly recommend this hospital to anykne I know.','2019-04-20 02:36:27.198000','2019-04-20 02:36:27.198000',5,'Miguel Quiroz','https://lh6.googleusercontent.com/-7jTJNl4CR6w/AAAAAAAAAAI/AAAAAAAAAAA/_5yV4vHfTsU/c-rp-mo-br100/photo.jpg','13486358490203335051',1033),('AIe9_BFu3rdicGrPrzdyu4PDXmqMoKqahYyFXQlsI7BeLnJEyD_I_qFmdc4AIAXEitJc0EyDYXVBGiNwapqjWAQ0r4XjkaMM7NuQreTwLAIoMJFUfn-kEzw','This was a great experience, staff was helpful and all my questions were answered. It also was done in a timely manner! Thanks to the staff Rollie, Natalia and Stephanie. They were all extremely helpful, and patient with my needs. They also give warm blankets.','2020-01-15 11:34:29.776000','2020-01-15 11:34:29.776000',5,'Prince Warsace','https://lh4.googleusercontent.com/-6xqh2qn9HR0/AAAAAAAAAAI/AAAAAAAAAAA/HINxKAofvS4/c-rp-mo-br100/photo.jpg','8679688254631342173',9833),('AIe9_BFu3rdicGrPrzdyu4PDXmqMOlHMHNHOnay4noOIMJOIGJlFzNY4YP3imW2fyPWrEUSPwaY3rI50hNVv2BiUMIF1Bt4Sm_sn0_-36_wZyyqzfT2RhrE',NULL,'2020-01-23 23:30:43.762000','2020-01-23 23:30:43.762000',5,'keeley thomas','https://lh3.googleusercontent.com/-jswAGBTKtR0/AAAAAAAAAAI/AAAAAAAAAAA/SGSdji_I_xU/c-rp-mo-br100/photo.jpg','3272657195432704501',10280),('AIe9_BFu3rdicGrPrzdyu4PDXmqMOpeC3nnu-ma6tiw33WoaOpBtVjRpNEPYPuOHzlOeG-CNA11Kkzu28ulfleHauTz4tUeeVolAps-FHj0uIW9d70UQVrc','They have been so helpful here every single time I have come in! Alexis is a very friendly receptionist who I have spoken with twice. Stephanie was very sweet while taking my vitals, and Gabe was a great nurse! My doctor, Dr. Vakey, was super helpful! Everybody was extremely accommodating and welcoming! I will recommend SignatureCare to others!','2017-09-29 02:19:56.308000','2017-09-29 02:19:56.308000',5,'Aly M','https://lh5.googleusercontent.com/-2vhfGLgWM0E/AAAAAAAAAAI/AAAAAAAAAAA/HS5gO4TiZ8E/c-rp-mo-br100/photo.jpg','16590124370714063921',3928),('AIe9_BFu3rdicGrPrzdyu4PDXmqMoucC3rBRXZkctxM4HFp_ev_f8SfRsJaUVDvZKszwKGV_tGFMXsKOfVQzqJHNtW-VrW3w13lRRc-Da2MY0dQAgqEheQo','Amazing emergency center. I walked in and was greeted by therisa she gave me all the paperwork I needed to fill out and got me right into a room to be seen. From there Katrina,Natalia and dr.alloju took great care of me made sure I was comfortable and updated me everytime through the process until I was discharged. Katrina was awesome when she had to come draw my blood she did it so fast and very little pain! Definitely recommend this center!','2019-06-21 03:18:01.330000','2019-06-21 03:18:01.330000',5,'Henna Virmani','https://lh6.googleusercontent.com/-lHqqeL1B-b0/AAAAAAAAAAI/AAAAAAAAAAA/qROCgkHxcsM/c-rp-mo-br100/photo.jpg','8679688254631342173',8830),('AIe9_BFu3rdicGrPrzdyu4PDXmqMP-XjWu0cwW2OYjejuJIlH6igEAf5tdHwU42jWogwy4EXbA0dBu43dYfF18tXKVy9MVAf3PHFdGRchHavU35rDJOunso','Absolutely amazing service! From the front desk, RN to the Doctor. We were handled with care and professionalism. In and out in a timely manner. Highly recommend!','2019-05-13 07:55:16.748000','2019-05-13 07:55:16.748000',5,'Patricia Westerdahl','https://lh5.googleusercontent.com/-1IoImjS6_bI/AAAAAAAAAAI/AAAAAAAAAAA/stJcOn0LLio/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5742),('AIe9_BFu3rdicGrPrzdyu4PDXmqMp0h-Pa3M1GeBAlCqoWfy5jUdlYL36eMn9owoiGzkkW1mGMDebCHem_BFsnyGaRDMHff_xBsg1sPSpNvMeuTahZHy9o0','Great service. Was there recently with a friend. Nurse Lisa V. was amazing!!','2019-06-06 20:26:08.545000','2019-06-06 20:26:08.545000',5,'Spencer Manning','https://lh4.googleusercontent.com/-USmejfN3vWA/AAAAAAAAAAI/AAAAAAAAAAA/ap-UPWzs4ig/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',989),('AIe9_BFu3rdicGrPrzdyu4PDXmqMp18Hoghv6LPwZJXLxsd7U9coagYa9J4kij-1_zfK6iAKA5m_w02l8-IG67fs-sc6B6Ge0oZ_edTlzTGN9F6FHWAoxTQ','I was helped by Dr.Alloju, nurse Blake, delicia and tech son le ...all were very helpful nice and patient !! def recommend!','2019-12-02 16:14:00.254000','2019-12-02 16:14:00.254000',5,'Dhalia Benavides','https://lh6.googleusercontent.com/-rrre45i_y_E/AAAAAAAAAAI/AAAAAAAAAAA/cRxRz5KIEUs/c-rp-mo-br100/photo.jpg','8679688254631342173',8704),('AIe9_BFu3rdicGrPrzdyu4PDXmqMp3-fRVtYdcy8A_W30KyZPjQATD7eUBPcypABHVr94ewhj3b4Sstee8TqBa_Bm3J_G2IHs9eCeehj0f7bAJwKthLqDwM',NULL,'2017-06-08 20:48:58.607000','2017-06-08 20:48:58.607000',5,'Kelli Schneider','https://lh6.googleusercontent.com/-XR9IQMW30KY/AAAAAAAAAAI/AAAAAAAAAAA/A31HV_PbjsM/c-rp-mo-br100/photo.jpg','14567670160750071148',1812),('AIe9_BFu3rdicGrPrzdyu4PDXmqMP8SOo7jWdnpVp2_KeAx3CPXNK5trtsD9cRAGwraJ6ZpvkRIzryFSMygtGVvmbNMp9-aVWKBWw9eKO0xYCRtM9SweWFo','I called ahead to make sure they provided flu/strep tests to not waste any time. The man who answered the phone was very friendly and I like a welcoming voice on the phone. I was seen within 5 minutes of entering the facility and everyone was very professional and kind. I was seen by Dr.Patel and he was informative and professional. He recommended two types of treatments for my strep and I opted for the shots. Within 6 hours of getting the shots, I could already swallow without any pain. I was back to work by Tuesday but honestly I felt better by Monday morning. I would use this urgent care center in the future if needed.','2020-03-18 02:13:17.161000','2020-03-18 02:13:17.161000',5,'Jackie Corpus','https://lh4.googleusercontent.com/-BzyPxNsr-4E/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmcBYka6GrOCJeyIp1CoH5bVQUGsA/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21086),('AIe9_BFu3rdicGrPrzdyu4PDXmqMp8zEt8_RsBRr4v62_Qhha8w2MNW1VcbQsuRlXrLJd2xi-hb4c7k0R1mC2mutmvrnn_8uvED3uuVBtXDWOLdtq3vloSg','Kim was very helpful at the front. Michelle and Sherri were very nice, and Dr. Yost was also very helpful and informative.','2019-06-05 16:46:08.004000','2019-06-05 16:46:08.004000',5,'Lorrin shaver','https://lh3.googleusercontent.com/-us425K7t5_0/AAAAAAAAAAI/AAAAAAAAAAA/2802iiwmEN8/c-rp-mo-br100/photo.jpg','3272657195432704501',6954),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPbDDwkWt5OXC0v1jmliPH7mPwdADyXWu-UytDcfnoVP6DpwVaT0DBFx9HpMtONLXxvhLfS_HW2N6swv2BBeIwp0E2Wk','Very well-equipped facility, very attentive staff and great doctors. I didn’t have to wait at all, all the necessary tests were done within a few minutes of my arrival and my problem was diagnosed very early, which considerably reduced the recovery time.','2018-07-28 18:03:44.380000','2018-07-28 18:03:44.380000',5,'Ksenia Annis','https://lh3.googleusercontent.com/-j-BZFUB5SKU/AAAAAAAAAAI/AAAAAAAAAAA/cvTpvDLEMns/c-rp-mo-br100/photo.jpg','12541597562633926366',627),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPbu_xjhSg9CcrV6FxomKzPcvTqON9e20DrzUxPR9mRP3VzkTNrrnvhTN142vSLBh5Bza-QJ2PqiJp-FjyFtb9dIsenM','Awesome staff! Thank you Jocelyn, Alvean, Marcus, Jordan, and Dr. Dang! You all were very friendly and helpful. Great service.','2020-03-16 12:53:44.552000','2020-03-16 12:53:44.552000',5,'Myeesha Williams','https://lh4.googleusercontent.com/-Jgk8HrffUxg/AAAAAAAAAAI/AAAAAAAAAAA/Hz39AokS798/c-rp-mo-br100/photo.jpg','16389487648212004696',21013),('AIe9_BFu3rdicGrPrzdyu4PDXmqMpBxAYjQsB7jXwYgYZzdLxwokuX3zfzEzALsoYhDc9woMhwYftA4vbiHSv9a2iT3oBp74MxVFk72tMXVxGwuKDTIgJBE','Fast and friendly is the quickest way to describe this place. The care I received here was outstanding and I never had to wait very long for anything. Dr. Chiang was very knowledgeable and handled my case flawlessly. She gave helpful tips for continuing care and helped me to decide on a final solution to my problems. The nurse Brenda was very personable and efficient.','2018-08-12 02:16:07.836000','2018-08-12 02:16:07.836000',5,'Steven Francesco','https://lh3.googleusercontent.com/-wAjs-UpLw-0/AAAAAAAAAAI/AAAAAAAAAAA/Ks0kn9Fddfs/c-rp-mo-br100/photo.jpg','8918455867446117794',9248),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPd6Nm2FyW_K41pR2dnhjArrsEE-MuFCpPT3M6SrI3VRrxj9o2gBS65SPibETWu0zwoXPlo2WMk-aUlhokaZrl541xqI','This people here are awesome. they seem to really care about the well being of their patients. They don\'t make assumptions based on how people look. Their main focus is to get you better. Thanks for taking good care of us.','2017-10-10 18:06:57.611000','2017-10-10 18:06:57.611000',5,'Shica Rodriguez','https://lh3.googleusercontent.com/-CPXZaVjGtGI/AAAAAAAAAAI/AAAAAAAAAAA/5T81a-tzi9I/c-rp-mo-br100/photo.jpg','17394740196501090048',4952),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPeIWtJPqI2GUAnEM2_wtNe2_MH-s0aHDwuMVvL1xX3wrGmMr0hIB6DR7ljEHr3-3L5EPmQTWtpNLnO1mX1YE0vFrnsc','Dr. Harjai and the nurse, Jacob, were quick and got me all fixed up. The whole staff was so nice.','2019-09-15 16:07:31.575000','2019-09-15 16:07:31.575000',5,'Emily Harper','https://lh3.googleusercontent.com/-q9YAPXEARaU/AAAAAAAAAAI/AAAAAAAAAAA/rqS8GJEoCZQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3209),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPf5REoY_fbFtGNsMpkOLkdAeDsfr42RPQpl6U3Wma-uYkINAhGrHPgzwYvTlVSgoclfuVqJIyyMA2sX2PDTgmwVOvMs','I love this place it was very nice visit. They were very friendly.','2020-07-28 02:42:23.100000','2020-07-28 02:42:23.100000',5,'Jenifer Osorio','https://lh3.googleusercontent.com/-Yvgdd05NH68/AAAAAAAAAAI/AAAAAAAAAAA/KnktlEEbIRQ/c-rp-mo-br100/photo.jpg','14748677429039074158',22547),('AIe9_BFu3rdicGrPrzdyu4PDXmqMpF7iRWZ0VN8gbR0B4QNMTPvINvubxvavzhrBVhxu9T1J0K1ybplDAeYUtlet0Et9_N80ikCQ2w_vFI0e70DkV54BmAE',NULL,'2019-12-20 07:03:43.849000','2019-12-20 07:03:43.849000',5,'Ashlyn Bunch','https://lh4.googleusercontent.com/-kF_D9gBYuCM/AAAAAAAAAAI/AAAAAAAAAAA/epBd9LbZtAw/c-rp-mo-br100/photo.jpg','3272657195432704501',6835),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPlAAz2X7utVBrNEGwn-jujn2aql7VNNzGiI346zhUJ3GYWaL3KF1cr0YGJFZeD5yZL9eoFNHbS9_RnAdGg0PUNZt3J4','I was just tested for strep and covid-19. The ladies at the front desk are doing an incredible job with disinfecting, keeping patients informed and processing paperwork quickly!\n\nA few patients walked in wanting to do a covid-19 test without symptoms but they are currently by appointment ONLY which MUST be booked online unless you have symptoms which is stated clearly on the website. Several people were upset with the front desk because of that but honestly it\'s not their fault! In fact, it\'s being done that way to try to keep the waiting room from being full of people and increasing the likelihood of transmitting the virus further! \n\nSo anyway, HUGE thanks to the staff for everything y\'all do and especially for caring for those who aren\'t kind to you too.','2020-07-07 15:39:43.206000','2020-07-07 15:39:43.206000',5,'Andrea Figueroa','https://lh3.googleusercontent.com/-XLz0Tqh5RGQ/AAAAAAAAAAI/AAAAAAAAAAA/4de4Q_83Llg/c-rp-mo-br100/photo.jpg','2077061009497551125',21443),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPqFhRA3u0RUHvdzhbqfkkuK0of5Z8aHOoIsLwn_ou8QmevQjQMWEABojvV2tdo78PMD-HoD_3oj0aNhNPDM4UsqsCFI','The receptionist was great! The nurse Amanda was also great and friendly.','2019-05-04 19:58:13.614000','2019-05-04 19:58:13.614000',5,'Krystle Farris','https://lh6.googleusercontent.com/-ywBk2BVqCP8/AAAAAAAAAAI/AAAAAAAAAAA/gMc3dl5dxSU/c-rp-mo-br100/photo.jpg','13486358490203335051',1019),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPUoQE51nJoCUyMmNDy_kbUi-yx0OCyE93tvuciRrKb8BqmEek6cFwfPQRX1DL7EduXi7YttOSY9zkXDFMQXy8ERTuKY',NULL,'2017-02-14 21:50:28.692000','2017-02-14 21:50:28.692000',5,'howierenee','https://lh5.googleusercontent.com/-xDBd4BVQTmI/AAAAAAAAAAI/AAAAAAAAAAA/8IDVvbY2zCQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4557),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPvpZIwnAxWhVKs2PiVxUllmhI41Klq4q4Ga-oIL5MkMRtzetnzR35a074LrNoF_hN-Szz7yiYVHCH8Br2so5BB1pkJ8','This place is always clean, professional, efficient and fast! It\'s my family\'s go to place for emergencies.','2016-11-20 23:29:37.544000','2016-11-20 23:29:37.544000',5,'Mimi Jones','https://lh5.googleusercontent.com/-dvigmZ5kAoA/AAAAAAAAAAI/AAAAAAAAAAA/nMvy2cyViG0/c-rp-mo-br100/photo.jpg','17394740196501090048',5166),('AIe9_BFu3rdicGrPrzdyu4PDXmqMPzpjF6IgSq_RAeMXZLkDrcl6DqwKRyNZZzNG9Vi8OCy2nO86udBA-5mfcJGoXbqgSCUjtJZ9DvgmrZQ5CSvOp0Iz6Yo','Great ER. My son got attended very quickly and the nurses and doctor were very nice! They explained every procedure and explained what I should do when I get home. Very patient and great staff.','2019-10-05 02:32:15.716000','2019-10-05 02:32:15.716000',5,'Jireh Cruz','https://lh6.googleusercontent.com/-TjTMSufXKb8/AAAAAAAAAAI/AAAAAAAAAAA/N6Bu8S-VpfU/c-rp-mo-br100/photo.jpg','6521947413723274945',8126),('AIe9_BFu3rdicGrPrzdyu4PDXmqMq0WBCJnG1oqUEFHm4ykDgw-_GFCTROHXDOEIyoJsgZ3QpbWwL_c69yLLIMku1nhakTjy5MskgtyAXLHXzHIZEmCUSGA','Cody did a great job with the Covid test, fast and careful.','2020-08-21 20:16:07.785000','2020-08-21 20:16:07.785000',5,'Ellie Ailemar','https://lh6.googleusercontent.com/-rvLhIgPBcF8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnrnqzb2zt3VJUIlpJDX26O2eRsLQ/c0x00000000-cc-rp/photo.jpg','8918455867446117794',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMQ35NcgViHIaAeaQ19RdB52Uor51qPAlXfnDlsPLK4XtJRNGE1XFvWGLPTHNSN4-DIQIxG43e5l2tOADLCSmHLdMvLac','Great service, very quick process, got in and out the door within an hour which is very fast compared to most emergency rooms. The staff was very kind and took care of my injury very thoroughly.','2018-08-27 17:54:03.070000','2018-08-27 17:54:03.070000',5,'Jake Fitch','https://lh3.googleusercontent.com/-pVv2ciWGQ2w/AAAAAAAAAAI/AAAAAAAAAAA/VsmhP-GBNWM/c-rp-mo-br100/photo.jpg','16891069708558046635',4439),('AIe9_BFu3rdicGrPrzdyu4PDXmqMQbO1dSqxd0NDRCrENSEEyIlD9OVWwMnGfvfi_NG4XRPP4mO6Vv9w2nERqazwUiwsA8u6iqdkhRYQvHFSQg7iRmL6czw','Very attentive \nListens and makes sure to be as helpful as possible','2019-01-17 03:33:08.811000','2019-01-17 03:33:08.811000',5,'Carrie Garrett','https://lh3.googleusercontent.com/-EzpFfo0veu0/AAAAAAAAAAI/AAAAAAAAAAA/dJn77bKZRgw/c-rp-mo-br100/photo.jpg','12541597562633926366',563),('AIe9_BFu3rdicGrPrzdyu4PDXmqMQcXDyigYDOV9YnDGIS4FmxB-9KHbkDX_MHkHhiebHlQwsazB0wE3KH5mZfrSlvjt7exJT37kvW9GY35bZb4Xc1GB9bM','Ms. Magali Loera made the process of diagnosing my appendicitis as smooth as possible. I would definitely recommend this ER to anyone in need of immediate help.','2019-01-18 18:03:40.266000','2019-01-18 18:03:40.266000',5,'Margarito Vasquez','https://lh3.googleusercontent.com/-rY-34CJu5vY/AAAAAAAAAAI/AAAAAAAAAAA/A2c8TUgYOZ4/c-rp-mo-br100/photo.jpg','6521947413723274945',8323),('AIe9_BFu3rdicGrPrzdyu4PDXmqMQFDo0eCu-CGOt45fwMBHdKaZy1BrMYDPKF_9P08Ats6q7GAfeP6QMtA91bCKSGzxUe3yJmz-V0X_ax7JNi8ufOzn1wc','(Translated by Google) Incredible Dr. Miller and his team was Bryan RAD, Meredith, Tech Tim and Jasmin were very efficient at all times. Jasmin took our information in a minute the nurse came for my husband. Dr. Miller began to sew my husband\'s finger that was bleeding immediately. We leave in 30-45mnts. EVERYTHING very effective and professionally done!\n\n(Original)\nIncreíble Dr. Miller y su equipo fue Bryan RAD, Meredith, Tech Tim y Jasmin fueron muy eficientes en todo tiempo. Jasmin tomo nuestra información en un minuto la enfermera vino por mi esposo. El Dr. Miller empezó a costurar dl dedo de mi esposo que sangraba inmediatamente. Nos vamos en 30-45mnts. TODO muy eficaz y profesionalmente hecho!','2018-09-07 05:53:06.511000','2018-09-07 05:53:06.511000',5,'Nidia Padilla','https://lh3.googleusercontent.com/-osvNkMvq0G0/AAAAAAAAAAI/AAAAAAAAAAA/VwegOqb7MI4/c-rp-mo-br100/photo.jpg','14567670160750071148',22496),('AIe9_BFu3rdicGrPrzdyu4PDXmqMQjeqMrxz5hNunOmSsc5PPG0Js-PjgSnpzzIjYcdjQwLwnv1oysIx5NDE4NUzgjJZi8FZjTTE1yzarU7De1w4szacGdY','As a poor college student something as simple as an ear ache can be detrimental to the fragile balance between work, school and social life. I\'ve been to multiple clinics and ER\'s in the past and have never been treated with as much respect and care as I was here. The entire medical staff was genuinely concerned for my well being and activley worked to get me in tip top shape and out the door as quickly and as efficiently as possible. The receptionist Earl H worked fast to get me into a room. The nurse Kaite K and Radiologists Clay R really made me feel welcomed and at home. Dr. Lingan was hands down one the most caring doctors I had meet in a while. This man genuinely cares for his paitents. The experience Signature Care Clinic at South Austin provided is the standard that all clinics should strive give.','2018-09-13 05:39:51.996000','2018-09-13 05:39:51.996000',5,'what are you doing over there?','https://lh3.googleusercontent.com/-YOl4Ee3lsB0/AAAAAAAAAAI/AAAAAAAAAAA/rZJr9Jtzgss/c-rp-mo-br100/photo.jpg','16891069708558046635',4432),('AIe9_BFu3rdicGrPrzdyu4PDXmqMqNjC1vCUBE348F5MN5vEh4i3k3MtUEWV8XzcaEWwHyZ-abYpLNtAxsSWxS4zIuAg1bG0gkmPocvExYKtRF8Fsjbq1B0','This was my first time coming to this emergency room, let’s just say I had no clue how quickly everything would be done and taken care of. They were fast and yet still very caring. Jani, Tricia, Aurora, Jasmine and Dr. Cavasos thank you so much.','2019-08-29 19:53:37.146000','2019-08-29 19:53:37.146000',5,'Azucena Cleto','https://lh5.googleusercontent.com/-14Tyb5CzwEQ/AAAAAAAAAAI/AAAAAAAAAAA/8C_8TDF2svM/c-rp-mo-br100/photo.jpg','16389487648212004696',2968),('AIe9_BFu3rdicGrPrzdyu4PDXmqMQNyLM3zTI1o_AAJrR5irYmKcz9IW1o_d_oO0sbuqr2IvFQJzvI0_dXLUVSW9QSnc4HuqsERaJfwYtACh3FZ0vT0n6QU','Lorena. T, Dr. Vakey, nurse Jacob, and Radiology tech Jr were all awesome and accommodated me well! Will be back again!','2019-11-29 18:55:08.358000','2019-11-29 18:55:08.358000',5,'Tin Dun','https://lh3.googleusercontent.com/-B9lFNXAw1wc/AAAAAAAAAAI/AAAAAAAAAAA/DO1fbBDkUMk/c-rp-mo-br100/photo.jpg','16590124370714063921',3067),('AIe9_BFu3rdicGrPrzdyu4PDXmqMqOtukdhOr7V2EPiYkAyPAZVyCWX2S3AlWA8j4T2LbQTM9kupg9cPyWOIXwcWcFsvGrFfWC3Dj4u00D2ZYHats7mMHV4','Dr Yost, Shelby, Mollie, Kara,and Gunner were all amazing today with our trips. Thank you all for being so caring.','2020-06-10 17:52:43.634000','2020-06-10 17:52:43.634000',5,'Savannah Fuller','https://lh3.googleusercontent.com/a-/AOh14GhEnSLsIKvNSRU7t53EHE00tjTvRzzvCPWGG-EDRA=c0x00000000-cc-rp-ba2','3272657195432704501',21127),('AIe9_BFu3rdicGrPrzdyu4PDXmqMqpJwXS7kg9qXf39MPzWwVvWYX1b5N4sqpwS45LyDiP9Xydl6wcsg92P1LPpA19bSgSjOqaOeAumlec9oWmGJ9_NpDfc','Anthony, RN & Kathleen the tech were very polite and welcoming. They made the visit for my friend comfortable and safe.','2019-03-05 05:36:36.855000','2019-03-05 05:36:36.855000',5,'Victoria Portus','https://lh4.googleusercontent.com/-LGfIIRgHd8g/AAAAAAAAAAI/AAAAAAAAAAA/jLEUtRXxZfg/c-rp-mo-br100/photo.jpg','16590124370714063921',3509),('AIe9_BFu3rdicGrPrzdyu4PDXmqMQQpStqnIeicVTBLU1Lz5VtrBd0NIRSTCwWGt3gJ1RhXikI8muxjx_qKmD0RIjXvajbdr7XM4eUngD111M9QADtSt1Cw',NULL,'2019-07-03 21:24:47.302000','2019-07-03 21:24:47.302000',5,'Mr.gotTheMunchies','https://lh5.googleusercontent.com/-OELYNfgXe4A/AAAAAAAAAAI/AAAAAAAAAAA/pprbIPYZr6k/c-rp-mo-br100/photo.jpg','17898197009688164559',5665),('AIe9_BFu3rdicGrPrzdyu4PDXmqMqRcb88Dr9a7MGNzVLeA_qg7hgPoex-ThmnWxtkcVfJCOALgW0xNVRWLjSWI-9cHs5CQsN-c0xurOvrmNITuhQFKO2II','From checking in to being discharged home, SignatureCare was the best healthcare experience a patient could ask for. Professional, courteous, empathetic, knowledgeable healthcare professionals.\n\nThank you to my healthcare team: \nNursing : Kara, Theresa, Mollie\nRadiology/Lab: Gunnar, Sarah\nRegistration: Carla, Tobie\n\nThanks again for your professionalism and courtesy during my healthcare stay.','2020-02-12 20:31:24.384000','2020-02-12 20:31:24.384000',5,'Eric Campbell','https://lh3.googleusercontent.com/-qXj8Uh54-T0/AAAAAAAAAAI/AAAAAAAAAAA/ky-Py6_iatY/c-rp-mo-br100/photo.jpg','3272657195432704501',10807),('AIe9_BFu3rdicGrPrzdyu4PDXmqMqvyGchzf__35J9ExnM9Y9arppvecgksycWMo6YoqJYaSM8ktA5mIgE5gk2uATrt-5e7tJVm_ry9nygi49ej9OacPrm4',NULL,'2016-12-17 18:18:33.911000','2016-12-17 18:18:33.911000',5,'John Alma','https://lh6.googleusercontent.com/-F4LJ9PMRFuI/AAAAAAAAAAI/AAAAAAAAAAA/lX22jOgKiD8/c-rp-mo-br100/photo.jpg','14904078213800803294',2438),('AIe9_BFu3rdicGrPrzdyu4PDXmqMqXoR8ta-0_lProXV_Aw1BMFQZr358YovZL43_fy_5GQSQ3xDDFgkXADNlJdaL-zeakCMpJaXlYg4IVClpNwLuhec31A','Timely and great care while my husband was here after his motorcycle accident. Naomi, Jacob, Juan, and Singla were amazing! Strongly recommend them!','2020-02-19 22:42:12.543000','2020-02-19 22:42:12.543000',5,'Samantha Trehern','https://lh3.googleusercontent.com/-WNUfKuKhdW4/AAAAAAAAAAI/AAAAAAAAAAA/AuTg5UDYWvg/c-rp-mo-br100/photo.jpg','16590124370714063921',13841),('AIe9_BFu3rdicGrPrzdyu4PDXmqMQXTaXDMWnFnpT7VqieDFnVTifnwqJz9WLTyTWXSchwvaNjR1b45Bi8OxHNhP9WFNw3tZKsiHB9bGfUWaqwJ2aUHWonE','Everyone I dealt with was awesome. Fastest I’ve ever gotten in and out of a doctors visit.','2020-01-30 22:31:00.648000','2020-01-30 22:31:00.648000',5,'Cody Engstrom','https://lh3.googleusercontent.com/-cshXEeNiGZs/AAAAAAAAAAI/AAAAAAAAAAA/wdYl-5ofsRI/c-rp-mo-br100/photo.jpg','3272657195432704501',10468),('AIe9_BFu3rdicGrPrzdyu4PDXmqMqZTmeXYpEzD0Bn_rxk6BMX2aoqp1SnbK8s7qpgLyZsw7KJFNTTJm8I4cEnpiiMc4eLCeYuzR2gXS6nT0O9Lrk_lafvw','Great staff will continue using them the best!!!','2017-01-26 02:27:30.828000','2017-01-26 02:27:30.828000',5,'Yvette Lopez','https://lh3.googleusercontent.com/-n_irG9cTG10/AAAAAAAAAAI/AAAAAAAAAAA/ntN2GAukfQA/c-rp-mo-br100/photo.jpg','14567670160750071148',1905),('AIe9_BFu3rdicGrPrzdyu4PDXmqMR_YkL7VZIzHi2-PZfdrE4K1zuXCRnzkwZPMkDUzzOWN6b9NCqHpArEw737mIMyX8p5XlD5Z7rtwAsTmIeWCElpAfWKE','My experience has been great! Delicia, Duke, Seble, and Dr. Dendy have all been helpful and to the point with my issue and pain, even better than my PCP. Hopefully I won\'t need to go to Urgent Care soon, but if I do, I know where to go!','2020-02-26 13:52:07.354000','2020-02-26 13:52:07.354000',5,'Christopher Barnes','https://lh4.googleusercontent.com/-thSlrO6dJCw/AAAAAAAAAAI/AAAAAAAAAAA/Qq0YolTci3U/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',14727),('AIe9_BFu3rdicGrPrzdyu4PDXmqMr1eHyHQ7DvW6_8QF0yl7f6T2cZv839OXrIHq0eE6IKZlbYtqB86blfnk-LNn8iOH_oeTmElk4Q7ttN_Kzai2gYvI-EU','All you can ask for when you have an emergency is a doctor who doesn\'t seem like he\'s in a rush to get off to the next patient. Clean with an attentive and comforting staff.','2019-09-23 14:28:26.855000','2019-09-23 14:28:26.855000',5,'Matt Meli','https://lh5.googleusercontent.com/-YUkT0J0l96g/AAAAAAAAAAI/AAAAAAAAAAA/SdgYhfL2Zic/c-rp-mo-br100/photo.jpg','16891069708558046635',4195),('AIe9_BFu3rdicGrPrzdyu4PDXmqMR4HJc0I_fctcEIRm0zn7UpErmNHnjQWrH7hv4xJbUemX3IqrUSNOb5ZtmDqMHuFoItZ3f0PROuYFoLjC2avb1UlhWNU','Excellent service and knowledgeable staff. Made me feel comfortable. ','2017-08-12 04:22:33.966000','2017-08-12 04:22:33.966000',5,'Ricky Rozay','https://lh5.googleusercontent.com/-9ARzAJQLeNQ/AAAAAAAAAAI/AAAAAAAAAAA/468e4aoffwA/c-rp-mo-br100/photo.jpg','14567670160750071148',1774),('AIe9_BFu3rdicGrPrzdyu4PDXmqMR5D757IYvFcySgMs4iUf1WtETCty1tbeqFeAFcUenCowYRLO0AVOJ43HRHy3r_pC53ZxEJZd96bxNWKqxwuVq9w4y-0','At first I thought the 5 star reviews were like some type of bots you know but I had to see for myself since I’m always skeptical about anything, but anywho the service was great, fast, friendly, warming and I felt secure in their safe environment. and it’s true about a nurse calling you in so they can see you before you can even finish filling out your paperwork, so yeah I highly recommend','2019-06-22 15:06:14.745000','2019-06-22 15:06:14.745000',5,'Texasavage','https://lh4.googleusercontent.com/-Xq78tpyTnW8/AAAAAAAAAAI/AAAAAAAAAAA/Brcx241RBLo/c-rp-mo-br100/photo.jpg','14567670160750071148',1288),('AIe9_BFu3rdicGrPrzdyu4PDXmqMr6PcGv-qzT6v-PlcnniwZBp-1pQHkC5vH_ANwfOC5Or0qdpKXHpPAym-KWL_0AKD5SiKI8ugexnxQF0Xx8o5flJv1HM',NULL,'2020-07-26 14:53:37.158000','2020-07-26 14:53:37.158000',5,'Mariam Javed','https://lh4.googleusercontent.com/-cIgHlKwwQeM/AAAAAAAAAAI/AAAAAAAACX4/AMZuucnKsd6pTRh7EiyhQiaJbfqZ7fAOUA/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22067),('AIe9_BFu3rdicGrPrzdyu4PDXmqMR9ir_0Pg5KfPHL0w_8s4pPZcgpPI3ndaT6P7fQLXjXYZ5aAMwL6MAjoCvB2p0NqVgTeMeJwOuUHqhbex2-ehoSgGoOI','My husband and I both came here to do our covid test. The people were nice and relatively quick.','2020-08-23 23:49:48.357000','2020-08-23 23:49:48.357000',5,'Jessica Carpenter','https://lh3.googleusercontent.com/a-/AOh14GgU4kGQnOcuYydxyZM0EBVBBxPuGDuSz7AW5VXJ=c0x00000000-cc-rp','14748677429039074158',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMriYy9wk8Rfn9tczMbLsWzEeKoq4ebMhGW6iezsW3Y45x69kPVrAUJu2OO6B0cgO5s8vmniEfJKKxbxoo1ImfFF7PNqg','Mercy and Dr.Lim were Wonderful I wanted to thank them very much for all of their help and consideration and having patience with me coming in with bronchitis needing several testing and diagnosis done','2019-11-19 18:41:46.001000','2019-11-19 18:41:46.001000',5,'Alisha Beard','https://lh3.googleusercontent.com/-Hdjuc8tCZnc/AAAAAAAAAAI/AAAAAAAAAAA/zBzYm7zDXL4/c-rp-mo-br100/photo.jpg','12541597562633926366',380),('AIe9_BFu3rdicGrPrzdyu4PDXmqMrtwkSJsiD6U559Aji7byyj8IH7tkWvRral6tj1mjAzFISnQ-XGzUVjUUOgXHLp_xAWp5hCfCw1eE-qjdfBPyYAZS3VY','Friendly service, amazing staff, fast process when admitting you in. They will take care of you and make you feel like your at home. Would recommend and will definitely be coming back.😊😊','2020-01-31 00:58:01.083000','2020-01-31 00:58:01.083000',5,'Mikeila Dobbins','https://lh6.googleusercontent.com/-rQyZpco6O-w/AAAAAAAAAAI/AAAAAAAAAAA/Pl9oS_UGxlE/c-rp-mo-br100/photo.jpg','2694018788013845459',14259),('AIe9_BFu3rdicGrPrzdyu4PDXmqMrwjho6_FLSzWrmTq9b-22DRidBACIIRFDfmpOujbDhHxw2UX-ZMmx7MRFQIL9Noq7Ag1WO8wv--ERdnj-vhs1YV4puw','Laura, Jacque and Brittany were awesome.\nThey took care of me and were very friendly throughout the entire visit. \nHighly recommended 😉','2019-01-08 16:45:36.654000','2019-01-08 16:45:36.654000',5,'Pollly Alvarez-Neri','https://lh5.googleusercontent.com/-yQHMiRj33dk/AAAAAAAAAAI/AAAAAAAAAAA/p4DrW20W2BM/c-rp-mo-br100/photo.jpg','3511292162159714121',7507),('AIe9_BFu3rdicGrPrzdyu4PDXmqMRww6or8DaZPYZxEoacoJzKFC4NbjyQ4THhPOpbIyo-CDKH8TCoOl8LPBUxfhcqQjDDFLgKR8blwNMAxFyK1WOKVHMug','All the staff that I worked with were great! Dr. De Waal gave me my diagnosis and I left feeling relieved by the results. This place rocks!','2018-08-16 02:48:19.603000','2018-08-16 02:48:19.603000',5,'davren montgomery','https://lh4.googleusercontent.com/-PfhBd3aURyY/AAAAAAAAAAI/AAAAAAAAAAA/cVc9TCdESWM/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4447),('AIe9_BFu3rdicGrPrzdyu4PDXmqMS0Ob-u8MpsEgbIIU5uMC2979XWBHAcsm4MfOil58E92jUyp2RYXknYj_WrubLVYVzVaHaTTCJ6Vq3cKf3Ul54boFge0','Had to take my son into Signature Care today for a broken finger and stitches. Everyone there was so amazing at helping him. The front desk ladies (Amanda and Christina) we’re quick to help and got us right back. The nurse Christina and tech Chris were awesome at calming my son and getting his x-rays and prepped. Honestly couldn’t of asked for a better Dr. Dr Miller took the time to explain everything and keep my son calm. Everyone was very professional, compassionate and understanding. Thank you so much.','2019-10-17 19:23:00.257000','2019-10-17 19:23:00.257000',5,'Tammy Husband','https://lh4.googleusercontent.com/-ky0Ju_IlyRI/AAAAAAAAAAI/AAAAAAAAAAA/U2upVofxZ8o/c-rp-mo-br100/photo.jpg','16891069708558046635',4181),('AIe9_BFu3rdicGrPrzdyu4PDXmqMs6gs3GUg7sJNO1HRH-WL3hU0Zekmegqo1Vq6A5xG5GUDISgdJ5r1qj4pRQbs6kL4E_OduTxTFcQ_2KnDv6bqQ_94W2E','All of the staff were friendly and helpful. The doctor present that night was very patient with my I\'ll daughter and listened thoughtfully to my concerns. A bonus was the comfy lounge chair in the room available to us while we waited. Since we were there for a pediatric concern, they placed us in a pediatric room with cute designs along the walls. It took a little over 2 hrs to be in and out but that was because there were more people there that night and we waited for my daughter\'s fever to go down before we left.','2019-03-18 20:23:10.153000','2019-03-18 20:23:10.153000',5,'Felicia Sterling','https://lh6.googleusercontent.com/-sx5Z7MDnC-A/AAAAAAAAAAI/AAAAAAAAAAA/inDZjcuQaPo/c-rp-mo-br100/photo.jpg','3511292162159714121',7377),('AIe9_BFu3rdicGrPrzdyu4PDXmqMs9EsuKdvpDJ7jt0UmR4-T73NeR7_kCXQ3M-j8BbeMV4N2xUmvU2Qo-s4G02h7oawXATVeDpJl4_pgb6gY_EffcozUh0','Nurses were wonderful, especially nurse Pam and Alyssa at the front office was very nice,the doctor and xray,tec, just a great group of people.','2020-02-08 06:26:43.727000','2020-02-08 06:26:43.727000',5,'Dorette Walsh','https://lh3.googleusercontent.com/-3sDEEcoAJYw/AAAAAAAAAAI/AAAAAAAAAAA/dITzClc_s-w/c-rp-mo-br100/photo.jpg','8918455867446117794',14835),('AIe9_BFu3rdicGrPrzdyu4PDXmqMsBXYzw8VsVVYDvkhHhd9RgvuxDH93m7XruDlLql4nqgMJT52r5arKPxh69KDO2BYyA49OWKQYmPuqHRc3yKPkKWQNGk','Friendly service. Makes you feel comfortable','2019-10-17 23:31:21.776000','2019-10-17 23:31:21.776000',5,'Caitlyn Kay','https://lh3.googleusercontent.com/-jS9SPPGvhQ4/AAAAAAAAAAI/AAAAAAAAAAA/9Ue5f74xXrU/c-rp-mo-br100/photo.jpg','16389487648212004696',2803),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSCWSbleiZjl6ajoKKLaQLB3JC6mHwDviHG-pfy5KESeRm2sWkJjahio-q7pgxWyqF14pjmjbe70PS_DnfBm9WvMswEo','My husband had to be seen for injury during Softball. I checked him in online and we got there and they took him right in. All of the staff was very nice and professional. We would definitely recommend anyone to use them for emergency!','2018-07-20 14:48:21.923000','2018-07-20 14:48:21.923000',5,'Chey chey Charanza','https://lh5.googleusercontent.com/-8cGMrTqMTkw/AAAAAAAAAAI/AAAAAAAAAAA/-X9HCyq_0Ac/c-rp-mo-br100/photo.jpg','16590124370714063921',3804),('AIe9_BFu3rdicGrPrzdyu4PDXmqMshYRLcBCrKM6x4UNeucmhx2Mt5ZUU-Gjktt0hgrpZHfTnWnhLI8eFRGOpx8D1-ReA-ut6kxQY_aHUVveYmzdecOsSX8','Jessica and trina was really amazing super fast servise','2020-02-09 03:23:43.619000','2020-02-09 03:23:43.619000',5,'Danya Wright','https://lh6.googleusercontent.com/-g5QWt4siAK8/AAAAAAAAAAI/AAAAAAAAAAA/1La_Z0lnx9s/c-rp-mo-br100/photo.jpg','6521947413723274945',22907),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSJOCWuzKYbVDYtZEIpm3PzZyrEXGSfYNUkPWiPUFtA-z2fd2q56Zb-NdvOGPa13aDAAcX3ngdmXj81K3_QDPUYFulmQ','Needed a rapid COVID test. Quick and easy, great staff!','2020-08-21 19:19:02.808000','2020-08-21 19:19:02.808000',5,'Nick Gilmore','https://lh4.googleusercontent.com/-ndCBQ9WhkRE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmM_2lgdcSygWi9h7OES5ag0kxEgA/c0x00000000-cc-rp/photo.jpg','14748677429039074158',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMsLGESkZCuSP4Am-huqcUVJBVrLPz8y98f7062tNwGVioO74kA-OFH8q1yDt2mYX2rO4rMXXo6LIXp7Tjpzn7BGqchUI','The service and care at this location was exceptional from beginning to end! The receptionist, Jessica, was super polite and friendly over the phone as well as when we got there. Dr. Miller as well as all the nurses made sure all of our questions were answered and we left without any concerns. The service was fast, but did not feel rushed at all. Matter of fact, it was very thorough. I am very grateful for their care and service.','2017-06-27 17:06:47.220000','2017-06-27 17:06:47.220000',5,'Duc Nguyen','https://lh3.googleusercontent.com/-NQx9Lhgko60/AAAAAAAAAAI/AAAAAAAAAAA/jeRbo_j8rnA/c-rp-mo-br100/photo.jpg','8918455867446117794',9386),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSPROdp7EhId4dg-9kGgRZN6aKBuQXOR_dvDmnRGYo_VCX59Ud6P7gQz21gno52NaC3zh9g5DB9cmdKdMpOO7yZw7rK8',NULL,'2018-11-21 17:39:51.074000','2018-11-21 17:39:51.074000',5,'Chill Ray','https://lh3.googleusercontent.com/-wj1elERMVD0/AAAAAAAAAAI/AAAAAAAAAAA/VPaPQ4V5q8I/c-rp-mo-br100/photo.jpg','17394740196501090048',4759),('AIe9_BFu3rdicGrPrzdyu4PDXmqMsrpCP2jmfF1thEpUyVWZXkUSdX6wDhrtYbWi1FTjmMCepio8_SmdvW85uJiSVgBoQL29qVrUO81YDIU1jBn7QjD3Rjc','Quick fast and helpful','2019-01-03 03:49:56.446000','2019-01-03 03:49:56.446000',5,'Tyler Sharp','https://lh6.googleusercontent.com/-kL5L5VNbP0I/AAAAAAAAAAI/AAAAAAAAAAA/WznqoTb5VP8/c-rp-mo-br100/photo.jpg','16590124370714063921',3597),('AIe9_BFu3rdicGrPrzdyu4PDXmqMst-wqoQQPp8gO0zoFxPwZzNvH1MKLD27TsmGT9xYwaEkTFryDmiAIJe3ZWw2HgWvyCOmWEUJr9NqtO_VFQNI_vsnago','I deliver linen to this facility. Adam has gone above and beyond for our service team whenever anyone has delivered to this facility. Always offering drinks and snacks and even treating our team members to lunch. If this is how Adam treats the people that deliver his linen I can only imagine the care and detail to which he services the patients that come here for their services.','2019-03-18 16:59:42.396000','2019-03-18 16:59:42.396000',5,'Juan Martinez','https://lh6.googleusercontent.com/-GA0ScQeyPVM/AAAAAAAAAAI/AAAAAAAAAAA/ROCZlW6g6MY/c-rp-mo-br100/photo.jpg','16891069708558046635',4321),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSTaX3OyyVjoIQQSr3CF06UofkSRPe0RkGphK88e170vOEe4fzDkNSCoO1BDtn62UKdcdmXC-EXjZxzuKwewxPwtIe_A','Amazing service thanks Cody and Sam!','2020-08-03 15:55:50.942000','2020-08-03 15:55:50.942000',5,'Kira Ellis','https://lh3.googleusercontent.com/-yNlG6qMlkIw/AAAAAAAAAAI/AAAAAAAAAAA/YtY2EjAGW-I/c-rp-mo-br100/photo.jpg','2077061009497551125',22756),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSTqoViicosIT9PhGDLsusfNUKoazKVUFxvvj6kN4LCkYGWOuRXWSbdjgKZTaRGwjjAAAceYqgz6P5k8zNz6J2w8PmOk','Excellent and quick service. I recommend to friends and family.','2017-07-13 22:27:50.312000','2017-07-13 22:27:50.312000',5,'Paul Gaxiola','https://lh5.googleusercontent.com/-Fvw-KUGTje8/AAAAAAAAAAI/AAAAAAAAAAA/sTmuPJmoFrw/c-rp-mo-br100/photo.jpg','17394740196501090048',5018),('AIe9_BFu3rdicGrPrzdyu4PDXmqMsTqvxyhcYON1BMrA8qiJFcCgxL4yMBXSEueB26XCF1oZ-fCrhbS--rMTV7cdK2KVgHKEFI0wERxggROLAq9T8fUN_v4','Nurse maya was really friendly and offered me a warm blanket for my brief stay. SignatureCare definitely does a good job at making you feel comfortable','2020-02-21 00:04:33.577000','2020-02-21 00:04:33.577000',5,'kiana london','https://lh3.googleusercontent.com/-DXI-lt8vCzQ/AAAAAAAAAAI/AAAAAAAAAAA/i8sY1XKm0qQ/c-rp-mo-br100/photo.jpg','12541597562633926366',13360),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSU8Ihmnx7vzSfcNStv1BbitOv8gwKWFsKUuoHhXvXlq92g0Vfm1djAgMNc4uhQ2MjXURiKbvNIoYaWEU35Nddw2XI8k','Great experience at the Cypress ER Care 24 facility. Dr Harjai and Nurse Alvean were both fantastic. Thank you to the team.','2019-09-18 21:53:17.786000','2019-09-18 21:53:17.786000',5,'Ron Ritter','https://lh3.googleusercontent.com/-R0kUmJpwYMQ/AAAAAAAAAAI/AAAAAAAAAAA/0c_fOU2lvX0/c-rp-mo-br100/photo.jpg','16389487648212004696',2899),('AIe9_BFu3rdicGrPrzdyu4PDXmqMsUcBg67PZiG0akScB5RosBOano7tJGiVQlx67IhKbOYv1aPjwXywTpdGgzjLna7-0ZfR-1P2TrRHsvJzQTjcJ1wO_KE','I didn’t have to wait long at all, about 10-15 minutes. Amazing time for an ER. Everyone was so polite and caring. The Xrays and testing performed really helped ease my mind as I expected something bad to be wrong with me. Dr Mauldin was very caring and friendly, as well as the other staff members. He didn’t act rushed like he didn’t really have time for me and explained my tests and medications to me. The only resin for giving a 4 instead of 5 was the length of time I had to wait to see the dr again once treatment was done. I would recommend this ER over our hospitals as they are a stand alone ER able to do most anything the hospital ERs can do and you don’t have to wait forever.','2019-12-06 12:51:16.692000','2019-12-06 12:51:16.692000',4,'Janis Dunlap','https://lh6.googleusercontent.com/-1f4HAdeMOEc/AAAAAAAAAAI/AAAAAAAAAAA/L8EbGGqGwhY/c-rp-mo-br100/photo.jpg','6521947413723274945',8070),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSW6t_jIVz_2rNlK08AEPsp12_4EfdpgQlQ73-oJbGu51ybdYBWQu0p9gNbJlajC4OQ3ct8G5wUAEhaKG1M2yQQ-YuTU','I checked in at about 2 am on Monday morning and they provided a room for me right away. The staff that worked made me feel very taken care of all night. Signature Care was the most comfortable place I could\'ve been while I was unwell. Thank you to Itza, Dr. Vakey, Nurse Remington, and Rad Tech Morgan for taking care of me, I really appreciate it.','2020-02-05 19:08:45.198000','2020-02-05 19:08:45.198000',5,'Sofia Herrera','https://lh4.googleusercontent.com/-Z7fDwLGTJBk/AAAAAAAAAAI/AAAAAAAAAAA/DiruQDduGnc/c-rp-mo-br100/photo.jpg','16590124370714063921',13880),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSxaqONZ-Xa1q_TwoPQUfh6kASzpRCCVrQlHdHHrqZDMyPzuSD-1QOVu0VsvvA5jBt2x3LKjztud8X02ejo_VDhAcTMY','Great team here. Very fast,friendly and professional!','2019-01-24 02:07:37.384000','2019-01-24 02:07:37.384000',5,'Megan Hayes','https://lh4.googleusercontent.com/-QhUYW8HyR0o/AAAAAAAAAAI/AAAAAAAAAAA/0OHIAi05J3A/c-rp-mo-br100/photo.jpg','16891069708558046635',4364),('AIe9_BFu3rdicGrPrzdyu4PDXmqMsyb6S5eCuTSf5AmDgniayrW1GhBevB_SmnCDbqxf7WQQ17h1GIKkNCsKt_AzNFnMz5K5nGbaSf8k_PmAWrhngBSFFXM','Prompt and excellent customer service, the physicians and all the staff were very friendly , caring, understanding of all my medical needs. Great service!!!','2019-06-22 13:23:01.511000','2019-06-22 13:23:01.511000',5,'Issel Rivera-Garza','https://lh6.googleusercontent.com/-zrPJI0tvI-I/AAAAAAAAAAI/AAAAAAAAAAA/GRir8bIkoWc/c-rp-mo-br100/photo.jpg','14567670160750071148',1289),('AIe9_BFu3rdicGrPrzdyu4PDXmqMSYMeuJReNRVmW3-cUB5_ZeK9Saf1tjFQ4nfcmBArzlHBLGxOutrmdy1206QawWaI4Bs44nJ2uJOVzy8W6d_m9Io5Zxg','Came in for a hurt ankle, Nurse Rollie was kind and professional, my registration was smooth thanks to Stephanie. My radiation tech was the absolute best, she was sweet and kind and honestly made me feel so comfortable. Dr. Alloju was quick and effective.','2019-11-17 01:41:53.267000','2019-11-17 01:41:53.267000',5,'Esmeralda Rocha','https://lh3.googleusercontent.com/-Ed-ZYKwCCqA/AAAAAAAAAAI/AAAAAAAAAAA/NGKliKX_b30/c-rp-mo-br100/photo.jpg','8679688254631342173',8724),('AIe9_BFu3rdicGrPrzdyu4PDXmqMt-bTYgV2cXnstk2hzbh5VINUV2VL2CSCFaRx9zdDUSR0oixmKD3N30FXpRZcIgOvbJTNRrFEmblr2OazExYB31WQ7_k','My experience here was great. The nurses and doctors were patient, answered my questions and ensured that I was comfortable during my visit. They offered me a blanket while I was being seen. Dr. Dendy, Delicia, Duke, and Seble were very professional and pleasant.','2020-02-26 13:47:43.776000','2020-02-26 13:47:43.776000',5,'Zi Ussery','https://lh3.googleusercontent.com/-oFI9Nj_ua0Q/AAAAAAAAAAI/AAAAAAAAAAA/4_iPEWplbq0/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',14729),('AIe9_BFu3rdicGrPrzdyu4PDXmqMtbvfTzMa4qrFS9Y3rH7URSVCZyDlMPxjfpTb8YYeLhQRDkgyOdSaGu2wIOPhm67UTJt0Vf_h6eFTTIKPfoq1Ixo7cL4',NULL,'2020-07-20 02:04:28.820000','2020-07-20 02:04:28.820000',5,'Lopez Aaron','https://lh3.googleusercontent.com/a-/AOh14Gi4iuJ_v2VD3v3S8inzNuzshRBCi00nGgcLo9Ra=c0x00000000-cc-rp','16891069708558046635',22035),('AIe9_BFu3rdicGrPrzdyu4PDXmqMTbwZtxVZ8kc5awP0a3z93Y925bivTAqqHbdvYt6-_WbIHSJrQvuMosaGuQmIFwx7Oai_kAGkiCWXe8m0KbMlDr-l2lQ','Quick, professional service!!! Would recommend to everyone and everyone!!! Keera was kind and supportive despite the difficult scenario we were in!!!!','2018-09-01 04:30:55.277000','2018-09-01 04:30:55.277000',5,'Sophie Cooke','https://lh3.googleusercontent.com/-13UZ8tI8hmw/AAAAAAAAAAI/AAAAAAAAAAA/ZdGhJZ3zy_g/c-rp-mo-br100/photo.jpg','16590124370714063921',3755),('AIe9_BFu3rdicGrPrzdyu4PDXmqMtEnzfSrrVeT8WdgBUwRYSNerNS77Ezj-RYMmVXrLIiWJkfwqtd_EJnsqeHHqA0K6xPFQNKQqsGkwX_-JSKf57NMQdG8','Love this emergency room. The staff are very nice and wonderful. Rooms are always available and there is no time wait. I will continue to come to Signature Care for all my emergencies.','2019-08-14 10:05:48.440000','2019-08-14 10:05:48.440000',5,'Terry Pumehana','https://lh3.googleusercontent.com/-Z1AGde5YncM/AAAAAAAAAAI/AAAAAAAAAAA/RqAsSNc-aqE/c-rp-mo-br100/photo.jpg','2694018788013845459',6085),('AIe9_BFu3rdicGrPrzdyu4PDXmqMTh_csb60cHVENg1k7bsibOqePpXfj2mEHW_CCRg12uGCbkc01YhPQLAkMNAcSfgiv1S6eCMGC6yIcQiMCPRZ-7FOUy4',NULL,'2019-01-05 20:35:29.325000','2019-01-05 20:35:29.325000',5,'T R','https://lh4.googleusercontent.com/-8wrQN7P1RmM/AAAAAAAAAAI/AAAAAAAAAAA/QOuCXv5PqGM/c-rp-mo-br100/photo.jpg','17898197009688164559',5895),('AIe9_BFu3rdicGrPrzdyu4PDXmqMtLYC1-Xe6JQFwSm-0Iy9eV_Jq19SPvn2p741FQj8aREXjh4cClcYoobaI4OrssaWAr6lOUISBnusPwWVHd1D7AGk3g0','Only been here a few minutes and already been a pleasant experience. Very caring and detailed. I highly recommend this emergency center!\nKayla','2019-01-29 22:17:33.719000','2019-01-29 22:17:33.719000',5,'Kayla Harris','https://lh3.googleusercontent.com/-o3f3JJ32Ap4/AAAAAAAAAAI/AAAAAAAAAAA/_7mK2yP2q8I/c-rp-mo-br100/photo.jpg','13486358490203335051',1082),('AIe9_BFu3rdicGrPrzdyu4PDXmqMtQScgITMb_evYSc8kbC0tHnBrGwT2aD34y5S-b6lRIk8IBWzMUn4V02Ozui7uq73zyijdOZ3559DwMNN294AD2jUPHQ','It was a nice smooth treatment process. We came in and left without any types of issues. Will visit again if I ever need any special care, and truly enjoyed the receptionist Tanishia and Sarah RN for a great experience','2019-12-11 05:17:40.109000','2019-12-11 05:17:40.109000',5,'Laporsha Ford','https://lh6.googleusercontent.com/-8NCRhkcAf7Q/AAAAAAAAAAI/AAAAAAAAAAA/uBxvxEZyrtc/c-rp-mo-ba4-br100/photo.jpg','17898197009688164559',5363),('AIe9_BFu3rdicGrPrzdyu4PDXmqMTraIk4KHS7LC6yFpaE_fkFyby6qMpHWZ9102fNnQ7eIzr4vzWhyywPG0t1w6hc6cvIs9Y3aWwHFt7oQf-WgkqmmeqTA','first the center was emaculate,very nice and very clean,the whole staff from the receptionist to dr hannan,to the nurses all were very caring,understanding,extremely professional,and well acquainted with patients needs.much better than most emergency rooms.definitely a big plus.','2018-07-24 04:04:45.428000','2018-07-24 04:04:45.428000',5,'Ghassan Ghalayini','https://lh4.googleusercontent.com/-l8T4DbF6Xqo/AAAAAAAAAAI/AAAAAAAAAAA/bO0aRyngbGk/c-rp-mo-br100/photo.jpg','14904078213800803294',2236),('AIe9_BFu3rdicGrPrzdyu4PDXmqMTujQaz8hL0J9ZMtMLGg3BDUPghJspLq3Vj0DBct8iUxPavyfAcGNAsM5eMTOUijnjZaAU0rpgyuutwCVOqKXLKhDfmw','My nurse, Adrian R, was very attentive, respectful, and responsive to my questions and concerns.','2020-06-29 05:01:16.130000','2020-06-29 05:01:16.130000',5,'Ariel Ramirez','https://lh5.googleusercontent.com/-I4j5mnhZbNw/AAAAAAAAAAI/AAAAAAAAAAA/IecXBqGsKs8/c-rp-mo-br100/photo.jpg','6521947413723274945',21480),('AIe9_BFu3rdicGrPrzdyu4PDXmqMTvMkKH2hnzKMhr32SrPcaSH20fv58LrH8Z65XfFzi4gf0RTmF60ws3FBE2ZETQxZUvwoclCgpXw8Y-hza14x7_-MvY0','helpful for Covid test, was able to schedule in the same day. \nCody and Sam were especially friendly and helpful. They gave my test and helped me understand a couple of the questions that I had. They took their time and went the extra mile with kindness. thank you!','2020-08-17 19:18:05.408000','2020-08-17 19:18:05.408000',5,'Emmy Edwards','https://lh6.googleusercontent.com/-pY8z4iW3AnM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn95_QFm0LQ5lzFtG97vdKJhD9Ptw/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BFu3rdicGrPrzdyu4PDXmqMu0LfEmIpyPHQHwhx6ji0CS9t1knLOWLTWgqi840FwYHzyuF8ZZibEgetYwT_NpiKbqvzzsxySYOFc-q4acpNYUmcPRo','One of the best experience in a emergency care. Got stitches without an overnight stay. Dr. Thomas really did a very good stitching my right middle figure. Nurse Sarah G. is very professional.','2020-01-17 08:48:42.813000','2020-01-17 08:48:42.813000',5,'Amador zepeda','https://lh6.googleusercontent.com/-AKJUC19YP3w/AAAAAAAAAAI/AAAAAAAAAAA/zwVfyRNHFFg/c-rp-mo-br100/photo.jpg','17898197009688164559',9992),('AIe9_BFu3rdicGrPrzdyu4PDXmqMU19NnM3y9ERYXO24VS3vIUOJxIz8xUfwvB_kfLKyYgxhsOHSqaNf5MdxZ2RTVLMafbgmTS6jt_aI3ZaFd9uoSRhG7Xk','Irvin & Lara, Holly, Christian and Ana. They were all very sweet kind and helpful. Took seconds to take me to a room. Treated me with nothing but care and very patient.','2020-03-07 04:07:22.139000','2020-03-07 04:07:22.139000',5,'valencia petry','https://lh6.googleusercontent.com/-vaQ_Jk_iU_U/AAAAAAAAAAI/AAAAAAAAAAA/MiGfsq9HRk4/c-rp-mo-br100/photo.jpg','12541597562633926366',13311),('AIe9_BFu3rdicGrPrzdyu4PDXmqMuDF_I4XKNWJG6BSNk4neBy-MQMS2kG_3vY3GAZFgzuHpAivCogAZ32FAyKSiM95_ID8pKR-i6tib0qhhRjb4i1gOgDM','Ms. Dee, welcomed us in Professionally, overall the wait time was great','2020-03-16 17:27:27.374000','2020-03-16 17:27:27.374000',4,'Brigeda Fitch','https://lh4.googleusercontent.com/-KPVs9woJkOY/AAAAAAAAAAI/AAAAAAAAAAA/uHxhx9CgjzY/c-rp-mo-br100/photo.jpg','3511292162159714121',21155),('AIe9_BFu3rdicGrPrzdyu4PDXmqMUesc7pB1a5iZyg5zVzwMj2pYAev7KctbqUK6EF3BNY5NfBijNHAqF5vEaqwTSwOUF8Qo0OO23DZtM15tiYsZHD7Vqt8','My experience was very good and helpful! They all are very nice and extremely helpful! 10/10 recommend!','2018-02-19 19:25:16.857000','2018-02-19 19:25:16.857000',5,'Marissa Roof','https://lh6.googleusercontent.com/-qrp0XlKkLsI/AAAAAAAAAAI/AAAAAAAAAAA/1jiq6A0hSr8/c-rp-mo-br100/photo.jpg','16590124370714063921',3857),('AIe9_BFu3rdicGrPrzdyu4PDXmqMUH79H85gTlbqfaIWNAwBaGLZE24v3nncezD0mXUXzLeJ-7cwZvsPaYKNlGzyfgUbP5NWCppgucg1d2W-21SbuTonazM','I was treated wonderful from the moment I entered the facility to the end of my leave. The front desk lady, nurse, doctor, and the tech were very professional and polite.','2020-01-30 20:02:33.484000','2020-01-30 20:02:33.484000',5,'lina pau','https://lh3.googleusercontent.com/-gi76nYNu3Pg/AAAAAAAAAAI/AAAAAAAAAAA/KFLcISNY2Vw/c-rp-mo-br100/photo.jpg','8679688254631342173',14772),('AIe9_BFu3rdicGrPrzdyu4PDXmqMuhxfbNhbLsIUFSOTKfvMB2XrtmpA9NlUEFtToJdu2w7_sJsF6bgI-bU5uhUHumzCjZc4iP4GOxpqsHXsEeLd6fl7k8E',NULL,'2019-11-24 03:36:55.691000','2019-11-24 03:36:55.691000',5,'Kat Green','https://lh6.googleusercontent.com/-qI0brBGSdBs/AAAAAAAAAAI/AAAAAAAAAAA/WbUE9CFMsBw/c-rp-mo-br100/photo.jpg','12541597562633926366',372),('AIe9_BFu3rdicGrPrzdyu4PDXmqMuiM3o0n5mFjF_WaqE5_H5ZNkfsf3TGeokSrKZSoDWXYEHiHXCUtcjMCGd3UcUq13q7zDw6jsVEjlnCcOFDY-KJ7GXrY','In the middle of a pandemic I give T.C. Jester all 5 stars for treating my mom so quickly and respectfully through these times of uncertainty. She was treated by Dr. Miller who is amazing! She also had so many positive things to say about RN Joseph and both Cecilia and Kim who checked her in. Thank you for assessing her pain and treating her with the highest of care!','2020-06-30 20:26:23.880000','2020-06-30 20:26:23.880000',5,'Okarys Bonilla','https://lh3.googleusercontent.com/-YSHyaJNXYNM/AAAAAAAAAAI/AAAAAAAAAAA/lSdF3-ehgsI/c-rp-mo-br100/photo.jpg','14567670160750071148',21378),('AIe9_BFu3rdicGrPrzdyu4PDXmqMUKOPnq4QXQEnI9vPAjaDO9cTaLFJWXIRCMJCHEjYrQ_L4Oj3kVBWtbEn5FT4jU5QAZPtKxB0peLCee08wLoeu5bp1Wo','This is purely because their billing department are the worst. They do not care about resolving accounts, and rather send the account to collection rather then coming up with an agreement to get it paid. They have an inefficient process, and refuse to bill your health insurance if you were involved in a wreck.','2018-01-30 21:36:16.198000','2018-01-30 21:36:16.198000',1,'Claudia Yanez','https://lh4.googleusercontent.com/-xFxOoA4sxmc/AAAAAAAAAAI/AAAAAAAAAAA/VyFTzYTWmj8/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3870),('AIe9_BFu3rdicGrPrzdyu4PDXmqMUpHQP3pWmis2Cq3eH3taw5DXutdT76kcMy-8XtGaaVbx0WZd_D0RXJhcP6R4w4U48p0VjFlbBNGkCr0NYcLhG7mHNUQ','Very efficient service and friendly staff. Leslie did a great job explaining what my copay was and how the billing worked. Olivia was walked me through the questions I had and Dr.Boester came in a timely manner to get my checked for strept and flu.','2019-11-24 16:59:38.476000','2019-11-24 16:59:38.476000',5,'Heather','https://lh5.googleusercontent.com/-wtMZPxBxZ4U/AAAAAAAAAAI/AAAAAAAAAAA/HWGYYl9mrI0/c-rp-mo-br100/photo.jpg','3511292162159714121',7139),('AIe9_BFu3rdicGrPrzdyu4PDXmqMUqxczgMqHqpKXeGpGFgtuzhWJ1FzfFFubJxilSabvBNzd5HEtTT2dmoe_gwebzv2uJSC9lVGXqWpkg8ZjZHDyp39Ehw','Once you walk in the door you are greeted by someone and it takes them no time to get you seen by a doctor. The doctor that I saw on last night was Dr. Vaagenes and he did an amazing job with hearing what my problems were and getting the best treatment possible for me. I will definitely be going back or recommened SignatureCare to a friend or family member.','2017-06-18 12:14:32.632000','2017-06-18 12:14:32.632000',5,'Tamara Brewer','https://lh4.googleusercontent.com/-OFP_K5FTnrE/AAAAAAAAAAI/AAAAAAAAAAA/zM7rVN3vL9c/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5032),('AIe9_BFu3rdicGrPrzdyu4PDXmqMUWByH3Yn3bxd7_mmOlE_B62NqOpljBRhXBaxDaXnOz4bWPBjzjMxvKvWthgfwuX8M0kCjkvsxsm-F1opdCRpDMa7n1o','(Translated by Google) Attention\n\n(Original)\nLa atención','2018-04-24 22:29:32.009000','2018-04-24 22:29:32.009000',5,'Elmer Canales','https://lh5.googleusercontent.com/-iWDPu8NvL7k/AAAAAAAAAAI/AAAAAAAAAAA/GZjHhlS8IO0/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',8900),('AIe9_BFu3rdicGrPrzdyu4PDXmqMUWqs_4huNN1pva1n-pct-Waohb4M8wT3vQlNALFqz-0mibmzTnVMRo51A_dbO1GFnsqSwqxCRVUuXwIblQYaYy-73V8',NULL,'2020-07-28 05:51:56.610000','2020-07-28 05:51:56.610000',5,'Raul Perez','https://lh4.googleusercontent.com/-TF2a3JaMMgY/AAAAAAAAAAI/AAAAAAAAAAA/XFzbvbWPqt0/c-rp-mo-br100/photo.jpg','14748677429039074158',22535),('AIe9_BFu3rdicGrPrzdyu4PDXmqMux-ifQ2pmoSfOnC5-9j7K0xue51uUFkL13dzhGIocupdBOV-8Fi9zH5SRFHQF5zBahHUqGlTDPo9yUBV1MFTMSSwglY','Appointments are a joke. Took over an hour past the original appointment time to get in. \nALL forms should be online to speed up wait time in an over-full waiting room.','2020-07-20 14:46:30.289000','2020-07-20 14:46:30.289000',2,'Valerie Peters','https://lh5.googleusercontent.com/-zPC51XREsyA/AAAAAAAAAAI/AAAAAAAAAAA/F3WN1MzNe0A/c-rp-mo-br100/photo.jpg','14748677429039074158',21672),('AIe9_BFu3rdicGrPrzdyu4PDXmqMuxpZr9t4xreD93X9tdxxaxHbDjcsC0j8r4dQFAiOqvoG_CzwH_KAGhkPmGRZvHbvloP1rEJZkGZqDkSQc-odsUtqa-g','It was my first time getting tested and it felt like I had done the procedures before. Great personal.','2019-10-20 06:47:37.206000','2019-10-20 06:47:37.206000',5,'oscar morfin','https://lh6.googleusercontent.com/-3qTih7QH9Zk/AAAAAAAAAAI/AAAAAAAAAAA/GUY4dgi2aWk/c-rp-mo-br100/photo.jpg','8679688254631342173',8783),('AIe9_BFu3rdicGrPrzdyu4PDXmqMuZkzIbZRA-j16HtAesMFD9LDvmvkgkfH9aEFdL1O5dU6HdL3yIS0dN8QVF_d0aHdG0L3CL81nxbe4vrYLXXSZKQe0IU','Great experience. I booked an appointment online earlier that day, went in, was handled in a timely manner, filled out my paperwork and was taken back to a room. Everyone I came into contact with was very kind, very attentive, and super helpful. The doctors were humble and gracious. This was an awesome experience and I am very grateful for the staff.','2020-07-24 18:16:19.848000','2020-07-24 18:16:19.848000',5,'Allyson Page','https://lh3.googleusercontent.com/-_bs7FRtdZj0/AAAAAAAAAAI/AAAAAAAAAAA/15CkIKZIvUg/c-rp-mo-br100/photo.jpg','16590124370714063921',22655),('AIe9_BFu3rdicGrPrzdyu4PDXmqMUZPY9FpM4adOaoyPwvl5XtdLh9ZK7CUm0JSwYnWoYsr5msubGo51LlCmjIRNIzWPZ6I6Bv4Zb4TyGYaTMSXilHOCsuk','Accident occurred at 11PM on a Sunday night...choice was ER at major local hospital or SignatureCare. I made the right choice, SignatureCare Emegency. I was immediately taken to treatment room, checked out by a nurse and diagnosed by a doctor. They completed ct scan and closed my scalp wound with14 staples in a short period of time. Everyone was courteous and professional. If I ever need emergency care again I will use SignatureCare.','2016-12-26 18:17:09.639000','2016-12-26 18:17:09.639000',5,'Rogers Patton','https://lh6.googleusercontent.com/-msujMJIFzHo/AAAAAAAAAAI/AAAAAAAAAAA/6YuXRwDf0Ac/c-rp-mo-br100/photo.jpg','14567670160750071148',1929),('AIe9_BFu3rdicGrPrzdyu4PDXmqMV1fGWV5FC1WwKsiSLdMmlt7SQXOmgS4luk6drD7rjLoaIu9-_pZg5tjlGZ33M3f9a9vUMeVXWI-W26hndmjHDX2lHjU','I love it here, the facility is always nice and clean. I came here for a follow up and the nurses and doctor were such great awesome people. They consistently offered there help through out my visit, I enjoyed this friendly environment. I would 100% refer this facility to anyone.','2020-02-09 15:41:56.955000','2020-02-09 15:41:56.955000',5,'Infinity Hamilton','https://lh4.googleusercontent.com/-le0WxlQE1V4/AAAAAAAAAAI/AAAAAAAAAAA/SGTdJR23gYM/c-rp-mo-br100/photo.jpg','17898197009688164559',14180),('AIe9_BFu3rdicGrPrzdyu4PDXmqMv8wg9bKaJ9J6p5EwRLcfWEkdP9p8vGrH1uAupjbtjxrbrsKSY77h7DvIzXdcGcdG50wLZU17nflxxJw5jEotOsMbW6s',NULL,'2019-12-23 07:45:59.740000','2019-12-23 07:45:59.740000',5,'Debbie Martinez','https://lh5.googleusercontent.com/-IMo9OWTR6TI/AAAAAAAAAAI/AAAAAAAAAAA/EdnIgDiGN84/c-rp-mo-br100/photo.jpg','13486358490203335051',664),('AIe9_BFu3rdicGrPrzdyu4PDXmqMvbCF6jjxSke9dG9X0AvQevDE7-sfLp9F06lLjWzxwoRmqoUA6MM5LR6Q-4eNCB0Ksri4StNNkPRWA_-VmWwKgbqIjn8','The Doctors and staff at SignatureCare are so friendly, prompt and attentive. I was put in my own private room very quickly. My nurse Jennifer made sure I was comfortable at all times. They managed my pain very well. Dr. Asher listened to me and communicated a treatment plan that saved me! I don’t think any of us WANTS to go to the ER; but if they do, I’d select SignatureCare ER again! Also, as a self pay patient the prices were very reasonable.','2020-02-15 14:33:04.306000','2020-02-15 14:33:04.306000',5,'Lisa Abney','https://lh6.googleusercontent.com/-_AMTZlZ5FvU/AAAAAAAAAAI/AAAAAAAAAAA/7JEtTXgENkQ/c-rp-mo-br100/photo.jpg','3272657195432704501',14358),('AIe9_BFu3rdicGrPrzdyu4PDXmqMVd6FCTw71WknzdKUmioBC2J6mvDCmn3Wa44iJoEt-Vr1COUw-RkzcsiMx0wJRmEc6_aPXNjEaR80p1jC6T-YWDccVvE','I left my ID and Maya, thank God for her she went above and beyond to locate it!!! Thanks again','2019-12-06 21:39:24.381000','2019-12-06 21:39:24.381000',4,'Rosalyn West','https://lh5.googleusercontent.com/-TJfbG3PCuf4/AAAAAAAAAAI/AAAAAAAAAAA/htI3zK7WZR4/c-rp-mo-br100/photo.jpg','12541597562633926366',361),('AIe9_BFu3rdicGrPrzdyu4PDXmqMVHg872C-PEcUNeQrzAHsZaAykSS2tz4JQDYEZKb22iHHscOwFFci9q4-T6TRymrcoLT2FsH2Jam8Bu4fWZtJC9Qyebw','I had a great experience with Anthony, RN and Dr. VaKey! Both very nice guys!','2019-04-23 23:58:00.740000','2019-04-23 23:58:00.740000',5,'Grace Redding','https://lh5.googleusercontent.com/-LTbtnilY2MY/AAAAAAAAAAI/AAAAAAAAAAA/MttR0ajBdEs/c-rp-mo-br100/photo.jpg','16590124370714063921',3408),('AIe9_BFu3rdicGrPrzdyu4PDXmqMVldv683fH7n098vdEny5mhtobX16k9BHb-GXvjknG1X-72YcfdZeqAlMShGl5hgp6D6-_-3f8Qr1ADh3Af1_-3G_2sI','very quick and easy process with respectful and accommodating staff','2018-03-04 18:10:44.991000','2018-03-04 18:10:44.991000',5,'Shelby Otto','https://lh4.googleusercontent.com/-W89oUwWcDoQ/AAAAAAAAAAI/AAAAAAAAAAA/uYsZyp38XOo/c-rp-mo-br100/photo.jpg','16590124370714063921',3853),('AIe9_BFu3rdicGrPrzdyu4PDXmqMVn1eGkKbLkUUI3YsQRBc5qpvopRv8MR9pjdaA1k0aO672nxk1FqaZTDvlDMmmeVy3QVocv2dy0vR81FVK5cbfs6Ad94','We always go to this place whenever we have an emergency.The doctors , nurse are really nice give us the best treatment options','2019-03-12 04:14:04.143000','2019-03-12 04:14:04.143000',5,'Sharmin Islam','https://lh3.googleusercontent.com/-BHNDToQytM4/AAAAAAAAAAI/AAAAAAAAAAA/xFGmnlpzx0c/c-rp-mo-br100/photo.jpg','14567670160750071148',1368),('AIe9_BFu3rdicGrPrzdyu4PDXmqMvQJWp4MveLc-NGgCLj9S4MkArxt6pO-g1LYVhAz9o6xTd75oUHcO0V3VlJN5v5fcDojkVIF6qz8nVhuRuPjVxd4FU_k','Good experience and good treatment and great stuff doctor:kotey ,md nurse :Lynn s. RS tech Fatima b , er tech , Daniel b. Registration . Tanisha w','2019-12-23 05:33:39.847000','2019-12-23 05:33:39.847000',5,'Jitiksha Vaidya','https://lh5.googleusercontent.com/-m5bxbYABWyQ/AAAAAAAAAAI/AAAAAAAAAAA/JxSJcHXG7y8/c-rp-mo-br100/photo.jpg','17898197009688164559',5338),('AIe9_BFu3rdicGrPrzdyu4PDXmqMVRVMBbQXlQhHmrM-7HEg4I6eUWoG1OsxsSHbZT_am5Z8DwnWvv9k8hI2As3oQFPvit9q_h44KhSHYaTv59Dsvmb8m_A','Service was AMAZINGGG! Dr.Golla, Jubril & Tammi, sandy, Ralph, patty we’re all amazing! Love it here!','2020-02-18 15:10:18.080000','2020-02-18 15:10:18.080000',5,'Opeyemi Jaiyeoba','https://lh4.googleusercontent.com/-KzguxNKdFfQ/AAAAAAAAAAI/AAAAAAAAAAA/HWCyVnqwwZU/c-rp-mo-br100/photo.jpg','17394740196501090048',14018),('AIe9_BFu3rdicGrPrzdyu4PDXmqMvT3I9nMorHwMx8XxsPmjU4uZQW6Ri4MbhdEEG3Fw7kbi2-E2_P_YqolVzz8sQkEQQsmtuj-hyYu0smxLJnJdjYOIpUs','Great atention Lorena,Gracie , ER Tech:Brandcroft,Nurse:Theresa B. Thx for your service','2020-07-26 18:26:30.519000','2020-07-26 18:26:30.519000',5,'Jose Rodriguez','https://lh6.googleusercontent.com/-uDHFjqv-UiA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclYuF6ZqmCOVwjEHLN9jYrzXGt5ww/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22206),('AIe9_BFu3rdicGrPrzdyu4PDXmqMvUMc4yRvD0pkIqY4GY4iW_AYBE8Ps9aUyuc2mtCKIDOLXb-qaQ6Rb5VPKD14kebovhfnmOPAGzxRAVdbjnp0nkMkigY','All the staff were so nice and professional! Will be back for future needs!','2019-10-10 02:27:21.798000','2019-10-10 02:27:21.798000',5,'Kambri Roland','https://lh5.googleusercontent.com/-lZatVZON_vY/AAAAAAAAAAI/AAAAAAAAAAA/irX01YCgCtM/c-rp-mo-br100/photo.jpg','13486358490203335051',787),('AIe9_BFu3rdicGrPrzdyu4PDXmqMw_l505mSV3XmxU-_qBP21htJP7HziGAsn5zhXelJJXK6kIezCr9j-gZbptykxXOjFoigewph2N8OEle7YX_fVpzJAV0','so amazing, the staff here is beyond kind. i have come here a number of occasions, not just for myself... i have also taken sick friends here as well. they are very efficient and professional and by far the best urgent care i have recipes in bcs :) \ntoday i worked with kendra, remmington, dr. daniels, and laura and they were a joy!','2019-12-08 15:15:13.274000','2019-12-08 15:15:13.274000',5,'Madison Lustig','https://lh3.googleusercontent.com/-bsANTazS3yo/AAAAAAAAAAI/AAAAAAAAAAA/DxNq8J7y4CY/c-rp-mo-br100/photo.jpg','16590124370714063921',3036),('AIe9_BFu3rdicGrPrzdyu4PDXmqMW-hnQczXqcp0vk5sAPoTFv_BBXPkva1aUvuazNca2kDZ6dcz8qeUWKoxhEZFdBA-WJY5-qzHIKBpTyuueB2jgKh-yqo','We had such a great experience here not only Friday (2.14.20) when I was sick but today (2.17.20) when we brought our daughter in for running a fever. I don’t remember the team that worked Friday night or I would give them their recognition too for being so great to me and my daughter. But today Ryan, Lucas, Kim and Eric have especially been so great to my kiddo. Thank y’all so much !','2020-02-17 22:38:38.698000','2020-02-17 22:38:38.698000',5,'Haleigh Grogan','https://lh3.googleusercontent.com/-pm_8664h9oY/AAAAAAAAAAI/AAAAAAAAAAA/8sEVtPDRLn4/c-rp-mo-br100/photo.jpg','3272657195432704501',14346),('AIe9_BFu3rdicGrPrzdyu4PDXmqMw-KreTtMZE6F_xJ4DvyloPcoBfbRSlSOu3f2x8uQ_iCAZPeBsX3nb1N2OksJ8bSQw1Y_AxU6Qlgejx_w2u7T--HGlZ8','Great experience','2018-08-13 22:11:56.032000','2018-08-13 22:11:56.032000',5,'r g','https://lh6.googleusercontent.com/-A3x8FrqozMo/AAAAAAAAAAI/AAAAAAAAAAA/L8MT7qSaMZU/c-rp-mo-br100/photo.jpg','3511292162159714121',7623),('AIe9_BFu3rdicGrPrzdyu4PDXmqMw3n_cLT1L67ukMD5Jv9d_vaNnr6LIbcZ4C4tgo3w_t4bsJ4312-9HPYLQilDMb-5w_EdfIAxFKnPodSGJs2riVLbRP8','Kimberly P.\nJoseph B.\nJohn A.\nVery friendly and welcoming, treated in a timely manner!','2019-10-22 16:39:08.672000','2019-10-22 16:39:08.672000',5,'Visserin','https://lh3.googleusercontent.com/-jFI166UYHsU/AAAAAAAAAAI/AAAAAAAAAAA/TBMBZwEsgE0/c-rp-mo-br100/photo.jpg','14567670160750071148',1211),('AIe9_BFu3rdicGrPrzdyu4PDXmqMW94LZ2tP1_DPy34kEXyU6dR-oOfOr_Yp_2akDU_KQQjd--9BvMn4MLZGR67Z_rVZuQOU12Si5VR5VX0bAa_7Ks-l8ZQ','Kim, Sherri, and Luke were very personable and showed compassion and concern for my condition. They were very professional, quick and efficient caring for me. A big thank you to Dr. Das!','2019-07-05 14:51:35.894000','2019-07-05 14:51:35.894000',5,'Justin Jewell','https://lh5.googleusercontent.com/-fI0lSU0XdyE/AAAAAAAAAAI/AAAAAAAAAAA/AnPtr97-arE/c-rp-mo-br100/photo.jpg','3272657195432704501',6943),('AIe9_BFu3rdicGrPrzdyu4PDXmqMwD0Qgl8fqUdG8rQ5mPwgsa0zbn6qsfMpxLHZ0GVAyBpRD1C-yoITpvpG_LRbvWiZgnbAFzcAqxL6CysFwQIFkwgGPRs','I must admit that this facility attended to me almost immediately and i was out of the center within an hour with all the needed information. Dr. Dang was so nice to explain the problems in detail ensuring without raising any fear in me. Nurse Selina and Tech Janet were equally caring and concerned and ensured all the treatments were given appropriately. Not to forget the front desk Cindy also was very warm and smiling when we went it. Overall a wonderful place and would definitely recommend anyone looking for any emergency treatment at a quick pace without waiting for too long.','2018-12-18 18:50:06.360000','2018-12-18 18:50:06.360000',5,'Sunder sarma','https://lh3.googleusercontent.com/-CuHZnOg2mHk/AAAAAAAAAAI/AAAAAAAAAAA/yBekBqtf4jQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4752),('AIe9_BFu3rdicGrPrzdyu4PDXmqMwhdItHOXJfeR1jmq2jvB5J6rt_UeGUTORcGCSD64efUOl7f_HY_uQr0Vr1i1xKKDmi5dahIvN235cOnwrivd5Y579q0','No wait time, staff were very friendly and Lindsey had me checked-in in no time. Dr. Vaagenes, Jacob, and Becca all took time to explain what they were doing, keeping my “in the know” throughout the entire visit. Left already feeling better, will absolutely use SigCare in the future.','2019-04-17 22:21:04.889000','2019-04-17 22:21:04.889000',5,'Kenneth Mount','https://lh5.googleusercontent.com/-ednc7QcwEW4/AAAAAAAAAAI/AAAAAAAAAAA/bBpaVcewDJM/c-rp-mo-br100/photo.jpg','16590124370714063921',3422),('AIe9_BFu3rdicGrPrzdyu4PDXmqMWLs8o5-6j-_wLs78d10KoEFVeY8tldHRr5ZP4gsm9vx2OmsVDyG59tqoBJgxcpwWSiAyhOMDB4uy3ue5kwlN_U_JSr4','This is the same ER copay as the Memorial Hermann Heights Hospital down the road, but one million times faster, and more pleasant experience. It happened to be slow when I arrived, but was taken right in and seen by two nurses, one RN and one doctor within 5 minutes. The min amount of time it could have taken to be treated was 1.5 hours and it took 1.5 hrs. Everything explained so clearly, felt like a priority, felt listened to, comfortable environment (as much as possible in an ER setting). Dr Golla was one of the best doctors (ER or not) I have had the experience of being treated by. Waiting room has lots of (clean, pretty new) toys for kids, big screen tv with movie for kids, and fridge with sodas, etc (free). I did hear they do not accept Medicaid.','2018-06-04 13:26:26.206000','2018-06-04 13:26:26.206000',5,'Kristen White','https://lh6.googleusercontent.com/-MvF_1nq-do8/AAAAAAAAAAI/AAAAAAAAAAA/K0RydT_7mjE/c-rp-mo-br100/photo.jpg','14567670160750071148',1614),('AIe9_BFu3rdicGrPrzdyu4PDXmqMwM4tG2Na66r0ERl50rqNudTLPhx38DsuIS-3HDdr3Gs-h2Sfv3L92IPfMC6jUuqrhJKcedghSfdCaLOnN-0OnlOHRXo','Great visit at the Copperfield facility. Ashley with registration is awesome and has wonderful customer service skills.','2019-08-09 19:58:45.905000','2019-08-09 19:58:45.905000',5,'Willie Polite','https://lh3.googleusercontent.com/-3-iQa-FGuic/AAAAAAAAAAI/AAAAAAAAAAA/ohvtzHwYIHE/c-rp-mo-br100/photo.jpg','17898197009688164559',5597),('AIe9_BFu3rdicGrPrzdyu4PDXmqMWOAdyYNv_JdU2WCUKu-vMaWgCXbnGDWip1hr_iIadJEezNmsYg1m04-2Fhz8WCl5YONuWBB3gCAcB-HMjPtgK_9sAT4','Maya the receptionist was awesome and very kind helped us alot','2020-01-05 23:40:10.438000','2020-01-05 23:40:10.438000',5,'Michael Alonzo','https://lh4.googleusercontent.com/-ffyPfLKTdGQ/AAAAAAAAAAI/AAAAAAAAAAA/HRMc9Dqq00Y/c-rp-mo-br100/photo.jpg','12541597562633926366',245),('AIe9_BFu3rdicGrPrzdyu4PDXmqMWOH8lewOaTfIgVgN62nrrTa0GpmvblY6_FglaVIiVQNHVVc8M0r1skpBDqHmhZI8PeOGMLdsAYlWqYEWEnnbNY-TlwM','I recommend these folks all day every day, kind, speedy, caring, professional, efficient, attentive to hear the issue, examine and proceed to answer all questions about meds etc. Place is immaculate and their smiles and great service helps one feel on the mend very quick. Love them!','2019-10-27 03:08:57.965000','2019-10-27 03:08:57.965000',5,'Marta Molina','https://lh5.googleusercontent.com/-3Zr4UGVIwx4/AAAAAAAAAAI/AAAAAAAAAAA/_oTqMATM5lo/c-rp-mo-br100/photo.jpg','12541597562633926366',393),('AIe9_BFu3rdicGrPrzdyu4PDXmqMWp61GWLGLYpENBsmzeSBEQpawJHFylPRdVBGdPOXkGx5kVvDOuWp4e-np74D9A4gwEh-V3VDhfwYPOzS2SKc0Ijhyxc','All staff was great, they were fast and easy to reach. I will refer friends. They offered warm blanket and refreshment. It was a nice experience compared to any other place I\'ve been. Thank you Natasha!!!','2019-07-29 17:52:51.954000','2019-07-29 17:52:51.954000',5,'Monique Carson','https://lh4.googleusercontent.com/-AebM9vPSRag/AAAAAAAAAAI/AAAAAAAAAAA/zNb6eHMjSk4/c-rp-mo-br100/photo.jpg','2694018788013845459',6100),('AIe9_BFu3rdicGrPrzdyu4PDXmqMwTpG8yw0ync47ECw5IHqsDmE23eAbJUKgV69YVJSd-D8-VI3JgjhTJFnqwMiFtKgQD8D0U3ntdJwzobEJJeHzZOf_kg','Excellent experience. Good patient care. Thank you JD, Cody and Sam, my son appreciated.','2020-07-28 13:39:50.943000','2020-07-28 13:39:50.943000',5,'Isis Sosa','https://lh4.googleusercontent.com/-eWMqHz0Ls7s/AAAAAAAAAAI/AAAAAAAAAAA/fCSUjR8d__M/c-rp-mo-br100/photo.jpg','2077061009497551125',22799),('AIe9_BFu3rdicGrPrzdyu4PDXmqMWubLZR33T97X-CZixwS4tx2aR-7CCGRKL1bSqtZlN8vDSJHnC0O8rLL-XOQ7sFAPEqigXvSJUkwmYI5XVVQJ6eGs7UI','Best Urgent care ever! So nice and clean. Staff is very friendly and always concerned. They always do there best to give you a thorough diagnosis as quickly as possible!','2017-05-29 14:07:10.361000','2017-05-29 14:07:10.361000',5,'Ashley Nicole','https://lh3.googleusercontent.com/-WR26JNX3cWg/AAAAAAAAAAI/AAAAAAAAAAA/CaF3jzRWfd8/c-rp-mo-br100/photo.jpg','14567670160750071148',1817),('AIe9_BFu3rdicGrPrzdyu4PDXmqMwut2vzafTsrDr8QXH-HFaChKyfdfGwi6C4xpZiWmnmYxJDvxc5kkMU26B12Tibr8DYePTlR32IZe2dK80ATm1forepY',NULL,'2019-12-02 21:35:36.406000','2019-12-02 21:35:36.406000',5,'Erika Dre','https://lh4.googleusercontent.com/-HfN0uqrLL20/AAAAAAAAAAI/AAAAAAAAAAA/9_0ZVs7wWE4/c-rp-mo-br100/photo.jpg','14904078213800803294',13660),('AIe9_BFu3rdicGrPrzdyu4PDXmqMWwZg3y-Ehi6bl5z4_TCOugw9fufQqLGoDRZs1KcPFB856iGhINzgJjlnvf0KV9CzO3cFOvlwpYKOP0G2cV6ostZxkGI',NULL,'2018-10-26 08:54:56.900000','2018-10-26 08:54:56.900000',5,'Tallye Woody','https://lh6.googleusercontent.com/-QinbzDxGz74/AAAAAAAAAAI/AAAAAAAAAAA/nCagxXbwk4Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3686),('AIe9_BFu3rdicGrPrzdyu4PDXmqMWxnM6oTjlDTp2arzZwNrYXZGT2uMceywbcvJCp9dkhUGR2gTaKMCrElu2Bi5vpbey8A4XDRxdbNAIo5U1jhzY2G-SZE',NULL,'2020-08-01 17:17:51.427000','2020-08-01 17:17:51.427000',5,'Thanh Nguyen','https://lh4.googleusercontent.com/-BVt4iexfRLU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck0YLZoT4-9vMpGDPqIL0AVe_e2fw/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21942),('AIe9_BFu3rdicGrPrzdyu4PDXmqMx3d9lCjtQqGVrnxg-LSwegU77YAMUU2DcXj9_CkkXT43oyo6165tiGxipXuQZup_EZVN-ctRDhFJkoeXQtkUPhDGp94','Lisa H, Krystal, and Dr. Diaz were awesome! I was in and out in less than an hour and tjey addressed all my issues. I will visit this ER again if necessary.','2019-08-17 15:07:18.800000','2019-08-17 15:07:18.800000',5,'Lisa Smith','https://lh6.googleusercontent.com/-1wqHFWMLYic/AAAAAAAAAAI/AAAAAAAAAAA/Bb5nYO_yp9w/c-rp-mo-br100/photo.jpg','13486358490203335051',853),('AIe9_BFu3rdicGrPrzdyu4PDXmqMXc3jT3pGUVz9rA-PLp-6Z2xf5VnmVfmEz9S1yZC1gdU_WZ17ovcJYopAyhKuCu8u4Gskl8X_7cX5i6eZOLRsffnghXg','Short wait time and friendly staff!','2017-02-08 14:19:11.668000','2017-02-08 14:19:11.668000',4,'Katie Morey','https://lh5.googleusercontent.com/-uzW3I-aAwmI/AAAAAAAAAAI/AAAAAAAAAAA/Y7QVHwmoEbU/c-rp-mo-br100/photo.jpg','16590124370714063921',4066),('AIe9_BFu3rdicGrPrzdyu4PDXmqMxfYFTUjMVMcFx38nwMm_su7mD_5kmvK2gN5pODJjfapm7TQKxm2z484hnsIENCGB8i93_105AHiLmMdFE_gGtj8asnM','Received great follow up care. Dr. Diaz and Allison were very caring and helpful. Would definitely recommend for emergency care and for those who are not able to see a doctor during regular hours.','2019-06-23 00:54:23.080000','2019-06-23 00:54:23.080000',5,'Brittany Hernandez','https://lh5.googleusercontent.com/-9zh0pytN6WU/AAAAAAAAAAI/AAAAAAAAAAA/Qln-Iqj9qAw/c-rp-mo-br100/photo.jpg','13486358490203335051',937),('AIe9_BFu3rdicGrPrzdyu4PDXmqMXHxwpKYZq77Tl__YwxKKZ8jWLCxGYvOHw4X4DGxpPpZXib1noCDSNEoIHDdLR06xud5h5zrNRbUU49D0Wzw59yOlVPo',NULL,'2020-03-02 01:23:21.864000','2020-03-02 01:23:21.864000',5,'Margaret Harmon','https://lh6.googleusercontent.com/-8akeaa6Y6VQ/AAAAAAAAAAI/AAAAAAAAAAA/9mVfQOZMXlc/c-rp-mo-br100/photo.jpg','14567670160750071148',13507),('AIe9_BFu3rdicGrPrzdyu4PDXmqMXIq0huUBqIwm_pw0BFYQjheffjZDkN6oz1oh0pT9h_Vm0p6BdsidOtYPUuivcnPE32fxyFinECd5V27KI7Z3Hn-9DtU','Best ER care in college station! Dr. Vakey, Jacob and Rebecca made the whole experience a great one. I will be recommending this place to friends! Kendra, the receptionist, was SUPER helpful and very patient with all my questions.','2019-11-03 19:03:03.694000','2019-11-03 19:03:03.694000',5,'Xochitl Garcia','https://lh3.googleusercontent.com/-v__hocePHAU/AAAAAAAAAAI/AAAAAAAAAAA/KdSsX2QfHU8/c-rp-mo-br100/photo.jpg','16590124370714063921',3106),('AIe9_BFu3rdicGrPrzdyu4PDXmqMxJ6xl_uhG5Nx42qakP9py-cNeBr3XZqBYNZERbCrv5ryooVDitIrQ9cp3VnXH8tJRe073j--9NWRrqiTHhjB7QmecFQ','Very polite and friendly. I appreciated how they took my concerns seriously. The staff are great and helpful. The greeter was friendly, Delpha was very helpful and thorough, and Dr. Huerta was very respectful. Great staff and great experience!','2020-07-27 13:03:42.619000','2020-07-27 13:03:42.619000',5,'Shawde\' Garces','https://lh3.googleusercontent.com/a-/AOh14Gi5kAvsA-9buc3DA7WT_ExMYL5HJRE6BQHkd8QVqw=c0x00000000-cc-rp','13486358490203335051',21846),('AIe9_BFu3rdicGrPrzdyu4PDXmqMxOqijgWk_R9JHEAHXbXLITgwUmJmZffsLXpU3xTZeKCCfE48WmW-r8j6nK9nZh_JVCvJryufP1uTsEgUojb6MsYbiV4','Great service at this clinic.','2019-12-24 01:47:12.513000','2019-12-24 01:47:12.513000',5,'Fatima Mendoza','https://lh5.googleusercontent.com/-LG-lTP6-ij8/AAAAAAAAAAI/AAAAAAAAAAA/Fhev89jg3U8/c-rp-mo-br100/photo.jpg','8679688254631342173',8678),('AIe9_BFu3rdicGrPrzdyu4PDXmqMXTz1mG3z0VFyAx3wps3fgIMo8adXmL7UfkWqDgpOTW6frnN7abXQVZPRmvoanzSPJraqGZH9DWqHsBtiov-aqgppkIw','Always fast and easy, no waiting and very nice staff....','2019-10-29 01:13:09.002000','2019-10-29 01:13:09.002000',5,'claudia molina','https://lh4.googleusercontent.com/-HOpGB1YDKaM/AAAAAAAAAAI/AAAAAAAAAAA/z8JqYWlFZXU/c-rp-mo-br100/photo.jpg','14567670160750071148',1205),('AIe9_BFu3rdicGrPrzdyu4PDXmqMxUmHho4DxlPU7UBhfkdpQtDge5Jh_FhBlb6EkiGx452Hrc1vdgy6DIOTEhelii32WuJThpdgbWiWdyFMpnvqdsKbUVM','I visited the Signature Care ER in Lewisville todat and was very Impressed. Jessica S. At the front was amazing and started the whole proccess off great. I will definately be back again.','2020-07-19 20:34:29.255000','2020-07-19 20:34:29.255000',5,'Royce Piper','https://lh4.googleusercontent.com/-HbEnkWs4uGs/AAAAAAAAAAI/AAAAAAAAAAA/FRVz-cjWsAM/c-rp-mo-br100/photo.jpg','14748677429039074158',21695),('AIe9_BFu3rdicGrPrzdyu4PDXmqMxx3mnutAI3yc1XBJMBrtx4UkqPdW3NvXhuDEr1ta6zhmORIP2OjIYr8dF-8PQyhLvkZ67XPWXMv9fCN8a-bl-vb0Qxg','Staff was nice and helpful. Dr. De Waal was funny which made the visit even more welcoming.','2019-03-29 18:22:24.408000','2019-03-29 18:22:24.408000',5,'Alejandra Coronado','https://lh6.googleusercontent.com/-54Qxgvxy2Os/AAAAAAAAAAI/AAAAAAAAAAA/bqDXpLF8DJ0/c-rp-mo-br100/photo.jpg','16891069708558046635',4309),('AIe9_BFu3rdicGrPrzdyu4PDXmqMxxjinH2_pvhcy2p3-NA-196kkBwnPa64qrahm4ALb0CNeg99sP1RjNxnpNr7a3Ce4Lw33rRuCDszr4LK2Qih-soxLb0','DR.DING, JOSEPH AND AMY WERE REALLY KIND AND HELPFUL. DEFENITELY COMING BACK.','2019-04-27 21:33:20.105000','2019-04-27 21:33:20.105000',5,'plutarco mejia','https://lh6.googleusercontent.com/-qBdiaQ2Ajqg/AAAAAAAAAAI/AAAAAAAAAAA/wmp6wu_5JhM/c-rp-mo-br100/photo.jpg','14567670160750071148',1335),('AIe9_BFu3rdicGrPrzdyu4PDXmqMXZzELgzfLRhgEuEGEUxzjyhs4rWFK59q-unHqFKNsC-Y3rd3kP96Fz9CCfZHRRj7zprjnLbdKLP4t9aq7ZBwaoz-Vyk','I had the greatest experience at SignatureCare Emergency Center -\n Montrose! I came into the emergency center with severe stomach pain after midnight on 11/08/17. I could barely function and Terra Henderson at the front desk saw my suffering and had me checked in and in a bed, it seems like within 5 minutes of dragging myself through the door. I was examined by Dr. Wren A. Aprielle, M.D., as soon as I was assigned a room. Nurse Erin Mitchell came to my rescue and assisted in controlling my pain shortly after. Blood and urine were collected and Radiology Tech, Quyen Nguyen took me and performed a CT Scan on me. We had all test results and a diagnosis in less than an hour of arriving. Silly me, I thought I would be returning home since the pain medication I was given had me feeling better and since I thought I was only suffering from severe gastritis. Reality hit me like a ton of bricks as I was told I would have to be transferred to the hospital of my choice for an emergency appendectomy to be performed in the AM. I was transferred to the hospital 30 minutes later. The staff made me feel comfortable and truly cared for during my short visit. Everyone was so pleasant and informative and they turned my awful night into a positive experience. Thank you SignatureCare Emergency Center - Montrose, you’re the BEST!','2017-11-13 05:00:24.948000','2017-11-13 05:00:24.948000',5,'Angela Harris','https://lh5.googleusercontent.com/-FyLgW-eNs3c/AAAAAAAAAAI/AAAAAAAAAAA/PWyREtg5WfQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7761),('AIe9_BFu3rdicGrPrzdyu4PDXmqMy_dm-V8thOpcWuQSg7mChTpFsZhdITZBoaF1S1hX-pQdTm2HBmcEOuZZjdhy86HWGMuQ9aHflv_wjUcUS70oFGSl4xI','The is the best medical Center I have ever been in','2019-03-12 19:01:24.834000','2019-03-12 19:01:24.834000',5,'Todd Wooten','https://lh4.googleusercontent.com/-hwo96HBQunw/AAAAAAAAAAI/AAAAAAAAAAA/pFTFU2DIH64/c-rp-mo-br100/photo.jpg','14567670160750071148',1367),('AIe9_BFu3rdicGrPrzdyu4PDXmqMY-ifjwuj9frgyJbDLHyzxnizWmpe0StzxIGM5c6nLXMK2BioawY22532y_myOrImyXQKZCJJ_GJBDOQCeSuxJsKQwto','Super friendly knowledgeable staff. Makes us feel welcome right from the get to and ensured a smooth transfer to MMH.','2019-07-24 09:44:51.252000','2019-07-24 09:44:51.252000',5,'Danielle Kalbfleisch','https://lh3.googleusercontent.com/-WRpfJWb1aV8/AAAAAAAAAAI/AAAAAAAAAAA/vr9-Ny3HmF8/c-rp-mo-br100/photo.jpg','13486358490203335051',884),('AIe9_BFu3rdicGrPrzdyu4PDXmqMY2GneS81RxplZIYWIrQ3SSMIKcpn6SrutY1f013Fnot6MF9_B40KuuIgNsrVAf6tZ_NLElDpgfg-4vBxLu6nq8Pn488','Very welcoming place!! Lorena T and Amanda C made me feel like I have been coming here for years! Highly recommend visiting here for any medical needs. Very clean and nice place also!','2020-07-29 14:32:58.200000','2020-07-29 14:32:58.200000',5,'Cole Bryant','https://lh6.googleusercontent.com/-fcnI0igBiPY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnxPVlPI6qFgOH2ECI7NCVjn-8YMA/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22003),('AIe9_BFu3rdicGrPrzdyu4PDXmqMYAMOfKk7cZj_AbFXctGXJDsqeKDf-Kc4SHZMeNs9lYh7TNPDDeT1RbCwk0t2B3PKpLfn69URR-YTE-shUMqrLWjwRVI',NULL,'2019-08-01 13:51:10.780000','2019-08-01 13:51:10.780000',5,'Me','https://lh3.googleusercontent.com/-JXvL89p8sCc/AAAAAAAAAAI/AAAAAAAAAAA/acqPnssNe9M/c-rp-mo-br100/photo.jpg','12541597562633926366',473),('AIe9_BFu3rdicGrPrzdyu4PDXmqMYd0RMQg2EJ0lVlaj_bDI5OdzRZOneZS9kyKn67KVFIwndf43skZ4Bo6NUvEZzc7tQHTeu8TiQsYXmX49fjIw7zAtdlM','Corey was very nice and courtesy to my mom. Will come back if we need to. Front staff was nice as well. Way better than MMH!!','2019-06-10 18:43:29.853000','2019-06-10 18:43:29.853000',5,'Kat Robledo','https://lh5.googleusercontent.com/-vxVsIYYJEaY/AAAAAAAAAAI/AAAAAAAAAAA/4004yqqEtRQ/c-rp-mo-br100/photo.jpg','13486358490203335051',975),('AIe9_BFu3rdicGrPrzdyu4PDXmqMYgLWcvmtozCTd-mdUTCsVayPFv7YG9v_wwcBMB603KuVDcZl7Os4JFcysdr0c7_i2wWdpKhRcdh9hSh7jmsxfUYGYbk',NULL,'2017-09-08 17:59:36.524000','2017-09-08 17:59:36.524000',3,'ramin zanbaghi','https://lh4.googleusercontent.com/-oECtBLvwnsk/AAAAAAAAAAI/AAAAAAAAAAA/xaxE2w7I4X8/c-rp-mo-br100/photo.jpg','16891069708558046635',4541),('AIe9_BFu3rdicGrPrzdyu4PDXmqMyHbfcp6sRVZRYUBCfbW3KihlK2c2fkqeYa2K64J9uR9C-UNGbiY7JcTQoNcbMEKUoVlSD4lWyLnH6Xnw-MGaeUpCA0Q','Anthony was very attentive and everyone was very kind. They did everything in a timely fashion in the best way they could. Had a great experience!!','2019-04-29 22:43:01.717000','2019-04-29 22:43:01.717000',5,'Alexys Kenvin','https://lh5.googleusercontent.com/-gK4mNmlg9Ks/AAAAAAAAAAI/AAAAAAAAAAA/WG8OMOGIK2A/c-rp-mo-br100/photo.jpg','16590124370714063921',3402),('AIe9_BFu3rdicGrPrzdyu4PDXmqMykrGRtxYGXWdDhCL4ux1USRPlfjxBl07GmrG8rP8mYg0M3SGJHlbikmP0BKJYruhxP3tu3axza9lj0_NvcK1Hq8afnA','Great service! Tanishia, the receptionist was very kind and had a great attitude, nurse Sarah was very sweet, Fatima the technician was awesome & doctor Kotey was great. They all made us feel comfortable at all times, great service. Thank you guys!','2020-02-21 06:59:42.040000','2020-02-21 06:59:42.040000',5,'Mafer Ugarte','https://lh4.googleusercontent.com/-l-Ldcj5Mb3Y/AAAAAAAAAAI/AAAAAAAAAAA/LtG15M-P-wo/c-rp-mo-br100/photo.jpg','17898197009688164559',14144),('AIe9_BFu3rdicGrPrzdyu4PDXmqMYlWUYuhbODswYqP8-dmfen4NY5EVXINPtqYq-LjCZqKzzC3RCmISvbXPRshrU-KRVb-a-40TZky5WKN4U9CukhP1Is4',NULL,'2018-02-20 16:37:15.012000','2018-02-20 16:37:15.012000',5,'leon hollins','https://lh4.googleusercontent.com/-gctw4DcC5GU/AAAAAAAAAAI/AAAAAAAAAAA/OSn5J1vyvA4/c-rp-mo-br100/photo.jpg','8918455867446117794',9283),('AIe9_BFu3rdicGrPrzdyu4PDXmqMYM34PgfmuZAjT9SYOtoh3lU1WtlzONmWX5d90N4vvTzc7KonAKL41CyspPd19iXgsq9dPMvTyf6pLo9bApw5ihKwZps','OMG If I had not been sick I would have thought I was at an expense spa. The minute I got there I was escorted into a clean beautiful exam room and treated with the kindness and respect. The facility is top notch and very relaxing....so much so that I almost forgot that I was in an ER. Everyone was kind and respectful. They checked on me constantly and made sure to answer all my questions. The service was quick but very comprehensive. I totally recommend Signaturecare to everyone. I promise you will not be disappointed. They even followed up with me the next day to make sure I was feeling better.\nI live in Pearland but should I need an ER, I will make my way back to Signaturecare.\n','2015-08-28 19:04:01.450000','2015-08-28 19:04:01.450000',5,'Ori Murdock','https://lh6.googleusercontent.com/-HrqRndcFHnA/AAAAAAAAAAI/AAAAAAAAAAA/mdxbUp0Jqwk/c-rp-mo-br100/photo.jpg','3511292162159714121',8033),('AIe9_BFu3rdicGrPrzdyu4PDXmqMYMCKVjLHpn3QdvoM0JMTzl0Fyrfhx0l0cKASKYGq2EFBQMta1OaDra937l9LuJ6ziabne8ZDuBwlMAdmS9zzi914Kks',NULL,'2019-06-16 02:43:09.460000','2019-06-16 02:43:09.460000',5,'Karla Garza','https://lh6.googleusercontent.com/-8T0pdRAAm_A/AAAAAAAAAAI/AAAAAAAAAAA/Rwca1zOOyIo/c-rp-mo-br100/photo.jpg','16590124370714063921',3351),('AIe9_BFu3rdicGrPrzdyu4PDXmqMyMnI_19rLaOqp6yJLl4gEfQubdE_-4Wm3pSuPNitJeaiejMg9noIxfeIw2LCgrflxko9wLiDzcD95hHPzFssEzD-i2E','My son needed stitches from a work related incident. They were efficient, speedy and friendly. I hope I don’t have a need to come again but if needed service I would drive past a few others to come here. Cynthia at the desk was great. Thanks so much for making this painless.','2018-11-26 00:22:13.780000','2018-11-26 00:22:13.780000',5,'Keisha Breaker','https://lh3.googleusercontent.com/-PqHYK_wI_q4/AAAAAAAAAAI/AAAAAAAAAAA/_PrYhlPujkU/c-rp-mo-br100/photo.jpg','14904078213800803294',2194),('AIe9_BFu3rdicGrPrzdyu4PDXmqMyoiGPGxC3kCmTEEyg7OF_DChdZGKTC4OyPP4OLoGUF5MTHVehd4sp_4c_uuKN2FCkbGwW7sMzT-VDsGqhy5AVJxdFk4','In and out everything was great from receptionist to nurse and doc. I strongly recommend this E.R','2018-09-08 01:11:16.822000','2018-09-08 01:11:16.822000',5,'Lucy Gomez','https://lh4.googleusercontent.com/-nYuH2tf7Pic/AAAAAAAAAAI/AAAAAAAAAAA/tFkqEzl71fM/c-rp-mo-br100/photo.jpg','14567670160750071148',1521),('AIe9_BFu3rdicGrPrzdyu4PDXmqMYr3jOBFsvPB-oRKYHxpI4MH9Tcp-xD_FIKgK2Du5dL4PkY84sVfdRJCU0UEPJj3p86JqBBw6VSkBG6zy938AN6sTEAE','My first time coming here and I\'m very impressed!!\nProfessional, immaculate, and welcoming atmosphere and staff!! Thank you Michelle Kirby,Helen Dukes, and Austin Daniels for an unforgettable experience!!','2019-06-13 03:24:10.644000','2019-06-13 03:24:10.644000',5,'Stacey Tyson','https://lh3.googleusercontent.com/-tn21MgNykAk/AAAAAAAAAAI/AAAAAAAAAAA/rfJwxY3__Z8/c-rp-mo-br100/photo.jpg','3272657195432704501',6949),('AIe9_BFu3rdicGrPrzdyu4PDXmqMySgoAuxcri4m4y7cb-dBJRNloSaozWRdrEDEfOEU2S1bN_Ae91ybZabVZrWyC-ElJW4z6rW4JTy-xeJwq0dJ6SrOvis','The absolute best quality of care you could ask for. The whole team including doctor Lingan, both Christina\'s, and Amanda made the experience stress-free. Highly recommend this ER!','2019-11-01 01:13:41.211000','2019-11-01 01:13:41.211000',5,'JD H','https://lh4.googleusercontent.com/-UhaJj-ASmdc/AAAAAAAAAAI/AAAAAAAAAAA/dgYpE8DAQT8/c-rp-mo-br100/photo.jpg','16891069708558046635',4165),('AIe9_BFu3rdicGrPrzdyu4PDXmqMyT-3pltXQYlFFcC7TtCgXrWqhAj7jGmOrqOvrFbt5VUSqnbzLPRsJ5xMZR6Jp8Nlvmp9QobVfXoyWeTzdaLMhCCdsZc','I recently moved from Dallas to Houston. With this being said I don\'t know no one here or a caring reliable place to go for emergency visits.\nI was in a lot of pain from my pelvic. I knew I needed to see a DOCTOR. I also knew my insurance had not yet kicked in. I first Google the price difference between urgent care and emergency room visit. AND by far urgent care is cheaper. So I read different reviews. I read so many good things about singnaturecare emergency center this is where I came to.. the Doctor, the pct, the front desk, and the RN was very good and compassionate. I felt like my care would be well attended to. The cost was one fee for this clean safe and nice atomsphere. The warm blankets were nice. However the staff moved so fast in taking care of me. I did not have time to enjoy it. Which was good. It was time to go and I had a diagnosis of my illness.. in less than 45min I was in and out.. I ll come back here. I\'ll tell my friends.. You guys rock.. thank you from the bottom of my heart.. my pelvic will be ok..','2017-08-05 18:29:11.900000','2017-08-05 18:29:11.900000',5,'Romekia Cox','https://lh4.googleusercontent.com/-Vscon-QqDVQ/AAAAAAAAAAI/AAAAAAAAAAA/jNa3YTbOpdo/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2335),('AIe9_BFu3rdicGrPrzdyu4PDXmqMYt-RT6GMqmgFU3jOPqIuFAYm9SirJuAsKU_GSzglPqLXIcpoDlMKrZ6bQmZAlzWyoZoOhJkym8VWyHyLCTR3RSb1Njs','Good experience here, quick.the receptionist preethy nice...','2017-02-14 22:48:48.654000','2017-02-14 22:48:48.654000',5,'Mohammad Danish','https://lh3.googleusercontent.com/-d8W4Kqc_fhE/AAAAAAAAAAI/AAAAAAAAAAA/mCAR-k3QHvc/c-rp-mo-br100/photo.jpg','17394740196501090048',5114),('AIe9_BFu3rdicGrPrzdyu4PDXmqMyTSyvqCi5m1o6ufkiT3CnKrLpGnRhvndNMQDwpRmjLyN7_GFs3UmJY17XdFGoWy5aZ3tTqnPU4StdT2qzuMH-l7fxm4','For the following staff:\nMs. Gabi\nMs. Casi\nDr. Jolly\n\nThank you so much. I truly appreciate the time and care that you put into making sure I got better. You all are exceptional!! Truly thank you!!\n\nFor those seeking treatment for illness or sudden complications come here. You pay for what you get, and here you wont be disappointed either way. I dont go to hospitals or doctors often, but these guys and gals made it smooth sailing and a pleasent end to a horrible evening. Thank you again!!!','2019-10-14 16:04:30.004000','2019-10-14 16:04:30.004000',5,'Xmortious Devini','https://lh3.googleusercontent.com/-5VLFV-IjMjc/AAAAAAAAAAI/AAAAAAAAAAA/SLPJl0pxKtk/c-rp-mo-ba3-br100/photo.jpg','2694018788013845459',6046),('AIe9_BFu3rdicGrPrzdyu4PDXmqMyvXUwmOYZMq11okGGhK9hERKFpCepixZn1HWVIRWI3bZe15b1q8V0K6A4t3eLoqMa3L-_JeVoh5zdxuq3sOtFpu_e80','Very professional and super fast service.','2020-02-03 16:45:27.405000','2020-02-03 16:45:27.405000',5,'Carla Moore','https://lh4.googleusercontent.com/-s1CrL1e8jBY/AAAAAAAAAAI/AAAAAAAAAAA/grWLq5FReDI/c-rp-mo-br100/photo.jpg','14904078213800803294',13611),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZ2-RJQ0T13rNxz8tWsNGPD5RsBq9BcFYKTGz_s0iQPLQAqza1KgQv_HkLR3Pn_kjICi9u4f3lrFFe2CgDrM5iSDLsrM','Thanks Tanishia, Angel, Henderson, Susan, and Laura. You guys for great and spent a lot of time with me and were very patient.','2020-02-19 06:57:54.910000','2020-02-19 06:57:54.910000',5,'sautaria W','https://lh3.googleusercontent.com/-UE_cpyvB9-U/AAAAAAAAAAI/AAAAAAAAAAA/4U5bNut0QTw/c-rp-mo-br100/photo.jpg','17898197009688164559',14156),('AIe9_BFu3rdicGrPrzdyu4PDXmqMz3cTj22kYwcfJAENxRhry7pt3NLVBqIfdwZBr822cPSn721Jf51MJdzbmk-pLKjCdHWwzVGTeWdFollSBwNU4tLpQA4',NULL,'2019-09-23 15:51:29.354000','2019-09-23 15:51:29.354000',5,'teresa T','https://lh3.googleusercontent.com/-SsecxxXIyo0/AAAAAAAAAAI/AAAAAAAAAAA/IDH9i8ZIckI/c-rp-mo-br100/photo.jpg','14904078213800803294',13684),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZ4aqgq-hOyEZP7etapyLnwF1H3yzrd6LMAL9K_M9zF1xfWmrnbePxl_v0BF1pTucy0h624WDSk0Zik-y_4TzR8q1O0g',NULL,'2020-03-10 04:51:45.393000','2020-03-10 04:51:45.393000',2,'Paquin Sal','https://lh5.googleusercontent.com/-ScclyL1w_u4/AAAAAAAAAAI/AAAAAAAAAAA/O-KXZzmLWZ4/c-rp-mo-br100/photo.jpg','17898197009688164559',21095),('AIe9_BFu3rdicGrPrzdyu4PDXmqMz6cYgjOhIVBzppKpX0GFv4aEiC1DWxlkNBWKK85G9dHtIiMaZPrbKY26FvNEKd9FSjfIoy8BkLFrOZ_HSLZMcTB3gmY','Brought my father as an out-of-town guest and could not have had a better experience, wait time was next to nothing which was very impressive. As a medical professional myself, I appreciated the compassion and efficiency they treated my father with. There were friendly smiles all round!','2020-01-02 19:06:42.006000','2020-01-02 19:06:42.006000',5,'Jenn H','https://lh5.googleusercontent.com/-2_5HDZpTKHI/AAAAAAAAAAI/AAAAAAAAAAA/8sEUZX0vPzA/c-rp-mo-br100/photo.jpg','2694018788013845459',14280),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZbvSPPYxUeCCDExaM92qrI2pdbLRJhKgAtAB7iTUMfsGleb1RvvVDFRdpDUEBnL1JYQN37N7_SiCoidCewAaQbPAXYw','Really good emergency center and awesome friendly people 👍🏼','2020-07-19 19:24:22.142000','2020-07-19 19:24:22.142000',5,'Daniel Solorzano','https://lh6.googleusercontent.com/-9VFRNTrwErI/AAAAAAAAAAI/AAAAAAAAAAA/VB6q1tuvp-Q/c-rp-mo-br100/photo.jpg','14748677429039074158',21699),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZdydR4vuCUQxxQ3xPJoQBrfIaJCSCGx7NIS5VAnMuFngKyrkwNFprFIrkPkqaC3QcJQ0_pUjl17SmMUqUAYKu4hpZFg','I was very satisfied with the care that we received and that they made sure my husband had a room ready for him at the hospital when they decided he needed to be transferred.','2016-02-19 19:03:52.249000','2016-02-19 19:03:52.249000',5,'Amy Turki','https://lh6.googleusercontent.com/-VeCwyULSKVI/AAAAAAAAAAI/AAAAAAAAAAA/hiJ45jbrPD8/c-rp-mo-br100/photo.jpg','17394740196501090048',5282),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZggyC1AafvH3VhzC2NdYtrar6lFSb9ejGuzxG4l_DdHNlpPldTsBVITcOJzaWk8aZHTl6lmr5nyTBP-ckak9nDMyI88',NULL,'2020-01-13 02:41:43.405000','2020-01-13 02:41:43.405000',5,'Carol Oakley','https://lh3.googleusercontent.com/-iY3J_oPE6FY/AAAAAAAAAAI/AAAAAAAAAAA/MksMeHlOVdI/c-rp-mo-br100/photo.jpg','12541597562633926366',9537),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZhP-xUdS3Jhz5uM0s4_yfQ5AJrzIO5ikJMZImbRqal1HCeHz2Rngx4qn4SUJD5W3kdYDQG-rsd_BoVICAV9Y2a1Uhkk','Tonight was my first visit here. Our wait time was less than 10mins to go in the back. Terra greeted us and was very friendly and welcoming. This ER is very clean and offers coffee and drinks. The whole staff was great and I appreciate the professionalism. Thanks to Dr.Zheng, Nurse Irving& Holly!!!! Great Staff','2019-12-31 05:17:24.808000','2019-12-31 05:17:24.808000',5,'Tiffany Carr','https://lh5.googleusercontent.com/-ZhD_nFvYCuk/AAAAAAAAAAI/AAAAAAAAAAA/PiknbvGla7s/c-rp-mo-br100/photo.jpg','12541597562633926366',281),('AIe9_BFu3rdicGrPrzdyu4PDXmqMzHqA7fawnBfVZpd0vVM5hEqXGIxRpbwW_qFkMBGLy-avh6KYdTn0UOUcsguVMoKvcGDk7MBMTkszjBVSQ5KbgQ6gP30','Everyone from the second I walked in was so kind, efficient, compassionate and quick. thank you yo Dr. Lenng, Christina, Linda, Eileen and Chelsay for making me as comfortable as possible! Thanks, Nicole','2019-12-23 15:04:58.951000','2019-12-23 15:04:58.951000',5,'Nicole Kristen Yardas','https://lh5.googleusercontent.com/-BY0ZhTPY2Ww/AAAAAAAAAAI/AAAAAAAAAAA/RNet8maBwos/c-rp-mo-br100/photo.jpg','16891069708558046635',4103),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZI3j4BGwtQU6hRgUiQA19Xr17GLujKzyKVRkRfmpYPPbV-0w1xGBFVd1FOq9MvgzbxMU493Whcp_3rpvtel8hUJGc0k','Just wanted to show my appreciation for the service that Kim and Dyveliz provided today at SignatureCare! They were curtious and extremely hospitable from the first step into the clinic. Thank you!','2018-08-14 19:07:57.826000','2018-08-14 19:07:57.826000',5,'Michael Lavorato','https://lh5.googleusercontent.com/-gKESAVHL9js/AAAAAAAAAAI/AAAAAAAAAAA/NBv9JqwiaH0/c-rp-mo-br100/photo.jpg','16590124370714063921',3790),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZIB-p8fUmTRIDKWlivAZr1--CCRSq_2glQgbcFw7esAeshEPl4f73BdizN_87QDbVmMnc8_tz_JQXdGn5B9_gmvObcw','Great care and and customer service!','2019-08-22 13:59:30.518000','2019-08-22 13:59:30.518000',5,'John Jaster','https://lh6.googleusercontent.com/-1PvxgR4b1Wo/AAAAAAAAAAI/AAAAAAAAAAA/spFS9sZjVsQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4214),('AIe9_BFu3rdicGrPrzdyu4PDXmqMzMgKk1ZwgSuZFKH0QU1Vx0YtJFaG7WB8Svdin8A2ntKF5SjBG6Z3Kt7jVwbyQzmWnX8QDvOaIsIXrditw4OgUxGFnE4','All Staff was Very Attentive & Quickly taken! Answered all my concerns & made some helpful suggestions. Great place!','2020-02-06 15:16:51.782000','2020-02-06 15:16:51.782000',5,'Crystal Castillo','https://lh5.googleusercontent.com/-Zctqi6uIHLI/AAAAAAAAAAI/AAAAAAAAAAA/vbWqWggtrjc/c-rp-mo-br100/photo.jpg','14567670160750071148',13553),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZmKYfEIHag-MlomQ9daIUb2J8l5oR0_wYR2ql4xkjEtRkj3jQZ8UIfeSrrwy9-lRTE7dcTQ8pN73vtX-bulkCzhB4ls','THE DOCTORS & NURSES ARE VERY NICE AN FRIENDLY!! DR.O’MALLEY , PATRICIA C, ALVEAN A THERE AN AWESOME TEAM ! ITS VERY CLEAN THEY MAKE YOU FEEL VERY WELCOME AND COMFORTABLE ! THEY GET YOU IN AN OUT FAST ! I DEFINITELY RECOMMEND THIS EMERGENCY CENTER THERE THE BEST IN HOUSTON!!','2019-12-26 22:07:34.078000','2019-12-26 22:07:34.078000',5,'latrice dickey','https://lh6.googleusercontent.com/-KZKntzxL_v4/AAAAAAAAAAI/AAAAAAAAAAA/XpJ5ng1_fRY/c-rp-mo-br100/photo.jpg','16389487648212004696',2509),('AIe9_BFu3rdicGrPrzdyu4PDXmqMzng3MheM7MOAFzepk6tz5nXJ47ZpSEuaEoJJbTcCmjIhbamPXA4hDqQpPSoSemK9NY5ito1EhacuIwnWGTBDYKe8zZM','The staff was amazing. Dr.Allouji was kind and empathetic. Therisa and Katrina were really nice','2019-12-23 00:56:16.405000','2019-12-23 00:56:16.405000',5,'Val pickersgill','https://lh5.googleusercontent.com/-8c-pTeZbo1I/AAAAAAAAAAI/AAAAAAAAAAA/w6Nvjxqh7ZI/c-rp-mo-br100/photo.jpg','8679688254631342173',8680),('AIe9_BFu3rdicGrPrzdyu4PDXmqMzpgGYSOWSMQc0eXf4JkNsPKrl_8grkxJ32GlGTQpEjTr67ZK9Anr7w0CWg49KPobtvpBG8or6mUEKQZWfiK8Q-bgCzk','So I will try to keep this short but this ER is the ER you are looking for!! Upfront pricing, friendly staff, & super AFFORDABLE for those who don\'t have Insurance!! Everything is new and very clean. They have a pricing system that I believe is fair. If you compare with other similar ER\'s they are way cheaper. I talked to one location that said it would be over $600 for the same service that SignatureCare covered for $175. They are doing god\'s work! Thank you for everything you do!!','2018-10-06 10:24:56.844000','2018-10-06 10:24:56.844000',5,'Vance J.','https://lh5.googleusercontent.com/-ye1AJqm9RmQ/AAAAAAAAAAI/AAAAAAAAAAA/n4kGs_CABNU/c-rp-mo-ba4-br100/photo.jpg','16891069708558046635',4422),('AIe9_BFu3rdicGrPrzdyu4PDXmqMzq3DA2h0sK8YoS2ugTZMF2EWKAo9zYVpFx9HvQjIfp-bP8cGOwvEcGORZX0XKH-3-t3d1PxoIWfIZNL2QzuwW7zCiN0','I had a great experience at signature care. Everything was very easily explained and understandable. Dr.Richard Nguyen was great and so was nurse susan','2020-02-05 05:23:48.734000','2020-02-05 05:23:48.734000',5,'Daisuan Parnell','https://lh4.googleusercontent.com/-L2GjBt3M0XM/AAAAAAAAAAI/AAAAAAAAAAA/haDm8E_vKGk/c-rp-mo-br100/photo.jpg','17898197009688164559',10547),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZrnYaW5Qyp4Fhkdon91NbcKtSxgCjH_qZI615OpnWpKGyGY9W4G_k5ayhlowCkkNFK3GdRnlaUxSfsdczq6_RukygFQ','5 star experience! Fast , no wait time . Everyone was amazing and wonderful experience from Patricia the front desk to the nurse Exaterini , the tech An , to the CT tech Laura all the way to DR. Rodriguez everyone was amazing!','2020-03-19 19:38:21.042000','2020-03-19 19:38:21.042000',5,'Anthony Chavez','https://lh5.googleusercontent.com/-CxJA66ce2vk/AAAAAAAAAAI/AAAAAAAAAAA/0BidPyVMJgE/c-rp-mo-br100/photo.jpg','16389487648212004696',21002),('AIe9_BFu3rdicGrPrzdyu4PDXmqMzuLhi1zviI-Sq43Q6z5VfmSQchy8tkFMfJXIZbExTkGwP9XOvCKUmTugHTvHRjl_DqB1Z1WY-6L9pBSmBmuPsKB0HkE','Amazing service. Would recommend to all seeking a 24/7 COMMUNITY ER. Alexis, Jacob and JR were great! Thank you guys :)','2018-06-21 13:05:00.810000','2018-06-21 13:05:00.810000',5,'Stephen James','https://lh5.googleusercontent.com/-CVWq5zltpqw/AAAAAAAAAAI/AAAAAAAAAAA/zrY2XdaDkXI/c-rp-mo-br100/photo.jpg','16590124370714063921',3812),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZuMjLINDChryBKaoMvLJ-5620yI6wfNbFFaO74p_j68SWtqZuFjL2jfO9xxZulKrjkgN8jTwKiOH9rkb3vKU0kApfSk','Fast and friendly service! I was in and out in no time! Susan, David and Matthew were awesome! Helped me with my problem! I trusty recommend coming here! Thanks guys','2019-08-16 00:31:14.525000','2019-08-16 00:31:14.525000',5,'Queeta Martin','https://lh3.googleusercontent.com/-prfkIPFyL8s/AAAAAAAAAAI/AAAAAAAAAAA/8nbnHD-NO08/c-rp-mo-br100/photo.jpg','17898197009688164559',5582),('AIe9_BFu3rdicGrPrzdyu4PDXmqMZW_X4jqwh__zcPlVE_djQYClHGyf46HTcce5YuhInA40xA0ga4zf-alOR5yU0oIEETFObZa2rQ3nYDW2IWxTUIxE4Ec','Firstly, they blatantly lied about calling me to come in early for a scheduled appt.\n\nMy singular staff interaction was unprofessional and mediocre at very best.','2020-07-13 09:06:01.611000','2020-07-13 09:06:01.611000',1,'Christooher Evans','https://lh5.googleusercontent.com/-1OfZQhGqLKA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucluZr8namklOXKZGmo99K3fZN6QQg/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22252),('AIe9_BFuOtI4uYD_Z3GoxZB6b3o2HFFAah1v0ZdQG6-xBj6eZOhdjDeUQgiZwmyt5eyIWZ19ctJ6WJZWMX1eyDJIPpSqPh4DSRfOB47LKFNJxxfuCadgA3w','Tanks to Dr. Leavitt, Alvean, Keith, and Amy. Awesome staff, always made me feel welcomed. Thanks guys.','2019-11-17 17:24:54.049000','2019-11-17 17:24:54.049000',5,'Antonio Perez','https://lh5.googleusercontent.com/-bt5ifmbP9d4/AAAAAAAAAAI/AAAAAAAAAAA/6Vg_VLVY2_Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2675),('AIe9_BFuOtI4uYD_Z3GoxZB6b3o2Oww83_HnAll6VKE_ElMUDYUePAvP4rrtGKd6YYOQWD5deWWv3-LiGdG-7pvcEZySRF5JcJ41Ohmen8cJNC1b1OC9ZCU','It’s actually insane to me that this place has any good reviews and makes me wonder if they purchased these. The doctor was condescending, the front desk woman was rude and dismissive, they did not have the technology I needed, and they charged me $150 to tell me they wouldn’t be able to get an ultrasound tech in for 6+ hours and that it would be a minimum of $6000 dollars. Absolute joke of a facility. I walked out and went to another emergency room where they took care of me.','2019-11-24 18:43:43.569000','2019-11-24 18:43:43.569000',1,'Rachel Arco','https://lh4.googleusercontent.com/-hzfVaKM19nY/AAAAAAAAAAI/AAAAAAAAAAA/0oCSBCAxqCU/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7138),('AIe9_BFuOtI4uYD_Z3GoxZB6b3o2X1zdmF2KSgIENPuRq8MqAPN4KanRxj5MtDXgAWkmHpNVQXPPxwrcf1lnTxxzf_OawehLezYW50eTl37IFSQK68zpKF0',NULL,'2019-05-12 13:35:07.045000','2019-05-12 13:35:07.045000',5,'Ranger1287 J','https://lh3.googleusercontent.com/-MShuFOmcnuI/AAAAAAAAAAI/AAAAAAAAAAA/06OwOPesEnQ/c-rp-mo-ba2-br100/photo.jpg','8626688543755174284',8489),('AIe9_BFuOtI4uYD_Z3GoxZB6b3o2YX6RF4-9FuYbHnRjElQZH2IzN1Zw3qkpiscmi-CENO8m3ilpwjlkKHsMps8-e7Dt5J5w8eSgSWJQm7cQ4Zz_PhvET0o','I came in highly concerned about my overall wellbeing and instantly went for the urgent care near by. The staff here really helped to put me at ease. Delicia was warm and welcoming. \nDuke and Waldo were friendly and reassuring and made the Testing and X-ray portion go by with ease. Dr. Chukwuma was quite informative and put me to ease overall and helped with proper post-check medication, making sure I was all good to go.','2020-03-18 22:54:47.851000','2020-03-18 22:54:47.851000',5,'soha ahmad','https://lh5.googleusercontent.com/-vF1S60QQXsw/AAAAAAAAAAI/AAAAAAAAAAA/psfNA9MTCr0/c-rp-mo-br100/photo.jpg','8679688254631342173',21206),('AIe9_BFV3lSgJpE5_bsCduP4aao2-8tbDXw4H_zfri3RbJXH3NTrDaKyicsGqH3CKBejyhHxiQtkL3RtWOSyG1vc1PAS1xNZkA','My experience was amazing. Love everything and everyone here named Kendra','2020-02-15 19:49:17.172000','2020-02-15 19:49:17.172000',5,'andrew demeris','https://lh4.googleusercontent.com/-UrsAH1snWfk/AAAAAAAAAAI/AAAAAAAAAAA/MOqHcB7huPM/c-rp-mo-br100/photo.jpg','16590124370714063921',13853),('AIe9_BFV3lSgJpE5_bsCduP4aao2B6zVxndlOnLL-qgo_mLOl6O3M26tAi6i4neRimV2y15pDpFMGAgZ1V6OjPW5ZuZ9QKg23yNABn0C0PlaASXtzOPNWfs','Nice and friendly. John and Sam did a fantastic job, explained everything very well.','2020-08-18 20:51:11.757000','2020-08-18 20:51:11.757000',5,'Johanna Crisostomo','https://lh6.googleusercontent.com/-HbZODhs-g_w/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckc-3s-pI0uXLm69czzAyiWcvezjg/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BFV3lSgJpE5_bsCduP4aao2lJQUID6cUNuJbBcmfTrG_1lMQXxwvGVw7MdA5AfNfqG1a5RlmJ-qQXI6Tn8erPRcBZAZZGyVXLv3UF1J9y4jKUio6Ns','Great facility! I got to SignatureCare Emergency Center around 5:50am and was out of there before 7. I was admitted within 5 minutes of arriving, and immediately got seen by the nurses and doctor. Very nice people! What I liked the most is that they did not force any unnecessary tests that would cost a fortune. I was given medication for what I came in for and was told to come back if it got worse. Very efficient, quick and simple! Thank you!','2017-04-19 20:23:58.128000','2017-04-19 20:23:58.128000',5,'Mariana Sereda','https://lh6.googleusercontent.com/-ERftYHO4vDQ/AAAAAAAAAAI/AAAAAAAAAAA/RTiLG2RSXg8/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1843),('AIe9_BFV3lSgJpE5_bsCduP4aao2SKDNhGTdIfNrb7iCuanOJOXtPxTKAI7XbSFuX_1oDz581gbnZJ9mZMG97hkBdpEN4adK0w','Great team, cozy and very helpful with all the questions asked.','2019-12-17 22:56:51.497000','2019-12-17 22:56:51.497000',5,'Ruben Rodriguez','https://lh4.googleusercontent.com/-2mP30bdlpDQ/AAAAAAAAAAI/AAAAAAAAAAA/UQp-40q3XuM/c-rp-mo-br100/photo.jpg','14567670160750071148',1174),('AIe9_BFV3lSgJpE5_bsCduP4aao2YXAPiNPNVZJguUUXdW5lL7j01HVdFkZzhU24skucdQ2ieqL47HTMnT_67vl3kOgjS-tNSA','I was taken care of by Susie H. and the service was great! I was seen quickly and was asked if I wanted a warm blanket. Definately recommend!','2019-09-11 14:55:40.643000','2019-09-11 14:55:40.643000',5,'Whitney Pocock','https://lh6.googleusercontent.com/-8ISyiyMslMc/AAAAAAAAAAI/AAAAAAAAAAA/4FG68Reo1WI/c-rp-mo-br100/photo.jpg','8626688543755174284',14677),('AIe9_BG_KYPQZrI7j-moUldshgc10vemdM9bRrvDYjDe7Bfm4anTICxbHaTSPHWJSSEozh0yeDar-p4ynfqJ9aFdJ9UY6dMalzWg-RI0SZ8KaMM_E2ggF-A',NULL,'2019-07-21 16:21:37.146000','2019-07-21 16:21:37.146000',4,'Celeria Washington','https://lh4.googleusercontent.com/-EfQPBNZazVA/AAAAAAAAAAI/AAAAAAAAAAA/texxQNgUnTs/c-rp-mo-br100/photo.jpg','8918455867446117794',9087),('AIe9_BG_KYPQZrI7j-moUldshgc11QdPpeQ2vLy5ktBtJXrTOnlRp55aht3Ct4mDJlBgjuclP1SlelFY7lHBMQPjyl8NJxWyxmzJV6wH7J44syjIqptyrxk','Had the most awesome service at the Signature Care in Odessa off of Grandview street, Jessica was the receptionist, Jessica F. Nurse, Jared the Tech and Ector was the other Tech, I have been to many clinics and would say this is the best. Really nice and helpful people. Thanks again to you all..','2020-02-21 13:29:02.637000','2020-02-21 13:29:02.637000',5,'Daniel Collins','https://lh6.googleusercontent.com/-cb3iW0zeWYs/AAAAAAAAAAI/AAAAAAAAAAA/p-OcmpD_rmk/c-rp-mo-br100/photo.jpg','6521947413723274945',14564),('AIe9_BG_KYPQZrI7j-moUldshgc12K_q8K82koD0he0q5qJTDho4JScHqZhC3GfCBmxy6nSntwylbs2SCMBO8Y7x7TfQ4huBvoF0ITv9sSUjB6AIhrgvzAw','This was my second visit and it was just as great as the first. Naomi, Jacob & dr. Singla were super attentive and welcoming. Would definitely recommend','2020-02-19 15:07:17.912000','2020-02-19 15:07:17.912000',5,'Valeria De Leon','https://lh6.googleusercontent.com/-5WrepU4u2fw/AAAAAAAAAAI/AAAAAAAAAAA/xuQbvXDKD0E/c-rp-mo-br100/photo.jpg','16590124370714063921',13846),('AIe9_BG_KYPQZrI7j-moUldshgc16T2Dtb4SuYpzIR4tInYcgA8lOFk7LhyW17kV9d8c5lJBrdn5QPqJCX8nsAHhMD2MPC8DMORJpODbxyz6IK8mO4TyZXk','Had a great experience they took care of not only my husband but my whole family made us feel welcome and token care of that y’all we’ll recommend to others special thanks to doc. Ortiz and his staff RN shola, RAD bryon D and ms. Amanda','2019-07-23 06:25:22.064000','2019-07-23 06:25:22.064000',5,'Tete and Shelly smith','https://lh3.googleusercontent.com/-7TTnPXoXQ3E/AAAAAAAAAAI/AAAAAAAAAAA/Fs-U0xCKhuo/c-rp-mo-br100/photo.jpg','14567670160750071148',1272),('AIe9_BG_KYPQZrI7j-moUldshgc17PS4aSBKGJyCTQX23tuF8eLtqgF-_wy3SqgH6bwu4zbVm0q4Y1bMX0xSMt0cMj9uEeTuxUgeKFUTpGAIv3ESIfrzSNQ','Amazing, excellent service and doctor was very informative','2019-10-12 17:29:12.284000','2019-10-12 17:29:12.284000',5,'kyndall osborn','https://lh3.googleusercontent.com/-mbalcKeQ0XE/AAAAAAAAAAI/AAAAAAAAAAA/3e4wxNxnaa0/c-rp-mo-br100/photo.jpg','16590124370714063921',3145),('AIe9_BG_KYPQZrI7j-moUldshgc17vCcCeSuKDOD_BFnGgvam8Pfo71rlGZB-6k-9Bn0PnZa2gArrGe-3f-bxkm0M0CDzcJtkdkFsH0bxhY9YUUwknSWvoU',NULL,'2019-04-16 05:51:42.133000','2019-04-16 05:51:42.133000',5,'Triple Seven Performance','https://lh3.googleusercontent.com/-ScjvTedPQ78/AAAAAAAAAAI/AAAAAAAAAAA/VZ91_M-3Wm4/c-rp-mo-br100/photo.jpg','13486358490203335051',1036),('AIe9_BG_KYPQZrI7j-moUldshgc18uwToYEG1yjqS4QVWgq8UjPxcIVvj3JqWEw7heBvpJcTAGMBjfzupKOGmZMU341O82xmzsxJY7ibhta-2hIco42YFvc','Arrived with a no wait time, the front desk lady named, Kimberly was very sweet, and allowed me to go to the back with my boyfriend while he got to talk to his nurse, Jacob. Very clean lobby with a charging station, snack and drink bar.','2018-02-08 16:01:05.963000','2018-02-08 16:01:05.963000',5,'Leslie Rodriguez','https://lh6.googleusercontent.com/-WRfSSSToAvc/AAAAAAAAAAI/AAAAAAAAAAA/2CnqqdoUOe0/c-rp-mo-br100/photo.jpg','16590124370714063921',3864),('AIe9_BG_KYPQZrI7j-moUldshgc1alLxJyeGfsX3E5e3RV1LtUaDhaOMvIEosBK4ZcrQWEjpOLSxZE8yMU5lSPW0-q0LEnQV8zEKLZa8T2vcByvVE5PkQW0','I had a great experience. The staff are great and friendly. Dr. Pettisen, was courteous and helpful. Brian the tech was very nice making sure we were comfortable. Amanda made the check in process easy and answered questions without hesitation.','2019-01-09 01:41:38.370000','2019-01-09 01:41:38.370000',5,'Lorena Ramirez','https://lh4.googleusercontent.com/-7bblWLxv3xc/AAAAAAAAAAI/AAAAAAAAAAA/81WxJYGoUAk/c-rp-mo-br100/photo.jpg','14567670160750071148',1431),('AIe9_BG_KYPQZrI7j-moUldshgc1BzryOB1Jsrs2F0Xghyq0nsZq44ZgJ9Rp0uH4AsaCfAAaCxRZvci3snuLfpUAGuZWTaOdU0L9PLO9BuKbPzJCmz6NgpA','I was in a great deal of pain and was very fortunate to find Signature Care at 2:30 in the morning. Everyone was friendly, caring and professional. I was able to see the doctor a few minutes after arriving. I have already recommended Signature Care to several of my friends.','2017-01-23 22:04:08.595000','2017-01-23 22:04:08.595000',5,'Willie James','https://lh5.googleusercontent.com/-jyM_X20LWGc/AAAAAAAAAAI/AAAAAAAAAAA/MtoFDKLV-d4/c-rp-mo-br100/photo.jpg','16590124370714063921',4083),('AIe9_BG_KYPQZrI7j-moUldshgc1csc2-bbAoONEoBuNnvZhQZ4mRcCu1t_Br0anRBWdrlD9gNWNvfohkHJoO2XMYKYxHfa9OxdBEFxoZ7UVPe5U4MZ2O1Y','Manny did a great job','2019-06-07 17:06:48.418000','2019-06-07 17:06:48.418000',5,'Estevan Gonzalez','https://lh6.googleusercontent.com/-kBVzg7kX2s0/AAAAAAAAAAI/AAAAAAAAAAA/0JbCvK9nddM/c-rp-mo-br100/photo.jpg','6521947413723274945',8247),('AIe9_BG_KYPQZrI7j-moUldshgc1hjP6hxteiyPbTAR2zvNxKhmi0zVb8czmdr17S_Qj4EvSNoqHxm_TaWCxhnBrCqJwNpiKPT6vu--PgNEGc4ncekt4j68','Awesome facility with great service! All doctors and nurses were very nice during our visit.','2018-08-02 22:46:44.509000','2018-08-02 22:46:44.509000',5,'Gerardo Duque','https://lh6.googleusercontent.com/-PoAwWLehbBw/AAAAAAAAAAI/AAAAAAAAAAA/YOzHBq1e1-k/c-rp-mo-br100/photo.jpg','3511292162159714121',7671),('AIe9_BG_KYPQZrI7j-moUldshgc1IBcoI8OgJKwo9itTV_EEnt2nwNPQRVy0Tw_g-CW1-7zitaTZviaF34SDH5Mtb3ivvVTXcBISWtpy6g9dc92DIjVKxr0','It was a great experience and they answered all my questions. Kendra was amazing to direct me to where I needed to be.','2020-03-19 22:57:39.521000','2020-03-19 22:57:39.521000',5,'Zoë Madrid','https://lh6.googleusercontent.com/-3bx-lcDeoQY/AAAAAAAAAAI/AAAAAAAAAAA/EuGYZ_pUHXk/c-rp-mo-br100/photo.jpg','16590124370714063921',21021),('AIe9_BG_KYPQZrI7j-moUldshgc1iohPORVcAjFYJ2qtGJza-8yg0O0Hu7cytm7z2YnZ_BO0hR1UTU66wGSzB8cRx9kMZd2Kn4fP1X98oOsSiHoYJqg3sM0','Came in tonight and the staff here are absolutely amazing !! The receptionist Maya was very sweet and friendly. The service was quick and painless, Dr Smith and the nurse Kristina couldn’t have been more understanding and helpful!! Would definitely come back.','2019-12-13 23:40:33.666000','2019-12-13 23:40:33.666000',5,'Dominique Rodriguez','https://lh4.googleusercontent.com/-jCKOF4FX2wk/AAAAAAAAAAI/AAAAAAAAAAA/NDZV1ijulFE/c-rp-mo-br100/photo.jpg','12541597562633926366',347),('AIe9_BG_KYPQZrI7j-moUldshgc1iWeNbpXfdD4a8Sa7EqlFJvQmuZZUB5M1inGMz852IFfOmLxrDXeyNLNSv8U6f_awCEZK3u1mRnZqJRxBzGVwiHaRK9w',NULL,'2019-09-29 15:44:40.902000','2019-09-29 15:44:40.902000',5,'Joely Burleson','https://lh6.googleusercontent.com/-mQMqnHIZEa4/AAAAAAAAAAI/AAAAAAAAAAA/BI6mD7Is9jM/c-rp-mo-br100/photo.jpg','16590124370714063921',3167),('AIe9_BG_KYPQZrI7j-moUldshgc1jgjX-CIUFKnqvIquPoS-b4cahPXYaYoDjXywOnFTLNYrsx5tCy93xkxLgdSwofmHNKox-yXDsLzuQlUoCbttkR263cw',NULL,'2018-11-01 02:04:27.091000','2018-11-01 02:04:27.091000',5,'Nathan Jones','https://lh5.googleusercontent.com/-bNyQQTYOzx4/AAAAAAAAAAI/AAAAAAAAAAA/FGGHcqDj7oY/c-rp-mo-br100/photo.jpg','16590124370714063921',3679),('AIe9_BG_KYPQZrI7j-moUldshgc1jQoZIRkltcpCDGwixgw5Fjc0aZeeBAEYB4j3U1l0TgFdvbT5wex1V0n5IM90aFN-gb3rRu59L2hjwQfuga2-rY3WswE','I was in, taken care of and out (and feeling better) in no time at all. I love this place! (and much cheaper than going to a hospital ER) They\'ve got my vote for sure!!! Highly recommend!','2019-02-13 13:47:13.504000','2019-02-13 13:47:13.504000',5,'Charles J','https://lh4.googleusercontent.com/-UBzkHNNSVJ4/AAAAAAAAAAI/AAAAAAAAAAA/o_QsWps_J0E/c-rp-mo-br100/photo.jpg','14904078213800803294',2169),('AIe9_BG_KYPQZrI7j-moUldshgc1KfQ9w8P8uABp0tKXV0HxTTZpwT3hmFCKvODF52APcwaHUc4kCWfGrKhhkeov8WREsAMJAD_5QJP1ja7qDyWaMib4BfI','Came here for the first time today. Overall impressed with the facility. Dr. Patel was very informative and answered all our questions. The staff was kind and welcoming. Initial wait time for seeing the doctor was quick. Nurse Kristina and Sarah were also very accomodating and hospitable. \nThe facility was also stocked with snacks and water for us which was very convenient.','2020-02-05 01:13:36.693000','2020-02-05 01:13:36.693000',5,'J S','https://lh4.googleusercontent.com/-Hogsed1M3lY/AAAAAAAAAAI/AAAAAAAAAAA/KlNoBLOmV0w/c-rp-mo-br100/photo.jpg','12541597562633926366',10529),('AIe9_BG_KYPQZrI7j-moUldshgc1lHVkIyhzsYlqGGYP8TG5VaKDT10m9b5gSV4t3OVulHBWnjSB48ugxK9YhyVxPd8Hhqvkk4RA3z1Yvhj5nU9_aZjca9Q','Dolores, Laura, Dr. Kimble and the staff were great. Thank you.','2016-07-11 18:50:44.996000','2016-07-11 18:50:44.996000',5,'Kimberly Dougherty','https://lh6.googleusercontent.com/-0k9iOuVd40M/AAAAAAAAAAI/AAAAAAAAAAA/tm5utJc3eQw/c-rp-mo-br100/photo.jpg','3511292162159714121',7960),('AIe9_BG_KYPQZrI7j-moUldshgc1oMIIc7uL-2O1s9ef7GLR396D_BvgVEHHt6WqqEfh5hPUsbIJpFiQWBrc7fLkKwgUPSI1tRk5TvNHlwKr-web_Z4syXQ','Staff was excellent at the front desk at the Stafford Location. Took 6 hrs to schedule online & the call center I was on hold for 30 mins 3 different times. I finally get a 2am appt for COVID Testing. Non refundable fee is paid through Paypal. Go to my appt to find out they cant bill my insurance because its a Federal plan then Im asked to pay $165 i dont have because im out of leave at work and not getting paid because my medical condition. Insurance should be verified prior to paying $10. So a waist of time.','2020-07-14 07:57:56.536000','2020-07-14 07:57:56.536000',1,'Shenita Johnson','https://lh6.googleusercontent.com/-_SAbhcQ699E/AAAAAAAAAAI/AAAAAAAAAAA/mcUDvvTQNus/c-rp-mo-br100/photo.jpg','8918455867446117794',22924),('AIe9_BG_KYPQZrI7j-moUldshgc1rxEOW_oxcOFcL2RjzIKQK0aJ3Ohahdw5Skk19HWAUrtWmI6KNNuQGgxQaKW7YRZkCrkvuX6qQYnxWsYNEDVHUpRGVT0',NULL,'2020-01-10 22:23:31.895000','2020-01-10 22:23:31.895000',5,'Sandra Diaz','https://lh5.googleusercontent.com/-rFt6PdFH5r4/AAAAAAAAAAI/AAAAAAAAAAA/-DYCSYtnxYA/c-rp-mo-br100/photo.jpg','16590124370714063921',9496),('AIe9_BG_KYPQZrI7j-moUldshgc1v1xwLeU_uslAILQhIhJrKQsADwDqk2d5xzT6NFZ1JFom--GkxKKxp9JKTX3yuEJjZjaNwfHdCuSqfud7uPSicBEWzYk','We are very pleased with all our experience here. Everyone is so nice and sweet. I will definitely recommend ercare to everyone.','2020-01-15 15:43:23.036000','2020-01-15 15:43:23.036000',5,'Diane Delgado','https://lh3.googleusercontent.com/-etwtkJq3xfk/AAAAAAAAAAI/AAAAAAAAAAA/2zYFGEPrkyw/c-rp-mo-br100/photo.jpg','14567670160750071148',9694),('AIe9_BG_KYPQZrI7j-moUldshgc1VdkXQJMjxkKSUtNRtelpK64pLMLWECrS9C9WTTdXooiqwRFrZsDRMAiZ0VhrwKw_DOWAlAg87tINop0xdN9_wXKCcPA','Lizzie T, Dr Daniels and the whole staff were absolutely amazing this evening taking care of my sister and my nephew who are visiting from out of town. Thank you guys sooooo much. Wish we had come to you first.','2019-07-26 05:10:08.313000','2019-07-26 05:10:08.313000',5,'Tracy Beavers','https://lh6.googleusercontent.com/-UC0rr3-wE1g/AAAAAAAAAAI/AAAAAAAAAAA/US5fFhiGvnI/c-rp-mo-br100/photo.jpg','3511292162159714121',7240),('AIe9_BG_KYPQZrI7j-moUldshgc1Wyw3W45qhQN1qe5ILXlse5Li4fww81jnILcxo5lGYVjPkv8Hk2jtsxWPIz1w7sQe33qLpcPKnqgJStXdxiiJ_nWgc4g','Rashaad was killing at registering ppl and calm!! Love this visit','2020-07-11 05:57:11.197000','2020-07-11 05:57:11.197000',5,'aug ent','https://lh5.googleusercontent.com/-QwaKmyTT35Y/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmyxHZ48RsFUxf0vhXcAu7nn1xkCw/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21591),('AIe9_BG_KYPQZrI7j-moUldshgc1ZPp5afnBLwMWudd3n2Vy7xqvHqqn1oN-ebqqyPnE88lDX20WCrefceAOD2sfqqCJ97joVSnfAhxrsZGbgu1drVLFiMI','Wish they took Medicare - otherwise great!','2020-01-22 23:19:35.456000','2020-01-22 23:19:35.456000',5,'Joe Watterson','https://lh6.googleusercontent.com/-1TAcd3sXUOc/AAAAAAAAAAI/AAAAAAAAAAA/Dr6fZjFnUeo/c-rp-mo-br100/photo.jpg','16891069708558046635',13979),('AIe9_BG6xadHFAZSK79zWz9bVMwy2tE_A3zTHwRaN4Qg8w6e5KxbXV57MxfyC55rQ0SUu8vy8cTfomijwsbinPaG2WUbqgm0BFGqV1uenA2pIjem09YrM_0','After several days of an intestinal issue I googled Emergency Centers near me and SignatureCares stellar rating and location were a match. It was a Christmas miracle! Talk about fantastic service...caring staff, thorough exam, very nice facility, convenient parking and they accepted my health insurance. While my issue had to run it\'s course I knew when I left that it was just a run of the mill issue and nothing major. Christmas was saved!','2018-07-14 21:16:15.833000','2018-07-14 21:16:15.833000',5,'Alan Morlan','https://lh3.googleusercontent.com/-jYlml2vogRI/AAAAAAAAAAI/AAAAAAAAAAA/YQzAhQL0u80/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2241),('AIe9_BG6xadHFAZSK79zWz9bVMwy4lJ7ca3AQ8kr6T1Z4pL4ZNZNazfjO1nCC3Z7Ogx2w1JzQWSdyMqmqvySb4JIXgsD96NBt6OiTIKHa2nMBm8nake3lNM','Anthony, Dr Anders, Laura and Naomi were all so very helpful and sweet! They made sure I was comfortable and that I left feeling better. I definitely recommend.','2019-03-23 15:27:19.119000','2019-03-23 15:27:19.119000',5,'Genevieve Karam','https://lh3.googleusercontent.com/-yd2LGRTIPlo/AAAAAAAAAAI/AAAAAAAAAAA/gf8BTQGIpBI/c-rp-mo-br100/photo.jpg','16590124370714063921',3491),('AIe9_BG6xadHFAZSK79zWz9bVMwy7N2jTp0AN6apD6yUGmz0wn4T538CX8kXjzrolHce80KSiqW6xaWWInGMju913kxaEJYet0v3znUDsLyVb-RCH2BG2Oo','Was given the best experience I’ve ever received. Tanisha, Dr. dang, Lynn, Laura and Daniel. Treated me like a king. I absolutely adored everyone of them and the experience I had here.','2019-11-18 03:21:36.021000','2019-11-18 03:21:36.021000',5,'John Patrick Arwood-Slate','https://lh4.googleusercontent.com/-5l2yGHQ42VQ/AAAAAAAAAAI/AAAAAAAAAAA/8XNJ48aBek4/c-rp-mo-br100/photo.jpg','17898197009688164559',5429),('AIe9_BG6xadHFAZSK79zWz9bVMwy93KXcR3SrsCeGnPaGCf_iIvDLwejru6ZFlZM-mTlUA98V0lsX1-CUtc1pKwMzeHtRnlW5dWaMg68Fvdjko2MlANUvPo','Great facility and outstanding employees! Susana and Emily we’re running the entire crowd by themselves and we’re very kind and helpful the entire time! Also all of the nursing staff were very nice and did the job quick. Great place for health care','2020-06-16 01:54:01.582000','2020-06-16 01:54:01.582000',5,'Mitchell Miller','https://lh5.googleusercontent.com/-YnF1LnEVLoo/AAAAAAAAAAI/AAAAAAAAAAA/R_Ya1OhnJzI/c-rp-mo-br100/photo.jpg','2077061009497551125',21104),('AIe9_BG6xadHFAZSK79zWz9bVMwyCL54t1-3JQNQDwQdopoDL1_SWolv1EDUlRb_2CHLEHbsqQhXRVmeQV_FNN4FZlnLL4uiKTxwVZMnTO5KRqo8hIWdyLw','My experience at Signature Care yesterday was indeed a great one. The lady at the front desk was more than helpful and kind while Dr Kimball was God sent. He is incredibly nice. He attended to my baby who stuck a bead in her nose for free. I still cant believe it. Thank you so much Dr Kimball and thank you to the front desk staff','2016-05-31 14:51:26.206000','2016-05-31 14:51:26.206000',5,'Dhikrah Lasisi','https://lh5.googleusercontent.com/-f5WGKgs93q8/AAAAAAAAAAI/AAAAAAAAAAA/jca8cjo2-qE/c-rp-mo-br100/photo.jpg','17394740196501090048',5247),('AIe9_BG6xadHFAZSK79zWz9bVMwycLdikQ-4lTaR936i3eah_zyb1h2Rbv-EqSpWp1Y_Su9rem2UGBAr6xYV15uCz9vJLiQ0C60Cl30_f5fVCZ99PQU0j1k',NULL,'2016-12-31 21:30:04.768000','2016-12-31 21:30:04.768000',5,'Shayne Stark','https://lh6.googleusercontent.com/-DemSK9hdWZo/AAAAAAAAAAI/AAAAAAAAAAA/vd8bRDY3p5A/c-rp-mo-br100/photo.jpg','17394740196501090048',5141),('AIe9_BG6xadHFAZSK79zWz9bVMwyEEhwmddLvsXeFykUoq0ONW6iegU4kKmk3yGyy-3rmWou8y5sHPKr1SrmjmqbNcbC-HNRtsne93VuH40j2o7gN_9lqSk','This place is phenomenal. We were in & out super quickly. Snacks and drinks for the wait. Tanisha, Daniel, Dr. Dang, and Lynn were absolutely amazing. I’ve been to lots of doctors and ERs & emergency care services - this takes the cake for all of them. I just moved to the area & now I have peace of mind on where I’ll go if needed.','2019-11-18 03:16:45.324000','2019-11-18 03:16:45.324000',5,'Kaitlyn Baria','https://lh4.googleusercontent.com/-xacgsJKQYIw/AAAAAAAAAAI/AAAAAAAAAAA/JgIYNKyEXrY/c-rp-mo-br100/photo.jpg','17898197009688164559',5430),('AIe9_BG6xadHFAZSK79zWz9bVMwyfBtzMIYmoF-J7FN4ssC0zohDOEuW7DBsCJ-W5OesF3qoJeYcs3ojmvmN_OQmsGI7XXFXqUmlc3h6zzlerdM2g325D-M','Amazing staff! Hamzah and Olivia paredes we\'re great and very professional! Best of the best!','2019-02-03 21:26:55.147000','2019-02-03 21:26:55.147000',5,'Edwin Moreno','https://lh4.googleusercontent.com/-s_0A1lQMPec/AAAAAAAAAAI/AAAAAAAAAAA/fDlZg8bjktg/c-rp-mo-br100/photo.jpg','3511292162159714121',7416),('AIe9_BG6xadHFAZSK79zWz9bVMwyG4nV7PcCsQ0RAriClWRo2lfLsOqURKjOLuASLUbCAv-VU8JM7_IZb5bqkk7wCGpjvEt4qU_TioVeo7BKqivEV3olbUo','Super friendly staff. Iris and Joe took such great care of us! 10/10 would reccomend.','2020-03-12 00:09:15.106000','2020-03-12 00:09:15.106000',5,'Mia Gallardo','https://lh5.googleusercontent.com/-CKkV3ouVsXQ/AAAAAAAAAAI/AAAAAAAAAAA/URdGgBKG6Ww/c-rp-mo-br100/photo.jpg','14567670160750071148',20947),('AIe9_BG6xadHFAZSK79zWz9bVMwyH0CBNaLKNRkpaZloqR4Rgql35DtIH97rKv9BJ4q7Ee2UsUnSFaFlr4PsHUHQZ5VC8ZgW38nigPuxey7QyOyTnGLxAwY','Fast friendly staff, eager to help and make you feel comfortable. \nRegistration Nurse Maria was super friendly.\nNurse Savanna was really nice and did everything to make me feel comfortable.\nRadiology Tech was really nice and thorough.\nDr. Diaz was really nice and explained everything in detail.','2019-01-30 13:51:43.530000','2019-01-30 13:51:43.530000',5,'Robert Sprenkle','https://lh5.googleusercontent.com/-5pNkp7LAH0k/AAAAAAAAAAI/AAAAAAAAAAA/sMb3AFWqkEQ/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',1080),('AIe9_BG6xadHFAZSK79zWz9bVMwyjapVWkbl5qDPONz2K6L23gPv5Q2aKB7z1QHX_GWtpwuKrCPmNWzBPg9aQnvFpsgPOv631SAbLA9d6NDkhwN8yLO5Ws0','Service was efficient and attentive. I saw Dr. Nguyen, Jacob, and Morgan. Keep in mind that it is an emergency room, not an urgent care. The receptionist, Kendra, very kindly worked with me on the co-pay.','2020-01-28 15:22:39.560000','2020-01-28 15:22:39.560000',5,'NIa Wilson','https://lh4.googleusercontent.com/-Jg5wlxe5Urg/AAAAAAAAAAI/AAAAAAAAAAA/tt1OxGixVG4/c-rp-mo-br100/photo.jpg','16590124370714063921',10213),('AIe9_BG6xadHFAZSK79zWz9bVMwyJM_UioFTKbBH3h2X_NH8kGa_vKuwMoY43ugqVjSxlKxMRXqdxfL5dTPSQRdMjmtZU5KjdeBEq-A03Vj4oeHeuAoCpDg','Phenomenal service by a genuinely caring staff. I didn\'t wait, was taken to my comfortable room and given a bottled water and warm blanket. The physician came in and introduced himself. X-rays were taken, and I was given a pair of crutches for no additional fee. They even called to check on me the next day! SignatureCare is the best Urgent Care Facility I\'ve ever had the \"pleasure\" of experiencing.','2019-10-06 00:42:03.381000','2019-10-06 00:42:03.381000',5,'Trisha Barron','https://lh4.googleusercontent.com/-N9mwiI_EEFc/AAAAAAAAAAI/AAAAAAAAAAA/BkAG6orrRBU/c-rp-mo-br100/photo.jpg','16590124370714063921',3154),('AIe9_BG6xadHFAZSK79zWz9bVMwyjztNIid71dfQYBv5hDdrESTNNc8QprTagzLZ34mBvqjyyKf25cmRBtSXB3AZQ_hCXKXIOv57UAUIwIlvRmZPrwaEAwI','Excellent service. Traveling from out of town on business. Decided to come in extremely early in the morning to help with some pain and potential medical issues. The staff was incredibly friendly. The Dr decided to run a few tests and give me the results needed to continue on with my day. Thank you for the service. Nobody wants to ever go through this while traveling but the people made a rough morning into a great day. Thank you.','2020-02-20 12:59:40.216000','2020-02-20 12:59:40.216000',5,'Brad Zafris','https://lh6.googleusercontent.com/-GtYQvKa76IQ/AAAAAAAAAAI/AAAAAAAAAAA/IW5aqlfni_E/c-rp-mo-br100/photo.jpg','16891069708558046635',13939),('AIe9_BG6xadHFAZSK79zWz9bVMwyKzplNbRwVWbjchkmyq6pzFXiDTh_iKOBkurakuiK92NY2kAcLl1pm5BZazIgoPZHU_tfs6-nC3gJZVmuX9YGrnexwVs','Had a pleasant covid testing experience if that is possible. Fast and friendly staff.','2020-07-21 01:26:50.893000','2020-07-21 01:26:50.893000',5,'Micah Tannery','https://lh6.googleusercontent.com/-N-JCtPHht1g/AAAAAAAAAAI/AAAAAAAAAAA/vx21968f_OQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21657),('AIe9_BG6xadHFAZSK79zWz9bVMwyljvexJzplbIqnMouhmy9cVhLAAi3aKomEE-Af7euWIig8SJoOAMRaxjAP7yn7t30zGccxOZY4dp16iA67I__p7O9_9Q','Came in after a car accident. The whole staff was very attentive and friendly, and validated my concerns. Rebecca at registration made check in very easy and quick. The tech (Patrick) and RN (Gabe) were very efficient and made me feel very comfortable. Stephanie, the radiology tech, was so nice and funny, helping distract from the pain! Dr. Bare was able to see me with results in a timely manner. The place runs very smoothly and I would recommend the care here to anyone!','2019-09-15 05:29:07.255000','2019-09-15 05:29:07.255000',5,'Lindsay Harris','https://lh6.googleusercontent.com/-3TfSLdjDjqc/AAAAAAAAAAI/AAAAAAAAAAA/lOPLkmlCO30/c-rp-mo-br100/photo.jpg','16590124370714063921',3210),('AIe9_BG6xadHFAZSK79zWz9bVMwynUDBqWZQnTHVlWvdGzzzDE3VPzjiJ5cU5U90lcYavANlOL5t4b-irRDJ9KK0tYU8y3ou5XP2-d_BouzDNhPzuesDmuY','So grateful they were open on Thanskgiving. Also the facility is so nice. We were impressed. If we do need to come again, I\'ll chose this facility!','2018-11-22 19:04:07.784000','2018-11-22 19:04:07.784000',5,'Jacqueline Arévalo','https://lh6.googleusercontent.com/-dX50yZ_qbro/AAAAAAAAAAI/AAAAAAAAAAA/m2BcyQvvq9g/c-rp-mo-br100/photo.jpg','3511292162159714121',7554),('AIe9_BG6xadHFAZSK79zWz9bVMwyoP6zij6yj7jQY7kdfCvgbeXmnyuftkL4aPkID5w3lOsdAbxmLUm-m-Kuz1R8BXHG3uwIXqKvX64eJNU9eysaGrPG8HU','When we arrived Tanisha Tanisha greeted us with an upbeat and attentive tone! Fatima the radiologist also received us with a polite tone! Nurse Jennifer came in with the tech Elaine. they were both warm and gentle! Dr. Thomas also was attentive and showed needed concern.','2020-02-12 10:47:14.830000','2020-02-12 10:47:14.830000',5,'Velmeta Carlis','https://lh3.googleusercontent.com/-84XAmEqIMmw/AAAAAAAAAAI/AAAAAAAAAAA/Z6JqG3io4Lo/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',14174),('AIe9_BG6xadHFAZSK79zWz9bVMwyRg4XtzbUwLBZaXjIALDAa9bdmf536RAFIziyE6t4ZG3aC6RTnnWmwUSrZ5D9lG_lhvT82bBPmmRqdKB-e8Ffm3Wvc-U','Dr Ortiz Sarah g Fatima b tanishia w thank you for great service','2020-02-27 01:43:42.089000','2020-02-27 01:43:42.089000',5,'Mekiena Dean','https://lh3.googleusercontent.com/-b8qOsk3Wz0g/AAAAAAAAAAI/AAAAAAAAAAA/fgajqRDZx9M/c-rp-mo-br100/photo.jpg','17898197009688164559',14124),('AIe9_BG84YPnR8vhxeJfV_lAYVNi_-Ie6rtxrGVctXvQbIiQ5lQHs2J9sk-AOczDHiAApLy5IKaJGm4YrUKKC5W-U8vkSE9JOnqR5gon9EcDcb2Ylssqs3A','I don\'t know where to begin. When you first walk in your greeted with a warm welcome. I\'ve been experiencing really bad allergies this season. So my eye was bothering me so I decided to go to signaturecare Emergency Center. I visited the Stafford location with my daughter on Saturday I immediately gave my information and began to fill out a form or two. my daughter went over to the children\'s area and then she went to go watch television. I was called back within 7 minutes and so the doctor did take a look at my eyes give me an eye drop and then looks in my eyes with the machine with a little light. I was told that I had pink eye and I was written a prescription because of my insurance I had no co-pay or out-of-pocket expense. Upon leaving my daughter was given a bear a Gatorade chapstick hand sanitizer oh, and I also got hand sanitizer in chapstick as well. Overall it was a great experience because I\'ve come here before I know how my pain is going to be treated and managed. I\'ve also come here prior to me having my own insurance and the prices were not too much. Because of the treatment and experience all of the things that you get when you come in. this however was my first time coming with my daughter and now she asked me all the time Mommy can we go back to your doctor because she wants to get all of these thing she also got a lot of stickers before we walked out she got more stickers and she actually gets when she goes to the doctor. Long long long story short I said all this to say I would definitely recommend my friends family co-workers Associates enemies everyone to signaturecare emergency rooms.','2019-03-26 12:41:36.310000','2019-03-26 12:41:36.310000',5,'Rachel Gaither','https://lh3.googleusercontent.com/-iDigI2glPnU/AAAAAAAAAAI/AAAAAAAAAAA/iZNCxAGao0k/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9151),('AIe9_BG84YPnR8vhxeJfV_lAYVNi_ADTQuqC2pWn6fwUArkWA1DXhdfsGQraSpdC0bQW4OjGHKdys5GPsr6PK4tWB33wvKQXJwaUutGthanSR7NqChVSxFk','I sliced my finger open on some metal. I was so upset and frustrated. I walked in and Erica greeted me. I told her my story and she was so nice and welcoming she gave me all the info I needed. She was the best. Dr. Bill was wonderful, he talked to me about what was going to happen and was so helpful. Regina bandaged me up and was so nice. My experience wAs great. I was in and out within the hour. Thank you again I will recommend Signature Care to all my friends.','2019-06-17 23:03:32.031000','2019-06-17 23:03:32.031000',5,'Brianna Ojeda','https://lh4.googleusercontent.com/-F53YeKozXhM/AAAAAAAAAAI/AAAAAAAAAAA/gCt30u-QG24/c-rp-mo-br100/photo.jpg','14567670160750071148',1297),('AIe9_BG84YPnR8vhxeJfV_lAYVNi_CLVZWNs-K82FQeUarLfNxEbqVGH7LvXmLG85IyaaES5yxI9OyoJ2GDWtoumfrVMsxSP_fOSR5tCKzGHltAf_x77Dpg','Staff was friendly and caring and everything was done in a timely manner. Thank you so much for taking care of me!','2018-10-14 00:08:45.110000','2018-10-14 00:08:45.110000',5,'Tracy Q','https://lh4.googleusercontent.com/-jBihFG513bo/AAAAAAAAAAI/AAAAAAAAAAA/MmADmql__OE/c-rp-mo-br100/photo.jpg','14567670160750071148',1471),('AIe9_BG84YPnR8vhxeJfV_lAYVNi_NQCoVN5tnweF3B6TG_0UtuEgMENhVNeCnEEZoOh3IcXTJNbqhvM6E9Qyj_wsWAE4dIw7YbbL3uDDfF_Dw_yRFM04GI','Awesome Staff and very helpful!','2017-06-25 16:37:09.323000','2017-06-25 16:37:09.323000',5,'Paulina Gonzalez','https://lh3.googleusercontent.com/-TqCSwqYCVhw/AAAAAAAAAAI/AAAAAAAAAAA/KIkgRVljtaE/c-rp-mo-br100/photo.jpg','17394740196501090048',5028),('AIe9_BG84YPnR8vhxeJfV_lAYVNi_RWE7RVrAVwuNMmNI5kJ83MXyxHhON4JtYPMo4-sqI8qc3ZPiZPnId9vPNNaaUZ6SPz_tHBoAbhQ57G0Txka6Ts4GFs',NULL,'2019-09-10 00:28:27.811000','2019-09-10 00:28:27.811000',5,'JaNess Strickland','https://lh6.googleusercontent.com/-SQmkgpXxqNg/AAAAAAAAAAI/AAAAAAAAAAA/jlx_Ldntx2M/c-rp-mo-br100/photo.jpg','17898197009688164559',5553),('AIe9_BG84YPnR8vhxeJfV_lAYVNi_XV83BOPKYV7ZmCzwT8z9aicJpEapD1lYvSlsfP1YORRzku4yLWdKW0lK1KAA2YYAWdBsCKHyytVot1VuE-IVpZlJzQ','do not wast you 10$. they we scheduled too many people in the same time.\ni had an appointment at 6 . made me wait outside more then 30 minutes. could not handle the heat was 108 F degree outside. dont wast your $10 dollar my friends','2020-07-19 01:25:08.512000','2020-07-19 01:25:08.512000',1,'muzamal ibrahim','https://lh4.googleusercontent.com/-bP7sWt8flq4/AAAAAAAAAAI/AAAAAAAAFKc/AMZuucmdccuZEifjd5f7vqxCMJkjkgDYoQ/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22161),('AIe9_BG84YPnR8vhxeJfV_lAYVNi-BWQKVecyClhnnfWGVmRgdfZO7DxjYPpiGa0ihg12otrwfeU3T0CXr-kHBkZtzXQ8IdUHngEXNbQFGeqvSzp4Qorkso','Nurse Lisa v was very freindly and the rest of the staff was nice and professional.','2019-06-06 15:59:20.658000','2019-06-06 15:59:20.658000',5,'ben pena','https://lh5.googleusercontent.com/-LeP5nmT5JXo/AAAAAAAAAAI/AAAAAAAAAAA/88zJftoqGQ4/c-rp-mo-br100/photo.jpg','6521947413723274945',8250),('AIe9_BG84YPnR8vhxeJfV_lAYVNi-LQfHY4vGOfQ15hvhEaV9AF699S_EZLKFIlaONRXGP31Ip9gqIUwSr8fU97MLXylDGUZKPeb4R5r5xMrXLPHqNAscKk','I came in with a pretty severely broken left hand on the 8th. My 2 year old was fussy and we both looked like total messes. The nurses and doctor who I saw were kind patient and went out of their way to help me with my son. Overall great experience. Will be going here again in emergency situations. 10 out 9f 10 recommend','2019-03-18 01:50:12.070000','2019-03-18 01:50:12.070000',5,'Felicia F.','https://lh4.googleusercontent.com/-47IYhBpSHKg/AAAAAAAAAAI/AAAAAAAAAAA/fqtrXKuBZC8/c-rp-mo-br100/photo.jpg','16590124370714063921',3500),('AIe9_BG84YPnR8vhxeJfV_lAYVNi00kuo_2A6Q-UeUSetGQgalsKc9rLNSVOhJay9Qdg2Yf0UpU61IEz-sSlo3n_bSacacOwAvkj-1PEK5oIKlmWp7pAUO0',NULL,'2019-04-07 20:29:45.172000','2019-04-07 20:29:45.172000',5,'Sarah Caton','https://lh6.googleusercontent.com/-e015bRayBBw/AAAAAAAAAAI/AAAAAAAAAAA/chHc9-GSYBU/c-rp-mo-br100/photo.jpg','16590124370714063921',3439),('AIe9_BG84YPnR8vhxeJfV_lAYVNi09_5RQZ386CyOKXiORQnrcU6DUefYFYKTLpZuUQ70_0JHsH7M-Y0c6ATJyqa6IuJ1VjdmCpS9bEqyqXDqKEqhMRSLIE','I chose this place because all the good reviews and the whole experience makes say they\'re right! Every person that I had contact with, starting from the security guy in the parking lot, to the doctor, nurses, tech and receptionist. So polite, makes you feel better before they even diagnosed me. I absolutely recommend this place! 💖💖🙏🏼🙏🏼👌👌👏🏼👏🏼','2017-02-11 02:33:02.735000','2017-02-11 02:33:02.735000',5,'NOEMI PERLA','https://lh4.googleusercontent.com/-z-Qa_pCwGUU/AAAAAAAAAAI/AAAAAAAAAAA/ZORn0dNK21Y/c-rp-mo-br100/photo.jpg','14567670160750071148',1889),('AIe9_BG84YPnR8vhxeJfV_lAYVNi0hpm3aoaI5Ccz9LB3ASDLLtwXb2aDYF_pbrWk8dBfXjZnq99BAs56WEqdNP1lW27ak-6D4lTR1Qd9OAkR1b-XonWFr0','One of the best healthcare facilities I have been to. Just a wonderful experience with the staff and was quickly settled into a room. I was greeted by Edward at the front desk who was super nice. The nurses, Karen and Gabriel, took great care of me while I was being treated in my room and Dr. Rose was kind and thorough with treating me. Dr. Rose made sure I understood the procedures that they were going to do. I also had the easiest X-ray procedure done by Eric who made the whole process as comfortable as possible. \n\nA big thank you to the staff for taking great care of me and who made sure I was comfortable with a warm blanket! Definitely a family-friendly facility with health care professionals who prioritize your health and comfort.','2019-09-21 20:47:29.210000','2019-09-21 20:47:29.210000',5,'Ruchie Palencia','https://lh4.googleusercontent.com/-EK2adi7_RIw/AAAAAAAAAAI/AAAAAAAAAAA/lUWaoMgBWoU/c-rp-mo-br100/photo.jpg','16891069708558046635',4200),('AIe9_BG84YPnR8vhxeJfV_lAYVNi0kK4XJcID8qDwsUDYVlxecYEjoGRr7cnyb2i2IEbtgbX22sX5OpykVq311EUxhq3tElY5644BcZMRgzX_4Q3IaJo7ks','I had a misunderstanding with my bill from SignatureCare Emergency Center about a week ago, and after posting a note about it I received two calls (one from the medical director) explaining my charges thoroughly. I was more than happy with the end result, and I felt like they were up front and honest the whole way through.\n\nI wasn\'t expecting any follow-up, so it\'s sure nice to see that this is a place that not only offers great quality medical services, but also outstanding customer service on the back end stuff like billing.\n\nI will definitely be using SignatureCare Emergency Center in the future, and I highly recommend others to as well.','2019-02-04 21:56:15.284000','2019-02-04 21:56:15.284000',5,'Fraser Wayne','https://lh3.googleusercontent.com/-5ToOcX7hMZE/AAAAAAAAAAI/AAAAAAAAAAA/HMt_brlJjXs/c-rp-mo-br100/photo.jpg','3511292162159714121',7412),('AIe9_BG84YPnR8vhxeJfV_lAYVNi0TB_XOn8VnpJn-sSB9sD4dtImYSzKZiaHB-aFOHfw11sO9KS4QoiqaDQA80_H9p1miAWtFyFeTSC9_c4Y2kP-VWJjiA','Fantastic! Came in for a covid test and was well taken care of! Highly reccomend!','2020-07-24 07:59:58.851000','2020-07-24 07:59:58.851000',5,'David Wagner','https://lh3.googleusercontent.com/-ADE9m_jCh9w/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclzRKHpEOo3wYIQbMoORQOiRJ-M7A/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22155),('AIe9_BG84YPnR8vhxeJfV_lAYVNi0vsy3cs0N9TeifXrHpA02aSiWLJTpJY0_7ORr3NDj6OB3EfUgUsiOIOI2aIFI65jL06-oj8CEMSSirrj4t_tyDwz-uQ','Dr Souman, Sarah, Fatima, Elaine, and Tanishia were so helpful and they were very good at explaining everything I loved it','2020-02-07 03:31:37.917000','2020-02-07 03:31:37.917000',5,'Gisela Avila','https://lh3.googleusercontent.com/-1MaB0TmLAY8/AAAAAAAAAAI/AAAAAAAAAAA/FI0orLbzijg/c-rp-mo-br100/photo.jpg','17898197009688164559',22706),('AIe9_BG84YPnR8vhxeJfV_lAYVNi18rxIb-nTasnUO0m7BtVIgkJIkWORNfRa9pIN1jWrdo0NPaYGSW_zJb5TKJglWzxN1sG-BYtsaYdtFE-_XR7nT4bAQQ',NULL,'2016-12-19 12:06:23.134000','2016-12-19 12:06:23.134000',5,'CLamb','https://lh4.googleusercontent.com/-aYkuYMieO5g/AAAAAAAAAAI/AAAAAAAAAAA/T8ifBvXdMYQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7915),('AIe9_BG84YPnR8vhxeJfV_lAYVNi1eGGXkPGm6-Xvg5uKsYpNCXPiIsakYLmCNO6XyqrYJJSQ1R47T1zJu8BAR33AUWozJArw-fcsBOx8q843UnGEiGXj3E','very friendly and knowledgeable staff...','2016-04-13 03:39:21.880000','2016-04-13 03:39:21.880000',5,'Lionel Tomlin','https://lh3.googleusercontent.com/-ZgtveyJTCJw/AAAAAAAAAAI/AAAAAAAAAAA/-haLV01gayw/c-rp-mo-br100/photo.jpg','17394740196501090048',5266),('AIe9_BG84YPnR8vhxeJfV_lAYVNi1HPxzUD7mllWWW8ZtCD2jC7wBpmcGgKeTBxwR3MA1yhxUiX33Bo4fd0-TCF3Mj-9dYThkA_TnrTB5-YBuu91gRbVKYM','Marcus and Jordan have great bedside manner. Jocelyn and Alvean were nice. Dr. Erica was very patient and understanding. She\'s great at explaining everything.','2020-02-26 15:35:58.800000','2020-02-26 15:35:58.800000',5,'Raechelle Steward','https://lh4.googleusercontent.com/-8XXRMatOtws/AAAAAAAAAAI/AAAAAAAAAAA/BqONPZdr_s8/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',13762),('AIe9_BG84YPnR8vhxeJfV_lAYVNi1jeWQ3pUCRZldT-OfE8C4XXQAQ4bU2AB6EKIzA3mkaYkXFTqe5Tx5Yw1MntuJ9aDrEmHekwCv-yah_r4Jl-AHGbSdlY','Very good service definitely would recommend attending is very fast and overall nice staff!','2020-08-01 19:05:07.752000','2020-08-01 19:05:07.752000',5,'heidy velasquez','https://lh6.googleusercontent.com/-ita9Bih8SpU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn8oOmYcHsfYcownvNKFyHxS4hxgw/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22365),('AIe9_BG84YPnR8vhxeJfV_lAYVNi1JNWxig36mFU54CXVSoY8_Yfbm-1ksRcxQcM7UhsvKfieNxB1s53FoNzC3fExzNlm2Ga1u202Hmo5Zx72JUOCQmnROU','Superb visit. This is where you go for emergency. Excellent, fresh facility. Super kids friendly, which makes things far easier. Quick, knowledgeable doctors. Super positive experience. Thank you!','2017-04-03 16:30:30.438000','2017-04-03 16:30:30.438000',5,'Dmitri C','https://lh6.googleusercontent.com/-pNKN_VmM3Tg/AAAAAAAAAAI/AAAAAAAAAAA/hrclyoI5kO8/c-rp-mo-br100/photo.jpg','14567670160750071148',1859),('AIe9_BG84YPnR8vhxeJfV_lAYVNi1lbYjBZZ4D0SOYBusMc1OApwUx1FuvjXzlc_EHoOxJySBdzCSudxC3my_DFeasbX-L-OkNlfKZwhk6f2Gh2_vop52Tk','The visit was prompt and professionally handled. They were attentive to my needs and approached them as needed. I would recommend this urgent care to anyone in emergency need of medical service. Thanks again to the Dr and Staff.','2018-02-17 15:40:08.820000','2018-02-17 15:40:08.820000',5,'Shantel Mitchell','https://lh3.googleusercontent.com/-xndImo_4jN0/AAAAAAAAAAI/AAAAAAAAAAA/yIhDs8J2T5k/c-rp-mo-br100/photo.jpg','17394740196501090048',4880),('AIe9_BG84YPnR8vhxeJfV_lAYVNi1ySosPpFsUYlBK5C2KNdrX9_GR44GWOghfarWUyrJ_IGbJ1aj7-CVy3CzxqKsm8gy8COtqqHKEztcJZx2WUaD9Lrz98','Excellent care and service. I could not have asked for nor received better care. At one point when I told them my pain was escalating, I was given a pain med within seconds. I felt like they really do care.','2018-10-13 22:09:51.288000','2018-10-13 22:09:51.288000',5,'Johnny Trlica','https://lh6.googleusercontent.com/-g_HFzKORvbo/AAAAAAAAAAI/AAAAAAAAAAA/sKY0X2-6nYw/c-rp-mo-br100/photo.jpg','3511292162159714121',7572),('AIe9_BG84YPnR8vhxeJfV_lAYVNi2Dbteeoorzl5D-yDW7MItSzBrtmGwE-6Bl3G4u8Gwj-9M3ZFueNrqQY6oxMUXJBEd83yxquIcBuXYTPc2_SDqL2iBD8','Have brought my son here a few times already and each time the service is wonderful! From Genesis at the front to Pam, Alan, and Dr Ding in the back. In and out in under an hour with exceptional care!\n\n1/7/19\nBack again and still same level of care! Brenda and Kelsey took such good care of my son and my family.','2019-01-07 16:09:52.194000','2019-01-07 16:09:52.194000',5,'staci mikeska','https://lh5.googleusercontent.com/-0Zjm9qXrmHs/AAAAAAAAAAI/AAAAAAAAAAA/FMdYNdmeDdo/c-rp-mo-br100/photo.jpg','8918455867446117794',9199),('AIe9_BG84YPnR8vhxeJfV_lAYVNi2dH_3w374BwaMzSZZJJPjnqzu8Tk95lXsa0dEouSZn14JqgWtGMmY83ulqClAWKlhEEJAozpWOtrBxFT3pIGG8GFa4U','Norma, Stephanie, and Dee and Doctor Grinblatas gave great service, very personable, was quick and well explained.','2018-09-24 15:50:44.965000','2018-09-24 15:50:44.965000',5,'Sophia Lugo','https://lh4.googleusercontent.com/-Gjaxahlt-rk/AAAAAAAAAAI/AAAAAAAAAAA/yllzFtxDSx0/c-rp-mo-br100/photo.jpg','3511292162159714121',7585),('AIe9_BG84YPnR8vhxeJfV_lAYVNi2E-bdxVnJI7-Z1YkaSJClQU1sgQdzvWhI8XgZHKd-8lPM4iYlZI5tryXUGJcKTIaTCbNCQZ12CREnDuY3S-8yuocGas','Super clean! Super fast! Love this place Dr. Henderson is amazing the nurse and er tech are amazing too.','2019-12-31 04:53:12.482000','2019-12-31 03:59:48.337000',5,'Ana Salmeron','https://lh6.googleusercontent.com/-hkYSd1SG6dY/AAAAAAAAAAI/AAAAAAAAAAA/2gkdU41qKDM/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5314),('AIe9_BG84YPnR8vhxeJfV_lAYVNi2IF-JVlVCPeGVz4l20gp1yghVvoxBBvKjeQxFfWrx41UMrv9KaixIOOCmVjeQHoUWrCc0LyZx_9JOKNf-L2iFel3e74',NULL,'2020-02-05 19:13:17.671000','2020-02-05 19:13:17.671000',5,'Byron Culton','https://lh4.googleusercontent.com/-POSJb28cKq0/AAAAAAAAAAI/AAAAAAAAAAA/cAO_kL6SpPE/c-rp-mo-br100/photo.jpg','16389487648212004696',22628),('AIe9_BG84YPnR8vhxeJfV_lAYVNi2JiUoecF2JAOs6ja6-yFPVj_VdqYFSDYoSu5PrmJVkGNPY6WRYt9Z2kgq0RU6mKtv3mmKEr2a33FcfJL-0UVKTJKhS8','Thank You, Anthony rn ,Natalie -tech , Dr. Akunyili, Kathleen X-ray and Dyualiz-reg','2019-03-19 01:12:42.006000','2019-03-19 01:12:42.006000',5,'felicia mack','https://lh4.googleusercontent.com/-H0HqV1SRKpU/AAAAAAAAAAI/AAAAAAAAAAA/mFffHeMk044/c-rp-mo-br100/photo.jpg','16590124370714063921',3497),('AIe9_BG84YPnR8vhxeJfV_lAYVNi2S8GiAPaaakWuFGBeCaimnqv47bBOnH0bDOKoj26GnK2wQm0PBBbB_xVZyGGwRAGSU-dWKQWZTLEDnEYBQidRe9A3BQ','There were great! I arrived and was seen within 5 minutes. Aileen was very welcoming at the front desk and I was taken back by Chris very quickly. Adam very quickly got through my medical information and was very comfortable about those weird questions. I highly recommend Dr. Elsbecker. He was very informative and efficient. I hope I don’t have to come back, but if necessary I will most definitely come back here!','2020-02-19 22:37:43.211000','2020-02-19 22:37:43.211000',5,'Hayley Fojtik','https://lh4.googleusercontent.com/-wIyj5ghPOOc/AAAAAAAAAAI/AAAAAAAAAAA/jlBj9rxkSIU/c-rp-mo-br100/photo.jpg','16891069708558046635',13942),('AIe9_BG84YPnR8vhxeJfV_lAYVNi2wDxV5ppFZmzXCM6rhICYowOjfv8knpviqMoUUYG5RgII7lqemRsmo9lROryTjaFbRN16VaDNZNC2j-xV_pGpLnFJv4','Rayven was very nice to me and got me in and out','2018-12-25 16:35:46.414000','2018-12-25 02:42:25.622000',5,'Zanae Ford','https://lh6.googleusercontent.com/-hX3xqW-m1YU/AAAAAAAAAAI/AAAAAAAAAAA/8Psi0lHJZ0g/c-rp-mo-br100/photo.jpg','16590124370714063921',3602),('AIe9_BG84YPnR8vhxeJfV_lAYVNi2y9MF8mNBfg27UrZE-yzl1KvbWMX5jy7LiwKdkD9C-EkiyUIfNMkLFin5ZQF4uIJ-_zJTh57OT8zFUD9N1V7PGp6HGA','If I could give them 10 stars, I would. Everyone was so kind and helpful the entire time I was there. This staff is amazing!','2019-08-27 13:51:29.987000','2019-08-27 13:51:29.987000',5,'Kelsie Garvick','https://lh5.googleusercontent.com/-hq-pmnKSJLI/AAAAAAAAAAI/AAAAAAAAAAA/3ltA500AwmQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4212),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3_6SDiyY6I-Gr-a1obCNQaHByhPRxr4E4SZ0yHeSDsU-ClSYwo3kHyYnjO9nAh8gm0Xnh6H4MxvBz-wjQj9Le0L_ykY','I don\'t normally give er clinics reviews. But this one was outstanding. Attended to by a real physician not just off duty PA or nurse. Spent real time getting to the bottom of the symptoms. Unusually kind staff. Excellent clinic. I recommend this place for sure.','2018-03-27 18:16:35.557000','2018-03-27 18:16:35.557000',5,'Kal Ways','https://lh3.googleusercontent.com/-L1MJTNzP0tA/AAAAAAAAAAI/AAAAAAAAAAA/h-PL7Qr_ZfE/c-rp-mo-br100/photo.jpg','16891069708558046635',4493),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3BC2rF9WHa10K5wOy3KjTTv80d5GZ52G2xSJ8HsAPDpY5gIdPjtvuv-S4Ofnu1G_MQPJ4UoqwHe4ID68z69tctcjykw','Best care ever by Lucas, Kim, Linda, and Sara.','2020-01-31 02:02:15.842000','2020-01-31 02:02:15.842000',5,'McKinley Richardson','https://lh5.googleusercontent.com/-PXR2IAmCqhI/AAAAAAAAAAI/AAAAAAAAAAA/nzy5ewIJiHw/c-rp-mo-br100/photo.jpg','3272657195432704501',10466),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3BNUwnq1QFjAc-3yCW1hVuIjrdQxcEK8Ype_vqwYcI5oP2mIA_WmFY4nDRzRTbX8IkdWnbCAZ05j8_WRvqxrsYni8TA','Really good service and the staff are really kind and helpful','2019-04-16 05:11:16.515000','2019-04-16 05:11:16.515000',5,'El operador Bravo','https://lh6.googleusercontent.com/-j27i1Fhwfyg/AAAAAAAAAAI/AAAAAAAAAAA/kAeMAEJXEGY/c-rp-mo-br100/photo.jpg','6521947413723274945',8289),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3dXpA2ssZlNR7XX9FmtedMBaz1WM9lwQGjGi3CJNr3Z37vRyPWr-W76tqokhHi6mCQ9zvH1XPp5MypU2AuMHucKWvxA','Amazing facility. Staff and doctor. Hayleigh s. Receptionist was so friendly. And welcoming. Rn hernandez was prompt and nice and doctor daniels was so informative. And security was very nice as well. Thank you so much for the great care of my husband.','2018-07-31 04:04:00.504000','2018-07-31 04:04:00.504000',5,'Megan Mullins','https://lh3.googleusercontent.com/-sVT_Z1dIzkw/AAAAAAAAAAI/AAAAAAAAAAA/kh9qBlGO9nU/c-rp-mo-br100/photo.jpg','14567670160750071148',1578),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3HJkLoUfSfXN0a-m7JO69GmzspoWvxc0SM48ZCDmdgW8BdGZaLW1UDOz4GbtUbbBFFduoTx3zSdtd7YF-tBqA_6hVt8',NULL,'2020-02-25 06:07:01.952000','2020-02-25 06:07:01.952000',5,'Sheanise McCardell','https://lh6.googleusercontent.com/-c8JARcD9E8E/AAAAAAAAAAI/AAAAAAAAAAA/1AoZ_0hf7So/c-rp-mo-br100/photo.jpg','14567670160750071148',13512),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3IKz3N1xkjQrU7LrbPuNGOxEySjhRj_0cnvzlm3Q6Tc4QpvKUONsCILK-508_bUbRDq7ysfNRdBTb00larjTOWLVw5o','Great service! Loved everyone there. Pam was so sweet and kind. Thanks!!!','2019-06-28 17:35:14.265000','2019-06-28 17:35:14.265000',5,'Nina Babcock','https://lh5.googleusercontent.com/-JdSMDz87m1A/AAAAAAAAAAI/AAAAAAAAAAA/XT7C8jJzhR8/c-rp-mo-br100/photo.jpg','8918455867446117794',9108),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3jZdj8b1JRAEGHnu1FlD3d54HSTB3Mw3HH2ydOThH9jw79MLtIORd5b6AoLHJt1nIIJ-J3oIoud-spbQnJW6ixdRh4A','Literally in & out in 15 minutes! They’re being extremely careful with Covid and everything was super clean! Staff is so nice!','2020-08-22 01:54:13.511000','2020-08-22 01:54:13.511000',5,'Ashley Dale','https://lh3.googleusercontent.com/a-/AOh14GhzK6yplIHyqjqUwX2VgvyyqW0G-3vCw-dl16BdYw=c0x00000000-cc-rp','2694018788013845459',22990),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3L2zfGC4eal7HTcm6t_dEMu6WfdlA8D0Ykdg1iSYl8vLhHJDRDZnVf3rRogiFu0r7XkDPhId1-_ga8t7wYJD2Wppp0k','Thank you for the excellent care of my little boy! I brought my 3y/o in with a high fever and productive cough in the middle of the night. All of the staff was very professional and thorough from Dr deWaal, Candace RN, Townsend Rad Tech to Delphino at the front desk. My son has never needed emergent care before and I was nervous on how he would do, when we got in the car he said \"Thank you for the fun day and letting me see my bones (chest x-ray).\" He was super glassy eyed and tired but I will take that as a win.','2018-11-19 12:20:41.475000','2018-11-19 12:20:41.475000',5,'Katie Kelly','https://lh3.googleusercontent.com/-oMWoejD2Vf4/AAAAAAAAAAI/AAAAAAAAAAA/tZoRZ8eXLn4/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4402),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3nibHHsvM6e_RP5vgiy_rYLVvy52vYwTkAdku8qgbBdn6l7k8kN2x-H9hkfo8JN50mDyTpbUMc4cSRXmgE4MHACBVMU','They have some of the nicest, kindest staff. They offered me a worm blanket once they called me back to my room. They made surebto answer any questions or concerns. They even offered me snacks. They tended to my medical needs in a timely manner. \nP.S. For anyone who is looking for a place to go when you don\'t have health insurance, this is a good place. One of the cheaper rates out all the health clinics I\'ve researched. Plus they kept in mind that I didn\'t have insurance and helped me save money.','2020-02-28 19:39:10.808000','2020-02-28 19:39:10.808000',5,'Brianna Fetzer','https://lh3.googleusercontent.com/-MrDJtZxsdvY/AAAAAAAAAAI/AAAAAAAAAAA/q4nKGK8wV6E/c-rp-mo-ba3-br100/photo.jpg','14748677429039074158',18859),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3PGx2AbBCA65qZqMwigUpdAqr3jF-DMgxsak81BgiwED8TNLL_VwbgB-xzw0HGrJ4szCC3EP_FCTKQ7OydGhY4LCBhM','Jennifer d nurse Erica and the tech Matt did a great quick job thank you','2019-11-09 15:11:05.071000','2019-11-09 15:11:05.071000',5,'Eric Wren','https://lh4.googleusercontent.com/-3Bcv5zqG6KQ/AAAAAAAAAAI/AAAAAAAAAAA/tKBba1bClLI/c-rp-mo-br100/photo.jpg','8626688543755174284',14661),('AIe9_BG84YPnR8vhxeJfV_lAYVNi3pwV7c3zC3RvbgKDGu-6Th2AvpbRx47q3GDmlyktXQuMLRcJSmHiDy28qb_1cxdfg2IvZ0LEBulsd5yrNfMEFw8EZrU','I was able to get to see the doctor in no time and got excellent and thorough diagnosis of my acute bronchitis and flu. A new facility and great staff. This is an ER and not an Urgent Care so make sure you know what the co-pay damage is going to be going in.','2016-03-25 00:32:51.911000','2016-03-25 00:32:51.911000',5,'Gordon Wingate','https://lh3.googleusercontent.com/-aLqf8wdU-MU/AAAAAAAAAAI/AAAAAAAAAAA/tFVPMhwRjso/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',2041),('AIe9_BG84YPnR8vhxeJfV_lAYVNi4_YSvr_RiGsGzn_A9zVoJyzxC6SEF38GF7utWhEYOiyHCol_dz_-YoptzCS9X91rnsL__U16LzGcwA6gamquaRcDpZU',NULL,'2019-10-22 21:06:46.413000','2019-10-22 21:06:46.413000',5,'Jorge Castellanos','https://lh6.googleusercontent.com/-Cd4TZxrRYvQ/AAAAAAAAAAI/AAAAAAAAAAA/wd_DW_o6_40/c-rp-mo-br100/photo.jpg','12541597562633926366',394),('AIe9_BG84YPnR8vhxeJfV_lAYVNi45dsy-Voi2yNoQrCiO1l4PlndZ2BQ2xEWJSlS53s7MT6MbWQfXv5hIu99-6wkGzQ4LJfUG2Xp2nyVe4lNYkdhQEvXnk','I love SignatureCare, this is the only emergency room I will go to. I went previously and loved it so as soon as I start feeling under the weather I didn’t look at any other ER except for this one. Natalie at the front desk was exceptional and friendly. The wait time was none existent! Joseph and Diem were friendly and helpful and Dr. Pham was very knowledgeable. He clearly explained the entire process. They took great care of me and I’m never going anywhere else!','2018-12-11 17:17:49.016000','2018-12-11 17:17:49.016000',5,'Kaylin Danielle','https://lh5.googleusercontent.com/-wDJZATQ8fTA/AAAAAAAAAAI/AAAAAAAAAAA/bEsAfJoWJEM/c-rp-mo-br100/photo.jpg','8679688254631342173',8894),('AIe9_BG84YPnR8vhxeJfV_lAYVNi4FSfcQWDJ8YfBmHEqkX2GRMfD17T6kxzoAhRvFRtLqWD1KgpxXEjO_PFDmlc-Tk2ym756IlVF92dy5u9KYFIRRxuRuc','The service is horrible. Had an appointment for 8pm wasn\'t seen till 1am , there isn\'t any reason to make an appointment online this location doesn\'t go by them you would do better to just walk in to be tested for covid. The other location do follow the online appointment schedule try them.','2020-07-04 06:51:19.335000','2020-07-04 06:51:19.335000',1,'John Bowie','https://lh5.googleusercontent.com/-aA-_B-plmMI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmO5gQGtRJoMqSTJ8SA-gwVWZlMvQ/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21405),('AIe9_BG84YPnR8vhxeJfV_lAYVNi4GxMs6darPSH6dNfKqk-ZKZl_Js5y4PGSdDmw0QU3JsSmZetd1q_-vr6Pjd0chrzuEfxqONURmvLetWd9Be_8BNFBEA','Dr and Robert were GREAT! Friendly, helpful and caring staff. I rate signature care #1 for any of your instant medical care. Yay signature care!','2018-09-22 00:08:49.247000','2018-09-22 00:08:49.247000',5,'Eric Henderson','https://lh4.googleusercontent.com/--ndtjsPZa1g/AAAAAAAAAAI/AAAAAAAAAAA/Gs0FKOY_aeo/c-rp-mo-br100/photo.jpg','8918455867446117794',9234),('AIe9_BG84YPnR8vhxeJfV_lAYVNi4JLzfpW8N91xmHdtqqRB7X2Zq2Lx1v0CXkcxGgWgz8ViLBgnf596VwIlFzMuPA7KRMmNELbqwKNB5uqkkrzH_Gg8EeI','SignatureCare was welcoming, professional, very fast, and definitely one of the best ER experiences I\'ve ever had. Kelli, Jacob, And Laura were helpful and efficient. Dr. Kimball was great too! I will come back anytime I need something and will tell all my friends and family to do the same. Plus, they\'re open 24 hours which is very convenient.','2017-10-11 21:07:06.051000','2017-10-11 21:07:06.051000',5,'Allyson Jones','https://lh3.googleusercontent.com/-XakPdmjCQdI/AAAAAAAAAAI/AAAAAAAAAAA/jsplTEUXfXU/c-rp-mo-br100/photo.jpg','16590124370714063921',3924),('AIe9_BG84YPnR8vhxeJfV_lAYVNi4KqeSgMr7gLqZPfFVtoPKMP9UpTdMEfOKVoYGdBdQFUczD8ON2hBjrTJ8tU7V8AHpwIfhrpLTlNWy4OSuW8PpbySWzI',NULL,'2019-09-03 07:28:03.650000','2019-09-03 07:28:03.650000',5,'Simply Beautiful Travels With Lecia','https://lh6.googleusercontent.com/-TorSv6j3r0g/AAAAAAAAAAI/AAAAAAAAAAA/1m8mHh_K7Pk/c-rp-mo-br100/photo.jpg','17394740196501090048',4609),('AIe9_BG84YPnR8vhxeJfV_lAYVNi4Q4FGQq7vdgvkK2OQg__Ix-2hBtzzF49AgVTJvDrJFp6dQFBFyebXTiL7qTY3TzVdNYpoAOQUb5O1NlUzehghfxdT7I','Staff at Montrose is amazing!! We were immediately greeted when we arrived at Montrose to transport a patient for further medical care and evaluation. We were offered snacks and drinks and felt right at home. Always a great experience at Montrose.\n\nThanks to Dr Yusuf, Nurses Hamzah and Gina, ER Tech Olivia, Radiology Tech Dion (the MAN), and Genesis from Registration.','2019-02-03 21:35:02.363000','2019-02-03 21:35:02.363000',5,'Gerry Prater','https://lh3.googleusercontent.com/-GHEP46KjTXY/AAAAAAAAAAI/AAAAAAAAAAA/a01zEelMmZE/c-rp-mo-br100/photo.jpg','3511292162159714121',7414),('AIe9_BG84YPnR8vhxeJfV_lAYVNi4SgS2nKZAlABHf41U_M6Ckfl-cnoixYTYDfcHe3FDLgPVGR-sU1OWOSDdQ9-SfYjz2GSJR1cNYPTrHEhi91VkqSRnGU',NULL,'2019-01-24 00:54:53.293000','2019-01-24 00:54:53.293000',5,'Carlton Jordan','https://lh5.googleusercontent.com/-gFzuafAwHCU/AAAAAAAAAAI/AAAAAAAAAAA/LJRK87yrtyY/c-rp-mo-br100/photo.jpg','3272657195432704501',7041),('AIe9_BG84YPnR8vhxeJfV_lAYVNi57WmFfhWG9quysBlXFJe3dfuVB5-NmMGDngPnLXnozsh8LYEP4A-BX6jyet3Obp__ecnitvfD2BXt299UxasWuhIiFg','The place was very nice, well built. Great Coffee/ Beverage Bar. Very family friendly. Great service. Quick with signing in and getting in to see the doctor.','2019-01-03 03:46:46.129000','2019-01-03 03:46:46.129000',3,'Ashley Allen','https://lh3.googleusercontent.com/-kszyMXZl448/AAAAAAAAAAI/AAAAAAAAAAA/CRQ8oROzJts/c-rp-mo-br100/photo.jpg','16590124370714063921',3598),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5ca833qzYBlVLWIxU-vHSuoeJ-QgFIufS6eAZenrdeW8fGxgAmJeJ3tBcBx8zBr_4gI8MOhqfpB-76zhe6Vff-bRIMw','Staff was so friendly and i literally had little to no wait. i was in and out and taken care of. Thank y\'all so much','2016-10-04 00:40:25.273000','2016-10-04 00:40:25.273000',5,'Sara Rivera','https://lh6.googleusercontent.com/-LDB4rCL43ow/AAAAAAAAAAI/AAAAAAAAAAA/aaG44nTiGBc/c-rp-mo-br100/photo.jpg','17394740196501090048',5192),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5CfrWxVtYfwFlte2R4-MKcPbcLfb9xsmyjvmxdfZ0YW6e3nHeva8ugWDl5aPnoyE7dkqekqLrcidYLCfBAK9uK3FBS4','Very fast , attentive service. Conveniently down the street from our house .. We only been here 30 min and they have done at least 4 test . recommend this facility Dr. faig, maya, and kristina were so helpful😊','2019-12-31 23:06:25.663000','2019-12-31 23:06:25.663000',5,'Claribeth Dominguez','https://lh6.googleusercontent.com/-86KMXeUHNp8/AAAAAAAAAAI/AAAAAAAAAAA/sWxzxe2SlqI/c-rp-mo-br100/photo.jpg','12541597562633926366',271),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5hhATksIyiSzavi4SauCx_DK081nOVGx2arkaA14H7IyhKw-2nW4oiC0d9jiHxdDQvd0M0SfUIdjAUpVVROAph2xSyw','They were all so nice and very attentive. I saw the doctor within 5 minutes of being there.','2019-07-28 17:53:12.662000','2019-07-28 17:53:12.662000',5,'Nicole Clements','https://lh6.googleusercontent.com/-J_QuyakaPXo/AAAAAAAAAAI/AAAAAAAAAAA/SP2Ba6lSqB0/c-rp-mo-br100/photo.jpg','16590124370714063921',3273),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5hUWBg8XKwdzr-ThigM17edc7AfDJHhqkckXe1nDvYH1tAPu58GkIMWyRAgxo73TC-_3CL-KIGhwlg-0ql_PMrQ9s4w','We had an excellent experience. Every time we come, we feel welcome. Sindy is a great help we hen filling out paperwork and very friendly. The entire staff was kind and professional. Dr. Boaster was very kind and will definitely come back for our urgent care.','2019-12-21 17:41:16.202000','2019-12-21 17:41:16.202000',5,'Alma Gomez','https://lh6.googleusercontent.com/-RFFtZz7SWmk/AAAAAAAAAAI/AAAAAAAAAAA/x4-yZXbPRl4/c-rp-mo-br100/photo.jpg','14567670160750071148',1171),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5nAAxm5MkrwzMfNaeIeGcI44_qz26oT9VGa2k_o6NYQhl-I8R_vi4ZefAYksRO7p9jBYytGlNwdcot4jKR85oy2sFe8','Amazing! The building was very clean and the staff was very friendly. I took my dad there for a deep cut on his finger I thought was going to require stitches. Dr. Bell was outstanding! He was very personable and honest about what he thought needed to be done. They were very upfront about the costs and our options. I absolutely recommend this center to anyone!','2017-06-30 21:22:50.358000','2017-06-30 21:22:50.358000',5,'Rebecca Sharpe','https://lh5.googleusercontent.com/-072tDJ815tg/AAAAAAAAAAI/AAAAAAAAAAA/6kiWVx9qccw/c-rp-mo-br100/photo.jpg','17898197009688164559',5937),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5qjCk-_1vkIUeH_NxB3LSWA0xHQQt9S_U4XdFYRtm-RN3GnHn6SUYH3FkqckQxR6u8ZspTG7RMAaIfz1AYOr0Y_xnqw','Dr Do ,Alvean , jocelyn Great service','2020-01-11 19:13:58.215000','2020-01-11 19:13:58.215000',5,'James Jackson','https://lh6.googleusercontent.com/-xMoFGIMpkIA/AAAAAAAAAAI/AAAAAAAAAAA/tV4m3Gh80rE/c-rp-mo-br100/photo.jpg','16389487648212004696',9483),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5Snex7zz6IIEENCndBxVFjJX0E51J83jviYrST9BLBbftN1Z2DC47cBz5CohRSt75q-9x_kW4ZMyoYqcShcRHT9igN4','Cody and Sam made my COVID testing go smoothly! I highly recommend this place if you need to get tested!','2020-08-18 16:27:05.262000','2020-08-18 16:27:05.262000',5,'Philip Hebert','https://lh3.googleusercontent.com/a-/AOh14GhI7Pd84HtjjOtR1IF3iaazh_byhXp5eLS3dRaxcw=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5SU7GowwyyR7U50RGTAXFGXbL8LEKYGRzeTlthem6oCOFWWs4Dzt41z6i8jEODkiqBQsFYLafNp3D-_KHpjO-Rn5Tg4','Absolutely amazing experience! Both my 8 year old and I have both been seen here and they were great! All Doctors nurses and staff are so nice and incredible! Dr. Chambers, Manny and Adriana were so great with my son! They make you feel very comfortable! Always great and fast care! Highly recommend! We will definitely be coming back for future care!','2019-05-09 17:04:21.240000','2019-05-09 17:04:21.240000',5,'Brittany Hodges','https://lh6.googleusercontent.com/-geoRwTZh8zU/AAAAAAAAAAI/AAAAAAAAAAA/x0fyfMoY90M/c-rp-mo-br100/photo.jpg','6521947413723274945',8283),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5Y6UYqVQBW_EOFlXnDdEwwYlKpaQ24Mt8XUBkP1cjLvTxMLt-lwv_F4zekRdNHMfTIqW_XBonsar38frkTEe5ndN9ek','The staff was nice and professional. They were able to consult with a specialist and I was seen that same day by a specialist for my issue.','2017-10-13 12:45:00.191000','2017-10-13 12:45:00.191000',5,'Frank Nduku','https://lh5.googleusercontent.com/-GGzFCb6F2B0/AAAAAAAAAAI/AAAAAAAAAAA/zM1gawnEpKE/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9347),('AIe9_BG84YPnR8vhxeJfV_lAYVNi5ZXa9-A9jt7w5G_-d3LPDa_K13Ae7c1UtOIXgV8ja8sIFQE_755HiCnVXvZACzMTT4DYw5wR-CvwNas8GYc6Ai-l8b4','Great service starting with Cindy at the front desk. Great staff! Very pleased from the beginning til the time of checkout','2019-06-15 03:40:27.149000','2019-06-15 03:40:27.149000',5,'Shely Hernandez','https://lh4.googleusercontent.com/-fX97uzs1d9g/AAAAAAAAAAI/AAAAAAAAAAA/Tax0TJVgOMs/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',4664),('AIe9_BG84YPnR8vhxeJfV_lAYVNi64kWt59rvStsnhGN_OKxDSdjNFeJ9pUKnFkXPr80DEkJ7KJIT5KnI049tDscnCBnfQBXapMHwMd_0ajSLFakzEt4fPk','Quick and friendly service. Addressed my issues and had me on my way and feeling better quickly. Thanks!!','2019-10-11 16:27:39.126000','2019-10-11 16:27:39.126000',5,'Richard Brown','https://lh4.googleusercontent.com/-KafLuVeRO5Q/AAAAAAAAAAI/AAAAAAAAAAA/_aMM8EU1iqc/c-rp-mo-br100/photo.jpg','14904078213800803294',13676),('AIe9_BG84YPnR8vhxeJfV_lAYVNi68LRTmSB4eeb_fwuduysojxRFPungBGhUINrVW-H02C_PGjPlXhZk4Vy8ykjJCnBG4V0-fOHrEvCOoCzl0VYxs1t3pU','Absolutely amazing!!! Dyveliz at the front desk was so sweet and easy to work with. She made sure I was aware of the payments and then actually was able to help me out A LOT!! Charles the paramedic who did my triage work was so great and he really got my mind off the pain! Kelly my nurse was very informative and made sure I didn\'t have any questions or concerns. I got a full folder of post care instructions and left happy! 0 wait time and barely any paperwork to fill out. 10/10 would recommend!!!!!','2017-03-04 01:55:24.770000','2017-03-04 01:55:24.770000',5,'Amelia Lee','https://lh5.googleusercontent.com/-xdc2dmTJ-pw/AAAAAAAAAAI/AAAAAAAAAAA/B3qJSVHfeJ8/c-rp-mo-br100/photo.jpg','16590124370714063921',4043),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6CzYXMuJyNXlYNhB4-g3qTiLbzxWZXLF2YYyJWZNAi73JKGuyOPVNmArzAOGE4tyfSGmX7NEYCgffnfvhHQ0D5CO6Rc','Went in today to get an X-Ray on my shoulder and everyone was very friendly and attentive. They took me in right away and explained everything to me. I was offered a warm blanket as I waited for my results. They were very quick too. I will be coming here now if I need something.','2018-05-17 17:24:20.101000','2018-05-17 17:24:20.101000',5,'Bibi H','https://lh3.googleusercontent.com/-CVbjxL3YAPw/AAAAAAAAAAI/AAAAAAAAAAA/PksU3QRVma0/c-rp-mo-br100/photo.jpg','8918455867446117794',9269),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6EmGbaCcAKjMnzILv-5keqVCwf3zRBJWSK2sPgXjF8XXlGiIQHc0iQ76sd9sLr56hKFI4ccQ_yLrvm9mUtT9OxMtFXc','Dr. Souman and Churiah made a scary situation much better and fast. We are so grateful for their care and attention. The clinic is immaculate and very comfortable. The entire staff was amazing! The ER techs Thuy and Eve were professional and friendly. Even if you don’t live in the neighborhood it’s worth the drive.','2020-02-27 17:41:25.675000','2020-02-27 17:41:25.675000',5,'Earth\'s Nectar','https://lh4.googleusercontent.com/-JzCCQF7iYEM/AAAAAAAAAAI/AAAAAAAAAAA/CJHdFCsIPT0/c-rp-mo-br100/photo.jpg','3511292162159714121',17370),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6gIM3pnyVyBJU3tKH8vOKHuIyHVgLizwHGEy-NHWTyrAALM0IPBmjBC5UmQOPNoVWxAESc1-gVIenRCNo3VEW14xgsc','I went here 4 weeks ago. I was seen by Dr. Burger. The meeting with him was quick probably under 10 minutes. I saw the bill yesterday. It was 1K. I should have went to an urgent care, for $150, I will be out of the door. This center process payments like a real emergency center which it shouldn\'t be. Rip off. You are warned. Go somewhere else!','2015-05-19 19:22:52.765000','2015-05-19 19:22:52.765000',1,'Miss Katy','https://lh3.googleusercontent.com/-WEsoBz0IY3c/AAAAAAAAAAI/AAAAAAAAAAA/Zk2qRi8acKU/c-rp-mo-br100/photo.jpg','8679688254631342173',8929),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6gwjDWFOMIWzdb3aSYm8US2WRoH5MiCdmIqzW7FNfye7E9aaSDXZG3Ur3uCrSXuvsp-WJ9cBF3C172p8A6MRDvOCiPk','Great service I was seen within 5 mins of walking in & all of the staff was very polite and helpful.','2018-07-06 15:33:33.454000','2018-07-06 15:33:33.454000',5,'Quincy Driver','https://lh4.googleusercontent.com/-1v3oyGgNjEg/AAAAAAAAAAI/AAAAAAAAAAA/EzYmWG8hv1k/c-rp-mo-br100/photo.jpg','3511292162159714121',7692),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6Ke5Q8vuwvyGsoX7Z9DmPMDoL59DoRSbrHDXLUz_6nVU9UQuug5zftrA5OV3T_gPkBuAM-Fp4ElW8dOP0UPflGonBfU',NULL,'2016-06-08 02:22:17.331000','2016-06-08 02:22:17.331000',5,'geri flenoy','https://lh6.googleusercontent.com/-BCLp0aUzzCk/AAAAAAAAAAI/AAAAAAAAAAA/VEadrdX5smM/c-rp-mo-br100/photo.jpg','3511292162159714121',7991),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6kq62OMFX0rRszDggE7qdgvMGEsY140mRQK1RzOj5MGQ80eywfx_D-NRP_huXA3P5AnY5VSXrqcU4z3K_Gnv-UTY60U','This was by far the BEST urgent care hands down! Tanishia is sooo personable and warm-welcoming! The entire visit went swiftly and expected. If you or anyone in the Copperfield area are in need of EXCELLENT (emphasis on excellent) this would definitely be the place to go! Kudos to Signature Care Copperfield, Dr Pham and the WHOLE ENTIRE staff!','2019-11-06 01:51:38.168000','2019-11-06 01:51:38.168000',5,'Pearl Diamond','https://lh3.googleusercontent.com/-Ee1PiHlZ1J4/AAAAAAAAAAI/AAAAAAAAAAA/V44LuKEjmvU/c-rp-mo-br100/photo.jpg','17898197009688164559',5465),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6KsCNzymZ5aQw3dclDgj-MGPRIEDlP63cNyePh3D5dNTkPwsGIFX1wmHgH26rpOcNRBIMI8VK2oWjAEIIhY6mzWM6Ok','My girlfriend had an injury to my left foot. The doctor and Nurses were helpful, kinda and quick! I recommend going here for anything you need!','2020-02-16 00:03:28.156000','2020-02-16 00:03:28.156000',5,'Justin Huerta','https://lh6.googleusercontent.com/-XSq4IdXQFDA/AAAAAAAAAAI/AAAAAAAAAAA/67H4NQvG8hw/c-rp-mo-br100/photo.jpg','17394740196501090048',14019),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6LLg5xumko_GUJCmL_XCCVyfXMletaOB6lmftFbYLt7lW8PQZN6Dd15SSsGM8FnA5pYz28hhYTJ5n0eBVk1iiD-V1UA','My husband and I went early for our scheduled Covid-19 test. We were extremely pleased with the way the facility was run and how professional the staff was. I highly recommend this location!','2020-07-10 14:17:21.810000','2020-07-10 14:17:21.810000',5,'Peggy H','https://lh6.googleusercontent.com/-JtKrM8cZRa4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclujieTK7XbvU0trRF0fyLrl-xqrQ/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22172),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6pB9cxO-0I1Tz07wDjUbF0kH-7QwlADPlMTWnDOv6iMzYrQ84pPoUj39IGVdMP6KzgMnxAoCl54lx9l1AVqvSetGgvs','We are very fortunate to have Signature Care Emergency Center right down the street from our house! Both Lisa & I have had to go recently. Dr. Alloju, Katrina, Cheney, Therisa, & the entire medical staff staff are awesome! This is a first class ER! I highly recommend them!','2019-12-27 14:54:25.845000','2019-12-27 14:54:25.845000',5,'Network In Action Southwest','https://lh5.googleusercontent.com/-zrgJ5N6w83k/AAAAAAAAAAI/AAAAAAAAAAA/gjz8T0nSeQo/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8670),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6RKQpx4bB2iTTAZIPh1Vkgx2-wLu1mNB1h51nrhwFTtSBGruV3gvx7o9O9WAuxmqKeSPrAhrJH9249eo8f_UMqKcJ2A',NULL,'2018-01-27 02:26:35.466000','2018-01-27 02:26:35.466000',5,'Mehgan Orsak','https://lh5.googleusercontent.com/-j3pXQ_HjYuo/AAAAAAAAAAI/AAAAAAAAAAA/cD0mlkKRH8g/c-rp-mo-br100/photo.jpg','16590124370714063921',3872),('AIe9_BG84YPnR8vhxeJfV_lAYVNi6xa-XOdMJkVhbaIc6cDCKM28tT_be1G1Hjz_T-nYMnc6CHFHE0KKWVmaCr-2KzE0yakxc92Ai0SANsdLJUJ6Y7N_w1k','Quick and very friendly!! Thank you so much Denise, nurse Sarah, and Dr. Chopra!!','2020-06-07 16:59:45.981000','2020-06-07 16:59:45.981000',5,'Alexandria Ramirez','https://lh3.googleusercontent.com/-a3Y9nI6NiFE/AAAAAAAAAAI/AAAAAAAAAAA/xwHBO3xJrAM/c-rp-mo-br100/photo.jpg','14748677429039074158',21771),('AIe9_BG84YPnR8vhxeJfV_lAYVNi7BQQZjtWFYm1Z61NaPru3XDUQCqdBRC5O5ElLhpaJ0fWI6DnLq2Wr7ZZer9x8xoqoZdV76DKoT8-VU2nQMkcrDZcC4s','Everyone was extremely nice and helpful. So much easier than waiting for your doctor to fit you in. In and out within 45 minutes and feeling better the next day!','2016-07-21 14:09:59.347000','2016-07-21 14:09:59.347000',5,'Laurie Clothier','https://lh4.googleusercontent.com/-Tb6zn0sYqyE/AAAAAAAAAAI/AAAAAAAAAAA/jLjftGckLNw/c-rp-mo-br100/photo.jpg','14567670160750071148',2003),('AIe9_BG84YPnR8vhxeJfV_lAYVNi7gByIRiE1rHV8uytyOmVwOI2kd2zN5WptFAIDUBz84JrGcjW9sYCajhNVV6tNNnsajQV6VrZlNatiaqIv3bfzf3BR9A','Their website said they offered walk-in Covid Testing. They don’t. I tried to call to make sure but wouldn’t pick up.. drove there and was told there time slots by reservation? And that I have to come before 8am to get a test that day. Update the website, now I have to drive around more and potentially expose more people because of an inaccurate website.','2020-06-26 23:09:17.960000','2020-06-26 23:09:17.960000',1,'Omar Shahin','https://lh5.googleusercontent.com/-JASu9IofTHM/AAAAAAAAAAI/AAAAAAAAAAA/mBect2gxmOo/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',21259),('AIe9_BG84YPnR8vhxeJfV_lAYVNi7gtHeObrk0Ieznyb-VSSRDQeRcCozY4bXo4TkFCyIfq-wJvhqjd7GBhhE9s5Jw2KaIP34dnrgKnmtdHocjKA6XsJOkc',NULL,'2019-12-13 03:28:00.364000','2019-12-13 03:28:00.364000',5,'Mal Dillard','https://lh5.googleusercontent.com/-P_EKYoR_L0I/AAAAAAAAAAI/AAAAAAAAAAA/msPSTfhoVL4/c-rp-mo-br100/photo.jpg','8626688543755174284',14654),('AIe9_BG84YPnR8vhxeJfV_lAYVNi7i8BmbkrwyYj4o_-Lss7OI4WITh3nV_O3tsd_1xX71sXEwNQTK14TEp9zyLg1gk1_cRH9kKjbq1zsgtMFcMBhOmhs8Y','Mercy and Blake were amazing great care since I walked in the door. Doctor was awesome as well. Thank y\'all so much for helping me with my earache. Great survive was provided when staying here checking up on me all night','2017-03-13 16:25:58.981000','2017-03-13 16:25:58.981000',5,'Nahomi Pereira','https://lh6.googleusercontent.com/-ft_PXgYEmas/AAAAAAAAAAI/AAAAAAAAAAA/tckt2spM0-s/c-rp-mo-br100/photo.jpg','14904078213800803294',2389),('AIe9_BG84YPnR8vhxeJfV_lAYVNi7LoXrwt7R6YS3vtcz9jsandMl9u3mIbowXTjrzYgxZJEpzqhgARZKR90ZSJe-1o625ZWViJz4J_D0yBtrBTOMjnS9FM','Excellent experience!','2018-01-02 17:49:28.731000','2018-01-02 17:49:28.731000',5,'William Bostic','https://lh5.googleusercontent.com/-10NOuDXprh0/AAAAAAAAAAI/AAAAAAAAAAA/RaokBBlShAk/c-rp-mo-br100/photo.jpg','8918455867446117794',9312),('AIe9_BG84YPnR8vhxeJfV_lAYVNi7lP_I-_0dW9RX-mOZ_unoKRKxiPwP3mjiF2VBwzYCcwJd0BOWQJop4i6GNekms0AWnzLjGCFhJxFdfkfm-Go_Y_A-nY','Jani. W Nurse\nTricia B Rad tech\nPatricia C Registration \nDerek P E R tech','2019-12-07 16:36:32.572000','2019-12-07 16:36:32.572000',5,'Tiffany Flakes','https://lh3.googleusercontent.com/-oaMPCdbli4M/AAAAAAAAAAI/AAAAAAAAAAA/0uhkbQpwrBM/c-rp-mo-br100/photo.jpg','16389487648212004696',2568),('AIe9_BG84YPnR8vhxeJfV_lAYVNi7VORqsnaDS0wIlcrq6B6pETMvvwrrJ8nz_6fmhNjg4T1lh7WpnRyqkp8fJtd6T2qpTVnczHSqY8E343Is9V994mhDPg','Signature Car me is great. Dr.Zhen had me in and out and out of pain in no time. The staff was very nice and Kristina helped me to feel comfortable even through the pain. Laura was also really fast with my X-ray results.','2020-01-24 22:12:12.112000','2020-01-24 22:12:12.112000',5,'Olivia Miles','https://lh6.googleusercontent.com/-k7mX5bJkUmY/AAAAAAAAAAI/AAAAAAAAAAA/LUY75GeSoAQ/c-rp-mo-br100/photo.jpg','12541597562633926366',10100),('AIe9_BG84YPnR8vhxeJfV_lAYVNi80guYlJh118rR3Kns2GVVWBr9SxmqBAD-QTsVTLpg2i3ClrAGHg5ttiB3j8YPPiC0uoL1Bnw0o3cIuuCwCfW8yO50mw','Great Emergency Care Center! Very helpful doctors, nurses and stuff!','2018-03-21 20:19:01.163000','2018-03-21 20:19:01.163000',5,'Florentia Kavoura','https://lh3.googleusercontent.com/-RwAzMjBKNa8/AAAAAAAAAAI/AAAAAAAAAAA/GVE5vG-tu3o/c-rp-mo-br100/photo.jpg','16891069708558046635',4494),('AIe9_BG84YPnR8vhxeJfV_lAYVNi81HZ2G988ZKRtE2FHgRtpHeWRBrBcl8x-ySbOLOqpd9_pT_w-AtSFWoR-NC1xhlPPaIO4ioDT6Irtb63ZWEGAS9xnAI','Jessica Montes- wonderful experience, great bedside service and was seen before I filled out my paperwork. Definitely recommend this location. Alvean and Marcus were the best','2020-01-29 17:44:49.690000','2020-01-29 17:44:49.690000',5,'Denise Contreras','https://lh5.googleusercontent.com/-SBTEIsM-D_4/AAAAAAAAAAI/AAAAAAAAAAA/OOuKUiHCMfo/c-rp-mo-br100/photo.jpg','16389487648212004696',10161),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8bfdKZRUR2B5h-oePxbvgqkz2lT64alj0PtcSbD05jisDCSFwLDoj07JI58LwC_KpJvFjsj4l0icJArV0ufi0QvzyVo','They are very nice and compassionate. They really care about their patients. I have been to other ers in the area that made me feel worse instead of better. I would recommend them. My only suggestion is that they need a call button for patients in the rooms.','2020-07-12 21:26:57.793000','2020-07-12 21:26:57.793000',4,'Emily Martinez','https://lh3.googleusercontent.com/a-/AOh14Gh1vgg54zLTvNS1OJOldxaSbNHd_Y6_tMvjXT0b=c0x00000000-cc-rp','2694018788013845459',21577),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8C3nUmvwMsZiY4UsIiWBigxMGNPD-tCbdiJlLqSWBqNjDZEsWg_BLgejgHy2cWeYzmaAJKH5zLGoyquS2K3ZeYAHLBc','WOW!!! Not going to lie I thought I was going to die before I got there and they calmed my nerves and Doctors are efficient and understanding. nurses are awesome especially Derrick (in think that is how you spell his name). Receptionist was just a awesome person and helpful. I walked out of there feeling like a million bucks. I highly recommend coming there for your emergence ailments. hopefully there will not be a next time but if there is im going there.','2017-11-14 18:02:07.386000','2017-11-14 18:02:07.386000',5,'Andrew R','https://lh6.googleusercontent.com/-NPb6NqofPwA/AAAAAAAAAAI/AAAAAAAAAAA/BG84SF-CReM/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1732),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8cno1u2WqsI_-e8Ioam0QqOjEzxLHABh7xl4bM7fhmpsfhPt3xdCRLkHMT1qCYwZCkus4bC5eZGpxn_DjL90yI-4ZRM',NULL,'2020-05-22 16:57:56.705000','2020-05-22 16:57:56.705000',5,'Sane Berant','https://lh5.googleusercontent.com/-umOJef77lc4/AAAAAAAAAAI/AAAAAAAAAAA/O8klOjwSpzE/c-rp-mo-br100/photo.jpg','8679688254631342173',21488),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8hfBDufKdARBV5d8xCrfG4i1OgerieRG8Dsl3XhzTIAVDmfPNUt0tVn7wRw49SFaw4m4Hvaap0CVD0az9A0v-vueq5c',NULL,'2020-07-22 21:16:56.156000','2020-07-22 21:16:56.156000',5,'Olivia Nieto','https://lh3.googleusercontent.com/a-/AOh14GjBzNm4SyDzxWsuyn5QXZ3CEbZD6RDFwrBdGk8wdA=c0x00000000-cc-rp-ba2','8679688254631342173',22245),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8knBbYvGxHyFNg8-GeAv2kBraEpTRLxb-fdf8XOBTSFebE7wUiKDYAxFGYa_4_H8xylAOEPOEGIzDOfQqwADw8aXE3I','I would like to give this facility more stars because the front desk staff is incredible and the facility itself was beautiful and very functional. However, once we were in a room the nurse wasn\'t as talkative and didn\'t have the best bedside manner as we would have liked, but she was decent. Then the doctor came in and the entire visit turned completely ridiculous.\n\nI brought my partner in for severe constipation X\'s about 6 weeks only using the restroom with stimulant laxatives. We do not have insurance and was going to be paying partial cash the rest on a payment plan. The reason we chose the ER is because we have tried every single thing minus seeing a doctor. You name it, over the counter laxatives, fiber, expensive probiotics, stool softeners, prunes, liquid diet, a gallon or more of water a day, running daily, and lastly a shower enema. Nothing is working. No doctor\'s office will take you without insurance as she does have a GI doctor prior to her losing her insurance. Her dad had GI cancer at about her age and we needed to know if she had any bowel obstructions. So now you know a little bit of back history. Let\'s get into the doctor. \n\nMy partner likes for me to chime in when she forgets something. She gets nervous and embarrassed easily and often forgets major details. It\'s something we agree upon prior to going into the doctors office whether she wants me to help her through the explanation. Tonight she wanted help. I told the nurse this so they wouldn\'t think I was controlling or forcing her to be there. As I was helping her through her explanation, the doctor stopped me and boldly asked me \"who are you to the patient\" I stated I am her partner. Since we are a same sex couple it seemed to catch him off guard it also seemed he changed his demeanor after that. He began to state thinga like \"I don\'t know what else to do for you, you have done everything I would recommend for someone who is constipated\" \"I don\'t know what to do I\'m just a lonely ol ER doctor\" he said \"I don\'t know\" six times in the 5 minutes he was in the room. He never offered further testing such as blood tests even though she has lost 15 pounds in less than a month. He didn\'t offer imaging to check for obstructions. He only felt her stomach in two places. I happen to also be a nurse (which I never mentioned to him) and I know that is not how you check someone\'s stomach who is presenting with severe GI issues. He barely touched her!!!! When he finally said \"I don\'t know what to do with constipation since I\'m an ER doctor and I don\'t deal with constipation\" insinuating that we were clearly not being taken seriously, I finally spoke up matter of factly and asked him if he thought of doing other tests. It was only then that he offered an x-ray to check for bowel obstruction and to see how much fecal matter was actually inside of her. \n\nDr. Jerry Chen, in my opinion is a disgrace as a doctor and absolutely the face of what\'s wrong with American healthcare. If you decide to go to this ER, which I do still recommend, please ask for a different doctor to spare your time and money. \n\nI did express my disappointment to the front desk and she did not make us pay for the awful visit, which was nice. However, my partner is still in bed because she can barely walk with no relief and we still have no answers.','2018-03-16 08:10:32.054000','2018-03-16 08:10:32.054000',2,'Heather Poole','https://lh4.googleusercontent.com/-YoOodbOtIQY/AAAAAAAAAAI/AAAAAAAAAAA/UlcVBt1geeM/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1647),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8mKgQDX_Jhp2ZN990r28pvCpKm9gTEecO2t_nINOEaNjVAaqBxNiDhYzsKzqerrNaN-n8uGPTbP3qVuAzDlR6Eu7skE','The best experience I had in a er..the doctor and the all the staff were very attentive and they even talk to me and explain things every time I called with more questions...thank you for being so good at what you do and made my baby feel better so fast..ps no wait.!!!!','2019-03-02 23:11:17.906000','2019-03-02 23:11:17.906000',5,'Andreea White','https://lh5.googleusercontent.com/-jhXQdjPuQP0/AAAAAAAAAAI/AAAAAAAAAAA/KtNLYCjN0Cc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8o58KrJ4OigwqWQbqXg4kXN50bBw53J446bjo-pSKNwGa934YuWUfPK-rBXNz2vtitZPkVOP1XgBHSz5vaz0RvoFxRQ','I can\'t say enough positive things about this place and every single staff member we encountered!! Not only was the facility amazing, I\'ve never seen such positive, friendly people in a medical facility. Not sure what their secret is, but I\'d recommend this place to every single person i know in the Midland area!!','2019-09-18 17:23:05.980000','2019-09-18 17:23:05.980000',5,'Jason McIntyre','https://lh4.googleusercontent.com/-gdsq3d_RY5s/AAAAAAAAAAI/AAAAAAAAAAA/08L8ocRpoHo/c-rp-mo-br100/photo.jpg','13486358490203335051',822),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8oaoYe52H4letDtoMutcdS-1N-KuaeGTYrTLzijmR8C5YirS5lvnBzYqpKSAuNCJjrzrz3aCcqKF3yTNQCrJPTqMLCM','Terrible experience with the staff. My gf was in a minor car accident and I brought her here to get checked out. Had a few scratches and pain that was handled, but she complained that something was in her eye and they completely ignored it. No test or nothing. We go to another doctor to check and be sure it\'s not and there was glass in her eye they they didn\'t even bother to check for. I was extremely angry with how they handled her and think they need to evaluate the handling of patients. There is no excuse to ignore someones request for a brief check of the eye and keep asking for other exams for money.','2019-07-31 16:19:26.738000','2019-07-31 16:19:26.738000',1,'Kenny A','https://lh5.googleusercontent.com/-p27Nct5QDSs/AAAAAAAAAAI/AAAAAAAAAAA/eAuIADRLfik/c-rp-mo-br100/photo.jpg','14904078213800803294',2106),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8q0cqbWUTTEB4yFv6G6eEW3UKTeOTMmP2Ux5137JtcTMNBpuEjfZq2jNX-h4ne7gV-WO2cTmNqyEAorRRcH2oKuZI9o','Previously at a nearby urgent care waiting for 2 hours only for them to refer my friend to SignatureCare in Montrose. We just moved to Houston and I have to say this emergency center is by far one of the best healthcare facilities I have ever experienced. They get you in and out quickly and efficiently and they care! If you don’t feel like waiting at the emergency room or urgent care go here! Thank you to Keaire, Dawn, Olivia, Eve, and Doctor Pham for not only the wonderful patient care, but hospitality as well! I’m sure we’ll be back in the future! - Wintha and Deborah','2019-08-30 19:49:22.058000','2019-08-30 19:49:22.058000',5,'Winth','https://lh5.googleusercontent.com/-W7UZM4PGIXM/AAAAAAAAAAI/AAAAAAAAAAA/Muxsk6bicH4/c-rp-mo-br100/photo.jpg','3511292162159714121',7187),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8TzLlccZViybOzqUxM7qUJ7nxOO_n9brSvtl-d3MEN0EzFX-qt1LdTh_lAsX0gaaAEF0fZjEfvUDPXtMgKVI6z-Lw10','Compared to other hospitals that are high traffic and larger, Signature Care is much more efficient and cleaner. You get a private room that has a TV. The staff are more informative and friendly. And if you\'re coming in there for something like a cold or a Flu, you can be out of there within one hour.','2018-01-06 01:43:48.098000','2018-01-06 01:43:48.098000',5,'Annisa Wilson','https://lh6.googleusercontent.com/-K5nYknq242Q/AAAAAAAAAAI/AAAAAAAAAAA/oFQdmez6C3M/c-rp-mo-br100/photo.jpg','14567670160750071148',1693),('AIe9_BG84YPnR8vhxeJfV_lAYVNi8X-cwMvActyCUC8c9q3IS0HhrtPu2wNc49sNvK-Q18V3v4H1wlb71nY73jmwCJRPoHPIwH73xxfQuj4htimGM69Fh0w','The staff was wonderful! My almost 5 year old needed stitches in her forehead. Dr. Waal was great with her, explaining each step of their process and being honest about what parts would hurt or not. Made her feel as comfortable as possible given the circumstance.','2019-05-06 14:50:31.143000','2019-05-06 14:50:31.143000',5,'Jessica Barclay','https://lh4.googleusercontent.com/-Qcjq1iGZNsw/AAAAAAAAAAI/AAAAAAAAAAA/hlBkkFEpyoU/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4286),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9729MlKcSp6WcOppI35j86I4SRPABvNkXadjg1CJs-lzlQtZRMixu5HrQfTiKueLsTXfGlkra9TmEjEuTk973IUtq1o','kathren, chelsey, tina, christina, dr elsbecker, dr libyan, ricardo, jennifer, & lauren they all did a great job and really appreciate their bravery.','2020-06-10 22:20:16.334000','2020-06-10 22:20:16.334000',5,'megan meier','https://lh6.googleusercontent.com/-KYbvI4GdtRk/AAAAAAAAAAI/AAAAAAAAAAA/19tc5M3SAJ4/c-rp-mo-br100/photo.jpg','16891069708558046635',22061),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9BbvK_vo3uRZYJMzDuwMUYA13f2PpUevIjCDWATEdGFkWSZoeb5qr6ZaGw0BlvbeGEMrKvpz8xZdxwzanMFssF81xk8','Staff is really nice and professional!','2019-05-28 04:16:04.240000','2019-05-28 04:16:04.240000',5,'Kimber Paynes','https://lh6.googleusercontent.com/-bj3RCUc66gQ/AAAAAAAAAAI/AAAAAAAAAAA/YC4HCGlXX3o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9bVWiDsYzcwl5Jea-R4s4P4WzYVAeL5Fs30xW8nc9WLupfm1jcfJBt2e9ddTxGfU2YCY3_iQd7x4ujN6Y-frJAtca9w','The staff was so nice and helpful.. they were more than willing to help. Dr. Wang explained everything perfectly and Irving & Thelma were extremely courteous as well. Would definitely recommend!','2019-11-05 01:19:40.489000','2019-11-05 01:19:40.489000',5,'Latasia Ramar','https://lh6.googleusercontent.com/-FvVQSV5beMY/AAAAAAAAAAI/AAAAAAAAAAA/TBU9zyGuWLY/c-rp-mo-br100/photo.jpg','12541597562633926366',386),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9BYlD5IE0OLuC2u6r2I6s4dFi6Cju_FxPybm8oK99auXhctg1kxdQxu4-pUHqhWI3McHb7HZTQ3BU8oUaMX7RURK1cM','A++ Service: I do not believe I have ever had a better experience at any medical facility. The nurses were professional, prompt to every need, and very sweet. The physician was very down to earth and had an exceptional bedside manner. The front desk attendant was so very nice and helpful in the situation! Thank you all for taking care of my daughter so well!','2017-05-01 20:45:46.529000','2017-05-01 20:45:46.529000',5,'Lela Patterson','https://lh4.googleusercontent.com/-0jjirKoCURI/AAAAAAAAAAI/AAAAAAAAAAA/gL8QV2FMqXU/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3995),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9iRsM9vsNXPgvzNVorO3Qla5FY8nWexca9d683uWdroHJxhefle_7mEnShkuJUwAC5eYXxGVJQoYhFAXVB-RSazkLak','Exceptional service and care from professional staff!!','2020-01-26 03:55:09.688000','2020-01-26 03:55:09.688000',5,'Tracy Favorite','https://lh4.googleusercontent.com/-81ypqfR3tWA/AAAAAAAAAAI/AAAAAAAAAAA/PWMUWfgzmTw/c-rp-mo-br100/photo.jpg','17898197009688164559',10244),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9jz2DF-IFzLODKl6GxfDJ3KPZocc6vJNxBVMPYBAfhqZDw5eNmT2k65lSR-2I1p_9VG4olMlp1Wchg7U03dx5QaU3OY','Holy Moly. I was going to rate this place a 4 or 5 until I seen the Bill !! Wife was there for less than 2 hours with stomach pain. They did a chest x-ray, blood test and EKG. The bill was $8600.50 !!! Then on top of that a doctors group tossed in a bill for $1389.00. Sooo $10, 000.00 for a couple of hour visit !! I don\'t have great insurance thanks to Obamacare so next time we will know not to go here! But they were very nice.....now I know why !! UPDATE: GOT A CALL THIS MORNING SAYING THIS WAS NOT A BILL. STRANGE AS THAT WAS WHAT MY INSURENCE COMPANY HAS. WAS TOLD WE WOULD GET A BILL IN 45-60 DAYS. INTERESTING. WILL KEEP ALL INFORMED. 2\\9 still waiting resolution. Insurance is showing willing to pay $986 but now what? Of course if this is the case,its below my deductible so I would need to pay it. Will see where this goes.','2020-02-09 23:06:35.266000','2020-02-09 23:06:35.266000',2,'Fred Colesby','https://lh3.googleusercontent.com/-KNXb415EGHQ/AAAAAAAAAAI/AAAAAAAAAAA/t8e9U4ck-UY/c-rp-mo-br100/photo.jpg','2694018788013845459',14245),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9OjoTPHCK7NlODOsCfUCigKebSxBpAqLzshYJ04-cUe8_Dp1yWo01L7ZZTpV150idxNc_zBiHMDNwpIurWEwTsxxLRI','They are fast and get you in within 15 minutes, by appointment or walk in. I was a walk in and went to get tested for covid and they tested me and gave me my results within 30 minutes. I was helped by Jessica Sanchez and she was very patient and helpful. If I go back I would definitely recommend her every time. Definitely 5 stars ⭐️ ⭐️⭐️⭐️⭐️!','2020-07-21 14:23:20.415000','2020-07-21 14:23:20.415000',5,'Jaime Nicole','https://lh5.googleusercontent.com/-UxWiIl3e8J0/AAAAAAAAAAI/AAAAAAAAAAA/a5u-_enoltI/c-rp-mo-br100/photo.jpg','14748677429039074158',21627),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9q_3zK2WlL15fBlW16Iwz2ps-dU9zuu-dYPUwN0M4Pk5sgrzGXJrGCEr9H9baJ_9y3h56GdaLLMp_rRr181IqTU-QaY','So Fast and the doctor is experienced in recovery and addiction and was excited to help me with my pain and manage my sobriety in the mean time! I would not go anywhere else for urgent care!','2017-08-14 17:14:39.485000','2017-08-14 17:14:39.485000',5,'Shayla Kaiser','https://lh3.googleusercontent.com/-dOizm9JqwkM/AAAAAAAAAAI/AAAAAAAAAAA/LzbZScrZOKA/c-rp-mo-br100/photo.jpg','14567670160750071148',1770),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9qNrtrsFbs2HT1KiCJJp4fDHqEMtt_ELj_dVg5JUMZbkVjzKFh83KL8l6Duwv-sv8dInARQbdbjqDowCjIZDG-xlEwg','First time having to come to a urgent care facility. Dr.Ngo was very detailed and explained everything I needed to know. Laura, Gina Olivia, Eve, and Natalie were all very friendly and informative.','2019-01-02 14:32:49.029000','2019-01-02 14:32:49.029000',5,'Shanay Crain','https://lh5.googleusercontent.com/-M4nlrvLjCJw/AAAAAAAAAAI/AAAAAAAAAAA/bY9lPpzk1tQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7534),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9qunGCHS9pWwr7gcHu8SPwpwY_wj5k4rvFULA94dyJ-KRfVBMqDJJGTGzp1g4tdkmWf88MqlY7ZLSuIbukjQS1Jpf-0',NULL,'2020-05-24 23:52:27.846000','2020-05-24 23:52:27.846000',5,'Jacqueline Cano','https://lh5.googleusercontent.com/-54r9Klig710/AAAAAAAAAAI/AAAAAAAAAAA/HnafHrvFT-c/c-rp-mo-br100/photo.jpg','8918455867446117794',22940),('AIe9_BG84YPnR8vhxeJfV_lAYVNi9uGDm4hlF5RWejnFewEviVlWL3JlzlIWRutocRcKNfOnyMla5SYPB1fWA_3rXVTWtNMMfdqic5yZkxuUrlWvfiN5PTA','I had a Great and wonderful experience here! With the help of Pete and Shana I would recommend anyone coming here to feel welcomed and taken care of!!!','2019-07-22 17:20:28.446000','2019-07-22 17:20:28.446000',5,'Spencer Dunning jr','https://lh4.googleusercontent.com/-xmYs2Vr48kc/AAAAAAAAAAI/AAAAAAAAAAA/Vz0-oy9ex8k/c-rp-mo-br100/photo.jpg','6521947413723274945',8187),('AIe9_BG84YPnR8vhxeJfV_lAYVNia5D5vvCsfBPJoD2MDyyQHcuiYuhwZWi0zcNEDiMMlxjtUosPvtIdRz4rPyDiJzS2foPhuTF8q_1BaqxnDwQ6G1zk4hQ','Really Took good care of me. Dr Nguten, Alvean, Kelly, Patricia, and Jordan work very curtious and professional. Will definitely recommend in the future.','2019-12-20 19:32:25.159000','2019-12-20 19:32:25.159000',5,'Lester Cleveland','https://lh4.googleusercontent.com/-pa9m9SoUVJ4/AAAAAAAAAAI/AAAAAAAAAAA/PWV8KtaWQwk/c-rp-mo-br100/photo.jpg','16389487648212004696',2522),('AIe9_BG84YPnR8vhxeJfV_lAYVNiaat7jRcnXAz7At31nAatc1xHFjcJOw1XYgQLynVIp3jrkTpSOiVTCOOzNBdD0-O_P6UoGG-UpKW9nWGPBrj-HGd9IJ0','Quick service, clean facilities and friendly staff.','2017-08-15 16:45:49.971000','2017-08-15 16:45:49.971000',5,'Lissette Reyes','https://lh4.googleusercontent.com/-PsoFbSA6dZs/AAAAAAAAAAI/AAAAAAAAAAA/cQtCNu_AJvU/c-rp-mo-br100/photo.jpg','14567670160750071148',1768),('AIe9_BG84YPnR8vhxeJfV_lAYVNiAb1pncb45ZZ6RRuzlQbLpuPDQUpAOrmRySWjABTz8ELeAFuBceSRxoyVmI1paQePhwghWSuYDps-KZ8RhTuTI3iHN-k','We brought my friend to get her finger fixed up after she cut it and Dr. Anders, Nurse Jacob we’re very helpful, they made our visit very enjoyable and easy.','2019-03-24 19:03:56.250000','2019-03-24 19:03:56.250000',5,'Lucero Ramirez','https://lh4.googleusercontent.com/-UmzCbmi0_iE/AAAAAAAAAAI/AAAAAAAAAAA/I_NT6cjdTvM/c-rp-mo-br100/photo.jpg','16590124370714063921',3487),('AIe9_BG84YPnR8vhxeJfV_lAYVNiABMY4lfmpYFxfQmP-aJnMbUIcMUDrHq-H3zMIb3dYPDTZt1b6zAnYGBGipou395k2Gd79yO_-7nKqshsc8eqUD_FGiE','Full service Emergency Room with only board certified docs and a clean, calm atmosphere. No wait at all!','2017-11-02 12:14:22.728000','2017-11-02 12:14:22.728000',5,'Jared Schreiner','https://lh4.googleusercontent.com/-luOO8SvHQq0/AAAAAAAAAAI/AAAAAAAAAAA/Q8L8iku8ttc/c-rp-mo-ba2-br100/photo.jpg','8626688543755174284',8651),('AIe9_BG84YPnR8vhxeJfV_lAYVNiADADCYK8T8wZRRdjSL4iByI70AEC4iuGRljmzEByzpKy2PdqEkdKnCGmbbFXb8kkytAHTH6GSo3t4gds1cDKyHc0XWQ','Dr.Vackey made me, a pitiful pumpkin carver, much happier and patched me up just fine!','2018-10-29 02:46:34.575000','2018-10-29 02:46:34.575000',5,'Lauren Miller','https://lh3.googleusercontent.com/-vkgo9doWjPM/AAAAAAAAAAI/AAAAAAAAAAA/r6UpWUJExl0/c-rp-mo-br100/photo.jpg','16590124370714063921',3681); INSERT INTO `review_review` VALUES ('AIe9_BG84YPnR8vhxeJfV_lAYVNiAFyIWSNNE5-AXSydOoTjWv4kvNmSEObMfRn62Cg8IVbFCAG48TDRJ-YOuFTHu8ibwBBsUA075jRxLDU5A5Zgtw1Vs2o','I had extreme chest and stomach pain. I went in around 11:30 and Carly who is the face of the Emergency room was extremely attentive and was more worried about my chest pain then asking for my DL info and insurance. We eventually we got to all that good stuff, once they confirmed I wasn’t having heart issues. My nurse Sarra was very professional and on point. Not only was she constantly checking on me but was very genuine when doing so. Sherwin, took a scan of my body and asked if I was okay throughout the whole process, again very professional and very genuine. Dr. Wang stepped in and throughout the whole process made sure all my questions were answered, diagnosed accordingly and walked me through the after care. Over all a genuine carrying team.','2020-02-27 11:17:13.489000','2020-02-27 11:17:13.489000',5,'alicia solis','https://lh4.googleusercontent.com/-2Lme5WXdhQg/AAAAAAAAAAI/AAAAAAAAAAA/JPm7uO35WOU/c-rp-mo-br100/photo.jpg','8679688254631342173',14724),('AIe9_BG84YPnR8vhxeJfV_lAYVNiAK9VkuPzdPFHaBPsUz3oRKlvb6Nd4qyhLy7FeZFtyENL1xh5MIJv7xmyt2K1IY9EpSKj-4KtT3PaA-VqgrsyzWL5ERg','Best experience I have had with emergency care. Very little wait and everyone is so kind. This place is kept clean. You really can tell they care.','2017-04-28 03:55:51.416000','2017-04-28 03:55:51.416000',5,'Katie Jo','https://lh4.googleusercontent.com/-xYvlOWxoXUo/AAAAAAAAAAI/AAAAAAAAAAA/XFbWAhszi1I/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2363),('AIe9_BG84YPnR8vhxeJfV_lAYVNiakdaDnemMHwxLVxmzZXlZj0m4kN3M2ipnCbBfbve7SR_sQu8wIgBk_96Aw5oPRfwcKRKfe56N-jdd7vNQNjZ98ZJw0M','Got bitten by a dog. Dr. Jolly (yes his name is Jolly), and his staff Cecilia Z, Brian, H, Brandon W, Bryan D, and Ricardo were great. Very friendly and they check on you to make sure you\'re good and comfortable while you wait.','2020-02-18 04:43:31.589000','2020-02-18 04:43:31.589000',5,'Alfred Bacon','https://lh4.googleusercontent.com/-mSFGcmHT0Fo/AAAAAAAAAAI/AAAAAAAAAAA/BFMv5PqbmjU/c-rp-mo-br100/photo.jpg','14567670160750071148',13523),('AIe9_BG84YPnR8vhxeJfV_lAYVNiaKMmtku4mPSq-Qy4jcvTZBAjJWIwZEfjr0PMNtDcRBFnYgwFO3f3JFntf5uiVc4MyQoqQWQ2yNomuMWR5Dz7HpmczXo','The best emergency room experience I’ve had! Each person I interacted with was kind and accommodating. I went in expecting to be there for hours but they were quick to get me a room, seen by the doctor, and sent off for X-rays. Bonus: warm blankets, snacks, and drinks.','2019-12-09 04:25:18.822000','2019-12-09 04:25:18.822000',5,'Kayla Luedke','https://lh6.googleusercontent.com/-0uNUvlrUGLc/AAAAAAAAAAI/AAAAAAAAAAA/Op1HCyH_SQM/c-rp-mo-br100/photo.jpg','14904078213800803294',13658),('AIe9_BG84YPnR8vhxeJfV_lAYVNiaL5uccNrCwyoJZf38MyPtSUTQeclgdjy_iO1HWGTQzCRK8ax3HG-HlLP-4YJ6Iu3w8yliuzaxyCQs_iYpHlyrZtzKuo','The staff are very professional and friendly! Always keep you smiling no wait time! I love this Emergency Room.','2019-03-09 22:03:02.482000','2019-03-09 22:03:02.482000',5,'tamekia wiggins','https://lh5.googleusercontent.com/-JcN7g4ejvsI/AAAAAAAAAAI/AAAAAAAAAAA/DSJ_lovYMPU/c-rp-mo-br100/photo.jpg','8918455867446117794',9160),('AIe9_BG84YPnR8vhxeJfV_lAYVNiALAY3_Ky5IyxwwKd7-i36RE2Oo8i2sYUs7Ivn16q0sVaLOV72WkIw45YBlVm656NvhNIEj7z1qFJp3iA3u8Jz3uCiug',NULL,'2019-10-17 16:36:06.851000','2019-10-17 16:36:06.851000',5,'Erin Chavez','https://lh3.googleusercontent.com/-8SxFNiMdP_Q/AAAAAAAAAAI/AAAAAAAAAAA/L3Oqe9s3c5M/c-rp-mo-br100/photo.jpg','16590124370714063921',3134),('AIe9_BG84YPnR8vhxeJfV_lAYVNiaTDOtTEmjLzEGyBXhRi5-J1lGOJhaA1FvIf3QIVn_bSgfZpMZgHwOaZo4T1OQNYXG_zYKHvqVm5vbaST0N98ijpw9lk','Awesome staff, superior customer service. This place is amazing. They also have snacks for the patients.','2019-06-04 23:15:49.956000','2019-06-04 23:15:49.956000',5,'Sal Diaz','https://lh3.googleusercontent.com/-4E4ZqFFyWG8/AAAAAAAAAAI/AAAAAAAAAAA/mrIX_-boe-M/c-rp-mo-br100/photo.jpg','14904078213800803294',2135),('AIe9_BG84YPnR8vhxeJfV_lAYVNiAxPFmLERvQIdpKJRByQbSvJqehPFLoUSQkpTHBi6-rVKQp4PmQUOZWkdn2Uy5lebs8tPgM6YzE-yx8Z5maz7RstAD6U','they are kind, quick, and efficient!','2020-08-12 04:32:13.559000','2020-08-12 04:32:13.559000',5,'Mimi Harrison','https://lh3.googleusercontent.com/a-/AOh14GiE4EBQQG9sUTtYFBlDVWKvj8B0zbdkRV-EPJFI=c0x00000000-cc-rp','2694018788013845459',23072),('AIe9_BG84YPnR8vhxeJfV_lAYVNiAxqqbh6rq1ejuIY1gywXp8gI3tFmW7g5VmCb0z6V_jPI09dxm7Aui7h8EB6nmigEjMsBsY8z6x9IBc9wNfAwbmqIWug','All the staff very friendly, they took care my mother very well','2017-11-10 01:12:46.244000','2017-11-10 01:12:46.244000',5,'Quan Le','https://lh5.googleusercontent.com/-Yt62PDuAveI/AAAAAAAAAAI/AAAAAAAAAAA/jiGJXmr8jUw/c-rp-mo-br100/photo.jpg','17394740196501090048',4936),('AIe9_BG84YPnR8vhxeJfV_lAYVNib2_PKTdSqzctpHiY66_1IQDR017pZ037ix7oIjV8rCAgCCyPS1yXbpPpXCMc9XBs8JCHt3RVYPuEc1cq6zqF6owdFVQ',NULL,'2019-02-14 22:27:35.487000','2019-02-14 22:27:35.487000',5,'Rana Jasem','https://lh4.googleusercontent.com/-LP06z7WZQLg/AAAAAAAAAAI/AAAAAAAAAAA/Nw1HDLiFgbQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5855),('AIe9_BG84YPnR8vhxeJfV_lAYVNiB2tcYL03MXwnpgcptrOajssHaO4t3By6eSo_Z20azBcRP_5TXky7DA6RBq7CGlcBP_4BbSe5Euz0BciODP8VRfbLt4E','I am so upset. First of all this facility is not ready to treat any infants for any reason. The admitting nurse was obnoxious and rude to the parents earlier in the day yesterday when they brought my 5 week old granddaughter in for spitting up milk through her nose and having a difficult time catching her breath. Had 2 nurses could not as a team figure out how to retrieve blood out of an infants foot poking and proding unnecessarily with my granddaughter. I was already upset when we left last night via ambulance to TXCH in Katy (per request of dr at this facility). My grandaughter was misdiagnosed by this facility with pneumonia. How do you get mis-diagnosed with the same test results from one place to another with no addt\'l tests given at the hospital. Scared the wits out of the parents and grandparents. I will have to say though I was very pleased with how clean and sterile it was at this facility. The dr on call last night was just wonderful and very attentive and caring. This will not be a place we will return for any future medical assistance.','2015-02-11 18:43:58.824000','2015-02-11 18:43:58.824000',1,'Denise Long','https://lh3.googleusercontent.com/-y4IsNrgX1bs/AAAAAAAAAAI/AAAAAAAAAAA/rs8XGHrKeEg/c-rp-mo-br100/photo.jpg','17394740196501090048',5304),('AIe9_BG84YPnR8vhxeJfV_lAYVNib7oIOj-tbwi_u8xCqtB7nSzjZKtqfFNEXtnSOIXEjOp-H-BTR4liaSezMAnXAibySn8068eLj3waX1_2nNzccVAuk_0','This Urgent Care is the best I\'ve ever been to! Dr. Edwards,I Patricia,wouldn\'t and nurses Jesse & Selina are all amazing! I wouldn\'t think of visiting another location. The staff is patient, kind, and knowledgeable!','2019-07-12 16:42:52.053000','2019-07-12 16:42:52.053000',5,'Lakiesha Kingdom','https://lh5.googleusercontent.com/-hRTNHdldS28/AAAAAAAAAAI/AAAAAAAAAAA/aBvpIder29U/c-rp-mo-br100/photo.jpg','17394740196501090048',4631),('AIe9_BG84YPnR8vhxeJfV_lAYVNib9xuaQ5h1SK9IockYhIvgA84HsgU2PHU2RfwyPM53bJftdigWCS7cQoDEWwJ8lhcK4Na3hr3T0HhrJdb1gkQSiO0Kc4','They always take good care of my daughter. They go pretty quick and address all our concerns. Everyone is friendly. They have a coffee pot.','2019-12-27 21:45:41.702000','2019-12-27 21:45:41.702000',5,'Christopher Garcia','https://lh6.googleusercontent.com/-abHRN6CAKNo/AAAAAAAAAAI/AAAAAAAAAAA/GcJ0etFUezw/c-rp-mo-br100/photo.jpg','2694018788013845459',5974),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBByX8oRgM6LfppkcFRX0YGjv3u9GPgmvxrdmkoE0ILk_9wWEpnuDJMPpAHupkjFxalyCWKhVNpJZ9HutvCqgzHX-lEM','Just walking in is nice , I mean really nice and everyone was so nice. And if offered a heated blanket take it. The nicest professionals and left with a good feeling. A real cool crew! Thumbs up','2019-03-05 06:02:27.061000','2019-03-05 06:02:27.061000',5,'Galynne Herbert','https://lh3.googleusercontent.com/-epcuDjbBCls/AAAAAAAAAAI/AAAAAAAAAAA/1xCFM_6TU-g/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNibdtKD3uVSBygZt4iSIR9aclqjuddUxdT1GRN1ruqmEBAmutn5g7P66VkZH79UUb0FDBgiTwsM00KC0dsGweZCTBuSuo','This facility was very clean and accommodating. Itzy is a very pleasant front desk clerk. They even had snacks and drinks which was nice.\nDr. Pham, Reginna, Bre, and Miguel were very nice, quick and professional!\nThe ONLY reason they got 4 stars and not 5 is because the exam room was very hot! It was so warm in there that it was uncomfortable. Other than than it was a great visit.','2020-02-04 19:42:49.563000','2020-02-04 19:42:49.563000',4,'CANDICE FORD','https://lh4.googleusercontent.com/-F2qqKxQNK1w/AAAAAAAAAAI/AAAAAAAAAAA/C6N61ilbmd0/c-rp-mo-br100/photo.jpg','14567670160750071148',13560),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBg6RVF6cKyltAITYQp71dBvG2oApkqne5v9MDWXCuL5iC2uKYyMQf0ugsRPnuUy9UxypN4xCPP2CafyOvwYzF5XK9E8','Signature Care has an amazing staff and they took excellent care of me! There was no wait time and I was seen right away! I\'m one of th u send people who hardly ever go to the Dr for myself. I don\'t even have a primary doctor because I haven\'t had a good experience with any of the Dr that I have gone to. When I had an emergency because my blood pressure was way too high I was desperate to find a Dr that\'s open on the weekend. I just happened to find Signature Care ER online and I\'m sure glad I found them because my friend had the same problem and she went to an Urgent Care on 1960 and was sent home without any medication and was just told to that she needed to go see her doctor. All the staff at Signature Care was very attentive and answered all my questions. They even had a program to help pay for my $250 ER co-pay! I can\'t afford ER copay so they just charged me an Urgent Care copay of $75! They are equipped with everything needed to take care of their patients. I highly recommend this place! Dr. Michael Hehman, nurse Melissa and front desk receptionist Stephanie were very knowledgeable and attentive! They even called me the next day you check up on my condition! ','2016-06-12 21:00:33.729000','2016-06-12 21:00:33.729000',5,'Lao Princess','https://lh5.googleusercontent.com/-wCqQkE1UcHM/AAAAAAAAAAI/AAAAAAAAAAA/woxzVu5Cpp0/c-rp-mo-br100/photo.jpg','14567670160750071148',2020),('AIe9_BG84YPnR8vhxeJfV_lAYVNibhaN_RHqbGb_37FByF9QsvvTCsIW7NbaPuWa9N7QDpN4uBKxwod5AI1zi9dVQCaB0s1pt4mqqm-LIPdIw8_w0HSbt-M','I love going to this ER for fast care... They saw me immediately an got me going back to good health... Would definitely recommend signature care.','2020-01-10 16:04:17.218000','2020-01-10 16:04:17.218000',5,'Stella Flores','https://lh4.googleusercontent.com/--FtqaDnSC_0/AAAAAAAAAAI/AAAAAAAAAAA/vet0iuTqd5s/c-rp-mo-br100/photo.jpg','14567670160750071148',9476),('AIe9_BG84YPnR8vhxeJfV_lAYVNibjnWpEWR6_SBczSLT-xW92qtQBcFeB1WaNSsq3BX4HattSdc33fqQorA28aiBsOvDLJNlTjADzBWyNQ32kuP2W0cOkw',NULL,'2017-04-03 22:14:09.037000','2017-04-03 22:14:09.037000',1,'A Mo','https://lh4.googleusercontent.com/-fJyieBdieqE/AAAAAAAAAAI/AAAAAAAAAAA/YNzKMrwKcj0/c-rp-mo-br100/photo.jpg','14567670160750071148',1857),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBk86KQw0EPQhgNdi8luyvBLX49QAEbFlnl01bnNC6KlfAx5UonIrVb6nVaHmq30tQbhn-60j24B-k866gk1lV1x8zhk','I came to the Signature Care ER in Montrose concerned I may have appendicitis. They were able to confirm the diagnosis, ease my pain, and arrange for my transport to MHMC for surgery. I was home less than 24 hours later. But what I really appreciated about Signature Care was how caring and kind they were. Dr. Ioram has an extraordinary bedside manner and explains things in easy to understand ways, and the entire team went out of their way to assure that both me and my wife were comfortable. Thanks y’all!','2018-04-02 19:31:30.470000','2018-04-02 19:31:30.470000',5,'Graham Gaskill','https://lh5.googleusercontent.com/-RTb1snH05os/AAAAAAAAAAI/AAAAAAAAAAA/5LeJ24dbGg0/c-rp-mo-br100/photo.jpg','3511292162159714121',7713),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBK9Ty8_-5FvJRyIc44FqL0x9SNJeYKsZrEksgM7jfuIaWk3QIsg16CUZgIGyqM-WJOPaCulzow61PMyETY_mxH_zpr4',NULL,'2020-07-20 17:37:45.471000','2020-07-20 17:37:45.471000',5,'Christopher West','https://lh6.googleusercontent.com/-3zmQPh--3ts/AAAAAAAAAAI/AAAAAAAAAAA/gJF-QI6rnTE/c-rp-mo-br100/photo.jpg','14748677429039074158',21663),('AIe9_BG84YPnR8vhxeJfV_lAYVNiblcLlP52AZynMxxLrA35i_zo2QRvY7RBeveBgwl-x3XacWtMw9KQNqzH6bAtnfAIn-9XJZeO4SFcS33PufbJY_MKme8','Fast to attend you great staff.','2019-08-17 00:50:52.852000','2019-08-17 00:50:52.852000',5,'Omar Jasso','https://lh6.googleusercontent.com/-_SewUKxO0lQ/AAAAAAAAAAI/AAAAAAAAAAA/J9EGlGHlIoM/c-rp-mo-br100/photo.jpg','6521947413723274945',8160),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBMrhYBEIiTDvy8Y1oVzSLzJ61BcrNvR08JK_pkihmYXZ-9osdgspoxet1IjZQwoD7GX9d-ka7MvitV6mdf84p48-VCo','My visit was great. It was super clean & the staff was extremely friendly. Lizzie Torres was extremely understanding & helped calm me down when I was freaking out. Dr. Jaber was very helpful as well. Great Emergency Care Center.','2019-06-17 12:49:37.012000','2019-06-17 12:49:37.012000',5,'Klee Flores','https://lh3.googleusercontent.com/-Sx0z7aeciBU/AAAAAAAAAAI/AAAAAAAAAAA/N8CUNdn16Yo/c-rp-mo-br100/photo.jpg','3511292162159714121',7302),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBn1zgVcm9QyK_syEpXD4gN5iVvJnNgEmeeBNUoqxVSNPPUQ702YHFZtmLTcU3Ab4N2QmxL3f3twAtCKV8x5kHsnWHpY',NULL,'2019-07-11 12:07:01.118000','2019-07-11 12:07:01.118000',5,'Sarah Kline','https://lh4.googleusercontent.com/-cXBNPKK-4ak/AAAAAAAAAAI/AAAAAAAAAAA/0sw1vjC9GBk/c-rp-mo-br100/photo.jpg','6521947413723274945',8208),('AIe9_BG84YPnR8vhxeJfV_lAYVNibnn38FBJ5o9NPbph2MQB5cnMqXydYUeL_5J4ZeSYdaUupofrUoLFcjaMzVxEarfL9ySwOoTLT5VyNzLfL8RTho7BNos','I don\'t know if anyone will see this but especially being in a college town where students are figuring out insurance on their own for the first time, I knew I had to say something. \nThis place is very nice, quick, and seems great (employees were kind, etc.), but they don\'t take your insurance. Please listen to the other comments saying this. You will get billed months down the line because your insurance won\'t pay for it.','2019-10-31 20:03:55.625000','2019-10-31 20:03:55.625000',1,'morgan mihovil','https://lh4.googleusercontent.com/-qPfdbR18dho/AAAAAAAAAAI/AAAAAAAAAAA/Leh1Gs_fWEc/c-rp-mo-br100/photo.jpg','16590124370714063921',3115),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBoC78SHHf6txeoPCGv1w3vcj_Mraz7De1WY7wBtI0A0fDhT5ZiDfDUtRvAewLu-cgTndKWd4NpjsDz3YtoTDe5mEcNI','Very nice place all the staffs are awesome everyone has a good positive characteristics \nI recommend everyone to come here definitely five stars','2019-12-27 02:17:54.640000','2019-12-27 02:17:54.640000',5,'STIFF Muzik','https://lh6.googleusercontent.com/-6o5zziH8emM/AAAAAAAAAAI/AAAAAAAAAAA/mTUz96fEhkY/c-rp-mo-br100/photo.jpg','12541597562633926366',299),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBooPnYc_zTb3XXHmVzJWTvp_LblSSl4JZ4y4rUO4nVQgmRmySZNSuUneI93BCYO1cscDSbuCwUy5VvV4BPSBHt5LhhQ',NULL,'2019-05-16 13:31:41.415000','2019-05-16 13:31:41.415000',5,'Dora R','https://lh6.googleusercontent.com/-Wg76gXbFbcc/AAAAAAAAAAI/AAAAAAAAAAA/l9LOVF2yhOw/c-rp-mo-br100/photo.jpg','6521947413723274945',8278),('AIe9_BG84YPnR8vhxeJfV_lAYVNibQeLyd75SOqgN99ZCpMl46rGJqNhZ-4qyveWTml3-uEPhvAqDEhsRIjT_TXTFTPoiT74tfzLy9ORRRAh0RquwlY-rqk','Every time I come, there is no wait, seen within few mins, everybody was helpful!','2019-08-17 12:23:44.047000','2019-08-17 12:23:44.047000',5,'Richard Davidson','https://lh5.googleusercontent.com/-hvqriLtXMIk/AAAAAAAAAAI/AAAAAAAAAAA/3wdrqzxwVJg/c-rp-mo-br100/photo.jpg','8918455867446117794',9078),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBQmBiB6ZNDaRMj-1rNR7EzSlI6CrJjfIofVxW8cLGimVvPHL23-AtKMmblz1NEEJMd_MHbMwz6JWlJ6Ox9lkFKnIROY','I’m a very discerning person who is often not impressed by anything and I could not praise Dr. Jaber and his team more. Troy, Jessica, and Melissa were all amazing. Registration was a breeze and i was seen within 2 minutes. Dr. Jaber was there with to provide excellent care with great bedside manner and a sincere interest in making sure I felt taken care of and satisfied with my visit. I’m very glad I visited and want to thank the team again.','2019-08-13 07:22:13.610000','2019-08-13 07:22:13.610000',5,'Akrum Ali','https://lh4.googleusercontent.com/-ANcdk3Go7zI/AAAAAAAAAAI/AAAAAAAAAAA/6nrX8n3BZHY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBR4CqWHJMS-v-Yzx2kJIKVxhhdpGoy25OVa2hU2eG6961h2mV-UeEPcRmUbXem153c-I1lHhD4A0YlT6oBBKjKJfz3I','I came in for an infection on my leg. After the first round of treatment we discovered I was allergic to the medicine prescribed to me. I came back in twice to get the reaction under control. The staff here are always so nice- from the front desk to the nurses to the doctors. The facility is always very clean, check in/out is fast and easy, and you are always seen very quickly. They even do a follow up call to see how you are doing. I’d definitely recommend coming here.','2018-07-18 13:23:17.022000','2018-07-18 13:23:17.022000',5,'Lindsay Barello','https://lh3.googleusercontent.com/-qak0PRynDJk/AAAAAAAAAAI/AAAAAAAAAAA/4N0Eaoe2sSc/c-rp-mo-br100/photo.jpg','14567670160750071148',1598),('AIe9_BG84YPnR8vhxeJfV_lAYVNibS3Fq9Z0YFufTRE5Lg_6P38iCmIry9jy8I1MFBL5xbYHle_b_K6vKCpROfl7cs5khKfpZn8PukX91TOZqjoaucqHYyk','Very impressed with the level of service from this facility. From the minute we walked in the door to the minute we left we were treated with thoughtfulness, courtesy, and extra care. My six-year-old son was panicking over his head injury and they knew exactly how to calm him down to be able to address the issue. This place has one my business for any thing that may come up in the future that would need emergency care.','2017-05-31 11:33:57.649000','2017-05-31 11:33:57.649000',5,'Leah Comstock Salinas','https://lh4.googleusercontent.com/-d3zTtPxDZFI/AAAAAAAAAAI/AAAAAAAAAAA/IBcjx68dZ9M/c-rp-mo-br100/photo.jpg','14567670160750071148',1815),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBtIxUEqLBXoQZ59GqOE_9iKZ7bXynKUwOtUy9-hAqOMC7VQ230WPEEvCRr4yUJxyjTimajOmFm3RhtHRCohXrjKFNw8','Got to me immediately, helped put my mind at ease, and the Doctor and nurses were positively welcoming and amazing. My nurse Sally and Candnace, as well as Dr. Elsbecker were simply fantastic.','2019-03-07 14:04:32.425000','2019-03-07 14:04:32.425000',5,'Heretical Fun House Productions','https://lh4.googleusercontent.com/-MsYK9NSV5Lo/AAAAAAAAAAI/AAAAAAAAAAA/9wj66_FOr1w/c-rp-mo-br100/photo.jpg','16891069708558046635',4330),('AIe9_BG84YPnR8vhxeJfV_lAYVNiBYcKvAq8oSWDSzpIAEaXPBouezBUslUlNipcQq1qmbG35inZcW-nmt19__qoKf4Wu5_A4ekcCOvuxWHOlJbLl1FFcr0',NULL,'2019-07-01 02:27:01.071000','2019-07-01 02:27:01.071000',5,'Arnulfo Leon','https://lh3.googleusercontent.com/-aUKTjVnEDLU/AAAAAAAAAAI/AAAAAAAAAAA/6Q_4Byuhgxw/c-rp-mo-br100/photo.jpg','13486358490203335051',906),('AIe9_BG84YPnR8vhxeJfV_lAYVNiC-XOlRsdgq4y48KwEa-QQcOehr-c_D3b8Bw7ytdLJbqMvhc0qP9G5K0U6uYUAawqxRD71M2BXAX62SwTizspzasv6VQ',NULL,'2020-07-22 20:14:04.985000','2020-07-22 20:14:04.985000',5,'Jakara Bryant','https://lh4.googleusercontent.com/-N2CUK3HXA0g/AAAAAAAAAAI/AAAAAAAAAAA/Tp6p3iu16Es/c-rp-mo-br100/photo.jpg','8918455867446117794',22302),('AIe9_BG84YPnR8vhxeJfV_lAYVNic0yY0-lpXjPFUd2erDeTa-sQGi3ow1G-L-kjNAa2LSlzjbzbhuR0SoIbLSUAlIy1-t6jTIut9Yw9lFmwlUEgo_7UYNE','Susan R is a great nurse. \nEr Tech Daniel was so great with our daughter he explained what he was doing \nWhen we checked in and out Tanisha was awesome and so helpful\nThe whole team was good \nDr Do and. Laura H . Thanks for taking care of our daughter.','2019-12-18 15:18:54.344000','2019-12-18 15:18:54.344000',5,'Maria Vasquez','https://lh4.googleusercontent.com/-VrMUvLFPr-0/AAAAAAAAAAI/AAAAAAAAAAA/TzdsxDNrBaU/c-rp-mo-br100/photo.jpg','17898197009688164559',5350),('AIe9_BG84YPnR8vhxeJfV_lAYVNiC8GYQjP4OQ9i0bXCvwZVtjZY21oP9rLO0ShRjB3GmAB0Ct48LVdpQ538134zoMIpZ_hIYkHT_lynH035_Jrnm-DVkis','Signature care Stafford was truly awesome. From the moment I walked in I felt as if I had been before the receptionist was very respectable and polite the nurses got me seen quickly as well as leaving with no copay in less then an hr I loved the experience and the people assisting me','2019-07-06 21:54:13.615000','2019-07-06 21:54:13.615000',5,'Aja Plair','https://lh6.googleusercontent.com/-yhojCnTzarY/AAAAAAAAAAI/AAAAAAAAAAA/kPa2e882ZuA/c-rp-mo-br100/photo.jpg','8918455867446117794',9094),('AIe9_BG84YPnR8vhxeJfV_lAYVNic8U9RA5mBosG9PjzLd9pa9Q03q0Cwm7D4Dey2uyg5c0JKIBqXWXoepscXb2yJKZgXIiL6pKWsx1En1jFxltWn470KzY','Brought my 3 year old in for pink. Nurse Kat and Dr Jones did great with her. She can be a handful and they worked amazingly with her. It is greatly appreciated. The reception was equally accommodating with us and super nice. Will definitely use this clinic again if need be','2019-07-04 01:18:08.778000','2019-07-04 01:18:08.778000',5,'Gabrielle Rios','https://lh4.googleusercontent.com/-X_zHPFocgqo/AAAAAAAAAAI/AAAAAAAAAAA/aG9Z_jVfgJ4/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',6121),('AIe9_BG84YPnR8vhxeJfV_lAYVNicafVSwUt2AQH6PL4Rl53_8IO_Gayb8amIhKk2xHHU6w_GElHAaWQG02Gn6qwPoMv90SyxUZ8acQUOrRREXPVpPhTTiI','Dr. Ybarra was outstanding! Very professional, warm, concerned, informative, very detail oriented during our visit. He was extremely patient and calm, and took the time to answer all our questions and address all our concerns, at a time when we were very stressful for us. I would recommend Dr, Ybarra to anyone, he’s a true Doctor!','2020-02-04 01:32:57.112000','2020-02-04 01:32:57.112000',5,'WIlliam Sellers','https://lh5.googleusercontent.com/-HZT_hNm3W8E/AAAAAAAAAAI/AAAAAAAAAAA/4MmtyZxoqs0/c-rp-mo-br100/photo.jpg','8679688254631342173',14764),('AIe9_BG84YPnR8vhxeJfV_lAYVNicBi6z5QdSw9fuOvfie9_W0fRPVoUpW0CW6cXVdSFxEYG_Ls0b9-ItJmpG2Il5uW8C6SUstOSq1LC-Vlb61K2k0bGa5U','Recently went to signature care off Slaughter... As soon as I walked through the door I was greeted with a friendly face. They took my information and not even 5 minutes later I was in the back in my own room. They asked if I wanted anything to drink, and provided me with a blanket. Turns out I had tonsillitis... They quickly prescribed me some antibiotics, and gave me information about the signs, symptoms, and was to treat myself. They were very nice, and even shot me and email, and called to see how I was feeling. I haven\'t had any other place do that before! TEN THUMBS UP!','2018-12-10 19:47:11.543000','2018-12-10 19:47:11.543000',5,'Andy Medina','https://lh3.googleusercontent.com/-bZGYyPRddbE/AAAAAAAAAAI/AAAAAAAAAAA/tSoc6r7re2E/c-rp-mo-br100/photo.jpg','16891069708558046635',4388),('AIe9_BG84YPnR8vhxeJfV_lAYVNicbVEHdnoZ3tI5pGevBS0A1jg7fda5J12e6OLlhe-DajGkB3QDXNfJlwIlfhNHpP48zBwdZCTpkIs3tAf9T8amdmIk-g','Great staff !\nEveryone was very profesional and courtesy. Thank you for making my visit a pleasant one. Thank you for your hard work and commitment to taking care of us.','2020-07-10 03:22:29.975000','2020-07-10 03:22:29.975000',5,'Rene Gonzalez','https://lh3.googleusercontent.com/a-/AOh14GhGI4_fMrjNE7ZA5XLUc0PzqG_CQySVjyC6AVQw=c0x00000000-cc-rp','16389487648212004696',21967),('AIe9_BG84YPnR8vhxeJfV_lAYVNicDPiQuq8IEWrvUrRdI22PDgg2wzlbj80YDwGMSiF29nkDojnwClXQf0tLpcmNf9gV5DCtbWGWHMz82hQnhBZdf8nAs4',NULL,'2019-11-28 20:35:36.649000','2019-11-28 20:35:36.649000',5,'alexandra ortiz','https://lh6.googleusercontent.com/-RAIBnyumcLc/AAAAAAAAAAI/AAAAAAAAAAA/DyKxWepSszU/c-rp-mo-br100/photo.jpg','16389487648212004696',2612),('AIe9_BG84YPnR8vhxeJfV_lAYVNicEFjBOWpaDfrmGq8XdHm2XEW44yaEm4qOcgt1Occ8p8pXNhg0hKDN7qat7rkP1buFXphQxDNIpOfFurJTT435s6MT-I','Worst experience ever , dr. Huerta did not even care what was wrong with my girlfriend. She is dying in pain and he thought and assumed she was putting up an act. We went there to get help and we walked out with nothing but anger. He stated that she was a non emergent patient, so they charged us 1000 dollars , it’s unfortunate for us Americans who can not afford healthcare. That man does not deserve to be a doctor, a doctor is a privileged person who supposed to be helping his patients and we did not receive that at all. Thanks to him she has to suffer on a day to day basis . She can not have a normal day because she has several different problems that is affecting her life. The saying that states you never know what a person goes through until you walk in their shoes , he does not know what she goes throughout her days . I hope he sleeps better at night knowing that she is suffering. The lesson I learned when I walkout of this place is that no one will care to treat your pain unless you have money, this is one I will never forget .','2019-12-01 00:44:13.629000','2019-12-01 00:44:13.629000',1,'Joseph Bolanos','https://lh4.googleusercontent.com/-WqSYWFvOk2E/AAAAAAAAAAI/AAAAAAAAAAA/2lZ__bEPcAI/c-rp-mo-br100/photo.jpg','13486358490203335051',711),('AIe9_BG84YPnR8vhxeJfV_lAYVNicFkCemifAjA-qK9_cdWkYFcdocs_C-ZPlLr387MGazdIZSlm0pEs0wk_E9vAEg1C4yPW9VuVN5PJ7d6MqRXV-R33OX0','I was in significant pain when I arrived at 230am. The staff worked quickly through the paperwork and had me in the back within 5 minutes. They were knowledgeable, professional and genuinely cared for my comfort and well being. The facility was beautiful and overall it was an excellent experience. I’m so glad they’re in my neighborhood!!!','2018-07-13 14:26:45.864000','2018-07-13 14:26:45.864000',5,'Cayce Colley','https://lh3.googleusercontent.com/-ea7QAFZwuqU/AAAAAAAAAAI/AAAAAAAAAAA/nyp3etYqKD4/c-rp-mo-br100/photo.jpg','14567670160750071148',1602),('AIe9_BG84YPnR8vhxeJfV_lAYVNiCi7lVo8PzIX7iQp5OxmEYfEAzVVDCHsQHKp99BHaXjSGktf_Fz8WOy7GPj8im8999WcSKB61ZXckcRjMDVeveKDMv6U',NULL,'2019-02-02 20:58:32.808000','2019-02-02 20:58:32.808000',5,'Kevin Preza','https://lh3.googleusercontent.com/-FftPRFcWf80/AAAAAAAAAAI/AAAAAAAAAAA/lpWL4LrhPs8/c-rp-mo-br100/photo.jpg','17394740196501090048',4725),('AIe9_BG84YPnR8vhxeJfV_lAYVNicIppBhQ4zHyT1MO-LwKbzKmbXMTD_3raVtdUrNUunN32QcHqqy3XtYbqwibZ0O0iMrypFBJJ2AFoC5f7w8-gHf9pfpk','Dr. Golla, nurse Carissa, nurse Betty, Janet, Derrick, and Jocelyn we\'re all great! Each staff member took care of my needs in a professional and timely manner. Would hate to go through it again but if I did, I\'d go here.','2017-06-19 16:25:31.878000','2017-06-19 16:25:31.878000',5,'Ernesto Rodriguez','https://lh5.googleusercontent.com/-_KH6NZ-rJxo/AAAAAAAAAAI/AAAAAAAAAAA/NfUm5x7MVLw/c-rp-mo-br100/photo.jpg','17394740196501090048',5031),('AIe9_BG84YPnR8vhxeJfV_lAYVNiciRmxx0SuwDxq6PI7b24-s3R-PPwo2W9dUvNZEKWcA1uorQM9pC14p_qiaNuoRQzarxeoc8rJfKAHyi1KGPDu84O_uA','The patient rooms have all the same setup and equipment as any trauma center so they have you covered.','2019-03-15 03:38:14.764000','2019-03-15 03:38:14.764000',3,'Mary Zhang','https://lh5.googleusercontent.com/-pupNeOxFUkg/AAAAAAAAAAI/AAAAAAAAAAA/6J6mrvSEfLE/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2158),('AIe9_BG84YPnR8vhxeJfV_lAYVNicME9UbQ6FWN-U-8H6_tFIVD6UeXuS2VsZW94qFxUpseDMpg1CvsSuUwnrcYRyvZJR2EFkYUdvzyDIQbUDqXgeF_vJ8k',NULL,'2019-05-15 21:54:19.486000','2019-05-15 21:54:19.486000',5,'Jearmey Morgan','https://lh5.googleusercontent.com/-uG6g6M3AJdg/AAAAAAAAAAI/AAAAAAAAAAA/cUyx7I77ehw/c-rp-mo-br100/photo.jpg','8626688543755174284',8485),('AIe9_BG84YPnR8vhxeJfV_lAYVNiCmmEzslJ5Z5NjUEIEmTc-cxK7CAqLteKAPAc2boJGjxL5TnzrKIK3JwVg40Tk8cnibkWE-uKiVAU9z1MgexGs8lTF9A','Jessica Sanchez was so friendly! They staff was so nice and I was taken back really fast! My nurse Georgia was amazing! She made me feel safe and cared for while I was in the ER. Will think of them anytime I need emergency care!','2020-07-21 16:33:17.771000','2020-07-21 16:33:17.771000',5,'Tamara Shipp','https://lh3.googleusercontent.com/-6aOQ7OL64uA/AAAAAAAAAAI/AAAAAAAAAAA/pUED26xX7yQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21618),('AIe9_BG84YPnR8vhxeJfV_lAYVNiCncTjZim35jOhBi_tvZET6_Nd4ZXqU-ESlSOIwPFY-WfFsafAfg77faScFK3qotA_3dwYlLrtZAvytX-Ed13jt-vFdk','I had a GREAT experience! Friendly front desk staff, nurse and doctor. I will recommend to my friends!','2017-06-01 19:00:50.706000','2017-06-01 19:00:50.706000',5,'Ginger Przybyla','https://lh5.googleusercontent.com/-174ifX_4Pw0/AAAAAAAAAAI/AAAAAAAAAAA/binx1LNuRNQ/c-rp-mo-br100/photo.jpg','14567670160750071148',22497),('AIe9_BG84YPnR8vhxeJfV_lAYVNicnNjO4I6gIvQi3ighpjGqAnRHkt7ez1j_bZt9P3JIKsdI_VnTb1BLztASraZDpDe5Aa3n4Y7pTGLX2lbB_DEOUFpgxg','They were quick, very nice, clean and very informative. They was no wait on a Saturday morning, the doctor and nurses made me feel very comfortable even with me being in so much pain.','2016-12-14 02:45:13.742000','2016-12-14 02:45:13.742000',5,'Mary Guiton','https://lh6.googleusercontent.com/-v76p3nAgqZ8/AAAAAAAAAAI/AAAAAAAAAAA/sViG2epk0xE/c-rp-mo-br100/photo.jpg','17394740196501090048',5150),('AIe9_BG84YPnR8vhxeJfV_lAYVNicojGvuciRRUTWfdDSTM5p9S76Y-6bzoBMgFwnvOAHyfZI8Ne0RN7o9GXEQIVVn3hjvgSAv5kOsdu9b19nF-lvu-_b3Q','This location was great. Jocelyn quickly greeted us when we walked through the door and for us checked in. Robert was great. He did a quick assessment of my pain and gave me an immediate solution. Dr Appiah checked me out and gave me great follow instructions to make sure my issue was resolved. Thank you guys so much.','2019-08-31 17:15:59.750000','2019-08-31 17:15:59.750000',5,'Arnelia Short','https://lh4.googleusercontent.com/-eWC3Hbispus/AAAAAAAAAAI/AAAAAAAAAAA/k4OU-xDjzyQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2957),('AIe9_BG84YPnR8vhxeJfV_lAYVNicP1QD36t6saL5Qag3ksqut5_qQ6Yql-5w_1mt0YxLBafdxXkam-Yc0ipCgSEccGyAXNQYMANwtKIg9Zo7UUjExJPFUk','Had an absolutely wonderful experience! I\'d be willing to break my arm to go visit again! They were so kind to me from the start. I was in and out in no time!','2019-07-14 16:18:06.487000','2019-07-14 16:18:06.487000',5,'Lissette Molina','https://lh3.googleusercontent.com/-gpnTlDRWHLA/AAAAAAAAAAI/AAAAAAAAAAA/jMaR3fplAYI/c-rp-mo-br100/photo.jpg','2694018788013845459',6110),('AIe9_BG84YPnR8vhxeJfV_lAYVNicqcffOCE-iEqUlF8XNBggCQOdvEF65n1V1se4odRzA-ica1AtMdVE1_bh66BlzVCo44LGPycparYBIP7ESovMctKxNw','Doctor and nurse very helpful and kind. We were in and out, everything was so quick!','2019-10-20 01:56:01.828000','2019-10-20 01:56:01.828000',5,'Jaime Guillen','https://lh5.googleusercontent.com/-GB9nTk2YWOk/AAAAAAAAAAI/AAAAAAAAAAA/WoWD8HfltIQ/c-rp-mo-br100/photo.jpg','12541597562633926366',396),('AIe9_BG84YPnR8vhxeJfV_lAYVNictgqzylo7xw_AsNHk4g7U2_re-MAmQc34gfl0Kk83FhlC25hg5odpz4h7aiokUMSDmEYEc6pF6KLhfOIHisV7OR6V-c',NULL,'2018-08-05 22:12:51.488000','2018-08-05 22:12:51.488000',5,'melinda birdsong`','https://lh6.googleusercontent.com/--bK4stzp_Jw/AAAAAAAAAAI/AAAAAAAAAAA/CCp9nQ9zedE/c-rp-mo-br100/photo.jpg','8626688543755174284',8643),('AIe9_BG84YPnR8vhxeJfV_lAYVNiCv2Nlze9xX07Xa4VgaEfa7xkqEL9PXtLhaqMVqi1MRaZxZTd5CE6WmpyRBBdo_yRZ0sJ4ptekZpxmankLswcUa072Ms',NULL,'2019-10-10 23:15:35.975000','2019-10-10 23:15:35.975000',5,'Denise Priar','https://lh3.googleusercontent.com/-EK0guuJ7Xrs/AAAAAAAAAAI/AAAAAAAAAAA/OFoiDbzDrzQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2830),('AIe9_BG84YPnR8vhxeJfV_lAYVNiCVMzmvmv6cXoV6Y9xRIw_Lo0k4LljRmv6pGPeh1PBlnaJKWijmD1otTmBhMKhsFwnbcG40GgCAlRA4nHHfALpCeoBJI','I had a fantastic experience at Signature Care. From the very beginning. Ana at the registration desk was very friendly. Irving the nurse seemed very sincere. The ER tech Nelson checked on me often. Sharesa took great care as she did my x-rays even though I felt silly. I can\'t say enough about Dr. Zhen she was very informative,sincere , charming and made me feel very comfortable even though I felt bad. So I want to say thank you all for a great experience in a bad situation.','2020-03-08 04:28:39.149000','2020-03-08 04:28:39.149000',5,'David Thompson','https://lh4.googleusercontent.com/-yw3cpMO6toU/AAAAAAAAAAI/AAAAAAAAAAA/hy3geo8COYQ/c-rp-mo-br100/photo.jpg','12541597562633926366',13305),('AIe9_BG84YPnR8vhxeJfV_lAYVNiCvPLptRhwTYgvhMEzWw2WChywoMIpmMuIODCK1Ww45eAMAUW6MP_qJA7GSleRhi9Umrbxx7qZP2W7GPHq4Fngd4jSKA','A week an half ago my Friday started off normal until about noon. I thought I had the stomach flu but the pain was not flu like. By 7pm my partner decided i needed to go to the ER so off we went to SignatureCare. I have been here several times in the past and was treated incredibly well. Dr Jaber Noor, Nurse Meredith, Sheres and Tania did a great job making me feel comfortable and assured me they would get to the bottom of what was going on. I ended up having appendicitis, requiring emergency surgery the following morning at Herman Memorial Greater Heights Hospital. I had to spend the night in the ER to make sure the appendix didn\'t rupture and so I could be closely monitored. The SignatureCare team set me up in my room made sure I was comfortable and help me manage the pain I was in until the next morning. They coordinated with the surgeon Dr Ratcliffe, who visited me that night and explained what he was going to do and answered all my questions. They worked with the hospital so that all I had to do was go to my room and the nurses would be waiting for me to check me in and get me ready for surgery. It was the best experience considering what I was dealing with and the team at SignatureCare made it so stress free. I can\'t thank them enough. I would not hesitate to refer others to this location for medical emergencies. Thank you again team.','2019-08-14 21:24:18.570000','2019-08-14 21:24:18.570000',5,'Chris Mulcahy','https://lh3.googleusercontent.com/-4pLvUqWVIyk/AAAAAAAAAAI/AAAAAAAAAAA/U47yH2yPD8U/c-rp-mo-br100/photo.jpg','14567670160750071148',1256),('AIe9_BG84YPnR8vhxeJfV_lAYVNiCwsfLiQ1mvGczBuMuZUCJJBkSTl2KdKmq4DERrqFz0CnuC-zXdn4KOyFg97D6GsWiJg-Q_DsxAg1Y-q1eAOManDSsAo','(Translated by Google) Dr. KOTEY, Robert the nurse, amy the receptionist are very friendly!\n\n(Original)\nDr. KOTEY, Robert el enfermero, amy la recepcionista son muy amables!','2019-03-18 10:42:57.171000','2019-03-18 10:42:57.171000',5,'Carlos Martinez','https://lh5.googleusercontent.com/-jhmRNjGjICE/AAAAAAAAAAI/AAAAAAAAAAA/3wd3Sf86oS8/c-rp-mo-br100/photo.jpg','17394740196501090048',22700),('AIe9_BG84YPnR8vhxeJfV_lAYVNid_nc68Ehwd6qffbqZPTKNwysu9oz5wFC2tdhf7idT0hdM6FNPh10nxMveXlz89ExrfQLKpuUYsSEHdKxT4CX_T-j9eE',NULL,'2019-05-14 00:59:45.175000','2019-05-14 00:59:45.175000',5,'Dawn Singleton','https://lh5.googleusercontent.com/-re6eLBd1ivo/AAAAAAAAAAI/AAAAAAAAAAA/eFGCudBCJxQ/c-rp-mo-br100/photo.jpg','13486358490203335051',1008),('AIe9_BG84YPnR8vhxeJfV_lAYVNiD2opzUZr9dXp62kGVkxw5wRXQs5lLJvpgRD1YpmnetiRE159jAnAqIUC1xONu7fDQbkJZhJqyGKnqFDYrgaBjcZiap0','From the moment I walked in, the staff was alert and were genuinely concerned about my emergency needs. I was in and out of the there in No Time.... Actually less than an Hour. Thanks Again','2019-01-28 12:29:39.082000','2019-01-28 12:29:39.082000',5,'Toya Demouchet -Palmer','https://lh5.googleusercontent.com/-nrlrf8FgaWI/AAAAAAAAAAI/AAAAAAAAAAA/girgfIti6xI/c-rp-mo-br100/photo.jpg','14567670160750071148',1400),('AIe9_BG84YPnR8vhxeJfV_lAYVNidCt7640l14T_OQOKWT-3BvZw70qZalXKRTXZeGYwRNjkAb4r4n7B-76JZGB2Ur95Het7ugCMHV_ufnqZYCG2tTeo2oQ',NULL,'2019-02-19 11:18:36.925000','2019-02-19 11:18:36.925000',5,'Antionette BUFFIN','https://lh6.googleusercontent.com/-OrOaaQdRfH0/AAAAAAAAAAI/AAAAAAAAAAA/M_euSLnKz40/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',548),('AIe9_BG84YPnR8vhxeJfV_lAYVNiddnSmryV5RMhkPE2Vq_U2U-TSt-y4yddFBXomH-tI_UKhcFziBAUKGVUxYkr48MS5ZFGkBTVtB3sABZPeEo0_BmWMho','Great customer service from front desk and doctors! All patient and attentive. Made everything so clear. Thank you Rashaad, and Dr. Wang','2020-05-17 04:37:44.119000','2020-05-17 04:37:44.119000',5,'Yasmin Cabrera','https://lh5.googleusercontent.com/-OPCZCJ9kkYU/AAAAAAAAAAI/AAAAAAAAAAA/rABEt3g8BUQ/c-rp-mo-br100/photo.jpg','17394740196501090048',22088),('AIe9_BG84YPnR8vhxeJfV_lAYVNiDF05ITXlh5--pZGdj0bFbYjUD5smv6-rlThTId4yy4PsPsak6GQYhR3-VB2UEwLUU93IJstEJ_6ug2Db0q-PaNWSsHA','Very nice place, very helpful, but the medicine they prescribe is not helpful','2019-06-24 18:04:44.005000','2019-06-24 18:04:44.005000',4,'Cheryl Johnson','https://lh4.googleusercontent.com/-BA34eXNfd9Q/AAAAAAAAAAI/AAAAAAAAAAA/Gv_yS2VEZxI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNidGTKQ-mVIeTQOjhGgPZp-HMUPLw9lv3CCbiqrxJPZIc4WlfpgC8YqHybnpXbc7nSOkWOvCef1aBYRz2G1L2LH1HLPb4','Had a great experience here. They were very attentive and caring.','2020-02-11 18:47:15.071000','2020-02-11 18:47:15.071000',5,'Julie Tucker','https://lh6.googleusercontent.com/-QhK0DsZt2_E/AAAAAAAAAAI/AAAAAAAAAAA/zjV4HFk5SlI/c-rp-mo-br100/photo.jpg','2694018788013845459',14241),('AIe9_BG84YPnR8vhxeJfV_lAYVNiDhBxzRtXsO_bBtLifmW6C1ZZDYcpL0LryYMJE63ITixz-DRSeyGBWjvm7vIug9GVnd1eOvu1M7OBJZJzG3JM7t4J_sk','JESSICA SANCHEZ WAS AMAZING. VERY SWEET, KIND AND PROFESSIONAL. TOOK REAL GOOD CARE OF ME AND MY MOM. THANK YOU VERY MUCH!!!','2020-07-21 16:08:07.652000','2020-07-21 16:08:07.652000',5,'Jennifer Nagg','https://lh3.googleusercontent.com/-LDydvG6ZukU/AAAAAAAAAAI/AAAAAAAAAAA/e-hhivFXWrU/c-rp-mo-br100/photo.jpg','14748677429039074158',21621),('AIe9_BG84YPnR8vhxeJfV_lAYVNidkLNSEnZegIS7FsPr6hkCRJglX_JbZnOZdeAc0gNNmpMWKbyzeplZ_IPQZ9h3E5Bk73x3C-bgmTnA2VLZJqynAE0WIs','Awesome care center! I was having an allergic reaction and I didn\'t even get done with my first page of paperwork before I was being taken care of. Doctor Miller showed an incredible level of respect and care, made sure I was comfortable and let me know exactly what was being done. They gave me great take home instructions and I felt fine by the time I got home. The room was very clean and the whole operation was very organized.','2019-01-12 17:08:26.358000','2019-01-12 17:08:26.358000',5,'Paige Tidwell','https://lh4.googleusercontent.com/-PieRMVdGXkM/AAAAAAAAAAI/AAAAAAAAAAA/sKHF-BTgiK0/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1422),('AIe9_BG84YPnR8vhxeJfV_lAYVNiDKRwZ2E2Xox2BuHAg-MBbd6jikLtpLvfQnXoNvCwRyZ2YCPW8JqAdPSS-FlIhOY9QevVisH761qnm76s79jHWAs6fHs','Great staff- have done a great job pivoting with all of the COVID stuff. Jessica Sanchez was particularly kind!','2020-07-20 13:41:13.254000','2020-07-20 13:41:13.254000',5,'Kate Paty','https://lh3.googleusercontent.com/-DcJvDd8JuUA/AAAAAAAAAAI/AAAAAAAAAAA/E1y9-49f20E/c-rp-mo-br100/photo.jpg','14748677429039074158',21676),('AIe9_BG84YPnR8vhxeJfV_lAYVNiDmLUfWcS0L82PKLFMe-bAZBbz5TaTW6I8NFSE6cpzJVTTC5iTIrXZ8IcFxqAWCTqIfzaY2gj_DJ49YsvPHNuoY3yoxE','I visited SignatureCare in Montrose very early in the morning and the staff was absolutely wonderful! They were very friendly, warm, and accommodating. I was in and out of there within 30 minutes and was 100% satisfied with the care provided. I even had a follow up call from the staff 2 days later and received a card in the mail about 2 weeks later wishing me well! Absolutely recommend this place!! You will not be disappointed! Thank you, Dr. Pattison, and your wonderful staff!','2018-07-28 04:39:29.772000','2018-07-28 04:39:29.772000',5,'Kelly Wall','https://lh4.googleusercontent.com/-PDizXipOoog/AAAAAAAAAAI/AAAAAAAAAAA/5wpmWY3cojs/c-rp-mo-br100/photo.jpg','3511292162159714121',7681),('AIe9_BG84YPnR8vhxeJfV_lAYVNiDO4f8IlWY9JMWzNnXBdPTjBpTqUB3Am6KwsDR90k8PEQAyuwG_-PspvZDWGGJIJnUSNW09gqhFKFFTynB0UvQOpEJCw','Very friendly and super quick service!','2020-07-26 17:00:45.276000','2020-07-26 17:00:45.276000',5,'Just Me Rylee','https://lh3.googleusercontent.com/a-/AOh14GiaOe4CDB97j-dKJeVqeI-LaizaG1FIxzNRoQcX=c0x00000000-cc-rp','8918455867446117794',22289),('AIe9_BG84YPnR8vhxeJfV_lAYVNiDomLBVLjtzb0STjxFQilNXG2dMS13uVbz-8EVbpYVpanhguqJgz13keyOFg47ywAE-vR4rnz38ta2Y7OopM5f9he8AU','Good experience.. they were fast and helped me with my problem','2019-05-22 03:46:05.235000','2019-05-22 03:46:05.235000',5,'Gilbert G','https://lh3.googleusercontent.com/-KAqbDt-oV_w/AAAAAAAAAAI/AAAAAAAAAAA/zRvI0DJQNug/c-rp-mo-br100/photo.jpg','6521947413723274945',8262),('AIe9_BG84YPnR8vhxeJfV_lAYVNidSBIC6bncvNZKCYpE00Syx2ONWH9Ez8DofkBRr7bfKjdm9cGtkkNQ1LwvTyLGz5ktUMoaijGmj3Llf8jVLATO5nm5Ec','This is my first time being here. I came in for a fever and sore throat and I would have to say that the staffs here are very welcoming and attentive. I was seen by Dr. O\'Malley, and 2 other nurses, I think their names were Patricia and Alvean. They were very informative and caring about my health concerns. They took time and answered all the questions I had. I love this place and the people here. Also, the clinic is very nice.','2019-12-26 16:33:40.039000','2019-12-26 16:33:40.039000',5,'Emily Anne Pham','https://lh4.googleusercontent.com/-Y-ndqnwPZVA/AAAAAAAAAAI/AAAAAAAAAAA/Rb4EpS5tcUQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2513),('AIe9_BG84YPnR8vhxeJfV_lAYVNiDUiq10Y23HSWFEdE15ahBosTNit2Jc0G-5_Rms_U3wqQIQh3DwxcpGa4ivVxCz7NYVAFd_UP0H_SaWYaz8azf7_zoIc','Dr. Patel, John, Jacque, Olivia, and Dee were warm and professional from start to finish!','2019-01-07 15:37:39.463000','2019-01-07 15:37:39.463000',5,'Marian Rosse','https://lh4.googleusercontent.com/-vcirNs8skvk/AAAAAAAAAAI/AAAAAAAAAAA/lxUXtD0qyTE/c-rp-mo-br100/photo.jpg','3511292162159714121',7511),('AIe9_BG84YPnR8vhxeJfV_lAYVNiDV2yyGlCC_HkXH_K-T-iAjiQf2VnPAYVbu6b-Bz4hB63e-IujQ555SCa2ZB2YDG2tuM5EzMxkY0YOo5SrZiZ-3kgqAU','I totally love this place. It clean and it has a good atmosphere. Fanny , Shelley , Heather , and Alexis are wonderful stuff . Dr. marldin was super friendly and he explained everything.','2019-01-09 05:22:12.000000','2019-01-09 05:22:12.000000',5,'Mary','https://lh5.googleusercontent.com/-LNYfMI8YOBo/AAAAAAAAAAI/AAAAAAAAAAA/a4CSm5GJBVU/c-rp-mo-br100/photo.jpg','17898197009688164559',5891),('AIe9_BG84YPnR8vhxeJfV_lAYVNidvQ59eYqW16i--EXaZYxoxod0cD6f39x43lRnCLiVx33rMytoAywIbhH-wNZ81NwrHVTC3e3tjmlM-veA86NxKeFFo8','Professional and friendly staff. Dr. Kotey, Ke\'Aire, Churiah and Josh were excellent and very helpful. Thank you very much.','2018-08-10 06:46:57.066000','2018-08-10 06:46:57.066000',5,'Andre Lee','https://lh5.googleusercontent.com/-sf2tTrSLHXg/AAAAAAAAAAI/AAAAAAAAAAA/RTVjVZrMKaM/c-rp-mo-br100/photo.jpg','3511292162159714121',7642),('AIe9_BG84YPnR8vhxeJfV_lAYVNidwU6C9SCH-9TCDZC1_2FL5rvxJ30m5I5LSgxQCKCuF1CclF-fWFYX1I4MS3Mj94HIP557bbxIlBg1B0d1W5PabmUon4','Everyone, from the front desk to the medical staff, made my visit exceptionally positive! So glad I chose this location.','2016-08-02 12:03:49.993000','2016-08-02 12:03:49.993000',5,'Alice Bohlae','https://lh6.googleusercontent.com/-LAMRAOyB194/AAAAAAAAAAI/AAAAAAAAAAA/gEzhKyL5cQw/c-rp-mo-br100/photo.jpg','14567670160750071148',1999),('AIe9_BG84YPnR8vhxeJfV_lAYVNidYGo7CnixhDkr1M8ZB-uIjtMS4wTcoNHpNH04dA_jam3vRlgbSgzHyOvmPBlhnZzVi6qA_uZQRzwAzhKNZaljYGi_U0','We called ahead before arriving and just how the lady explained over the phone our experience there was smooth. Thank you Dr. Leavitt, nurse Alvean, radiology Travis, registration Amy and ER Tech Keith.','2019-11-17 20:34:24.996000','2019-11-17 20:34:24.996000',5,'Rewa Honora','https://lh4.googleusercontent.com/--qD8eg-4Vo4/AAAAAAAAAAI/AAAAAAAAAAA/iA5UiSvBHJI/c-rp-mo-br100/photo.jpg','16389487648212004696',2669),('AIe9_BG84YPnR8vhxeJfV_lAYVNiE4MJmWNrDJEEmC1toaKWL4Edwmc1k677KQ747dgX3tXoSLZg_h0_0PUF1scwhXbnefARsA068eU6zqC7dx80G0tHxwg','I needed a ER quick and I found Signature Care ER online. Took me 15 minutes to get there. I was greeted by Olivia in the front desk who was very friendly and helpful. The nurses and techs Lia, Mary and Lisa were all so wonderful and caring. Dr. Thomas cared for me while I was there and was an awesome caregiver. I\'ve never felt this comfortable in an ER as I did at this facility. I will be recommending this place to my family and friends if we ever need to go to an ER. I absolutely loved this place!','2016-06-05 05:42:10.668000','2016-06-05 05:42:10.668000',5,'lougv43','https://lh3.googleusercontent.com/-qINKfYKdg0o/AAAAAAAAAAI/AAAAAAAAAAA/xwPNVliCAUU/c-rp-mo-br100/photo.jpg','14567670160750071148',2026),('AIe9_BG84YPnR8vhxeJfV_lAYVNieBgcmGU561YzNLYMJku2KzdKO8VPyYazI-6kK7tXF6R-0wqJCl7-QtXipsjgQ25l-CbtMUjg7EOj535V4nsJ7UDrUzs','Friendly and professional.','2020-07-01 20:28:44.491000','2020-07-01 20:28:44.491000',4,'John Paul Wappler','https://lh4.googleusercontent.com/-4LvHDmLUouk/AAAAAAAAAAI/AAAAAAAAAAA/Ea3ujmL_th0/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',21476),('AIe9_BG84YPnR8vhxeJfV_lAYVNieBgqtBWojahPCsd9vpJTPDi1ULR9pVaFOwEk47bV4HnEVmGL7rEl6VOUnC7uwiLbRVAgF9t373wOjQ1ShToZkwLbYds','Terrible customer service!!! They do the covid testing but they don’t want to even tho the place is empty. I was in contact with a person at work that has covid and came here to get tested to get results and share those news with the people I been in contact with. After telling the lady at the front desk I have insurance she said ok, but you’re going to have to for the test because you have no symptoms. She didn’t even ask me if I had symptoms or not, she just assumed that I didn’t. She said we will take your insurance only if you have symptoms. That is just ridiculous! I know people that had covid and didn’t experience symptoms at first and were able to get tested and use they’re insurance that’s what it’s for!!','2020-08-17 03:50:19.230000','2020-08-17 03:50:19.230000',1,'Miriam Mejia','https://lh6.googleusercontent.com/-bos5l_6DNNg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclCaQ34hVK0odOt6gE1EjsfPqW0aA/c0x00000000-cc-rp/photo.jpg','16389487648212004696',23041),('AIe9_BG84YPnR8vhxeJfV_lAYVNiebRy1IDpkTq-UPGPifC3tkpCksao7Sgl0--U49OJ4B_Zu9rppEMXeCoTuK5KvGxLjo31__A8TABLombEebkl27QVjnw',NULL,'2019-07-15 15:52:21.465000','2019-07-15 15:52:21.465000',5,'Erick Aldana Massella','https://lh5.googleusercontent.com/-glZLNaJd4is/AAAAAAAAAAI/AAAAAAAAAAA/j8TL3k0lckg/c-rp-mo-br100/photo.jpg','17898197009688164559',5632),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEc6qHNd32YmCt_DjhVuPByCk6BngLfx5Px3BDMcjr09nAjEvj2SbOfFo35xflhatXlF0aKA5ccefbpM-1B9XwEGo2hQ','Kind staff, good service. Comfortable environment. Kendra, Laura and DR Vakey made me feel comfortable and made me feel like everything was going to be okay I would definitely recommend!','2020-03-01 21:36:33.021000','2020-03-01 21:36:33.021000',5,'Ashlynn Budwine','https://lh6.googleusercontent.com/-uepTsdGDLmo/AAAAAAAAAAI/AAAAAAAAAAA/-n6drWHYwbc/c-rp-mo-br100/photo.jpg','16590124370714063921',13811),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEcGQpyduRpivOzMHG2zjOSEdOhGdJSI9mdNnoUvETpdd52RMxus5jdWuA1QTq4iv0Ld8ekhNtU3nPiTqxObsqTUwHEI','Staff is very friendly and have excellent bedside manner. They work well with small children made my daughter feel very comfortable and less afraid of being at the doctor.','2019-09-29 01:09:22.338000','2019-09-29 01:09:22.338000',5,'michelle hinojosa','https://lh4.googleusercontent.com/-CQR9WwLg53I/AAAAAAAAAAI/AAAAAAAAAAA/vWwyWweQS7k/c-rp-mo-br100/photo.jpg','13486358490203335051',805),('AIe9_BG84YPnR8vhxeJfV_lAYVNieCY3uN3GvVjtyItaamIUPksKlNhDaIniI2EX3oCd-75fWsEbb8trlMpbEdorFUWRZXMl0aIS0uvP3gweAFVhlLPrwZ4','Great experience! Employees Adam RN and Dr. Bare had great bedside manner, both very knowledgeable and friendly.','2019-03-03 05:27:22.891000','2019-03-03 05:27:22.891000',5,'Shannon Hurley','https://lh5.googleusercontent.com/-fm8q9u7343Q/AAAAAAAAAAI/AAAAAAAAAAA/x5OEaXfQjiI/c-rp-mo-br100/photo.jpg','16891069708558046635',4335),('AIe9_BG84YPnR8vhxeJfV_lAYVNieEYHsfxmAfesVra-6s383W6eFXPLPcGhhEPbHFQFlISlqhQE5nKgXzO9Pa2iXH-5nAI2mJQehCQu4GdRxOb7dnK6CkQ','Great Patient Care','2019-06-13 20:51:04.396000','2019-06-13 20:51:04.396000',4,'david mckemie','https://lh4.googleusercontent.com/-a7Fv9FiiXvI/AAAAAAAAAAI/AAAAAAAAAAA/G_85GWCyUJE/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1308),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEfKeO3jLfAkH2aVgUmiITLdIBVAvUH1opckUUYIkVUCOK-PGmnxmv2iCJenUGs6ktDR4Me5t3hFPFqjpLGcK-PSD-9o','After having a tonsillectomy Tuesday, this place has went above and beyond to keep me very comfortable the last 2 days when dehydration and uncontrollable pain set in. Andrew is very polite and caring! If the need arises again, I will definitely be back here!','2019-06-30 22:58:52.904000','2019-06-30 22:58:52.904000',5,'Brittany Hamilton','https://lh4.googleusercontent.com/-KgLFWuxIgJQ/AAAAAAAAAAI/AAAAAAAAAAA/LtuEFWa7aBU/c-rp-mo-br100/photo.jpg','13486358490203335051',907),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEfy20l5j1fb9Q_7dZ5WONiQVlJMEWnxtKcU6Kj2aNn698IdjSQV5cQ_Ld6ZjT5V14v--95F7SButm8CwkmEJf2zp2kg','They were excellent when they took care of me great staff.','2018-09-22 20:28:21.487000','2018-09-22 20:28:21.487000',5,'Kyle Shircliffe','https://lh6.googleusercontent.com/-VBodSuRWJZg/AAAAAAAAAAI/AAAAAAAAAAA/ATEswGNmurY/c-rp-mo-br100/photo.jpg','14567670160750071148',1495),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEG4lk71PrJSCSvFrhlmug1nU_Q6hoGbFj_0K-TEFVpjpwhFq0sPoU-5XMAKy6Lvd_DToHqr0__l-yk84oS6oSod_GQY','The whole staff was really helpful. Jasmine the receptionist was the best. Literally the best ER I\'ve ever been to.','2017-03-14 05:31:55.445000','2017-03-14 05:31:55.445000',5,'Zach Porter','https://lh5.googleusercontent.com/-hQDlxb62puU/AAAAAAAAAAI/AAAAAAAAAAA/4ZfPPWCOvkg/c-rp-mo-br100/photo.jpg','14567670160750071148',1868),('AIe9_BG84YPnR8vhxeJfV_lAYVNiehhxvhbOYsaqRDHZmdINB5FaokL1gEHMvkw4cZnNyWmqhyAkw2if2CMwh-lGXbw-40acVfoLJriRTAE8WyUJ8VPNIYk','Dr.zheng, amy, Jerin, Mchole the best service I ever got.','2019-07-05 23:06:14.867000','2019-07-05 23:06:14.867000',5,'yzedric fosha','https://lh4.googleusercontent.com/-DDJppu8VXQM/AAAAAAAAAAI/AAAAAAAAAAA/x4ENZqe8SmU/c-rp-mo-br100/photo.jpg','8918455867446117794',9096),('AIe9_BG84YPnR8vhxeJfV_lAYVNiElVJOOYDomLqxLZBfNWT9fkKlJx0z9oXFPG87-xxsBhbX_gujmik1nxKdS59zNw_ZZToWVHKyV89JvHmp6CHyFkGNIY','Maya, Kristina, Quyen, Scott were great!','2019-12-31 21:29:58.986000','2019-12-31 21:29:58.986000',5,'KayyG.Legacy','https://lh6.googleusercontent.com/-NUmjPRTYhT8/AAAAAAAAAAI/AAAAAAAAAAA/RUI1cuBAiIU/c-rp-mo-br100/photo.jpg','12541597562633926366',274),('AIe9_BG84YPnR8vhxeJfV_lAYVNiElwXFKIaRFB6sX0hDbnI5wB59UjgtckM52gy9xu6dR-0Fc8DfuI4KqDQcB8g4Xf0GIOCBXupsCC614tFbg1pbO2VBjA','This was my first time to go to a Signature Care Emergency room and I had a wonderful experience. I was greeted by Mercy, working at the front desk, and she promptly took my info and expedited the check in process. I did not have to wait to be seen, they quickly took me back and got started. Everyone was very helpful, considerate and professional! I was in and out in a little over an hour (that includes having a cat scan done and IV fluids/prescriptions written and everything) Would definitely recommend to anyone needing emergent care in the Houston/Montrose area.','2017-08-09 16:44:19.216000','2017-08-09 16:44:19.216000',5,'Angelica Diaz','https://lh5.googleusercontent.com/-8uSt3hPYOYs/AAAAAAAAAAI/AAAAAAAAAAA/ObtokVJ6p1s/c-rp-mo-br100/photo.jpg','3511292162159714121',7796),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEUCAoxSItA4jA8pU5PIOHX3FS82JqaQt5N14FuzQnUXp0hCmzVQnJBS92dnsHPE_mzSxc534seffG_tMQX5_1REPvtk','Immediate attention and great staff. They made the information clear and had a great personality!','2018-02-23 02:05:21.888000','2018-02-23 02:05:21.888000',5,'Kaylin Danielle','https://lh5.googleusercontent.com/-wDJZATQ8fTA/AAAAAAAAAAI/AAAAAAAAAAA/bEsAfJoWJEM/c-rp-mo-br100/photo.jpg','17394740196501090048',4878),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEuI36cjS4AR5gyf03819atr_zpbxWDrdWH9Ay4cBHVjlrTD709EqB3xiSzTbqIxQYqlLxsaLi6oYqm_TPzjWY22TFJc',NULL,'2018-09-21 05:31:44.787000','2018-09-21 05:31:44.787000',5,'Cara Hogue','https://lh6.googleusercontent.com/-vjxpeNIFkLQ/AAAAAAAAAAI/AAAAAAAAAAA/pIV7YOYpLO0/c-rp-mo-br100/photo.jpg','3511292162159714121',7587),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEus98_YFVTs8RCM_bStlfLV_rNZltcBTlKF7j2X-_sXqBDTY2wGQeBY60fXMXK7s3NOHuqhZHxq8rpuyT_VTZ4rSUeA','By far one the best ER experiences! Robin got me registered very quickly, Courtney made sure I was comfortable during xrays and Billy answered all the questions I had and was very informative. I recommend everyone to use them if the need ever arises.','2019-05-22 01:44:38.232000','2019-05-22 01:44:38.232000',5,'Jaime Hairrell','https://lh3.googleusercontent.com/-O2fYu47qjlk/AAAAAAAAAAI/AAAAAAAAAAA/Zjkc_1Y_9xA/c-rp-mo-br100/photo.jpg','8626688543755174284',8479),('AIe9_BG84YPnR8vhxeJfV_lAYVNieX8RzTdKoEf8RPsWgV-SxMQaV2olCMFaqBFqtxi1P4cRImOFn2vCmm4BI2WHZlZ5FiF-8gtzdMxzObyZKENesHVb6Rc','Very fast and friendly service. Clean environment, friendly staff and they really make you feel comfortable, even under less than fun circumstances. ','2016-08-29 17:29:57.670000','2016-08-29 17:29:57.670000',5,'Fabulously Flawed','https://lh6.googleusercontent.com/-4Dq7c7-pazo/AAAAAAAAAAI/AAAAAAAAAAA/6ZGYVtMZc2k/c-rp-mo-br100/photo.jpg','14567670160750071148',1981),('AIe9_BG84YPnR8vhxeJfV_lAYVNiexMgXeTnPJMJroOt4v9FZ80-EIKEl7SpfWZJy2jduf9R0QNZaIzNXkezFNmthQ4YlDTLBqWOeanRWAE9P8qjQUSWMf4','Great and quick care. Came in with abdominal pain and was quickly seen to and taken care of.','2019-06-21 06:19:00.307000','2019-06-21 06:19:00.307000',5,'Jd Tell','https://lh5.googleusercontent.com/-XF5IfGxaZZs/AAAAAAAAAAI/AAAAAAAAAAA/aFlLdFffNJk/c-rp-mo-br100/photo.jpg','13486358490203335051',944),('AIe9_BG84YPnR8vhxeJfV_lAYVNiEypavjMWLzk_McPS_N7kKl_AEk1RA0Cxtkk9WHiXrdxNp46QibTMdphMbJwNxdF6rDlEXIYr9Bvd4kv8oN5ocBGktwM','The service here is A1! They are quick and very knowledgeable. \nNurse Lynn was absolutely fantastic. Dr. Amy Patel answered all our questions. Tech Gogeo had a wonderful disposition. Jessica in Radiology has a true passion for service. Evelyn in registration is super sweet and welcome. \nI will definitely reccomend them to anyone that has a need.','2019-10-02 19:13:45.346000','2019-10-02 19:13:45.346000',5,'Chondra Burnett','https://lh5.googleusercontent.com/-ZE7I6PDs4vY/AAAAAAAAAAI/AAAAAAAAAAA/DWSOh_GeXw8/c-rp-mo-br100/photo.jpg','17898197009688164559',5524),('AIe9_BG84YPnR8vhxeJfV_lAYVNieZRqMarhKsk_50rYh1BfErzBhb-n2S_aEgk-4e5_oLUp941mJiu5ppj4zV9P_OrSu5zZ4-8kdpiUN4GDHAA5BL8YNq0',NULL,'2019-06-07 12:25:23.534000','2019-06-07 12:25:23.534000',5,'ray burch','https://lh6.googleusercontent.com/-JdQVD7237e4/AAAAAAAAAAI/AAAAAAAAAAA/lINHJJ0yxrk/c-rp-mo-br100/photo.jpg','13486358490203335051',987),('AIe9_BG84YPnR8vhxeJfV_lAYVNif3FKCwpQ7zbXrQiqFtnXu6C-qXe0YGn5nZB8uH-b2vD64NTZXi0ESc7U53Q4RNuCUOd1ukO338oyJAKYi-Eag_BoLYs',NULL,'2020-06-07 01:11:09.235000','2020-06-07 01:11:09.235000',5,'Syra Fazal','https://lh3.googleusercontent.com/-befkClHUVa0/AAAAAAAAAAI/AAAAAAAAAAA/PuKoDi-T--E/c-rp-mo-br100/photo.jpg','14748677429039074158',21772),('AIe9_BG84YPnR8vhxeJfV_lAYVNiF3Xu10Eg8JdVXBFsx_bU7uvHl-lNFBmHXC_ZSkST9IvtHxplR9-IiphxJwGO4tGZiw7RNzaBouvtTiAxwQ2qB9eJKVk','The staff here was so nice, and the card about how I was feeling . The Doctor suggested me a place to go for me knee. It felt like home.','2018-07-07 22:47:28.242000','2018-07-07 22:47:28.242000',5,'erma scott','https://lh6.googleusercontent.com/-HxIN-6PeZQw/AAAAAAAAAAI/AAAAAAAAAAA/Andwqmm1dNs/c-rp-mo-br100/photo.jpg','12541597562633926366',634),('AIe9_BG84YPnR8vhxeJfV_lAYVNif7JSqi6gzcXjcbN875U5QWQ00vnhGqMXjbS4IMP8zvqH5t0ti8JYJqosPFt3zvslgW9EX1aai-fq8_tmwE0aXJrUUS8','Kim , Allison & Jolynn was my care team. They did an amazing job making sure I was comfortable & feeling better. Thank you','2019-09-27 01:09:31.628000','2019-09-27 01:09:31.628000',5,'Akayshia Jones','https://lh5.googleusercontent.com/-CM3O1iz4Qbo/AAAAAAAAAAI/AAAAAAAAAAA/ZlMHKfgu5dk/c-rp-mo-br100/photo.jpg','13486358490203335051',813),('AIe9_BG84YPnR8vhxeJfV_lAYVNiFFVP9Om9vmdWZn2EuO8WfMMM4eLVvPNSfgzB-xpopbP8JexNMS8-Nj-Idz85UQDva3dDMp8_XmDCVFDvSYcDSNzwAts','My husband came in with his throat closing up and barely able to breathe. The staff was amazing and quick to help him. Patrica handed me paperwork and helped me quickly get to the back with my husband. Nurse Jani and the Rad Tech, Kelly quickly got my husband to a room. Dr. Nguyen started evaluating my husband and could immediately tell he had uvulitus. He had his team start medication to help my husband. The care here was excellent. We will be back for sure if there are any emergency need. Thank you all!','2019-12-20 16:37:10.148000','2019-12-20 16:37:10.148000',5,'Crystal Salinas','https://lh3.googleusercontent.com/-pGstpR9-fQ4/AAAAAAAAAAI/AAAAAAAAAAA/rXMIWpE4m_Y/c-rp-mo-br100/photo.jpg','16389487648212004696',2529),('AIe9_BG84YPnR8vhxeJfV_lAYVNiFg3i4BxKiOB2z45xo1Po1c_qG8K2TPB4AU_EBNolSFVQqZanYz_ung61cjDw_EvZgmoJxzjXSiGaHebUjXHpCgQns-A','I received prompt and courteous service at the front desk. I was quickly seen by a doctor and he explained what tests they would run and why. If I have any medical issues that I need immediate care for I will definitely return here.\n\nUpdate - Received a bill for over $2,000 a year after receiving care here. Partially my own fault as I was not aware that this was out of network. Any care here will be the same as going to an ER not an urgent care. If they weren\'t trying to be deceptive they wouldn\'t wait a year to send the bill.','2020-02-08 22:47:49.933000','2020-02-08 22:47:49.933000',1,'John Greff','https://lh6.googleusercontent.com/-CDtrF37JLws/AAAAAAAAAAI/AAAAAAAAAAA/k-Q5_uQMcsY/c-rp-mo-br100/photo.jpg','14567670160750071148',13545),('AIe9_BG84YPnR8vhxeJfV_lAYVNifgJLJ-eGskH1CSPymyJr5SLmWlzkauhTUw2ROIHCHQHIpGtLysfbSnX-tpZEJCFFkFDzJuUCUmPaBGLWAdcndiY7pA0','I would like to say Mrs. Courtney, Mess. Robin and Mr. Billy where very wonderful people and I would refer anyone to go here. Best thing that could happen to Paris. The doctors and nurses are phenomenal.','2019-01-08 06:09:53.089000','2019-01-08 06:09:53.089000',4,'Elconette Smith','https://lh5.googleusercontent.com/-u2dfwofEWGI/AAAAAAAAAAI/AAAAAAAAAAA/zSiof4gBFdY/c-rp-mo-br100/photo.jpg','8626688543755174284',8598),('AIe9_BG84YPnR8vhxeJfV_lAYVNiFnl1yv_utmdLaEUpE02TJOdZuwu-Ga6P2kLrSz4EcvXVpTUB_izqPbs1nVj8UOc_a4QaNiorrOXnluL-JZM_zEg9Wa4',NULL,'2019-01-04 03:40:26.521000','2019-01-04 03:40:26.521000',5,'Long Huynh','https://lh6.googleusercontent.com/-GkGyvWpsTzI/AAAAAAAAAAI/AAAAAAAAAAA/P1TdzsKfaVI/c-rp-mo-br100/photo.jpg','17394740196501090048',4750),('AIe9_BG84YPnR8vhxeJfV_lAYVNiFX8QkOYqeGTlUgAGrA4Dohbc9-J2LTb7pPPqYQZciFJDeFp5jqev4TD-dDykQ5YFIwWMi1YXI_io8n3GAPKEwVaOUDQ','Great place was great the Tanishia W was a great help when i walk in and I was a fast in and out services with great staff and nurses Sarah G and Dr.N Patel every nice and easy going','2019-11-08 02:29:47.670000','2019-11-08 02:29:47.670000',5,'Breanna Woods','https://lh6.googleusercontent.com/-_pzJ_W6-fqM/AAAAAAAAAAI/AAAAAAAAAAA/w9F43hum9Fg/c-rp-mo-br100/photo.jpg','17898197009688164559',5456),('AIe9_BG84YPnR8vhxeJfV_lAYVNifyKTP17VSt5D9UX_7zLoHhQtkFwuNNvHfRlMIUGOAT0WGvzFfduWl8h95dB8_mVPDAkSpt2gG9_EqbjxTwLxLlj08yo','I had a great experience here they didn’t let me leave until my pain was completely gone I would definitely be going back if I have any more emergencies great team!!','2019-01-24 19:27:01.688000','2019-01-24 19:27:01.688000',5,'Alyssa Chambers','https://lh3.googleusercontent.com/-TU-rEJ8fJj4/AAAAAAAAAAI/AAAAAAAAAAA/pR1VBn-isv0/c-rp-mo-br100/photo.jpg','17898197009688164559',5877),('AIe9_BG84YPnR8vhxeJfV_lAYVNifZSSk-YHCr7vEv9JOXUfWM70-a-VNtMXcG_ricWmynroi3J2EjjMFZnOM5p498z6Ae7ZfO114MD-tNLzS776VuYTFCI','The staff did a \"Fantastic\", job caring for me!','2016-10-25 22:31:35.970000','2016-10-25 22:31:35.970000',5,'Marilyn N.','https://lh4.googleusercontent.com/-85tnniftuWg/AAAAAAAAAAI/AAAAAAAAAAA/Ona_CxRdPkA/c-rp-mo-br100/photo.jpg','14567670160750071148',1954),('AIe9_BG84YPnR8vhxeJfV_lAYVNig4rn5ecDfkDoddUQwS1BwYsNa47SvPHL71urUSXB9RWElEPoMg36t3ApiAjuoC0982kr_X46kMod0zP1T07drIN3vfY','Norma at signature care are very polite and very helpful so choose signature care for your personal er','2020-01-25 22:42:00.355000','2020-01-25 22:42:00.355000',5,'Nellie Sickels','https://lh3.googleusercontent.com/-CfT5dB_UdZE/AAAAAAAAAAI/AAAAAAAAAAA/lsOkw8C_U4U/c-rp-mo-br100/photo.jpg','3511292162159714121',14447),('AIe9_BG84YPnR8vhxeJfV_lAYVNig5U0NlXE6_nxHIEhJ8qWWh4T04J3kJd65oly5dc_0kFFA-6GHBRy9PShs_5qAGOV7tTSSjVy1wUhoC-VYPrC0Gnxlrg','Great, friendly staff. Very professional excellence service','2020-06-20 21:27:49.036000','2020-06-20 21:27:49.036000',5,'Tad Golden','https://lh5.googleusercontent.com/-kKfyx09iKeY/AAAAAAAAAAI/AAAAAAAAAAA/vs0KKozCuQw/c-rp-mo-br100/photo.jpg','8918455867446117794',21228),('AIe9_BG84YPnR8vhxeJfV_lAYVNig6g0a0KQ8JWDyXamsLCIPXFaVY6qE4qbsjWf_lpft9jJy2yPN5VjL8d-bTidkWPNze5DbM2a9SIQxVRPv-rk28QOVBE','Everyone was so wonderful and attentive to me and it didn’t matter what the job title was. They take good care of their patients. I wouldn’t choose another place other than this one.','2018-09-05 22:24:55.941000','2018-09-05 22:24:55.941000',5,'LaTonya Trimmer','https://lh6.googleusercontent.com/-INqPCnUk8KA/AAAAAAAAAAI/AAAAAAAAAAA/eIDLJ7Ej6m8/c-rp-mo-br100/photo.jpg','14567670160750071148',1532),('AIe9_BG84YPnR8vhxeJfV_lAYVNigAgfYeOQB1d1Iw_BWxgWAFCMcH6SYWvR2cxuwyjdWxqDEi9biXAJWSSmSOw6oSk63HtljFVpogy7DPsA9cvFWF3U3A8',NULL,'2016-05-06 19:33:09.257000','2016-05-06 19:33:09.257000',5,'Adonis Jefferson','https://lh4.googleusercontent.com/-Jqn9eII3G2I/AAAAAAAAAAI/AAAAAAAAAAA/T90b0en1n9Q/c-rp-mo-br100/photo.jpg','3511292162159714121',8006),('AIe9_BG84YPnR8vhxeJfV_lAYVNiGanxv_TPYzq3SpboRPBTK-TwBrHk0rJAemQnYpQAgjG9ZKFbmos42cpsFTV6AT0rFp45d6oQYvB2WT2xBv3oEafJ9-E','My daughter called ahead of time about an issue I was having, The staff was quick and efficient. They had me in a room before I even completed the paper work. I was in and out in under an hour. This amazes me, usually a trip to ER is an elaborate ordeal. Thank you for your quick and personal service.','2019-05-13 00:30:07.050000','2019-05-13 00:30:07.050000',5,'Kathleen Palmer','https://lh6.googleusercontent.com/-MlBe0uaqSDs/AAAAAAAAAAI/AAAAAAAAAAA/Yoe6U9fR6Iw/c-rp-mo-br100/photo.jpg','8918455867446117794',9142),('AIe9_BG84YPnR8vhxeJfV_lAYVNigdwdiFAdDc8X4bFLWSNj8qMJ177G5Hlx1jQ7sQz89NpDMKmMKNBqt3CRM_8NyAQNvbZasFe50QzuXYE6u9vq02E0IK0','Great Staff! Doctor & Nurses...were amazing! We came from waiting 6 hours to get seen from a different location to being seen Quick!\nDefinitely HIGHLY recommend! 😊😊😊😊','2020-02-06 09:24:26.011000','2020-02-06 09:24:26.011000',5,'Kimberly Yvonne Guerrero','https://lh3.googleusercontent.com/-7fsC_PQ8BG4/AAAAAAAAAAI/AAAAAAAAAAA/D2vzUhdvb2k/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',13606),('AIe9_BG84YPnR8vhxeJfV_lAYVNiGhfEku8qaY8mABqIJYfKjjT5b7U5IKS3WD1p8iFPamcxhyuPZ26idm6KSO7NXKhor2-VpwBPUZ_oxysDrHq4wAvkt5Q','Great experience at SignatureCare-Cypress.\nUpon arrival young man by the name of Jesus greeted me, excellent patient services. No waite time before Heather took me back and prepared me for the doctor. Dr. O\'Malley and Tricia took great care of me, very personable, caring and professional. I totally recommend SignatureCare-Cypress.','2019-08-10 15:03:24.233000','2019-08-10 15:03:24.233000',5,'Lynnett Cummings','https://lh5.googleusercontent.com/-W4P2dmTUvWM/AAAAAAAAAAI/AAAAAAAAAAA/HIuBkyJIh1Y/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiGjdxK8-SyZrYELIfjl8n684UyJwxCHjU2ZL2znF-TrXCjSQnph52I9hYSm2A19_mW-_9gusFz3gxU8pl_Hn_ojTPlxM','Overall everything was great. Everyone was very friendly and I didn’t have to wait long.','2020-01-21 14:16:02.114000','2020-01-21 14:16:02.114000',5,'James M','https://lh3.googleusercontent.com/-K_bpMjEjLI4/AAAAAAAAAAI/AAAAAAAAAAA/hH3r_UoA1ms/c-rp-mo-br100/photo.jpg','16389487648212004696',10207),('AIe9_BG84YPnR8vhxeJfV_lAYVNigjvMUIoAnGb1dcqS0wK3JD_q6a6eE7oeLDLMbBgsF3msXCFwUaE8Z6mNPwgaK6_yl4Q6SMmCeMYoRYZDVcQqDkptZK8','Excellent experience! Zero wait time, we were seen immediately. Everyone was super professional and nice. Special thanks to Dr. Jaber, Josh and Elizabeth. Elizabeth was super welcoming and made our ER experience that much better. Thanks everyone!','2020-01-10 03:30:13.438000','2020-01-10 03:30:13.438000',5,'Kristin Velladao','https://lh5.googleusercontent.com/-FoQiTp27Ng4/AAAAAAAAAAI/AAAAAAAAAAA/lmF4XfYeyCw/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',14464),('AIe9_BG84YPnR8vhxeJfV_lAYVNiglSrHTc8a6Jlsfsgo2aqRFjR2ojLhRlNmWB_WMrlsVqI6p8uu4Ta5jWu5BL-1a4vKYWh4lYVztPxjfkqr4tqGhWpIRc','I was amazed how different the experience at SignatureCare was from a hospital ER. There was hardly any wait, and the care was exceptional. Dr. Akunyili and Nurse Moore were warm, attentive, and compassionate. The room was as comfortable as you could hope for in a doctor\'s office, and more private than a hospital ER. Highly recommend.','2018-09-07 13:29:55.955000','2018-09-07 13:29:55.955000',5,'elizabeth eakin','https://lh3.googleusercontent.com/-7VcJ1DdmoT4/AAAAAAAAAAI/AAAAAAAAAAA/4J07haCwJS4/c-rp-mo-br100/photo.jpg','3511292162159714121',7603),('AIe9_BG84YPnR8vhxeJfV_lAYVNiGQL1ZCqW5VZhmiG2c1M4UE-ubxb3BS9pPQmc2NGB9bB5EjPdoVQDMnQR2uhDtQBE5ldA3yvDuM1RkAllWslfr6o-pNE','Wonderful experience today! The entire staff was extremely welcoming, professional and compassionate. The service is top notch and the office space is clean. The moment you walk on you are greeted with a smile. I also called ahead and they were very helpful and took my information to prepare for my arrival. Dr Cauzos, Delicia. Yasmine, Duke snd Waldo were awesome ! A real súper team working together making the process quicker than traditional ER’s. I would recommend coming here and they are 24hours! Thank you so much Signature staff ! I will be back again and have a great resource close to home .','2020-02-05 22:17:07.433000','2020-02-05 22:17:07.433000',5,'Jen Smith','https://lh6.googleusercontent.com/-gIUaUUHZp5k/AAAAAAAAAAI/AAAAAAAAAAA/w00jtgY7wRk/c-rp-mo-br100/photo.jpg','8679688254631342173',14755),('AIe9_BG84YPnR8vhxeJfV_lAYVNiGR6LfOQ8g4kv1Z_bZA5UtDTv7C7AAak54OfUuBzlwPKiEtFF79okkcVhulKNGc21OdRQoZt2pbaCcO_STWYbU2sPQJA','We needed to be seen quickl . The staff is warm and welcoming. Thank you so much Maya for taking care of us when we need you all the most.','2020-03-11 12:48:05.758000','2020-03-11 12:48:05.758000',5,'Aja Chantal','https://lh5.googleusercontent.com/-lbBOLiXyvpU/AAAAAAAAAAI/AAAAAAAAAAA/0FNp51BhAmA/c-rp-mo-br100/photo.jpg','12541597562633926366',20912),('AIe9_BG84YPnR8vhxeJfV_lAYVNiGUPD-jU4Lzibu5RCFwuky6Sxx64qijpJlTB7O6LYxHoLxBxFXv-r9k_WUp4PpKvZcenwy3DpyD4L4gd7DgExQJMvn4I','Nurse Jessica and Dr Chowery were amazing and professional. They explained everything and the wait time was short.Great job guys thanks.','2020-07-20 12:42:34.885000','2020-07-20 12:42:34.885000',5,'Quincy McGee','https://lh4.googleusercontent.com/-dnc6FV99D-U/AAAAAAAAAAI/AAAAAAAAAAA/ebL8B4wFsdo/c-rp-mo-br100/photo.jpg','14748677429039074158',21681),('AIe9_BG84YPnR8vhxeJfV_lAYVNiGZF24eSO1YS4T2_Bs0n4ahc5s4xDeh-9KK1A4tbyM7TU4NrK7-NYZmOxX4w0IrTGCEtNDa0DKEhrv-6Hg7BRtZlex54','Had a great experience extremely helpful and welcoming','2019-01-06 23:37:42.523000','2019-01-06 23:37:42.523000',5,'James Mills','https://lh6.googleusercontent.com/-u8Xl9KFXhYI/AAAAAAAAAAI/AAAAAAAAAAA/r0lfNdTg0OI/c-rp-mo-br100/photo.jpg','3272657195432704501',7066),('AIe9_BG84YPnR8vhxeJfV_lAYVNiGzfEYLTvzoO-GUl50wOrp8RcVS1XGz_B-4BE6Ye4-GpugMJ01oBqgfvWp59aJVMZDZSrHgu8xjQ5Tp-D6DySMdeDYGE','My registration tech Ms. Jennifer Diggs was absolutely wonderful and curtious! She was quick to help me into a room and get my paperwork filled out! \nMy nurse Ms. Erica was very quick to to see what was wrong and very polite and very communicable about everything being done!\nMy tech Ms. Valerie was very kind and and caring! She was very helpful in making sure everything was done right and that I was comfortable! I highly recommend that everyone come here!','2019-01-10 17:36:51.350000','2019-01-10 17:36:51.350000',5,'kimberly christensen','https://lh6.googleusercontent.com/-wRH-EiU_DQg/AAAAAAAAAAI/AAAAAAAAAAA/SLg8AAPfMjg/c-rp-mo-br100/photo.jpg','8626688543755174284',8591),('AIe9_BG84YPnR8vhxeJfV_lAYVNiH1WEgp86zJTl2D2qobM_PEy27QRcINA-PgdFDh1Ilmfl2XZFS1rSY7SDIQwQioAJzfv5ZcMWpVb4ojwt1hk0rdpodJc','We have been to this ER center a couple of times and have been very pleased with the entire staff. We highly recommend this ER center to all of our friends and family.','2019-05-20 12:27:47.622000','2019-05-20 12:27:47.622000',5,'Chantel Conner','https://lh6.googleusercontent.com/-9vIOIMMqxak/AAAAAAAAAAI/AAAAAAAAAAA/nyWkBhz8smM/c-rp-mo-br100/photo.jpg','6521947413723274945',8272),('AIe9_BG84YPnR8vhxeJfV_lAYVNih7EqdZOPMyWP-pFRLR_T3HtaDjPvGM5XHVWHaYf19o02xjh4vtAgH__aHSQg8IKvpkLd9ZIgN3uxivs3YRQu1V19wUg','My husband had a very good experience. The staff was kind and helpful. They made what was a pretty painful situation, just a bit more bearable. He called me as soon as he left to tell me what a good ER it is and how he was very glad he went there!','2019-09-05 19:36:45.737000','2019-09-05 19:36:45.737000',5,'Becky Biehler','https://lh6.googleusercontent.com/-VqwOMX43e7s/AAAAAAAAAAI/AAAAAAAAAAA/dN9i3dRie4Q/c-rp-mo-br100/photo.jpg','16891069708558046635',4208),('AIe9_BG84YPnR8vhxeJfV_lAYVNiH9sBZ0acDe3os1Ywy8gcvgVeedwSGrqxG5f95wIr9UZ6_94_S1BLzXsF947XMNUAZdryRbjDlQYmy_24mHjgL-IA-GE','We had a very satisfactory and a warm experience at Signature care facility on our recent visit on a Sunday morning. They were quick with the paper work and we were attended soon. The on-call doctor and nurses responded patiently to all our questions. During those 2 hours our 3 yr old started getting anxious and impatient but the staff was kid friendly and helped us.','2019-01-30 14:17:24.030000','2019-01-30 14:17:24.030000',5,'devika joshi','https://lh6.googleusercontent.com/-KIOsk9XC9i8/AAAAAAAAAAI/AAAAAAAAAAA/PNjz17chcU8/c-rp-mo-br100/photo.jpg','16891069708558046635',4362),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHaB39d_TXj8Eg3buBGLBuuU_2cjTUJvRSsq4Cgv3i9MJS1C9DJtZkdXZvMG-F7ZWU3uTo9ExgeMJkxk8anY175UlW3g','I have not been feeling well for sometime, decided to get checked out. Unable to see my primary care physician, did not want to try anyone in my area. Worth the 45 min drive! The staff was very kind and caring. Everyone made sure i was as comfortable and my family members. You have amazing staff they went above and beyond Delfino, Gabe, Freddy, Dr Lingan. I will definitely be back!','2019-05-14 05:20:40.779000','2019-05-14 05:20:40.779000',5,'haydee pleitez','https://lh3.googleusercontent.com/-Shfztv__2ZM/AAAAAAAAAAI/AAAAAAAAAAA/fjlm7Tk5Lz4/c-rp-mo-br100/photo.jpg','16891069708558046635',4280),('AIe9_BG84YPnR8vhxeJfV_lAYVNihDDPzCAfjNdB-i7xG85V205gnaKWxKXwGEojfAzctCkx0G4vMLK6efs3dB3b5MMKZUzhrU7fyCNKWFYsppZZN3yC08I','No wait and super friendly, super professional and wonderful staff. I was given a warm blanket and fast service and was reassured and felt safe the entire visit','2019-08-24 03:51:01.425000','2019-08-24 03:51:01.425000',5,'Delia Alexander','https://lh5.googleusercontent.com/-a4SthaqQ-3s/AAAAAAAAAAI/AAAAAAAAAAA/e-ANqIeheBI/c-rp-mo-br100/photo.jpg','3511292162159714121',7192),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHIITe7yiZ2lr5Rf3dgfSkmf8F8avNwd3SofGQ0Um8PXqI4uuglzPjc0jFCb6ELxzOliG5MrPTtg2ADNehkBcB9EiD_o','We recieved the best in customer care and treatment. There was no wait, and it was a welcoming waiting area with friendly informative staff.','2019-06-22 04:53:54.310000','2019-06-22 04:53:54.310000',5,'LeA Jones','https://lh3.googleusercontent.com/-TwzzLsZAHqA/AAAAAAAAAAI/AAAAAAAAAAA/K4-uMfYXf1o/c-rp-mo-ba4-br100/photo.jpg','16891069708558046635',4246),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHJ8kQ0T7Dna0CgdPzXVUfBFBfILRIcdGTwKXJ9yfg2l1xxiI0y09kdgKd9uuP9RK4OnBdeSKKXsXN7OoW9PeSdbxUs8','I am a first time mom, so when my son fell and I saw his mouth bleeding I was very scared and rushed to this emergency clinic. They saw me right away! The entire staff was nice and helpful. From nurse Paige and ER tech Daniel who were super sweet making my son laugh and feel comfortable to Dr. Nguyen who was informative and professional, we had an amazing experience. Thank you everyone for your care! My son even walked out with a cute Teddy Bear for being so brave :)','2020-08-10 02:05:28.012000','2020-08-10 02:05:28.012000',5,'D BR','https://lh3.googleusercontent.com/a-/AOh14GiEwIgwxEc8dd78iqmV1HpvfEHyOx7spDuArFSlFA=c0x00000000-cc-rp','13486358490203335051',22483),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHKiizJgiBYf8sH6wowZtTp1LPDH6ByHi6D2I0_xiX8io4OAuPb85HuUZ8mIN0SX6mQ9qxkpnzSvTz54KUf5zLzrU2GQ','The staff really give me a comfortable feeling. The Dr. knew exactly how to explain to me what was happening and why. I thank them so much. Thank God for people who care..... Signature Care. Real Care......🥇✍🏾👩🏻‍🔬','2018-09-22 00:01:10.948000','2018-09-22 00:01:10.948000',5,'Eric Henderson','https://lh4.googleusercontent.com/--ndtjsPZa1g/AAAAAAAAAAI/AAAAAAAAAAA/Gs0FKOY_aeo/c-rp-mo-br100/photo.jpg','17394740196501090048',4792),('AIe9_BG84YPnR8vhxeJfV_lAYVNihKVZugTD6U0SLdurVeK1Cp1FFZEJeMzsBD-Vh93q6zFVWSsnt7Oa7_C1M24gAEECxctn1of_UpQzrNu_bIUBbYl11E0','Keera was so welcoming and pleasant & both Dr. Gabe Dr. morrical were so knowledgable and patient with explaining everything to me!','2018-07-27 00:50:49.742000','2018-07-27 00:50:49.742000',5,'Jane lewis','https://lh5.googleusercontent.com/-awOtN7E_cyY/AAAAAAAAAAI/AAAAAAAAAAA/xJOByQCMkxI/c-rp-mo-br100/photo.jpg','16590124370714063921',3802),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHl4PH3pACxzAtUL0ISa0B58wHl7CuCF26bbqJwJyzqj3JbQvEcgR6eoLJwNrdrUbcm07hChl2tW5KIzc-yBauhY5xFA','Absolutely had a great experience! My RN Manny was very cordial and took great care of me. Dr. Huerta’s Care was accurate, helpful and quick. Jeremy also offered me a warm blanket and was very polite! Extremely pleased with the service here, especially since this is Odessa!','2019-01-20 15:18:23.252000','2019-01-20 15:18:23.252000',5,'roland heyne','https://lh5.googleusercontent.com/-ecFHYLlVswk/AAAAAAAAAAI/AAAAAAAAAAA/wiYl5jOax28/c-rp-mo-br100/photo.jpg','6521947413723274945',8319),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHn3U9Pm44wQqtN9ESeUduKBx7I9c9cQEaEhuapFSNaTV8KLEV9hIkQM_c0PfcyM0ZhitcdlZOliW35R3VsRIlSKFI2k','Very good service! Super friendly and not a long wait at all.','2018-11-06 03:18:12.208000','2018-11-06 03:18:12.208000',5,'Ashleigh Pacewicz','https://lh4.googleusercontent.com/-CcwX87VK78Y/AAAAAAAAAAI/AAAAAAAAAAA/UyHOTCYzl3w/c-rp-mo-br100/photo.jpg','16590124370714063921',3666),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHnAszKLS8uSIydiFZ8GD_EOD8QCoFNZWzFUVlJvhIa8bN9xgjhEBp3Ao2GtVud1CtaErHUyW6H1V1ZXW1wYDSTdverY','Jackie is very attentive, polite and friend. Extremely helpful. Keira was very knowledgeable and explained all the meds and the reason of put visit. Will recommend this locate and staff highly.','2020-03-15 03:21:18.754000','2020-03-15 03:21:18.754000',5,'Anthony Ramirez','https://lh6.googleusercontent.com/-AV0jNMcnQHM/AAAAAAAAAAI/AAAAAAAAAAA/FkKDYUI28yM/c-rp-mo-br100/photo.jpg','6521947413723274945',21167),('AIe9_BG84YPnR8vhxeJfV_lAYVNihnG4_x__nS9dD7ukvNDSAOJ5UOZtchAKQFrH7TmUP-6IoEFpJY_CiJTv2UBmMI1lfs4Xu4ZJlczBwdoqItt5OJDJL3M','I love this place. Very efficient and kind. They always make sure you are comfortable and taken care of. \nRegister: Lorena T','2019-12-31 22:08:05.556000','2019-12-31 22:08:05.556000',5,'Abbey Anderson','https://lh4.googleusercontent.com/-byPFOgLdq5A/AAAAAAAAAAI/AAAAAAAAAAA/CsZkjishZVE/c-rp-mo-br100/photo.jpg','16590124370714063921',2995),('AIe9_BG84YPnR8vhxeJfV_lAYVNihnL-xEpvReRGMkm7Xzl0vPf6wPWYtseSU92Q87uiH0UK04HZ4prU8cR8VYDA4oMJsabw9dZWcXJdC4JzFkWDRH62ogU','Iwas seen by Erica. Her and everyone else was very friendly and helping','2019-02-22 14:24:19.192000','2019-02-22 14:24:19.192000',5,'Octavia Jones','https://lh6.googleusercontent.com/-4LvSlHLAdII/AAAAAAAAAAI/AAAAAAAAAAA/kjjHMm0ANIs/c-rp-mo-br100/photo.jpg','8626688543755174284',8549),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHnVfbEQhrf25ft3-glbakcF2NbKAGizw9LPfhDk1idky9PlDJZnlrTSMbVeL03TXLGoHTBOGw0Jxtv1b_cEEuXHvqAU','Excellent care ! The doctors treat me professionally and made sure I received the proper care. The nurses and radiology staff were great as well were not rude like any other office I’ve been to. Overall a high quality care. The facility is very clean (and cold lol!) but they provide you with warm blankets. Also the front staff very professional and helpful. There is no words to describe how amazing this place is.','2018-10-21 19:34:09.550000','2018-10-21 19:34:09.550000',5,'Maria Boundy','https://lh4.googleusercontent.com/-FfrXElZO8TQ/AAAAAAAAAAI/AAAAAAAAAAA/7DJn9qrwCJ4/c-rp-mo-br100/photo.jpg','14567670160750071148',1467),('AIe9_BG84YPnR8vhxeJfV_lAYVNiHPB2ORyiELarJmY45JDcItn48Wfbm3EGJIzXbW_XgkzamRoQahnrkgPDenjLmlYgUcM_EPx9xMD1KREXgm_YlG5H0ZI','I had an amazing experience. The staff was extremely nice and attentive. I would like to give a huge thank you to DR. Edwards, Nurse Franco, Cindy, and the rest of the staff for helping me. They were very caring which calm any types of nerves that I had. I would recommend this place to any one in need of urgent care. The staff was very welcoming and put me at ease by answering all my questions and was very knowledgeable and professional. Thank you!','2018-06-05 16:36:57.413000','2018-06-05 16:36:57.413000',5,'Josh V','https://lh5.googleusercontent.com/-9cYwBwpQHHc/AAAAAAAAAAI/AAAAAAAAAAA/E3RhF89zlY8/c-rp-mo-br100/photo.jpg','17394740196501090048',4842),('AIe9_BG84YPnR8vhxeJfV_lAYVNihSE_nDldzM5Qcgc465eTZmpztu4Y0OTALR_F6IRkDlewMPhQpstb5MhkHqJixHsQxPc0kVuMrcRY3XDfM3q-8Fni6OY','The Process was quick and easy. Sam, JD and Cody were very helpful!','2020-07-28 14:35:08.878000','2020-07-28 14:35:08.878000',4,'Cole Lujan','https://lh5.googleusercontent.com/-kMoON0Qq0Ck/AAAAAAAAAAI/AAAAAAAAAAA/joXbQcqxCv8/c-rp-mo-br100/photo.jpg','2077061009497551125',22797),('AIe9_BG84YPnR8vhxeJfV_lAYVNihsKIyLmOnAz5rDv7n79KcyMLXFiyuA9Z5Dr7ouGtIn3G2UDRtjhPbMQDi0M_df-iIk_W2SRfh-VLQNjNIHNBcHY0vDE','Everyone was so caring...especially Keaire at the front desk. She was welcoming from the beginning and made me feel like there wasn’t anything to worry about!','2019-06-20 11:30:57.858000','2019-06-20 11:30:57.858000',5,'Brenda Roman','https://lh6.googleusercontent.com/-F0b9Z41zJv4/AAAAAAAAAAI/AAAAAAAAAAA/R6JxqFsDQWw/c-rp-mo-br100/photo.jpg','3511292162159714121',7296),('AIe9_BG84YPnR8vhxeJfV_lAYVNihycbVws2bggvzHfCMUdXOOMBytsmefmOXA9A8cj7ektDABDELirJlTuo6CAkxXx7XbivLlNS0LD7UiHUl-vIiEvAd2Y','Very amazing nice service from SINDY everything is in order thanks','2019-09-04 22:56:02.295000','2019-09-04 22:56:02.295000',5,'Cierra Champayne','https://lh5.googleusercontent.com/-HNoNfeCKLv0/AAAAAAAAAAI/AAAAAAAAAAA/B6-S0YOmers/c-rp-mo-br100/photo.jpg','14567670160750071148',1250),('AIe9_BG84YPnR8vhxeJfV_lAYVNihZBgUpwC1xGFYH7fCUrsS8UZbm2MOVCnAecGMreaJUz_ENw77NZaldWcUW_6vrAU5LwhNa7RbVpUFsF6C1DGzVvW5No','Excellent, quick experience. Friendly helpful and knowledgeable staff','2019-06-03 17:19:35.195000','2019-06-03 17:19:35.195000',5,'Michelle Blount','https://lh6.googleusercontent.com/-y5fsH3JpL5k/AAAAAAAAAAI/AAAAAAAAAAA/cIp3FUbMFxY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiI_Su61EPSak8x5yA6RyIYVmecibm9Bgb7C8TWoxu2o0DBPktczBuDKxmCVyU8ULSqxxNGSjUhLb8SrdZ9uknxN1uWKg','Dr. Jolly and his team were phenomenal! The support staff Leslie, Kristina, Quyen, Scott, and Maya were very supportive and helpful! Signature Care and it’s staff is very helpful!','2020-02-11 23:23:58.303000','2020-02-11 23:23:58.303000',5,'Southwestern Regional Director','https://lh3.googleusercontent.com/-kcn-gn8V5nc/AAAAAAAAAAI/AAAAAAAAAAA/qw4DVKqvL-I/c-rp-mo-br100/photo.jpg','12541597562633926366',22464),('AIe9_BG84YPnR8vhxeJfV_lAYVNiI-ityfKd7yMZvM2BPTAub7p8WyxsY-0aUd8kJlTJ_LAlTXPsElT-iNcNxidXjpq-lDMyW0Wl8myjlanu3EE99KiVY-M','they were amazing and really took care of me. \nclean and nice facility! i will come back anytime i need to','2018-11-29 08:03:47.351000','2018-11-29 08:03:47.351000',5,'Alicia Salcido','https://lh4.googleusercontent.com/-o3ZctF1Gneg/AAAAAAAAAAI/AAAAAAAAAAA/4VD1Ru6dsYo/c-rp-mo-br100/photo.jpg','16891069708558046635',4397),('AIe9_BG84YPnR8vhxeJfV_lAYVNii1GYd71fCUyWrfc6FQ5q5ldwj53axUVoGpzA5pcfI9oDlLvUmjCamlq5TqQYC0CcBDL6hdS5H-qIZnoD0cBDII9dMLc','I had a very good experience with SignatureCare Emergency Center in Memorial City. I was seen quickly and the staff was very helpful and put my mind at ease. I would definitely go back if I had another emergency.','2016-08-17 20:10:47.913000','2016-08-17 20:10:47.913000',5,'Christine Crespo','https://lh3.googleusercontent.com/-N5Jd7OlGsEA/AAAAAAAAAAI/AAAAAAAAAAA/NSixURB8xaM/c-rp-mo-br100/photo.jpg','14904078213800803294',2467),('AIe9_BG84YPnR8vhxeJfV_lAYVNiI2071bz8S8CUXqMNBMv7lzQlpKWhhl-FQhHVpZjjhk2UnIM8GFvswxS4W0Ow7nuOjTgDX8ED0ZwCl9neiDQadD1zLFo',NULL,'2019-02-03 00:04:15.284000','2019-02-03 00:04:15.284000',5,'Marilyn Williams','https://lh4.googleusercontent.com/-48KRzqE3EkI/AAAAAAAAAAI/AAAAAAAAAAA/Cm7kZhuL_rQ/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7417),('AIe9_BG84YPnR8vhxeJfV_lAYVNiIajW_Y21-4WzkAnI_8I9wlYr14FgRBCDmHL4htSLLhVYb62J9IHHau_Stf9nhqqgFogVoKgDYGIYd3CoQ4rYm0mdiF0','Signature Care did an awesome job. Very professional and helpful. They were very welcoming and efficient. The staff was on point with taking care of me. Awesome!','2017-09-03 00:00:10.667000','2017-09-03 00:00:10.667000',5,'L L','https://lh5.googleusercontent.com/-lxafxn8Z80U/AAAAAAAAAAI/AAAAAAAAAAA/RadcEvWwxl4/c-rp-mo-br100/photo.jpg','17394740196501090048',4985),('AIe9_BG84YPnR8vhxeJfV_lAYVNiiCwPmEhE01ntf1w18lQqUG6wbGhjxJ0jTLHpsrSSTrpoE7eYzhZOz8Ng4hgj_gTA06HAVpZFEhi7GPRTPelWDbR4yF8','OUTSTANDING FACILITY AND STAFF ALWAYS.','2018-11-27 19:11:49.612000','2018-11-27 19:11:49.612000',5,'Reba Winfrey','https://lh6.googleusercontent.com/-lmwEdRG2kQQ/AAAAAAAAAAI/AAAAAAAAAAA/Jb0o587GltA/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9211),('AIe9_BG84YPnR8vhxeJfV_lAYVNiiiOyIn49pm03_Ee7R3_bSXpObaG4CZVk87aEvQPWKeefNtmMCDOJGlOZRy-jmVeix8GiwXYUPN1ZBusKfJuSztvWvSY','I Love the Staff and enjoyed my visit with Emergercy care they do a great job. I definently recommend anyone who wants great service to come here.','2019-03-15 20:00:23.868000','2019-03-15 20:00:23.868000',5,'Alexandria Oguinn','https://lh5.googleusercontent.com/-0ACpfW0LLKI/AAAAAAAAAAI/AAAAAAAAAAA/qpFYokrj21w/c-rp-mo-br100/photo.jpg','3272657195432704501',6990),('AIe9_BG84YPnR8vhxeJfV_lAYVNiIjS5jS1sdQZxfkXQmXMDYhbuhC3O9b5aSEcJE1zrzeuhf-wRWYEVkB0Kt1epmGzNEv02AVf0vjk0H4ENmyGRuo3REuU','this is quickest and nicest nurses. very kind people','2020-07-19 01:13:37.799000','2020-07-19 01:13:37.799000',5,'muzamal ibrahim','https://lh4.googleusercontent.com/-bP7sWt8flq4/AAAAAAAAAAI/AAAAAAAAFKc/AMZuucmdccuZEifjd5f7vqxCMJkjkgDYoQ/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22249),('AIe9_BG84YPnR8vhxeJfV_lAYVNiIkI8yeLZsfrdEoz1Ey2gDmeJW7ynYv3LAsBVajAsHzxOzVZFxlXZugCGEZ0MV21bFxTatflJxw7ZPPbsR03nk_ZNJyk','This place is amazing! Very easy system and friendly/patient staff. Low wait times and quick, proficient service. Dr. Das was very kind and informative!','2020-08-10 15:00:55.416000','2020-08-10 15:00:55.416000',5,'Kandi Ibarra','https://lh3.googleusercontent.com/-EEbUZHxpgpA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnK9fCKchUjIlDliFwb5_m1rkR8fg/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22498),('AIe9_BG84YPnR8vhxeJfV_lAYVNiIlG6GOX7-lu79UTB6nBaB5eJ0vtQZMRNhUuTx513FiBhE-4EtxqlShAJPsZXx_8v8zU258R6OpzvcXwg08AYs7oypxU','EXCELLENT SERVICE!!','2019-01-15 20:33:10.600000','2019-01-15 20:33:10.600000',5,'Maleni Medrano','https://lh5.googleusercontent.com/-CwMm9m6Yoz4/AAAAAAAAAAI/AAAAAAAAAAA/WC_L_AtNSlY/c-rp-mo-br100/photo.jpg','14904078213800803294',2181),('AIe9_BG84YPnR8vhxeJfV_lAYVNiiM0x1-A4Nx3wuVif4ng_p_uKt1qILGmbmP9ShzzRgEB8A0sf6ZGD72CVXdZ-jrXgFuXJYGIuGrD8NkKH09ZGcH6b2YQ','Took my 3 year old daughter here on a sunday afternoon. Was in and out within an hour and a half. And that included xrays and tests. The entire staff was amazing and so helpful! I honestly don\'t know why anyone would ever go the hospital emergency room again. This will be the place I go for emergencies from now on.','2020-03-06 17:08:19.087000','2020-03-06 17:08:19.087000',5,'Amy Goodwin','https://lh3.googleusercontent.com/-3LbQ4oXiKFQ/AAAAAAAAAAI/AAAAAAAAAAA/okB-NkOqQNc/c-rp-mo-br100/photo.jpg','6521947413723274945',21180),('AIe9_BG84YPnR8vhxeJfV_lAYVNiimv6lMpHVPSHFzactOU44nQ9cQQaLJ6PizAa-bqY95mZnAefMawOXJVFCitP8rSWP8CWpV1ncrQf4pWPC8sA4qMBTjw',NULL,'2020-01-18 18:18:13.932000','2020-01-18 18:18:13.932000',5,'Daniel Munoz','https://lh3.googleusercontent.com/-3zXqczJURjg/AAAAAAAAAAI/AAAAAAAAAAA/4Wd0aJOAKiw/c-rp-mo-br100/photo.jpg','13486358490203335051',13469),('AIe9_BG84YPnR8vhxeJfV_lAYVNiIN9qjycdALmyo4P1QsmgVilwJHJkkhtjI6QqnXnGy2w21KQMHWJC6LW_XPCRUAtL01sUZ6EHnrcH0qLZXZUXqyG-_H8',NULL,'2016-06-23 21:43:08.841000','2016-06-23 21:43:08.841000',5,'Michelle Harrison','https://lh4.googleusercontent.com/-V-VQb8il4Wc/AAAAAAAAAAI/AAAAAAAAAAA/PtfurU7aPHM/c-rp-mo-br100/photo.jpg','14904078213800803294',2479),('AIe9_BG84YPnR8vhxeJfV_lAYVNiiS5SS_eXG1_jbMlbFS9pUHAEwp1TfeoGdozs8DlQxxjNH762ET-NV2qFypQzmkpAxqvamoQruACB4zuVJb_lgmaC4Qk','Keera did a wonderful job at helping and assisting me today.','2019-06-09 22:22:15.490000','2019-06-09 22:22:15.490000',5,'Ayri Wilson','https://lh6.googleusercontent.com/-TOv0Go4mKZ8/AAAAAAAAAAI/AAAAAAAAAAA/8VbZkgtvpzg/c-rp-mo-br100/photo.jpg','17394740196501090048',4668),('AIe9_BG84YPnR8vhxeJfV_lAYVNiiTCE69WDMjRbf_ltqg-y6ore8jLgC4vM_t6Z3qL_ZB6kdZ22NeurG1H5tgWhuKw2DGvxjtE8sNddsmIHlnjbwkXJCYI','These folks really set the bar up high when it comes to injury treatment. I live in Houston, but may drive 3 hours to Austin if I need an ER in the future. This is how patients should be treated. A+.','2018-09-02 17:31:13.490000','2018-09-02 17:31:13.490000',5,'Mac McDowell','https://lh3.googleusercontent.com/-AJazNwviOm4/AAAAAAAAAAI/AAAAAAAAAAA/gwn0XM89lUE/c-rp-mo-br100/photo.jpg','16891069708558046635',4434),('AIe9_BG84YPnR8vhxeJfV_lAYVNiITIJ7NeRgBOnxBB4gHDWVPAoSZ1sbMY504xdOahlJ_CCZjNGrGR8gZmBr1VSWuAOc7Gi6gVor26DOsGzUnA6Cr_5ttc','Dr.Dendy, Alvean, Grace, Ayesha, and Jordan were all very nice and attentive to my needs. I appreciate the great care I was given at my time of sickness. I would come back again n again','2019-10-04 19:03:06.620000','2019-10-04 19:03:06.620000',5,'Katina Matthews','https://lh4.googleusercontent.com/-W-OAPZSPzes/AAAAAAAAAAI/AAAAAAAAAAA/ggP3p2hq45o/c-rp-mo-br100/photo.jpg','16389487648212004696',2856),('AIe9_BG84YPnR8vhxeJfV_lAYVNiIuTxEBBNtIw2hrrRBs4njdj58byqhQdKzQHHGJbdAebJ7usCGq4MGQRsYLbR7rbJruLfAzdIyD2IzZ14KScXd1xpo6k','This place is a breathe of fresh air compared to the hospitals walking in i was immediately greeted by austin with a smile michelle helped me to my room and gave me nice conversation while i waited i love the vibe the great customer service !!!','2019-06-13 02:53:33.241000','2019-06-13 02:53:33.241000',5,'Dyshe Jones','https://lh4.googleusercontent.com/-Rj_wpOHn8dc/AAAAAAAAAAI/AAAAAAAAAAA/mGoxrtAB6K8/c-rp-mo-br100/photo.jpg','3272657195432704501',6950),('AIe9_BG84YPnR8vhxeJfV_lAYVNiiWQHHjfS_pscfstNUo333JzEXjwdjcHwZwRD46aGP79vRkzzPgH-BWA4QKNQhfZbEhVD483niPJ0L4awGkQ-bG3eAas',NULL,'2019-01-04 03:39:12.993000','2019-01-04 03:39:12.993000',5,'Long Huynh','https://lh6.googleusercontent.com/-GkGyvWpsTzI/AAAAAAAAAAI/AAAAAAAAAAA/P1TdzsKfaVI/c-rp-mo-br100/photo.jpg','8679688254631342173',8890),('AIe9_BG84YPnR8vhxeJfV_lAYVNiiycvHBDzHJmuHNF0ANFJsYjaSkWTiySlg3ywHQQcTE66RFp-4_1Qti1VImLkOjwTmGxLNh3BaS7Ebvn-2NFmyPZBBg8','My doctor was awesome, very interested in everything I was saying, put me thru all the necessary tests to figure out a solution and made me feel very important. Just as the last time I went here! If I ever need emergency care again this is where I will go.','2018-03-14 17:16:32.590000','2018-03-14 17:16:32.590000',5,'kimber harless','https://lh6.googleusercontent.com/-0kA3aWaBk_o/AAAAAAAAAAI/AAAAAAAAAAA/NiPjpUfA0Y4/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8342),('AIe9_BG84YPnR8vhxeJfV_lAYVNiiyQxTpZS0hAqd9HCQP211rBTokRw3BQgoV_FHrEAidW7vVkl5GkA-zs4TymLyAH_czw0Lz5XrOTPg1DJu3jVMTE98bQ','great &’ fast service.. Staff were awesome and so are the doctors','2018-09-24 02:19:50.634000','2018-09-24 02:19:50.634000',5,'Renee Johnson','https://lh4.googleusercontent.com/-mBsE7gLvHbM/AAAAAAAAAAI/AAAAAAAAAAA/JVzga0ADCRo/c-rp-mo-br100/photo.jpg','12541597562633926366',602),('AIe9_BG84YPnR8vhxeJfV_lAYVNiIZ3BZGrmekm1ab4lAV7sNpXLlq2HRRnfmEX0C_QiKFXCCiHxksmq09Xb7PRJa4pKgWeMUut8MCvPshwRqdQk27cmnKs',NULL,'2020-08-01 14:31:38.280000','2020-08-01 14:31:38.280000',5,'Ingrid Paiz','https://lh6.googleusercontent.com/-L73AY4T7nr0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl3FI7aGKJeTw1Pwn8mo3ke3EhF3w/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22063),('AIe9_BG84YPnR8vhxeJfV_lAYVNiIzHfEVTlqe5G6mQqtbnn801dQ65uvP9fedWeb_scWVIGePPWS6Azcl68ypevmpoAG9_xhG1Lr9Mr5DSUEZXturmjYjk',NULL,'2019-09-30 11:49:17.780000','2019-09-30 11:49:17.780000',5,'Jose Rodriguez','https://lh3.googleusercontent.com/-PYArHdD-8uM/AAAAAAAAAAI/AAAAAAAAAAA/-ppw6r5zT6o/c-rp-mo-br100/photo.jpg','14904078213800803294',13682),('AIe9_BG84YPnR8vhxeJfV_lAYVNiJ6_szYzBueQNN6tYD8KA6yjlki_b8kgm3oXVWCXb8NhECj_mH30m0JSmnNZq8BsWv2h3nnlV1kyRY72pnm_z9H9r4ho','Great service!!!','2019-08-08 17:29:00.828000','2019-08-08 17:29:00.828000',5,'Lemarcus Buford','https://lh4.googleusercontent.com/-XL7B6lnRJgY/AAAAAAAAAAI/AAAAAAAAAAA/JjDEt-7maps/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNij7s5jdAs3_pKvf-DuCs1qcHHQZ527Prs3MHX7-7FPUpp3OEhc-3jgg1S--AlefOLWnLfw4DKfBhxA0m3LsCGzDH_Ibs','I want to thank all the care team from Day and night shift: Jessica,Cynthia,Hoan,Teresa,Rommel,Jonathan, Rita,Dr.Spangler and Dr.Leavitt for everything they did for my husband. Thank you for comforting and providing the best care while we stayed for observation night. I highly recommend Signature Care as a option.','2020-01-20 15:19:00.085000','2020-01-20 15:19:00.085000',5,'leslie ramirez','https://lh6.googleusercontent.com/-cznCvHCWAkE/AAAAAAAAAAI/AAAAAAAAAAA/-1HmTHFvIG4/c-rp-mo-br100/photo.jpg','14904078213800803294',13626),('AIe9_BG84YPnR8vhxeJfV_lAYVNiJB-18_SIw9kl-HsBQUd7EjxrTEJBsspkUlYtfp9kxNZbC1dhM7TyNi8_Uw7UAU42WTJ5h5DQkLbVEj8IMivNf2acMaw','Lisa, Andrew, Kim, David, and Jolynn were amazing!! Fantastic fast service better than anywhere else!!','2019-06-14 02:58:11.071000','2019-06-14 02:58:11.071000',5,'Terry Hemphill','https://lh6.googleusercontent.com/-qYkeeMWj2ew/AAAAAAAAAAI/AAAAAAAAAAA/iYwDb_EgRRw/c-rp-mo-br100/photo.jpg','13486358490203335051',962),('AIe9_BG84YPnR8vhxeJfV_lAYVNijDAEaWs2392_JQU2KzyEiQwld3DMSF9hz8vizjC_mABfH1ZQPlYI3ekw7-W99HodBoYBGSO5muKWWIvHbF0ej6U_k9Q','This place they do have very nice people working there. But the only thing that I do not like about them is that they take to long to file your claims. I have been waiting on them to file my claim for two months going on three. I need them to file my claim with Cigna so that I can meet my deductible. I cannot afford to pay this high deductible but my insurance company has told me that it is because of Signature Care. So if you get sick and come to this place, please be expected to wait a long time before they file your claim. This is ridiculous and one is blaming the other. Insurance company or Signature.','2020-03-14 02:33:25.888000','2020-03-14 02:33:25.888000',2,'Sharon Watson','https://lh5.googleusercontent.com/-aWRQFAZ1sa0/AAAAAAAAAAI/AAAAAAAAAAA/e0SXUottUdU/c-rp-mo-br100/photo.jpg','16389487648212004696',21016),('AIe9_BG84YPnR8vhxeJfV_lAYVNiJe3x-ul2LKuvRPUyChwd1tNwTZpvdnQFvt8MVPguWohZonTrR4fhCgdk9dVEBBM_THzu0RFb0k4yVE8lrlESzDvzLKg','We ended up spending the night here, and my wife and I were incredibly pleased with the service she received. We were seen quickly and the Drs and nurses were great. Great facilities, they were able to do things like CT scans. Coffee, drinks, and snacks as well for the one who isn\'t ill. Even offered to order some Applebee\'s delivery! As the one who wasn\'t in pain and was able to eat, very appreciated. But back to more important things... They called in a specialist to come make a room visit early the next morning, which made next steps much easier as well. Many other small things above and beyond that were unexpected. Very satisfied.','2017-03-08 14:23:44.402000','2017-03-08 14:23:44.402000',5,'Hugh Windham','https://lh3.googleusercontent.com/-shAPg4HTvWQ/AAAAAAAAAAI/AAAAAAAAAAA/3fonZUNfDIY/c-rp-mo-br100/photo.jpg','14567670160750071148',1871),('AIe9_BG84YPnR8vhxeJfV_lAYVNiJeCmTk5QI2U8Y00njzsS3imW4oBOz7VfRJHnQv99RUHhgGU7Jp9nhiCwXnnqfoNY4pA-Ml8ll30-w8wYNYTdw-NN4Vw','Everyone was VERY helpful made me feel very welcomed as all as I walked in Tanishia she registered me and was so nice and helpful, then my Er tech Carmella was the best at helping me with figuring out what was wrong with my pinky and the nurse also Tammy was great! The doctor Ybarra helped and was talking to me during my procedure so it didn’t hurt much and went by VERY fast it took an hour with basically doing everything. I love it will be back ferrsure if anything','2019-06-21 00:31:37.542000','2019-06-21 00:31:37.542000',5,'Sabrina Medrano','https://lh5.googleusercontent.com/-2mtT4c3f_yA/AAAAAAAAAAI/AAAAAAAAAAA/TuIt04TMiFw/c-rp-mo-br100/photo.jpg','17898197009688164559',5688),('AIe9_BG84YPnR8vhxeJfV_lAYVNijeedNTikaqDxKl2vP_R10LFz0fCqf9AJfVMKkt-GfO0dvekIJ5gPe38-nVq0fTL5dkz5lPDRsGugIQPWKEUS_JMdYa0','The best of the best. Not only felt better after treatment but went away with money saved! Christina, RN Chad X-ray tech, Freddy, tech and Edgar front desk and Dr. Miller. Made my family and I feel very important. \n\nThank you all.','2019-02-07 15:05:24.684000','2019-02-07 15:05:24.684000',5,'Marty Lewis','https://lh5.googleusercontent.com/-PMsTxqogY7M/AAAAAAAAAAI/AAAAAAAAAAA/TL7D6NImPDM/c-rp-mo-br100/photo.jpg','16891069708558046635',4352),('AIe9_BG84YPnR8vhxeJfV_lAYVNijeVsms0i_CfBNUvfyF7jTztyJnOZcjnmiMqYvNvYHzseFYQgsaUnTNKhD1nPeMZk1hKTZTaJTXXbaRlG4rOT3UvHu2s',NULL,'2020-01-25 13:08:29.773000','2020-01-25 13:08:29.773000',5,'Francis Garcia','https://lh5.googleusercontent.com/-NSCMdD_KnQE/AAAAAAAAAAI/AAAAAAAAAAA/IYIxot7e5vY/c-rp-mo-br100/photo.jpg','14567670160750071148',10126),('AIe9_BG84YPnR8vhxeJfV_lAYVNiJiQpIB7x4iEgUlJh1RYhQfnhbfVWKh8GOIxKFUgB7aMix06liiMk0cZaouw5s_FpRtTx12MoizclxYXCAFxcHhZ6WzY','Great patient care at Signature Care Emergency Center! They make sure you are comfortable and well taken care of. Once the doctors find out your illness your treated and your out pretty quick! Where you back home resting. Thanks Dr. Grinblahs nurses Laura, Jacque, and Richard.','2017-10-10 21:32:13.463000','2017-10-10 21:32:13.463000',5,'Tina B','https://lh3.googleusercontent.com/-rTemAW9JY_c/AAAAAAAAAAI/AAAAAAAAAAA/dRe_lc2MIZ0/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7779),('AIe9_BG84YPnR8vhxeJfV_lAYVNijluC8HkpyYYkNPqpZeXiVrT8fTw-R0Vew2Z-_mlzUkbayTIRNylCyC254LhULmRspBEjZPI9OZgIfVWZx68q6_dQ_B0','We walked in for a Covid test for my family of 4. Great experience from beginning to end. They kept us well separate from other patients and took us back fairly quickly. Everyone was super friendly and answered all of our questions patiently and thoroughly. Cody, JD and Nydia were especially great with our kids (5 and 2), which was a plus. Quick results in ~25 min as well.','2020-07-28 20:54:05.487000','2020-07-28 20:54:05.487000',5,'Abby White','https://lh3.googleusercontent.com/-weGEJMoG6ts/AAAAAAAAAAI/AAAAAAAAAAA/rFsucz9Y-XI/c-rp-mo-br100/photo.jpg','2077061009497551125',22785),('AIe9_BG84YPnR8vhxeJfV_lAYVNijnhbjs--kv2kr9uCEFOqBNvqUgW7AUsM9DRYWj0w3zJhwNmw9bEShNR3P_Kcw4oMx_9saVAu5kKWnCteASzB3f0-LSs','Came in at 1:30 in the morning with severe tooth pain. I was greeted by Earl at the front desk and promptly checked in and handed appropriate forms to fill out. I was told a nurse would be with me shortly and I didn\'t even get to sit down and Gabriel called out my name to come back. He took my vitals and asked about medical history very professionally. Dr. Dewaal came in and I explained to him what was going on, and he explained what could be causing my pain, what he was going to do to alleviate that pain, as well as what medicines and aftercare needed to be done. Overall I was very impressed with the courtesy and professionalism with all members of staff. Will definitely be visiting again when needed.','2019-04-09 07:41:11.327000','2019-04-09 07:41:11.327000',5,'Jered Anderson','https://lh3.googleusercontent.com/-ZHka7c1kXGE/AAAAAAAAAAI/AAAAAAAAAAA/rI9NC2VO-yU/c-rp-mo-br100/photo.jpg','16891069708558046635',4304),('AIe9_BG84YPnR8vhxeJfV_lAYVNijPZrxah5dOD_5eDiwIGz0MNN33NAiQtVe15GaFkTGXz26lbWyrMd9IrglhGToSxe9Ax7Jfb2YNjz0kzP61gO26cscuc','Great place with caring employees.... especially Ashley Burton at the front desk . Will recommend everyone to check out Signature Care if you an emergency center.','2019-03-02 00:58:49.331000','2019-03-02 00:58:49.331000',5,'Becky Goza','https://lh4.googleusercontent.com/-SGWvq9wqyKE/AAAAAAAAAAI/AAAAAAAAAAA/ipCO8-tDtZ0/c-rp-mo-br100/photo.jpg','8626688543755174284',8542),('AIe9_BG84YPnR8vhxeJfV_lAYVNijXw-7sgHjFU3vhQTMrmjc3fU0hhCMfV6bPct0xudSzBuG9ohONb0fUvMnPGPY7St6uS8eSVsU-SdQihQ-ICcUCHa0Rk','Great job! No wait and everyone was extremely helpful!!','2018-12-20 03:33:17.693000','2018-12-20 03:33:17.693000',5,'Ariel Jones','https://lh5.googleusercontent.com/-j-iVqNJxxmk/AAAAAAAAAAI/AAAAAAAAAAA/em6Onwpbrpk/c-rp-mo-br100/photo.jpg','8918455867446117794',9205),('AIe9_BG84YPnR8vhxeJfV_lAYVNijZMHchYxHvgPSYAvPxI8dKjQBveUdLdFmz5vA7_H8CiqjhQEQ1tr02Ch9LThwUi0zK75UU5W15UPlAfkurti_dYSzuU','I had the best experience at this place. The doctor was very thorough when I brought my son in. Staff very attentive and great service. I will return if necessary and will recommend....','2019-03-24 14:06:50.919000','2019-03-24 14:06:50.919000',5,'Cassandra Apodaca','https://lh5.googleusercontent.com/-GOlfkfVBRc4/AAAAAAAAAAI/AAAAAAAAAAA/y6Ugh7t2C4M/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNik2TRNwllBjJUlAig1q3TGvZpYU7oKyUW-abUm1bUxbHL3-JhNK8DlGfc7fR-am9W5NhGonmiUUu72-x6Z8ITb-Kuehc',NULL,'2018-05-21 20:29:39.356000','2018-05-21 20:29:39.356000',5,'Shanti Bansal','https://lh3.googleusercontent.com/-7QTMVJvO-vw/AAAAAAAAAAI/AAAAAAAAAAA/Pgj6ZhZLT5g/c-rp-mo-br100/photo.jpg','17394740196501090048',4847),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKa2_Bu738g8j-E_XYA-8KSWIZd_TPJtE8JArKQ26DjIuJ76-4U-OZPTDepY0UcJcR3bLaX7aSvzEVXNRy7uYd2iz948','Great customer service... employees were really nice.. Kimberly was reall helpful as well','2017-01-23 19:44:16.886000','2017-01-23 19:44:16.886000',5,'Christopher McDonald','https://lh6.googleusercontent.com/-EyCECRGnqEU/AAAAAAAAAAI/AAAAAAAAAAA/6xoH0aL_Ad0/c-rp-mo-br100/photo.jpg','16590124370714063921',4084),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKC-jLe3qUjO-3F7731705VSCttAiT8x09w2sMIoYPLF1d0_k8WVIfuUr5QjrNimfUbjlqkVC-M516U57ny2j75jzJIg','The staff was quick and kind! Very impressed with the professionalism while being friendly and easy to interact with.','2020-03-09 05:59:15.151000','2020-03-09 05:59:15.151000',5,'Marion Stearns','https://lh5.googleusercontent.com/-KmuRY19IXDw/AAAAAAAAAAI/AAAAAAAAAAA/y-3gUH6chmw/c-rp-mo-br100/photo.jpg','14748677429039074158',18847),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKClu7Jfij9e1teoZRL_a483fR-uzIK-NBPCYbpu7KCOaYbhjYKcNB8STb5IqdOr04wDfbXOulzrczT1KcMWWYAIkquQ','I’ve come here a couple of times in the middle of the night when I’ve had an emergency and it has been amazing. Nancy, Tammy, Magali, Eliza, Maria G, and Dr. Vaagenes were all so kind and helpful. They brought me right back, I didn’t have to wait, and received the best care. I’m so glad to have found SignatureCare!','2020-03-07 07:09:44.253000','2020-03-07 07:09:44.253000',5,'ryan villarreal','https://lh5.googleusercontent.com/-X7ZSKfemblc/AAAAAAAAAAI/AAAAAAAAAAA/3MjIq6Xjv_s/c-rp-mo-br100/photo.jpg','6521947413723274945',21179),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKdA6a0nQHzee8OlFwU-5tfO1eSP2j4y_o3kx-PFiYIIDXouM_uyqHLck43ttuOYuIKfMfwVPq9FBAqZcZKfjVOGjiJc','Everyone was very helpful and caring. Definitely tended to all of our needs and helped with whatever we asked about. Absolutely recommend them to everyone in need! Doctor wang, Rachael b, Jessica n, were all amazing! Very friendly and comforting','2019-07-10 20:03:15.574000','2019-07-10 20:03:15.574000',5,'jacob mccloskey','https://lh3.googleusercontent.com/-CrOKi9COo4Y/AAAAAAAAAAI/AAAAAAAAAAA/qtMZ0YXFdqs/c-rp-mo-br100/photo.jpg','17898197009688164559',5643),('AIe9_BG84YPnR8vhxeJfV_lAYVNikF-Cy4_h7bf3KayZ1AKmCTGq6ElPml6W0XxIfGk1zUiU2w2W6vN-WftDL69q5F6U-KnZkGxDgOtRF_QiN2wcaZNbfwI','Signature care has always treated us like family. We highly recommend using signature care for all emergency needs. They are quick, care about their patients and offer snacks and drinks. Thanks to JR, Brad and Angela for taking such great care of me during my last visit. You guys are awesome.','2019-01-12 17:17:42.385000','2019-01-12 17:17:42.385000',5,'G B','https://lh4.googleusercontent.com/-LTFIU_dI6ts/AAAAAAAAAAI/AAAAAAAAAAA/nHxiwIbZwiY/c-rp-mo-br100/photo.jpg','16590124370714063921',3592),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKG6jJmDgOM8u0vsd98mpsG0N-rtCgtaaKeUWuJvVkUiGNyxNhMGUUE0vrG3lU6nm5CkG6n-pW41-3URrmbkm406uVYQ','Wonderful and speedy service! Tabitha, Thoresa, Ector, and Lisa took very good care of us and made sure we had everything we needed.','2020-01-23 21:50:54.129000','2020-01-23 21:50:54.129000',5,'Gabriella Valles','https://lh6.googleusercontent.com/-SPaha-OLljk/AAAAAAAAAAI/AAAAAAAAAAA/8-i4MvF_ltw/c-rp-mo-br100/photo.jpg','6521947413723274945',10312),('AIe9_BG84YPnR8vhxeJfV_lAYVNikgC8tMde6D5LkN-byYXzMZrat2We6WLbzsKGIOxLvy47I8mNOIBcNHx6F1XAwQ18xTZ5u-GqzT5zCPVYpkVoAa4Bw0w',NULL,'2019-06-17 03:17:42.475000','2019-06-17 03:17:42.475000',5,'Victoria Jimenez','https://lh6.googleusercontent.com/-wc_15ejBU0o/AAAAAAAAAAI/AAAAAAAAAAA/QcSoM4AsbgY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNikkrt1NCL2GYDFmpO0nCsxcS6miBs3NJd0avp7z6Y1xnENQ9mh7Q-txLAdkjrpZwxvQcqhy5fLS6rCgAm633l8IKj_zI',NULL,'2020-05-31 15:42:25.050000','2020-05-31 15:42:25.050000',5,'Mary Edney','https://lh4.googleusercontent.com/-Toe_IBRhrGE/AAAAAAAAAAI/AAAAAAAAAAA/np5jJXJ-bXs/c-rp-mo-br100/photo.jpg','2694018788013845459',21459),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKLxieEcJ7McdgJ4d7DV3bfd416j4wUoFDbBbJ_9Pi01Le6lVHUmBHmUxlpn2DmXnkVztoYQ90zTguQy07MXtcJO301w','This review should have been written sooner...I recently visited this South Austin location for a diagnosis and treatment of what I thought was the flu. I cannot say enough about the experience that I had here as well as the staff that cared for me. From start to finish I was treated professionally, promptly, but most importantly, with genuine care and attention. I couldn’t have asked for a more caring group of people. Every person I interacted with from Brittany in registration, my x-ray tech Frank, the RN Gabriel A., and Dr. Elsbecker; just blew me away with not only how well they performed their job, but also what good people they were. I’m not great at writing these things, so the best I can say is that it’s nice to encounter people of this caliber, and to experience service to this degree. I am also extremely grateful to Adam for both turning me on to this location, and his tremendous help thru the process. Can’t thank all of you enough.','2018-11-07 02:15:07.075000','2018-11-07 02:15:07.075000',5,'Chris McIvor','https://lh6.googleusercontent.com/-LiqwXofxPfE/AAAAAAAAAAI/AAAAAAAAAAA/Va14C2EbGDg/c-rp-mo-br100/photo.jpg','16891069708558046635',4405),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKLZs7LAA2aWSRvAiS7dq_O3hHL428sSVD-__S3_WyiTbsCgBkDX-_Msncve9BDWkbM_8rWVhKu7QYIyVVJUn6_aCtxA','My wife went here and received horrible service. ','2016-12-13 02:36:55.392000','2016-12-13 02:36:55.392000',1,'Jason Smith','https://lh6.googleusercontent.com/-jZnPh6ptiOY/AAAAAAAAAAI/AAAAAAAAAAA/4_hzjiAcwBY/c-rp-mo-br100/photo.jpg','8679688254631342173',8918),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKnR_Q2OuDqrQLS1wQTm-L2YzHyGkKrKeMMziL_dGW_7zYInX_sMWwOsQSmWHD66GeMsBoIHniaBPg3pj4wVyFufkrGI','One of the best ER in Odessa. Always so clean and the staff is always so nice and prompt. On my last visit Andrea the ultrasound tech was so sweet and nice. She made all my concerns come to an ease.','2019-05-28 22:50:27.804000','2019-05-28 22:50:27.804000',5,'charity galindo','https://lh6.googleusercontent.com/-w7G5Y6CsTe4/AAAAAAAAAAI/AAAAAAAAAAA/XE_OIacO3fo/c-rp-mo-br100/photo.jpg','6521947413723274945',8253),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKOYfD6ATBPl9iDstqmlMUL4_r38D8uIxxtEjYKv1DOVbugFBusU1V3B3PWSOFUBzHN3mbJXcimNQrcjGTORXsySrjvs','This experience was so awesome & fast. I came in a great deal of pain & Amy got me straight to the back. I was greeted by my warm nurses melissa. Immediately afterward Dr. Sylvester was at my room explaining the process & a few minutes later Norma was taking me to get my MRI. I didn\'t have the patience or the time & was so appreciative of how they treated me & handled me with care. Thank you!','2020-02-07 20:48:04.421000','2020-02-07 20:48:04.421000',5,'mrzquita','https://lh4.googleusercontent.com/-YF6v1JiXKXQ/AAAAAAAAAAI/AAAAAAAAAAA/wnvt5mrSP2U/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',14424),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKq1jz7Q3rVzH-q9wtCABc1s4cdeSE20c5hnyoDjPR3LJMeucckFPnA0LwaNCz6pqR1_E0uZO6S1IrQ3_i1-jiWE38BY','Great facility. Intake was smooth and easy !!','2016-04-29 07:37:04.839000','2016-04-29 07:37:04.839000',5,'Webert Sicot','https://lh3.googleusercontent.com/-Ux0x5H_M0Z0/AAAAAAAAAAI/AAAAAAAAAAA/UFaMhpqNcNk/c-rp-mo-br100/photo.jpg','3511292162159714121',8014),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKQ5Mkh15EBN-piLLuZHuGGV_KjJ_TXgU1dLMFc1IsJf58KyPA8EB94KMlS1BL-a2hIfBe8ksW3vxVTq2jvqrD25YFg0','Briseida was very sweet and is a great conversationalist. She made me feel very welcomed and comfortable!','2020-02-20 00:58:10.737000','2020-02-20 00:58:10.737000',5,'That Houston Teacher','https://lh3.googleusercontent.com/-8yUX6C8-oHA/AAAAAAAAAAI/AAAAAAAAAAA/pjk4CmS8_Cs/c-rp-mo-br100/photo.jpg','17898197009688164559',14154),('AIe9_BG84YPnR8vhxeJfV_lAYVNikTkdlV2IfkHvabIneCzTSgwzXGDPr3S29QF1xJEIGEk2OUVCWwJzTUIkZObzhdoy_TZSElJtRoKUQHUyrG0O0-nJ0ZQ','Very good people. Kimberly welcomed me and Jacob was my nurse. They were very helpful in my stay, and Morgan was my radiologist.','2017-03-28 18:10:00.551000','2017-03-28 18:10:00.551000',5,'Ryan Roebuck','https://lh3.googleusercontent.com/-Kodfqp4ZQ0w/AAAAAAAAAAI/AAAAAAAAAAA/ffTMYS8QDdM/c-rp-mo-br100/photo.jpg','16590124370714063921',4020),('AIe9_BG84YPnR8vhxeJfV_lAYVNiKtSja-MOlsZ7Ul91YHmf3pwaoRmNdLk2Un6eF7dHmXP1DUYTw3mjMDPvqK7Znoht9rRoe1AW9Hy6UGcu_Reb6B8eSoo','Dr.Jones and nurse Kim were great! This is our go to clinic for big & small emergency. The staff always spends adequate time, they are thorough and we always receive an accurate diagnosis, never feel rushed. The fact you aee always seen by an ER doctor is a huge bonus for us I know my kids are in good hands.From rececptopnist, nurses and doctors we have always been treated with kindness, consideration and respect, very thankful!','2019-07-23 23:24:25.418000','2019-07-23 23:24:25.418000',5,'Christan Griego','https://lh3.googleusercontent.com/-FyFYbt2Vhv0/AAAAAAAAAAI/AAAAAAAAAAA/M36-PRWtcdQ/c-rp-mo-br100/photo.jpg','13486358490203335051',885),('AIe9_BG84YPnR8vhxeJfV_lAYVNikVDm31R3DM8MnS5hcnG6P4qdEjTq0dDLzB8YvQCuAKVphJI6DJsejE72n03D_R4KN9J_qO1h1OOPmnKwMmQO3i0_Iqg','What if you dnt have no insurance or nedicaid can i still be seen?','2017-09-18 00:04:47.625000','2017-09-18 00:04:47.625000',1,'Nicole Houston','https://lh3.googleusercontent.com/-vi4Alc5Y0W0/AAAAAAAAAAI/AAAAAAAAAAA/7ihoPkI6QPo/c-rp-mo-br100/photo.jpg','13486358490203335051',1130),('AIe9_BG84YPnR8vhxeJfV_lAYVNikVyUKgfPCOzOTkv2abLeBE5OhF1L5F62RBtmfzKOIOyDtEehgAx4uIJwoMO5HH8pkvcb_2s9CnDQ1RdntmtqoxALWLo','Best place ever! They are the best. Friendly doctors and staff. Best observation room Better than a hospital! Leslie Jessica, kenzie and dr Thomas were amazing','2020-02-06 20:56:39.250000','2020-02-06 20:56:39.250000',5,'Charm Hensley','https://lh5.googleusercontent.com/-4upJ4kKdWyE/AAAAAAAAAAI/AAAAAAAAAAA/tj9RuRm0nEw/c-rp-mo-br100/photo.jpg','17898197009688164559',5917),('AIe9_BG84YPnR8vhxeJfV_lAYVNiL10A0cLxcmrUYMLk9HoRpMuhsNNsRlbruZMfi16UJZodxnhBWkO-6sUq8Mmdw4mYiHbxv1sRZ575yUhS3Xiq4WGgMMI','immediate care. wonderful experience. closest to concierge medicine I\'ve ever experienced! clean facility. kind, caring attention.','2019-09-26 13:48:47.495000','2019-09-26 13:48:47.495000',5,'Peggy Rutkowski','https://lh6.googleusercontent.com/-ZbejMJiUP6A/AAAAAAAAAAI/AAAAAAAAAAA/fXj67qWiNB4/c-rp-mo-br100/photo.jpg','16590124370714063921',3172),('AIe9_BG84YPnR8vhxeJfV_lAYVNiL24qmPh4DuXXFFN07XjU3vYIP9t2YXTBvaIuHKwXCb5ierZqpM4zjKaB6WlpulVpJbagSEfQ9TweStut1VGRJaf3Mqk','Dr Elsbecker city ambulance \nLauren marketer and staff have been really helpful with the process coming to my car and being very kind to me throughout the process! Recommend coming for the fast covid testing and friendly faces','2020-06-09 21:16:34.909000','2020-06-09 21:16:34.909000',5,'Emma Drake','https://lh5.googleusercontent.com/-Ckt3PWL6S6U/AAAAAAAAAAI/AAAAAAAAAAA/EDNPK-BYbe0/c-rp-mo-br100/photo.jpg','16891069708558046635',22690),('AIe9_BG84YPnR8vhxeJfV_lAYVNiL5-o3AcwhAD9SFnAnhydFotSyqm4z0PKxj1e490rAMWOtnhxbgDDkBGm6P1MuT2O_P9gQ4NnSGvwY_xu4D4z0hExyg4','Dr. Singla, Jerry, and Rebecca were super helpful in making sure I understood what was wrong with me on how all the medication was going to help. Great service and great people! ','2017-01-16 21:28:16.539000','2017-01-16 21:28:16.539000',5,'Courtney Cottrell','https://lh3.googleusercontent.com/-qKzcHW930Ks/AAAAAAAAAAI/AAAAAAAAAAA/lV8n0UAmZaQ/c-rp-mo-br100/photo.jpg','16590124370714063921',4093),('AIe9_BG84YPnR8vhxeJfV_lAYVNilbH3BsKVjBV_hr3HosR1NlZ1cBCXG8866IoQxgPLfy_AIPG-bCkPlqgmwJ5ESvDSCAfXAlBeTZ42TqUd8brJrVOmwyI','The staff always goes above and beyond to make you feel at ease when you need medical treatment beyond what an urgent care can provide. They are fast, have everything needed there to run tests or imaging, and there has never been a wait to see a dr in any of the times someone in my family has been. Very clean facility. I would never go to a hospital ER again unless I had an emergency that required surgery! ','2017-01-03 13:57:40.762000','2017-01-03 13:57:40.762000',5,'Stephanie Keitt','https://lh3.googleusercontent.com/-E6lIj-JTbEI/AAAAAAAAAAI/AAAAAAAAAAA/EkIqrMqnBPs/c-rp-mo-br100/photo.jpg','14567670160750071148',1923),('AIe9_BG84YPnR8vhxeJfV_lAYVNilgbm4yOz9KUgV6QAnwu202SfXA_f9RPph1daXApnBTKtYHncHdjRzMKwf6GenuWunt4-tUfdo3cy8KEKUfeFkL8inWM','They really took care of us super fast','2019-12-18 12:52:59.729000','2019-12-18 12:52:59.729000',5,'Logan Blevins','https://lh4.googleusercontent.com/-gsArypV6_JU/AAAAAAAAAAI/AAAAAAAAAAA/GDx4kmkVybI/c-rp-mo-br100/photo.jpg','2694018788013845459',5984),('AIe9_BG84YPnR8vhxeJfV_lAYVNiliLLhS1h-Bot_BIh-o0usufynejPNlR0kp_wZHUlLZaypawx2plyCt-ExgnK9LJW3aAVU-sIufMh0wXzAHRO1PixrWw','I have been there twice now. I live in Westbury, and going down 90, it only takes like 12 mins to get there. There is never a wait, and they are so professional and nice. Highly reccommend if younregukar doc is booked up and you need to be seen!','2018-02-06 14:50:33.736000','2018-02-06 14:50:33.736000',5,'Kasey Smith','https://lh5.googleusercontent.com/-Y2H4I8SRtPA/AAAAAAAAAAI/AAAAAAAAAAA/FqeZWZZ6BCo/c-rp-mo-br100/photo.jpg','8918455867446117794',9294),('AIe9_BG84YPnR8vhxeJfV_lAYVNiLlio9FTmSWRFLhzs0ebITdbqySdxon0UnNXke5d-QSbS4KUNGOCd0pvuF87afDQJmPZSjvT3skh6PzelDhL9PZ8ukjI','Quick and fast team, they make sure you are well taken care of. maya, Laura and Stephanie were amazing','2020-01-04 18:38:50.846000','2020-01-04 18:38:50.846000',5,'Nadine Badreddine','https://lh3.googleusercontent.com/-AdE1oVJmW2s/AAAAAAAAAAI/AAAAAAAAAAA/OetVjHckwlg/c-rp-mo-br100/photo.jpg','12541597562633926366',256),('AIe9_BG84YPnR8vhxeJfV_lAYVNilOiVQlrSUoXJ6hxQ3uv7IGXdwdviph7V_LL6O7BV8m4VzLlYfn8zxgmYPWVYYjiOpSlOjtW-1POstqpRRysOaTmIkKk','Beautiful, state of the art location! Great friendly staff. My Doctor, Adam was amazing!!!! And they\'re open 24/7!','2017-03-12 22:52:45.749000','2017-03-12 22:52:45.749000',5,'William Loyd','https://lh3.googleusercontent.com/-2_-9wYmJ2Og/AAAAAAAAAAI/AAAAAAAAAAA/adX1g_DB-rU/c-rp-mo-br100/photo.jpg','3511292162159714121',7860),('AIe9_BG84YPnR8vhxeJfV_lAYVNilp6WOhi4g1cHT7voeqr8HciKT68aQC642n6Cr55VaGAeT2AfGZNKmTKWVhXbpLXx3S4CkEQN4aFzle-xwFXgCZK6I8A','Very clean environment. Dr.Lingan, Amy and Thai were very friendly and attentive.\n\nI highly recommend this center to anyone in need of immediately care.','2019-10-31 13:41:36.098000','2019-10-31 13:41:36.098000',5,'Tyler Lockwood','https://lh6.googleusercontent.com/-eZQD2WBxKWA/AAAAAAAAAAI/AAAAAAAAAAA/i-6i72y0FYQ/c-rp-mo-br100/photo.jpg','2694018788013845459',6023),('AIe9_BG84YPnR8vhxeJfV_lAYVNilu0lm9xO4YJK9Za1v7tqkDuTYsXQqCGsPJbraDq6SVMqDrgcoVnZXNaLnczlVdhNGY4dnt4K9fXUNEgHYMBcb4HmLLk','Quick service, friendly staff, thank you to Dr. Patel, Amy, Josh, Joey and Jessica','2019-05-06 06:02:10.854000','2019-05-06 06:02:10.854000',5,'Dustin','https://lh5.googleusercontent.com/-OqEdibCZofg/AAAAAAAAAAI/AAAAAAAAAAA/6cnOWTof5Ic/c-rp-mo-br100/photo.jpg','3511292162159714121',7338),('AIe9_BG84YPnR8vhxeJfV_lAYVNiLv7dinScKyXCVrwlOIjLflvWSVn6wWU5Zfg70U5KTMuyIZtwyi2aExFpMwOge_iF_jzxJrPMYJkHZdOwVLiTuzGX5DM','I had a great experience at the SignatureCare Emergency center. All of the staff was friendly, and professional. We were greeted immediately by Rayven, who had us checked in at no time at all. I had to come to be with a friend, and they were super quick to get her in and see about her. Gabe took care of her, and did a great job. She was overall taken well care of and I would defiantly come if I ever needed assistance.','2018-10-16 01:45:57.707000','2018-10-16 01:45:57.707000',5,'Lindsay Leck','https://lh4.googleusercontent.com/-hRCOI4aTXi0/AAAAAAAAAAI/AAAAAAAAAAA/aZYzXN8kTPE/c-rp-mo-br100/photo.jpg','16590124370714063921',3701),('AIe9_BG84YPnR8vhxeJfV_lAYVNiLx6OD0XxKiXBinOU4oLNRxUM_DP59CLgJA80QAKcfWvcPY8HfYSiQpqJ_o-8-PF_1on2CL_yzYw_U8ECV49UTj17394','Went for lower back pain and was in quickly and super friendly staff... Clean and very nice...','2017-01-29 01:23:29.706000','2017-01-29 01:23:29.706000',5,'Crystal G','https://lh3.googleusercontent.com/-FPGQR6qziwo/AAAAAAAAAAI/AAAAAAAAAAA/2sE98sJTvok/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1901),('AIe9_BG84YPnR8vhxeJfV_lAYVNilxgv4sbtpaRN178cvainb1JuAGyJVKwPiijzsPn5lCvqR-Jdlw_cv3nA5feCq040omtwXHoOAAItiNBGFgl5u-1g1JQ',NULL,'2020-02-21 06:39:07.142000','2020-02-21 06:39:07.142000',5,'Celinda Sanchez','https://lh3.googleusercontent.com/-KmF2I090zMg/AAAAAAAAAAI/AAAAAAAAAAA/-iyLNRmjUMM/c-rp-mo-br100/photo.jpg','8918455867446117794',14810),('AIe9_BG84YPnR8vhxeJfV_lAYVNilzHIrh84AkoA5IP0siyesMc4hArungRsinUG1u7CWmkYCfO9Wm3SURE4HPPZnxOygZYKerE_WJEYRQ7YBSbxbYGWaTk','While in the Montrose Signature Care 24-hour facility last weekend for immense pain related to kidney stones I had best of care by multiple staff members during two shifts (I arrived really early in the morning and left at noon). \nThey were all caring and kind and attentive to my pains. I can’t recall a time I’ve been to any doctor, specialist or hospital visit where I felt like the staff genuinely cared as much about my well-being. Thanks for getting me through a rough night. I’m thankful I stumbled into this place and though I hope it to be my last visit at least I have peace of mind knowing they are there at any time of the day or night if I may need them.','2018-05-26 20:57:24.062000','2018-05-26 20:57:24.062000',5,'Charly Chauvin','https://lh3.googleusercontent.com/-eMgoE3wrP5M/AAAAAAAAAAI/AAAAAAAAAAA/d0ej2DNK4nQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7703),('AIe9_BG84YPnR8vhxeJfV_lAYVNilZnVK6yLDK5BYHMA2s7bg_WrmwwF5D6i32t0yxIdnKhnMxHJK6A0-WocgF6_73hHIgmpjageYEZWa7vq1xzrLWi3gqo',NULL,'2019-07-12 04:58:23.179000','2019-07-12 04:58:23.179000',5,'Daniel Zuniga','https://lh4.googleusercontent.com/-3wJMGnX7nko/AAAAAAAAAAI/AAAAAAAAAAA/mPGHQbNo5No/c-rp-mo-br100/photo.jpg','17898197009688164559',5640),('AIe9_BG84YPnR8vhxeJfV_lAYVNiM__jmEyqfF2GlIwMUedHQCIDXsW493xZUKhxLG6msNa1-fAnpHUWLMjyPpWD5JKQs8Zj-CLE6JPvEk-jEfxsWTUldkg',NULL,'2020-02-29 16:19:51.492000','2020-02-29 16:19:51.492000',5,'Brittany Howard','https://lh3.googleusercontent.com/a-/AOh14Gg5d_WoF66MG4Tqvi90GGET26zDChBN0hC_-uxr=c0x00000000-cc-rp','3272657195432704501',14310),('AIe9_BG84YPnR8vhxeJfV_lAYVNim5cc_rW8Oi8eByDvJHFcfJtD4e4sG2bdBHI8a-5qFoiKySDjLE4EHw4rNRC1rsSFreOchBWZUrDC8clpoMqo2w1XrAg','The people that attended us were very nice and kind. I don\'t know their names but they were all charismatic In their own way. They\'re all fast and reliable for sure. I\'ll definitely come more often','2020-07-18 18:07:50.638000','2020-07-18 18:07:50.638000',5,'Adrian Rodriguez','https://lh6.googleusercontent.com/-oIJ3m4bob9g/AAAAAAAAAAI/AAAAAAAAAAA/i4bEHAJca5o/c-rp-mo-br100/photo.jpg','14748677429039074158',21737),('AIe9_BG84YPnR8vhxeJfV_lAYVNiMA29u8J6fXsIypfb7P64ajWJzDt9YSRetaI9U1wpyqKQJl6BuvynMZZJ4Fb1zxuYZ8KAHno8oXbWS_2sDwqBHWekKlg','Very clean center and helpful team. Quick assistance, friendly.','2018-09-11 13:45:20.369000','2018-09-11 13:45:20.369000',5,'Tim Nguyen','https://lh4.googleusercontent.com/-Nkj27e7JpKU/AAAAAAAAAAI/AAAAAAAAAAA/5TS4wfE6Iwc/c-rp-mo-br100/photo.jpg','17394740196501090048',4800),('AIe9_BG84YPnR8vhxeJfV_lAYVNimf0jrv5krXJzE3pvpzBKZ91ApWXzdHlUpkJOIxLcfKEHdVxfR5l7uls4fHmEnXEuAtPJcorgSP6eUg68Sce39BU2slo','Good service. The staff are very helpful in the South Austin center.','2018-02-02 18:00:19.425000','2018-02-02 18:00:19.425000',5,'Nimo Galaxy','https://lh4.googleusercontent.com/-H9_WstZzcm8/AAAAAAAAAAI/AAAAAAAAAAA/740JtBpqqYA/c-rp-mo-br100/photo.jpg','16891069708558046635',4516),('AIe9_BG84YPnR8vhxeJfV_lAYVNiMIsBzY3lPXIoRcYsl9GKzjdcYUwM-yWrEFDayqhj3CisoAbl8zcNmkmVzxNAUsfOyt7-CWEVYK-vphYf59MeOPUzGh0',NULL,'2020-07-08 16:02:20.722000','2020-07-08 16:02:20.722000',5,'Matthew Fort','https://lh3.googleusercontent.com/-uaEfzmDa3Hk/AAAAAAAAAAI/AAAAAAAAAAA/OPmt3M4Znwo/c-rp-mo-br100/photo.jpg','2077061009497551125',21441),('AIe9_BG84YPnR8vhxeJfV_lAYVNimK3IEH4Hqy4aVCdGeZkZwjk2GYktlOWlo_RTazFm5teCEq9toSOTMb0NQNZpi8Y6CZJjyV4Y5IDNVGPPGAc_sr6Bj2U','I love SignatureCare, this is the only emergency room I will go to. I went previously and loved it so as soon as I start feeling under the weather I didn’t look at any other ER except for this one. Natalie at the front desk was exceptional and friendly. The wait time was none existent! Joseph and Diem were friendly and helpful and Dr. Pham was very knowledgeable. He clearly explained the entire process. They took great care of me and I’m never going anywhere else!','2018-12-11 17:19:06.589000','2018-12-11 17:19:06.589000',5,'Kaylin Danielle','https://lh5.googleusercontent.com/-wDJZATQ8fTA/AAAAAAAAAAI/AAAAAAAAAAA/bEsAfJoWJEM/c-rp-mo-br100/photo.jpg','14567670160750071148',1450),('AIe9_BG84YPnR8vhxeJfV_lAYVNiMKVnn3gJFFEZW_LJb5nmChusrLtFYJA_MY6XGKtLzrtLhLPlE8VUkoXzFCtA9prM0ofDGTZRrfSpIGz4HgB7TakzNbE','Quick and reliable','2019-09-18 15:20:10.383000','2019-09-18 15:20:10.383000',5,'Patrick Schulte','https://lh3.googleusercontent.com/-F0zICsrYsV4/AAAAAAAAAAI/AAAAAAAAAAA/lhRwu7faePc/c-rp-mo-br100/photo.jpg','16590124370714063921',3201),('AIe9_BG84YPnR8vhxeJfV_lAYVNiMlKMULP8wN3TWktkpzr1CRUQNrDGx6KDvMGwVInQPQZu-zwDX62GQZBZrN2yopOkDa0cjNODX2Isi0J1lFQHZyVUj9A','Great experience, as always, great job by the staff (Alvean, Meredith, Tricia, Jordan, and Dr. Nguyen).','2020-03-04 19:15:37.992000','2020-03-04 19:15:37.992000',5,'Banks Family','https://lh5.googleusercontent.com/-Svt0RM8nLPg/AAAAAAAAAAI/AAAAAAAAAAA/KJFLKdj0RF4/c-rp-mo-br100/photo.jpg','16389487648212004696',13735),('AIe9_BG84YPnR8vhxeJfV_lAYVNimLNusDBFvOU4Po3_XUW3nvo4MmEFoGGaXICsC2zHxlbndaO67LOtn8HNpRCEjZ66ePL8T9D2aDe0vv0xoUjpkzOCDj0',NULL,'2019-03-19 14:06:47.212000','2019-03-19 14:06:47.212000',5,'Jaqueline Perez','https://lh5.googleusercontent.com/-r08ZFgioAa4/AAAAAAAAAAI/AAAAAAAAAAA/29mz2m1_NVg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiMm_Se9SVm_-9tiT3U0sIn82BM1TPh_LnvNt1_cxKGr-TNFKeqew7HOCRBgBsvvsQvTQDiLsFlPrGDrY-P9TNb6I1U0w','This place is fast and efficient.\nThe employess are nice and friendly.\nThey know what they are doing when it comes to ur health.','2020-08-12 23:21:58.804000','2020-08-12 23:21:58.804000',5,'regina whiteside','https://lh4.googleusercontent.com/-ZYEdoAXVEv4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm3aQ1_ftFGJ_DhNaZsMOM9RRtHMg/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiMngSVo86Morp2a-BU-A0Lfz8tEtjhEOyXtUr1mi2puCtkBjWdmh04tj2vgcw_VwPbqcw2rVlgfxXHb6I2W4XXTxElSo','Reg.Malissa ,RN Stephaine,Rad TechLaura,ERTech Scott,Dr.Chen everyone was EXTREMELY PROFESSIONAL.Signture Care Emergency was extremely CLEAN.It felt like a VIP Hotel experience.Everyone had great customer service skills.I recommend everyone to come an experience EXCELLENT CARE.Everything was done in a timely manner and with Clean communication.My Best ER experience thanks to the entire staff.','2019-08-01 22:39:09.067000','2019-08-01 22:39:09.067000',5,'Danielle Cormick','https://lh6.googleusercontent.com/-gXrkEPxYMME/AAAAAAAAAAI/AAAAAAAAAAA/mhNEx-9O3m0/c-rp-mo-br100/photo.jpg','12541597562633926366',469),('AIe9_BG84YPnR8vhxeJfV_lAYVNimo8Yflhm8h4R5acHjkaN0It2qFlXTm13hKUiRrojmHzBs5_aaPZJHlRHmiUqNysTum0JVZtF5-dsAA36B_weOGdDvHQ','WONDERFUL people! They were so kind and empathetic! Thank you Dr. Chowdhury, Nurse Theresa M., Rad Tech Jorge M. and Registration Denise M. 🙏🏼❤️','2020-05-31 15:39:59.268000','2020-05-31 15:39:59.268000',5,'AM','https://lh6.googleusercontent.com/-ELmh29JtWHk/AAAAAAAAAAI/AAAAAAAAAAA/GU7QcfV9pLQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21775),('AIe9_BG84YPnR8vhxeJfV_lAYVNimtqHoDbI5YRSWBkYk66Ui_m5FXBBE9fbcFlTjtdBaHppxdK-a1Qvho1mbFurhAt0ssbIaN5NZ6jFfuJKg9arJbUuJjM','Dr.Ybarra , nurse Rolando , Radiologist Natalia , and the registration lady Ms.Stephanie are all very nice people. Ms Stephanie talked to my mother and explained everything to her about the process and what was going on due to the fact that I am 5 hours away from home. Everyone is extremely patient and helpful.','2019-02-11 02:41:05.506000','2019-02-11 02:41:05.506000',5,'Tyasha Rayfield','https://lh4.googleusercontent.com/-EsORLn6-7go/AAAAAAAAAAI/AAAAAAAAAAA/nkXQ18o8PPQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8871),('AIe9_BG84YPnR8vhxeJfV_lAYVNiMUZlE39UB0ULgmtHtphdhxPiVsVOEfRQl65h2R3sWTsz8thr-H0aYc9u4642tF7_67IwZEJtfoG8Kcqx-wFgQQkUbb0','I had a cold and got treated very quickly and efficiently. Kim, Brad, and Morgan were all extremely helpful and made my experience at the doctor a little more bearable. 10/10 would recommend.','2017-02-07 18:16:40.784000','2017-02-07 18:16:40.784000',5,'Graham Williams','https://lh6.googleusercontent.com/-2KdnjGOi7qM/AAAAAAAAAAI/AAAAAAAAAAA/WPY6UMOtaOI/c-rp-mo-br100/photo.jpg','16590124370714063921',4068),('AIe9_BG84YPnR8vhxeJfV_lAYVNimvwDmgWgOMBUGnmmDyZgauHRgx9IEGDlSY_FhP-FWTmjoBaMcgwONBnG31KMDodV8-uTC97Kr3sYnJzw9WK-uqF9UbU','Awesome customer service!!','2019-08-03 02:38:12.012000','2019-08-03 02:38:12.012000',5,'Shenetta Hampton','https://lh5.googleusercontent.com/-Fh1B-AiIB-o/AAAAAAAAAAI/AAAAAAAAAAA/KAVpqldZdOE/c-rp-mo-br100/photo.jpg','12541597562633926366',467),('AIe9_BG84YPnR8vhxeJfV_lAYVNimWbarw_rp3XBfHcqQP9aep5zhz0_ivj0egsXZteUF-NtqR0Vdl0VHJDCPWuFjBMvepme9Cmt0U588vaJE3TJq4VYqI8','Excellent service','2019-02-26 05:32:54.255000','2019-02-26 05:32:54.255000',5,'Ashlye Gibson','https://lh6.googleusercontent.com/-niL1QEBAZ94/AAAAAAAAAAI/AAAAAAAAAAA/tx-UzF5t3AI/c-rp-mo-br100/photo.jpg','3511292162159714121',7398),('AIe9_BG84YPnR8vhxeJfV_lAYVNimyTnQk5UDjeU5EAo03OmIQ-hO2PtHJbk8qZETdWGG3QCDgKUH6UDjLIUyN0AbdOnyqXVKJBfMxjH2HJq2cAEK0tYknU','Dr.Wren, churiah,Natalie, Olivia,and Jackie were very helpful. Fast service and made me feel better.','2018-11-22 01:01:56.545000','2018-11-22 01:01:56.545000',5,'jageitos','https://lh3.googleusercontent.com/-4y77eckUBds/AAAAAAAAAAI/AAAAAAAAAAA/kWDJ4dNxK_8/c-rp-mo-br100/photo.jpg','3511292162159714121',7555),('AIe9_BG84YPnR8vhxeJfV_lAYVNiN1lLpm2KZ5uNDKys-TUCrO1ZoPQygyUDGDZ6B6hyKtV02S54QZzhLqo4D75xJcdht6llNHWvU5Z4hPWNKwdt0U7gJRU','Really helpful people from front desk to the back everyone is really nice and they diagnose my son with a lot of exams and good prices too. Dr. Henderson, Alvean, and Patricia thanks a lot.','2020-02-08 13:20:23.643000','2020-02-08 13:20:23.643000',5,'Antonia Pahua','https://lh5.googleusercontent.com/-KyKZtEg9rtY/AAAAAAAAAAI/AAAAAAAAAAA/xPo_E_pLCSQ/c-rp-mo-br100/photo.jpg','16389487648212004696',22611),('AIe9_BG84YPnR8vhxeJfV_lAYVNiN6J6KQ6MAhG_IrSr_xi93MFrhEZQZufcgrVUTHRuManruugTl_JIQBZboF8Cy_k8B58M92L_D2BAHGcx5x6p5gjVRII','I can say this was amazing. Clean friendly welcoming staff. They made this a home away from home experience. Tanishia was very friendly and fast during check inn. She explained things and if you didn\'t understand she would go above and beyond to help you understand','2019-05-22 15:18:41.273000','2019-05-22 15:18:41.273000',5,'j owens','https://lh6.googleusercontent.com/-9PUd_HZqbAo/AAAAAAAAAAI/AAAAAAAAAAA/_j7Rs-QEz6g/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5727),('AIe9_BG84YPnR8vhxeJfV_lAYVNiNaeC6OoZja8bCSqUqNifNic3UKmfUaQj8TqLKk4segWZORBgUTeSSL7w_yWJ0xLv7Q1ECt7j28zouUNWKZTvalnwmHU','Ashley skripol was awesome and exceeded expectations, give her a raise!!!$$$$ \nDoctors were great as well as the technicians','2018-10-15 14:08:22.961000','2018-10-12 19:07:47.005000',5,'David Snyder','https://lh3.googleusercontent.com/-JTRa8dsym98/AAAAAAAAAAI/AAAAAAAAAAA/Lx0mLQjMTy4/c-rp-mo-br100/photo.jpg','12541597562633926366',598),('AIe9_BG84YPnR8vhxeJfV_lAYVNinBinNejMd975tV5lP1vpoBipZyEK5v0aUvIoINqh68xW3NJkxu1qQN1IbEwzds-0oogFyRbLzzsVSkYHPz0qcsUlWZo','I would like to tell the staff at signature care thank you guys for getting me in and out so fast. The staff there was helpful and friendly I would have to recommend them to everyone who is in need.','2019-08-03 04:12:20.977000','2019-08-03 04:12:20.977000',5,'Victoria Westfall','https://lh6.googleusercontent.com/-E99wPLfvpCQ/AAAAAAAAAAI/AAAAAAAAAAA/gAd7dKu3u0w/c-rp-mo-br100/photo.jpg','16590124370714063921',3267),('AIe9_BG84YPnR8vhxeJfV_lAYVNiNEXrnGVUovAjPplR5YjT7yI3oDf5ltNP6iPR5RpBVigpeYYKWJN9ej48ru2MXF64fnhd-IhUfTs_kyo4JXcEV1oygUU','Thank you to Dyveliz, Jacob, JR, and Becca for a fast and excellent service this morning!','2017-08-19 16:20:14.092000','2017-08-19 16:20:14.092000',5,'Maria Fernanda Chacon','https://lh5.googleusercontent.com/-eo2nMdO1q1c/AAAAAAAAAAI/AAAAAAAAAAA/H2-JAnSl08o/c-rp-mo-br100/photo.jpg','16590124370714063921',3958),('AIe9_BG84YPnR8vhxeJfV_lAYVNinffgsXfEHmbDw8DoMlPN7HJ_qwZibKHztE8hHMoFIcMwf5Hu9WZClhzEzIKSV6nNFhUx2OGoAdcYs-jEoJBLYn7YKQo',NULL,'2020-08-01 02:46:53.173000','2020-08-01 02:46:53.173000',5,'Consuelo Iniguez','https://lh3.googleusercontent.com/-svIg_Kty8iI/AAAAAAAAAAI/AAAAAAAAAAA/Jzboav-t1mA/c-rp-mo-br100/photo.jpg','2077061009497551125',22978),('AIe9_BG84YPnR8vhxeJfV_lAYVNiNhEiXsZmAth9n6_gWxWgeq85-aXUz4IlR0Y8c3rY1VN_gKeZbqAa7qEUa1QpDEVaWDrOD17guSeWHH8bqsRthofeL84','Super quick! maya registered my information very quick and Kristina and DR golla were super nice and informative❤️','2020-02-26 23:24:14.491000','2020-02-26 23:24:14.491000',5,'Mila Mouton','https://lh6.googleusercontent.com/-RfR8yl8wujw/AAAAAAAAAAI/AAAAAAAAAAA/7SztDQaiZ30/c-rp-mo-br100/photo.jpg','12541597562633926366',13332),('AIe9_BG84YPnR8vhxeJfV_lAYVNiNiSQxunx4E_3j64q6zDYl5g6WaEuSm3V5WOGh5OQwOG-lJITBqIydOnbupFjnaDLCL0PXFK8L5VlccyZd8vkp_-_Uik','The staff here are great! Deanna, Dr. Smith, Danny and Jordan were all so sweet! Made my daughter feel at ease! ❤️','2019-07-03 02:19:30.985000','2019-07-03 02:19:30.985000',5,'Terra Brewton','https://lh4.googleusercontent.com/-mg5ZvNMsrxg/AAAAAAAAAAI/AAAAAAAAAAA/HN6N4lFtxKg/c-rp-mo-br100/photo.jpg','14904078213800803294',2121),('AIe9_BG84YPnR8vhxeJfV_lAYVNinqPwEaMIrDyBugs8lnQi5gsECK7V0KsEgOBddNXpyyh-yLfA0-QIRkyuxeo7iqaCMhI8FrN-uZgj1gad_lmyCrvsgts','This place really makes you feel cared for! I was taken care of by Anthony, Natalie, J.R., and Dr. Harjai and had a great experience. I give this place my top recommendation.','2019-04-03 19:12:19.623000','2019-04-03 19:12:19.623000',5,'Brianna Crooks','https://lh6.googleusercontent.com/-bJIdE4kiACo/AAAAAAAAAAI/AAAAAAAAAAA/daC3wHh-eZE/c-rp-mo-br100/photo.jpg','16590124370714063921',3457),('AIe9_BG84YPnR8vhxeJfV_lAYVNinrLmgpR-BydppuTSQtZKFnNv_incAipMYXikKyhy26FdQELoc3yj58JZXfk1Fy_WZCT10dFD0WguoCuEVxg6F9YZXm8',NULL,'2020-07-06 15:11:52.697000','2020-07-06 15:11:52.697000',5,'Shi Holmes','https://lh4.googleusercontent.com/-tyVz-GDWGP4/AAAAAAAAAAI/AAAAAAAAAAA/yuAXrLbY4wA/c-rp-mo-br100/photo.jpg','8918455867446117794',21495),('AIe9_BG84YPnR8vhxeJfV_lAYVNinU8q30D1PinceSnuLmIHzWbPHe8Zpcea8SyVibur8PbKO0-5fHlKlbDX1zemhzH8sJY4GBSBMhrsPVpT2ndISzZ2_lw','I will highly recommend this facility to anyone. The whole staff from Karly in registration to nurse Susie and Matt the tech were very professional and extremely friendly. So if you find yourself in need of emergency care don’t spend hours waiting at the local hospital make a stop here instead you won’t be disappointed!','2019-06-02 22:50:32.996000','2019-06-02 22:50:32.996000',5,'Jamie Kirkes','https://lh3.googleusercontent.com/-m_GZWAqzg5o/AAAAAAAAAAI/AAAAAAAAAAA/aJ8Jb-G_MPw/c-rp-mo-br100/photo.jpg','8626688543755174284',8465),('AIe9_BG84YPnR8vhxeJfV_lAYVNiNUozM30TBt2LUPbA3dJedJr6Nx0bL1Mu3sk3Y0BXErjRO2C4wcfjcZP5MTB6ssGHkPmfsIUAuI0ZorzEzr0BKU5Omr4','Service was good the receptionist Patricia was very helpful and friendly and my nurse Ekaterini was great as well the MD was informative as well','2020-01-24 16:36:44.051000','2020-01-24 16:36:44.051000',5,'Wendy Newson','https://lh6.googleusercontent.com/-7CeyOQ_XOiU/AAAAAAAAAAI/AAAAAAAAAAA/15SGaysJvg8/c-rp-mo-br100/photo.jpg','16389487648212004696',10187),('AIe9_BG84YPnR8vhxeJfV_lAYVNinxYqQ6tVrrHg1Ev1rdcKFtk6hCO92FaDULPQQKAQZPAHAYf8s4L84jAjt1g3daAdE4lo22ETGl4lGzmAMYPAUHGxjtI','Great staff. Doctor was funny even though I couldn\'t laugh. TV didn\'t work properly but the stuff did everything possible to make sure I could watch something.','2017-02-18 19:47:52.881000','2017-02-18 19:47:52.881000',5,'Chris Baldacchino','https://lh4.googleusercontent.com/-OBqWBBjTwek/AAAAAAAAAAI/AAAAAAAAAAA/-ksVU493DR4/c-rp-mo-br100/photo.jpg','14904078213800803294',2409),('AIe9_BG84YPnR8vhxeJfV_lAYVNio-fqwei0-sFwj7yw1inwcRhFqyFHV8yL3T9m7pNrhrjaIfOKv0T69juppTSGpr8rKSS0sg4T0_gIt1XRWQW5q1ofWbc','Nice staff , very clean environment , dependable fast service from doctors! They seen me, my son, and my daughter within minutes of coming to the hospital.','2018-01-13 15:22:00.506000','2018-01-13 15:22:00.506000',5,'Savannah Johnson','https://lh5.googleusercontent.com/--bme0LwkTQY/AAAAAAAAAAI/AAAAAAAAAAA/EBbswH0MixM/c-rp-mo-br100/photo.jpg','8918455867446117794',9308),('AIe9_BG84YPnR8vhxeJfV_lAYVNio-J5shEQYE4l2Zg040ot36fIKyxTzAA0siKEBQX6gE1Rx4QXytsO0JQovS_KBVKHhM9uCfAfu-ByjlyNdkEbM6MS2dM','They were great and 100% coming back here next time \nDr. Datta, Soumitra\nAlvean A, -Nurse\nTricia B, -Radiology\nDarnisha A. -Registration','2019-09-08 16:42:02.921000','2019-09-08 16:42:02.921000',5,'Erika Laenen','https://lh6.googleusercontent.com/-RMVgnmF8ixE/AAAAAAAAAAI/AAAAAAAAAAA/EpCltMeZ8wk/c-rp-mo-br100/photo.jpg','16389487648212004696',2939),('AIe9_BG84YPnR8vhxeJfV_lAYVNio9l7qSVukvIlur7mQJCyY_IhpWUhQ0PMZno8hy-Ke4ndXNt7YJYDNHDnyApiOEHHIJvjBK4jtD4Z9Q7ekXd4bdT0f3o','I brought my husband in for back/flank pain. He dont like hospitals but his pain became unbearable. We were greeted with the most pleasant and hospitable staff. Thank you Ashley, Alisha, Dr Henderson, Nancy and James. Best urgent care ER ever!','2019-06-17 22:30:32.368000','2019-06-17 22:30:32.368000',5,'Chikita Washington','https://lh4.googleusercontent.com/-VZgfzbKvQI0/AAAAAAAAAAI/AAAAAAAAAAA/WczehiiZy2U/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5692),('AIe9_BG84YPnR8vhxeJfV_lAYVNiODTOKAUe_ji6asI_ErrWsBwvR2MsokWIpFp9_5g650Z4JYzh88vbfsqTzEwprZuVioG_obpeDaNoqGvO-Nrh2pkMpAU','I would highly recommend SignatureCare Montrose to anyone who is in an emergency bind. After looking at the abysmal reviews of hospitals and clinics in the downtown area, I was thrilled to see that SignatureCare was incredibly highly rated. I went in after a weekend of persistent stomach discomfort, and the waitstaff, medics, nurses and doctors were all incredibly professional and earnest about getting to the bottom of my symptoms. Dr. Grinblatas was incredibly thorough and helped walk me through his protocol; an apex of professionalism and personality. Nurse Reed continued to check in on me amid being slammed with 10 patients within a 15 minute time span, and was able to walk me through each of the tests in easily comprehended language. Even with the busy night, I felt like I was being cared for, and I was only discharged after they confirmed my clean bill of health and that I was ready to leave. I don\'t want to be in an ER again any time soon, but I guarantee that I\'ll come back here should the situation ever arise again!','2016-04-13 00:13:55.459000','2016-04-13 00:13:55.459000',5,'Tom Ten Eyck','https://lh4.googleusercontent.com/--P0_44g9Ddw/AAAAAAAAAAI/AAAAAAAAAAA/7bWYMlo5EwY/c-rp-mo-br100/photo.jpg','3511292162159714121',8017),('AIe9_BG84YPnR8vhxeJfV_lAYVNiOeWkrcyn0mcPu50DcwzmxBP0k-rw5e27FHQiDy--y4Dfe3C_iSuYtg8ma6VtxUT4RRG_LL04vm1z_rSTbpN0mLWFYIk','Very good service loved all the nurses and doctor very special thanks to Ashley S.','2019-07-12 23:04:43.224000','2019-07-12 23:04:43.224000',5,'Julianna Alvarez','https://lh5.googleusercontent.com/-3mO4BTBfnY8/AAAAAAAAAAI/AAAAAAAAAAA/D_CbPVJx7Oc/c-rp-mo-br100/photo.jpg','17898197009688164559',5635),('AIe9_BG84YPnR8vhxeJfV_lAYVNioHSjtHJ2yDVaZec9FBiI4wCfB1dyICotnBoXqlK5x4sIUh8_kOW60_oRoFFuT8TfnR_eX1MeXA5wd2og3u4xX10gjfU','I have never had quicker and more precise care for my little one than I received at Signature. Chasity was very welcoming from the moment I walked in. As a nurse it is always nerve wracking when your little one gets sick. Dr. Huerta was wonderful, quick and precise with his care and diagnosis. He explained everything perfectly and kept me posted throughout the stay. \n\nAaron Ortega & Krystal Marquez were the absolute best!!! They were quick to get him back and triaged, and take care of all of his personal needs and medical needs! They also kept me updated throughout the stay on what was going on. I appreciate their top of the line care. During his stay we felt we were in a hotel suite it was so welcoming and comfortable. Thank you again Aaron, Krystal, & Dr. Huerta. If my family ever needs anything at all, I will be returning to SignatureCare.','2019-01-31 16:04:11.149000','2019-01-31 16:04:11.149000',5,'Erin Mann','https://lh4.googleusercontent.com/-IOTMT4YMPWY/AAAAAAAAAAI/AAAAAAAAAAA/LBJQ28aHuXQ/c-rp-mo-br100/photo.jpg','13486358490203335051',1078),('AIe9_BG84YPnR8vhxeJfV_lAYVNioJakzHIK5L8IdI0K7e-9gX2YY_7njvmY2wbLCdeGs2NwFGWCO2JitANjUOF96_X8ie30DkaZQ1yrchM6TtLj9GT3grY','Tatiana, Nicole G, Michelle L. And Dr. Thomas we’re friendly, knowledgeable and helpful. Overall a great experience.','2020-02-23 03:02:53.407000','2020-02-23 03:02:53.407000',5,'Norberto Seanez','https://lh5.googleusercontent.com/-VNtx6cQtE5I/AAAAAAAAAAI/AAAAAAAAAAA/Tz_8jKbdGZA/c-rp-mo-br100/photo.jpg','14567670160750071148',13513),('AIe9_BG84YPnR8vhxeJfV_lAYVNioJFqFy5Rug8IEB4mUsaglMsefU4qNaFiDksJ6HivUI2gk5NeifUAWzw-iDXKt1Y3YCxnWl2BTdxc08ni1hhYlHklGik','Came in after a car accident. Within minutes I was getting taken care of. Their service is 10/10 they will take care of you they’ll also make sure you get the results you’re looking for. \nFor sure I am going to recommend anyone who has the same problem I had!','2020-02-02 21:56:03.415000','2020-02-02 21:56:03.415000',5,'Sebastian Garcia','https://lh3.googleusercontent.com/-gtKf_q-7Iw4/AAAAAAAAAAI/AAAAAAAAAAA/5-ZYLMxkpOk/c-rp-mo-br100/photo.jpg','12541597562633926366',10372),('AIe9_BG84YPnR8vhxeJfV_lAYVNiokLgNt_DjATA2OmLdiDpSPxr_V5uCb4wdKmnPtT2JKF9IutXtBZvQ8eTqIuDvWXWeq45meOqRW6Uszy7jtqffVt_BN8',NULL,'2018-12-11 03:31:26.550000','2018-12-11 03:31:26.550000',5,'Savannah Johnson','https://lh5.googleusercontent.com/--bme0LwkTQY/AAAAAAAAAAI/AAAAAAAAAAA/EBbswH0MixM/c-rp-mo-br100/photo.jpg','17394740196501090048',4754),('AIe9_BG84YPnR8vhxeJfV_lAYVNiOQIySt8tx45BQXbLyZml7eVg4QYNbNO1UEMRGdcBK34HNBdvWIHQZr0ra6QXMUHzKnoKyPFyJSBjraTcaaHHil546fU',NULL,'2019-03-08 15:27:04.130000','2019-03-08 15:27:04.130000',5,'Briana Andrades','https://lh4.googleusercontent.com/-qnrpGjibmoQ/AAAAAAAAAAI/AAAAAAAAAAA/2fNv1aSi7Fg/c-rp-mo-br100/photo.jpg','17898197009688164559',5817),('AIe9_BG84YPnR8vhxeJfV_lAYVNiOtR8FAo2ibRifCD8j8yuH32RqnTuvYhZPRi8M0p7zjithKPeQtlQxpAokc56CYxQkhtl5yM-entUIlBWAUhariQ8MmY','Service was tremendous. Good staff with Edgar, Irving, Holly, and Thelma.','2019-11-15 00:36:25.734000','2019-11-15 00:36:25.734000',5,'Trevon Ellis','https://lh4.googleusercontent.com/-LoBtgOsqeWQ/AAAAAAAAAAI/AAAAAAAAAAA/cgdfJbKrYV8/c-rp-mo-br100/photo.jpg','12541597562633926366',382),('AIe9_BG84YPnR8vhxeJfV_lAYVNiowtP5-UZ5fClN5_S9l0aB-i9wOl9woXAXjQxLt9hMiv0LNo2lntkK_m47A8x8gyRct_rfy7jk1hVQei3kp-J1Cs-BR8','Doctor Henderson, Nurse Sarah , Rad tech Laura , Er teach Daniel and Registration Tanishia were all so welcoming , caring and had such a great attitude thank y’all so much !!','2019-10-23 01:23:10.477000','2019-10-23 01:23:10.477000',5,'Jackie Jovel','https://lh5.googleusercontent.com/-acuOlkrgatU/AAAAAAAAAAI/AAAAAAAAAAA/k_r6D0_6y_Y/c-rp-mo-br100/photo.jpg','17898197009688164559',5492),('AIe9_BG84YPnR8vhxeJfV_lAYVNiOxhoJESm1QsQ5ikQriWhgX3CAqXhqmVb1zfk8zH7KJebJfmxuDl6UYpO6wiNOG3F1zBXtSD_xInkkKNgaGZaHP8Hqyg','Tanishia (Reg), Dr.Mauldin and The Nurses are Great! Matt was making my mom laugh during her visit! \nThey were able to give my mother Peace of Mind. I will definitely recommend Friends and Family to come here!','2019-08-12 05:09:43.034000','2019-08-12 05:09:43.034000',5,'Kimberly Yvonne Guerrero','https://lh3.googleusercontent.com/-7fsC_PQ8BG4/AAAAAAAAAAI/AAAAAAAAAAA/D2vzUhdvb2k/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5594),('AIe9_BG84YPnR8vhxeJfV_lAYVNiOxzMcsnMr6VWojY1nGOcZmRbxKSsg-RYRTyVBNFcTrFljM2NS2jN2NQGBwzp1YyKVuCGFmgIeGlWqAIVtFfSRWUGdls','Aaron was a hottie and super nice.','2016-07-26 02:10:41.390000','2016-07-26 02:10:41.390000',5,'Honeybunn Fitness','https://lh4.googleusercontent.com/-Is3dDKGPyxA/AAAAAAAAAAI/AAAAAAAAAAA/RIw25XAmp0E/c-rp-mo-br100/photo.jpg','17394740196501090048',5220),('AIe9_BG84YPnR8vhxeJfV_lAYVNip0WA1-mMI-2tclgtC3iYp-XJgG3yyschsrgHTBYGThTsP6GJ8U4XYM93mOs9jIKbIkKdNRCH1_F_sw80I6xFNRlAIYs','It was quick, detailed, and the Dr and Nurse Dee were great and professional! Will come again.','2020-01-24 22:43:28.898000','2020-01-24 22:43:28.898000',5,'torrey brandenburg','https://lh4.googleusercontent.com/-mdz_3otxyYE/AAAAAAAAAAI/AAAAAAAAAAA/rUyuv23frX4/c-rp-mo-br100/photo.jpg','3511292162159714121',14448),('AIe9_BG84YPnR8vhxeJfV_lAYVNiP10UvojZHRUWAbqbQuieVfXTNqpS-8zlUc1trM9lc7OvFxspSGp9UusSlzXjeABkeP5FkLWET3Fi6H0K70Mr7e82mdY',NULL,'2018-06-04 05:52:36.297000','2018-06-04 05:52:36.297000',5,'Matt Seaton','https://lh6.googleusercontent.com/-_jvieNO1QYE/AAAAAAAAAAI/AAAAAAAAAAA/CZMdNzH88vc/c-rp-mo-br100/photo.jpg','8679688254631342173',8899),('AIe9_BG84YPnR8vhxeJfV_lAYVNiP33-WBAYck7mafshN-X8WqcjuWO4hUlth7N0c7evG9JgpfjFbN9ZAWDrTOPRvsiyANdvl9iLEV6Dw0xMmCXFBajCQis','These folks are totally amazing. I could not have asked for better care. Everyone was kind, caring and compassionate. Even had me come back in the next day to check and change all my bandages. Wouldn\'t use anyone else in the case of an emergency!','2019-12-15 01:51:15.223000','2019-12-15 01:51:15.223000',5,'Stephanie Schutte','https://lh4.googleusercontent.com/-6Ga2gwirXFA/AAAAAAAAAAI/AAAAAAAAAAA/dzBl4-qrghg/c-rp-mo-br100/photo.jpg','3272657195432704501',6839),('AIe9_BG84YPnR8vhxeJfV_lAYVNiP4ea3772IPd__ISxVaQp214Q64ieJwftMj-rgOT-cQXVcsbT8y6gPu6tmkVF3e3L1Ibczjxm6L-HxwWsPQwoqcSuG8g',NULL,'2018-11-25 00:11:19.156000','2018-11-25 00:11:19.156000',5,'Shelley Weaver','https://lh5.googleusercontent.com/-RcEDRtnwuIQ/AAAAAAAAAAI/AAAAAAAAAAA/-GHP3zjXfYE/c-rp-mo-br100/photo.jpg','8626688543755174284',8640),('AIe9_BG84YPnR8vhxeJfV_lAYVNiP5qAzvdGv-KATX6BnzNPHV3-Qtg9rheKz7n3kZ7DTAZMDIRRNVGQHLLSORtm56sy1gSJRpfEm6wRMzBVdD1h23CliKc','The staff was really nice and took really good care of my best friend! Very professional','2019-07-09 19:49:58.639000','2019-07-09 19:49:58.639000',5,'Kachina Simmons','https://lh6.googleusercontent.com/-wTN91GmfJwk/AAAAAAAAAAI/AAAAAAAAAAA/sdjoZXOH1Xg/c-rp-mo-br100/photo.jpg','17898197009688164559',5651),('AIe9_BG84YPnR8vhxeJfV_lAYVNiPAxYhG2GUEhAEu_Spygyy8V-G23aX_cLzOhJ-htE8AalDi2t2lRefycwWeywYPqy5MPhrbHn5D2lKWgLbg1oz-J9j1o','The whole staff was amazing. They made sure I was comfortable and addressed my issues quickly. I spent the night and the accommodations were great too. Thank you Dr. Patel, Dr. Nylander and Dr. Zhen. From the reception Genesis, the nurses John, Sarra, Laura & Kristina, you guys are awesome!','2020-02-04 13:58:32.925000','2020-02-04 13:58:32.925000',5,'Ram Benavidez','https://lh5.googleusercontent.com/-Z1rRBRd3Cp4/AAAAAAAAAAI/AAAAAAAAAAA/bvaqh4b0cCY/c-rp-mo-br100/photo.jpg','12541597562633926366',10535),('AIe9_BG84YPnR8vhxeJfV_lAYVNiPB9jMB1LpHptV69UK_Pdf2nDsaZxE-4j3Ide1DDgt5p_cWoXCyvsGtWq9jTMjEXmAiQNEs7HKLYALLTmQWwswb6_9vE','I visited here for a dog bite that got infected and everyone there from Tanishia at the front desk and Shelley and Heather who were my nurses as well as Dr. Patel took excellent care of me. They explained everything that was going on and made sure I understood everything before I left. I hope to not have another emergency but if I do I will not go anywhere else. Thank you all for taking such good care of me and making me feel comfortable!','2019-02-01 02:25:50.502000','2019-02-01 02:25:50.502000',5,'Christy Schild','https://lh4.googleusercontent.com/-P3MymmfFkRE/AAAAAAAAAAI/AAAAAAAAAAA/W-Vouyf4GP0/c-rp-mo-br100/photo.jpg','17898197009688164559',5870),('AIe9_BG84YPnR8vhxeJfV_lAYVNiPDOv12QHG9Nk92Ly6Qod79jxCrh-mZIkXxjyQZvhl3LXDuHfTwWL7zIZeEF4rjEDuS1RRHqikQ2TTuks-37X1PPR92M','Dr. Chen and nurse Bernadelte gave us an amazing experience. They took great care and also provide additional service such as doctor recommendation for my brothers injury. Would recommended this place because it is clean and the services are quick.','2018-02-12 07:17:23.130000','2018-02-12 07:17:23.130000',5,'Nhat Le','https://lh3.googleusercontent.com/-RifadvcOyzE/AAAAAAAAAAI/AAAAAAAAAAA/OSdyhdOXg74/c-rp-mo-br100/photo.jpg','17394740196501090048',4884),('AIe9_BG84YPnR8vhxeJfV_lAYVNiPFtVZauAGq1aADNydrtNHzYdazXEU2SfjJjBcBZVWza5MvQRswU9ddY-PIAuS9wz0ehpGirVm8IgXW9J1P-ELxdbXRA','Fast and efficient care. Anthony and Dr Kimball made me feel comfortable and well cared for!','2019-03-13 01:25:26.848000','2019-03-13 01:25:26.848000',5,'Ashley Stumpel','https://lh3.googleusercontent.com/-HF2XiEWioBo/AAAAAAAAAAI/AAAAAAAAAAA/XTEkLfYWcb8/c-rp-mo-br100/photo.jpg','16590124370714063921',3503),('AIe9_BG84YPnR8vhxeJfV_lAYVNiPiuc6VUIWLGjh_ciqvq5L2wibC6U2Gu6CrCDdJkByciSBxu_YCqHI_efNJP_dXqs-inyeeoAVSix3yR7WKZjQuWrUY0','Very friendly and professional. They took very good care of me.','2019-10-22 15:51:11.921000','2019-10-22 15:51:11.921000',5,'Keith Alan','https://lh5.googleusercontent.com/-EaoHIiA860o/AAAAAAAAAAI/AAAAAAAAAAA/LeYCkxGYKdM/c-rp-mo-br100/photo.jpg','17898197009688164559',5493),('AIe9_BG84YPnR8vhxeJfV_lAYVNipjLPFukSy7opczt1_lxx39T_gFPqS25ywnvDzLGdZoFKkfn8VAZ3Krp5jhzXwBmqkN-Py-_MGbjfoEidK2wuYELQ3B0','Radiology by Nicole was very clear, and really nice to her patients.','2020-03-06 16:24:18.722000','2020-03-06 16:24:18.722000',5,'David skeske','https://lh3.googleusercontent.com/-YWYYZ4-V61w/AAAAAAAAAAI/AAAAAAAAAAA/n28iVxbNNPA/c-rp-mo-br100/photo.jpg','8679688254631342173',15403),('AIe9_BG84YPnR8vhxeJfV_lAYVNipKaMvPDAP9yBYepf9FjtOBQYbcilkQ0AFHyCyMZuAHe8VDkepgPzNDlBQaqYvkmUfpNpSjp5atW2YfdOqbfoD56DUDc',NULL,'2020-03-07 15:35:18.266000','2020-03-07 15:35:18.266000',5,'Kenneth Brown','https://lh6.googleusercontent.com/-B_2x9Amiqzo/AAAAAAAAAAI/AAAAAAAAAAA/xMOUNKDhOSw/c-rp-mo-br100/photo.jpg','16891069708558046635',13909),('AIe9_BG84YPnR8vhxeJfV_lAYVNipLuXwts0yDZsO7tl0ngY6_eddNQi8Oipsnsfj7h21BolMsQdmz-7pIhK6WrimZLb6JH68kh3EKfsbPJ_GbqNdvaULmc','A very professional couteous facility. I highly recommend.','2016-02-26 21:09:30.677000','2016-02-26 21:09:30.677000',5,'HMilli','https://lh3.googleusercontent.com/-FL0ddUoH7uc/AAAAAAAAAAI/AAAAAAAAAAA/NXGo5DUyyjY/c-rp-mo-br100/photo.jpg','17394740196501090048',5277),('AIe9_BG84YPnR8vhxeJfV_lAYVNiPN7IhZn0VZPQjiADxMNgBMy5U5MxQ1CJ7vnr9Gz8ZVfQIYMldJcYvu37nSfga7dVxlKHI6cdOIz9ip8sGy_THh1ku_E','Samantha ,Christine, Ricardo, & Dr.Jaber were fast and very friendly. My 4month old was handled gently and with lots of care.','2020-03-02 04:51:45.829000','2020-03-02 04:51:45.829000',5,'Chasity Smith','https://lh4.googleusercontent.com/-QMLLOJwPjkk/AAAAAAAAAAI/AAAAAAAAAAA/px_LCTPyLfc/c-rp-mo-br100/photo.jpg','14567670160750071148',15141),('AIe9_BG84YPnR8vhxeJfV_lAYVNiPnSyj3g4qMgkkCoxeG83hADY-znjekiXOD-vZ13J6C-TespmL_3yn-IgDHslRSBnNjhUCUvYYVcpDokmuE15LcUMWk4','I would definitely recommend it. I arrived and registered and I didn\'t even wait 5 mins when I was called to see the doctor. The doctor and nurses are very professional and were concern in addressing my illness. Thanks.','2017-08-06 22:41:21.522000','2017-08-06 22:41:21.522000',5,'V Salazar','https://lh5.googleusercontent.com/-EoPTC1ro2pU/AAAAAAAAAAI/AAAAAAAAAAA/RfgAaHViHNM/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1779),('AIe9_BG84YPnR8vhxeJfV_lAYVNiPo0LvCc1Z94YNPytzAnYX0QNNUSBVNEU9niTPMvHc0EiNTBu4SoFUHWTPqUGAmNXHEZvWUQc0eFpw56_Xm_4pnIe0f0','This was really the best emergency room I’ve ever gone too. I came in from an urgent care all terrified and they calmed me right down and took excellent care of me. Special shout out to Thoresa, Ector, Tabitha, and Lisa for really making sure I was comfortable and okay. This really has the best care out there 10/10 would recommend.','2020-01-23 22:02:24.456000','2020-01-23 22:02:24.456000',5,'Jessica Reyes','https://lh6.googleusercontent.com/-wFScWIEk_bk/AAAAAAAAAAI/AAAAAAAAAAA/eKn6x49_aRM/c-rp-mo-br100/photo.jpg','6521947413723274945',10311),('AIe9_BG84YPnR8vhxeJfV_lAYVNippJp2ur4ApUIE29paIWig1IWgnNF58M3nb-FBX8Wvo_CqHBNh222Y9mI5uWj0yr8v1ijaqEXjjY1G5r5XRio_Vfrf8k','This is a great clinic. The facility is clean and the staff is very caring. My husband and I have both been, and the nurses and doctors spend time to help with your problem. I highly recommend them for urgent needs.','2018-07-25 04:23:59.528000','2018-07-25 04:23:59.528000',5,'Rachael','https://lh4.googleusercontent.com/-HCbl-2qH3es/AAAAAAAAAAI/AAAAAAAAAAA/CaKEao7FJjo/c-rp-mo-br100/photo.jpg','3511292162159714121',7684),('AIe9_BG84YPnR8vhxeJfV_lAYVNipqk89nVr9HePoihWeA95J_IKEsJMJs2XdUpeSDFW3rFh295PYk62aMjKKS86N5kbuFw5qUsmBq3jzs-v8EFDi1tpSgs','SignatureCare ER was a pleasant visit. The staff Cindy, Robert, Diem, Nikki, and Dr. Edwards made the visit very comfortable. Everyone was highly component and effective. This is the only ER in the Houston area I would go to and recommend to others the service is outstanding!! Thanks again SignatureCare ER you truly made a great impression in my eyes.','2018-08-15 14:21:27.293000','2018-08-15 14:21:27.293000',5,'James B.','https://lh4.googleusercontent.com/-0xv9a6ZZQ1M/AAAAAAAAAAI/AAAAAAAAAAA/mm-YUfI8dlY/c-rp-mo-br100/photo.jpg','17394740196501090048',4816),('AIe9_BG84YPnR8vhxeJfV_lAYVNipVtDogdP-gkdz37hyTAImx7vOAJKRRsfC8p6ZT27KMNTHHLBhJ07jiYKMWS9aIGj-1bPiW3C2lgPCr63OU9_6Nay2dg','Had a great experience got seen right away by RN Anthony and Dr.Harjan!','2019-03-19 23:22:44.601000','2019-03-19 23:22:44.601000',5,'Paxton Koop','https://lh3.googleusercontent.com/-qR-H0_cld-g/AAAAAAAAAAI/AAAAAAAAAAA/V3aVW_4lwCc/c-rp-mo-br100/photo.jpg','16590124370714063921',3494),('AIe9_BG84YPnR8vhxeJfV_lAYVNiq0LHrtigo75RHTGVkj9nwYSmz9D3KdTI2i14fS4kwTJHaWEg8TkPK3oQPq-n_2wZWWNYsyvvko5MmZj0XjhOKKmlQYU',NULL,'2017-10-14 13:15:59.879000','2017-10-14 13:15:59.879000',5,'John Cuellar','https://lh3.googleusercontent.com/-GL4m8X1sUrM/AAAAAAAAAAI/AAAAAAAAAAA/U00brdP_Er4/c-rp-mo-br100/photo.jpg','3511292162159714121',7775),('AIe9_BG84YPnR8vhxeJfV_lAYVNiq4sMcpA6BABg8Q78oYxNV3kNvqScuueqSu7mVlqZqPPE5SEQUF2lAI3wJMNq9I76xaFegii90yoqHj0b3gQ7gWMwTRg','Awesome, caring & Amy, Mina and Dr. Lim and Brian & environment. 3rd time visiting this location, can always count on for getting assistance from an emergency to quick covid testing. Smooth & safe process all the way thru... Definitely recommend!','2020-08-03 13:47:34.699000','2020-08-03 13:47:34.699000',5,'Mario Villalva','https://lh3.googleusercontent.com/-BD_1GEH9afY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclkKRNFvORRxqAL4dcZmkdPbXuFlw/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22145),('AIe9_BG84YPnR8vhxeJfV_lAYVNiqamEuunwkd5Rr3NLfPAhLT8AXyzMfxqRBRGjrfNdBzcspciRBWSzlPHBuT14BioedJsumsM1fHXkKCC6hpbz51gPBN0',NULL,'2019-06-05 14:22:25.064000','2019-06-05 14:22:25.064000',5,'Heather Frost','https://lh6.googleusercontent.com/-IG2ZmvAxKnk/AAAAAAAAAAI/AAAAAAAAAAA/ZCGsI5bQ-Zo/c-rp-mo-br100/photo.jpg','8626688543755174284',8463),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQDPCiaLgXef4xLqbVgxXRzebNqAi8CgBGzgDR8AU1vE8eu_h28DgLDWAqK6EeuleyZF6IYRyjynZQArEWUhT-rra8DY','Very responsive nurses and doctor. As soon I came in my girlfriend was seen. Good service. I definitely would come back Incase of an emergency. The entire staff was very nice and helpful. Thanks to Rachel Diem, Jessica ,Lisa ,Tristan & Dr. Hannan Sable','2018-09-30 01:25:14.743000','2018-09-30 01:25:14.743000',5,'Elmer Tello','https://lh3.googleusercontent.com/-_bT_9EEnZn0/AAAAAAAAAAI/AAAAAAAAAAA/nWcz83mp5iQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4781),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQE7QC_bmcywkljwhxfG7WulT9pW8LK6mdANXeoQ85g6mFYT6wqLD51nAqjk7S1uAM9kbdBTzFS_zMN92ssLkhAhC-gI','Very great visit. Was cared for by Anthony and Jeri, both RNs. Went in feeling miserable and left with answers and treatment. 10/10 reccomend.','2018-09-05 00:58:22.807000','2018-09-05 00:58:22.807000',5,'Courtney Kate Calhoun','https://lh5.googleusercontent.com/-B9SfYTxj2ZY/AAAAAAAAAAI/AAAAAAAAAAA/5UP7qPEYws0/c-rp-mo-br100/photo.jpg','16590124370714063921',3746),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQg2aFOCn-A7oG7sozehvypVf3EsSKTfC01zOrpepDRYhlKMb01qg3GBnDPmgnadWMg3hzv6DkC27LXwO-CeEzPS24kc','Dr. Omalley , nurse nikki and read tech Jessica were very nice and made the experience wonderful.','2019-04-23 04:28:25.388000','2019-04-23 04:28:25.388000',5,'Frank castle','https://lh5.googleusercontent.com/-i7hu5TlyJKA/AAAAAAAAAAI/AAAAAAAAAAA/nHp2Y_fQSSM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQgVTyFlsSxU932LTk5u4ns1I8ssC7rhrWRp9HbE4iqkbP0L2OEFmn3dt_utlwl7T0tNVRk2opUu5Owx4Qtz70-JGPd8','I LOVE this place so much I rather come here than going to the hospital they are very professionals ,very nice , clean environment, Excellent service I definitely recommend it.','2018-05-05 15:45:30.567000','2018-05-05 15:45:30.567000',5,'Bianca Garcia P','https://lh6.googleusercontent.com/-aAEfRUsNiZE/AAAAAAAAAAI/AAAAAAAAAAA/h-9yEbsL344/c-rp-mo-br100/photo.jpg','17394740196501090048',4852),('AIe9_BG84YPnR8vhxeJfV_lAYVNiqOc3ouaU5g-GhfQH4-ipeok-dOgXg-P4d_Z19WGHxE0g1zvadBb-0XaHfJ_RDtRNvcZGvyUyxk21miXTTSFPlpU5szA','Horrible experience at their Stafford location. Worst ER or Urgent Care experience I have ever had. Go to this chain of urgent cares only if you want to die alone in a waiting room. You will not be seen by a doctor. \n\nWe have been here almost 5 hours and have only “seen” the front desk lady, who is incredibly rude and condescending. Go somewhere else. We came here for the “rapid” covid test....5 hours later, this has been anything but “rapid”. Horrific experience sitting outside in the Houston heat of summer. \n\nDo not come here for medical needs. Do not come here for covid tests. This place is awful. The people are awful.','2020-06-15 01:47:43.820000','2020-06-15 01:47:43.820000',1,'Michele Whitebread','https://lh3.googleusercontent.com/a-/AOh14Gjhhvc6vHtvMzlulgPtheyYr6I5W9E6AZDvOPaVhA=c0x00000000-cc-rp','16891069708558046635',22043),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQPtBeHgLHOjZU8RYBJpNjIAQNFgMyLgRA5cAQ539-9S09uZy4XcHE2oXQyd__kcufSgyfPaK9a_aT1pAVX3KZcBtugY','Covid Test was quick and above all organized.!!','2020-07-20 16:09:10.447000','2020-07-20 16:09:10.447000',5,'Serge Torre','https://lh4.googleusercontent.com/-FO8tZABhutM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclsvVbJew1uVPkefQQnrh5mxZmvLA/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21881),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQscNuAMzNMdExjKISY6SRZIesS6heIVxfUHeo5W4ZLowtUQ6J9kg0aA0dK_Dmu6bQMJlnyV8h3TAjKoT8TuEREmZta8','Alexis at the front desk was very helpful! Nurse Anthony and Dr Kimball were very kind and caring','2019-03-13 01:44:49.311000','2019-03-13 01:44:49.311000',5,'Ashley Stumpel','https://lh3.googleusercontent.com/-HF2XiEWioBo/AAAAAAAAAAI/AAAAAAAAAAA/XTEkLfYWcb8/c-rp-mo-br100/photo.jpg','3511292162159714121',7380),('AIe9_BG84YPnR8vhxeJfV_lAYVNiqSJzHyPtTLZZ2FD8gm2Zf7U-H2BtmHp3Do64H1ck3WWLa3-lfnMnoZKmON7vBLKoe7UNGP_6eSEpR4NfrzWExxBtUJY','Very good and fast. Great staff and attention to our needs. Dr. Nguyen Alvean Patricia and Chris were very helpful. Glad we came to this facility','2020-01-26 22:53:37.755000','2020-01-26 22:53:37.755000',5,'Jorge Gongora','https://lh6.googleusercontent.com/-nEGUN0Vsdu0/AAAAAAAAAAI/AAAAAAAAAAA/s1YE6K0YKY8/c-rp-mo-br100/photo.jpg','16389487648212004696',10174),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQsp0vJ_XP26Bxs2MMrHSGQFOEF2Lk20DUkpoxIteQQmOqLeAj1g9iO-7lHV7HJ_9dlBL-OrR4F4LYIjQM-cR84zKqd8','Rebecca, Dr.Kimball, cat and Remington, Patrick and Morgan were extremely helpful and Nice throughout our late night visit.','2020-01-19 03:41:24.701000','2020-01-19 03:41:24.701000',5,'Alexiya R.','https://lh3.googleusercontent.com/-XfnsIzlAGOM/AAAAAAAAAAI/AAAAAAAAAAA/kGgy8XhB_B0/c-rp-mo-br100/photo.jpg','16590124370714063921',9923),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQTFqjjyl1rn8LSl-GC_xW0zS75_-Tdh7E2zf7YZMfbhcBit2m8Y4Zmt66h16fe8eJKN_IrmOkespvy2gxcVSjQZ-l6Y','Awesome experience, great staff made me and my family feel really taken care of!!!','2019-05-27 03:44:17.964000','2019-05-27 03:44:17.964000',5,'Marquita Brown','https://lh5.googleusercontent.com/-d_6JXOGrAKI/AAAAAAAAAAI/AAAAAAAAAAA/QzYHC1p6vPI/c-rp-mo-br100/photo.jpg','17898197009688164559',5722),('AIe9_BG84YPnR8vhxeJfV_lAYVNiqTo3qqa-6N_DNPEJQG6PkHR9CdbbkthWtdOAaECqYRLqYd__gpWlAHFy803R2PUR0XfVG0EmRjU2UBbR1PPzRMf440M','I came in & Sindy at the front desk helped me right away. I sat down for about 5 minutes and was seen by Dr. Boester. He listened what I had to say and knew exactly what he was doing! Gave me some treatments and prescribed me some medication to make me feel better. They are really quick and all the staff was really nice. I would definitely recommend this urgent care!','2019-09-20 18:54:17.366000','2019-09-20 18:54:17.366000',5,'Alexis Nicole','https://lh3.googleusercontent.com/-Pxd3gAKhOvY/AAAAAAAAAAI/AAAAAAAAAAA/ZaFUgPVIMiY/c-rp-mo-br100/photo.jpg','14567670160750071148',1230),('AIe9_BG84YPnR8vhxeJfV_lAYVNiQVVB638Zo5exVhiJFquadhnn_R6X4P8wD-z_K41Seel1TCYgissKSgmH-KDBTErZFqk84rk6mP6f0QUdDOtwrTE2vvg','Super friendly staff, it was a super quick visit!! I highly recommend.','2020-02-20 18:22:12.479000','2020-02-20 18:22:12.479000',5,'Natalie Carrasco','https://lh5.googleusercontent.com/-dEl1RD_65Jw/AAAAAAAAAAI/AAAAAAAAAAA/0XtvtPMuc6w/c-rp-mo-br100/photo.jpg','16590124370714063921',13836),('AIe9_BG84YPnR8vhxeJfV_lAYVNiqyNNqAYRrWruKjMI4G8luLQV_eeAFvC3RV9fFK4rZt46ptevgUOTZzwCppwtY0UCQHeq-ILU1FdIXo5E_dGOTdAN0xc','the courtesy of Dr. Daniels, Amy, Dion, and Maureen was very imformative','2019-07-07 02:32:39.942000','2019-07-07 02:32:39.942000',5,'Shirley Hicks','https://lh4.googleusercontent.com/-S_EQeyfR2Io/AAAAAAAAAAI/AAAAAAAAAAA/GaKpSJs92sg/c-rp-mo-br100/photo.jpg','3511292162159714121',7271),('AIe9_BG84YPnR8vhxeJfV_lAYVNiqYSRCnFLxFs5E_-hMfou5rR0TqAfAnjZo3X1yY3Ytg0gmOzaxTBUC_oscZM8BrK3jpJnvWU6vDbSPPPJcCgNueFVMMY','I had a great experience at signature care, we were seen very quickly. Quintessa at the front desk was very nice and welcoming. We were also seen by Thai and Konya, they made sure that my kids were comfortable and were extremely helpful. I will definitely be back in the future!','2019-11-15 20:18:44.955000','2019-11-15 20:18:44.955000',5,'crissy mitchell','https://lh4.googleusercontent.com/-E_nZahu12qg/AAAAAAAAAAI/AAAAAAAAAAA/VMx7bdrsDyI/c-rp-mo-br100/photo.jpg','2694018788013845459',6012),('AIe9_BG84YPnR8vhxeJfV_lAYVNir1dL-llBMm_ibfL2JNq4LCYlF2KWrHjYFj1E5FtxrztuoQwXvJrJd5ZhlFKLH2_Mxpbd5QczynpC8OhX1uy-UhJhGw0','The nurse Kristina ,Dr. Golla and Register Maya were very nice and professional .','2020-02-26 22:46:56.130000','2020-02-26 22:46:56.130000',5,'Daylon Stewart','https://lh5.googleusercontent.com/-uEK9Wzhe9ds/AAAAAAAAAAI/AAAAAAAAAAA/C4G0imCD2H4/c-rp-mo-br100/photo.jpg','12541597562633926366',13333),('AIe9_BG84YPnR8vhxeJfV_lAYVNir1nrn-Z1cbAcC_cj1VxDOXognslCOhJUeHaCznGdf1Z544NiWV3o0OCPKA72bYHKHp1aIwME65nencLu8wTnKCji9yg',NULL,'2019-06-05 11:44:02.988000','2019-06-05 11:44:02.988000',5,'Killer Ninja Squad','https://lh6.googleusercontent.com/-6K2_GDuSWo8/AAAAAAAAAAI/AAAAAAAAAAA/7Et1r65FZ9w/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNir38vPvP_PZlH8eQ9C3o3oR44PKzIQd_aK2fryI3HxUKkqfvPE45f66jHqRnoHBBsVyI7CsaUvAkpNIJ36Ui_4Q2Umqw','I had an very satisfactory experience at signature care emergency center. It was a very quick check in, wonderful staff, complementary drinks/coffee, and great doctors! Chris, Tony, Dion, and Dr. Guhany were all excellent!','2018-06-19 19:57:29.606000','2018-06-19 19:57:29.606000',5,'Chris Mathews','https://lh3.googleusercontent.com/-Aa-TDUaB5y0/AAAAAAAAAAI/AAAAAAAAAAA/iRHw8ShT3gc/c-rp-mo-br100/photo.jpg','3511292162159714121',7696),('AIe9_BG84YPnR8vhxeJfV_lAYVNir5663QLMlynNDUlo4j3qZ7wIw5IYzQ4XziE9vR70T40t7Tb1-xcY5NT-lbg6mkPmBxreaMukvymnIVi3KqrVeNraAfE','Great staff and service!','2019-07-07 18:24:11.998000','2019-07-07 18:24:11.998000',5,'Shivani Desai','https://lh4.googleusercontent.com/-QhhqdNQeCcY/AAAAAAAAAAI/AAAAAAAAAAA/c2ZEtOBgtIU/c-rp-mo-br100/photo.jpg','16590124370714063921',3310),('AIe9_BG84YPnR8vhxeJfV_lAYVNir7vBNBXnvdz9jSWNxntQ6L_S-10fv6eV24dMekHV-0hOnBlhqQg1r1go6usr2ioFG5G2wjk7IbVDzfBFjOIk1Hfh4Kg','Very friendly and quick service','2020-08-04 17:25:40.159000','2020-08-04 17:25:40.159000',5,'jessica mcquaid','https://lh3.googleusercontent.com/a-/AOh14Ghkvh-RsovmjFF8GPb6dbWG4fNeWhptXaFP0euJ=c0x00000000-cc-rp','13486358490203335051',21818),('AIe9_BG84YPnR8vhxeJfV_lAYVNir9cfxGjxmwABa6RzjZ3DizP-RRl7dGz8pBzVAsfjzFpL_j_C5TwFxa6wNhUbvqk3lbjbhFmRjhdPKV-HO6TkxmxZuzc','I brought my mom here after she had a fall at work, everyone here was so nice and professional. Tanya the receptionist was quick and attentive, Rachel our nurse was very nice she made sure my mom was comfortable and even brought her a blanket! The service here was great and I can tell the staff here care about their patients. If I ever find myself in an emergency situation I will most definitely come here again','2019-01-29 23:53:20.021000','2019-01-29 23:53:20.021000',5,'lesly delarosa','https://lh6.googleusercontent.com/-0nR1wWqLZq4/AAAAAAAAAAI/AAAAAAAAAAA/x-6YZl3tkG4/c-rp-mo-br100/photo.jpg','17898197009688164559',5871),('AIe9_BG84YPnR8vhxeJfV_lAYVNiRfYCWOknC0Vtk1X_ZYrjsAaJOs_5uRLzZ49un0MEDPEHjRxu9UJWNLlbSRkIQNXAhOor3JhMRxzTGdM0dih-J1iYoZo',NULL,'2019-07-16 02:07:18.153000','2019-07-16 02:07:18.153000',5,'Dorothy Salcido','https://lh6.googleusercontent.com/-S7-9C8ewI7o/AAAAAAAAAAI/AAAAAAAAAAA/mQWAufaPh2A/c-rp-mo-br100/photo.jpg','6521947413723274945',8195),('AIe9_BG84YPnR8vhxeJfV_lAYVNiRjToR_a4-pOrlgbKEe9hedbere--8QeoLaz3OPHHY-nLbWl_K_uRKmNWPWZS5aPFDNgDIJTtpGaUS_012MXVhdy8WTs','Great facility. Fast & courteous service from Dr. Dining, Nurse Max, Natalie & X-ray tech.','2019-06-24 17:20:34.497000','2019-06-24 17:20:34.497000',5,'Rebecca Fiszer','https://lh5.googleusercontent.com/-j1altAp2rQI/AAAAAAAAAAI/AAAAAAAAAAA/5vNZTL6ZnOY/c-rp-mo-br100/photo.jpg','14567670160750071148',1285),('AIe9_BG84YPnR8vhxeJfV_lAYVNiRJzKqsgm2pcauw5DvvCfrnI-Ld8gaUj8EccW8DPTqAF0iW_UcEhjdtsDHdZBL1jbpPkmJufoSGD3MerjdwtmzYWcGzI','From start to finish, everyone here was incredibly kind and helpful. I was worried about costs, and Shonda and Earl talked me through everything and made me feel way more comfortable with the whole thing. Dr. Elsbecker was really kind, quick, and efficient with checking me out, and Katie, the nurse who administered my shot, was really nice and funny. Loved this place.','2020-03-18 05:17:00.140000','2020-03-18 05:17:00.140000',5,'Tristan Melendez','https://lh4.googleusercontent.com/--1vKS2RXaWc/AAAAAAAAAAI/AAAAAAAAAAA/MZX8tfaw_R4/c-rp-mo-br100/photo.jpg','16891069708558046635',21045),('AIe9_BG84YPnR8vhxeJfV_lAYVNiRq7CgIB57YB0Eq20N5XTyZCAKSZU7ZXSfu4ab9Kbn3XukWDN8HiRIFM3HVg-sll5PZBImlt9yYyjaVxmhD5ZBD7lhho','Very nice service! Kendra and Remington were amazing!','2019-12-06 16:36:39.593000','2019-12-06 16:36:39.593000',5,'Hannah Hayes','https://lh3.googleusercontent.com/-7K5338mRa6E/AAAAAAAAAAI/AAAAAAAAAAA/IOXcNrh0MaE/c-rp-mo-br100/photo.jpg','16590124370714063921',3051),('AIe9_BG84YPnR8vhxeJfV_lAYVNiRW-FOthd3feL5pEH0QA5Lzib3jngRSeocg-vN3Ko7DvS_iL5e4fWwKGGtNQ8F0xi33u8NE6QBywdXiVx9Xmk9kkJLpU','Really Great experience! No wait time, friendly staff, clean location with attentive medical professionals. 100% recommend ! Great experience','2019-03-14 16:28:51.500000','2019-03-14 16:28:51.500000',5,'DANIE MICH','https://lh5.googleusercontent.com/-WOWhi1GR5tI/AAAAAAAAAAI/AAAAAAAAAAA/5rziWOVkFWc/c-rp-mo-br100/photo.jpg','16891069708558046635',4324),('AIe9_BG84YPnR8vhxeJfV_lAYVNis2w-rg82afG7Radt3AgWKMJw1vHqdeiJl2kNdT6gLFg_w_iewBaYCAfK7R7hClylRHQykOc4CLnT2wpEfoK1o1qZD4g','I had a good experience here, very fast service and friendly doctors. Thank you for caring for my injury. Happy Holidays!','2019-12-26 16:26:16.973000','2019-12-26 16:26:16.973000',5,'Brie Brown','https://lh3.googleusercontent.com/-9bPgIR3g4eY/AAAAAAAAAAI/AAAAAAAAAAA/_STrSgFFOx0/c-rp-mo-br100/photo.jpg','12541597562633926366',300),('AIe9_BG84YPnR8vhxeJfV_lAYVNisan7YmaGzjxk4BfjWvxNygp5YCKPy3VvAdEAANl9qAzvRsIGJyPGfNsQVPO8eN01y6MUBqA-5WZugMHI7LTTEQJ_mao','The Staff here is very nice and the hospital is very clean and nice looking. Dee is a very nice worker here as well. The hospitality is amazing and I love it. I would recommend coming here to anyone that needs help. Very Professional and High Spirited.','2019-04-30 19:39:36.552000','2019-04-30 19:39:36.552000',5,'Javonte Simmons','https://lh5.googleusercontent.com/-QvDNGped5ig/AAAAAAAAAAI/AAAAAAAAAAA/x4buqV8ipZ4/c-rp-mo-br100/photo.jpg','14567670160750071148',1333),('AIe9_BG84YPnR8vhxeJfV_lAYVNiSBJsGe775FVGpL0AWOtAw5qY-TZ1zLRUYn07WOtqcSlm5mbgudOZ9Wi_MW-YeWCkyFLyGMamMFlW911uvaj5UAe15Ws','My experience was beyond amazing. The front receptionist Emily was so nice and knowledgeable. The entire place was very clean and comforting for a ER. My nurses upfront, Kat and the physician Dr. ELSEBERG were some of the most polite knowledgeable and comforting medical professionals I have had the pleasure of receiving their treatment from. More medical establishment should practice medicine the way Signture care does. I can\'t say they were phenomenal','2020-06-05 20:25:39.491000','2020-06-05 20:25:39.491000',5,'Alyssa Alcorta','https://lh3.googleusercontent.com/a-/AOh14GijubzLgBOMKxjRcRh-rr9QyLAh45sXk4QVLX6EdOQ=c0x00000000-cc-rp','2694018788013845459',21457),('AIe9_BG84YPnR8vhxeJfV_lAYVNiShA68BSNiiGOWm90NY_7O4L8BqgeMQNCnj1VVBXmPjq_IOU57CXoO44ePaquXf0KUZM7J495674S7CYpcKwyVQmgmA4','Fantastic service ( and quick!) Dr. Daniels, Remington, Laura, and Kendra took excellent care of my little one!','2019-12-08 15:58:37.329000','2019-12-08 15:58:37.329000',5,'Karen Rambo-Hernandez','https://lh5.googleusercontent.com/-ST4-1PemrQ8/AAAAAAAAAAI/AAAAAAAAAAA/aV_mIuwPz3Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3035),('AIe9_BG84YPnR8vhxeJfV_lAYVNiSl6ggo7v2HS3dRkbAROx9iqfk5x_ODVIWtQ574Ax4JaMXjfsgOsLyUJU8moKZWBFnEboGRPRh2vCHjTT24EzZDuUJzY','I took to the emergency a friend with a strong headache and high blood pressure and the nurses Kristina and Lisa take care of him pretty well. At the emergency room they were able to do a CT head scan and give him the right prescription.','2019-10-28 03:35:52.303000','2019-10-28 03:35:52.303000',5,'jann gopi','https://lh3.googleusercontent.com/-dBRp84eJ0ls/AAAAAAAAAAI/AAAAAAAAAAA/2DIcyYeyRvw/c-rp-mo-br100/photo.jpg','13486358490203335051',757),('AIe9_BG84YPnR8vhxeJfV_lAYVNiSm3Z3HIoB1rbtLrNX9-gVUM7JJY1mcniCEADYesadWIUebEOVqG8CDOZaBXGq5UfmxJW3JD-UNXJmq9tm-MXGR9g6qM','EXCELLENT CUSTOMER SERVICE & THEY ALWAYS PROVIDE EXCELLENT CARE!','2019-01-24 17:15:46.840000','2019-01-24 17:15:46.840000',5,'Deausha T','https://lh6.googleusercontent.com/-PT41AYJf-mU/AAAAAAAAAAI/AAAAAAAAAAA/OLMBzpkgMWg/c-rp-mo-br100/photo.jpg','8918455867446117794',9190),('AIe9_BG84YPnR8vhxeJfV_lAYVNisMw5_C2Tq2tBB6wpqZHKeiWGFcD3c94xKE3CDgccpClv9h6ZbMmaNpPdEM4iv5IoNoQ1qDg4V-vGRx34HRqPzfyij_Y','Doctor and staff were very friendly, professional and caring. There was no wait time','2020-01-09 05:12:29.243000','2020-01-09 05:12:29.243000',5,'Gloria Banks','https://lh3.googleusercontent.com/-VW-Sikr0GJE/AAAAAAAAAAI/AAAAAAAAAAA/fKP8iJ-BizE/c-rp-mo-br100/photo.jpg','14904078213800803294',13639),('AIe9_BG84YPnR8vhxeJfV_lAYVNiSqrSSeMuWnIk6wHKh-sFnQQ-JFnRZ914QEqCKsHzYDzKQNOndFmPmecitmz4wYM0p0EiBxwcP0iv-79O_BtL1ChTsbU','Got bit by a copperhead snake. They are great and all were very nice! Ordered me food anything I wanted. They even let me smoke once after I eat while they were changing out my equipment. Dustin was my nurse and he was very helpful. They were all quick and no limits. Thank you. It was a scary day and they made me feel so much better. Answered all my questions and made sure I was happy.','2020-08-06 21:08:24.009000','2020-08-06 21:08:24.009000',5,'brian rodgers','https://lh3.googleusercontent.com/a-/AOh14GiqrxOUzG0_wn1El3X3PnzhJlR8hCeNEdLGhqnG=c0x00000000-cc-rp','14748677429039074158',22517),('AIe9_BG84YPnR8vhxeJfV_lAYVNiSR2elquFeUi3_g0C-0H8UTHjgTUCisb7DaqyTqUksGuK9q6Z7nFpwWUDjR2niZqz45VFDZrJvspFZQeN3bQDbFJhhRc',NULL,'2020-07-07 20:52:52.224000','2020-07-07 20:52:52.224000',5,'Mariah Mayes','https://lh5.googleusercontent.com/-W7_bBTxpXVY/AAAAAAAAAAI/AAAAAAAAAAA/d5lUxGo_ymQ/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',21371),('AIe9_BG84YPnR8vhxeJfV_lAYVNissNMKrYfH8fJ2Q2Zf-uR4suRixBPXOQgO13Bh_pll0_oIwBraoBPN_8nEq5fF56LResWI68hUDZu1WAmwtsWK8By8u8','Very fast service, staff very friendly, Dr was very thorough and listened to everything I had to say, got in and out fast, highly recommend.','2020-02-07 17:25:29.019000','2020-02-07 17:25:29.019000',5,'Alondra03ful','https://lh4.googleusercontent.com/-cSvH-C8X04U/AAAAAAAAAAI/AAAAAAAAAAA/x4RrzPHgBj0/c-rp-mo-br100/photo.jpg','13486358490203335051',13435),('AIe9_BG84YPnR8vhxeJfV_lAYVNiSsWcGGs01atjdQK4WObs5ymqskvho4p04lLRtCg4LddlQe5NRhh9Ii4VPYdNrud8BtyOLqFRea6-aLYhr6KGZhieLDA','I have been to Signature Care Emergency Center 3 times, and every experience has been amazing. They truly care. That make you feel great especially when you are a loved one is not feeling well. I appreciate all the attention and care that all of the staff gives. I just want to say thanks It is amazing to go to an Emergency Center and not spend your entire day and night. I will ALWAYS use Signature Care Emergency Center for all of our Emergency needs.','2016-12-01 04:58:20.882000','2016-12-01 04:58:20.882000',5,'Letitia Holmes','https://lh6.googleusercontent.com/-yj516mzSqdk/AAAAAAAAAAI/AAAAAAAAAAA/ENN6Ez7gLCg/c-rp-mo-br100/photo.jpg','14567670160750071148',1938),('AIe9_BG84YPnR8vhxeJfV_lAYVNistMqQGVky9Qm09ifsDt2g8N5-XWnaQbyAFbP8DGfN1GAz9JGogaFsVjoLQu8PyFm2xVIlmMSyxcOwW3zAYeIbyE2wrk','excellent fast friendly staff. better than most by far!','2019-02-27 02:49:00.947000','2019-02-27 02:49:00.947000',5,'Tim Soto','https://lh6.googleusercontent.com/-ggIx15x44DM/AAAAAAAAAAI/AAAAAAAAAAA/y3L6vfaGCJo/c-rp-mo-br100/photo.jpg','14567670160750071148',1379),('AIe9_BG84YPnR8vhxeJfV_lAYVNiszVtSvuFF_1ad2z8PR19wIUo5vlL77StVt9dcRNvRNVlziOZJrBZ1X1W9fTSSGVgSQ_4BqeX2M1yfT3x4fthIxyL1q0','Told me everything I needed to know , prescribed me some medicine , offererd me drink , snacks, blanket .. overall the best I’ve been to.','2019-04-06 17:00:33.177000','2019-04-06 17:00:33.177000',5,'Jaime Gonzalez','https://lh4.googleusercontent.com/-1MEzJCh62JU/AAAAAAAAAAI/AAAAAAAAAAA/VplGILEK96Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3451),('AIe9_BG84YPnR8vhxeJfV_lAYVNit0N0G8eJbrSjeZcxF47B-sRda5QkgCtWnTiQWHrZZoiwshqiAgDpp-IpzZXccsmkYPleReGrqm7ssNYsa6WBzUUDL9M',NULL,'2018-01-02 11:10:57.340000','2018-01-02 11:10:57.340000',5,'Frank Nduku','https://lh5.googleusercontent.com/-GGzFCb6F2B0/AAAAAAAAAAI/AAAAAAAAAAA/zM1gawnEpKE/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4905),('AIe9_BG84YPnR8vhxeJfV_lAYVNit5BMQr5W6zIhoPJXks_AHehzRx03Wp7qaPpW9DQA0zIiRX6DUmhiVWvA9sQwUveKTV05YT4JmpM2Rc-5UIn1kVyY_rw',NULL,'2018-12-30 22:52:25.374000','2018-12-30 22:52:25.374000',5,'Gerry Prater','https://lh3.googleusercontent.com/-GHEP46KjTXY/AAAAAAAAAAI/AAAAAAAAAAA/a01zEelMmZE/c-rp-mo-br100/photo.jpg','17898197009688164559',5900),('AIe9_BG84YPnR8vhxeJfV_lAYVNiT9mQ5bT6xm7XSdPs6jsBODnTwpfoDvgLnWa8ogwweV3ZNWHwGLIdzQ_JCR07Up_V8vXEkOKFi0Pon646OwrbNwAVtNY',NULL,'2018-05-30 22:01:54.604000','2018-05-30 22:01:54.604000',4,'Tina Manuel','https://lh3.googleusercontent.com/-_jGsUouHQJI/AAAAAAAAAAI/AAAAAAAAAAA/K7a-5tRp2_U/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1617),('AIe9_BG84YPnR8vhxeJfV_lAYVNitagK33sXO5QMBC9mAgLgtwEI6f42KX2CmtFmIXzmGROdqZHiH4KCg13rEjN7LfuLceBi_eNQ4bEvr07iyVKlANN9hGM','Toby was so incredible and patient with me. I highly recommend coming here for your needs','2020-06-15 01:59:02.509000','2020-06-15 01:59:02.509000',5,'Eddie Aboussie','https://lh3.googleusercontent.com/-6mQsqFrbXZA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclT9kgRCSvuSWk1WuOhXVufgtCh4g/c0x00000000-cc-rp/photo.jpg','3272657195432704501',22127),('AIe9_BG84YPnR8vhxeJfV_lAYVNitgk33ixD9z-lSrr87_-cfi7ojks-4Wm1qqMPzdNhgeWcmzc7OqBzbVf9hcXOVV2LK00OEGI23ejhPBN_bPkWRtKEWf8','Very well organized and super friendly staff','2020-07-06 17:29:59.754000','2020-07-06 17:29:59.754000',5,'Lukasz Kazimierczak','https://lh4.googleusercontent.com/-0dTw0utxTds/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckG5grT14JPnU-LdgraV3NOYHciag/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21310),('AIe9_BG84YPnR8vhxeJfV_lAYVNiTi6zW8QpBj-HGERk5N2hNUVQ8Fmyuly6K6da1dKR-JgOEtzNe-4XWb80ehQ8n8ZPUoUtyaJLkXpfsu05m36pxTJ0Q1w','This is a great place to come when you have an emergency. Excellent customer service they make you feel like you are at home. Great team players,\n\nEr tech - Olivia\nDr. Siddiqui \nNurse Churiah\nRegistration: Leslie\nRad Tach - Jaqueline\n\nKEEP UP THE GOOD WORK!','2019-12-17 16:16:14.847000','2019-12-17 16:16:14.847000',5,'Melba Walker','https://lh6.googleusercontent.com/-83JebCEJRjw/AAAAAAAAAAI/AAAAAAAAAAA/L14EXZ3aHq8/c-rp-mo-br100/photo.jpg','3511292162159714121',7130),('AIe9_BG84YPnR8vhxeJfV_lAYVNitojAVyUMRk4_BZGNYqYQPaDVCkiv3GG8APqeGjqmq9U42kpvmu0HoDyifnC9bPBGXjqVpF0Ox5Ss_wXkjjQeXYCyJxg','It was wonderful. Staff was very attentive to all my needs. It was excellent. I recommend this emergency room to anyone who has ever had to wait hours before being seen. Great customer service.','2016-07-01 02:47:43.597000','2016-07-01 02:47:43.597000',5,'Celia Yevenes','https://lh3.googleusercontent.com/-ds1sj73mzaE/AAAAAAAAAAI/AAAAAAAAAAA/2i59ApNHICA/c-rp-mo-br100/photo.jpg','17394740196501090048',5229),('AIe9_BG84YPnR8vhxeJfV_lAYVNiTpaik6u3fO2luEIn5ZAV9BAP43PRUPr2VIl8B3lb6W_kBH7ytPe0elft4mt5cig7NgYHaT_eGeWnCtAOwAfTEIzMKmU',NULL,'2020-08-08 22:44:31.240000','2020-08-08 22:44:31.240000',5,'Pedro Pizzo','https://lh4.googleusercontent.com/-ame9bz-ArCY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl1J01uxdHogPYPKl7mhl5fJgY3rw/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22027),('AIe9_BG84YPnR8vhxeJfV_lAYVNitsfmfPRYRSn-neuBWbSmz4xD1NRRYEOph-TyBoQ1xZfhDnivIGw8C9_JNSoA189-C9DKWYFw3Wx8Y3aUvvFOr7LLJL0','So thankful for this ER. They took great care of me.','2019-09-02 13:44:52.777000','2019-09-02 13:44:52.777000',5,'Sue Bee','https://lh4.googleusercontent.com/-T4H5UqjgbDs/AAAAAAAAAAI/AAAAAAAAAAA/9t05lVztSQI/c-rp-mo-br100/photo.jpg','17898197009688164559',5564),('AIe9_BG84YPnR8vhxeJfV_lAYVNitu3gkLmu1ixtL7WKHWBauK8lrt9-emDlOQvnY_jTW3on0yaKTPS2L84eqwoeGJWOcb6bhIGoauXdeZey5HZdC_bwyGg','It was amazing!!!!! And everyone was amazing also!!!!!','2019-07-04 04:01:53.515000','2019-07-04 04:01:53.515000',5,'D\'Angelo Harris','https://lh4.googleusercontent.com/-3OMDSgJ6yyY/AAAAAAAAAAI/AAAAAAAAAAA/4O57s2Gbtj4/c-rp-mo-br100/photo.jpg','2694018788013845459',6117),('AIe9_BG84YPnR8vhxeJfV_lAYVNiu-mX344eAJY7qkpNTr4WvMuAye2Y0sjn2gntoM0kkB73W_8IswOTfz6MhTvg3I2-5wDpmSK6NGnpbfGG-RsPvkqXv8s','beware of the $ 2700 covid 19 tests, please read anything you sign !','2020-08-04 18:07:02.848000','2020-08-04 18:07:02.848000',1,'mike romano','https://lh4.googleusercontent.com/-ABMx46T4Rag/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckCAjZyiB9pUPyNeuKfczhPVe2nIA/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22135),('AIe9_BG84YPnR8vhxeJfV_lAYVNiU7vmWOBSZ0ulxVPaDgNbrWsDjnHv1hVP_MjV15wByYPu-uzkhrC_oTk6CM9bXFP-IRju1417waVam-7OkNuv8F40F0A','Wonderful service. Had me in and out super fast and were very helpful explaining everything and answering all my questions.','2017-09-10 23:32:20.246000','2017-09-10 23:32:20.246000',5,'Mackenzie Lewis','https://lh4.googleusercontent.com/-t53i2RkQ33Q/AAAAAAAAAAI/AAAAAAAAAAA/slg7Pf0cx_A/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3937),('AIe9_BG84YPnR8vhxeJfV_lAYVNiU8zFe0YOd_UawY1NED6elVrBfvTYmVn1QpLySOl3tIov53-KlmpwmRkWtTHiEbcZjQbtCClQreh-QLqMTTvCByeRees','They were pretty quick and there was barely any waiting time. Doctors were very informative and quickly got me my results and solutions to my issues.','2018-01-19 21:51:48.811000','2018-01-19 21:51:48.811000',5,'SeriesBlu','https://lh5.googleusercontent.com/-Fi3BXU_paf0/AAAAAAAAAAI/AAAAAAAAAAA/hKBNJjFynZc/c-rp-mo-br100/photo.jpg','17394740196501090048',4896),('AIe9_BG84YPnR8vhxeJfV_lAYVNiUAmfUxeWdFtQFIQHMlQcfDmbfJJpkZK6ajT74Rdj9-z_scf5Bp5eOF3SM8gFJ-_AYR7ORNFHr_PnZDMBIezsMECtvrU','This is the most incredible ER. I have been here twice and have had THE BEST experiences. We were greeted immediately by Aileen at the front desk and offered beverages and snacks in the waiting room (my son loved it). We didn’t wait more than 5 minutes before we were called back and put in a room. My son was offered a warm blanket and got to watch PJ Masks on the tv (which again, he loved!). The ER team came into our room within minutes. Adam, the ER nurse and facility manager, Andrew, the ER Tech and Dr. deWaal, were all so attentive, kind and caring. They quickly observed my sons injury and decided an x ray was necessary. Christina, the radiology tech, was warm and engaging with my son. She was successfully able to get my 4 year old to sit still long enough to get the images she needed. I made a note to remember everyone’s names because the level of care was SO excellent. We were in and out the door in less than an hour! Incredible care without the long wait! 10/10 would recommend!','2019-11-17 02:19:36.710000','2019-11-17 02:19:36.710000',5,'Dayna Smits','https://lh3.googleusercontent.com/-xgwfsBxeIP0/AAAAAAAAAAI/AAAAAAAAAAA/FfHv3Yj7ABE/c-rp-mo-br100/photo.jpg','16891069708558046635',4147),('AIe9_BG84YPnR8vhxeJfV_lAYVNiudbtdGj4QdkoEXYz-6XwhkDfOh3_NtgHJgTz0TdwUCpVCW4i1VcS1CbSOhIfqgbbjpGsyupy0pJyVpgmivmfWSslGO8','Maya is the best! She kept my kids entertained! She made sure all my info with insurance was handled! Will be back!','2020-03-07 20:56:19.384000','2020-03-07 20:56:19.384000',5,'Eddie Wil','https://lh6.googleusercontent.com/-8wVSTz2DwQ8/AAAAAAAAAAI/AAAAAAAAAAA/PAR-2VBxOmQ/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',13307),('AIe9_BG84YPnR8vhxeJfV_lAYVNiUDImcMSI1_iwhwxtq1cNuPZ4oIV4Hsz6_vBKZT6YkEz0nqlMhyTW08zCGZ5VWd1_k_TNmK1lN42WArQNG6ZGGw7zDaY','I would recommend Signature Care to anyone. It was a great experience and all the staff were very polite and caring.','2020-02-14 17:26:35.107000','2020-02-14 17:26:35.107000',5,'Bradley Miller','https://lh4.googleusercontent.com/-ephT5nMHevI/AAAAAAAAAAI/AAAAAAAAAAA/EJrfpbA5BDA/c-rp-mo-br100/photo.jpg','3272657195432704501',14363),('AIe9_BG84YPnR8vhxeJfV_lAYVNiuEr4c1XxnCExe4RXWRX9ucUkbUOuQV524ciQTeGQ6JYfMeZ7upf4MYEZRUVdTvYigzqhlrRIKCmRglhtMZ6GRXPRtxY',NULL,'2019-08-31 19:27:22.676000','2019-08-31 19:27:22.676000',5,'GOLDEN Golden','https://lh3.googleusercontent.com/-8K_dhuzg2r8/AAAAAAAAAAI/AAAAAAAAAAA/0luCFf2YIik/c-rp-mo-br100/photo.jpg','16389487648212004696',2956),('AIe9_BG84YPnR8vhxeJfV_lAYVNiuFlC_Ebpf6VBzNiRsqloLdfVHsLwxRkQbvVrZZhRLAfCbIUu5Ev8BmceYCbdkAA2-1LLAng-n3NEllgz6Dr-2nHT3qE','I’ve came here a couple of times and have always had the best care ever Dr Osiecki/Zahac and her team are the best and she is on point with everything she is so polite trustworthy and there was a less wait time the night I came in she knew what was wrong with me immediately they offered me a warm blanket they are very informational and they don’t keep you wondering or just say check with your pcp they literally care for you and the next day later that I left the hospital they called and checked up on me !!! sometime I wish they were my pcp just bc I’ve had nothing but positive reviews so if you’re not feeling good and need to be seen immediately please come here it’s way better then any other Er hospitals and experience they are here to serve you and your family thank yall god bless','2019-02-13 15:45:10.933000','2019-02-13 15:45:10.933000',5,'Criselda Moore','https://lh4.googleusercontent.com/-lUJQ4sjxFto/AAAAAAAAAAI/AAAAAAAAAAA/wH4GPs-QNLQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8310),('AIe9_BG84YPnR8vhxeJfV_lAYVNiUjmTETd69mzfwNCzBnQK-kapYMBrPoRcbnHUEyRGPAn4VoF9oYFSTLm_070alLOYzO0JOvqUvknRb49ZxM9fMZq7XV8','Tikiko was very nice and pleasant. She made the test very gentle and comfortable. I am very happy with my experience with her and the entire facility 🤗','2020-07-21 23:37:02.406000','2020-07-21 23:37:02.406000',5,'Nuvia Bravo','https://lh5.googleusercontent.com/-Gvf8ZQocCk4/AAAAAAAAAAI/AAAAAAAAAAA/0ZDwUK7QoWQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21614),('AIe9_BG84YPnR8vhxeJfV_lAYVNiUM3Q5jv0bVzdi72z6Y1BfMpT09l-G2Dj7fsCOXTUoBxK6kjC-fehnvJCPt5eIcGKciGW4gGSwXxgeurGWt_AAQbUg2U','The receptionist Itza was very welcoming and friendly and assisted me with the paper work. Technician Laura was very kind and made me feel right at home and she got me a warm blanket and whatever I needed to feel right at home. Nurse Jacob was very informative and assisted with whatever was needed. Dr. Harjai was phenomenal and gave me all kinds of information on my illness and his own experiences on how hee deals with it wheel he\'s sick. Overall Signature care is the place to go when you\'re feeling down. I was in and out within 30 minutes. The staff was amazing','2020-01-17 19:40:58.824000','2020-01-17 19:40:58.824000',5,'Joseph Belcourt','https://lh5.googleusercontent.com/-BOThEvQ6Lhs/AAAAAAAAAAI/AAAAAAAAAAA/Oa-9NwXvd6c/c-rp-mo-br100/photo.jpg','16590124370714063921',10067),('AIe9_BG84YPnR8vhxeJfV_lAYVNiunRO2-r_DXLDFojAFIggYkiMs_-BLb5Z2t-VTSiX2tPUqxcM7MDy6qxXfh4KiYMI0xinZijRUhp-VA945myH1MXou38','Awsome and fast. Tricia, Jana, MaryAnn and Dr Harjai','2019-11-23 19:11:28.176000','2019-11-23 19:11:28.176000',5,'Spencer H','https://lh3.googleusercontent.com/-Il1yEdCC1Tw/AAAAAAAAAAI/AAAAAAAAAAA/boAYwuW0z3U/c-rp-mo-br100/photo.jpg','16389487648212004696',2637),('AIe9_BG84YPnR8vhxeJfV_lAYVNiv0Nmx1GxM6aL4VCBdr0blrpWEOOgZAYm2KCUs5gQ9MJnPdWJF66_o606R98R0ycgattYPVJpx3C_rM_4gURctzKOUpg','Very nice place with speedy service. Registration was very easy thanks to Naomi. Gabe, Cameron, and Rebecca made the experience good by explaining everything well and making sure you were comfortable','2019-06-26 07:25:28.680000','2019-06-26 07:25:28.680000',5,'China Anderson','https://lh3.googleusercontent.com/-oxG8PDNOThM/AAAAAAAAAAI/AAAAAAAAAAA/6L34WXuxcYg/c-rp-mo-br100/photo.jpg','16590124370714063921',3331),('AIe9_BG84YPnR8vhxeJfV_lAYVNiv3BwfMaTpd4TERw-xdXws23VQFg4eqfRtuOadCsNsYa3CuhIJYpg-WPWgWfYCkB1ApqsR1IziCoeteiqpahlP5Wjylg','Great people! Wonderful care! Thank you, Kim Domanski, Kim Davidson and. Lucas','2020-01-30 15:07:17.864000','2020-01-30 15:07:17.864000',5,'Lana Easley','https://lh5.googleusercontent.com/-MCWf27B-xxg/AAAAAAAAAAI/AAAAAAAAAAA/Z-pRNLxNIO4/c-rp-mo-br100/photo.jpg','3272657195432704501',10472),('AIe9_BG84YPnR8vhxeJfV_lAYVNiV76Nm5HXLsTQ7PaMIRGzpVqhTByKp2TNY8RDC4EC6946enhoyibHRgZF-j_duqOLjkONJWbVdOJEQ4uYThCqt_Sz1WM','Very friendly staff:)','2019-10-17 16:51:25.165000','2019-10-17 16:51:25.165000',5,'Erin Anderson','https://lh5.googleusercontent.com/-PKOvT2P7TS4/AAAAAAAAAAI/AAAAAAAAAAA/DvzwIM4sUOQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5500),('AIe9_BG84YPnR8vhxeJfV_lAYVNiv9jYSGrC2fMiQFYlMdDxu7TokKc_0DLgwAJ4JQAOwMqgvlS2gchFdbRyzYpgn6gUvOej2nxMXe6DKeZMR6jNo33IBWU','I would never go there again. They tried to charge me $700 upfront to get treated for a migraine. Mind you I went there because I had been having the same migraine for 2 days and I woke up to a nose bleed. They didn\'t assess me or anything. Once I told them I couldn\'t afford the treatment they sent me on my way.','2016-09-26 11:39:37.372000','2016-09-26 11:39:37.372000',1,'Poison Ivy','https://lh6.googleusercontent.com/-OXOYvUSTdNE/AAAAAAAAAAI/AAAAAAAAAAA/tZwaKvjH2yg/c-rp-mo-br100/photo.jpg','17898197009688164559',5943),('AIe9_BG84YPnR8vhxeJfV_lAYVNivAy3NpU_HH5LJxsU_tBomBh2IpAjYYh2_1r2TXIXTqrzPP4gxgW4xFMklMD2SoA_jNlnQYj5Q5fPOIfmDOP5lOro-Mc',NULL,'2019-09-21 21:37:26.734000','2019-09-21 21:37:26.734000',5,'Clown7x_','https://lh3.googleusercontent.com/-vvQ9utyvcKw/AAAAAAAAAAI/AAAAAAAAAAA/pwEGejwG3Eg/c-rp-mo-br100/photo.jpg','6521947413723274945',8133),('AIe9_BG84YPnR8vhxeJfV_lAYVNiVbwW2FRHSvvhCahnXprBRpi0mVr-gRyDFR8V9bUkyVRs45rlUQ5Soo79XldfFOrIA2N_nZHZlr4QondUXirhriDUKw4','The people that saw us were, manny, ector, and Casey got me tested in no time.\nIt was an efficient process and I would recommend anyone coming here!!!\nFor a minute I was afraid but the test is not scary at all! \n10/10 would go to again!!!','2020-08-04 21:20:40.243000','2020-08-04 21:20:40.243000',5,'Jordan Pacheco','https://lh4.googleusercontent.com/-crLq5fZ_sPs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckQOnAIfwCsQnC0vJmCt2zks1XWLQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22184),('AIe9_BG84YPnR8vhxeJfV_lAYVNivHZ8YVYGK2itewN5jKXfY2-I1nZo-fMR3unt5bPH5V9YJaOb-fODM6gGzLQhTlaSJaxHlXzrU0Qvah0U_0vPyc9sKXk','Dr. Smith, Nurse Kat, Joshua in radiology, and Brenda in registration were all so helpful and professional.','2019-04-21 22:36:20.546000','2019-04-21 22:36:20.546000',5,'Brittney B','https://lh6.googleusercontent.com/-eWr96rMvOUk/AAAAAAAAAAI/AAAAAAAAAAA/mcMTmHwKDag/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNivJ80e5saohU6ZRXHyE74OD6Qw5PgXsSseT360D-WS08QmdQR9m23sURNRHATYqqphCEeGrqZaj4idyC4cxp4KZHWJyc','This is my second visit here with my 9 year old son in two days. Each visit gets better. They are helpful and do not mind explaining things to you. Dr. Curtis and Nurse Lucas helped to ease my mind on the follow up visit. Not to mention to very nice gestures and interactions I received from Kim at the front desk and the extremely sweet RT Sherri. I also visited with Dr Yost whom I adore on Sunday night and the staff I didn\'t catch by name. Bottom line this is the #1 ER in Texarkana. I will be back if needed!','2019-02-19 19:23:52.562000','2019-02-19 19:23:52.562000',5,'Christine Chiles','https://lh4.googleusercontent.com/-owQvvrkpHm8/AAAAAAAAAAI/AAAAAAAAAAA/XNN4YhSKHmc/c-rp-mo-br100/photo.jpg','3272657195432704501',7007),('AIe9_BG84YPnR8vhxeJfV_lAYVNiVMq1UyEMRxqOoKrVhpfM5wx2iRlFl5I88jQZw99cH6pO1Ujws3g1GBDDRTmEto5wKIbSiMGTBdT147Ty7N50FMUHXew','Dr.o\'malley, Patricia, tricia.b and Jose are angels.. truly they were so helpful and kind and went over and beyond to insure all of my needs were met. Will definitely recommend to my friends and family','2019-11-29 22:24:30.579000','2019-11-29 22:24:30.579000',5,'Angie Jones','https://lh3.googleusercontent.com/-YF--O_YV4lI/AAAAAAAAAAI/AAAAAAAAAAA/aDDP3TaxjE0/c-rp-mo-br100/photo.jpg','16389487648212004696',2608),('AIe9_BG84YPnR8vhxeJfV_lAYVNiVnnqTcZ3j8sqredAPmiZb2EmegaKzc978ajf37GkUFRSUN8EnzPOq2EsXurNXs2MrhpICZFUy9oiKfmId-LQulVOYqU',NULL,'2020-01-12 08:51:17.511000','2020-01-12 08:51:17.511000',5,'Envy Vision','https://lh4.googleusercontent.com/-lK2R1t53dxA/AAAAAAAAAAI/AAAAAAAAAAA/iQF9r4u66Fc/c-rp-mo-br100/photo.jpg','13486358490203335051',13484),('AIe9_BG84YPnR8vhxeJfV_lAYVNivNvGoequrhjiZi3AMGeoqa-pBbp6ByxZIiNNtJY_WkUvClQZ-o2_eGilrldyuxxGXRhTqGqLRU-Tx0V5IhYd0g6_07w','Dr. Jaber, Alvean, Marcus, Vanesa great service awesome staff. Amazing and attentive care!','2019-12-10 19:48:54.228000','2019-12-10 19:48:54.228000',5,'Tania Huete-Leiva','https://lh6.googleusercontent.com/-IRPvSZn0yMQ/AAAAAAAAAAI/AAAAAAAAAAA/kgQnOwhwotE/c-rp-mo-br100/photo.jpg','16389487648212004696',2559),('AIe9_BG84YPnR8vhxeJfV_lAYVNivvTU2_KTuTQQEdBTQ5a7jiJ_Z8yDFklU2IQJB-iXQIjPZ5rJaRm1UTAkuF0IZvAQKnhAVDInazvRtKxC7lVu7QgPXOM','Had a very good experience. It was very fast and everyone was helpful, especially Jessica S.','2019-12-06 04:09:58.042000','2019-12-06 04:09:58.042000',5,'Allison Acuna','https://lh3.googleusercontent.com/-XJ3zG5dBLYc/AAAAAAAAAAI/AAAAAAAAAAA/fGcWjB10cGo/c-rp-mo-br100/photo.jpg','6521947413723274945',8074),('AIe9_BG84YPnR8vhxeJfV_lAYVNivx8wu3FKCLHPUO7gAr51rB7Db5AWCSfJSQMCRcr0VjBV8_cBmacpMep4SZBqT9J_3lcaRH_zmpZ0ZiveYQuOLL-fFBI','Everyone was welcoming as always made me feel very at ease and were very compassionate. Dr. Ybarra along with Natalia, Karen, Rollie and Stephanie all showed me so much hospitality. I would definitely recommend family and friends here for great service.','2019-10-06 02:41:31.683000','2019-10-06 02:41:31.683000',5,'Delicia Malveaux','https://lh5.googleusercontent.com/-UbPO_GT0YcA/AAAAAAAAAAI/AAAAAAAAAAA/8nZV3NKpNOs/c-rp-mo-br100/photo.jpg','8679688254631342173',8794),('AIe9_BG84YPnR8vhxeJfV_lAYVNiVy1Jc42E89gjKajFh92XZQdqX4eCkGaqWVaEwektqMWdFD5Zpkw3wAJHp_DwXYuUNL2CPmiPmNm5j8tX28LHFyEcjro','If you ever have questions ask for Dee! She’s awesome! Great facility!','2019-07-07 01:01:46.047000','2019-07-07 01:01:46.047000',5,'Eliseo Saldivar','https://lh6.googleusercontent.com/-2Na-7a6EsSg/AAAAAAAAAAI/AAAAAAAAAAA/eTIJ1xpzqW4/c-rp-mo-br100/photo.jpg','3511292162159714121',7272),('AIe9_BG84YPnR8vhxeJfV_lAYVNivYql0DzKPmN4S1Its37hd2lgvnY1H4RmPDj9XOE-qMo-A10jRQCofdBB8EQg7hvhmkKP_XD4tbtGFRD0YFb-BpOFdWs','Great staff very nice and very attentive. Didnt take long at all to be seen.','2019-06-07 21:15:20.893000','2019-06-07 21:15:20.893000',5,'Jeanie Rangel','https://lh4.googleusercontent.com/-bvLDW3MzOtc/AAAAAAAAAAI/AAAAAAAAAAA/uFNNk25RqhY/c-rp-mo-br100/photo.jpg','14567670160750071148',1315),('AIe9_BG84YPnR8vhxeJfV_lAYVNiW_aSTmJSWoqZDqebI-pX9vCOuHIscqlRMGZUSm-oQTxBLdh4bVXASaNmJzxoUdInCOuoxzfGsjnuSBKjNJc-C1K5nFo','I was referred to this location by someone and the I had to thank them for the suggestion. I was greeted promptly and seen not too long after arriving. No wait at all. Amy at front desk was very friendly and informative with insurance/ self pay options. Dr. Thomas along with Lia, Trisha and Shay were very informative and attentive to my medical needs. I would highly recommend anyone seeking any type of medical attention to give Westchase Sugnature Care ER a visit. You won\'t regret it.','2019-03-08 03:58:20.709000','2019-03-08 03:58:20.709000',5,'john lastrape','https://lh5.googleusercontent.com/-4V1XVpAQk2g/AAAAAAAAAAI/AAAAAAAAAAA/FOH9E63aMhk/c-rp-mo-br100/photo.jpg','12541597562633926366',539),('AIe9_BG84YPnR8vhxeJfV_lAYVNiw1hOoplA12TcuUmaaNB83_iMwGzk2iCn-wPE25Kr-atU97wSqJfpvarkK5NogmtQ7W9XUUzYkZQoALLURM6K8sx3PW4','Really fast and really nice ! I’m still here but I’m almost about to leave and I haven’t even been here 30 minutes ! Great staff !!!','2019-01-09 22:12:41.725000','2019-01-09 22:12:41.725000',5,'Angelique King','https://lh5.googleusercontent.com/-IEyi1vIBeQg/AAAAAAAAAAI/AAAAAAAAAAA/iQc2ucnPPSg/c-rp-mo-br100/photo.jpg','3272657195432704501',7063),('AIe9_BG84YPnR8vhxeJfV_lAYVNiW56DqLzBx1qQQYNQI5uTFexpx42-_vIbzs65bg80j6vcx5mz-WiP3d851b3BpDBK2wWK-d3jEyMe_KjAtZMh7VGLQjw','Awesome experience, very friendly staff. I didn’t wait for more than 5 minutes!','2019-07-12 00:03:31.840000','2019-07-12 00:03:31.840000',5,'Kiabeth Armas','https://lh6.googleusercontent.com/-itFKgTDWYxY/AAAAAAAAAAI/AAAAAAAAAAA/aniv1Zs2rBM/c-rp-mo-br100/photo.jpg','6521947413723274945',8206),('AIe9_BG84YPnR8vhxeJfV_lAYVNiW7cgAHz-xw7hTpZHhfMH381zZ70GxyQnWRZUBCVUFx3IlZvzCicGRpr1vAGqK8uQlx_HYyqbHyns4c0eKDWh8arap6A','The staff Lynn, Tanishia, Geovanni, Sala and everyone else who has helped me today were amazing!!! I’ve had panic attacks lately and they made me feel so comfortable and like I was at home that during my tests I calmed down and to know also I’m perfectly fine calmed me down too! This place and the staff are just wonderful. Second time here and will come back for anything emergency related.','2020-03-16 05:57:05.239000','2020-03-16 05:57:05.239000',5,'Rachel raymundo','https://lh6.googleusercontent.com/-N5gynXcA6Fs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnlcZAjmhlwotB6poCaFv_T_jt7Gw/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21088),('AIe9_BG84YPnR8vhxeJfV_lAYVNiwBOzxX7SD6KPAiZMwKNjEia5BuE_3EqXx2Rx05n_WI6wakHIvNxwNYnQAj_iiQ6EPJzLbit9qdV3fhLdXlhKEMwvaDc','Great Service and Friendly staff members. Kendra did a great job at Greeting me as I walked into the facility. It’s people like her that can turn a bad day into a good one for sure 💫✌🏾','2019-11-02 15:17:35.088000','2019-11-02 15:17:35.088000',5,'Tristin Manning','https://lh5.googleusercontent.com/-wpusKUB9WtQ/AAAAAAAAAAI/AAAAAAAAAAA/quCRokU6LiM/c-rp-mo-br100/photo.jpg','16590124370714063921',3110),('AIe9_BG84YPnR8vhxeJfV_lAYVNiwcGgkK0-62STk117QC7N01vgdsj01IhZbqZS1_JE3O7qeImVUqIYdnFfZ8T1acSuKUMrAJGnIw9DoUnk1-3_vwlPBxY','I came in for horrible tooth pain and Anthony and Brad were extremely helpful and kind as well as Dr. Vakey who helped relieve my pain and got me the right medication for my symptoms.','2019-07-26 22:20:29.017000','2019-07-26 22:20:29.017000',5,'Hannah Carter','https://lh5.googleusercontent.com/-8wke1wUixvs/AAAAAAAAAAI/AAAAAAAAAAA/nF-8ZIAOkDU/c-rp-mo-br100/photo.jpg','16590124370714063921',3278),('AIe9_BG84YPnR8vhxeJfV_lAYVNiWi5KqNP8lxPtjv3tkqZpWeOXDBKBBtSrEJJB-SJR4DbcSKdOxrp422kIrji5cszFO6AcRpSzNotTxDNWIXdc4M2hT60','Staff is outstanding did everything to help and made me feel completely comfortable from registration to the doctor. Did not have to wait and everyone was so friendly! Thank you Jennifer Diggs, John Bell, and Kanyon H.','2019-07-29 13:56:15.335000','2019-07-29 13:56:15.335000',5,'Leah Hoss','https://lh6.googleusercontent.com/-gI3Fs71NMaY/AAAAAAAAAAI/AAAAAAAAAAA/05H8g-_5XLQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8422),('AIe9_BG84YPnR8vhxeJfV_lAYVNiWILPl9H0pUz32Q7dewnFtqpPArOl0cVj9yB33ZhgO4wtkona8L6X5lZTTwv0otkuQ2hlyJs6xwZBRqcaEGCjRS0wa3A','Amazing kind & friendly staff & doctor! Truly, there can not be enough good things to say about my experience at Signature Care. I am SO glad I decided against going to the hospital ER! Not only is the place clean & efficient, the staff are true professionals. The whole process was incredibly efficient too! Shout out to Dr. Souman- You are a GEM! Thank you Leslie (front desk- registration)- you made the whole process surprisingly painless for such a painful situation.','2019-06-15 20:56:03.844000','2019-06-15 20:56:03.844000',5,'Liberty Rivera','https://lh6.googleusercontent.com/-xDFUkEWOfcs/AAAAAAAAAAI/AAAAAAAAAAA/X8gijNMf8Ss/c-rp-mo-br100/photo.jpg','3511292162159714121',7307),('AIe9_BG84YPnR8vhxeJfV_lAYVNiWLi5PJIpFNgVPysdLzqzd5Aj5cg0pFCgwzwxrCYUNZHrzPuz2JT6-4wIT7Q9oT2tb31rVYBJJjBPaCMxdsi6ZZatU60','Christine, Sindy, Quyen and Dr. Dang were very calm and understanding when I showed up at the ER in August 2017. They drew blood quickly and easily, and explained everything I needed to know about my condition clearly and kindly. Best urgent care-er experience I^have ever had.','2017-08-22 13:26:26.779000','2017-08-22 13:26:26.779000',5,'Joanna Eleftheriou','https://lh6.googleusercontent.com/--RoT_ScT-FQ/AAAAAAAAAAI/AAAAAAAAAAA/KF6ljtdUbGk/c-rp-mo-br100/photo.jpg','3511292162159714121',7793),('AIe9_BG84YPnR8vhxeJfV_lAYVNiwN-886ZaBCs3_wTfcJpmb3soutpHreNhGN64GOSRNXJvw6ceHVWHZZzYlAudQEG02RmYVSkmnfzbrwF5SjBV2x5pxBI','Staff is nice and friendly! The place is clean and lovely! Keera was awesome too','2019-07-09 18:50:25.199000','2019-07-09 18:50:25.199000',5,'Kevin Guenther','https://lh3.googleusercontent.com/-GLRsKn3-zQQ/AAAAAAAAAAI/AAAAAAAAAAA/oSUr214v9KQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4634),('AIe9_BG84YPnR8vhxeJfV_lAYVNiWOlpJqR3K3IhwNCbDAduqwrCzGP7R_yD6EsGoI7sCV7E_AshYsXofNz0OcqvQ0yOfULyzmFg3vAwcB0NK4Q2ufeQfZM','Nurses and Doctors are extremely nice and they take great care of you. Nice and clean environment as well.','2019-08-01 05:18:18.747000','2019-08-01 05:18:18.747000',5,'Brianna And Joel','https://lh5.googleusercontent.com/-u9qBvlyKDNs/AAAAAAAAAAI/AAAAAAAAAAA/iCT8kC9Kddg/c-rp-mo-br100/photo.jpg','2694018788013845459',6098),('AIe9_BG84YPnR8vhxeJfV_lAYVNiWRZ1vAUfKhY-d8ccx70M0Qy0LwaBFZ0a0YouJrzCatMyZBSFO8mJ_0wE-cUGRajGbWdfia_FHzdBDX5CH0pRdGOrWgU','The experience here was amazing as well as very clean! the employees treat children very well! loved it here!','2019-08-07 14:52:58.763000','2019-08-07 14:52:58.763000',5,'katia r','https://lh3.googleusercontent.com/-LFPopNQGvrY/AAAAAAAAAAI/AAAAAAAAAAA/uzYalicZko4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiWswMtvg8-QSZ7vMoPXI7UQzLe7Nq2QK56zXJd34ja530Cuef1873rVcNcVVdPIVJKQSzAsS8RgGe-kRD3FXI4PF9H_A',NULL,'2019-01-14 11:03:30.554000','2019-01-14 11:03:30.554000',5,'Elida Kropf','https://lh6.googleusercontent.com/-0uXaHq7Xn58/AAAAAAAAAAI/AAAAAAAAAAA/ng906vSNoA0/c-rp-mo-br100/photo.jpg','3272657195432704501',7057),('AIe9_BG84YPnR8vhxeJfV_lAYVNiWtt-3p0Qp1yep4rMQDsKm-sgNruhMNr59DY865iZqgWfFUI5Jb7BDifQpGP3F88ImlI4VVZzqb_PlBtS5IjDVuBGcxU','Best emergency room I’ve been to yet! Samantha at registration was very welcoming and helpful. Dr.Souman gave my daughter the best treatment for her condition. He made her feel at ease! We will definitely be coming back again!','2020-08-21 01:37:16.806000','2020-08-21 01:37:16.806000',5,'Brenda Roman','https://lh3.googleusercontent.com/a-/AOh14GhVlLaN8bUQGgPkyGsxmBgKgwoF9ianBqO7l8X_=c0x00000000-cc-rp','14567670160750071148',22994),('AIe9_BG84YPnR8vhxeJfV_lAYVNiwtvuP4HhybwUdYV3Bw6Y27bHXY_Ckx_FHmqxCLtbNrOEvKDHfJxyplkm85EBuTXGHDoETBY5ZW1ABicz14Qcrrrgtqw','Good job','2019-02-28 18:58:24.452000','2019-02-28 18:58:24.452000',5,'Shirley Davis','https://lh5.googleusercontent.com/-hUJNgbbCojc/AAAAAAAAAAI/AAAAAAAAAAA/7fkx9LSBiH8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiwX-zkMU2-vEbJRI-UEyZ3Q5xR6XoomP7IIzGCp1o-rxhjBYr9hOlD2ii55r4Dez3LpEKh1KDR4T58pMrt2fYUfSxmC8','Best emergency center in town! Service is quick, staff is very professional. Dr. Patel, the radiology tech Orlando, and Amy the nurse provided great care.','2019-10-22 16:53:35.690000','2019-10-22 16:53:35.690000',5,'Anja C','https://lh4.googleusercontent.com/-GyA8KzX14e8/AAAAAAAAAAI/AAAAAAAAAAA/54TdHQSU2cc/c-rp-mo-br100/photo.jpg','2694018788013845459',6038),('AIe9_BG84YPnR8vhxeJfV_lAYVNiwxR81H5QSO2VzgzIzFqQXwSR1cWnDj0HaPz9_qealNG011KFnn9v0QKUwNXeB9LGba7RaANQAlIqs-Ap6jx-T9jtikE','They were very welcoming and made sure I was comfortable! I highly recommend coming here.','2019-04-08 17:48:25.678000','2019-04-08 17:48:25.678000',5,'Alyia Hall','https://lh3.googleusercontent.com/-5WfdHAnpnH0/AAAAAAAAAAI/AAAAAAAAAAA/j-EeM5KbTyE/c-rp-mo-br100/photo.jpg','16590124370714063921',3436),('AIe9_BG84YPnR8vhxeJfV_lAYVNiX4r3oi3YBwFKjkEprxpQGNcWLGOdiyKXdI0zB6zKBX5dKTHpDoYl2mKLxl5gIAQOSOvCLkdrcilxKa5-NjRVAbfLNAQ','Thank you Daniel,Fatima, Daniel, Tanisha ! And dr Patel for your excellent service.','2019-11-27 07:10:49.240000','2019-11-27 07:10:49.240000',5,'Patricia De Leon','https://lh3.googleusercontent.com/-dTibHXwPRKs/AAAAAAAAAAI/AAAAAAAAAAA/QMK27pc5rLE/c-rp-mo-br100/photo.jpg','17898197009688164559',5398),('AIe9_BG84YPnR8vhxeJfV_lAYVNix5fyNVSaJJrGZwLcPMBmIKiZPfDjKP8x188lbDXaGbtsQZu0xgBOrEzd44Z-SuZupeiD1Q0FhwHJaxcaD18hyga9CfY','Staff was very friendly, clean facilities. They called me back within the first 10 minutes I was there, had me out within an Hr and some change. I would definitely recommend.','2020-02-13 21:49:01.693000','2020-02-13 21:49:01.693000',5,'Carlos E.','https://lh6.googleusercontent.com/-JEx1ClybbMw/AAAAAAAAAAI/AAAAAAAAAAA/ZFWJfZDWCgU/c-rp-mo-br100/photo.jpg','6521947413723274945',14579),('AIe9_BG84YPnR8vhxeJfV_lAYVNix5R_7iLBx3HmGKHhKs6qBB_2kbv6FZhvq0GrIoFjhIeOP11LqYAFpmx1avufY3Wh1HKFL_HeKt1DMZjE3-dkSFM6pJ8','I came in early in the morning at about 2am on 10.23.19. The nurse Mary M. was extremely disrespectful and judgmental because I had not giving my son pain meds before coming in (which I had ran out at home) and because he had knee pain for about a month - my son plays basketball and works out a lot trying to lose weight so he does get pain here and there ever so often. Then she goes to the nurse station and I can hear her negatively discussing about me and my son and laughing. It is sad because I am in the health field and I know customer service is extremely important for any business. If you want to laugh or be judgmental towards a patient at least make sure they cannot hear you. Turns out I was also right because after his results, everything was negative and it was just as I imagined - body aches and groin pain as he is growing. I never give negative reviews but I have never been disrespected this way especially when it comes to my child. When you go to the hospital you are already vulnerable - for someone who is supposed to show empathy to make you feel like you are a careless mum is extremely disappointing especially when she does not know the entire story of the patient. The doctor and CT scan technician were excellent though and very thorough and the receptionist were lovely; they made checking in and out easy and were extremely friendly. But the nurse - HORRIBLE. For her to be the face of the patient when they get into the room is rather unfortunate. I would go back there because they are efficient. But if I see the nurse Mary M, I would request for another nurse for sure - she needs to learn more about HIPAA law. If not for the nurse, I would give a five star.\nThank you, \nDr. Ahone N.','2019-10-23 10:29:39.580000','2019-10-23 10:29:39.580000',2,'Ahone Esther Ngujede','https://lh5.googleusercontent.com/-jsZ6zG8h3mM/AAAAAAAAAAI/AAAAAAAAAAA/4zs0tB2IQ1A/c-rp-mo-br100/photo.jpg','17394740196501090048',14081),('AIe9_BG84YPnR8vhxeJfV_lAYVNix9d6U501EC4tWo1bcWEOLNVMHcnygcpHPPHaO_zfrYN9XtrRH0yXmdMhtPLO4f2auR-4M6CoJCin_QDSxSY470hQcWE','Upon arrival I was freaking out due to my baby being ill & the staff here were so comforting and best bedside manner anyone could ask for. They were prompt on taking us back and were very helpful when it came to billing. I would bring my child again for any future illnesses.','2019-11-02 21:35:45.906000','2019-11-02 21:35:45.906000',5,'Marissa Silva','https://lh3.googleusercontent.com/-tNj0x5XtkPI/AAAAAAAAAAI/AAAAAAAAAAA/gPIne0kzHrI/c-rp-mo-br100/photo.jpg','16590124370714063921',3109),('AIe9_BG84YPnR8vhxeJfV_lAYVNiX9rXhOY5Y-Kpxmaks2k7TKhb7k-9Ocq9McUYzqYexim8TDIfU2jnEZSBpyTERq9g1l9OeQFXj3T3mJN3VqOHz94dsBk','Brad, Kim and JR were efficient and got me feeling better.','2017-02-09 22:39:29.374000','2017-02-09 22:39:29.374000',5,'Chandler Atkinson','https://lh4.googleusercontent.com/-r4h7QZpgetA/AAAAAAAAAAI/AAAAAAAAAAA/KsCPoGv6BLA/c-rp-mo-br100/photo.jpg','16590124370714063921',4063),('AIe9_BG84YPnR8vhxeJfV_lAYVNiXBOMhdE4xhYkediz49WIhKKK_GU67Csa0q3vcYCKUSA-bjnakEFe9SmAtkO_dmG-7t8KxdGPipEr3cBhLQqgEqnPXvY',NULL,'2020-08-04 13:33:20.198000','2020-08-04 13:33:20.198000',5,'Lamar Rollie','https://lh5.googleusercontent.com/-g0DW1x68x58/AAAAAAAAAAI/AAAAAAAAAAA/D134gc3fJE8/c-rp-mo-br100/photo.jpg','2077061009497551125',22983),('AIe9_BG84YPnR8vhxeJfV_lAYVNiXE3QLzq0LHMwig6SMjugjC-Qk6ClUDxgk7B0bmzi2ZDyWmjdUbbKaDTz0QS_Ikekvui6azLJdvYgogAV1DIamDfUebA','Dr Dendy and staff (Alvean, Tricia, Jesus) were great and very professional with their services. Very nice location.','2019-05-31 20:11:33.954000','2019-05-31 20:11:33.954000',5,'emmersfamily','https://lh3.googleusercontent.com/-bEU3Tp7Mjhg/AAAAAAAAAAI/AAAAAAAAAAA/zx23yH_P9NA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiXLtFWaSC8DyoGkxkBgmd_QfGVvINJhrmTaFyijb3h3hyqR9FniGrqvyho6H6s6mlmUTP997zMwnFUdsHFun5YWSOAGQ','Excellent service. Starting with the front desk lady she was very helpful and concerned. Then the nurses were Amazing make me feel comfortable. Doctor was very profesional and explain details of all the test and procedures.thank you!','2019-04-05 23:39:23.636000','2019-04-05 23:39:23.636000',5,'Karla Camacho','https://lh3.googleusercontent.com/-nI_Oem8MZbY/AAAAAAAAAAI/AAAAAAAAAAA/Cq-sDURWF2o/c-rp-mo-br100/photo.jpg','2694018788013845459',6171),('AIe9_BG84YPnR8vhxeJfV_lAYVNixM-WBILa9cWo2RhRuMi6vw1siEkP73maqNbTBHyXKmb5eH3iGW-CzjIvW3MYtoFI-Itg-Ws5R4mDqSRkIGNylSMPYVo','Best ER I’ve ever been to great customer service and very fast service everybody was friendly and helpful from the moment I walked in. Alvean,Patricia,Ann did a wonderful job explaining everything to me.','2020-03-12 16:18:55.453000','2020-03-12 16:18:55.453000',5,'Valerie Wong','https://lh4.googleusercontent.com/-ZPMBOAtTl7I/AAAAAAAAAAI/AAAAAAAAAAA/XODIkoNI0cY/c-rp-mo-br100/photo.jpg','14904078213800803294',20982),('AIe9_BG84YPnR8vhxeJfV_lAYVNixqe-jSOunP78iiqD8c-GjuT7I0re4XztHmwaqPa4zIe3qblyUhrU3xP4mmUsnP1yJ9KbL_oJbmfGFPk8A5jsKjpSXzU','I cannot explain how phenomenal the staff is here. From the moment I walked into the office I was treated with kindness and respect. Naomi was to thank for that initial impression. The entire staff\'s bedside manner is above any standard that I thought possible. Our nurse, Anthony, and tech, Rebecca, started our visit with compassion and efficiency. Dr. Baker was informative, professional and made me feel like I was in the best hands possible.','2018-12-12 03:38:14.180000','2018-12-12 03:38:14.180000',5,'Jenna Anne Sands','https://lh6.googleusercontent.com/--tvt7ZzpAJI/AAAAAAAAAAI/AAAAAAAAAAA/hEVEd6Cu7gE/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',3612),('AIe9_BG84YPnR8vhxeJfV_lAYVNiXR-jeSVepiO2lFqYhY6-rpdlxbU79RRVUoH9OaF9nYxdrd3gR29c12j3d5uvBTkSGTFTZofKDGBxNyijAg9OwNvY55M','Clean, professional, and super faaasst. Cody, Sam, and JD we’re all professional and listened and responded well to all of my concerns.','2020-07-28 19:23:25.015000','2020-07-28 19:23:25.015000',5,'Luke Kuss','https://lh3.googleusercontent.com/-0OfFsAdDURI/AAAAAAAAAAI/AAAAAAAAAAA/YfNaUi7xjRs/c-rp-mo-br100/photo.jpg','2077061009497551125',22790),('AIe9_BG84YPnR8vhxeJfV_lAYVNiXriAl0KY88FNzxj_uM1Lh8oHkbHpM4GLmxCV6Wmruzd-qPXTljtjxwogjvZ-dpnHrsQGipIiBXFcU-C2NWS5ZwCeAXg','I\'ve been to a few urgent care centers in Houston but none like this one. The staff was so nice, patient, but most importantly urgent. They treated me as if I was family and that\'s very rare for an urgent care to do so. ','2017-04-03 16:55:04.444000','2017-04-03 16:55:04.444000',5,'Raven Coleman','https://lh4.googleusercontent.com/-DqLpyXj0FKk/AAAAAAAAAAI/AAAAAAAAAAA/dwld_cZZS3Y/c-rp-mo-br100/photo.jpg','14567670160750071148',1858),('AIe9_BG84YPnR8vhxeJfV_lAYVNiXRodJ3ZCGiyVIs86A7MQ8nnOvUzwd5SgZuIMzvApvkiL0ZKk7DAUeJUL30K0sByM3PxXoIv8dQDSQDuqJ4XuTjKW2jo','East, fast and friendly service! Very knowledgeable staff!!!','2019-11-13 21:33:40.944000','2019-11-13 21:33:40.944000',5,'Kawannis Williams','https://lh6.googleusercontent.com/-dLljPJwv6-E/AAAAAAAAAAI/AAAAAAAAAAA/kNScg4MlV9w/c-rp-mo-br100/photo.jpg','16389487648212004696',2710),('AIe9_BG84YPnR8vhxeJfV_lAYVNiXUwwaQNW7aXSAbk_tTq_vO1vZPLdFt2SI_RtYVyENEbaZRWHf0VGPFX-kfPvF8mhuRuWuvGMfdrlCE0CH50mg3NhGe0','I absolutely love SignatureCare Emergency Center! Lucas is a wonderful nurse and you can tell he truly loves his career! Carla, Jennifer, & Dr. Henderson are all just super sweet and caring! If I have to go so where, it will definitely be SignatureCare!','2020-02-29 16:28:28.153000','2020-02-29 16:28:28.153000',4,'Shelby Hall','https://lh5.googleusercontent.com/-R63W3XD2RnM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucluG4bRBK87JKSe4LpcyAc-wTauOg/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14309),('AIe9_BG84YPnR8vhxeJfV_lAYVNiY_wyvJu2ssmDqFM6f-AF_tOHC4uDyxUGARvFdb3Co4b5_NST28glopj_vNf_HEHlu27k1VQatA15TFVQa83CEl3NcSo','This is the best medical care facility I have ever gone to. They helped me very quickly, on both visits. Every doctor that I have seen has been so very kind, and I received wonderful bedside manner and service from every single nurse and staff member. They really care about how you are feeling, down to the smallest thing. I don\'t think you can get any better service than this place. It\'s extremely convenient, only a few blocks away from my house, and you are taken care of in an extremely timely manner. I will be coming here from now on for all of my urgent medical needs. I love this place and I am extremely grateful to the entire staff.','2019-07-05 20:39:51.018000','2019-07-05 20:39:51.018000',5,'rawwritsrachel','https://lh6.googleusercontent.com/-2iySha6XM0k/AAAAAAAAAAI/AAAAAAAAAAA/I6BGOk8zlLw/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',490),('AIe9_BG84YPnR8vhxeJfV_lAYVNiY24boEc9G2MVXWMWwYVxaqPzsH30cbrog6LvhYodVkx9fRhckYBEwztq0OgW_-gUeotEQXo8BF3sC1OEn0piz1hYP4U','The staff is beyond amazing! Ms. Sibienne has very good customer service, she explain the process and make sure you are taken care of from the beginning until the end. I visited this specific location 3 times and they never seem to let me down. I will definitely refer my family and friends to Signature Care!','2019-02-08 05:00:50.325000','2019-02-08 05:00:50.325000',5,'Ashley Francis','https://lh3.googleusercontent.com/-24gDP_L1JYU/AAAAAAAAAAI/AAAAAAAAAAA/ib7kdWe298Y/c-rp-mo-br100/photo.jpg','8918455867446117794',9182),('AIe9_BG84YPnR8vhxeJfV_lAYVNiY2Ed-TBjc--xL09pkDbzAe_9Tf9KDZ00Ya_2Z5xIgcdWaqlKC3SxdHyThosBa8FrdAqKB-eM2snVwj0b5w0eMf9ghkg',NULL,'2017-03-25 13:04:16.238000','2017-03-25 13:04:16.238000',5,'Candice Roman-Boyd','https://lh3.googleusercontent.com/-y4Fpzz-5dgU/AAAAAAAAAAI/AAAAAAAAAAA/o55KUvVbSeo/c-rp-mo-br100/photo.jpg','14904078213800803294',2381),('AIe9_BG84YPnR8vhxeJfV_lAYVNiYBwX-vJbPnmvYIfLaC5YG3quPwlZ86PL1uS9HorS1q3EPuDnmVF1iq9eJf0ZIB5yveouBxSBrWHcRbLPwv4ryuWxRTs','Tyler was my Rn had great lite convocation with her and she made me feel safe staying in room with me while male doctor checked me out my tech was jaslyn she did a great job with iv I didt even feel it thank you guys','2020-06-02 20:58:43.950000','2020-06-02 20:58:43.950000',5,'Riley Brast','https://lh4.googleusercontent.com/-YPnTM8v3iII/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclw_85ixU1q5XB9ZM3orK704PEh3w/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22105),('AIe9_BG84YPnR8vhxeJfV_lAYVNiyE3iHskQxluUgMg-xivPIOks1D7RQLtI3-dD9jPi0UC-ok7eaxsh9FqWA8FOlJlMf4P3A2CBGEzJT1JlQDjc6UECvvs','I really liked the way you treated me, you are very friendly and the best thing is that you speak Spanish and English thank you very much','2020-07-16 00:07:29.125000','2020-07-16 00:07:29.125000',5,'Fredy Sabaj','https://lh5.googleusercontent.com/--sMAZJlXmDo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucky4Ue62T5s1u-3yGnE3WnxXJUxXw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21807),('AIe9_BG84YPnR8vhxeJfV_lAYVNiyGaX-w8L0dBbT2V4OAl5oHksxLugq2aeEDzTz8W7ox3pkkZ8czS4LqSvtrbFRW0yybhWvWqI0E7VdxoUn9969JZ2UX8','Wonderful reception and efficiency!','2018-03-21 21:00:39.033000','2018-03-21 21:00:39.033000',5,'Juan Trevino','https://lh4.googleusercontent.com/-m8A96YMsbv4/AAAAAAAAAAI/AAAAAAAAAAA/FjgwCT76-Nk/c-rp-mo-br100/photo.jpg','16590124370714063921',3847),('AIe9_BG84YPnR8vhxeJfV_lAYVNiyHgb6Is-l24m3SZ28KlTKx8otgYCNG5jsFdoQpIlJc3BnVmfESCdGGRivP6slEiplo7tL8uLCGdCHodZCfe4Lk-lw0o','I had a really good experience at this location with Kristina and Dr Zhen! I felt comfortable and confident after my visit.','2019-12-28 14:45:21.739000','2019-12-28 14:45:21.739000',5,'Alysen Campbell','https://lh6.googleusercontent.com/-yjTiZQ7snQg/AAAAAAAAAAI/AAAAAAAAAAA/NrVYkQ-fdIY/c-rp-mo-br100/photo.jpg','12541597562633926366',292),('AIe9_BG84YPnR8vhxeJfV_lAYVNiyIaf5D_h1Qak9c3nFS6knPptNHjK12YxU3pwco3uTpTfo3VMhfiETAx_X9UGlLPtcaCh_vMYXL460FisTJV5jb-OAiY','My care providers were:\nDR. HEHMAN, MD, MICHAEL G \nNurse: Maynard Castanos D \nRadiology Tech: Allan R \nFront Desk: Genesis C\n\nVery Professional and attentive to my needs upon my visit! My family and I give 5 🌟🌟🌟🌟🌟 to All The Staff at this location. Past and recent visits. Thank you to all of you for what you do!','2019-04-04 14:20:48.239000','2019-04-04 14:20:48.239000',5,'January Mahon','https://lh4.googleusercontent.com/-RmOjKSn-GG4/AAAAAAAAAAI/AAAAAAAAAAA/D7712x6-kKA/c-rp-mo-br100/photo.jpg','8918455867446117794',9147),('AIe9_BG84YPnR8vhxeJfV_lAYVNiyk0wX9Rr-ElGe2Up51FHUS8Vswb-sZFH6ByWSr9Cf0bzeDny8Bl6p5nLItfFj07BSMJfXG1jJRTF7CZLQ7DPkFGqyuU','No wait and the staff and the doctor were fast and helped my baby in minutes..they even responded on all my questions athe day after when I called ..best we ever..','2019-03-02 23:13:45.158000','2019-03-02 23:13:45.158000',5,'Andreea White','https://lh5.googleusercontent.com/-jhXQdjPuQP0/AAAAAAAAAAI/AAAAAAAAAAA/KtNLYCjN0Cc/c-rp-mo-br100/photo.jpg','17898197009688164559',5828),('AIe9_BG84YPnR8vhxeJfV_lAYVNiYM0-hzqUuOCTyx785hPPsiqmbyEBMJelNHQLBer_HTCY__8mowk17bnsp_DUW1AmROxMzPgTBbSEmP406oFNvFIRV7I',NULL,'2019-07-04 02:25:09.440000','2019-07-04 02:25:09.440000',5,'Andrew Stout','https://lh5.googleusercontent.com/-jJCll4VTcP8/AAAAAAAAAAI/AAAAAAAAAAA/DQSs1Xcsews/c-rp-mo-br100/photo.jpg','16590124370714063921',3319),('AIe9_BG84YPnR8vhxeJfV_lAYVNiYM20naRokl9s2FsUXcBPpwy-1g0OInYvhgkWaP3msdyZSc3pais2tl8KBvfL7_W4K51XN9a16aC3VMoRfRXh0mQq60A','Great staff Dr chowdhury, Nadia,kevin, front desk ladies','2020-08-05 21:40:31.558000','2020-08-05 21:40:31.558000',5,'Carrie Collins','https://lh5.googleusercontent.com/-4IbgwQkeg8g/AAAAAAAAAAI/AAAAAAAAAAA/jqBkmbGJMUY/c-rp-mo-br100/photo.jpg','14748677429039074158',22520),('AIe9_BG84YPnR8vhxeJfV_lAYVNiyPswPPG6iUsUJ_v0x4XMGXuxDyEEAbZqWSjMKfRleMzE74X8ZOeR9vyXdcAmKIomGzINdbYK0Sqnljd-dLlDmDy-Up4','Absolutely AMAZING and beautiful souls here!! The kindest people I have ever met in a place like this! Made my family and I feel so welcome and service is amazing as well as customer service. 100% recommend.','2019-06-07 06:56:08.006000','2019-06-07 06:56:08.006000',5,'Emily Wiggins','https://lh6.googleusercontent.com/-4dpdbSBpibA/AAAAAAAAAAI/AAAAAAAAAAA/pwYBGsoUl7k/c-rp-mo-br100/photo.jpg','17898197009688164559',5711),('AIe9_BG84YPnR8vhxeJfV_lAYVNiYvv5QZoSRes8SJRxglIBXzJ0soeACvjhPfo7icmImMS7thAtNMUW26pTjaBle98NVxtJWjBDoo1t69j8VpY5yRzVyvc','Brought my boy friend’s brother here late at night and Rondi, Miguel, and Dr. Lim took good care of us!','2020-01-10 07:07:21.378000','2020-01-10 07:07:21.378000',5,'Lauren Graff','https://lh4.googleusercontent.com/-NlManB6Go38/AAAAAAAAAAI/AAAAAAAAAAA/omYxORUE9M8/c-rp-mo-br100/photo.jpg','14567670160750071148',9477),('AIe9_BG84YPnR8vhxeJfV_lAYVNiyVyKV5UBZZ3J0CMbm3Cu3irb_11Vq0wJZodr40Fj09eoXbUEBBveojb-pz2zm4156OKY72djo28jLkcx6t0BUwHAFDE','They were incredible. Nadia took my covid test and she was awesome the front desk was super helpful as well!!','2020-07-18 21:55:40.213000','2020-07-18 21:55:40.213000',5,'Aidan Smyth','https://lh6.googleusercontent.com/-VcvUm-g9R38/AAAAAAAAAAI/AAAAAAAAAAA/eqC9sI8m0qk/c-rp-mo-br100/photo.jpg','14748677429039074158',21719),('AIe9_BG84YPnR8vhxeJfV_lAYVNiyxeKzJl52IDnKTQM8Jev-iNfs9MZUsAwTPOAGbiwVi8P1wCJ12DSe_nNy0628IeeT4-FVJ6FFuD8oPunTvdEuxtg6Eg','The staff at Signature Care is amazing! They took care of me and my needs as soon as I walked in the door. They made me feel at ease and were quick to treat me. The facilities are clean and very comforting. The doctor and nurse that took care of me explained every process and kept me comfortable the whole time! I truly recommend this facility.','2017-10-23 17:07:18.725000','2017-10-23 17:07:18.725000',5,'Maria Chavez','https://lh6.googleusercontent.com/-rEI5ZH5dRSw/AAAAAAAAAAI/AAAAAAAAAAA/kZSSpAYGW04/c-rp-mo-br100/photo.jpg','14904078213800803294',2314),('AIe9_BG84YPnR8vhxeJfV_lAYVNiYZr-yeBq4Pmi4xR13PWa4iJDVY1OlC7nnzrKnrbyb7Bq9hi2jVS6Mw9uDZSDuOyBBthqFLZkmm8_zLG0qZjvSI9Vs6U','Super helpful and informative staff I will definitely be coming back here when needed!','2019-02-12 23:13:00.077000','2019-02-12 23:13:00.077000',5,'Vannesa Martinez','https://lh4.googleusercontent.com/-w1ZxAPfjXfQ/AAAAAAAAAAI/AAAAAAAAAAA/1LnDZZBrIkg/c-rp-mo-br100/photo.jpg','16590124370714063921',3557),('AIe9_BG84YPnR8vhxeJfV_lAYVNizbyJqMb80w_vpr_btvfuMfz7mK80oSvAfxe1E0q9zZ1NFb4qZSvxaDXFdKW2EFDfwcZR7RyO4BXH5CYTKhjbuyFLV5Y','Came for a COVID test. Got me in quick. Nice friendly staff. I enjoyed my experience. Even gave me a bottle of water.','2020-08-06 22:42:41.496000','2020-08-06 22:42:41.496000',5,'Brent Roberts','https://lh6.googleusercontent.com/-fAMMiSB6bBQ/AAAAAAAAAAI/AAAAAAAAAAA/UmDs6iMM1G4/c-rp-mo-ba4-br100/photo.jpg','2077061009497551125',22724),('AIe9_BG84YPnR8vhxeJfV_lAYVNiZcnlx_jLDB0Pm7iII9eO1KDjUaTZpdkoM_c_vz8SMNP4DGY1uFopdsnuO3NBAog5J865vrgF2iZ311knjoN8wbM5f5M','Doctor Grinblatis and Nurse Jessica were AMAZING🥰🥰 to say the least. In fact, everyone here was friendly and personable and very compassionate. I would feel comfortable sending ANYONE here knowing they are going to get top-notch care and be treated like they matter. Not your typical ER experience, MMUUCCHH BBEETTERRR and 10000x faster.. I can’t say enough about this doctor.. VERY friendly and engaging.. can you be my PCP??(lbvs).. Oan by the way, THIS IS A REAL REVIEW.. nobody paid me or asked me.. so if u don’t feel well, what r u waiting for?? It’s worth the drive from WHEREVER you are😌','2020-03-16 05:52:06.123000','2020-03-16 05:52:06.123000',5,'MeToya Boyd','https://lh4.googleusercontent.com/-HeZ60O3kRr4/AAAAAAAAAAI/AAAAAAAAAAA/0lG0OQPYB1g/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',20980),('AIe9_BG84YPnR8vhxeJfV_lAYVNizcQiyvuQCt7JbEUz1ZFonPR9ZsGAsxuqDKHHTwAliCvEeONDPMTZz4iCp12QWRHNyj_wFYZAZ8S_6CQz_EY7uNwNwaY','A great facility and kind staff! Very helpful physicians, nurses, administration, etc! Lorena, Nurse Remington, Laura and Dr. Ortiz all great medical specialists!','2020-03-13 14:57:07.914000','2020-03-13 14:57:07.914000',5,'Marisa Yapko','https://lh3.googleusercontent.com/-h93Yarzo_t4/AAAAAAAAAAI/AAAAAAAAAAA/-HDcXrVgkLY/c-rp-mo-br100/photo.jpg','16590124370714063921',21030),('AIe9_BG84YPnR8vhxeJfV_lAYVNizEWdFFRWgtrCbr-Pv2hy9nHq6CFU64RSaG8B6DkzU77gZILzQoUsXU26IirDKN9tAv40yxDDwHui7jpqDbssaHFxZc8','Above and beyond! Ms. NWEZE was able to help me with what i needed and I am super grateful to her for her service.','2020-08-09 16:52:26.493000','2020-08-09 16:52:26.493000',5,'Omar Shahin','https://lh3.googleusercontent.com/a-/AOh14Gh76NMJejxVrs7qjwOmPtSdDcXKGKTiDojb5Z-4fI0=c0x00000000-cc-rp-ba4','12541597562633926366',22456),('AIe9_BG84YPnR8vhxeJfV_lAYVNiZihzj3s-3f26aDq4h7F2GZZiDQsbX3WI81BgVkRf-hDhYfULRx2WpbmA27x8hm9ozZzoJqtIrn_BsD7STEnVmXNx3hA','Great work','2020-02-08 20:56:58.822000','2020-02-08 20:56:58.822000',5,'Gabriel nava','https://lh4.googleusercontent.com/-9NLIc9XIeKc/AAAAAAAAAAI/AAAAAAAAAAA/Q-bv93efWm8/c-rp-mo-br100/photo.jpg','16389487648212004696',22606),('AIe9_BG84YPnR8vhxeJfV_lAYVNizIPcUnIzHVkMugrcoB0AgIXvN5fyV3uTuPKVAa9oTW1BsXLnhnb6iRtnWi14plqkPV9rIPdMkYa1CsbJzmChjEhICpY','Dr. Pham, Nurse Niki, Bryan, and front desk Jesus, were all great! Fast and very friendly.','2019-03-13 01:51:29.492000','2019-03-13 01:51:29.492000',5,'Jacob Gonzales','https://lh4.googleusercontent.com/-cammXV2rFFU/AAAAAAAAAAI/AAAAAAAAAAA/WiFuPd-DRBo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BG84YPnR8vhxeJfV_lAYVNiZITolGXD7I4jM_CSvJMHN2jQ7j07sJlQyzm50W7MNyxyDJFTqfWVb6wbLTF-OqebaKJYi-YIr0s8UA0Dy-uH4z0Wsl0','Made an appointment for COVID testing. Come to find out the line out in front of the building was of people who had been waiting for 6 hours for their appointments that they showed up on time for. After talking with others that were waiting, they even double booked time slots for the same room. Why even allow appointments if they won\'t even keep them. I understand there are staffing and supply constraints, so adjust your appointment windows to match your constraints! And don\'t charge people $10 if you can\'t keep your end of the appointment!','2020-07-04 05:57:44.449000','2020-07-04 05:57:44.449000',1,'Eric Simmons','https://lh3.googleusercontent.com/-p3nGTX5oWto/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucllRsQ7UVpCI6GjCQGSrcvokXGh6g/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21406),('AIe9_BG84YPnR8vhxeJfV_lAYVNizLZGqrPXsEfG1FMZaRzH-mc0CeSrXAXZdUxNKl9I67Fvoa0BWpJyknN2PzkufCUhe4__zulc_mXq8z1jav8-ut_Ai1g','I had a great experience by dr.daniels and nurse Joseph, and rad tech ms Natalia & registration was veronica','2019-11-11 15:36:43.345000','2019-11-11 15:36:43.345000',5,'Deshawn Magee','https://lh6.googleusercontent.com/-yz3awxuRdW8/AAAAAAAAAAI/AAAAAAAAAAA/GH4GfZBqEtI/c-rp-mo-br100/photo.jpg','8679688254631342173',8738),('AIe9_BG84YPnR8vhxeJfV_lAYVNizn3YJsj3Xyghvv2gd8mMoxe3WjWDrafpv2NBw0a8cxPMDBZJjzih2yHkzB6ECgLYgpNXKLdtLUzTCzHSvU62yIY3Fe0','Everyone is clear and helpful. I really like that I can go in and out in just about an hour. I love the warm blanket they offer!','2018-01-26 21:42:35.937000','2018-01-26 21:42:35.937000',5,'Estefannie','https://lh5.googleusercontent.com/-kMM9wJlPCgg/AAAAAAAAAAI/AAAAAAAAAAA/9J1ugkHWQdI/c-rp-mo-ba5-br100/photo.jpg','3511292162159714121',7732),('AIe9_BG84YPnR8vhxeJfV_lAYVNizOdOwoZDKfdBl30JqRHFITp46JcWkfYg1STtG0iwpJmGvcB0clpnK87Euz7NIfgiJoQjycP-wI0Azxlaj4ACkVto_nA','(Translated by Google) It is the best where I could attend, the attention was so soon and very good.\n\n(Original)\nEs el mejor donde pude asistir fue tan pronto la atención y muy bien.','2020-03-14 02:15:04.142000','2020-03-14 02:15:04.142000',5,'Jenniffer Martinez','https://lh3.googleusercontent.com/-c7EyXbCUAKg/AAAAAAAAAAI/AAAAAAAAAAA/BZvgU0B8T4g/c-rp-mo-br100/photo.jpg','14567670160750071148',20944),('AIe9_BG84YPnR8vhxeJfV_lAYVNiZot8S4G4pZ23YqT3w4I3ROAEa-UChEv107caEo9FWfaw-bbTPzEoYefH6QYdbF8b0isQTvj3SK2_ZcYGgsGcrxV_Tmc',NULL,'2019-09-28 00:09:24.329000','2019-09-28 00:09:24.329000',5,'Melissa Baker','https://lh5.googleusercontent.com/-lYGQv0tdZrY/AAAAAAAAAAI/AAAAAAAAAAA/4z-6q1khlfg/c-rp-mo-br100/photo.jpg','13486358490203335051',810),('AIe9_BG84YPnR8vhxeJfV_lAYVNizPljf2clOOb0Ej1WSwGpme_DQWRZrY8R9vQpzDM4bFDMYeaOBeL97kqsqivXlSxrs-Lk1FEYSZoh3h_TyHngbQaaMF8','I came here due to dehydration from the stomach flu. They explained that his was an emergency room so I\'d be billed like an emergency room, which I understood but I did appreciate them informing me. I was able to get checked in in a timely manner and Jackie at the front desk was extremely help and kind. Once I was taken back, Johnny, got me hooked up with the IV and started treating me with medicine per the doctor\'s orders. I was out of there by 11pm and I got there around 7:40pm. Overall it was a great experience and very convenient to where I live as well. I appreciate their kindness in the care that they gave.','2018-01-07 16:10:53.778000','2018-01-07 16:10:53.778000',5,'Lela Kent','https://lh3.googleusercontent.com/-oRTHppQeZ60/AAAAAAAAAAI/AAAAAAAAAAA/Dn7plXfBgzk/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1691),('AIe9_BG84YPnR8vhxeJfV_lAYVNizPxMJe4RdLT_thFXpl734X_E4DN4zLHCB-gTEUmVKJKTj2h7C5w3R8kbEQbDE7YVPf2R5Dj67SqVDbGtMsNRRcnl_tA','Thank you. Excellent service. Friendly staff. Sarah G, Tanishia W, Daniel B. You guys are awesome!','2019-10-23 06:43:40.713000','2019-10-23 06:43:40.713000',5,'Orfa Reyes','https://lh4.googleusercontent.com/-BKY2Jh0i7h0/AAAAAAAAAAI/AAAAAAAAAAA/1KqnP4k6t_s/c-rp-mo-br100/photo.jpg','17898197009688164559',5486),('AIe9_BG84YPnR8vhxeJfV_lAYVNizPZTgUUTNLnrXKeBCeOy_R2Veip2uc6EWtNN-QRPMtg5lqB5A7CxToCqqw6uL3jcHxqBepVEqUC-Z6nZAj3jlKeH_dU','Best place to go! I didn\'t even sit in the waiting area when they were already ready to see me! I will definitely consider bringing my family members here for whenever we have an emergency, thank you all at signature care 😊','2016-02-09 23:57:08.339000','2016-02-09 23:57:08.339000',5,'Yesenia Vega','https://lh6.googleusercontent.com/-zIHVTiRy-Pc/AAAAAAAAAAI/AAAAAAAAAAA/FKtQ3DO_dK4/c-rp-mo-br100/photo.jpg','17394740196501090048',5286),('AIe9_BG84YPnR8vhxeJfV_lAYVNizQo5LCoVYsoRXgIGUmkU7QPEwDbvh0LydDbuXszunHOYO-kna0UJmVUk2El6VATf_-TcoxjMH9OAr0eHTepjdDiHyV4','Staff was professional and friendly. The ER tech who did our COVID testing did a great job.','2020-07-28 06:20:03.190000','2020-07-28 06:20:03.190000',5,'Brandon Nunley','https://lh3.googleusercontent.com/-Xy7g5VyA7jU/AAAAAAAAAAI/AAAAAAAAAAA/FnSkyHefJNw/c-rp-mo-br100/photo.jpg','14748677429039074158',22534),('AIe9_BG84YPnR8vhxeJfV_lAYVNizssDZ5mQ1R8L077a2df_1QGnHiNLim05cdf8Ey0tswsNg2XnTQeI4y3aJEeGdDwws41O6re7QWJyIQCRi_uCoQXXzhw','I just want to thanks the staff, this is my second time I been to Signature Care ER and every time from the moment you walk in, they make you feel welcome, no waiting time and always go home feeling better. It makes me happy the fallow up call the fallowing day.','2017-04-13 19:10:21.163000','2017-04-13 19:10:21.163000',5,'Lalisha Vazquez','https://lh4.googleusercontent.com/-wV4e7ipJ2UQ/AAAAAAAAAAI/AAAAAAAAAAA/ZP03gXTAl2k/c-rp-mo-br100/photo.jpg','17394740196501090048',5074),('AIe9_BG84YPnR8vhxeJfV_lAYVNizWd9BaDhWyDQXe05VxtWgAO43QtPZ9nQzrwhU-mdkMYM0smBjAw3wqkbSn4N8Z3reX50qNgT-_Zcw1LuV25V6oILS78','It is really a caring place\nAll the folks works here are so nice and caring\nThe Dr Elsbecker is so nice and he knows how to treat you, More importantly he listens \nThanks','2020-03-06 02:47:00.251000','2020-03-06 02:47:00.251000',5,'Silkson Manickam','https://lh5.googleusercontent.com/-B-Ny20iQOJY/AAAAAAAAAAI/AAAAAAAAAAA/KjgWzZTrQs8/c-rp-mo-br100/photo.jpg','16891069708558046635',13915),('AIe9_BG84YPnR8vhxeJfV_lAYVNizxvyWXPpj_kf7T2hDgr7ifUIQALjFeF-ywTsvp2rAXA27AXY9RK-s73zhBc33xtExKuWGpyzMW8fhU6N_z3e8tNf7F4','Took my roommate here because she was feeling ill. We were treated very fast. Kendra,the front desk registration person, was very nice and took care of us immediately. I didn’t really interact with anyone else but my roommate enjoyed her experience.','2019-11-03 22:09:39.501000','2019-11-03 22:09:39.501000',4,'Kyle McGee','https://lh5.googleusercontent.com/-Q7N8ZmPJTOk/AAAAAAAAAAI/AAAAAAAAAAA/tCnuKi8I5go/c-rp-mo-br100/photo.jpg','16590124370714063921',3105),('AIe9_BGA1yc-H_IOvVJmixKk-b5H8Ea8AMZK_NcoYmDKCfbPENfdzX3EIdsPN4JwvL7nYLIM5ZMkPc84IbYNBjES2_94rFCeKQ','My experience today exceeded all of my expectations. Everyone from the front desk, to Jaime, to Nadia, and then Dr. Chowdhury gave me exceptional service. Given the circumstances, I would recommend their services to anyone seeking medical attention.','2020-08-13 14:28:19.833000','2020-08-13 14:28:19.833000',5,'thecrus8r','https://lh3.googleusercontent.com/a-/AOh14GgoV670B0Ju-nsLvTnxYCgRwvfi6ldH0pyDCWA=c0x00000000-cc-rp','14748677429039074158',23024),('AIe9_BGA1yc-H_IOvVJmixKk-b5HlTgQSzTTWqCP9ur_I7w9_SDI23KhZT6KpfHQVterLfzMxaKG0mfwIewL7MJkNyjReNWMNme-Rd1BNy5AOjNG_nzNTKk','Dr. Das was very helpful and really took time with helping me get well! Very recommended!','2020-08-24 03:48:00.684000','2020-08-24 03:48:00.684000',5,'Quinn Andrews','https://lh3.googleusercontent.com/a-/AOh14GhPL76zJ6dt_L5SnoYq3QNnEHhc7LwvN9i8kDRy=c0x00000000-cc-rp-ba3','14748677429039074158',NULL),('AIe9_BGA1yc-H_IOvVJmixKk-b5HQKNNFY0eQwyL3hRuaz9EsShAXRCTaKcdvNVBk53HNBSVHMN-x20mILOG4c4GGOUsI0M1S0kQwqAKkdUUmROlHNifndw','I brought my daughter here for a back injury and everyone was so great, attentive, and friendly. From Dr. Das making sure my daughter was ok with everything they were doing, to Jennifer our nurse was really awesome, protective and had great shoes, our X-ray tech Dion up from Houston helping making sure she was comfortable, to Anavel in registration that was very helpful and informative with our insurance. Everyone made sure both of us were comfortable and even offered snacks, water, and coffee. They really rocked it for us.','2020-03-09 02:06:28.790000','2020-03-09 02:06:28.790000',5,'Reagan Tennant','https://lh4.googleusercontent.com/-8jH8ew5Z8L8/AAAAAAAAAAI/AAAAAAAAAAA/BCRL9BrydMo/c-rp-mo-br100/photo.jpg','14748677429039074158',18850),('AIe9_BGA1yc-H_IOvVJmixKk-b5HSqhVfb9yJcCfi9JjzVfBD6hEoVI2DEhP_fcHZFztkkpFmrmM-vyCn40loZ6XcBvwDJmV_CcDCq7ulvb9K0HbgKmMjzU',NULL,'2020-01-27 02:25:35.828000','2020-01-27 02:25:35.828000',5,'Anah Khan','https://lh3.googleusercontent.com/-ibfDk1Szr8E/AAAAAAAAAAI/AAAAAAAAAAA/dpV8HriqRoU/c-rp-mo-br100/photo.jpg','3511292162159714121',14444),('AIe9_BGekwi02pW78Sb6PRYJ6nZs0KOXDfbx5DK513HkYitKthHrFPLu0P_VeVqT7ibi4GyfFuTIj5zmvqQGdRknpBX2174VCe5j-wE56yZQMR_nl_5QM0o','The staff at SignatureCare Emergency in the Memorial City location were the best in customer service and took care of my friend. Their hospitality and friendliness made us feel at home as if they know us. From the moment we checked in, we were greeted with care. And Dr. N. Patel was the most amazing doctor I\'ve ever met in an emergency room situation. He made my friend, who cracked his hand, feel safe and secure. He was also very patient with him. His competency as a doctor was also astounding and knowing that my friend was in pain, Dr. Patel made sure that he got a lot of relief from the pain, so that my friend could resume his daily tasks with much more ease. I now know where to go and refer friends and family in emergency situations!','2019-12-23 01:32:08.129000','2019-12-23 01:32:08.129000',5,'Geny Moreno','https://lh6.googleusercontent.com/-1IPQ7lzZJ9s/AAAAAAAAAAI/AAAAAAAAAAA/DPlGDet7Sh8/c-rp-mo-br100/photo.jpg','14904078213800803294',13650),('AIe9_BGekwi02pW78Sb6PRYJ6nZs2053vvLoG249UNBJIQqZvaKq4wBLpTguws1dK3PhLCotAXfIsAkO6KDnfmSa5MBcRftv0sJxFDm_q3CBp8xONvcHqLQ','Highly caring ...','2018-07-05 04:56:42.434000','2018-07-05 04:56:42.434000',5,'Ehsan Hafiz','https://lh4.googleusercontent.com/-iE3KcIFP13A/AAAAAAAAAAI/AAAAAAAAAAA/LAGVkgOez2o/c-rp-mo-br100/photo.jpg','3511292162159714121',7693),('AIe9_BGekwi02pW78Sb6PRYJ6nZs65n7Wh7EPq4iDBk7SRfvRk1cnQT8HHLKL0t3nyHPGLKKkkC-8rQIxCmc10MzxoARIxPST15djGmdYp7Fp3vyPyq-5Uc','Luisa was the best thank you!','2019-12-14 08:36:26.924000','2019-12-14 08:36:26.924000',5,'Jimena Astudillo','https://lh5.googleusercontent.com/-Fd9MH-IqtvA/AAAAAAAAAAI/AAAAAAAAAAA/mpDfP2NhJ-A/c-rp-mo-br100/photo.jpg','16389487648212004696',2544),('AIe9_BGekwi02pW78Sb6PRYJ6nZsAHTZeyd3yff_wT9V9EZfiYbQgxP8-IaGJy0IDJuaGZTDs1kVG4amgPzBiVdANmY5Z6RwtzpzJ_lOQ5tgCYap3F-TymE',NULL,'2019-07-22 23:16:39.919000','2019-07-22 23:16:39.919000',5,'cim contreras','https://lh4.googleusercontent.com/-5nHPHaLz4t8/AAAAAAAAAAI/AAAAAAAAAAA/mfhtS9T-Vb8/c-rp-mo-br100/photo.jpg','6521947413723274945',8185),('AIe9_BGekwi02pW78Sb6PRYJ6nZsBKbUFhIyRETlwDEjgsGGwuk1pAz72B83vK_JaC_jax6wtjYhzq7QWlfl1XsvMTtnnW5HZy8cWkSZmjiNf7S_Jgmfq6A','I spent 2 days at this facility and it was about the best experience you can have in a hospital. The service is fantastic, not a ton of patients so you receive individual care, quiet, nice rooms, comfy beds (for hospital beds), great food, just a pleasant all around experience.','2016-07-28 17:55:40.147000','2016-07-28 17:55:40.147000',5,'Eric Elsenbrook','https://lh4.googleusercontent.com/-Ow3BnhbALn4/AAAAAAAAAAI/AAAAAAAAAAA/g8DtalX0WyI/c-rp-mo-br100/photo.jpg','3511292162159714121',7958),('AIe9_BGekwi02pW78Sb6PRYJ6nZscB41IokuvdyTlCjKJ_2h2i0ex7I5q6J8VrQREcp35Ew00Kf7KiPEWnq_YEfmxw_Ar659RUnKxKL3X0UsaPEg_zcqV78','I came here for COVID testing and I want to say how impressed I am with this facility and staff. The wait was a little long, but that was expected.\nStaff was very friendly and kept us updated as we waited. During this time, I know things can get a bit hectic, but they did a great job.','2020-07-02 03:28:07.219000','2020-07-02 03:28:07.219000',5,'Christina M','https://lh5.googleusercontent.com/-8p2k6THgNVI/AAAAAAAAAAI/AAAAAAAAAAA/tXWE46pYYt8/c-rp-mo-br100/photo.jpg','14904078213800803294',21399),('AIe9_BGekwi02pW78Sb6PRYJ6nZse4jUzgFA8qWZdl90aBEO--UYLZY76JQyz9PMmWwPJBhFCzkGA65cQDp4Fo206aJXo_eJI-tRFPf1w-aj0VPbT9CTLC4','Very satisfied with everything and everyone. Fast, personal, and thorough.','2019-01-25 13:58:06.098000','2019-01-25 13:58:06.098000',5,'Amy Balzer','https://lh3.googleusercontent.com/-kp7Jm68dMbA/AAAAAAAAAAI/AAAAAAAAAAA/hhYeYWJLOiA/c-rp-mo-br100/photo.jpg','13486358490203335051',1085),('AIe9_BGekwi02pW78Sb6PRYJ6nZseCIk1hYim6qSFDlHf9yeEzhkvGyScKGyTW9vt2rHD1xc_taZg12TMtQP98wDGMiAB9ObABaz6ONFquUI4kQjOs4Jis0','Very nice doctors and staff. They took care of my daughter and answered all of our questions.','2018-07-21 22:24:06.728000','2018-07-21 22:24:06.728000',5,'AMANDA EDWARDS','https://lh6.googleusercontent.com/-B7PDp84RUiA/AAAAAAAAAAI/AAAAAAAAAAA/fxqBjeOoxzw/c-rp-mo-br100/photo.jpg','14567670160750071148',1587),('AIe9_BGekwi02pW78Sb6PRYJ6nZsEkVVzphcLdzgzhrvU9EG2f6o2FHHZpJMTvqg-ev5Qceo3kJAPtILDMSVRsNhFG2EOazMf6isfGpe5U0DFbRk6PGbgAs','Went to the ER tonight and it was by far the best ER experience I\'ve had. Tobie at the front desk made the check in process super easy and quick. The nurse Jennifer and Sherri the rad tech were really nice and made me feel really comfortable. I really liked Dr. Ashbrooks, he was hilarious! The whole team took such great care of me and even occupied my grand kids.','2019-05-31 04:21:51.501000','2019-05-31 04:21:51.501000',5,'Helen Buck','https://lh6.googleusercontent.com/-Bag3TUV93Qg/AAAAAAAAAAI/AAAAAAAAAAA/_icYXpGXfCI/c-rp-mo-br100/photo.jpg','3272657195432704501',6955),('AIe9_BGekwi02pW78Sb6PRYJ6nZsf-r_53gC22xcZCtWv88gItgNRFUjefOSjh0D4yq02nNaaoZ9TRdFtbGySZnAAX5GVVbKi_usMTxv8ye5JdVHNqV6TrM','I had a severe headache and I though I was going to die at 2:00 am in the morning. Thank goodness for their diligent staff and 24 hr service after I left the clinic i felt alive again. highly recommended for 24 hr emergency','2018-06-05 22:33:38.007000','2018-06-05 22:33:38.007000',5,'Ulysses Larisma','https://lh6.googleusercontent.com/-bdyzRRCtseU/AAAAAAAAAAI/AAAAAAAAAAA/16WEnzl6Ulg/c-rp-mo-br100/photo.jpg','17394740196501090048',4841),('AIe9_BGekwi02pW78Sb6PRYJ6nZsG-YFMF_nzWZQSs_qZZpx_FN1chc16HSlY4BeVttbzIWSErFE4iehH22rJPBysmlzliGrNowHLVAMQwyU8AKnvOsb7Co','I brought my mother to this facility for chest pains and the staff was quick and very attentive. They took her minutes before her appointment time. Chasity did her IV and was extremely careful. The nurse James and Dr.Lindsay were extremely informative and listened to all of my mothers concerns. I would highly recommend this location.','2019-03-12 01:39:13.662000','2019-03-12 01:39:13.662000',5,'Brittani Batts','https://lh5.googleusercontent.com/-hqMa84sV7Ak/AAAAAAAAAAI/AAAAAAAAAAA/JP5sGeeFJvE/c-rp-mo-br100/photo.jpg','14567670160750071148',1370),('AIe9_BGekwi02pW78Sb6PRYJ6nZsgfnPVezKVuxd3FH9d308ASrvNAISEKPWCgXuLH3HA1a6xkk4Y2SpQXlm65RzMzq4EK83IL7OUfpv7nkC696FJLfnxaE','Thank y’all so much for taking care of us during our visit! Skyler answered all of our questions with great empathy, Jennifer was very nice and gave quick service, and Brook made us laugh and feel very comfortable!','2019-07-20 05:54:01.792000','2019-07-20 05:54:01.792000',5,'Kristen Bennett','https://lh6.googleusercontent.com/-CEMsahkVldY/AAAAAAAAAAI/AAAAAAAAAAA/gHB-JTkQFHg/c-rp-mo-br100/photo.jpg','8626688543755174284',8426),('AIe9_BGekwi02pW78Sb6PRYJ6nZsir5aEfDcoOBJrMbqQWukTiAAroJIaIhfduqXGDRhAvPfYlTAptDFdRUWCEzLfy0tIsBiU_28F68rUF52P1s8vpy42ts','I have no complaints at all!!! Best place in case of an emergency to go to. Highly recommend anyone to come here. Thanks for all the help with my husband!!','2014-07-01 18:20:56.700000','2014-07-01 18:20:56.700000',5,'Johana Jereda','https://lh4.googleusercontent.com/-2aU81v84U00/AAAAAAAAAAI/AAAAAAAAAAA/3OaQn-sUmXE/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8941),('AIe9_BGekwi02pW78Sb6PRYJ6nZsklGIGij-WFYtWrRWxigrLspC6U8rKTxbfIBhZ5eISD5-WKpG58_5un8v5_NL1VDS_sLjaAggbHyxR1CeVjsub6Oc04k',NULL,'2020-05-29 23:42:36.417000','2020-05-29 23:42:36.417000',5,'Trenae Sullivan','https://lh5.googleusercontent.com/-LXGb6rsQafQ/AAAAAAAAAAI/AAAAAAAAAAA/meGU0S0dBK4/c-rp-mo-br100/photo.jpg','8679688254631342173',22256),('AIe9_BGekwi02pW78Sb6PRYJ6nZsL2nSbHQmKs8a6FbxDda4KFySciAtGv3ZHG6zsAVsoxgbAApOho8KE67lc9j5iz5su1iRaewIyNeRFLRZX5o4hjtjkOg','Our experience at Signature Care was one of the best experiences we\'ve ever had in an ER/hospital. The receptionist, Aileen, was so kind and welcoming and really made the registration process quick and easy and had us in a room within minutes of our arrival. Less than 5 minutes later, we already had vitals and medical history done and Dr. Rose was in the room. I can\'t speak highly enough about the staff at Signature Care. The manager, Adam Pinion, the RN, Cristina, and Dr. Rose, all took such great care of my husband. If we ever have any after hours urgent/emergency needs in the future, we will definitely be returning to Signature Care.','2019-05-17 02:31:36.627000','2019-05-17 02:31:36.627000',5,'Melissa McClure','https://lh6.googleusercontent.com/-10EiGTWE8ao/AAAAAAAAAAI/AAAAAAAAAAA/Xt_M8jVf0IY/c-rp-mo-br100/photo.jpg','16891069708558046635',4278),('AIe9_BGekwi02pW78Sb6PRYJ6nZsLJ-GA149QnvaN2LV4qzEtfd_DhPhWIUzsphGdkNEnLawOl-gFXqjYQPNYa0vASgNJzCyFJuacMLfLktMCaVY57njy8c',NULL,'2017-05-17 00:03:56.150000','2017-05-17 00:03:56.150000',5,'Samin Agha','https://lh3.googleusercontent.com/-2LO-83Wt5t0/AAAAAAAAAAI/AAAAAAAAAAA/MQGBe_Uq01A/c-rp-mo-br100/photo.jpg','17394740196501090048',5053),('AIe9_BGekwi02pW78Sb6PRYJ6nZslUw0LQ5uN9VsN_I0j4mXbWbMtAuTtJfuPFqSFTFlEDnywD5-pEWwlmgHY2w0VkFWJnKGORUYILuRzMRJU5ROozKBYA0','The staff was awesome and very patient friendly. They took great care of me and was very tentative. Dr. Hemerka, Cody and JD was awesome. Love the staff personalities','2020-08-03 22:14:28.965000','2020-08-03 22:14:28.965000',5,'Yolonda Rector','https://lh5.googleusercontent.com/-S15Fh42hNQI/AAAAAAAAAAI/AAAAAAAAAAA/yJ936fBpFMI/c-rp-mo-br100/photo.jpg','2077061009497551125',22738),('AIe9_BGekwi02pW78Sb6PRYJ6nZsMJlJtX7bHVHa0ee_8B4TG6TJBjDjIerfkpsFVNsJQ_qIvQ-vGmhoFNfJQLENPFqi4Fl0H3pEW6nedE294L2a_acLo20','Olivia Paredes is the most amazing individual I have ever had the pleasure of dealing with. The service I received was next to none. She also gives great advise. Following her instructions and feel healthier than ever!','2019-01-29 17:46:19.041000','2019-01-29 17:46:19.041000',5,'ryanchavez1212','https://lh4.googleusercontent.com/-HcewoUFPHOE/AAAAAAAAAAI/AAAAAAAAAAA/WDXNec2b7pw/c-rp-mo-br100/photo.jpg','3511292162159714121',7444),('AIe9_BGekwi02pW78Sb6PRYJ6nZsPQyE2e6dQhxp7D-TECZk3eEXBZHgldljFiepJ_MrLCaepboZvmxGV_CGny076WUvX8Sx7dQuA2UTQhUct8_lLaTvWLU','Little wait time, very friendly staff, and quality service!','2016-11-13 23:55:17.467000','2016-11-13 23:55:17.467000',5,'Ana M.','https://lh5.googleusercontent.com/-KsxUcSYocgY/AAAAAAAAAAI/AAAAAAAAAAA/p7DF3YXu4f4/c-rp-mo-br100/photo.jpg','17394740196501090048',5174),('AIe9_BGekwi02pW78Sb6PRYJ6nZsQiF6sHExVPZzazthVgf7O_ZgXmc4At6nQ1BEwqaSDLWmLFMMZmXcpUWyuimQTRnPn4gKTDL99P1hGItt0W260iEQ9tM','Had to bring my sister for a rapid COVID test. The process was simple and easy! Cody, Sam, Brenda, and Nydia helped make this visit as seamless and quick as possible! Great team.','2020-07-26 19:24:42.023000','2020-07-26 19:24:42.023000',5,'Megan Mielo','https://lh5.googleusercontent.com/-uEBmWX43HPM/AAAAAAAAAAI/AAAAAAAAAAA/hfKzu3Avf1A/c-rp-mo-br100/photo.jpg','2077061009497551125',22826),('AIe9_BGekwi02pW78Sb6PRYJ6nZsrPKVjddyxTYddsv_7-bAMBzfzQ_vAfmHbxxCVHN9dPOHXlSQfr753B2bsXBYOfaJiqMSXpWSm-2nhgGml8r_XKp7ra0',NULL,'2020-01-07 08:32:31.694000','2020-01-07 08:32:31.694000',5,'Stacy Owens','https://lh3.googleusercontent.com/-EzHsX-F2ZEE/AAAAAAAAAAI/AAAAAAAAAAA/Fz8Ej7izGzI/c-rp-mo-br100/photo.jpg','17394740196501090048',14059),('AIe9_BGekwi02pW78Sb6PRYJ6nZsRwUMTTUDdp9rdCv3ldmFBQM9MbxGy4DYFwP0Bt_2lJxGFaWCD0IAiuAjvyXuqWWMbHewXIxKeQsndWaQQfDngmR87pY','Facility was clean and well kept. All of the staff was helpful and took time to walk through all of the options and kept us up to date with the process. If I had to complain, I didn’t receive a warm blanket when I left! Would definitely recommend.','2018-06-04 19:10:34.891000','2018-06-04 19:10:34.891000',5,'Elizabeth Longstaff','https://lh6.googleusercontent.com/-DFNwjLGtUQU/AAAAAAAAAAI/AAAAAAAAAAA/j_FgDmG6Nq8/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1613),('AIe9_BGekwi02pW78Sb6PRYJ6nZst3oqCrkLPyKSH8h14QIvnzvFMaOXRRmwv4sa9YpJvXWBLa471Mvk0iUSJOBCOFXvnZffADUbt_bI5D-ZoF6NyDv8ze4','The staff was polite, friendly and on time with everything.','2018-09-18 12:45:46.164000','2018-09-18 12:45:46.164000',5,'DownSouthRep Sunnyside','https://lh6.googleusercontent.com/-XhRcWwW5ZOw/AAAAAAAAAAI/AAAAAAAAAAA/ROI7Y_WFD0E/c-rp-mo-br100/photo.jpg','17394740196501090048',4795),('AIe9_BGekwi02pW78Sb6PRYJ6nZsYkulUBXYR4offFi1GPrdETULV45teAbIXkoK7N8yXkhBD9cLrFRZNHvdZsXN-WicZ2tqXxIIDaQW6wPGg-omxkZg_R8','The receptionist, Sita & my nurse, Linda V. were the sweetest & took great care of me. Very warm environment. Definitely recommend.','2019-09-17 19:23:19.477000','2019-09-17 19:23:19.477000',5,'abby moya','https://lh4.googleusercontent.com/-AVzZfqFq1MQ/AAAAAAAAAAI/AAAAAAAAAAA/4-pSkfhDJD4/c-rp-mo-br100/photo.jpg','13486358490203335051',824),('AIe9_BGekwi02pW78Sb6PRYJ6nZsYnDboNK4DwAJwr_0z2_z3EIDxo-dr4p8d3LHZYWpwsnKBeuDURMCSh1M3VylED9iw_wkyybCJ5RqfUTG0UzPxdqUnTg','Alvean Marcus Patricia was really helpful, most definitely coming back when ever I get injured again','2020-02-06 23:09:53.716000','2020-02-06 23:09:53.716000',5,'Diamond Turner','https://lh6.googleusercontent.com/-Lty6fe3ccNs/AAAAAAAAAAI/AAAAAAAAAAA/dZrBVrl3Na0/c-rp-mo-br100/photo.jpg','16389487648212004696',22613),('AIe9_BGekwi02pW78Sb6PRYJ6nZsZHXau6xozjGiMFA9gurBPRVaWh_YIDQqHXjjvO5jORDKkZdELblL_JFSrr8v7rZRfvJ5xA5_VlUOWtGndUZ2qq59qZ8','Great place, friendly staff we were in and out in less than 30 minutes.','2019-01-07 16:49:49.780000','2019-01-07 16:49:49.780000',5,'Fatima Salazar','https://lh5.googleusercontent.com/-W0TYmL582zc/AAAAAAAAAAI/AAAAAAAAAAA/FlTyxa9J08A/c-rp-mo-br100/photo.jpg','3511292162159714121',7509),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_CW06bKKF-_iriiR3wz5UPHGvxW8A4cqfXFpBVtLFH7DQ7uK9BuSrdi833nB-6IDJTnFq-XTxh7K8qBl1-KnwRIub4U','Great experience in and out quick','2018-11-24 03:59:07.261000','2018-11-24 03:59:07.261000',5,'THE TEXAS GAME JUNKIE','https://lh5.googleusercontent.com/-KrcMe6RkgqI/AAAAAAAAAAI/AAAAAAAAAAA/sttlfrwyAmA/c-rp-mo-br100/photo.jpg','14567670160750071148',1457),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_J-IUSP9NlUJ6gcJ2lSvprpo5Hym-1mrJdbjyxyG9OxWRIi4UiEebCPxH9qijqVPbM6O6K0-GPjyDNm0pPiq8rFl9Ro','The service was great , and the nurses and doctors were great . And thank you Tory , for helping me out today from the time I arrived til the time I was leaving ! ','2017-02-22 01:43:38.531000','2017-02-22 01:43:38.531000',5,'Breana Sargent','https://lh4.googleusercontent.com/-fzs_tdkZSMo/AAAAAAAAAAI/AAAAAAAAAAA/yFa9z1Wh4Q4/c-rp-mo-br100/photo.jpg','3511292162159714121',7871),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_Mqf19aPXcDbArlIzd7i70vm4oas0_fLfU9sj5YQS4KWw9WrHSlNMx-F7yB8ZLNZ8IEc6jult85-XKZCqZTNEM0FtdM','Awesome staff and people. Great location for my family. Teresa and Casey have been amazing at the summer fun cook out event. Keep up the great work and serving the community.','2019-07-27 23:51:20.120000','2019-07-27 23:51:20.120000',5,'Angel Womack','https://lh6.googleusercontent.com/-jLpfQkfgmAY/AAAAAAAAAAI/AAAAAAAAAAA/GH_D_u05LvM/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8176),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_NUc2rZ8oKJuPPLfZtoEtEGyuS3G-eb3HsHMrwSvajQeG1IbtlRksVGfFmwcSLXWqHpeXM84DqZhidr2dm6nrXrWlg4','Had great experience and was greeted with smiles from receptionist, Ashli Burton and the stay there was pleasant with attention from everyone immediately.','2019-02-19 18:10:22.604000','2019-02-19 18:10:22.604000',5,'Laura','https://lh6.googleusercontent.com/-KkO2aYNzchM/AAAAAAAAAAI/AAAAAAAAAAA/TQ3UvfsN_No/c-rp-mo-br100/photo.jpg','8626688543755174284',8553),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_o-XGEx5wYvkBtAJR4_pm9yuEimQhbsUw2T6ypqfpgAwesZa6NU6JewfaLa5e4VrG-YBt-1sTh6ulTgmv8F8M49r5VY','Very caring','2018-09-18 05:57:21.517000','2018-09-18 05:57:21.517000',5,'David Flores','https://lh4.googleusercontent.com/-2S2SbmQrwSs/AAAAAAAAAAI/AAAAAAAAAAA/F6oxzYUMzko/c-rp-mo-br100/photo.jpg','14904078213800803294',2212),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_OFrAEiFR9TtSjm4opH0KllLjhGhiHzpOI1ZaqBNNr8KHja85kzfsJ4azBzC6bHY0rjSrW4CsjXyQcuji5kxRIToZ64',NULL,'2020-03-17 00:58:01.645000','2020-03-17 00:58:01.645000',5,'elizabeth martinez','https://lh5.googleusercontent.com/-BgS57pf94ww/AAAAAAAAAAI/AAAAAAAAAAA/CGPALOVToAY/c-rp-mo-br100/photo.jpg','14748677429039074158',20968),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_Tik34W_DlvAMYUYzkKjTFGWNdvybQ2RZYvAp1TtBDlRUmRqMkU4YMUOAs2KXJ9Gal2YdqzDETUHTaBd09p0Hxm5DgE','SignnatureCare Emergency Center in College station made me feel very comfortable and took great care of me. Their service was quick and accountable. I would recommend them to anyone in the area.','2017-09-11 16:26:22.277000','2017-09-11 16:26:22.277000',5,'Emma Mathieu','https://lh6.googleusercontent.com/-7b-OSz2QEpY/AAAAAAAAAAI/AAAAAAAAAAA/sX5bl1GYcpE/c-rp-mo-br100/photo.jpg','16590124370714063921',3935),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_v0Q0KbBbwUy96gAzagUkmo2FQZ4eNgGIt0lZas4IxYJ835VRBQgBRxoTAn75PUc46A4yyyas1zVqlKx1s4khITNQv4','This is the first time ever in my life that I was seen at a ER this fast. The wait time limit was about 5 mins. I highly recommend anyone who is looking for a urgent care to visit this place. Just want to thank the nurses and Dr. Yusuf for the prompt care.','2018-12-20 22:57:42.482000','2018-12-20 22:57:42.482000',5,'Nowrin Amin','https://lh6.googleusercontent.com/-OD3aEpDKiJk/AAAAAAAAAAI/AAAAAAAAAAA/xKFr6LkjSig/c-rp-mo-br100/photo.jpg','3511292162159714121',7542),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_Wj0YA8pGY0TW-l_4jDmspW8FGgqp1FboOBrMlU7zPlkvsUxtrmcg98RXx2Or-niNHWdkI9o_bqRUqw_HIpbyblBf80','The website says they do walk-in COVID testing if you are sick. That is a lie. When I called they said they had walk in testing. Again. A lie. I called and they had me put my sons name on a list. Then I dragged my sick son in-law up there and got turned away. They had a security guard not letting anyone in. I called again and was told they do walk ins. But then when I explained my sick son was there and wouldn’t be let in I was told an appointment needed to be made. Not sure what part of walk in was not clear. Then I was told they had no testing available and they could put his name on a list for if an appointment came up or there was a cancellation. So the website is a total fabrication and lie, and the instructions by staff is misleading, unhelpful and unclear. Get your act together. Truly a disappointment.','2020-07-04 18:07:26.925000','2020-07-04 18:07:26.925000',1,'Tiffany Kelley','https://lh3.googleusercontent.com/a-/AOh14Gg3Hs9dPXm-fNKXsP2b3cr9OeUW3Ez40SV4zqYCMA=c0x00000000-cc-rp-ba3','17898197009688164559',21435),('AIe9_BGErQpX2pRNZrXBy5NOsH0e_Z_yknjnf-twzQnrh_bbozpIGYrSOl1L3TG23roDWoyIMac2iJ7DDr9DJZIoiF7LR7biI-EJSxw_pKhyk51HHZ7Hvmo',NULL,'2019-01-27 03:03:42.093000','2019-01-27 03:03:42.093000',5,'ljcbird17','https://lh3.googleusercontent.com/-vJYwjzOKnLc/AAAAAAAAAAI/AAAAAAAAAAA/zsigDM6KuPs/c-rp-mo-br100/photo.jpg','8626688543755174284',8580),('AIe9_BGErQpX2pRNZrXBy5NOsH0e-Eq1lT1R1I2QzemhuOG3TTCexpzeSjA1dWw2FrBN4JjxoUdzyz-PKXKVgW4utuTcmyEeErt_ESIVs5bqkhAuiWYfCnc',NULL,'2018-06-03 18:00:52.757000','2018-06-03 18:00:52.757000',5,'Emily Sewell','https://lh6.googleusercontent.com/-K54mEGOOh50/AAAAAAAAAAI/AAAAAAAAAAA/mTP797i8VW4/c-rp-mo-br100/photo.jpg','16590124370714063921',3822),('AIe9_BGErQpX2pRNZrXBy5NOsH0e-kKzDEcjfDI0fjYbdrm0D_FnvzD-nDMeAXvfFTzFXHg0FiRdfgyeNMfqr2MLv4jucdNOL2_0-LbhQBPfcW7ZyBXuaoU','I had a great experience there, even though I was injured badly. Dr Tran, Matthew, and Nurse Brenda provided excellence service. They even called the day after to see how I was faring from my injury.','2018-06-01 07:27:50.072000','2018-06-01 07:27:50.072000',5,'Tabotha Menifee','https://lh5.googleusercontent.com/-Xrq90zT9FOk/AAAAAAAAAAI/AAAAAAAAAAA/Du-yF1v0zcg/c-rp-mo-br100/photo.jpg','8918455867446117794',9266),('AIe9_BGErQpX2pRNZrXBy5NOsH0e-OLWW12lg18EcDR_LSz_NphhZWNuqQVr7olRDswrS_5O1VtTVyu5ryNTHQVbsbsJs81h0t6alwe1EUcfLQRly4LEGYU','Dr. Appiah\nAlvean A- Nurse\nMarcus B- Radiology \nJocelyn A-Registration \nBrian W- ER Tech\nThey are an amazing staff and I would recommend them at all times. They are quick, efficient and very knowledgeable ☺️','2019-10-09 15:14:11.602000','2019-10-09 15:14:11.602000',5,'plu ll','https://lh5.googleusercontent.com/-JZPFAf77rqM/AAAAAAAAAAI/AAAAAAAAAAA/2QvNc7HG3yU/c-rp-mo-br100/photo.jpg','16389487648212004696',2844),('AIe9_BGErQpX2pRNZrXBy5NOsH0e-pG0u0T7AoYxnNt0fSB9jZbBrB92oVrlRZaiRJlLA5FuUMMZm2AMMCSSaPg-wT3VhAhbWpVbJGtx6JOaJ1i7pMEhrBU','This is a place i would recomend to anyone needing care. Everyone was fast and peofessional. Thanks to Tanishia and Sarah.','2019-11-01 04:21:17.083000','2019-11-01 04:21:17.083000',5,'Jacob MG','https://lh3.googleusercontent.com/-Y6ecGTL5Dr8/AAAAAAAAAAI/AAAAAAAAAAA/hiksl8CtSYM/c-rp-mo-br100/photo.jpg','17898197009688164559',5468),('AIe9_BGErQpX2pRNZrXBy5NOsH0e-w7KfYAv29sGhuh5G4nprEP091plIbLmwhMV8AXhoChFJi9ZfEoHz_5bbudehOzoGLmK9JLyYKr0cCcFkDr-4h3XzaU','Very great staff \nDr.smith\nNikki r \nJessica m\nMelissa e\nThey were very good to me took care of me very well. \nI absolutely had a speedy recovery!!!!!','2019-05-22 00:15:33.873000','2019-05-22 00:15:33.873000',5,'Ronniesia Mcdonald','https://lh5.googleusercontent.com/-vtqz_Ey0zj4/AAAAAAAAAAI/AAAAAAAAAAA/ucfSphpCX88/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0e-X39PbdFP0bpp7QnzfZdVNGg-QOxumpon4Lct2svSKKArN3sSOd0nhhRH00wpH8Iq8m2l_hJq5yawiklsqznwDtSnjI','The staff was very helpful and fast. Thanks to Tim Andrew David Lisa Derrick and Alicia.','2019-06-29 00:47:35.795000','2019-06-29 00:47:35.795000',5,'Matt Kossman','https://lh6.googleusercontent.com/-3-WR9M2KMpA/AAAAAAAAAAI/AAAAAAAAAAA/7KEXGe7Astk/c-rp-mo-br100/photo.jpg','13486358490203335051',914),('AIe9_BGErQpX2pRNZrXBy5NOsH0e-X7HqmTMQ1fpyHazMIi0t9-zp9t17ByZYtNw5xv1T_4rTU5DBWNqHVGviVFSWxFBAs4vuqKS6McEkHDNzQrwHG_OQh8','Lucas was really helpful and very efficient. Not a long wait period at all. Quick and clean','2020-02-27 22:32:27.980000','2020-02-27 22:32:27.980000',5,'james plummer','https://lh5.googleusercontent.com/-3t_7ZyNfWj4/AAAAAAAAAAI/AAAAAAAAAAA/4bGvNnjge1k/c-rp-mo-br100/photo.jpg','3272657195432704501',14323),('AIe9_BGErQpX2pRNZrXBy5NOsH0e-yVMDUkzWfectruDpyrPTmxcYzKGey6TvWooiMDVKdtrIEyXEHSh9J3BRKLnKgiChsC0MHkpKblgwmQvZRxwIY1IVqY','Fast and courteous staff. All the way from the Receptionist (Dyveliz) to the nurse and doctor.','2019-09-29 02:37:06.941000','2019-09-29 02:37:06.941000',5,'RoslandHennigan','https://lh4.googleusercontent.com/-s6us4V0bk3E/AAAAAAAAAAI/AAAAAAAAAAA/A-TBJJRAZuM/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3168),('AIe9_BGErQpX2pRNZrXBy5NOsH0e00uuEB2TFTNHtup61W9tWLhlR8-D7uyboXq7iUQ59ytxxiVgSzBwidfo40Zds4Zxoksyq8d_ahcpiTtsRu4g0U5VCEo','I was in and out really fast, staff was very helpful, and the lobby and rooms were spotless','2020-07-27 19:18:57.627000','2020-07-27 19:18:57.627000',5,'Jonathan Flores','https://lh5.googleusercontent.com/-BqTo4hqDVY0/AAAAAAAAAAI/AAAAAAAAAZ0/AMZuucnIvMXj8dVYnyTeTQZ5xe0GYDT_Ig/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22066),('AIe9_BGErQpX2pRNZrXBy5NOsH0e03CYnyeDM9YKg0uJPcydRDboo12XCCtSrPsFCvmuhuCOkaroeLsiL1E_tkNu61_2iDBhc3zB3NX9Ohwpt1LPdnAZvkc','I visited this emergency center a couple of weeks ago for a non life threatening allergic reaction. I went here because it was close to my house and the only urgent care center that was open at 8 am on a Saturday. The receptionist was extremely attentive to my needs and I was seen immediately. The facility is very clean and innovative and the support staff, as well as the physician,was kind and friendly. I was in and out in no time and off to work. If you live close by or are in the area and need an emergency center I would highly recommend going to Signature Care!','2016-11-12 07:11:28.324000','2016-11-12 07:11:28.324000',5,'Lauren Henderson','https://lh3.googleusercontent.com/-DlowA-suEE4/AAAAAAAAAAI/AAAAAAAAAAA/5Aj2X8Cdvbw/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7924),('AIe9_BGErQpX2pRNZrXBy5NOsH0e0dopD6QGRQXQm-38P5wMzERjF0eCrVOSgYyJU8cBVIBmcnKHsmz-Xf3d7ZaJHmv6GfFhWYeoKP_HclWP8SwgnE_zl2U',NULL,'2018-11-08 17:35:44.867000','2018-11-08 17:35:44.867000',1,'ABEL HERNANDEZ','https://lh5.googleusercontent.com/-2Zfg8LISkLk/AAAAAAAAAAI/AAAAAAAAAAA/w7T-cVNGPXI/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',593),('AIe9_BGErQpX2pRNZrXBy5NOsH0e0FOaM8JiayIFYGJR3SvCwFwTNhw72fE2Ne0CxloTFUMn12HbAcbNGlviZPF8eOUyVmNZAfbO2-PjnLmgZfHQO4-LEOU','Cody was great!','2020-07-29 21:47:02.361000','2020-07-29 21:47:02.361000',5,'Rebecca Hobdy','https://lh5.googleusercontent.com/-Flg09sVyGQc/AAAAAAAAAAI/AAAAAAAAAAA/Nb37PMCWTfE/c-rp-mo-br100/photo.jpg','2077061009497551125',22961),('AIe9_BGErQpX2pRNZrXBy5NOsH0e0j85QxJHktRtxHxzH56FdnGz0RrxLS0EC0-pSOHRPBfwe3cinJzVqAgBf_5yVlc6TjEONZYybFUvPciGyC8UhTjlx-w','I had a great experience everyone was friendly and helpful','2020-07-24 23:20:58.805000','2020-07-24 23:20:58.805000',5,'Svarthofdihynd Martinez','https://lh3.googleusercontent.com/a-/AOh14GhSRUv9uOjm49F2SlGyWqiFCWFmV4NbHvnd5dumJw=c0x00000000-cc-rp','8918455867446117794',22292),('AIe9_BGErQpX2pRNZrXBy5NOsH0e0oVjVSxS-_5H8khCplDIv9sodXZz19TDnlHcHuq9vYFHDJNeRcxj9C1NwXal4zbBbu0y9JvpDhhkDNLcmTzi6FY8HdY','Kendra was great when we got to the ER. She was able to get us in super quick and they were super nice and understanding! I would recommend coming here!','2020-03-08 01:32:49.531000','2020-03-08 01:32:49.531000',5,'Olivia Cohn','https://lh4.googleusercontent.com/-2kU1akOyMgE/AAAAAAAAAAI/AAAAAAAAAAA/QXqzQxQ6YEQ/c-rp-mo-br100/photo.jpg','16590124370714063921',21032),('AIe9_BGErQpX2pRNZrXBy5NOsH0e0sWjNUXQITZJ6BYrz4hcWvEnpEow_odt3kppyMk7AlsCRwwtv7YEv0T6k50xciR0ban3-4NmB9Qhb4COcLWA4a_IPec',NULL,'2018-11-08 17:37:22.285000','2018-11-08 17:37:22.285000',1,'ABEL HERNANDEZ','https://lh5.googleusercontent.com/-2Zfg8LISkLk/AAAAAAAAAAI/AAAAAAAAAAA/w7T-cVNGPXI/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2198),('AIe9_BGErQpX2pRNZrXBy5NOsH0e0vhZdPrKp5jn18FgyQmV-lixv4zW2advzZAw_llGARMJbdQyfC2Sl5DyJqlCIphRuF7uLplxrQRAJywtP6yCJPPO0Vw','Everyone at Signature Care Emergency was kind, friendly, and very helpful Gabe, Stephanie, Rebecca V, Dyveliz, Dr. Frausto, and Dr. Kimball were so nice and sweet they made my visit there very pleasant.','2020-02-28 03:31:29.427000','2020-02-28 03:31:29.427000',5,'Vanessa Johnson','https://lh6.googleusercontent.com/-uK1CE-zlP5c/AAAAAAAAAAI/AAAAAAAAAAA/fHSkbXp1hqM/c-rp-mo-br100/photo.jpg','16590124370714063921',13819),('AIe9_BGErQpX2pRNZrXBy5NOsH0e1_IK6wgWp4nzKBWjRuGnuuq2u3NAFBW6rfi-ZvxzYI5CuOv5poxOva02K4AdTQ4X5OXmRySwzB03qwxoA5FtUHb6HdI','I love this staff here. They make you feel so comfortable everytime we come. We had RN Gabe and RN Anthony. They were great. Thank you for taking care of my son and husband for the last year.','2019-07-02 01:44:53.057000','2019-07-02 01:44:53.057000',5,'Chanika Moses','https://lh4.googleusercontent.com/-HX8GrLh6dfk/AAAAAAAAAAI/AAAAAAAAAAA/8Kj1Lucj5rs/c-rp-mo-br100/photo.jpg','16590124370714063921',3325),('AIe9_BGErQpX2pRNZrXBy5NOsH0e1KPEGxF6m5zrQF3qsKXwb5A9oEGmuZ2wlAdB3z96iRinNer3Een2c3mhdMk5eH-YiyCzDQzmp_64dYnZyJTQwiVGLiQ','My second visit here and, like the first, a very good experience! There’s no wait and everyone is very kind and helpful. On both visits I have been seen immediately. Second visit was with my 17-month old. I strongly recommend SignatureCare','2020-02-19 12:25:30.610000','2020-02-19 12:25:30.610000',5,'Cecilie Beyer','https://lh6.googleusercontent.com/-agx6YBnCL5w/AAAAAAAAAAI/AAAAAAAAAAA/kEXi5PITLoM/c-rp-mo-br100/photo.jpg','14567670160750071148',13518),('AIe9_BGErQpX2pRNZrXBy5NOsH0e1sRiF_jgkyYhT_3Z1FNVCAodNrDCWXsc2EB57FuOAHFHgjfeJQFpZCbKLeM8fQ3VzhwFakor-DyGLZeOagLsYSg7ddw','Amazing care and service, from the front desk to the doctor. This was my third visit here-- first with my grandson, then my son, & this time with my husband. Each time has been excellent!','2020-03-09 11:09:41.034000','2020-03-09 11:09:41.034000',5,'Teresa Brandt','https://lh6.googleusercontent.com/-9HjPyFrrGNU/AAAAAAAAAAI/AAAAAAAAAAA/BEj4H3er1bE/c-rp-mo-br100/photo.jpg','13486358490203335051',20929),('AIe9_BGErQpX2pRNZrXBy5NOsH0e2d_nAfFKl9Jwx71Xd2WfXlDJuP6CtiPB9kMmOGf8FZTzZvTPIc_9BgNi1HmeJvjahFu1iSDOnbLWAAygKN2T7XKHDEg','Thank you for an outstanding service!','2017-02-24 18:50:24.470000','2017-02-24 18:50:24.470000',5,'Marina Kuznetcova','https://lh5.googleusercontent.com/-tjnfrNI5L_4/AAAAAAAAAAI/AAAAAAAAAAA/zbWYf0MfIRM/c-rp-mo-br100/photo.jpg','3511292162159714121',7867),('AIe9_BGErQpX2pRNZrXBy5NOsH0e2nQj-y3z9dG2k5vw-L5v6ad8a6E1WbzeYTNuaCKMBBoChnB9VTVWCEQBwX6ygc-hIyv1QisFDGvfY5NOxG_UIKRBppw',NULL,'2020-07-19 15:56:49.585000','2020-07-19 15:56:49.585000',5,'Stephanie Mqodxdqyers','https://lh5.googleusercontent.com/-KC-Yo8sU-M8/AAAAAAAAAAI/AAAAAAAAAAA/-QRf1r692z8/c-rp-mo-br100/photo.jpg','14748677429039074158',21714),('AIe9_BGErQpX2pRNZrXBy5NOsH0e2pqE03I7pF3tALiYIRCip1vuN0z6qQQZRfnkHr3ik6HxdSioOns8iHosGQ0Zv337ZbOoT3gGVbJLdXlvUCes001nKDc','Most definitely recommend coming here for any sort of testing. They have you in and out so quickly. Cody Marquitta was able to help me with my questions. Great place over all!!','2020-08-17 19:15:53.812000','2020-08-17 19:15:53.812000',5,'Devyn Payne','https://lh5.googleusercontent.com/-_HlVufmK1xg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckq1bNS_3FT6BjYtdUYyKKmolMOaA/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0e2s8THT8H5g8kVTwMp3VUgoQPNDOW2wwZzFroB1MWJnbP3xxKehCoOs4z-mOvjlfJBziW4Wob8g4BsCyRMJdPalon6mE','Awesome overall experience!','2019-09-30 20:05:07.160000','2019-09-30 20:05:07.160000',5,'Peyton Taska-Genzer','https://lh5.googleusercontent.com/-_xfU36OhB3w/AAAAAAAAAAI/AAAAAAAAAAA/V6QtNDmfYlk/c-rp-mo-br100/photo.jpg','16590124370714063921',3161),('AIe9_BGErQpX2pRNZrXBy5NOsH0e2TvD0TO9uM8YzZJx-6BIXZ3nOSDBlfW9-BcczjU8xzKSiMpfxoMxapypQbkknV9F-SyNIWZf4U3DhkpE1LXJpQvnQZU','Great Excellent service!!! Great Staff!! Got welcomed in and very fast registration by Ms.Lisa. My Nurse Savanna Was Awesome. Got well taken care of by Radiology Tec Jaime Dr Plante And Er Tech Corey!! Great great team! Recomend 100% to come to signiture caare Emergency Center','2019-06-19 17:27:44.648000','2019-06-19 17:27:44.648000',5,'Chita LoveKillsSlowly','https://lh5.googleusercontent.com/-gmvuwRp9H1U/AAAAAAAAAAI/AAAAAAAAAAA/aXpd_2adZP0/c-rp-mo-br100/photo.jpg','13486358490203335051',949),('AIe9_BGErQpX2pRNZrXBy5NOsH0e2XnI4I8bIlfk44RS72OmCviwttw3tdClpa36J1oUshiUCgGX54xvzEm7xrU63CGW82nnoLMb6sI0Ld_2NWHYVglTLhU','The staff was great! Joycelyn nikaela was great at the front desk it was very fast and friendly service!!!','2020-01-18 23:03:36.745000','2020-01-18 23:03:36.745000',5,'Iesha Kkay','https://lh4.googleusercontent.com/-jx2uLBRsh2w/AAAAAAAAAAI/AAAAAAAAAAA/xg77NGcCy9U/c-rp-mo-br100/photo.jpg','16389487648212004696',10044),('AIe9_BGErQpX2pRNZrXBy5NOsH0e32E6QXh8ktpu7YwmGiQJwcDfJ2t_2NQRCipmVwcUwnos6zkbFQB8f_eNQ15WviStGn1xKq4XqOKT4GNPGD447ZUhOLk','Came for rapid Covid testing per referral from Dr. Braun. Waited in line, name called, quick procedure. Waited in my car for results, then on my way. Facility had security on site for any concerns or redirection. Overall, easy and great experience.','2020-06-26 06:09:45.806000','2020-06-26 06:09:45.806000',5,'Leslie McLea','https://lh5.googleusercontent.com/-CUNxIUi_q4o/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmDy6UuKEehK9R7HZR6PqXu14U7mA/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21264),('AIe9_BGErQpX2pRNZrXBy5NOsH0e35a33cbgPNajXaaZMWgxTSiYaZKuYAFmZ9sJ15nejh93T9D68ce2-l00LhxAPwy7KgI_mU1l5mrTsfoUPi9z3hbKiVQ','Great care! Thank you Dr. Golla, Keera, Joy and Fannie!','2020-01-15 12:52:28.431000','2020-01-15 12:52:28.431000',5,'Sandy Klamert','https://lh3.googleusercontent.com/-XgZW7qUy1x8/AAAAAAAAAAI/AAAAAAAAAAA/Uel60_sdZQk/c-rp-mo-br100/photo.jpg','17394740196501090048',14048),('AIe9_BGErQpX2pRNZrXBy5NOsH0e36HU-YaCAYI0Qo2_rkLqKyq2pPtBTWOm2KgQYqUEagpO5p63LCm2IVOm3zEc4WmXQEu-b5b2E5OrgIZxFRnXNi6258M','The care I received there was absolutely AMAZING!! If i thought I wanted OR needed something they were already on the case!!! The doctor was honest and just down to earth. Thank you guys SOOOO much for making a hard situation so much better.','2019-05-02 13:33:49.164000','2019-05-02 13:33:49.164000',5,'LaVinia Love','https://lh4.googleusercontent.com/-c4wlHle8hPY/AAAAAAAAAAI/AAAAAAAAAAA/_ck-0RsQve0/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1331),('AIe9_BGErQpX2pRNZrXBy5NOsH0e3FUJ0_YJCp6exS5vu0TMLudbWOPMC23ll72rK8ruoZqxcH0OdHt9tU1sOCsxawClpu3BpO22oFRligXNCCXwxPMZsVQ','I had the pleasure of having Nurse Fanny, Nurse Eda, and Dr. Wang taking care of me. They were all so kind and excellent at what they do. They treated me like a real human being and did their job smoothly and efficiently without ever making me feel like I was some chore to rush through. I am very appreciative of this kind of treatment. They are really making a great name for Signature Care.','2020-01-11 23:53:32.915000','2020-01-11 23:53:32.915000',5,'Kyla Solomon-Hawkins','https://lh6.googleusercontent.com/-poT-iQ40QJk/AAAAAAAAAAI/AAAAAAAAAAA/jDSdFN0DhqE/c-rp-mo-br100/photo.jpg','17394740196501090048',14052),('AIe9_BGErQpX2pRNZrXBy5NOsH0e3iad2zShW9yNei2R12UXyGoRWJlx6DqDwtyVxC0MoHX8Ex0eU1bNH-WDb7g1iaRN84QwBfmD2V7KwRIdMXgspcc1Igg','Great service','2020-08-14 04:58:02.303000','2020-08-14 04:58:02.303000',5,'Bob Dole','https://lh6.googleusercontent.com/-yuEuRtDjYHo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckkHvFYIfNooTgyXOJOSevRvHMbcQ/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23020),('AIe9_BGErQpX2pRNZrXBy5NOsH0e3JCKRsILAru8-8YFF6hJ-jlxU_aebb5oUFTLv7ale6jTtWgdtAIt8s5Aydo3vAO803tUdZs4CxC7JwIQJQQmqbxd-tk','The receptionist. The nurse. Excellent. Pam is her name the imaging lady was amazing. The place is clean. The waiting is short . Dr Patel was highly intelligent and efficient. He studied my chart. Unfortunately Kailin Zhen was curt. Did no such preliminary investigations Prescribed me something that would not benefit me at all and I am extremely worse due to her particular negligence. Now theve asked me to come back in as a result of not correcting a simple medication call to H.E. B. And I\'m far too weak now to return today How easily \nAll could have been to corrected by one single phone call. and. One admittance of her mistake. I could have well been on my way to recovery. But she was insolent. I\'m not sure its her true calling to heal people. Perhaps a career change. Dr. Kailin Zhen try something new.','2019-09-22 19:23:47.538000','2019-09-22 19:23:47.538000',1,'Lisa Adams','https://lh5.googleusercontent.com/-crLxHdkWOrs/AAAAAAAAAAI/AAAAAAAAAAA/2J8hWmY0pww/c-rp-mo-br100/photo.jpg','17898197009688164559',5541),('AIe9_BGErQpX2pRNZrXBy5NOsH0e3JD5M1dEJTTAPOUjvVhnhoH4J1LwzRvT3SWv7wqMnzzoSI7jUQEICwGdXP80r58giNdHKF_sLnjBb6AbfsuOgXjm2tM','Go to spot for any medical needs. They care about treatment first and payment second. Super friendly very quick an completely competent.','2018-08-03 22:32:59.347000','2018-08-03 22:32:59.347000',5,'martin d','https://lh6.googleusercontent.com/-iY5MLJHfIN0/AAAAAAAAAAI/AAAAAAAAAAA/9edgj1duCi8/c-rp-mo-br100/photo.jpg','3511292162159714121',7666),('AIe9_BGErQpX2pRNZrXBy5NOsH0e3kFxKjyIAFL0mEcrYQlpMNCB-F2ySO9jzobMPLi1SxivJzZna_wWask-hqLK9fHDkLkfl5HQsa8BMg1NZ5qy7l0ZB14','I had a very great experience. They were able to get me in and out quickly and everyone was very professional and incredibly nice.','2019-09-09 17:09:00.850000','2019-09-09 17:09:00.850000',5,'Jessica Green','https://lh6.googleusercontent.com/-u6h5-UTnwsw/AAAAAAAAAAI/AAAAAAAAAAA/rWT6i9I4aKA/c-rp-mo-br100/photo.jpg','16590124370714063921',3214),('AIe9_BGErQpX2pRNZrXBy5NOsH0e3mlw6laq79ExialGOZ9W3E4D4chw-fZ5G0yVpLf7Aa-Fr9lyZJJ-Ieoxu4Jjzt-cIVpTJwq_Xu48W1i4gsdm0f-eNB4','I had an accident while on vacation in Austin. SignatureCare staff were very helpful. They were very accommodating and helped me out tremendously! I really appreciate everything they did to patch me back together!!','2018-11-27 14:55:04.137000','2018-11-27 14:55:04.137000',5,'Shirley Bilotta-Brown','https://lh6.googleusercontent.com/-gyaVJL_H2fE/AAAAAAAAAAI/AAAAAAAAAAA/52LfL9KJfXY/c-rp-mo-br100/photo.jpg','16891069708558046635',4399),('AIe9_BGErQpX2pRNZrXBy5NOsH0e3UCzEqy0AcSj4yrCZ6odKMfy8diAiNRp0uM1oIeqo-PT1LvYvpspSzYrDB4CU4XN53RibfQ-bnxFdb2tV_80iJcMzzc','Very nice and helpful. Amy did a great job with the testing. I did get fussed at by the NP but she was right about it. The wait time was a long but that’s to be expected with everyone wanting COVID testing. Thanks for everything!','2020-07-27 22:11:18.425000','2020-07-27 22:11:18.425000',5,'Cori Mabry','https://lh4.googleusercontent.com/-b16EntubLwI/AAAAAAAAAAI/AAAAAAAAAAA/3EEXdL94PgY/c-rp-mo-br100/photo.jpg','2077061009497551125',22804),('AIe9_BGErQpX2pRNZrXBy5NOsH0e3xCjHCbs0Znf9FD40GERcJNoQEOoDTKbMpR7ZugK9fBNUeOBUq8T24B3_5lDmFHpeLoJQmascHfWBnVTWw-LO259Ftk',NULL,'2018-08-12 16:05:25.744000','2018-08-12 16:05:25.744000',5,'Barb Evanoski','https://lh5.googleusercontent.com/-yjWRYaQJE0k/AAAAAAAAAAI/AAAAAAAAAAA/kzTPsmecB-A/c-rp-mo-br100/photo.jpg','14904078213800803294',2227),('AIe9_BGErQpX2pRNZrXBy5NOsH0e4_PaSNJfFDFxq9R-iq2LMhyRdY_cqZA6FJFCkb0xzwO4cP4AL61vorq1DgEHcR0YnZUk_oQb6uhU18BPoTvld0t12dw','Service was fast and doctor and nurse were awesome!!! 100%satisfied!! Will definitly recommend','2020-01-25 00:33:09.376000','2020-01-25 00:33:09.376000',5,'anna galindo','https://lh4.googleusercontent.com/-W0xKgaAlplk/AAAAAAAAAAI/AAAAAAAAAAA/RSVC9fAfL68/c-rp-mo-br100/photo.jpg','13486358490203335051',13457),('AIe9_BGErQpX2pRNZrXBy5NOsH0e42_PJY2KR2n2FPiDxthbyZ2-1vMDUWZhVrYrJfEmbT3dQgsuNjFn7t0OExsLpFwMNTflotrKHc4R5tbZQ00BBjIO_Ag','This place is awesome! Professional and polite staff, have imaging and quick service. Knowledgeable and answered all my questions. Felt comfortable, which isn’t easy in any hospital. They had me back in a room in 6 min when I was in excruciating pain. I will continue to go here for all my, family and friends emergency needs! H','2019-11-01 04:19:14.703000','2019-11-01 04:19:14.703000',5,'Kate Hanley','https://lh5.googleusercontent.com/-DnIqOuuT6XA/AAAAAAAAAAI/AAAAAAAAAAA/GSI9Yos2Zu8/c-rp-mo-br100/photo.jpg','14904078213800803294',13669),('AIe9_BGErQpX2pRNZrXBy5NOsH0e470TIfG_hd4TQzmM3yZdsWFpfYVRb95IbWWBKNvdAOA78W2-tH5n1_zUsyhS4CmtNFDEgldKxyN-1DjKhHMT9fVBmR8','I came in because I stapled my thumb trying to do my nursing application. Nurse Jake and Dr. Jaber did a good job keeping me calm while they took it out and fixed me up so I will be all good for my A&P 2 class this afternoon.','2019-02-12 15:21:53.190000','2019-02-12 15:21:53.190000',5,'Haley Christian','https://lh6.googleusercontent.com/-plBBVYr_Jt8/AAAAAAAAAAI/AAAAAAAAAAA/yUuaOo3zOaY/c-rp-mo-br100/photo.jpg','16590124370714063921',3559),('AIe9_BGErQpX2pRNZrXBy5NOsH0e49Ma7YTuI_tKTZbIFkFVfC-HNqYdewCJrpDSwCmFwOJVt3mHIaYJoo6lsB2MPY42l-TYcWVRpQzUunFf1e8l1FpJ5xw','Awesome staff and service','2018-01-13 19:37:59.741000','2018-01-13 19:37:59.741000',5,'Donovan Forman','https://lh5.googleusercontent.com/-SwDFP2WMTjg/AAAAAAAAAAI/AAAAAAAAAAA/nxiNHQ23Ysg/c-rp-mo-br100/photo.jpg','17394740196501090048',4899),('AIe9_BGErQpX2pRNZrXBy5NOsH0e4dcxcDVMkcQq3XBjQp7TeeM9paxAB8KqVATWk3QReuhpCANUoynEGC6G0Z0IsdKi4BrEOkw8IlJLQlG3UwJDyk8S_rY','Great experience! All the staff was very caring. \nThank you Anthony, Natalie, Kathleen, Alexis, and Dr. Akunyili!','2019-03-19 04:53:57.012000','2019-03-19 04:53:57.012000',5,'Ashlen LaCanne','https://lh4.googleusercontent.com/-UEpWt3H1xwE/AAAAAAAAAAI/AAAAAAAAAAA/Pz7jm-CGT2M/c-rp-mo-br100/photo.jpg','16590124370714063921',3495),('AIe9_BGErQpX2pRNZrXBy5NOsH0e4Ffjppo4SF4TFJ_Ry--2nseQyxyzs5S0zfQMaZlOtbhLDvF4BlncWf8AqFqh5IWhaNRiFRoTHUL8m-Mw2I9rcVv52dk','They were very helpful, they treated me with no wait time and was out in a timely manner. The lady at the front desk, Hayleigh helped me getting the bill taken care of and was very professional. Thank you!','2019-08-27 20:21:56.068000','2019-08-27 20:21:56.068000',5,'Alisha Owens','https://lh3.googleusercontent.com/-iheGYULTrAU/AAAAAAAAAAI/AAAAAAAAAAA/FTVNIwDG9kU/c-rp-mo-br100/photo.jpg','12541597562633926366',453),('AIe9_BGErQpX2pRNZrXBy5NOsH0e4lHS7R_9XJOSKpp9xSNt7OuHzneCwRGXpeI5pHG50mDfa4m5fLz0bGRdXlthgtmkX4Am-mlgYfmZFLhX2len8DjjcwY','Amazing Service ! \nFirst time here and I felt like home,\nJust like my mother would take care of me \nNurse Selina and Doctor Wang Did an amazing job, way beyond !!','2020-01-10 17:39:05.228000','2020-01-10 17:39:05.228000',5,'Alex Gonzalez','https://lh6.googleusercontent.com/-S5dw_EXabWI/AAAAAAAAAAI/AAAAAAAAAAA/qLHf-VMTAWk/c-rp-mo-br100/photo.jpg','17394740196501090048',14055),('AIe9_BGErQpX2pRNZrXBy5NOsH0e4NqweioLqUVFkgxj-LrbbLdlGK0sROOofmLkt7p-DTDhX105O5jem_XDnIYnv3CV7p4GDvn6y7SI942qdzVOuAto5RE',NULL,'2020-06-16 22:32:17.631000','2020-06-16 22:32:17.631000',5,'Jay Hicks','https://lh3.googleusercontent.com/-i1dtn6Og_lo/AAAAAAAAAAI/AAAAAAAAAAA/RId8dCx-8CI/c-rp-mo-br100/photo.jpg','14567670160750071148',20941),('AIe9_BGErQpX2pRNZrXBy5NOsH0e4OLIjqO8IRx3nJ7FIPy6OTYRMcUZJwwNCN-oCFpAfhcvGkKtSyxS7DKR7F_q8Uye3G9g1kIVuTDgX1_9kxv2rUOZIio','Best ER experience I have ever had and I have had a lot !!!! How is an ER experience the best? Excellent, fast, friendly and very knowledgeable from the receptionist through to the Physician. Very impressed!!!','2018-02-20 17:49:24.148000','2018-02-20 17:49:24.148000',5,'Marshall Kelly','https://lh3.googleusercontent.com/-SsR7gTryjqs/AAAAAAAAAAI/AAAAAAAAAAA/40InBfoBj5A/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4509),('AIe9_BGErQpX2pRNZrXBy5NOsH0e4Z2xigMVS_TyR51IQdzYqOdTgKDrqjmEe-dpvKdWxr1dyvFozkBa0cNyIdHmjRrWqSALmaqSBAZWotcF9qeIkajijCY',NULL,'2019-02-26 01:46:44.237000','2019-02-26 01:46:44.237000',5,'Hilda Banuelos','https://lh6.googleusercontent.com/-Kw4UKwWACFU/AAAAAAAAAAI/AAAAAAAAAAA/TRCko6EbmfA/c-rp-mo-br100/photo.jpg','14567670160750071148',1380),('AIe9_BGErQpX2pRNZrXBy5NOsH0e5BCcuaiuhJQEWkHTkQkhCczScGcNuhv7VwC4qvi4QugJHDiLHGQh7YAASdqtYOyi6ZFXYo3kCD4E0wdGFLzvpIPGPRA','Everyone was very polite and friendly. My husband and I were seen in a timely manner. I would recommend this location to family & friends.','2020-07-30 04:06:46.087000','2020-07-30 04:06:46.087000',5,'Carol Lowe','https://lh5.googleusercontent.com/-RIZeoMqB6eQ/AAAAAAAAAAI/AAAAAAAAAAA/ZrnCcRATjR4/c-rp-mo-br100/photo.jpg','2077061009497551125',22964),('AIe9_BGErQpX2pRNZrXBy5NOsH0e5cFeVZMDHspVLxKlaKVyL3la8iWLm-SDTCBoPK7rHXHIue52V9oRiQkcgBguKaPZnL_FgNArO4e5iePbFt-xJn9iOqc','Caring, Clean, Friendly and very fast service. The staff on duty Mollie, Eric, Tobie and Dr Das was great!','2019-12-29 11:06:53.354000','2019-12-29 11:06:53.354000',5,'Briana Williams','https://lh6.googleusercontent.com/-ICu_1R26qMY/AAAAAAAAAAI/AAAAAAAAAAA/iGlUgdNDaeY/c-rp-mo-br100/photo.jpg','3272657195432704501',6815),('AIe9_BGErQpX2pRNZrXBy5NOsH0e5P5Pwc2GK9jWlxXERq-lPSWdZJpRJtYvizZmiDhrd6RJQszEBOUC-QgXggYOLw1pNVmS2Pys5FNl2NyvEh8yc4pNUpA','Their website states that you will typically get seen within 10 minutes of arrival. TRUTH!!! I took my daughter and before I could finish filling out the paperwork, we were called back. The facility is really nice and clean and the workers were all polite and very professional. They tested my daughter for flu and took a chest x-ray and both results were back REALLY fast. My daughter is almost back to normal. I\'ve already recommended this place to a friend! So pleased with it.','2017-12-26 18:33:48.505000','2017-12-26 18:33:48.505000',5,'T. McDowell','https://lh5.googleusercontent.com/-63-6bRAQo-4/AAAAAAAAAAI/AAAAAAAAAAA/E5PI65timHw/c-rp-mo-br100/photo.jpg','17394740196501090048',4913),('AIe9_BGErQpX2pRNZrXBy5NOsH0e5vmAim3rpqZUcNbxvpUC19y1aNZcs8BO8smfHM8uQna-GysIUaTqUDL3_xO4ALKA6p8UajCncRIYXR1_rlvhJ3SnSg4','Was seen as soon as we got there on Christmas. Dr. Jordan was great and asked all the right questions and the nurses were excellent.','2018-12-26 00:26:36.958000','2018-12-26 00:26:36.958000',5,'Dometia Wherry','https://lh3.googleusercontent.com/-32q8d-uL6Ac/AAAAAAAAAAI/AAAAAAAAAAA/wov7rO-Zq64/c-rp-mo-br100/photo.jpg','3272657195432704501',7084),('AIe9_BGErQpX2pRNZrXBy5NOsH0e5wja-wkj-k_D2UlT8z_LTYVivgTVOko1ExZalThrI_9ddLdJAiro1M4bK2OZzPAm4JgCLEaC2txxoV1IDsZRK95u4iI','Everyone was very helpful from Evelyn at to front ,Duke the nurse on to Dr.Ding . I was treated and it was done in a timely manner','2019-11-27 18:27:33.358000','2019-11-27 18:27:33.358000',5,'Toddrick Stephens','https://lh5.googleusercontent.com/-hQzcS1eC08c/AAAAAAAAAAI/AAAAAAAAAAA/nqU4n1FJx8E/c-rp-mo-br100/photo.jpg','8679688254631342173',8706),('AIe9_BGErQpX2pRNZrXBy5NOsH0e60Qn7SlLaVMfF_zn9myI2WQKXAAf7VV7J5XEWg_RYqpvNdB4_OOEb9_kDzeBFCFHRCYpHFqDkLIDZF2AD2JobggpMYk','Since we got here all the staff and the doctor have been very friendly and helpful','2020-02-14 04:37:06.008000','2020-02-14 04:37:06.008000',5,'Armenia Ardon','https://lh6.googleusercontent.com/-v4uaOehWWJU/AAAAAAAAAAI/AAAAAAAAAAA/oi4euCD8SRg/c-rp-mo-br100/photo.jpg','2694018788013845459',14236),('AIe9_BGErQpX2pRNZrXBy5NOsH0e62wcMAKTWp0JjWs28l8uQOkjVAx7ArpYwwD5JtwPxiUiE2qf0J7h8nGFBdGfpRH-ISfsQs_fCfMYs4Mj_gn0Dua3pe0','Incredible staff! Very welcoming and hospitable! Dr B. Thomas, nurse Dawn S, registration ayesha, rad Nanci, and even Sarah!! Thank you guys so much. The most friendly faces. \nLots of snacks, variable drinks, and even asked about using a warm blanket during my visit.','2019-06-12 13:03:48.830000','2019-06-12 13:03:48.830000',5,'Madison Juarez','https://lh3.googleusercontent.com/-6Pav9Fvhs2o/AAAAAAAAAAI/AAAAAAAAAAA/uUnukvBcLXA/c-rp-mo-ba4-br100/photo.jpg','17898197009688164559',5703),('AIe9_BGErQpX2pRNZrXBy5NOsH0e63x0IeKiCXd2V6pIp0Rwcx2cbbigH1Qem_2GpITg34U4EV5nRgRttoYK4eOeP0Gx4ukoVBN15qt8-Vp5epMASUDS8WI',NULL,'2018-03-20 10:31:39.915000','2018-03-20 10:31:39.915000',1,'Bryan Ortiz','https://lh5.googleusercontent.com/-D-2CP30NsaI/AAAAAAAAAAI/AAAAAAAAAAA/jsfwpMiCaTA/c-rp-mo-br100/photo.jpg','8918455867446117794',9277),('AIe9_BGErQpX2pRNZrXBy5NOsH0e69oJJmD0Z6ep6eie7B7TEZc4yS4QpXW8li7LR6kIxhhHYu324VIE1_Ou_gDMVPrf6UDsn3yzFuHwTM12gzhJlkU67bA',NULL,'2018-11-02 13:38:42.742000','2018-11-02 13:38:42.742000',5,'Zaldrak Cavazos','https://lh3.googleusercontent.com/-AUFEhsb3feY/AAAAAAAAAAI/AAAAAAAAAAA/JdS8b1Grb2o/c-rp-mo-br100/photo.jpg','16590124370714063921',3672),('AIe9_BGErQpX2pRNZrXBy5NOsH0e6gcMtEss0n94ADsV2aAyYXmYPD1-pOwxK645-888BZ-ZLglcuPayMtuFhBZvB83qIMn9qEl_QxhQyft0WecMWTpMQz8','Nydia and Matt were very helpful and quick!','2020-08-09 23:10:46.214000','2020-08-09 23:10:46.214000',5,'Nicole Kuykendoll','https://lh5.googleusercontent.com/-acJRnoKIsYk/AAAAAAAAAAI/AAAAAAAAAAA/pomMnIkKxn8/c-rp-mo-br100/photo.jpg','2077061009497551125',22716),('AIe9_BGErQpX2pRNZrXBy5NOsH0e6LyH3y6kCl9W99LI9d1lCf8BGDAayHu65TUYB8h8LsZJ3Jxbj3XQ4J8y2fRPGD_u0zkLD7yGKtJqONGSjWL_wq2KeG0','We brought our grandson in for stitches in his arm. Shania was very quick to get him in and make us comfortable. The staff was friendly and fast. Thanks to Shania, Brittany, Alexis, Allison, Andrew, and DR. Vaagenes.','2019-11-23 04:36:27.849000','2019-11-23 04:36:27.849000',5,'Richard Standifer','https://lh4.googleusercontent.com/-RteDV4GAcP0/AAAAAAAAAAI/AAAAAAAAAAA/413finAvDLs/c-rp-mo-br100/photo.jpg','13486358490203335051',726),('AIe9_BGErQpX2pRNZrXBy5NOsH0e6LyHZv1-noxA1CSc2if0uYhT_kuDpV_VhjZIcQSKIB7XYpW6O1ztUlp8n33nH8YjHmdhzGUShjqTNapUfVCR08ZK6-0','They where wonderful \nLEO /Delpha/savanna/Bencroft/lisa H','2019-10-08 20:14:05.102000','2019-10-08 20:14:05.102000',5,'Michael Rodgers','https://lh3.googleusercontent.com/-8vaHrZI_af4/AAAAAAAAAAI/AAAAAAAAAAA/i5LEQ01J5XI/c-rp-mo-br100/photo.jpg','13486358490203335051',788),('AIe9_BGErQpX2pRNZrXBy5NOsH0e6rFRqhX3IGmiSMRq0RF1n7ESrBL1GGx-E4M37d2L4z22MNF1K6hRHf81p-J421VDh4hau_d9wvdIGeDWxTtpmmufbC8','I don\'t usually write reviews but felt this deserved some feedback due to this Covid situation. Dr. Angela Straface and her staff were on point when I finally made it in to get tested for Covid on 6-18-2020. The line outside to get tested was over 2 hours at 11am just to get a reservation for 10pm. Was seen that evening at 11:30pm. The staff have been overworked due to all the testing not only that day but with the uptick of new cases from the previous weekend. From the ladies at the front desk to the staff providing waters outside from the sun and heat to nurses in the rooms, EVERYONE was very calm, nice and polite as I assessed the entire process at different points throughout the day and evening. \n\nAs an intuitive person, I had many questions, Dr. Straface came in and sat and addressed the many questions I had around the many different tests out there, the accuracy, what to expect and overall making me feel at ease. At the end, once I was tested she went above and beyond to help with what pharmacies were open at that hour and called in the drugs and provided a list vitamins and things to buy at the beginning of my quarantine since I was not familiar with the area of where to go especially after 12 midnight. \n\nI just want to say thank you to her and to the staff for working long days and nights in helping the many people recently with being tested and being patient with the many who are frustrated, inpatient, annoyed, uncertain and nervous during these crazy times we live in.','2020-06-24 21:20:24.886000','2020-06-24 21:20:24.886000',5,'Brian M','https://lh5.googleusercontent.com/-fuqXXo01CHM/AAAAAAAAAAI/AAAAAAAAAAA/Tiuh4EiTZIk/c-rp-mo-br100/photo.jpg','14748677429039074158',21284),('AIe9_BGErQpX2pRNZrXBy5NOsH0e6VEsrHQfgu_ytmENQazJsPn6XwzZEC9ZPSkdUQI8vXek12LOZzBbxykDwC6bPxcHt9vMXCSflj0xF0jQQuYthONFyu0',NULL,'2019-06-20 23:24:19.183000','2019-06-20 23:24:19.183000',5,'Abelina Anzures','https://lh5.googleusercontent.com/-BgbVDLvL_VE/AAAAAAAAAAI/AAAAAAAAAAA/Q0P5RDkySkY/c-rp-mo-br100/photo.jpg','13486358490203335051',948),('AIe9_BGErQpX2pRNZrXBy5NOsH0e6Wu2SyADMndTDrlvzKfItTaQqbH8XIrqnsh_A6lGSV2NCtgd6IkAaQ-JJWlXYT8c9u8x6_cPofaaAaPSMZ-sVXUjF7k','This is the best hospital Ever!!! All of the staff here are Excellent! Thank you Amy for holding down that front desk. You are awesome! Dr. Ding and Nurse Chris thank you for your loving care!','2019-04-27 17:20:37.571000','2019-04-27 17:20:37.571000',5,'Tracy Williams','https://lh4.googleusercontent.com/-7j8dGsuTOac/AAAAAAAAAAI/AAAAAAAAAAA/sUVsP8KQnZY/c-rp-mo-br100/photo.jpg','14567670160750071148',1341),('AIe9_BGErQpX2pRNZrXBy5NOsH0e6x8b7FYrydKRy3YI2ra2vQ0P5L40Do_VgeiwNWlnShGJKh9WCZ6NUVGW0BKDPr0SUJjFZtxTlEjH2sok2Nn-k1OHl5c','I seriously recommend this ER. Even better than the ones at the hospital. Wait time is not anything compared to the others. From the receptionist to the nurse to the Dr, everyone was so nice and thorough. Will never use another ER again.','2017-10-09 05:12:31.459000','2017-10-09 05:12:31.459000',5,'Christina Fuentes','https://lh4.googleusercontent.com/-YvoOKkNmN4E/AAAAAAAAAAI/AAAAAAAAAAA/h0nWVKqZrPI/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8348),('AIe9_BGErQpX2pRNZrXBy5NOsH0e6YTnrlQ5MK8wTuSzsoqZwnlITU72WR6iF1wNT41RM68DIGWSQt5Xvc_DtoFNJz1b0lRTXgar0sjHPlSkFhROwewcgZk',NULL,'2020-02-06 21:52:02.266000','2020-02-06 21:52:02.266000',5,'susake u du','https://lh6.googleusercontent.com/-5P6bYuzhu9g/AAAAAAAAAAI/AAAAAAAAAAA/AY4PiH7JzxQ/c-rp-mo-br100/photo.jpg','14567670160750071148',13551),('AIe9_BGErQpX2pRNZrXBy5NOsH0e74jqq1JJfbq38feunzAlHeK3EWMX6PLJhb9wr70TH1xKyxKY_4ftJy2W8VlMRghDU4dj_GpWDQ2bcYiORos7W32Gq8I',NULL,'2018-11-26 18:53:04.750000','2018-11-26 18:53:04.750000',5,'Dillon Paul','https://lh6.googleusercontent.com/-rirov7sBLIU/AAAAAAAAAAI/AAAAAAAAAAA/9aYwDNdaGQI/c-rp-mo-br100/photo.jpg','6521947413723274945',8334),('AIe9_BGErQpX2pRNZrXBy5NOsH0e76eSCtEsBhiJLgQmAko8XHjPwBAiILAWRE2cvOh3JJyDOgqlfuxxxGhXI-F-0e2UhPrM6wU1WoJTUlN7QLyqs61Hjrg','Gabe, Arielle, and Kim were fantastic help. I was very unsure of my toddler’s allergic reaction and they got us in and out very quick. Thanks!','2018-09-16 01:51:19.399000','2018-09-16 01:51:19.399000',5,'Brion Pampell','https://lh3.googleusercontent.com/-wzY0eixCysA/AAAAAAAAAAI/AAAAAAAAAAA/Gpn_yW2UILY/c-rp-mo-br100/photo.jpg','16590124370714063921',3726),('AIe9_BGErQpX2pRNZrXBy5NOsH0e79zEhcUpmZG8Z0Lfep6pZgidwRFnrSVC4cmuuFkZfsxEqRyXfsN8NX6DgDYHDALmmMJb7d0h3jUO4m2obgYgCLJFUKc','We had a phenomenal experience here. Luisa at the front desk was timely and very friendly. Heather and Shelley were my nurses who were so helpful and reassuring. They took great care to be informative and gentle. Dr. Lindsay was very thorough and kind. This was the best and fastest ER experience I\'ve ever had. Will definitely be back if we need an ER again! Thank you all!!!','2019-01-22 23:25:41.846000','2019-01-22 23:25:41.846000',5,'Megan Arispe','https://lh3.googleusercontent.com/-eAINLA_J4D0/AAAAAAAAAAI/AAAAAAAAAAA/gEN3zH4OED0/c-rp-mo-br100/photo.jpg','17898197009688164559',5879),('AIe9_BGErQpX2pRNZrXBy5NOsH0e7AH64hPoP4dIMYtdl5DVzBuTSopWM2MvH53ClGJGPgA0PfWHC14mrh8cGyjhjsohE85vbiW3346NQd8r31UEcMhl1HY',NULL,'2020-01-13 18:23:03.913000','2020-01-13 18:23:03.913000',5,'Rodney Price','https://lh3.googleusercontent.com/-fzUAO7Waexk/AAAAAAAAAAI/AAAAAAAAAAA/yaesYGYtbvE/c-rp-mo-br100/photo.jpg','16389487648212004696',9737),('AIe9_BGErQpX2pRNZrXBy5NOsH0e7dp6y2O8fP0CblJ6tX5ctU3oG0Fbh1lUh8CU5IFuRbFoR-CC-fTUc_-sD873sRM7tM710ssBjYWihW1JV7cr45_G6BY',NULL,'2020-02-05 14:42:14.268000','2020-02-05 14:42:14.268000',5,'Ebiere Vianana','https://lh4.googleusercontent.com/-z4e8pCJverA/AAAAAAAAAAI/AAAAAAAAAAA/aiTT0s6kPJs/c-rp-mo-br100/photo.jpg','17394740196501090048',14038),('AIe9_BGErQpX2pRNZrXBy5NOsH0e7F5qlwVZkwwbN-nLuQTtCN35XnOMZ44bHCmJ5w9NJoKERq96IDJ3pEqa1yL4mN9bvAb-tXcT5E1MrDZBk1ysCcP6cKA','Dr Richard Ybarra was very Professional and had a wealth of knowledge that he shared about different medication and the best medications to buy and not to buy over the counter and he asked questions to where and when did my symptoms start.\n Dr William O\'Malley had a wealth of knowledge and made sure I didn\'t leave until I was cured, so I would not have to come back','2019-10-10 16:25:29.127000','2019-10-10 16:25:29.127000',5,'cornel joseph','https://lh3.googleusercontent.com/-j6NTmu2EYXU/AAAAAAAAAAI/AAAAAAAAAAA/ezJlrebjehs/c-rp-mo-br100/photo.jpg','16389487648212004696',2836),('AIe9_BGErQpX2pRNZrXBy5NOsH0e7purKwFUSAQSP4YNIaZ6MnJsgXCWxjH59xxDvM5Oi6yzmoEvJauugZKT4jN0HsRQyPfM4AidgtVlBDPDiM7QWB2a4-s','Kẻera and Jesse ưere âmzing help','2019-06-20 17:10:14.958000','2019-06-20 17:10:14.958000',5,'Sơn Trần','https://lh3.googleusercontent.com/-7i2eUmYWWS4/AAAAAAAAAAI/AAAAAAAAAAA/KKiDyQJQt9Q/c-rp-mo-br100/photo.jpg','17394740196501090048',4658),('AIe9_BGErQpX2pRNZrXBy5NOsH0e7SiDo4uNG_uHXSG8zWGfcNV_iqImcF9G_2Q8EyMdJnpfUvd9n58hyNJ_JWAQLCW9jlKwZlrG54nZ0s3xhh4dwcdkaYw','Had wonderful care for my daughter from Dr. Yost, Brandi, Karen, Kim, and Gunner!','2020-01-22 23:13:24.021000','2020-01-22 23:13:24.021000',5,'Susanna LeJeune','https://lh5.googleusercontent.com/-yi3OrdXTWk4/AAAAAAAAAAI/AAAAAAAAAAA/mR78jY2woHE/c-rp-mo-br100/photo.jpg','3272657195432704501',10284),('AIe9_BGErQpX2pRNZrXBy5NOsH0e7VUqBSFI6lvQoEmRs3mrfuPiqD47RulEHiC31kPMq2VBWnoEIz6Fo22NmXLTzmJkf6yLNkbArRYH9RnfyDAVp6waIms','Best experience ever. Staff was very helpful and friendly and they took good care of me. Was in and out in no time flat! Highly recommend to everyone! Keera and Remington were very professional and amazing!','2018-07-29 16:40:51.229000','2018-07-29 16:40:51.229000',5,'Marty Vick','https://lh5.googleusercontent.com/-K4OJ8Mpl5DU/AAAAAAAAAAI/AAAAAAAAAAA/jNYq8OARZV4/c-rp-mo-br100/photo.jpg','16590124370714063921',3801),('AIe9_BGErQpX2pRNZrXBy5NOsH0e82Yt5kd1CTiCJogxFRivu8Fj1-ZI51_I57yxTQ5NY8BLv8BxA_Pvz4Nf1d0dIm97RHzQDvm3bOUXg1z-KgIvh849qLA','Excellent healthcare experience!! Dr. Thomas, and nurses Vivenne and Gina were extremely friendly and helpful. At the front desk, Sindy made sure I was well informed and taken care of from the start. I would definitely recommend this location!','2020-01-25 18:38:32.876000','2020-01-25 18:38:32.876000',5,'Lauren Sanders','https://lh3.googleusercontent.com/-CBSrMm3kDHs/AAAAAAAAAAI/AAAAAAAAAAA/o1e_14XeU5I/c-rp-mo-br100/photo.jpg','14567670160750071148',10123),('AIe9_BGErQpX2pRNZrXBy5NOsH0e86hAxFpmAifCSDChTP-x4gsYjwgL1Q417YUW3ThMxSWD9_6OoEbaUC869-2-VeMCEHqa7cUSVIBfq49lZw1Xv6wrX8U','I have come to signature care several times and always have had a pleasant experience. I was really happy to walk in to Lorena and Rebecca who were kind and considerate at the front desk. My nurse, Jacob and Dr. Vakey were very attentive and considerate. Highly recommend!','2020-08-15 14:19:20.553000','2020-08-15 14:19:20.553000',5,'sarah beck','https://lh6.googleusercontent.com/-g42zC5enBOg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucliNdBUX8URx6xPWuphY1Em_fgKLQ/c0x00000000-cc-rp/photo.jpg','16590124370714063921',23055),('AIe9_BGErQpX2pRNZrXBy5NOsH0e86U_xqXoDjL0Iw8s04zDkvLUl4UfqiX7eN4NHXpBoSP3ZESmnApme_O8WmiZGne6TEf-v0cscTvTyp9WYxYPlv5C6PU','This was the best ER center we have ever been to. Very friendly. Theresa was great with my kiddo','2016-07-09 00:52:54.318000','2016-07-09 00:52:54.318000',5,'KJ Perez','https://lh5.googleusercontent.com/-sRZJG7o-ZX0/AAAAAAAAAAI/AAAAAAAAAAA/mDc3yqjrH1s/c-rp-mo-br100/photo.jpg','14904078213800803294',2477),('AIe9_BGErQpX2pRNZrXBy5NOsH0e87LJiVeX4EOTqVb1RXTeiTwdpDgwiQAAlPj3gjVC63kkGg14NIoOZRfELpvybijAtRL6sAvjLPG_H3OTEMbN38N4SEw','Love this facility. I have come here for a random Covid testing just for satisfaction :). The service is great and staff is great. Conveniently located here in Stafford! Highly recommend it.','2020-08-04 19:27:16.745000','2020-08-04 19:27:16.745000',5,'Azim Punjani','https://lh3.googleusercontent.com/a-/AOh14GhK1Xx0fViOTECC8c5H6X88hhP4qzhhzgBsTLKGwg=c0x00000000-cc-rp-ba3','8918455867446117794',22265),('AIe9_BGErQpX2pRNZrXBy5NOsH0e8kdHAN4qwannaLltc-G2xUxQWZ44N11p4-7JNo8MUTmN0O4jnf5pC6mY5Q9yK7s5Uye2HpSMIXW5gGTrxpQ1nXSNxCk','I had a wonderful experience at SignatureCare. We were able to be seen promptly, there was not rush to complete our paperwork like some care centers, especially when you are not feeling well. Everyone from the receptionist, the Nurses, and Dr. Smith were kind, knowledgeable, and empathetic. I really appreciated the warm blanket. I highly recommend SignatureCare for your emergency needs.','2020-02-02 11:41:09.045000','2020-02-02 11:41:09.045000',5,'Scarlette Holley','https://lh4.googleusercontent.com/-CsBGcZ7AQWM/AAAAAAAAAAI/AAAAAAAAAAA/rktANBkwRzU/c-rp-mo-br100/photo.jpg','14904078213800803294',13613),('AIe9_BGErQpX2pRNZrXBy5NOsH0e8Kj2bHHFtYEjYtQA4fUMapyaaeIfEnIYJwi0H7-qrIDcM5-mz-cwFm1iaTHXCSOn2lSbdotQOU6il0HUqc-Qc3KSEY8','Great people working here. Didn’t have to wait long in the waiting room. Service was very good.','2019-03-17 17:34:29.811000','2019-03-17 17:34:29.811000',5,'Jose Villarreal','https://lh5.googleusercontent.com/-zF0lBawCbAM/AAAAAAAAAAI/AAAAAAAAAAA/AIsoC_vpQoo/c-rp-mo-br100/photo.jpg','13486358490203335051',1058),('AIe9_BGErQpX2pRNZrXBy5NOsH0e8olaMmk1hM7C-PWO743bGKJEs3qtqvUz5-n37Yr78fOEYSsaUUQ9RE006ydP_iimg3A2-WHlU8iLQw4GKXzkTyfHIeU',NULL,'2019-05-29 01:17:18.665000','2019-05-29 01:17:18.665000',5,'Ronnica Rodriguez','https://lh3.googleusercontent.com/-ZEkIvVWOoT4/AAAAAAAAAAI/AAAAAAAAAAA/1hSX5UYsbh4/c-rp-mo-br100/photo.jpg','6521947413723274945',8252),('AIe9_BGErQpX2pRNZrXBy5NOsH0e8on6iQnDHgTkiJo6nmX8WYQJ375zcVIzNf5N9YhEEXP8B35jKN8ixEnDiWQedzl7y4s4efleb6-J0aNYAbwdyiCZn4A','The experience was very pleasant the nurse and doctors were all very nice and helpful. Dr.Jaber and RN Remington were very helpful in making sure I was okay and that all my problems were resolved. Thank you to all the nurses and staff your help is very much appreciated.','2019-04-07 19:18:14.163000','2019-04-07 19:18:14.163000',5,'Kwainessia Palmer','https://lh4.googleusercontent.com/--meed_XPchs/AAAAAAAAAAI/AAAAAAAAAAA/yIJgcT_xhVA/c-rp-mo-br100/photo.jpg','16590124370714063921',3441),('AIe9_BGErQpX2pRNZrXBy5NOsH0e8p_iUi-4epO57O7ezsI-phzWgQQNnwELIuqWmps3TemtTCbg6yy3JgC7NxVsCUvUHMW1gbgLvLJkVhoS6fASUr5kVkE','The staff were helpful especially Dr. Ding, Katrina and Cheney.','2019-09-18 03:18:53.332000','2019-09-18 03:18:53.332000',5,'mounira Tarnagada','https://lh5.googleusercontent.com/-Ufftu4_SVzk/AAAAAAAAAAI/AAAAAAAAAAA/7I9duJJmP-o/c-rp-mo-br100/photo.jpg','8679688254631342173',8803),('AIe9_BGErQpX2pRNZrXBy5NOsH0e96_52g6b7hCw6DRABLn8BYqg9FIEWfcmL6BXlzMak6DKbo-BfPEU-GhVFzc0n83gFQNidqGH6mVDebocbH-y4US0fic','My bf went to this place with a stomach problem. They did a blood test only. Said that the results of the blood was fine and there was just a spasm in the bowel and gave him pain relief medicine. Didn\'t do any other tests. The medicine helped him for a few hours and then the pain returned badly. So we ended up in the other emergency room where we got professional help and figured out where the problem was. Sure it wasn\'t just a \"spasm in the bowel\". I would not recommend this place due to unprofessionalism.','2018-06-07 00:04:34.323000','2018-06-07 00:04:34.323000',1,'Anastasia A','https://lh5.googleusercontent.com/-7zRcFIvZ7ZE/AAAAAAAAAAI/AAAAAAAAAAA/3NpKXpe0zQ8/c-rp-mo-br100/photo.jpg','3511292162159714121',7699),('AIe9_BGErQpX2pRNZrXBy5NOsH0e96ryYzDMgjiPp1igx_Ip1GGbowu_fIuYUN1RoKeoBJbz2Gr7GmPKpEOVBAVJeaXiGdcLeODxh2A3gmnZcBJSk2WflZE','Staff was very welcoming and friendly.','2020-07-28 14:23:42.996000','2020-07-28 14:23:42.996000',5,'shelesia guillory','https://lh3.googleusercontent.com/a-/AOh14GiCR02Y56PbukQttJuJE15TiGRetFlhjC6CrJ9-c1I=c0x00000000-cc-rp','8918455867446117794',22283),('AIe9_BGErQpX2pRNZrXBy5NOsH0e98-QEuicMCGdQLryfCw3lZGOd2qOSIff90SuxmB42zeoEpMvVWonMr-oCJBIPCyjtfKW11KuhfkAZ9c2dwXjipeFQEk','Signature was great! Robin at registration, nurse billy and tech courtney were all amazing!','2019-05-14 01:48:18.607000','2019-05-14 01:48:18.607000',5,'Paul Deramus','https://lh4.googleusercontent.com/--FTpxTBMWPs/AAAAAAAAAAI/AAAAAAAAAAA/pzE7nuS9jnQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8488),('AIe9_BGErQpX2pRNZrXBy5NOsH0e9Jy3z9WfUZKs3EO2iLurvnO-hutDC4iXhPMR_KOjdA8I5WJRCXiOb4xAXshIk04p4rfJsvQwLaU_FYAAFcOHMgcf-zo','I’ve been to this facility a few times and it seems like my care gets better with each visit. Melissa and Dr. Estevez were very kind, caring, and attended to all my needs. Carletta took me for my X-ray quickly and was very professional. The registration person was very friendly too.','2020-02-28 10:14:13.638000','2020-02-28 10:14:13.638000',5,'Ashley Ferrell','https://lh3.googleusercontent.com/-8djMibDL_04/AAAAAAAAAAI/AAAAAAAAAAA/-JY8_GyL8eo/c-rp-mo-br100/photo.jpg','3511292162159714121',20818),('AIe9_BGErQpX2pRNZrXBy5NOsH0e9l65KCoKqir05xYW7Em8yLt5Cnd_JrG_-chK7Pkm5DHoXA3PO3zPRX4cj84LIjd91Yfr-bt2nLobQ6sz-VCFwNycyoA','My 9 month daughter got sick for the fist time, & and the medical staff did a fantastic job keeping my baby comfortable & getting her well again. Another thing I was happy about is that they answered the phone when I called & texted me the address. It would of been nice to know that they don\'t accept Medicaid, but they still saw my baby & offered to bill us. They offered my boyfriend & I snacks & drinks while we waited on the doctor. But the best thing about this place is that there was NO WAIT TIME!! We registered & went straight to the back. I work in an ER in the medical center, so I know how the wait time can get really Long & annoying. Although they don\'t take her insurance, I would take my baby back if need be. Thank you guys.','2017-09-15 18:31:18.684000','2017-09-15 18:31:18.684000',5,'Tamara Carson','https://lh5.googleusercontent.com/-j-lXwApVdZg/AAAAAAAAAAI/AAAAAAAAAAA/vFgvgk8Q1Wg/c-rp-mo-br100/photo.jpg','17394740196501090048',4974),('AIe9_BGErQpX2pRNZrXBy5NOsH0e9o0G1U9_YSeM02ofSA4AmtVKQ7P1YnBndwKzBfMyt3OVh-P3Csqz2W4BKPo-HqJJsBTs75UIcAyfC10D3V3UOnXbOvc','I was given the utmost professional care. Fast working as we were concerned my situation may have been quite serious. Fortunately it was not but they didn\'t stop until they were sure. Even have \"hospital rooms\" which I was moved to for more comfortable long term care and observation. Would highly recommended to anyone especially if you don\'t want to spend countless hours waiting in pain just to be seen at a traditional hospital.','2020-02-08 17:01:48.116000','2020-02-08 17:01:48.116000',5,'Susan Brune','https://lh3.googleusercontent.com/-6-vnY2PAvVY/AAAAAAAAAAI/AAAAAAAAAAA/be2lQjRerIY/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',22470),('AIe9_BGErQpX2pRNZrXBy5NOsH0e9OOdOZ9XVBsq3AxFyqsBsauttzboi9fLVFsH_y8D7A_kyRTJUHup4zxvyqmvxZCtPibMYkJrsABnvTAzezCTGJSA6WU','Very helpful and so kind! We had Anthony, Natalie, Kathleen, and Dr. Frausto helping us and all were amazing!','2019-02-19 05:53:58.901000','2019-02-19 05:53:58.901000',5,'MOLLIE CLEMENT','https://lh5.googleusercontent.com/-xAQXBEF2yAs/AAAAAAAAAAI/AAAAAAAAAAA/sPQxX9VJGIA/c-rp-mo-br100/photo.jpg','16590124370714063921',3541),('AIe9_BGErQpX2pRNZrXBy5NOsH0e9vwoSd5SxAdiDPxnZH2MAqJgXzqDaYRJRIvB5vKXTAKEpXd1hH4Q6LCTl621JtwW1mkeVZHPvh7gY4VrURA9HS0osYc','Rebecca V was amazing from the time that my family and I came in, until the time that we left! It was a great experience in the waiting room. Food, drinks, and pleasant conversation!!','2019-11-30 02:08:14.955000','2019-11-30 02:08:14.955000',5,'Adrian Lovings','https://lh5.googleusercontent.com/-Ii9rqcKpIsI/AAAAAAAAAAI/AAAAAAAAAAA/IGpNw3TMxvU/c-rp-mo-br100/photo.jpg','16590124370714063921',3064),('AIe9_BGErQpX2pRNZrXBy5NOsH0eA_a0PLjelnKWs26GvWVf0GYto_HwTvtG0RHpBvpbLofWfMfzsciWILRTOg2k99PeXZKo8igZ6RKctb_mJGuofixBI1E','Great experience I saw the doctor in no time. I highly recommend this place for your emergencies.','2020-01-10 17:13:20.507000','2020-01-10 17:13:20.507000',5,'Lu Perrilloux','https://lh6.googleusercontent.com/-ESzRrtcDTgg/AAAAAAAAAAI/AAAAAAAAAAA/2V6gTku97Gk/c-rp-mo-br100/photo.jpg','17394740196501090048',14056),('AIe9_BGErQpX2pRNZrXBy5NOsH0eaBilVRLg9QFjm0RGIKKA5QqBBe7mFwa4XSqhbcy-Hm_pHy6kHHyL9giDgyh1tykAzmGbNhuxsRfi3iI_UsooJuet5OU','Absolutely great care on a Sunday morning. I cut myself working in my orchard and SignatureCare was open and treated me immediately. Dr. Vakey did a super job stitching me up and did it almost painlessly. I could not ask for better medical and the administrative processing was quick and efficient. Well done!','2019-09-09 11:19:25.075000','2019-09-09 11:19:25.075000',5,'Dom Izzo','https://lh4.googleusercontent.com/-IQVDvRTYaQw/AAAAAAAAAAI/AAAAAAAAAAA/eEc1xJJv3iw/c-rp-mo-br100/photo.jpg','16590124370714063921',3215),('AIe9_BGErQpX2pRNZrXBy5NOsH0eAcqIztJcg8jBQzWSWrMNTpiMEJeLMdcHA6rcOgGhLV4VfCtTneYd80icKT2Puz5qbu5TRYZZDH4rlonnPB1ir9xTh3Y','Ariel was AMAZING! She kept a positive attitude and was super upbeat though they were experimenting a high volume of people coming in! She greeted me with a smile and the doctors were amazing, very sweet team! Always feel good about coming here! 🙌🏼','2020-02-04 04:00:48.469000','2020-02-04 04:00:48.469000',5,'Christy Jullien','https://lh3.googleusercontent.com/-DofBrXG43pg/AAAAAAAAAAI/AAAAAAAAAAA/pe1IxKZ1Hvo/c-rp-mo-br100/photo.jpg','12541597562633926366',22478),('AIe9_BGErQpX2pRNZrXBy5NOsH0eAERzIMGv3KGxS9NOtJ0GGZwLZlQZwKfa5vwg1eHNm8fDMhDM4OydtLBWNWOT_skSyA31eNElvg9enGWU74L936pm_0o','This entire staff, Brittney, Kelly, the doctor, EVERYONE were very VERY helpful. They were attentive, thorough, and caring. They took me in immediately when they noticed my difficulty breathing. Their work was extremely quick, comforting and I am VERY PLEASED. I went in with difficulty breathing, and when i left, I was able to take deep breaths, and sleep peacefully when i awoke the next morning I was 98% better. Thank you to everyone who helped me. I Truly appreciate it.','2018-07-22 06:46:44.833000','2018-07-22 06:46:44.833000',5,'Jessi C','https://lh5.googleusercontent.com/-jgY56rp_Z14/AAAAAAAAAAI/AAAAAAAAAAA/3kqvXi_SNc4/c-rp-mo-br100/photo.jpg','16891069708558046635',4460),('AIe9_BGErQpX2pRNZrXBy5NOsH0eAi8xoSlCYXS_NFc-ur2KKMrDvRFU-5ZBGNSd7C2BiO-jSmFFPwCbu6h8pDKNgl76rZ4ESFWrAHezkdpOeSJYepddu8w','Great staff from front desk to medical staff! Minimum wait time, super attentive and thorough service. I appreciate the quality of care provided!','2019-01-11 14:50:06.608000','2019-01-11 14:50:06.608000',5,'shantel hayward','https://lh3.googleusercontent.com/-uQOOFFSvtvQ/AAAAAAAAAAI/AAAAAAAAAAA/0oCLb_PQW-Y/c-rp-mo-br100/photo.jpg','12541597562633926366',571),('AIe9_BGErQpX2pRNZrXBy5NOsH0eAiMfDC8GB4WZ5ioS1TW1u-xdOtni79i5cBywi1QEvLV9wyG1wUqKvs9xfl2Ck9NhA1N3rIImb28HeCgJxk4-bm65B-c','They’re friendly and take time to listen. Usually a very short wait. Dr. Sylvester, Laura the RN and Amy at reception took good care of me.','2019-04-13 22:41:14.477000','2019-04-13 22:41:14.477000',5,'Duke Rivera','https://lh6.googleusercontent.com/-AMyXkRF-gd8/AAAAAAAAAAI/AAAAAAAAAAA/s80Tb7W7CvY/c-rp-mo-br100/photo.jpg','3511292162159714121',7364),('AIe9_BGErQpX2pRNZrXBy5NOsH0eajv8xoTh4KSfq-p0U7krxokpukyp4VmPWQh3tKw3ibK8h9CHsdYTioUoNV-BX0G_kAn0CAzBdqfn6gh3o_FkJmrxmdI',NULL,'2017-02-03 23:56:27.014000','2017-02-03 23:56:27.014000',5,'Jessy Bonds','https://lh5.googleusercontent.com/-AWbSiAI11Wg/AAAAAAAAAAI/AAAAAAAAAAA/KTrSRbtmrvk/c-rp-mo-br100/photo.jpg','14567670160750071148',1895),('AIe9_BGErQpX2pRNZrXBy5NOsH0eAU4D7PZIhbJ7pJ3k8cNxdmAIgIkd6iBOvY_KfDHNGYfPVLJ-BIHAMmBlLAeo4TZTHcqvyEIL0onH3yhyisOg8SwycrA','Caring doctors and very friendly staff. Definitely recommended this place.','2019-12-19 14:42:50.229000','2019-12-19 14:42:50.229000',5,'maria estrada','https://lh3.googleusercontent.com/-cnlfZLekKrA/AAAAAAAAAAI/AAAAAAAAAAA/zi4XMFzDAuQ/c-rp-mo-br100/photo.jpg','17394740196501090048',14066),('AIe9_BGErQpX2pRNZrXBy5NOsH0eAUwiiRap1JGgtGYxgEkSNC6n8UNxcpm5kTI0HqgHLbSw9YEXAm4f-Pld58tZtZsnaIWcAA6QnTO-uzYgBHHyVHHMeuk','Thank you so much for taking care of me! Since i walked in the door i was treated well. The environment is clean and welcoming, the staff is courteous. The RN and Dr were attentive to my symptoms and got me all better real quick. The staff kept checking up on me making sure I was ok and didn’t need anything. Went home with no pain or ache in my body. A day later after my visit I got a phone call from one of the staff members just to see how I was doing with my recovery. Thank you for making my experience a great one.','2019-03-23 06:30:04.698000','2019-03-23 06:30:04.698000',5,'Ariana Garcia','https://lh4.googleusercontent.com/-DmboPIt-aUo/AAAAAAAAAAI/AAAAAAAAAAA/G9mcAMzYMhE/c-rp-mo-br100/photo.jpg','14567670160750071148',1358),('AIe9_BGErQpX2pRNZrXBy5NOsH0eaVodhg80Rs7ePt-w7bY-XbK3eFTMbXHmhZSGQL8SPeJufXotGU8NRm8dxfgcyyjphQsP3CYkfsJLvwrup09BhBlW2_Y','Patricia C-Registration\nAlvean A- Nurse','2019-12-28 18:20:11.223000','2019-12-28 18:20:11.223000',5,'Juana Rodriguez','https://lh5.googleusercontent.com/-_tfp_LBLmWQ/AAAAAAAAAAI/AAAAAAAAAAA/9q2TNxeEMIk/c-rp-mo-br100/photo.jpg','16389487648212004696',2502),('AIe9_BGErQpX2pRNZrXBy5NOsH0eayjtmbTvvs2XW7RH3SFGSFloe989-FVs3GJRRaXYVoEjbenwAUklYJBjW-5weMk7n3VGE2WUE5Y9tEg8PvIzzLgVQqE',NULL,'2020-07-11 01:16:15.072000','2020-07-11 01:16:15.072000',5,'Daisy Majano','https://lh5.googleusercontent.com/-g6hmHXLNxgE/AAAAAAAAAAI/AAAAAAAAAX0/AMZuuckJIVN2WSmJ6IKCrZvQYO83u9vQpQ/c0x00000000-cc-rp-ba3/photo.jpg','17394740196501090048',22080),('AIe9_BGErQpX2pRNZrXBy5NOsH0eB8TwY37mJak0_lZRudNCJCGLHJls1emz2cxpWOIep1-BGk06GBKz8cFFFagqZhz1RE-rJ7Y3ba0pzhG3XKa0uZAbDKI','My daughter injured her wrist at school... The staff here were awesome. Got in very quickly. Were very comforting to my daughter and very thorough with assessment and prognosis. I HIGHLY recommend SignatureCare South Austin.','2019-04-03 13:14:58.959000','2019-04-03 13:14:58.959000',5,'Steve Gordon','https://lh3.googleusercontent.com/-XmPPqxHiEHs/AAAAAAAAAAI/AAAAAAAAAAA/Id_9ekBaqxs/c-rp-mo-br100/photo.jpg','16891069708558046635',4306),('AIe9_BGErQpX2pRNZrXBy5NOsH0eb9FGdiJ7HdRBl9wsSOuCAp_0K6LzPeyslLL8bmVS2JAFUuYgvTfR7-eMYZahVlWxpFnQuhvr46jY7n7Vki4aM75G-Ug','Jessica, Rollie, Pam, Lonnie, and Allan were all fantastic while I was a patient at this facility. The care was not only exceptional from the very beginning, but it remained that way throughout the entire time. Their customer service is exemplary and they really do care about their patients. I was thoroughly impressed with the way the doctors treated my pain and maintained my care. Dr. Hehman was very thorough with his assessment and had wonderful bedside care; Dr. Garcia was very kind and handled the transfer of care with ease and even came into the room to introduce himself when he came onto shift. Dr. Pryor came in to see me and spent a good amount of time in the room talking with me and my family about the plan of care. It was amazing how he included everyone in the room and made their input and questions feel valued. I am extremely thankful for the staff who serves this community with the upmost respect and kindness. Thank you SignatureCare for all that you do! If you ever have any emergent needs, I HIGHLY recommend them. Their service is fast and efficient AND they are open 24/7!!','2018-09-29 16:16:31.364000','2018-09-29 16:16:31.364000',5,'Nicole Barnett','https://lh3.googleusercontent.com/-21JAxMwneHs/AAAAAAAAAAI/AAAAAAAAAAA/yOEauKmrP74/c-rp-mo-br100/photo.jpg','8918455867446117794',9231),('AIe9_BGErQpX2pRNZrXBy5NOsH0ebBKBalABcUNb9RdXnoip_8hqmraNviQSsqpEw3d3VPODZHBYmgbRZPqslbfB4Ku9qsTmUrZoMMll8FihluEozUnG2v4','Had a great experience here today with my 4 year old daughter. The nurse and doctor were so sweet and caring. My daughter had been traumatized by the flu the last few days, wouldn’t take medicine and then burst her eardrum from fluid in her ears. We brought her to SignatureCare then (after a referral from a close friend that loves this place). \n\nI have to say, the nurse blew bubbles to distract my daughter, while playing Paw Patrol, while giving her Oreos. I mean, I’ve never seen my daughter happy at a doctors office before! \n\nThese people are saints and know how to interact with children. The wait time was nonexistent, the nurse and doctor were extremely knowledgeable and friendly, even though I act like I’m a doctor sometimes.\n\nWe will certainly be back (hopefully not soon, but at least we found our place to go in emergencies). I will never go to dirty St David’s hospital again. \n\nI haven’t gotten the bill yet so I can’t speak to that, but everything else was perfect.','2020-01-14 00:53:51.309000','2020-01-14 00:53:51.309000',5,'J S','https://lh6.googleusercontent.com/--GRISQWk5qs/AAAAAAAAAAI/AAAAAAAAAAA/Kgttv4XQjDs/c-rp-mo-br100/photo.jpg','16891069708558046635',9768),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBDZ84VmBL_4rvjqGThtMMHdf5dOb-O2IQiJnlBiNO2pIr9v1MJK0f_U5XKJaC7kotIKaMmu_MFa5Mu6Dm3UQjTyo7Ro','Super friendly, caring, and helpful! Love the staff','2019-10-17 05:09:16.372000','2019-10-17 05:09:16.372000',5,'Kayleigh Forbes','https://lh5.googleusercontent.com/-ULwtbzLKshM/AAAAAAAAAAI/AAAAAAAAAAA/1hHO9tpOjqM/c-rp-mo-br100/photo.jpg','8626688543755174284',14667),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBE4UKsRweIdPPfaXUqaB7i1D04UPGf7vbx2lq7ppEdgmFuSOFxCNp_uvyAxv2W4Hb7-yNm4Pjb1DGVqa3TcovVBZG1c',NULL,'2020-06-15 17:54:14.876000','2020-06-15 17:54:14.876000',1,'Josh Zapata','https://lh4.googleusercontent.com/-mhvKWwxsJGk/AAAAAAAAAAI/AAAAAAAAAAA/xWrgTVzPCww/c-rp-mo-br100/photo.jpg','14567670160750071148',22487),('AIe9_BGErQpX2pRNZrXBy5NOsH0ebEDqvIbW53pV2jTTpJpnsbpN_y8gWdK9UN07o4iOzIhLKCs003i0cA4HJsQhY9F0EsHFG3jauk_HG2WzGvfLP0zegc4','they were very timely and nice!','2019-10-27 17:13:20.389000','2019-10-27 17:13:20.389000',4,'Jacob McDaniel','https://lh4.googleusercontent.com/-9vAwbcrRCg8/AAAAAAAAAAI/AAAAAAAAAAA/9X1-N0YvrZg/c-rp-mo-br100/photo.jpg','16590124370714063921',3120),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBH-dREClFDRSeL2t5Ez2wKbxJQIctqYYcyy5Sj9f1pqG47ayINa-r7UnV9OOGXW1bI9RlRsDJKeFbNlHHF8-IU4t0bo','Dr. O\' Mally, Nurse Pam, Techs Shay and Trisha were amazing. Thank you all!','2020-05-24 22:58:07.797000','2020-05-24 22:58:07.797000',5,'Patrick Lewis','https://lh6.googleusercontent.com/-qKqGjTCbwaQ/AAAAAAAAAAI/AAAAAAAAAAA/mf3kLFoa2fk/c-rp-mo-br100/photo.jpg','8918455867446117794',22941),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBHcaBgjBywTc3VXsfXe6MAe9bGupyYnyAg_Sart5axxYMnR6HJUs4a2tXjDPSL4YDphG_JKNfA6OO1mp5wgXnelfZ8k','Great ,Fast service. Everything is fine and Kim, Andrew,David, Lisa, and Alisha, took freat xare of JoshHargrove. Got dehydrated at work and wasn\'t feeling well. Glad it was nothing serious.','2019-06-29 05:46:09.495000','2019-06-29 05:46:09.495000',5,'Scott Hargrove','https://lh6.googleusercontent.com/-DtEBV8tz6cg/AAAAAAAAAAI/AAAAAAAAAAA/84hRw10HSf4/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',912),('AIe9_BGErQpX2pRNZrXBy5NOsH0ebLLl-XLORP7-n2EcZpHgOYlxD5jdjL_t-vmgWAlgwLWVWcMa6tFpyVoP1-gBwwSpUezwjlXT_pNq0qrM5X0nFlng8Rs','Everybody was very nice as soon as I walked made me feel welcomed. Got me in, out and fixed up quickly. Thank you registration lady Mari, Nurse Savanna and Dr. Osiecki. You people are awesome!','2019-01-15 17:25:50.857000','2019-01-15 17:25:50.857000',5,'Chase Sloniker','https://lh4.googleusercontent.com/-PO_oVg9zYSQ/AAAAAAAAAAI/AAAAAAAAAAA/c06aOcwWiQc/c-rp-mo-br100/photo.jpg','13486358490203335051',1114),('AIe9_BGErQpX2pRNZrXBy5NOsH0ebMCYpSLv_hThAGzUh1slp_0dQlf6uAsYpJrTDSXsZQTc0uSTo9k2Y8mHKSUn3vSl90r_75GSaAtDxfIt9EOdmZUwDPU','We brought our 6 yr old here on July 4th and I can’t say enough good things about them. Lizzie at the front desk is the absolute sweetest and so very knowledgeable. She was seen by Dr. Nylund who is amazing, Dawn & Norma are exceptional as well and the experience was unbelievable! They make you feel so comfortable and at ease. We will definitely use them in the future when needed. They are open 24-7 (including the holidays which is a HUGE plus). We were blessed to find this place, if you have an emergency do not hesitate to come see these amazing ppl ❤️','2019-07-04 16:46:25.699000','2019-07-04 16:46:25.699000',5,'Julie Millan','https://lh6.googleusercontent.com/-eq6Rm440b94/AAAAAAAAAAI/AAAAAAAAAAA/JVKDRGNJHeg/c-rp-mo-br100/photo.jpg','3511292162159714121',7276),('AIe9_BGErQpX2pRNZrXBy5NOsH0ebmG5ol8vwApo-enJ8cph81MUdmNa5pZXogS-jzoOshX_m4Y9Bcpat-0yXzjnA-y03bsWI47ZYw58tcF9EE6YCGAYW5c',NULL,'2019-07-15 00:55:09.305000','2019-07-15 00:55:09.305000',5,'Jaymie Pool','https://lh5.googleusercontent.com/-4J6lYjHURtk/AAAAAAAAAAI/AAAAAAAAAAA/nCZQ316bjWQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8197),('AIe9_BGErQpX2pRNZrXBy5NOsH0ebO6dTq-sy96xK9p5syZbJL5RgjudEEkkPuw2MjzjeOr1eZheSfG7Ny7HbwbQulKM4K9hYFvUzQhrhmlqX94z36FIvcA','These doctors get their knowledge from webmd. My fiancee cut her hand open and had to get 3 stitches (that cost $2,500) she came back that following night because the pain was so intense. The doctors then pulled and tugged on her hand saying \"you\'ll be fine because you\'re crying and feel the pain\"... because of poorly trained staff her hand suffered MORE damage and had to go under Immediate surgery to repair the severed nerves ($8,000)\n\nI would trust my life with a vet before I go here','2019-04-30 22:40:11.946000','2019-04-30 22:40:11.946000',1,'John Cook','https://lh3.googleusercontent.com/-_M0C6OnaNeQ/AAAAAAAAAAI/AAAAAAAAAAA/kCu1Iz0T1U8/c-rp-mo-br100/photo.jpg','16590124370714063921',3398),('AIe9_BGErQpX2pRNZrXBy5NOsH0ebODUwqxtAAybvHjxQZLduuToXWwvYPXWGT8vwbUC4EkVVQNfkKsIR2ECy1Y1Z9JyCRKkB2tXmHVGw9hQ806Nm1KKXAQ',NULL,'2019-01-29 04:37:27.244000','2019-01-29 04:37:27.244000',5,'Vasu Maharaj','https://lh5.googleusercontent.com/-BU-Kk0gb63o/AAAAAAAAAAI/AAAAAAAAAAA/TU5r0wB-JfE/c-rp-mo-br100/photo.jpg','17394740196501090048',4731),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBP5wtqbFERcPQRcI5BzcKYdTycTmG7mujzmnD-PmzjZxZ__syYe4GroITpaqiCYkp0zEJt_omXBE7jK1BRyk1lbk_GY',NULL,'2019-07-10 15:24:11.166000','2019-07-10 15:24:11.166000',5,'Miguel Gomez','https://lh6.googleusercontent.com/-E1aMnW1V7m8/AAAAAAAAAAI/AAAAAAAAAAA/G_llYStMV18/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBQaUdHDvp7qYj7bOiwtceEKqrNVY5xZ6ylUHTtCYBHDh2WfSihofGeJtcLZwkSnTkGwe1RLR0X6t6uPJM65jWuWCllY','I went in with a serious infection and was scared and not sure what to expect from the clinic. The staff at the front desk was very friendly and made me feel super comfortable and kept me informed about all the paperwork and answered all my questions in detail. The nurse and doctor himself were all very kind and informative and I got treated for my problem right away and was kept informed of all the steps they were taking. I was treated for my condition effectively and prescribed the medication I would be needing. In short, I would recommend this clinic to anyone who needs emergency help and treatment. Great staff, great atmosphere, nice and clean facility, and you are kept informed of all the steps they take from the moment you walk in till you leave. Thank you for great patient care!','2017-12-02 14:06:16.318000','2017-12-02 14:06:16.318000',5,'Maleeha Azhar','https://lh4.googleusercontent.com/-tkCvtmGj1nw/AAAAAAAAAAI/AAAAAAAAAAA/KfYIsa99nY0/c-rp-mo-br100/photo.jpg','3511292162159714121',7753),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBQGCBFCw2G-K9MCziQeQHPKVg6kT6rQ9LnLx5Df7arBnFgLi-wuROk_zr1nk1z4jV3LugXaQ9O7LRDu2FF4_08Unbmk',NULL,'2020-07-12 04:01:25.609000','2020-07-12 04:01:25.609000',5,'jesus rafael aliendres perdomo','https://lh3.googleusercontent.com/a-/AOh14GiEZPI6KlM2r9apj05UbbzlkwjmqR6RYlAjuVbA_Q=c0x00000000-cc-rp','3511292162159714121',22170),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBxnduqCGAMvESB0IWO3uWkqWdfXPhpGN3ypuMwVh_sylWaStNSZP8dzS4431hO-l_kBRaqqg2zBGZ1RCCOu_Sw8jhWA','i loved the process of of the the covid test here everything went smooth and well doctor das was bery nice and kind i suggest u come here','2020-07-31 23:06:11.067000','2020-07-31 23:06:11.067000',5,'Eric Tate','https://lh6.googleusercontent.com/-PPo4xWlIa-Y/AAAAAAAAAAI/AAAAAAAAAAA/chJIwjT_SbM/c-rp-mo-br100/photo.jpg','14748677429039074158',22361),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBY5uiKZnlBcHu3oJtuBJFxhf2rcJ3SX3Aeov1m9jNH60SjK0Zv8pKE_VoCUC6AW_kaNeExrw-142Vy3XxYYcdoXXI-8',NULL,'2020-02-11 04:24:54.880000','2020-02-11 04:24:54.880000',5,'Andres Delatorre','https://lh3.googleusercontent.com/-KAHgMvlUQtk/AAAAAAAAAAI/AAAAAAAAAAA/IqygYXo3V5I/c-rp-mo-br100/photo.jpg','6521947413723274945',14584),('AIe9_BGErQpX2pRNZrXBy5NOsH0eBz6CEf78xIYuBZ7QZ3l9a4QgJ2mzA8E23J5aBL7AolfceRkkR4muj1EbPOnGnZ0tVkTxyYM2psAO58IrfMEx-N6Hsw0','All the staff was great. We came in and helped us right away. Made us feel at ease with our issue. Thank you staff. Dr Ybarra, Katrina, Cheney, and Therisa you all the best!','2019-10-28 01:07:18.776000','2019-10-28 01:07:18.776000',5,'Chris Arroyo','https://lh6.googleusercontent.com/-eSa6l-GcvyQ/AAAAAAAAAAI/AAAAAAAAAAA/p2wTV1ui8dA/c-rp-mo-br100/photo.jpg','8679688254631342173',8764),('AIe9_BGErQpX2pRNZrXBy5NOsH0eC3G7P6-g1aQ3PUG-HlTUWlmmWHbU_3rvUb4R9t2RfmITVkwYdGYRPvJ3P5hVhmRJAfU3FmxRUO4PCtG82clW9qPCbDk','Great service, very attentive. I was treated by Okarys, Joann, Ekaterini, Marcus, & Dr. Patel. It’s my second time coming here and both times I’ve had a great experience','2020-02-11 14:19:45.384000','2020-02-11 14:19:45.384000',5,'Myriam Diaz','https://lh5.googleusercontent.com/-MKBOrNFFHhs/AAAAAAAAAAI/AAAAAAAAAAA/IA0u0A9sDsw/c-rp-mo-br100/photo.jpg','16389487648212004696',22592),('AIe9_BGErQpX2pRNZrXBy5NOsH0ec9yH2gNc-i10bqU_JibNItf9U6TOJV5gljAdLQgkBHOaoQ6gV1cE1xynfBssL1sHJqtlInIG2GRwO_p3V2LlVxrAJQ8','Excellent care and patient services. I have visited them twice. Bronchitis and I could not breathe. All the staff was responsive and helped me to relax. Erica at the front desk was very calming. Tech Ryan was incredible and reassuring. My nurse Jessica was great. Explained everything and keep checking on me. Dr. Billy Miller was so attentive. He took great care to explain what was happening and the treatment.\nThey are an incredible team!','2020-03-11 15:19:53.060000','2020-03-11 15:19:53.060000',5,'John Rooney','https://lh3.googleusercontent.com/--Mg0ZM1taR0/AAAAAAAAAAI/AAAAAAAAAAA/9oJufNm-HeE/c-rp-mo-ba5-br100/photo.jpg','14904078213800803294',20983),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCA-Osk0beEjOuVTPqYuKPCgokOEYfTCF1yxfxEFjYnucwObA7s_z7zu-Tvbv4W_qj3uTWIU_MR39zghozOIwVq_ZMqY','Really helpful. great exprience, low wait time, and excellent staff','2019-11-03 22:08:06.685000','2019-11-03 22:08:06.685000',5,'Sonia Cavazos','https://lh4.googleusercontent.com/-KWnLHQ83OEA/AAAAAAAAAAI/AAAAAAAAAAA/I8awPeKyDxw/c-rp-mo-br100/photo.jpg','16389487648212004696',2731),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCaFVPf0huSAjqOc0Yt-S4WOJXb45wSpnXEhMdPODrx-emEx6ihseDIrnpvEUNUz4TRddoCfWkBinU07DCK5CoKWgSwM','Brought my daughter in for a high fever and the staff was great. We were in a room before I could even fill out the paperwork. Great service and nice environment.','2019-03-01 01:38:06.181000','2019-03-01 01:38:06.181000',5,'Danielle Norris','https://lh6.googleusercontent.com/-PKFHLTMrmis/AAAAAAAAAAI/AAAAAAAAAAA/v_VV9NNSyx4/c-rp-mo-br100/photo.jpg','16891069708558046635',4337),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCC-7s2YtOny8uF64VelxbKdEnB66bIfLWc0ntnxyFcmcXQ6scjPmNkRkc6JkSj6HRwJ0fdE509HxIliPBUeeiPLiTUo','Great ER service and the front desk help Tiffany and Ashley were very helpful.','2019-03-28 01:36:43.488000','2019-03-28 01:36:43.488000',5,'Cody Rodenberger','https://lh3.googleusercontent.com/--pW2F70ADGo/AAAAAAAAAAI/AAAAAAAAAAA/-jLqHObl3R4/c-rp-mo-br100/photo.jpg','8626688543755174284',8515),('AIe9_BGErQpX2pRNZrXBy5NOsH0ecfLCkGWsiB7NPTdGD6d3trhPe5a9cCEmu6JoXbXl0KUQRVzMQJi8ioy2AkeFijW7BfyOvus-xws9nJEN_mG1hkefKuc','Wonderful place! Clean and they got me in super quick!! Jessica Sanchez was so helpful in answering all my questions and my nurse was a rockstar!!','2020-07-21 16:24:21.122000','2020-07-21 16:24:21.122000',5,'Kaila Garay','https://lh4.googleusercontent.com/-FsDqz7iGPEA/AAAAAAAAAAI/AAAAAAAAAAA/_nJtTlSKW3I/c-rp-mo-br100/photo.jpg','14748677429039074158',21619),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCgdsXGY2Yg0VGHVMNWFvDmmpAJKLHjLNJt09JFRyUwbqz6gOshPibs-X3hZJuqPqTHxsqQBZ4hyxYWRVKYFRz3M_bjw','The staff is extraordinarily friendly! Fast and accurate. You leave with a plan of action to remain healthy.','2020-01-10 16:06:34.360000','2020-01-10 16:06:34.360000',5,'Pathways Of Hope','https://lh4.googleusercontent.com/-deAipax9SLI/AAAAAAAAAAI/AAAAAAAAAAA/Chg8l4HWmsg/c-rp-mo-br100/photo.jpg','17394740196501090048',14057),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCGHOZypka3D3tPaFfIAQEERlG72VUeUkYE2GdSG7jelm3bp20pYZ1mYSiTm1doXAC7cI_u3Dpjjf5qfd58jEqNchN5Q','I came in late at night traveling on a business trip in terrible pain from a dental procedure that resulted into an infection. Within10 minutes of my arrival I was seen by two nurses who were wonderful and promptly after Dr. Ortiz. He is a fantastic doctor with incredible bedside manner. The whole team was wonderful from Ariel at the front to Nurse Lia and Sherwin and of course Dr. Ortiz. Super clean facility. Thank you all so very much!','2018-08-22 05:11:58.216000','2018-08-22 05:11:58.216000',5,'Kara Garst','https://lh4.googleusercontent.com/-Ns9w5JPvFV4/AAAAAAAAAAI/AAAAAAAAAAA/BTCHoBETKvY/c-rp-mo-br100/photo.jpg','12541597562633926366',617),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCiBYbzzuXBgpRO7ogYlck9lAacDEDADLgC0J4Rt7qwQPgartIZZSWsFUa7XodMoMYYBpMsQsIyr7hZpBF5kVi9M8-cU','My first and last time going to this place. I had an appointment, waited 2hrs. I was told to wait in my vehicle, so I did. Then I get a phone call asking if i would be returning, she said they had been calling my name for a while. I told her I was waiting in my vehicle as I was told to. The lady on The phone was rude, she told me to go inside so I did. I walked in, she said my name...once again rude, and just making me feel like a huge inconvenience with her attitude. So I had a seat bc she said I would have to wait till I was called. The sanitation in the lobby is a joke, the lady handed me a clip board, that another person had without sanitizing it, so I went ahead and did it myself. I don\'t know what that person was there for. I could go on, and on... the matter of the fact is they don\'t even know what\'s going on, and looked very overwhelmed.','2020-08-17 06:23:51.653000','2020-08-17 06:23:51.653000',1,'Crystal F','https://lh5.googleusercontent.com/-nE7fmfunk04/AAAAAAAAAAI/AAAAAAAAWRs/AMZuucmkPv_tApX2Ps-HXImYud1gxLocMw/c0x00000000-cc-rp/photo.jpg','6521947413723274945',23076),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCq7B_gtPownrhm37N23myH8hE6bH0ggnymLAZIt9fpw6DhA6iiqw8SkwVWgJaP9ZF-AXm-SrEJen0FcR8nTeTsv4Vs4','1st off, they\'re Very clean. No long wait and everyone from doctors to security guard is friendly. Would recommend this ER to all.','2017-06-13 23:51:34.412000','2017-06-13 23:51:34.412000',5,'HTownzRealest','https://lh4.googleusercontent.com/-pa8YUHzTJrw/AAAAAAAAAAI/AAAAAAAAAAA/js2IvPPixOA/c-rp-mo-br100/photo.jpg','8918455867446117794',9393),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCRKIkwhyprG-kSqdPyjQcW78MIMHxISBWVuHW1P5F_686avk7ZLSn6sUcBy_WqjPHmxfLCMmuZL3PqaMIHIoniJubag',NULL,'2019-11-28 20:57:10.523000','2019-11-28 20:57:10.523000',5,'joe bloe','https://lh4.googleusercontent.com/-Ft9waIn7uw4/AAAAAAAAAAI/AAAAAAAAAAA/RI8aAWGH-5M/c-rp-mo-br100/photo.jpg','16891069708558046635',4136),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCudUK3JioKkq-6KZH04TnW7IJDdMQvAQ90ggoyX1F064k1mwMjj29GwfvZ9WDDbtzyaLcJbMkYYX9HXAxEXVXSuqtEM','Wonderful experience under the circumstances. Friendly, competent staff. Irvin, Dr. Faig, Kristina, John, Laura and Genesis were great.','2019-08-16 14:26:41.755000','2019-08-16 14:26:41.755000',5,'Jennifer Barnes','https://lh5.googleusercontent.com/-mOAHbljFrZQ/AAAAAAAAAAI/AAAAAAAAAAA/6xbPhp8WE2k/c-rp-mo-br100/photo.jpg','12541597562633926366',457),('AIe9_BGErQpX2pRNZrXBy5NOsH0ecUjePyz4BGRFvMSLGJi0Ta045GwFm6P14vs3sW7cGNaG7AUi-dz3vfSeMLhTU9FHpQnsUKIiuROO9laZUjKhm79aqW4','Excellent Servics provided by Dr. Smith, (Rob) Robert M. Ms. Tricia and my guy out front Jesus.','2019-05-24 22:18:54.694000','2019-05-24 22:18:54.694000',5,'Derrick L Woods','https://lh6.googleusercontent.com/-nD2PwrOalj8/AAAAAAAAAAI/AAAAAAAAAAA/ff7SjdNjl1I/c-rp-mo-ba6-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCUw3iPZt3-rd3kcdMpgdVzbU4l1Zk23iv5Aa-18xQFZeBMRft06F_iW3pkffmqAta5W_kaOrTCCJGyfkqfPJ5DsKxXE','Don’t even think about coming here for a covid test. I couldn’t book online because there was no option to do so. Therefore I drove to their location and was given the “sorry but we are booked for the next 3 days” spiel. Yes I understand that their is a high demand for testing, but my advice is to find a more reliable testing center that is more straightforward with their availability.','2020-06-26 03:01:02.078000','2020-06-26 03:01:02.078000',1,'Rigo Guerrero','https://lh3.googleusercontent.com/-ghqaTH260MM/AAAAAAAAAAI/AAAAAAAAAAA/yL1YhgGRWFw/c-rp-mo-br100/photo.jpg','14748677429039074158',21266),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCVx0CWD_Zxqlxwoydr081d4xRRnECyD9zyLtWA09HKM5suApzYNegtQIYCtnZL_GG6f2jjCA8IWYCprzrFdFvrDGu1A','the staff went way out of their way to help me last night, they are so crazy busy and they still manage to get everyone taken care of. \nvery grateful\n\nHighly recommended','2020-07-11 12:51:52.862000','2020-07-11 12:51:52.862000',5,'Brad krauss','https://lh5.googleusercontent.com/-fVf2NK3RRAY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucknugxudGRDdgAFoDjauTLAW7Rcxw/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21326),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCyLDBZ233qMV2NDh7UFQnvci9htSpqxDFyVWOSD5jZr8qe9j-Tp-dI80InLCYMHyGGIftMat1TjYaUx2uqWBqMcDtig','such a joke. Advertise to make an appt. for the Covid test. I drive 20 min to make an appointment AFTER I got off the phone (waited 1 hr 40 min on hold to confirm I need an appt). Walked in to register for the appt only to be told they are not taking appointments anymore per the Owners. Interesting how protocol changed in a matter of 20 min and no staff knew except the girl at the front desk. Not even the dude answering their phones. Too many no shows. Not my problem. Then keep moving down the list. If you aren\'t taking appointments then update your website and let your ENTIRE staff aware of the change.','2020-06-25 02:38:42.106000','2020-06-25 02:38:42.106000',1,'Kristen Mitchell','https://lh4.googleusercontent.com/-D0-oFPO0jyU/AAAAAAAAAAI/AAAAAAAAAAA/FFB7gaTynYI/c-rp-mo-br100/photo.jpg','14748677429039074158',21278),('AIe9_BGErQpX2pRNZrXBy5NOsH0eCzfVtxJLUxca4TPUZJi40W7ylQQ2iJB6sb6jTgwtULy38fLdQ4awjetEz4rqoxw32aurt20F_0vixC6zmIwLDisgI64','Excellent and fast service !! Totally recommend rather then going to a Hospital Emergency Room. We had different people service him which made the process go by really fast. The nurse was Sarah, ER tech Daniel and RAD tech Carletta. Dr. Pham gave my husband 7 stitches and was done in no time!','2020-02-20 01:00:57.711000','2020-02-20 01:00:57.711000',5,'Bianca Orta','https://lh3.googleusercontent.com/-UrjDyeZkS2M/AAAAAAAAAAI/AAAAAAAAAAA/uV6nGaAPGew/c-rp-mo-br100/photo.jpg','17898197009688164559',14153),('AIe9_BGErQpX2pRNZrXBy5NOsH0eD_6y7FRa52VtjnyCkt6lC2aj8c9KpXYYVqvB8aTRCfah0vvPSHdv5wa_K7u3qvqKWN_T6t_eAchicKXLoZiiq3jv3YU','Very beautiful facility really breath taking i wasn\'t feeling too well and I left a previous ER due to the wait times I came here they saw me right away and gave me a warm blanket the registration was easy and pleasant I got seen they helped me and was very caring like family I felt better when I left and they gave me a goody bag I will recommend this facility to everyone!! I can\'t thank the staff enough they all are great','2019-08-21 07:40:39.984000','2019-08-21 07:40:39.984000',5,'Teresa Parks','https://lh5.googleusercontent.com/-h4ltyq4gs90/AAAAAAAAAAI/AAAAAAAAAAA/z-mMCs2ckXQ/c-rp-mo-br100/photo.jpg','2694018788013845459',6080),('AIe9_BGErQpX2pRNZrXBy5NOsH0eD6JB4kssCL3YMO2ZwJlE9yDmd_MWlNyRcUK3t46eV0kWOuDqy_FSXcUiGozHWu7pdnU-V3ttt_Z8deY2rEsv4tKQXj4','Best medical facility I have have even been to. Their emergency team (doctors, nurses and other staff) was quick and really understanding to the situation. I would highly recommend this facility.','2018-12-05 15:30:18.531000','2018-12-05 15:30:18.531000',5,'Devanshi Vaishnav','https://lh3.googleusercontent.com/-UaZZzU9X4Ew/AAAAAAAAAAI/AAAAAAAAAAA/St9sz1ZMzQg/c-rp-mo-br100/photo.jpg','8918455867446117794',9210),('AIe9_BGErQpX2pRNZrXBy5NOsH0eD8eEkiEp2TfNGJCObTLwLWRMvXPfHk2S6N-Z0PQBn1vYEWt5h90z6irpelZu8Gun2PQjvXUp3uRYq1rGlIVT9VuSfnM','The staff was very nice and everything went smoothly. Will definitely keep this emergency center in mind .','2020-07-20 15:35:13.421000','2020-07-20 15:35:13.421000',5,'Dafne Nava','https://lh3.googleusercontent.com/-1P3RV1NPjdM/AAAAAAAAAAI/AAAAAAAAAAA/8OwciZT5-z4/c-rp-mo-br100/photo.jpg','14748677429039074158',21668),('AIe9_BGErQpX2pRNZrXBy5NOsH0eDA0h4MANfAvUw9ySQZ8HfRo3JNgMIRm04lESwWi8SaZmFSJkrq1AUjgSb1IvS8vwuQnoetXSoXuWIApffN9dSeyDiKk','The whole team from the doctor to the registrar was awesome!!! Dr. Souman, Sarah G., Fatima B., & Tanishia W. were all so caring and welcoming! Will definitely refer my family and friends here...','2020-02-07 07:35:31.860000','2020-02-07 07:35:31.860000',5,'Tifa Coward','https://lh4.googleusercontent.com/-0CKM-DI0Eno/AAAAAAAAAAI/AAAAAAAAAAA/Q6tTt-BDIos/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',22702),('AIe9_BGErQpX2pRNZrXBy5NOsH0eDdbdwBv2cI72HS8b97UmB06_CIvoSVewqAJRGXvr6-PPTWw7uIWi0KQcZ8RUtVHELfDfy7YaNVIr1ZBFbuDn53pD_xs',NULL,'2019-03-23 21:20:14.998000','2019-03-23 21:20:14.998000',5,'Cliff Butler','https://lh6.googleusercontent.com/-BiPeeVSsKVc/AAAAAAAAAAI/AAAAAAAAAAA/AP1sLCm8NDk/c-rp-mo-br100/photo.jpg','13486358490203335051',1052),('AIe9_BGErQpX2pRNZrXBy5NOsH0eDG5BT0mLuc8sVMgOjN7KI3DaErKig2BTpot4BRzoxAGjgAz34JWu4xu-frq7lZA94M1uolwvGs-SE6JiGV7ZdfhbCwg',NULL,'2020-06-07 00:37:05.897000','2020-06-07 00:37:05.897000',5,'Christina Speir','https://lh5.googleusercontent.com/-JZJCQQN3a9A/AAAAAAAAAAI/AAAAAAAAAAA/H2j55kawNUM/c-rp-mo-br100/photo.jpg','14748677429039074158',21773),('AIe9_BGErQpX2pRNZrXBy5NOsH0eDmM0VPvll2Jct0RFyTfaoo91kUHo3DCKaQKtPOh5AhLPeAniBNr_kVA-IMy01k0rVDWTbqBiKj-wqGPd_7BVd6AZE0A',NULL,'2017-04-22 15:41:57.130000','2017-04-22 15:41:57.130000',5,'Max Sera','https://lh3.googleusercontent.com/-Kp4mrD2fspU/AAAAAAAAAAI/AAAAAAAAAAA/AtEMn-vfCSg/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',4004),('AIe9_BGErQpX2pRNZrXBy5NOsH0eDmVDRe_E7JyoOBLTMdQDoVUgpqlpFptVYUCE5rliLWtbFQo-4mVP_sJcxtiqeonLmAunyTNDc8bsKwNj5OxxNu2vR1I','Went in for a banged up shoulder and road rash from a cycling accident. front staff was friendly and the complimentary snacks and drinks helped my wife keep our two-year-old under control while they waited. service was quick and thorough. they were full at the time but they were able to expedite my xrays to avoid longer delays once i got in a room. i was asked several times if i was comfortable enough and about my pain level. Nurse O\'Neal was super nice and made me feel at ease during my visit. Doctor Hung shared his own road rash story and gave some great advice on how to continue treatment of the wound later. great place. will definitely use again. ','2016-10-27 14:47:31.300000','2016-10-27 14:47:31.300000',5,'Daniel Medrano','https://lh5.googleusercontent.com/-SOcXkDFHBQA/AAAAAAAAAAI/AAAAAAAAAAA/RsLnguI4peo/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1952),('AIe9_BGErQpX2pRNZrXBy5NOsH0eDvByH5_gbXpnrjztbzbAltwzNUQVmHbIsgy5TCvyQAskBuOfDxQQqN2uwyJGGMBbCLwOG6RYZQeuPxXEI57fWRccB-4','I walked in with horrible pain due to an ear infection. I was seen within minutes and prescribed the correct medicine to treat it. I was given a pain shot on the spot to help for the pain, was very much needed! My experience was wonderful; from the front desk to the doctor everyone was awesome!!','2017-09-05 18:26:25.863000','2017-09-05 18:26:25.863000',5,'Stephanie Rivera','https://lh5.googleusercontent.com/-hGDOBpMIJ08/AAAAAAAAAAI/AAAAAAAAAAA/Res0VR45MJw/c-rp-mo-br100/photo.jpg','3511292162159714121',7792),('AIe9_BGErQpX2pRNZrXBy5NOsH0eDY9Db30TPc7mPhxyvhHAejYr_bO9b1Ih2uVuxvxvwc7CVqd6gXA9OuCNEQ2qIyPhwxSt2eokw6kMXwBUiiiwlYDXBq4','Went to this facility because it was a Sunday and I had just returned from a trip out of state. The left side of my face was swollen and I feared it might be serious. I went in, filled out paperwork, and the doctor spent maybe two minutes with me. He told me it was a virus and prescribed antibiotics. I work with Doctors so the next day, they looked at it and said it was an allergic reation so don\'t take the antibiotics. It cleared up in a couple of days. So, two minutes with a doctor and a wrong diagnosis......THE BILL WAS $1500!! Would give zero stars if possible.','2018-05-18 00:10:34.843000','2018-05-18 00:10:34.843000',1,'Eric Koenig','https://lh3.googleusercontent.com/-ko8MHyzNkr4/AAAAAAAAAAI/AAAAAAAAAAA/z-MiY033woU/c-rp-mo-br100/photo.jpg','3272657195432704501',7104),('AIe9_BGErQpX2pRNZrXBy5NOsH0ee_DA8dOsiNoNMhEe3Tf0XW_DeaBAMOi0y85QSuPN4QWZRvntsc7oBQ8J8195wW83etty3SznNpHZ3ELIjR1D-AHX7RE','I went in with what I thought was allergies and ended up being the beginning of an upper resp. infection. I was in and out within an hour and the dr and staff were awesome.','2019-09-16 11:56:37.999000','2019-09-16 11:56:37.999000',5,'Michelle Hernandez','https://lh5.googleusercontent.com/-TfkWAT73SfY/AAAAAAAAAAI/AAAAAAAAAAA/HWrUrSPwvQ4/c-rp-mo-br100/photo.jpg','17898197009688164559',5546),('AIe9_BGErQpX2pRNZrXBy5NOsH0eeABkHAW9pkLpG5HKVK75knwZjAbT6WbiLAcy4ja1rjx85Y8BLYjRnpBVbDaoudbPbyIZTzGMHH1Nhm_3qIMIl6_ZvvI','(Translated by Google) Excellent attention Thank you very much\n\n(Original)\nExcelente atención Muchas gracias','2020-07-18 21:30:14.599000','2020-07-18 21:30:14.599000',5,'gabriela zabaleta','https://lh6.googleusercontent.com/-AXlwz4JRSoU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckC_oxB7esWJyF7O_gdDngdiWON1Q/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22162),('AIe9_BGErQpX2pRNZrXBy5NOsH0eec3aXMMSZvSTNCqWt47OnIRxvo8v2dJO_2Pxyi8NK0hg-egvNzTNQaxr-eYkXixZRT5b3gtv7sXwRZGti6EgDnXFG8w','Dr Peter was very nice. Took good care of my kiddo. Theresa the RN was very sweet as well. Marcus Rachael and Shania were all nice as well. I highly recommend Signature Er Odessa. We would have waited for a very long time at any other ER in Odessa. They took very good care of my son and are very quick and timely and provide quality care and treatment. Very good place highly suggested if you need somewhere to take your child and don’t want to wait at the regular Er for several hours just to be seen. Thank you Signature ER.','2019-09-11 03:58:47.219000','2019-09-11 03:58:47.219000',5,'Megan Jones','https://lh6.googleusercontent.com/-P5OKOaWX25U/AAAAAAAAAAI/AAAAAAAAAAA/EWQsl5QrqSc/c-rp-mo-br100/photo.jpg','6521947413723274945',8149),('AIe9_BGErQpX2pRNZrXBy5NOsH0eecZAVQXu59Ki0hnv3492bs1zwUtFCmuuJvFuFgacAkajRqv6SsBtMUbLzSkR7lYKmhXGUg-5XHLXvacQ7okdQKK3aVo','I had excellent service since the minute I stepped in. Under the care of great doctor and nurses checking up on me at all times and every need.','2017-04-22 04:24:12.494000','2017-04-22 04:24:12.494000',5,'Nelsy Matamoros','https://lh5.googleusercontent.com/-SChH5H_1MpI/AAAAAAAAAAI/AAAAAAAAAAA/Ungmn2RQI6g/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2365),('AIe9_BGErQpX2pRNZrXBy5NOsH0eeEC5fkwrOKvwRh6vMI5x6CJrKl4HfC6UzHsWp1Cp_rumtqm3M4lnqT4fdytNRDoZtbC4bn0lSo6rIbp7yivVicSto_A','These ladies working the front desk and the staff providing service in the medical section were fantastic and quick. Not only did the front desk show me superb customer service, every single client walking in with questions were treated so kindly. They didn’t act annoyed or rude for the million COVID questions. They were patient and nice. This goes for all signature care ER’s as well.','2020-07-28 01:43:30.010000','2020-07-28 01:43:30.010000',5,'Shayla G','https://lh3.googleusercontent.com/a-/AOh14GitqI6QhUlhbFp4BSkhQFbIuAmTGPrJXRReNTha=c0x00000000-cc-rp','17898197009688164559',22092),('AIe9_BGErQpX2pRNZrXBy5NOsH0eeFCufhn5LmDBu5YakFa77RZHRHaf33TSRkRBPgWkVWwsZJmS7VAAvj_cxxxGL52YSG28XqFYOm6sEPgpnLg1wMWiNY4','The front desk staff and nurses were very helpful and caring','2016-03-02 22:59:39.701000','2016-03-02 22:59:39.701000',4,'Kim Barnes','https://lh4.googleusercontent.com/-_jY_tyjDnVQ/AAAAAAAAAAI/AAAAAAAAAAA/DU64cM0hS7g/c-rp-mo-br100/photo.jpg','17394740196501090048',5274),('AIe9_BGErQpX2pRNZrXBy5NOsH0eeJLUHD5ilTVgqeFgnhtOKHGujDgaWWNIo-byjrh27_LSuNIdOtxIfWfupwSW9-KTt7oCkkFD-WP9TOALmtoVWvCcWlY','Visited the clinic to take a friend who was sick, every single person in this office was friendly and helpful. The office itself is clean and very accommodating. The nurse who’s name was Gabriel as well as the ER Techs Christine and Chris were all very kind. Highly recommend this clinic.','2020-02-18 02:53:06.796000','2020-02-18 02:53:06.796000',5,'shelby talbot','https://lh3.googleusercontent.com/-kzGDnXQPpnE/AAAAAAAAAAI/AAAAAAAAAAA/diFbReQW0u4/c-rp-mo-br100/photo.jpg','16891069708558046635',13945),('AIe9_BGErQpX2pRNZrXBy5NOsH0eEKNCfeBGS3510ggFqPeCxV02TffuebMBEeyiwSVy_b6WwPbHbEXPDdmWLexVxSOpZICwen7tBNvz22BABgeF57Z8_JI','The doctor and the nurse Shawn was great and took very good care of me.','2020-02-13 00:30:52.915000','2020-02-13 00:30:52.915000',5,'Josalyn Regino','https://lh6.googleusercontent.com/-5NGntivw9js/AAAAAAAAAAI/AAAAAAAAAAA/s_otdpl2wkc/c-rp-mo-br100/photo.jpg','8918455867446117794',14832),('AIe9_BGErQpX2pRNZrXBy5NOsH0eeno67SsBwQWw42ekIWtFHfJ9hALMaZRv91kCNtJz6kvadW0EmGdTjdqSyjBuNmQWw0_Z9Nz2arzcwaErZat1Cd5fXbA',NULL,'2016-11-03 22:29:50.979000','2016-11-03 22:29:50.979000',5,'Love Jane','https://lh3.googleusercontent.com/-1rWjNcN6Upw/AAAAAAAAAAI/AAAAAAAAAAA/YpPWIJXdBW8/c-rp-mo-br100/photo.jpg','14904078213800803294',2449),('AIe9_BGErQpX2pRNZrXBy5NOsH0eEyfS2EOE3lvijPr17s4HiHhRS9f7mfdQfYmWfwmh437rXJZgRGAjrg__oG_mTK_dlJjMXghndtY5oI9wm8BeUAYlQlA','Best emergency room visit ever. The employees there were very professional and very friendly. My doctor aas Dr. Farooqi S my nurse was Alvean A, radioligist was Tricia B and that amazing receptionist Natalie G was so warm spirited.','2019-11-01 18:00:38.819000','2019-11-01 18:00:38.819000',5,'Norman Bradley','https://lh6.googleusercontent.com/-fKsa4MhDeks/AAAAAAAAAAI/AAAAAAAAAAA/WpLR3f7CuGs/c-rp-mo-br100/photo.jpg','16389487648212004696',2739),('AIe9_BGErQpX2pRNZrXBy5NOsH0ef3tNhobXLDsR5g_65VNRzzp9ABkZNFdLYI23lp-yGE2PfJ3x4BKiU285D5ik0m2m6QZ62a8_6akvs32cWWg0NsR1bMs','Great nurses.. people are very hospitable and the wait wasnt long at all','2020-03-03 23:08:17.113000','2020-03-03 23:08:17.113000',5,'Courtney Serrano','https://lh5.googleusercontent.com/-TejWWZ35q0c/AAAAAAAAAAI/AAAAAAAAAAA/KkZLXL5Lg3s/c-rp-mo-br100/photo.jpg','2694018788013845459',21120),('AIe9_BGErQpX2pRNZrXBy5NOsH0eFbvznH0dfg1NKG1_2hu_FYfWqciz_3ChRI281D26eHNBXF7Zs2tpviObIQUgrKE6lCcihyKh45OFCqTa57XbbAf3Qe8','I was treated very promptly and with the utmost respect, which hasn’t always been the case with other emergency clinics. Dr. Soli specifically was very kind, gentle, and respectful; he made me feel safe. the staff was communicative and answered any questions I had promptly. 10/10 would recommend','2018-09-14 14:30:48.872000','2018-09-14 14:30:48.872000',5,'Hannah Logan','https://lh4.googleusercontent.com/-1nkyUDLgvok/AAAAAAAAAAI/AAAAAAAAAAA/kvqBTJi3T7w/c-rp-mo-br100/photo.jpg','3511292162159714121',7598),('AIe9_BGErQpX2pRNZrXBy5NOsH0eFcGN5rLUZablxIXJ0OtAhu0kzrjE4auZk77QKPi7h0MjAXAGApwxO5mxwk7caTBNml6GMnJLtx3sg0v9Amc4H6LVUm8','Excellant ER with a very kind staff. Dr Ashbrooks was awesome. Great place to go for an emergency.','2019-08-25 23:27:39.346000','2019-08-25 23:27:39.346000',5,'Debra Thompson','https://lh3.googleusercontent.com/-kB7VFmx3wvg/AAAAAAAAAAI/AAAAAAAAAAA/G4ba1pZbj-k/c-rp-mo-br100/photo.jpg','3272657195432704501',6905),('AIe9_BGErQpX2pRNZrXBy5NOsH0eFd-FB5xnlLYAnHJQrdcIwhKrgfbrqKSdUzeOAZjZOapX9v7sTyzcvREI-WeWujMcuY-zX0jFg8FFecGnwN8eyHrPcLM','These ladies working the front desk and the staff providing service in the medical section were fantastic and quick. Not only did the front desk show me superb customer service but they were so kind to my son as well. They were patient and nice. This goes for all signature care ER’s as well.','2020-07-28 01:44:40.147000','2020-07-28 01:44:40.147000',5,'Shayla G','https://lh3.googleusercontent.com/a-/AOh14GitqI6QhUlhbFp4BSkhQFbIuAmTGPrJXRReNTha=c0x00000000-cc-rp','14567670160750071148',21864),('AIe9_BGErQpX2pRNZrXBy5NOsH0efGP5Cgy9pCPROyScqU9ADSvy-MaUB06Z6u6kHQU0c-uPE6pX7l-2UnYS9Y6ubmOCrD82PTLXKgYPTTHJVL-JPuMtY90','it was a great place to get taken care of by Karen and Tracye volunteering to go to another signature care location very dedicated . Karen is over a great team of hard workers that want to get people in and out','2020-07-11 22:41:21.293000','2020-07-11 22:41:21.293000',5,'Mark Gonzales','https://lh4.googleusercontent.com/-0V1slihlO2I/AAAAAAAAAAI/AAAAAAAAAAA/xsFbO8aVR30/c-rp-mo-br100/photo.jpg','8918455867446117794',21583),('AIe9_BGErQpX2pRNZrXBy5NOsH0efhuh-omgMP2QGVsRF0BC1IHEP0J4ux1dL0qR_FZHbN7NYyntW59t3ZKjbHuxW500rSBgSuA1pkdkZnpQC1v2dCg5SH8','Super quick and easy care. The staff were super friendly and knowledgeable. The facility is super clean and comfortable. I would definitely recommend this place for all medical or Covid related needs.','2020-07-23 00:27:58.368000','2020-07-23 00:27:58.368000',5,'Neea Palmer','https://lh6.googleusercontent.com/-BQE4enGneuY/AAAAAAAAAAI/AAAAAAAAAAA/SJLuxMGnGgI/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',22666),('AIe9_BGErQpX2pRNZrXBy5NOsH0eFJbgvDQwCwOjC8bMdKv7jMsK0vrSdrCXjccPMfgRvr8uhJ-IZU2usM8g1ewT-hJluE0sDL-sjjk3p0hCySEGywpuG1A','I love this quick ER! It\'s always quick, people are always friendly. Anthony, Brad, Kristen, Kim, Dr Vakey were great!','2019-02-07 20:49:32.655000','2019-02-07 20:49:32.655000',5,'flash Chestnut','https://lh5.googleusercontent.com/-CjrCanR8vmU/AAAAAAAAAAI/AAAAAAAAAAA/5-bmLgnrX8I/c-rp-mo-br100/photo.jpg','16590124370714063921',3562),('AIe9_BGErQpX2pRNZrXBy5NOsH0efMoXDpF-HWEQsX9VxswHLUacxgBH215vWIxWf2p_zlu2wtRsthl4HoNfyBvukhHcocFkRc70D8Lu1-i2d1kTQMWkReo','Great staff and quick response time. Irving the RN was a great help!','2019-09-30 02:24:34.009000','2019-09-30 02:24:34.009000',5,'Daniel Moses','https://lh6.googleusercontent.com/-EX7RtGrnAwc/AAAAAAAAAAI/AAAAAAAAAAA/NkGN93W07FE/c-rp-mo-br100/photo.jpg','12541597562633926366',407),('AIe9_BGErQpX2pRNZrXBy5NOsH0efSXuD7MamOqGjEAouWFIrQoqSdR7lzgjOSCsBeUgLBAQKD7aqIAaLCERNU5duGzkEcwmdZ_m8fsdJ9Y_LySp_ZcD1b4','The staff and doctors are great. The wait time is virtually nonexistent. This is my first choice always! Professional and caring.','2017-07-28 19:33:56.667000','2017-07-28 19:33:56.667000',5,'Michelle Jordan','https://lh6.googleusercontent.com/-r4OtluvQu9c/AAAAAAAAAAI/AAAAAAAAAAA/ZSGakjdDwAc/c-rp-mo-br100/photo.jpg','3511292162159714121',7798),('AIe9_BGErQpX2pRNZrXBy5NOsH0eFxEHmbxhlc_KPwdY13Gl3z4e6_KimusD1LklaN_vfNrhCEFmy9mKntIRNYlxCB-7JfDm68rQpHrSzoK-wVTXPo3_4YU','I have been here twice already for covid testing. I had a good experience the staff is organized and have all the paperwork highlighted for your for easy filling out. The test was fast, and the while process was fast I was in and out.','2020-08-04 14:05:57.258000','2020-08-04 14:05:57.258000',5,'Crystal Izaguirre','https://lh3.googleusercontent.com/a-/AOh14Gi66fAP90Qaef6udoi-pQHZqI2XLgj3-AVYxPosyg=c0x00000000-cc-rp','8679688254631342173',22237),('AIe9_BGErQpX2pRNZrXBy5NOsH0efyd2ASfWKDFCqpsw90UpXY-v5W5JBzLxfBUhBscBNbyPpgSrgjC7Tf88NZcMI_CH4zoGGnrQ0uH0q851mLAKbmE4kcs','Excellent!','2018-08-21 15:05:28.548000','2018-08-21 15:05:28.548000',5,'Joseph Patterson','https://lh5.googleusercontent.com/-BP9xSmpLW3g/AAAAAAAAAAI/AAAAAAAAAAA/7bhyTtjgjYQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4442),('AIe9_BGErQpX2pRNZrXBy5NOsH0eG_6EQeyBNdMK4Jrccbxxe3siC9Jva3uxc37nwVVtAANKcwCtGWHTIaxA9KzqUUybpkXyskNZvODrdCKOHkuKStC_lS4','The lovely people at SignatureCare emergency center was great! They were very expedient and pleasurable to encounter. The have wonderful waiting for you guess. They also have great bedding areas where friends and family can accompany you. Dr. Kimball was awesome and so was the nurse and cray tech. All in all it was a great experience from the receptionists to the doctors and nurses.','2016-08-22 06:29:40.738000','2016-08-22 06:29:40.738000',5,'Christie','https://lh6.googleusercontent.com/-UBJiD6Oe5VY/AAAAAAAAAAI/AAAAAAAAAAA/ysTO0vRDfdI/c-rp-mo-br100/photo.jpg','3511292162159714121',7950),('AIe9_BGErQpX2pRNZrXBy5NOsH0eG3vC0Wxu0mqxW948dP8MFxGdfR9WUqSfBTjQmbOiI3I0uqPSsDBZX7AMUOv5n0fkEFf3PConTV_Pw2jOVMsPZuGCQ8A','Quick, courteous staff. Had a great experience. You don\'t have to wait hours to seen by Doctor like so called big hospitals. I strongly recommend. I visited this place 3 times for different reasons, every time I had very experience.','2017-10-19 16:32:41.966000','2017-10-19 16:32:41.966000',5,'Anil Bhimisetty','https://lh4.googleusercontent.com/-FTr67LNwh9k/AAAAAAAAAAI/AAAAAAAAAAA/q9LMHIAw5tc/c-rp-mo-br100/photo.jpg','17394740196501090048',4945),('AIe9_BGErQpX2pRNZrXBy5NOsH0eG6-IL3R0UHS6Rpj4gyLNEMv1Wyxhl7Sgafr7RdUAGKVC2WNjIn2Sphf8xdz2CFAnuumF9fomfZylL1bsWRjmk5UB8M8','Great experience! The receptionist Rebecca V. helped us immediately as we walked through. Less than five minutes of coming in, the nurse had already called my friends name to check on him. I definitely recommend anyone to come here for help!','2019-09-21 02:39:15.755000','2019-09-21 02:39:15.755000',5,'Akriti Regmi','https://lh3.googleusercontent.com/-WjLgCkkt4lU/AAAAAAAAAAI/AAAAAAAAAAA/A72zZ-6eb7k/c-rp-mo-br100/photo.jpg','16590124370714063921',3189),('AIe9_BGErQpX2pRNZrXBy5NOsH0eG6JJ08pziSKt7fkliydRcNA4nl74-Hn8ffLfKd-lWu7L_Dg_POX4vtqAYfYC0TJYO6FjYBHlZCfurpZlCEmrG53lFJo','Everyone was very nice and super efficient!!','2016-08-19 11:04:57.967000','2016-08-19 11:04:57.967000',5,'Christina K','https://lh4.googleusercontent.com/-OjvHatqDjgE/AAAAAAAAAAI/AAAAAAAAAAA/3SF1jRTitCE/c-rp-mo-br100/photo.jpg','3511292162159714121',7951),('AIe9_BGErQpX2pRNZrXBy5NOsH0eg7evAEvn4AW8CkJT1RHmTvNg9MoIZgaOwwOiKVKthC7ArI1seYfvBsE-qNGPpq0R9pd13miQAFLoFPqDuaz-G_AmgMg','I would go here before I go anywhere else. The staff goes above and beyond to make sure that you are taken care of. Even my grandbabies had received a small token just for being there with there MeMe.😍😍','2018-05-08 00:50:00.151000','2018-05-08 00:50:00.151000',5,'jane fernandes','https://lh5.googleusercontent.com/-xUcepZ-DxTs/AAAAAAAAAAI/AAAAAAAAAAA/QAGM3FTyoOQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9270),('AIe9_BGErQpX2pRNZrXBy5NOsH0eGBTf1atYBCZCqCVUxXheL1N5tnzKQaUh_MqGacsOIzwQMGFAoufTv36MxcCPIYMwuVtptWuoznYI7W_GyK8Z9L1qoOM','My first time coming here and I would come back if I ever need urgent care again! I was taken care of very well and moved swiftly! Dr Edwards made sure I was feeling great when I left!','2019-01-11 12:58:55.117000','2019-01-11 12:58:55.117000',5,'aisha rich','https://lh5.googleusercontent.com/-Jk6rh7mrqys/AAAAAAAAAAI/AAAAAAAAAAA/bEr_3qsc-Ig/c-rp-mo-br100/photo.jpg','17394740196501090048',4745),('AIe9_BGErQpX2pRNZrXBy5NOsH0egCaiugbavyZ5G-DK1W8cR0jLCnDt6jxgKqZZSV2aZ06Oi5ZjEX8Oqlu1wuas1XsaOGmz5hMMWkFL4qQhfFZER6c5SK0','I was greeted by Kim who made me feel welcome. I had less than a 2 minute wait before I was seen by Dr. Evans who explained everything very clearly and did a wonderful job. After being seen nurse Jocob helped to make sure I didn\'t have any questions and provided a care package. I would highly recommend coming here over other places. Very affordable too!!','2017-02-10 21:37:45.277000','2017-02-10 21:37:45.277000',5,'Warren Blanchard','https://lh6.googleusercontent.com/-tX8klyOaK3U/AAAAAAAAAAI/AAAAAAAAAAA/u4UYJ3KdhF0/c-rp-mo-br100/photo.jpg','16590124370714063921',4057),('AIe9_BGErQpX2pRNZrXBy5NOsH0egdSTAcj76DbfL-RgxOjeSkX1SwbtmhCEAjyy4dVJr7ita1GUZNELc_chyMlSzIQLkbGnXi_mtL5At2xtCTA6HEC-ITI','Everytime we have to go to an ER we go here. Great people, even better care. 100% recommend this over a hospital any day!','2019-12-31 21:27:18.297000','2019-12-31 21:27:18.297000',5,'Matt','https://lh3.googleusercontent.com/-SNL0vQWX_BY/AAAAAAAAAAI/AAAAAAAAAAA/ath3UwrpIBQ/c-rp-mo-br100/photo.jpg','8626688543755174284',14632),('AIe9_BGErQpX2pRNZrXBy5NOsH0egE_et91DJDXC8jbbau8dKi_E3euax5Uyx4MJb3xhZn83C5WiSXfl8LkoDtJbrt_j3KetKq6JqdZhow-f3uYgLAt4_-o','Kim and Lucas were very helpful and nice.','2020-02-18 19:00:57.725000','2020-02-18 19:00:57.725000',5,'Chelsea Clark','https://lh3.googleusercontent.com/-D0f5OfCxk8A/AAAAAAAAAAI/AAAAAAAAAAA/KVV_TcQURQY/c-rp-mo-br100/photo.jpg','3272657195432704501',14341),('AIe9_BGErQpX2pRNZrXBy5NOsH0eGISpAlDIsusRmtox_6vPi72SL80wqJnWmQRadIBbK09bUg5BTXlaeZCc8PX3Jp0KaAsaNQekvx8ts6nEdZvUTobJ3YA','Great! Was treated very quickly, and very effectively. The staff was friendly, and took great care of me during my stay!','2018-12-19 19:44:38.993000','2018-12-19 19:44:38.993000',5,'Derek Anderson','https://lh4.googleusercontent.com/-ocFl94xilMs/AAAAAAAAAAI/AAAAAAAAAAA/3yZN0nFn-qk/c-rp-mo-br100/photo.jpg','16590124370714063921',3606),('AIe9_BGErQpX2pRNZrXBy5NOsH0egJzHIWDNoEsg2NIcad73BCK8MNt-0ZgEiZlobh8Jqm6txCBKIdDWKaRwOL2YJSapjVLrHqTZMHD6S9X-AhpAcmvIsVc','The personnel at the SignatureCare Emergency Center at Memorial City were fantastic! When I checked in the receptionist was very friendly and concerned how I was feeling, and asking if I needed anything. I was quickly seen by the Nurse, Rebecca Smith, who was very friendly, and prompt! She asked appropriate questions, asked if I needed anything. She brought me a warm blanket which was very thoughtful! She was genuinely concerned about my health, and wanting me to feel better! When I had a breathing treatment she checked on me frequently to make sure I was doing OK. She also, covered all of my medications. The doctor, Dr. Craig Sylvester, was very friendly, and did a great job of asking about my symptoms, examination, and coming up with an accurate diagnosis. I also needed an X-ray to make sure I did not have pnuemonia. The X-ray technician, Aubrey, was friendly also, and concerned about how I was feeling, she brought the heated blanket to make sure I was comfortable during the X-Ray. She also did a great job of positioning me for the X-Ray. I would recommend this emergency center to anyone! You will leave feeling like you received great care, and the necessary prescriptions/information to get better!! They receive an A++++ from me!! Nancy H.','2016-12-05 16:33:13.299000','2016-12-05 16:33:13.299000',5,'Nancy Hickman','https://lh5.googleusercontent.com/-Ec5uuOo-Shw/AAAAAAAAAAI/AAAAAAAAAAA/yApOov7zrDo/c-rp-mo-br100/photo.jpg','14904078213800803294',2443),('AIe9_BGErQpX2pRNZrXBy5NOsH0egm2W8K9iM8d0TRr4UJelO_C3JBa6lVhmyyt_cQtnOxxW0gtYAdPmlHw7vaajvQJwITp3m0PM5rJL1XZyxGca-Uj1fvk','Shelli, Christopher, Dr.Lingan, Adam, Linda, and Christina C. We\'re absolutely amazing today as I went in for ear ache. They were very professional and informative.','2020-01-30 19:02:10.468000','2020-01-30 19:02:10.468000',5,'Kim Wittwer','https://lh3.googleusercontent.com/-1b1_kT7i3v8/AAAAAAAAAAI/AAAAAAAAAAA/Hv-e93uc-pY/c-rp-mo-br100/photo.jpg','16891069708558046635',13967),('AIe9_BGErQpX2pRNZrXBy5NOsH0eGMbs60NYYjG6rBP91npXG1tvWDoRUaEdusngGm3R0SlGpSL_qplzCL1REMdm-MeB2E1CncWMW1uozegHq7IJ5a3JdsA','Friendly and attentive staff give personal care!','2018-03-13 14:08:12.006000','2018-03-13 14:08:12.006000',5,'Sara Heald','https://lh5.googleusercontent.com/-4vw1T4W5JJ8/AAAAAAAAAAI/AAAAAAAAAAA/Q_trxG9E8O4/c-rp-mo-br100/photo.jpg','14567670160750071148',1648),('AIe9_BGErQpX2pRNZrXBy5NOsH0egpC40H6zE6bjveFZBldw4gifcHOcbWEIBTIxIinbmDVzHnqOIsuS92_GdBReqlJyDTMhfxSMongYlspzXhBRUOnHC5A',NULL,'2019-07-29 23:41:43.343000','2019-07-29 23:41:43.343000',5,'Lynda M','https://lh5.googleusercontent.com/-4LL9szinOuo/AAAAAAAAAAI/AAAAAAAAAAA/KTVNklwoANg/c-rp-mo-br100/photo.jpg','14567670160750071148',1267),('AIe9_BGErQpX2pRNZrXBy5NOsH0eGPCSEC1baGyv7SZlTULTcN9_-cF-nn8O13ls8cArQenV2uthQYBTo9W7AMDn5SblqA4SVJwl3cJEWvXbglghLvpbvaw','Tammy the nurse was amazing! Dr. Henderson explained everything!','2019-08-19 16:26:15.955000','2019-08-19 16:26:15.955000',5,'Daphne Carter','https://lh6.googleusercontent.com/-EKOd9aS13GY/AAAAAAAAAAI/AAAAAAAAAAA/hkjqp1_k1Kk/c-rp-mo-br100/photo.jpg','17898197009688164559',5578),('AIe9_BGErQpX2pRNZrXBy5NOsH0eGqRPHBegM7cdb30T966u9l6dKB_H7gEl7me-W_k2wUCun02LOyGZoaH8GcrU8u7lhrLvJ2TwbsgYn8PHDknIyTI5g3A','I was seen and treated very quickly in this ER. Dr. Farooqi really took the time to explain everything to me and the staff were so friendly, caring and patient. Thank you to Jordan, Ekaterini, Marcus, Jose and Jocelyn! What a great team!','2020-01-31 18:55:51.977000','2020-01-31 18:55:51.977000',5,'Norma Maree','https://lh5.googleusercontent.com/-1SsYGLUU1Js/AAAAAAAAAAI/AAAAAAAAAAA/rpy2ugMIK8c/c-rp-mo-br100/photo.jpg','16389487648212004696',10413),('AIe9_BGErQpX2pRNZrXBy5NOsH0eGqu9yHgyyC1e6dhl_6MPZ5bAqRXL6hbEADASp6CBLqneArwLWQNNtDB8NQ1bSkmGu82fk4-yvY70XgKqs8GifGP_L3w',NULL,'2018-11-08 17:36:35.558000','2018-11-08 17:36:35.558000',1,'ABEL HERNANDEZ','https://lh5.googleusercontent.com/-2Zfg8LISkLk/AAAAAAAAAAI/AAAAAAAAAAA/w7T-cVNGPXI/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',4765),('AIe9_BGErQpX2pRNZrXBy5NOsH0egRbCO6ZB08k1DyVAw3cbWp53rXNxnZwrdURHmdo0_jvXQQf1JT7kuRHrlon6yGx3Kip20bqspPd9YCykYV9JFnV7BmU','The service is above and beyond! The staff is always caring. I’m always asked “Do you need something to drink or eat?” or “Do you want a warm blanket?” Awesome hospitality!','2018-12-19 08:32:30.843000','2018-12-19 08:32:30.843000',5,'Kay Baby','https://lh3.googleusercontent.com/-HIcKTxLintM/AAAAAAAAAAI/AAAAAAAAAAA/OR8qrVZDUgk/c-rp-mo-br100/photo.jpg','8626688543755174284',8628),('AIe9_BGErQpX2pRNZrXBy5NOsH0eGri3xuQMVp-f9MZC4McQVkaV_5z0GRJnakZPG6RCX68sP_ag9ZPUcrDh5arVlCWfLJ-TFu8fwf801SvwTNcZppH29Hg','We stayed over night at the Montrose location, Mercy checked us out. Everyone accomidated us exceptionally. They are quick to the point and getting out was a breeze. The staff was very attentative and always made sure we were ok.','2018-04-01 15:34:07.678000','2018-04-01 15:34:07.678000',5,'Amber White','https://lh6.googleusercontent.com/-NbrsrUW3hog/AAAAAAAAAAI/AAAAAAAAAAA/rZjsz9IoCTw/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7714),('AIe9_BGErQpX2pRNZrXBy5NOsH0egTG7y6nYBhSaGkv5fw-EDWiJ_8I_KY-eXVon3qqT4nLGiw9THp6z0F_cT-oTtIE-qqzqAXF9AJDFS86bfmFqcqYnw2U','I had a great experience, from the check in process with Kayla to the back. I was very impressed with how well informed Dr Pham kept me during my visit. My nurses Tammy and Leslie made sure I was comfortable. I would for sure be coming back and will send my family/friends. \n\n Ana Aleem','2020-02-12 19:06:48.217000','2020-02-12 19:06:48.217000',5,'Ana Aleem','https://lh5.googleusercontent.com/-SqRCgomcwdk/AAAAAAAAAAI/AAAAAAAAAAA/OvnBfH1UaFk/c-rp-mo-br100/photo.jpg','17898197009688164559',14173),('AIe9_BGErQpX2pRNZrXBy5NOsH0egvkljpYCCsnSCwyZyJSfjtszKamBCPWcaCQXN-V12RpYOJitF2qyWZhsfUwMNl7KhG4-sxb_1QM2j62D_-yNdvZsaIM','Amy, Sam and Jemilat provided great care for us! Made us feel very comfortable.','2020-08-04 14:30:46.069000','2020-08-04 14:30:46.069000',5,'Breanne Davenport','https://lh4.googleusercontent.com/-16cWLlbKK7Y/AAAAAAAAAAI/AAAAAAAAAAA/mWOJxhv0kEw/c-rp-mo-br100/photo.jpg','2077061009497551125',22736),('AIe9_BGErQpX2pRNZrXBy5NOsH0eGYzcjMIQVar_sszXexbTTw1Vws87zuax4zbmSFL2F9bzN0vEs9PEjHzO6VlJGn9--8MrRDz8GmbiOy9vE7dlBU19QhY','This Location Was Amazing From The Front Desk Mrs.Tatiana Was A Great Help To My Nurse Meredith Who Made Me Feel Very Welcome And Comfortable To The Doctor Who Knew Exactly What He Was Talking About And Got Me In And Out Thank You So Much Dr. Sylvester Will Defiantly Come Back Here!','2020-01-03 02:12:29.517000','2020-01-03 02:12:29.517000',5,'Chelsea Estrada','https://lh6.googleusercontent.com/-U-6GLyRyDkA/AAAAAAAAAAI/AAAAAAAAAAA/KNDm-IhD_wo/c-rp-mo-br100/photo.jpg','14567670160750071148',1148),('AIe9_BGErQpX2pRNZrXBy5NOsH0eh0EY5EXm4kB2ueeH3w2Qjj65KY8tISHomoOpRpyMUH8Qy53cK4znihkTsRqjo1Gdki-qi2Y4UQXy8XWVmgOiGjYlIUc','The staff is excellent! Anthony Dr.Harjai JR Natalie. & Alexis were all very awesome!','2018-11-12 19:14:26.115000','2018-11-12 19:14:26.115000',5,'Jessica Townley','https://lh5.googleusercontent.com/-evbSkysMmOE/AAAAAAAAAAI/AAAAAAAAAAA/d6Xqbhi7SWA/c-rp-mo-br100/photo.jpg','16590124370714063921',3653),('AIe9_BGErQpX2pRNZrXBy5NOsH0eH28QNSSs7kqLi1lcBwQXA5Ug18LSgY5h4fdrUVOAwhFwz9C4jeb8I-0xTxQiMw2aQYLeQTQ0Bmb7GQrFD8p3mmqyY6Q','Dr. Soli and his staff were AMAZING!!!!!! I walked in with a broken shoulder and the acted quickly and with extreme care. They were not only very professional , they also seemed genuinely thoughtful and caring for my health.','2017-10-01 02:14:20.745000','2017-10-01 02:14:20.745000',5,'Jorge Ordaz','https://lh5.googleusercontent.com/-qRLQMK4JATY/AAAAAAAAAAI/AAAAAAAAAAA/8URaZg3m_6U/c-rp-mo-br100/photo.jpg','3511292162159714121',7784),('AIe9_BGErQpX2pRNZrXBy5NOsH0eH639PFdFKGKGj70WK78ix_HF7jJ91_hYl5PB05xOIyMyvqX5LcHdo_J51NfLJOEtpZw4NZzPy9HhFbP9G7pMAY2dWg4',NULL,'2019-02-16 02:26:32.780000','2019-02-16 02:26:32.780000',5,'Code Monkey','https://lh4.googleusercontent.com/-5ugLtgi5zUo/AAAAAAAAAAI/AAAAAAAAAAA/KmD6kDGOzjg/c-rp-mo-br100/photo.jpg','8626688543755174284',8566),('AIe9_BGErQpX2pRNZrXBy5NOsH0eh6SadbXHtEm9mADzJFUaAw07SSg6dal4q7HCU1W9jW2ODtPMsRwW3t8bPe-5oY_orEPFs_weaaDKe06YIRnXLsgLmAM','great care,fix my problem and nice doctors and nurses!!','2019-06-12 06:23:43.623000','2019-06-12 06:23:43.623000',5,'Lunyu Zhao','https://lh3.googleusercontent.com/-mIkII1-VRf4/AAAAAAAAAAI/AAAAAAAAAAA/boViV0VBDTM/c-rp-mo-br100/photo.jpg','16590124370714063921',3358),('AIe9_BGErQpX2pRNZrXBy5NOsH0eHAu742KzXe7F0Qi-HTt5NHxggC6L2007d5Lw93C05Hkkp_cws00BF5kW9vljgb96FFTpNZCAl8eNcZ128RyuErETFY4',NULL,'2019-07-28 04:03:22.427000','2019-07-28 04:03:22.427000',5,'Anissa Marie','https://lh6.googleusercontent.com/-PIUaS_bqo2s/AAAAAAAAAAI/AAAAAAAAAAA/plsXFUEHqVM/c-rp-mo-br100/photo.jpg','16590124370714063921',3275),('AIe9_BGErQpX2pRNZrXBy5NOsH0ehjaM5l1HFn_yoZpJpMkAfzsPPClxt3RGfuS_FN0m-k2YXXZ8F_oC8mjxaTcBXjU8TsJpX3ErDU9KbJUfvwRQptwm8ho','Very rude staff. I went there to get tested for COVID19. They were extremely unprofessional. Out of shape employees. I will never recommend this place. stay home and wait for the morning before you go there.','2020-08-10 17:29:17.002000','2020-08-10 17:29:17.002000',1,'Omer Yousafzai','https://lh3.googleusercontent.com/a-/AOh14GhfP-bAkDlpoRwDig9F8NDlyPf13RGlC-Oy7MgL=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0eHjaXps7goHPzVPHCStkKyjcA82CQnSbCOFh4U2-Mp25JarR5nbuPdWgLHZvIonPHzIMZx_MTjRcZ887CdOinsxBTw0w','Alexis, Kristen, and Kathleen helped me out! Service was very fast and very friendly!','2017-10-16 00:31:17.644000','2017-10-16 00:31:17.644000',5,'Kevin Scott Connally','https://lh5.googleusercontent.com/-IebvPl_I6xg/AAAAAAAAAAI/AAAAAAAAAAA/cgMtaajZ3n0/c-rp-mo-br100/photo.jpg','16590124370714063921',3922),('AIe9_BGErQpX2pRNZrXBy5NOsH0eHrDXzQnP4xrAAABz32uSz_mbrdKt2-ro_yGCJGr42Y8-_cylPbl4pKcj4cvH4NubRZvZTHGQXvASLtZ3spjXaHu_mpo','Rebecca V. Was so helpful and the facility was very clean and well kept. Would recommend','2019-09-19 05:15:17.586000','2019-09-19 05:15:17.586000',5,'Shelby Risinger','https://lh3.googleusercontent.com/-aKToopA8cnM/AAAAAAAAAAI/AAAAAAAAAAA/twHkk5DkCmQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3198),('AIe9_BGErQpX2pRNZrXBy5NOsH0ehSKBB3Bp2RfqmluFSZDojx_28PfZDHbn3eyhotEuSJVW5qUw8kmdotI-6XQLKlfxjL1_84h75XRG9eoOw7lQsQ-72C4','Everyone here was excellent I received the help and care I needed right away.','2019-10-01 16:46:58.409000','2019-10-01 16:46:58.409000',5,'Love ToEat','https://lh5.googleusercontent.com/-OgKDdOU4Tak/AAAAAAAAAAI/AAAAAAAAAAA/wjq7FkTyAFc/c-rp-mo-br100/photo.jpg','8679688254631342173',8798),('AIe9_BGErQpX2pRNZrXBy5NOsH0eHTb12DMikRzmiBGauBmdjGbgt16c9JOCLcF7vvpCn4_jgI3HQobDytArszVfFHDS9xlYdGboCFJPCpGvl-fR3U-DNw8','They are very helpful and so sweet','2019-05-22 19:39:39.058000','2019-05-22 19:39:39.058000',5,'Juanita Choyce','https://lh5.googleusercontent.com/-rB14Ofoe8tA/AAAAAAAAAAI/AAAAAAAAAAA/stRyYvFi7dU/c-rp-mo-br100/photo.jpg','2694018788013845459',6149),('AIe9_BGErQpX2pRNZrXBy5NOsH0ehTcV2G8Zf4zPLEG9l98zEtCD-GW6MkaG01oTWAqTtxgbBP6WGxOcL4Ywc7qcL8jovJHUu_ulDgP1a-gHz9_LyEfZNk8','This emergency facility was very quick and got me in and out. Tanishia was very friendly and very efficient with getting me in immediately. Dr. Erica Daniels was a wonderful doctor and answered all my concerns. Would definitely recommend this place to anyone!','2020-03-02 05:39:17.375000','2020-03-02 05:39:17.375000',5,'Jacqueline Echevarria','https://lh6.googleusercontent.com/-DSzaW2K5dLo/AAAAAAAAAAI/AAAAAAAAAAA/LS36CKh1wHo/c-rp-mo-br100/photo.jpg','17898197009688164559',14115),('AIe9_BGErQpX2pRNZrXBy5NOsH0ehuFnHmZwKrb4MqcNXFC4Q_NJHqyNMFEC3B6Ay-P1u6kOvFa_yalMDSUxCQ26bcdlc4okdDKm7em9X2QM1djNBZxi9Ik','I had a great experience here the staff was nice and so well organized you would\'ve thought they were 1 big family that cared for others as their own family. Jennifer Diggs gave me a warm welcome soon as I walked in John Bell greeted me and made sure that I was very taken care of','2019-07-14 15:44:07.420000','2019-07-14 15:44:07.420000',5,'Shantae Brooks','https://lh3.googleusercontent.com/-GVJ0ysK3r1A/AAAAAAAAAAI/AAAAAAAAAAA/Ung2yyjIneU/c-rp-mo-br100/photo.jpg','8626688543755174284',8432),('AIe9_BGErQpX2pRNZrXBy5NOsH0eHV4P4mc9gARMiBPX9U5NgO3PKRFwsK01YAsHQwEs3GFJTFbO9slEhDjPCxa4sk0vl6B2RulnUwgBinUI-C3L2HXHvGA','Theresa Rn ,Carolyn Rad tech and Dr Oslecki were amazing . I felt comfortable and the staff was knowledgeable about my diagnosis . I will recommend to all who are sick and in need of emergency care .','2019-07-17 05:34:42.719000','2019-07-17 05:34:42.719000',5,'Caitlin Barraza','https://lh6.googleusercontent.com/-gwWBZXZvykE/AAAAAAAAAAI/AAAAAAAAAAA/ES37DJSO3XI/c-rp-mo-br100/photo.jpg','6521947413723274945',8191),('AIe9_BGErQpX2pRNZrXBy5NOsH0ehWliuj1-7P5NmSr7D2LnmWkP4t3bnCU3d1wh0U7RcyWsbbzw1d4-zWSv_ki7XyqGyNJFZCsGtTtsEDazu0ZU_z2_kjk','Yesterday i went and had an amazing experience. They took me in no less then 5 min. The staff were really nice talkitive. Funny. ..','2018-11-07 12:25:07.677000','2018-11-07 12:25:07.677000',5,'rhita rosales','https://lh3.googleusercontent.com/-hsExTEV6-Kw/AAAAAAAAAAI/AAAAAAAAAAA/4urb3nYzfbs/c-rp-mo-br100/photo.jpg','14567670160750071148',1461),('AIe9_BGErQpX2pRNZrXBy5NOsH0eHwU4zjFsebOTOdQRtuouB7ggM_9diboONEZb4nHF5syXvE9E-kizNGgNthysJr3iqloZvF1ydv4Q14zRDICEBbVczTs','We knew that we were in the right place on a Sunday morning when we were greeted so kindly by Cynthia! Once we made it to the back, prior to seeing the doctor we were met by Theresa and Johnny. Johnny was our nurse and he was very attentive and answered all of our questions. Lastly we finally met Dr. Smith. Dr. Smith\'s bedside manner was unbelievable. He took really good care of us and we left knowing that we had received the best care. Thank you to the ER Team for taking good care of us. John C.','2019-10-23 01:23:16.025000','2019-10-23 01:23:16.025000',5,'Lisa Champagne','https://lh4.googleusercontent.com/-Qr3rzlktEbk/AAAAAAAAAAI/AAAAAAAAAAA/Dh83qWWoNP4/c-rp-mo-br100/photo.jpg','14904078213800803294',13671),('AIe9_BGErQpX2pRNZrXBy5NOsH0ei_KFq868FVXvLqrzoJ2TA1AzZ0b3m--bys4T8EzwPjAKluOXoSak-yILhHSbQ7Pwf7RUQe9dwcGhUDKutK_uM848ZK8','On Christmas Eve (of all days), the severity of my daughter\'s condition became apparent. I took her in and she was diagnosed with Flu B. That\'s the short of it.\n\nOn Christmas Eve, the staff at SignatureCare (SigCare) were kind, friendly, caring, helpful, jovial, welcoming, non-judgmental, accommodating, and mostly not mad at the world for working on Christmas Eve.\n\nWhen I cam in the door, Lorena T. welcomed me with a smile and kind words to my daughter. She was an expert at getting exactly what was needed to move into a position to receive care, and was aware of our position and did not harass us about paperwork. \n\nWhen we got to the back, Nurse Remington doted on my daughter and was amazing at getting her cooperation. The Tech, Rebecca, and Nurse were a great team and had my kiddo ready when Dr. Harjai came in.\n\nEven when JR took the x-rays to confirm pneumonia, my little girl was at ease because of the amazing staff and experience here.','2020-01-04 14:22:02.465000','2020-01-04 14:22:02.465000',5,'Dailey Do','https://lh4.googleusercontent.com/--gKKM9q0Xoc/AAAAAAAAAAI/AAAAAAAAAAA/rq78gNU3OLk/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',2990),('AIe9_BGErQpX2pRNZrXBy5NOsH0ei46dZ0P04qhnSe45pEe2fYNvpkj8TnFnPIX9dd7bvaeJGReQX-V1Fx8MhG3Tz8odTXssvdev7UPM2HE5suSR5EImh2Q','Everyone was very kind and helpful.','2020-02-12 06:43:05.049000','2020-02-12 06:43:05.049000',5,'Maria Gonzalez','https://lh5.googleusercontent.com/-_qpUPfev2VI/AAAAAAAAAAI/AAAAAAAAAAA/soABTr-kiBQ/c-rp-mo-br100/photo.jpg','12541597562633926366',13381),('AIe9_BGErQpX2pRNZrXBy5NOsH0ei9WsC6SOHKHX5TjFrQsI6Ljyn3ViV30S3O7KKQ9GItC0Gj36hIg8Gp4ZvUshY5LbeO-AS5Ietirq5tFWzsF4dv78Dzs',NULL,'2020-03-14 14:00:16.751000','2020-03-14 14:00:16.751000',5,'Tiffany Ball','https://lh6.googleusercontent.com/-9eV8BiReZo8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm3L7qGg9n4XPOulLU1xGQFdEBKqQ/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21133),('AIe9_BGErQpX2pRNZrXBy5NOsH0eiAqnpaWxdXrG4HyWN1BPULs0A_kYVkFbwo2GiMNLKp_Co71IFM6D5aogMbfcbqFgpIUrB3x2JNjAdOlLooS5FHI21u0','Everyone was very nice and friendly and thoughtful Dr. O\'Malley and Alvean A and Tricia and Sibienne and Bryan all very nice.','2019-11-14 20:32:01.415000','2019-11-14 20:32:01.415000',5,'Noda Roland','https://lh3.googleusercontent.com/-Ya-V5ud1gh8/AAAAAAAAAAI/AAAAAAAAAAA/-VaDx1MrRIQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2701),('AIe9_BGErQpX2pRNZrXBy5NOsH0eIBdlgQI8a2_MU8PP-VePqeQBqSyBJbzyP09yo3-GQFSv_kAdHYeRw-khhma8XIsDBBOcs6HhZWVGJX-6GeQ0prupECQ',NULL,'2017-11-27 01:35:35.117000','2017-11-27 01:35:35.117000',5,'Ivee Syon','https://lh6.googleusercontent.com/--HuJhYUEdbc/AAAAAAAAAAI/AAAAAAAAAAA/25vRrB2AsI0/c-rp-mo-br100/photo.jpg','8918455867446117794',9332),('AIe9_BGErQpX2pRNZrXBy5NOsH0eifd9fTyITzryd1RJ22qWiupTgtk14JyneoPIcRIerNjVqnsD87vY5QwjLGkQR8PtEEGNCrkjfTNp6vq1_1ekiKNfF6U','Staff was very friendly and helpful, service was fast, bedside manner was professional and comfortable.','2019-08-05 19:05:33.915000','2019-08-05 19:05:33.915000',5,'sharamiesays','https://lh4.googleusercontent.com/-NbX4nbxTcsE/AAAAAAAAAAI/AAAAAAAAAAA/Ub5FVQq05UM/c-rp-mo-br100/photo.jpg','3511292162159714121',7224),('AIe9_BGErQpX2pRNZrXBy5NOsH0eIfMTxWUNGb04vGNZMGD4FH7UGiNu9_Qz7_n3onqZuGKCKx-2tvQ2I22heAS4RwfHp4yL_-R0EncjibDScc-emRDXW9o',NULL,'2015-01-11 20:09:28.830000','2015-01-11 20:09:28.830000',5,'Epicwarrior 2124','https://lh3.googleusercontent.com/-I6pq6zRJpcY/AAAAAAAAAAI/AAAAAAAAAAA/laMjvOx-OTM/c-rp-mo-br100/photo.jpg','17898197009688164559',5960),('AIe9_BGErQpX2pRNZrXBy5NOsH0eihoxXZFNX2rTa6oMcq03A0fSgYGRGkaMexJnNvgp9l1tavrbxxDzs1kbWy9Yv2SFFoqt170SdRrsXfcFBjmERMrXdXY',NULL,'2019-10-09 04:51:07.459000','2019-10-09 04:51:07.459000',5,'Austin Burba','https://lh3.googleusercontent.com/--3nExfZKqJk/AAAAAAAAAAI/AAAAAAAAAAA/QUtudn6tTOA/c-rp-mo-br100/photo.jpg','6521947413723274945',8124),('AIe9_BGErQpX2pRNZrXBy5NOsH0eIhZj0GRnHVWitRqDhbLJEqsdlbvXDgKAKwwohzSmCDuJ-Uxf19vZGWumu7lBZNevzBTDCAgik5XU9FMyUT3VgzvCvYg','Rebecca V. And Dyveliz were very personable and gave us snacks and drinks.','2019-08-30 01:56:39.996000','2019-08-30 01:56:39.996000',5,'Haley Horton','https://lh3.googleusercontent.com/-N7oY5kOyU6Q/AAAAAAAAAAI/AAAAAAAAAAA/efP61dkRzZ4/c-rp-mo-br100/photo.jpg','16590124370714063921',3232),('AIe9_BGErQpX2pRNZrXBy5NOsH0eil4j44ukc9GnHkNyr5in9oldwpkN0-aszd4Aamb1z1anPkapY3fxf6fGaqdlR8im3hRDvINRD2UvIPFEfdkVjto8TlQ','Great staff! Thanks to Dr. Tran, my nurse, Katrina, and the registrar, Therisa for my care!! You all were very helpful and friendly! \n\nP.s. Thanks for the great food recommendations, Therisa & Katrina! My husband and I definitely appreciate it!! 😉','2019-12-20 04:14:41.718000','2019-12-20 04:14:41.718000',5,'ShaRoya Scott','https://lh6.googleusercontent.com/-I2iZWKRuo6I/AAAAAAAAAAI/AAAAAAAAAAA/gwBF-xAE21Y/c-rp-mo-br100/photo.jpg','8679688254631342173',8685),('AIe9_BGErQpX2pRNZrXBy5NOsH0eimUgyiTzfrH79_-u8Jh5K3DXlsiLC0XKcHzAB0XU6NEhj8Mrtc59Tuhc8fH5blyyJgpppCUaWPkBJoFnJPjU4zAdZhA',NULL,'2020-07-11 02:35:16.997000','2020-07-11 02:35:16.997000',5,'JOHN OYENIYI','https://lh3.googleusercontent.com/a-/AOh14GiEqJssLCvZDIdSYtcLFYFn6lCqo9u4hUvXnfP3fg=c0x00000000-cc-rp','17394740196501090048',22079),('AIe9_BGErQpX2pRNZrXBy5NOsH0eipKzJkqwPnBXboFP5p5Bg8xP5WT1RO5DLKC4lvtu9J3qgLqEozpu8C9XEshqOesFy9u_4Zd0z1xKhI96TOHGWj-_kDA','I love coming here they are really Good dawn she the Rn she is the best she is good with kids can. Rt he good and the Dr. Pham good they are so nice and sweet','2019-01-20 15:35:26.929000','2019-01-20 15:35:26.929000',5,'Brittney Randle','https://lh3.googleusercontent.com/-LQf_aonDzEA/AAAAAAAAAAI/AAAAAAAAAAA/WkFSr7JltSA/c-rp-mo-br100/photo.jpg','17898197009688164559',5883),('AIe9_BGErQpX2pRNZrXBy5NOsH0eIR4m1R1Hpfgoq2G6pT8Dyigtg-5t3SpaqzmmY3lyoo_HR65NpEFq2KTxLMRIm18kxyt6tskc_VKXnZXnFk8PpyePXBM',NULL,'2020-06-24 18:56:42.154000','2020-06-24 18:56:42.154000',5,'Anael Colunga','https://lh3.googleusercontent.com/-rCzJUWFMR0w/AAAAAAAAAAI/AAAAAAAAAAA/_IDYrqyHisc/c-rp-mo-br100/photo.jpg','14567670160750071148',21286),('AIe9_BGErQpX2pRNZrXBy5NOsH0eIRAYzMWJ-ILTCS8B4uIhnvbwUTd9w53Elho8yqQGpAvL4RphvZH9l126u3YjelyT73T3iYYMWH4KKmvwwkUMzYdOeSQ','Efficient and fast. I felt secure with Leah. She has a really cool interaction with the patient. Thank you! Keep up the good work.','2020-08-01 22:58:47.040000','2020-08-01 22:58:47.040000',5,'Daniela M. Zolezzi','https://lh3.googleusercontent.com/a-/AOh14GjsHDrxgk43xCHd95P7gEfFptZDDYTj5MDlAZUELg=c0x00000000-cc-rp','13486358490203335051',21832),('AIe9_BGErQpX2pRNZrXBy5NOsH0eitjV9nqAgmg21PFBGjN8jMOqhMFtXLnLgMB9REhsZxYfSc1KBsOTvRTmYLmEp3HBllZIfixsoNVdegJQZ739rKL6qbQ','Awesome service from Maya at the front desk and the nurse called patients in quickly!','2020-02-11 22:56:21.891000','2020-02-11 22:56:21.891000',5,'Adrienne PCC','https://lh5.googleusercontent.com/-W7rXjfKRhxU/AAAAAAAAAAI/AAAAAAAAAAA/ishTtks7jc8/c-rp-mo-br100/photo.jpg','12541597562633926366',22465),('AIe9_BGErQpX2pRNZrXBy5NOsH0eiUtgYcSlK0_5KPJKbqssskP5Nw7wMnv_RGvQlbUWODtTJMdB2S3v0h0GIglE3bSqLmGXNyGdztVeWLTaGSo0Fm_l-Dw','I had Registration by Lorena T and Amanda C they were great, as were Jeri D, Tori W, Lindsey and Dr Vakey!','2020-08-16 14:47:37.498000','2020-08-16 14:47:37.498000',5,'Sarah Bradley','https://lh3.googleusercontent.com/-1FKs8hL9JQI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckpGyXDHLhlNbBgh_BinmFn93Gqzw/c0x00000000-cc-rp/photo.jpg','16590124370714063921',23054),('AIe9_BGErQpX2pRNZrXBy5NOsH0eJ_v4NUIf4mKkygR6esppl6UzTSwvsSdIGFlyYAe3RFW2417vsve3UW4BPNbzNlPennZhx6dmW8DdZOLoUZ4VBMqz4XQ','Everyone is so nice. Niki was so attentive attentive . Excellent service.','2019-11-10 01:35:06.274000','2019-11-10 01:35:06.274000',5,'Garrick Whitlock','https://lh3.googleusercontent.com/-ENCiiC9LMgU/AAAAAAAAAAI/AAAAAAAAAAA/W_HCEzz0s3o/c-rp-mo-br100/photo.jpg','14567670160750071148',1198),('AIe9_BGErQpX2pRNZrXBy5NOsH0ej3CcHJ3JWfDCOv6dqWgxSaMzIA2iaWyU-q8Ys9ys9N3Vu0HWqabf33O6MDL6cAdEtaH3e2XdvTozLXxWl-cZ_3CKOQo','Brought my husband in and he was immediately seen & taken care of. Everyone was very nice with great customer service, very thorough, and explained what was going on with him where we could understand what exactly they were explaining. So glad we came here...big thank you for your exceptional service starting from Stephanie-registration, Rollie-nurse, Natalia-rad tech, Marsha-echo tech, and Dr Gringlatas 😊','2020-03-07 06:16:58.261000','2020-03-07 06:16:58.261000',5,'Jena Guerrero','https://lh3.googleusercontent.com/-rLa7enbQirA/AAAAAAAAAAI/AAAAAAAAAAA/6VhLdDPqRpU/c-rp-mo-br100/photo.jpg','8679688254631342173',20191),('AIe9_BGErQpX2pRNZrXBy5NOsH0ej6L3z3Lc2vP0zEC6QKaYchzngWnjqUtTdEeaxuxEZ-dr367ljignfZE0ljJkRWjJdcFH2_IHIlnG8__dp11XRxKgEMU','The staff is extremely helpful and courteous. Norma was my tech and Robert was my nurse. I would highly recommend coming here for any of your medical emergencies.','2018-08-14 22:32:45.849000','2018-08-14 22:32:45.849000',5,'dustin Pitre','https://lh3.googleusercontent.com/-Pw9PmXkbZu8/AAAAAAAAAAI/AAAAAAAAAAA/dLF6Ahuqr10/c-rp-mo-br100/photo.jpg','8918455867446117794',9245),('AIe9_BGErQpX2pRNZrXBy5NOsH0ej7hfbZEOkMpmWj5MH9kWuMKte3u3aTPvS9a0FyVRDtNd9EodeeHrtdHwypqb0H6fU1KFAbndFX9ur9Xvp1DGy9HPdPs','This is my second time at SignatureCare-College Station. This time I took my boyfriend in on an emergency after I had received such great care the first time. Every employee is extremely knowledgeable, quick and caring. They definitely do everything possible to make the patients comfortable and taken care of. Starting with the front desk, Kim, the tech, Rebecca and J.R. Our Doctor, Dr.Vakey provided excellent service and the nurses, Jacob, Anthony and Cat as well were so amazing. Here, you are in the best hands in College Station!','2018-11-30 00:56:58.663000','2018-11-30 00:56:58.663000',5,'Marley Hofmann','https://lh6.googleusercontent.com/-E9rsCCDLI_4/AAAAAAAAAAI/AAAAAAAAAAA/-VLelNwbnJ0/c-rp-mo-br100/photo.jpg','16590124370714063921',3629),('AIe9_BGErQpX2pRNZrXBy5NOsH0eJaBOoqDYogrX_O2Vvo2EUN9pzSWvfoZEgGrWGNjEmcADoCqtihgOKJvVymFU6YCWPNAAVKkBe41nvRHqCF7_B6GntYA','They took very god care of me and made sure I was comfortable the whole time with my broken foot!','2019-07-01 05:05:36.014000','2019-07-01 05:05:36.014000',5,'Clara Campbell','https://lh3.googleusercontent.com/-KSMkZIa5IrY/AAAAAAAAAAI/AAAAAAAAAAA/84kTMMnJNt4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0ejaxaOof9MPQPcrr21eHsE21G5qme3qLX046F_kYmG09ObWDnzxyD9o8mzYjbmWX46-lUK1M2ZXguLqb2iI_9pyWnxdw','Best Emergency room ever, very fast and friendly. Thank you Brittany B she explained everything to me at the front desk customer service was exceptional.','2020-03-05 22:06:31.644000','2020-03-05 22:06:31.644000',5,'Monequi Evans','https://lh4.googleusercontent.com/-ttMnOltmQEc/AAAAAAAAAAI/AAAAAAAAAAA/ekW3xcyHQZU/c-rp-mo-br100/photo.jpg','2694018788013845459',21119),('AIe9_BGErQpX2pRNZrXBy5NOsH0ejD7njEfBQlvoupThzdReT82fGzhSvstaneXVd4CusarTmmzdi-JRSsBu3OryyPYwp8t_8sCxvbu2DM3ItyhWF5-dlBk','SignatureCare had great staff and very fast service!','2020-02-11 18:04:18.457000','2020-02-11 18:04:18.457000',5,'David Zuniga','https://lh3.googleusercontent.com/-2UHZv1C3bx4/AAAAAAAAAAI/AAAAAAAAAAA/ePSWQGn5GQA/c-rp-mo-br100/photo.jpg','16590124370714063921',13868),('AIe9_BGErQpX2pRNZrXBy5NOsH0ejEeOamIjlAHXvwACD3A3L98pfbcL-ekL3U4DDssllskg9S3G_Bk_WdWXJSCUkHjv63t0PA498QqVr0Xd_8u0EdWtLQI','Very pleasant staff. They made sure my son was comfortable','2019-02-12 22:16:38.396000','2019-02-12 22:16:38.396000',5,'shaketha anderson','https://lh5.googleusercontent.com/-OvFUOSSs2gY/AAAAAAAAAAI/AAAAAAAAAAA/dFy4c1NG0cA/c-rp-mo-br100/photo.jpg','14904078213800803294',2170),('AIe9_BGErQpX2pRNZrXBy5NOsH0ejIB_4qJzifkXAFUnz9iZUD-ilUA1MEDblqSLQZTKT9PvbA5u6Wd8htQz0dgu8Gs2r2mOJVqglSHXGZMyI8RqZdNPJ1U','Signature Care Copperfield was great. \nAs soon as we walked in we were greeted and asked what the problem was so we could be taken care of. Very friendly staff, made the patient laugh while they took care of them. All questioned were answered and staff made sure we received all the information we needed before walking out. Thank you signature care.','2019-05-13 18:17:46.025000','2019-05-13 18:17:46.025000',5,'Emely Lopez','https://lh6.googleusercontent.com/-X8UyDYf6et4/AAAAAAAAAAI/AAAAAAAAAAA/kBm-h2W2EcA/c-rp-mo-br100/photo.jpg','17898197009688164559',5741),('AIe9_BGErQpX2pRNZrXBy5NOsH0eJivg3lpfTvYUm41ymFJEQtjwc7uDvFoGmEXKV_DeSRUC7LC9j0gfMai__n04TaX4Po1Cti4Z7WMiNjc4ZEQYdyYZM6g',NULL,'2019-02-01 12:38:19.079000','2019-02-01 12:38:19.079000',5,'Marina Medrano','https://lh4.googleusercontent.com/-SEwrBNLr6UU/AAAAAAAAAAI/AAAAAAAAAAA/rfl7zU5O2vM/c-rp-mo-br100/photo.jpg','3511292162159714121',7423),('AIe9_BGErQpX2pRNZrXBy5NOsH0eJiWxdunvgrT8uH9M4QNq3X19KlfDxaK9W-UFmpG1UzzzKQMwzvOgWRXV3DfiQbKWwkeyiLkQwMDpmwsEgAlJ1tybx5M','Very pleased with my experience here. Was in & out in under an hour. Lorena at the front desk was very welcoming. Nurse Brad. & Dr. Akunyili made me very comfortable.','2020-01-12 17:43:51.124000','2020-01-12 17:43:51.124000',5,'Krystle B','https://lh4.googleusercontent.com/-nBELJ_EsI9s/AAAAAAAAAAI/AAAAAAAAAAA/x_y-CfgkXz8/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',9552),('AIe9_BGErQpX2pRNZrXBy5NOsH0ejkbUl7X9h9rMLuw8SV3thNlOkOIGqHk1cUm1J9cmPrPWe-BZNbtxNsClYpILDM9EpAzqlQ0bydcGrDmRA_eArWrnybs','Even though I was kinda out of it at his visit, the front desk was very courteous and very helpful. Had all the information I needed. Was very friendly. The Dr was exceptional and very knowledgeable about my needs. They didn\'t try to push me into anything I didn\'t want done. Nothing was done without my knowledge or permission.I have to thank him for my care . I would highly recommend this place to any and everybody that needs medical care. The place was very clean. It was a fast and every efficient visit, even though I did get transferred into the hospital. I am glad he helped me to follow through going into the hospital. I had a very easy transition. I went from the urgent care facility into my hospital room. They took care of everything for me.','2017-07-11 18:22:59.820000','2017-07-11 18:22:59.820000',5,'Hilda Kellogg','https://lh4.googleusercontent.com/-DHW24uihNAw/AAAAAAAAAAI/AAAAAAAAAAA/v7I-vivGtoU/c-rp-mo-br100/photo.jpg','14567670160750071148',1797),('AIe9_BGErQpX2pRNZrXBy5NOsH0eJMVPiXKb78RiYvdCJr448XsKRuKXxjHejVV4O5He9Wm1onBzVpAk5NaF_w2GjYKlpU-q8bz0JY-E0bR8tXzSD3H93ww','Staff was good, Katrina was nice and attentive.','2019-05-29 09:39:58.638000','2019-05-29 09:39:58.638000',5,'Cristal Zamarripa','https://lh5.googleusercontent.com/-P7HVYBShn3g/AAAAAAAAAAI/AAAAAAAAAAA/VjD5tF71Vrg/c-rp-mo-br100/photo.jpg','8679688254631342173',8839),('AIe9_BGErQpX2pRNZrXBy5NOsH0ejQhT2bYQ4xf3SF3N96fk_gdksA54bpBfCduSTIKocCVvTg8NoYiuovpeFDqE8JmO0a2yRzU2m4ifg7Y4FyvrQ5oEmP0',NULL,'2019-04-14 16:30:34.461000','2019-04-14 16:30:34.461000',5,'Trista Adams','https://lh5.googleusercontent.com/-Ra-AIIMX9bM/AAAAAAAAAAI/AAAAAAAAAAA/Z9Q_ucAQvas/c-rp-mo-br100/photo.jpg','3272657195432704501',6976),('AIe9_BGErQpX2pRNZrXBy5NOsH0eJRLIbCXj-cFBk_MW46iD-6ppJ8-c9MqgDHT_nY3hmDJ_bl1fafiaqOEf421FYn68TvgQ6wTpp_ZDCIgz4WvE_9ZoLf8','Shanna was very courteous and welcoming to everyone that walked in. She greeted and made sure you were helped. The atmosphere is pleasant.','2019-12-16 02:36:34.137000','2019-12-16 02:36:34.137000',5,'Anna Aguilar','https://lh5.googleusercontent.com/-x9RJY5997Ko/AAAAAAAAAAI/AAAAAAAAAAA/TiIChJmToQM/c-rp-mo-br100/photo.jpg','6521947413723274945',8053),('AIe9_BGErQpX2pRNZrXBy5NOsH0ejVhYbPudeAbeK-5-02nwc5yQBg0QwbyHi7JCUY6dnCMLwwnisALFSPCbls0Sn2obMq_brcoX8-UYzed6F52eqSBQvh0',NULL,'2017-07-01 15:33:13.824000','2017-06-30 16:05:21.465000',4,'Melinda Hendrix','https://lh3.googleusercontent.com/-PaN6VBKo3Mw/AAAAAAAAAAI/AAAAAAAAAAA/juTgj82DMDQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1802),('AIe9_BGErQpX2pRNZrXBy5NOsH0eJxIfjDtYKdmQyWY9gKny32yYddEM3Qwkl7fu0VH0zK0KyDO8YRamibbg5FbxZVFzqpHcpiWtROcIbouAHEIOGtgYz1s','Anthony and Dr.harjai were awesome, best hospital visit I have had','2019-04-05 00:03:12.421000','2019-04-05 00:03:12.421000',5,'Trevor Brown','https://lh5.googleusercontent.com/-J_XxaJhEo10/AAAAAAAAAAI/AAAAAAAAAAA/FLsYiA0Jetk/c-rp-mo-br100/photo.jpg','16590124370714063921',3454),('AIe9_BGErQpX2pRNZrXBy5NOsH0eK-SJXvur2zfqzgYe4WiVl9ugQy9I2P-yN3E4E8fBcs1VoGjbFwpmk3VI23ms2lFNwfvb-OqrFkw653kvKnvazyZP9dU','Amazing, the staff were very helpful and kind and took their time with me. It was refreshing for a change. Will come back. Also very clean','2020-02-19 22:48:06.606000','2020-02-19 22:48:06.606000',5,'Stephanie Weiss','https://lh5.googleusercontent.com/-5gYTB-BlLDs/AAAAAAAAAAI/AAAAAAAAAAA/AAZKi9cyUMQ/c-rp-mo-br100/photo.jpg','2694018788013845459',14223),('AIe9_BGErQpX2pRNZrXBy5NOsH0eK8PEOj8J7YhDzwQ_8o4LX-fJ1-_O6MwZwdrOZ6t7IorT_BwNs6UUhZ_xOIwTzIyP8Wucqyf5xgHssTR6V81SLytm0rk','The best er I have ever been to thank to dr.Harjai and nurse Alvean and to the best radiology Nurse Tricia and we must not forget Jocelyn.','2019-09-18 22:06:28.898000','2019-09-18 22:06:28.898000',5,'Kenya’s World','https://lh5.googleusercontent.com/-jTDoBnZ07xI/AAAAAAAAAAI/AAAAAAAAAAA/TWOdMbYVR4A/c-rp-mo-br100/photo.jpg','16389487648212004696',2897),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekAUakKbDUEIHTRX2qTL7VxtrDfPFv5YUvFxFa28v98vMHn_kwpS2vnV--31EtQSUflpBGQB9_ylot4RvXI662A3IFV0','Excellent service from staff.\nDr. Golla, nurse betty, receptionist tiffany, and Juan were all awesome! Thank you guys!!','2017-10-04 22:12:17.745000','2017-10-04 22:12:17.745000',5,'Spacecraft Galactic','https://lh4.googleusercontent.com/-K4y1ntOz1HU/AAAAAAAAAAI/AAAAAAAAAAA/j-uigxvysuM/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4959),('AIe9_BGErQpX2pRNZrXBy5NOsH0eKbVeXmzyn9cETFUFBG5KQR34qcL1J-Q34Rapxl_R-v5JrM8APhR-Ru76PIu09I2OQfBREl9DDYcPHuonBFGM6IzYXtE','My mom was sick we came to this awesome place they treated my mom really quick my sister and I Were waiting in tha lobby and they gave us snacks they treated us real good & my mom feels better now 💖 shout out to Cecilia Z for reciving us well & Bryan D for doin a great job on escorting us to a room to help my mom Brian D and for making sure u know what my mom needs to get better.','2020-02-18 02:09:20.568000','2020-02-18 02:09:20.568000',5,'Aimee Rodriguez','https://lh5.googleusercontent.com/-sTYEwjygUJ0/AAAAAAAAAAI/AAAAAAAAAAA/MriKGHYBmt8/c-rp-mo-br100/photo.jpg','14567670160750071148',13525),('AIe9_BGErQpX2pRNZrXBy5NOsH0eKeECnc6C7sHXkcyOA0l_AIJgmShuSuaJoOxatRLpptW0I4-s77nmGqwaKGey_5u-MFOtHHNby3-lGp2j46T6lZ0sUDM','As we arrived to Signature Care Emergency center Copperfield Registration tech Evelyn greeted and helped us immediately. My child Magnus was seen today for sinus infection. Our primary was full and they are a life saver. Service was prompt and precise. My children were made comfortable and helped to feel better. Nurse Tami was very helpful and kind. Made sure all questions were answered. Dr H Garcia was awesome and helpful. Gave appropriate test and questions we had we also made clear and helpful. Great facility and drs.','2019-12-23 17:10:10.939000','2019-12-23 17:10:10.939000',5,'Rudolph Drobnick','https://lh3.googleusercontent.com/-_o_pxitJnEk/AAAAAAAAAAI/AAAAAAAAAAA/UswrTjov9qw/c-rp-mo-br100/photo.jpg','17898197009688164559',5332),('AIe9_BGErQpX2pRNZrXBy5NOsH0eKf9pEE44HhdOq4UoHcXbYDXTih0PJsSShMa-kmiSTk0xccswiIJ8mcQEkb9k5yZAmmO_Dp8lhHH7JIlfqGemF9qOU0A','Always quick with great service! Sita, Kristina, Allison, & Dr Huerta are my favorite!','2019-11-26 05:09:26.210000','2019-11-26 05:09:26.210000',5,'A. T. Mendoza','https://lh6.googleusercontent.com/-0vYmskcpsg4/AAAAAAAAAAI/AAAAAAAAAAA/twHddQp6RKU/c-rp-mo-br100/photo.jpg','13486358490203335051',718),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekGBKz7L6RWaShAOoBFBSZ8os8l_amUD4SZBeoLJum__NFT7fqhKHfF2uuubtlpMIpQ_xCJhJSb2uUG2c1uC157dXjkI','Last week I started having severe chest pain. I was convinced I was having a heart attack. So was my husband. he rushed me to Signature ER and I was immediately taken back to a room. \n\nThe staff was amazing! Efficient, thorough, and very concerned. They left no stone unturned. Thankfully it wasn\'t a heart attack and my problem is treatable. \n\nThe facility is very nice. Much nicer then your traditional ER. It\'s basically a hospital with spacious private rooms instead of curtained off sections. \n\nI highly recommend this place to anyone having a minor or major medical emergency!','2016-08-31 13:58:35.111000','2016-08-31 13:58:35.111000',5,'Charmaine Szostek','https://lh6.googleusercontent.com/-7R7EnLoPSVM/AAAAAAAAAAI/AAAAAAAAAAA/bwoDOX18NJk/c-rp-mo-br100/photo.jpg','14567670160750071148',1980),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekIaHbK6W85YdaHEB0Zip8j9721dVAoLojVHsBokt3XGTqNerC9nJ319h_TF6Qds0C_qFHa7FhDMKkK-_sb9UZ8ahxsU','Dr. Carazus\nJose P.\nMeredith Sam\nGraciela Rios\nJocelyn A.\nLisa R.\nThey were great care. :)','2019-12-23 01:15:59.680000','2019-12-23 01:15:59.680000',5,'Rabbit V','https://lh5.googleusercontent.com/-4hluwP-CijY/AAAAAAAAAAI/AAAAAAAAAAA/F6kfyGsE7ns/c-rp-mo-br100/photo.jpg','16389487648212004696',2517),('AIe9_BGErQpX2pRNZrXBy5NOsH0eKNsQ-SPBDV8y4sqDyhHtGnnpZJq8Q6nBXPS__tPE2rwm612A_Mp4o_CoYT_bsZNQ_YbJZq5JWUmIRN2OZYyrhYxJI-M','My name is Gernisha! I went into the ER this morning & it was a very pleasent experience. Dr. Golla was great! Joy, Wendy, Allan, and Estelle were all exceptional as well. Terra started my great experience from the moment I walked in. I would recommend anyone to this facility!','2016-09-05 18:01:09.114000','2016-09-05 18:01:09.114000',5,'Todd Wilson','https://lh3.googleusercontent.com/-IFsE0unLMfE/AAAAAAAAAAI/AAAAAAAAAAA/LCfI4fg5qjA/c-rp-mo-br100/photo.jpg','17394740196501090048',5208),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekOXBShhgurr5c6f2JHb3CLYdUiaODNI3eGfz-lKgehi_Xr2wgxAyohq3VrkMvzLw5nwytrMbOBmKBNXiicomwQ0rN7k','The service was excellent. We came here because a friend recommended it. I went in on a Sunday afternoon after falling on wrist and needed an xray. The receptionist, Dr Craig Da Waal, and Nurse Shelly were all awesome. The doctor really took his time to explain everything to me and my wife. The place is clean and comfortable, there was even snacks and drinks available at the waiting room. My total wait time to see the doctor after filling out paperwork was less than 5 minutes. The only reason for the 4 stars rather than 5 is the cost. Although I really appreciated that they tell you pricing upfront before doing any treatment so there are no surprises.','2017-09-12 21:29:32.153000','2017-09-12 21:29:32.153000',4,'hugo reyes ortiz','https://lh5.googleusercontent.com/-Vtgdgc39GT0/AAAAAAAAAAI/AAAAAAAAAAA/xtUfqsoThBc/c-rp-mo-br100/photo.jpg','16891069708558046635',4539),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekqd_ewDiYuyOkjHvsI1OCT8H24xiqmgoRvNYBDDLApdz47b8zM-OtNqpI6dXYiMs3alO8_qWY5R5Q7tihqbR7jccznQ','The entire experience was amazing!! The front receptionist Kim P was so much help!! And all the staff took great care of all of us and only one was the patient.! Very satisfied.! If needed we will come here for any medical visits in the future!!!','2020-02-10 13:40:51.698000','2020-02-10 13:40:51.698000',5,'madison houston','https://lh4.googleusercontent.com/-aG1r5S3Hp0M/AAAAAAAAAAI/AAAAAAAAAAA/ODoSVt6MsoA/c-rp-mo-br100/photo.jpg','16590124370714063921',13871),('AIe9_BGErQpX2pRNZrXBy5NOsH0eKr2O-hoALOtwG38BOEGmfyy4sB3fMzjihR8dnaf05HLV72x37wHwOdTEzV1Jfr5ViZrde45SwMjiC-oItGabkOpA4_I','Great and quick service, without any wait time and all the personnel has been particularly friendly and helpful. Dr Datta and the team, Jesse, Joy and Amy have made the experience even greater!','2019-07-04 17:07:08.497000','2019-07-04 17:07:08.497000',5,'Michael Panas','https://lh6.googleusercontent.com/-_6DlzcBxTp8/AAAAAAAAAAI/AAAAAAAAAAA/_ieVMEs1QQY/c-rp-mo-br100/photo.jpg','8679688254631342173',8822),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekr5aRfqMt-gxDcEFZKbLva_ahsWFqwWmEkeARkgQ-oSORlflNmw9aHqqPNCWJ_Bw0NrA1bhmJEc2kkar8fLS5XdXXfs',NULL,'2018-11-14 22:23:47.008000','2018-11-14 22:23:47.008000',5,'Dillon Paul','https://lh6.googleusercontent.com/-rirov7sBLIU/AAAAAAAAAAI/AAAAAAAAAAA/9aYwDNdaGQI/c-rp-mo-br100/photo.jpg','13486358490203335051',1126),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekRZlkqbGsdPPAOjsRYLP64ZJZgMiO7iRa9IRcrBgd4c13kpkhPhFUGt_M0E6yycJxm24Piub42jsJLgFEVaxWk9BJew','Mrs. Shelly is awesome !! She took great care of me ! I absolutely love and adore her! This place is great, I got right in and out. The entire night staff was sweet as day! The doctor Pham seemed very intelligent, & caring🙌. They took great care of me . I will highly recommend this emergency center to anyone !','2019-03-15 04:24:26.630000','2019-03-15 04:24:26.630000',5,'Truly Blessed Chambers','https://lh4.googleusercontent.com/-lDdCk97Pag0/AAAAAAAAAAI/AAAAAAAAAAA/7a-_sFzzEfM/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5809),('AIe9_BGErQpX2pRNZrXBy5NOsH0eKwtq-MHi8ARTbq66hDlB3w26v8eQ9fVhDhdwIl4WqbGqOyJwvEJHbVF_nCSR49GppquRuy4TBh8wvcMmG3km67JaFQc','Facility was very clean and neat. Dr. Daniels, Rollie, Natalia,Yasmina and Stephanie were all professionals and extremely pleasant. Wait time was very short and the care I received was head and shoulders of “traditional “ hospital ERs! Highly recommend this facility and staff','2020-01-29 02:50:35.096000','2020-01-29 02:50:35.096000',5,'Farrel Wright','https://lh5.googleusercontent.com/-vQtgABE-9ik/AAAAAAAAAAI/AAAAAAAAAAA/M9JALFIBevc/c-rp-mo-br100/photo.jpg','8679688254631342173',14777),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekX-_tm9ae8CzmVQW2N65pDaM3pRiZqExQEGj-0-lMMNivBHbhqp1bUH1J4MsA7NpB1wI49gubLJbgNq5jyWPLOJg60g','Ashley B. great at the paris location','2018-12-20 03:51:04.823000','2018-12-20 03:51:04.823000',5,'Kimberly Paxson','https://lh6.googleusercontent.com/-3oYJbHX_9t8/AAAAAAAAAAI/AAAAAAAAAAA/leh_SV1Mo6E/c-rp-mo-br100/photo.jpg','8626688543755174284',8627),('AIe9_BGErQpX2pRNZrXBy5NOsH0ekY_BHFX5WE4p3znauYP0u09cvsr1JE5a-94M_th2fo7a6otb58fBihLqlmxSkSFp7CWIiIK3LX0riiAofv5aLvhyxtA','Sometimes its hard to be a patient when you are in the medical profession however we do all get sick sometimes. I highly recommend Signature Care ER Lewisville Texas . The staff was excellent Leah,Kanyon, Jennifer were all great. Very professional, caring, and friendly. They all seemed to truly care how you felt. I was seen in a timely manner. Dr. Das was very good. He evaluated me offered a treatment plan with options and allowed me to take part in my care. He is truly concerned about his patients and tries to make sure everything is covered and their needs are met in a timely manner.\nIf you need emergency care remember Signature Care ER.\nThanks to all of you.','2020-02-27 18:59:49.908000','2020-02-27 18:59:49.908000',5,'Debbie Chrisman','https://lh4.googleusercontent.com/-NyErFiIg9q0/AAAAAAAAAAI/AAAAAAAAAAA/L6b_R1pCYGQ/c-rp-mo-br100/photo.jpg','14748677429039074158',18860),('AIe9_BGErQpX2pRNZrXBy5NOsH0el_BvAFgdn6xRh9vJ0rPpX-dWECRcQEbrUTK7x3JvVKsyhExDJfvFCciHrQ_Klxya7UcBdELkEriHf-31Pi0m723gy1A','No wait time, Very Professional and Friendly Staff, Very Thorough on treatment, very clean and up to date. I would recommend this location to all in need!! Really great experience!!!','2019-10-26 20:58:02.068000','2019-10-26 20:58:02.068000',5,'JonasJ Charles','https://lh5.googleusercontent.com/-18f-LgZ6R18/AAAAAAAAAAI/AAAAAAAAAAA/0aqid8nuQf8/c-rp-mo-br100/photo.jpg','16389487648212004696',2764),('AIe9_BGErQpX2pRNZrXBy5NOsH0el-a52Oalv4zi963mSz3wwGiD0kqc_YnGflo7NjjsoXe8CXZTTbOo6PG2GGdkY-t_MbCdDujtyFl_VeJ8iYGO9gC6faQ','Friendly staff and warm blankets highly recommend this place =) fastest service of any urgent care around.😎🐎','2020-01-16 00:52:06.110000','2020-01-16 00:52:06.110000',5,'Chris Zeniecki','https://lh6.googleusercontent.com/-ucsg4mMojP8/AAAAAAAAAAI/AAAAAAAAAAA/syANYXbHAbM/c-rp-mo-br100/photo.jpg','2694018788013845459',14272),('AIe9_BGErQpX2pRNZrXBy5NOsH0eL2hW8zRi_nv4oHZJWZSJuhEu3_K2VIkr5N1gDiOfGUFTFxMiFkcQaxoV2yFMziJqYCIUCyB4nV0isxrhx8raDpAWUsE','My experience was amazing they moved really fast they helped my sister and it was Dr. Appiah nurse jani traicia and Ms. Patty','2019-09-28 15:43:10.952000','2019-09-28 15:43:10.952000',5,'Jalicia Brown','https://lh4.googleusercontent.com/-2TT5MZfqss8/AAAAAAAAAAI/AAAAAAAAAAA/0gmcbnQNuwY/c-rp-mo-br100/photo.jpg','16389487648212004696',2875),('AIe9_BGErQpX2pRNZrXBy5NOsH0eL3aeF1IiF65fmK0FrL43qZueY2Ox9CbEJFnkttAMaLTXOAeM8nclgZ4iy4kc1ks-SSSTlGvVNzkRR14pegGYZt_458k','Had a great experience here!! My sister was taken care of immediately!! Chris, Adam and Dr Jones were definitely knowledgeable about what my sister had!! First time here and would recommend this place to anyone!! 😊 Thank you!','2020-02-02 21:59:51.726000','2020-02-02 21:59:51.726000',5,'Deja Benson','https://lh5.googleusercontent.com/-TmgCbpbMu9M/AAAAAAAAAAI/AAAAAAAAAAA/l6C0I5w2K_Y/c-rp-mo-br100/photo.jpg','16891069708558046635',13961),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLej5h5rOk1DAEuZKhXHpxFlV7PKg9dshvDROAnT5yxakMiSA5E2jTCrqONEF_7LBEa0rukZnsTGJ1Sx4IzMy2Tpykao',NULL,'2019-01-23 01:46:04.132000','2019-01-23 01:46:04.132000',5,'carlos Ulloa','https://lh6.googleusercontent.com/-inkWtsQKTOU/AAAAAAAAAAI/AAAAAAAAAAA/whH0TliVKXg/c-rp-mo-br100/photo.jpg','13486358490203335051',1095),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLetCLyb8t2p8HQ1D4GwCMJ7PIq5PQp_1Q4BluBtw4JSTVJdlQslJ6zE_EzpaZa5k5P63uqoIZq-JNt90ZQFj3AvHveY','Great friendly and fast','2019-01-04 13:59:15.713000','2019-01-04 13:59:15.713000',5,'Heather Allison','https://lh6.googleusercontent.com/-sksNl0u_k6I/AAAAAAAAAAI/AAAAAAAAAAA/8xUNChD_K20/c-rp-mo-br100/photo.jpg','3511292162159714121',7525),('AIe9_BGErQpX2pRNZrXBy5NOsH0elhCfSCULekPbdpbxgQWSPLagfR9cqa7YNtIE0Nx6XH4CROjd5NE0FodEm1liHFRZMISePwoNplT0wrXLoUwZA80NiS0','Dr Kimball, Gabe, Becca = ALL AMAZING! They went above and beyond with all their care and instruction. Thank you!','2019-07-20 04:27:32.269000','2019-07-20 04:27:32.269000',5,'Thelizabeth Acker','https://lh6.googleusercontent.com/-LwjAiLpg3C8/AAAAAAAAAAI/AAAAAAAAAAA/foAZuKOO4V8/c-rp-mo-br100/photo.jpg','16590124370714063921',3286),('AIe9_BGErQpX2pRNZrXBy5NOsH0eljatntiLInMpjhXWCbKLmg-VFXyu9vxVWIEwzY0eLrNyulNEbO3DIXZg3TL4FuTXPvLVEoSnnr_G_0V70EHvLFI38gQ','Wonderful care I was in a room in less than 10 minutes. I have been here several times with family members and now myself. You are treated quickly and my care team of Savanna, Leo Aaron, Delpha Dr Huerta and Lisa were all fantastic.','2019-11-15 23:21:31.004000','2019-11-15 23:21:31.004000',5,'Lindsey Bloodworth','https://lh3.googleusercontent.com/-GCC312_gR20/AAAAAAAAAAI/AAAAAAAAAAA/59z2WS19xlc/c-rp-mo-br100/photo.jpg','13486358490203335051',737),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLjkGvIqv88Rdomms-UI_Z58JoLwRcDo-wYog3Qa_56rkOAk3FmDwZXJL3IPNy2NhHqeFAm2kO5xx2ThRv3gu1n3GqNM','I’m fairly new to College Station and I hadn’t found a regular doctor so I came to SignatureCare Emergency. I don’t think I have Ever been to a place with such nice care givers! The Doctor was so kind and had such wonderful bedside manner that I wish this could be my doctor’s office from now on!','2020-02-25 22:26:54.682000','2020-02-25 22:26:54.682000',5,'Tina Phillips','https://lh6.googleusercontent.com/-9B4MY826058/AAAAAAAAAAI/AAAAAAAAAAA/n2MuehbiByY/c-rp-mo-br100/photo.jpg','16590124370714063921',13829),('AIe9_BGErQpX2pRNZrXBy5NOsH0elPL4sRXTAUd5CEAf_H4MRdwegM0t0lZOFDTD5VdVBCNiwVOwcO2QfHPhdC89WYzeJyj0-YNBg-ATR5LNluxCYoF6BJI','Amazing place, the staff is very friendly and attentive. Also the facility is nice and clean..','2019-05-01 04:34:23.384000','2019-05-01 04:34:23.384000',5,'Xochyl Maldonado','https://lh6.googleusercontent.com/-hyWTAZj9IWo/AAAAAAAAAAI/AAAAAAAAAAA/P7FGQmqzB0w/c-rp-mo-br100/photo.jpg','17898197009688164559',5753),('AIe9_BGErQpX2pRNZrXBy5NOsH0elrewAT1UIbvbzB_X45JHulAGK6-aOvcQAP_GHXmoMsqw3yYcQqEgcRoF_H6xMDyxkz5lC07qTWt7yjsHC5xVZEgbYC0','GREAT people and nice as ALWAYS','2019-02-02 00:47:30.400000','2019-02-02 00:47:30.400000',5,'Porsha Orosco','https://lh6.googleusercontent.com/-YwZS84wiVLc/AAAAAAAAAAI/AAAAAAAAAAA/yhzhpR8LFwY/c-rp-mo-br100/photo.jpg','14567670160750071148',1396),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLt2U5BznDPDdRgDRElygt4-_0B5S423O_n4ca0-nQSZGkN_hCcr_ZiCGBx5aKx8kg4g885jgdQpJlhtAwRCQhmS0hhM','Excellent service no wait!!\nKeo-REG Kara-RN and Gunnar-RAD were the BEST staff I ever had. Oh and Gunnar is the best at placing IVs!!!','2018-12-13 20:59:34.568000','2018-12-13 20:59:34.568000',5,'LaTanya Lofton','https://lh4.googleusercontent.com/-5UZt6jn8tgs/AAAAAAAAAAI/AAAAAAAAAAA/LG2kW-4sAI8/c-rp-mo-br100/photo.jpg','3272657195432704501',7090),('AIe9_BGErQpX2pRNZrXBy5NOsH0eltEWqm6641bG0UHzD-zluQQOu2RJZAUTEETzptq_D6rECwd7KUbtm2EjHAL-njnfFucL4YytPLDJnrnQZUNPZHpPiIg','Very helpful and professional staff.Thanks Kimberly','2019-06-23 18:23:39.851000','2019-06-23 18:23:39.851000',5,'Taft January','https://lh6.googleusercontent.com/-gB1VZSsRQO8/AAAAAAAAAAI/AAAAAAAAAAA/IUJNuRbQrew/c-rp-mo-br100/photo.jpg','12541597562633926366',494),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLToB1Qil6p2hpyaPaLRlXdZolk653UxulDaQSF3cJz3yZE0xhDazzUSe30sBiYkzVToaraxhEbeJ6zUXKdWW3BSxH4U','Thank you kim allison and Kramer for being awesome and taking care of us!','2019-12-07 05:51:54.708000','2019-12-07 05:51:54.708000',5,'Laura Archuleta','https://lh6.googleusercontent.com/-l0RzZ_MvMKQ/AAAAAAAAAAI/AAAAAAAAAAA/SRZU6WQxc5I/c-rp-mo-br100/photo.jpg','13486358490203335051',701),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLubEc_lX6-xlJn3eIfJITqNp3QtjvTFjcVX8oIsRF12VE75H-SEahvlLOpf0LKi1euA4H3ImnWxIZQ4HPTEPWhnw5VE','Luisa, Jesus, Jani, Troy, Seth, Marcus and Dr Cavazoz were all great, best ER services !','2019-08-19 02:49:52.013000','2019-08-19 02:49:52.013000',5,'alba castro','https://lh3.googleusercontent.com/-2s_vZSMOL6Y/AAAAAAAAAAI/AAAAAAAAAAA/3UZfpcuEB84/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLUnMsiD5StI2uZRyeFNruE66Ab1bNfmeggeZo8IzEY3AtYbh0Pu-0GKZ4TTAcEfi1wmXRLkkbkMXC41Zfpr-hp5D9RE','The doctors office is fine but why would you charge $10 to make an online appointment. Y’all should stop being greedy and take you been enjoying the pandemic.','2020-07-27 19:42:09.902000','2020-07-27 19:42:09.902000',2,'Brent Youngs','https://lh3.googleusercontent.com/a-/AOh14GiXmLgJAt1bs3AqfHtsn8HqbdKNYEKaVhwdA6ybxg=c0x00000000-cc-rp-ba3','17898197009688164559',22093),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLwNHxrkabmuu43s_krWXXI5vnqqi2Db4KsncLEZRHebHYS02ZrLj-QJ_6mTvD5Lkkj-kJwhZgD_MlIuFbYgCYnG8i2c','Very good service by Anothey and J.R and the entire medical staff.','2018-11-28 14:12:33.990000','2018-11-28 14:12:33.990000',5,'Ashely Hernandez','https://lh4.googleusercontent.com/-jyTVILSHdWQ/AAAAAAAAAAI/AAAAAAAAAAA/bom5IWGKia0/c-rp-mo-br100/photo.jpg','16590124370714063921',3632),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLWsGC_pIJ0uflKK6228LMwMOOrKttBkpKD68-PzXNnmjWgHqPLy0n4V_oX7h6Ag7mFExCbxpfTcXF1xW8aJhSjrXCuY','I love the staff here. Excellent care! If I ever need medical attention again, this is where I will come. They are so very friendly and offer beverages and warm blankets. Very professional and courteous!','2019-07-17 16:58:58.752000','2019-07-17 16:58:58.752000',5,'Jennifer Gonzales','https://lh6.googleusercontent.com/-SahTKQdZjhU/AAAAAAAAAAI/AAAAAAAAAAA/8NfjMEASOGA/c-rp-mo-br100/photo.jpg','3511292162159714121',7248),('AIe9_BGErQpX2pRNZrXBy5NOsH0elY3AFWRxvRF4Qg2M8tFWAvi_-zqcIPjKbgmIa8Zo1hR94GTIJziComNaV9YsGcDwZ5rzAQWe46ZJKIU18eyP_8W_cmI','I was a patient at this ER on 3/3/19. I had a pretty bad wound on my head from falling into a door hinge. The staff at this care center was extremely helpful. They were very knowledgeable and went straight to work on getting my head wound taken care of. The staff made me feel very comfortable and they even had a good sense of humor to help with the bad situation. I would highly recommend this care center to anyone in the Austin area. I can’t thank the staff enough for the amazing job they did!','2019-03-04 03:18:43.857000','2019-03-04 03:18:43.857000',5,'Kyle Grindrod','https://lh4.googleusercontent.com/-u-A5vzWZOSs/AAAAAAAAAAI/AAAAAAAAAAA/-wwf-re1Jpc/c-rp-mo-br100/photo.jpg','16891069708558046635',4333),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLYTmH2menqWR_tcumwB4Hs68lCgVGQwfB0cxlfqQ7savapxWYk9tkki3SJc5Gbj-bWxyMS2VgPQFvNdvNaX6VROjnGA','Place is good but dont commit mistake of asking the charges they will charge you out of the world even your hospital wont charge that much for emergency . There are many better places I have been to much better then this . Its a ripoff','2015-06-25 20:46:59.409000','2015-06-25 20:46:59.409000',1,'Mohammed Juned Bala','https://lh3.googleusercontent.com/-N73pqrFSpNQ/AAAAAAAAAAI/AAAAAAAAAAA/Yh7kNdtot6A/c-rp-mo-br100/photo.jpg','17898197009688164559',5953),('AIe9_BGErQpX2pRNZrXBy5NOsH0eLZ1-lMECd1G7rHzlqp1OLZM0RFMjcu-EtTXGG9n2DOSkGWR9cmGEbvxASlv8MHnoJPS8miaXnRPWm4Wkwr5uHUAe7So','The place is absolutely amazing looking. My daughter was the only patient there we were in the room in 5 minutes. I am in the medical field as a nurse and would bring my children here any day top-notch service thank you for treating us like one of your own.','2017-04-23 00:44:51.142000','2017-04-23 00:44:51.142000',5,'Tera Martindale','https://lh5.googleusercontent.com/--Ysj1wgY6Is/AAAAAAAAAAI/AAAAAAAAAAA/MojyXNR1pi8/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8354),('AIe9_BGErQpX2pRNZrXBy5NOsH0em-jxFZ3MxksCkgJWBjAw9kGVOEaLDaY80ldnyWReSXl60K_fIk_BYNZTCrRSVeo4EoAaYbOV522vAMf_cGUO-lDW_qI','I brought my granddaughter up here because she wasn\'t feeling well.Dr.Ashbrooks was grear, Linda was very sweet, Amber was awesome, Christie was so good with her!!','2019-01-04 03:57:06.098000','2019-01-04 03:57:06.098000',5,'Larry Endsley','https://lh3.googleusercontent.com/--Hpundxjm9A/AAAAAAAAAAI/AAAAAAAAAAA/PMYacy_OlHg/c-rp-mo-br100/photo.jpg','3272657195432704501',7067),('AIe9_BGErQpX2pRNZrXBy5NOsH0eM0555QZH_Lq_v5Xub38RrF1m0fLZz3OqOwHiJG__RW9OZ_ztTfRCUsDd7P1Qu2OzMA1EBrxcekSALRKnIuEm1urU-cA','Dr Pham , Tristan, Therisa, and Natalia were great during our visit. Was put in a room immediately and was able to get the help I needed ASAP. Thank you!','2018-12-26 02:13:26.078000','2018-12-26 02:13:26.078000',5,'Jud N','https://lh3.googleusercontent.com/-jpP1vPvweuw/AAAAAAAAAAI/AAAAAAAAAAA/j8R0w-XUso0/c-rp-mo-br100/photo.jpg','8679688254631342173',8891),('AIe9_BGErQpX2pRNZrXBy5NOsH0em2svnTRvpozFKkmY1Aj3suRMqsQnAFrlir8AZzXzV_dbsvyfdFB64RmUfNMpSo7uVWZLIBunnNwVye_IET3tXlJKUT0','Dr. Daniel was so kind and caring. Very knowledgeable and thorough. This is the cleanest facility I’ve ever been to!','2019-12-21 02:01:57.363000','2019-12-21 02:01:57.363000',5,'Analisa McCain','https://lh3.googleusercontent.com/-ifS9XUZCPBI/AAAAAAAAAAI/AAAAAAAAAAA/RPVzJVTeKWo/c-rp-mo-br100/photo.jpg','13486358490203335051',679),('AIe9_BGErQpX2pRNZrXBy5NOsH0eM91ZfnRYzM2TO0Xj8QNJXaEvu2rOylQ07gdf8Yx-huAINOyNSNkEd0IcysSmfYzGn62lYoqJ3lmhalZYniay2ecMEl8','They got us in fast with no wait. The staff was friendly and helpful Ashley was a big help','2019-02-19 00:36:08.833000','2019-02-19 00:36:08.833000',5,'Rose Jeffries','https://lh4.googleusercontent.com/-LDqpdeTtlh4/AAAAAAAAAAI/AAAAAAAAAAA/yUBBHkhpvv4/c-rp-mo-br100/photo.jpg','8626688543755174284',8558),('AIe9_BGErQpX2pRNZrXBy5NOsH0emAAWQVBMVUIlyoRg_OsHQBWBVCB1lOqW3nHjRdN37c3bqzHq9TPJi-0lfn-HFpIqAfrLpJCkWP_yToPXvTMAajMr12o','Experience here was absolutely wonderful. Alexis, mom, Jacob and Jr were very helpful. No wait time and very professional.','2018-06-21 16:54:14.699000','2018-06-21 16:54:14.699000',5,'Jacquelyn Williams','https://lh5.googleusercontent.com/-NT58EzETzIo/AAAAAAAAAAI/AAAAAAAAAAA/C1w6YzN_fWA/c-rp-mo-br100/photo.jpg','16590124370714063921',3811),('AIe9_BGErQpX2pRNZrXBy5NOsH0emg6n4Qvzl--wzxu21_uD6SWnzA0EldjrKQtTg4PWBDoysf1G_ViMHxkh97GyHpjmW25orUMzzVYk8tuHrQWIh3ugNE8','This ER was highly recommended by our friend so it was our first option when we needed a doctor on December 25. Had no waiting time, the staff was very friendly and professional - with X-ray and overnight stay option. Thank you all again for taking such a good care of my daughter.','2017-12-28 19:24:54.355000','2017-12-28 19:24:54.355000',5,'Gabor Ursprung','https://lh6.googleusercontent.com/-EyRaM0M1JX8/AAAAAAAAAAI/AAAAAAAAAAA/z2C5-Y7wmnQ/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7744),('AIe9_BGErQpX2pRNZrXBy5NOsH0eMgrMeTNs4zeDIzvTFz34VtFJFFMbtbZWupV1CdrukQV6Rx7IHEjODrRht6tYGKd5dYqc9kfK8h8ylpCZWwJsq3IpZXc','Very helpful and fast care visit was well appreciated\n\nJordan n \nDr.Ngu','2020-03-04 23:49:28.989000','2020-03-04 23:49:28.989000',5,'Lawrence Williams','https://lh5.googleusercontent.com/-ArInkeaXDPE/AAAAAAAAAAI/AAAAAAAAAAA/QIkEsoPTt7E/c-rp-mo-br100/photo.jpg','16389487648212004696',13729),('AIe9_BGErQpX2pRNZrXBy5NOsH0emJlmOu0-2zw8rjTMPXv_lRIUMK8rhvZJrsXHrRCs8AVMMWJPYTz0ua-6ALrPDOfvfBPQ-YdnDdM2E9D7fSl3BVKQCKs','Facility was clean and staff was fantastic. Big thanks to Karen, Quyen, Malissa and Dr. Patel!','2018-07-31 23:48:04.494000','2018-07-31 23:48:04.494000',5,'jessica naylor','https://lh4.googleusercontent.com/-0hduJoaD4CY/AAAAAAAAAAI/AAAAAAAAAAA/y6HT9f94yGg/c-rp-mo-br100/photo.jpg','12541597562633926366',625),('AIe9_BGErQpX2pRNZrXBy5NOsH0emjXqBR9jWgZvD2VA-ErsVPQrS5L0WINw6yP-E2vaEgl0Dr5cN80GRO9_3JdmmVGzuWCKFGRFKvQwoMc3OibBf77D2Ns','Took my 8 year old son in for ear pain, Gunnar Maxwell was awesome and made sure he was comfortable and calm! Dr. Jones took time to make my son feel comfortable as well before approaching him for the exam!! He took time to explain what would be best! Linda at registration was an absolute sweetheart from the moment we walked in & made us feel like family with conversation and offering warm blankets and drinks!!!! Great clean place with outstanding caring staff!!! Thanks so much!','2019-03-13 16:38:03.870000','2019-03-13 16:38:03.870000',5,'Karen Ashley','https://lh3.googleusercontent.com/-t2Ygyoh_-tw/AAAAAAAAAAI/AAAAAAAAAAA/Z2FyNOA1g7s/c-rp-mo-br100/photo.jpg','3272657195432704501',6995),('AIe9_BGErQpX2pRNZrXBy5NOsH0eMKyE6tGQBIgfZiakhhv5dZTzFRLf7l7ce7u42SPXB9iHve6_cd2eH1lpW4umDXE0BG4__wo196tSG1C7oIKUQUR_5Aw','Everyone was super nice and helpful!','2018-10-03 13:09:03.322000','2018-10-03 13:09:03.322000',5,'Madeleine Jones','https://lh4.googleusercontent.com/-e4Wvcmj1_AQ/AAAAAAAAAAI/AAAAAAAAAAA/kem-fXFu6Ys/c-rp-mo-br100/photo.jpg','16590124370714063921',3716),('AIe9_BGErQpX2pRNZrXBy5NOsH0emN29Ti63mXPKBMAzI7CGwz-wLkbQRyZB6eFpiA9QtF6pTYymmKE9_mnweokd3M0pilR7XSPcPDNs2yLbHUhvAQ2gQMg',NULL,'2019-08-07 18:32:01.290000','2019-08-07 18:32:01.290000',5,'Lesley Chavarria','https://lh5.googleusercontent.com/-MsFc3lQKJDA/AAAAAAAAAAI/AAAAAAAAAAA/szb4WtqxegY/c-rp-mo-br100/photo.jpg','13486358490203335051',863),('AIe9_BGErQpX2pRNZrXBy5NOsH0emnTmu9St9nJ37FanKzbvfkhLUMmKfJMb_-Lz8v1777uvZtgix6lMwVq9eJ_W7jD_g0dV7jf4GZubIQN2AMImL17V4zA','Great location, helpful staff and great care! When having a sick child you want the best care and SignatureCare is the place to go! The staff, Tony, RN, Sherwin, Tech and Dr. Jones were very helpful. Ariel at the front desk made check in very smooth and not stressful at all!','2019-01-10 16:41:02.352000','2019-01-10 16:41:02.352000',5,'Stephanie Matis','https://lh5.googleusercontent.com/-CMrMwni5Eg0/AAAAAAAAAAI/AAAAAAAAAAA/VvpXKBKfEiA/c-rp-mo-br100/photo.jpg','12541597562633926366',572),('AIe9_BGErQpX2pRNZrXBy5NOsH0eMqD4lUAPudowXk0QpcqAfMEdlFRbXENO_-sv6HwjnmzWkKeIovS6iILw2X8pFruVjhmCYiZfUDNgUhKbagFqQOfSVmI',NULL,'2020-03-20 02:02:51.627000','2020-03-20 02:02:51.627000',5,'David Nguyen','https://lh5.googleusercontent.com/-cnHBS-sJWBI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckkeuut83nPt5n6QYt72iBOpFVL3A/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21085),('AIe9_BGErQpX2pRNZrXBy5NOsH0emr-8159sErQ8EMQcHxfXWYsW3KIZgBzeCW46J1P6TU8d06cRYl3fC_PJoEvF19cJ4kuz9wNu9JWv6JDtB0r0MtNoulQ','Ms. Lorena , Dr Harjai, Nurse Brad and Also Er Tech Natelie were great .','2019-11-27 20:29:04.339000','2019-11-27 20:29:04.339000',5,'Bonni’s World','https://lh6.googleusercontent.com/-E7Pi8hsABCI/AAAAAAAAAAI/AAAAAAAAAAA/ypisSW6W_Ck/c-rp-mo-br100/photo.jpg','16590124370714063921',3074),('AIe9_BGErQpX2pRNZrXBy5NOsH0emrBT-5bcBiuIc-NbF0smNKOzBspiHo_omIcb5KU_nzur2NytA-rM7gnEUB7dyhwsMtH4z1SGI4TP06vpbIFKwOJgjuc','Excellent service and great customer service. The doctor has a great personality and was very thorough. Definitely recommend this place!','2019-05-19 23:52:10.831000','2019-05-19 23:52:10.831000',5,'mari flores','https://lh5.googleusercontent.com/-z8IqWDjNx70/AAAAAAAAAAI/AAAAAAAAAAA/JpXcCJSOD08/c-rp-mo-br100/photo.jpg','17898197009688164559',5733),('AIe9_BGErQpX2pRNZrXBy5NOsH0eMtDGBXEvdygC8RH_GhADwchT2ehSEtmEaoaESPxSgKL8bjq8sa5jCj9jbB0zZ39ZmbUUYOUvLGNbE6uISCB-yh7qP6k',NULL,'2019-02-05 04:16:26.001000','2019-02-05 04:16:26.001000',5,'Dillon Paul','https://lh6.googleusercontent.com/-rirov7sBLIU/AAAAAAAAAAI/AAAAAAAAAAA/9aYwDNdaGQI/c-rp-mo-br100/photo.jpg','2694018788013845459',6186),('AIe9_BGErQpX2pRNZrXBy5NOsH0emuNFqe_avWTtz_TTItG4KSccBN8iA8uBdNuIWNVmy_vHMCBMvGQL6cMUm1xcXvsNvc6lSHHVDDvynIn4a_HAEbWuCrE','The staff was really warm and hospitable, from Dr. Leavitt Hamzah, Brenda, John, Jessica V. And Eve!! Thank you all','2018-08-04 20:42:18.440000','2018-08-04 20:42:18.440000',5,'Gregory Moss','https://lh4.googleusercontent.com/-E3-oHRsjxHQ/AAAAAAAAAAI/AAAAAAAAAAA/7do8Pmcg_Ng/c-rp-mo-br100/photo.jpg','3511292162159714121',7661),('AIe9_BGErQpX2pRNZrXBy5NOsH0eMUogOse-u9Z5xl4zE_UTN0vZDbPoODwgre0K0laouzn4W8fUU5ixIEnQNqbKL_ost-pDiuYalx_2P2cAP1vObhIagvk','Meredith was my nurse\nJocelyn was the receptionist\nAnd I saw Dr. Appiah.....they were friendly and very helpful','2020-01-29 22:39:07.085000','2020-01-29 22:39:07.085000',5,'Liz Vatuna','https://lh3.googleusercontent.com/-FX2_4Ui0e_o/AAAAAAAAAAI/AAAAAAAAAAA/2dGIIedmPJo/c-rp-mo-br100/photo.jpg','16389487648212004696',10157),('AIe9_BGErQpX2pRNZrXBy5NOsH0eMWVKlIH5RxAmErlIGj6HvEyrQrfNTO5mU1mhoK8qyGmxgKjMm5Cb4DcM-7dhemzIe163pmlYrGbdZ2uRcqSXUK43bng','We originally visited Bellaire ER but because of their incompetent staff & their lack of being able to verify our private insurance my husband & I came here which was a wonderful visit even though we had a minor issue this office & I were able to contact our provider & resolve it. My husband was seen, his pain is gone & I am once again a happy wife. Thank you Neighbors Emergency Center! ','2014-06-30 07:17:29.776000','2014-06-30 07:17:29.776000',5,'Misses James','https://lh3.googleusercontent.com/-dQSzsiCCpCg/AAAAAAAAAAI/AAAAAAAAAAA/WHVABaQDolY/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',8942),('AIe9_BGErQpX2pRNZrXBy5NOsH0emY2vCzwFrYOo9r3r30vV4h0I_8gJRy794y_kFWOkiyrenJG-GxkPOJnUZDk8sAg1Mdhkuwjsiw7h4TO4aMa6fhMrIOc','I initially came in behind flu like symptoms. The lady at front desk stood up and greeted me, she was very polite! As I gave her my insurance card and ID I began to cough really bad could barely talk and she offered to complete my sign in for me and called the doctor right away, so there was no wait time for me. My BP was checked and extremely high for my age so they took that very seriously and requested blood work, x ray, and CT scan on my heart. They went above and beyond, even kept me overnight! The only problem was that there was lack of communication. Every time they would come and get more blood they wouldn\'t say what it was for I would have to ask them. But overall they do better than major hospitals, they don\'t just see you and write a prescription, then send you on your way! They actually take there time and run tests, bloodwork etc.. to make sure you are ok before sending you off! Thanks to the nice staff, warm blankets and Dr. Grinblatas that was on call that next day for being so caring, attentive to my needs and concerns! Thank you!','2018-05-31 01:45:55.775000','2018-05-31 01:45:55.775000',4,'Babyface Beauty','https://lh3.googleusercontent.com/-ZFx7B84DgG4/AAAAAAAAAAI/AAAAAAAAAAA/1Kho4g20PJ0/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9267),('AIe9_BGErQpX2pRNZrXBy5NOsH0eN032Rp8Crxg6OntseBmlc2L-XFS1jUGA7nt01APopdoomkY6rs3MwwX1X6-Otbgb0_RVxJVh_dx2cALF2b1uYa2_bK8','Amazing care and comfort. Thank you so much for helping me, being understanding and giving me so much after-care information. I was seen right away, given a warm blanket and didn\'t have to sit in a room waiting forever for a doctor. If I need fast help again I will absolutely be back. Thank you!!','2018-10-24 00:47:45.295000','2018-10-24 00:47:45.295000',5,'L. B.','https://lh5.googleusercontent.com/-dennsGpSvBM/AAAAAAAAAAI/AAAAAAAAAAA/vgXep55b2RM/c-rp-mo-br100/photo.jpg','16891069708558046635',4411),('AIe9_BGErQpX2pRNZrXBy5NOsH0en06yU8NheEmJqOq9MbDHRZ31wjtQpjQqLo7IQFNoRGexbIG-j5FFHiNQMqFwDhiczwoyfJGX7sbEf_jgBm1Dq_COYrU',NULL,'2019-03-25 06:38:36.919000','2019-03-25 06:38:36.919000',5,'MARISSA MOUTON','https://lh6.googleusercontent.com/-EI8HpD4LuQc/AAAAAAAAAAI/AAAAAAAAAAA/wOTGMBupQD4/c-rp-mo-br100/photo.jpg','17898197009688164559',5794),('AIe9_BGErQpX2pRNZrXBy5NOsH0eN44JXD-kYmtIx5Xi0l6wMCE_XXvi1ZkBm2ptNYqEMJFVsmkyUjlEgagnchW0XzYvDOmdB6TNwuMaYMXCUl6vamvVces','I was brought back to an exam room within minutes of walking in and was greeted by some incredibly friendly and competent staff. This is a seriously awesome alternative to hospital ERs, the wait time was non existent, the care was excellent and the facility was spotless. Thanks Dr Rose, Shelli, Tina, Kesley and Felicia','2019-05-26 11:27:11.651000','2019-05-26 11:27:11.651000',5,'Steve Elsbecker','https://lh3.googleusercontent.com/-6kTLky8b7X8/AAAAAAAAAAI/AAAAAAAAAAA/5L0m2wsZ5dQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4267),('AIe9_BGErQpX2pRNZrXBy5NOsH0eN7fux1ZdxaJumgxxGb9qMOKGIvpSwwNzNmL26bP1qukYu4lP4iN54DUjfRJh4MZtOnbjob21zGqX2qdGOv-bIL27Nfk',NULL,'2018-06-26 17:11:33.663000','2018-06-26 17:11:33.663000',5,'Zack TX','https://lh4.googleusercontent.com/-kBF6Q1DZvqI/AAAAAAAAAAI/AAAAAAAAAAA/hHZLaScL7kg/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',642),('AIe9_BGErQpX2pRNZrXBy5NOsH0enaShMZxcsFpAkeuLKV6Pjuwz4udllOuxQxrFi2TvcxZf-ZvuCjjO5iNYIUJl_S_mXrxFSR6h3B4JN_BOXCra9AvTTCo','I was helped by Pam and Dr Herman and they were both amazing. Pam took good care of me and made me feel very comfortable. She explained everything she was doing which made me more relax cos I knew what was what and why it was done. I’m glad they figured out my problem and taking care of it. Thank God. Thank you Pam and Doctor Hehman.','2019-06-06 20:41:02.278000','2019-06-06 20:41:02.278000',5,'Londiwe Tau','https://lh5.googleusercontent.com/-uzP3Efa9-c0/AAAAAAAAAAI/AAAAAAAAAAA/0E3eYn6CRdI/c-rp-mo-br100/photo.jpg','8918455867446117794',9134),('AIe9_BGErQpX2pRNZrXBy5NOsH0enB70fiaWpP4dorlAzFJ0EITSysIjima42K-36Tedm1CphN0Ko-2dSp20gG6B91Z4nxgB356iwZU3-6Dk_cw-LbbqVuc','Got results back quickly, staff was helpful and informative.','2020-07-18 21:01:03.504000','2020-07-18 21:01:03.504000',5,'Zach Christgau','https://lh4.googleusercontent.com/-JGMaOzw4aYE/AAAAAAAAAAI/AAAAAAAAAAA/_Hk8uXbpyFM/c-rp-mo-br100/photo.jpg','14748677429039074158',21723),('AIe9_BGErQpX2pRNZrXBy5NOsH0enEnyMWHSBgaqKZnpiPZ_Su31YaQupD53nbYFRicIQ4tVlsm4U5NdD2v_1I02gynQZb8_3hmihr_l_1zrBL6dVEotBQw','My name is Angelica Bravo Records, and i just want it to mention that\nall staff at Memorial City Center were very helpful, nice, professional and knowledgeable .\n\nThank you!!! It was a good experience.','2016-07-12 21:24:08.733000','2016-07-12 21:24:08.733000',5,'Rocky Records','https://lh6.googleusercontent.com/-pipnFNCsbxg/AAAAAAAAAAI/AAAAAAAAAAA/py_9cjlHDjo/c-rp-mo-br100/photo.jpg','14904078213800803294',2476),('AIe9_BGErQpX2pRNZrXBy5NOsH0eNHn8mK561EUFl-MSMhxWWLm2LSBMCAN0oN0LPmzNG9jHhz4rXvCyrIO_FlK0gJexJU0exIAO6WzNYYn7JSfA5JHPyBE','We walked in and Kim was so nice at the front desk! We got seated and only waited like five minutes before the nurse, Lucas, came and got us. The staff is super friendly and knowledgeable. The rooms are so nice and cozy and it’s so nice to not wait seven years at the hospital er around all the sicklings. Dr. Edwards was awesome, knowledgeable, and efficient. 10/10 always recommend. We love this place.','2020-02-28 16:36:26.148000','2020-02-28 16:36:26.148000',5,'Tyler Gilliam','https://lh3.googleusercontent.com/-m82pvt3aoWo/AAAAAAAAAAI/AAAAAAAAAAA/8ccfrgeS6bo/c-rp-mo-br100/photo.jpg','3272657195432704501',14319),('AIe9_BGErQpX2pRNZrXBy5NOsH0enLnfKEu9UQmvqumrdksKE8Lq-Xy2amQBOSJ9popT-NGg3Y5hGX5z68O2kbF4IZd9jeQ0HlcZuMFUNTjd_dEaqtmVbAE','I was able to make an appointment, get checked out, and get a referral for specialist care immediately. Clean, organized facilities, polite helpful receptionist (Brittany), nurse (Jeff), x-ray technician, and doctor (Dr. Edwards).','2016-12-18 15:16:57.562000','2016-12-18 15:16:57.562000',5,'Heather Carr','https://lh6.googleusercontent.com/-WMV6IYnlqtE/AAAAAAAAAAI/AAAAAAAAAAA/XC6Kb4u2m0w/c-rp-mo-br100/photo.jpg','3511292162159714121',7917),('AIe9_BGErQpX2pRNZrXBy5NOsH0enLueSlY40rrbVyJP9HjV71qQsEPz8RPZDJe_uPUJLw6yidLszBDemcjHc-CUdRrRSYSkUjvEAJAxD2goUO2pbH5b_jI','Wonderful staff, hardly any wait time and gave me peace of mind and they were extremely polite!','2019-10-11 19:49:56.456000','2019-10-11 19:49:56.456000',5,'Lindsey Matthews','https://lh3.googleusercontent.com/-bg6_wA7P7jg/AAAAAAAAAAI/AAAAAAAAAAA/A5cZEJnuLnY/c-rp-mo-br100/photo.jpg','16590124370714063921',3152),('AIe9_BGErQpX2pRNZrXBy5NOsH0eNM2dDpwo5ZI4OzHwJgMn0Q0K8q-pM5wyNA5_XGb7vtPB-i8kc2dJtzt9IoOAlpLeP9Mxv5dAEvM35P-oeQg2eUJhg2o','Fast and super friendly, the staff has impressed us on both unexpected visits! Highly recommended!','2018-10-02 18:26:08.900000','2018-10-02 18:26:08.900000',5,'Jeff Cleveland','https://lh4.googleusercontent.com/-STStKHGkMkU/AAAAAAAAAAI/AAAAAAAAAAA/qojbpRkk79w/c-rp-mo-br100/photo.jpg','3511292162159714121',7580),('AIe9_BGErQpX2pRNZrXBy5NOsH0eNnOKWzPKrxHL2y6R52b9aHWiEd4BCeW7icWklwQITO6mF6yYJSUuA393Zb26GhVPnFGE7wE0W9GEYAsm5vyEatKUOIE','Great service! Came here with my grandmother and the team was very conscientious from the moment we walk in the door.','2020-02-06 04:54:57.388000','2020-02-06 04:54:57.388000',5,'Laura Sanchez','https://lh6.googleusercontent.com/-Ehiv7NQwLsA/AAAAAAAAAAI/AAAAAAAAAAA/p04TRqzHxm4/c-rp-mo-br100/photo.jpg','17394740196501090048',14033),('AIe9_BGErQpX2pRNZrXBy5NOsH0eNPiqfg1b3yilDnZyG0TEfV11dj-0Atbt9J0WVV1nnID9sxwhPFG1-MclateXRin0ETAJNIPo0sstZLsUuMAjducet6k',NULL,'2017-09-05 18:36:11.443000','2017-09-05 18:36:11.443000',4,'kevin campos','https://lh3.googleusercontent.com/-ZCQqSPs170U/AAAAAAAAAAI/AAAAAAAAAAA/hauFpv0yiws/c-rp-mo-br100/photo.jpg','16590124370714063921',3943),('AIe9_BGErQpX2pRNZrXBy5NOsH0eNpjfWOZpg18AbKsxLFSMg75-5Rso4lKZM3PB3JYBWxo-dtCvmhOFOA0EIvmrh5K2LIW7zvJe5Bpee8kEWqX-gJ-PAtg','Awesome experience!!! Friendly staff who CARE! Amy at the check in desk helped everyone who arrived with care and dignity! She even helped a couple who needed to locate another facility!! She was a rock star!','2019-11-17 23:52:26.364000','2019-11-17 23:52:26.364000',5,'Christi Rollins','https://lh3.googleusercontent.com/-b0DQq2QXDHU/AAAAAAAAAAI/AAAAAAAAAAA/NEHbIDbZnvU/c-rp-mo-br100/photo.jpg','16389487648212004696',2666),('AIe9_BGErQpX2pRNZrXBy5NOsH0eNPueY5vSKvIn0Bp-OSpz2ah_GQGFhGOqVkI7o_DcfapAxUjZ6D3p27M3LdTJymTe3nmnzkvQ6pfve06OhP-f5wWaHZc','Such a great experience with this location!!! Had a scare and needed to be rapidly tested. The check in process was easy, staff was so gracious and very thorough. So glad to know of this service close to home for any future needs.','2020-08-23 09:49:10.934000','2020-08-23 09:49:10.934000',5,'Beverly Anderson','https://lh4.googleusercontent.com/--Jonmttp95c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmNse7jHAKBX9dm-uKfbcpVpdqU9w/c0x00000000-cc-rp/photo.jpg','14748677429039074158',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0enXFQyGIhBV-mQUwiRxM64rsNj_GGPcp8-pBA0MDFwTNXeKPQ1KG639dMCKz0A5yn3rj65oz0ZNaF8S80PBy-jARGB98','Ana,SARRA & FAHME, SHERWIN, CHRISTIAN I love these place','2020-03-07 04:16:59.647000','2020-03-07 04:16:59.647000',4,'Erving Wilburn','https://lh5.googleusercontent.com/--o7790yqZOU/AAAAAAAAAAI/AAAAAAAAAAA/8i1P_VDgp-c/c-rp-mo-br100/photo.jpg','12541597562633926366',13310),('AIe9_BGErQpX2pRNZrXBy5NOsH0eNxkYbWy6662-j2bN4LBh_OOJTuGc_xuDV0iwNEmgaS_rxgPf8hiWGyvOBDNN1YxL8KYOO0TN2oJBIk10aWpGL_1vbFo','Staff was very helpful and nice. They took care of my son and I quickly as possible. I did wait about 2 hours but they updated me if i went and asked. I will go back if needed.','2020-07-08 20:33:18.937000','2020-07-08 20:33:18.937000',5,'Andrew Bonefas','https://lh3.googleusercontent.com/-8qGFd3rHL4w/AAAAAAAAAAI/AAAAAAAAAAA/VWfyy1lV4bE/c-rp-mo-br100/photo.jpg','8918455867446117794',21490),('AIe9_BGErQpX2pRNZrXBy5NOsH0eO14QYEschnlU9-vaem7MFOepkqr05Qg0Klc0bYqLGCMU66kr1Ss8f0Ch9fK5V3j-yMGv2DRRoti_yGENy9wMB5F7bBQ','I DO NOT recommend the Paris location. I\'m STILL sitting here as I type this review. I paid the $10 online to schedule an appointment for 3pm, THREE, We arrive at 2:30. We\'re told to wait in the car because lobby was full of walk ins..we FINALLY got in a room around 5. It is currently 6:43 & we haven\'t seen anyone since we fist got put in the room. I had to go out to the nurses station to see if we could just be called with results. Their response was \"NO\" I asked how long before results are in their response \"Results are in I just can\'t give them to you, You\'ll have to wait in the room for the doctor.\" I have a 1hr 20min drive home from here. I\'m not impressed and wondering why you\'re made to pay for appointments if you aren\'t seen at that time.','2020-08-03 23:49:15.426000','2020-08-03 23:49:15.426000',1,'Amber Colegrove','https://lh6.googleusercontent.com/-lZyhjQGN8os/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucncs8jF2GABivH3OJAt8XMaMOn5Vw/c0x00000000-cc-rp/photo.jpg','8626688543755174284',22232),('AIe9_BGErQpX2pRNZrXBy5NOsH0eO6sFDIYiIPhPs5cTDFPVOd2K0hqkz0GoI6oLcYxoE9skGvnPJ9D5fe99rx2R3CFwE5A-Py5nI1rSUxF_pwioEROha_E','Thank you Dr Youssef and staff for all you do! Took care of my son immediately and assisted us with all needed. Pure human ma treating humans!\nThank you\nAREDA','2019-08-13 20:05:01.407000','2019-08-13 20:05:01.407000',5,'Ali Reda','https://lh6.googleusercontent.com/-XKISUQ-xIoE/AAAAAAAAAAI/AAAAAAAAAAA/85Q7vjQVtYc/c-rp-mo-br100/photo.jpg','3511292162159714121',7214),('AIe9_BGErQpX2pRNZrXBy5NOsH0eO6sNHsmS01zJyd_jVXIps7cUF5MN8TvbfiNpyOHb1xeoWaOJlUhGBS8z1fOzf98BEIm24wdy80FzMMVUtsCqRlljaNg','I always have a wonderful experience every time I come here. The service is very fast and they really take their time taking care of you here. Dyveliz Kim and Anthony are who took great care of me today and they are very sweet! I would recommend coming here for anyone who is in pain because they take care of you right away!','2018-10-22 22:13:16.212000','2018-10-22 22:13:16.212000',5,'Kendrick Maryland','https://lh3.googleusercontent.com/-fzfEsI_WzZ0/AAAAAAAAAAI/AAAAAAAAAAA/bzRtO7vFswc/c-rp-mo-br100/photo.jpg','16590124370714063921',3692),('AIe9_BGErQpX2pRNZrXBy5NOsH0eOcoOfznld_O23bpFKd5Qi912PS_9vsthQu6zx9xpJP02cCBHr8mEZuYS5qG6qjlaeO3TVRmmQ-2983xELP42MZ5vbx8','One of the best experiences. I was in and out of the ER quickly with great care. Great hospitality and so much kindness. Thank you to the staff.','2020-05-23 01:37:11.645000','2020-05-23 01:37:11.645000',5,'Juan Antonio','https://lh4.googleusercontent.com/-jq2h-Nx1E5w/AAAAAAAAAAI/AAAAAAAAAAA/yBXbfb13sDU/c-rp-mo-br100/photo.jpg','16891069708558046635',22698),('AIe9_BGErQpX2pRNZrXBy5NOsH0eOPDKHeeN9h4Q6Antwv2EVJzYZpZ7bbPBUW4VPvpwRUKZxG2rW-mBIMkKgw5agkB6kNVbBt1sbsGSrzQJDYObQ2Yz5YI','Me and my husband had a good experience here, Dr.O’Malley was very helpful to him and he answered all questions for him. He even went a step further and called the specialists he knows to get an appointment for him. Erika and Patty were also very helpful through each procedure and helping him through the process of being here because he doesn’t usually get sick. I recommend.','2019-09-20 14:09:10.412000','2019-09-20 14:09:10.412000',5,'_Sylicia S','https://lh3.googleusercontent.com/-1jo1c51mR1A/AAAAAAAAAAI/AAAAAAAAAAA/8FrgO_U8aRI/c-rp-mo-br100/photo.jpg','16389487648212004696',2893),('AIe9_BGErQpX2pRNZrXBy5NOsH0eov760Nw7UOV6HHdqspvOAumW8Gv0pyWfeARi0-iGSv5K4qcl93lH3ersh7jUhLWZr2aD9E4ZdZQWE0iB792nde1f8Y0','My sister got admitted here and they took great care of her. Thank you Dr. Harjai, Nurse Alvean, and Jocelyn at registration. You can just see how they all flow together and pay attention to details. Special thanks to Tricia, the CT tech who went above and beyond. She continuously checked in on us and even offered blankets, food and coffee while we were waiting for the results. They don’t just take great care of their patients, but also the family members. I highly recommend this place!','2019-09-23 00:45:56.582000','2019-09-23 00:45:56.582000',5,'Marie Ledesma','https://lh6.googleusercontent.com/-_kEC12rukyo/AAAAAAAAAAI/AAAAAAAAAAA/s-fR5Be5ccg/c-rp-mo-br100/photo.jpg','16389487648212004696',2889),('AIe9_BGErQpX2pRNZrXBy5NOsH0eowMvGii3WmO3T_fcGCMI88O1CYJfMcwSuKD3NzpnZl23ngYYobLQOe_cI51aLkqvA2t-aMQUaMe0sDAjuRHgr34uQ-g','Very good and efficient service, Cody and Joe were great','2020-07-29 13:27:58.334000','2020-07-29 13:27:58.334000',5,'Angel Nunez Jr','https://lh3.googleusercontent.com/-fOJ7FMqd43c/AAAAAAAAAAI/AAAAAAAAAAA/Hi8ma_vYW-I/c-rp-mo-br100/photo.jpg','2077061009497551125',22770),('AIe9_BGErQpX2pRNZrXBy5NOsH0eOWxaQuF1YEqQRYcV87oG-FKGe9Hfv7IRN9tnoCdcnFUJjLc8dNzpItV0gvlRAtVjpoNczfSuf9VthUBv7ZlfSGOZREo',NULL,'2020-07-15 01:24:35.802000','2020-07-15 01:24:35.802000',5,'Monica Bonilla','https://lh3.googleusercontent.com/a-/AOh14GgXgWaI856AzfP6i9m6QUtQJBYEpofSCp_l2TG3EA=c0x00000000-cc-rp','17394740196501090048',22074),('AIe9_BGErQpX2pRNZrXBy5NOsH0eoyDuvl6oA5FOTNFGcH0BNPZ0ki2j3lUolgyU-Cj785oI9knDpmmrF4Z6ky8l1s7POEeXlx2Aj5yFw5vmu4PMA-6UOOQ','Very kind, friendly and was able to get in and out in no time.','2019-10-11 01:05:03.015000','2019-10-11 01:05:03.015000',5,'Nikki Johnson','https://lh3.googleusercontent.com/-2VB9ZxCyrB0/AAAAAAAAAAI/AAAAAAAAAAA/u3aEjaJ8Z5g/c-rp-mo-br100/photo.jpg','13486358490203335051',786),('AIe9_BGErQpX2pRNZrXBy5NOsH0eOywpr1289I8Nx0bk2IAzRTEKPsmTvn5Y4AfV8p29FeQr-erXhq7Ez1U8QjV08eJtJZtjh_8GevfZqsc-qD3KvOz89cU','Great experience always came in earlier this week for my wife and I and the doctor and staff were amazing with treating us for strep. Now we’re here again unfortunately for our son but dr.tran as well as the nurse Trisha have made our visit nothing short than amazing very welcoming and knowledgeable staff. Highly recommend','2019-03-31 00:51:14.024000','2019-03-31 00:51:14.024000',5,'DAVID CORREA','https://lh5.googleusercontent.com/-M5UNDK6oxdI/AAAAAAAAAAI/AAAAAAAAAAA/PJUkMWToKjs/c-rp-mo-br100/photo.jpg','12541597562633926366',524),('AIe9_BGErQpX2pRNZrXBy5NOsH0eoyXsuP-kbv961_hjpZMRbJUqiy6qScyN_db6Nsg5bnbenbT6Z9HG0zcxOZcsUVe2s-lAbeY3s-Rap0TQVKgcq-9J7cE','Lorena and Victoria at the front were so nice! Very short wait time for COVID19 testing.','2020-07-26 16:08:19.402000','2020-07-26 16:08:19.402000',5,'Reagan Brown','https://lh4.googleusercontent.com/-DijTURnHC2Y/AAAAAAAAAAI/AAAAAAAAAAA/G_fnqffIoMk/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',22023),('AIe9_BGErQpX2pRNZrXBy5NOsH0eP6FED6wmtU9hCp-rGjeiI2xfl41oxEBOmoskr_kphk2NpqQEeJEIY9d23s3X-kDdOLHXFsjWPqrmvieYjYcKybTnBxw','Great service from the front to the back. The nurse Elizabeth was wonderful, very caring. Dr Kotey was also wonderful, very caring they both explain everything they were going to do to me to make me fill better.','2016-07-31 11:47:12.042000','2016-07-31 11:47:12.042000',5,'Felicia Wade','https://lh5.googleusercontent.com/-SIBGpYsg2HU/AAAAAAAAAAI/AAAAAAAAAAA/cdxiv-hNWBQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5218),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePAoh2lUVKnIm1GR6qnqs9VzuvGut2qX0gL_y6rj_mSKMoFzl2G08BomEjopkwSbGYsRs2lDsYwFJs1DRD8sMKvv1CtU','Excellent service and friendly staff','2019-03-04 07:27:28.481000','2019-03-04 07:27:28.481000',5,'Nicole Carter','https://lh6.googleusercontent.com/-0o_K91Bx35s/AAAAAAAAAAI/AAAAAAAAAAA/1MXNQrTDgrM/c-rp-mo-br100/photo.jpg','17898197009688164559',5825),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePcF470MccQuVGukuEAREd9cNaqXa6S2cfq0d_owEBjf9p6T4Dz5vzzPP1IeR_ZMDm6eM_tA1EtnaJ2F0DjP16e8Ug68','Jocelyn thuy Marcus alvean they good people and Care about you','2020-02-12 15:33:37.961000','2020-02-12 15:33:37.961000',4,'Luis Palacios','https://lh5.googleusercontent.com/-oMT7rojLw6M/AAAAAAAAAAI/AAAAAAAAAAA/YK7UABKxYkg/c-rp-mo-br100/photo.jpg','16389487648212004696',22590),('AIe9_BGErQpX2pRNZrXBy5NOsH0epf9eEk33-hd2n7TyzOz8FOkLjwtTZPNIIQBOa4opvv8ZHuyKVNoMYR3dSdgpr1cwxI2N2zAoAR6HLrgu2ZUhEOTcQ6I','The absolute best care I’ve ever had. I came in and was immediately warmly greeted by a wonderful nurse named Adam. Everyone has been beyond amazing and caring. In a night when I should be scared and worried about being as sick as I am, they kept me positive and comfortable. Chris,Linda,Adam,Gabriel, and Dr.Elsbecker are the kindest and most caring medical professionals I’ve ever met and I’m grateful they were the ones caring for me.','2019-11-05 01:42:44.159000','2019-11-05 01:42:44.159000',5,'TheGoldenCummies','https://lh3.googleusercontent.com/-XyCIkXJkMkY/AAAAAAAAAAI/AAAAAAAAAAA/-GlCp8bC1WE/c-rp-mo-br100/photo.jpg','16891069708558046635',4160),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePfIAytnThdH6yfkXQ5DaYKogIXhurHZxBc-1ZR2oWD8V03gvlm2P4ClGMAvx74CSh6O1NV8lL25zIdo0OZCw3jCLsL4','Wonderful staff and doctors! Everyone was friendly and very attentive. They were also fast and thorough so i was in and out of there quickly. Definitely recommend them.','2016-09-28 16:33:50.107000','2016-09-28 16:33:50.107000',5,'Marcela Manzano','https://lh6.googleusercontent.com/-6qD8i--PQqo/AAAAAAAAAAI/AAAAAAAAAAA/XsTvqKyGn-4/c-rp-mo-br100/photo.jpg','14567670160750071148',1965),('AIe9_BGErQpX2pRNZrXBy5NOsH0epJ6XTIbGd3AvgOmyR28rlU0pzq5xgjvT_qIIWznn0-q32n2dyghgi4t7Si9gMi2bmGUxeYa9Lyh4Bvzqi5zzD6GxedQ','I had an emergency issue and went to the Cypress location late on a \nSaturday afternoon. The staff was very professional and courteous. They quickly assessed my issues and provided the certified technicians to run all of the tests required. I was in and out of here a lot quicker than I expected. I will be coming back to Signature for any future issues I may develop versus going to a traditional hospital ER.','2019-08-19 13:19:15.336000','2019-08-19 13:19:15.336000',5,'Mmo Investigations','https://lh6.googleusercontent.com/-MFurzDFkUNA/AAAAAAAAAAI/AAAAAAAAAAA/JOrjjmfyKgQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePKY2HZaFSBeKwNVzNO5mg-KcLVAL6h6EH9j9HeH_xYIv4SJNXjLHCEgNZ1NyCa5VpO39Wq-DpXWdgO28B9gO_eGHyoM','Maya at the reception was so nice very helpful','2019-12-24 17:13:44.305000','2019-12-24 17:13:44.305000',5,'ameras G','https://lh4.googleusercontent.com/-18EcXjZiMQQ/AAAAAAAAAAI/AAAAAAAAAAA/YruhkSlRDvo/c-rp-mo-br100/photo.jpg','12541597562633926366',308),('AIe9_BGErQpX2pRNZrXBy5NOsH0epLkYkBQFt0zcc-3m695SlRNV-eCozK8FD9DdJNfKoo479tMAU0NCmqxfvPSzm9TCqjr8EMXaHk6nGXCU2D_NsXWjKF0','Nurse Melissa Bass was extremely welcoming!','2016-05-23 14:15:39.292000','2016-05-23 14:15:39.292000',5,'maddy ortiz','https://lh3.googleusercontent.com/-09ekQgLij4Q/AAAAAAAAAAI/AAAAAAAAAAA/hzHCKRoJnGI/c-rp-mo-br100/photo.jpg','14567670160750071148',2031),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePPFEtpcjverVyXpUO0Jz3aWDEnYXbBAisBUfc5Vzx7A5PoZr3UuQokmqaeW1btjl0pNLWGKfyhTPPR4N28hjF84pXw0','Dr. Chukwu and his staff Churiah and Amy were super helpful and friendly!','2019-03-10 04:28:18.000000','2019-03-10 04:28:18.000000',5,'Play Stop Rewind','https://lh4.googleusercontent.com/-TtAaAQmPa1M/AAAAAAAAAAI/AAAAAAAAAAA/lST5m2Zzpqc/c-rp-mo-br100/photo.jpg','3511292162159714121',7386),('AIe9_BGErQpX2pRNZrXBy5NOsH0eppR66FXmp-XXEnDv6nclcdIMXk7K4W5De9_uluDBma1c-e-ivoEuvNLHAlKJKH-5VfF-DqNKxEaYg-1UAysgD39gxek','I was met with compassionate and caring representatives. Everyone was professional and my experience was excellent. I would recommend to any others looking for immediate medical attention, as I was in a room and being assessed for diagnosis and treatment within 25 minutes.','2017-03-18 16:00:29.647000','2017-03-18 16:00:29.647000',5,'Summerlynne Bartlett-Moore','https://lh3.googleusercontent.com/-8muMKy0Z2h0/AAAAAAAAAAI/AAAAAAAAAAA/yYLLmnLSMdU/c-rp-mo-br100/photo.jpg','14567670160750071148',1863),('AIe9_BGErQpX2pRNZrXBy5NOsH0epqKvO0MydU3ym0LL8pzO7aURsljFuqhr4vsWkvpw2akv46K-jY3Kxm1E0W4gaXNAZW-uB_60Hnu8EDgfRF0sr0Tdcto','MOST FRIENDLY HOSPITAL IVE EVER BEEN TO. MADE ME FEEL REALLY SAFE. DR. Thomas, Nurse Irving, Rad Tech Holly & Lisa, Registration Aerial W were so welcoming. I’ll definitely be back!','2019-09-28 06:32:40.516000','2019-09-28 06:32:40.516000',5,'Clarisse','https://lh3.googleusercontent.com/-urX0Y8gGTYE/AAAAAAAAAAI/AAAAAAAAAAA/VvuaA3jG87k/c-rp-mo-br100/photo.jpg','12541597562633926366',411),('AIe9_BGErQpX2pRNZrXBy5NOsH0epRe0eie_4mnqyu0LkYM3XaQ-NiY1BHGE3whLZ24fOFco2f4TV_0jB-3LFr2Xxmwxfu1XAf2MJBAgr7K6kHit-zMwJ3E','It was a great experience and the doctor and nurses was so helpful thanks to Dr. Patel, Sarra, Christian, Sherwin, Carly.Thanks again....','2020-02-05 03:43:08.512000','2020-02-05 03:43:08.512000',5,'K*DUBB Washington','https://lh4.googleusercontent.com/-8XZkXzNHx_o/AAAAAAAAAAI/AAAAAAAAAAA/kg0ulye9fvY/c-rp-mo-br100/photo.jpg','12541597562633926366',10373),('AIe9_BGErQpX2pRNZrXBy5NOsH0epSuOjbC3Kkjl9a_t3OSNyZSdJ9FoN4VF2qRxbtvAThDigauaVIE1ygiLZXTz_mA4iAZGPvIbH8MDFkqpOutYbuyRljc','SignatureCare Emergency Care Center is the best care I have gotten. I\'ve been there twice and both times has been a great experience. Teresa was awesome. She gave me some runts when I was leaving and made it very a personable experience. Dr.Smith was great he made me feel at ease from the alarming information I got over the phone. And I cant forget Olivia, very professional and is nice to have someone sweet and understanding when you are in a crisis. Thanks to all of you. I have been passing the word around about this center. Stephanie Barnes.','2016-08-12 14:56:14.221000','2016-08-12 14:56:14.221000',5,'Stephanie Barnes','https://lh6.googleusercontent.com/-o2SL0scGQvA/AAAAAAAAAAI/AAAAAAAAAAA/erG3yvcJpdg/c-rp-mo-br100/photo.jpg','14904078213800803294',2469),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePtjjAku8EyvctCmDY1wN4IvoiMwYuf2lYFvZ0EvIvLYt1L-gf3BMviQ1iF3Ut61qzO3ebpWCaZ_Lc01Fi7STOYVdYPY','Dr Boester. Niki. Rn Amy','2019-03-11 23:39:23.527000','2019-03-11 23:39:23.527000',4,'Kenneth Grant','https://lh4.googleusercontent.com/-ANCTjddiW08/AAAAAAAAAAI/AAAAAAAAAAA/ww3SJ0zidsw/c-rp-mo-br100/photo.jpg','14567670160750071148',1373),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePU3WtHw8fQ2MLIyyuAHqqkHQAJ3EXt98w4KPidmdd5GEfAz0oH6anrCvkk4XCrAA_Kz-ZCmmv1K1KXVaviNRwddtn4E','Cynthia was very respectful and informative. Jonathan, Jessica,Hoan & Dr QUreshi was nice','2020-08-10 19:58:08.493000','2020-08-10 19:58:08.493000',5,'Lois Miller','https://lh4.googleusercontent.com/-rI6xYZH8bTE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmuHhpNsllI1yDK5CyuIlrXGYHGxg/c0x00000000-cc-rp/photo.jpg','14904078213800803294',23038),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePVDDp7z4d4tQvj_gQq-R5uEdY_80TLL1_1zixR7hMd17AO9J8GWqPvmLu9aEt7-3_AuPKo0wLHSPngOBIjFH4UfANPs','Dr. Vakey, Kendra and Jacob were very helpful and helped me in a prompt and professional manner','2020-02-01 19:00:01.515000','2020-02-01 19:00:01.515000',5,'Brett Johnson','https://lh3.googleusercontent.com/-5ORsZVyc3u0/AAAAAAAAAAI/AAAAAAAAAAA/u7bajKihWAE/c-rp-mo-br100/photo.jpg','16590124370714063921',10431),('AIe9_BGErQpX2pRNZrXBy5NOsH0ePwBiF11FC7IoaGPKyY99bydleqDEcWKmhsTl6JJO_iG77j-IgsA6MDhz1CM3HhTECr0UERLLvTmgaZZz67lgENhGCCM','This was amazing they walked me through all the steps of the testing it went swiftly I definitely recommend this Building for COVID-19 testing','2020-06-20 21:58:30.444000','2020-06-20 21:58:30.444000',5,'MoBB_hArlim _','https://lh6.googleusercontent.com/-BUu8bWO1seo/AAAAAAAAAAI/AAAAAAAAAAA/nHcCCScB79c/c-rp-mo-br100/photo.jpg','8918455867446117794',21224),('AIe9_BGErQpX2pRNZrXBy5NOsH0epZirHAtj2L1uxbX1JRrZDAm0jvZRQqaz__tYgiOSYeXNPNbDs5X_sHJ_2udwH_nmtXiZQP7N7eP9LffqU8Elr4gTxhQ','Everyone was amazing from the doctors dr plants to my nurses Anthony and jeri','2018-08-12 22:50:22.937000','2018-08-12 22:50:22.937000',5,'Carrissa Wood','https://lh4.googleusercontent.com/-FyQznUY-ZLI/AAAAAAAAAAI/AAAAAAAAAAA/-TOFFDIHqaY/c-rp-mo-br100/photo.jpg','16590124370714063921',3795),('AIe9_BGErQpX2pRNZrXBy5NOsH0eq3c-YLW80p0OJdsfAdPGLBCawTm_t7PFSDQgfhg55Wab4P_RGg54kC6TS8VPQyafh9bPpfN1h464KpXiehUXWfrazhA','I sliced my knuckle open and needed stitches on a Saturday night. The staff and Doctor were extremely courteous and attentive. Although I\'d rather not make another trip to an ER, if needed I would gladly return to this SignatureCare Emergency Center. Clean, friendly, competent, convenient. Great experience.','2020-02-03 00:59:23.109000','2020-02-03 00:59:23.109000',5,'Joan Martinez','https://lh5.googleusercontent.com/-Bc8Wx4vuW_E/AAAAAAAAAAI/AAAAAAAAAAA/IpDsyZqc82E/c-rp-mo-br100/photo.jpg','16389487648212004696',10408),('AIe9_BGErQpX2pRNZrXBy5NOsH0eQ5yHBr-oZefBE6uMYUA3nXohVUwuCN0zPhMUcZna4OLi2sIa9EZ9Kp0smkLslRNH_IR3URhaW5ja72SAZcNP5RM3sMY','I have come to the signature care off of Slaughter lane twice now. I was so impressed with how kind, outgoing and efficient the staff were both times. My girlfriend told me about this place as its in her neighborhood and raves about it too. The docs and nurses were extremely knowledgeable in addition to the staff being so kind. I actually drove from across town to come here for my second visit because I had such a good experience the first time. Second visit was equally great. I can’t recommend highly enough.','2020-06-15 14:35:09.924000','2020-06-15 14:35:09.924000',5,'Arnold Estrada','https://lh3.googleusercontent.com/a-/AOh14GieXiYQuuTZ0mqmzyPXfFZpQKHZzDeZvAmZ-k3KoA=c0x00000000-cc-rp','16891069708558046635',22041),('AIe9_BGErQpX2pRNZrXBy5NOsH0eQ70o2UgbcxSM9Dy5XbIdJqjd7teMfxcdV5SlKBlQcS5G5xFM04GMIpAWgId9OSGqR4YOuCrFT3zgxZYOcYCXjbM99Bk','Great service!, they explained everything very punctual and the service was amazing.','2016-06-14 15:42:54.366000','2016-06-14 15:42:54.366000',5,'Fernando Garza','https://lh4.googleusercontent.com/-RSATXSW0oa8/AAAAAAAAAAI/AAAAAAAAAAA/o-qQUlw33e4/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7984),('AIe9_BGErQpX2pRNZrXBy5NOsH0eq7oTwYuiamPTPuFNrmtdCfL7EKcQ0v8okbHh8rgP17b4s0IAJTgv2FOw7rbHi9YhuGaOiXw2Pu6_pvjNOddbboV0oRw','The team at signaturecare was amazing! Kristina is the best nurse ever!!','2020-01-05 23:33:22.052000','2020-01-05 23:33:22.052000',5,'Jr Adventure','https://lh6.googleusercontent.com/-o4zdPy2qVqc/AAAAAAAAAAI/AAAAAAAAAAA/G1dqh-oZ970/c-rp-mo-br100/photo.jpg','12541597562633926366',246),('AIe9_BGErQpX2pRNZrXBy5NOsH0eQJAPS5DztThsX_f6-StoKGIYXxhpK3_RzwuNbUorL1--l_2Y2WwBH4IkZBnru8xk5XIl_VaWefec7ovwFTzu2ls2U-Q','everyone was really nice and I got out of there within an hour and a half so pretty fast','2017-09-28 14:59:19.600000','2017-09-28 14:59:19.600000',5,'Elena McCue','https://lh5.googleusercontent.com/-GrVKZHu2t_g/AAAAAAAAAAI/AAAAAAAAAAA/JWgU7O9R3vA/c-rp-mo-br100/photo.jpg','16590124370714063921',3929),('AIe9_BGErQpX2pRNZrXBy5NOsH0eQoYvi4-UZqk4fUKN8a-IKn4ZcIDxEVIKgoA0t62thuFUyN0vjB_907i3RvinHjip-5bdzM3yKEWyei8BRLjqWCS3th4','Staff was very exceptional. Definitely recommend in the event you don\'t want to spend hours waiting in E.R.','2018-03-10 01:30:09.925000','2018-03-10 01:30:09.925000',4,'Shawn M','https://lh5.googleusercontent.com/-rifTNOCsYwI/AAAAAAAAAAI/AAAAAAAAAAA/-QQApLKlb80/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2274),('AIe9_BGErQpX2pRNZrXBy5NOsH0eqvwR4Nov3osVpJ3noh0IjimBZtF_xq9zpXCQCOy5UYXw619Yxd8IoXkxWsIDpRlFsr43C8H4eBR5iR9PaXc8NxlgN-4','I injured my finger on vacation in Belize and missed my connecting flight in Houston so I decided to get it checked out here since I couldn’t get another flight home until the next day. I’ve never been seen so fast at an emergency room. Everyone was so nice, the whole visit was quick, and I felt so much better knowing what I was dealing with and knowing that I was getting proper care sooner than if I waited until I finally got home.','2018-02-22 03:35:17.287000','2018-02-22 03:35:17.287000',5,'Sylvie Smiley','https://lh3.googleusercontent.com/-FrKRVptNO_s/AAAAAAAAAAI/AAAAAAAAAAA/cGRkhs3LyfI/c-rp-mo-br100/photo.jpg','14567670160750071148',1653),('AIe9_BGErQpX2pRNZrXBy5NOsH0eqWOoudHlFNkpMn9gcedoVPKsFShYXwZbBeRjW7Kvtfz8CbV43coBm_7l5rC9_ou99OD-aNaASaoRTXkEWPW2hhlZAXo','My experience was extremely positive. The site was clean and the staff was respectful and pleasant. They attended to my needs quickly and were very informative. I would HIGHLY recommend Signature Care Stafford.','2020-07-02 19:42:18.637000','2020-07-02 19:42:18.637000',5,'Karen Smith','https://lh6.googleusercontent.com/-xtEsVK1H6Y4/AAAAAAAAAAI/AAAAAAAAAAA/oH4bIscPerg/c-rp-mo-br100/photo.jpg','8918455867446117794',21502),('AIe9_BGErQpX2pRNZrXBy5NOsH0eqXl3WbyS6xSdZw6jbZ91yP3Gv3tp4V1OelqTFSUYkZNKvsTWlf0Nfsod2DKIMb4iMbqegatkfeECrtRiL9DIiIgkh9Y','Good place to go when need quick medical attention','2019-06-26 16:45:09.771000','2019-06-26 16:45:09.771000',3,'Texas Diamond Records','https://lh3.googleusercontent.com/-UEfTXuW4KaA/AAAAAAAAAAI/AAAAAAAAAAA/F6gIUYEft-g/c-rp-mo-br100/photo.jpg','13486358490203335051',922),('AIe9_BGErQpX2pRNZrXBy5NOsH0eQyK5szRTT_kM4fwLqy4eRbxqaj4XE7h5zEL9isXtzraFrI_lwwD3DXihvY775xnNxy074-1sgP0Byiefbon77DVnGdk','I had a very pleasant experience here, not to mention the place is very clean! They were genuinely concerned about my son, all three nurses helped try to comfort him. Also Jennifer D at the front desk was very informative and helped me with all my insurance questions. I would highly recommend for emergencies.','2020-02-06 23:36:50.506000','2020-02-06 23:36:50.506000',5,'jennifer young','https://lh5.googleusercontent.com/-pI2-k2gltz0/AAAAAAAAAAI/AAAAAAAAAAA/8ZsGjyKgJc8/c-rp-mo-br100/photo.jpg','8626688543755174284',14621),('AIe9_BGErQpX2pRNZrXBy5NOsH0eR-zPlz7QhOWSWFIgiH_XR1ea7TrgLabNAvSoczlOMNAZQAsDDAWkHZphX0T7npb6IKpgCX2M7bIlpkw87csmvb8vQ3c','This is my second visit to Signature, and the service, professionalism and care they offer continues to be unparalleled. They made an emergency situation comfortable and less stressful and I felt in the best of hands. From being greeted warmly by Christina to being cared for by Nurse Marty to Drs. Leung and Rose who were patient and thorough. The whole experience made a tough situation so much better. Thank you!','2019-10-23 18:04:19.236000','2019-10-23 18:04:19.236000',5,'Ctr Dos','https://lh5.googleusercontent.com/-_Ibug9NyUqo/AAAAAAAAAAI/AAAAAAAAAAA/_JMPxlebOLw/c-rp-mo-br100/photo.jpg','16891069708558046635',4174),('AIe9_BGErQpX2pRNZrXBy5NOsH0eR017YXIAZjQJvBTJbV84rvN-b5SyYoLUzn8m1mIXS-Yf84BwG6D9WxeS3of0vFDtCLCt9ydiA1kl4-xsedmX1F6f2Gg','Absolutely amazing.','2017-11-03 17:25:00.118000','2017-11-03 17:25:00.118000',5,'Adil Bhaghani','https://lh6.googleusercontent.com/-_5DIAnzY_D4/AAAAAAAAAAI/AAAAAAAAAAA/5cMrGvmI4xs/c-rp-mo-br100/photo.jpg','17394740196501090048',4939),('AIe9_BGErQpX2pRNZrXBy5NOsH0er5sYj0dRYZvhvkqnSVyDpofbEAvXpwwE1s45TrwYkfdzx3YwbsYLt26yOAWpi2ZOMGsHMrKRpW6f-IOim7J9fNqbsPc','Great service, very fast and Dyveliz and Rebecca are kind and helpful.','2019-10-17 01:15:20.016000','2019-10-17 01:15:20.016000',5,'Karen Enchilada','https://lh5.googleusercontent.com/-cTk3DomT6sQ/AAAAAAAAAAI/AAAAAAAAAAA/_v9VkxTWZ7A/c-rp-mo-br100/photo.jpg','16590124370714063921',3135),('AIe9_BGErQpX2pRNZrXBy5NOsH0eRafMxh6YX6_NBq6zZYD8hcmR99PDJaz-Oc1-QBuctG_fl-noNu5RTIYcQM2-5I9g27un31k224x5tRiC4UaglRxeJPo',NULL,'2018-05-27 22:48:45.237000','2018-05-27 22:48:45.237000',2,'Staan Schmidt','https://lh3.googleusercontent.com/-e1gusFM4RV0/AAAAAAAAAAI/AAAAAAAAAAA/emsOUdOyrsU/c-rp-mo-br100/photo.jpg','3511292162159714121',7702),('AIe9_BGErQpX2pRNZrXBy5NOsH0eRAQEW0-q3G_bVV2KXodAWSBVY8ycOZz0d1PoBggT0GUsSYY9l_RceEVA51wnPasN3iAu5TcsrlSOhaiem9N3ysavMW8','Awesome experience.. No waiting time, cool environment, friendly staff. I highly recommend this location to all.','2019-06-22 19:05:52.860000','2019-06-22 19:05:52.860000',5,'Adeel Sunesra','https://lh5.googleusercontent.com/-P1-SMTU3QMc/AAAAAAAAAAI/AAAAAAAAAAA/r846U2SDK5I/c-rp-mo-br100/photo.jpg','17394740196501090048',4657),('AIe9_BGErQpX2pRNZrXBy5NOsH0eRBebAnnz1NfrEL4md6nKDTVmhMSW8w4nzwqygQwxI581hxZKRF-MejxT_gYHe5Yx2CoHZ3NGC1mB5op9-gxloANaKF0','Excellent care and outstanding staff are what you can expect when you come here. I could not be happier with the care I received here from the receptionist, the doctor, and the nurses and techs that had a role in my treatment in between. They earned every bit of this 5 star review.','2019-08-25 21:54:36.500000','2019-08-25 21:54:36.500000',5,'Luke Vogt','https://lh6.googleusercontent.com/-3QJ8XOIR6tY/AAAAAAAAAAI/AAAAAAAAAAA/82pBFmgpGSk/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3235),('AIe9_BGErQpX2pRNZrXBy5NOsH0erGnqbtbt1kTDgrFvNjP-CMMQpEtl31Z84KDXh7aJwP9zOShhDoM2ht-FWQPGh98ZgCo5ObMXr2zcQZNbdtOuIa0HrzA',NULL,'2020-07-27 20:26:21.083000','2020-07-27 20:26:21.083000',5,'Rebeca Holguin','https://lh5.googleusercontent.com/-1YZ0MWEnwsY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclyp4zXxFtmO4b-crfp-o8fHJ0SZQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21845),('AIe9_BGErQpX2pRNZrXBy5NOsH0erGRcN5F0EEv8eO_fetm8JYK9_VNNjjUSA3691w94oGje2guRyUJSG3EUQ1G5IigZbdVecsK9yEy8EH2MqJ8dHrFPDiM','Without a doubt this is a 5 star facility. From the moment I arrived I received world class care. The entire staff was courteous and professional. The facility was very well equipped and was able to exceed my expectations. I went in experiencing heart attack symptoms . Every test that could have been performed at a hospital was done at this facility. I was kept overnight and the nursing staff was exceptional. I highly recommend this facility','2019-10-23 14:06:07.638000','2019-10-23 14:06:07.638000',5,'Terrence Hurley','https://lh4.googleusercontent.com/-BoOHsE40Vcg/AAAAAAAAAAI/AAAAAAAAAAA/rDlX1Kxh8h0/c-rp-mo-br100/photo.jpg','17394740196501090048',14080),('AIe9_BGErQpX2pRNZrXBy5NOsH0eRh-EE11GhEDOl5TBNzoYbyzXc5jhsRByg65Osy_-gEIGSEsFhxZC2tJMQJ2R24rvG17PbRAZDU0j4H0jx7eIHd9xHa8','Great and quick service From Rayven & Dyveliz and the rest of the staff','2020-02-12 04:16:49.329000','2020-02-12 04:16:49.329000',5,'Daddy Rogers','https://lh5.googleusercontent.com/-m_2hqHDCOlU/AAAAAAAAAAI/AAAAAAAAAAA/Atmyy7W75EA/c-rp-mo-br100/photo.jpg','16590124370714063921',13863),('AIe9_BGErQpX2pRNZrXBy5NOsH0eri8RDcXJjWlHzjin3VuGhSCzO1KUq_Sry-ddd77w6-YrL-Bys_t5CES0Xcl_6mF_-ueGgdeow-90mP3flu5gte6B90k','Very professional. Staff is so kind and facilitiy is clean','2018-08-10 01:24:07.387000','2018-08-10 01:24:07.387000',5,'D J','https://lh6.googleusercontent.com/-zTztaq8BEKM/AAAAAAAAAAI/AAAAAAAAAAA/1xKH5aeNGcI/c-rp-mo-br100/photo.jpg','12541597562633926366',621),('AIe9_BGErQpX2pRNZrXBy5NOsH0erIcs0NVUU72ZqLad4Ra5DJqn3ka_QGHW37r2GOxe-UPuIOFToVaaPMRP7c6E7VXssIeRyE_q_QwCe4vbnBn1tbe9_T0','This is my third visit to this location and I have recommended the services to my friends and colleagues. The registrar Genesis is very friendly and attentive upon entry into the facility. She even offered snacks to my son who was very appreciative. Once in the back, the medical staff were also very attentive and concerned individually. Alvean, Christopher, and Dr. Harjai made my emergency room experience an extremely smooth process and I will continue to utilize their services whenever in need. Thank you all so much and keep up the great work!','2019-11-16 19:06:22.447000','2019-11-16 19:06:22.447000',5,'LaShawn Williams','https://lh6.googleusercontent.com/-fo2hKygwy8Q/AAAAAAAAAAI/AAAAAAAAAAA/FGYIpq37c8k/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2681),('AIe9_BGErQpX2pRNZrXBy5NOsH0erK5gCseuKSMRhBRea5hnwK_Tdnre6QR9Xva7AY25RTHFRFYBqL1C0aV6VYUHuFHry1DbelSI_g0yvznpUSkr-MF9wUo','This is the third time I’ve had to use Signature Care Emergency Center. Every time I’ve come in here, the staff has been friendly and very prompt in handling my needs. There is no better emergency center in the Houston area. I am very appreciative of Dr. Daniels and the staff (Rollie, Natalia, and Stephanie) at the Bellaire location.','2019-12-28 02:03:47.831000','2019-12-28 02:03:47.831000',5,'Jason Garcia','https://lh3.googleusercontent.com/-h9YiwOaCCu0/AAAAAAAAAAI/AAAAAAAAAAA/PW7WTx7V5xU/c-rp-mo-br100/photo.jpg','8679688254631342173',8666),('AIe9_BGErQpX2pRNZrXBy5NOsH0ermg6aOVIRhZEmFbLp0FX6Wl858HPj_qjrl--nzQdC72A3FqW2-EIIDL1b7BNwCpSUgDeJFI6dV4F630tG6-oQxS_OYs','I was very sick and work nights so I needed a 24 hours open Dr to see me because I didn\'t want to have to wait until 8 or 9am. SignatureCare emergency center was open and after reading all the great reviews I decided it was the place for me. The entire staff was great and before I knew it I was feeling better after I saw the nurse and Dr. I was in and out in no time and what I really liked is that you can make appointments online. Thank you','2017-04-09 01:43:58.124000','2017-04-09 01:43:58.124000',5,'Daniel Lopez','https://lh3.googleusercontent.com/-t2fKjh7SelA/AAAAAAAAAAI/AAAAAAAAAAA/jBV_28faXRY/c-rp-mo-br100/photo.jpg','14567670160750071148',1852),('AIe9_BGErQpX2pRNZrXBy5NOsH0eRpaRGjrZivpYAGR8MzgwSGtIzmIyErJ4p7ab0zlIdqK09Q2rY2SLLIji7IkRr0N3w7LPDKUDcC8lf0KBMLhexvQpP10','From the minute I step in i felt very cared for staff greeted me and pointed me to the right direction. I really loved the fact that Amy was able to get me through the registration process fast which usually takes long.irving was able to let me know what pain I was having while doctor faig helped me back to health in all I can say I had a great experience truly a good place to visit for any emergency','2019-09-13 01:57:50.531000','2019-09-13 01:57:50.531000',5,'harmony olatungie williams','https://lh6.googleusercontent.com/-GAmtvu98IGk/AAAAAAAAAAI/AAAAAAAAAAA/NX7btA_Ipn8/c-rp-mo-br100/photo.jpg','12541597562633926366',428),('AIe9_BGErQpX2pRNZrXBy5NOsH0erpxEXJu0nBUdmLS4MYKvcOgqlf7iGyw0dmcTPO9GF7LvxPdUeYTJ17wBHw8o61l1Z_RFC3lvrqNNFw7-iAKD14Y3_lI','I always come to SignatureCare when I am sick because Dr. Vakey, Jacob, Liz, and J.R always take care of me and make sure that I leave knowing that I’m going to feel better soon. I would highly recommend SignatureCare to anyone in the College Station area.','2019-09-24 17:16:25.664000','2019-09-24 17:16:25.664000',5,'Morgan Sewell','https://lh4.googleusercontent.com/-sVXyg6--fyU/AAAAAAAAAAI/AAAAAAAAAAA/NxQCWRVlWVo/c-rp-mo-br100/photo.jpg','16590124370714063921',3175),('AIe9_BGErQpX2pRNZrXBy5NOsH0eryavi8CQ3nky1kRtxmC1xbJLQtoQXgu3gXc98hBkdwLz9Jy1pQiGNsLvswQLWUGOuEw-zA_FtQL_aycMcUAGOMIjJ98','This was my first time going to an ER for myself and this ER was very clean and the whole staff was very friendly, you can tell they all loved their job. I came in for a horrible cluster headache, fever, and coughing which made the headache worse. The wait time was minimal and they gave me the care I needed in a speedy manner. They had plenty of refreshments in the back and surprisingly this ER was not freezing like other ones I’ve been to for my kids. I think this will be our go to ER for the whole family! Thank you for helping me!\nDR. NGUYEN, MD, RICHARD \nNurse: Susan M R \nRadiology Tech: Laura L H \nFront Desk: Tanishia W','2020-02-05 17:53:17.304000','2020-02-05 17:53:17.304000',5,'Linda Tran','https://lh5.googleusercontent.com/-8FzrTL7vUes/AAAAAAAAAAI/AAAAAAAAAAA/Xj61UcYVE6M/c-rp-mo-br100/photo.jpg','17898197009688164559',22710),('AIe9_BGErQpX2pRNZrXBy5NOsH0es--pBKtTGpmXZtdilOWznGvRSCxAwW7iHmJFe-79YVT8pBlAgQKABIzeBRc6UX0jCredMjV4AAJL3RrD0FqtEpI_pcQ','After long back and forth discussing the benefits of attending an urgent care with my mother for her very bad cough and aches, we ended up at ERCare in the Heights. I was very pleased to have Tatiana greet my mother and I with our interest as to what brought us in the office that evening. Minutes later which weren’t long at all, my mother and I were greeted by Nurse Rondy who was very attentive, knowledgeable and patient as my mother stated her concerns. From there a gentleman who I believe his name was Miguel took blood pressure and swabs from my mother was very gentle and kind when he assisted her. Shortly after Dustin cake to bring my mother to get X-ray on her chest to see if she had any Pneumonia, which she didn’t thankfully. The Doctor then came in an delivered news that was a little but unfortunate however Dr. Lim prescribed her Tamaflu and assured my mother that in just 5 days of taking the prescribed medications she will be back to her normal state. I am very pleased with the staff there. I have already told my family and friends great things are happening at this facility. Thanks again Signature Care!','2020-01-14 02:34:29.279000','2020-01-14 02:34:29.279000',5,'Moe Brooks','https://lh5.googleusercontent.com/-r_LxvqHa2fA/AAAAAAAAAAI/AAAAAAAAAAA/rQPOr_dX09g/c-rp-mo-br100/photo.jpg','14567670160750071148',9475),('AIe9_BGErQpX2pRNZrXBy5NOsH0eS2rJa37ZClO83kuo_RW1XhB6tKOmYYS3q2AdwQIQtasm2OljtwlibZwaplQtjv7VgkYAb1BmYYyYbKL3zytkTnWIjqM','Very knowledgeable and professional. I would recommend this location for urgent care.','2018-09-14 04:29:45.042000','2018-09-14 04:29:45.042000',5,'Nicole Bailey','https://lh6.googleusercontent.com/-DXD9pxTMAO8/AAAAAAAAAAI/AAAAAAAAAAA/EkdOt95pHPo/c-rp-mo-br100/photo.jpg','14567670160750071148',1510),('AIe9_BGErQpX2pRNZrXBy5NOsH0eS3zBq1H5NBwtbs5AxcaJv1vbHIg_2wPvgIus_TOcLDAiiSDYQz1cFgBlTKjgTNpBgPwH7CwmaTlIP2O3JdWzWZTv_Ms','Dr. Thomas all the nurse Kionna Sarra and Catherine were great today i was having an asthma attack when i got and they got me a room in less than 2 minutes if you have never been to a hospital where the doctors and nurses care including the people in registration SIGNATURE CARE IN WESTCHASE IS THE PLACE TO GO thank you guys so much now maybe i can get some sleep','2020-08-12 18:24:17.848000','2020-08-12 18:24:17.848000',5,'Sunny Cox','https://lh5.googleusercontent.com/-HoesZq4jSE8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmy76b6Da39C0E2JIu9lhjc5moVTA/c0x00000000-cc-rp-ba3/photo.jpg','12541597562633926366',23008),('AIe9_BGErQpX2pRNZrXBy5NOsH0eS4jqgVsqzKWsylXNzOjHD0PkCqFE6oLR8dHoejcPlqaWB9Hs4D0Z6yg1Bf1PtJ4CLHohysQ6PFB5kN4zKgfCO4Myc0o','Thank you! Ya are Awesome!','2017-10-05 16:52:19.136000','2017-10-05 16:52:19.136000',5,'Glynese McNabb','https://lh4.googleusercontent.com/-UEqLnFylVv4/AAAAAAAAAAI/AAAAAAAAAAA/KHMhZRjHARQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8652),('AIe9_BGErQpX2pRNZrXBy5NOsH0eS7kGoXF6__9Qwq1YZI-HvkFbF5fryFs4nLetFkolkWdKX7eT-xRmpRXh_IfufclytbkNSk2sRck0E_ZkpPoNVuco9cI','My experience coming here was the best experience I’ve had yet with any emergency room in Houston, Texas. Dr. Ortiz was very thorough, and the staff here ( thanks to Brandon N , Bryan D, Meredith S)were wonderful and the bed side manner was amazing. Samantha at the front desk took care of us quickly and smoothly. The xray technician Bryan and the doctor were just the best. I highly recommend everyone who is not feeling well to come down so that they can take care of you as well!','2020-01-27 05:45:28.382000','2020-01-27 05:45:28.382000',5,'Erin L','https://lh4.googleusercontent.com/-s2rCmOGjkpw/AAAAAAAAAAI/AAAAAAAAAAA/cxZtoyIadRA/c-rp-mo-br100/photo.jpg','14567670160750071148',10120),('AIe9_BGErQpX2pRNZrXBy5NOsH0esbURXNSYtzKVneRoVcsDwVQxMpXMORbCg7rFM-ooeAcCyuOFzrvS0DHgtIqX_bygj-NDxvHSgMpoaoUqqGcBLm__w1A','Seriously the friendliest staff ever. Not only do I consistently find doctors that couldn\'t care less about me in this area, but the office people are always so disrespectful and honestly just grumpy. The staff here was so welcoming and friendly and answered all of my questions. The woman at the front desk greeted me with a smile and didn\'t make me feel like I was wasting her time (like I usually feel at other places.) I literally want to be their friends. Was in and out really quickly and took my minor problems very seriously without making me feel stupid. THANK YOU. GO HERE.','2019-04-07 19:06:48.871000','2019-04-07 19:06:48.871000',5,'Caitlyn','https://lh6.googleusercontent.com/-j0Z2EBG93OY/AAAAAAAAAAI/AAAAAAAAAAA/AxThrVsJ3WA/c-rp-mo-br100/photo.jpg','16590124370714063921',3445),('AIe9_BGErQpX2pRNZrXBy5NOsH0esD_LSlUHqJfbRJJ_n1gYbn0818E6LAIfLw8faieSZPEEIZTY8E2FPxcv6bD1spz7TOdxIZM5iAvbwwCGTCEw8GiLVtU','Amy, Dr Boester, James, Shaun, and Nikki were excellent! \nThis was the best experience!','2019-01-01 21:58:19.418000','2019-01-01 21:58:19.418000',5,'Anita Patterson','https://lh4.googleusercontent.com/-G-N4XDSSzFk/AAAAAAAAAAI/AAAAAAAAAAA/iHR-fFQEU90/c-rp-mo-br100/photo.jpg','14567670160750071148',1438),('AIe9_BGErQpX2pRNZrXBy5NOsH0eSfWM3lYeAaStpOJsR8judf-gkPviEoBFEPsKP1jVC4p8shL3C0W-nkN67rmsuWfls-oqfjTD5uqTfIJEM2agK2pAKnc','Excellent Service! \nI took my son here and the service was exceptional. Amazing staff! Keep doing what you are doing!','2019-03-25 19:20:29.588000','2019-03-25 19:20:29.588000',5,'Ndegwa Wangire','https://lh5.googleusercontent.com/-yDoCbpFm-fw/AAAAAAAAAAI/AAAAAAAAAAA/voyq2sZBJJI/c-rp-mo-br100/photo.jpg','17394740196501090048',4702),('AIe9_BGErQpX2pRNZrXBy5NOsH0eSkgkvC_DKdHM40sutBb1A8TWkbVQvLm0nb5pYU-2wlhC6t0ZxE_3Tu4w4pW7PBb4RTFMZ65DTrWZjhf_AzIAsIe1tMI','Excellent customer service. Dr. Lingan, Christina, Linda and Brittney were all quite helpful during my visit. I recommend this South Austin gem to those who need immediate care and compassion. Thanks y\'all.','2019-01-08 00:26:53.983000','2019-01-08 00:26:53.983000',5,'Darrell Edwards','https://lh6.googleusercontent.com/-eQuu0PexTew/AAAAAAAAAAI/AAAAAAAAAAA/r05VY6ztFyw/c-rp-mo-br100/photo.jpg','16891069708558046635',4375),('AIe9_BGErQpX2pRNZrXBy5NOsH0esMthQQey-6pL96i2vHOBt3QDHC3SYAq9BPHo7DBNwy69AH5zwtV-rtM1PjG7kaeGQNdlPdYbMzOZY5JRdUczcg1GfW4','Great service thanks the doctor Thomas Sarah g geo any Laura and tanishia','2020-01-17 06:41:44.828000','2020-01-17 06:41:44.828000',5,'Caress Boyd','https://lh5.googleusercontent.com/-8bEz3X_Spgc/AAAAAAAAAAI/AAAAAAAAAAA/D00y1i8RcT4/c-rp-mo-br100/photo.jpg','17898197009688164559',9994),('AIe9_BGErQpX2pRNZrXBy5NOsH0esO-ygShQOZcQkGwrVcgrUtD3ECrfyQ8bIxjqUkvzvLpbZcLMED9si0AnOt7J9DDoVyKe12Os5_7T3hTrItwvjwcAsVo','Dr. Edwards was great so was the nurse Kristina, radiolgize Tino, E.R. Tech - Scott and registration maya were all so friendly I highly recommend to go here','2020-03-13 21:29:37.772000','2020-03-13 21:29:37.772000',5,'Cristine nelson','https://lh3.googleusercontent.com/-vubZXyfTDw4/AAAAAAAAAAI/AAAAAAAAAAA/TKkgEfrYpkE/c-rp-mo-br100/photo.jpg','12541597562633926366',20905),('AIe9_BGErQpX2pRNZrXBy5NOsH0esqHpikswgOMZw9H-T552oPF0E5UfbOqY3N-khq7XL5u7OMg4doX2OdvXJElcw36VjuzLS3mCeIdYZFDC2JT2A6udwj0','I went here for a sore throat, dry cough, and loss of voice. Everyone we encountered, from the receptionist to the doctor, was super friendly and helpful, and we hardly waited throughout the process! I\'m definitely coming here for any emergency care from now on!','2017-07-24 17:17:52.833000','2017-07-24 17:17:52.833000',5,'Shareyah Heinrichs','https://lh5.googleusercontent.com/-I1PykUk5jSI/AAAAAAAAAAI/AAAAAAAAAAA/H7uMLMsV7P8/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7799),('AIe9_BGErQpX2pRNZrXBy5NOsH0eSsNVUznRdwLFn5kWEHqna8E8sBCidJpVqYzLr31KdPKQgL9b1_2IHegNaEW0EVw-_rAWKg7OYnR78SGX1TUptJnzmYE','What a great experience. Had to have Covid test and it couldn’t have been easier. Went to the site many times checking for appointments and I got one rather quickly. Walked in @8:50 pm for a 9:00 appointment. Walked out with my negative results by 9:30. Front desk staff was great. Would love to give her praise but I didn’t catch her name. Went Sunday 7/5 9:00 pm. Keep up the good work.','2020-07-07 03:07:32.641000','2020-07-07 03:07:32.641000',5,'G. L.','https://lh3.googleusercontent.com/a-/AOh14Gh1nNtwxb-9LsTYFEVGOir0I9f-OT62pPuftNS3=c0x00000000-cc-rp','3511292162159714121',21296),('AIe9_BGErQpX2pRNZrXBy5NOsH0esxCKzW9OAMZDcRdlxVYvAGGy4xKukdrt15TjMb-68O-gpls5NJtMA8nFWltTgBmyzv7MsFoLsJphSO9edaqmMeKSMQw','Tanisha was awesome! Great service for an ER','2019-07-29 05:11:43.430000','2019-07-29 05:11:43.430000',5,'Yassir Elmaghraoui','https://lh5.googleusercontent.com/-Td8Fv7Ny42I/AAAAAAAAAAI/AAAAAAAAAAA/nTsWd_j1rbo/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5619),('AIe9_BGErQpX2pRNZrXBy5NOsH0eSYH9FiV9TkYXTaw2ph2kRAH3w743iCVoxdPfh8D3-Vq6r-9LpWzfze9vJZbCt_GLC6s1glrmo9gWe6GNrLpRY1FtCEU','Came in with a pretty gnarly cough, got called back within 10 minutes. The front desk lady even made sure to wish me a happy belated birthday when she saw it was the day before!! Christina, Christina, Linda and Dr. Rose had me through X-rays, swabbed and half way to my prescription while I was still on my lunch break!!! That’s what I call SERVICE!!! Thank you ladies for making my day take a turn for the better!!!','2018-09-13 19:37:46.540000','2018-09-13 19:37:46.540000',5,'becca walsh','https://lh4.googleusercontent.com/-Bahj0NAlwYg/AAAAAAAAAAI/AAAAAAAAAAA/3ioY6YhNbGs/c-rp-mo-br100/photo.jpg','16891069708558046635',4431),('AIe9_BGErQpX2pRNZrXBy5NOsH0eSyJq53J9P1EJpQNvdxxeJF66JNx5RgKhLqwm5qG1zgozePJ0P3dKzorB3O6UCMk5Wv8rsBhurVI13PFZwGEM4_hAJPE','Everyone was friendly and the service was great! Irving, Aerial , Thelma , Sherwin were all super','2019-09-03 23:49:13.268000','2019-09-03 23:49:13.268000',5,'Raven Martin','https://lh5.googleusercontent.com/-WWUU-cH24Q8/AAAAAAAAAAI/AAAAAAAAAAA/7UpRqQAWqS4/c-rp-mo-br100/photo.jpg','12541597562633926366',432),('AIe9_BGErQpX2pRNZrXBy5NOsH0eSYKnsDkz7bYGS7AjUoKX9LD6tWxweTEREurIpZmO6AevKZJUQbh5LebH_8SBMWflneeFsAwXp7ZkDLrONgmGgxoVx4U','In quickly, and out quickly thanks to the nurses Norma, Amy, Dawn and Eve! Let’s not forget about Dr. Leavitt!','2020-02-02 20:25:59.328000','2020-02-02 20:25:59.328000',5,'Zyriah Simmons','https://lh6.googleusercontent.com/-q0pJYEw7sX0/AAAAAAAAAAI/AAAAAAAAAAA/V0lNJ2G25TQ/c-rp-mo-br100/photo.jpg','3511292162159714121',14434),('AIe9_BGErQpX2pRNZrXBy5NOsH0eszk-DeRAlTL_Ltiry2Wja-v3gA7Af0ZUs0dUNH54F8A-s8CbmSPrs07ptBCh_LhUxOtaM6Mb5uOehoUKNEKEubUwaNw','the staff was so friendly and helpful; they saw me immediately and handled my hand injury quickly, went over the treatment plan and helped me relax. Very clean facility and caring, helpful staff. 10/10 would visit again.','2019-05-03 13:13:26.692000','2019-05-03 13:13:26.692000',5,'Julia Z','https://lh6.googleusercontent.com/-1kpzJz_7E0k/AAAAAAAAAAI/AAAAAAAAAAA/-TbBrnG_0Tc/c-rp-mo-br100/photo.jpg','3511292162159714121',7351),('AIe9_BGErQpX2pRNZrXBy5NOsH0et28yXttEQ-TdTvYa227u00qOVx6Nbm200Ohom7or5IHsJsaFflsDlK1VOzTZju3kFpfzMLYozt5oYOy-JGrIskSydzY','Dr. Kimball was very kind and calmed me down. Nurse Gabe was also helpful in informing me of everything to do in the next few days. Rebecca V had great customer service.','2019-10-12 01:24:06.656000','2019-10-12 01:24:06.656000',5,'Lindsey Thomas','https://lh5.googleusercontent.com/-Q65a9R-p0zU/AAAAAAAAAAI/AAAAAAAAAAA/2Tt8jCrHaBg/c-rp-mo-br100/photo.jpg','16590124370714063921',3148),('AIe9_BGErQpX2pRNZrXBy5NOsH0et8w1GeOGde1TAg5bTwUNFp_AmGvQyodXSMSPeXp0P9qxcjx8c3u2ZQGy_1Jr8ePNbxcPlOqCWG2dBgDH1jzjqK-mzcY',NULL,'2017-04-30 15:27:30.669000','2017-04-30 15:27:30.669000',5,'Forrest Westmoreland','https://lh6.googleusercontent.com/-CC0lBmH45Dc/AAAAAAAAAAI/AAAAAAAAAAA/IdT5yi76TBM/c-rp-mo-br100/photo.jpg','3511292162159714121',7827),('AIe9_BGErQpX2pRNZrXBy5NOsH0et9YUSMfctJDQLRufJ5yn35c9LmBgzkwvXNqcGoYp8Nb75dysOcLS23Zl6XlEI_4mpjAnpf6-GbRqJK1hR2OonWUf5uU',NULL,'2017-06-01 11:01:47.068000','2017-06-01 11:01:47.068000',5,'Mrs. Ford','https://lh4.googleusercontent.com/-dGq-KS4oIRc/AAAAAAAAAAI/AAAAAAAAAAA/4yrIRDDVU-I/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5045),('AIe9_BGErQpX2pRNZrXBy5NOsH0etbji0cJ-JburxDNNd0puXREyZ4dGxXDAxsiTh-be_ShKfKlB4r0hrLw6_YQjt51invYXD61v1kZ58F1bbMMrlZOubvY','The service at this location is 10/10!! My second time coming to this location and I will never visit a traditional ER ever again. Nurse Churiah gives the best care and is very patient and thorough in her explanations. All the physicians that work at rue facility are wonderful as well, especially Dr. Ding, Dr. Jaclyn Harrison, and Dr. Sylvester. Nurse West helped me all throughout the day I was at the facility and was very attentive and gentle. \n\nHands down best clinical experience I’ve even had.','2019-03-28 02:22:50.863000','2019-03-28 02:22:50.863000',5,'Nia Casey','https://lh4.googleusercontent.com/-9kLQ18HbJ5w/AAAAAAAAAAI/AAAAAAAAAAA/bMDe3bAm2XU/c-rp-mo-br100/photo.jpg','3511292162159714121',7370),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTcoz7_k8ZLJ5G06QmA5jSSkmb51NAqeAEYIczia32tAaE1vffaXv71y0igeWSFACxoldo2vOH8wDmA7zf8kJr0gVHGE','Tanisha at the front desk made the ER experience pain free! All staff were very kind. Fast, friendly, courteous service','2019-10-18 02:51:53.361000','2019-10-18 02:51:53.361000',5,'A R','https://lh6.googleusercontent.com/-_Ab8Cow0yqg/AAAAAAAAAAI/AAAAAAAAAAA/DNv5m6qndJE/c-rp-mo-br100/photo.jpg','17898197009688164559',5499),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTcYy1NXirHyCOIKfoCVIzGxq6OCuA6FRjqUDtsVlX3JhZQiGDl7mU6I-6Wzyle_Ckru4EtN7CGEkxx5Lg9XHD26iR8o',NULL,'2019-04-23 15:19:38.408000','2019-04-23 15:19:38.408000',5,'Ashton Swize','https://lh6.googleusercontent.com/-QvJ9tWQ96ns/AAAAAAAAAAI/AAAAAAAAAAA/vUFz7spUot4/c-rp-mo-br100/photo.jpg','16590124370714063921',3414),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTHsFFMTjFz-QfHeUWREiEn5nmnZ4kJ9PVRPI4o3NZ7oP3GyTHBtUUdBqhM70QgI3TRNBHd3ZJzpvV5vYqQMt3KckDMw','Stephanie, Rollie, Natalia and Dr. Daniels are the best. Quick, easy-going and professional. Next time I get sick, I know where to go. Thanks guys!','2019-10-18 04:30:46.721000','2019-10-18 04:30:46.721000',5,'FAHAD2679','https://lh3.googleusercontent.com/-zQnW0Szr5GI/AAAAAAAAAAI/AAAAAAAAAAA/taqUhX5mc7A/c-rp-mo-br100/photo.jpg','8679688254631342173',8791),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTIVJPW27qiEI1Gkb03Z4r3cTReu0zrSTGmRUEWC6v44XIw7XY0tHK_QAQ88EDVl1zZ19vRoA0-GCS-pDolq8L0_B-yg','Everyone from registration Shai, Dr Ding\' my nurses Tammi and Juan, and my Tech Ebony were all great and very helpful in making my experience quick and easy. Great job.','2018-09-03 21:13:37.833000','2018-09-03 21:13:37.833000',5,'Cody Gentry','https://lh4.googleusercontent.com/-vqiLyWB5OFQ/AAAAAAAAAAI/AAAAAAAAAAA/QkYlArAHFAg/c-rp-mo-br100/photo.jpg','17394740196501090048',4806),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTMFO1BfnjphBqlXbKUm4dSsbgflkCh1j0aEZfg2MHCnIsm8yF4UxeMbRyXU3uQnhrnvxb9rSYUNb0k2x83dBgf_0DkY','The staff was very great and friendly. Dr. Faig and nurse Sarra were very friendly and informative. Carly made sure to check us in quickly. Christian as well was very friendly. The whole staff was amazing.','2020-03-02 04:23:17.730000','2020-03-02 04:23:17.730000',5,'Yamiles Bravo','https://lh6.googleusercontent.com/-qZRml2sqKJQ/AAAAAAAAAAI/AAAAAAAAAAA/H3gQVx_e7Nw/c-rp-mo-br100/photo.jpg','12541597562633926366',13321),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTnsKl-QgIHhmeCuLkRf2TvrAz-gmtlJOIkwIt6dh1ga2oAZPumICcdnRXhBK3hgII5qqKhkdcpu8w2uZDfFtmZLervU','Very friendly, fast, and helpful. I had a very pleasant experience here.','2019-01-04 02:39:15.171000','2019-01-04 02:39:15.171000',5,'Gabbi Pendleton','https://lh5.googleusercontent.com/-7b7giSIOHyU/AAAAAAAAAAI/AAAAAAAAAAA/JR2rCJPg8RI/c-rp-mo-br100/photo.jpg','3511292162159714121',7527),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTpe9sfb6v227TKabvgqhOpvIflztW4hrJmuNUguUkxXy06fBIU9Km-w4Z_wMgne5HW8Hz0WhiYH6caZlbR7iwcI0sgE','We were really impressed w/ this location ! As soon as you walk in you were greeted by a very friendly person at the desk she was sooo nice ! She had us checked in quickly, paperwork done before you even know it or maybe because I was in so much pain either way she was quick ! The facility was extremly nice and clean! Our physician Dr. Nguyen was easy to talk to he actually listened he didnt brush off our concerns he wasnt in a rush to leave when we asked questions and actually made sure we understood what he was talking about when it came to our \"my\" care & what we were initially there for. Everyone there at the facility was extra nice the atmosphere welcoming instead of cold & intimidating like most places would def. recommend people to go here I wish it was a full clinic because if I had a choice I\'d go here for all my health care !','2019-10-07 05:41:16.449000','2019-10-07 05:41:16.449000',5,'RiaLynn Laurel-Bogle','https://lh4.googleusercontent.com/-_L2b_lMiFjI/AAAAAAAAAAI/AAAAAAAAAAA/BiHeUenNsZc/c-rp-mo-br100/photo.jpg','2694018788013845459',6052),('AIe9_BGErQpX2pRNZrXBy5NOsH0etqLQ-yqWXC0yq8K1pyMA5kW4XFPkygv59jfKCTfUHijnt9PxDxVUohKDbI4f0DPQ2O63sU_LJR1g6DCUPhCmYCHcuU8',NULL,'2019-12-20 08:00:56.914000','2019-12-20 08:00:56.914000',5,'Maya Duarte','https://lh3.googleusercontent.com/-kmcbR030gBE/AAAAAAAAAAI/AAAAAAAAAAA/YT15i9y9FM4/c-rp-mo-br100/photo.jpg','13486358490203335051',680),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTtK9vW-yaWW3dq16MXe-5lKMhDlU5VJuWqNXdJLo0KXyOPu0GBqwjtomiazoD-qhM4gieKdkdGCq-13iOBlazN4Ii30','Great with kids. The most pleasant experience I have ever had in an emergency room. We were warmly greeted, processed and were taken back to see a doctor in less than five minutes. Impressed by every staff member we encountered. My son had x-rays, and ended up being treated for Nursemaid’s Elbow and we were in and out in less than an hour. My son is 3 years old and other than his injury, he felt comfortable and was in good spirits in this facility largely due to the excellent staff. Highly recommend!','2019-11-11 04:51:50.138000','2019-11-11 04:51:50.138000',5,'Kara Skivington','https://lh6.googleusercontent.com/-56tF1X2fo7w/AAAAAAAAAAI/AAAAAAAAAAA/S87CMSbonD8/c-rp-mo-br100/photo.jpg','14567670160750071148',1195),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTUf6H_J4bXuw68oLzYx10GEcBtYp09qalwzKZip9YfoF35Z8H1ZDqfyHcmJMAPlb-kM1ZH7iINlooZo_VepdZgzBPTQ','Fast service. Came here after work, so free snacks was a plus in a bad situation. Nicole G the RN and Dr.Yusuf was awesome, made me less anxious about coming in. & Ricardo the tech was funny. Thank you guys!','2020-01-15 04:46:00.286000','2020-01-15 04:46:00.286000',5,'Sarah J','https://lh5.googleusercontent.com/-LCHiTJUJk0A/AAAAAAAAAAI/AAAAAAAAAAA/UM_AxwKsMi8/c-rp-mo-br100/photo.jpg','14567670160750071148',9696),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTvYXX-AZLGFv7A8Xp8MN8D68ArP-jGFuITaP1_jSkWD7JllxmyLoDIT_k7GJ-yn0p5mKr4-bkXXLywG8Y9zapzIj_Tk','So this is my second review. First time I went was for myself. Excellent service starting from the front desk to discharge. Everyone was so nice and professional. Then I had to take my husband and once again superb customer service! Dr. Singla was amazing as well as Jessica, Pam, Gus, Ellen and Sibienne. More medical offices and hospitals should have the bedside manners that were presented to both my husband and myself. Thank you for such great service!','2019-10-24 19:42:32.449000','2019-10-24 19:42:32.449000',5,'Lucy carr-figueroa','https://lh3.googleusercontent.com/-R9HQYucTgNY/AAAAAAAAAAI/AAAAAAAAAAA/o6AvUm5Sfcg/c-rp-mo-br100/photo.jpg','8918455867446117794',9055),('AIe9_BGErQpX2pRNZrXBy5NOsH0eTWToZrw1lHlZ057i7Gq1-4CgDAnAfLKYyBfSmF3F6qw_0mexVbJvgHTOUpZj8CRQ_mte29GZb4KThLFLXIL6pnWcGkE','Could not have been a more pleasant experience at an ER! Staff was super friendly, and the nurses and doctor did not make me feel like they were rushing through to see the next patient. Gave me a warm blanket while I waited as well. Was in and out in less than an hour.','2019-11-07 22:39:23.278000','2019-11-07 22:39:23.278000',5,'Lauren Harrison','https://lh6.googleusercontent.com/-YrRz9wTSVXo/AAAAAAAAAAI/AAAAAAAAAAA/sCrNXqxa7jE/c-rp-mo-br100/photo.jpg','16891069708558046635',4156),('AIe9_BGErQpX2pRNZrXBy5NOsH0etzCF48r8VbubLR7-e7343Mom4wEu9I6_N_wOeZjyNsiVVlbo_UKdJl51fVU1ODtyUncvuZCqttTyVHznn00ct_9gROw','These ladies working the front desk and the staff providing service in the medical section were fantastic and quick. Not only did the front desk show me superb customer service, every single client walking in with questions were treated so kindly. They didn’t act annoyed or rude for the million COVID questions. They were patient and nice. This goes for all signature care ER’s as well.','2020-07-28 01:42:58.169000','2020-07-28 01:42:58.169000',5,'Shayla G','https://lh3.googleusercontent.com/a-/AOh14GitqI6QhUlhbFp4BSkhQFbIuAmTGPrJXRReNTha=c0x00000000-cc-rp','3511292162159714121',22149),('AIe9_BGErQpX2pRNZrXBy5NOsH0etzcq8LA_8LYnbL7XyHrEI8HnrmvuLbB-wnzdWLTxb2DKV7seQ-6bcT46dx1fA8bVmRp_qP07TpKvpcsIqtejzqe4jlU','Wonderful experience! Would highly recommend! The nurses and doctors are professor and the greet since you walk in through the door!','2017-04-25 21:45:47.710000','2017-04-25 21:45:47.710000',5,'karen hernandez','https://lh4.googleusercontent.com/-bXooYG7844w/AAAAAAAAAAI/AAAAAAAAAAA/Lg-ZKYIu-QU/c-rp-mo-br100/photo.jpg','17394740196501090048',5072),('AIe9_BGErQpX2pRNZrXBy5NOsH0eu3pTJz2WmWmHJzcb9UQc4ZRcpUfAzKHuOmrz-_ETKVvYAfuhTtSqnfs3jf5RDlRQFByq3BTtbbqpO1sFHZt8CBEk0HA',NULL,'2019-11-18 21:42:56.994000','2019-11-18 21:42:56.994000',5,'Tykeiah Briggs','https://lh5.googleusercontent.com/-zbbdOIUAmmI/AAAAAAAAAAI/AAAAAAAAAAA/lt9dTkeelJg/c-rp-mo-br100/photo.jpg','3511292162159714121',7141),('AIe9_BGErQpX2pRNZrXBy5NOsH0eu4DPbjdXRhKanbTmTkz8g-9SmMs9DUXyga85Zxr3XO3BdqJbPoQ57T6fkHPwjZL1QwU5cWDlSpLGWTxwVcvxiXdlYyY','Very friendly and professional staff. GREAT EXPERIENCE!','2020-07-04 15:09:02.001000','2020-07-04 15:09:02.001000',5,'Fred Royal','https://lh3.googleusercontent.com/-mwnxfgj0gIY/AAAAAAAAAAI/AAAAAAAAAAA/X-kuri0cS3U/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',21487),('AIe9_BGErQpX2pRNZrXBy5NOsH0eu9mfi3oBGccIZFGlr8mREy29C0pQssY5JMx6lGeseDYVvULdRyNLDvuUiNwKNYcV9ZjfcYMNI77HL6ILifWhxx-WTI8',NULL,'2018-11-06 05:24:54.282000','2018-11-06 05:24:54.282000',5,'KYLE GARZA','https://lh3.googleusercontent.com/-I-o2G_xkSlI/AAAAAAAAAAI/AAAAAAAAAAA/Wz3X3-bvL08/c-rp-mo-br100/photo.jpg','16590124370714063921',3662),('AIe9_BGErQpX2pRNZrXBy5NOsH0eUKeLPkmLO-pNVRQ0ZHFsQyVYFGVhNqhKrPAixO9Gqd-gITqd8JLDYCfjRz9yFY9aTNbFVOtkf-m3Mqaw4dCIR1bnmNs','Everyone is super nice and very helpful! I only wish this was in North Austin.','2020-03-11 01:23:25.095000','2020-03-11 01:23:25.095000',5,'Dariuhs Sterling','https://lh4.googleusercontent.com/-Le9aO8oCiUg/AAAAAAAAAAI/AAAAAAAAAAA/1i3UU6fUyHs/c-rp-mo-br100/photo.jpg','16891069708558046635',17273),('AIe9_BGErQpX2pRNZrXBy5NOsH0eUM5N5oVZ4megp_d3fRj6TxRv5SiukGpDQ35x3aOiYuIptgvTVfOQ37L2TmsRBWK8D5aWDGahJ3Gnc3HfUG8yyNieysA','The receptionist, the nurses and the dr are so nice and welcoming.. The dr is so attentive !! Most definitely would recommend..','2020-03-03 12:57:49.206000','2020-03-03 12:57:49.206000',5,'Erika Castillo','https://lh3.googleusercontent.com/-p5qaezEYFAw/AAAAAAAAAAI/AAAAAAAAAAA/kKo7q3kYhrI/c-rp-mo-br100/photo.jpg','6521947413723274945',14522),('AIe9_BGErQpX2pRNZrXBy5NOsH0eumbynkCiGmy6GwDIOj5mOFzqVmuZO0q5ihd59jtI-koz0uCSubPNAl1x53QW1v6AguLIvNEmeNdcvtvbPsoTSNo4EE4',NULL,'2020-02-12 01:00:21.881000','2020-02-12 01:00:21.881000',4,'Katy Logan','https://lh6.googleusercontent.com/-wXsoCWIgalA/AAAAAAAAAAI/AAAAAAAAAAA/5gcA0OjOQxc/c-rp-mo-br100/photo.jpg','14567670160750071148',13536),('AIe9_BGErQpX2pRNZrXBy5NOsH0euOX4RbbQhH_az_udLwtNu5YsXwQHh8tgJ1CFRgJFzEQoEx5nLdQP5scEEGn99JaPH8ApVSGprhAxJ_NBPuFml-OBloE','Great experience, fun personalities. No issue with my visit.','2020-07-19 19:14:13.617000','2020-07-19 19:14:13.617000',5,'Trent Huckaby','https://lh3.googleusercontent.com/-4ZKhUooIGxM/AAAAAAAAAAI/AAAAAAAAAAA/zMPhHtiYE1M/c-rp-mo-br100/photo.jpg','14748677429039074158',21700),('AIe9_BGErQpX2pRNZrXBy5NOsH0eUq8uKi324sly1GPVEaV61CzUVO3nyuiD_3dxz4unw9VJsy-5ntEHxA0CdA9JrSGktTQ-Pf0uAymeqXdgLqlCNQV8gKg','Today was was my first time going here but the whole process was easy. Maya at registration was so friendly and check in was a breeze. Nurse Kristina and Doctor Patel explained everything carefully and addressed all my concerns. They made me feel at ease. I could not have asked for a better team to help me fight this terrible flu. Thanks everyone! :)','2020-01-26 01:06:45.304000','2020-01-26 01:06:45.304000',5,'Genesis Zepeda','https://lh3.googleusercontent.com/-iwsEbaVTjBk/AAAAAAAAAAI/AAAAAAAAAAA/N24yhWjCbP0/c-rp-mo-br100/photo.jpg','12541597562633926366',10092),('AIe9_BGErQpX2pRNZrXBy5NOsH0eURdEnOuUyaXeo9G1ftAq5L_HuSF3Inv4AgL796wroZa6-r8ePhqDz5GnaGfw1S-VU7u-0aGDFGh0UN_u-jpVTL4AqxU','It is like the quickest place to get treated for anything and the staff is very nice they did what they had to do to help me out. I went in with a very painful abscess & Dr.pham really does a good work!','2019-10-27 00:41:13.599000','2019-10-27 00:41:13.599000',5,'Angiebeauty01','https://lh6.googleusercontent.com/-zMewRm7illI/AAAAAAAAAAI/AAAAAAAAAAA/Uh1GJLdgc50/c-rp-mo-br100/photo.jpg','8679688254631342173',8768),('AIe9_BGErQpX2pRNZrXBy5NOsH0euS3mn_bPTaGkOBl4a9qN9lHq6-rmv6ym-kc9Ro4GzseTm719zT8erQj2d3oiiiLUORuYwqTGGSAAsX-G0rakyMEi4zU',NULL,'2017-10-19 08:38:08.891000','2017-10-19 08:38:08.891000',5,'Eric Garcia','https://lh6.googleusercontent.com/-wm6HIW3kyiQ/AAAAAAAAAAI/AAAAAAAAAAA/0Fsc57aMvTA/c-rp-mo-br100/photo.jpg','16590124370714063921',3917),('AIe9_BGErQpX2pRNZrXBy5NOsH0eUSnh3BBHf4Fk_Y9tbgQFzA67MipzwxzfVLUXpTMgqnSLbJiylMJXUY9p3-vwce-HjA2FMbcNK0pCGD7RbbaERRE0hWk','I visited this facility on 1/17/19. My son hit his head on a glass table and had a deep wound that wouldn\'t stop bleeding and needed stitches and was told by the staff that their location didn\'t accept my insurance. I was iinformed that he did need stitches, but I would need to pay $300.00 to start the process. I informed them that I didn\'t have the money and was told there was nothing they could do. \n\nI had to contact my son\'s peditrician and was referred to another facility that would accept the insurance.\n\nThis was definitely an emergency and I don\'t understand why there isn\'t an option for a payment plan. I assume the bottom line is about payment up front and not patient care.','2019-01-18 16:05:03.846000','2019-01-18 16:05:03.846000',1,'Dee Bee','https://lh5.googleusercontent.com/-1CQ6_H5zNWY/AAAAAAAAAAI/AAAAAAAAAAA/qxMvTJ7g_eY/c-rp-mo-br100/photo.jpg','14567670160750071148',1403),('AIe9_BGErQpX2pRNZrXBy5NOsH0euV3lodagGskZUiiPAebJ6dBGjCXhg_JdO-k2TEQy0RX9A6l_4-664tqpfC9KP3YO_74J24vgZdmbhyDnNo28jn3nxPM','I came in with sheering lower back pain. They got me right in with no waiting...I did not even have time to sit down. The whole staff was awesome in their attentiveness, and focus on my situation, asking questions and providing good insight as to what I was experiencing.\n\nAfter starting an IV, and a quick x-ray of my lower back, they administered some medication via IV, showed me the problem with my spine, and provided me with some immediate prescription medication to help me until I could see a specialist that could more thoroughly treat treat my problem.\n\nMy wife has also previously visited this location, and our experience was equally as excellent.\n\nWe will DEFINITELY come here again, should either of us need quick medical attention.\n\nI\'d give them 11 stars out of 10, if it was possible!','2019-07-25 13:16:21.099000','2019-07-25 13:16:21.099000',5,'George LaFleur','https://lh5.googleusercontent.com/--g8Bmd1fhno/AAAAAAAAAAI/AAAAAAAAAAA/5LUybQT4P5Q/c-rp-mo-br100/photo.jpg','8918455867446117794',9086),('AIe9_BGErQpX2pRNZrXBy5NOsH0eUwb_QtVeX3OjXkQCScUTrAatt57QeG8y2c-ovU5aCoq3wWDb7jiRqMelq-EUSU-2mxshskJzlRDtu-8ZLL81-kBogtM','Signature Care emergency Center provided care for my wife. There was excellent help from all the staff, Keera was amazing help during the process.','2018-11-02 05:23:26.685000','2018-11-02 05:23:26.685000',5,'brandon Karandang','https://lh4.googleusercontent.com/-PVsjlaAeIvY/AAAAAAAAAAI/AAAAAAAAAAA/o0hE9c5jXf4/c-rp-mo-br100/photo.jpg','16590124370714063921',3673),('AIe9_BGErQpX2pRNZrXBy5NOsH0eUx5iK6k7GC2U-8W6qdGc33PkwLnKt-gp9XqobVCQ8MSH4Gl0GMeGzMSSE58JA4PYlbhzB4yj3Z5DG6zrht4uoQEWTmQ',NULL,'2019-10-27 04:35:25.493000','2019-10-27 04:35:25.493000',5,'Yachel Lee','https://lh6.googleusercontent.com/-MJ_MythmN0E/AAAAAAAAAAI/AAAAAAAAAAA/YGH2Esg3pFg/c-rp-mo-br100/photo.jpg','16389487648212004696',2762),('AIe9_BGErQpX2pRNZrXBy5NOsH0euygCOJOt_VFQPzIihdZCHms9Yn9-TcY3xE_DoOxdfGtYkxkDqinefw3XPqmnePhhEPChC0g_0DbfgsUZ0WuBBwk-lGg','Great experience! Went in with a severe cold, aches, etc. Got seen right away by Dr. Cheng and he spent a lot of time with me, describing what was going on, how to alleviate my symptoms. He didn\'t push an expensive treatment and was very thorough in his diagnosis. The room was really clean too and I got to watch TV while I waited (which was less than 1 minute!).','2013-09-19 02:48:55.388000','2013-09-19 02:48:55.388000',5,'Jarred King','https://lh4.googleusercontent.com/-wD1J6Nkh7mU/AAAAAAAAAAI/AAAAAAAAAAA/1CdMSIwt5Ag/c-rp-mo-br100/photo.jpg','8679688254631342173',8947),('AIe9_BGErQpX2pRNZrXBy5NOsH0euzZE2ciYrjP7uWwUi3dJqQR9XgZXbYMlxvzY0bo_rYL4ZJe8y6GZOnO2AcUEVf88B_DOgyOkan7znAQ4Mgr7Id-qeXc','Dr Yost Luke Sherri and Kelly are amazing!!!!definitely recommend!','2019-02-17 19:40:53.034000','2019-02-17 19:40:53.034000',5,'Amanda Hensley','https://lh5.googleusercontent.com/-vmvJKl2Xmwg/AAAAAAAAAAI/AAAAAAAAAAA/QlIjk2_vuiE/c-rp-mo-br100/photo.jpg','3272657195432704501',7010),('AIe9_BGErQpX2pRNZrXBy5NOsH0eV0sNo2exn8joUE-P1KtZtT3zMDuXTaiyuLGdqL9ETBkMCFiZlhEO5u7gw55BMX8wSahjVSJk-eizuIjvwL3k7a6dqlA','The facility was very clean. Staff very responsive and put me at ease. In and out quickly with four stitches and two CAT scans which would have taken my afternoon if I had gone to the hospital ER. Dr Henderson, Alvean, Patricia and Zeik all had great bedside manors and very professional. Thanks to all!','2020-02-08 19:31:24.831000','2020-02-08 19:31:24.831000',5,'Lawrence Boe','https://lh6.googleusercontent.com/-AtI3NHUhpzY/AAAAAAAAAAI/AAAAAAAAAAA/YYAwyRg9KsE/c-rp-mo-br100/photo.jpg','16389487648212004696',22608),('AIe9_BGErQpX2pRNZrXBy5NOsH0eVGEDvf-xPOhKXtIq4G2yQTyqV4qrD84sPUJkPSfYllZcllSmWi-Hs8CzHzY_fgk4-PVidjqkzhnHDL6exxgST6g-AQU','Fast and straight to the point. Helped my friend when the pain in the gallbladder was knocking him down. No wait at all, Adil was on it.','2016-06-12 09:23:47.778000','2016-06-12 09:23:47.778000',5,'AquaLoveandLight84_VSG','https://lh3.googleusercontent.com/-XhVpMGv-plM/AAAAAAAAAAI/AAAAAAAAAAA/_biDvrJTPGs/c-rp-mo-br100/photo.jpg','17394740196501090048',5235),('AIe9_BGErQpX2pRNZrXBy5NOsH0evGmeH97fBidnhVMGS_LeAeVLQTxdhoJtDPTib4oZVPSMiqin6pVzz6WYiazdGhua87ZEdPQHwl_PovzJlloKDve94Sc','I came to get checked out and the nurse Ashlyn, the doctor Dr Sylvester and Sindy Receptionist take care of me......It didn’t even take that long.....Thanks to everyone','2020-02-29 01:06:22.856000','2020-02-29 01:06:22.856000',5,'K O S','https://lh5.googleusercontent.com/-8MRzISOgY-k/AAAAAAAAAAI/AAAAAAAAAAA/Ju_IAVVxQP8/c-rp-mo-br100/photo.jpg','17394740196501090048',21076),('AIe9_BGErQpX2pRNZrXBy5NOsH0evHBiVVqzx6rL83AKjpaAhFZYFzLpEP5paQQ4YCXqTXCZnUL_0Z8J_4hhGxMYZBlct-iwCdsSzSo2pIV7eKgT4M5H2xQ','The staff was extreamly friendly everyone made my stay feel very comfortable.','2018-08-08 22:13:47.713000','2018-08-08 22:13:47.713000',5,'M G','https://lh3.googleusercontent.com/-_g4-JI2RtLI/AAAAAAAAAAI/AAAAAAAAAAA/hHWX8Ak5rnM/c-rp-mo-br100/photo.jpg','14904078213800803294',2229),('AIe9_BGErQpX2pRNZrXBy5NOsH0eviLChsbmtbSPvyUK1JHPCkV_OvyYSbubQauInq1BMn0ny-D69lLCHEby4lvBbDpvVeRjC4ybVepo-75RDuCxuu9gv9M','When we came in today after I fell off the stairs today.. Olivia took care of us real quick... she’s awesome !! Ezequiel was very nice .. Dr. Evans what Can I say she’s sweet friendly and an awesome Doctor .. keep it up guys!! Yall are awesome thanks for taking care of me !!','2018-01-19 06:54:42.126000','2018-01-19 06:54:42.126000',5,'Xiomara Garza','https://lh4.googleusercontent.com/-AFwDAc3M-Ts/AAAAAAAAAAI/AAAAAAAAAAA/3QuSA0io4gI/c-rp-mo-br100/photo.jpg','14904078213800803294',2289),('AIe9_BGErQpX2pRNZrXBy5NOsH0evJ5ABsiLgFlaOOXShGVW_U-sPabMhUoaDWKQa8zoQcRpT0cdV5yFykkf8A2_Lghqvv0qg43tsblNWvY6sEbrbNZHrsU','I am saddened to write this review, however, this is a warning to anyone thinking of visiting SignatureCare. First, let me assure you that this review is in no way related to anyone on the staff; during my visit I was treated well by everyone there.\n\nSignatureCare continuously sends out marketing material in the mail where they present themselves as \"your neighborhood care provider\", making it appear as if they are a routine care center, telling you that they are there for any health related concern no matter how small; from a stomachache to a simple soar throat. With this pretense, I visited SignatureCare for a soar shoulder, minor discomfort if you will. For context, I will offer that I was asked about my pain on a 1-10 scale, to which I answered 1 or 2; the doctor then saw me for no more than 5 min and a painkiller shot was administered at his advise. Little did I know that this visit (one I thought would be no different than seeing a local doctor, again, as they make it appear on their marketing material) would be billed as a full on emergency, one equivalent to coming in with a dismembered arm. \n\nIn short, I came in with some discomfort and left with a painkiller shot. All for a total cost of $3,987.00. Again, for a soar shoulder. \n\nI write this to make you, my Heights area neighbor, aware of the misleading information you might receive from SignatureCare. Be advised! you will be billed as an emergency for something routine and minor.\n\nIn addition, efforts to obtain information from the corporate office about the misleading nature of SignatureCare\'s business practice have proven entirely futile.','2020-06-22 06:17:37.592000','2020-06-22 06:17:37.592000',1,'Diego Castaneda','https://lh4.googleusercontent.com/-0soJuijQZx0/AAAAAAAAAAI/AAAAAAAAAAA/hr67kTdkqIQ/c-rp-mo-br100/photo.jpg','14567670160750071148',22486),('AIe9_BGErQpX2pRNZrXBy5NOsH0eVNAq4nTDi8LAS6vRQ-c30tSy8gntSEO2ZK0BRMKDB_c5aAchulOb3EPxvstHngTCJ6Lx3VcwVNwYHiC8_7G-oGEgPLM','Alexis & Kim were great the service was smooth and quick.. Brad was very informative','2018-06-11 18:22:58.795000','2018-06-11 18:22:58.795000',5,'Andre Green','https://lh5.googleusercontent.com/-6nJK9FUhdeg/AAAAAAAAAAI/AAAAAAAAAAA/sumCuNLB458/c-rp-mo-br100/photo.jpg','16590124370714063921',3814),('AIe9_BGErQpX2pRNZrXBy5NOsH0evNjcl1kf3FIDHqkmFLy3_GAZXkW7ppinkQQbIMxQ7bWPZK9fTK6sDgZ3oVelfY4_hXtvAWA_k5JNxWAeiYoSku-QQgM',NULL,'2020-02-24 15:11:10.749000','2020-02-24 15:11:10.749000',5,'Theresa Ward','https://lh6.googleusercontent.com/-AKuHh7kd6Pg/AAAAAAAAAAI/AAAAAAAAAAA/ILVPDyEmlJ0/c-rp-mo-br100/photo.jpg','6521947413723274945',14550),('AIe9_BGErQpX2pRNZrXBy5NOsH0evRRYLhDXtnwGE2_I9Rm_PhFP5wMwtu_FIcGBVRzfzOG_CFvolS-HtL_nTjpqi8p6ZbBMwXQxQVCDBbvVBgCTGIS5Oco','Super helpful staff, specially Carly. She was understanding and super nice and helpful. I originally received confirmation from the “montrose” location. Sent me to the “westchase” location but they took me in to get tested no problem. Thank you to the whole staff! Carly you’re the the real MVP 🤘🏽','2020-07-01 18:49:03.336000','2020-07-01 18:49:03.336000',5,'Nicholas Melchor','https://lh4.googleusercontent.com/-SeHHZk9gRPk/AAAAAAAAAAI/AAAAAAAAAAA/AOZJxvtSJl0/c-rp-mo-br100/photo.jpg','12541597562633926366',21344),('AIe9_BGErQpX2pRNZrXBy5NOsH0eVUGQRxPH3dy3OOipa_2XgV-XLiYBlJV9nZ4N3sk9FcB7gZuorOmhYOcH3iiaSLUFbeLsA7t07jCciHwui4_oB7rguUU','I had a really good visit. The staff here was kind and greeted you with a smile. They were genuinely concerned about your issue. I highly recommend.','2020-01-20 16:27:11.885000','2020-01-20 16:27:11.885000',5,'Buffie Holcomb','https://lh4.googleusercontent.com/-rzq_Z_4oG5c/AAAAAAAAAAI/AAAAAAAAAAA/KMH9Amz1_i8/c-rp-mo-br100/photo.jpg','3272657195432704501',10003),('AIe9_BGErQpX2pRNZrXBy5NOsH0eVXfkhj9emHPegi_M7-cF4xZgRXYDjIcF2z4VrLeFZoftPu8FVzGKps3IupGGSOVG5cKr3P9vwcCLulm1vtW-tkvbTis','Had a great experience. Everyone was knowledgeable and answered all our questions. My husband was seen and taken care of immediately. The staff is amazing from evelyn at the front desk to the nurse gracie to the dr ding. Will definitely be back when needing to go to an er.','2018-07-21 17:09:58.517000','2018-07-21 17:09:58.517000',5,'janet duran','https://lh6.googleusercontent.com/-tpFAhKx3y5Y/AAAAAAAAAAI/AAAAAAAAAAA/JiE-DPDInDA/c-rp-mo-br100/photo.jpg','14567670160750071148',1588),('AIe9_BGErQpX2pRNZrXBy5NOsH0evxnJZ-vPU2ZiLO8Z62mUfCwvjr23EHFwqFcKg4EBwbjk4A7AVPkth1Ep5Y24WqEhZ8rQpjcuqYkREGEUQlvgX-Vk-FQ','Good service Dr. Patel , Patricia and alvean were very helpful with all my questions and concerns','2019-10-24 14:07:31.002000','2019-10-24 14:07:31.002000',5,'Jorge A','https://lh5.googleusercontent.com/-ABBEOLxFz3M/AAAAAAAAAAI/AAAAAAAAAAA/MHOUCWbWRII/c-rp-mo-br100/photo.jpg','16389487648212004696',2783),('AIe9_BGErQpX2pRNZrXBy5NOsH0evyYJnP55spADgRFpO5OO-gjC7gjwYtU-NpEiIHryknt1IZD5Ueh5TpUJmjh7VnjtCe3NnqgNic8PX6N4EumHPranY1E','I had a really bad tooth infection. I’ve been to this location before and I always have a great friendly experience the staff is nice the location is very clean and it’s fast. I want to give a shoutout to the staff. Dr Churwama Norma Jessica V Dion Jeff and Brenda. Thanks so much!','2020-02-02 01:07:20.428000','2020-02-02 01:07:20.428000',5,'Tiffany Diggs','https://lh3.googleusercontent.com/-nPCFIrIy8d4/AAAAAAAAAAI/AAAAAAAAAAA/R1VayYligFE/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',14437),('AIe9_BGErQpX2pRNZrXBy5NOsH0eW_A6_zAffWPYfFO9Hs4f20WEnpV5TIcOd9EtteINHZLJi_GHbgAeI78hJiobn47VVItANAMBSVVEp9vqExMSgut4-e0','Thee fast and the nurses and tanishaa have a good vibe keep the good work','2019-03-06 04:42:11.708000','2019-03-06 04:42:11.708000',5,'xTexasDevilz_','https://lh5.googleusercontent.com/-_bUmNv0YQG4/AAAAAAAAAAI/AAAAAAAAAAA/GvhnRerhpnA/c-rp-mo-br100/photo.jpg','17898197009688164559',5821),('AIe9_BGErQpX2pRNZrXBy5NOsH0eW2N_5uekLtC-0o93vn8o3Qw4ShsDN7twKYL0fGBbHGTss-TtQx9qj4S-Z4lMyacBhb5VMk4aVGrIKlVRso9pt-LrxAI','Great staff that was very friendly and knowledgeable. They fixed the problem and if I ever need urgent care again I\'ll be back.','2017-06-11 14:19:28.928000','2017-06-11 14:19:28.928000',5,'Tristen Sutton','https://lh5.googleusercontent.com/-dzr9eAbLe4U/AAAAAAAAAAI/AAAAAAAAAAA/wi4Lhpugm_8/c-rp-mo-br100/photo.jpg','8918455867446117794',9394),('AIe9_BGErQpX2pRNZrXBy5NOsH0eW7uUnWgm67qnwD5yMRC6x0M6YZdW1ak_WC4-UVNdhXM7DfH8d8t214RQ74VTZ1ctVrLyHVj-ek0M25mwVP9xun2zKZY','Omg the team at erCare24 Bellair location is awesome fast and great customer service','2020-01-11 18:28:34.346000','2020-01-11 18:28:34.346000',5,'Timothy Turner','https://lh6.googleusercontent.com/-rzZc01B55U0/AAAAAAAAAAI/AAAAAAAAAAA/Au6xKGHMay8/c-rp-mo-br100/photo.jpg','8679688254631342173',9528),('AIe9_BGErQpX2pRNZrXBy5NOsH0ew8TfCyKW_2dQnA5lT-zx4jF4OIhylBNUB5ehUaUqmYfl9WK2ZfGsnTokDdFcHNE8fMbQQBUYsN-6f3VCTGlvj_7rW1E','Very caring and informative. Excellent customer service and much quicker than a traditional ER. My nurse Rachel was the best.','2019-04-04 21:48:03.584000','2019-04-04 21:48:03.584000',5,'coreiona george','https://lh3.googleusercontent.com/-FiO_D6tBMrU/AAAAAAAAAAI/AAAAAAAAAAA/pc6UwuIHCxg/c-rp-mo-br100/photo.jpg','17898197009688164559',5780),('AIe9_BGErQpX2pRNZrXBy5NOsH0eWFxRcuHHQRm_4EEja8u_MZ4uWvCukTilwJR-Rcz-RWrm4Y7b2bYlV7QgqMxWbn8iLzHFAVZYAv-8pBC_vcU16SxamdU','If we didn\'t have to wait 7+hrs to get seen, I would have rated 5 stars. Most of the staff were extremely nice and offered snacks to patients and as busy as they were, they had lots of patience and maintained everything under control. Thank you!','2020-06-30 14:15:23.256000','2020-06-30 14:15:23.256000',4,'Jacqueline Banda','https://lh3.googleusercontent.com/a-/AOh14GhttG-9CbK2YtFs_BuAjq3XHERachTvZdZ7qlg8Eg=c0x00000000-cc-rp','3272657195432704501',21468),('AIe9_BGErQpX2pRNZrXBy5NOsH0ewNpyr__EmRArtTi5Ulk5n0pvs78LYV9FULC3Y5rTQzRGzVvqDJ3qkt9yRYuMspel6WdBcRuw-mKvKM3zZuue4KbI4QM','Excellent service. All staff was very attentive and courteous.','2019-06-13 03:01:31.944000','2019-06-13 03:01:31.944000',5,'Adam Cawthon','https://lh3.googleusercontent.com/-WnQ8qp9_2ls/AAAAAAAAAAI/AAAAAAAAAAA/oMnojSN2LH4/c-rp-mo-br100/photo.jpg','8626688543755174284',8453),('AIe9_BGErQpX2pRNZrXBy5NOsH0ewqBR1AbjEDyc_tAHXz3Wvl7Q6AirwB9pN4-yfmsvjFBhsZ4L_8XC9KLh6RAszIhVBIVNIn_wBavcq9Ya44jvF14Uie0','Got in and out!','2020-08-12 20:24:22.642000','2020-08-12 20:24:22.642000',5,'shaelyn stocker','https://lh4.googleusercontent.com/-c-MA4seY7g0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm4-oTMf57qJIZuZMOHo3aaLlbYZQ/c0x00000000-cc-rp/photo.jpg','16891069708558046635',23061),('AIe9_BGErQpX2pRNZrXBy5NOsH0ewr-GHQdv3ApC9rGH-d_CJZkeICAeOFvNAa7IXh4_28L4lLX1KZ0DAJoPtxm4ugOJuvHcwrfR62STG90Qcw1Tuprk0hY','The staff was friendly and quick. They were very informative of what was going on with my situation. I will definitely be using this emergency room for any future problems','2019-05-17 13:59:57.867000','2019-05-17 13:59:57.867000',5,'Taylor Gray','https://lh3.googleusercontent.com/-spzJ_MXPNVE/AAAAAAAAAAI/AAAAAAAAAAA/dXZCcnl6YL8/c-rp-mo-br100/photo.jpg','17898197009688164559',5737),('AIe9_BGErQpX2pRNZrXBy5NOsH0eWWokG9i8ckR_-4wu1WQ0QEVrEZToVrXbauQrM8CA2Hw_RZoC2BDLf8qlnDxL78BJFKhv5JRRmoTCy9cLeND9dHyn3DM','Dr.zheng\nAmy\nPailes .rn\nJerin','2019-07-05 22:02:07.884000','2019-07-05 22:02:07.884000',5,'Kaitlyn Guerrero','https://lh3.googleusercontent.com/--h8IDJYCuzk/AAAAAAAAAAI/AAAAAAAAAAA/07lO2pWh23k/c-rp-mo-br100/photo.jpg','8918455867446117794',9097),('AIe9_BGErQpX2pRNZrXBy5NOsH0ex_At1fvXeq6TBCOSZx5Z08Bn9G0lawlYbD0gJEqdRTEX0PzrtM8ycATl2WpA5ddPUS1VUXYx_5eVlaxwLSkkF6m2QWw','Grsat customer service and worked with my insurance.','2020-07-25 08:11:11.471000','2020-07-25 08:11:11.471000',5,'serena pena','https://lh3.googleusercontent.com/a-/AOh14GhJl2DI-sBHMlJ6JcwcTuvfbD0s1IZBHBU8LP-P6g=c0x00000000-cc-rp-ba2','6521947413723274945',22214),('AIe9_BGErQpX2pRNZrXBy5NOsH0eX6BgLwA32eJQMsvCIDpSfsWwxjxmyLPXS-vb7Uow7K-sAYRngP2OelhPxTpZW2btazP5PeQC31P1leZqg6Wzv31azvI','Told us they were in network over the phone, but after they treated my son handed us paperwork and said they were not in network with any insurance companies. Very misleading and un ethical.','2019-09-12 05:52:02.753000','2019-09-12 05:52:02.753000',1,'David Egan','https://lh4.googleusercontent.com/-8cPW_4xt0bw/AAAAAAAAAAI/AAAAAAAAAAA/5O3mP2lZGrA/c-rp-mo-br100/photo.jpg','17394740196501090048',4605),('AIe9_BGErQpX2pRNZrXBy5NOsH0excEcJmS2BtfmKnY0HssyBctPmHa_pLZUPJdFw-fP9jOIvKCrWkrUigW8iHPMxladPLUPo4IDXREVd1E2QLpvOrpdSwI','The staff was wonderful! So friendly and hands on. I would refer this facility hands down! Thanks Dr.Alisha Wren!!💕','2018-12-10 21:46:09.828000','2018-12-10 21:46:09.828000',5,'Lillian Ellison','https://lh4.googleusercontent.com/-uv7jpgQDS3Y/AAAAAAAAAAI/AAAAAAAAAAA/A7LAuENwRfg/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',585),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXChN6tllzpdBBxp274YeTnjay4ANjIhLvtQU8HC8Srvgri8C61W_bkzSrFXG-71DDyHcT5EOAi0FeX07R2k_-disnIU','The staff was friendly nice knowledable especially my Thelma and Irving. Them two was a hoot. Should be more ppl on earth like them too','2019-12-30 00:39:08.186000','2019-12-30 00:39:08.186000',5,'cynthia patton','https://lh3.googleusercontent.com/-Z9wAvgGdTSQ/AAAAAAAAAAI/AAAAAAAAAAA/vVgQplpq8bI/c-rp-mo-br100/photo.jpg','12541597562633926366',288),('AIe9_BGErQpX2pRNZrXBy5NOsH0exCI2hYz4CavNRKuikTfiivU2TSLRpCH2UFR2UATP0Edl5DqasOnXQy1wvx0SQKq8OoT2mXAtjGt4I-TY4wd-lQmww7o','Amazing service!! We were called to the back before I could even finish the paperwork.','2019-10-12 02:32:20.707000','2019-10-12 02:32:20.707000',5,'Cassandra Caldwell','https://lh6.googleusercontent.com/-6LjIyLvBS0E/AAAAAAAAAAI/AAAAAAAAAAA/Ae-fLF6dqt0/c-rp-mo-br100/photo.jpg','2694018788013845459',6047),('AIe9_BGErQpX2pRNZrXBy5NOsH0exE5yURkGEJXs9HorsQAHc7osEg73cVdTVGPR3wSZfcto78pWAjfWUl7_LJU072h3h8z5Zc26J7T9rGJOzDJpVmU70rM','Was ill with something I couldn\'t identify. Showed up, and within less than 15 minutes of walking through the door, I was in a room, speaking to a doctor, and getting ready for tests. Extremely prompt, excellent service, in a clean and comfortable environment. Staff were all extremely personable. Would gladly show up if I was suffering from pain and projectile vomiting again!','2019-06-12 05:21:23.556000','2019-06-12 05:21:23.556000',5,'Michael Compton','https://lh3.googleusercontent.com/-nkjBdPG0MHk/AAAAAAAAAAI/AAAAAAAAAAA/TR8l5FvAPyE/c-rp-mo-br100/photo.jpg','14567670160750071148',1312),('AIe9_BGErQpX2pRNZrXBy5NOsH0exEN8YmDVQf9uGxpDjcMFhFSR9K09O42sg59R6WtdKGHjHEW5Ayosr7fbRg5mKxLAO7i2dbFzBGH2dcz7n4S1eUQk_3E','It was great...I was put to ease about what was wrong with me and it is such a nice facility.','2016-08-09 23:54:12.878000','2016-08-09 23:54:12.878000',5,'zoezzw','https://lh6.googleusercontent.com/-xl4NZKl3qos/AAAAAAAAAAI/AAAAAAAAAAA/MreDGdbfPh0/c-rp-mo-br100/photo.jpg','14567670160750071148',1996),('AIe9_BGErQpX2pRNZrXBy5NOsH0exezd1GIUElHRvP-JVUy-uPWdOIhmyfFsy-o6j4e5XyBEYRN22zfKTbugAppas2S_G-6HJsZ42hwPp-YgCFsLBVX3V4I','After some quick paper work, we were called back, and treated. The nurses and doctor were all friendly and helpful. I was worried about my son, but they were great. Thank you Dr. Anders, Kim, Allison and Daniel.','2019-09-27 05:39:12.433000','2019-09-27 05:39:12.433000',5,'Juan Perez','https://lh6.googleusercontent.com/-lWuqYpDPOhk/AAAAAAAAAAI/AAAAAAAAAAA/nkA7RkP84UI/c-rp-mo-br100/photo.jpg','13486358490203335051',811),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXglPs5Ojacom48pzRMBGbuqzkonWdJHda2tqPb0vF3stnG37ovVASEBATcZkd7EHAHZiFNZmQQT4j8VPs9kJmemjWY4',NULL,'2019-05-31 20:26:21.195000','2019-05-31 20:26:21.195000',5,'The Honey Rose','https://lh4.googleusercontent.com/-i-_r5X703Xo/AAAAAAAAAAI/AAAAAAAAAAA/hhjjeX-5SV8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXHBElNYotYfqXHoEKWQAel41u_idGlXUMXbTe2Dtx_rRZYQ4-TpwooqEuOlC_B52PpyTuOZen6u6ppJovp8wTbyyFTs','My husband brought me in last night after having an episode of almost passing out, low bp, hot flashes, shaky hands and fingernails turning blue. From start to finish everyone was so nice and took their time with me which i appreciated tremendously. Dr. Jones was great about explaining what they could do while John, Morgan and another sweet nurse worked with me. I was given warm blankets, snacks and meds to help calm down the shakes in my hands. Seriously this is the best ER in town. There are no long waits and they get you out as fast as they can pending blood work or other tests needing to be done. Thank you so much for a great experience i truly appreciate all that you guys do.','2019-11-18 14:47:53.278000','2019-11-18 14:47:53.278000',5,'Jody Christiansen','https://lh3.googleusercontent.com/-mCwsQM8L8hw/AAAAAAAAAAI/AAAAAAAAAAA/WbBwg3CSUVo/c-rp-mo-ba3-br100/photo.jpg','2694018788013845459',6010),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXjgIKS15WAvSh8Re8VBhwxnZBP_YkamnWaOX362AloAJocuzoFJDUcbfeGvdFj5UCHz6b6feSa6nSDjzamYcBvrcVvw','SignatureCare is the best. The staff is very friendly from the front to the back. Dr. Ortiz, Nikaela, Joshua, and Luisa took great care of me. Thanks for SignatureCare.','2019-06-23 02:29:56.392000','2019-06-23 02:29:56.392000',5,'Tracey Daughtry','https://lh5.googleusercontent.com/-oZBLum3YbS8/AAAAAAAAAAI/AAAAAAAAAAA/-Lu3PQ0zHns/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0exM8GeIvztcWPqonR6WW7ZO18ocZai4dK0Q4vPuVUdz-ivXTZ6juTXf7HGQu2_o3aeZRfCJgjWgUQU8J9CVUqhT3nY64','My experience is always a good experience here!!!','2017-05-12 13:49:58.931000','2017-05-12 13:49:58.931000',5,'Cassandra Flores','https://lh5.googleusercontent.com/-FIW08pffU8k/AAAAAAAAAAI/AAAAAAAAAAA/arTHYIXANAE/c-rp-mo-br100/photo.jpg','14904078213800803294',2359),('AIe9_BGErQpX2pRNZrXBy5NOsH0exp8sXCS9QFT-vcAHo1h3vJyh3sSLmoFj7maFoXy6-UdSNIFxxOyp1KJ72IPNgeg4ImjhlkN47ThrS-m8xkNOa7wP5_k','Took my child in for an allergic reaction - was treated courteously and efficiently by Maya at registration. Nurse Stephanie was helpful and gentle, and tech John was as well. Dr Faig was clear and effective in treatment and instruction. Overall a fine experience, all things considered.','2020-01-01 19:29:03.912000','2020-01-01 19:29:03.912000',5,'Daniel Binder','https://lh6.googleusercontent.com/-XJS-ZBABlR0/AAAAAAAAAAI/AAAAAAAAAAA/jRtcr5QhYxs/c-rp-mo-br100/photo.jpg','12541597562633926366',269),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXQaxTpWv7Ls74RBlqHEBv_3GyiPtU63Vo1T7yLyDD6FYSXeU4BoPNtre5kZqR4rpbFcR_dX5g_ypxcTfnq-bXqI7vXA','The front desk lady Kendra was very nice as well we’re the nurses Jacob, Laura, and dr. Vakey','2020-02-02 21:40:01.542000','2020-02-02 21:40:01.542000',5,'William Redus','https://lh4.googleusercontent.com/-sKf-eDc8of8/AAAAAAAAAAI/AAAAAAAAAAA/4iH5nqzyNYo/c-rp-mo-br100/photo.jpg','16590124370714063921',10423),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXUdIxdQMywsruM2dx7JbESVcwE4KpxmHXsLAcC1I_FNh4Bjahn6K2Xa-QK1zAxxASdYCYvwjq_F2EF-Rc32ZBkV87Eo','Absolutely would recommend this place again. Friendly and fast services','2019-07-09 23:52:42.317000','2019-07-09 23:52:42.317000',5,'Mitchell Imoh','https://lh3.googleusercontent.com/-ZdAsA82Vy4g/AAAAAAAAAAI/AAAAAAAAAAA/i8xIo0qyNIc/c-rp-mo-br100/photo.jpg','17898197009688164559',5648),('AIe9_BGErQpX2pRNZrXBy5NOsH0exvJim9JJ6ykM8dg46Ew6o8JsAtqO3bin79wjdptzzMThmXGfqDUO-2hPIpXBB0HPANAIL5d6KCu7tm-wgOgHG9WPfWM','Really great experience. Came in with terrible ear pain at 8:45 pm and was checked in, evaluated, and diagnosed in 20 min. They’ve got a calm, quiet, and clean waiting area. Nurse Chris and Dr. Patel got straight to the point with asking the necessary questions and evaluating my earache. Solid environment through and through, I’ll be back.','2020-01-23 03:13:04.932000','2020-01-23 03:13:04.932000',5,'Ted Sornson','https://lh5.googleusercontent.com/-IYHgPTY-Xqs/AAAAAAAAAAI/AAAAAAAAAAA/mf0npiFoy8A/c-rp-mo-br100/photo.jpg','14567670160750071148',10142),('AIe9_BGErQpX2pRNZrXBy5NOsH0exwvio0q9RDrwiTdB859Nm5dBiosJPPsn7RcY3c843XPP_Qau0k0oP2hrGlkPeZIrsQGrvHuhypqpUB8F1UTmpta8AlM','I can fully recommend this clinic after my wifes visit for stitches. Dee and Dawn are courteous and attentive in a time when medical attention has lost some of its personalized character. Dr Ding and his staff of Jacque and Norma are first rate and saw to it that my wifes care was handled in a professional and timely manner. Also, the price was fantastic, especially considering the speed at which it was all handled. Absolute first rate facility.','2019-06-25 17:01:10.321000','2019-06-25 17:01:10.321000',5,'Jimi Soliz','https://lh5.googleusercontent.com/-gwKJVwEu3VU/AAAAAAAAAAI/AAAAAAAAAAA/g1PfVTs_xu0/c-rp-mo-br100/photo.jpg','3511292162159714121',7288),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXwyb4XNpVEPE3JkYQcM9I9CTk9F9Xz5BE59CkIS8T2UM5ZbDABSo-GEu6Fj7NTDLdZ9U79FW6__PP7aQUSQoYkHheW4','Very fast service! Everyone was really nice. Very professional. I got my results very fast. It\'s very clean in here. Thank you guys','2020-06-05 20:09:52.963000','2020-06-05 20:09:52.963000',5,'Estephany Davalos','https://lh5.googleusercontent.com/-wN8XlmTSt8c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucktgSjuzJNlZTlbHu0gFCZ0enFdew/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21458),('AIe9_BGErQpX2pRNZrXBy5NOsH0exx6n1Txe_RoBbBwRgWqeVF9B0CdroxvkmP4RPvoS_g8004JrNlGiCUCQd2vmArpB4uOpY24N0Ehj_88SCOFQXBi8hvc','Wonderful staff. Greeted with friendly faces and answered all questions. Didn’t have a long wait at all. Would definitely come back.','2019-05-17 17:15:55.248000','2019-05-17 17:15:55.248000',5,'Seriah Bryant','https://lh6.googleusercontent.com/-2S9IXvz4Seg/AAAAAAAAAAI/AAAAAAAAAAA/rtFplzAxFMM/c-rp-mo-br100/photo.jpg','2694018788013845459',6154),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXXc12u9LugSLQ69MaZUuM9YWgWIDYTOqBtA9NBw-u4Fv7S-4KYKayvCsRlruJf9y9D6Q_YmvRTqykeSAbAmDpQ0vxyY',NULL,'2020-06-24 12:39:04.747000','2020-06-24 12:39:04.747000',5,'Mona Sarofim','https://lh5.googleusercontent.com/-H-Yx_PDtkdU/AAAAAAAAAAI/AAAAAAAAAAA/oaYv3HlwzD4/c-rp-mo-br100/photo.jpg','8679688254631342173',21291),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXXEeesXWmbCL35xLoB2EcVSiW1efXkNwiWrMssAaaqWbrzdhRrN7o1s2y9P4EET6C3N4LMzn0HNo5V7A9eDtCuUcLjc','Highly recommend this ER if you have to go to one. I called before I came in, as it is very difficult to find an in-network emergency room with my insurance. Immediately, Amanda, who was working registration at the time, was extremely helpful. Although they were not in network with my insurance, they were still able to help, as they took vitals and helped decide if it was an emergent situation, for free (not to mention with virtually no wait time). They were upfront about billing, and comprehensively explained the pricing to me, letting me decide whether or not I would be accepting the care. On top of everything, Dr. Rose and Nurse Katy were extremely kind and empathetic.','2020-02-09 01:00:29.126000','2020-02-09 01:00:29.126000',5,'Tori W','https://lh5.googleusercontent.com/-JnX4Qk4MzWY/AAAAAAAAAAI/AAAAAAAAAAA/vsEnq5ZTM0E/c-rp-mo-br100/photo.jpg','16891069708558046635',13956),('AIe9_BGErQpX2pRNZrXBy5NOsH0eXxrO446ZzskK8NR-2VzmJAjwVlK5qoSh4z5NT6VZ2MMNYCWnpVXC-Lg0KDVGjr0TFPh1rUgCm8Jh2xE1f1IkcDUgUK8','I had a very bad toothache that was causing a headache all night. My boyfriend found Neigbors Bellaire online and I am very happy I went there! Very fast, kind, friendly, and caring employees. I left there without pain after receiving immediate relief and prescriptions to go. Very satisfied and will always keep them in mind for urgent care!','2014-09-26 15:53:22.737000','2014-09-26 15:53:22.737000',5,'T Sumpter','https://lh4.googleusercontent.com/-zqZ099DEJPY/AAAAAAAAAAI/AAAAAAAAAAA/qIAxlUQyEnU/c-rp-mo-br100/photo.jpg','8679688254631342173',8940),('AIe9_BGErQpX2pRNZrXBy5NOsH0eY-85_Gw-YDVTZNOgM7uOpGu4A7cXxO692sz8ifUcltKzhVWxsfPmc4o8McrOB9C1gMXj8352NXPZuzawkHBXHMnnNr8','I had a very good experience and would recommend to all my family members. It is a very clean and comforting atmosphere. The is very professional and curtious. I want to thank the staff Dr. Patel, Alvean A - Nurse, Brian C - Radiology, Jocelyn A - Registration.','2019-10-23 13:22:50.083000','2019-10-23 13:22:50.083000',5,'Nancy Lopez','https://lh6.googleusercontent.com/-V8_E3ooV7Zo/AAAAAAAAAAI/AAAAAAAAAAA/LpLeMppSkys/c-rp-mo-br100/photo.jpg','16389487648212004696',2792),('AIe9_BGErQpX2pRNZrXBy5NOsH0ey-s6z4NTv7LHLdYYM8plF4_bkZa2-wryHLQItA2uOFiN0qZ6CBDNeAme0XJq-xyE2XuTtidKbnQf4GyPbNAS5eGoF9E',NULL,'2018-11-17 15:52:58.013000','2018-11-17 15:52:58.013000',5,'Christopher Huerta','https://lh6.googleusercontent.com/-wMM-PjEq_1s/AAAAAAAAAAI/AAAAAAAAAAA/4M6dY2vxAJQ/c-rp-mo-br100/photo.jpg','13486358490203335051',1124),('AIe9_BGErQpX2pRNZrXBy5NOsH0ey0Evl21st59pwn4gBroy7Gid0cSs_wvxhuO6UXHEue9-u_RYNHkz_B22vrFx9y5u2dY0S5PbKVb7CxOfwVWzqq27mJ8','This place is little bit more expensive than other urgent care but it is reliable facility. They can diagnose and give treatment right away. They follow up on you and if needed can have the follow up visit. They are always very nice and kind.','2019-07-25 22:19:32.677000','2019-07-25 22:19:32.677000',5,'Michelle Oh','https://lh6.googleusercontent.com/-L09zqlA37HA/AAAAAAAAAAI/AAAAAAAAAAA/Q45vuzc9Ii8/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5625),('AIe9_BGErQpX2pRNZrXBy5NOsH0ey4KhbdR9lfi5TtyuZ7J1Hy-RkMvpFwpEMBJ7SSqtOM_tARh0npIpp80gfer95rumYnVNAnHgVe1qCYVoNLpFgf9pNJo','Husband was seen for chemical burn, they took very good care of him and gave great instructions on how to take care of the wound. I will definitely go back here. Very fast and friendly service.','2019-10-16 22:16:44.164000','2019-10-16 22:16:44.164000',5,'Kayson Green','https://lh5.googleusercontent.com/-5sh-7mF70lQ/AAAAAAAAAAI/AAAAAAAAAAA/EjU3cgLX0tE/c-rp-mo-br100/photo.jpg','2694018788013845459',6043),('AIe9_BGErQpX2pRNZrXBy5NOsH0ey5MoiJH-z5pyzxR0G_zsFtuCQUNkqyBxiDhBkNSgidkgNwABKGpLhSwjZCUnSHy3VRJwYwig053VShwsrJ8ViPN0gWI','Great place , staff is always nice and does their best to get to the root of the problem. I\'ve been there numerous times ,and have never had an issue with getting the help or treatment I need .','2017-01-25 05:50:42.017000','2017-01-25 05:50:42.017000',5,'Kimberly Steez','https://lh5.googleusercontent.com/-1rSf-l1Aeos/AAAAAAAAAAI/AAAAAAAAAAA/Amni1ndTdmE/c-rp-mo-br100/photo.jpg','3511292162159714121',7894),('AIe9_BGErQpX2pRNZrXBy5NOsH0eybTH9h9JAhnMnPMLJF_Ewmq_ZgVvq-4pOYF_MwnU2CRHxwuJ-lTHU4JFNc-gsFhIanAlOagmDhuMQlQggJy7Wz_huHM','Everyone was very nice and helpful. It was also nice that they had snacks, drinks, and TVs in the lobby area.','2020-02-03 16:53:36.359000','2020-02-03 16:53:36.359000',5,'Andi Grace','https://lh4.googleusercontent.com/-5eC5ZKZAQAo/AAAAAAAAAAI/AAAAAAAAAAA/4G0RRy-Jw08/c-rp-mo-br100/photo.jpg','3272657195432704501',14374),('AIe9_BGErQpX2pRNZrXBy5NOsH0eydNdcVR8ebgYiSBEDBO5wTVD57UGv9wGqCMyNvOWTEnM4Hlwvp1CfZeb30b6jEgb6hLW1Oz_BBzO4kKRNv4FRj6F3qU','Great overall experience and Mercy was great from my phone call on...highly recommend.','2017-02-24 15:52:43.406000','2017-02-24 15:52:43.406000',5,'Macey Schmitz','https://lh4.googleusercontent.com/-eWk7pC1oecc/AAAAAAAAAAI/AAAAAAAAAAA/30hVgm7DL6c/c-rp-mo-br100/photo.jpg','14904078213800803294',2403),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyI_T-mgeDxy_kiL6k6FgowMQH_FDgjXM6XyhGg0OStdJYppLC_dOs4dN9q0a0Gyx1xXEaBIScSbLrvQddDyMqeqCB9E','Took care of my friend immediately and made sure we were updated with everything going on. Kendra was extremely helpful as well. Great establishment; come here if you need to!!!','2020-02-20 18:59:56.809000','2020-02-20 18:59:56.809000',5,'Blake Torrey','https://lh6.googleusercontent.com/-PW6l5hTX09w/AAAAAAAAAAI/AAAAAAAAAAA/wIZgfuyT3c4/c-rp-mo-br100/photo.jpg','16590124370714063921',13835),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyiWURaqYaKesNsR2-CyNC5UpgpmZISlJje3KM4pob_C_ptn865TGhyaqEH_qLtGjVafpvSyx3Vw9gTiBzs0K3NCAuJo','I came in with a small dog bite. The nurse and tech, Anthony and Natalie, were friendly and kept my focus away from the pain. Dr. Jaber covered all the bases and made sure nothing was left up to chance. So happy I came! Hopefully I never get a dog bite again, but if I do I will definitely come back here.','2019-04-08 23:38:30.067000','2019-04-08 23:38:30.067000',5,'Claire Stephenson','https://lh3.googleusercontent.com/-eRnICyEGVBQ/AAAAAAAAAAI/AAAAAAAAAAA/4CusdfJXYoA/c-rp-mo-br100/photo.jpg','16590124370714063921',3435),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyJsCk3rrZPTlTczdoDb_J-Rw0UA9kotkEpiSaU_uXUJBzpnYO0qpb6XdZUiUFlfAdSNsO9T9QJqeK6NylQQYbMbg7uA','I highly recommend this place when you are not feeling well. This is top notch care. A++++. Unfortunately I\'ve been here several times but I honestly would not go anywhere else now and I feel spoiled. I can\'t believe I used to wait hours upon hours in loud and uncomfortable hospital lobbies. They will see you right away here and treat you with respect and dignity. Thank you Bryan, Darnisha, Trisha, Shay and Dr . thank you for being friendly and kind.','2019-03-10 08:38:04.858000','2019-03-10 08:38:04.858000',5,'SaRah Jordan','https://lh6.googleusercontent.com/-jg_ZsaCKvQQ/AAAAAAAAAAI/AAAAAAAAAAA/ni4SBjwHIec/c-rp-mo-br100/photo.jpg','12541597562633926366',537),('AIe9_BGErQpX2pRNZrXBy5NOsH0eYkGFo9M1lyCU0fDFypV_E1p9VYWBxXqMIJCV1aV8OCMGQ122nZpqm2JfFxoXDP8D6LY0smgU7CzhnTe3wjHLa8hXDRI','First time going they were awesome good service beauty facility staff great took care of me thanks to Joly, Kinga, Kerry and Quintessa definitely great personalities and great service give them a super star....','2019-05-23 15:08:36.099000','2019-05-23 15:08:36.099000',5,'Elizabeth Vega','https://lh3.googleusercontent.com/-9U3_s7kuAbw/AAAAAAAAAAI/AAAAAAAAAAA/Vkw5wzQC9ac/c-rp-mo-br100/photo.jpg','2694018788013845459',6146),('AIe9_BGErQpX2pRNZrXBy5NOsH0eYkqkyK4GSbGM3dqBX3d9ezHCUHgVEV2PKN7ZHEQcxGQlIo8qdAT0_TPAgKn_i2PM9f-pOOWzpbGlYAc0bPT3Xx2htlA','This is better then being in the hospital!! You don’t have to wait the long hours to be seen by the doctor. The entire staff is super curtious and very professional.','2018-07-21 03:08:22.442000','2018-07-21 03:08:22.442000',5,'Camila Luna','https://lh4.googleusercontent.com/-wJAWTmV2esk/AAAAAAAAAAI/AAAAAAAAAAA/G1waHRx-oDw/c-rp-mo-br100/photo.jpg','14567670160750071148',1591),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyllRuKYTWENbWknEFK_SNOjw5yaHSdVAek3kmmaCRo0KPwRtNI-QqHYs3fOJf8fEABJ2KPayb5yqg0A-8WgVOYX6Gz4','I took the Covid-19 test it was quick and easy.\nCody and Joe helped me throughout the process .\nI completely recommend signature care on 130 and Gattis school in pflugerville.','2020-07-29 14:54:59.602000','2020-07-29 14:54:59.602000',5,'Hamu Jimenez','https://lh4.googleusercontent.com/-jE2hXUlWppQ/AAAAAAAAAAI/AAAAAAAAAAA/3FjsnzUW438/c-rp-mo-br100/photo.jpg','2077061009497551125',22949),('AIe9_BGErQpX2pRNZrXBy5NOsH0eYMLj9ybBViYn3DO38Eb7gflrVWHpksPqS_csN6m1mDhgzQ23pC3N0iia-XRvGwwS3A1zEMcEIyXAU91FNiN-Bq6C8hc','Great everyone took very good care of my grandson Thank you, Dr. Do, Alvean A and Jocelyn A.','2020-01-11 18:44:47.575000','2020-01-11 18:44:47.575000',5,'Apolinar A','https://lh6.googleusercontent.com/-Sfh4PGl3GMw/AAAAAAAAAAI/AAAAAAAAAAA/MjUpMzay_Ko/c-rp-mo-br100/photo.jpg','16389487648212004696',9485),('AIe9_BGErQpX2pRNZrXBy5NOsH0eynlXZtWSGAkT4Fxr369XB8Bp3_ilgnUt-0qUzWhww9xfwU6Gie73lW4Ju_EqMEAFqLl_PRnZMCID950oOs_bsD6HvJk','Bad Service and bad atmosphere','2020-06-24 03:13:06.144000','2020-06-24 03:13:06.144000',1,'Dor Shahaf','https://lh3.googleusercontent.com/-VwML6kKKC1A/AAAAAAAAAAI/AAAAAAAAAAA/uM_ZuXS9x1Q/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',21202),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyodo3H8o6XeW4fVm1reUEXtD7MHqLMDCC1XPqGA2yXSbbTrfNT2huRKIIs5D3I_17I6sV6QIAXsieiPJZ6jUVS4l418','I usually go to west Houston hospital, but after a recent uncomfortable visit i decided to give signature a try. BEST DECISION EVER!!! The staff was so polite, caring, and concerned! Definitely will be going back if need to!','2018-07-01 12:34:38.981000','2018-07-01 12:34:38.981000',5,'lenisha browne','https://lh3.googleusercontent.com/-SVGqlVohLuk/AAAAAAAAAAI/AAAAAAAAAAA/x1WK_Fcm63U/c-rp-mo-br100/photo.jpg','12541597562633926366',639),('AIe9_BGErQpX2pRNZrXBy5NOsH0eYoWs9qoItvLZltli3NAlr_EPU3BuDmFSjDoGxzlTabCmpIFf2bUtaAXW-mDXsXKT-QdWmBo-GSUCu9eSNBpvmJs6Wnk','Brought my sister into the ER here and didn’t have a wait time at all. Everyone provided excellent care for my sister. Anthony, Alexis and Laura were very attentive and caring. Dr. Vakey sat down with us and explained all of her results in a way that was very easy to understand. Great facility and great care!!','2018-09-16 16:17:43.318000','2018-09-15 13:49:35.003000',5,'Shelby Chappell','https://lh6.googleusercontent.com/-nCm1R43d-aA/AAAAAAAAAAI/AAAAAAAAAAA/9onxqHVftJs/c-rp-mo-br100/photo.jpg','16590124370714063921',3730),('AIe9_BGErQpX2pRNZrXBy5NOsH0eYqxzU3VycCEjUpzm_ZOfKIWcH4hmVWSp2v8X_r4mDBBdP8S3h6OgngX1AIZIGD3pavqjKeaGRBk5e5OShFP4TvITbPg',NULL,'2019-09-06 15:55:37.397000','2019-09-06 15:55:37.397000',5,'candace garza','https://lh5.googleusercontent.com/-IzpxQ7jxlCo/AAAAAAAAAAI/AAAAAAAAAAA/ectAH0EI4QY/c-rp-mo-br100/photo.jpg','6521947413723274945',8151),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyTAdNN6Avb-LlWBgJ9W0pg7_TGB5Yr_bewSZbG0WSnKcBBerjwPcN4LQaNGHWxVThvOct-8HQal26QeOHEjqZyq4HBk','Rooms were clean and Alexis, Jacob, and JR were all very helpful and friendly.','2018-08-24 15:10:54.851000','2018-08-24 15:10:54.851000',5,'Brynn Wittenburg','https://lh3.googleusercontent.com/-Vtw3Zsu2BXo/AAAAAAAAAAI/AAAAAAAAAAA/teHJKYSI8mc/c-rp-mo-br100/photo.jpg','16590124370714063921',3763),('AIe9_BGErQpX2pRNZrXBy5NOsH0eYtb0uoVhy2RhEyjug8zP6KVEHIAZOfUxlzvFEp92UT_PGG1P3Gp_2icxZiAWKgkCIEaUdSGfIEwGPtgwqbUEptAH9hw','I came in around midnight on a Tuesday and was treated and on my way out in less than an hour. This was the fastest and lowest stress emergency visit I\'ve ever had. Everyone was very professional and empathetic.','2019-03-08 10:50:45.953000','2019-03-08 10:50:45.953000',5,'Carolyn Hunker','https://lh6.googleusercontent.com/-xRhh1pk_p4o/AAAAAAAAAAI/AAAAAAAAAAA/d2xtapPQ4V0/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7393),('AIe9_BGErQpX2pRNZrXBy5NOsH0eytraZcXPOzxpjn8la4_wnlZiF6D-2hIMil6YrDPFu8w6AJz2POOHlV_D7Iprayx5gHprnm2hJi2tuXnJ8G7ZuBQYLNM','i had some worrisome symptoms and they took me in very promptly. turns out it was nothing major- just some dehydration and a terrible migraine, but i never felt judged and they continued to make sure i was comfortable and taken care of. i stayed overnight so that i could see a neurologist in the morning and they offered me (and my husband) warm blankets, complimentary beverages, and made sure we were well fed. they really stayed on top of managing my pain and i didn’t have to go out of my way to ask them to. if you need emergency care, i recommend this place 100%','2019-01-26 19:46:19.502000','2019-01-26 19:46:19.502000',5,'Amber Rice','https://lh3.googleusercontent.com/-8Q9P3dhnfaM/AAAAAAAAAAI/AAAAAAAAAAA/bcavUfjuGfs/c-rp-mo-br100/photo.jpg','12541597562633926366',558),('AIe9_BGErQpX2pRNZrXBy5NOsH0eYU4rCKPUzQ7oKztj2JWNLdM_CTu002UKF7_mzRqWqi7BIiU0uAbU4qr50ghCoZ01qKumoOgYLlHwrKvpQrVZpu3xbn0','My son went here and they made him sit outside sit waiting for the longest ..... Only to not attend him while he was in pain.... These are not medical professionals at all.... I understand that alot of people are sick... But all the more they should be more professional.... They are lucky my son did not die.. Zero stars....','2020-07-07 02:27:42.963000','2020-07-07 02:27:42.963000',1,'Dyamond Gonzalez','https://lh5.googleusercontent.com/-fBR6avrgcMU/AAAAAAAAAAI/AAAAAAAAAAA/CRM-aypcy0E/c-rp-mo-br100/photo.jpg','8679688254631342173',21299),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyuzJafkPapEhQ_ZywrnHMudPxVBPgnX4a2n_DVPi6zRg97SXGyMFzE_T5EFvdu38Vap74XbpxQmQfXZHMmHrDGSv4W8','This place was awesome!! Visit went great!! Dr Smith, Nurse Jani Radiology Tricia and Jesus Registration','2019-06-27 19:42:23.640000','2019-06-27 19:42:23.640000',5,'Erika Beasley','https://lh6.googleusercontent.com/-dbLLLIuT2aE/AAAAAAAAAAI/AAAAAAAAAAA/knTMJPgYYug/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyVDINQ0y79crWU5vNa45tdppSOJKUvUY5MIeff-6e3ZDPj_zR7QVC2HFdrQXrw1P5EmqHNZgNSdHSCau2zEw8-ENI0w','I walked in feeling like the world was ending. I walked out feeling well treated and much more secure about my condition. Thank you. Amazing staff!','2018-04-06 19:58:43.996000','2018-04-06 19:58:43.996000',5,'Ram Ji','https://lh3.googleusercontent.com/-qBx8oZSBA-c/AAAAAAAAAAI/AAAAAAAAAAA/6jR9huEFKmo/c-rp-mo-br100/photo.jpg','14567670160750071148',1638),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyxe05abq6fMmq_ACfOsVVVQlnvJNjPLAUvOAJNKQ8Od_W-3fdolApjAB3wLFvvebLqK_fmtz-YWrW0CSXKUhgQwLbJs',NULL,'2019-11-14 18:05:09.908000','2019-11-14 18:05:09.908000',5,'Kellie lay','https://lh3.googleusercontent.com/-yjzsRF59nXE/AAAAAAAAAAI/AAAAAAAAAAA/L1Ndv8iMRrw/c-rp-mo-br100/photo.jpg','6521947413723274945',8093),('AIe9_BGErQpX2pRNZrXBy5NOsH0eyZyZZz5GOMoQF7en-jYfQLEo01GCScXNk3hmxCRKfRTt6r0QfV7H5bqcKqx1Sm_6LB6b9ddU35CiWzM37Sn422rv4Ow',NULL,'2018-05-23 02:10:37.883000','2018-05-23 02:10:37.883000',5,'Alliance Collision','https://lh5.googleusercontent.com/-3MRIpMNHo_4/AAAAAAAAAAI/AAAAAAAAAAA/g0C2nIv-UeU/c-rp-mo-br100/photo.jpg','16891069708558046635',4476),('AIe9_BGErQpX2pRNZrXBy5NOsH0eZ_ShJ-PdpOPzWbFixaEDfeEnSlYnf3M-oCYbjQ9ahUQS1oJE8pDnRK1p7vAMO325aHECeb525QduHdkMmEKFMq_zdbk','I brought my boyfriend in for flu like symptoms and he was seen immediately, Stephanie at the registration desk was so helpful. Dr.Ybarra was knowledgeable and answered all the questions I had. The nurse Rollie , and techs Mackenzie and Natalia were very professional and helpful as well. I would definitely recommend.','2020-01-28 01:37:33.290000','2020-01-28 01:37:33.290000',5,'Tayler Salter','https://lh3.googleusercontent.com/-dVlyWhZ43no/AAAAAAAAAAI/AAAAAAAAAAA/qUFmQX74lxA/c-rp-mo-br100/photo.jpg','8679688254631342173',10327),('AIe9_BGErQpX2pRNZrXBy5NOsH0eZ1butyFQBL70qBKXY4PePUX-IndMwFNJlcBsTEUpCyjzRALT4Ap22VGd31BdJPkyADTVhvzc8rZtXW0aGtBs3j8qRs8','First time there, and it was amazing. They all were amazing. Can\'t thank you all, especially the doctor for helping my daughter and me. Just amazing.','2017-09-02 05:26:55.931000','2017-09-02 05:26:55.931000',5,'Naiomy Martinez','https://lh4.googleusercontent.com/-hoth1jOZ1vc/AAAAAAAAAAI/AAAAAAAAAAA/1KumN02bmRM/c-rp-mo-br100/photo.jpg','14904078213800803294',2330),('AIe9_BGErQpX2pRNZrXBy5NOsH0eZ3QcTklEVMr8t-ElHlaHnM9QifUiS3xCte-QToUclAfBSi10l6MXYKoxo6h9UqQLSMLADvbZRf-Nz9n81MMKWRwP72w',NULL,'2019-06-17 21:44:47.221000','2019-06-17 21:44:47.221000',5,'Daniel Sifuentes','https://lh6.googleusercontent.com/-6HEyz0OnAJg/AAAAAAAAAAI/AAAAAAAAAAA/v1HNoPwvNPg/c-rp-mo-br100/photo.jpg','6521947413723274945',8230),('AIe9_BGErQpX2pRNZrXBy5NOsH0ez4mQ1VfugBevVaLg9joyEN_dd2fPcRBuf23H3aOaWvL4NqSjPKfLvY8QXplosNfTU9REz9oKhgI98ROU1buLckBK8WY','The best staff for an ER ever! I was made to feel so comfortable while not feeling well and waiting for test result. I actually slept well and felt more rested leaving then I do at home sometimes. I will NEVER go to Darnell hospital again! My whole family will now be seeking emergency care at signature! Wait time 5 minutes max to be in a room! Love the staff and the level of care I was able to get!','2019-11-28 08:11:35.781000','2019-11-28 08:11:35.781000',5,'Annalisa Childs','https://lh5.googleusercontent.com/-udpJmeQmuQA/AAAAAAAAAAI/AAAAAAAAAAA/TsV7wYfVn8E/c-rp-mo-br100/photo.jpg','2694018788013845459',6000),('AIe9_BGErQpX2pRNZrXBy5NOsH0ez7RSuQJqtNnVRkr5RKCDxDE-y42wwEV3Xk6ynE6iDsrEHnn7egX3l3LWM2lH8w4qvoHIlKFapQ-X_W-Jt0sAViEcTV0','Thank You Tatiana, Nicole G, Dustin And Ricardo G!! I came with my wife and you all were a delight! Extremely kind and very willing to help in any way! I always have an enjoyable experience every time I’ve visited this location!','2020-02-08 22:21:28.509000','2020-02-08 22:21:28.509000',5,'Michelle Lopez','https://lh5.googleusercontent.com/-PE8f4ZEr9tY/AAAAAAAAAAI/AAAAAAAAAAA/LMQk5N9arhU/c-rp-mo-br100/photo.jpg','14567670160750071148',13546),('AIe9_BGErQpX2pRNZrXBy5NOsH0ez9ZTDH5IV6CS5sGUkzRpfm3tDe7_HLtbWH9-Dm-QoM8ia2rYm6vMcnSXLVZCqN9OocYRAjxfjKYQXUnwafIxC_ycjes',NULL,'2018-11-09 15:09:20.685000','2018-11-09 11:37:30.815000',5,'Minodora Tirla','https://lh4.googleusercontent.com/-6nytH1R1wLk/AAAAAAAAAAI/AAAAAAAAAAA/aG61PvUWhqQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4404),('AIe9_BGErQpX2pRNZrXBy5NOsH0eZbDqcAJlk7p4ZNJrJABwW55OH4IWqu1nrwjEgp-_yc76MmasVJ8LVCj7o1MVSr_27i20ZOSW9tZWFDAkYB5IBD3vWpU','Great service!! They were fast and accommodating. Genuinely felt like they cared. 10/10 👍🏻','2019-08-17 09:18:19.925000','2019-08-17 09:18:19.925000',5,'Anna Meyer','https://lh4.googleusercontent.com/-shr-hRI5dt8/AAAAAAAAAAI/AAAAAAAAAAA/5XtfeehYekA/c-rp-mo-br100/photo.jpg','8679688254631342173',8817),('AIe9_BGErQpX2pRNZrXBy5NOsH0eZc7d6ZgaVY5Smo3GV94ZZb387odmvSnHdgarxEbPBig4bam32zanVY_wltbIufe1744sLbAkXa6VowUEqXkNyturLbA','Doctor Kimball, Nurse Jacob, & tech Morgan were very helpful!!','2019-03-31 16:19:40.000000','2019-03-31 16:19:40.000000',4,'Maddie Pitts','https://lh6.googleusercontent.com/-6Dn3YHdAXEE/AAAAAAAAAAI/AAAAAAAAAAA/JDuhGpztMn0/c-rp-mo-br100/photo.jpg','16590124370714063921',3474),('AIe9_BGErQpX2pRNZrXBy5NOsH0ezcC3k6g6BOSPgYHcKJCBju0U_q1cz2PjXLEjuhELpa1LYSZTm00nFV5_zHMM2glxAbp2ltfmyPGQkCLsHIOSZdZ3N2E','Signature Care is all about customer service. I was taken into an exam room quickly and offered a warm blanket. Dr. Thomas was in shortly after my vitals were taken and offered a treatment plan. While I waited for test results, my nurse brought me a drink and a snack and again offered a warm blanket. My visit took less than and hour. Very pleased with my experience. I received a follow up call the next day to make sure I was feeling better.','2019-04-14 15:27:35.808000','2019-04-14 15:27:35.808000',5,'Joni Carroll','https://lh3.googleusercontent.com/-CRB8EIcLv6k/AAAAAAAAAAI/AAAAAAAAAAA/_N-MNVnozUY/c-rp-mo-br100/photo.jpg','14567670160750071148',1352),('AIe9_BGErQpX2pRNZrXBy5NOsH0eZG5ycNE3_FZgWrrN4xD-EEbYZhemiLSeSIwkI3nz7DS3Rj1qbLqQ4D5EBSA1oRuoWZFv8rQXpdDmWB8B7kTE_-1hhoM','Got sick anf was in from out if town so i had go in. Fast. No wait. Very sweet staff.','2018-02-04 00:07:47.278000','2018-02-04 00:07:47.278000',5,'Donielle Obregon','https://lh5.googleusercontent.com/-gIKgoGcA4Rg/AAAAAAAAAAI/AAAAAAAAAAA/ZjkqvffUUmA/c-rp-mo-br100/photo.jpg','14567670160750071148',1662),('AIe9_BGErQpX2pRNZrXBy5NOsH0ezHyuXLYNVvi7yTZr0nV0lBrKn0OFSdzu7aBcxoywaSPSe2sBrykiMGVzt22SgyO0efPh710VVrNmCfTRlCI2Za_lwQs','Dr. Ortiz, Brad , Laura, And Naomi were fabulous. We were seen in less than 5 minutes and within 30 minutes had a CT scan, blood work and IV all done. \nDr. Ortiz was very thorough and extremely knowledgeable- great bed side manner and professional- Brad the nurse was so nice and professional and made our 2 hours there very comfortable. I couldn’t have been more impressed with this facility!!! 5 stars plus plus- so glad my son has a place to go in case he needs medical attention while here at school.','2019-11-24 02:20:15.577000','2019-11-24 02:20:15.577000',5,'Carrie Haley','https://lh6.googleusercontent.com/-rAcUBYgQsH4/AAAAAAAAAAI/AAAAAAAAAAA/wigIApOTCoA/c-rp-mo-br100/photo.jpg','16590124370714063921',3077),('AIe9_BGErQpX2pRNZrXBy5NOsH0eziZwsrVHp9IB1M6X7FAwIU6KEz3W-2vgQ3uK3caTv_BYoswb2AZwkKUX9R5E0GjrQ8i3l9onPH3iqUC6Vfd0OaSd5po','Staff was super nice and service was quick. Nice experience overall','2020-08-08 19:17:59.308000','2020-08-08 19:17:59.308000',5,'Iltze Rodriguez','https://lh5.googleusercontent.com/-Q4HEWFko3rk/AAAAAAAAAAI/AAAAAAAAAAA/PwvjSmdbOGU/c-rp-mo-br100/photo.jpg','2077061009497551125',22718),('AIe9_BGErQpX2pRNZrXBy5NOsH0ezlqKrMh1bQ66Hn0ZBYXQRPBYZhke2M_Aqk-A6FBwg3q5YTw9Urw8ycd597FKbE5xgNN9NV_-aOEW9_4tmyTGOww0q4M','Great experience ! Little to no wait time ! Awesome staff , and was able to assist with my grandfathers concerns promptly and efficient ! I definitely recommend this facility to ALL expercially during this time ! Dr Daniels, Robert and Jessica we all very awesome !','2018-11-25 06:48:24.847000','2018-11-25 06:48:24.847000',5,'raven webber','https://lh5.googleusercontent.com/-YacuBLJ-5cc/AAAAAAAAAAI/AAAAAAAAAAA/fa5sCYr1ghk/c-rp-mo-br100/photo.jpg','8918455867446117794',9213),('AIe9_BGErQpX2pRNZrXBy5NOsH0ezv2pujM8Q_TT86vEBg3mDRy_YDrfsHDEX01VfFb7sTdO5WNX0iXLfwfCSDNpB8UtGEVUmBp45NUNkWdn2HS-s7VEuq4','I stopped by the emergency center in the middle of the night on a Saturday. Due to previous experiences I expected the location to be packed. Instead I walked in and the receptionist Amanda was extremely kind. She checked in me in less than 5 mins and brought me to the back where I was immediately greeted by two great nurses. They took my vitals and brought me a WARM HEATED BLANKET!! When in pain it’s those little that make all the difference. I was in and out in less than 3 hours feeling insanely better. Dr. Sylvester fixed me right up. The whole staff is amazing! I hope you don’t ever have to go here but if you need emergency care this is the best facility in the loop.','2018-08-19 13:57:04.677000','2018-08-19 13:57:04.677000',5,'Sakena Whilby','https://lh5.googleusercontent.com/-fvkm4IGCW6k/AAAAAAAAAAI/AAAAAAAAAAA/yZgkgSb8FPA/c-rp-mo-br100/photo.jpg','14567670160750071148',1560),('AIe9_BGErQpX2pRNZrXBy5NOsH0ezvSt3hgWWqqwHrJUiqtC0RI0Q5wqSbzdbeRBwutIwJpyX84JVZvBauZn6oapyAUMZr1tLbQaKKJDbLXAR85GBSE3gQU','Great experience. No waiting time. Everyone was kind and attentive.','2020-01-27 01:19:56.837000','2020-01-27 01:19:56.837000',5,'A Brooks','https://lh5.googleusercontent.com/-lml0qLTI7P8/AAAAAAAAAAI/AAAAAAAAAAA/f2TvyfRvPiA/c-rp-mo-br100/photo.jpg','16389487648212004696',10169),('AIe9_BGErQpX2pRNZrXBy5NOsH0ezX3DLMPIGQ3BWYqWGEISAHeIKwKAMxDkGKkRo0Q-44f3N8e2Lh4M1HZo-SDoeLlZCfMudpR0oJ6NLBWBHmLI5tB4BLw','I have never been treated like that in all my life. I think the dr was on something. Going to make a formal complaint. I broke my arm, I was on a lot of pain.. ','2017-08-07 05:53:18.798000','2017-08-07 05:53:18.798000',1,'Lisa Anderson','https://lh6.googleusercontent.com/-bEPWmz5Wyio/AAAAAAAAAAI/AAAAAAAAAAA/0-uEbhoptIQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8351),('AIe9_BGErQpX2pRNZrXBy5NOsH0ezxLRzSuUWPfGPA8fzXrCms4AF2aN2dzx5mMsTiudjwpDWYQ2EpwvxOPtSTNeCy-Zn6EwgiFaM1MX9y4PQuL6GUdx0ww','Fair warning, this place is great but outrageously expensive even as far as ER visits go. I thought I had broke my foot so went there after googling urgent care early one morning. To be fair, they warned me it would be charged as an ER visit. I was in pain and didnt think much of it - huge mistake. Got nearly $4K in bills for essentially a foot xray. I should have just swallowed the pain and gone to an actual urgent care facility. Lesson learned.','2019-02-21 09:53:19.167000','2019-02-21 09:53:19.167000',1,'Jarred Sharp','https://lh5.googleusercontent.com/-1LzxiTvoNlU/AAAAAAAAAAI/AAAAAAAAAAA/T95Z5hmq8To/c-rp-mo-br100/photo.jpg','14567670160750071148',1383),('AIe9_BGeWygkZoY6qknDFQmPvA4c_0nIcbjwEkKzaYRTSX7XT-xY1tN4H2tmcmBnjvvgIWUJUMP0DKky-MBL7ziSWYbtjFxS565JEG2ZNDFw_QL2qy-nvMw',NULL,'2020-01-20 14:22:45.444000','2020-01-20 14:22:45.444000',5,'Madhurima Gupta','https://lh5.googleusercontent.com/-q_uJNTc_Gz0/AAAAAAAAAAI/AAAAAAAAAAA/Mzqoqg-svPE/c-rp-mo-br100/photo.jpg','16891069708558046635',9980),('AIe9_BGeWygkZoY6qknDFQmPvA4c-ptAzsZmq_htwtlia6h0Ed7tg2p2JcmEp872WXh3xtQi8gcWKQxk5U_xwWGqYL2sxok-hlDAY-NtEi5QWP7Soy1GjIg','This is like no medical facility I’ve ever seen. Last week I was admitted with atrial fibrillation immediately upon check in, into a room that was like a 5 star hotel. Although it is a full ER, it did not feel like it. The private room and bathroom were spacious and immaculate, the staff waited on me hand and foot. There was a comfortable space for my sister to stay with me. Everyone was super attentive. I would like to thank exceptional physicians Dr. Daniel, Dr. Dang, Dr. Deher who explained everything in great detail. They took the time to speak long distance to both my husband and son multiple times by phone. Nurses Johnny and Kelly were exceptional. Dr. Morrical, another SC ER physician, rounded on me on his day off! I don’t know of another way to thank these highly skilled and caring medical professionals, so this review will have to suffice.','2018-08-17 02:20:24.163000','2018-08-17 02:20:24.163000',5,'Viki Moustoukas','https://lh6.googleusercontent.com/-14sJIhB4Dqc/AAAAAAAAAAI/AAAAAAAAAAA/dGXFJUIH-go/c-rp-mo-br100/photo.jpg','14567670160750071148',1565),('AIe9_BGeWygkZoY6qknDFQmPvA4c-yktB5Jimq-8pgffPkHG0TseNysXRxD8-fk6_i4nvUZDDDcFBDLRJmOUA9y369opboDgfQmWsFse_2awJbI92deOyFw','\"Wonderful facility, friendly staff, quick service!\"','2019-12-24 07:36:30.466000','2019-12-24 07:36:30.466000',5,'Vanessa Garcia','https://lh5.googleusercontent.com/-J66n7ME3PTY/AAAAAAAAAAI/AAAAAAAAAAA/OfRNx9dbDv8/c-rp-mo-br100/photo.jpg','6521947413723274945',8042),('AIe9_BGeWygkZoY6qknDFQmPvA4c6r13-Qet7EDLi0uE6gfMdIk7H7k_UAWm9aP6mvTT_5aKjwYBWFvyWPd5sepRss96do9YOhlQf4DtNGJ7p3XRt6cdYrE','Staff is extremely friendly and knowledgeable. I had a very pleasant visit with Sarah G. and Dr. Henderson. Quick service!','2020-01-02 05:00:36.999000','2020-01-02 05:00:36.999000',5,'Jessica Banahene','https://lh5.googleusercontent.com/-2k2Oi_oFh2k/AAAAAAAAAAI/AAAAAAAAAAA/3md_DiEPmMg/c-rp-mo-br100/photo.jpg','17898197009688164559',5311),('AIe9_BGeWygkZoY6qknDFQmPvA4c9pz93WGUIUEiDj8JscuMEOE9vQqQgP35q2XYb1Ut7JTPOroSmFUpFT0JmT2pX8dXjl8es6zY0vI0W-Pf_yAtzQ4Yyo8','Excellent care. Gabe was compassionate and thorough. Raven was also so kind and helpful!! A truly welcoming environment.','2020-02-12 05:34:42.774000','2020-02-12 05:34:42.774000',5,'Seeli Summers','https://lh5.googleusercontent.com/-kIW6b8ezk54/AAAAAAAAAAI/AAAAAAAAAAA/tGIkTggVAnc/c-rp-mo-br100/photo.jpg','16590124370714063921',13861),('AIe9_BGeWygkZoY6qknDFQmPvA4carC2HMDq1xaj6O84cvDsNadN_ggQ4n9kzb3M6zgVhdf9_WrtYOWQhpwhe8Cz1ek_cz6gPww9zkHUzdGwQX4QkWa2MdM','My daughter was seen in less than an hour and got a warm blanket. Her nurse Manuel made her super comfortable','2020-03-03 17:08:56.701000','2020-03-03 17:08:56.701000',5,'Janey Dixon','https://lh4.googleusercontent.com/-hOUprySkEU4/AAAAAAAAAAI/AAAAAAAAAAA/BOUYY7y_FdA/c-rp-mo-br100/photo.jpg','6521947413723274945',14517),('AIe9_BGeWygkZoY6qknDFQmPvA4cbMPXsXKFGQW8y9-mQApukPCq5HkPJhaP22OPEKZM7yAr7Cj2rGWPe1wQzsQi-aicKm18ygGpx8CkbGsP9F7f181jTWU','Quick wait time, friendly staff, good follow up\nTanishia was so welcoming and friendly!','2019-12-04 02:36:20.761000','2019-12-04 02:36:20.761000',5,'Traci Crandall','https://lh5.googleusercontent.com/-ln5iymqU3Ao/AAAAAAAAAAI/AAAAAAAAAAA/vDNIEs_S6LU/c-rp-mo-ba4-br100/photo.jpg','17898197009688164559',5384),('AIe9_BGeWygkZoY6qknDFQmPvA4cBtKEc5ZxKYu04DF1rVourAOL_3mVo1fLjVUvXtIVI3xnrVINJWINHcMMJxZukFeGY_lB1LDiJIin8TMQpKrdet-TLYs',NULL,'2019-07-12 14:34:37.005000','2019-07-12 14:34:37.005000',5,'BAYMONT INN & SUITES PARIS TX','https://lh3.googleusercontent.com/-kd9rjCI-_Uc/AAAAAAAAAAI/AAAAAAAAAAA/ROBm6png-ls/c-rp-mo-br100/photo.jpg','8626688543755174284',8433),('AIe9_BGeWygkZoY6qknDFQmPvA4cdXR0Qg_vRUI8e_w_5VA4bQm2fqyLYFpaGT8oFo2kpeT1pEKkwiyZGxvga6sblwc2EGI_qSB0308captSuzR37FNVw-k','Check in was super easy and quick. Nurses Jessica and David were super friendly and made our 6 year old daughter feel safe and not afraid. Dr Plante was great and got her feeling better in about 10-15 minutes after we were in the room. Whole staff was great and if ever needed we will be back and would definitely recommend them to anyone.','2020-03-13 20:49:51.915000','2020-03-13 20:49:51.915000',5,'John Sellers','https://lh6.googleusercontent.com/-kL1o2KPHmnI/AAAAAAAAAAI/AAAAAAAAAAA/gOX6boTrerk/c-rp-mo-br100/photo.jpg','6521947413723274945',21168),('AIe9_BGeWygkZoY6qknDFQmPvA4cevbhD_pg4XsdpGOq_jakypsWjVJU_zOLlp5Gt79QO4FRucIHaiO7KSe6AG8uf8s4pkXA9B3S9v5luj9iTgs3Y9eHzAI','Everyone was extremely helpful and polite\nAdam Christopher Christine Dr Adam Miller Linda and Aileen were all great.','2020-02-10 23:47:35.072000','2020-02-10 23:47:35.072000',5,'Kevin Dawson','https://lh4.googleusercontent.com/-O9zTgGwUk0o/AAAAAAAAAAI/AAAAAAAAAAA/wedKqeGfI0c/c-rp-mo-br100/photo.jpg','16891069708558046635',13954),('AIe9_BGeWygkZoY6qknDFQmPvA4cHTIl0U1lu67zepqtNh57Jas3e7qVqdJ-cLItcCqRoGV7Nz8LHppe112B-BTnTG8eGCkhHLdMLR22aDHmzNzoDf58fmk','This place and staff is exceptional!! Would recommend to anyone and everyone!! One of the best experience I\'ve had !! Thank you to the staff and Dr and nurse!! ','2017-06-29 18:00:44.913000','2017-06-29 18:00:44.913000',5,'Cheriee Williams','https://lh6.googleusercontent.com/-_TAcK-Zao3M/AAAAAAAAAAI/AAAAAAAAAAA/k8iCaTm5wgo/c-rp-mo-br100/photo.jpg','8918455867446117794',9385),('AIe9_BGeWygkZoY6qknDFQmPvA4cJC62ohWXvPA9C2e2FvrQtOBDT3TSR93b_nWdqgPFIA7xxIdzI_alTF-VQQMbK_u2MbGNNAdG_FXHGIU9nfzPCImL2Cg','I loved it! I felt comfortable which is hard for me especially when I\'m not feeling well. My nurse Brenda was always checking on me if I was doing Ok and sparking a conversation. Dr. Garcia explained all that was going on and I loved how he explained all that was wrong. The office was super clean and welcoming. Front Desk lady took care of me as soon as I went in! I will highly recommend this place to anyone looking for emergency care. ','2017-08-21 20:57:40.128000','2017-08-21 20:57:40.128000',5,'Nelis Garcia','https://lh3.googleusercontent.com/-knaZvZHPvD8/AAAAAAAAAAI/AAAAAAAAAAA/-WaW_DTZYrc/c-rp-mo-br100/photo.jpg','8918455867446117794',9368),('AIe9_BGeWygkZoY6qknDFQmPvA4cJuqW3ZqeMxrm30E3H95C__ms4LoPHNCXaM1gfvPosr3DvxsB_bReQZAF5pQBx0owINC7iRQkJu1YFzkAcKY_EV2mTGQ','This place is extremely organized and I had a great experience here. Would highly recommend this place. The best I\'ve been to for COVID-19 testing, by far','2020-07-06 14:53:33.934000','2020-07-06 14:53:33.934000',5,'Hannah Blanchette','https://lh5.googleusercontent.com/-Zka909qAO-w/AAAAAAAAAAI/AAAAAAAAAAA/tqdksPCZMVg/c-rp-mo-br100/photo.jpg','8679688254631342173',21314),('AIe9_BGeWygkZoY6qknDFQmPvA4cMJ4vJqjRv1E-RwO3AbV_Xff2K5wHqSBo6ayuKXbp7VLxkt3RbYgTbN6uPL0IpfHIOJxcJRlFYkatY4e2nKijAP48re0','Came in at 3 am got fast service & great care from Dr.Daniels, Rollie, Natalia & Stephanie for a friend! Good to know something so helpful is so close to home!','2020-01-15 11:34:42.478000','2020-01-15 11:34:42.478000',5,'Kaliyah Marie','https://lh3.googleusercontent.com/-2CQCP5BEiPI/AAAAAAAAAAI/AAAAAAAAAAA/cnZpfAZ_a8U/c-rp-mo-br100/photo.jpg','8679688254631342173',9832),('AIe9_BGeWygkZoY6qknDFQmPvA4codyBBOiXvQam2boVaXwccOFKj-b5k8fXJtWJdIgAv4U2Uz248Etqrxg0U5tRz2AiCoQoxO05JjCGnptRktnIO2bbP2U','The care I received from Dr Soli Giancarlo was excellent. Eda Jayme, RN, provided excellent nursing care. I was treated in a friendly, compassionate manner by Angela Mendiola-Garcia, who managed the front desk. My injury was thoroughly x-rayed by a technician who expertly handled the big, portable machine; a radiologist read the x-rays within less than an hour; and Dr Giancarlo reviewed the results, answered my questions, and outlined his care recommendations to me. I received a follow-up call the next day, and was encouraged to follow up with my primary care physician. Thank you to everyone.','2017-03-21 20:07:41.911000','2017-03-21 20:07:41.911000',5,'Robin Beckwith','https://lh4.googleusercontent.com/-Bw1FUIxfdLA/AAAAAAAAAAI/AAAAAAAAAAA/rM2ZGToGb0E/c-rp-mo-br100/photo.jpg','17394740196501090048',5087),('AIe9_BGeWygkZoY6qknDFQmPvA4coWgGdYqUDW2TGfeZjvytzMFm_hfL44vvdx9-UH9dpOonhHtbBWMjLJuxW1UTCKmwhWL2dY2RVO8kS1L31lEUEmZCT3c','This is the best ER!! The staff are amazing!! Thank you Dr. hehman Nurse Robert rad tech Julia Er tech Staci and registration Felicia you guys are all awesome','2018-12-21 14:01:37.942000','2018-12-21 14:01:37.942000',5,'Jayron Boston','https://lh5.googleusercontent.com/-o4E6saCrIJE/AAAAAAAAAAI/AAAAAAAAAAA/GCiFQmRoVyg/c-rp-mo-br100/photo.jpg','8918455867446117794',9203),('AIe9_BGeWygkZoY6qknDFQmPvA4cpewwkloFINo0sArWgs9KEUx0z8htbjT0rnQbv8UYDKYoRdPa1wWGQ8yxf_LpVZIEFdiOmzrRYDNBCmUK3MGQNY1MQNY','I would say that no wonder that the local hospital is putting billboards everywhere trying to deter people coming here, because there guys are miles above the hospital er. The doctors and nurses are fantastic! Not only are they incredibly caring, they are competent and they don\'t play games. There\'s no wait, the place has an on-site lab and lots of rooms. They call you back and check in if everything is ok and if you have questions.','2018-04-28 22:52:58.457000','2018-04-28 22:52:58.457000',5,'Elena Lenaris','https://lh4.googleusercontent.com/-dmqYmuZfYH4/AAAAAAAAAAI/AAAAAAAAAAA/CwZuWCStp1Q/c-rp-mo-ba4-br100/photo.jpg','8626688543755174284',8644),('AIe9_BGeWygkZoY6qknDFQmPvA4cPFhUTUHPjZvDz-vMWPGxBpsEV55k09iZJercyFiLH1x4zdw3Co2jaFVT91Z2KXjYRrQJaDHIfgnEeU2JiH4nR9eYOU8','Great experience. Timely and polite staff. Great bedside manners by Dr. Yusuf. Nurse Laura And ER tech Olivia were amazing! Thank you all for everything','2019-01-30 14:02:30.967000','2019-01-30 14:02:30.967000',5,'Terry Lewis Jr.','https://lh4.googleusercontent.com/-fyL4yns1YQ8/AAAAAAAAAAI/AAAAAAAAAAA/_kc_T7bZFL8/c-rp-mo-br100/photo.jpg','3511292162159714121',7437),('AIe9_BGeWygkZoY6qknDFQmPvA4cSlo6ZVyBfhaQngsasAm_kXon8eYEHdewhinHeZWBekdH8gmZG67FrtU5om_qikFYiin2XyAeLYP3OYraFgk5m2VHp0c',NULL,'2020-03-02 00:26:31.674000','2020-03-02 00:26:31.674000',5,'Chris Ajraz','https://lh4.googleusercontent.com/-Pe1f-gE9UCs/AAAAAAAAAAI/AAAAAAAAAAA/X_jxoQArOjs/c-rp-mo-br100/photo.jpg','14748677429039074158',18858),('AIe9_BGeWygkZoY6qknDFQmPvA4cu37c9aMrEJw_y_6J3uCF2YEKHA0D5E08QoU8nvFdC_TZR414mfaUFcNH263STFY9oOp0AtQrNJNJk4L1YscoNwbJ1aI','Signature care made COVID testing so simple and they were so helpful!','2020-06-12 17:40:25.067000','2020-06-12 17:40:25.067000',5,'nikki paholski','https://lh4.googleusercontent.com/-6cBjYHWA3LA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnj6w8Tq_bXgsETkA0H5Rog5SbbbQ/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22050),('AIe9_BGeWygkZoY6qknDFQmPvA4cWkNocz1K6QMLW_JsEMQkYPf9WBOE-vKPIvPetVaJ_ES0g__36FnAa7mBHUWvVfWcI__0eYDxaUd427wa7pgfNHWQ4Yg','Rebecca V, Rebecca W, Dr Kimball, our nurse Gabe, AND Stephanie did a fantastic job of caring for my issue with the utmost respect for me! I appreciate the help they could give me!','2020-02-28 17:54:50.197000','2020-02-28 17:54:50.197000',5,'PinkTone','https://lh6.googleusercontent.com/-_bMvB7UH1Kw/AAAAAAAAAAI/AAAAAAAAAAA/YdY4fXnmJn8/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',13817),('AIe9_BGeWygkZoY6qknDFQmPvA4czhCnEL0luMrHaTh0nDt32pEkcRssYTNuSEx4v7gu_dO256y1EFqaQRDIh3tKt8CmTACDlqJas9_Cu4m6BFJpCjh97_M','A very clean and friendly environment. Rebecca V. was a very nice person to be greeted and helped by.','2019-10-19 08:34:49.630000','2019-10-19 08:34:49.630000',5,'William Gretzinger','https://lh6.googleusercontent.com/-rtQlMxuOvPk/AAAAAAAAAAI/AAAAAAAAAAA/tuUZ8CHQNoI/c-rp-mo-br100/photo.jpg','16590124370714063921',3129),('AIe9_BGgFa_C6vK3i5H-HsJgj1b--IILuXhktPud-n20cw1HW-djZn2kzkBqAKjvo6CpXvVS86ukn4xaMSAPxbkUEoGwnOz3YP5podIq0ppcPu1KVzf_770','Took my wife and my oldest soon on a Saturday night at midnight. They took really good care of them and we felt very comfortable the entire time. Also, they took us in as soon as we arrived which was awesome! I definitely recommend them to anyone who requires immediate attention without the long ER wait.','2016-12-12 19:47:57.642000','2016-12-12 19:47:57.642000',5,'Angel Martinez','https://lh3.googleusercontent.com/-CbjtXzFlBhs/AAAAAAAAAAI/AAAAAAAAAAA/he4U-PnTn88/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1934),('AIe9_BGgFa_C6vK3i5H-HsJgj1b-h4E2xBboy1M9V6ANTknd8Z2t2R-VyI3gZWzjvzfQgvzA3wuVsUHstG2hALVXkornHH4iurjeiaghvNWBeuS27Y-OyWA','Love this place it\'s way faster and staff is very friendly.','2019-07-31 04:42:00.815000','2019-07-31 04:42:00.815000',5,'Ionia Franklin','https://lh4.googleusercontent.com/-xFYp0jTgI88/AAAAAAAAAAI/AAAAAAAAAAA/xgq331PWLXI/c-rp-mo-br100/photo.jpg','2694018788013845459',6099),('AIe9_BGgFa_C6vK3i5H-HsJgj1b-JhZNmiBrDZzJnS1yamK2VVTzIKy0r5D4uS_AbqLO64pW6W_fB9BaxWD0bVm2yEmuBGOUWA','Very fast and comfortable to my injury. Very pleased dr.yusuf, ke’Aire, chih agnes, Jose Anastasia.','2018-08-15 04:38:50.490000','2018-08-15 04:38:50.490000',5,'Joseph Rhodes','https://lh6.googleusercontent.com/-Q3sU0Nw_ipM/AAAAAAAAAAI/AAAAAAAAAAA/nI2sZJtKEZs/c-rp-mo-br100/photo.jpg','3511292162159714121',7620),('AIe9_BGgFa_C6vK3i5H-HsJgj1b-mBfebXjiesi8wlxzXoC_n83xYKFvLjJMxLlELEMDwO33l_B4bgtbYaPAPrFsBbhF7nCaSWm2qfeWzAjM3TDXUlVrOzE','I had a great experience at this location! Came to do my antigen swab test! From the receptionist to my Nurse April to Dr.Das EVERYTHING was perfect! Great customer service and very friendly environment!! Great medical attention I most definitely recommend this location to anyone!','2020-07-31 20:24:29.701000','2020-07-31 20:24:29.701000',5,'Alex Corado','https://lh5.googleusercontent.com/-AFnxVVpOMpM/AAAAAAAAAAI/AAAAAAAAAAA/iZJNcliiRz0/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',21894),('AIe9_BGgFa_C6vK3i5H-HsJgj1b-VJaadW6dv6gwwZMkATfSY8NYnKyH0_9htrQSHl6NoBxpgnzq4tkNr8q9iPeL4xgyuttNlKefaoO4o0HVxs7ex2tk6qw','Came in for a COVID-19 test the process was very fast and painless gave them 4 stars because of the 30 min wait time to get the test other than that I\'m pleased with the service and the staff.','2020-07-21 01:35:19.912000','2020-07-21 01:35:19.912000',4,'Lorena Gonzalez','https://lh5.googleusercontent.com/-na_Oj-BfnUk/AAAAAAAAAAI/AAAAAAAAAAA/IluZXV6r3ZA/c-rp-mo-br100/photo.jpg','14748677429039074158',21655),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_32-UUliDjKH5xAnD0Mtx6hyNMZZEappuKBQTrsk4HHN_hkeouOK2EFDYUITeGWXyq65mQt4Zy2-joo5xbfBZ-lNGYA','The care was fast and efficient. Dr Henderson and Tanisha W were nice and great.','2020-02-19 03:53:24.529000','2020-02-19 03:53:24.529000',5,'Suavey AJ','https://lh3.googleusercontent.com/-_XQR389QETk/AAAAAAAAAAI/AAAAAAAAAAA/VyKpVgys2_4/c-rp-mo-br100/photo.jpg','17898197009688164559',14157),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_89LdWfKyfiL4zdEaMZyGJ8UNfNZBJTsYiic_p3-yeH2RRfgPtdHlEtNYayTOB-z2L7tuwqcZ05pcIGoXkgt_BTc7H0','Great service at Signature Care Montrose. Dr. Yusuf, Laura, Norma, and Eve took amazing care of me. They got me in quickly and took care of everything I needed! I highly recommend SignatureCare for any Emergency needs.','2019-01-30 14:06:52.968000','2019-01-30 14:06:52.968000',5,'Jeff','https://lh3.googleusercontent.com/-5L9TJl4J-hA/AAAAAAAAAAI/AAAAAAAAAAA/KO4pw5Ok7oU/c-rp-mo-br100/photo.jpg','3511292162159714121',7436),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_9KNF5YwzyNlgxh4PSx24_eSPmU6xARKm66OcooAPy6B2dG4VOJuAgTqtu27WtyfLGU3M6Xx-6CbjoEXDiP48ryR1Ok','Thanks for doing your best to make me feel comfortable in an uncomfortable situation.','2020-02-11 15:36:49.835000','2020-02-11 15:36:49.835000',5,'Brittany Weak','https://lh5.googleusercontent.com/-k-3UgfFlUoM/AAAAAAAAAAI/AAAAAAAAAAA/hewC6nWP1HM/c-rp-mo-br100/photo.jpg','16891069708558046635',13953),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_aZ9xxD2J6HIcA1qYknAzi_xUBRu-yJcd_khViwUeQU3Q27F4ob0uDoM72vkQ6U-wKL3lsZi5aDI9-ATMOx5-0BSaXk','Fast and very friendly staff. Just moved here from out of state and they were welcoming right from the start','2019-12-06 16:04:50.762000','2019-12-06 16:04:50.762000',5,'LeAndria Randolph','https://lh3.googleusercontent.com/-Vy3S6MQ44wU/AAAAAAAAAAI/AAAAAAAAAAA/3hYURVCVCLM/c-rp-mo-br100/photo.jpg','12541597562633926366',363),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_cpGzmdtxARwzJRcomj60TCVMIgE-HMVihlcCNpV5l6XJBV5DtG3vSn9QePAWwcbnzFqzvBoa67XdDuksVtYIDfsxjU','Got me in and out quickly','2019-09-13 00:53:11.790000','2019-09-13 00:53:11.790000',5,'Marshall Stroope','https://lh4.googleusercontent.com/-B1n4cOxCI60/AAAAAAAAAAI/AAAAAAAAAAA/i2qoqNsF49A/c-rp-mo-br100/photo.jpg','13486358490203335051',834),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_FwocxpmaW9nlTvQD-vFkNC0vM41vYyU5DBkf-hYrzX8Bd38PSkoaSwXFwSbyzpyabvMIc-vwMHcaye_6iPoTuMfgwI','Wonderful fast experience, MAYA was very informative and helpful and my made my visit very comfortable .','2020-02-27 17:42:44.567000','2020-02-27 17:42:44.567000',5,'Zeneyah Edwards','https://lh3.googleusercontent.com/-2fcLYjCW0kk/AAAAAAAAAAI/AAAAAAAAAAA/lc0WLfJJO5A/c-rp-mo-br100/photo.jpg','12541597562633926366',13330),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_GMZodQNbZQzMD4WfpVjJJCs_enDkzjzBbTzt7rq80eJYhj8kmRQHlX9uK50xJvpRijTQ191EFDw8yAPpcuGyc5_ufg','Great service, staff and dr. Was amazing. Quick and easy visit','2019-01-14 19:20:09.182000','2019-01-14 19:20:09.182000',5,'Levita Dobbins','https://lh5.googleusercontent.com/-V9zc75c1lQE/AAAAAAAAAAI/AAAAAAAAAAA/9t9qMfI_neo/c-rp-mo-br100/photo.jpg','12541597562633926366',567),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_HDHzVEDOj3xmykpERd5ZJ14ucjK6WWBMrVmGKNTBRwhRU9flAyRU0HnYfxn1CvItHg-sC3rNpaOqE3AviWnYz8Vkxw',NULL,'2020-06-16 16:22:36.998000','2020-06-16 16:22:36.998000',3,'evan brinkerhoff','https://lh4.googleusercontent.com/-oUYyHQWugLE/AAAAAAAAAAI/AAAAAAAAAAA/Dshl8BLSRPE/c-rp-mo-br100/photo.jpg','14748677429039074158',20962),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_jf28fgpnE9o90JEbbPrffECQK_YbM3xXx-6IdN4tLiIpihTKOm4vD-NsmyBl7hrPxX3UMTfyfSAZCu_YIUmUiqrGMU','Signature care checked us in very quickly, and made the paper work as easy as possible! The lobby is very accommodating to all ages and the staff was very friendly.','2020-02-17 22:59:47.088000','2020-02-17 22:59:47.088000',5,'Amberly Jackson','https://lh4.googleusercontent.com/-PFEDgOUfP9k/AAAAAAAAAAI/AAAAAAAAAAA/VstiG02zUt4/c-rp-mo-br100/photo.jpg','13486358490203335051',13413),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_STvgOTjsqKeUdC5K_tb4IDWfSr6bNs8aViSJT3zcBnNkk-LDiwQBTATG4SrPt1mNW-rwZFLqUUn2MBTmmty6HLxkmM','Came in today and everyone was very helpful and we didn’t have to wait at all!','2018-08-06 19:25:46.585000','2018-08-06 19:25:46.585000',5,'Lorena Tejeda','https://lh4.googleusercontent.com/-df2cWHUjCmo/AAAAAAAAAAI/AAAAAAAAAAA/TRCNoLsD9pY/c-rp-mo-br100/photo.jpg','3511292162159714121',7658),('AIe9_BGhYIk2KhOdF8fekWDvq8JU_Z3g7-eXvnPYgHrPwW6s33P_OF7_y4yIzPlCABPKp5S4AX4gzQcIp7OeDHP87kOwUlxnO5mvVh5WvZcIIrkAbpFH3yI',NULL,'2020-08-17 15:46:08.372000','2020-08-17 15:46:08.372000',5,'Bren and Bre','https://lh3.googleusercontent.com/a-/AOh14GhKOf1P9NSvx3IMCFVTteVR05h_LpfgeTZKNVv5=c0x00000000-cc-rp','2077061009497551125',23067),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-ai1yVdh7lj0gzxYe0fgighPY0d6TQMpEAywdq2LyWTHvwOUPRpoipZElvO7fAdQR5FnAe92NCE6otppmRxtUQIzrwo','Great care! The staff are all friendly and you . Jennifer, Linda, Ray, Shannon and Dr Ashbrooks are all amazing. Thank you for the care you provided me at signature Care','2020-02-15 07:16:15.146000','2020-02-15 07:16:15.146000',5,'Micki Rains','https://lh5.googleusercontent.com/-GB2OZwj9hIE/AAAAAAAAAAI/AAAAAAAAAAA/F2wmHWF9CRg/c-rp-mo-br100/photo.jpg','3272657195432704501',14360),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-av_n-Ros2fJ6_MNleKzDpE0ytp1RZBOvNP8J5SQpyZyBVYGgLMG-5R2H3rw7W5mmlC3-TyvKNuXD3gabW5stvFQM38','I\'ve never experienced an ER visit in which I would boast. SignatureCare in the Heights was not only efficient and effective but also clean and super friendly. We were seen immediately, experienced excellent and clear communication, and left feeling relieved. My son was even given a little bear to take home. No one wants to go to the ER, especially when it\'s for your child, yet they made the best out of a dreary situation. The supporting staff, nurses and doctor were all knowledgeable and comforting. If (and hopefully not) we ever have to make another ER visit, I wouldn\'t go anywhere else but here. ','2017-08-13 22:43:52.987000','2017-08-13 22:43:52.987000',5,'Ashley Warren','https://lh5.googleusercontent.com/-B-H3XA8YHew/AAAAAAAAAAI/AAAAAAAAAAA/liM48fofFs4/c-rp-mo-br100/photo.jpg','14567670160750071148',1772),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-fq5uQv3rJYfQoE3d4nlpEG_53nPQCPgMok7HHWkxsKHvd5V6lxiNd3NQYmhLCFoXHELg2vbcpYN9V5p79Ai9g-2UM0','Dr. Ybarra, Ekaterini, Joshua and Luisa provided outstanding service, very professional and caring.\n\nLisa Lewis Sidney','2019-09-14 08:00:42.378000','2019-09-14 08:00:42.378000',5,'KATRICELYN LEWIS','https://lh6.googleusercontent.com/-K1yon9YrCrI/AAAAAAAAAAI/AAAAAAAAAAA/VA8cQ3wZEKs/c-rp-mo-br100/photo.jpg','16389487648212004696',2910),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-gHBnaZoXbDWeYVAJeVvaP0OhK2BnP6OiuiygF-CVEtO0Zj0KVMZTDxitTpHSg2hZf3M5Gz8kDxZj0UlUkkn6UzdY7s','I am writing this review for my Aunt who visited this location during the Thanksgiving Holidays. She presented with vomiting and diarrhea and had to receive an IV. The staff at this location did not even bother to do a urinalysis and today my Aunt is back where she lives at urgent care again because she had a urinary tract infection which has now spread to her blood because of the non-thoroughness of this establishment. She also has an ear infection that was not diagnosed. This is a message for the staff at Signature Care. Be more thorough in your work-ups.','2017-12-23 17:20:15.975000','2017-12-23 17:20:15.975000',1,'Erin Thomas','https://lh4.googleusercontent.com/-7QAKhDeUq4g/AAAAAAAAAAI/AAAAAAAAAAA/M2AiAm_oYWY/c-rp-mo-br100/photo.jpg','14904078213800803294',2297),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-gY2RvqvsBnSPp-lC-6THHHJLJGrRk0vyzPz_zN52suzaHv6jVVK9Z6uVA7JK9IOMjXtsI57xoOVyxXQhzv0utOiw0k','I had a good experience here. They immediately brought Jaron into the back and started assessing him.','2020-02-02 00:06:50.973000','2020-02-02 00:06:50.973000',5,'Kendra Batiste','https://lh6.googleusercontent.com/-if_kHXtFhbw/AAAAAAAAAAI/AAAAAAAAAAA/NTJoyci7AJs/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',14039),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-Uv-AHFivuWy9HazYN9tyKaPnvMXabiPnsq2-0vI3TTYtcYA0Nx4m9MhnLK-EWmy1a5Yp2YKbQZYK07aUTdJNYX2keI','Always loved this place! Quick, friendly, and very helpful.','2019-09-13 17:33:34.133000','2019-09-13 17:33:34.133000',5,'Will Haws','https://lh5.googleusercontent.com/-YEEfwWYuShk/AAAAAAAAAAI/AAAAAAAAAAA/sYA3l-T7e58/c-rp-mo-br100/photo.jpg','14567670160750071148',1243),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-ViintOEOXbVXjWsidj_-Caf2xiUYoVpPliiUHNH4rz4lU45E2rYFzTM32DHXfyJJle9CX5qLAtd9A7qDMxV4XnhMMo','Staff was very nice and funny, treatment was excellent, service was SO fast, Dr. Yusuf, Leslie, Dawn, Norma, and Jaqcque were all dope af.','2019-08-05 19:10:43.154000','2019-08-05 19:10:43.154000',5,'Emma Moore','https://lh5.googleusercontent.com/-Izk8QPEq2ik/AAAAAAAAAAI/AAAAAAAAAAA/vZepST9-qkE/c-rp-mo-br100/photo.jpg','3511292162159714121',7223),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-whVdF7Tn49uP2zqU12Ib7MhcVH0D8RmTlvdtf7PxxF4BRXlCRbxmOqUBpa5Kh_roaqn-V6OM5QvJXPb2bn_vfwy9jE','The doctors and nurses are so rude. They make you feel like you\'re not worth the time if you go and have no insurance. They definitely think they are above you. I would NEVER recommend this place to anyone.','2017-04-12 14:01:13.925000','2017-04-12 14:01:13.925000',1,'Donna Chavez','https://lh5.googleusercontent.com/-HbljKFL4eLA/AAAAAAAAAAI/AAAAAAAAAAA/wsizT_HVFS4/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8355),('AIe9_BGhYIk2KhOdF8fekWDvq8JU-XepQzoYn2PSRiYhY4H3TpvZGslebWADdkOL9NuFLzCetgiEgsgfmmglLQcGeU9VbEgYFncet_AfT0gPZ5XX1s8n7wA','Dr. Edwards answered all my questions. And I was literally in and out. Loved the no wait time','2019-02-17 22:13:00.206000','2019-02-17 22:13:00.206000',5,'T. Vanesa Montufar','https://lh4.googleusercontent.com/-gb23oFd20ik/AAAAAAAAAAI/AAAAAAAAAAA/tQWQQJTllE0/c-rp-mo-br100/photo.jpg','17394740196501090048',4718),('AIe9_BGhYIk2KhOdF8fekWDvq8JU0bRH2M6fa0pDFUGsImIygWznEhssPW-NiB569jH6xO24dzfK1qkpKKtyvmdRjRxYhqb_dZ2_zxYc9JP5_oFpAlLUFHs','Dr.Jones, Karen, Gunnar, Keo, Courtney, and Kelly were super fast and so patient with my 3 year old! Would recommend them to anyone! We will definitely use them for our Urgent care needs!','2018-12-31 22:00:11.229000','2018-12-31 22:00:11.229000',5,'Ashley Booth','https://lh6.googleusercontent.com/-eRN6Yw1iYDw/AAAAAAAAAAI/AAAAAAAAAAA/tW6vV7Ydm_k/c-rp-mo-br100/photo.jpg','3272657195432704501',7073),('AIe9_BGhYIk2KhOdF8fekWDvq8JU0FjulcHWK--tPlOP14esq1lBRZzHosU_WjXEFpYrVcBdGsIM_bs5Dbzmkif_aPY_dMpZB7X77WVDAULm1AyQFf0vx3w','Nice staff and very accommodating.','2019-06-01 07:38:28.867000','2019-06-01 07:38:28.867000',5,'Cherish Destine','https://lh6.googleusercontent.com/-dFelKpoWJkM/AAAAAAAAAAI/AAAAAAAAAAA/U9fEYjkYoAc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JU0h6aNYKsRKny0tPsiGDLpvc5k-Bcrep4k8RN0b8E7BXFKdAjTG79JmySTJPnJ1obMvMFdWLZzK2VfJnxLw5gV3Aa3aw','Amazing staff. Everyone from the front desk to the doctors were so helpful and professional. No wait & very clean as well.','2019-06-27 23:02:49.712000','2019-06-27 23:02:49.712000',5,'jennifer franco','https://lh6.googleusercontent.com/--60HZgX8LoU/AAAAAAAAAAI/AAAAAAAAAAA/ZPe_z60DBow/c-rp-mo-br100/photo.jpg','17394740196501090048',4643),('AIe9_BGhYIk2KhOdF8fekWDvq8JU0Ztn_eCaP_gCvgAbBJk--iQjLXcG489p4SeWHLELHTTnAf05_meOAxmVn4BDnR9F2b8O4498YPwHMXwJ0YnBbVjJmfM','I have enjoyed the kindness today. They treated my son like family :) The other reviews were spot on!!!!!','2019-05-12 21:43:52.118000','2019-05-12 21:43:52.118000',5,'Artavia Lewis','https://lh6.googleusercontent.com/-B6vW8CcqFkk/AAAAAAAAAAI/AAAAAAAAAAA/EPHXgbKXRoU/c-rp-mo-br100/photo.jpg','14567670160750071148',1323),('AIe9_BGhYIk2KhOdF8fekWDvq8JU1_9QSk08Hu4CS_vKo1or4Eudt97fEFQizWVQQx4rBc-iiHOh0PJ-elITosfou9xPOTlqu0HIadpFy5DbvQ-0SvAiyso',NULL,'2019-12-08 03:11:06.513000','2019-12-08 03:11:06.513000',5,'Alejandro Rodriguez','https://lh5.googleusercontent.com/-RDcLe_PutIw/AAAAAAAAAAI/AAAAAAAAAAA/H3GeBurbiu8/c-rp-mo-br100/photo.jpg','16389487648212004696',2567),('AIe9_BGhYIk2KhOdF8fekWDvq8JU19j2-4GR0qHbig5tjPO65x7NjiUDAjfs_4-9G35q5Ts92ivuXXu8_lnPX948umx4M5leQx0v_4qpEKLQHfSA3Cjz8so','My daughter was treated very well as soon as we walked in the facility until discharge. Thank you Dr. Smith, Raymond, Nicole B, Nicole Rad Tech, and Sam.','2019-04-18 04:32:47.802000','2019-04-18 04:32:47.802000',5,'Annn nnna','https://lh3.googleusercontent.com/-S1w-g670yyQ/AAAAAAAAAAI/AAAAAAAAAAA/qm7k71T8WXU/c-rp-mo-br100/photo.jpg','8918455867446117794',9145),('AIe9_BGhYIk2KhOdF8fekWDvq8JU1kBqlyJ4jAsGJxFnlx1F0EHXaiQ2KeUQDZt-nd7_KkZLAO5xWcRn0XQZb2EwuDwxcPXN2Z34ezBhavDS0oZLpgSiG0Y','Best experience ever! Love, love, love the staff! Dr. Goodman, Adam, Andrew, Chris, and Aileen were all perfect. I couldnt have asked for better care.','2020-01-19 17:59:44.729000','2020-01-19 17:59:44.729000',5,'ashley williamson','https://lh3.googleusercontent.com/-_NROdWIWpEU/AAAAAAAAAAI/AAAAAAAAAAA/OYyrLDhCTko/c-rp-mo-br100/photo.jpg','16891069708558046635',9981),('AIe9_BGhYIk2KhOdF8fekWDvq8JU1njkTD6qWUMqE2kK7HtaV8piNoP8ea69ZKeySzbvgM9hp-xGUuv95wjlz6nhIj95xQ_3x6fGknn2MvY-R0mvZclh4AM','The visit to this urgent care was great. I came with an injured toe and left with no pain. The staff was very friendly Tanisha was so down to earth and made me laughed the whole time. Dr. Maudlin explained everything in detail to me. The X-ray tech Laura did X-ray within ten minutes of being there. I hated Emergency rooms but this place was awesome.','2019-09-06 06:17:45.764000','2019-09-06 06:17:45.764000',5,'Ali Smith','https://lh6.googleusercontent.com/-5HVGNYVZT-Q/AAAAAAAAAAI/AAAAAAAAAAA/AGqFsxt9cF0/c-rp-mo-br100/photo.jpg','17898197009688164559',5558),('AIe9_BGhYIk2KhOdF8fekWDvq8JU1TVm_vlAakjTDbl4Rbr9b3WmwOO-FElI3TAzsVgXEbL1_zRotTvevcwYM-VDrr0-pscPCN65YeIfjm4GS3vfNeiLdYQ','We were seen quickly and they had a courteous and friendly staff. Would definitely recommend for local care.','2018-08-25 07:03:03.953000','2018-08-25 07:03:03.953000',5,'Justin Tysdal','https://lh5.googleusercontent.com/-w0GBClvxCoc/AAAAAAAAAAI/AAAAAAAAAAA/WjkayRdPzu4/c-rp-mo-br100/photo.jpg','14567670160750071148',1554),('AIe9_BGhYIk2KhOdF8fekWDvq8JU1VDBTjFSimKEMd5b6sDS7JXK_mtOmSt4ngAMER2MFDPuIiJ8y7mwSgilFyPdLxDxqW-qNMaJQfLE-zhEESBWs-N4EHQ','Dr. Anders, Nurse Jacob, Tech Natalie, and Laura made our visit fun. Everyone was very friendly!','2019-03-24 19:04:42.215000','2019-03-24 19:04:42.215000',5,'Bri R.','https://lh4.googleusercontent.com/-4e85ug15L8s/AAAAAAAAAAI/AAAAAAAAAAA/rcZt2MBgqPU/c-rp-mo-br100/photo.jpg','16590124370714063921',3486),('AIe9_BGhYIk2KhOdF8fekWDvq8JU2FzmKynl5GwsvKRNdzQYz-egFhWc32DOoHCGLC_fBYv5flP0OawvqYPC4ibJP33Dhd-Rj-qTtp89D8Nzqavb43p_ufU','Had good experience thank you for your help Jocelyn,Thuy, Alvean','2020-02-22 17:12:52.988000','2020-02-22 17:12:52.988000',5,'Matthew Clark','https://lh6.googleusercontent.com/-hYgyzbwmS3w/AAAAAAAAAAI/AAAAAAAAAAA/W1YcoN7R45M/c-rp-mo-br100/photo.jpg','16389487648212004696',11060),('AIe9_BGhYIk2KhOdF8fekWDvq8JU2kAcpi2mebUaGUnBT5VSSXrlpCdIA8PUO5qwL7swjblJ_k8qT7NBn-M2gfwPTPKjtUREkHtuKA3Y0X5C--BMRz6Vn-8','I had a great experience visiting this place my daughter was attended to in less than 5minute. Both the doctor and other staff were so delightful in doing their job.','2019-10-10 23:34:01.679000','2019-10-10 23:34:01.679000',5,'Waseelat Adetona','https://lh5.googleusercontent.com/-zAZvFCyhAzA/AAAAAAAAAAI/AAAAAAAAAAA/jC75xUX3Uok/c-rp-mo-br100/photo.jpg','8918455867446117794',9058),('AIe9_BGhYIk2KhOdF8fekWDvq8JU2m4Y1c7hBEPbe_4QCDR_q4v-Xznnx-d0fNzVjykW2s26_mXZr7eYGSBjY0cZipKHa6xvZp1y5dXLSu-XcrSjJjv_o-g','Everyone was super friendly and helpful. Nikki is awesome. Dr. O\'Malley took good care of me.','2019-03-11 01:47:56.384000','2019-03-11 01:47:56.384000',5,'Loyd Powell','https://lh3.googleusercontent.com/-4YeXV7cRHZo/AAAAAAAAAAI/AAAAAAAAAAA/l2n7DNFZFGo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JU2QH8XDpiqrXkJvE7xcv9U7rlUviiJ7KG52bi-bVNuNjpcX_w39nlBKGdAH3SqPpHSI5mgSUsjukPaeOCErKpzxQcI8g','Service and staff was outstanding. Check-in process was a breeze.','2020-08-14 16:22:00.955000','2020-08-14 16:22:00.955000',5,'Bernard Smith','https://lh3.googleusercontent.com/a-/AOh14GgR9n3u1kSzOIQQCAESXx54FPP8S6fih3GlPIp39Uo=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JU32HHVTP1A8lraNYJa_uTcT8VOKmzIdb1iZ5SV4EGCrx7zUt70UN3pHWPBQgxY1ExyBHdEZoiRQFYFn2ISxxQ3yTV1Fg',NULL,'2020-06-01 19:19:56.821000','2020-06-01 19:19:56.821000',5,'Edelmira Lyons','https://lh4.googleusercontent.com/-kq4_2rJvHQI/AAAAAAAAAAI/AAAAAAAAAAA/8-GEZqJmh3I/c-rp-mo-br100/photo.jpg','16590124370714063921',22677),('AIe9_BGhYIk2KhOdF8fekWDvq8JU33Hij8M1EUAmBKzz_JY3qFj6EqPnCHDqJP5gAnKwe0kVX215PC173NuSTwejTXHl6V2dWmJKKb9SCBdyDVTBAhWSJkE','Very nice and very organized. They had us in and out and was very genuine. Love it!!!','2017-08-19 11:19:18.711000','2017-08-19 11:19:18.711000',5,'Jessica Osby','https://lh4.googleusercontent.com/-O-2YFNGIffQ/AAAAAAAAAAI/AAAAAAAAAAA/dn3LAgnPpWo/c-rp-mo-br100/photo.jpg','17394740196501090048',4993),('AIe9_BGhYIk2KhOdF8fekWDvq8JU38r-YSso-8zdCNA44DF5G7zmed-08S_lkXIdeZq1l5tb0Ih3-HaaXavTYasKJulfuUvYsqPVtfUXSb58nl_xpfYeTx0','I had a great experience at this location! I thought I should take the time to write a review! Amazing staff ! Dr. Edwards ,Tammy , Joy, and Tatiana were so friendly! We were taken care of fast and treated like family. Also I was very happy and surprised with the low cost of our bill! If you live in the Sugar land area you should deffinantly come to this facility !','2018-03-03 07:15:25.360000','2018-03-03 07:15:25.360000',5,'nathan moore','https://lh3.googleusercontent.com/-7thItjV_9Z4/AAAAAAAAAAI/AAAAAAAAAAA/PQm995tykUA/c-rp-mo-br100/photo.jpg','17394740196501090048',4875),('AIe9_BGhYIk2KhOdF8fekWDvq8JU3f6B8ZHLspkFAcvvjptF7P9grQ3XOc3j30HYrBGsaGfSpGMeZLgibWIYObZLkIChayoeHX_EqjHjXC_ZMm7_ItN22oY',NULL,'2020-02-25 19:25:21.782000','2020-02-25 19:25:21.782000',5,'Keith Eddings','https://lh6.googleusercontent.com/-YF9aQ7i-TNo/AAAAAAAAAAI/AAAAAAAAAAA/9_R6XebN-g8/c-rp-mo-br100/photo.jpg','6521947413723274945',14544),('AIe9_BGhYIk2KhOdF8fekWDvq8JU3jGmTugHHqFM65eF59r2JRx2tdWrWiaLNch1Fb6WHqhZgIsg6f9dFMFUE-9EhhvZYBvGlzbTjdiXIl_-ancH-k5IjtQ','This place is very amazing. Dr. Grinblatas and RN Joseph was alot of help. They made me feel comfortable and taken care of. I am very pleased. Thank you Signature Care','2019-09-15 16:32:38.308000','2019-09-15 16:32:38.308000',5,'Sagittarius Nae','https://lh4.googleusercontent.com/-hLuOwu8Iff0/AAAAAAAAAAI/AAAAAAAAAAA/jM5ABOJKllw/c-rp-mo-br100/photo.jpg','14567670160750071148',1238),('AIe9_BGhYIk2KhOdF8fekWDvq8JU3v-yxzFDZC8DdybUsVmttqpQKHXR98Saxa9nPGP34L2fOGgvJ8Fn14Re6hIOQxMHUjgi9XvGIjAVUfFbQR9EoyfC0zo','Decided to visit this location after our dog accidentally bit my girlfriend. As soon as we arrived, Tanishia greeted us and made us feel very welcomed. We got attended faster than we could finish filling out forms. The nurse, Susan, arrived shortly and attended us with care. It wasn\'t long before Dr. Nguyen treated her and gave us the medication she needed. Awesome emergency center and super quick. The visit took about an hour. Would definitely recommend and come again if needed.','2019-12-04 05:51:33.289000','2019-12-04 05:51:33.289000',5,'Irvin Juarez','https://lh3.googleusercontent.com/-dW2iM-3e6Uo/AAAAAAAAAAI/AAAAAAAAAAA/HPwdCUMuMTk/c-rp-mo-br100/photo.jpg','17898197009688164559',5383),('AIe9_BGhYIk2KhOdF8fekWDvq8JU3YEZe7EcXZgUrd9JJkNxne8m3PDabaJTqp5WlNc8EMdb2gmLFsHw3O1UVSZQxKPWFIAxHzqaWx3zUmesmnbGVE1LFJQ','Dr. Appiah, Jani W, Tricia B, and Elida Jasmine were very helpful and professional','2019-10-17 22:52:20.728000','2019-10-17 22:52:20.728000',5,'Brian Bell','https://lh6.googleusercontent.com/-PpzlwGhLv2w/AAAAAAAAAAI/AAAAAAAAAAA/aAKA3rWdoew/c-rp-mo-br100/photo.jpg','16389487648212004696',2805),('AIe9_BGhYIk2KhOdF8fekWDvq8JU47hfSRXFANxWNtEWbiPUR-Be7X3SXAcq7o5FOUWnsHORqPaKQixxCpmgccZJIn1GWl2kiJqaHH9Sf7v63oASVlO2BC0','I had a great experience with Dr. Vakey and Nurse Jacob! I took my sick friend in and they took great care of her. They were very attentive and efficient!','2019-10-22 16:04:26.405000','2019-10-22 16:04:26.405000',5,'Elise Yellitz','https://lh5.googleusercontent.com/-xmqeutu_wM8/AAAAAAAAAAI/AAAAAAAAAAA/tvLlnyu53uk/c-rp-mo-br100/photo.jpg','16590124370714063921',3127),('AIe9_BGhYIk2KhOdF8fekWDvq8JU4gSKGibE9z_wdETM34ucVR5e_mY2ZO75epC4fUtDmqZmh0jLns7JQq7JTNd7kzk41XCL9V8yEf0MvK7dDK1DMtCCtwE','Air Ana took great care of me as soon as I️ walked in! Everyone was super friendly, and compassionate. Both the doctor and nurse were really thorough! I️ love it here!','2017-11-10 04:58:30.847000','2017-11-10 04:58:30.847000',5,'Keyanna Dudley','https://lh6.googleusercontent.com/-CsUEKLqL86c/AAAAAAAAAAI/AAAAAAAAAAA/eUEBLXM2kB0/c-rp-mo-br100/photo.jpg','3511292162159714121',7763),('AIe9_BGhYIk2KhOdF8fekWDvq8JU4qoA4bHOTBVuQGXJi7ilat868_lvVdfwFj5fJ5_im2gdOZY1QE01WlSbYQNAgk7oc7vjsMwzVvetu3593HFgwsw0ft0','Very professional staff and very kind and caring','2020-02-03 13:51:49.956000','2020-02-03 13:51:49.956000',5,'Darya Saam','https://lh6.googleusercontent.com/-G280oWIUcRE/AAAAAAAAAAI/AAAAAAAAAAA/yCptpttqAsA/c-rp-mo-br100/photo.jpg','8679688254631342173',14766),('AIe9_BGhYIk2KhOdF8fekWDvq8JU4xIjdhjAV-JRJgKem_EdLHlREmNgSOBSoADCs6zdOKOGn8TkRkriR8X5yqhOCsVNb-i_02-HxgRZHWoKABqaS3Mglsc','Great experience\nReceptionist Amy, nurse Shaba, and Dr Smith are amazing!\nGreat customer service!\nThank you for all your help!','2019-03-09 06:26:19.623000','2019-03-09 06:26:19.623000',5,'Carolina Gervais','https://lh4.googleusercontent.com/-tLABP_pzyyw/AAAAAAAAAAI/AAAAAAAAAAA/OeOR5h2nk04/c-rp-mo-br100/photo.jpg','8918455867446117794',9163),('AIe9_BGhYIk2KhOdF8fekWDvq8JU549OzzXWJIoH4i9nNk4Z-hIV9OtHQRZIZbZj5hcn-7B9TO4g1WP1wwQXHS8ucUB-8TrV_Ap5IaZ89sbyXdg2G_e9uHQ',NULL,'2019-12-29 08:33:29.097000','2019-12-29 08:33:29.097000',5,'Dawson Dallas','https://lh6.googleusercontent.com/-I3jJsatnyCE/AAAAAAAAAAI/AAAAAAAAAAA/e8ePt_cZ_2E/c-rp-mo-br100/photo.jpg','3272657195432704501',6820),('AIe9_BGhYIk2KhOdF8fekWDvq8JU56hltVAsNm3YQd-hcnW0-ZGRFT0ziul2FaxykemNyjk_TNHBrtN-bWPXeHi2qElOOyAwH-BqCo0keF7d351idQoM6Aw','Wow! Very nice ER so neat and clean and well put together all of the staff are so nice and friendly Dr.Pham is a nice doctor he really took the time to listen. Heather she is one of the Nurses at the Er she is pretty nice she gave my daughter snacks that’s was so sweet .Tricia is the Radiology at the Er. Jesus he greet you when you first walk in he make you feel so comfortable he explain everything to you with no problem. Olivia she is the tech at the Er she is nice also it want be my last time here I recommend everyone to come to SignatureCare Er.','2019-07-26 17:06:28.078000','2019-07-26 17:06:28.078000',5,'Latrivia Milton','https://lh5.googleusercontent.com/-OQj1V_Fs-Es/AAAAAAAAAAI/AAAAAAAAAAA/4hyAHEE9JT8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JU5Bf0LWABbwNpA5gFcELtz09huzTbyJtG4nwMkuRpoOBJjQbHdvU-e5UiOO6Uh81LiZK6bE9IPGhRKSu4z4AlFbscqrE','Dr. Angela Straface and the staff at SignatureCare were very helpful and welcoming. They made my son feel very comfortable when getting tested for the Covid-19. We got our results within the 15 minutes as promised.','2020-07-18 15:50:46.536000','2020-07-18 15:50:46.536000',5,'Brittany Triggs','https://lh6.googleusercontent.com/-1-4srhiB3Fw/AAAAAAAAAAI/AAAAAAAAAAA/gcQVIlrOc_g/c-rp-mo-br100/photo.jpg','14748677429039074158',21745),('AIe9_BGhYIk2KhOdF8fekWDvq8JU5ETK0jGnEF9jF1r6EfjVgwIuxihwdrXpl_AQQc1UFLkeZvNxa7I5gJIW7ZXTsJhuf_L7fOEFVcV8LNEyGH8AoTfFW2k','I had the best experience I have ever had in an emergency facility. Unfortunately I have been in and out of 24hr. clinics and can honestly say literally everyone there was incredibly nice, professional, and genuinely cared. During one of the scariest moments in my life I couldn\'t imagine being at any other facility. I am grateful for the help and compassion that the entire staff had. My nurses were excellent at their job, and Dr. Kimball went above and beyond to help me. Thank you so much!','2016-05-02 22:42:45.658000','2016-05-02 22:42:45.658000',5,'Sousan Arab','https://lh3.googleusercontent.com/-uNqoachUrjg/AAAAAAAAAAI/AAAAAAAAAAA/9SPo058Vpqg/c-rp-mo-br100/photo.jpg','3511292162159714121',8010),('AIe9_BGhYIk2KhOdF8fekWDvq8JU5K4RcpcZ9EjBgczTmdjXXU-HyRua5cPuxcCLtyy-WUUFcr1X_yuGocbnJ1pdqxkDVNNHt36S7ECkAyDCod7qTG5K7iI','I had nurse Keira and she was so sweet. I wish more nurses were like her. Doctor Elsbecker explained everything. The tech Rachel was funny and personable. From the minute I walked in, until I left, My family was taken care of. Great facility','2020-03-03 05:56:29.115000','2020-03-03 05:56:29.115000',5,'Joanna Cervantes','https://lh3.googleusercontent.com/-bFXTndiXGkw/AAAAAAAAAAI/AAAAAAAAAAA/eE-i4VnDcwc/c-rp-mo-br100/photo.jpg','6521947413723274945',14524),('AIe9_BGhYIk2KhOdF8fekWDvq8JU5KWLOC0zHIDd1Yr87Uhzi03bfaYFCz46Xs9Dn-oCqmUKi_yiw6Ehyvi_hl7aRDsU3TjoojzEAv9bOnAxO9N7iePlLNQ','This facility was clean and the employees were kind and professional. During this pandemic it was refreshing to visit a medical facility where the professionals actually knew what they were doing. The accuracy and timeliness of the people who work there was above par. I would highly recommend this facility in case of an emergency to my friends and family.','2020-07-20 18:01:57.255000','2020-07-20 18:01:57.255000',5,'Natacha Isaac-Bonaventure','https://lh3.googleusercontent.com/a-/AOh14GgDm0WipvY26jRrKlRxYfUHo7LEEFr9PApD5_tC=c0x00000000-cc-rp','17394740196501090048',22069),('AIe9_BGhYIk2KhOdF8fekWDvq8JU5XzPjwOq0JpIEgpb3b3xp9ZxJ2n2GYuIFxS4GrqZH8i0EKUB5pAA6CfN5dO5aC3JBgjE6jcfJY1zbMRFw8hUVz14OOw','I visited Signarure Care earlier today. Kimberly, Kelly and Stephanie were very helpful. I will definitely recommend this place.','2017-03-19 01:36:33.552000','2017-03-19 01:36:33.552000',5,'Kristen zhan','https://lh3.googleusercontent.com/-w7oVnq0O6jY/AAAAAAAAAAI/AAAAAAAAAAA/LVYfz41I9yg/c-rp-mo-br100/photo.jpg','16590124370714063921',4031),('AIe9_BGhYIk2KhOdF8fekWDvq8JU5YENoGZ55eGIQqcDgCYW_wD-oPaJaIyaQ3zNjVItETDjlmLbpdI4Zzs7YeB7ClOHg6qKJxb3KruH9Jbzt64IQfRrQko','Awesome staff','2015-04-09 04:34:24.653000','2015-04-09 04:34:24.653000',5,'Felicia Rivera','https://lh5.googleusercontent.com/-uyq1z8-jOl0/AAAAAAAAAAI/AAAAAAAAAAA/_943eBMPAP8/c-rp-mo-br100/photo.jpg','17394740196501090048',5302),('AIe9_BGhYIk2KhOdF8fekWDvq8JU60CZeeDLDsaGSdoaSXpJ8jVkDkZ0X7QaZTNuzamLXoM1JACHKh2Ss9T8EyS1plpWuzBUQFlIAymRWWKY5t_vVmz4diU','Great Service and Friendly staff. Had a wonderful experience being treated by Doctor Daniels, Nurse Kristina and the awesome Radiology techs Allison and Daniel!!!','2019-12-22 02:10:28.809000','2019-12-22 02:10:28.809000',5,'Diego Davila','https://lh6.googleusercontent.com/-sH0XYNMRoJY/AAAAAAAAAAI/AAAAAAAAAAA/JzIozr5BjkU/c-rp-mo-br100/photo.jpg','13486358490203335051',673),('AIe9_BGhYIk2KhOdF8fekWDvq8JU6afDo0JrFNO0Vh_ggFt6ktn0tWbaz63E7_vnbx7fGgI-spG9d0C-OKqrcaeVM7rFGI6jyoJFCeVxVM_NrN6UFmQocao','Dr. Simmons was very understanding and help to make me feel better. Nurse Susan very nice and check on me . The tech gunner did awesome with iv that had to be put in. It didn\'t hurt. The front desk keto was helpful and very patient with helpful me get my insurance information. I would recommend anyone to visit the facility. Service was quick and I was feeling better once I left. Thanks again to staff .','2019-04-09 15:19:51.166000','2019-04-09 15:19:51.166000',5,'Carolyn Sims','https://lh3.googleusercontent.com/-e6RPvsE3XCE/AAAAAAAAAAI/AAAAAAAAAAA/KxOuAHwlP1M/c-rp-mo-br100/photo.jpg','3272657195432704501',6978),('AIe9_BGhYIk2KhOdF8fekWDvq8JU6aUJKjlErh47lsmxvJssGLTMByOxUS2G3Oz6r6Zmh_du7iqRFeb-h5CNiS134L-cWZ5NOYGop7C7OulBWxSzh4P3Gs8','We are from out of town and needed to take our 2 year old in for croup. SignatureCare took GREAT care of us! They got us right in, listened to our concerns, and gave us the medicine our son needed. If we’re ever in Paris again and need medical help we’ll definitely be coming to SignatureCare!','2020-03-06 10:04:18.252000','2020-03-06 10:04:18.252000',5,'Ev Leyva','https://lh3.googleusercontent.com/a-/AOh14Gh1DxNE0W9qkquaNcZ4HQuRtAXZLtSVjVvm0Jkoeg=c0x00000000-cc-rp','8626688543755174284',21189),('AIe9_BGhYIk2KhOdF8fekWDvq8JU6Jl4hxqplDteEju6Wwx_3wKKr68q2plkfQ1VJL4wZuASSO8Xfx5_Bppf0GaR5Voi6oTIzcaDLRbO9VEOSMyMrj_8hc8','Great experience....the receptionist preethy was really sweet','2017-02-21 15:49:10.180000','2017-02-21 15:49:10.180000',5,'J Rain','https://lh6.googleusercontent.com/-Hq_uAx9Q-vE/AAAAAAAAAAI/AAAAAAAAAAA/WhpTUngtNA8/c-rp-mo-br100/photo.jpg','17394740196501090048',5109),('AIe9_BGhYIk2KhOdF8fekWDvq8JU6VlUkebybHElkl62hD1bbFC06YT8Al2JIRW8n8KkRpKgDgwvlXkSfHx1AaWYKBj57tDC0g_8LiDKRLipIyjZy3s3kho',NULL,'2019-12-04 17:50:24.154000','2019-12-04 17:50:24.154000',5,'Larrez green','https://lh3.googleusercontent.com/-MzaZ19OjT1c/AAAAAAAAAAI/AAAAAAAAAAA/5xu6evq5X78/c-rp-mo-br100/photo.jpg','13486358490203335051',707),('AIe9_BGhYIk2KhOdF8fekWDvq8JU73Qm7DEM7WYLfhmALQbArfytGS8ReNz_ulW49WWyguRr3QaPTVdtpfLVuXJ13abiLwncc6uwNFxcUhx5fE0pPbGKVmc','I recently took my wife here and we had the best experience. The staff was both professional and friendly. I got the names of the people who helped us because I wanted to say thank you to Christina C, Adam, Vanessa, Linda, and Christopher M! If we need the services again we will come back for sure!','2019-07-25 22:43:36.724000','2019-07-25 22:43:36.724000',5,'Thomas Palaio','https://lh3.googleusercontent.com/-O5b4Pfcjuu0/AAAAAAAAAAI/AAAAAAAAAAA/r5sUffTGmAM/c-rp-mo-br100/photo.jpg','16891069708558046635',4234),('AIe9_BGhYIk2KhOdF8fekWDvq8JU7nXzhT_deVUn5CVfbk2Xr-RnaF_-rnxW8n3AnUMW_LIyp-2PPmTbxVY-UlWBc_M-P-iw-bMFeIJCViBupUY5-0utOPw','Be careful. We went here a year ago and were told the insurance company would cover it, by their staff. Now, they are in a fight with our insurance company and we still haven\'t been able to settle up what we owe. \n\nThis is an emergency room, not an Urgent Care, so they are going to be much more expensive... \n\nWe\'re not really sure what the dispute is about, or whose fault it is, but we won\'t be going back. We were originally told we owed $2500, now we\'re told by insurance it\'s going to be $800, but SignatureCare is saying it\'s still not settled...','2017-12-20 18:22:43.462000','2017-12-20 18:22:43.462000',1,'Douglas Barmore Jr','https://lh6.googleusercontent.com/-l97WcDEdJOQ/AAAAAAAAAAI/AAAAAAAAAAA/FKuESnyujOg/c-rp-mo-ba5-br100/photo.jpg','14567670160750071148',1706),('AIe9_BGhYIk2KhOdF8fekWDvq8JU7U3B3tTaDvOP0fHdRcifE9qZFFqt6ftxAMKbhy7p8se51FdT5tQ_ClvjOSVc8pwUxdNDIcqZGzvPaOYZ1WhYEbuZV_Y','Kendra was very energetic & welcoming from the time I entered the door. When I was then escorted to the back Jeri , Juan and Dr.Vakees was very patient and handled me very well. Also was very understanding. I will recommend anyone to visit here and very time consuming','2020-02-25 21:59:13.778000','2020-02-25 21:59:13.778000',5,'Keyara Greenidge','https://lh3.googleusercontent.com/-uEjZhRt1l5E/AAAAAAAAAAI/AAAAAAAAAAA/4HF9piZDlPU/c-rp-mo-br100/photo.jpg','16590124370714063921',13830),('AIe9_BGhYIk2KhOdF8fekWDvq8JU8FyujBSf9u1RwLZMFmPx_zqvt5a_Yp2CvH4ieBqFUtXrx2BEEFgwSnrXMuY7xObuPeVHq5dy9bYD70zYAN8V7hfN6Bg','Jocelyn a\nAlvean a\nMarcus b\nJordan n','2020-03-11 14:36:16.738000','2020-03-11 14:36:16.738000',5,'Tuan Tran','https://lh6.googleusercontent.com/-mmbznNHldyE/AAAAAAAAAAI/AAAAAAAAAAA/HC3BzFHkYzY/c-rp-mo-br100/photo.jpg','16389487648212004696',13713),('AIe9_BGhYIk2KhOdF8fekWDvq8JU8ktsYKbpbNzj-rhmsayg5SwJ-9HndokANndUBUxjSlNV6ZpRI7ufHF3bkO4aeEJ-oTx2FbmYD5oKf2owfjGaWqpx--c','They saw us very quickly and the whole staff was very kind and knowledgeable. I would definitely recommend to anyone needing an er visit without wanting to visit a hospital.','2018-11-14 07:15:37.869000','2018-11-14 07:15:37.869000',5,'Nicole Longtin','https://lh4.googleusercontent.com/-33HcrnM2Xyc/AAAAAAAAAAI/AAAAAAAAAAA/eCsTNizmXYY/c-rp-mo-br100/photo.jpg','16590124370714063921',3649),('AIe9_BGhYIk2KhOdF8fekWDvq8JU8uQWEGTgjx-VDQGznpHTQeUfEHc9uAdG0cVtTPusMG2fZZgkCAwM0jFDZ4TFjk4zo4pLQvi7Qqlg8vbGEo4Ul0O99yc','i’m in college station area and I went in for an issue and Dr. Kimball and nurse Anthony were super super kind, making sure I wasn’t cold or if I wanted a water. I would highly recommend if you need attention fast!','2019-03-29 22:40:22.694000','2019-03-29 22:40:22.694000',5,'Casey Gaige','https://lh6.googleusercontent.com/-qHrAww1MUqg/AAAAAAAAAAI/AAAAAAAAAAA/c0tMOToywhc/c-rp-mo-br100/photo.jpg','16590124370714063921',3475),('AIe9_BGhYIk2KhOdF8fekWDvq8JU8UtitgDKQ2V2LEgmJaTFmolQM3i33S5227Co95XRYiIcLVS7LAWe2HgVDfkDulDQq2e4KmtNYOKNkrkslIZwNNQ8590','This was my first time needing and ER and I\'m glad we chose this one the Staff was great from the receptionist Kimberly to nurse Gabe. They made sure that me and my Fiance were comfortable and understood everything that was happening. Thank you!','2017-12-07 18:17:15.574000','2017-12-07 18:17:15.574000',5,'Ashly Gonzalez','https://lh6.googleusercontent.com/-0k8ZlSrkhr4/AAAAAAAAAAI/AAAAAAAAAAA/xuALSZwLoNM/c-rp-mo-br100/photo.jpg','16590124370714063921',3898),('AIe9_BGhYIk2KhOdF8fekWDvq8JU8ZdL6dRkQZczO6zHlTQO-AwSwgQcSG5BXaUPui05lvV2ijlt406xZtrSY3_F-5A1yxOnQ9_Yl1BYJ8Wj4ZV-F3LK_fc','Great place! Clean comfortable environment. The staff was excellent in everything from the front the front desk when checking in to seeing the doctor and checking out. Dr. Soli, nurse sarra, Anar At the front, holly and Thelma all made Sure I was taken care of fast and that I was comfortable. They quickly got to a resolution and got discharged. Overall all great service and I would recommend this ER to anyone.','2019-12-21 05:41:59.754000','2019-12-21 05:41:59.754000',5,'Leo F','https://lh4.googleusercontent.com/-VS4OgwlaYFg/AAAAAAAAAAI/AAAAAAAAAAA/_1k7maTwKdc/c-rp-mo-br100/photo.jpg','12541597562633926366',323),('AIe9_BGhYIk2KhOdF8fekWDvq8JU9_UD0M8TpysH2skFueMx1bAGk7FPZZf-XY2fyYqAyEyFtIcTGERIAfiTOg4txHfSlxwLMiDTvMOenvi40AaW_Mk7WdQ',NULL,'2020-01-09 06:52:10.074000','2020-01-09 06:52:10.074000',5,'Courtney Wetmore','https://lh6.googleusercontent.com/-Rmno8xYQ4pA/AAAAAAAAAAI/AAAAAAAAAAA/-_aDOr7NTAU/c-rp-mo-br100/photo.jpg','3272657195432704501',9452),('AIe9_BGhYIk2KhOdF8fekWDvq8JU92ioUcL2JVGMTuEmhjTYnbkLlM_-LNVG2ubVNGBbog6s-DsIqfugW3YpDGZkWHCd67Z47JCF2y_eWcPDlFuHcPFUKKo','I had the friendliest, fasted service! Staff was informative, kept me calm during a stressful test and were so friendly! Nydia, Cody, Sam, and JD were awesome! Highly recommend this place for all emergency care needs.','2020-07-28 21:27:25.573000','2020-07-28 21:27:25.573000',5,'Nicole N','https://lh5.googleusercontent.com/-aMOB_G8Mz8o/AAAAAAAAAAI/AAAAAAAAAAA/iKH41SEd4MI/c-rp-mo-br100/photo.jpg','2077061009497551125',22782),('AIe9_BGhYIk2KhOdF8fekWDvq8JU92lud2uUulljwXn1QiXNlJ0FDwVPlMJVL4VXxG_-4N4UukiRO2zAaUmi3NM_0Yu_OfQGM4k3wBlhXCfMJqKrcTsSF8o','Quick and friendly! I couldn\'t ask for a better experience!','2019-06-20 19:58:25.859000','2019-06-20 19:58:25.859000',5,'Joey Escalante','https://lh6.googleusercontent.com/-lyjdZcRsXkY/AAAAAAAAAAI/AAAAAAAAAAA/LCV6ibyyfLM/c-rp-mo-br100/photo.jpg','6521947413723274945',8226),('AIe9_BGhYIk2KhOdF8fekWDvq8JU9kZUshuKnge4OrXXbQpbAgFI33uBOQEOiBOgA_oUNWb8GDYEoXmAkKY9EPl3C97iVNV6CHJKMvuFppe_0HWn3Na0_bU','Amazing, quick service! DR. Boester, Meredith, Hayleigh, Jasmine, Brian and Brandon were all wonderful. Thank you! (TC Jester location)','2018-08-17 07:44:48.134000','2018-08-17 07:44:48.134000',5,'Dashan Brewton','https://lh5.googleusercontent.com/-RKsnvBGNkQw/AAAAAAAAAAI/AAAAAAAAAAA/iqTLxkWn5B0/c-rp-mo-br100/photo.jpg','3511292162159714121',7614),('AIe9_BGhYIk2KhOdF8fekWDvq8JU9M1Grv0KmESQdtOclB-JZ0AGR9_VzZlyfSsfoQTX43CHXG9xisCZWvHdHSYvyOAbvhOOCiVdbxhk7coZ6ar0gMyL8vM','Everyone was very friendly and helpful.\n Kim- Regis.\nLucas-RN\nEric-RT','2020-02-28 23:33:56.075000','2020-02-28 23:33:56.075000',5,'Dawson Wooten','https://lh6.googleusercontent.com/-BwzlYZ4PoMQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucktMxQPnhjapsCtxvqPaNQMOmkaHA/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14312),('AIe9_BGhYIk2KhOdF8fekWDvq8JU9qCA1z_1ZDdQT8Xdo9pHn2Se15B2fnhbDorUm3rVXYjdaV-9NsdKxyp-PQ36uB7LnE5XjAS8LeJ1o-KwXRtzEiMkr_E','I overall loved this facility. I went there cause my little one was in an accident. There was no wait and they took him straight in. The doctor came in shortly. The facility was clean and excellent staff. I recommend this to any one with an ememergency. -Chase Newton','2015-07-03 15:20:39.589000','2015-07-03 15:20:39.589000',5,'Chrissy Newton','https://lh3.googleusercontent.com/-1wDhuboDTjQ/AAAAAAAAAAI/AAAAAAAAAAA/P6d3B60UUGI/c-rp-mo-br100/photo.jpg','8679688254631342173',8928),('AIe9_BGhYIk2KhOdF8fekWDvq8JU9QWHiDCV9Mawta1Ni1Heu0DYosLQ1idmATVGhyaw8p-YvtoleQNbjkSMT0CiDxirO4-Fs0t7zZmJzz3SJy0EDK3tMX8','Very clean and very nice! Everyone was very helpful from the very beginning. Luke our nurse was very professional and very kind to my daughter. Will definitely be back!','2020-02-03 16:52:57.109000','2020-02-03 16:52:57.109000',5,'NIckita James','https://lh4.googleusercontent.com/-3yRy6kDRWAA/AAAAAAAAAAI/AAAAAAAAAAA/OxZ9PR0daaw/c-rp-mo-br100/photo.jpg','3272657195432704501',14375),('AIe9_BGhYIk2KhOdF8fekWDvq8JU9QwMRFZcCZyFRsVVKuxfl3BtLtVhJ_dDNn2kLMPWuDYBHqQLHRWSKkgyFXN6v4SNAa1BSuK7jd8jAxFwGprgkq4D8LY','This is the best ER. There was No wait time and very caring staff! I wouldn’t go anywhere else. Elizabeth is very welcoming and attended us as soon as we got here.They were all great with my husband since he was the one getting treated. Best team ever! The Dr was quick and didn’t waste any time, yet was sure to ask all the questions needed to be asked. Would totally recommend to everyone. Thank y’all so much!','2020-01-27 05:57:25.467000','2020-01-27 05:57:25.467000',5,'Vanessa Martinez','https://lh6.googleusercontent.com/-g2lAealZCGg/AAAAAAAAAAI/AAAAAAAAAAA/SPLsubp_znE/c-rp-mo-br100/photo.jpg','3511292162159714121',14441),('AIe9_BGhYIk2KhOdF8fekWDvq8JU9USUgMOPvqYCvbCE2B7a8wMdR2jWvrKhVcCIrJgoLAoJjFw5Bb-oQrDcnLmbE0MejkHANSsr3runvbexCACX4YK58I8','Melissa was very accommodating! Robert H was very helpful with showing us tricks to administer medication to a toddler. And Dr. Iheme is amazing!','2019-11-16 02:58:11.161000','2019-11-16 02:58:11.161000',5,'Jalisa Randle','https://lh4.googleusercontent.com/-5CClQPrIlpI/AAAAAAAAAAI/AAAAAAAAAAA/kLZ58opkTGc/c-rp-mo-br100/photo.jpg','16389487648212004696',2687),('AIe9_BGhYIk2KhOdF8fekWDvq8JUa31Ewwqb9N1oXu6rmoM6-jycI4qnsuOBcJzEgGhqjB5q_hMUwsL47gJP-K9P6NlZUs3CB8rbshTirU-PTTZVeh3o2n0','Love this place. The doctors and staff are all so sweet and caring. This is my go to spot whenever i\'m feeling sick.','2019-11-20 21:56:13.359000','2019-11-20 21:56:13.359000',5,'Jackeline cb','https://lh4.googleusercontent.com/-sztPujlCBVA/AAAAAAAAAAI/AAAAAAAAAAA/7dtZKCC92Yg/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',376),('AIe9_BGhYIk2KhOdF8fekWDvq8JUA5m2N5AKVto17xGFZl66E5ohM0DWRrWsHuUB79f8wEtByDWxE9ZCdmUHsVGAR6wIXsMs11CfJBuIoINKATANFDncO1w','I\'m very happy and satisfied with Signature Care. Before I agreed to treatment they gave me the total it would cost. That\'s the policy and it\'s far different than most 24 hour emergency places\n A recent visit to Seton ER taught me they dont know how much you\'ll be charged, nor will you, until you get the bills in the mail. In my case the total cost payable to Seton was outrageous and unfair. Its quite the opposite at SignatureCare.\n The quality of the care I received starting with the gentleman at the front desk, two great nurses, and Clarke Goodman, MD was outstanding and the cost was very reasonable and fair.\nMy thanks and appreciateion to everyone at SignatureCare Slaughter Lane','2018-09-27 20:41:30.720000','2018-09-27 20:41:30.720000',5,'Rick Greif','https://lh5.googleusercontent.com/-IB_9mnytmqw/AAAAAAAAAAI/AAAAAAAAAAA/q8KT9dOpWLk/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4426),('AIe9_BGhYIk2KhOdF8fekWDvq8JUa5ysAv_6AEkbU43y6VNnxFUf8xDrH4ylBKsVfEWXdMfahKaNULoB5wRhZeVIYa7dLjuiZ9I6m88Yjd4erlehHOzfUB4','I’ve been here a few times for COVID testing, staff is always polite and helpful. This most recent experience I had Nydia, Cody, and John, all three were great. Nydia is as gentle as can be when getting swabbed.','2020-08-18 19:53:19.318000','2020-08-18 19:53:19.318000',5,'Robert Ace','https://lh4.googleusercontent.com/-o7P-0q7eR_g/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnjHJsQNSgqhjavgfhUlnGpUtfipw/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUaBfeYo720E8GHN4MfUNCnZZTzD6TyML_SlSNqpyXVFSw2Bl1jKzgPZMOO4vFzC2XboCVzzVafGUrbVleGMeOSAT9dJI','Loved this place, my daughter was treated fast and everyone was so nice, will use this as our new urgent care!','2019-11-12 22:10:48.180000','2019-11-12 22:10:48.180000',5,'Patrick Trumpfheller','https://lh6.googleusercontent.com/-j7_-AOagdzE/AAAAAAAAAAI/AAAAAAAAAAA/5nuKODBa80U/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',6014),('AIe9_BGhYIk2KhOdF8fekWDvq8JUAC2MLxuf2zTAqDqJ98gz70ZKE0arBVR58y_ESXRptM6f0ps-7en-OVFXuQXtL0dYoDv82kV1_l0z99nFHBlwHxfJV1Y','Beautiful and very clean facility. Staff was attentive and helpful. Great experience overall!','2017-06-07 13:21:09.235000','2017-06-07 13:21:09.235000',5,'Ryan Spradlin','https://lh4.googleusercontent.com/-GCBO1u3SINk/AAAAAAAAAAI/AAAAAAAAAAA/08Hgn1t8VzE/c-rp-mo-br100/photo.jpg','8918455867446117794',9397),('AIe9_BGhYIk2KhOdF8fekWDvq8JUAchNXCcdYDvEhqXF6-IbPMdAOc2rZHC4csHKYDQIW8am4IXiMDA5BH6iVwWiqUEioeJQnrnbKyRNFzdpHna79B9CtbA','Service was exceptional, friendly, quick and overall against the unpleasant circumstances of being ill and having to visit a walk in clinic. I was positively surprised with the entire staff and when I shared with my colleague, he shared a recent experience that he raved about. Hard to believe that we were talking about a walk in medical clinic but it\'s true. Top notch professionals.','2019-12-04 15:10:02.024000','2019-12-04 15:10:02.024000',5,'Michael Insalaco','https://lh3.googleusercontent.com/-Zuv7E5Ei4u8/AAAAAAAAAAI/AAAAAAAAAAA/abfoIwKqypI/c-rp-mo-br100/photo.jpg','3511292162159714121',7136),('AIe9_BGhYIk2KhOdF8fekWDvq8JUACjFtqHpsDZaXXXENBTXlGRnODs3RRXx4QUzJ8j1V4ZwLiwvgfRZIuKqmW189Pw0jZDWGXRFvYiIN6P-psQ-KD4cIMA',NULL,'2018-08-02 19:55:56.502000','2018-08-02 19:55:56.502000',5,'Rupa Masurkar-Pednekar','https://lh3.googleusercontent.com/-2hakDIn2W_U/AAAAAAAAAAI/AAAAAAAAAAA/AZijAi3Qn7k/c-rp-mo-br100/photo.jpg','3511292162159714121',7673),('AIe9_BGhYIk2KhOdF8fekWDvq8JUADteYGy4DQRs1nJzEor6TJP2kTlZ8XnjL_0J1xfwrJ97xAhVi9C18jIaP9_prLZ9dkrzqZzygzw_SQa3jaH6SwPzjn0',NULL,'2019-06-08 05:24:02.765000','2019-06-08 05:24:02.765000',5,'Shannon Hinshaw','https://lh5.googleusercontent.com/-ah848M25J8A/AAAAAAAAAAI/AAAAAAAAAAA/31DMJmdY_D8/c-rp-mo-br100/photo.jpg','16891069708558046635',4256),('AIe9_BGhYIk2KhOdF8fekWDvq8JUAEXJSolwfZPHH0LF_Gd8iwc76kMb9kx1xw3lENF2fXjPQ9TkzLoNuEG_JuqTC8vBQFFXOlVHdl-h1sOvC3E_eX6jabs','The Doctor and the Nursing staff were amazing and provided excellent care. Thank you all for your kindness and care.','2019-08-30 17:45:57.631000','2019-08-30 17:45:57.631000',5,'Andrew Millward-spence','https://lh5.googleusercontent.com/-7nAQTR1-muE/AAAAAAAAAAI/AAAAAAAAAAA/JS44znBdEPU/c-rp-mo-br100/photo.jpg','14567670160750071148',1252),('AIe9_BGhYIk2KhOdF8fekWDvq8JUafd4rObH26wMqd79m9x08wcr0Ch2nX7J6gqXSliUCX0I2JBccAg2DHJ8dOEd5dbs6csZ22QU34xavC7hyhc8lREcshM',NULL,'2019-11-24 23:42:49.973000','2019-11-24 23:42:49.973000',4,'mahesh kambarrajan','https://lh5.googleusercontent.com/-Z0qSd9nVmUU/AAAAAAAAAAI/AAAAAAAAAAA/A_xz_5pmUxA/c-rp-mo-br100/photo.jpg','17898197009688164559',5404),('AIe9_BGhYIk2KhOdF8fekWDvq8JUagKfv69F1THWW1F_fF0NR6QLihK_qnoGUhIOUPAhv1fFGpJiOs6YdX_0dvQRNkaVB-aBcOEjq5OhxQ7rxm-3iJwiJog','Fast service and friendly staff. I\'ve been coming here for emergencies for years and plan to keep doing so!','2019-06-16 18:51:51.714000','2019-06-16 18:51:51.714000',5,'Tori Elmore','https://lh5.googleusercontent.com/-iwy5F79gjiw/AAAAAAAAAAI/AAAAAAAAAAA/6OHt17TBEnI/c-rp-mo-br100/photo.jpg','14567670160750071148',1304),('AIe9_BGhYIk2KhOdF8fekWDvq8JUAhClWJSUnIAN_USDsw_zZkXE9OPXcWe_1TnF2VMpmJ1VXkooHobEVdPE4rccXqfyyewUefUbzQTGCR85pVL0DUX8jE8','Cody nydia and Sam were very nice and made it pleasant enough. Minus the virus stuff! Would recommend','2020-07-26 16:28:02.794000','2020-07-26 16:28:02.794000',5,'Liza Sandoval','https://lh6.googleusercontent.com/-Tr9SzCY_fCQ/AAAAAAAAAAI/AAAAAAAAAAA/Ail58iMorMc/c-rp-mo-br100/photo.jpg','2077061009497551125',22831),('AIe9_BGhYIk2KhOdF8fekWDvq8JUajGX4tkEBPmeAgFpUNu_pYfkK_JjK1IITuZujeIvhE4TRJ0uRl4OoQlSsRU7sCWKORV3Qehlqqd7uvW9U0-A1h7xpsY','In and out quickly. Earl H. Greeted us with a smile and checked us in quickly. Adam P. Took us back and got all the needed information for the doctor. Thanks for being so caring and get us in and out quickly with a positive diagnosis.','2019-09-23 02:14:21.297000','2019-09-23 02:14:21.297000',5,'Joseph Zahn','https://lh4.googleusercontent.com/-O3kV47jmBN4/AAAAAAAAAAI/AAAAAAAAAAA/X753po4ANGk/c-rp-mo-br100/photo.jpg','16891069708558046635',4196),('AIe9_BGhYIk2KhOdF8fekWDvq8JUak9jfCXbDhtxQzIauJ0inXOzCT5vqFi_gSLlFyEP3Bffi4nl_6LjqacRCBq6sJUIYwgCShCMuY3LRcWVEQKTk2wgw48',NULL,'2019-03-14 21:00:46.773000','2019-03-14 21:00:46.773000',5,'Elizabeth HenniganKing','https://lh4.googleusercontent.com/-5B3fQjaWVPw/AAAAAAAAAAI/AAAAAAAAAAA/VFXdFnJZQrw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUam0sX15cNlg4b_oK0etWXqxsiFTH1PSuDjhgQeT3RfPIOS7_4YNi2XOX7yxyF6--Y05zidTzNKiGVPXZSGuGhmKeKsM','Unbelievably amazingly ridiculously nice staff! Cannot recommend them enough. They\'ll get you taken care of','2019-01-22 17:56:51.535000','2019-01-22 17:56:51.535000',5,'Dustin Lee','https://lh5.googleusercontent.com/-Dm-Onx3OiSQ/AAAAAAAAAAI/AAAAAAAAAAA/se7z3u9NQtQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7460),('AIe9_BGhYIk2KhOdF8fekWDvq8JUamxV8-Ae_h_ICtlP2dntgdslfRiAn8G8g-ai6U2ncZqZxot5y8o2GnlFGrS5tUnqYIWCdLiHTzRKqzHFeHZqSBUhDHw',NULL,'2020-07-21 03:08:01.208000','2020-07-21 03:08:01.208000',5,'Kelaiah','https://lh4.googleusercontent.com/-0JvboU3C2Dg/AAAAAAAAAAI/AAAAAAAAAAA/OSd4vdy5q24/c-rp-mo-br100/photo.jpg','14748677429039074158',21652),('AIe9_BGhYIk2KhOdF8fekWDvq8JUAnXqXdZLxagx0SbSGtZ6BRkxmPosRUFUyz2R6PSh8dLsAhNj0MJMdvt_QyPguxyED9yPtoQJIqHRJVvmi3kOCdUkJVs','Quick and easy as well as not to pricey','2019-01-26 21:04:36.326000','2019-01-26 21:04:36.326000',5,'Carl Dulaney','https://lh4.googleusercontent.com/-ldmSzwdISWw/AAAAAAAAAAI/AAAAAAAAAAA/YgTZW_57EoY/c-rp-mo-br100/photo.jpg','17898197009688164559',5875),('AIe9_BGhYIk2KhOdF8fekWDvq8JUaoFlJ-SVwLkVTSHYaZG6Wizj9D6YiQiLuppHXOkV2y6-dYptGQbUB8yNTx_saqRckuEpXtCywoh-WYYALOX8bqA4gi4','I took my girlfriend here a while back and everyone was great, especially the receptionist Tory she was amazing.','2016-12-17 01:36:02.652000','2016-12-17 01:36:02.652000',5,'Cory Reutzel','https://lh3.googleusercontent.com/-XWN6qAW2NW0/AAAAAAAAAAI/AAAAAAAAAAA/LqKItTybKc8/c-rp-mo-br100/photo.jpg','3511292162159714121',7920),('AIe9_BGhYIk2KhOdF8fekWDvq8JUARgZ5Q_w8NhpXFNdXAMVxdkqqkM1lxTQWAmo0yS8wEsU625s_Yral00pAkpMQS39og39Qia4zMatDKZfoG9pjhK_tFg','They were fast and very sensitive to what I was dealing with. The facility was clean and staff was friendly.','2017-05-15 13:16:18.877000','2017-05-15 13:16:18.877000',5,'Trevina Bennett','https://lh3.googleusercontent.com/-ZuBuresrF70/AAAAAAAAAAI/AAAAAAAAAAA/dh9aNPO2OCA/c-rp-mo-br100/photo.jpg','8918455867446117794',9401),('AIe9_BGhYIk2KhOdF8fekWDvq8JUATEWZkZCyHaH9awrVOmvusTMi5DkNRdR31zUkA65eHjYHIu0OSjk6czaCEal3IsnLo6au5zllPMFxkl9x2R-ng-0Fxc','Excellent location with parking lot, great services, quick, attentive, very friendly professionals. Thank you!','2019-02-25 01:16:16.319000','2019-02-25 01:16:16.319000',5,'Edgar Sandler','https://lh3.googleusercontent.com/-juNRZo1QV2A/AAAAAAAAAAI/AAAAAAAAAAA/wQgoPgUdYCc/c-rp-mo-br100/photo.jpg','12541597562633926366',543),('AIe9_BGhYIk2KhOdF8fekWDvq8JUatGKLUtoZGossBiIVur_9bFOqUNfHyoYjx2mz3RR1b_bqVA7tBNInSv-UfX5CWuMCNRhUnzkTnWIBd_-OZHhZLVi2_w','Dr. Ding\nNurse: Blake\nRad Tech: Sonny\nER Tech: Yasmina\nRegistration: Maryann','2020-01-28 22:10:46.271000','2020-01-28 22:10:46.271000',5,'bego senosiain','https://lh3.googleusercontent.com/-5rBp5U9jWKQ/AAAAAAAAAAI/AAAAAAAAAAA/NTWBoPZ1JD8/c-rp-mo-br100/photo.jpg','8679688254631342173',14778),('AIe9_BGhYIk2KhOdF8fekWDvq8JUATxMFG4KH_ebEMG-2JvUDNQu17FXcqhwVdGCS4ypvCLzIsFM27JO_5YBw57IlPEX7d482CIUbuiRVemK5o9jnHR-bYk','This company is a front for an insurance fraud and racketeering scheme','2020-01-05 20:36:21.308000','2020-01-05 20:36:21.308000',1,'Anthony Baccari','https://lh5.googleusercontent.com/-PA5MPXC--_o/AAAAAAAAAAI/AAAAAAAAAAA/Y0UsX2IJaVI/c-rp-mo-br100/photo.jpg','16389487648212004696',2484),('AIe9_BGhYIk2KhOdF8fekWDvq8JUAx3Jm0AnPQQmtBXVRpDsbIg50bb2cBHf7J6jSWRGzWyI-KB_0dtoEe-8lfeClswLYQ_pdUF91-zVMv7ctOXfb2mArW8','I wanted to say thank you to Dr. Kenneth, Jerri, Dyveliz, Natalie the EMT, and Tori who did my x-rays. Y\'all were awesome and it was very sweet of you to send me a card with all your signatures. I\'ve never gone to a nicer, friendlier place with people who had amazing senses of humor than Signature Care. I was actually treated like a person! I love you guys, 10/10 will fracture my Fibula again.','2018-05-04 18:32:04.410000','2018-05-04 18:32:04.410000',5,'Patrick Darnell','https://lh5.googleusercontent.com/-z5B2x0DDsas/AAAAAAAAAAI/AAAAAAAAAAA/7Ljzexw4nvo/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3828),('AIe9_BGhYIk2KhOdF8fekWDvq8JUAYLWanSs1IANUJ7ESb7qfJtpoIjtsbRJpeMMmxFdQKmuCv-x_aWtAmefjbT3-OSQazTPNcM_lxisXWGUYS0mG-AU8HU','I had such so exceptional service there I\'m seriously trying to get a job there. Phenomenal service, friendly helpful staff, fantastic location and a clean welcoming atmosphere. They make you feel like you are the only patient there. I would definitely go back if I need medical attention. A big thank you to Cindy, Dr Patel, Nurse Kristina and Lauren you all kept me from panacking. Continue been great.','2018-09-22 02:47:39.915000','2018-09-22 02:47:39.915000',5,'ButterflyGyal B','https://lh4.googleusercontent.com/-hy33I5qhGKQ/AAAAAAAAAAI/AAAAAAAAAAA/exnQIzGUSzM/c-rp-mo-br100/photo.jpg','12541597562633926366',606),('AIe9_BGhYIk2KhOdF8fekWDvq8JUb0bm3LSRxPT5kxpD1unbUNuiWYHIUMQSYcQ3VjRlfliV6vijQROcKIAKVKcLfpJ5Tv8Tj7DD5PGaI_D-7qBS63y7mJY','Was received and treated in a timely manner. Great and friendly staff!','2019-05-13 16:40:15.744000','2019-05-13 16:40:15.744000',5,'Christian Roth','https://lh6.googleusercontent.com/-cXUlBDYD9IU/AAAAAAAAAAI/AAAAAAAAAAA/K-7wAcw2JOo/c-rp-mo-br100/photo.jpg','6521947413723274945',8282),('AIe9_BGhYIk2KhOdF8fekWDvq8JUb2yONkxqG-ccSeJc6EmgnCkKA7Xqocp1K_mcp6p4tC7lKGoPbY_hJP-z7ny_epyun8nOJQrOzuchlpiuQFc3hFyidmM','The help I recieved was fast and all the nurses and doctor were fantastic. Really nice people and they helped keep a light mood throughout a painful back sprain.','2019-06-15 08:39:54.981000','2019-06-15 08:39:54.981000',5,'Nick Daniel','https://lh4.googleusercontent.com/-TrBc86oJbA0/AAAAAAAAAAI/AAAAAAAAAAA/QXkrd400FzQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4251),('AIe9_BGhYIk2KhOdF8fekWDvq8JUb40CsB5nhvjXcT1wwGtuD1lZAH9QmaAVMVJgOYdXbYO-Nb5P_4XGaVzgrxNMaUNX9wZIVcWL6bSVp2mFjH5oqJTuQiU',NULL,'2019-06-11 19:44:27.603000','2019-06-11 19:44:27.603000',5,'Shari Augustine','https://lh4.googleusercontent.com/-Ze49kgKVnOw/AAAAAAAAAAI/AAAAAAAAAAA/oXJIs7h6eCY/c-rp-mo-br100/photo.jpg','12541597562633926366',498),('AIe9_BGhYIk2KhOdF8fekWDvq8JUB4q1fFdeQ7EOWsvGLGdywGHDFSHHkU8-98hCRc4pOg6J2OX0msnHHW6HkH5AhhZU_jas16Z1oSP1q542NE6Ndkc_5wg','My wife and I came to this location so to the fact she was in so much pain. The staff treated us as soon as we walked in the door broke down our payment options as we did not have insurance at the time. From the front desk to the nurses as well as the doctors. The staff was overwhelmingly helpfully. I recommend this location for many many reason but mostly the staff was friendly and the care I received.\n\nLove you guys','2019-04-22 05:37:19.005000','2019-04-22 05:37:19.005000',5,'Morrison Chukwumoabi','https://lh5.googleusercontent.com/-o6hfmtgpK3w/AAAAAAAAAAI/AAAAAAAAAAA/rZXYE3SGXfk/c-rp-mo-br100/photo.jpg','2694018788013845459',6170),('AIe9_BGhYIk2KhOdF8fekWDvq8JUb88XVdpXFrni3M2v0J1teVRaC6hYVK_eYpvEftXk_7RtPGc236Q47fptEfnMrT6Aw_i00Nny5BqQ3kprSI9EJHI21hw','Everyone here are caring to your needs. Fast at helping and getting what is needed in order to make you feel comfortable','2020-01-13 22:34:55.302000','2020-01-13 22:34:55.302000',5,'amie Crawford','https://lh3.googleusercontent.com/-BWJouYmK8bE/AAAAAAAAAAI/AAAAAAAAAAA/1uRKbYO-pWo/c-rp-mo-br100/photo.jpg','16590124370714063921',9759),('AIe9_BGhYIk2KhOdF8fekWDvq8JUbAT5NaMOtjCgk1-793txvYSvAnRFFMnkzuefOacwxKBGgZOul9JRcw7O_YmIHIA6FZDnfcyXNYh-0qKTRs8TkJxV_DA','Great place & Heather was great.','2020-08-07 14:53:19.653000','2020-08-07 14:53:19.653000',5,'Cooper Crowell','https://lh3.googleusercontent.com/a-/AOh14Gh8cct885UXxEYqrTfStSBinplgVdWhxo30W5do=c0x00000000-cc-rp','8626688543755174284',22230),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBbB3ip9tkjyP4rgG2Bf5oRo1V7CiSvODvMFv_A8fplqZ3xAQAr62TdrQgx-WUJK9d7YFsqWi-b8ni17SunQKqiUNpLo','This facility, the doctors, staff, nurses and technicians were incredible. They took such great care of me. I had to have my appendix removed and they set up the CT scan, started me on antibiotics, and made me as comfortable as possible until the ambulance arrived to take me on to Memorial City Hospital for surgery. I cannot thank the staff at Signature Care enough, they were absolutely amazing!! I highly recommend this facility to anyone and everyone!','2018-05-10 15:23:43.738000','2018-05-10 15:23:43.738000',5,'Courtney Procell','https://lh4.googleusercontent.com/-Vvoy5WfXwAE/AAAAAAAAAAI/AAAAAAAAAAA/5MaGPukKRu4/c-rp-mo-br100/photo.jpg','14567670160750071148',1625),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBLLw9cqNYJBO8sFk8mX3VNWeIhXpYH1uyp81HPT-wIdU-uXQBwYXIYOhfJZgVUS7jd2LC_Fg2RZuwxkVgNTiior1XWs','This place is great! They got me in and out with great care and very patient. Meredith and Tricia were very nice and Jordan as well all the staff provided extremely great care and all staff were professional.. I highly recommend them..','2020-03-04 20:56:22.326000','2020-03-04 20:56:22.326000',5,'Zoe Hale','https://lh3.googleusercontent.com/-GZUhVmvn3rQ/AAAAAAAAAAI/AAAAAAAAAAA/ftYz1SSwA1U/c-rp-mo-br100/photo.jpg','16389487648212004696',13732),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBlpEq6mQLCDbvZyIRUMeLJGv443D4JXkIZ_AXcyYysT48SqDiARDk_Zfkz9Kf4fooi-e95tkRFqdsD45Ep_5qEkEmlM','Vivienne N. Kimberly P. My experience was great the stag wad extremely nice','2019-12-02 17:01:00.371000','2019-12-02 17:01:00.371000',5,'Mrs Milo','https://lh3.googleusercontent.com/-R-5yb6e0P4A/AAAAAAAAAAI/AAAAAAAAAAA/S7FXAb-MU7k/c-rp-mo-br100/photo.jpg','14567670160750071148',1187),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBn9kaFpTxX-jtP4Nj0m_zqGgFokdncS5h1N8V8sS7sBXEjwZ23mU4hoLOLjudMC1H2_zDGh3T70nudur4sOEU1Jica0','Great experience, friendly staff/nurses, knowledgeable and attentive doctor (I saw Dr. Miller and Nurse Tina provided a lot of assistance) oh + snacks and warm blankets!','2017-12-21 21:50:51.239000','2017-12-21 21:50:51.239000',5,'Lenzi Causey','https://lh3.googleusercontent.com/-3O5fE_kb-oI/AAAAAAAAAAI/AAAAAAAAAAA/1q5mTDtSwhc/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1705),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBNeB7M1VAFpwX34C9SV-J2uYhGDPbB36PPVVTgScDWqJDVf_IzgFHCLtPmufgxElvV8Fdl2rprtx3NcB6G8FVA-U3cw','Kendra, Jacob, and Dr. Vakey were all amazing. I was treated with the utmost respect and kindness, I was taken care of and treated promptly, and I was referred to a physical therapist for continued care. Overall, this was the best clinic visit I’ve ever had, and I’m very grateful!','2020-02-15 23:44:19.388000','2020-02-15 23:44:19.388000',5,'Kristen Debrow','https://lh6.googleusercontent.com/-yC4YAh-y5Dw/AAAAAAAAAAI/AAAAAAAAAAA/3ZVN2oSghOk/c-rp-mo-br100/photo.jpg','16590124370714063921',13851),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBO3jDnvs5JiHuazL15gPvrWz7SRk7SxE98xtTrM0xiKEBHDTacidLmbjfKQLEpCUOM5z7RoKTAaV80roMHfMtcAjXII','This place is phenominal. If you need the ER, go here. This is the best ER expirience ive ever had.','2017-06-16 15:11:11.532000','2017-06-16 15:11:11.532000',5,'Danielle Cooper','https://lh6.googleusercontent.com/-nzAG7kKxmIw/AAAAAAAAAAI/AAAAAAAAAAA/vAjyTJn_dN4/c-rp-mo-br100/photo.jpg','16891069708558046635',4552),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBOdUI1ptNs47IOOTnJnQTTwSo1YPe-fKXSTApQFGhC4hub1YQjfiCyRZDT2KQ2DkZOiWWlbEuk-8-4bFhOrhIqjJWiI','Excellent experience and very friendly','2019-04-22 01:51:21.840000','2019-04-22 01:51:21.840000',5,'Stephanie Rodriguez','https://lh5.googleusercontent.com/-1feCgZu9j-Q/AAAAAAAAAAI/AAAAAAAAAAA/L-r3kDyQrms/c-rp-mo-br100/photo.jpg','17898197009688164559',5766),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBqOiKc4j5TvCbkeq_nrCBgguxmmoyrPx5ck8S_FQ9nSABIaz2TSOPbT1b5eHsmaQKpmp75TFgw5ghr0PGhavsQhpXrI','Clean facility and friendly and helpful staff.','2020-08-07 22:45:04.434000','2020-08-07 22:45:04.434000',4,'Ally Allison','https://lh3.googleusercontent.com/a-/AOh14GjntcV5FiMKlaa990qZosMgWKhHdVnL79AwTJFt6g=c0x00000000-cc-rp','14904078213800803294',21915),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBqwCZYrQCuoHFTCRvlN5ECCOQszOzwmfR5jEeHO1bFsjRVenzr1qHmGSRHmFtAx_IzD3ZRuuY22Yop5T7S4X4bM8kpE','My wife and i came in to this facility to check it out and get my wife some help with her appendicitis. The staff was welcoming and prompt on getting my wife help. Once they took over we were at ease. They treated her pain, scheduled in for surgery, and got us a ride to the hospital. not to mention took care of me with snacks and refreshments for my stay at the hospital (yes, they loaded me up with goodies to ensure i had snacks while i waited at the OTHER hospital). There was a slight issue with billing, but after talking to Tray at the billing department everything was figured out. Excellent facility and Excellent staff!','2017-01-10 20:07:08.657000','2017-01-10 20:07:08.657000',5,'Christopher Corl','https://lh6.googleusercontent.com/-Z0NcpkX2XWg/AAAAAAAAAAI/AAAAAAAAAAA/bsVYqtcT8As/c-rp-mo-br100/photo.jpg','3511292162159714121',7905),('AIe9_BGhYIk2KhOdF8fekWDvq8JUbTWg8l04g0v2uQKD2l0T8hVKFowJ6SoJUpQ8rDoj3sDOmYHYtCpfc1uDTeLIrCIYJ3CMS-2_JXV76DZESmJfzim6uyk','The staff was friendly but the doctor that saw us doesn\'t seem to know what he\'s talking about considering he assured my friend that he was 97% sure she had a life changing disease when she 100% did not. Pretty low quality physician.','2019-01-15 01:36:55.526000','2019-01-15 01:36:55.526000',1,'Kellie Heusi','https://lh6.googleusercontent.com/-p6f1A_DWY88/AAAAAAAAAAI/AAAAAAAAAAA/hPCWYXbyRNE/c-rp-mo-br100/photo.jpg','14904078213800803294',2182),('AIe9_BGhYIk2KhOdF8fekWDvq8JUbVbGkkbokJ7iABFUBJ3NHXVwlygUw6LYaP9kQfgwYFI5nAjKA18Y_HBPTB_RNDDiH3-FfEzfYDPg_BIeRr-7yxHeZMA','Theresa, Sadie, Dr. Miller, Ben, Maria, Sidonie are such a great team! Very thankful for their service and for their care and attention for my child.','2019-07-27 02:00:31.498000','2019-07-27 02:00:31.498000',5,'Gladys Olivas','https://lh3.googleusercontent.com/-kEkZvJxDIIM/AAAAAAAAAAI/AAAAAAAAAAA/Z6ZgOmMfsls/c-rp-mo-br100/photo.jpg','6521947413723274945',8178),('AIe9_BGhYIk2KhOdF8fekWDvq8JUbWHXTpHuH0AD3TqAS-rRuwLiSutX1sk-1XaHHxQof9IBpgH8lVh-naUriUWKWV7A21Fl32YpQhrfSfNSzkjtLHhPu0Y','Signature Care - Mission Bend/Sugar Land is my very first go to spot, outside of my regular PCP. The staff here is absolutely amazing. Always kind, always attendative, always professional. I had quite a heart scare which I needed to have a series of test ran. I was there at the facility for over 12hrs and was just as comfortable as being at home in my own bed. The entire time I was well-informed of what to expect, what was next and results from all the tests as soon as they were available. Upon arrival, the check-in process was literally minutes, before being called to the back for observation & treatment. I was welcomed with snacks, a robe, a cute toiletry bag, socks and a menu to order breakfast & lunch. I left much calmer then when I arrived and feeling much better. Thank you Signature Care, Dr. Golla, Do, Pradeep and your amazing nursing staff.','2019-07-12 00:56:45.325000','2019-07-12 00:56:45.325000',5,'Bridgette M. Farris','https://lh5.googleusercontent.com/-6QKM22Gz7J0/AAAAAAAAAAI/AAAAAAAAAAA/pJPz626IyIM/c-rp-mo-br100/photo.jpg','17394740196501090048',4632),('AIe9_BGhYIk2KhOdF8fekWDvq8JUbWIO9plZyYKB9Z0AwQiMSw97fiQkNygJZEHxSSPbP0-nsWhHmfhkhnRaSywXXwuu8lfW6gAah1DKDqr3VdMOrXQj9Xc','Staff, facility and convenience all exceptional! The communication from front desk to discharge very reassuring. \n\nThe physicians are attentive and on-point with diagnosis and treatment. I LOVE the follow-up call! Jocelyn makes you feel at ease the minute you walk through the door.','2019-02-01 14:56:42.717000','2019-02-01 14:56:42.717000',5,'Cornelia Carey','https://lh4.googleusercontent.com/-MWHVM4h53No/AAAAAAAAAAI/AAAAAAAAAAA/gPdxdcmNP0M/c-rp-mo-br100/photo.jpg','14567670160750071148',1397),('AIe9_BGhYIk2KhOdF8fekWDvq8JUBy6NAbxJBTfDYr39Ya7Y57bhQQJw48X5Zm1Alr9m71rxBKDyI9NJ_WNghwD1NNZGoaK2Vq8LOMcselHTcsS3kFP_CWg','My tech worker was Becca and Lauren’s at registration both were very helpful and made for a quick visit to take care of a cut. Would definitely recommend!','2019-09-01 19:43:18.297000','2019-09-01 19:43:18.297000',5,'Austen Kaul','https://lh4.googleusercontent.com/-SoxR66yDFXw/AAAAAAAAAAI/AAAAAAAAAAA/NwjAAgJkipU/c-rp-mo-br100/photo.jpg','16590124370714063921',3220),('AIe9_BGhYIk2KhOdF8fekWDvq8JUcATWh38-8ahwCzoJkslYGyCLrbC9vjEKn4wEtQi2XcR9Uqwb2eZIrCYh1gjbnFE4klz_ec52I9pXkPkPx8gXL8M1q3c','They were all very nice and very helpful','2019-01-13 04:53:39.553000','2019-01-13 04:53:39.553000',5,'Jennifer Ximenez','https://lh5.googleusercontent.com/-ZHFJf1brIKU/AAAAAAAAAAI/AAAAAAAAAAA/c8SFij3cbUs/c-rp-mo-br100/photo.jpg','14567670160750071148',1419),('AIe9_BGhYIk2KhOdF8fekWDvq8JUCBV5_jk_cQMCwhPGRWAddC9X-35IkrVWDAbCzTjTDQS1WSEDMlc7cqGlaso2FCmFL6wrav_nKnGvcKlaI_vNuokwAxQ',NULL,'2019-09-28 01:50:53.080000','2019-09-28 01:50:53.080000',5,'Keith Muldrew','https://lh3.googleusercontent.com/-P6erkjNKNpU/AAAAAAAAAAI/AAAAAAAAAAA/yMBc_Z8np1Q/c-rp-mo-br100/photo.jpg','13486358490203335051',808),('AIe9_BGhYIk2KhOdF8fekWDvq8JUcdm1VYLFaErYRoJDnIEquTYRjRvIx0okIxxUfwy0NF3DQQRJf9N7PsuXInDCFLGRm9kR6c36vkESDeEXxoFWeJnNtPA','The Staff and Doctors, including Dr. Vaahenes, Nurse Racheal, Tech Jessica, Tech Matee and Miss Ashley were very professional, knowledgeable and polite. They provided outstanding care. Highly recommended!','2019-07-08 17:15:03.688000','2019-07-08 17:15:03.688000',5,'Amir Halai','https://lh3.googleusercontent.com/-8GB4iVYnvX8/AAAAAAAAAAI/AAAAAAAAAAA/oEUwkf2EpvY/c-rp-mo-br100/photo.jpg','17898197009688164559',5656),('AIe9_BGhYIk2KhOdF8fekWDvq8JUcjbvPbyEaSVEJ9VRrLxF6TUbYTRLCpiVY7PKMrX2V5MxZGh2V-wg6lvMIezCWv4OWUokrfm43XmErUZA8F1mMq9YkHk','I came here for severe pain and a unknown condition. I was barely able to walk from the pain, but Dr.Nguyen and his team (Alvean A, Kelly L,Patricia C, and Jordan N) all treated me with such care and in a timely manager. They were able to diagnose the problem immediately and thanks to their positive attitude they helped me stay calm. Best of all I was able to walk out pain free! I can’t thank them enough!','2019-12-20 18:11:09.525000','2019-12-20 18:11:09.525000',5,'mellisa Tejada','https://lh5.googleusercontent.com/-rkNWyxtPL-U/AAAAAAAAAAI/AAAAAAAAAAA/1y8uuoz8Nfg/c-rp-mo-br100/photo.jpg','16389487648212004696',2525),('AIe9_BGhYIk2KhOdF8fekWDvq8JUclo3S6-KZCXQ50kvPvrL80pomoAHLoFlTaL9FocjpYnxXhTXddbF4NYItrRowJh0tw3a_Hd8zTRfXg7r5a67sNCThlY',NULL,'2020-01-31 21:19:39.924000','2020-01-31 21:19:39.924000',5,'Richard Garrett','https://lh4.googleusercontent.com/-erR6U6Sxvv0/AAAAAAAAAAI/AAAAAAAAAAA/zxeeYrJoIxY/c-rp-mo-br100/photo.jpg','14567670160750071148',13571),('AIe9_BGhYIk2KhOdF8fekWDvq8JUCn-7uAe4DAUlu9Xc4Z-w-grs9Qgbsk49H2WF-5_PPp6oML2MAciadHzNBpLaF87aX7scmtewsNwbk-yCMg6TrjaGTPo','Beware. When a doctor is unwilling to provide requested treatment and won’t explain why not, or is upset when you ask that they explain what they are doing and why. It means they don’t even know. \n\nCame in with concerns of sinusitis preheating to meningitis. Requested steroid shot and antibiotic, as symptoms have persisted for 7+ day. Was given an IV is benedryl and anti nausea. Then a CT scan —- one just running up the bill. This took over one hour. The most severe headache i have ever had. And they did nothing. I sat with the iv needle unattached to anything in my arm for ~10min, no explanation as to why. doctor zheng (so?) And the obese black nurse who never provided her name (but i will find out and follow up with) were both unbelievably condescending and dismissive... presumably because I actually have a medical background and speak as such. Both should find a different field to work in, somewhere without patient care or human interaction.\n\nWill be filing complaint with state board tomorrow, trust me.','2019-08-02 05:25:34.773000','2019-08-02 05:25:34.773000',1,'Tuesde Cavil','https://lh6.googleusercontent.com/-1F8EsJuDExI/AAAAAAAAAAI/AAAAAAAAAAA/-8SzIELoKfQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9081),('AIe9_BGhYIk2KhOdF8fekWDvq8JUCYVq-xF5bLYDEgO8HlGB2oM2ncBfZN9NnoBHzQZiidcnM2QTOgoX_4ulrMj95m7_z2KQChfhBBmvMhSvCjMEKpiXVKE',NULL,'2019-07-02 19:39:32.496000','2019-07-02 19:39:32.496000',5,'Leo Lozano','https://lh6.googleusercontent.com/-hNXUFU59wMg/AAAAAAAAAAI/AAAAAAAAAAA/nLXO5eLgvR4/c-rp-mo-br100/photo.jpg','6521947413723274945',8215),('AIe9_BGhYIk2KhOdF8fekWDvq8JUD_tyR7eUxB6SXrRp72-cv0ZYiwoevW-uKYrSnd6Ol_BMFx-FRdNe518GQ7gSDLo6qsZKt9qT_PJwRcYhiDWWmOPgze8','Awesome place!! Dr. Wang and his staff are awesome!! Very quick and caring!','2019-05-21 23:39:58.352000','2019-05-21 23:39:58.352000',5,'Dori Clapp','https://lh4.googleusercontent.com/-T_NgE2Rh8tg/AAAAAAAAAAI/AAAAAAAAAAA/SshX77xINaM/c-rp-mo-br100/photo.jpg','6521947413723274945',8264),('AIe9_BGhYIk2KhOdF8fekWDvq8JUd-q-XpNbQ8y-QiyjEDbbM4UVmI4DdVxRS3sjMi3ZHEWS7vIy_qcqTHEvHcgm5a0u-TalNqC3Vu5R40cbaenI6HRv064','Never had better care anywhere! Very thoughtful, understanding, and everyone treats you as you are the only patient in the location (even if they are busy).','2019-02-06 01:19:56.720000','2019-02-06 01:19:56.720000',5,'Eric Alfuth','https://lh5.googleusercontent.com/-q38cfhYls84/AAAAAAAAAAI/AAAAAAAAAAA/xQaoJjD6nj8/c-rp-mo-br100/photo.jpg','3511292162159714121',7409),('AIe9_BGhYIk2KhOdF8fekWDvq8JUD1DlAgogt98QbbMlPDp8Njz9c6uI83NbRf8Adz1hWaCohB_XGqSbSn6-oTzRQ0waGdXmT2NdPp1LGz5rlQqd4uJVz14','mm\n69\n69th nto oo','2018-12-07 18:09:59.301000','2018-12-07 18:09:59.301000',4,'Ereek Babs','https://lh4.googleusercontent.com/-jwu1U48Zt38/AAAAAAAAAAI/AAAAAAAAAAA/8rBhmoZzvP8/c-rp-mo-br100/photo.jpg','17394740196501090048',4755),('AIe9_BGhYIk2KhOdF8fekWDvq8JUd1IT6xDjJ9CB-hsjX7uMe1dKuVvLjEiuC3lANNvVdDv-RN8Ym8UYGwADDnmm7nI2ESvr2iX8j7KxCfYbZx1wE-kH-C4','Godlike','2019-07-06 18:42:26.436000','2019-07-06 18:42:26.436000',5,'Alex H.','https://lh5.googleusercontent.com/-VZbCF_P5bwk/AAAAAAAAAAI/AAAAAAAAAAA/qYAwbBJgF80/c-rp-mo-br100/photo.jpg','16590124370714063921',3314),('AIe9_BGhYIk2KhOdF8fekWDvq8JUd1TOCTmcv-yKJNVMR_EG56Go29I1BbBy0rrIF67tJwE8h4gTdiJZwoz8bMYKg9FB9-fMSLSZHu094keK103Zy9Zi_vM','The care I received was excellent. I had intermittent abdominal pain for several days and didn’t realize I was developing appendicitis. By the time I went to the ER, it had ruptured. The doctor and nursing staff were great to work quickly to get me transferred for surgery.','2018-08-30 14:14:33.355000','2018-08-30 14:14:33.355000',5,'Peggy McGuigan','https://lh4.googleusercontent.com/-KSfSBE0Iqko/AAAAAAAAAAI/AAAAAAAAAAA/EnjCfrz_yCk/c-rp-mo-br100/photo.jpg','14904078213800803294',2219),('AIe9_BGhYIk2KhOdF8fekWDvq8JUd7FW5Bh_aAABANyYZnDK23lhI3KWjTlmlT4rWI1m_hmh6iv7OvMnPsByNNJoTwhbWKHe6n0T3cPcQDOKGddhTZCJM88','Very helpful and attentive staff ! Ashely and Tiffany made the paperwork short and sweet ! And the doctor was able to get back to me quickly !','2019-03-26 19:15:47.572000','2019-03-26 19:15:47.572000',5,'Ashton Hool','https://lh3.googleusercontent.com/-Gf-1elxv_xc/AAAAAAAAAAI/AAAAAAAAAAA/ska-havYC7s/c-rp-mo-br100/photo.jpg','8626688543755174284',8518),('AIe9_BGhYIk2KhOdF8fekWDvq8JUDb_HBEXm6cPbiqpPH-i_ov9yQJ016WcyJqRGmaXJIFz6-gfiQpcXmqxJh5DtXED35PhyPbZHDM_1ck2zMMd-1LKliUQ','The staff, Lindsay and Monica, helped very much to make sure that everything went smoothly and efficiently.','2020-07-23 02:06:48.997000','2020-07-23 02:06:48.997000',5,'Faith Garza','https://lh3.googleusercontent.com/-6-zvAGyzTYQ/AAAAAAAAAAI/AAAAAAAAAAA/RXxS0Uj7-Us/c-rp-mo-br100/photo.jpg','16590124370714063921',22665),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdbGdydzsSiWlzSPL9I7Eb_nLGxDy7LVf3DIW9P5i2Ru8HbYOhpq1NVz5L9kCNY1HWpaC05zPZRy9x693x1N0bTPWFpA','I had a flawless experience at SignatureCare Mission Bend! There was almost no wait time and the staff is friendly and professional. I loved the clean facility and great care I received.','2017-05-13 18:03:07.605000','2017-05-13 18:03:07.605000',5,'Kay Williams','https://lh6.googleusercontent.com/-9sMAjvrq8Wk/AAAAAAAAAAI/AAAAAAAAAAA/PZ0vLP0m_dI/c-rp-mo-br100/photo.jpg','17394740196501090048',5055),('AIe9_BGhYIk2KhOdF8fekWDvq8JUDEKF3wmaHAmveOrNhiKCJg6oegd6EEOfDIuW-2r9Is_y93Q9inR-K6G3l4mWfgbU0ZuFaLzCaGd6uSkK3SFwOyNKqOw','I had an Awesome patient experience here at SignatureCare Emergency Center. When I first walked in the receptionist at the front Mercy was very pleasant and showed concern. My wait wasn\'t long. Charles and Blake had excellent team work. Gave me a warm blanket and I didn\'t ask for one. Dr. GARCIA checks everything of anything that can be wrong with you. The doctor went the extra mile to really seek into you and to find everything that could possibly be or needs to be treated or checked. The whole staff has great manners of the patient matters. They all were an experience you would want to come back to. They show that you matter and they care. Best emergency experience I\'ve ever had! I\'d advise everyone to come. The convenient part is that they are 24 hrs!!\'','2017-02-24 22:43:42.125000','2017-02-24 22:43:42.125000',5,'Rebeka C','https://lh6.googleusercontent.com/-aEwbqc3xIFc/AAAAAAAAAAI/AAAAAAAAAAA/YdofYZumuSg/c-rp-mo-br100/photo.jpg','14904078213800803294',2401),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdF5bhO5SvqQX-ZMcW0ohCbmScQINj6tcQrp3tMnfh4HD56QwC4w7bDEATvm7BrkQkysLQKg8s721rn8rWfpmQjOJDxs','Best medical care I have received in my life, very professional and extremely caring. This was the first time I felt relaxed while having incisions made, something that is definitely not a comfortable situation typically. All of the staff we encountered was wonderful, helpful, and caring. Everyone from Dee and Melissa at registration to nurses Gina and Laura, made our initial contact at the clinic welcoming and comfortable, constantly checking in with us to make sure all of our needs were taken care of. Dr. Faig was extremely friendly and courteous in his diagnosis and treatment, truly helping put me at ease in a stressful situation. Then the techs Jacque and Norma helped round out the wonderful crew of people who cared for me during my time here, addressing every question and concern with a smile. It is not often that you encounter people who have the ability to put you at ease and make you feel cared for when seeking medical treatment. I couldn\'t be happier that I chose to come to SignatureCare when I found myself in need of urgent medical care.','2019-01-22 20:36:02.398000','2019-01-22 20:36:02.398000',5,'Hanson McKinney','https://lh3.googleusercontent.com/-oCsPtjvLWx8/AAAAAAAAAAI/AAAAAAAAAAA/o4ZJbbJmxPY/c-rp-mo-br100/photo.jpg','3511292162159714121',7457),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdgR2eNufV-5E40CB5FwdjOxYoHpSvSj7y_HjjBz4dMIbUR9s32oQJMN9CHUIh8QY-6jDVJvTfyqR5NHwWVlZo4zQYPk','I love this place they took really good care of me and answered all my questions','2019-02-18 10:51:33.104000','2019-02-18 10:51:33.104000',5,'Sarah Reed','https://lh3.googleusercontent.com/-ZbMuyIlx4IQ/AAAAAAAAAAI/AAAAAAAAAAA/AML4ZXVdxts/c-rp-mo-br100/photo.jpg','8918455867446117794',9177),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdGVGZ-dLa5ELVyFKwIjagOxHux38hXQMMSZY58N96emEgcchPuSOjjHXxxUP1XhLELby5j0Ofl6gVOoAndvQDd6s5nw','I had to get a rapid COVID test due to my recent travels.Cody,Sam,Brenda,and Nydia made me feel comfortable during the entire process.it was super quick and easy.','2020-07-26 19:30:00.511000','2020-07-26 19:30:00.511000',5,'McKenna Thompson','https://lh4.googleusercontent.com/-qEAATQlBkBs/AAAAAAAAAAI/AAAAAAAAAAA/8HCvzq5CDac/c-rp-mo-br100/photo.jpg','2077061009497551125',22825),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdILH1iOfWRFFKewz7JD8jVlhH_0W-DDq5vD1AeIErMrzwnk3iNnCYJ0VIBjduKFk92N96VCzO9X5XMkFwFOkT5YXcaQ','COVID-19 TESTING. Extremely long wait times\n\nThe employees, physicians, and doctors are very nice and friendly but the wait times are not accurate.\n\nThey will tell you it shouldn’t take much more than an hour or two to get in to see the physician and doctor for the test. But if there is a line of any sort to get in, you should expect to wait a minimum of 4-5hrs. 6-7hours, if the line is long. \n(I came by today. Arrived around 8 am and waited 7 hours before being tested.)\nOnce it gets close to your place on the list you should expect at least another hour or two to get check in and then sit in the waiting room for 20-30mins.\nThe test itself won’t take long to administer. The physician will get you in and out within 10-15 mins. Then you will have to wait 30-45 mins for the results, as opposed to the 15min advertised time for results.\n\nAgain the people working here are extremely nice and helpful but be prepared to sit outside in a line for multiple hours before getting tested.','2020-06-14 21:04:39.609000','2020-06-14 21:04:39.609000',2,'Collin Mitchell','https://lh3.googleusercontent.com/a-/AOh14Gif-awybdRQWgtlqs4i8A7sVeKpB-07DfyiSofy=c0x00000000-cc-rp','16389487648212004696',21968),('AIe9_BGhYIk2KhOdF8fekWDvq8JUDMKkhM2zLdVvENcjjBPB4J4muxNYbuT2HeNUuuksoWJMQ6lomPAuEsUgHpwi4I-DXXIj-SgD-AgZ4ZDbRq9oTB1stjY','Staff were very helpful and nice, they took care of everything in timely fashion 👍🏽👍🏽👍🏽❤️.preethy was really sweet.','2017-02-08 18:19:25.588000','2017-02-08 18:19:25.588000',5,'Jasmine Burton','https://lh3.googleusercontent.com/-_T9nNHYHI1g/AAAAAAAAAAI/AAAAAAAAAAA/7VPHvuwxBD0/c-rp-mo-br100/photo.jpg','17394740196501090048',5117),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdmwR4PG1rLZcrxLiBWwRncTu1j4yDhIqVGihGVQmbLnk_Fkf4dXdl7NjZRiNdZJBEadHr2_HZnUf_WP4HgTIn757CII','I had to return today 03/01/20 and the staff was amazing front desk Samantha nurse Christine, the rad tech was great and patient. Tech Ricardo very nice and helpful, Dr Jaber was amazing and explained everything! I always feel we taken care of here! Thank you guys!!! \n\nAs always signature care is a place I highly recommend, they take great care of you, beginning to end! The receptionist Erica is amazing! She is great about getting you in right away, and Making you feel comfortable. No pressure to sign papers while you are in pain. Very calm and caring! The day staff and doctor has been amazing every step of the way, keeping me informed and making sure I\'m comfortable! Thank you signature care!','2020-03-02 02:15:08.723000','2020-03-02 02:15:08.723000',5,'Ms. crayton','https://lh4.googleusercontent.com/-lPT0iBfCJZs/AAAAAAAAAAI/AAAAAAAAAAA/-bCo3EQ4ijI/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',15143),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdR0GAHE5gS65F9TxPg9ybWnFuSSZsBLd-Pr8yXd0h0ft7PD6VbiJ0LxtInbbIjsHY9TJETnNXGxIwgA3SiUn8HCqEdE','3rd time there. Only place I’ll go. Best staff. Everyone there seems to really care. Highly highly recommend!','2019-05-26 13:20:45.145000','2019-05-26 13:20:45.145000',5,'James Kuzilla','https://lh4.googleusercontent.com/-cO_9HI82t9g/AAAAAAAAAAI/AAAAAAAAAAA/w0zM_GPmL2k/c-rp-mo-br100/photo.jpg','8918455867446117794',9139),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdSYl2pZnqOkEcUd1E8oJBn3KSeKlCdezDQxEbSaCFCWxYWRQ8pW6L20CEm2c28elWzSEIY9fWeyzO0MlgZXRTBuv14s','OUTSTANDING SERVICE! The staff made my 5 year old son\'s first visit to the ER a GREAT experience and accommodated his fears and anxiety with patience and extra TLC. Couldn\'t have asked for better service and not to mention IMMEDIATE attention to my son\'s injury. He was treated and seen within 5 minutes of our arrival. Very impressed.','2019-06-11 06:06:52.499000','2019-06-11 06:06:52.499000',5,'Dinah Lee','https://lh6.googleusercontent.com/-JkaYAU8ZKVs/AAAAAAAAAAI/AAAAAAAAAAA/itSaoh4Ll5g/c-rp-mo-br100/photo.jpg','8918455867446117794',9129),('AIe9_BGhYIk2KhOdF8fekWDvq8JUDUZ_IQP-PVqiitigWSns5A0G96Ff9YFiLu5urmOUxykucU1hxlRqAcUUKtEWZNb6JEbV1sUs4VNa3VaF187oVEOIYDU',NULL,'2019-02-25 20:24:33.605000','2019-02-25 20:24:33.605000',5,'Nahidu Sandoval','https://lh3.googleusercontent.com/-PVPdk-Xjtj8/AAAAAAAAAAI/AAAAAAAAAAA/4Fmk8gjdxlg/c-rp-mo-br100/photo.jpg','14904078213800803294',2165),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdvl3lxTNIOzwxhb6OqedwP_lMXZKFO1xRUPd4FT-yN13RoSx3edeNX_Tzu3mPnFQrZ3D8vVMgkexDdw8oKtK_0g7DMQ','Great experience.. Dr. Dang .. Nurse Alvean ... Mr. Marcus and Ms. Elida all made my visit very smooth.. thanks guys!','2019-09-10 16:21:13.659000','2019-09-10 16:21:13.659000',5,'Hey I','https://lh6.googleusercontent.com/-CN0yCuXUxU4/AAAAAAAAAAI/AAAAAAAAAAA/HHuqsHMkYIE/c-rp-mo-br100/photo.jpg','16389487648212004696',2931),('AIe9_BGhYIk2KhOdF8fekWDvq8JUdwrDgpIZgxY_pBOuzMSXsgdXvYKyPtcLvTfwoJxth8T_67NNpVUYzw4A1ifzUNJHL8CTYp8mqStpaaZ5bicfJKxKBZA',NULL,'2020-01-14 21:59:26.948000','2020-01-14 21:59:26.948000',5,'Bernie Garcia','https://lh6.googleusercontent.com/-qDsDAAGzEyc/AAAAAAAAAAI/AAAAAAAAAAA/L2QZZXXRDJw/c-rp-mo-br100/photo.jpg','17898197009688164559',9786),('AIe9_BGhYIk2KhOdF8fekWDvq8JUe1Nf8TrrGZzz37kx1rGUAYzVuoPIx2453AY0hjXxnllmV94FdyrOcuHToObbmEl_TjtzaB1GXN46jV2lChiCISWw53E','This is a perfect place for a emergency, no waiting line or list excellent service especially doctor harjai ,nurse ekaterine, kat and miss patricia they number one','2019-11-07 01:38:34.452000','2019-11-07 01:38:34.452000',5,'Sandra Rivera','https://lh6.googleusercontent.com/-ZlgY4UY7YVw/AAAAAAAAAAI/AAAAAAAAAAA/VxRrGRwDOdQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1201),('AIe9_BGhYIk2KhOdF8fekWDvq8JUE1wJ2oDiJ9k_yzTDYZjRJB3tTjfLfRy0s-SylUroY_Ye-ZkjCQsZZp1oTSHhrJBgaxyHTLWxZZthDeLN_qVpiGNTSI8',NULL,'2019-06-20 20:09:38.478000','2019-06-20 20:09:38.478000',5,'Robert Gonzalez','https://lh4.googleusercontent.com/-Dqco_21AO4c/AAAAAAAAAAI/AAAAAAAAAAA/I_171HiMA5Q/c-rp-mo-br100/photo.jpg','6521947413723274945',8225),('AIe9_BGhYIk2KhOdF8fekWDvq8JUE5_pCIXJjPDX1d9ALXUGk7BMsG9DgJL_iLi9_bi5ICzE_8SzJ2c-bh1MxPutT3RopZqp8BbWRcUtU6ElpAMNuig0JOg','This place is the best, they are always very thorough and will answer any questions you have. Thank you Lisa V. And Dr. Dewaal. I wish I could use them as my primary care.','2019-06-29 16:54:03.354000','2019-06-29 16:54:03.354000',5,'Jessica Rupe','https://lh4.googleusercontent.com/-GVWMoNRgZiQ/AAAAAAAAAAI/AAAAAAAAAAA/xkFfPq9eYqY/c-rp-mo-br100/photo.jpg','13486358490203335051',910),('AIe9_BGhYIk2KhOdF8fekWDvq8JUe5jPYTfI7HiVCUUf3Tt4i3uk-QghKiARTuONl75642GZJVXTLUF7BW3rdN2LHlukFYiBSA6W1lST_h8nGG2LRKmcMyE','I came here with a friend and was welcomed by Leslie. As my friend went to the back, Leslie offered me to another waiting area with a tv and snack bar. This place has great customer service!!','2019-09-09 19:40:28.292000','2019-09-09 19:40:28.292000',5,'Sharri Sheats','https://lh4.googleusercontent.com/-pDi6Y8f-igw/AAAAAAAAAAI/AAAAAAAAAAA/RNmeD1We03g/c-rp-mo-br100/photo.jpg','16891069708558046635',4205),('AIe9_BGhYIk2KhOdF8fekWDvq8JUEACYXZLqi7gInL5uRVgFKHctOdILCSX8z6NFALa5LIuxRGgxKaOkHvIP665hMk6TeaOlyCjOF3SQ-txNRSqwwwgRJvo','Ashley H was very kind and welcoming. Nurse manny and Yvonne had excellent service and were very caring. Dr. Osiecki was the best and put to rest any doubt s and fear. Answer any question I had. Best place in Odessa.','2019-07-16 02:12:15.090000','2019-07-16 02:12:15.090000',5,'Rudy Salcido','https://lh6.googleusercontent.com/-eP-xHGodbJs/AAAAAAAAAAI/AAAAAAAAAAA/HPBwzOaDOlE/c-rp-mo-br100/photo.jpg','6521947413723274945',8194),('AIe9_BGhYIk2KhOdF8fekWDvq8JUeaRmthYCAf9DpYmKa9BWhWoVGBg8FuUAsXHwD_Q4vpEKASoAftLARWkWfCeKl7pX2HmM4VKxE4arSfMic-3o20xUbTc','The process to get checked and tested for COVID-19 was so quick! Cody, Sam, and Nydia especially were very friendly and helpful with making me as a patient feel at ease. I can’t thank these guys enough. I think everyone should go here!','2020-07-26 21:36:55.896000','2020-07-26 21:36:55.896000',5,'Isabella Carrasco','https://lh4.googleusercontent.com/-63CmOUXOd3U/AAAAAAAAAAI/AAAAAAAAAAA/UZS8soU8GSU/c-rp-mo-br100/photo.jpg','2077061009497551125',22817),('AIe9_BGhYIk2KhOdF8fekWDvq8JUeiQknXhAZ4F1dmwnoMAxqKhs3xmQ3ZFpnhg2E8Wwe2lmSSTFqmYP8qX72ORy7i3yrflipDoR113QHLbbpcKmM8bfJJc','Very helpful, friendly, clean, and informative! Dr Daniels and Tanishia were great. Everyone was great! Thanks again.','2020-03-02 02:24:49.393000','2020-03-02 02:24:49.393000',5,'Courtney Rickels','https://lh4.googleusercontent.com/-UIopNMy8d_4/AAAAAAAAAAI/AAAAAAAAAAA/oPaevy-_4CI/c-rp-mo-br100/photo.jpg','17898197009688164559',14118),('AIe9_BGhYIk2KhOdF8fekWDvq8JUeMRYp1ZZU6tT81l-a6sP4vpzo_qawfA8Vpru0rdp6IROB49Jeb6vDT6fpW3aPCD66Y9b2g6g6wvIUlcdSgirXnpGAy4','Friendly staff and not a long wait. Will come here everytime','2020-02-14 23:04:35.061000','2020-02-14 23:04:35.061000',5,'GÃČH•MØRGÂÑ And Morgan','https://lh6.googleusercontent.com/-FZtUwyEnt3E/AAAAAAAAAAI/AAAAAAAAAAA/cbNLz_T-9UM/c-rp-mo-br100/photo.jpg','3272657195432704501',14362),('AIe9_BGhYIk2KhOdF8fekWDvq8JUEo4011jvEZwzC4aJNE8HCbBIzcaLxfzwFOC3_0QWHujKuJftiuvI0zHguvJ3nj7dVbkL-Xx4rK9khA3ToQhTPHW2U38','Exellent care and very nice nurses and very educating on symtoms','2019-01-06 04:54:56.085000','2019-01-06 04:54:56.085000',5,'Evan M.','https://lh6.googleusercontent.com/-0ZY6YQWsA7o/AAAAAAAAAAI/AAAAAAAAAAA/_hvMf5IOFeQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5893),('AIe9_BGhYIk2KhOdF8fekWDvq8JUEOh4NArXFSBfpcLVB8Ryk3HyM5aqVnfVSAxbDLh3qXyTjDf5vsfCuXIHXH4ONryiZtGezSg7pUjvxMrtDeMdRHQvIPo',NULL,'2019-06-16 14:05:29.263000','2019-06-16 14:05:29.263000',5,'Nico Wildeboer','https://lh5.googleusercontent.com/-gNNP-T7_ZPw/AAAAAAAAAAI/AAAAAAAAAAA/o6rYpHGEwbM/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3350),('AIe9_BGhYIk2KhOdF8fekWDvq8JUEPP-YqMtK_IBboWOPX4NQ3MWIoBJqTnEasmIVu4Q7Y2HuQiXQ_v8gR1Rcrthvlqtd_U-n3fmV1f4O5Dt_mbnrR31sBE','Dr. Golla, Nurse Jubril and Tammy, Radiologist Sandy, Er tech. Ralph and registration Patty were all so caring and awesome. Great place to visit when u are felling ill.','2019-09-23 12:32:01.561000','2019-09-23 12:32:01.561000',5,'Latangia Walker','https://lh4.googleusercontent.com/-rHcTmkmRiE0/AAAAAAAAAAI/AAAAAAAAAAA/xd2vL9Hw1vc/c-rp-mo-br100/photo.jpg','17394740196501090048',4603),('AIe9_BGhYIk2KhOdF8fekWDvq8JUESwfSD-8WDpoVaZBlRimqGkwuBv9lu8a7ytvGvRKkYXiYAk7NGPweqCofbvyWk_pI4yd5ThgUWJhl6pat67DkgQ4S54','Always super nice and quick service. Big or small they treat you well no matter what.','2019-12-23 16:39:03.879000','2019-12-23 16:39:03.879000',5,'Aida Del Moral','https://lh5.googleusercontent.com/-OpTN_4kXI4w/AAAAAAAAAAI/AAAAAAAAAAA/dtofI1pgO3M/c-rp-mo-br100/photo.jpg','14904078213800803294',13649),('AIe9_BGhYIk2KhOdF8fekWDvq8JUeu3VpRyWGOxiuF28Fe2BpnTw0QHUCiFi4UOvuSDVPrgByU_mDOtq5i178Q7wqBybXV_mQqIKVKtOBM5ufF3RU2Fo9jc','Super quick visit. Staff was super friendly and helpful. I would definitely come back here if i ever had to go back to an ER. I was in the back in less than 10 minutes and the care team was so quick i was never waiting more than 5 minutes for the nurse or doctor to come in and do evaluations and what not. All in all, my visit was less than 2 hours.','2018-04-07 13:16:47.919000','2018-04-07 13:16:47.919000',5,'Chastity Braxton','https://lh6.googleusercontent.com/-aAEt1stX6no/AAAAAAAAAAI/AAAAAAAAAAA/LHNyJgErcZg/c-rp-mo-br100/photo.jpg','14567670160750071148',1637),('AIe9_BGhYIk2KhOdF8fekWDvq8JUF2jKM8lQK97-ErurjRQLmgElvYuptlaBRIWV7MLBo4R8pC76vftCPSeZLUYBtPUPImm5rOERsoDGZICOebJYo9NJTOE','It was extremely excellent. The doctor smile will brighten your day. Everyone was really professional and nice and it was fast. I love this place!!','2017-03-12 18:34:17.520000','2017-03-12 18:34:17.520000',5,'Kwon Hogan','https://lh4.googleusercontent.com/-pUJm-JHm-_U/AAAAAAAAAAI/AAAAAAAAAAA/XorU5gr1GEg/c-rp-mo-br100/photo.jpg','14904078213800803294',2391),('AIe9_BGhYIk2KhOdF8fekWDvq8JUF3BphNFqdP5y6DmJHwU3qIwoteRLME2Bx5QhFjqwNBhTucihV3BHun-llHWozmMOMm2505pcO_VyofVSDXGcQJzKpfY',NULL,'2019-07-16 13:59:20.509000','2019-07-16 13:59:20.509000',5,'Patrick Thach','https://lh3.googleusercontent.com/-1AQ3mfzgjIY/AAAAAAAAAAI/AAAAAAAAAAA/kTg2EhvzihM/c-rp-mo-br100/photo.jpg','17898197009688164559',5631),('AIe9_BGhYIk2KhOdF8fekWDvq8JUf4IXsvKLwWS32SH6rWAbuHCWuXiVuU29alT1hVjjokuF_tlgLvvuXjZz_1n4VqTnSbyXP5FVCbVkrUwFoKlUjYL-KyY','Lisa H, Leo, and Aaron were so helpful and just awesome!','2019-11-14 18:10:17.269000','2019-11-14 18:10:17.269000',5,'Billy Hartis','https://lh3.googleusercontent.com/-QFoZk3m99R0/AAAAAAAAAAI/AAAAAAAAAAA/K5QxBkFMOAc/c-rp-mo-br100/photo.jpg','13486358490203335051',741),('AIe9_BGhYIk2KhOdF8fekWDvq8JUF5lRwYQeGrhqUNxMRDkrPsvDLRrrSiNv2bwVGtjtSojUuviVAhUxfgKhY7BI9XmktMz2Z-KwMWE4yql5qxTVAiNvFUo','Great Experience, Lia was great, Dr. Soli was comforting and funny I just over had a great experience!','2019-03-23 02:24:30.705000','2019-03-23 02:24:30.705000',5,'Bria Jones','https://lh5.googleusercontent.com/-1mAcQLk2_GM/AAAAAAAAAAI/AAAAAAAAAAA/piQG_COpJjY/c-rp-mo-br100/photo.jpg','12541597562633926366',531),('AIe9_BGhYIk2KhOdF8fekWDvq8JUF6EkqeLPYXXFde-MDXVjVzu4wQcOPxd3MKx0Xi4erNKHagg2WtA6d77eB1WBGbdnIDzhfzqZRgQrm-tEDCA4Kt6RbmA','Great staff, excellent location, and wonderful experience overall! Ke\'Aire, Churiah, Gina, Dr. Souman, Dion, and Josh all have fantastic bedside manner, are extremely personable, and overall made this entire experience tolerable. I will absolutely be back (hopefully not anytime soon!) and will refer this facility to all my friends and coworkers!','2018-08-16 02:01:01.720000','2018-08-16 02:01:01.720000',5,'Morgan Young','https://lh5.googleusercontent.com/-PF3NR2bQBXM/AAAAAAAAAAI/AAAAAAAAAAA/tQuT0hgm88Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7616),('AIe9_BGhYIk2KhOdF8fekWDvq8JUFaJmKeDJHP4gLCSWomCPAEvmrxFX0cBIhTTZ5j-vyOnj9DQrtSFe0eMEDbxynKmvn9kJJkrknY9pTbIQ3Uv3ZXKLUlA','The staff here are great! Very friendly amazing bed side manner. Dr Leavitt is sweet and considerate, Johnny was helpful and patient and Bryan was wonderful very caring and compassionate. I don’t want to ever have to go to the ER but if I do Signature Care is the where I’m going.','2018-09-12 01:37:17.886000','2018-09-12 01:37:17.886000',5,'Sha P.','https://lh6.googleusercontent.com/-zaoDXDeGQig/AAAAAAAAAAI/AAAAAAAAAAA/8aA7jdgCUGo/c-rp-mo-br100/photo.jpg','14567670160750071148',1512),('AIe9_BGhYIk2KhOdF8fekWDvq8JUfK-mwFuHh7U6hKTNdkUMGQi5YAW4f-z3LMqVrAtcEGGBXkooRA7UK18gKhm6QlpzmDVXEaYoSlya_0fF7fib1ly7D8k','Dr. Levitt, Bryan, Sherri, everyone was amazing! And so quick with help!','2018-08-18 02:59:56.820000','2018-08-18 02:59:56.820000',5,'Niki Vogel','https://lh6.googleusercontent.com/-Jr3WsHYBxXU/AAAAAAAAAAI/AAAAAAAAAAA/uTWJhLfgraY/c-rp-mo-br100/photo.jpg','14567670160750071148',1562),('AIe9_BGhYIk2KhOdF8fekWDvq8JUfKCmqjEATGQAT5KFKdIh13K2d6UqwzfNMEDYHqrGJKe_pESLyxRcbfH1pbpNGiKkfTPB_U5ufzlHIq6r1X3CYZIJSmU','had a wonderful experience, friendly and made you feel very comfortable. Doctor was M. Thomas Md, Nurse was SarahG., Rad Tech was Marcus, ER Tech was Matt C. and Registration was Ayesha.. Thank you for the experience.','2019-06-22 21:24:29.310000','2019-06-22 21:24:29.310000',5,'Christina Padilla','https://lh6.googleusercontent.com/-5RIM92uVjQI/AAAAAAAAAAI/AAAAAAAAAAA/M-Vq0Zh0Pao/c-rp-mo-br100/photo.jpg','17898197009688164559',5682),('AIe9_BGhYIk2KhOdF8fekWDvq8JUFtCtxCqX-yo3MBg-1_R70Ebes33YSkOzo4Ii5_5A5EuyvxLLDa5mWnghlOlbKkd1Btxp5fz6JDD2g2PUEBjXR2biFc0','OMGoodness!! I have visited this facility three times already and every time I continue to receive the SAME great service (ie very kind nurses, amazing doctors, professional receptionists and quick service). The receptionist (Melinda) was very knowledgeable about their processes and how they work with your insurance(s). Nurses, Betty and Laura took great care of me from a warm blanket to a cup of water when needed. Dr. Braun had phenomenal \"we can take care of your every need\" bedside manners. I will bring my family here every time there is an issue. THEY CAN COUNT ON IT!! Michelle Lloyd','2015-04-30 15:12:21.347000','2015-04-30 15:12:21.347000',5,'India Lloyd','https://lh4.googleusercontent.com/-LnhgLWpqOwY/AAAAAAAAAAI/AAAAAAAAAAA/7MjpREb4DAA/c-rp-mo-br100/photo.jpg','17394740196501090048',5300),('AIe9_BGhYIk2KhOdF8fekWDvq8JUFzFIUcseBfGx-ivTltFaua-uVq5eT-M7N_IGU-JHEC-JqLzY5KqUQxowzSltIWmYaoPqHRhozPzHm1NUKaqHcxrJx_Y','INCREDIBLE STAFF! Everyone was so helpful and FAST! I will definitely make this place my go-to! There arent words that describe just how amazing all of the staff treat patients. Great parking, clean facility, and caring staff.','2019-06-19 23:08:52.089000','2019-06-19 23:08:52.089000',5,'Amber Maize','https://lh6.googleusercontent.com/-BV9B7kizz7I/AAAAAAAAAAI/AAAAAAAAAAA/DtwENU0JqZ8/c-rp-mo-br100/photo.jpg','2694018788013845459',6127),('AIe9_BGhYIk2KhOdF8fekWDvq8JUGb6_C_q87cWgXlrHYJrsuhSfgLwIwGEIcArGBwd26hjV7GIAfEfZ2Myf_gW1EWFR-s5TfT5clIZqKOVYQr7CeSDiH04','Nothing but positive things to say about this visit. The night team (Dr. Eslbecker, Marquita, Amanda, Chelsay, and Eric) was very quick and efficient with getting checked in and I was out within an hour. They are one of the most personable teams I’ve encountered at an ER center!','2020-03-06 01:45:32.862000','2020-03-06 01:45:32.862000',5,'Gabby Parker','https://lh6.googleusercontent.com/-hlpTVFQT3S4/AAAAAAAAAAI/AAAAAAAAAAA/EwJ7uJ3Q_n8/c-rp-mo-br100/photo.jpg','16891069708558046635',13916),('AIe9_BGhYIk2KhOdF8fekWDvq8JUGDhbuAocZsaMTIsdDKR_Ko1z7PNWLCJ1jyO_226EltuQa4nhp6wBGfq_57rX3j6TD_F4Ym3rHR_cSwHhoD9kdutuGRc','Staff were attentive to my situation, make me feel secure, and they were very helpful, i will recommend their services thanks to dr Henderson, and nurse Alvean and all the wonderful staff tricia and jesus thank you','2019-08-16 17:35:28.334000','2019-08-16 17:35:28.334000',5,'Carlos Guerrero','https://lh5.googleusercontent.com/-6KI-uBY4w-4/AAAAAAAAAAI/AAAAAAAAAAA/8mSePu6tIDU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUGhGIg1dn7uexKFAf-mq6Lpt_Feh6HAVXsHv4M06h_0Xgnidpd-B6Uob9Gin5f7BZ-36PlM8CxbSIv3HP02cUgFRnZ5U','Really friendly staff! Doctor was very personable,smart & surprisingly happy!','2018-12-24 02:48:00.542000','2018-12-24 02:48:00.542000',5,'Bridgette Nealy-Davis','https://lh4.googleusercontent.com/-m_QhRHe4gFc/AAAAAAAAAAI/AAAAAAAAAAA/_6asP5zFEJU/c-rp-mo-br100/photo.jpg','17898197009688164559',5904),('AIe9_BGhYIk2KhOdF8fekWDvq8JUgiSAByvTFHa1L47WYQ_Bm8Te1dxc6buPPNy8VC0ZyxjCNTvL1JFHT-3-QNWpTcSfi_Y8dfA0Xu7lDEeWH2a4LR4L2p4','I’m very satisfied the nurses and Dr.s were amazing . They got me back very quickly:) The most amazing experience and medical care I have ever had :) They are very caring and compassionate:) I had to stay over night in one of there observation rooms and I had amazing care throughout the night :) I believe the main nurse I had his name was Arron shout out to him he is an amazing nurse and person has very good bedside manners:)','2020-07-06 19:03:15.508000','2020-07-06 19:03:15.508000',5,'Natasha Adams','https://lh5.googleusercontent.com/-RQn5aoCX-xc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn7v57FcrJ3xW81cY0Z1pPO1FGjbQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21308),('AIe9_BGhYIk2KhOdF8fekWDvq8JUGjdoYTdqB5WWj0pzY1QsXC3raqid0A3pOeEd0GREYZIYiFiiOiboN1-zlmbe5L1P65NBJflfh11LRiN-wrspDg_noVg','Very professional. No wait. Attentive staff. Positive results. Very clean. Do not try to eat up your insurance as they treat you and release you. Thank you and your staff.','2020-01-14 03:44:02.422000','2020-01-14 03:44:02.422000',5,'Ebony penrice','https://lh6.googleusercontent.com/-eVb1jsNY7XU/AAAAAAAAAAI/AAAAAAAAAAA/2o3yF26yrAw/c-rp-mo-br100/photo.jpg','17394740196501090048',14050),('AIe9_BGhYIk2KhOdF8fekWDvq8JUGJmyfBDcWMOpiBzfH68Bm0nHzOvnzlfeU7eByIA7CJqFM_Xx5GnJVXZ4OeOKJz0bs6rSYH8e8hvfcGdxNiAS01A67Wo','Staff was great','2016-08-10 19:32:25.581000','2016-08-10 19:32:25.581000',5,'Anjanette Cruz','https://lh6.googleusercontent.com/-iR_7ooo6SpA/AAAAAAAAAAI/AAAAAAAAAAA/cJE9e7ZUYDk/c-rp-mo-br100/photo.jpg','14567670160750071148',1994),('AIe9_BGhYIk2KhOdF8fekWDvq8JUgKqMDLxzV58RmsSK3KskqIpVo-cUim3J3wjIif1IpdsfSAFZLzmyrc3ab3p7KswdlgL9-q11NpmdJeWaPGFqw38JdVo','Excellent service thanks!','2019-10-24 18:40:20.384000','2019-10-24 18:40:20.384000',5,'Crits Tapisquen','https://lh4.googleusercontent.com/-IrJD2Q5Lcu8/AAAAAAAAAAI/AAAAAAAAAAA/cLrkbtgMc8Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2780),('AIe9_BGhYIk2KhOdF8fekWDvq8JUGlYQy3-gv9VVNNhGdZAV3RsgWcRDphJ42-hz0aUrhqtl4ojYebH6TzSZQa5mJU7EkRlUZiwprM6WOFrIAZwy4lE33mI','My mother had an accident where she fell with a vase and ended up needing 10 stitches on her face and 10 on her thumb. Our neighbor who had seen her fall recommended SignitureCare and I am so grateful that he did. It was 4:30 PM Sunday and there was no wait and we were seen immediately. The nurse Kelly with kind and compassionate and did everything she could to make my mother comfortable. Dr Vaagenes was AMAZING. He spent 2.5 hours on her stitches. He had only finished her thumb when there was a shift change. He could tell my sister and I were not comfortable with him leaving by our facial expressions so HE offered to STAYED PAST HIS SHIFT to finish the stitches. \n\nDuring the time in the room, his bedside manners were fantastic. He did everything he could to deliver quality, compassionate care including answering all of our questions (my sister and I work in the healthcare industry so there were many)and he did not get defensive or offended.\n\nThis is a private emergency room and does not accept Medicare so we were self pay. I was surprised at how affordable the care was, given everything that Dr. Vaagenes has done and the 2.5 hours he spent with her.\n\nI also want to give a shout out to the front staff. They did an excellent job making the waiting area feel inviting and respecting my request not to mention payment around my parents (as we did not want my mom to worry about that.)\n\nI cannot say again how appreciative we are for the care that my mom received. I would highly recommend SignitureCare although I hope we won’t be needing ER services anytime soon!','2018-03-26 04:12:08.927000','2018-03-26 04:12:08.927000',5,'Mary Lee','https://lh3.googleusercontent.com/-ASufZXRUQEM/AAAAAAAAAAI/AAAAAAAAAAA/iO-7rqp8hx8/c-rp-mo-br100/photo.jpg','14567670160750071148',1643),('AIe9_BGhYIk2KhOdF8fekWDvq8JUgUvOjrDQkjw4WipzMrNtOJ7RN6jnNFjdKUfdLE-J8epIQpdfLuDvm1j4ZF4R61460ny8RHuK9ojAVC7rF2OTdboMYj8',NULL,'2018-07-27 01:08:20.526000','2018-07-27 01:08:20.526000',5,'Lisa Bass','https://lh5.googleusercontent.com/-VHsxyX5XBk8/AAAAAAAAAAI/AAAAAAAAAAA/33o-GHTxqv0/c-rp-mo-br100/photo.jpg','14567670160750071148',1585),('AIe9_BGhYIk2KhOdF8fekWDvq8JUgXWdoKshSLJn0en8c1_yrSixoU1wQ1sChv_z2B0m2nGHHHv0gZi9JGsNYn8kQDxxmHR2LbNySNcYkDeG3EewzIpGZ9I','Very frustrated trying to get a covid b test. Carly B was amazing and walked me through the process.','2020-07-01 16:32:45.268000','2020-07-01 16:32:45.268000',5,'Leslee McWhirter','https://lh4.googleusercontent.com/-id1O1xKAOcc/AAAAAAAAAAI/AAAAAAAAAAA/oOFrQUhdqpI/c-rp-mo-br100/photo.jpg','12541597562633926366',21345),('AIe9_BGhYIk2KhOdF8fekWDvq8JUHDPl4crnneKhvM36GXBZLjTmUUyHZ0vmuCLHLZYBmKxlwkYMZXz_f_Lchl8x2bJoFaZs1UK62MxIR_TOlBlzo0j47DU','Great service. Kind and caring staff. Appreciate all the help from the receptionist Tanishia and the nurse Sarah. Everyone was very helpful! I will be back and I will be recommending to my family and friends.','2020-02-07 06:52:23.319000','2020-02-07 06:52:23.319000',5,'Corrine Saa','https://lh4.googleusercontent.com/-O9t7yKO195w/AAAAAAAAAAI/AAAAAAAAAAA/8NUnZJNtbXo/c-rp-mo-br100/photo.jpg','17898197009688164559',22703),('AIe9_BGhYIk2KhOdF8fekWDvq8JUHiA9qE3c_GUK7qq0ed-VAldbxwnpkz8UF1nQ7sTnznzOyxerCsPWTWu60maCzihhQQpyloq2i58UsKF9oVeE0AmBIgE','Great service, friendly staff, and immediate care!','2018-12-04 23:03:58.192000','2018-12-04 23:03:58.192000',5,'Chassidy Racquel','https://lh4.googleusercontent.com/-U4_XBFmTr3Q/AAAAAAAAAAI/AAAAAAAAAAA/2UEcbiTOmtY/c-rp-mo-br100/photo.jpg','12541597562633926366',587),('AIe9_BGhYIk2KhOdF8fekWDvq8JUHkS0z0YWTkhn58AQHlb4v2hNiD3Aohx9jH0pTPGhZDS9aKYAsSGV9Wd7jYBVLLzBxdAJUrNnWTcAOPWwUWqXdfQeik0','WOW. They were amazing!!! Everyone from the front desk to the nurses and docs were so wonderful, kind and knowledgable. I could not have been happier, literally the BEST medical experience I have had anywhere, ever, and I have had many. Really highly recommend them.','2017-07-05 17:24:37.891000','2017-07-05 17:24:37.891000',5,'Maya Frank','https://lh4.googleusercontent.com/-R--JCVD8Xh4/AAAAAAAAAAI/AAAAAAAAAAA/t2WOPGI5dT4/c-rp-mo-br100/photo.jpg','16891069708558046635',4549),('AIe9_BGhYIk2KhOdF8fekWDvq8JUHLAiPVZ1dv3OiBhrSwUsX5gS3rMnd5NEmWsH0ESHNB3znPKiaSqf8DEIaXH-BKPdr6fH1rg6MQxUQ1yniXEpoVUMTvY','Came into SignatureCare today. Kimberly at the front desk was super helpful! And the nurses and Dr. Dang were great too! Very quick service, friendly staff, and office is VERY clean!','2020-03-04 22:34:29.376000','2020-03-04 22:34:29.376000',5,'Joey Meza','https://lh4.googleusercontent.com/-ZCVDprpnLxA/AAAAAAAAAAI/AAAAAAAAAAA/yArccXcJPVQ/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',20955),('AIe9_BGhYIk2KhOdF8fekWDvq8JUHlVE9UMFBbjqPKq2u0PGCEhzXogwsxSUU836_V8vmmN4iVncA98X7OMgQEhufPY5yZngdDfMJa97XNw6TEhlkmj-zeA','Excellent care empathetic staff and fast care! One of the best health care providers if not the best in this area . Dr. O\' Mally is the best doctor out there . Thank you for a wonderful experience','2019-09-01 01:52:12.569000','2019-09-01 01:52:12.569000',5,'Rania Fawaz','https://lh3.googleusercontent.com/-XIBCfm9x1SY/AAAAAAAAAAI/AAAAAAAAAAA/uGJvmZMIbPA/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',2955),('AIe9_BGhYIk2KhOdF8fekWDvq8JUHn62rF-etRhoTltpwq87Hpa76VVGqJd-QFMG18t8pYxEKyNbnP9DhVC09RsE7AmkuYxV1ldiHMoF4wLzswrUP5PRMzQ','Went over the weekend because my son cut his face and the care and customer service was fantastic. The facility was super clean and the wait time was less than 5 minutes. The staff was awesome - Blake and Dr. Wendy. I am so happy this is right around the corner from us!','2019-05-28 02:02:51.781000','2019-05-28 02:02:51.781000',5,'Vlastas Enterprise','https://lh6.googleusercontent.com/-uAinR4FD4Cw/AAAAAAAAAAI/AAAAAAAAAAA/fDbtLe2Jr7o/c-rp-mo-br100/photo.jpg','8679688254631342173',8841),('AIe9_BGhYIk2KhOdF8fekWDvq8JUhna7lhcexJlFpkiC6GlGnpoKlw3xL9uUWYSCn-J8MabkTH-5N2QovjlC4Oqdf529BY8mRx8cczPjmcxvuYpsDpdSdMA','We were needing to find an urgent care quickly for our daughter. We happened to drive by & found this place. Darnisha was very professional when we arrived & answered any questions prior to being called. Shawn & Tricia were the next group we’d see, very calm & patient even with our daughter yelling & screaming. Alvean was our nurse during the visit, she was very kind & friendly towards us. Even offered our oldest daughter snacks (she was beyond excited). We had Dr. Datta as our doctor, he was very professional, kind & addressed our issues. Overall, the experience was beyond great. I’d recommend this place to anyone!','2019-09-08 21:32:22.309000','2019-09-08 21:32:22.309000',5,'Shaniece Mastny','https://lh6.googleusercontent.com/-VWFSJDNbyOw/AAAAAAAAAAI/AAAAAAAAAAA/Vvh-avJRz-0/c-rp-mo-br100/photo.jpg','16389487648212004696',2938),('AIe9_BGhYIk2KhOdF8fekWDvq8JUHPaM5k-Jr-MLlrXydkAVzhZJmf8ErWnXj-oBjLSekNMxvUgoAKWKN6ZyXosMeeQy8AOYE1y1BrSHPitqv1edB8LWsoM','Front desk is super nice!! Waiting room was very comfortable to stay in. Place is so niceeee and they are so sweet! Thank you guys for making this visit so much easier for us!! Dr.Yusuf, Ke’Aire (Registration), Chih, Agnes (RN), Jose (Radiology Tech) Anastasia (ER tech)','2018-08-15 04:43:28.916000','2018-08-15 04:43:28.916000',5,'Alexia Mendez','https://lh4.googleusercontent.com/-Xioj9j7-Fd8/AAAAAAAAAAI/AAAAAAAAAAA/BACtdNH_d2E/c-rp-mo-br100/photo.jpg','3511292162159714121',7619),('AIe9_BGhYIk2KhOdF8fekWDvq8JUhrA_MKrOV4qQd_2slt7eN1xVxQRaRhG746-e5ytcY-rXvlMfRY2C3VCc6EAus73GJcDkCMIIQN4tlifNKsa_wOAd4ms','My 5 year old granddaughter was in for an ear infection. She became anxious when we started into the exam room and ran back to the waiting room. The lady (sorry Indidnt get your name) taking us back, got her a stuffed bear, took to her and talked to her. She calmed her down. The nurse that came in later, as well as Dr. Yost, were all fantastic! They even called the next day to check on my granddaughter. I highly recommend Neighbors Emergency Center.','2018-03-19 18:42:50.986000','2018-03-19 18:42:50.986000',5,'Freda Willard','https://lh5.googleusercontent.com/-CfIQf8AFZG8/AAAAAAAAAAI/AAAAAAAAAAA/YEOjk7w19Kg/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',7105),('AIe9_BGhYIk2KhOdF8fekWDvq8JUhuTdySZUUrmBiT4M0KqM0kZrmvJ_v9ls6zaLluXdavXZlZ_2vmae41F0lnSAquUfM_tRDPWpbY_8Rg30f6n_whrw9fU','They were amazing and fast. They were really professional. I would tell anyone to go there.','2019-10-17 13:23:48.711000','2019-10-17 13:23:48.711000',5,'Steven Hubert','https://lh6.googleusercontent.com/-3nCuev7e-s8/AAAAAAAAAAI/AAAAAAAAAAA/Bk9unvnJdm4/c-rp-mo-br100/photo.jpg','8679688254631342173',8792),('AIe9_BGhYIk2KhOdF8fekWDvq8JUHUuWk2y-wQyFzI9SGR0Ts0iY4hwqI0GGvSM1VFoC6GrOKmKR4jFVNjD0RoiU0gnzZcFN67aoyVGnD7o_YgZPO-MGH4E','It was empty when we arrived, we were seen immediately, and the staff were very helpful and friendly! Dion, the X-ray tech, was patient with our child, Elizabeth T. helped us sort out payment info, and Dr. Pham explained everything and answered our questions. A very positive experience during a very stressful situation!','2020-01-04 19:00:04.755000','2020-01-04 19:00:04.755000',5,'Kari Kulak','https://lh6.googleusercontent.com/-53xTQbHrvu4/AAAAAAAAAAI/AAAAAAAAAAA/mOiLXw8dcQc/c-rp-mo-br100/photo.jpg','3511292162159714121',14469),('AIe9_BGhYIk2KhOdF8fekWDvq8JUhv9cg6t27dcBHDz0O3cy6iZhM7QhtHnJ8SUX_wFXhnJJwD2r7-mj1qVl1qL7PB677-1Tl1RMYhesVu2IyDXqkxVCnJs','The team kept me informed of everything they were doing. They were also efficient and friendly. Thanks Dr. Chukwu, Alvean, Marcus, and Jocelyn.','2019-06-05 13:03:07.257000','2019-06-05 13:03:07.257000',5,'Carrington Saldana','https://lh5.googleusercontent.com/-LwjbZuIZIZw/AAAAAAAAAAI/AAAAAAAAAAA/1s7CWXnqm88/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUhX2ybfzzk1sJSbkX7WRG-ulT0rKoeIcqTW6TPqlY2HwxZMv0-mJ4Zd1g9ywYKkBaTs_U8Od-TXK6b1rMrNiotVAMzec','Signature had excellent customer service I was very pleased with everything they did for me and they took care of me in a timely manner. Staff was excellent and very attentive. I will use them every time for my emergency needs','2019-11-04 21:54:19.661000','2019-11-04 21:54:19.661000',5,'Mirenda Langston','https://lh4.googleusercontent.com/-UHT-PRjN-XY/AAAAAAAAAAI/AAAAAAAAAAA/lVvhhMZxFOk/c-rp-mo-br100/photo.jpg','12541597562633926366',387),('AIe9_BGhYIk2KhOdF8fekWDvq8JUi1IHTrGtdhHiWjYhULGchElBdfc0xT0Zq16IPRnUZzUC3w4LayljeGUrTsfWObajfeKVi3_Mwz6IaCQ4Bn5hLQsjEh8','Jesus, Jani, Tricia, and Dr. Dendy were terrific. We were in and out in no time .','2019-06-02 12:34:58.336000','2019-06-02 12:34:58.336000',5,'Mandy Scharf','https://lh3.googleusercontent.com/-zYp4ACE76as/AAAAAAAAAAI/AAAAAAAAAAA/kwH5tnyJ1TE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUI339Jfhyx8jWTK6Q7Le5qVLz_QON3imUkOZ7EVupwXxNh5llN0-Ltn5DLYQoNw1DgC1U9waMUwycZDqVL6G9hZKUqes','Yo i came to this place cuz my mom wasn’t feeling good she got treated immediately and we got a room and some snacks I definitely recommend coming here for your emergency and the reception Cecilia Z and Brian D we’re so nice and welcoming','2020-02-18 01:52:09.438000','2020-02-18 01:52:09.438000',5,'Natally Gutierrez','https://lh4.googleusercontent.com/-EQLHT7mZcoE/AAAAAAAAAAI/AAAAAAAAAAA/DU7N5jgO8W8/c-rp-mo-br100/photo.jpg','14567670160750071148',13526),('AIe9_BGhYIk2KhOdF8fekWDvq8JUIh_ESw3_aFEBdq4-rT86tG8s6sHpvIR1ehEv7o1YNbgt3A0khlTQ05Wd5m1CXt1sKwVbpAErQOP456mRNIBEQ_k42kQ','Great service','2019-04-19 02:15:31.880000','2019-04-19 02:15:31.880000',5,'Joselyn Castellon Chicas','https://lh3.googleusercontent.com/-YV-e_Yh82D8/AAAAAAAAAAI/AAAAAAAAAAA/uALKbcBDzvw/c-rp-mo-br100/photo.jpg','16590124370714063921',3418),('AIe9_BGhYIk2KhOdF8fekWDvq8JUiikIjo1Ml5mNVuMuoEY37C9RTGsBaiwSP7lJ9lfoqzkx03ZQ6MzvsaxN09EcFlGUUx9OYaRHs0mnYtlwbrH7umF7GBo','My visit was great! Keera, Selina and Dr. Golla were awesome help!!!','2019-06-25 15:53:17.605000','2019-06-25 15:53:17.605000',5,'Ronald Monroe','https://lh4.googleusercontent.com/-Aw7EV5VnlD4/AAAAAAAAAAI/AAAAAAAAAAA/yd2_4V6WCkU/c-rp-mo-br100/photo.jpg','17394740196501090048',4651),('AIe9_BGhYIk2KhOdF8fekWDvq8JUIjbj38xCrd7l38OysPUBX3Qo2uX6vpXCXaVbwGSePKsPQJTkcE8U5rQndm4fKX4JrW6lD0JbNUHVYLUArCITTpLdCm0','Fast service, friendly staff','2019-01-06 23:22:31.952000','2019-01-06 23:22:31.952000',5,'Mackenzie Kenna','https://lh4.googleusercontent.com/-CIgOgHZ7sYU/AAAAAAAAAAI/AAAAAAAAAAA/vWcxLQUY6fc/c-rp-mo-br100/photo.jpg','3511292162159714121',7513),('AIe9_BGhYIk2KhOdF8fekWDvq8JUIkqjIQbSQemcvFK7hU2iQ7nIuxyirr7WRbyDqdJeoVqKE8Bh1GBnp9y54db-GIYkumGTpoV3GTtwQmpl_817CaHV5Ss','The staff is great, Luke & Kim took the BEST care of my husband with his abdominal pain. They exceeded all expectations. I am thankful for places like this one so we are not waiting for 6+ hours at a traditional ER. We will be back if we ever need any other emergency services!','2019-01-25 03:44:46.977000','2019-01-25 03:44:46.977000',5,'Katie Drake','https://lh4.googleusercontent.com/-JSLdPuwXHf0/AAAAAAAAAAI/AAAAAAAAAAA/ScgPfZTBC84/c-rp-mo-br100/photo.jpg','3272657195432704501',7039),('AIe9_BGhYIk2KhOdF8fekWDvq8JUInawkDceJ-K3FxrpmEq-7vxjiciK-tbd0LFBuhTmJXcbx4ASI2Ox32uSCyKhEqJZQgo5Z09zcmF_TSUNoTqaoNPGl5Q','Best ER CARE ever! Pain free flu swab by Lucas! The rest of the staff that helped me was super sweet and attentive (Lucas and Ryan - RN, Kim - Reg). And of course - no one can go wrong with Dr. Yost!!!','2020-03-03 23:57:59.335000','2020-03-03 23:57:59.335000',5,'Jennifer Ariniello','https://lh3.googleusercontent.com/a-/AOh14GgoDQcOoS-ne6bm5wSbP-yd6CteeI7wUKxTIZQNxQ=c0x00000000-cc-rp','3272657195432704501',20799),('AIe9_BGhYIk2KhOdF8fekWDvq8JUipKAoPSCYdjlSwv8SdbrQzouNkSkxZbY5oQ6KC6_KTi83hpV1eAf3sw-TITJhHW0JHtxIlEY97fWz7_KoHB6csICY48','Everyone was kind! Elida made sure they were able to see me right away. Dr. O’Malley explained everything to me in a way I would be able to understand. The nurses Jain and Aurora were sweet. When I had to do a cat scan, Marcus made me feel calm with our little convo.','2019-10-01 13:27:19.885000','2019-10-01 13:27:19.885000',5,'Angelica Hernandez','https://lh4.googleusercontent.com/-6ay5UTCPL6A/AAAAAAAAAAI/AAAAAAAAAAA/h9P_cfjufSk/c-rp-mo-br100/photo.jpg','16389487648212004696',2870),('AIe9_BGhYIk2KhOdF8fekWDvq8JUiY9zaSoGEalaYL-vC32u1e2u006yUcK8OXwB1k5G_iR9Pu_YTCbj7HVouQZhC3tlIrIC4V7zVGmxE5BS0DdNioLrQe4','It feels weird giving an ER 5 stars, as it\'s not exactly somewhere I enjoy being... Nevertheless, the facility is great, the staff is amazing, and the wait is very short. Leslie got me in very quickly and was extremely pleasant, and then Dr. Faig, Dawn, Olivia, and Eve took it from there like a well oiled machine! (Except with more personality and empathy than a machine haha)','2019-08-01 20:47:02.802000','2019-08-01 20:47:02.802000',5,'Alicia Ranney','https://lh4.googleusercontent.com/-HDcIBNPrBaw/AAAAAAAAAAI/AAAAAAAAAAA/O-QAceOJzb8/c-rp-mo-br100/photo.jpg','3511292162159714121',7230),('AIe9_BGhYIk2KhOdF8fekWDvq8JUj-tNKrv69BLWx6zaGd_nMy3OgOnPY6blcIZu4PIocC2ztDM3cu3E2Vo-grab8U0kTiRDYhGMxs5Fb_AA8BVTPz1LirM','Great experience very fast and patient','2019-02-02 19:33:47.868000','2019-02-02 19:33:47.868000',5,'Patrina Joffrion','https://lh6.googleusercontent.com/-3McmHbTl3O4/AAAAAAAAAAI/AAAAAAAAAAA/HAxY-VjHER0/c-rp-mo-br100/photo.jpg','17394740196501090048',4726),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJAubTOPGc-Tn2qeOVjHPcRMwc20mqIbaaZrBCaf8U8tosOgoLXz1enf13g4Yhw7VJRWUkY6aC2i1SjxNRp--0w8Rdxg','Dr Gola is a life saver very knowledgeable \nKristina was super friendly and was funny and yet very knowledgeable in the process\nThe whole staff was quick and no wait time\nMaya was very welcoming','2020-02-26 20:55:53.093000','2020-02-26 20:55:53.093000',5,'Lim Kim','https://lh6.googleusercontent.com/-cCSEX-K-n14/AAAAAAAAAAI/AAAAAAAAAAA/fW2cKDahYwg/c-rp-mo-br100/photo.jpg','12541597562633926366',13338),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJBY5WlC3nW1ASXrSHWGV_ox32OCY9a3cbeOCeEkiiw7wIAGp4efiQVopCU8aaVKHWvQmEZSJ4nxzsntag6uzpjUxlao','They were extremely speedy and welcoming. The nurses and doctor were kind and efficient and explained things well.','2019-06-16 18:55:13.316000','2019-06-16 18:55:13.316000',5,'Justine Moore','https://lh4.googleusercontent.com/-QY9Z150DtBo/AAAAAAAAAAI/AAAAAAAAAAA/lPxUSYyG9gU/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1303),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJC-nhs3Npb52qquOC0h8fuUvaneylu9yWpGpJyi1J58ch37LDN1DbhfT_cJBoIOgezzkR-wmbKHo4uFLxTWCQIJ6lgc','The staff at signature care is amazing. I came in sick and dehydrated, Anthony and Kathleen helped me immensely. I’m so glad that i came to this emergency center. Very friendly and helpful for me while i was in pain, Wouldn’t go anywhere else!','2018-09-12 03:48:33.134000','2018-09-12 03:48:33.134000',5,'Anna johnson','https://lh4.googleusercontent.com/-X135cE6EyUU/AAAAAAAAAAI/AAAAAAAAAAA/HY9INFb7s-M/c-rp-mo-br100/photo.jpg','16590124370714063921',3736),('AIe9_BGhYIk2KhOdF8fekWDvq8JUjCfjTJB751IjSl5fhKzdsG-4NitkO5H5dzh2U6IsFirZJlDaYlNt6SiaVno3mE5XICBNwneJ7QHysQ1vizguOMGta6Y','Amazing service everyone is so friendly and helpful highly recommend !!','2019-01-03 22:22:59.035000','2019-01-03 22:22:59.035000',5,'Melindaa Diaz','https://lh5.googleusercontent.com/-ieA0w9YkEYA/AAAAAAAAAAI/AAAAAAAAAAA/MwR1QmCX_S4/c-rp-mo-br100/photo.jpg','16590124370714063921',3596),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJcTW6X37o4ANBcQvslnYk6c7uhoCCQW-Fu0OIFIWVV_Y6LOUvauMfrJZ34q0XuUxGYuLplWiLsCviw8rZB-tF7Txa7s','Dr. Wong, Geov Acosta er tca, Jessica Nguyen Rn , Chantel L S , Evelyn Avlina, Lyn Shaw Rn, Susan Grant Rn pm. Dr. Pham. They were really professional, nice and helpful. Thanks. And thanks to everyone there. Please keep the good work. My wife went back to change on her wound and the staff there were very professional, helpful, nice, starting with Dr. Kotey A, RN Shaw, Reg Edger, Rad Blakely. Thanks','2019-11-10 19:29:18.992000','2019-11-10 19:29:18.992000',5,'Richard Julian','https://lh4.googleusercontent.com/--eH5pFmiW1Q/AAAAAAAAAAI/AAAAAAAAAAA/-f5I-Vod3DM/c-rp-mo-br100/photo.jpg','17898197009688164559',5450),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJdenIsEsbiUNglgaxrmpHQjXH0QtPmaFN_8wcIeDiSR0BBGWqi9XpoJiRBPvxgbjjZUaQ5BaM56-KAZD5DtcjXExqAA','This place is a very friendly location. The staff was very accomadating. Doctor Patel, Nurse Tammi, Rad tech Nanci, ER tech Norma and also the register Vy. Very clean establiment and the service was great.','2020-02-23 23:08:09.625000','2020-02-23 23:08:09.625000',5,'X tv','https://lh6.googleusercontent.com/-zuV50DmoAt4/AAAAAAAAAAI/AAAAAAAAAAA/JOkIwT8STT0/c-rp-mo-br100/photo.jpg','17898197009688164559',14131),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJEuYxlqIY6zitXOUJG_zHHvx6lptRfFujmfIHibPr8Ib_8i8cJEqmQ2ygX4VOoCOVv_Fd4OMLjepInrF4bZC6R0t1D4','What a complete pleasure and blessing to find this place! I was totally satisfied and treated very very well by Dr. Appiah, Delicia, Son Le, Blake were a perfect dream team of care. Thank you!!','2020-02-06 15:17:51.940000','2020-02-06 15:17:51.940000',5,'Erica Tyson','https://lh6.googleusercontent.com/-7-yvjxCQH5I/AAAAAAAAAAI/AAAAAAAAAAA/hK64r1bTNpY/c-rp-mo-br100/photo.jpg','8679688254631342173',14754),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJFxv6Xltpl-qIcmayF1XTfWHkaC5ije84eMmheiBL3ACO5P3H03Dz26wvW4JuYWmYnFTrEF-rXowopZA4awvxmr1zo0','Awesome experience, in and out in less than an hour. Everyone from reception to doctor and all nurses were very welcoming and made sure I was comfortable.','2017-04-21 20:31:33.739000','2017-04-21 20:31:33.739000',5,'Aaron White','https://lh3.googleusercontent.com/-cnPKD4StvGk/AAAAAAAAAAI/AAAAAAAAAAA/mPNh2RtSfvc/c-rp-mo-br100/photo.jpg','14567670160750071148',1840),('AIe9_BGhYIk2KhOdF8fekWDvq8JUji3Y3T-sDdleYMSrL4kxcpVA-taAx1mfbM4ayfyjLBe6dGRuMZEAMkGOP9pdkZ-s47uPNsxnjpiMSAQVMVW9sV_IBlo',NULL,'2019-01-06 13:32:10.983000','2019-01-06 13:32:10.983000',5,'Jennifer Holt','https://lh6.googleusercontent.com/-sBooBt-gY0M/AAAAAAAAAAI/AAAAAAAAAAA/2Mival9oydA/c-rp-mo-br100/photo.jpg','8626688543755174284',8604),('AIe9_BGhYIk2KhOdF8fekWDvq8JUjkcNHvZmoUejNbyHiuuY8Tlq4Rpi3h_qSljGNVZG1fKI4NUkDa35LYMf6eLI10HaY2216x27B9e7OHiCUHBk7gw6xss','I recieved quick and professional care','2019-09-03 18:15:22.463000','2019-09-03 18:15:22.463000',5,'LACOLE Scott','https://lh4.googleusercontent.com/-IXm5NudJjeU/AAAAAAAAAAI/AAAAAAAAAAA/0JWUGqSqJzY/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2954),('AIe9_BGhYIk2KhOdF8fekWDvq8JUjmfiWlYeHW0kYPku_4mB27EG2SWQGR5oR68qehCMFumE9AEQtcRKteM4HXTg-PktH6aZQvmsXajPxi_alVD8Ln3Q7n0','Cody and JD were great. Made me laugh and helped keep me relaxed. Entire staff was friendly and efficient.','2020-08-03 22:03:10.316000','2020-08-03 22:03:10.316000',5,'Corey Waggoner','https://lh4.googleusercontent.com/-_4yyrLLrRzU/AAAAAAAAAAI/AAAAAAAAAAA/rZuhsutwL1Y/c-rp-mo-br100/photo.jpg','2077061009497551125',22739),('AIe9_BGhYIk2KhOdF8fekWDvq8JUjmMplOswYSwZ2csI2_Lj-M1coT5mnzTKM8-WVAVXfHnhmHlNKTDlECWvXv5fun8NOvwmmm0vNAq9PWvSFnGVQsnbXJs','Awesome service everytime. I have been here more than 3times and service is excellent!!!!','2020-01-07 21:54:53.811000','2020-01-07 21:54:53.811000',5,'samantha molina','https://lh4.googleusercontent.com/-THUxnboRyG8/AAAAAAAAAAI/AAAAAAAAAAA/tbpttHiXf1I/c-rp-mo-br100/photo.jpg','14904078213800803294',13640),('AIe9_BGhYIk2KhOdF8fekWDvq8JUjOYVQCjuhiP4EwgnHgDBdzw_8apRUUe-Wsd8MfkHAv2fY4ZVffDhqIZUEAwLd_PE2WbJf7S17vREAZVtnenoD31HNUE','The staff was great. Dr. Kimball was very knowledgeable and my nurse, Jacob, and tech, Cameron, were both very attentive and kind. Liz at the front desk ensured that checking in and payment went smoothly!','2019-05-01 15:10:01.398000','2019-05-01 15:10:01.398000',5,'Callie Wycough','https://lh4.googleusercontent.com/-bJbkpneusTY/AAAAAAAAAAI/AAAAAAAAAAA/ZmOYXh54wRs/c-rp-mo-br100/photo.jpg','16590124370714063921',3396),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJTCv9Xrnma2VkVpCYsMx_sDB8GCyzvGM_hTuwC42SGtSHAA2fmJvHXkg1f71e0ya6_HW7iauhSME35rA65476SpIj6M','I would highly recomd this place. Great staff all around. Quick check in. Great doctor. ','2017-08-19 11:50:49.651000','2017-08-19 11:50:49.651000',5,'Richard Cruz','https://lh4.googleusercontent.com/-TDeiWHta_cw/AAAAAAAAAAI/AAAAAAAAAAA/1bh6QX43EYw/c-rp-mo-br100/photo.jpg','14567670160750071148',1766),('AIe9_BGhYIk2KhOdF8fekWDvq8JUjXR1VRVzzV14mYF93Xn2emsytQQu20HGeQqapKBBvHk8jhfWQU7eihjbCvAk0349RGZOzZwbUn15we27JI89PIopYY8','The staff Amy Agnes Rn and Dr Faig are simply amaging. Simply amazing. I will always come here.','2019-05-05 02:46:21.822000','2019-05-05 02:46:21.822000',5,'Jessica McClelan','https://lh6.googleusercontent.com/-QeQYDD-c59U/AAAAAAAAAAI/AAAAAAAAAAA/-k_p-JsbSNU/c-rp-mo-br100/photo.jpg','3511292162159714121',7344),('AIe9_BGhYIk2KhOdF8fekWDvq8JUjyy0zcn6boWc73x56NtmGG6W1G22MWoHt9aaFvMLy5JTMdtSSUbnzHv8Tiit_9zG2WGQiQf-bEJMorumXf5CZwYp3Ys','I was immediately pulled back when I arrived thanks to the fast pace of Christina C. at registration. I had the most caring nurse ever Christina R. made me feel good! Dr. Nguyen was very caring and thorough. Andrew took my labs and made my experience more comfortable. What a great and caring staff!','2020-03-07 16:26:26.248000','2020-03-07 16:26:26.248000',5,'Morgan & Amanda','https://lh3.googleusercontent.com/-EjwuM_Qk3FY/AAAAAAAAAAI/AAAAAAAAAAA/jX7aT2NbE_E/c-rp-mo-br100/photo.jpg','16891069708558046635',13908),('AIe9_BGhYIk2KhOdF8fekWDvq8JUJZFu_Iirhe_RJ8uRvYM54wQrotJU9utTtYHt6QsPBnjPjVH1ljAcLk8R-CQj4j3oriqjioL6udBawV0tgWiiJt3L4YQ','Great place omg ms.nikaela was great all the staff was awesome 30 min for stitches no wait','2019-01-14 04:09:41.900000','2019-01-14 04:09:41.900000',5,'LaLa Tells Da Real','https://lh3.googleusercontent.com/-QZ8nE2bu93U/AAAAAAAAAAI/AAAAAAAAAAA/MBkuiwD42oY/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4737),('AIe9_BGhYIk2KhOdF8fekWDvq8JUjZPWLgTIGS_MrmRekWnHyHIfJztE8B13xeTyaaq_RxSmhVd35DfsoAWIVbwCBVRux1QoUATeB-8Z0UHX7EkTGW9SYUQ','I brought my son in for a dental emergency on a Saturday and the entire experience was amazing. The facility is clean and comfortable, the staff was very welcoming and my son received excellent care. I highly recommend SignatureCare Emergency Center!','2018-08-29 17:30:19.047000','2018-08-29 17:30:19.047000',5,'Zinthia Kee','https://lh4.googleusercontent.com/-oPC3GPGc14c/AAAAAAAAAAI/AAAAAAAAAAA/hUCbIQpvTDs/c-rp-mo-br100/photo.jpg','16891069708558046635',4436),('AIe9_BGhYIk2KhOdF8fekWDvq8JUk2TRv1ID56QMemgZFi8pprtRcIvM8VZQHz1iBiWpfS6vFZayILtwrSa1dkxgGeVQZOLqsEOJ8AN6DAFjNIaySdlBDOU','Very attentive','2019-04-23 15:31:59.231000','2019-04-23 15:31:59.231000',5,'Natalie Cossio','https://lh4.googleusercontent.com/-HlMJL-dFzTo/AAAAAAAAAAI/AAAAAAAAAAA/zAQChw9fUcs/c-rp-mo-br100/photo.jpg','16590124370714063921',3413),('AIe9_BGhYIk2KhOdF8fekWDvq8JUK4EVZv2u8jR9TMzbPl1aAQREcGl1f73h-2AcVLX4i672uf5_HOxHZCLFe9nO3hHiDHvHB4Qx9h-rb_NHu9SAE-JyCPs',NULL,'2017-10-04 19:02:47.451000','2017-10-04 19:02:47.451000',1,'Sharon Clark','https://lh6.googleusercontent.com/-iU3oC-UG93A/AAAAAAAAAAI/AAAAAAAAAAA/FcFJlfIjmX4/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8349),('AIe9_BGhYIk2KhOdF8fekWDvq8JUKevRSL4YyqpL0fKNkAzYqWlYFDek1YqSSKPhclsNQzCYpQxUBRU_f2ZcT4oed-rFmtJvCiVlCZ6d7Xqb-QKdKT7Cl0k',NULL,'2019-11-07 15:16:48.930000','2019-11-07 15:16:48.930000',5,'d hernandez','https://lh6.googleusercontent.com/-SvLadd0OIWA/AAAAAAAAAAI/AAAAAAAAAAA/OHMK3dWNX2w/c-rp-mo-br100/photo.jpg','16590124370714063921',3099),('AIe9_BGhYIk2KhOdF8fekWDvq8JUkfDmOxNr4FzEnhlaPxPC_1wxAtIPwxzOEZBrQlxcY-et7MkJusJeo-fwMNiBVskeuvHRc7cP58tVW-QbBw0WY1pk1Fk',NULL,'2019-02-26 04:03:52.756000','2019-02-26 04:03:52.756000',5,'Yah Yeet','https://lh3.googleusercontent.com/-QUcj2o630YY/AAAAAAAAAAI/AAAAAAAAAAA/duvBjmvhGp0/c-rp-mo-br100/photo.jpg','16590124370714063921',3518),('AIe9_BGhYIk2KhOdF8fekWDvq8JUKFQhsQiNhDG_uUfsJldkRWQhLepvel5pc2CNQoBWdJNdDtKzAyh8FEUbG6jCVY_ZRc1dehwd08WYy1XoHP_PN_eWuko','Does not accept va care. Starts pricing self oy at $175.','2020-06-15 01:48:45.118000','2020-06-15 01:48:45.118000',1,'Ashley Martin','https://lh6.googleusercontent.com/-9xvl6A4CMf0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclSp9Oi27mJwIvQmp_XwyJ74ccW2Q/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21451),('AIe9_BGhYIk2KhOdF8fekWDvq8JUkKdSg-ENeElPTH-39yhuoIQr8iI5mzGCZHW1KfYFXQApINPg-OsMQ9Xw3tHP4LzQOVHU2_mnM_khTiK_IJlywKsJ6HM','Front desk staff Patricia was very inviting and helpful and the back office staff Alvan and Traevis were amazing and answered all the questions I had. I would recommend this location for all of you urgent care needs','2020-02-27 22:46:51.070000','2020-02-27 22:46:51.070000',5,'Smart Wow','https://lh3.googleusercontent.com/-XQxpTGhBaYg/AAAAAAAAAAI/AAAAAAAAAAA/RDRTFc4ThJw/c-rp-mo-br100/photo.jpg','16389487648212004696',13752),('AIe9_BGhYIk2KhOdF8fekWDvq8JUKLghIAUu2bFDjXioLINkBjZ2go1ZI5x7oPGWldr_LyLU2nYz1_mT4d3dNOJaHnvfUfv9UfKHAroXOPiJEDLQoz8cOiI','I visited signature Care Stafford location for a small emergency issue and was amazed with their excellent service. At Front desk met with friendly & smiling face of Aysha and then immediately taken inside . Dr. Hehman and nurse Kelly took care of my issue .','2019-06-29 17:46:21.578000','2019-06-29 17:46:21.578000',5,'IFTIKHAR HASHMI','https://lh5.googleusercontent.com/-06ImiEORtmg/AAAAAAAAAAI/AAAAAAAAAAA/4X1aKOtvo4Y/c-rp-mo-br100/photo.jpg','8918455867446117794',9107),('AIe9_BGhYIk2KhOdF8fekWDvq8JUKlMzWv2X8GpI0OBmLV6UqafVVfURvtPOndbiasZUZn9oZI2SkWm_EV4Oib40Qs-0ds5eyDZrJECv9kmziOauHpOqE3w','There was no wait time , as soon as I got to the emergency room I was seen. Dawn, Norma, Amy and Eve was very hands on when it came to what the problem was and extremely helpful. Dr. Leavitt was very careful and attentive to the situation. They have an amazing staff, highly recommended.','2020-02-02 20:30:17.586000','2020-02-02 20:30:17.586000',5,'Laqua\'briann Jackson','https://lh5.googleusercontent.com/-5FSJuabuqvg/AAAAAAAAAAI/AAAAAAAAAAA/ZqbdvScGE3Y/c-rp-mo-br100/photo.jpg','3511292162159714121',14433),('AIe9_BGhYIk2KhOdF8fekWDvq8JUkmZt0S4yzGImMkNSRotNSDSicgmLI_XREAxNqW0yKu_98sciPOBDZQwQEOSBzRUZUbFWvMOf-TL4YPDvyUYXPqTFux8','My visit to Signature a few days ago was a pleasant quick ordeal. From the moment I walked in, Leslie she instructed me on what she needed from me and was very kind and helpful. Before I finished my paperwork I was pulled back by the tech that went over some of my basic concerns. She was also kind, and understanding. Thank you Dr. Soli for helping me with my problem. He heard me out then mentioned what he thought my condition was, then went over how we could proceed and actually let me be a part of making that decision! That was awesome. The nurse Laura was super nice also and I think everyone offered me a blanket starting with the tech, it’s needed in that cold facility :) Overall I would recommend S-care and even return if needed. Great care in the hands of knowledgeable caring people!','2019-03-24 07:23:57.298000','2019-03-21 22:50:29.484000',5,'BKNY201','https://lh6.googleusercontent.com/-We0cWxyBrDI/AAAAAAAAAAI/AAAAAAAAAAA/ABmtSJxg5jo/c-rp-mo-br100/photo.jpg','3511292162159714121',7374),('AIe9_BGhYIk2KhOdF8fekWDvq8JUKSbsKJDdCyvOiuZVrIYdqCcoMYDhQhL0b0vnmf9pi1GV0acMx0b1LyV1B4oi_SotuMzokzxc3tnG_-xQa5rdlPrZfIk','Excellent service today. Dr. Guharoy, Dee, Laura and Olivia were very professional and efficient. I always have great care when I visit this location.','2019-01-29 18:52:09.663000','2019-01-29 18:52:09.663000',5,'Kendra Batiste','https://lh6.googleusercontent.com/-if_kHXtFhbw/AAAAAAAAAAI/AAAAAAAAAAA/NTJoyci7AJs/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7442),('AIe9_BGhYIk2KhOdF8fekWDvq8JUKslw1cQ-wT13mza3649AolP_Gn79gae3KfE93X5dZ8PBuVaaa6KjtGFSQUxXTBoQhWAbsRe4pg2cZhsRcs0bfif4lzY','Tanishia was very kind and welcoming and was able to help me out as soon as possible.','2019-11-06 06:20:21.768000','2019-11-06 06:20:21.768000',5,'elyssa a','https://lh6.googleusercontent.com/-DABpmeJlLy0/AAAAAAAAAAI/AAAAAAAAAAA/n3aNuYSzPuA/c-rp-mo-br100/photo.jpg','17898197009688164559',5460),('AIe9_BGhYIk2KhOdF8fekWDvq8JUKuJot5LO9izNttyUegNeu0fxHkaDbhvgAoQuh6IYv0QxV_OGvmwHsT6zYlt2MKNfcSHF8xZeWpN5zaWHZnGI2Z5nrck','We went at 12:00 pm and I was so worry about my baby.... my daughter did not cry because the way they talk to her. They are amazing!!! Thanks!!','2019-03-03 12:52:55.581000','2019-03-03 12:52:55.581000',5,'Daniela Nava','https://lh6.googleusercontent.com/-pF6Uz1--MbI/AAAAAAAAAAI/AAAAAAAAAAA/Vug4p-3LGhI/c-rp-mo-br100/photo.jpg','17898197009688164559',5827),('AIe9_BGhYIk2KhOdF8fekWDvq8JUkuP2NqtmpGrEeRQxgp_TRsopzUDVaFdDRs52wvLJRY43UNPqLHTzmH4t7wRurcTi-JnWGkdjuofq18EXMgU0IlJBrpI','Was the point of making an appointment if they are not going to see you at your appointment time my husband and appointment at 3 we have arrived on time we were told to wait in the car until we were called so we did we waited for 5 hours so my husband can get tested i went and told the nurses 3 different times that my husbands appointment was at 3 and they told us to wait but the people that were there before and after us had already left and we were still waiting He still did not get tested And how can i get my money back was told i had to pay $10 fee just to register an appointment','2020-07-12 03:02:11.853000','2020-07-12 03:02:11.853000',1,'María Partida','https://lh3.googleusercontent.com/a-/AOh14GgoP25tO9tvtoJ-inhXcU0PgWjl6N81uhX9UGr0CtM=c0x00000000-cc-rp','2694018788013845459',21325),('AIe9_BGhYIk2KhOdF8fekWDvq8JUkYqfEeObanYFGCiQFwpsoUERRW87D9KHsAdj0lM0VG9D3rDMidE9ffecWYqa2IYX7s6qerEHw_U9OtKybcGRWrOiiNI','No wait. Excellent care!','2016-10-14 21:35:24.408000','2016-10-14 21:35:24.408000',5,'Amanda Mitchell','https://lh6.googleusercontent.com/-bU5LREhGdpY/AAAAAAAAAAI/AAAAAAAAAAA/OC8C7sA2xTs/c-rp-mo-br100/photo.jpg','3511292162159714121',7928),('AIe9_BGhYIk2KhOdF8fekWDvq8JUkyujKvXrOnkaHT4k_tVmQxJmAhxs2uPPJ4ytGvLvt2RrCgYNBQgYa6ZoibPCg8PTIWagIT7QY7QvBqv3CTpkMAJVbl8',NULL,'2016-11-10 12:56:14.211000','2016-11-10 12:56:14.211000',5,'Roberta Smith','https://lh6.googleusercontent.com/-fYc5jv90jSY/AAAAAAAAAAI/AAAAAAAAAAA/Osc6iVmH9Jc/c-rp-mo-br100/photo.jpg','17394740196501090048',5178),('AIe9_BGhYIk2KhOdF8fekWDvq8JUL8V1IXZuTnVcLQ3vbHYJsq6WgiVpP7ATbLiNCUmpDIHQZM0gLr_voClQ9zmOZkHhBG8e0w7x3AWK6DLOlTyzC6tY_i0','Dewaal & kat were so amazing ❤️ I had been to two different hospitals and I came here and they helped me so much and fixed my foot /toe','2019-07-24 01:06:17.303000','2019-07-24 01:06:17.303000',5,'Kayla Marie','https://lh3.googleusercontent.com/-q8Aq4eMzBo0/AAAAAAAAAAI/AAAAAAAAAAA/NbnA9Cg6QNs/c-rp-mo-br100/photo.jpg','2694018788013845459',6105),('AIe9_BGhYIk2KhOdF8fekWDvq8JUlrGS_ddMfincTfk3ZP2xD-e-im25L4-CBWOe2YyLDjxfOeeJ4J2v8RXcZ9d-aENDPomuTW4Br-HEuTGzq6ZoZo9J724','Great experience','2019-04-30 15:37:56.234000','2019-04-30 15:37:56.234000',5,'Cade White','https://lh5.googleusercontent.com/-zUPZ0SjW26U/AAAAAAAAAAI/AAAAAAAAAAA/o0KrMVWKGX8/c-rp-mo-br100/photo.jpg','8626688543755174284',8498),('AIe9_BGhYIk2KhOdF8fekWDvq8JULX3YbEYJkBYepyMu9qZPdsaeQk5Q7qQxQR1bHI4IlH8YnyxFsnk7Tc6WtKEJh3EypUTKhXOpgLnsA9qZMZkbel9ZSLM','Everyone on the entire staff was excellent! I appreciated everyone who helped me & I LOVED how much everyone was so nice to me! By far one of the best emergency centers I’ve been to!','2020-02-11 03:45:20.950000','2020-02-11 03:45:20.950000',5,'Jordan Jacoway-Frost','https://lh3.googleusercontent.com/-wimDsFu6TX0/AAAAAAAAAAI/AAAAAAAAAAA/fVqpoeDCE3Q/c-rp-mo-br100/photo.jpg','14567670160750071148',13538),('AIe9_BGhYIk2KhOdF8fekWDvq8JUlYDYLGbJy1eHg8oLEbwkHFrwRdCRDbLdfKJuQO9Jm2VSIo4vyDec2mnALDQ_BAd9tLbAHy7hgxrA5Lz2SliNflmtdnU',NULL,'2019-03-01 15:06:26.207000','2019-03-01 15:06:26.207000',5,'Grace Renteria','https://lh4.googleusercontent.com/-6dxzZ0rSaMY/AAAAAAAAAAI/AAAAAAAAAAA/WNs2T6F20zA/c-rp-mo-br100/photo.jpg','6521947413723274945',8300),('AIe9_BGhYIk2KhOdF8fekWDvq8JUM4K08eArnUvzUG2dTjAq_hKjN5eIc2fLAiz4LprpN5dTBX1spFas-Zx_2EkyUKLHWgKv-xzwbMROFBGjpOd55pBlaG8','Amazing care, my father got sick and for the first time we visited one of the emergency locations, wow they took care of my father AMAZINGLY! Extremely professional, and super friendly. I highly recommend this location, Dr. Young was amazing. The check-in wait time was incredible only waited less than 10 minutes and he was in care, by very friendly and very professional nurses. It\'s extremely clean, very comfortable waiting room an awesome place to take your loved ones for medical care, Thank you 👍👍','2018-08-07 15:45:23.397000','2018-08-07 15:45:23.397000',5,'Jose Hernandez','https://lh4.googleusercontent.com/-c3k_mjTWF3E/AAAAAAAAAAI/AAAAAAAAAAA/nwE1S5e2mfA/c-rp-mo-br100/photo.jpg','17898197009688164559',5927),('AIe9_BGhYIk2KhOdF8fekWDvq8JUm6azyxXsY9mPsc20AmrSJXpQ0Sg7paw1kXajAFuqye0YDXpl8N9LVUEzOmlBoFxZouO4884NtiW7W6w_0PJGNPdB4qg','By far the best experience and most welcoming experience I have ever had. Robin, billy and Courtney where amazing. I sure wish the government would let me choose this as my choice for a emergency room. Even though they didn’t take Tricare they where so nice and have simple payment options thank y’all soo much','2019-01-22 08:41:19.399000','2019-01-22 08:41:19.399000',5,'Brian Austin Graves','https://lh5.googleusercontent.com/-pLqwtPJYSy0/AAAAAAAAAAI/AAAAAAAAAAA/sXYolb-yD_c/c-rp-mo-br100/photo.jpg','8626688543755174284',8583),('AIe9_BGhYIk2KhOdF8fekWDvq8JUm900lI2R3dbQ5l4ox3w0PO5qaYE9knos8wLx2td1Zov5FxYyeUGqAxWQ9bxQm3cb6v9Dx77pxTf1nUq7ogS3L5Is7ws','I will come back here for any medical needs. Staff is very friendly and extremely knowledgeable. They are clean and considerate, affordable . And very quick, short wait. Def a 5 star !','2020-08-01 13:40:16.376000','2020-08-01 13:40:16.376000',5,'Mia Dallas','https://lh3.googleusercontent.com/-v7XS0e7ncjA/AAAAAAAAAAI/AAAAAAAAAAA/gyhoi2cZkfU/c-rp-mo-br100/photo.jpg','14748677429039074158',22358),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMAeQA1rWLzNdJOzAtZLMAIilJPLAakfD8AH2T9kuemk5Zu1epgLNr_6Gw4sFDYKZvyb02yu7MMj7TNNSOEQ8EmyXIh8','I\'ve gotten tested for covid twice here and both times my experience was fenomenal! All the people that treated me were so nice and caring. I\'d recommend this place to anyone!','2020-08-13 21:25:14.721000','2020-08-13 21:25:14.721000',5,'Bryan Lazo','https://lh3.googleusercontent.com/a-/AOh14GgYZzPFU8fEeabV720Jmz3ZfPuqfgN8HP5bwT7Djg=c0x00000000-cc-rp-ba4','14748677429039074158',23023),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmcIK2i-1Wb1E5gsyThVYNW9oNyzv5Ju-sH7dC-08R7w_GrjDuy3DIzHPkIuk6qsQlEyefGfCnqbxOcBeK5zCEAK2iMs',NULL,'2019-07-09 23:58:09.548000','2019-07-09 23:58:09.548000',5,'RheVlogs','https://lh4.googleusercontent.com/-QPlhHKLrsQw/AAAAAAAAAAI/AAAAAAAAAAA/44BojVrXjz4/c-rp-mo-br100/photo.jpg','17898197009688164559',5647),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMcTHtv2652kTglo8TEzVssP2wayP29w2SqbLtpRtO7FnqDJ8kPzIfN-cVWti3xL7EZgN5cPnKTjwVTkqsbHtDIo9N-g','Professional, and relatable staff','2018-01-19 04:49:38.288000','2018-01-19 04:49:38.288000',5,'Blessing Akinyemi','https://lh5.googleusercontent.com/-Izfu4zg9rCQ/AAAAAAAAAAI/AAAAAAAAAAA/jK7lTNwU79U/c-rp-mo-br100/photo.jpg','8918455867446117794',9303),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMHVQs5e7_ovqoczdhoA85PnvU47AbzQzvksHFBhcbpPfgUJAYfZ4fzov_6nd5JGqc6t108MeSx9X1S2QsLWCxbq1NiQ',NULL,'2016-07-01 04:40:20.904000','2016-07-01 04:40:20.904000',5,'Michelle Garcia','https://lh3.googleusercontent.com/-aUOIBtFnxzg/AAAAAAAAAAI/AAAAAAAAAAA/Rfie2vnfm2I/c-rp-mo-br100/photo.jpg','3511292162159714121',7969),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmj986yQOsb5VUZ2Q-6t61X3CnqpvHMJ_jds95J2zbPiQDegzKTGJ278JylQH8_jFJN4zeoBdXAQ7LFmpAHLkZg7A2tI','Staff was Very friendly and helpful. Quick checkin time and welcomming staff. Special thanks to Fatima for the the blanket and snacks','2019-12-11 08:15:55.930000','2019-12-11 08:15:55.930000',5,'Str8 Business','https://lh6.googleusercontent.com/-Z03KxNqQBho/AAAAAAAAAAI/AAAAAAAAAAA/QZtC_E5SkGM/c-rp-mo-br100/photo.jpg','17898197009688164559',5360),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMlr38YtOUd66TiEdBDuVY81pW_0-S-RJPs1-J15CsxlgwoWkoeyXUxV54HyeoG_NcI1Fc_DDCuVuTLr4mM58RgVAg4Y',NULL,'2019-10-27 01:32:10.385000','2019-10-27 01:32:10.385000',5,'Toby Black','https://lh4.googleusercontent.com/-M2f75_vxbE0/AAAAAAAAAAI/AAAAAAAAAAA/-a3eMuExBUg/c-rp-mo-br100/photo.jpg','6521947413723274945',8107),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMlrilTtOw40p6d8IF5nyovr90KxUp_F3N2WQoZJY1xmr2JkFyguO7fHEYlaWdeeKLfBz7uST9jOn7iRfcvEWT-aJP_A','My Experience here was amaizing !! Dr Minh is awesome , Duke the nurse is a sweetheart, everybody in here is so nice , u feel comfortable, u feel safe !','2019-02-02 06:26:25.995000','2019-02-02 06:26:25.995000',5,'Siria Aguilarte','https://lh4.googleusercontent.com/-ga-K5t7P6nU/AAAAAAAAAAI/AAAAAAAAAAA/HkgjL4npQVE/c-rp-mo-br100/photo.jpg','8679688254631342173',8880),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMMUsyQGr-TOgV01GTXOsL9YEXAtgOstQ5wHt9NotvFGdkVo0uo2CyDoW6vwDpYqjOE0w283Yqg04kp4epltdnz4fuN4','Excellent service came in wounded left out like new. Dr. Smith had excellent bed aide manner and provided me with exceptional care and pain free stitches','2019-10-24 00:56:14.359000','2019-10-24 00:56:14.359000',5,'LESHONDA COLQUITT','https://lh6.googleusercontent.com/-UDfcRhKNXdU/AAAAAAAAAAI/AAAAAAAAAAA/iR8Nf7YtVoI/c-rp-mo-br100/photo.jpg','8918455867446117794',9056),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMN0pXOsCBoW25AKs9cOyci8NQrsPQ255CY9-AghIQg6CbyLTRSgkNU8iyIxiin9uy8RPwgwvh8IddIVxni3nbwhQs5I','I had Anthony (RN), Dr. Harjai and Laura (X-RAY). All of them were so incredibly nice, I felt so at home even without my parents here with me. (Laura even held my hand while I got my shot) They’re hilarious, respectful, and professional. I really couldn’t have asked for a better experience!','2019-04-13 16:55:30.217000','2019-04-13 16:55:30.217000',5,'Becca Davis','https://lh4.googleusercontent.com/-C92AmFFP69k/AAAAAAAAAAI/AAAAAAAAAAA/FUcNpGbyoP4/c-rp-mo-br100/photo.jpg','16590124370714063921',3431),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMn8pkNgxFTE0ZhvIkBvrpc7PqtXXA0mQS8axPKougl1YcoLrHOs6PjQbFTYmImBs1OQev1c5Am9baSeGuQJVZxrCqS4',NULL,'2020-02-06 01:21:07.201000','2020-02-06 01:21:07.201000',5,'Hamza Nahhas','https://lh4.googleusercontent.com/-BGygcljqYEs/AAAAAAAAAAI/AAAAAAAAAAA/QvNuiveNHzo/c-rp-mo-br100/photo.jpg','3511292162159714121',14426),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmNQurdlxg9_YOq8gSyrgoZmrxG9UGRluJITKIUCPwKRE-fZ161779VGlSa1GYarTN6MDDXO97X46qmzgf4MCmRWU-JI','It was wonderful Dr W Appiah MD Nurse Lynn S and REG Ashley S all were so helpful','2019-07-12 22:54:59.911000','2019-07-12 22:54:59.911000',5,'Leticia Mata','https://lh6.googleusercontent.com/-LpYI9DVTXng/AAAAAAAAAAI/AAAAAAAAAAA/8a5Del95l4w/c-rp-mo-br100/photo.jpg','17898197009688164559',5637),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmOOuum2eyaLlWWLY9AuxcxQTBpip0CiLUqyJdT3Zd9O4OTRpyGX4EJvVHnGToZadxaT63jEv8wWek10ZhIR74Q53OFI',NULL,'2017-07-04 12:42:15.387000','2017-07-04 12:42:15.387000',4,'Troy Reed','https://lh3.googleusercontent.com/-fS95ih17Ijg/AAAAAAAAAAI/AAAAAAAAAAA/W5g9J7G836w/c-rp-mo-br100/photo.jpg','17394740196501090048',5026),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmoZTCVUIehHicuMPhnD4w1XZ5RVSOiNR4llUs_ifFXbXG13Lh_Z5UU6ilzN-HO305v2KsJrJW9D3L7WZ9wIDkvj3Q5o','Came in for a friend with a broken nose. It happened at a party and the entire party came to the ER. Everyone was so sweet and welcoming! Doctor Kimball and RN Gabe were thorough and very helpful!! Even offered to arrange an Uber since it was so late at night. My girl Rebecca at the front desk was an absolute angel putting up with the whole crowd. Great experience overall!!','2020-02-02 08:10:54.488000','2020-02-02 08:10:54.488000',5,'Madeline Aguirre','https://lh4.googleusercontent.com/-n7CNVKnYZsg/AAAAAAAAAAI/AAAAAAAAAAA/wKHKPeUuF3o/c-rp-mo-br100/photo.jpg','16590124370714063921',10427),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmQnjYH9-5OkFPRIJq0x0n8AkO7zKbt-O91j1LUqtG-ivZjyisBqAgf_Q4uy3tOxDLLOMcwleWjrrI4aW2tmDh2P_144','I visited SignatureCare on 6/1/2016 and every member of the staff was courteous and professional. The facility was very new, clean, and comfortable. It basically looks like a small hospital inside. I would definitely go back in the future.','2016-06-02 17:22:55.134000','2016-06-02 17:22:55.134000',5,'J G','https://lh4.googleusercontent.com/-lrAkDvFCUvM/AAAAAAAAAAI/AAAAAAAAAAA/imVg-bPJD6w/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',2028),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmVd1oZn8PPPQ_COv4EWBemsEcjNhXM83gGIZo00u-B_tijU2wNiHK_99zBQTudYOr8yCXzGTffA6jk2P3mgrrE5B8Tw',NULL,'2019-08-24 15:45:58.084000','2019-08-24 15:45:58.084000',5,'Kassidy Luck','https://lh6.googleusercontent.com/-Nb_SWndg0H8/AAAAAAAAAAI/AAAAAAAAAAA/BJf1WbeqraQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3239),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmxj6N9S_i_GHzHdGU5PbOb9DIGrRxTf3ncjL7ITZuvnf9ZdK5qQW23FbhoZozd2HpIiaj0MEqgwQ2mN3BRYbKJ3ci88','My littlest one needed to be seen ASAP. We took him to Signature Care and we are so glad we did. We were very impressed with the staff. Everyone was so kind, helpful and caring. We were in and out in no time. We will definitely go back.','2020-03-02 07:48:49.958000','2020-03-02 07:48:49.958000',5,'Amber Freeman','https://lh3.googleusercontent.com/a-/AOh14GhaWW5_1LgPBis8fiiWjPyTTQB_BIy2HosxDYFvHw=c0x00000000-cc-rp','3272657195432704501',14305),('AIe9_BGhYIk2KhOdF8fekWDvq8JUmxRsVpwqvvBzXivyPWM8gWYuKRXCm9GlCnz2Fq6edZg_8xvLo4Oa6_do1gS3NjDA4kmaDL0egxTdP8u3UVtjTNtOFZc','I\'m glad I went to SignatureCare Emergency Center in Montrose. Mercy was very professional with the intake process. Mathew was very understanding and knowable. It was a very positive experience with Dr. Souman while in his care. My family and I will definitely return for any future care with the wonderful staff.','2017-04-18 18:02:25.576000','2017-04-18 18:02:25.576000',5,'Frank Harris','https://lh5.googleusercontent.com/-Mx8rAwPoCVM/AAAAAAAAAAI/AAAAAAAAAAA/qnDBKTrPyj8/c-rp-mo-br100/photo.jpg','3511292162159714121',7840),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMyTGnz6tywEsxg54QHcmSZWy_fH7V94KUx11gMSy4R60wys4XlJmhVb6lETfxanNQlJ5XPDaFSgyO5Chqij8rpeiqvw','Great service and quick!! Great nurses and doctor. Thanks to merith rn, hayleigh front desk, brandon tech,.','2018-08-17 10:12:46.541000','2018-08-17 10:12:46.541000',5,'Graciela Rios','https://lh6.googleusercontent.com/-2VJqjAymoTs/AAAAAAAAAAI/AAAAAAAAAAA/WgtTkUDoWMg/c-rp-mo-br100/photo.jpg','14567670160750071148',1564),('AIe9_BGhYIk2KhOdF8fekWDvq8JUMZJhyBA3WEBK6pFlUQ07sRTFyucUTroY36CWeZ_WQWz5FRujLQ6UQH8oCZUO0S2ktRDmeGG3iVy11eFc-3qPa3pjsa0','Everyone polite and speedy response on everything!','2018-08-16 01:50:15.214000','2018-08-16 01:50:15.214000',5,'Anthony Broussard','https://lh6.googleusercontent.com/-aPRHMtU3pN0/AAAAAAAAAAI/AAAAAAAAAAA/49wTnCl6Z_A/c-rp-mo-br100/photo.jpg','14567670160750071148',1566),('AIe9_BGhYIk2KhOdF8fekWDvq8JUN0Ymo_3I0IYxdt2QzrzZyz_OR8KA9fogy9vMDi0OfGuswFZidI73OaVCAdsn_749X9-OYIrWxgQLN7CBRiJesqFp7RA','Dr Estevez,,Alvean,,Tricia,,Jazmin,,,they treated me very well..','2019-07-25 23:18:42.203000','2019-07-25 23:18:42.203000',5,'Claudia Torres','https://lh6.googleusercontent.com/-gCCY6IZFxIE/AAAAAAAAAAI/AAAAAAAAAAA/Zv5DrL5DE1Y/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUN3JY4qAYZ29IaAQj_a0p6LAeXlG_TpNtn8Xcx5fz7mJBAS1yHCUUc9n7dofUiEUAhYmjx3kSra3xnepf76kQbyqA6SM','great service, super friendly! would definitely recommend to others, kendra made the process so easy!','2019-11-23 02:53:36.107000','2019-11-23 02:53:36.107000',5,'kelli muhl','https://lh4.googleusercontent.com/-IUK49Mob704/AAAAAAAAAAI/AAAAAAAAAAA/YhFleP3659A/c-rp-mo-br100/photo.jpg','16590124370714063921',3083),('AIe9_BGhYIk2KhOdF8fekWDvq8JUNCFk7kWy50AMPcyjg1VyvjvGv4DSI2QU4WO_A0ipjIYeHivRB7aBLo0cTf3nIdxlJQz9_D-F-Hc2Jdgs-1T2qmXR_rE','Dr. Jolly and his staff were so professional and nice to me, they understood I was in pain and took very good care of me. Whenever I am in need of urgent care I will come to this location no doubt. Thank you SignatureCare for taking care of me. I was in and out within an hour! I feel so much better thanks so much!','2018-07-17 23:38:01.375000','2018-07-17 23:38:01.375000',5,'Brina Ford','https://lh6.googleusercontent.com/-Dm39yra5ikk/AAAAAAAAAAI/AAAAAAAAAAA/_RMtpNcbhIg/c-rp-mo-br100/photo.jpg','14904078213800803294',2237),('AIe9_BGhYIk2KhOdF8fekWDvq8JUnETUdZMp5M6hYIGvnp42zsuqqMFlLI69BY3JstXBDYt0UIWqDskq6CYiXFlukEdqKOqNNX_vH73l6n3EKSbyycSTYJw',NULL,'2018-07-27 23:43:12.264000','2018-07-27 23:43:12.264000',5,'Gwennie B','https://lh4.googleusercontent.com/-Qg_0gH8TUNk/AAAAAAAAAAI/AAAAAAAAAAA/Dlfzxi9-JS4/c-rp-mo-br100/photo.jpg','12541597562633926366',628),('AIe9_BGhYIk2KhOdF8fekWDvq8JUNJzaNLbbjVVofh5LBpvaGwAg4NOBoIrDsZnF2weJHVrJNF2liAH7WMErjoBbMF-ixPXxpros2-luOOWVa2BrTFpgBIQ','I went in to get a covid-19 test. Although, there were lots of people getting tested, the process was seamless. They ended up needing to run some more tests on me. The nurse Nydia was awesome and really knew her stuff and the attending doctor couldnt have been more professional, reassuring, and kind. Hopefully, I wont need to go here again but if, I needed to, i wouldn\'t hesitate do so. 5 star care !!!','2020-07-19 14:37:23.690000','2020-07-19 14:37:23.690000',5,'Sterling Simms','https://lh3.googleusercontent.com/-frGSVsSMdnI/AAAAAAAAAAI/AAAAAAAAAAA/FQDQTF0gZk4/c-rp-mo-br100/photo.jpg','2077061009497551125',22857),('AIe9_BGhYIk2KhOdF8fekWDvq8JUNkQVgcZFp52xh5stQYLFDJ7E5VHPG3LU0X-4on00aXLMETq2UXTCg_c_acYdTavno8nCf1kgnyz_1ME8EGlCI1rqoEU','Great experience speedy and polite workers thanks Cecilia and Natalie!','2020-07-07 20:56:14.300000','2020-07-07 20:56:14.300000',5,'Trystan Puente','https://lh3.googleusercontent.com/-TvATmR7wZ1M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmk-I7nUQdfNJl90WJkyj4ofTSbVA/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21369),('AIe9_BGhYIk2KhOdF8fekWDvq8JUNLuz9xlJcYCpB1lKrpOfaBL2mQczA2J8LDqbk0ppPhDEOMcyyzw8TvXEy36CY6-imMYp28ymiUw-fsfB2smPnb3Z2HQ','I highly recommend this location is the best! The staff was friendly welcoming and competent. I love the doctor who listened closely was very thorough, and clearly cares deeply for her patients. Jessica the RN so very sweet. Thank you guys for everything !','2019-07-08 12:23:25.937000','2019-07-08 12:23:25.937000',5,'Cynthia Saenz','https://lh4.googleusercontent.com/-B6skJvo70VU/AAAAAAAAAAI/AAAAAAAAAAA/Yt6FSLrE-j0/c-rp-mo-br100/photo.jpg','14904078213800803294',2118),('AIe9_BGhYIk2KhOdF8fekWDvq8JUNMIYi1igvmNedmtDQeYlqZsYe84P_DQd2JN1QKdPfUepwvGoeiht374QNOWuBoGRqj43gVQJBx3OX75ejlC8ERiafJc','(Translated by Google) Excellent service very friendly staff and Dr. Henderson graciously attended to my son, the 5 star place 🌟\n\n(Original)\nExcelente servicio el personal muy amable y el Dr. Henderson atendió gratamente a mi hijo, el lugar de 5 estrellas 🌟','2019-11-14 03:21:27.645000','2019-11-14 03:21:27.645000',5,'Yenny Gazcon','https://lh5.googleusercontent.com/-itVJb8iGaUA/AAAAAAAAAAI/AAAAAAAAAAA/yigyVU5NZPE/c-rp-mo-br100/photo.jpg','17898197009688164559',22711),('AIe9_BGhYIk2KhOdF8fekWDvq8JUNMVoJWCrYO5kVGMztgj3Qw41ktmj8pPG5vrMdzu3UimhgFNpNQjv-CRVqSILQ96S_SIbF4kZewyJaFQ-twVu8u43nSM','Kim, Gabe, and Stephanie were a great help!!','2018-10-13 10:05:11.349000','2018-10-13 10:05:11.349000',5,'Haley Schake','https://lh4.googleusercontent.com/-wc6aHlYe8AA/AAAAAAAAAAI/AAAAAAAAAAA/wvB4lcRcOWY/c-rp-mo-br100/photo.jpg','16590124370714063921',3708),('AIe9_BGhYIk2KhOdF8fekWDvq8JUNQBmigrYoifwnT2MmPs2_H8GF9ps0pylHofRZjmbyG2cMiFGIW0FTFj_RxfrkEO5ohuDknz4-nPaa_9oYekxazJOIGg','I came into signature care to get my stitches removed and everyone was super friendly and super helpful, Sindy at the front desk was very welcoming and informative, Doctor Golla came in the room and made sure I felt very comfortable and relaxed, Natalie the nurse did such a great job at removing them and I felt no pain!! Totally recommend to come here for any emergency needs !','2019-12-27 17:16:40.746000','2019-12-27 17:16:40.746000',5,'Raquel Melecio','https://lh3.googleusercontent.com/-zFtkz_2eoV8/AAAAAAAAAAI/AAAAAAAAAAA/YwPhMdCGpsI/c-rp-mo-br100/photo.jpg','14567670160750071148',1157),('AIe9_BGhYIk2KhOdF8fekWDvq8JUnQSmtjlB1Q7N9c3ctOss2lGNRewtyqiOUL2UoPfJejOnLkj4MVw0n5LVI-GaA4HxjU7y2hfwPRqv0nap7U7wiv76WbE','Friendly and fast service they were great with my little one Jessica S was sweet and compassionate with us and got out our papers work done fast','2019-12-16 07:26:22.509000','2019-12-16 07:26:22.509000',5,'Janette Caballero','https://lh3.googleusercontent.com/-45ZKX5rP2Og/AAAAAAAAAAI/AAAAAAAAAAA/XE4G516OEbU/c-rp-mo-br100/photo.jpg','6521947413723274945',8050),('AIe9_BGhYIk2KhOdF8fekWDvq8JUNViXohy35x3nQlmtFVyWEmI22hnaDgZ7b6vXU3qYFUpWhyvLNqIjSbS7VdhGe_fKuRFrplogNM1FYpcAgSSAW6G5FGg','Dr. Dandy, Patricia and Jani were very kind and caring for my medical condition. I recommend anyone to come to the ER care 24 on Cypress/1960. They are awesome.','2019-12-30 19:36:06.507000','2019-12-30 19:36:06.507000',5,'Detra Clay','https://lh3.googleusercontent.com/-Fc2iI165Dkc/AAAAAAAAAAI/AAAAAAAAAAA/4sFLYs703QY/c-rp-mo-br100/photo.jpg','16389487648212004696',2500),('AIe9_BGhYIk2KhOdF8fekWDvq8JUny0pvRODJripiOx1HV78frQzPKb2Lx0D0b7KXYEuTJhEV4DlQunf99vfaOAOfzHGP4fptXNJie2jOvS7zYbLyqDZN78','Great experience, friendly staff & beautiful facility','2019-10-04 13:36:23.248000','2019-10-04 13:36:23.248000',5,'RDL Transportation','https://lh4.googleusercontent.com/-1Zcm5mEC89g/AAAAAAAAAAI/AAAAAAAAAAA/wRmmYGLeeOE/c-rp-mo-br100/photo.jpg','13486358490203335051',792),('AIe9_BGhYIk2KhOdF8fekWDvq8JUO1BqM3Sd9uh2Z_3EZiYoqd-Ni8atldyuj7V2KzMhuxtVhaxZVBvnTaNu2jLDfo0HylN5-Px3QKHVn5g_HQjGXwsfCe8','Went before midnight. They said the wait was a couple of hours. At 4 am we decided to leave. We are still waiting for a call. The staff was as nice as can be but the communication is lacking. At least tell us upfront how long it will be.','2020-07-01 17:00:17.632000','2020-07-01 17:00:17.632000',1,'FE M','https://lh4.googleusercontent.com/-GartlPykkIo/AAAAAAAAAAI/AAAAAAAAAAA/VLGSY2USXaE/c-rp-mo-br100/photo.jpg','14748677429039074158',21390),('AIe9_BGhYIk2KhOdF8fekWDvq8JUO4dYyeUEISG1R15JRgs2WV9agkqdQ965FI7-5I50FcXOPBDAKKHo5SirW4rnDYFBGHhtQ5lUrlzBZkqKnnBRCCmJMZM','I would like to give a huge shout out to these guys here at the signature care here at Cypress. Dr. O\'Malley, Patricia and Alvean were amazing.\nThey are the Ritz Carleton of health care facilities.','2020-01-16 16:26:15.005000','2020-01-16 16:26:15.005000',5,'MikenMollie Levar','https://lh4.googleusercontent.com/-A3wfEMaSctk/AAAAAAAAAAI/AAAAAAAAAAA/uh2EmK7Mko0/c-rp-mo-br100/photo.jpg','16389487648212004696',9724),('AIe9_BGhYIk2KhOdF8fekWDvq8JUO8_PIq7AehS0t4EqS2xEWWoDghpY9s9sz8XcFxhUbIyukaK1jU1I8AvBw19vJQiiTeI9fzUfmezVzCHoyM23xHCnEh8','The staff team was very nice.\nVery special Thank You to....\nDoctor: Thomas\nNurse: Dawn S.\nRad Tech: Can N.\nRegistration: Ashley S.','2019-01-04 11:00:46.619000','2019-01-04 11:00:46.619000',5,'Karla Padilla','https://lh3.googleusercontent.com/-HsD5opoK7X0/AAAAAAAAAAI/AAAAAAAAAAA/FuyDmP1kiGA/c-rp-mo-br100/photo.jpg','17898197009688164559',5896),('AIe9_BGhYIk2KhOdF8fekWDvq8JUo92lGFSFVfeD8JEMsJ9fiKge9yX31DY8KpYDz28P2BuXBsqWqoiR-HiKYJhgVYSEp9fkU0oNWSuliemB14OWPl0PKyg',NULL,'2018-03-16 16:35:39.261000','2018-03-16 16:35:39.261000',5,'Laiza Guerra','https://lh5.googleusercontent.com/-aUpa86kqZoo/AAAAAAAAAAI/AAAAAAAAAAA/3wupMwOUgjA/c-rp-mo-br100/photo.jpg','8918455867446117794',9278),('AIe9_BGhYIk2KhOdF8fekWDvq8JUoaMC_pUpXTQ35Vul_3VG_auJV_XoxHmz3yj8-p2wKcKwy1CRKfhUcySgh1QpESWlNJrQd1XJdioBqEUkZtlgd5qRvy4','Extraordinary staff, they are very welcoming and the hospital is very clean. They took my son back right away and made the entire visit enjoyable. They did a great job In treating him. They made him feel very safe and he was smiling when we left. They provided him and my daughter with treats and stickers and a little bear to help make him feel better and leave the doctors with a great experience.','2020-03-12 18:57:37.749000','2020-03-12 18:57:37.749000',5,'Danielle Frashure','https://lh3.googleusercontent.com/--HCgxnX3sTY/AAAAAAAAAAI/AAAAAAAAAAA/GA1ciPziuuA/c-rp-mo-br100/photo.jpg','2694018788013845459',21116),('AIe9_BGhYIk2KhOdF8fekWDvq8JUObMOiFEHGumtzOFm4-dOsqTv2On5eso2xKD5a1PeU9nm7O5aKYg6eHRlbgFDEGfQhdp3T9TlQv-WzJIuEX85v3BfKTQ','Awesome expirience! Friendly staff & they diagnosed me with gallstones shortly after arriving.','2018-11-08 20:38:46.092000','2018-11-08 20:38:46.092000',5,'Alondra Escobar','https://lh5.googleusercontent.com/-jxPgE8w0CtU/AAAAAAAAAAI/AAAAAAAAAAA/6byDWsf2u-0/c-rp-mo-br100/photo.jpg','12541597562633926366',592),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOJu7zvR8iyJxISDu27N3oK4BR_libH-XTL4T966Tw1IL0MZVuaAmLuVPJyRoWNV2O-NZXFE--PsxFGsEDX-msU_5j94','Super quick, very clean, courteous, and super friendly. Lisa H. , Erin, Matt, and Krystal were super helpful.','2019-07-24 19:00:57.583000','2019-07-24 19:00:57.583000',5,'Frank Guzman','https://lh5.googleusercontent.com/-zRP4hrg8yVM/AAAAAAAAAAI/AAAAAAAAAAA/w8WHk6r47kY/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',883),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOjUnWg1-8c5Oi2Spso5mHvXAcsKYH4DgxaZcPYWQ87W3UA_MoHVTdemT7gYEx_NIEZNeMYT-ZOl94aVO2hmWJGSNmWY','Amazingly fast care will recommend to everyone and will be back when needed.','2019-05-23 01:30:12.265000','2019-05-23 01:30:12.265000',5,'Miss Kay','https://lh5.googleusercontent.com/-Dptrj2QAHmU/AAAAAAAAAAI/AAAAAAAAAAA/ZexyICpmcpI/c-rp-mo-br100/photo.jpg','6521947413723274945',8260),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOnvFiwLTjNv-AQZswIeAlDdPcTkTuiehdyNSkt9uu2wEqMlkNwoP3BUj02hnXNnsdtMKOLmvz-vZ_LwfZlhQFRwD-qM','My child sustained an injury after a bicycle crash. The level of service we received was far above and beyond. With two small children, this will definitely be our go-to location for emergency services. Staff was attentive, responsive, efficient, and thorough. Couldn’t have been a better experience!','2019-01-21 17:55:26.190000','2019-01-21 17:55:26.190000',5,'Danielle Bergandine','https://lh6.googleusercontent.com/-NOZ01bx37S0/AAAAAAAAAAI/AAAAAAAAAAA/1duGqo7nhhk/c-rp-mo-br100/photo.jpg','16891069708558046635',4366),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOOIQP9ody_h83PN_JUSOnXsmfPlYECkCkgDkz0Virp4uU6PUw_8AfDFmABX8LsH9YRI9VX_aLZ6bpVFbXvdj-1p8lWU','My team took excellent care of my daughter, who was in the beginning stages of appendicitis. They cared for her and me, as mom, and made us feel very comfortable. SignatureCare is my first choice for ER!','2019-10-10 13:27:46.897000','2019-10-10 13:27:46.897000',5,'Shannon Harris_Urrabas','https://lh3.googleusercontent.com/-UMUTPQO1vIk/AAAAAAAAAAI/AAAAAAAAAAA/qV8xS0r29B0/c-rp-mo-br100/photo.jpg','14567670160750071148',1223),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOrkrK8yjGlcD0zx9_LPcpEcKYx71wea9Po5N7BGowLJ5ujReFG12lycGOOofY99Jvlir9Iy17LIdxwSR6Dd75JcwX0g',NULL,'2019-08-28 23:13:28.543000','2019-08-28 23:13:28.543000',4,'Marleny Estrada','https://lh3.googleusercontent.com/--vlhr9ivps4/AAAAAAAAAAI/AAAAAAAAAAA/K0WaBRkXpw4/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5567),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOrpELe25sK2WfRpkZy769yb0veM1uCP_6AfabsMXBVBRKgTWNFltOPbhd7iOmhMrC6OHxg_oPWwiht7Qj9FhdJayIiA','Absolutely wonderful ER! The staff was quick, thorough, comforting, knowledgeable and provided excellent care. After recieving initial treatment out of town and experiencing painful complications from improper wound care, the staff at Signature Care went ABOVE AND BEYOND to manage the severity of my injury and infection. I am so thankful for everything they did to manage my pain, save my leg and finally get me on the road to recovery!','2017-06-09 19:52:26.694000','2017-06-09 19:52:26.694000',5,'Jenna Jurica','https://lh4.googleusercontent.com/-GvGgYllZKR0/AAAAAAAAAAI/AAAAAAAAAAA/PjpHgS88uXQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3977),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOS6ym_qM3qo0jBzuY_Lpcn3YZ6vd3d4kLO95GhiP3NwS7k_9BfA47ThtR7GHCmzpCogHZwNAAiW7m705jCpb3WHSL1k','I\'ve been treated well at other emergency care facilities in the past, but nothing has compared to the attention and care of this location! The compassion and sincerity of their staff is really felt. I came in feeling scared and worried I had something seriously wrong with me, and even though it turned out to be something minor, the staff never took anything for granted and made sure I was completely checked out and fine before I left. I am beyond impressed and would highly recommend this location!!','2019-09-26 06:30:08.039000','2019-09-26 06:30:08.039000',5,'Rob Figueroa','https://lh6.googleusercontent.com/-ORVZVGaqxoU/AAAAAAAAAAI/AAAAAAAAAAA/QBJndLgER9M/c-rp-mo-br100/photo.jpg','16891069708558046635',4193),('AIe9_BGhYIk2KhOdF8fekWDvq8JUoSGlND_jzycoP5BksjWQss3Y0xUxJVsrtICdCCv02o3H2EuF3ooBLH2xzuma6zP4-NfmagIUe3QvJAeDKLwLP_0U0qU','Great experience even though I was really sick. The staff was attentive and kind. First really great experience in an emergency room. Shout out to the following staff members y’all are awesome! \n\nDR. ROSE, MD, RUBY B \nNurse: Kathryn Joan K \nRadiology Tech: Townesend T \nFront Desk: Earl J H\n\nAlso the second shift staff was great as well but I don’t have their names.','2020-06-04 11:50:31.029000','2020-06-04 11:50:31.029000',5,'Shakaira Dolman','https://lh5.googleusercontent.com/-TdLOLWA3K3I/AAAAAAAAAAI/AAAAAAAAAAA/k2jBZQGVwiU/c-rp-mo-br100/photo.jpg','16891069708558046635',22694),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOU-tSzHBYzJSZNIyvk7VNLmAM-wpHwcvM84PtR8V9cyTZNK7nefLqQVhRhfnES1125A_dSWOmDEeNVSN3Xqy92talz8','Great','2020-02-15 03:41:20.159000','2020-02-15 03:41:20.159000',5,'Courtney Morin','https://lh5.googleusercontent.com/-wEOec_7X4NE/AAAAAAAAAAI/AAAAAAAAAAA/x9OxZjCHpg4/c-rp-mo-br100/photo.jpg','13486358490203335051',13423),('AIe9_BGhYIk2KhOdF8fekWDvq8JUOZy4Xz7XOfd0Y2Ld1AeBvjgzOVUjVhR21zRFjXAoElr8cXjwCkubMGmX_qajAL43NRz980HDVi23e77WZQlKjOHJFPg','Perfect and a friendly staff. My mom, sister and I all come here.','2016-11-30 07:18:14.007000','2016-11-30 07:18:14.007000',5,'Helen Bekit','https://lh5.googleusercontent.com/-sql-rmTH_BM/AAAAAAAAAAI/AAAAAAAAAAA/gIS_NVDmilo/c-rp-mo-br100/photo.jpg','17394740196501090048',5156),('AIe9_BGhYIk2KhOdF8fekWDvq8JUp2REYjNJrIWfOrKxuXl9pNWcl0uoXvWPJTUwzY4FHMfI59RdvSJKglmarDMM8j_iLJtYhNMg0ueDCPBEvg_fKT3ZYkc',NULL,'2016-04-26 14:01:45.123000','2016-04-26 14:01:45.123000',5,'Kelia Fuentes','https://lh3.googleusercontent.com/-oINMPHRIVZY/AAAAAAAAAAI/AAAAAAAAAAA/bdGROSSGsx4/c-rp-mo-br100/photo.jpg','17394740196501090048',5262),('AIe9_BGhYIk2KhOdF8fekWDvq8JUp6C60M48pIH7ub8S0kRLWUboBpMEszFX6tyN42EzW42t9wOyJAQCNEh8aa_rOeb-lXSRn8tszVtvp-P3pcWYDGh1ehI','Wonderful staff. As usual, a wonderful experience!','2019-02-24 17:50:30.399000','2019-02-24 17:50:30.399000',5,'Candis Fricks','https://lh3.googleusercontent.com/-7H30W-2L_3M/AAAAAAAAAAI/AAAAAAAAAAA/1pWXQGDlhD8/c-rp-mo-br100/photo.jpg','3272657195432704501',7003),('AIe9_BGhYIk2KhOdF8fekWDvq8JUpEP7ntL0utvL72B5_EWswUrwOzVRJnsqTnYMt9w8qjYSU5hmAGV09_I89odC7JJ2Dq4v3Czo1VNiesnIQV_q_irIJy0','I’ve had a good experience with the help of Ms.Keera, Mr:Anthony & Ms.Natalie. There was a time that it wasn’t the best but my most recent visit made up for it!! Will be coming back!!','2018-08-23 02:11:58.202000','2018-08-23 02:11:58.202000',5,'ThatgalARI','https://lh6.googleusercontent.com/-js_x9ls3bsY/AAAAAAAAAAI/AAAAAAAAAAA/AFV3jvU7Exg/c-rp-mo-br100/photo.jpg','16590124370714063921',3767),('AIe9_BGhYIk2KhOdF8fekWDvq8JUPFoCwoFJnZ8e9oXhfDX2wZzINvSLUVg1BnlTfb-4Xr8lFwr7PNqTgUjjDMb8Vh0UQVY8X8ja-kXNy2ECwZN8Bt3VjMQ','They was very nice and helpful Alvean the nurse was great because she was able to find a vein cause I\'m a hard stick and Grace was good Dr. Ortiz was very knowledgeable plus the Registration Genesis wad real concern. This has been a trying time for me and the pain something else but they was very very helpful','2019-10-27 17:11:50.730000','2019-10-27 17:11:50.730000',4,'Wanda Simmons','https://lh4.googleusercontent.com/-ub-WI_Bquso/AAAAAAAAAAI/AAAAAAAAAAA/L8DYB1FsoUQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2758),('AIe9_BGhYIk2KhOdF8fekWDvq8JUph96OEprcupZ6H2kVaYHaQBqeuKi_FPjGwEytYfVgM-IKSp4TiR1s3wZJG9UTCfGM6c5VwNSzS5XJRaX-i439p0AU7A','Love Dr. Daniels! She and the rest of the crew nurse Rollie, Natalia and Stephanie took great care of my friend.','2020-01-25 11:11:02.499000','2020-01-25 11:11:02.499000',5,'Anastasia Estrada','https://lh3.googleusercontent.com/-Rlh6BctaDPg/AAAAAAAAAAI/AAAAAAAAAAA/Oy2pcPlFp-w/c-rp-mo-br100/photo.jpg','8679688254631342173',10333),('AIe9_BGhYIk2KhOdF8fekWDvq8JUPIKYzGWoUO6QS8V2jn571vCEWvjhu9S53Dpfqof6xYBKqbAR6ALBI5Xn3gLWYXSdm6ebNdCt2wHFJKy6581qCjDCr1E','Great experience! Attentive and amazing staff Patricia and Alvean were delightful. Very comfy waiting and treatment rooms pristine and clean.','2020-01-17 00:22:10.212000','2020-01-17 00:22:10.212000',5,'Lawrence Washington','https://lh4.googleusercontent.com/-6DSyy5X1foo/AAAAAAAAAAI/AAAAAAAAAAA/f5midaT8ZWE/c-rp-mo-br100/photo.jpg','16389487648212004696',10052),('AIe9_BGhYIk2KhOdF8fekWDvq8JUPKFbHkD5qUvDktm1K8rkXeM3ger_2sXH6AmX3SOp98qiUlpWCk2rLizKXmGd6FTe5b0DWX33WGt3AB5NJRRyjHEFPDk',NULL,'2016-05-05 21:03:45.847000','2016-05-05 21:03:45.847000',5,'Rhoni Goudeau','https://lh6.googleusercontent.com/-DAAw71BhLJQ/AAAAAAAAAAI/AAAAAAAAAAA/u5CoLqTxBxo/c-rp-mo-br100/photo.jpg','17394740196501090048',5257),('AIe9_BGhYIk2KhOdF8fekWDvq8JUPKi9tKt6bsZLt-7mxgbM8UOfdU-s7erSlX120M0XgoEGLKsdfUkZhOtnTCACqaW8JWcxRUkHeUcRFVKjASELwB3tkz4','Definitely recommend this location! My doctor was fantastic!','2020-07-19 17:26:44.657000','2020-07-19 17:26:44.657000',5,'No you Idiot','https://lh4.googleusercontent.com/-bagZt3XZPXw/AAAAAAAAAAI/AAAAAAAAAAA/QvNh6Ic8HH4/c-rp-mo-br100/photo.jpg','14748677429039074158',21709),('AIe9_BGhYIk2KhOdF8fekWDvq8JUpOD-PX_0R9Ds101pOg20Cwx-jYp2xGZ_L7zx9qBALn4tKmrNuTuBa6ODYb6XoxqvszURazD7vHsmlJdPu7Bo_TIXZ0Y','Mercy met us at the desk with a smile and all the help we needed. Being out of town made us feel right at home. Excellent care- thanks so much!!','2017-03-30 20:50:42.837000','2017-03-30 20:50:42.837000',5,'Debra Maytubby','https://lh4.googleusercontent.com/-yYWJHeSWI6I/AAAAAAAAAAI/AAAAAAAAAAA/Ls-BG3NogSA/c-rp-mo-br100/photo.jpg','14904078213800803294',2376),('AIe9_BGhYIk2KhOdF8fekWDvq8JUPowmoooJqbv89P9-VGdTQiWAVN7wQL9-sgUQ0Pbx-kVzG_heD9bxmtFkyJ9U6DTte0kXikI5O1wzkdMnc7Po9khXQmI','Keera helped my roommate right away at the front, very nice. The experience was great and helped.','2018-09-24 05:27:16.155000','2018-09-24 05:27:16.155000',5,'Julianna Machac','https://lh6.googleusercontent.com/-hZZO1I61mr8/AAAAAAAAAAI/AAAAAAAAAAA/asEK-Ycrva4/c-rp-mo-br100/photo.jpg','16590124370714063921',3717),('AIe9_BGhYIk2KhOdF8fekWDvq8JUPq2Il36UbUn7m5GMO0VP20l3BkKRepf-RbkjFNx0ufIKrxiGtULph-TcU61BZixGGeJ6YiZ7iokRkmwnANbUvLu9--I','dr and nurses were very compassionate towards my husband when he needed to get stitches.','2019-03-15 17:08:57.488000','2019-03-15 17:08:57.488000',5,'Gabrielle Trevino','https://lh3.googleusercontent.com/-NhHiVn3Zn9E/AAAAAAAAAAI/AAAAAAAAAAA/LDeSHmHubRA/c-rp-mo-br100/photo.jpg','14904078213800803294',2157),('AIe9_BGhYIk2KhOdF8fekWDvq8JUPWhme8hkTnF_FP8sj4M8yk0C-Mvk-Rk57Cb8a_1ZsE4BG3pTDvOx3eT2mFZDH7pfNWpBxkADGgViWh36DL9jqFL9eLs','My nurse was rude and had this sour puss look on her face, I came in pretty early in the morning. I think her name was Marie. Just so ya\'ll know. I created a different google account so this B won\'t know my name. Sadly this is the closest clinic to my house and don\'t want her to know I wrote this review. That is IF I ever go back. How can you employ rude people? I\'ve been here before and had a different nurse it was a guy I can\'t remember his name and he was GREAT, tall dark skinned fellow. Aren\'t nurses suppose to be nice to their patients? Other than her everyone else was great. Don\'t know if I\'ll come back here ...','2017-02-15 00:35:30.009000','2017-02-15 00:35:30.009000',2,'Jas Doe','https://lh4.googleusercontent.com/-FI36qSQh1Sc/AAAAAAAAAAI/AAAAAAAAAAA/UURgSeAXWK4/c-rp-mo-br100/photo.jpg','3511292162159714121',7880),('AIe9_BGhYIk2KhOdF8fekWDvq8JUPzgGtEOrvqyiQVZFfWB2y_Xb-pJLU_2rSKvDJmgTIF4N5JnMexjm0FFeDeNo9ndmScOxfHGsKIretbPsicNHzFC4N-A','Everyone was super nice and professional Patrick and Sarah made sure I was taken care of. Thank you.','2019-11-14 03:38:49.367000','2019-11-14 03:38:49.367000',5,'Mercenario Garcia','https://lh4.googleusercontent.com/-ZXtBit8iMC0/AAAAAAAAAAI/AAAAAAAAAAA/SnhqEp_QqWs/c-rp-mo-br100/photo.jpg','17898197009688164559',5435),('AIe9_BGhYIk2KhOdF8fekWDvq8JUq-Vf3GaQC5EIJ-5ILLWItMmhFg0NReh5xTfygPpaIw9fjbCr0w3K-gen4q2nAmQxTLdfvBQ8r1pMK4K6_vAaL6N5N9k','Great people and great service. They don’t treat people like a number! Would recommend to anyone. Great experience with Leah and Robin! Thank you both for what y’all are doing!','2020-07-31 15:54:06.629000','2020-07-31 15:54:06.629000',5,'Adrian Rubio','https://lh3.googleusercontent.com/a-/AOh14GjjE8qUadIDH3Q4KIkB-Y5Jc0zvkTMuz57uSqhc=c0x00000000-cc-rp','13486358490203335051',21840),('AIe9_BGhYIk2KhOdF8fekWDvq8JUqaOAsfiTIuLdQ0reGvXKCuAJltrXbPbPGqtUBIpikneTk-fH0oyPc0KbRoLX-UxGTV-IWB-o9MiZjY8XM_pnCvYp0oo','The visit was prompt, attentive, and an overall great experience. I was feeling very sick and didnt even want to go to a Doctor and wait forever to be seen. I was seeing a Doctor within 15 minutes of visit. I would highly recommend this place.','2019-01-24 15:11:29.406000','2019-01-24 15:11:29.406000',5,'BLANTDADDY','https://lh3.googleusercontent.com/-fG5VxY7DRUg/AAAAAAAAAAI/AAAAAAAAAAA/fAWctzVPXnE/c-rp-mo-br100/photo.jpg','13486358490203335051',1089),('AIe9_BGhYIk2KhOdF8fekWDvq8JUqFEOhNS3XCmElGyOOipnNXjbeWjLdNl1va40fFCr2a5jzhmHSJDObcbhW_E6StNrEPd6xUl2PISZErKKYFb8lbXaRC0','I Came To The Cypress Location , With A Neck Pain I Was Greeted By Jasmine With A Big Smile Ready To Assist My Problem , I Also Had Some Test Ran my Tricia Who Was Ever Gentle And Helped Throughout My Whole Visit Checked On Me Without Having To Ask , I Had The Best Beat Nurse Heather Who Made Sure I Was Comfortable Throughout My Visit And She Made Sure To Explain Everything To , And Of Course The Best Doctor Dr.O’Malley Not Only Did He Make Me Feel Better But Also Kept Me Entertained With His Story And Conversation','2019-08-22 17:33:54.373000','2019-08-22 17:33:54.373000',5,'Deija Roberson','https://lh4.googleusercontent.com/-aoXMnn60PYw/AAAAAAAAAAI/AAAAAAAAAAA/QCGvBTIGZCE/c-rp-mo-br100/photo.jpg','16389487648212004696',2982),('AIe9_BGhYIk2KhOdF8fekWDvq8JUqIlbeOjgND65-7uTqGIn1sjnFCVtRK-atvbo9cuX9ytR93GjenwpN517MzK2d7E8kkuYZdIdgWogBIIQijefhR6YNHo','I went to the urgent care here and Dr. Yost was so down to earth and made me feel like he really cared and was concerned. Kara was my nurse and got me settled in, Courtney, Shelbie made me feel welcome (greeted me so pleasant), Shannon and Jaylon were so sweet and attentive and did my blood draw very well. I’m glad that I came here because I know my lobby wait time wasn’t even 10 minutes.\nThanks Everyone at the Texarkana 2001 Mall Dr. Location \nDarnailya J','2020-02-20 23:38:16.035000','2020-02-20 23:38:16.035000',5,'Shay Jones','https://lh5.googleusercontent.com/-7ZM5i2xCcLQ/AAAAAAAAAAI/AAAAAAAAAAA/8PbtWmVQA2o/c-rp-mo-br100/photo.jpg','3272657195432704501',14336),('AIe9_BGhYIk2KhOdF8fekWDvq8JUqk9S0RME2zVRTV2dkpLhc5KW_kLmXq2iUdApQALf4XTWDYzP6XI-qBTefGXJdYK2ey7WDEhSk2YKzK5Rs5hFA1dijBQ','The staff is amazing!! We were seen very quickly. Ashley S. Was so helpful and so nice!! I will be coming here again.','2019-12-12 19:13:06.263000','2019-12-12 19:13:06.263000',5,'Ana Segovia','https://lh6.googleusercontent.com/-LMvbFlNY77U/AAAAAAAAAAI/AAAAAAAAAAA/TvubDE0DDfQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9033),('AIe9_BGhYIk2KhOdF8fekWDvq8JUQLOZ8u5vofr9rXcBOOVUHsAVHprARAGr1HDVpq6D4ArBDGHaz0h3AqQkirEQ8eyNP-QSb2bY-E1ehZBzE4kqvv9fAKc','I was in pain and they quickly took care of me!!!!! Will always go to them!','2018-12-24 17:58:44.364000','2018-12-24 17:58:44.364000',5,'Ramona Nutall','https://lh4.googleusercontent.com/-Wf8LVcduPN4/AAAAAAAAAAI/AAAAAAAAAAA/vKM3COQzqEs/c-rp-mo-br100/photo.jpg','14567670160750071148',1445),('AIe9_BGhYIk2KhOdF8fekWDvq8JUQN3z3cm46QhH5qyq38aN73goSm-50lDGnPGYP8PhQkBybJlJSO8kI1ZdBMtptBpSsX-zOcp_MQHjz1wQi1ki5CXy2AM','Awesome experience! Fast service! And wonderful care! Thank you to my wonderful nurse Lucas for all your help!','2020-01-30 15:37:33.808000','2020-01-30 15:37:33.808000',5,'Rogers Family Vlogs','https://lh3.googleusercontent.com/-atreHH4MP2k/AAAAAAAAAAI/AAAAAAAAAAA/KwG1-TEpfS8/c-rp-mo-br100/photo.jpg','3272657195432704501',10471),('AIe9_BGhYIk2KhOdF8fekWDvq8JUQnT5RgTb8HDH2PT9VNkOPAoWtJCqMK6FI6FpbBVRBLXPgSDjIkMc6mQV-sIoTr-d3RZBQ_INY6w_Ren2zpmfehy0x8g',NULL,'2020-07-06 01:15:50.577000','2020-07-06 01:15:50.577000',5,'Claudia Chacon','https://lh3.googleusercontent.com/-fAlN8XfWHnI/AAAAAAAAAAI/AAAAAAAAAAA/mzlROGSBdzE/c-rp-mo-br100/photo.jpg','3511292162159714121',21320),('AIe9_BGhYIk2KhOdF8fekWDvq8JUQoVQQhuvLzv4V3bNm4NCUpc46sBY8alf3bWzUi8N_hR46o0xvGOAiByDBFkXuV5NoZmFn4KAbH3HJ7JpVTnjRDc1SLA',NULL,'2019-06-14 18:25:48.255000','2019-06-14 18:25:48.255000',5,'Matt Duran','https://lh3.googleusercontent.com/-eD-HzfRi_9I/AAAAAAAAAAI/AAAAAAAAAAA/IaKju8nYo3I/c-rp-mo-br100/photo.jpg','13486358490203335051',960),('AIe9_BGhYIk2KhOdF8fekWDvq8JUQPg25sIEW3zCsPF4-YNNE0fQk2GBTkPhZgyMh0WCe5HrXeUwSC1lwcKvoomVmbzG5glD0PvffnTetXRlVG3IHHlPA60','Genesis was really helpful and conversational while getting checked in & seen. She made my experience better.','2019-09-02 17:24:43.118000','2019-09-02 17:24:43.118000',5,'CeeCee Vaughan','https://lh6.googleusercontent.com/-nu_setFLT6s/AAAAAAAAAAI/AAAAAAAAAAA/8a-jOAiGz8U/c-rp-mo-br100/photo.jpg','12541597562633926366',434),('AIe9_BGhYIk2KhOdF8fekWDvq8JUqPPn_ZVYlXFlFKWVVPN6OBXSmIrhfmbLl5VgaLdlf3N52ZhxFrQqSvnq4BQtRjJw6gTyvkrb5Da_UHFt5p9eORx4LwI','Worst experience ever! I know they are a private emergency room and need to attend to those patients, but if you are going to take appointments for a service people are taking the time out of their day to pay for, you should be efficient about it or only take on what you can handle. I have been waiting outside in the line for almost 2 hours and only then does someone come out to take a list for the line and said people can wait in their cars and will receive a text! After 2 hours!!! If they are going to have someone placed outside, they need to make sure that person knows what to say and what to do when a person comes to the door. I understand all these people are working the best way they can but so are so many other people! I work full time and on my day off I am here paying to get tested AND paying to have someone watch my children on my only day off! The doctors and nurses were very nice, but the older lady at the front desk and *security* boy outside should not be working there period. I also do not appreciate the employees texting back and forth talking sh*t about the people who have to wait outside! Will not be recommending people to come here for anything. Sorry not sorry.','2020-07-11 20:06:54.837000','2020-07-11 20:06:54.837000',1,'Jinnie Gaviola','https://lh5.googleusercontent.com/-OwRRPnReKTs/AAAAAAAAAAI/AAAAAAAAAAA/SIHkaCArQyA/c-rp-mo-br100/photo.jpg','14904078213800803294',21585),('AIe9_BGhYIk2KhOdF8fekWDvq8JUQumdgrnO3B2s9tGkllj1ML2Q0WbFFToRg_qWulT1-svo_nt9ru-weugHa5ARV0VlglgTWB_H9I2K5b8gpLVhSJyRHyE','Attentive and quick','2019-06-14 19:22:02.532000','2019-06-14 19:22:02.532000',5,'Daphne Milton','https://lh3.googleusercontent.com/-ode39ieQQ04/AAAAAAAAAAI/AAAAAAAAAAA/QXE8Dh2LORE/c-rp-mo-br100/photo.jpg','14567670160750071148',1306),('AIe9_BGhYIk2KhOdF8fekWDvq8JUQVVAXxyixbqyFsD4z1xiYYVJYr11F6ktEiZ5VgzqmfM8zBVA4yFLPJxA5Y8uNgRXiMRDAcWH7cBANsNe2Rs1x2uVN2w','I have been to this location 3 times. The 1st two times were great. But this last visit was truly amazing! From the receptionist Cynthia Joyce who was very caring from the time I walked in and worked swiftly to get all paperwork done and out the way so I could be seen expeditiously! The first person you meet when walking into a place will definitely set the tone of a place. This receptionist definitely set a positive calming caring tone for Signature care! \n\nTo the nurses L J & Hoan H N who came and got me right away and spoke with care and concern! They were gentle and I did not feel rushed! They made sure I had a blanket/s and that I would be as comfortable as possible. The doctor DR. MORRICAL, MD, STEPHEN O who took his time asking questions trying to narrow down the issue and making sure that I had the proper meds to help calm my pain. He was understanding, attentive, and calm. Again I did not feel rushed! The whole staff worked as a team and communicated very well with each other and communicated with me. That\'s what really made me comfortable knowing they worked together well and the timing. They worked fast to get you the care you need and to get you out. They don\'t rush you but they also don\'t drag things out like a regular ER does, where you are there for hours and hours. And upon leaving again the receptionist was amazing and caring! \n\nI would recommend Signature care to anyone who would ask where be the best place to get fast and efficient care? Signature care!! \n\nGreat job guys you guys were amazing on 08/04/19!! Thank you thank you thank you!!!🙏🏾🙏🏾😘😘','2019-08-05 11:45:21.866000','2019-08-05 11:45:21.866000',5,'Ms. crayton','https://lh4.googleusercontent.com/-lPT0iBfCJZs/AAAAAAAAAAI/AAAAAAAAAAA/-bCo3EQ4ijI/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2104),('AIe9_BGhYIk2KhOdF8fekWDvq8JUqZ4UA5qTSqZPvDg7iU8jTakTSZtSZm3Rk1g1cahLmd8K2IMilcpUXyJLNtivL-2_zMKupfqJfC_Rh38Yo5oHPns7Ha8','The staff was very welcoming and very professional. Samantha, Ricardo, brandon & bryan D, and Ricardo gave EXCEPTIONAL SERVICE!!!','2020-08-10 07:42:13.750000','2020-08-10 07:42:13.750000',5,'Bernie Vargas','https://lh5.googleusercontent.com/-1xv2pQ2XFKk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclGh47SyroHsBFfB7spyjtjIf4LAg/c0x00000000-cc-rp-ba2/photo.jpg','14567670160750071148',9967),('AIe9_BGhYIk2KhOdF8fekWDvq8JUqZa2YbOgFQYbZMkMrVcjao1hWwzYgQ-837blQXR5dhYPmZa8nvVxm7Db-0YNfSgQFvt6TBNDaJaj6bsKuFD-BQTszUw','Signature Care ER is absolutely amazing. From the quickness with which they start providing exceptional care to the thoroughness of all the medical professionals here, everything was phenomenal. Thanks to Dr. Dendy, Nurse Nicole G. and Brandon W., tech Andrea, registrar Vanessa G. And Rad tech Dustin H. Y’all al Rock!','2019-12-22 02:09:10.511000','2019-12-22 02:09:10.511000',5,'Jesse Reed','https://lh3.googleusercontent.com/-O948te60PZo/AAAAAAAAAAI/AAAAAAAAAAA/czC6L_OmYKI/c-rp-mo-br100/photo.jpg','14567670160750071148',1169),('AIe9_BGhYIk2KhOdF8fekWDvq8JUR0epd5Uym4yODoFoRK1JdIVkwcWJlsT19JEVQe2fLQbJdWxWJTxECySWvckqFmp0VFoQK6TzvBLvywa7O2988utDDfM',NULL,'2019-10-15 20:16:22.960000','2019-10-15 20:16:22.960000',5,'Eden McDaniel','https://lh3.googleusercontent.com/-fz7exHYCShA/AAAAAAAAAAI/AAAAAAAAAAA/tXBpP73PvBE/c-rp-mo-br100/photo.jpg','3272657195432704501',6881),('AIe9_BGhYIk2KhOdF8fekWDvq8JUr1sb8B4qfWQKrI5Euj18O0KiHpl8TXb1a0BlQkizlTj_oZQO2DrqCDnZTqTEyjHYKUmq-ZbQyNhtPYa9KAQvE71-2vE','This place is fast and friendly Dr Was knowledgable and easy to talk to will definitely use them again should another problem arise and my Nurse Kaiti was amazing','2020-01-09 22:24:58.599000','2020-01-09 22:24:58.599000',5,'Mindy Wilson','https://lh6.googleusercontent.com/-q1keR2Nnabs/AAAAAAAAAAI/AAAAAAAAAAA/9Pm2sxDj-RY/c-rp-mo-br100/photo.jpg','2694018788013845459',14274),('AIe9_BGhYIk2KhOdF8fekWDvq8JUr4O3TTVOneYQ8th9kb1rZ7S2QYXCPnuiRaXoVvesR8q77URX4xUMjYlo6LFFaHyE2Dvn1hdHxlg59lYYWneKk204eu8','Nurse Myra F. \nRad tech Jessica’s\nER tech Matt\nRegister Ashley\n\nThank you you guys','2019-05-31 19:36:38.395000','2019-05-31 19:36:38.395000',5,'Christina cisneros','https://lh3.googleusercontent.com/-4eLt_vQvnSE/AAAAAAAAAAI/AAAAAAAAAAA/gYpiwyitUjQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5716),('AIe9_BGhYIk2KhOdF8fekWDvq8JUR9jkldbVS96crAkwutIkJlaoWMTwb8LVebdUtuCcpB8qSP-Kf8Ux5diDBKg6OJi-x_NGtTO_bSw4t2Q4vKBTHMhk4ac','The staff here are excellent and very attentive. Got right in and was able to talk with the doctor more than I have any time I’ve seen a doctor elsewhere. They have everything in the building so you won’t have to be outsourced (except for MRIs). I would also like to commend Dr Huerta and nurses Savanna/Corey for their care. I would highly recommend.','2019-05-22 14:37:28.537000','2019-05-22 14:37:28.537000',5,'Cody Keenan','https://lh6.googleusercontent.com/-sEI2BBBkGDY/AAAAAAAAAAI/AAAAAAAAAAA/eAOrnsTG91Y/c-rp-mo-br100/photo.jpg','13486358490203335051',1001),('AIe9_BGhYIk2KhOdF8fekWDvq8JURaRVKnPF_KGOeYdJZQWRuPwPiANT2c3cpnfm09WlL6v8oNwo-Gb4n__wwpr1_IYIB0dlnLjCDGwMFN806FG1JadvftM','fast service and the staff is friendly and polite. This is the only place I go to if I can\'t make it to my doctors in Houston!!','2019-06-16 00:18:51.422000','2019-06-16 00:18:51.422000',5,'Faith Coward','https://lh5.googleusercontent.com/-2mLwZLrW7JY/AAAAAAAAAAI/AAAAAAAAAAA/Hch4rM4IEPc/c-rp-mo-br100/photo.jpg','13486358490203335051',957),('AIe9_BGhYIk2KhOdF8fekWDvq8JURfV7RuODN85CnZm9X9ciCXKRqGlcOsZ5i6H9ssvRUj2-ky1wRtnvN78r-R1hCDjRZe1_uaRK0sIfr0I3Kjo9SdrA6UA','This has been one of the most amazing urgent cares I\'ve ever been to. The staff is so kind and so loving. Definitely will recommend this urgent care in the future!!!! ','2017-05-05 13:07:35.933000','2017-05-05 13:07:35.933000',5,'Brandy Ramos','https://lh3.googleusercontent.com/-yb_B1_3gDPI/AAAAAAAAAAI/AAAAAAAAAAA/ueB2G987aEw/c-rp-mo-br100/photo.jpg','14567670160750071148',1830),('AIe9_BGhYIk2KhOdF8fekWDvq8JUrirNvq0RMTcXozLcutbRDpZL890HosBzngcgYXqBduNdbRDqxCDTs42NsM7qlvPwzhejih4xRcf7Djosz2NoM3jbIHA',NULL,'2017-11-14 22:33:45.993000','2017-11-14 22:33:45.993000',5,'Victoria Zamora','https://lh5.googleusercontent.com/-j8PIv7k53Y8/AAAAAAAAAAI/AAAAAAAAAAA/NAI2-WotQFE/c-rp-mo-br100/photo.jpg','16590124370714063921',3906),('AIe9_BGhYIk2KhOdF8fekWDvq8JURlg-9fqZqkGsMin9arlLtxeuQs2dHd5F-w8dHD8l0khdM8Pb1jygGHSWpA0jcHXtonDrsrsKlIwaxAdJOx8imIJFaio',NULL,'2017-11-17 06:27:13.904000','2017-11-17 06:27:13.904000',5,'Jonathan Nguyen','https://lh3.googleusercontent.com/-KYT7phzj24U/AAAAAAAAAAI/AAAAAAAAAAA/WCiaXROHQKA/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4932),('AIe9_BGhYIk2KhOdF8fekWDvq8JURnddKQbUByuV3CuCEtXEhTf3QLYwh0r77Wh4lnbPmELlI_-y3i1KuJcdnP7og20hxXOZr-yoUoXDLEnQzZ97XVZ4MBk','Dr.Anthony did an outstanding job making me feel at home and talking me through everything that needed to be done, everyone in this clinic did an amazing job including the front desk girls helping me write down info due to my broken hand. Thank y’all!','2018-04-02 22:22:48.481000','2018-04-02 22:22:48.481000',5,'Cory Rogers','https://lh5.googleusercontent.com/-j7dqHcIGoDg/AAAAAAAAAAI/AAAAAAAAAAA/8l7hrdBvvLg/c-rp-mo-br100/photo.jpg','16590124370714063921',3844),('AIe9_BGhYIk2KhOdF8fekWDvq8JURNow30GFuPGmSGwRFCgjjQVwUvptCO6qYHYKIyI04eVGbTUMToSy2YzolWjPpX05I2kXVS02pemIJX-7VdQazzsyV8Q','Had to give a star, it would not let me give none. I had appointment for covid test at 4 pm. I showed up at 3:40pm according to their procedures. At 6:05 pm still waiting to be attended. Horrible system. Dont understand what\'s the point of appointment.','2020-07-13 23:14:31.284000','2020-07-13 23:14:31.284000',1,'Pragneshkumar Patel','https://lh3.googleusercontent.com/-Ai46vQGQkJM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmsvEWbkcwGNMzHuAuMgIDDK-BUfg/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22076),('AIe9_BGhYIk2KhOdF8fekWDvq8JUrozeGmceUZIWT2tNjj2F6Sz1I_TZOomXaXFQvDAL4N3eJl7O6_niNw3vNo-wop40XiMJ5IordKllwMYkRO6QjlBbBPI','Thank you guys helped my boyfriend in a fast and careing way no other pleace has','2019-06-30 23:59:21.467000','2019-06-30 23:59:21.467000',5,'Caraline Ward','https://lh3.googleusercontent.com/-30mlQEcmEFQ/AAAAAAAAAAI/AAAAAAAAAAA/PZVZ7BoOVWc/c-rp-mo-br100/photo.jpg','2694018788013845459',6124),('AIe9_BGhYIk2KhOdF8fekWDvq8JURPSZEEoRnVcezHIv2vtquwRHP_AgaiElFRzh17JQxkxMlOp3imxyEO9JZC7yeKSIEkLTPaGkSR2dJcQ052WbBacXQ0M','Kendra did a great job of getting my friend checked in at the front desk','2019-12-08 18:24:24.480000','2019-12-08 18:24:24.480000',4,'Hailey Angst','https://lh5.googleusercontent.com/-_kmutfiO09M/AAAAAAAAAAI/AAAAAAAAAAA/0UZyMN04-0w/c-rp-mo-br100/photo.jpg','16590124370714063921',3030),('AIe9_BGhYIk2KhOdF8fekWDvq8JURQh9o_KlDKxQ_ZH9hc61pBIBkZfpV3RcUDdeF9B1rg4IbiTeS96epqJ6G6h33YIc1hvgkhmNnyuwKTG7mVGIhODBc70','This experience topped what I call customer service and care in a health Care facility. I was not only in and out but the staff and Dr. Leung and Nurse Katherine were very caring, professional and amazing. I would choose this facility over any other emergency facility in Killeen.','2020-01-05 01:04:14.245000','2020-01-05 01:04:14.245000',5,'Krystal Fuller','https://lh3.googleusercontent.com/-3EPWK93QTow/AAAAAAAAAAI/AAAAAAAAAAA/ienxQUiCkdE/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',14277),('AIe9_BGhYIk2KhOdF8fekWDvq8JUrtPLygVJxg9iWwVK8KjKMSLy5Gshg9j2uWUMOrDSTnkQSg2haZJSRu_qC7yYA2pBu1HaEpJaP6cRtAnQ17jbKNrDNQo','Fast friendly service. The staff takes the time to explain and answer questions and concerns. The facility is top notch, each room is clean and equipped for all medical needs. Thanks to Patricia, Alvean, and Zeik for all the great care and friendly service','2020-02-23 19:15:44.241000','2020-02-23 19:15:44.241000',5,'ray wong','https://lh5.googleusercontent.com/-cupxJaFCnoI/AAAAAAAAAAI/AAAAAAAAAAA/lb0A7Xj2Wi8/c-rp-mo-br100/photo.jpg','16389487648212004696',13772),('AIe9_BGhYIk2KhOdF8fekWDvq8JURtzATEW7lF8jDKYrUPonNqZx8oSUXwi0opnvkL_Uw9IeJ39wdxn1cKnYEeYNWeSG8H_k6tZ5RUZG0FYawdwxdtFyG_8','Having to go to the ER is stressful in itself, but the sincerity of the staff at Signature Care made my trip easy. Everyone was attentive and helpful. If I ever need after hours care again this is the place for me.','2018-04-09 15:44:04.148000','2018-04-09 15:44:04.148000',5,'Sunshinefairy1','https://lh5.googleusercontent.com/-Tszkyu-cdcg/AAAAAAAAAAI/AAAAAAAAAAA/h7xGyfdmDLg/c-rp-mo-br100/photo.jpg','16891069708558046635',4490),('AIe9_BGhYIk2KhOdF8fekWDvq8JUrXsJoAOScZ00qIGKoD9Nvyevu3GR_4oEVHAY8zJZzeCv9QzrzC_NVZnqVSxFa8tS9tTw1rsLMI8DXbZFXVU9uBP9JrM','Best ER service and hospitality ever experienced. Kendra helped check us in very quickly. Recommend to anyone.','2019-12-09 15:57:15.902000','2019-12-09 15:57:15.902000',5,'Walter Hood','https://lh3.googleusercontent.com/-IpwOpdZFlsA/AAAAAAAAAAI/AAAAAAAAAAA/_nd9YCRNUeI/c-rp-mo-br100/photo.jpg','16590124370714063921',3027),('AIe9_BGhYIk2KhOdF8fekWDvq8JUs1hxQzGcX8mZrA1Xa9dyo1yXYebR0uU9wG4ZhoQjCi6NuPZB8F3lYvkdamy34P-98RclvCdq1t-4m7eDSJk5QANn6po','Such an awesome experience. Everyone was helpful, I got in immediately and Keera, Gabe, and Stephanie was extremely attentive! 10/10 recommend and will use SignatureCare again!','2018-09-01 06:40:54.316000','2018-09-01 06:40:54.316000',5,'Abbey Riggs','https://lh4.googleusercontent.com/-hD4s_2Q3dY4/AAAAAAAAAAI/AAAAAAAAAAA/zpunDerYods/c-rp-mo-br100/photo.jpg','16590124370714063921',3752),('AIe9_BGhYIk2KhOdF8fekWDvq8JUsepPsoxpGxld__g1i1gpJYGqTnAzh4bThGw9pdigWP2VZZxqcwuUxY3KLSPciJ9yctGwQUFkRTHYNisdcRBlx7fWudQ',NULL,'2020-07-02 01:03:07.702000','2020-07-02 01:03:07.702000',5,'Marvin Alvarez','https://lh6.googleusercontent.com/-PDN5hK40wUE/AAAAAAAAAAI/AAAAAAAAAAA/OjNpBYzNOz4/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',21400),('AIe9_BGhYIk2KhOdF8fekWDvq8JUSgA7S7Yz-bkBR3kbba1kxE9o1uUs6gvgF2jkuoznkg-hNGh-TX8mrraSWbUqIwi11RFtXP24zE6mTOtuu4QirR7In_M','Great service! Patricia been helpful since I walked in! Great place, Thank you.','2020-02-14 23:21:17.780000','2020-02-14 23:21:17.780000',5,'Brayan Robertson','https://lh6.googleusercontent.com/-GG52vmscYao/AAAAAAAAAAI/AAAAAAAAAAA/UMYhfZjwwEw/c-rp-mo-br100/photo.jpg','16389487648212004696',10877),('AIe9_BGhYIk2KhOdF8fekWDvq8JUsh1j6Yz9OKIrbXs5eaCZdSaxHwrdVQzW5cUWTQv53JW2tQ8QtDnw78n7t9kDkRaFcAMLNKe5Ar2e4k-BdNMY2gKvK0Q','Took my girlfriend here for a minor issue with her eye. Staff were exceptionally considerate with her issue and kept being positive throughout the whole process. The ophthalmologist was an hour n a half away stuck in traffic but we didn\'t mind waiting. When he got there he was very nice and informative with her questions and even though we didn\'t get to fix her problem he was very reassuring and recommended waiting a week before running more tests (very budget friendly!!!) ','2017-09-07 22:03:16.726000','2017-09-07 22:03:16.726000',5,'Mariano Morales','https://lh5.googleusercontent.com/-nLJNovrRC6s/AAAAAAAAAAI/AAAAAAAAAAA/YuGDWnq1jyQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1759),('AIe9_BGhYIk2KhOdF8fekWDvq8JUSJnc-RPIEy0oSeI2fcVKGyDF-ZfzYp2u8qhgiHWWAzHSo0hArhj6F0SmMamaOWN-ZtMT5dWxFP1GpChcY5TwjMEL0Gc','The nurse, Jacob, and the doctor, Edozie, were both very caring and made sure I had everything I needed.','2019-02-20 15:25:16.771000','2019-02-20 15:25:16.771000',5,'Caitlin Rothell','https://lh6.googleusercontent.com/-WzM_P2lN3VM/AAAAAAAAAAI/AAAAAAAAAAA/RPkaS_xHLYw/c-rp-mo-br100/photo.jpg','16590124370714063921',3537),('AIe9_BGhYIk2KhOdF8fekWDvq8JUSNY_Bwkkub5oeylMe6VJiv7RbXbnYqWhcfREGXvcxPPc5gHslaSXMUAa5yyrmCEt4uuoMsQNEYg9eYHYQmMyNRRY3Ag','ER Tech Leah was very compassionate and attentive to my concerns & symptoms. Highly recommend this Signature/Care emergency center.','2020-08-01 16:02:40.990000','2020-08-01 16:02:40.990000',5,'Leslie Hinton','https://lh6.googleusercontent.com/-2MBeUhRdyMg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclFJYQbLip2dplLBCYQm5rpcxkgaQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21837),('AIe9_BGhYIk2KhOdF8fekWDvq8JUSouVXEbuKg8_UgL67mmyvdxJ8tlYPIV2P2F1SVajlGeEKI_QEhkpf3p1s9TqCYQEIUpUgkwyBnz76_xAMByF2rHGt0E','I have been here once and had to bring my daughter on another occasion. We were both treated promptly and everyone from the staff in the front to the staff that treated us were very friendly and caring.','2019-01-21 17:32:55.685000','2019-01-21 17:32:55.685000',5,'Karley','https://lh5.googleusercontent.com/-xPlpzmWRJxA/AAAAAAAAAAI/AAAAAAAAAAA/3FXImEzFqm8/c-rp-mo-br100/photo.jpg','13486358490203335051',1099),('AIe9_BGhYIk2KhOdF8fekWDvq8JUSPlUKFrjJbtxtiMkXQl0kMPpEygvzpZL-PA3R_F7ZY3br0HrbqviT77NxypMdGhpPwSnZ0VQbrNy2W0JL0yOnFwC-Uc','They were very kind, helpful and diligent! Thank you to Dr. Mauldin, Jose, Alvean and Patricia.','2020-01-25 20:08:46.425000','2020-01-25 20:08:46.425000',5,'Amber Orr','https://lh4.googleusercontent.com/-Z-DQjLRJZSw/AAAAAAAAAAI/AAAAAAAAAAA/YWdyLz638Eg/c-rp-mo-br100/photo.jpg','16389487648212004696',10179),('AIe9_BGhYIk2KhOdF8fekWDvq8JUStWwSba5a1gLEmLj_Gd0mundxGMuyOIdQym2828KuAX85ldmcBaBDIWdw5YGb7DX9EnBlpXpuu28bQn5e-osyC6DXUY','The waiting area was very clean and the receptionist was friendly. We did not have to wait longer than 5 minutes to be seen both in the waiting room and patient room. Nurse Theresa and Dr. Petter were both warm and caring showing our daughter she had nothing to be afraid of. Our questions were answered throughly and we left knowing how we could give her the best possible aftercare. We were there no longer than one hour. We are pleased with the care given to our daughter and will return for any future after hours care. Wonderful experience overall.','2020-03-09 13:46:41.716000','2020-03-09 13:46:41.716000',5,'Angela Marquez','https://lh3.googleusercontent.com/-BQC-h_VSNjI/AAAAAAAAAAI/AAAAAAAAAAA/CEssoQomRAc/c-rp-mo-br100/photo.jpg','6521947413723274945',21174),('AIe9_BGhYIk2KhOdF8fekWDvq8JUswaZMU0fSo3NvTP8cpmvw2ND36fcY6VbSov-6YxZljLG4DuOzwa7QxZ_D5zYUf2q-_qk6kMMY0fAjVQ0JxchNTQ0W-k','I had the pleasure of being take care of by Karen(receptionist), Julia(Radiology Tech), Kelly and Shawn(Nurses), and Dr. Garcia! Even the facility manager came to check up on me. They were so amazing! Very kind and they were really concerned. I was offered warm blankets, given many accommodations! If you are ill and needing to go into an emergency room, I would highly recommend Signature Stafford location! Thank you all for everything, and thank you for all that you do. You guys are all so amazing!','2020-05-20 20:35:21.498000','2020-05-20 20:35:21.498000',5,'Courtney Jackson','https://lh5.googleusercontent.com/-0gzH4sBX6YY/AAAAAAAAAAI/AAAAAAAAAAA/qZkk72KsOCw/c-rp-mo-br100/photo.jpg','8918455867446117794',22945),('AIe9_BGhYIk2KhOdF8fekWDvq8JUsWMH9ZUEb_pz80yJqwj1iGwv04aU4ecQvux2F2Y3bWZEdIIj-6OGduucXm1COlFVk-Vmmu9gq_qVbboXTAqkTsHdpeE','The entire team was excellent! There was no wait, it\'s a very clean facility, the nurse was so sweet, she really took great care of me. I came in during Memorial day weekend and was able to be treated right away for a stomach bug and severe abdominal cramping. The discharge information given was very clear and they even called the following day to see if I was alright. I would definitely recommend them and would rather drive further to this facility rather than the North Cypress ER, which is closer to my house. The service and care you get here is exceptional.','2019-06-16 14:22:03.138000','2019-06-16 14:22:03.138000',5,'Julie Nguyen','https://lh4.googleusercontent.com/-3zk66HyeYio/AAAAAAAAAAI/AAAAAAAAAAA/khSJ1oFdHmI/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5699),('AIe9_BGhYIk2KhOdF8fekWDvq8JUSwyJD5uhD_WkdvygrL-dB1-V5VRmletD8ogcs_OPuoFxWOO0HMGW-92sDkSVS6LWFQZjeqk6vcoXJ0mfO-hU_sRs7tE',NULL,'2020-07-22 17:56:12.777000','2020-07-22 17:56:12.777000',5,'Carla Butler','https://lh5.googleusercontent.com/-DA7XnSxcBCY/AAAAAAAAAAI/AAAAAAAAAAA/A5uroIWxZhs/c-rp-mo-br100/photo.jpg','8918455867446117794',22307),('AIe9_BGhYIk2KhOdF8fekWDvq8JUSyHJy9QLXbOvKIs26aghLD0XbHTiCl1PRxYw8nJfEnoYxeLijDO1Sms_ZOZv9w5-fkdx2h6cUH66n198ElGFxLmaogc','On Tuesday I went to SignatureCare ER facility for emergency care due to Severe abdominal pain. It was first time to be in ER. The entire staff took excellent care of me from beginning to end helped me to stay as comfortable as possible. I would like to say Thank you to Dr. Ashbrooks and the entire staff. Thank you for taking such good care of me! I am forever grateful. Thank you again to Dr. Ashbrooks and the entire staff!!!!','2019-02-01 18:47:56.966000','2019-02-01 18:47:56.966000',5,'Sapana Hardik','https://lh6.googleusercontent.com/-z_-h6URyowo/AAAAAAAAAAI/AAAAAAAAAAA/PiRtXKYZaqA/c-rp-mo-br100/photo.jpg','3272657195432704501',7032),('AIe9_BGhYIk2KhOdF8fekWDvq8JUSYs6K3VZMkGjIMDENhOsoqW6fgI65yU5NuzlPKHbX0tFVd4OayKv1FfxCRugYnPR2QSvqX30mZCV5NWz2axqO9qVzes','Dr. Henderson and Mollie did an excellent job of taking care of my issue. They were both kind and caring. Mollie went above and beyond to make sure I had everything I needed. I recommend them for all\nOf your emergency room needs.','2020-08-12 01:11:21.140000','2020-08-12 01:11:21.140000',5,'Whitney K','https://lh3.googleusercontent.com/a-/AOh14GgADhJWBWMbDVE1HCuAkuQy74eXEvM-N7Ppw-cInA=c0x00000000-cc-rp','3272657195432704501',23073),('AIe9_BGhYIk2KhOdF8fekWDvq8JUT_hFt8N3QW6XGjrIaQT8QMsxLiXBiO6gR9JdhAO6tGnQPi-Mv6x8uvcZTP9Q5W4EbfMFtlIv4-evgcF3ppymkvWIwlQ','I was seen here a few weeks ago and will definitely come here again if I ever need too. Fast, friendly, and great service! Thank you Jessica S for helping me with all of the paperwork. That alone is a lot!','2020-02-13 22:12:28.251000','2020-02-13 22:12:28.251000',5,'Danny Cardenas','https://lh3.googleusercontent.com/-_l1ybGeqD5U/AAAAAAAAAAI/AAAAAAAAAAA/zDA5Y_mih8k/c-rp-mo-br100/photo.jpg','6521947413723274945',14578),('AIe9_BGhYIk2KhOdF8fekWDvq8JUt9kqJaD7_BxiRuEESrFACN8uihzAHYH6A7lZeojJtJzMtBl5pHkJouDpA00hr_QoH2Vplrzhutdc6tl4LlypgHsP4_0','The BEST place to go for any medical needs. they are the kindest people who treat you like family and truly care. I recommend them to everyone!','2019-06-26 15:09:43.749000','2019-06-26 15:09:43.749000',5,'Caitlin Cunningham','https://lh6.googleusercontent.com/-Rq149HxFru0/AAAAAAAAAAI/AAAAAAAAAAA/Ce-SgBaovKU/c-rp-mo-br100/photo.jpg','14904078213800803294',2123),('AIe9_BGhYIk2KhOdF8fekWDvq8JUTAb2-3h6PrqX8yl2dHI00OA9WU3FImtBjRXUSIVpyRgvLYHXFYfP5ijhmDygw_Wx8pTMRToOkmab9GnrGZ6UY-MSbaI',NULL,'2019-02-03 13:48:42.039000','2019-02-03 13:48:42.039000',4,'Bobbie Allen','https://lh6.googleusercontent.com/-JVu0IWZ4VVE/AAAAAAAAAAI/AAAAAAAAAAA/4sR6LZ9lcRA/c-rp-mo-br100/photo.jpg','3272657195432704501',7028),('AIe9_BGhYIk2KhOdF8fekWDvq8JUTG2vtZhSWGAs6LxKFFgFy36smQrDLy1VmmnBU5qlnQmef2snK2OUtz6DysFiQ0yltNiZhNYDvnYFIhNx8whXf8NWvGI','This is my second time here for a covid -19 test after being exposed to a positive case at work. The first time was about two months ago when covid cases surged in the state after reopening. It was crazy, as the line to get tested wrapped around the building and it was an 8 hour wait. Despite that and the expensive copay through my insurance at the time, results were instant and it was worth it. The staff was also very attentive and helpful, especially the nurses administering the test. I would have rated Signature Care a 4 at that time.\n\nThis second visit has been even better so far. A new system significantly cut down the wait time so that you are in and out with results in ~30 minutes. There is also no cost this time around. Jacob was the nurse I got tested with, and he was great both times. He even somehow remembered me the second time around! There is literally no excuse to get tested if you think you have been exposed to protect the others around you.','2020-07-27 15:07:01.518000','2020-07-27 15:07:01.518000',5,'Pierre Lau','https://lh3.googleusercontent.com/-YnQvDgtmmpM/AAAAAAAAAAI/AAAAAAAAAAA/GB0ny1xs85U/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',22016),('AIe9_BGhYIk2KhOdF8fekWDvq8JUTmRGk9MnOzoop73RU4RzlmxrSOIfZKMA_op1SfPLrqKjX_1vYBjLUonkJY5jjIaN7WY8Xes5pOK4BPaONcZGQ2TKSVk',NULL,'2020-07-07 15:30:22.289000','2020-07-07 15:30:22.289000',4,'Karina DelCastillo','https://lh4.googleusercontent.com/-4In-Nd6TP3c/AAAAAAAAAAI/AAAAAAAAAAA/SEGhSfzd_A0/c-rp-mo-br100/photo.jpg','14748677429039074158',21383),('AIe9_BGhYIk2KhOdF8fekWDvq8JUtMSKyisn640_TTeIGWl8KaI0joFq3tGbEwPKufyFdnL5sH851c388QoPmZIvyGrAFW8-5-LwhxpqhjLAuZVsVbN3AwM','Very friendly staff and super quick to get seen, as soon as i walked in i was welcmomed by keera, she was very friendly and helped me right away! The nurses and doctors did everything they needed to help me and made sure i left completely satisfied!','2018-11-08 07:00:14.436000','2018-11-08 07:00:14.436000',5,'Lexie Ofczarzak','https://lh5.googleusercontent.com/-tb8eotd2xTw/AAAAAAAAAAI/AAAAAAAAAAA/LIy5MAdzC8I/c-rp-mo-br100/photo.jpg','16590124370714063921',3656),('AIe9_BGhYIk2KhOdF8fekWDvq8JUTNJ0Qvb1_fczn25OfQVXQPTJaJ7BNNaenck3QnzIsroyTZ-MB6OHZ5X6fXZAr8P3TlcdLxhgVzJTTyBXm8hJMLPhL5w','I am glad I came to this facility, the staff is wonderful and the service is quick.Dr Elsbecker is a wonderful physician and nurse Araceli was helpful and very polite. I would recommend anyone who doesn’t want to go and wait in the ER or Drs office to come and give them a try. I have gone to other places and this by far is the best medical office I have been to. They treat you with kindness and really do care about patient wellness.','2020-02-27 19:48:33.118000','2020-02-27 19:48:33.118000',5,'Pete','https://lh5.googleusercontent.com/-iavigi6d-4I/AAAAAAAAAAI/AAAAAAAAAAA/g3Wvq4qXpJc/c-rp-mo-br100/photo.jpg','6521947413723274945',14536),('AIe9_BGhYIk2KhOdF8fekWDvq8JUtQiRu9l-or64Wh4MlCLtROOjrog29nxYbpBz_MgMPkdlbtPP-pPMrHQBBWXjrlPaZ7cgXOfFY3QZ9pZrmiw30VnGEfw','Horrible staff , I recommend people to not go there . rather make a long drive than to go there !','2016-11-02 15:19:42.081000','2016-11-02 15:19:42.081000',1,'Joanna Martinez','https://lh5.googleusercontent.com/-SyAQAG2rIlY/AAAAAAAAAAI/AAAAAAAAAAA/M4fF3leWYuQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8921),('AIe9_BGhYIk2KhOdF8fekWDvq8JUTQwGnxYu9PCxSrf9jLX2CWixkk2sVm4l1TTzwLDifT1BxJx9-4xwu4qvhRHAg99UFrEHcZ_ThIyEA_-J0Hr5LFIENAI','Staff were extremely professional and polite.','2020-06-16 22:19:55.444000','2020-06-16 22:19:55.444000',5,'Whitney Wyhs','https://lh6.googleusercontent.com/-uFeRmx3jmzw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnIqTe_4ZJ7UCBAmRGejS5typ95bA/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21126),('AIe9_BGhYIk2KhOdF8fekWDvq8JUTRTW0icvAcge9Mj6OyG98yGK57VKH17EvoGqrJzAWQZYT5Zcda2oRuwZh5cZcn3msYulBZeR0-uBrtAumu5eoOcaP4k','Do not believe all the reviews on here. These guys pretend to be nice but all they want is your money. I had an acute condition. I had to frequently call in for my test results. They put you on the phone forever and patch you up to 6 different people. The doctor that saw me was ok , other than that everything wasn\'t right. Be mindful that they want you to leave a good review and I fell in that trap. No follow up whatsoever.','2017-12-27 21:28:11.323000','2017-12-27 21:28:11.323000',1,'Tosin Bamidele','https://lh4.googleusercontent.com/-h15aErfnb3Y/AAAAAAAAAAI/AAAAAAAAAAA/HPKPepK7-XQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9315),('AIe9_BGhYIk2KhOdF8fekWDvq8JUtsMNRwVrLBjpSuT-vekiGmRrrbk5nQ6QbU4KC8VjHF2GbcTwARJJHYKIs1fHMsSxEnyrz6OyEKWbtzzPvRS8EpzILtU','Well I done broke my leg and I have no health insurance. I can not assure you would be charged the same rate as me because every injury is different, but they gave a full assessment with xrays and a splint/boot for $500. If you have ever been to the ER then you know this rate is unheard of. Very nice and professional staff. Thank you guys!','2019-04-04 17:02:26.168000','2019-04-04 17:02:26.168000',5,'MOTTOTROOPER','https://lh3.googleusercontent.com/-CFDXs74UG2k/AAAAAAAAAAI/AAAAAAAAAAA/3GqQ1g7UGgY/c-rp-mo-br100/photo.jpg','16891069708558046635',4305),('AIe9_BGhYIk2KhOdF8fekWDvq8JUTsUw_2KXvVf_pkWLxAf-8LSihUcv6Gob8RhYjQOLSBcExCnTugBL__iAu2NStm-x8hxMqIrEl7_qspBeFIlsErIKa3A','I just went there for a Covid test and they were super friendly, very efficient and felt safe ! Thank you','2020-06-27 02:18:48.795000','2020-06-27 02:18:48.795000',5,'Damon Brenner','https://lh5.googleusercontent.com/-8wlknlD-3NE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclTpSfxTw0qUg2q4lRijg83nDwPrA/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21256),('AIe9_BGhYIk2KhOdF8fekWDvq8JUTVnuFPrLLgezXqc_H4BNhl7dk_7BPAUWjKmp1z9bliIvodfMWNnj3N_YBg6NBlK2E425yHQpeUMI3iKEpWHnCvQcaag','Wonderful experience. They addressed every problem that we had and i felt welcomed when I walked in. They even gave warm blankets and something to drink. Samantha, Cristine, Joe, Ricardo and Dr. Jaber.','2020-03-02 01:44:44.204000','2020-03-02 01:44:44.204000',5,'Kylen Phillips','https://lh3.googleusercontent.com/-ByclpDb6dAo/AAAAAAAAAAI/AAAAAAAAAAA/4egnLK4LUm8/c-rp-mo-br100/photo.jpg','14567670160750071148',13505),('AIe9_BGhYIk2KhOdF8fekWDvq8JUu_owWBlok394GM-zlCdQvmmKkkHG3y6LMxfWQaEkhwCWQXLaqceGH3kpM8Sr5Q7k8kamUdliSL0o8OvIrneHY1Tvc0A','Staff was very friendly and efficient','2019-06-17 14:52:47.191000','2019-06-17 14:52:47.191000',5,'melinda enriquez','https://lh4.googleusercontent.com/-QKzKOF4I2pI/AAAAAAAAAAI/AAAAAAAAAAA/bJM27VCJpgM/c-rp-mo-br100/photo.jpg','6521947413723274945',8231),('AIe9_BGhYIk2KhOdF8fekWDvq8JUu1TtNuYaoX7FM13gfM8NAAP7k2h0i9hVCTBiVYK6L7oP44Vzcvqcl2JALJaLqWD0moTZnexrJyLGX-0qoWeKFfNgRiU','Had a great experience they were fast and thorough Kristina was great and dr. Faig made me feel so much better','2019-12-31 23:02:30.292000','2019-12-31 23:02:30.292000',5,'Jay Holmes','https://lh3.googleusercontent.com/-sH5I90r3BuA/AAAAAAAAAAI/AAAAAAAAAAA/WRp3R4Qu1XE/c-rp-mo-br100/photo.jpg','12541597562633926366',272),('AIe9_BGhYIk2KhOdF8fekWDvq8JUU4Y7Vey77UikIi4x3sRHjGTxijDZrSCAk8A6nrXv0NSHw6Z0mCElFhzbpLhZQ_FRhRLAgR8BWjy3az-YzF3tGxhnLEM','Great service but you pay for it, x-ray and MRI cost me 12k. Out of pocket 8k. It\'s quick and convenient but a wait is better than bankruptcy','2017-04-26 12:39:48.706000','2017-04-26 12:39:48.706000',1,'Daniel Ryan','https://lh4.googleusercontent.com/-Fi3o3j691Kk/AAAAAAAAAAI/AAAAAAAAAAA/xqMPiKep_io/c-rp-mo-br100/photo.jpg','3511292162159714121',7830),('AIe9_BGhYIk2KhOdF8fekWDvq8JUUA3MWu5PbJ_r21S23PfgSI_1p_MM3i1uD9WWE2NyTgOLCnJsrF--2xAJg07HB0k6w-5ESSeL7QPFlbJ9p-O1uAzZ3R4','Best warm blankets ever','2018-09-23 05:47:28.570000','2018-09-23 05:47:28.570000',5,'Jamar w','https://lh3.googleusercontent.com/-RPfIPdIXTSg/AAAAAAAAAAI/AAAAAAAAAAA/zTpWm-cD_qY/c-rp-mo-br100/photo.jpg','8918455867446117794',9233),('AIe9_BGhYIk2KhOdF8fekWDvq8JUuApryMKAbvZfJWGhAqWOzzhdpZeA_4Tk77mDND6ouXuh7MuubBwHKAlAspcZkJ2peLbJRwp4jpK_6r8PTcQA4sMG7UI','The staff were very kind and the process went by quickly. It\'s a clean and comfortable environment that I would definitely recommend to anyone skeptical of this place. I\'m very pleased with their service! :)','2020-01-08 20:03:03.202000','2020-01-08 20:03:03.202000',5,'Hawraa Abdullah','https://lh4.googleusercontent.com/-Y5LdR9oU-Ag/AAAAAAAAAAI/AAAAAAAAAAA/wyN_zEHRACo/c-rp-mo-br100/photo.jpg','12541597562633926366',9534),('AIe9_BGhYIk2KhOdF8fekWDvq8JUUat5LFzqpl096C1FJ1rVNQuvIMPKrc6tiRuc7eszkukjZrMefK0ICfbtSHCFu41n9B5igzHmsvY3g2_FBc2rNIk2JKw','Dr. Ybarra, Ekaterini, Joshua, Luisa were all great! Thank you for the best ER care ever!','2019-09-14 08:19:37.968000','2019-09-14 08:19:37.968000',5,'Jo C','https://lh4.googleusercontent.com/-VoJbcmIGcLU/AAAAAAAAAAI/AAAAAAAAAAA/2S-0E0uB64Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2909),('AIe9_BGhYIk2KhOdF8fekWDvq8JUuGaF2Phe3ivsD7IlDcHJ9fVgQ-hSpcVsCWOknCw3Dsp_3MDo3gB9MDXiYuXrI-2iSW7DQspKqfupoeMTJDEuw_NIktQ','Great place to be and inviting. Maya the receptionist helped a lot and made my mom feel right at home thank you for Being here for everybody','2020-01-08 23:27:35.313000','2020-01-08 23:27:35.313000',5,'Selena Tzunux','https://lh4.googleusercontent.com/-WiREtcU5eaI/AAAAAAAAAAI/AAAAAAAAAAA/6vaiX3wVMss/c-rp-mo-br100/photo.jpg','12541597562633926366',248),('AIe9_BGhYIk2KhOdF8fekWDvq8JUUHtqYRiDe4x1pJBFRarayRqvu3KipHOfBa7BU6JecgdweLpjf3K-mzckcImMA9QPzx8pnWqsuUUJ31EblN04D2J7C1w','The place is new, clean, and no wait time at all. The doctor seemed knowledgeable and sincere in his care and diagnosis. The nurse and front desk ladies were both a pleasure to work with.','2017-01-10 13:16:45.048000','2017-01-10 13:16:45.048000',5,'Richard Gonzales','https://lh5.googleusercontent.com/-YgCj44395mE/AAAAAAAAAAI/AAAAAAAAAAA/hsLIq_4chuA/c-rp-mo-br100/photo.jpg','14567670160750071148',1918),('AIe9_BGhYIk2KhOdF8fekWDvq8JUuKarSbrpJNrfNpXPRCPjNI_RZO95Z4pvHZ6df7b3o9F-c9kVVyYrq2lbwu0KzmtPHQMrgNR45eCAOs2sNLeYI1T-lmE','Nichole P., Staci, Pam, Nicole H. , Alyssa and Dr. Hehman are absolutely great 👍🏽','2019-06-06 19:21:28.035000','2019-06-06 19:21:28.035000',5,'Temecia Ross','https://lh6.googleusercontent.com/-HU-K-dkZAaM/AAAAAAAAAAI/AAAAAAAAAAA/_HmVornCWR8/c-rp-mo-br100/photo.jpg','8918455867446117794',9136),('AIe9_BGhYIk2KhOdF8fekWDvq8JUUopVn4qAbg5FdbadpguCs--NJoCDHh3L7tSreO2cMQJ5FAilvoFENoGAqrhBj4vhvkMIDig0BDgF3PhdElJcNLxtmn4','Awesome service. Quick and efficient checkin. Really service oriented nurses, and I spoke to a doctor more than once.','2019-06-23 03:27:11.698000','2019-06-23 03:27:11.698000',5,'Jazmine Hamber','https://lh4.googleusercontent.com/-j6Alvxn3NhY/AAAAAAAAAAI/AAAAAAAAAAA/xmjIu2Cf-vE/c-rp-mo-br100/photo.jpg','13486358490203335051',934),('AIe9_BGhYIk2KhOdF8fekWDvq8JUuRGPPaObtPCzqeeQNN7Wv2JBbQ3dz-ElfsZgfDZy91LJpljm0N44hTHRWAyq-myNG9djb1LFIJAO2qRGpsnBEjjn6ik','An excellent emergency care center. I went for non emergency care on a Saturday and was seen very quickly. Everyone I talked to was so friendly and made me feel very comfortable! I am very impressed by the staff, service and the building was super nice! Thanks guys!','2017-03-28 23:21:40.526000','2017-03-28 23:21:40.526000',5,'Chelsea Williamson','https://lh4.googleusercontent.com/-ZsA-s1xZdss/AAAAAAAAAAI/AAAAAAAAAAA/aNXeF4M5B-s/c-rp-mo-br100/photo.jpg','14904078213800803294',2378),('AIe9_BGhYIk2KhOdF8fekWDvq8JUUtc2_urLQsoiVQbqG7xYQig63eEMX-EtHbrMpn2vd2HArB5jIbEXfdSnwuxhOVi5hgAsukGwrK6On2wwj-kVOnuNFLk','I’ve been to this signature care on multiple occasions. They truly do care about their patients and get you the help you need fast. They have state of the art equipment, and their staff is very knowledgeable and compassionate. I could not recommend this place enough. If you live close to the Stafford area and ever need medical assistance, you should feel fortunate to have signature care so close by.','2020-06-07 23:50:25.929000','2020-06-07 23:50:25.929000',5,'Steven Sills','https://lh5.googleusercontent.com/-HZ_qn7V7bg8/AAAAAAAAAAI/AAAAAAAAAAA/b-zWlwe5Qu8/c-rp-mo-br100/photo.jpg','8918455867446117794',22931),('AIe9_BGhYIk2KhOdF8fekWDvq8JUuTkHnJCeo5w5tRz7vRO1M4tWHS4-Ffyq533A7oB2ilpGgu6kQu6hFKlNwcEne0UYlpXV1chFtkyPTm3A8C4i8JHYqdw','I really enjoyed my experience with Signature Care very relaxing. When I walked in Jesus greeted me right away and got me started filling out a few simple forms and I was being called to the back room before I could even finish the forms. Nurse Alvean was very kind to me asked me a couple quick question and complimented me on my vision test very nice young lady. Also my technician Marcus was very comforting and shared a couple funny story with me that I could really relate to really nice guy. Dr. O\'Malley was great he took his time and made sure I was comfortable though out the entire process.','2019-06-11 20:10:36.648000','2019-06-11 20:10:36.648000',5,'Taylor Jackson','https://lh5.googleusercontent.com/-mnowAWRjlfs/AAAAAAAAAAI/AAAAAAAAAAA/Tolk6i_nKcY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUuTx-QqbOZD5f1W7jfOAyALkC-rPHb9MkO-FUrWg9pkzDkygpC6tXnFzHtKe77q_xPqfPu0IjPDo8yQr4qukqqMc5Zas','Kimberly, Jacob, and Morgan were all so great during my visit! The staff is caring and helps everything go smoothly. ','2017-05-09 16:14:48.743000','2017-05-09 16:14:48.743000',5,'Roxana R.','https://lh4.googleusercontent.com/-qymJqtBsRA4/AAAAAAAAAAI/AAAAAAAAAAA/yD_DmZTLt-I/c-rp-mo-br100/photo.jpg','16590124370714063921',3990),('AIe9_BGhYIk2KhOdF8fekWDvq8JUUUtIDeLA6UU7pT9tzgo94eSBrsKz-D2dfgJEp46FEU8sMO2zTIERj5rEtSUL7nAvEcBGuQvUCXwTu6MjKv-Dca6mTmM','Super great experience! Tanishia was helpful at the front and on top of everything. All the nurses were awesome and made me feel comfortable','2020-02-24 03:05:19.276000','2020-02-24 03:05:19.276000',5,'Victor Borrayo','https://lh4.googleusercontent.com/-JkwtCTLnJj0/AAAAAAAAAAI/AAAAAAAAAAA/NX3aTW03Jr4/c-rp-mo-br100/photo.jpg','17898197009688164559',14127),('AIe9_BGhYIk2KhOdF8fekWDvq8JUUxZKNB-x55XBUB--9_hV__RjxrsNcAEdYOxqTKXa0Hl-UTnf7VmRGD08NEZgT7pCkZxlO7Lvcoiy2qf78_9zncr1Brc','Another amazing experience. Only place I’ll go.','2019-12-06 04:59:40.980000','2019-12-06 04:59:40.980000',5,'James Kuzilla','https://lh4.googleusercontent.com/-cO_9HI82t9g/AAAAAAAAAAI/AAAAAAAAAAA/w0zM_GPmL2k/c-rp-mo-br100/photo.jpg','17394740196501090048',14069),('AIe9_BGhYIk2KhOdF8fekWDvq8JUV5JZLkIH1Ml9jrwCItJgmvXIjReFEO-c2nYzEPUnO6S2qIIoFR1l7D9-rwLjb-5qXWnGlUX4ef4HWPUAPMI9AJZi38g',NULL,'2019-02-01 18:23:40.889000','2019-02-01 18:23:40.889000',5,'Connie Gonzales','https://lh4.googleusercontent.com/-jJsoMuAi-u0/AAAAAAAAAAI/AAAAAAAAAAA/jpeQiRTe24w/c-rp-mo-br100/photo.jpg','13486358490203335051',1077),('AIe9_BGhYIk2KhOdF8fekWDvq8JUV7CMdittpHaQQfMacCe7Iyq_nACPkNEPXh5G-BFxIPqYQ3_jtDV5t5ooRpfZIdJfjaErGNwmaIXdrFzj5bB3tVZvFBg',NULL,'2017-09-22 17:22:29.368000','2017-09-22 17:22:29.368000',5,'Karthic MB','https://lh3.googleusercontent.com/-XE-_HsHS0lQ/AAAAAAAAAAI/AAAAAAAAAAA/HhG4AEZytpM/c-rp-mo-br100/photo.jpg','3511292162159714121',7787),('AIe9_BGhYIk2KhOdF8fekWDvq8JUv7fS9W7rjNpKYumNrkpqaPQpYDaVwPdYi7XMIpo4p1i09YYr3HS3u0Kc3-6Yv9M0qBAeiPPa-RgVcxgfVvAcbg0kwIc','My son was rear-ended and I was concerned about concussion or other spine injury. This is the 2nd time I have used Signature. Always great customer care and great patient treatment. Always feel like a VIP. Just like a hospital without all the extra fuss! Highly recommend.','2018-05-28 01:11:41.848000','2018-05-28 01:11:41.848000',5,'Mark Rizzo','https://lh4.googleusercontent.com/-RsVPGVdQ6PA/AAAAAAAAAAI/AAAAAAAAAAA/z6VJXFHpKCk/c-rp-mo-br100/photo.jpg','16891069708558046635',4472),('AIe9_BGhYIk2KhOdF8fekWDvq8JUvAaDgQ9Fde9cq76AhulZnk50dGKUOpnmBvyi-nnVWY35KhLAngRhvtnjeeT-kV4YijnDSjs9DUTD-YDEV-Xgi149E1c','Really good everybody is really nice and courtesy interesting on patients definitely we going back if we need it..., it\'s way better then my pediatrician office','2019-03-03 00:36:14.489000','2019-03-03 00:36:14.489000',5,'shelly valenzuela','https://lh3.googleusercontent.com/-X0fBk6olgDY/AAAAAAAAAAI/AAAAAAAAAAA/rcN06_MnL4U/c-rp-mo-br100/photo.jpg','8918455867446117794',9171),('AIe9_BGhYIk2KhOdF8fekWDvq8JUVDBWZYL_o2wtNA0-G3-L9tkgG116_ABhOO_3FLIDiasDyTTOsy_6oCoGQYcPz0AFz27Iq4NrSOQC5h6_cZ7I06ae7Sg','Really nice and clean facility. Miller was my doctor, I got all the answers I was looking for. They gave me peace of mind.','2019-09-16 01:15:43.209000','2019-09-16 01:15:43.209000',5,'Gina Paolini','https://lh3.googleusercontent.com/-085tCK_wvWw/AAAAAAAAAAI/AAAAAAAAAAA/F4JUuGv8wLQ/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',829),('AIe9_BGhYIk2KhOdF8fekWDvq8JUvENFfgS8Q8_sMeqWTld3clZlcrX7n8fWogsWz9krFdd3gvdcXu2czvBA-mh88ehrqlmokBFW9jb-YmFOGaVFtbpmzNI',NULL,'2018-12-22 01:11:02.640000','2018-12-22 01:11:02.640000',5,'Jennifer Sierra','https://lh6.googleusercontent.com/-4gwmhH2zQjU/AAAAAAAAAAI/AAAAAAAAAAA/vk5gm8cufY8/c-rp-mo-br100/photo.jpg','3511292162159714121',7541),('AIe9_BGhYIk2KhOdF8fekWDvq8JUVhThs7-hVQpyG9AJL1Saw9aYHV-nH0Bo5GR6gvmFx61t9has4TTdvTNBYAJTBFgMC92A7ooSdXsXE397JTBUMJYSnAA','Signature Care Emergency Center is the Best Ever! My wife had a sudden onset of UTI symptoms so we rushed to Signature Care ER in Bellaire. They wonderful, kind and professional staff there quickly got us checked in and seen by Dr. Ybarra. He was very knowledgeable and personable, ensuring my wife was comfortable and taken care of. Nurse Katrina was very nice and skilled in her job and helped my wife get her first antibiotic dose, while ensuring she did not have any reaction to the medicine. Registration staff(Theresia) made sure we understood all of our paperwork and Radiology tech Shane checked on us with a smile. We were given a warm blanket and water and offered so much more than we needed. The facility was sparkling clean and very modern and upscale in appearance. We could have hung out there all night if we needed to and we would have been very comfortable. Thanks again for everything to each and every one of these phenomenal people that care for those in need 24/7~!','2019-12-24 15:49:03.248000','2019-12-24 15:49:03.248000',5,'Jesse Reed','https://lh3.googleusercontent.com/-O948te60PZo/AAAAAAAAAAI/AAAAAAAAAAA/czC6L_OmYKI/c-rp-mo-br100/photo.jpg','8679688254631342173',8675),('AIe9_BGhYIk2KhOdF8fekWDvq8JUVKVTmVR5oet_PQhnoM90LjQ9awOSo-jA8ZpaQ_5keEXF1AQTzhEiSKK7xpbuWOFP0Jxg-RVtifVhLRqzT1VfKPx3BYk','Super nice facility and helpful and knowledgeable staff! Keera was really nice too!','2019-07-09 18:49:39.210000','2019-07-09 18:49:39.210000',5,'Rosemary Barrientos','https://lh5.googleusercontent.com/-87Flvz05UyY/AAAAAAAAAAI/AAAAAAAAAAA/HrkZQ_pL7Wk/c-rp-mo-br100/photo.jpg','17394740196501090048',4635),('AIe9_BGhYIk2KhOdF8fekWDvq8JUVrF6LHF-7eiy2sBGU-jc8uk94cDqcZ9Woivk1XYGCQhAyuZ3klZrx2DC17M06RY7Jkt81_29aq7KIvSROAFjpLtpBvQ','Super convenient, efficient and friendly. I was really impressed with the lack of wait time (virtually none!) and the modern feel of the ER. A nice change from the typical Hospital ER','2017-07-03 14:48:33.199000','2017-07-03 14:48:33.199000',5,'Damon Brenner','https://lh5.googleusercontent.com/-8wlknlD-3NE/AAAAAAAAAAI/AAAAAAAAAAA/8lCfRnHU2-E/c-rp-mo-br100/photo.jpg','3511292162159714121',7804),('AIe9_BGhYIk2KhOdF8fekWDvq8JUVU-oW-ZdAGgQ6IN4v0lz4D544fOaL1ciri8jOvuKoS9x9UuBvT8ItHk4PatgfY3C2e60rXR51h2Gl-YrssTYojnHvXg','Friendly staff and excellent service, thank you!!','2020-02-22 02:02:37.298000','2020-02-22 02:02:37.298000',5,'Sharon Thiemann','https://lh3.googleusercontent.com/-irA1_X7J39w/AAAAAAAAAAI/AAAAAAAAAAA/YRXSCgyBDeU/c-rp-mo-br100/photo.jpg','16389487648212004696',11063),('AIe9_BGhYIk2KhOdF8fekWDvq8JUvUCmLbImrptIXfJ7WfITTmL4NvzudlTXy33aifT9yLSueDqZRJjLoOEmTil6k_grNW1A5gZJ6_JmLXRCfPl5RtQHxGs','The team here is great, friendly, accommodating and they LISTEN. The facilities are spotless and this was really the best medical experience I\'ve ever had. And Dr Patel is super dreamy lol.','2019-12-04 13:46:33.026000','2019-12-04 13:46:33.026000',5,'Deb C','https://lh6.googleusercontent.com/-r3EUT69B3XM/AAAAAAAAAAI/AAAAAAAAAAA/b0jYaiTTaQs/c-rp-mo-br100/photo.jpg','12541597562633926366',364),('AIe9_BGhYIk2KhOdF8fekWDvq8JUVUwQ46lQiqEockBvgVjOx8WkxnZyZRqc338zBck4tsW5fTweERM95MA-LF0kTESMjR12VV7iJgRS9tJqBFszbuhDFLk','Dee was so caring and so professional and very nice. Made me smile.','2019-06-25 22:02:45.699000','2019-06-25 22:02:45.699000',5,'Armando Garcia','https://lh5.googleusercontent.com/-p4TlpBOTb48/AAAAAAAAAAI/AAAAAAAAAAA/QQl3I1LxnLQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7284),('AIe9_BGhYIk2KhOdF8fekWDvq8JUvVISrG1vmDfoX9TcVyqV3ak2JV6WCuIcYLECc98WpWbYETxgXGcUb5ICFknlgvA7yj0n4cCrY4kicivfIdUFDB2pKOA','Came on a Thursday afternoon with a friend seeking services. We were taken back very quickly, very clean facility fully equipped it seemed to handle emergencies of all types! Dr. Smith and Rommel the nurse were very helpful and respectful. We got what we needed, quickly and efficiently. Highly recommend if you need emergency services!','2019-08-05 20:28:59.920000','2019-08-05 20:28:59.920000',5,'Mahereen Maherali','https://lh5.googleusercontent.com/-i-_MHIib02w/AAAAAAAAAAI/AAAAAAAAAAA/Rm5aTYzMus0/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2103),('AIe9_BGhYIk2KhOdF8fekWDvq8JUVx5fTQKcTolhQHKJFjAwSGHEHb7GLPHescbgeBiSe88iCF_AA7BTc_qIQIQcj_aQdf6Hgh7xV8o2dKyWUAhGylTGaiw','Services were great Registrar was very friendly Elida, staff in the back Tricia & Alvean were very nice continued to check in on me to make sure I was comfortable while we waited for my results. Dr Harjai was very nice quick and knowledgeable.','2019-10-31 12:58:08.151000','2019-10-31 12:58:08.151000',5,'Kim sweet Sweet','https://lh3.googleusercontent.com/-ATosbyvyJeI/AAAAAAAAAAI/AAAAAAAAAAA/l1Necyp6MSo/c-rp-mo-br100/photo.jpg','16389487648212004696',2752),('AIe9_BGhYIk2KhOdF8fekWDvq8JUVZxuTBKFLS4pP0cgxpNDNC-0-hR_D3vvo8n3jRf6beJ5T-qs4FuhFSKk2lAxbRHzxENWDNwoAWyTVXeWxQElcxft7vQ','Jessica S., Cindy, Seinida, Randi, and Eliza were all very helpful. Our experience was quick and easy. Thanks!','2019-12-06 10:41:35.493000','2019-12-06 10:41:35.493000',5,'Cindy Gillette','https://lh6.googleusercontent.com/-WF1nvwR1oH4/AAAAAAAAAAI/AAAAAAAAAAA/gHwLCOcY_wc/c-rp-mo-br100/photo.jpg','6521947413723274945',8072),('AIe9_BGhYIk2KhOdF8fekWDvq8JUW2rQilTnvegL6Xt1ONfzjVRjO-wGYwCBeIGCGTU7QsAoiMgibAhh4uOXB0vv_k1QhR67yUHH6BI48I4j72sQ4TXxspo','Stopped in for Covid testing. All done without leaving your car. Process well planned out. No really long line or wait. And you get the results before you leave the facility. Very satisfied with entire experience.','2020-07-30 22:56:49.610000','2020-07-30 22:56:49.610000',5,'Russell Williams','https://lh3.googleusercontent.com/-3sk0N0TD01k/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmvnc13kZ852JUg3ViSDApncF9BzQ/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21862),('AIe9_BGhYIk2KhOdF8fekWDvq8JUW70uNv7YPXMvHr9eqqNVEtOhkCBCqU2M1ZQUPWCgLvy6huIebfUR2Vu1xQZD790ia4iQYzQME8fE3nDGwnOGsTY3qbQ','Let me say this is my second review, I took my daughter in today and once again exceptional service....I love this place and the fact it\'s on my street I\'m less then 3 minutes from the location is awesome.\n\nI really enjoyed our visit today the service by Dr. Faig, Irving and Holly was beyond exceptional! How could i leave out Amy at the front desk super sweet and caring...','2020-01-28 12:02:51.535000','2020-01-28 12:02:51.535000',5,'Chelsea Kirkwood','https://lh3.googleusercontent.com/-nLPqHPbRPHo/AAAAAAAAAAI/AAAAAAAAAAA/hetPp4bZ_Cw/c-rp-mo-br100/photo.jpg','12541597562633926366',425),('AIe9_BGhYIk2KhOdF8fekWDvq8JUwAuWifwbsqexeSck4zMudqXmL-JnIBkgY5LsAuSRlka1OcRVjjsjECTcc3B5NA9M845M2jx7c8GUmdwLRhANCcUW2pc','Very knowledgeable and professional staff. They made my visit comfortable and brief.','2017-09-11 02:43:39.205000','2017-09-11 02:43:39.205000',5,'Terrance Devereaux','https://lh6.googleusercontent.com/-sz7o8aHcR2c/AAAAAAAAAAI/AAAAAAAAAAA/G5XEJESPprw/c-rp-mo-br100/photo.jpg','8918455867446117794',9362),('AIe9_BGhYIk2KhOdF8fekWDvq8JUWceKezQFDunWGnVAj5ynZKenMy8tFTZZPHE33pk36mwjWDANZ4Re-lJDFnmpuAV-MyyF77ZPUsw69XF9G2C9ThloPaI','Dr. Ding and nurse Jacob were super helpful and efficient! I had Morgan and Becca as my tech and they got everything done quickly and painlessly.','2019-09-30 19:41:43.093000','2019-09-30 19:41:43.093000',5,'Matt Elliott','https://lh4.googleusercontent.com/-QZehL2UTbC4/AAAAAAAAAAI/AAAAAAAAAAA/Fi5UH2gwkUg/c-rp-mo-br100/photo.jpg','16590124370714063921',3162),('AIe9_BGhYIk2KhOdF8fekWDvq8JUwDH6hhPi2zRo14FOeLehLLxtAdubbAXG-rulfCyBniTjzdVAgfRrJv2iRVfyuCeSEpedZzJp5kdNNXV5zPT3iO8jp8A','I thought it couldn\'t be true that this ER actually had 5 stars. Now I know why. The facility is clean and comfortable, front desk staff was efficient and organized and the medical staff was so caring. No ER visits are fun but Signature Care made it as good and quick as it could possibly be. Very impressed by this emergency room.','2020-01-29 16:34:45.417000','2020-01-29 16:34:45.417000',5,'Lindsay Reichelt','https://lh4.googleusercontent.com/-tzLNzM_Gko0/AAAAAAAAAAI/AAAAAAAAAAA/spB2CEJUDJ0/c-rp-mo-br100/photo.jpg','16389487648212004696',10163),('AIe9_BGhYIk2KhOdF8fekWDvq8JUweSHo21WXWs9x6JD2MHbLZdDlfbxoKMoZIVC-KLTriWznuWYOqPXufmVM-3HqTLJUHt5VAm7J-johRwZRxDgMUEscZY','The staff took such great care of me when I was in incredibly major pain prior to walking in. My nurse, Chih was kind and very attentive and was with me all night of the hours caring for me. Dr. Yusuf was super informative and helpful too. Thank you Signature Care for saving my life. I will never forget you all . I am so happy Townsend Turner recommended me to come to this location.','2019-03-23 03:52:42.462000','2019-03-23 03:52:42.462000',5,'Erika M','https://lh4.googleusercontent.com/-IJbcBgdx33M/AAAAAAAAAAI/AAAAAAAAAAA/plldiyUd-9k/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7372),('AIe9_BGhYIk2KhOdF8fekWDvq8JUWFKl4mFQGmB9cW7SrodShXuEosSOz9GhWpw6uBt5ecwvRw0_gPooC0_mcIkKvtN1vMTExTRHv5zJ3o-MEC--ai5y1L4','The staff was excellent! I brought my 12 year old daughter in and they were very friendly and fast to get us in and out.','2019-05-04 18:56:35.703000','2019-05-04 18:56:35.703000',5,'Vicki Richardson','https://lh5.googleusercontent.com/-UujyoLZrxLw/AAAAAAAAAAI/AAAAAAAAAAA/AR1Y-zs2ays/c-rp-mo-br100/photo.jpg','13486358490203335051',1020),('AIe9_BGhYIk2KhOdF8fekWDvq8JUwmXXU1pB-y4iNk44ylf7WzGvTIa16GTweRdVyllQ5WbkVqzEwf3X1U-j_3NeyUSkXi9RZFRxDVsS40YQog40J-S79iY','There’s nothing worse than having sinusitis, When You Feel like You’re drowning in your own mucus. Thank You Dr.Miller, Laura, Christian and Natalie for making me feel better so fast!!! You guys are the best!!!','2019-02-02 21:33:24.948000','2019-02-02 21:33:24.948000',5,'Eve','https://lh4.googleusercontent.com/-cW3FxgBlFLI/AAAAAAAAAAI/AAAAAAAAAAA/oPlDSNGOrh8/c-rp-mo-br100/photo.jpg','3511292162159714121',7419),('AIe9_BGhYIk2KhOdF8fekWDvq8JUwndepQD6DkXaOTXsRD9JEuPfV6K94kmEikYFp-_LCyX1_cGiPacN2kLCouKe6c6IxxIHoW6jSMoK5ol6bib0pcW0e0I','Were very nice. Took care of my wifes pain in her eye today.\n\nDr. O\'Malley\nNurse Alvean\nRadiologist Marcus\n\nJasmine with registration was helpful from the moment we stepped through the ER doors. Will definitely come here again if needed and I recommend their medical services.','2019-05-14 21:25:03.649000','2019-05-14 21:25:03.649000',5,'Gabriel Briones- Solis','https://lh5.googleusercontent.com/-GXV-wbN0E8g/AAAAAAAAAAI/AAAAAAAAAAA/OQHKZ3jQuLU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUwNWyqxEegE1uSLwamLtvQG1fI__zq_euBdFIUJOBmz15o5z1r5lozOLm3zQaoe3dKnlMhScSqua_PGzR-lnadKRrX4E','Went here last night. I came in frantic!! Everyone was so nice talked calm to me. Helped me through my emergency. I wanted to go to the hospital,but my mom knew if we went there that we would be there sitting for hours. Just to be seen , just to be put in a room,just to have the wait some more. So she decided to take me to SignatureCare Emergency Center. We\'re in and out in no time!! With fantastic service and in perfect staff!! They offered me water afterwards, as well as offered my mother coffee and made her oatmeal!! Definitely made all of us feel welcomed!! I would pick this Emergency Center again..if I had to ...as well as refer this Emergency Center to friends and family. \nThank you so much!!!','2019-11-16 16:36:09.574000','2019-11-16 16:36:09.574000',5,'Jaleesa Bautista','https://lh6.googleusercontent.com/-G8-Kb8Xm5qg/AAAAAAAAAAI/AAAAAAAAAAA/MPUwMqtJQj8/c-rp-mo-br100/photo.jpg','14904078213800803294',13664),('AIe9_BGhYIk2KhOdF8fekWDvq8JUwR8R71gzBmPQiHxUp1fkyocxGMtmi80XBX9FAGRLW6yiWZ9Bbq9HpdOHw8Be3Docnukjeunhv3K-j-cQTRFoPlHhQB0',NULL,'2020-03-04 01:26:03.630000','2020-03-04 01:26:03.630000',5,'xavier gonzales','https://lh6.googleusercontent.com/-bOt4Ln8SHTo/AAAAAAAAAAI/AAAAAAAAAAA/AGFJuVOn1pM/c-rp-mo-br100/photo.jpg','6521947413723274945',14511),('AIe9_BGhYIk2KhOdF8fekWDvq8JUwSEWICfyeWws17pBzFduEnWhMZRL7uXs_yzun5kdSOeg5W8kx1dOw3Hc8cGl2cKW_Fl-XhWM3WZ1IvNJdtj_PAQ6tbM','Everyone was very nice, patient and understanding. This is a nervous experience and it helps to have the staff to be so nice. Nancy was one of the ladies helping us, and she was great!','2020-08-02 20:48:52.038000','2020-08-02 20:48:52.038000',5,'Shirl C','https://lh3.googleusercontent.com/-Y99ey6GMnGE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckMZY2nE-pR2L0Dx1bhOebz5ATxCQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22189),('AIe9_BGhYIk2KhOdF8fekWDvq8JUWwPH6K4mwu_TcI0JJJt4oYB3ZH8e8N_-uO8yZFUD946kv2Ix4SVOaKSrA8nKza-TMR2T50kTJRrfwwGzmIh6qXli7eE','Came in and was immediately helped by Kendra. Very nice staff and Dr. Hermka was thorough and quick to get the results.','2020-01-14 14:08:05.068000','2020-01-14 14:08:05.068000',5,'Amanda Reenan','https://lh4.googleusercontent.com/-L_A3IWmnsdI/AAAAAAAAAAI/AAAAAAAAAAA/3v3aYqmpVCg/c-rp-mo-br100/photo.jpg','16590124370714063921',9758),('AIe9_BGhYIk2KhOdF8fekWDvq8JUwX7Sq_nhxXzGe9D995HuBJXpYuXk3HjTqSZCVWGiuwMx3tqn8EzTXuIMx7Q07S1WATULqk6bEZymXIbfrU2IAD0yCOY','Very Friendly and quick to meet my medical needs. My nurse was Blake, he was very friendly. It was a tad bit hot though when I went to get my CT scan. Overall, great experience.','2019-03-09 12:48:51.553000','2019-03-09 12:48:51.553000',4,'Toli Teas','https://lh6.googleusercontent.com/-RJgq4IKk8V8/AAAAAAAAAAI/AAAAAAAAAAA/LSuY4Yv3klA/c-rp-mo-br100/photo.jpg','8679688254631342173',8865),('AIe9_BGhYIk2KhOdF8fekWDvq8JUx2S-toC1J5SZrUDhMacEhPVQwUOAcEe8zBaoMNZ9Hs0E-ogvh0NoEpy90JPOVbKY1NcM-E1B6iZEm2cAUMJGspwnAko','Great job!','2019-10-07 16:59:01.810000','2019-10-07 16:59:01.810000',5,'Lisa Marie Hulse','https://lh3.googleusercontent.com/-52xHmZ3zHiY/AAAAAAAAAAI/AAAAAAAAAAA/Ej6NU8TwkXU/c-rp-mo-br100/photo.jpg','13486358490203335051',789),('AIe9_BGhYIk2KhOdF8fekWDvq8JUX4n3S7uhm222AQMHKcKZlZlZNUs5JpE73MZN-kNtBpsAOXGwXF31f9FXsI6K9eOcHIq8eBKFDYeUaXILx8qiEavqNAw','Hey Dr. Patel thanks a lot for helping me with my sprain foot. Ms. Alvean was so helpful and nice. Marcus gave me the laugh I needed. Keep up with the good work Ercare24.','2019-06-09 19:02:39.975000','2019-06-09 19:02:39.975000',5,'Kalondrea Powell','https://lh3.googleusercontent.com/-CMaKsNWL2jQ/AAAAAAAAAAI/AAAAAAAAAAA/AXCWAreV7lI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGhYIk2KhOdF8fekWDvq8JUx7wi97AgVMEJ_5lCASdlL_i0su4ozz5-eMGTy6FuVI6rf7j3CD4stUIRivmZdw8B6Zv0tn-RVrhck2UuPPgzgz-rtl8','Best care I’ve ever had by far! Very polite and friendly.\n\nAnthony,Ral \nDr.Vakey\nNatalie- Texh','2019-02-18 19:44:03.162000','2019-02-18 19:44:03.162000',5,'ALYSSA NUNEZ','https://lh6.googleusercontent.com/-tzi3V-cWlDg/AAAAAAAAAAI/AAAAAAAAAAA/HTQ1GQG1W9w/c-rp-mo-br100/photo.jpg','16590124370714063921',3546),('AIe9_BGhYIk2KhOdF8fekWDvq8JUx8Xd2Vx5erV4OuizUjbuiGfrRPBCoNCw285CeXSdIrTSBaE1hTCYwAPizwKnPusTx9ZoM7x1R_juM0ouE3IMZVuoewE','In and out in no time. Thanks.','2020-03-02 10:01:01.498000','2020-03-02 10:01:01.498000',5,'Derrick Railback','https://lh4.googleusercontent.com/-J8suF2UTpGo/AAAAAAAAAAI/AAAAAAAAAAA/TGCUd-IPXkg/c-rp-mo-br100/photo.jpg','2694018788013845459',21124),('AIe9_BGhYIk2KhOdF8fekWDvq8JUX9aqUsRLACWppC2rDU63WM5XxNsFIb0WqMkZj5Yr6_B-mxJwEfJDwR-ArrQBbHkl86YC15wUD1_utRdbXJsxk67eIgs','Loved the staff members here! I was in a lot of pain but their friendliness made me feel more secure about going through the simple procedures.','2019-07-26 22:34:06.303000','2019-07-26 22:34:06.303000',5,'Maggie Au','https://lh5.googleusercontent.com/-LrZxjGNF_ok/AAAAAAAAAAI/AAAAAAAAAAA/JaAEA6izAjc/c-rp-mo-br100/photo.jpg','17898197009688164559',5622),('AIe9_BGhYIk2KhOdF8fekWDvq8JUx9B0rr8oAQFkp2w8_7BSq6nVhAb4xRR4ZipN12mljMasd23qG8yt5p9YXPG2t0CUi2UcEIYoOwbYtE-EMP7p-EVaBU4','My family and I always come here, Patricia was very patient and welcoming from the time I walked in to the time I walked out. Dr Edwards was very informative on the diagnosis and Nurse Jesse and Selina made me feel comfortable and I could really tell they love their job. I needed a Cat scan for the first time and Tino took good care of me and made sure I was comfortable and so did Wendoline. I will most definitely be referring my friends and family to Misson Bend Signature Care.','2019-06-07 15:56:51.108000','2019-06-07 15:56:51.108000',5,'Justin Hudson','https://lh4.googleusercontent.com/-pLZ4dkNlx4Y/AAAAAAAAAAI/AAAAAAAAAAA/XFeanZXZiZQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4672),('AIe9_BGhYIk2KhOdF8fekWDvq8JUxbldkHQPW8bZI_fMrGPWSp2JyZjJ0_Dpn1Do-8XVH_sW4yAc9ZOMNcLJp0IeFLymwPbs5G4wBupnBug_16GSA-k7fSU','awesome places. the staffs that attended to me were great. from the receptionist stephanie to the physician Dr leavitt to rollie and natalia. would definitely recommend this place to family and friends.','2019-10-23 03:51:57.038000','2019-10-23 03:51:57.038000',5,'smith osagie','https://lh3.googleusercontent.com/-r9H67MuBJaM/AAAAAAAAAAI/AAAAAAAAAAA/2bZtyj1DQkk/c-rp-mo-br100/photo.jpg','8679688254631342173',8777),('AIe9_BGhYIk2KhOdF8fekWDvq8JUXCXZLlAalmjqEIkcxS-UPUo4vYKKcqqaFD55cz4PtIx3QuMgPI6oKqqUZg2BjdiabMxOPv9S8pt_N5kw9sWxU-_aLog','Was welcomed by Rebecca at registration and Nurse Anthony and Dr. Vaagenes were so attentive and respectful. Great facility.','2018-08-22 04:56:50.179000','2018-08-22 04:56:50.179000',5,'Kathryn Bryer','https://lh6.googleusercontent.com/-LFbJtIvNOQo/AAAAAAAAAAI/AAAAAAAAAAA/ho1rxg9EYgI/c-rp-mo-br100/photo.jpg','16590124370714063921',3776),('AIe9_BGhYIk2KhOdF8fekWDvq8JUxdfS-hi_JEhYkCxqXNynz35FvLv-1NPrs-rB35nCsamGLq9iQn6RNRkaEUpLQvzLpn-UGF_ccd0rPI5l0Nif_WDmD_w','Dr Das very quick to realize What was wrong with me as soon as I stepped in. I thought I had strep but got tested for covid and strep and he was right','2020-08-10 18:44:44.821000','2020-08-10 18:44:44.821000',5,'angel Taylor','https://lh6.googleusercontent.com/-WuU19PRtlRI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnI9l1vXWuUX63Bl-o9-BCx8ApWjg/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23032),('AIe9_BGhYIk2KhOdF8fekWDvq8JUxGIQI9HlVju-LKuvj8ibhzGykST1RGjAhFyCtGBEyX47KmJ-pKQ1zmEp4YJmw503nJsTlOGSVLBNAjX4zG6Yhcy6_mE','Great facility with even better staff. Went in having trouble breathing and left feeling like a new man all over again. Staff was extremely attentive and actually listened to me. I work in a hospital myself so I know the difference between great patient care and good patient care. This facility and it’s staff are great in my book. Thank you guys so much. P.S. One great thing that I’ve never seen before is that they emailed me my xrays along with the report within 30 minutes of my exam...I loved that! You guys are my number one choice if I ever (I hope not) start to feel deathly ill again.','2019-01-07 18:54:26.014000','2019-01-07 18:54:26.014000',5,'Julian Shaw','https://lh5.googleusercontent.com/-bljC3qemlvI/AAAAAAAAAAI/AAAAAAAAAAA/6LfNM8L9UqY/c-rp-mo-br100/photo.jpg','3511292162159714121',7508),('AIe9_BGhYIk2KhOdF8fekWDvq8JUxHJJt2fXfQudsfKQV-B83DYNkQrEpO3OJq7M0O3UFuH05QyaLKS9UyVN3scB6aADborHBxQDZRrNGJdFaea1xu_oPwo','The staff was very polite and helpful. This was my first visit and the staff made my experience fast and easy....','2020-07-07 02:29:43.882000','2020-07-07 02:29:43.882000',5,'Elizabeth Chapa','https://lh3.googleusercontent.com/a-/AOh14Gg0Q1VNME0hqofAWSTVZNasDLbCpS8awYfQdYH8xQ=c0x00000000-cc-rp','3511292162159714121',21298),('AIe9_BGhYIk2KhOdF8fekWDvq8JUxhYF3C-bZI-dTpUQbQCJVF7QITVkSyAMVidHN-w8GnTXqN-0YZqnGKxHdNpuk_-S_JkvWOwmfSgMZNCD9snjkry8w3c','Very good service our nurse Nicole was very patient with my father','2020-01-12 04:47:41.218000','2020-01-12 04:47:41.218000',5,'Brenda Gonzalez','https://lh5.googleusercontent.com/-x8bfYz-wtKM/AAAAAAAAAAI/AAAAAAAAAAA/NwghIwerDz8/c-rp-mo-br100/photo.jpg','14567670160750071148',9471),('AIe9_BGhYIk2KhOdF8fekWDvq8JUxpd09pdk-Qxk9V7sCJQHvhRz5vo5geAtE6NhfYPRhs4Ve7uLF91os8ZyCndzs5Supub-YrEg9G2a5s4SYkNjmOsoKGM','Very fast service. I messed up my toe around midnight and they saw me right away. The receptionist, nurse, and doctor were all nice and very helpful. Very happy I didn\'t just go to a regular ER.','2017-03-01 05:59:28.304000','2017-03-01 05:59:28.304000',5,'Olivier','https://lh6.googleusercontent.com/-nl7EKUncmnE/AAAAAAAAAAI/AAAAAAAAAAA/4jj-W8Bwj2w/c-rp-mo-br100/photo.jpg','16590124370714063921',4045),('AIe9_BGhYIk2KhOdF8fekWDvq8JUXq6YSz9j45_4PagD_2uqzIsTj_ZTtXO-BVxIP8BBsMweiuKIbkZ5pjnZEngSVZ-t71S25tZY4t6dXSzB947VVuUt5_4',NULL,'2019-04-13 18:25:10.610000','2019-04-13 18:25:10.610000',5,'Katherine Richard Murphy','https://lh3.googleusercontent.com/-rM9qDHs0EIY/AAAAAAAAAAI/AAAAAAAAAAA/X_00pwhWDIs/c-rp-mo-br100/photo.jpg','17898197009688164559',5772),('AIe9_BGhYIk2KhOdF8fekWDvq8JUxRlOgaYnsf_y-DKrVPlFQl4pdLWFsvbeKk6RsaZxXbMFPlZoaJslDcEKrkUGFhT5LMWKLWI6LPMZGeqH45uhT9OyFAQ',NULL,'2017-10-25 08:21:15.540000','2017-10-25 08:21:15.540000',5,'James Wilson','https://lh3.googleusercontent.com/-vkTYXB1-qKI/AAAAAAAAAAI/AAAAAAAAAAA/NJq77AVX1ps/c-rp-mo-br100/photo.jpg','3511292162159714121',7771),('AIe9_BGhYIk2KhOdF8fekWDvq8JUXSOYjpgqKpN4m7UJ_WfN0q5bE0CqVnnoOE0rKic8jzWv5DkpCCBkOD5lWcPBB-6HroQFiyK_45moQvVrcAZxAIj2s8Q','Everyone was professional and friendly. Especially our nurses, Sarra and Victoria. We didn’t have to wait long to be seen by the doctor on site, just for the specialist that had to come in.','2019-12-20 02:02:22.997000','2019-12-20 02:02:22.997000',5,'Michael Castillo','https://lh6.googleusercontent.com/-tWSYBhIOY-8/AAAAAAAAAAI/AAAAAAAAAAA/OJDSobXLLPM/c-rp-mo-br100/photo.jpg','12541597562633926366',331),('AIe9_BGhYIk2KhOdF8fekWDvq8JUY20TMxTA4wQbKXftKYcgDc_229sNoM2xkt9JYUvH5GhoiYAkyZT65KmsOHLFeRCDCQPAX9iZpdSIFsS4aNXLQssNc3Q','Dustin made my treatment as comfortable as possible. I definitely recommend treatment here. Very couteous and professional.','2020-07-17 17:36:52.643000','2020-07-17 17:36:52.643000',5,'Jeremy Wright','https://lh5.googleusercontent.com/-WJeNe8TQDU8/AAAAAAAAAAI/AAAAAAAAAAA/FcPqC0dIS3w/c-rp-mo-br100/photo.jpg','14748677429039074158',21751),('AIe9_BGhYIk2KhOdF8fekWDvq8JUy6qtOSSL0ay8ZaLmy5l5pLj6fa7aD1QFapRF9iJ8IsuqiIUz1v4_th-Exk_f-JEXg4cizpnV_PMm5n-HKmAP8xq4AMY','Dr. Edwards \nRn. Shola \nRn. Irving\nRt(r) thao \nReally great people!','2019-09-01 04:44:14.888000','2019-09-01 04:44:14.888000',5,'wtf hermes','https://lh6.googleusercontent.com/-cz3TDWTsQTM/AAAAAAAAAAI/AAAAAAAAAAA/h-TUNq_MsIc/c-rp-mo-br100/photo.jpg','12541597562633926366',439),('AIe9_BGhYIk2KhOdF8fekWDvq8JUybJ3yrejLgo3TtmO672fZCxCNtV35i9CcTcTwpsyAhYYPv2jDkD01xbPAnbjUaxdIRX6_LDKpcPix2ZqoR6edOUsp4U','Had such great care here today Christine and Kimberly were great and helpful when I came in and did paperwork and brad was a great nurse while I was in the back. Defiantly recommend anyone in need to come here','2017-05-25 23:22:53.830000','2017-05-25 23:22:53.830000',5,'Brook Kroll','https://lh3.googleusercontent.com/--vfALaKpRKg/AAAAAAAAAAI/AAAAAAAAAAA/SDyUvoXXrFE/c-rp-mo-br100/photo.jpg','16590124370714063921',3979),('AIe9_BGhYIk2KhOdF8fekWDvq8JUyDStNrjCdYpb0Y5ts0THwNMqWoR8z7DkFO_nX9PV2fxSHk4eJTGQV8jyN_AtxJ3AKloPderVPSI4BRKRoc6AMPiCHG0','I have never had a better ER experience anywhere else. Everything was quick and easy. I was fully informed the whole time and all of the staff (Rebecca V, Jeri, Rebecca W. And Dr. Kimball) were all taking very good care of me. They made me feel like a priority and that hardly ever happens at an ER.','2020-02-06 15:29:35.627000','2020-02-06 15:29:35.627000',5,'Rebecca Skouby','https://lh4.googleusercontent.com/-EmWaeY92LIY/AAAAAAAAAAI/AAAAAAAAAAA/kGJAckUhefA/c-rp-mo-br100/photo.jpg','16590124370714063921',13877),('AIe9_BGhYIk2KhOdF8fekWDvq8JUye_5UTvSYtp07aD7kZ0GeLoaw4c6Y10IkxV3WAYRugfkwgIxdJw1GU9ZTj7a0oANDyYmIxqewCPvmgMJIA58v_QrR3A','This place is amazing! The level of care they provide is phenomenal. The staff is so caring and there almost no wait time. The nurses, Gina and Reginna, the doctor, Dr. Vaagene, and the technician, Ricardo, all deserve to be recognized for the service they provide. I highly recommend SignatureCare Emergency Center! You will not be disappointed!','2020-02-22 19:37:53.735000','2020-02-22 19:37:53.735000',5,'Junior Serrano','https://lh6.googleusercontent.com/-CfqGi-mYRHE/AAAAAAAAAAI/AAAAAAAAAAA/Ztzp4MAQ_bw/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',13514),('AIe9_BGhYIk2KhOdF8fekWDvq8JUyF4SIpj_Lt0rPPTKg5ayoNHJ0muwBOo3qCv98uoWDGhq8OWeMLFq1C2qYTW4a207pNjc7WWT5RyIs8sqekXqk1KtqU0','Great experience, fast and efficient. My son had allergic reaction to medication and they got him right in and started medication to stop his reaction. And found that he has a kidney stone and started to treat that. Thank God Signature Care was so close and the awesome and caring staff and Dr Patel where there.','2018-04-19 02:02:22.329000','2018-04-19 02:02:22.329000',5,'Diane Karen','https://lh3.googleusercontent.com/-I5Zc5c2yPTU/AAAAAAAAAAI/AAAAAAAAAAA/Fdzyft7gz0A/c-rp-mo-br100/photo.jpg','17394740196501090048',4860),('AIe9_BGhYIk2KhOdF8fekWDvq8JUYfj8478EuqgbfTpPmz7AtbfGFnTg4vfaV89tFt2Nwfy17Y-aHRC0eYHVyqA6pRKws4pEo_5YSC3XfwsZ5Y4FHDhMKRg','I absolutely love the staff here, the atmosphere is very welcoming, you recieve quick care, they are very thorough with explaining diagnosis, and all around super friendly folks! Shout out to Luke, Kim, and Sherri for their help today! They made sure to check on me numerous times and ask if I needed anything. They explained each process we were going to go through. They were patient with me and very sweet! Definitely recommend going here!!','2019-05-24 14:23:45.269000','2019-05-24 14:23:45.269000',5,'louella hill','https://lh5.googleusercontent.com/-2cDDn670oPI/AAAAAAAAAAI/AAAAAAAAAAA/pGqIV0CBMt0/c-rp-mo-br100/photo.jpg','3272657195432704501',6960),('AIe9_BGhYIk2KhOdF8fekWDvq8JUyKrhFHe6k8VczcvAGPxTQqO43_QHGXmhhYKHkV4xf9r-UWxnb3BNsMCkHGyE01uIFCdF2YIhpv5jWT8R1FVjBG57CnI','My experience was very amazing. the doctor, and staff was so so nice and they took care of me and made sure that I had everything I possibly need to get well. The doctor.was very informative about my sickness and I would recommend this facility to any person.','2018-12-31 12:37:19.263000','2018-12-31 12:37:19.263000',5,'Reco Boyd','https://lh4.googleusercontent.com/-Vs18j6zPDH8/AAAAAAAAAAI/AAAAAAAAAAA/BEr3Fzeykro/c-rp-mo-br100/photo.jpg','3272657195432704501',7076),('AIe9_BGhYIk2KhOdF8fekWDvq8JUyLyM_wtY4DOUUFAr1TPtAt0XGO234ZBDm5VEUdD4tZ8pXYM6BE2a6bFeXUqDqU2CP2K98Qzxqe1OxFBKP_eLjuDnsKI','We had to take my son in for severe abdominal pain. Thankfully it only ended up being a severe case of constipation! The staff from the moment we walked in was truly AMAZING. Dr. Jorden was so thorough and calm with my child, even though he was screaming in pain! Lucas, our RN was absolutely wonderful. From starting his IV to the end of the visit, \nhe calmed G\'s nerves and was so easy with him! Our Rad Tech was phenomenal as well! Signature Care is our first choice now for any emergency that may arise! Thank you for making such a scary experience not so scary for our little guy!','2019-09-08 22:20:05.845000','2019-09-08 22:20:05.845000',5,'BRITTNEY HIXSON','https://lh5.googleusercontent.com/-g1bq8HaCFo4/AAAAAAAAAAI/AAAAAAAAAAA/c-EibVFcRPM/c-rp-mo-br100/photo.jpg','3272657195432704501',6897),('AIe9_BGhYIk2KhOdF8fekWDvq8JUYRXAP9NxvA4tvKQCV-OQgzgghNtVGgvorY21AFCvQeaxtjBqcmSL58ZYfroVXEMRRhsrVFgvWSlnaKoCv9b-LnE4kHI','Dr. Harjai, Erika, Marcus,and patty were all very nice and welcoming ...we might get a fat bill ..well see.','2019-09-25 16:26:45.153000','2019-09-25 16:26:45.153000',3,'flea Gonzo','https://lh5.googleusercontent.com/-q948F4lN_kY/AAAAAAAAAAI/AAAAAAAAAAA/namZ9TPecsc/c-rp-mo-br100/photo.jpg','16389487648212004696',2879),('AIe9_BGhYIk2KhOdF8fekWDvq8JUYwdA6cLpBn2YuqTCqvCZPC4vdgSsci16FNiLpgU0ItDkRA-e9Af7DOPgP6Y3X0VewAG8Zh84xAl6_1FIC_TmZkZWDcc','Recently had my Covid19 test completed here at SignatureCare and the staff was very efficient. I drove to Lewisville from Frisco around 8am Tuesday since the facilities in Frisco did not offer a Rapid Test. As a walk-in, even though it was early morning I naturally expected a long wait time, especially after seeing the longer wait times at other clinics this week. I wore a face covering inside and the staff gave me paperwork that I could complete in the comfort of my car while I waited. The wait time was about 90 minutes, and I listened to music in my car and read a book until they called me on my cell phone and asked me to come back inside. Appreciated the ability to socially distance while waiting. I have mostly been a hermit since April, but I just wanted to be sure I was not exposed while grocery shopping. The test was quick and I got my results (negative, yay!) approximately 20 minutes after the nose-swabbing. Everyone was pleasant and kind. During my visit I could tell they were very busy, but managing as well as they possibly could. It is amazing that you are providing services around the clock 24/7! Thank y\'all for serving our community!','2020-06-25 03:43:35.061000','2020-06-25 03:43:35.061000',5,'Katheryn Blankenship','https://lh6.googleusercontent.com/-tDsmF93vq_w/AAAAAAAAAAI/AAAAAAAAAAA/p_-iCs2Tbvw/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',21276),('AIe9_BGhYIk2KhOdF8fekWDvq8JUYXrf0guChDTiTOXDdIkiuzpjuyMT_b0ITCz5_uYQ7pH0CcJYCyzSEuH51iD0-KdvWsA25OAgshZKFtajiak8iNR1s9s','The staff here is awesome!! I am not a big fan of hospitals but everyone here makes you feel at home. They explain the process from start to finish. Not to mention it\'s a bunch of beautiful women here so that made it go by smoother. If you are looking for a primary care physician you should give this place a try.. Lara is so awesome!! Dr. Faig is the best. And Kristina was by my side the whole time','2020-01-02 15:59:42.186000','2020-01-02 15:59:42.186000',5,'Mal Miles','https://lh3.googleusercontent.com/-R02VUZGyCTM/AAAAAAAAAAI/AAAAAAAAAAA/RK-ZP-aMsGQ/c-rp-mo-br100/photo.jpg','12541597562633926366',265),('AIe9_BGhYIk2KhOdF8fekWDvq8JUYye_FwQvUumaxY9H6c6WsXSAO4Nn0-P4GItsdwq0YLtlX88oUsXMeZ_18kh9vh1c4K64gY0dTE51u2osTVZNCj_LTzs',NULL,'2017-02-17 19:09:19.372000','2017-02-17 19:09:19.372000',5,'LACEY PERRIN','https://lh3.googleusercontent.com/-2CiOVeqMGpU/AAAAAAAAAAI/AAAAAAAAAAA/mtk9wvCpp1Y/c-rp-mo-br100/photo.jpg','17394740196501090048',5112),('AIe9_BGhYIk2KhOdF8fekWDvq8JUyyQ-WrMrcgZ8xtRoJrPaETfDXCATV-tD4AkWq3hDdOoWELEYClKX4_jqutmi4A3tGcRAoT8tHFkofLrWJYJ3mgb5AqQ',NULL,'2016-08-24 16:08:45.114000','2016-08-24 16:08:45.114000',5,'Jamila Morgan','https://lh3.googleusercontent.com/-TfiqG7250VA/AAAAAAAAAAI/AAAAAAAAAAA/GgmE1NVQJbM/c-rp-mo-br100/photo.jpg','3511292162159714121',7947),('AIe9_BGhYIk2KhOdF8fekWDvq8JUZ7Jg_PQfF1wMYIjV-Gfz2dLSJHlSOdM9_REMDa6Wn2Z9IaUkTJadVoT-ftDgXt9D4cEMgidQLg6FB3_2bwXoquUhtXQ','Fast and friendly staff. Lindsay and Monica were very attentive.','2020-07-23 03:11:19.672000','2020-07-23 03:11:19.672000',5,'IVAN LOMELI','https://lh6.googleusercontent.com/-OjeBQvguHtg/AAAAAAAAAAI/AAAAAAAAAAA/3dnus7OWI2g/c-rp-mo-br100/photo.jpg','16590124370714063921',22663),('AIe9_BGhYIk2KhOdF8fekWDvq8JUz9F88b4NWX9zLflbwUh_VwU2Rbg4W16GkKK53qPFZjcJaeq3I9CuXQLWxsjcYyJqZXFmCRPXB1M6AVjRe0lYQ9Cg-xE','—————————————————————————————-\nI gave SignatureCare Emergency Center the (five star) rating I did because from when I walked into the building until the time I left, my experience there was amazing.\n\nI can only speak for me and my experience.\n\nWhen I walked in Lindsay greeted me with a smile and a comforting manner. My knee was in excruciating pain. I could barely walk. \n\nI had never been there before but will definitely go back if the need arises and will tell others.\n\nMy nurse Remington and the other nurses that I had contact with today were kind and caring.\n\nI had to see radiology and other exams to be done on my knee. JR and the other tech that helped me were both kind and gentle (and understanding of my pain even though they had to take exams that are uncomfortable to the already paining knee).\n\nDr. Morrical was also very helpful and explained the situation to me so that as a patient I could follow along. He is reassuring and positive.\n\nThe areas that I was taken to, I noticed were clean and had a nice decor.\n\nI would definitely recommend SignatureCare Emergency Center to anyone from the experience that I had (they are a welcomed change). \n\nIt was nice to know they are open 24-hours after Dr. Morrical said that even after his shift someone will always be around to answer any questions that I may have 😊 that made me feel at ease also.\n\nThank you to all with whom I had contact with there today...even though I may not remember all names, I am very appreciative of everyone who helped me.\n—————————————————————————————-\nPS: my neighbor was concerned when she saw me and asked where I had been to help me...I highly recommended SignatureCare Emergency Center and she said that she would take her granddaughter who has been feeling under the weather this week.\n——————————————————————————————','2020-01-24 07:08:21.463000','2020-01-24 07:08:21.463000',5,'Aundrea\'','https://lh6.googleusercontent.com/-YWRCpLJgokg/AAAAAAAAAAI/AAAAAAAAAAA/TNS5DP5CI8M/c-rp-mo-br100/photo.jpg','16590124370714063921',10216),('AIe9_BGhYIk2KhOdF8fekWDvq8JUz9Yf_A2x4aIhRm0vCbwVArsHScZjRSSRfaiw3NnLPovyDf8EG_RYi5j2FmOoL4JYM4fKtNrqKOhlVJj_8EJzzD7GyMU','First time coming for a follow-up with my wife, everything was quick and the nurse hamzah was kind enough to answer all of our questions, also Dr signla was awesome and informative as well and checking in with Leslie was easy and she\'s very nice and personable ! It\'s a 20 minute drive for me but totally worth it!','2019-01-13 20:55:58.452000','2019-01-13 20:55:58.452000',5,'Alex Pena','https://lh5.googleusercontent.com/-QFl6aV7p2mo/AAAAAAAAAAI/AAAAAAAAAAA/dzcPqW-Xajg/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7481),('AIe9_BGhYIk2KhOdF8fekWDvq8JUzANfJA_YtaOCgH3-Z1qx2j-7rRzCDNLGS-P1mnuuC5C7JqcSQkazqftZgr1YfWwNkyPRYdnRL1IkAy_4xyk41I-qXPE',NULL,'2020-05-22 13:44:04.170000','2020-05-22 13:44:04.170000',4,'Skylar Green','https://lh3.googleusercontent.com/-NOv3T_wcir0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckfYeQ_PkhON4UagiOrq2QJn4z_9Q/c0x00000000-cc-rp/photo.jpg','3272657195432704501',22132),('AIe9_BGhYIk2KhOdF8fekWDvq8JUZB6tZSVpYt0X0aRhZy-sVD7fOc-KRWeVSR9JwYsCG-qJNZYUG8dqgQL68yXGBoWCQN7kQXl2VbJasVKC4mk3dkFjSyM','Kendra checked me in and was so wonderful and helpful! Nurse Brad and Dr. Harjai and the tech JR all had great bedside manner and treated me extremely well. Wonderful experience!','2019-11-26 14:28:02.165000','2019-11-26 14:28:02.165000',5,'Annalis Cigarroa','https://lh4.googleusercontent.com/-vKb63t2vVas/AAAAAAAAAAI/AAAAAAAAAAA/6pSPIG7Vgak/c-rp-mo-br100/photo.jpg','16590124370714063921',3076),('AIe9_BGhYIk2KhOdF8fekWDvq8JUzCOysc5FIb4aO0Z6QZF1bZ5divipyVYhgdukf6U6FE_0j83w8NdlP-Md03WLhHt5KMJ6dYPK-w0exRzG24oEv_amEPA','Lucas and Leanne were awesome!!! Great staff','2020-02-28 22:52:48.053000','2020-02-28 22:52:48.053000',5,'Blackbarbie04','https://lh3.googleusercontent.com/-F3V0p9fkEJ0/AAAAAAAAAAI/AAAAAAAAAAA/w1nEoxfwDOk/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',14314),('AIe9_BGhYIk2KhOdF8fekWDvq8JUZdttIjQlwoMHLCsfYy3HHgYMifrK2sypzIdLqVgRAEXZjezfd_-RhxIBFRsMsmbX5MZIACHuskwThuRzhylieRVVaNg','Everyone here is very kind and the service is really fast.','2019-09-17 13:50:24.175000','2019-09-17 13:50:24.175000',5,'carmen alvarez','https://lh6.googleusercontent.com/-GiVBg3QN8us/AAAAAAAAAAI/AAAAAAAAAAA/8DArJnKexSY/c-rp-mo-br100/photo.jpg','13486358490203335051',825),('AIe9_BGhYIk2KhOdF8fekWDvq8JUZE1jzqoPqgv7W0UmVDgDH6DTxi-4HzsaF_HnJbxltMbpabg3HYk0cHv9sUAr8VHvLNLgHRpPBI2xDMDlJ7HcAL1rC5Q','I have been to the ER several times in my life. I just thought I knew what good care was. This place is incredible. Best Care and quality of service I have ever experienced.\n\n DR. MILLER, MD, KRISTIE L, absolutely wonderful. \n\nNurse: Christina Rochelle R \nSo wonderful great nurse top notch. \n\nRadiology Tech: Christina Marie K \nKind caring gentle with my injury. \n\nTech Lisa? I think please forgive me if I got it wrong. You were so good at what you do. Constantly checking on me making sure there was nothing I needed \n\nFront Desk: Aileen   L quick and efficient.\n\nThe best part is I was in and out in a flash. Treated fixed up and moving on. \n\nThis is what Emergency Care Should be like everywhere. Unfortunately it is not. \n\nTHIS PLACE IS THE BEST I HAVE EVER SEEN KEEP UP THE GREAT WORK \n😁😁SIGNATURE CARE AUSTIN😁😁','2019-05-19 03:58:24.142000','2019-05-19 03:58:24.142000',5,'Jessie Fair','https://lh5.googleusercontent.com/-VjuBlEiR9yY/AAAAAAAAAAI/AAAAAAAAAAA/L38vRwDldXQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4275),('AIe9_BGhYIk2KhOdF8fekWDvq8JUzE96SS5lOS_saRjR6jB5z8e_y4s1PPcKgx0d2zEC4taEbIqWKT4igfzMwNKOvWlwWi__j940WVa1EG_jC2GhVNDW_d0','Best hospital experience. Staff is so friendly','2018-08-20 08:00:05.480000','2018-08-20 08:00:05.480000',5,'Emily Crouch','https://lh5.googleusercontent.com/-7SWCdlhZJSM/AAAAAAAAAAI/AAAAAAAAAAA/WKtvPUarI5c/c-rp-mo-br100/photo.jpg','8918455867446117794',9243),('AIe9_BGhYIk2KhOdF8fekWDvq8JUZijjI_RhktvEcmT7BRn6AAdwXhtgBiyBnDVDmoo9N4awmW-xH7m6PEbm31Kir6T7JNsC9lgdi5oo28-OHJjmyenwFDY','Botester and Amy Great Service','2019-06-29 01:48:10.585000','2019-06-29 01:48:10.585000',5,'Rodrick Hall','https://lh3.googleusercontent.com/-oWlcdWCzsvM/AAAAAAAAAAI/AAAAAAAAAAA/SCKUQ6xazyU/c-rp-mo-br100/photo.jpg','14567670160750071148',1282),('AIe9_BGhYIk2KhOdF8fekWDvq8JUziQd2whK1JV1tQLnlZBmIS9PZELSDd68kBrzduH5efqsE5KKfY2qh6Zn4aQcYhXkwzqxEyq0JS8PNx_zz-zVOcFjsrQ','Great Experience today!!! I will be back. Thank you Dr. O\'Malley, Tricia B, Jose P, and Patricia','2019-11-29 20:05:03.116000','2019-11-29 20:05:03.116000',5,'Lagennueffa Jefferson','https://lh3.googleusercontent.com/-li_vcIRW74E/AAAAAAAAAAI/AAAAAAAAAAA/Qa9fsvl3TRg/c-rp-mo-br100/photo.jpg','16389487648212004696',2609),('AIe9_BGhYIk2KhOdF8fekWDvq8JUZMjFJg6wbej4v876Cn4uPzyBE7YMueQGBsF9D-bDDl9Ofdwm8-bXbGX6iwUldE5K551pBknQQlDGaQB652nHFYUtVXY','Very quick and nice people. Tricia. Aurora. Jani. Jasmine. Dr cavasos.','2019-08-29 22:17:38.683000','2019-08-29 22:17:38.683000',5,'Unicorn Kids','https://lh5.googleusercontent.com/-NalhJxvTvnI/AAAAAAAAAAI/AAAAAAAAAAA/T5jjYIKwkjI/c-rp-mo-br100/photo.jpg','16389487648212004696',2966),('AIe9_BGhYIk2KhOdF8fekWDvq8JUzP-rnzRnSdfoZ0ozER_HCJEYVCd0tcVEfuBjyLRhDlIzE1VhtaCjxVyCWJRvq0GJrrmgfnrYcaqwkBqp3ocMCaw9NxE','I came in today with a rib injury. They took great care of me without hesitation. The people there are very kind and welcoming. They offer beverages and snacks and make you feel at home.','2019-04-20 19:45:46.409000','2019-04-20 19:45:46.409000',5,'blake vega','https://lh4.googleusercontent.com/-KGyVFSWfWJ8/AAAAAAAAAAI/AAAAAAAAAAA/1VBN67ItkQE/c-rp-mo-br100/photo.jpg','12541597562633926366',514),('AIe9_BGhYIk2KhOdF8fekWDvq8JUzReJ9iidwKzRdhv82oq8WPzBeHToKWc3_TaMruBg4OWAFMm_XV-R9c9ma3segklzHSa9GxT9ah0YPqoX2Si0hpyXFeU','very nervous and teary eyed upon arrival the feeling of reassurance they gave me to find out what was wrong with me warmed my heart wasn’t like most ER’s didn’t feel r','2019-12-13 17:31:44.419000','2019-12-13 17:31:44.419000',5,'Crystal Chukwu','https://lh5.googleusercontent.com/-F1MhftMw55g/AAAAAAAAAAI/AAAAAAAAAAA/_3byLxAbVwc/c-rp-mo-br100/photo.jpg','12541597562633926366',352),('AIe9_BGhYIk2KhOdF8fekWDvq8JUZs5m16FB_kXJwfX2pyyKyJ-BLZPL_BNB9nrjNEzguJRfKugrgl0ZS6V3FJfkgjex0wH3Tjf_-IsLnpDIF7PnoU6hPPI',NULL,'2017-04-01 13:35:11.616000','2017-04-01 13:35:11.616000',5,'veronica beltran','https://lh3.googleusercontent.com/-unNe6ksAFeM/AAAAAAAAAAI/AAAAAAAAAAA/dN2QLTUliCE/c-rp-mo-br100/photo.jpg','14567670160750071148',1860),('AIe9_BGhYIk2KhOdF8fekWDvq8JUzXLDU6RVxdTMMiSTgXbMkCeecbNTVj5AwjK1R5t1JdtbGD5n57-p9Ze6gmXaLYS7ylsW7WRkBASaoOW4ShtN3rr1lWs','Came during my lunch break and the front desk staff, Aileen was very fast and friendly. Big shout out to Kara, Adam, Christopher, Linda and Dr. Miller for making sure I got what I needed. Always feel taken care of when I come here.','2020-02-10 20:32:17.515000','2020-02-10 20:32:17.515000',5,'Neressa Salazar','https://lh3.googleusercontent.com/-WLemXEU0u3w/AAAAAAAAAAI/AAAAAAAAAAA/W3nE690ef9s/c-rp-mo-br100/photo.jpg','16891069708558046635',13955),('AIe9_BGIy_plKfaZrItPyyQZNLvs_a7ZyMwzdUdVvhKoM614IPn-t3GSw-l93lIMrXHX_oV9Ed_AtyHTOz6PmcfwvbMCRutPhnwlsbZnvyD9XglicUsEM4E','I went to this location because I couldn\'t drive much further and i had to leave work because of the pain. From start to finish I was well cared for. Mercy was kind yet efficient and got me in quickly. Kristina took me to the back got my vitals checked and me resting in less than 5 minutes, Dr. Faig was the first doctor that i felt listened to what i was saying and still worked to resolve my issue without just dismissing my concerns. My x-rays were quick and i could actually see them they weren\'t a secret thanks Laura. They also had an amazing medical assistant who was caring and made sure to connect with me and make my visit more comfortable. Let\'s not forget the warm blanket! Amazing team and I was in and out in less than an hour. Thanks for being kind and helpful!','2019-04-11 02:50:57.070000','2019-04-11 02:50:57.070000',5,'Krista King','https://lh4.googleusercontent.com/-KYxnur-us08/AAAAAAAAAAI/AAAAAAAAAAA/_0P5ohOTDsE/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',518),('AIe9_BGIy_plKfaZrItPyyQZNLvs_bChX3kng8mQtcGg14mn_U06isHGax-O_fsBepBa42Fg1pcdTfNU0R6z421lR9bRCjsHoiLA8UNHtSieEhQaJpiryaM',NULL,'2020-05-25 14:44:47.508000','2020-05-25 14:44:47.508000',5,'Lauren Roberts','https://lh3.googleusercontent.com/-K5U_2fiRRo8/AAAAAAAAAAI/AAAAAAAAAAA/OWnU6D7Mjy8/c-rp-mo-br100/photo.jpg','16891069708558046635',22696),('AIe9_BGIy_plKfaZrItPyyQZNLvs_nU0HLOWMdHv8wfFb0rI5eC9_jv0sJW1opBXfvTwqkRwkXjEkC86ubxNPRSD-edDHIAeUuQ_2xB50MGojjn6RS2Y49E','Wonderful customer service would give 10 stars if they would let me THANKS KIM LUCAS LEANNE AND ERIC ❤️','2020-02-28 21:14:30.174000','2020-02-28 21:14:30.174000',5,'Deatra Burris','https://lh3.googleusercontent.com/-0zMNiHVk7p8/AAAAAAAAAAI/AAAAAAAAAAA/6Z5dqd4RVdw/c-rp-mo-br100/photo.jpg','3272657195432704501',14315),('AIe9_BGIy_plKfaZrItPyyQZNLvs-2CyRHyyaiLlvQdrmEi3g8zuIFW1eISnc2PA1CMnqAVn5QS4-ot75kJdbH5sVnfshgEak87SACQsN3NtjMTXIGqwaz4','I took my mother in for possible heart issues. Quick service, pristine facility, excellent nurses with phenomenal bedside manner! Dr. Yost was incredibly thorough and caring! He truly went above and beyond! The whole staff was so incredibly accommodating through the whole experience. They kept her overnight in an incredibly comfortable room and the care was beyond anything I’ve ever experienced!! I absolutely recommend and will not choose any other facility, for my family, when needed!! Thank you so much Signature Care, Dr. Yost, Shari, and all other staff!!','2019-07-22 07:17:54.003000','2019-07-21 21:20:33.419000',5,'Heather Hawkins','https://lh3.googleusercontent.com/-m9aUyRbwpdY/AAAAAAAAAAI/AAAAAAAAAAA/PM3KFR1PMec/c-rp-mo-br100/photo.jpg','3272657195432704501',6938),('AIe9_BGIy_plKfaZrItPyyQZNLvs-2oL3NUyOL2Z4f4hAiAlCHeYrIquZnXnztxXn2XzqgAsjuh-9dZ6yo0-cg3FtuYF_LFLyX-l0fi1-Y5dsZog3syMcjA','Anthony and Dr. Vakey were absolutely awesome and super friendly!! Didnt wait at all!','2019-01-30 05:17:53.992000','2019-01-30 05:17:53.992000',5,'Margaret Anne Schmidt','https://lh3.googleusercontent.com/-m6AwcpcwZfg/AAAAAAAAAAI/AAAAAAAAAAA/riIrGi6NqpA/c-rp-mo-br100/photo.jpg','16590124370714063921',3565),('AIe9_BGIy_plKfaZrItPyyQZNLvs-Ds06n3BxYuyOJpZXFaWpN7J-p9iI9MGGL3I5lTVgs574aD-AS1At9xCzuK94_Tcx_vRv2aetiQq-ypoBAt-W9omnSc','A great place to go when you need to be taken care of and quickly. Fast service. No Long lines. Pretty Cheap.','2016-04-29 18:56:33.216000','2016-04-29 18:56:33.216000',5,'Domino Adams','https://lh6.googleusercontent.com/-nMzAvu5t-9s/AAAAAAAAAAI/AAAAAAAAAAA/UuQzj6QmUJg/c-rp-mo-br100/photo.jpg','3511292162159714121',8013),('AIe9_BGIy_plKfaZrItPyyQZNLvs-fCSUe5Qx1hrUXRTEqDUJXihJIIKAbploow1-U2XPQF9RCHfOXngoB4hBVw2cbEZstl2Tr5Lsu32VStnqOlkv_XASbA',NULL,'2020-03-15 20:42:12.311000','2020-03-15 20:42:12.311000',5,'Norma Ventura','https://lh3.googleusercontent.com/-Ogqdc62Hc1I/AAAAAAAAAAI/AAAAAAAAAAA/KA_jweV1rD4/c-rp-mo-br100/photo.jpg','16389487648212004696',21014),('AIe9_BGIy_plKfaZrItPyyQZNLvs-Jy6rNyMB30mM8mSDszOzaXIqc6mRkN35QikbrUEwJL_Q6gfzfu5g0Do4N6PM0AZCSjBjmE9KGdq00enHSYbnZbc3As',NULL,'2020-07-13 02:54:53.926000','2020-07-13 02:54:53.926000',5,'Lesly Pelaez','https://lh4.googleusercontent.com/-iY5jRuYLFV0/AAAAAAAAAAI/AAAAAAAAAAA/b7QMt_qMHEY/c-rp-mo-br100/photo.jpg','2077061009497551125',22860),('AIe9_BGIy_plKfaZrItPyyQZNLvs-KVBERsWNCDYJtkLlNY_PMTXNvyybND0sSsegl5aMfCSXmYjzNQJTFaSfZ57oKpu6W_BosFmoJPMyQGd875daq7mWvs','It was fantastic! Great staff great doctor ,no waiting, everything was perfect ! I will go back for sure .\n\nDR. SOLI GIANCARLO G M.D. \nNurse: Kolodny, Yisroel \nRadiology Tech: Montes,Ezequiel \nFront Desk: Roman,Brenda\n\nThanks to you guys :)','2017-12-27 01:58:25.814000','2017-12-27 01:58:25.814000',5,'Stephanie Douville','https://lh3.googleusercontent.com/-qGHxCcN_wX8/AAAAAAAAAAI/AAAAAAAAAAA/LQ-Vo-_c-Sc/c-rp-mo-br100/photo.jpg','14904078213800803294',2296),('AIe9_BGIy_plKfaZrItPyyQZNLvs-MeuubNW9_3xcpujCm8Fg63M1nsB-SsbY1pIQJpAfvDGUEg6bsReSME3VSYCmu1g3qC1ErdadzP9Onqbpiq7LltZaPA','Alvean and Jocelyn are really great and the service speedy with no long wait. Love it','2020-01-08 16:02:54.968000','2020-01-08 16:02:54.968000',5,'Neinah Cloud','https://lh5.googleusercontent.com/-q5q4oycGsag/AAAAAAAAAAI/AAAAAAAAAAA/yOSNQT68Ebw/c-rp-mo-br100/photo.jpg','16389487648212004696',9446),('AIe9_BGIy_plKfaZrItPyyQZNLvs-OKqGirSoADbYMW3Z6izuuq_QuJl7_zKUg7-58i1uwaDCX6_XcKGNU3Mv5P8X2tDzIKw2rOIA52suMm0YJQGujUemYk',NULL,'2020-02-19 19:29:52.155000','2020-02-19 19:29:52.155000',1,'Johnnie Hogue','https://lh5.googleusercontent.com/-2nAew3s8Q9s/AAAAAAAAAAI/AAAAAAAAAAA/pNjElMaiTTA/c-rp-mo-br100/photo.jpg','2694018788013845459',14224),('AIe9_BGIy_plKfaZrItPyyQZNLvs-uI3btrF-mHDw_g1dT7h_jI3f-_g72lAH3NGoOU84hQuEJy7yIKsoQ9AiQUaqE54vxyLHRB8sXDIYFfyPuwlrxZvNZI','The quick service and wonderful attitudes at Signature Care Emerges is unbeatable, I\'ve had to come a few times and each experience is better than the last, my nurses: Kristina and Victoria, ER tech: An, Rad tech: Laura, Registration:Maya and Dr. Miller were all outstanding','2020-01-31 19:01:53.937000','2020-01-31 19:01:53.937000',5,'Melissa Porter','https://lh5.googleusercontent.com/-pq2jlnUydHc/AAAAAAAAAAI/AAAAAAAAAAA/Lprau5f9Hp0/c-rp-mo-br100/photo.jpg','12541597562633926366',10378),('AIe9_BGIy_plKfaZrItPyyQZNLvs-XDV4CfqUOvHGfXXcdzTIOX1YwZpYIcPHvDG1aELeQvXgXICt7YTvchEEBml-lBsZnNZUG6EAFpYeQuXxGvK4tlB7SM','Jasmine was very helpful with all the information she gave me, Dr. and Nurses are all super nice and very helpful listening and answering all questions I had ','2017-02-11 02:48:33.331000','2017-02-11 02:48:33.331000',5,'peter rosales','https://lh5.googleusercontent.com/-vAExvL7X28A/AAAAAAAAAAI/AAAAAAAAAAA/3-Fj5qK_9vU/c-rp-mo-br100/photo.jpg','14567670160750071148',1887),('AIe9_BGIy_plKfaZrItPyyQZNLvs04nUKLM-x0r_i6sSTEUv8pEvMROwL-O8HMjPZdzG_utKOORjK1N6xZscXw1XPwgafCg2k2xesPl8dAlB5bmYZ44j7oc','My family and I had a great experience when getting tested for COVID-19. I filled out the necessary paperwork beforehand and then had a few documents to complete when we arrived. There was a wait, even with an appointment, but we were seen before the wait time-frame given. It is an ER, so emergencies obviously take precedence, but they are doing a lot of COVID testing as well. The nurse and the Director were extremely welcoming and very helpful. I had a 1 year old and 3 year old with me and they made them laugh and feel comfortable immediately. The test was quick and done without tears. They were extremely patient focused from the time I walked in until they were providing our results. I would highly recommend Signature Care ER','2020-07-20 23:50:38.430000','2020-07-20 23:50:38.430000',5,'Ashleigh Karonka','https://lh4.googleusercontent.com/-vSHA_y1j6dQ/AAAAAAAAAAI/AAAAAAAAAAA/ceAhkxaoABQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21658),('AIe9_BGIy_plKfaZrItPyyQZNLvs0BCeACkxZG7X8UtqO45VvZB1tN7WafDbyVZjhSaUmGBZ-o1pf3xT_Tjj_xLagdvO4tFgDiksN0ytNHGvKP7l-J8LKmg','Staff was friendly, helpful and professional and facility was clean and comfortable. ','2017-05-16 21:04:14.359000','2017-05-16 21:04:14.359000',5,'Wendy and Ruben','https://lh4.googleusercontent.com/-dKx7XJCZtus/AAAAAAAAAAI/AAAAAAAAAAA/iAkWB76dSkI/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1824),('AIe9_BGIy_plKfaZrItPyyQZNLvs0cb3Q0xeuCihNW1tDS3qmTe1f4oDNsOQf6xPV7zbicVwuNYHjfgh7Db4qIwTiZ_0ErguXZuaOfgcVtqveMMJYfb8MMI','Very compassionate and efficient staff all around! No wait, got me in and out as quickly as possible and didn’t feel rushed at all. Dr. Miller was very considerate and responsive to my needs. Both he and my nurse Gina were very comforting and knowledgeable. Have been here previously and will return if need be, very recommended.','2020-01-23 15:16:47.230000','2020-01-23 15:16:47.230000',5,'Stephanie A','https://lh6.googleusercontent.com/-tLcP9VDeSXs/AAAAAAAAAAI/AAAAAAAAAAA/aDOrD2sqipk/c-rp-mo-br100/photo.jpg','14567670160750071148',10138),('AIe9_BGIy_plKfaZrItPyyQZNLvs0H9S0UQ0LzksT7lxWIjLf23dmJC0MK0MZxHZzMfcB3nSEmEVvYAimLJlZT3BRkcGlhmbQepjHpD42Spe1empKlnoUsg','Taneshia wilts was so welcoming and making sure we understood our invoicing for our insurance!! Highly recommend this facility, all the staff was great!','2018-11-28 04:40:01.448000','2018-11-28 04:40:01.448000',5,'chiara cosby','https://lh5.googleusercontent.com/-mb46VvzRBt0/AAAAAAAAAAI/AAAAAAAAAAA/VSwGP0e_RoI/c-rp-mo-br100/photo.jpg','17898197009688164559',5921),('AIe9_BGIy_plKfaZrItPyyQZNLvs0kfgknfeRdIYdrU8xu8EbDGWXYX2myQjHaDUnsQ_6bXq4JxzpdZi_FjjQJEh3hIche5ezMJfBBAFgClzOi6pifHushg',NULL,'2020-08-02 20:10:18.999000','2020-08-02 20:10:18.999000',5,'Dahila Ruiz','https://lh3.googleusercontent.com/-safj5nieeS0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnHalxA1gI9ZcMB5YHENUgRl3z1_A/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22194),('AIe9_BGIy_plKfaZrItPyyQZNLvs0Qw4MktQ5uZ0PiUjBNpcN8W_FLBA0UBfE9MIeJxecY8Spn8zRGDL2S5kT9w1s3DLyL84eTqBvZo9vJJnWV-n9LNaktM','They were fast, polite, caring, knowledgeable and focused. I was never rushed, everyone happily answered my questions and constantly checked in with me. I appreciated how much they ensured I was comfortable as possible.','2019-03-01 12:21:03.401000','2019-03-01 12:21:03.401000',5,'Teela Murphy','https://lh5.googleusercontent.com/-5sCfzLzuDzY/AAAAAAAAAAI/AAAAAAAAAAA/HY1MC41ruxg/c-rp-mo-br100/photo.jpg','14567670160750071148',1377),('AIe9_BGIy_plKfaZrItPyyQZNLvs1g_XgNkKTOGCV6iOIdSmSF6yrfCnxJ-QrsoKgWrQ-DZR7lD0Gh-0P7FD0JHP-MTjFCSFQoAIlAw4eiERej9e-3RAT2Q','The whole staff were great, Stephanie at the front desk, Gabriel the nurse and Dr. Craig, fast efficient service. Couldn\'t ask for anything better. No wait. ','2017-08-19 03:27:15.073000','2017-08-19 03:27:15.073000',5,'Scott Dahlen','https://lh6.googleusercontent.com/-vrsmiTkR5gs/AAAAAAAAAAI/AAAAAAAAAAA/667O93YCmmE/c-rp-mo-br100/photo.jpg','16891069708558046635',4542),('AIe9_BGIy_plKfaZrItPyyQZNLvs1mYLsD9n4bJFpnFjYYW5Pl7pPQnH3nCXhz306tDjvYZLxIq1opjrrDAYKNvbcx-Q6A5RUT9wOZYB1BTJOPuqP5t4dBg','Took son there for severe allergic reaction on Friday afternoon. Staff and Doctor were very friendly, with terrific bedside manners which was greatly appreciated with a 2.5 yr old. Highly recommended.','2020-06-22 23:26:07.128000','2020-06-22 23:26:07.128000',5,'Kristal Larson','https://lh6.googleusercontent.com/-o6Sa0WE7EW8/AAAAAAAAAAI/AAAAAAAAAAA/6vpoQYZnpz0/c-rp-mo-br100/photo.jpg','2077061009497551125',21099),('AIe9_BGIy_plKfaZrItPyyQZNLvs1q58nAP2xLRGXlggMnO5HuAB747AWJfpInTEHyjKYsaA0iRBSstSPR7IAzPbix2Cz9eTGhMbK1gu90glH8mr9MLQy3w','Great service Kristina was wonderful','2020-01-09 16:26:34.497000','2020-01-09 16:26:34.497000',5,'alkaline water','https://lh5.googleusercontent.com/-raLZ0w0vFE0/AAAAAAAAAAI/AAAAAAAAAAA/jR-__74Os9M/c-rp-mo-br100/photo.jpg','12541597562633926366',9465),('AIe9_BGIy_plKfaZrItPyyQZNLvs1QjAQuu89xTFdF9hLGgMMdUrf_BZ-uXy2zbOsgXJGXLcyO_dFcPo5UZNxOmav5fvFoNlJ08pY7dR0ONuHSKXKYNAwYE','Signature Care Emergency Center was great. And for it being my first time here, the wait time to get called back was quick. And Sindy from the front desk was great and professional. I would definitely recommend this place to the people I know.','2019-09-13 18:16:25.667000','2019-09-13 18:16:25.667000',5,'Adrianne Herrera','https://lh4.googleusercontent.com/-hrXduQsWuFo/AAAAAAAAAAI/AAAAAAAAAAA/p037I9-Bb1c/c-rp-mo-br100/photo.jpg','14567670160750071148',1242),('AIe9_BGIy_plKfaZrItPyyQZNLvs1v5UxHWqPCtmDn_kBGQUayZR0y_cuxnKFcTNnoFFgDP-KO3MTMvkea-AprTn_mWzPMGTh9M7jQns30PB7cUuIvrxW2Y','That was great','2019-05-01 05:08:10.362000','2019-05-01 05:08:10.362000',5,'ansar rasikh','https://lh3.googleusercontent.com/-Uah-Lo1RXDw/AAAAAAAAAAI/AAAAAAAAAAA/pAkKMW4ZSEU/c-rp-mo-br100/photo.jpg','17898197009688164559',5752),('AIe9_BGIy_plKfaZrItPyyQZNLvs1Yg0RmCYQAPd1peALmJbcmONcrS0fJPCGcMfX5uhc1xpnQH2U4bs3720H58WOiwk3yazPEnu-sqH5ev8WuB8jWHpHHI','Real nice folks. Brad, Anthony, and Dr. Vakey were phenomenal. Explained the reason for every medicine I was administered in depth and answered every question I had. Continuously asked me if I needed anything such as a warm blanket or water.','2018-11-07 00:25:16.137000','2018-11-07 00:25:16.137000',5,'Richard Ay','https://lh4.googleusercontent.com/-rjcRNrfBlww/AAAAAAAAAAI/AAAAAAAAAAA/0e88NyYkmJ4/c-rp-mo-br100/photo.jpg','16590124370714063921',3659),('AIe9_BGIy_plKfaZrItPyyQZNLvs1ZY3chLWqi6vOwJ-mXHweC9me_DP6mGJiL9PQFRDUq1PI9zz06TSV1TwztybHt9i-Zxk2giSadOjBbaF2aNH6lI6Gp4','DR. HENDERSON, MD, QUANG didn’t pass me off or make me feel like I was dreaming my pain up in my head which is what a lot of doctors have done to me lately.. he got me immediately treated for my back and muscle pain and was incredibly kind and thorough. All the nurses were so incredibly sweet and even the from receptionist was kind and helpful. Would definitely come here again if need be! There was also little to no wait and it was extremely clean!\nMy wonderful nurses! Racheal B l, Nanci B, and receptionist Desk: Genesis C.','2019-09-18 12:22:49.114000','2019-09-18 12:22:49.114000',5,'The Witchiest Woman','https://lh3.googleusercontent.com/-DRM-1T5K9O4/AAAAAAAAAAI/AAAAAAAAAAA/5OcZHbG03OQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5544),('AIe9_BGIy_plKfaZrItPyyQZNLvs22sSUQBf7C2gv3FYaOOKzAgmUxVbeRq8VW0h5jAQLvmPBSTxFQj-XK7iZH-V3sXLvFxbIEjQ-Ft-i_MWNNI6M2q7OIk','Had a great experience, immediately got greeted by Tanishia at registration and made us feel very welcome and comfortable. We where quickly taken in by their tech Carolina who was very polite and caring. Nurse Jaime was very thorough with his questions to make sure they could diagnose you correctly as well as concerning and polite. Dr. Wang was great, he diagnosed me fairly quickly and knew exactly what to do while answering all of our questions with patience and understanding. Thank you all I feel a lot better!','2019-02-25 23:52:10.576000','2019-02-25 23:52:10.576000',5,'Cyn _','https://lh3.googleusercontent.com/-Mb3-1bCW_QA/AAAAAAAAAAI/AAAAAAAAAAA/2MGHLClCOec/c-rp-mo-br100/photo.jpg','17898197009688164559',5833),('AIe9_BGIy_plKfaZrItPyyQZNLvs28-KHdKwfGbJVmwBpztkTOFvI9PH8G8LLnLgaO8KpivwbttFav8fmI4s2acPwIMDBEP0NJezMz3brzgnt_xDWZieQlM','Good emergency center. Clean and Great Help from front desk. Thnks Alyssa , Dalia, Karen for fast service','2020-07-23 19:26:57.863000','2020-07-23 19:26:57.863000',5,'Raul Martinez','https://lh5.googleusercontent.com/-FGEpvMJnyRc/AAAAAAAAAAI/AAAAAAAAAAA/FCYc5TxAUGA/c-rp-mo-br100/photo.jpg','8918455867446117794',22297),('AIe9_BGIy_plKfaZrItPyyQZNLvs2J80xBq6CO640dYvT4ELMj6E2eTfcRk5H7yMrItyTDjgJ5jhlMBUcRgGJb14FnzVG-vwgQB1T2JNqaftgenGJo8VHqc','This place is amazing every time I go. They have great service and no wait. They take great care of you and are very experienced. The professionalism of this place is phenomenal. They are caring and great. I\'m going to make sure to always come here. I thank them for a their help every time.','2018-11-14 22:30:29.674000','2018-11-14 22:30:29.674000',5,'Adrea Murray','https://lh6.googleusercontent.com/-w-woSdif9rs/AAAAAAAAAAI/AAAAAAAAAAA/rx9mDZsdkuw/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',4764),('AIe9_BGIy_plKfaZrItPyyQZNLvs2p8u-aTfYx_R_5p9x9iHZ8u731fxtTcXYjeQh08D_R8OyuuNRTrLKWg2LROioyQ_uU8UCs_H6d6gaGJSfO1B6xHkdLk','I went to Signature Care, it was a little pricey but the customer service was great. They were very very friendly, all the nurses and the doctor. The lady at the desk Courtney, was very sweet she helped me with everything, she was very nice. I will definitely refer this place to family and friends.','2017-12-06 06:23:51.063000','2017-12-06 06:23:51.063000',4,'destiny coleman','https://lh3.googleusercontent.com/-0e7h6eCY8iA/AAAAAAAAAAI/AAAAAAAAAAA/_irufHqLovM/c-rp-mo-br100/photo.jpg','17394740196501090048',4918),('AIe9_BGIy_plKfaZrItPyyQZNLvs2PTaZQIH0-NS6i-mkByPu1Y-6eeqOXdZCCpVUUh8gPHaMMTj9xdLAi47Ejws3boC8QlsMBXyGo5L9heF4XQz40AJhbw','Dr. Vakey, Brad, Gabe, and Anthony were a great care team for my boyfriend when we came in for an emergency. They were very kind and answered all of our questions and we will be returning in the future when we need emergency care. We would highly recommend Signature Care for anyone that needs great and immediate care.','2018-12-05 01:28:26.693000','2018-12-05 01:28:26.693000',5,'Haley Caron','https://lh3.googleusercontent.com/-tEoOFQ9DaGw/AAAAAAAAAAI/AAAAAAAAAAA/yCHEIsiGOTA/c-rp-mo-br100/photo.jpg','16590124370714063921',3626),('AIe9_BGIy_plKfaZrItPyyQZNLvs2XUK2dII1SpBeyR0bn17UhEUnaCoGqpCRwgBfbcYEfQq6ze-7cIXiKyWxlQ5dzBWEEC678zXu7BOg0jhrmCIb_uV6I8','Everyone was kind!! \nIrving, sherwin, thelma, and Carly 😀','2020-02-12 05:10:06.650000','2020-02-12 05:10:06.650000',5,'Carlos Gallegos','https://lh3.googleusercontent.com/-tgpl-ijn87o/AAAAAAAAAAI/AAAAAAAAAAA/nCM-M_3EVfk/c-rp-mo-br100/photo.jpg','12541597562633926366',13382),('AIe9_BGIy_plKfaZrItPyyQZNLvs3oEFVQAihbb49pkgOgwc46OvFKM9EpukOozkvZp_ld-gv7bcRrtXWmnr3jeuIo_1c2Tw9HazDhEOof27YRcZ5ZGeD4w','Awesome staff! Quick and very detailed on my next steps. Will go back in the future. Love the doctor!!','2018-02-08 12:35:13.340000','2018-02-08 12:35:13.340000',5,'Ginger Przybyla','https://lh4.googleusercontent.com/-t9M1wQXWcRE/AAAAAAAAAAI/AAAAAAAAAAA/Py8w9UOgsOI/c-rp-mo-br100/photo.jpg','14567670160750071148',1658),('AIe9_BGIy_plKfaZrItPyyQZNLvs3poe--0GNhnhMCAFpXHr0ovPWVCUnQkkDcwHEyWKAP0IH3jLSk3I3wH0rdF683u3gm9aOkWAuTSzLwP9ZI06EK3STjw','Cat, Laura, Dr. Morrical, and Lorena were very kind and helpful, DR seems very knowledgeable and cares about patients.','2019-07-28 10:59:23.973000','2019-07-28 10:59:23.973000',5,'Cody Schroeder','https://lh6.googleusercontent.com/-IXA5yUT33R4/AAAAAAAAAAI/AAAAAAAAAAA/RF1aLQmvMQ4/c-rp-mo-br100/photo.jpg','16590124370714063921',3274),('AIe9_BGIy_plKfaZrItPyyQZNLvs3Qq_mnlP4BwKAJtn2bqnbNoJ0BJczil5H3Urm-gzyrGLmCa4thhrZvJUIM6Rb3XcMd1zSVCY2zcC0tSbJpnbvyJTqQE','This place is amazing. Im here at 5am due to a possible ear infection for my little one and the staff is amazing. Doctor was prompt and they made sure my daughter felt comfortable.','2019-04-27 10:43:27.280000','2019-04-27 10:43:27.280000',5,'Robbie Nolan','https://lh6.googleusercontent.com/-yQ_gLHPDm1I/AAAAAAAAAAI/AAAAAAAAAAA/HbSo2GMJB8E/c-rp-mo-br100/photo.jpg','2694018788013845459',6165),('AIe9_BGIy_plKfaZrItPyyQZNLvs3tESgx1KMb5EC9hpOmSABvRlwqTbgkJ5w70G_sdeWE70ymUOUny09j0XYYE2-uucs_I1NlyEm8oTXTWl5T6PpnXg4oU','Amazing friendly smiling service 😇','2018-12-17 19:47:35.825000','2018-12-17 19:47:35.825000',5,'Sanel Skopak','https://lh5.googleusercontent.com/-v_-iqusf65k/AAAAAAAAAAI/AAAAAAAAAAA/APS5O6T3K2Q/c-rp-mo-br100/photo.jpg','17898197009688164559',5912),('AIe9_BGIy_plKfaZrItPyyQZNLvs3VGAXPVgM2DTlNRi5oCyh1DBx91VZKxeT8T24Ts0p5VAFKFzndK0eh66GA_QniXVt2Fe_fgiCqK70etnQLioLdH0r_M','Everyone was nice and there was zero wait time.','2019-10-19 02:59:57.243000','2019-10-19 02:59:57.243000',5,'Kianya Comer','https://lh6.googleusercontent.com/-jJCAZ303r48/AAAAAAAAAAI/AAAAAAAAAAA/D_X51uPhkww/c-rp-mo-br100/photo.jpg','2694018788013845459',6041),('AIe9_BGIy_plKfaZrItPyyQZNLvs42X5t5RwXIIdgYR0EGbR4qL5jugNHS7azbMrBXqpmeLM-oJuCdPSmpO-wmtuCVeXIrrIcdf0zwU7WsNfT39FsHcoR9c',NULL,'2020-02-20 20:47:00.782000','2020-02-20 20:47:00.782000',5,'Briona Ariza','https://lh3.googleusercontent.com/-N9SXbRs6jkQ/AAAAAAAAAAI/AAAAAAAAAAA/tr-7WTjWtrc/c-rp-mo-br100/photo.jpg','17898197009688164559',14150),('AIe9_BGIy_plKfaZrItPyyQZNLvs4AKVVzHIjHf262JQ7s3uCrqudBRFmLE7vH4KS2AxacRs4K5txM75ZsX6wpovYMVjNtqcfEiQyaAzdRp-jsnC3c3L9S8','Thank you DR. GARCIA, MD, HABACUC D \nNurse: Irving M B \nRadiology Tech: Mayra L \nFront Desk: Veronica M.\n\nVery caring individuals that helped me get the assistance I needed. Thanks again and continue to do a wonderful job.','2020-02-26 12:03:15.826000','2020-02-26 12:03:15.826000',5,'gianni jackson','https://lh6.googleusercontent.com/-BFl3c36Haf8/AAAAAAAAAAI/AAAAAAAAAAA/iuDqSAd_BAM/c-rp-mo-br100/photo.jpg','12541597562633926366',13341),('AIe9_BGIy_plKfaZrItPyyQZNLvs4Rj7M8ykAOcqCbhjtdhx657oRWJEGDTscr9fxW8HH0m2SHAxnrZTJadsuzuTnGkgLbR9D4adpksMXe9Lp6BazXm_gfo','The staff was great. Starting off with registration, Keera, was wonderful, attentive and quick to get us ready. After that, the doctor and nurse did a wonderful job of making us feel comfortable and that our issue was genuinely cared for. Needless to say, I will come back if need be, and recommend it to those who are in search for a quick and helpful solution.','2018-01-04 17:11:15.095000','2018-01-04 17:11:15.095000',5,'Elizet Gomez','https://lh4.googleusercontent.com/-ttFdxKxXqdU/AAAAAAAAAAI/AAAAAAAAAAA/5E0xSGxBDHI/c-rp-mo-br100/photo.jpg','16590124370714063921',3888),('AIe9_BGIy_plKfaZrItPyyQZNLvs4vx02t9YH7sTdWrCLv_hXRHbh5U6ydIV82N5dfA6qqFplPlZRpiDwPjDxTDOTYZDvjn_CtD7OOOFffQcm-db6WDTrtA','I have visited this facility on several occasions and had received wonderful care. Recently, I had a less-than-satisfactory experience here but when I reported this, the staff been over backwards to see that I was well-taken-care of.\n\nI would recommend this facility to anyone needing urgent medical care of any kind and am deeply grateful to the staff for the kid-glove treatment of me and my condition during this and past visits.\n\nThanks especially to Adam and Dr. DeWaal for their kind attention to my situation and for the excellent advice received. Thanks a million. R. Bass 3/5/18 2:30 PM','2018-03-05 20:59:59.148000','2018-03-05 20:59:59.148000',5,'randol bass','https://lh4.googleusercontent.com/-BsbiLVfaYds/AAAAAAAAAAI/AAAAAAAAAAA/7eGdUp0PWqg/c-rp-mo-br100/photo.jpg','16891069708558046635',4504),('AIe9_BGIy_plKfaZrItPyyQZNLvs4Y05Bgjn_eTFNOFJgGuL5qBz8mXt3S---KXibSzx1gDS89giLXfLOOeBqk7bHjY8rw2WEJ8fGam3UXmT5_ap_6ZwjVU','I came here with what I thought was the flu (turned out to be strep). Honestly, I’ve never been so spoiled or treated so nicely at a clinic before. The woman at the front desk literally stood to welcome us when we walked in, ready for anything! My doctor, Dr. Vaagenes, was very knowledgable, friendly, and kind. The nurse, jacob, was also very helpful and brought me a warm blanket while we waited for test results. Even the ladies administering the tests were very patient and sympathetic to me. I could not have asked for a better experience and am very grateful this was coincidentally the closest place open on a Sunday.','2019-07-14 17:44:04.500000','2019-07-14 17:44:04.500000',5,'Olivia Murphy','https://lh5.googleusercontent.com/-fsD1Z2xRQxs/AAAAAAAAAAI/AAAAAAAAAAA/VU5yl3dqS9I/c-rp-mo-br100/photo.jpg','16590124370714063921',3297),('AIe9_BGIy_plKfaZrItPyyQZNLvs5Iwxi3R7fG0aKWK5XgrTQf2XipYvBTEYMK7MmT-50AwzmHbZi5oqThPZI4eDTUl3ajJg7zo0e3qt_6CDW7lbf58j4T0','I had a great experience coming here. The staff here is very friendly and attentive. Tanishia the receptionist was quick on getting the paperwork ready, she is very friendly and courteous. Laura was very helpful, and took care of my needs while in the room. My whole experience was great visiting SignatureCare. I really recommend anyone visiting this place is way more easier than going to the Emergency room.','2019-12-30 04:27:08.418000','2019-12-30 04:27:08.418000',5,'karla Mendoza','https://lh5.googleusercontent.com/-j26KECjTAXk/AAAAAAAAAAI/AAAAAAAAAAA/WMHOTjWrTsU/c-rp-mo-br100/photo.jpg','17898197009688164559',5316),('AIe9_BGIy_plKfaZrItPyyQZNLvs6BrE672JFxsxjNPsALGgVYwr6XLYEK37ufeejJBsQshgKtesEF2FNledbqOcx20bchMEm-ClHkwyN9USqq4WX2f_Gvk','Tory - awesome service!','2017-01-30 02:10:37.566000','2017-01-30 02:10:37.566000',5,'Veronica Padron','https://lh6.googleusercontent.com/-j4OkeH4t7c0/AAAAAAAAAAI/AAAAAAAAAAA/bNOlLTOiN8k/c-rp-mo-br100/photo.jpg','3511292162159714121',7891),('AIe9_BGIy_plKfaZrItPyyQZNLvs6hX4f4DMxaKwo7x0-wlxWKFtRn2iy3c1lTWW2wD9hcc6FF-oL7KeBLfSVPeNmDvbSh7wlWyUNgo_H8_NHYtYVwVXDHY','(Translated by Google) Everyone is very friendly and the service is the best. Don\'t wait five minutes to be seen\n\n(Original)\nTodos son muy amables y el servicio es lo maximo. No espere ni cinco minutos para ser vista','2017-12-31 01:49:56.512000','2017-12-31 01:49:56.512000',5,'Rosa Campos','https://lh5.googleusercontent.com/-Pv7sLUe4n44/AAAAAAAAAAI/AAAAAAAAAAA/Rhn92gze52E/c-rp-mo-br100/photo.jpg','17394740196501090048',4907),('AIe9_BGIy_plKfaZrItPyyQZNLvs6IBgZBkx0GZgixIdffaibQIzmcVo8ZPZABmquq6TF_ZPyV7569EvpKvUbU4vDuYMlkr1VzLOzXlWAi1m2OqGT4ldN6o','Everyone here is amazing 😊😊 I felt like I was in good hands especially with Thuy, Alvean and Jocelyn. Thank you guys for taking care of me today','2020-02-22 23:54:27.840000','2020-02-22 23:54:27.840000',5,'Irie Marie','https://lh5.googleusercontent.com/-rRJYv--r0UE/AAAAAAAAAAI/AAAAAAAAAAA/0qFVhMUJoCo/c-rp-mo-br100/photo.jpg','16389487648212004696',13777),('AIe9_BGIy_plKfaZrItPyyQZNLvs6lqGPXttMa2vybyPWkZPiNvjXeRvGCaghZD9b-W0ZlnnorY_X6Jiyfyo3FoAIn8-KOhKDVHOmDPwtS5YjD91NXI6eGI','Keera , Gabe & Stephanie we’re all so helpful & attentive. I had such a good experience & I would definitely return.','2018-09-01 05:07:09.807000','2018-09-01 05:07:09.807000',5,'Rebecca Davidson','https://lh4.googleusercontent.com/-qgmvEFP1V-w/AAAAAAAAAAI/AAAAAAAAAAA/g-281C86U3Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3753),('AIe9_BGIy_plKfaZrItPyyQZNLvs6OCUr4sgV5hcJUbo22t_DQSc9dp3HicgwKa4MXi05JhvMh0nxzeTGww32mJdjITTympks43eamTCrWbD7WlGFP2pgEw','Mercedes was super friendly and helped me get all the paperwork filled out quickly! I had a wonderful experience at signaturecare emergency center.','2018-09-01 19:47:32.227000','2018-09-01 19:47:32.227000',5,'Phyllis Jetson','https://lh4.googleusercontent.com/-xOg8FFjMNcg/AAAAAAAAAAI/AAAAAAAAAAA/qy3J2FcKqIQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4809),('AIe9_BGIy_plKfaZrItPyyQZNLvs6OdjVujtnfU7B9H4QFpEJYkUVynnhh7Vl0u3SU5VXvyIF_wHanPvrESj6OJQbOEhEJKWFgnMonz49vGFTp7YbF_voog','Front desk, Lorena T. & Amanda C. were really sweet and helped me out fast. As well as Doctor Maudlin and rad tech Cameron in the back, made me feel comfortable .','2020-07-30 11:37:26.459000','2020-07-30 11:37:26.459000',5,'Keyli Ramos','https://lh6.googleusercontent.com/-zNW8Z8Zeacs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucknBwJYkQWcxZDqnGWf-jFP9Qu_hQ/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22001),('AIe9_BGIy_plKfaZrItPyyQZNLvs6qTMoM4pvisAN4HgfakUiq-DCb5IKd6XZfeNWJ58l2G8ziMUxrdZxVmpgcsGFUNQK6o1ZJ7kc8bc1QnHLVZFDu_HYD4','Don\'t come to this facility if you have Blue Cross Blue Shield! They are NOT contracted with them. You will regret going there. They will bill the insurance an outraged amount of money and the remainder will be billed to you. Even if you ask them what insurance they are contracted with they will not tell you which one. They need the service to be rendered first and them stab the insurance and you with a bill. Look for on your insurance card which facility is contracted first they will tell you. I will never utilize again any of the neighbors emergency facilities again. I made a bad choice and I am paying for it. There are many emergency facilities through our town that will be a way better choice. The MCH facilities mostly are contrated with the majority of insurances. Good luck everyone and let\'s stop the unfairly treatment of these manipulating and easy target grabers that are in our area!','2017-08-23 18:37:27.665000','2017-08-23 18:37:27.665000',1,'Elton Veloso','https://lh3.googleusercontent.com/-YXZZstgi5KI/AAAAAAAAAAI/AAAAAAAAAAA/YuhuTIZMf5Y/c-rp-mo-br100/photo.jpg','6521947413723274945',8350),('AIe9_BGIy_plKfaZrItPyyQZNLvs6SSIFMVulqx1ZmO0FcqbpNxRcWMZeHqN-UJxh1JCL405LTD89IzuW_y5PtXN-HBpxMQmg7EkZDf_5saQKeve1lbD8ng','(Translated by Google) Tanishia W\nFatima B\nSarah G\nDr Ortiz L\n\n(Original)\nTanishia W \nFatima B\nSarah G \nDr Ortiz L','2019-12-25 12:04:09.622000','2019-12-25 12:04:09.622000',5,'Shiren Dean','https://lh5.googleusercontent.com/-vxSujH2qlVY/AAAAAAAAAAI/AAAAAAAAAAA/678Z9Y-Lmt4/c-rp-mo-br100/photo.jpg','17898197009688164559',5329),('AIe9_BGIy_plKfaZrItPyyQZNLvs6xYrJSLzqbaEjq6MeBp3L93Qs5vgDfiKGqMlO8ai8FSlpKCWjuCkffeP-YmJa-RLjnRy_2pGFeJo_IZhBX9AadbaWQ0','Places like this need to be put out of business and sue for illegal billing practices. $2400 for bronchitis diagnosis. Go to an urgent care clinic instead or your PCP. They will say the accept your insurance but it is always out of network and they will overcharge you for everything.','2017-08-22 14:20:39.876000','2017-08-22 14:20:39.876000',1,'Lori Domaschk','https://lh6.googleusercontent.com/-IPIUEzvst7I/AAAAAAAAAAI/AAAAAAAAAAA/FMKc73-Q5Us/c-rp-mo-br100/photo.jpg','14904078213800803294',2334),('AIe9_BGIy_plKfaZrItPyyQZNLvs7d1mfTS3iTWc7YB8RvWVr5m9YUTDrmEiAUWOQ2_MsxmfX_wDpfKkPLm6MdhOkA0nesFoRjsHzSPK66ER-FS88zPzzu0','Very good staff and fast','2020-02-07 22:01:27.481000','2020-02-07 22:01:27.481000',5,'Mahogany Kelly','https://lh5.googleusercontent.com/-sGN12vPWYCU/AAAAAAAAAAI/AAAAAAAAAAA/ZJlt2VqJ82U/c-rp-mo-br100/photo.jpg','12541597562633926366',22472),('AIe9_BGIy_plKfaZrItPyyQZNLvs7Eq21pIBrTqmmQPZQ-QVzAY10cdyZv-h7d4sWNfPU2PwamU3fjlUBOOXuESeHb53BX-XtxfGk7auqKNNVV6qt-9jeV4','We were on vacation and about to leave when my son had an accident. The staff took great care of him and we had a good experience in the waiting room. Beats the hospital.','2019-08-04 02:11:45.989000','2019-08-04 02:11:45.989000',5,'Christopher Martin','https://lh3.googleusercontent.com/-Q-H8XoDvz4s/AAAAAAAAAAI/AAAAAAAAAAA/8TB64wk5nHY/c-rp-mo-br100/photo.jpg','16891069708558046635',4229),('AIe9_BGIy_plKfaZrItPyyQZNLvs7flRunpHesbM-4rSLSz2ak3dy0Ow2M218N_UZ6c-XtLrhL66cJnKGsQzxiiU6e8XzzrNgbzVCmpVQsfN5x_5Pdqak3E','This facility has by far shown the best care for my family in times of need. I first brought my sister here as they were close to my office, and soon after brought my husband as well for an emergency. I will be utilizing them for my offices\' workers comp and emergency needs, and although I live in Katy, I would be willing to make the drive to the Montrose SignatureCare Emergency Center if needed because the staff from front to back was simply AMAZING!!! Special shout out to the nurse DAWN that helped us both times, she deserves a medal!','2019-07-08 18:12:52.944000','2019-07-08 18:12:52.944000',5,'Erin Rice','https://lh5.googleusercontent.com/-M0QMOyrjMaY/AAAAAAAAAAI/AAAAAAAAAAA/PgQsLUgPVEs/c-rp-mo-br100/photo.jpg','3511292162159714121',7263),('AIe9_BGIy_plKfaZrItPyyQZNLvs7Gb1sBmhvFV4joO71aopHQTCDvCvmkfLDJOTmRq1gmGQ0REhZv1I17yJ6XkDJB4a7uNay-doESngssl7VZo8OT1PZpE','Just visited SignatureCare ER for the first time and my visit was everything. The receptionist Patricia C. was very welcoming, & Dr. O’Malley was very thorough and caring. The staff; Nurse Ekaterini, Rad. Tech Jessica, & ER Tech Stephanie was very caring also and made sure every question/concern I had was answered. Not to mention I had no wait time. I will definitely visit again if needed & refer all family & friends.','2019-10-07 23:47:32.194000','2019-10-07 23:47:32.194000',5,'Megan Aycock','https://lh6.googleusercontent.com/-Lv4S3aFZupk/AAAAAAAAAAI/AAAAAAAAAAA/iHIzCBfOJL0/c-rp-mo-br100/photo.jpg','16389487648212004696',2849),('AIe9_BGIy_plKfaZrItPyyQZNLvs7HUe000C_mNmGgeDsS1CTSWG95wHGbM4bqZWuziNKxk37n-EwChhZpBXWBjDZP7TyPxZxtC4E-KBoizDb0_gqKtu9SM','Everyone at this facility was great. From the moment I walked in, to the moment I walked out, it was a great experience. The receptionist Tanishia was wonderful and helpful! Also the nurses and doctor in the room were quick and efficient.','2019-11-15 01:28:32.597000','2019-11-15 01:28:32.597000',5,'Shay Gibbs','https://lh3.googleusercontent.com/-7qgosKq-XBs/AAAAAAAAAAI/AAAAAAAAAAA/9b1R7sJsRCw/c-rp-mo-br100/photo.jpg','17898197009688164559',5434),('AIe9_BGIy_plKfaZrItPyyQZNLvs8M4z_XV1xGlnCOpUP1NeLETUZMPOV2ogKOJgcB8Dz0mEJAzDf2HainuJSl8_agsbvZwiMzw9mb5mnxS_VDbX6jiDid4','Best ER in Paris, TX! Everyone is always so wonderful!!','2019-12-16 23:31:25.082000','2019-12-16 23:31:25.082000',5,'lorena peralta','https://lh6.googleusercontent.com/-enRlonqN5sE/AAAAAAAAAAI/AAAAAAAAAAA/svPQDMKCpV8/c-rp-mo-br100/photo.jpg','8626688543755174284',14642),('AIe9_BGIy_plKfaZrItPyyQZNLvs93NPbPFfKpLLi4st5-CoV_7zHMn-pPv67bwsRsHi8o0nZnb37hYCEdcS6vQxZxeK0Iby1Z5URrjbc4f7dinO57mtuY0',NULL,'2020-03-03 00:37:09.631000','2020-03-03 00:37:09.631000',5,'Felipe Herrera','https://lh3.googleusercontent.com/-0QjOIYRcDvY/AAAAAAAAAAI/AAAAAAAAAAA/IHxCczxcUiY/c-rp-mo-br100/photo.jpg','8679688254631342173',14711),('AIe9_BGIy_plKfaZrItPyyQZNLvs9BzUzDf0_q2c6Jq8lTE2yoLyHD0yFyHri6nZFLK3lsbgVyHYFMQfwqBIxCw0S7KvbyxPOjAF4SU-8U6-k8t2Weix4hc','Dr. Hannan did excellent stitching up my hand, Ill be back. Even got a $5 gift card to leave a review! But for real, great experience.','2017-09-20 15:00:28.209000','2017-09-20 15:00:28.209000',5,'Madison Mills','https://lh6.googleusercontent.com/-G9UaPecu3mE/AAAAAAAAAAI/AAAAAAAAAAA/9LZabW4ordI/c-rp-mo-br100/photo.jpg','14904078213800803294',2323),('AIe9_BGIy_plKfaZrItPyyQZNLvs9kHR9KlYzdLdUZS7Q8webV9fudSrxNAF0aglzEb37-miP8OR4I9ccsNXGyMUCaBcb-sWCcf47iP63EuxV1SYX67GZYw','Very helpful team of health workers. Looked deep into what was wrong and ensured I didn’t leave until everything was figured out.','2020-07-27 22:56:04.376000','2020-07-27 22:56:04.376000',5,'Eliahana Avendano','https://lh6.googleusercontent.com/-2EtcdOQnnoU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckDeKOZ0-Lqk5TeSAFd4Ckeooc5GA/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22113),('AIe9_BGIy_plKfaZrItPyyQZNLvs9mg3HR3OMUGc6qndwit8S7NTDBxF28XggZjqGgz6Dd3ZqgSp3PwVT1WLc4l46H7RAd5cSmkDWM2bysXbAlBfw6rX5vQ',NULL,'2018-02-21 17:04:24.893000','2018-02-21 17:04:24.893000',5,'Sarah Currivean','https://lh3.googleusercontent.com/-kNioo1twEzI/AAAAAAAAAAI/AAAAAAAAAAA/dVXuqmfbhEE/c-rp-mo-br100/photo.jpg','16590124370714063921',3856),('AIe9_BGIy_plKfaZrItPyyQZNLvs9QFZZVUcLyLNDdFf7hKlvlQV9T_r-Yb0OKqmEpkiwKkh-I73L3GH2qU9VPm6LoPgnNF4g7B9l9N4PoVVx7Cxcot1UT0','Came in because of back pain and was treated very well. Thank you to Dr. Harjai and his team Ekaterini, Joshua and Deanna.','2019-09-19 00:26:59.962000','2019-09-19 00:26:59.962000',5,'April J','https://lh6.googleusercontent.com/-EwupPMXGzkI/AAAAAAAAAAI/AAAAAAAAAAA/-aqYrBNaGjE/c-rp-mo-br100/photo.jpg','16389487648212004696',2896),('AIe9_BGIy_plKfaZrItPyyQZNLvsA-3-gkT83YVkg37J3cJQyUKyH4ZLVXfevbIwN4fE1AORjALxc4AvMFOSho33xtSuMQwkwiDmM7q1JEDmoykqZWO71nA','I\'ve been here quite a few times!! And its the best care I have ever received!! Doctors and nurses are patient and do their best to make you comfortable and explain the diagnosis and after care instructions.','2017-08-07 19:48:46.359000','2017-08-07 19:48:46.359000',5,'Sally Van Cleve','https://lh6.googleusercontent.com/-yRx6xat8MFE/AAAAAAAAAAI/AAAAAAAAAAA/0NZ5hbu4pIk/c-rp-mo-br100/photo.jpg','8918455867446117794',9372),('AIe9_BGIy_plKfaZrItPyyQZNLvsA8lceodMhLYXJZgbyq8jiuu4fZsOUpqS4lletrFs0qNM4rh80OJPBqP8gcO-XWfUpPlF1hJTM7HvxorpS4_wbnYiL64',NULL,'2019-11-02 09:37:42.037000','2019-11-02 09:37:42.037000',5,'Norma Ventura','https://lh3.googleusercontent.com/-Ogqdc62Hc1I/AAAAAAAAAAI/AAAAAAAAAAA/KA_jweV1rD4/c-rp-mo-br100/photo.jpg','14904078213800803294',13668),('AIe9_BGIy_plKfaZrItPyyQZNLvsABMBE5EqK9XaFSRinb6uOcviqObG1lP0fj8Y26O4mWdpGF2NbFbjGZDSlCtuypEBnitEXOAocJQHZ4-6Dh-f1GDop3M',NULL,'2019-03-21 21:51:25.716000','2019-03-21 21:51:25.716000',5,'Kitzia Jimenez-Jones','https://lh4.googleusercontent.com/-gycNUwSJyHI/AAAAAAAAAAI/AAAAAAAAAAA/y6ZV8gKlRfE/c-rp-mo-br100/photo.jpg','17898197009688164559',5800),('AIe9_BGIy_plKfaZrItPyyQZNLvsaGaB_-kwGbTM21WNvuByKzWs9XMTm3ayFKpQXK5Xmqx_Ln3EuvuH3zrYcnciKwPavekRV__PgyCorGkGGRYPcIWDsS8','Great care! Nurses and staff were super helpful and kind. Quick too!','2020-08-16 16:20:23.434000','2020-08-16 16:20:23.434000',5,'Madison Montgomery','https://lh3.googleusercontent.com/a-/AOh14Ggin8tghCfxk8V0R1PuA7gr56fExA3jAs7w3Bimqw=c0x00000000-cc-rp','16590124370714063921',23053),('AIe9_BGIy_plKfaZrItPyyQZNLvsAip3_y8VnHNEryDj3XKy_aDFDB8-p1qCEzpSE9jF7JIxKVqAJMWSwVQj92buk1Wz_jTPkfhWeHCPunY6lq6oD4C0twQ','Staff was very warm and welcoming as well as adequate and quick. I had no wait time and all of the staffers were very attentive!','2019-06-09 22:28:39.450000','2019-06-09 22:28:39.450000',5,'Drew Searles','https://lh6.googleusercontent.com/-LpcwkqtzIhI/AAAAAAAAAAI/AAAAAAAAAAA/gsRyifVrVbM/c-rp-mo-br100/photo.jpg','8626688543755174284',8458),('AIe9_BGIy_plKfaZrItPyyQZNLvsaJ04G7qmfA-lEr0KmUfq7q6MxOKnsn_VkbEYUcKVM1TmsvdagG5mqae2qOBSeAGv8xMCplyUh0QXksW_0Hb1oujnQVU',NULL,'2020-02-13 19:18:29.342000','2020-02-13 19:18:29.342000',5,'Jessica Martinez','https://lh5.googleusercontent.com/-03n8-5x-sn0/AAAAAAAAAAI/AAAAAAAAAAA/zubW6yTzFPg/c-rp-mo-br100/photo.jpg','6521947413723274945',14581),('AIe9_BGIy_plKfaZrItPyyQZNLvsAjdtEFI8ctPtICH73whT3y-eHvIVheyqoxt0kqCyKDQYPHQkejCEVhbLn_QNFb2-MoZuwIrQ1ZUYaJtaEqxPfD7skxE','I couldn\'t have asked for a better experience! Everyone was friendly and knowledgeable. They made a difficult situation a lot easier for me.','2017-03-23 20:53:25.631000','2017-03-23 20:53:25.631000',5,'Susan Kane-Lombardo','https://lh5.googleusercontent.com/-8Kson47Ugzg/AAAAAAAAAAI/AAAAAAAAAAA/g03c4FOJtH0/c-rp-mo-br100/photo.jpg','16590124370714063921',4024),('AIe9_BGIy_plKfaZrItPyyQZNLvsampTr42wGcYnKCyP0Tym2RemSt6J8LTHo5bBHym78wDRMeOMTN1QuNpERVOuk4EkRO9sWp_mPSuC_oSU2-381EI4y7Y','Great Doctors , Great Staff. Very Fast service an effective. They also make sure your knowledgeable about what\'s going on. EXCELLENT SERVICE','2017-10-17 05:01:27.962000','2017-10-17 05:01:27.962000',5,'Listen Up People','https://lh6.googleusercontent.com/-MGvXuzwMlvM/AAAAAAAAAAI/AAAAAAAAAAA/We5a3gJksvM/c-rp-mo-br100/photo.jpg','17394740196501090048',4948),('AIe9_BGIy_plKfaZrItPyyQZNLvsaqlkmGkWSBh37m9xjPrfBnq1K9v8lM2QRXUv1P6Jrz6L0m8E2u5-Oz-lbgDco-crd_Dyql4ooyBdLITyhVEespNd0Jk','In and out in less than 30 minutes!','2019-11-21 13:32:33.394000','2019-11-21 13:32:33.394000',5,'Jon','https://lh5.googleusercontent.com/-3w6V0xr3_wE/AAAAAAAAAAI/AAAAAAAAAAA/vC-Fcc3UcIQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2645),('AIe9_BGIy_plKfaZrItPyyQZNLvsaTZjhf-dh-5KNbHS0dLJJyCHmUP36RLloH-dWcqGI0sf2ppL2fwfNpNbBwHZUuIK4krvLvvwZQwmsQtLMrDTpHVx3qc','I came in because I was experiencing the worst abdominal pain and vomiting. The nurses and Dr. Chai were amazing!!! They took great care of me and I could tell they were genuinely concerned. There was no wait time! Would definitely come back again if I needed to.','2019-09-02 01:40:50.476000','2019-09-02 01:40:50.476000',5,'Danielle Francis','https://lh5.googleusercontent.com/-QHPw1VQ6ImM/AAAAAAAAAAI/AAAAAAAAAAA/t12aLcpljf4/c-rp-mo-br100/photo.jpg','12541597562633926366',437),('AIe9_BGIy_plKfaZrItPyyQZNLvsB27R6j1nFL4KvqPB7bRduBqB211tGBIUQvdv1kVNumub4IoPNmYCCg4eR-Q-Izgd6Hyi4DHwqPcueEXPzNH1gj53qdM','I had an amazing experience here though it\'s been a pretty tough week. I came in to get checked out because of a car accident that resulted in the air bag being deployed. I came in and service was fast and the staff was even better. Hamazah and Juan came in and made me feel better about the situation. Offered water and blankets and made sure I was okay. Eve helped calmed me, never had a catscan but made me feel comfortable. I would gladly recommend them for any thoe of service','2018-08-04 14:48:57.727000','2018-08-04 14:48:57.727000',5,'Eddie Fields','https://lh4.googleusercontent.com/-PWMST0pxODI/AAAAAAAAAAI/AAAAAAAAAAA/ketIYxX102Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7662),('AIe9_BGIy_plKfaZrItPyyQZNLvsB4IdeQ9SouUdBEq6-VlFBIDhg4hrcYygPuRuz6_hrBMPhHxYHBDhNlApmLBQZctLqR2WnynakpcZDTje8TlDy8xnVMs','Great service with caring and informed individuals. Fast service, and over all a very good experience. Nurse Lisa V, Dr. Daniels and both techs Andrew and Bancroft did an incredible job with the whole process!','2019-11-08 04:10:22.271000','2019-11-08 04:10:22.271000',5,'j p','https://lh3.googleusercontent.com/-M53d3FrGzSk/AAAAAAAAAAI/AAAAAAAAAAA/OFbznf7ORPg/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',748),('AIe9_BGIy_plKfaZrItPyyQZNLvsB5OGtKFnEb9SSavICnJrjZmWAr6Om5MUCETT7UXWoUOkUANMWTP8ezsDb0FvcBgkjjKym4RUuQroKrleDojH62X-RxE','I woke up cranky and sick but had the most amazing service from the moment I stepped into the building. Kendra at the front, nurse Jacob, rad tech Juan and Dr. Singla were extremely warm and caring.','2019-12-20 14:23:45.539000','2019-12-20 14:23:45.539000',5,'Kenneth Piggee','https://lh5.googleusercontent.com/-6drUhm5BdiU/AAAAAAAAAAI/AAAAAAAAAAA/Rj7CJ27Av6c/c-rp-mo-br100/photo.jpg','16590124370714063921',3016),('AIe9_BGIy_plKfaZrItPyyQZNLvsb8n3ZabqhvzQnLodWPhzUCiemHiNSEEq4o4iyIbb2kmfHFq5lQHGvlzrebxmFnXd53PFRLvj5ktOoTjM1cZpoKUftwI','Our experience was fabulous! Great staff and great nurses and doctors!','2018-12-08 01:54:09.712000','2018-12-08 01:54:09.712000',5,'Ainsley Trapp','https://lh5.googleusercontent.com/-7puxcST-Yzw/AAAAAAAAAAI/AAAAAAAAAAA/7hgslLwBVyI/c-rp-mo-br100/photo.jpg','8626688543755174284',8632),('AIe9_BGIy_plKfaZrItPyyQZNLvsbNSngFRZbHOc7ltBFIP9xVdbAGwk65YSKYcyHjikz_29a2cmiYBW708sUYdajrqh2B51VLfpIKh01lBg7UXSFSa8PvQ','Wife had a corneal abrasion on a holiday weekend. Our receptionist Mai was awesome getting us checked in. Jacob and Dr. Vakey got her diagnosed and cared for in 30 mins. Great experience','2019-05-26 17:00:25.346000','2019-05-26 17:00:25.346000',5,'Logan Clark','https://lh3.googleusercontent.com/-yvgICyKbfgY/AAAAAAAAAAI/AAAAAAAAAAA/fyJLoouLMLA/c-rp-mo-br100/photo.jpg','16590124370714063921',3379),('AIe9_BGIy_plKfaZrItPyyQZNLvsboxhQpCdYOn-JBMwkdb2pJiokJuVWzl3sQ7wW_0EPTmjoKvKLCs1MYNHuDfANh3firula_uh6bnktQ_PFj1tlz4iJv4','The entire staff was amazing! Dr. Smith and Alvean, our nurse, made getting better seem easy. Jesus at the front desk made us feel welcome and Olivia greeted us warmly when we were called to the back. This is the only Urgent Care I\'ll go to','2019-07-27 13:51:02.097000','2019-07-27 13:51:02.097000',5,'Silesha Maxwell','https://lh6.googleusercontent.com/-zKC2P-TwY08/AAAAAAAAAAI/AAAAAAAAAAA/c07beVf2oeI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvsBpZyGWBhfOIdbY5WD-ZTSXMcoU-t_llkSsnXWCW8w3tYrcihkgBB3d0RO7Eh01Nac7arBR8e1aPnnpMzgHmaDXa8V2s','Dr. Jones was great. Sherri and Luke took great care of me. Kim was super sweet. We will definitely be coming back and recommending SignatureCare to our family and friends','2019-02-18 16:16:14.107000','2019-02-18 16:16:14.107000',5,'Tiffany Maxwell','https://lh3.googleusercontent.com/-DpHafRWXoYI/AAAAAAAAAAI/AAAAAAAAAAA/VoNDCpXKKPg/c-rp-mo-br100/photo.jpg','3272657195432704501',7009),('AIe9_BGIy_plKfaZrItPyyQZNLvsbRJveECn_cAaRTf6FFg8TA_ic4YkRpANnpW9xfyDJ-7xrsWu76Qyw0Wo90dRg0LS5rcL_4Cm7ynLnU8PNMH616_7_jI','I walked in and was met by a very friendly and concerned receptionist. He was being so patient with everyone in the room and doing a great job of organizing. I filled out one small form and right away a charming nurse came out and got me and took me to an examination room to consult with me. She was super nice and understanding. From there I waited only a min or two before the most attractive young doctor came in and went over all my concerns and got me checked out. couple mins after that the nurse came back got me and took me back out front to the reception area did a little more paperwork and paid my bill. This is how things should be done. Thank you all so much. Great job!\nSincerely \nJames Kent','2019-01-09 17:59:49.430000','2019-01-09 17:59:49.430000',5,'James Kent','https://lh3.googleusercontent.com/-tdWCzVTPtwE/AAAAAAAAAAI/AAAAAAAAAAA/2a1R77eAtO8/c-rp-mo-br100/photo.jpg','17394740196501090048',4747),('AIe9_BGIy_plKfaZrItPyyQZNLvsbzvI2C4dC4pd-ttNnzzHpdHDvjxhctWdcouk-xByqaJAnfT8v9RFAaRMerJotmtO_RsnPxSSQ5zvJl7oNujambPfXL8','First time here was dreading to come but as soon as I walked in, I was greeting by a friendly receptionist. Waiting room comfortable and clean! The nurses quickly took me back and were very nice. The Dr. Explained everything was patient with my questions and looked out for me. I will definitely recommend this place to my all my people. Also will be coming back if needed. Great job to all of you.','2019-10-16 00:58:10.967000','2019-10-16 00:58:10.967000',5,'Maju Camgar','https://lh3.googleusercontent.com/-LoT3D8kXGx4/AAAAAAAAAAI/AAAAAAAAAAA/FG5dtKjRmVM/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',13674),('AIe9_BGIy_plKfaZrItPyyQZNLvsC_48xpeJ5M_-xTl50n2Qbgd12vLq9sT_P0auNY8yKQNMUv3_eQVrQ5rNYi03MwJPD_4UJfX6Xdniq3zrOCcEzyQoR0U',NULL,'2019-07-25 02:54:53.267000','2019-07-25 02:54:53.267000',5,'Craig Runyon','https://lh5.googleusercontent.com/-epnYoEDhqFo/AAAAAAAAAAI/AAAAAAAAAAA/nB3Db7_C_qA/c-rp-mo-br100/photo.jpg','16590124370714063921',3279),('AIe9_BGIy_plKfaZrItPyyQZNLvsC8VVcbNR7S39ZB1Uii7fYvyetcIv_grAwx-x86CVrVF0T04oeeksEbcMt7U_AeVcnBKd1KZxSXTXcOUlJ8nh96_-1PI','My first visit to them was so awesome. The entire staff there cares about you and I went back just Friday. This is better than any hospital I\'ve been too the staff really makes sure they get take care of you. Big shot out to Jennifer for being my nurse twice... This truly is a wonderful place ❤️❣️','2020-02-17 00:37:02.368000','2020-02-17 00:37:02.368000',5,'Shareka Young','https://lh5.googleusercontent.com/-f78RoxI07SI/AAAAAAAAAAI/AAAAAAAAAAA/iA0D3l1Ac0c/c-rp-mo-br100/photo.jpg','3272657195432704501',14355),('AIe9_BGIy_plKfaZrItPyyQZNLvsCaSVZUTjUMeC-LX9tYf5bab0S-WSGE6ofNx6H29q-Oc_qFwhG0JDB-irWx1jyWG-QY-r7CwaQheZ7SGwA24vNbgUBg0',NULL,'2017-08-14 16:19:35.799000','2017-08-14 16:19:35.799000',5,'Shevon Guillory','https://lh4.googleusercontent.com/--EfkKGsT0mM/AAAAAAAAAAI/AAAAAAAAAAA/u6zQWPJVOEo/c-rp-mo-br100/photo.jpg','17394740196501090048',4995),('AIe9_BGIy_plKfaZrItPyyQZNLvsCOF9Ps7j2BN5i6g1YUXEwBdBFoIY7sdsJ36wnNowM6WVyQg_IfmpegL24yP9jtWQPt0t3VsSa_lTvf0Uf_6dfJZTKUg','I went to the Emergency room on June 20th because I was Spitting blood and had a stomachache. I was very scared.\nThe staff was excellent especially Dr Golla. Honestly, he was like the face of Jesus that morning, what i mean is he was very comforting and assured me that i was okay. It turned out , (Hilarious now) The blood was coming from my mouth. Lol! I forgot i had, had a deep cleaning the previous day and i guess my wisdom tooth had been nipped and couldn\'t stop bleeding. \nThat was the best diagnosis I ever got in my life. LOL! \nBut the customer service and the entire team is The best!! \nThank you so much Dr Golla😁','2018-07-20 07:21:39.770000','2018-07-20 07:21:39.770000',5,'mary foston','https://lh6.googleusercontent.com/-dRioh8mEiqg/AAAAAAAAAAI/AAAAAAAAAAA/NXBhQCcCN8M/c-rp-mo-br100/photo.jpg','17394740196501090048',4828),('AIe9_BGIy_plKfaZrItPyyQZNLvscpRoWjUmLSLzAdb8v-hhBqHiXPOwuT8UwLml7-ojjGIwBkdoFQmbrMuMhwUSXJaJ6AyvK6k272cryp26qggxcQi0NXQ','Kendra was very helpful, high spirited, and prompt with the updates on my friend that was having problems. Great staff member!','2020-02-20 19:35:43.782000','2020-02-20 19:35:43.782000',5,'Richard Lowrie','https://lh5.googleusercontent.com/-Vg4pjl9Ag8E/AAAAAAAAAAI/AAAAAAAAAAA/37UGbp85o7A/c-rp-mo-br100/photo.jpg','16590124370714063921',13834),('AIe9_BGIy_plKfaZrItPyyQZNLvscQA8CbN6Xf-IIPmwz-bRUL6piIpjOuKegXLbB6q-cPANzNU40DLNXOn-m77M3belJeolLzxDA0leCVVdBea6eZ03cGo','Patricia, Alvean, Marcus and Dr. Nguyen we great. They we kind and really fast. Thank you!','2020-03-03 23:01:12.660000','2020-03-03 23:01:12.660000',5,'Diana Jordan','https://lh4.googleusercontent.com/-ONxcFlBFzwM/AAAAAAAAAAI/AAAAAAAAAAA/QdPLQpZnYi4/c-rp-mo-br100/photo.jpg','16389487648212004696',13739),('AIe9_BGIy_plKfaZrItPyyQZNLvsCVdYu6_w3bHazQSg3lrrzDPYmqzfcVdWrxJA2Haayut0if7ChSA59C1Ex3MZ0z_wkjqQrpWBS5tiRoZHHE_9D8D6028',NULL,'2020-02-09 22:29:42.567000','2020-02-09 22:29:42.567000',5,'KIM DILLARD','https://lh3.googleusercontent.com/a-/AOh14GgO_PMY3WW5arY1-fqDObQc6XAROSS0bmPFbAFMpw=c0x00000000-cc-rp','8626688543755174284',14617),('AIe9_BGIy_plKfaZrItPyyQZNLvsd4v5RN804sACI25SDvYu9zrGIew3T3nFscMvvefvSXWta-EuupbWR_QIIIqTy5ZHA1wuDWlwO7uNYsvnvzPOKoMVG_8','This is the best emergency care center by far!!!','2019-01-12 01:06:56.521000','2019-01-12 01:06:56.521000',5,'tiffany estrada','https://lh6.googleusercontent.com/-yF1o88rSY30/AAAAAAAAAAI/AAAAAAAAAAA/k2Q9phlD9jQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9193),('AIe9_BGIy_plKfaZrItPyyQZNLvsD7BACA8RrX9Fw8BMumHXYnWOUnVagMRL6iwJCu2381HE39N0GvcVXXO0o8nkmsyY5J68ulHPXU4Bn4FsMA48s3TB0og','Aaron Ortega was fabulous and really helped me out in my time of need. Great customer service!','2020-07-04 14:26:27.618000','2020-07-04 14:26:27.618000',5,'Ashley Shaw','https://lh4.googleusercontent.com/-ikGeS0_nLik/AAAAAAAAAAI/AAAAAAAAAAA/OytrzdlgH5o/c-rp-mo-br100/photo.jpg','13486358490203335051',21351),('AIe9_BGIy_plKfaZrItPyyQZNLvsDcHDvg5Xz4qGw1RM4emL75iXd_MAX7onFwvA-_DC3PTnR0cC_8UQyCZ09FiWBp5Ecs4fEbVO7YKuIiEMSDkdCoolVnk','I was helped very fast from the receptionist to the doctor \nDR. SINGLA NITIN KIMAT M.D. \nNurse: O Neal,Lia \nFront Desk: Reyes,Jacqueline \nThese ppl were amazing and any health issues I will be back to them','2017-09-23 21:16:06.798000','2017-09-23 21:16:06.798000',5,'Jassmine Golden','https://lh5.googleusercontent.com/-Fpop5pg0c3E/AAAAAAAAAAI/AAAAAAAAAAA/04P71y715ss/c-rp-mo-br100/photo.jpg','14567670160750071148',1751),('AIe9_BGIy_plKfaZrItPyyQZNLvsDh1KlJxTkgb2aaaLhGWZNq2Yi0IQoEsnINJYRRXWK2tjE1tqWN_DQWhjAa7FdyODWPVuA6giwue3ULzbM0pj2lnUAH0','Dr Daniels, my nurse Rollie and rad tech made sure I was all taken care love that Stephanie at the front desk made sure I got in quick','2020-03-09 01:27:00.869000','2020-03-09 01:27:00.869000',5,'Sheena Sanchez','https://lh4.googleusercontent.com/-E5YhZ_BPvKY/AAAAAAAAAAI/AAAAAAAAAAA/buWOM1VWQQs/c-rp-mo-br100/photo.jpg','8679688254631342173',21219),('AIe9_BGIy_plKfaZrItPyyQZNLvsdkjiPr2AsNDYYoGJpDLGmgxk2D3Sp2sUUTo3_Q74Vgbkl5lphkANGO-gntzdTXABErtPYXSWmue5uF-2jQc9o-v5fdE','My experience was amazing. Nurse Kelly V & Pamela M. Was amazing with explaining and reviewing my medical concerns. The registration clinicians, Amy M, Valinceia P. Julesia & Dalia customer services skills was amazing. They were so warm and welcoming from start to finish. \nThank you all !','2020-07-22 17:39:37.108000','2020-07-22 17:39:37.108000',5,'Ersha Mitchell','https://lh3.googleusercontent.com/-Z3hBQdZrBDs/AAAAAAAAAAI/AAAAAAAAAAA/5X7OpVBGQ-0/c-rp-mo-br100/photo.jpg','8918455867446117794',22917),('AIe9_BGIy_plKfaZrItPyyQZNLvsdleM4bHVJ87RQTxeTio4I3Kd8gch7wFrK91N4Aqry7WH9ngEkpj9OFlgAWlSJoOMpOX-YUpmF8mQMj9x5XPbKSA7xVU','The staff at Signature Care Cypress was awesome. Everyone was very professional and very informative. Dr. Nguyen and Nurse Alvean was amazing and got us in and out. I will definitely come back','2019-11-16 23:34:55.629000','2019-11-16 23:34:55.629000',5,'rodney davis','https://lh6.googleusercontent.com/-85oQajnMSuU/AAAAAAAAAAI/AAAAAAAAAAA/AdrzfBX1BCs/c-rp-mo-br100/photo.jpg','16389487648212004696',2678),('AIe9_BGIy_plKfaZrItPyyQZNLvsDMZUXJdwLbUJZd3dWhwPRNa87Wz3TOVQp0OXwjm4toYezQa5LULJXZOL5LkVBTNH0b8v3G07AD8f-Mbj6ylP5WIgyxI','They saw us very quickly, the doctor explained the issue thoroughly and in a way that was understandable, and the staff was very kind.','2019-12-29 04:51:32.832000','2019-12-29 04:51:32.832000',5,'Izzy Bell','https://lh5.googleusercontent.com/-fr1g_jK2sHI/AAAAAAAAAAI/AAAAAAAAAAA/NhENLuEDU2o/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',656),('AIe9_BGIy_plKfaZrItPyyQZNLvsdQIB1xgidkC98v6SxeF5wpx36R2j6W_wcaY6aSeO1UtEBSkzw5kQhH7qwyP-22h4I3vuIb7E_GrDea1Im3OPe3_0VXI','Friendly staff and no wait time.','2019-09-27 10:36:30.806000','2019-09-27 10:36:30.806000',5,'Latarsha DC','https://lh3.googleusercontent.com/-dPnR5gd_QNc/AAAAAAAAAAI/AAAAAAAAAAA/Umm07EE0rCI/c-rp-mo-br100/photo.jpg','8918455867446117794',9068),('AIe9_BGIy_plKfaZrItPyyQZNLvsDZ5p4Aq0GeqlX21EgrSF6EDBM7qt3qFwhMYLxNVtf8wXmwlULRfUx-8cb1NTVa3AyczrzWegQHVqun56epXZfLUE_-I','Dr. Jaber, Anthony, and Natalie provided excellent and attentive care to us. Would recommend to anybody in the B/CS area!','2019-06-05 02:22:28.475000','2019-06-05 02:22:28.475000',5,'D Murph','https://lh4.googleusercontent.com/-Ypw3TRAXTLg/AAAAAAAAAAI/AAAAAAAAAAA/rTzSHi0CryM/c-rp-mo-br100/photo.jpg','16590124370714063921',3366),('AIe9_BGIy_plKfaZrItPyyQZNLvse-KtdGQBQeQw2rHiwdpIExLoFi0b2RWwcPS6qpS_jqaX0e1Nl98axHTSkAfuK8FVpD-v3T0VuOk8saX1cHLrC18L3s8','Chelsey, Kristina, Adam, and Dr. Elsbecker were amazing! Despite the circumstances for our visit, this was the most pleasant ER experience ever!','2019-09-21 21:12:24.839000','2019-09-21 21:12:24.839000',5,'Julian Graubard','https://lh4.googleusercontent.com/-TYjgdCxDDaY/AAAAAAAAAAI/AAAAAAAAAAA/b242tyf3HNc/c-rp-mo-br100/photo.jpg','16891069708558046635',4199),('AIe9_BGIy_plKfaZrItPyyQZNLvse03o_A1wLrFU5brvNmry2xYlcJr9RF3HS_Un5tRpHFICJgchXKPxpnvxSPSy7BnN9afr3ahGlKqqoUQGu56FgbivAMg','Amazing people, took care of my son and also made sure I was doing ok. They really do look out for you here. !','2019-07-04 14:46:02.419000','2019-07-04 14:46:02.419000',5,'Maria Wallace','https://lh3.googleusercontent.com/-S2OY50ZRsEA/AAAAAAAAAAI/AAAAAAAAAAA/8ZdGym7aIs0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvsE8QjRtvD27WRY3xDouTCtZu5wkfa84lbRwoffJRXoBEXfWPP8SwXKMxiCk_OCu8OrijYVnu_Ehlc3T4fD7bRCwcqBDo','Dr chambers and his staff consisting of savanna, Lisa, Jaime, Andrew, Lisa and Saundra were amazing. We took my elderly grandmother there and she was treated like royalty! Thank you all so much for getting her to feeling better!!!','2019-06-04 22:53:12.392000','2019-06-04 22:53:12.392000',5,'Dejonna Haneline','https://lh5.googleusercontent.com/-VqpXMK6LUlQ/AAAAAAAAAAI/AAAAAAAAAAA/wJOeWx010eo/c-rp-mo-br100/photo.jpg','13486358490203335051',991),('AIe9_BGIy_plKfaZrItPyyQZNLvsEbYfKYp0FllwAbL58DzXf3BoSbv-VdbjGMhaOw7CFVzFMdAaW6wSoTMkpAWxwOF0qCS8LIPrRK7ciNHaDpcWytCurMQ','came in for chest pain and Sita was quick to admit me into the emergency center. Little to no wait at all very fast and clean. Nurse Jose was very polite and fast when it came to coming to my attention.','2020-02-17 03:06:07.269000','2020-02-17 03:06:07.269000',5,'Sean Wttenburg','https://lh3.googleusercontent.com/-OgFGFcXl78U/AAAAAAAAAAI/AAAAAAAAAAA/E2bNmKs-9sE/c-rp-mo-br100/photo.jpg','13486358490203335051',13418),('AIe9_BGIy_plKfaZrItPyyQZNLvsEF6yOFBNGoxr4VA3jaGpCadYPXPcyr0oICj2FZXoUJjUapYcj8H9ZLMApUojg1KFPYUvf2nF2Oouq93nzOTzEOxbX78','My visit to Signature Care at Montrose was the absolute best decision I could have made that day. The staff was amazing. I felt so cared for. Everyone was extremely accommodating. I felt better before I left after treatment there, and my illness was confirmed. I received adequate follow up care instructions, and a smiling face throughout my visit. The nurse staff there are very thorough. I had 2 nurses caring for me during my visit. Over all 4 different staff members cared for me, not including the receptionist, who was also very kind. The clinic is very clean. I would definitely recommend this location to anyone needing immediate quality service.','2017-04-10 23:56:43.686000','2017-04-10 23:56:43.686000',5,'Jodie Gonzales','https://lh5.googleusercontent.com/-tJ_lKzlFPm4/AAAAAAAAAAI/AAAAAAAAAAA/h2uWD4eNiSI/c-rp-mo-br100/photo.jpg','3511292162159714121',7847),('AIe9_BGIy_plKfaZrItPyyQZNLvsEFsER9b2Q3uRhoMKV4HEAl31YPpJolS6K0p0TIizR-ZWeFZfsXSTdyu3xq15Tog0AH28goGIu7XH4oup69QwaYZblfs',NULL,'2017-04-20 01:58:50.552000','2017-04-20 01:58:50.552000',4,'OLIAS MUCHOW','https://lh5.googleusercontent.com/-jogHbVBakpc/AAAAAAAAAAI/AAAAAAAAAAA/IatB1kFr1K8/c-rp-mo-br100/photo.jpg','3511292162159714121',7837),('AIe9_BGIy_plKfaZrItPyyQZNLvseFxbdrG5TB1k5hmwKjd_7EOmX5oOqHV5fz2f30JAZxAHx1QVnJcRB1AsjrhfgRWG5IICBmi-xRbMAW5N3acfi4Zrvkc','The staff was amazing I was seen in less than 10 minutes. Dr. Patel, Nurse: Julie, \nRadiology Tech: Trisha and the \nFront Desk : Deanna were amazing. Thank you all sooooo much. I’m healing comfortablely.','2019-01-15 15:39:38.883000','2019-01-15 15:39:38.883000',5,'Shynah Sawyers','https://lh6.googleusercontent.com/-aN2OXhRbFLc/AAAAAAAAAAI/AAAAAAAAAAA/jsYO8_2uiKw/c-rp-mo-br100/photo.jpg','12541597562633926366',566),('AIe9_BGIy_plKfaZrItPyyQZNLvseOb_4_cKJ2GWB4_3qTCFwXDmcOl_l0kJo-xGbHn6cu962NycEnwN10X2uoS5A2055DFWVruz549UcTuY76ttVUvmlK8','My son received wonderful care from the staff, nurses and doctor during his recent illness. We were checked in immediately and my son was in the back before I even had signed us in. Everything was smooth running and all made certain I knew what was going on while waiting with him. Even the necessity of blood work and X rays was explained followed by results. I will go there again if necessary. Very relaxed and comfortable area. Rooms I visited were clean and machinery fully functioning.','2019-01-31 01:47:57.811000','2019-01-31 01:47:57.811000',5,'DEBORAH ANDREWS','https://lh5.googleusercontent.com/-Gp7plvOyXGc/AAAAAAAAAAI/AAAAAAAAAAA/79oIoZ7g9Xw/c-rp-mo-br100/photo.jpg','8626688543755174284',8574),('AIe9_BGIy_plKfaZrItPyyQZNLvseOKSA1-VOmjUkkp3Ds7Y5VqPKcq4vYsyFUJcBbdsvxizvW7nwaz_UbyXrPnffRvoKhStu5588BshOhOnGjwZKtphmbA',NULL,'2017-07-02 20:54:02.354000','2017-07-02 20:54:02.354000',5,'Kennedi Griffin','https://lh3.googleusercontent.com/-VFdr54zirxQ/AAAAAAAAAAI/AAAAAAAAAAA/-v_F1Fk_ZzA/c-rp-mo-br100/photo.jpg','3511292162159714121',7805),('AIe9_BGIy_plKfaZrItPyyQZNLvsf0PAG50miVBvgVYAyB4nkLRsNen4430du5ZJiL6ofY3mhns0FE1AqmBzFrlDtSYLOB1fXZVPpOc6FkCkCGhi7NX1j8g','a fantastic service. No endless waiting. They are quick, polite, professional and caring people. No ridiculous bill. Neat enviroment','2018-11-03 19:48:53.248000','2018-11-03 19:48:53.248000',5,'naomi onabanjo','https://lh5.googleusercontent.com/-rHJrpOj57uE/AAAAAAAAAAI/AAAAAAAAAAA/Dqi_ajERDOM/c-rp-mo-br100/photo.jpg','17394740196501090048',4769),('AIe9_BGIy_plKfaZrItPyyQZNLvsF1YaPEFGp8NiOhrnkR4xQKSAo5pvEKy70TXdBU6rr2Je5EkB1kGRPFP-tkhMmX04zWbS-FyCGcQOFFyS3pPFgS_Rj_o','keera did such an amazing job great staff great place will definitely come back','2018-08-16 03:50:05.819000','2018-08-16 03:50:05.819000',5,'Joycelyn Allen','https://lh4.googleusercontent.com/-oOQpEBr_jXo/AAAAAAAAAAI/AAAAAAAAAAA/aWvHg51m6S4/c-rp-mo-br100/photo.jpg','16590124370714063921',3787),('AIe9_BGIy_plKfaZrItPyyQZNLvsFCqLrZpQ_GN9mUYQ1z4kirOZ8ts4Z8pwp00BoQI8s2f-tgBJY1sjkEPQp4rSE9qnJvqzOGdWVwnAfdStfipzxjpNNHM','So thankful I found this care center. From the warm welcome and assistance from Melissa at registration to RNs Meredith’s and Denise’s encouragement and care allowed me to process the challenge of my health need. Topped off with Kat’s Cat Scan work and Dr. O’Malley’s genuine bedside care, I highly recommend utilizing their ER care for your urgent needs. They were a top class team that put my concerns at ease. Definitely a health space that diminishes fear and places you back onto a healthy path. Thank you all and advise others to utilize.','2020-03-06 04:45:55.649000','2020-03-06 04:45:55.649000',5,'Erin West','https://lh3.googleusercontent.com/-mQeZ1gD6JCw/AAAAAAAAAAI/AAAAAAAAAAA/SQfqKpZ735Y/c-rp-mo-br100/photo.jpg','16389487648212004696',13724),('AIe9_BGIy_plKfaZrItPyyQZNLvsFDhBodv-m8FfewbWZsKVjuH31DIH9XdJSxiiSmDn4LrITWjp8ZGeLGckPWGQCezlH1UuN9_0nbH4gs0J1irHa7-opXg','Jordan Huckels was great at the front desk. I was able to be checked in and seen very quickly.','2016-12-30 21:59:05.024000','2016-12-30 21:59:05.024000',5,'jemila ndioubnan','https://lh3.googleusercontent.com/-gFHQ1ArVffM/AAAAAAAAAAI/AAAAAAAAAAA/gNxTtcJJZO0/c-rp-mo-br100/photo.jpg','14904078213800803294',2432),('AIe9_BGIy_plKfaZrItPyyQZNLvsFE7vruXXBvmx8r_0qZnaZXbo_z4kmRvOpHaZjwlcJYkGDnPupX5YlrEJVfyNlm6Co43GoeqlBzOxjkgIRpHv1Uw4prE','I had to go here 5/7 at 11 PM at night due to a gash I had in my chin. When I arrived the office staff greeted me nicely and had me do the paperwork since I hadn\'t been there before. Within a few minutes of my arrival they took me back go a room. Dr. Miller came into the room and introduced himself and made sure I was okay before discussing treatment. He looked and said I needed stitches. They came in and got me all cleaned up and put in 5 stitches. My overall experience at this place was second to none. I was amazed at how quick, easy, and AFFORDABLE to someone without insurance. I would recommend this place a million times over!!! Thank you Dr. Miller and the staff at SCER!','2018-05-11 02:06:42.088000','2018-05-11 02:06:42.088000',5,'Ashley Maki','https://lh5.googleusercontent.com/-9AmdTnaPlL8/AAAAAAAAAAI/AAAAAAAAAAA/pRl9u7W491o/c-rp-mo-br100/photo.jpg','14904078213800803294',2256),('AIe9_BGIy_plKfaZrItPyyQZNLvsFjSd0GZ_f8I3ju4Fn4XM-0t79NL-OcLk3WogKx0kRpSBHi_jwWGxleUoKwOWHGT1DJis4qh9U7AcBTEDW9Y7trN_Pe8','Coming here is sooo much better than anywhere else! Cannot emphasize that enough. Staff is great especially Kat, my nurse and doctor Elsbecker, Calli as well. Night time crew is the best 😊','2020-02-24 01:29:28.229000','2020-02-24 01:29:28.229000',5,'Anna Hinojosa','https://lh5.googleusercontent.com/-rvVsfzDxC0c/AAAAAAAAAAI/AAAAAAAAAAA/Uyt7veFvi4c/c-rp-mo-br100/photo.jpg','2694018788013845459',14210),('AIe9_BGIy_plKfaZrItPyyQZNLvsfMac2AjMWd9d2qhTg5yVV1tjvLMgu3y0M34VTmhBoqdOCjb45D6ajpAq0URrg6PaI5ECBF-GkW9haVMvJMKFwdLoVRE','Everyone here has been great! Earl, Katie the nurse, and Frank the rad tech were all fast and efficient. They made my son comfortable when he was nervous. Thanks guys!','2018-09-01 02:00:15.824000','2018-09-01 02:00:15.824000',5,'Kaye Huwyler','https://lh5.googleusercontent.com/-za0eZOBfF5Q/AAAAAAAAAAI/AAAAAAAAAAA/A29WH8DDdeM/c-rp-mo-br100/photo.jpg','16891069708558046635',4435),('AIe9_BGIy_plKfaZrItPyyQZNLvsfRSUYcUQwIVi_bDDRDQE8EcOnFh5NLzfMcy2zKJwIkbTZ96RxMSn8ByM_-m1GdrYuQ1SxaGdQjWzxPfawyAwCHdBB_s','Staff was very friendly and extremely helpful. the Nurse Kristina was very concerned and explained well. The E.R Tech Scott was super care when drawing blood and made sure it was as little pin as possible. Dr. Zhen was fantastic and answered all questions.','2019-12-27 23:50:24.827000','2019-12-27 23:50:24.827000',5,'ANTHONY BUCHANAN','https://lh5.googleusercontent.com/-WvgIJOJpF4E/AAAAAAAAAAI/AAAAAAAAAAA/_6bIBPmBn24/c-rp-mo-br100/photo.jpg','12541597562633926366',295),('AIe9_BGIy_plKfaZrItPyyQZNLvsFTQmoP2XPSfSsSx2aFPfttrbGhe1R_HUWFZ_-m1xv1nQ2zRFo3MG4tWY9AewexlKueQh2dcntcJgz-oTnggDpeA-BvY','I always have such a great experience when i go to Signature Care. This was my first time at this location and they had to keep me over night and had an amazing experience. The staff is always friendly and they have the best doctors!','2018-12-04 15:08:54.248000','2018-12-04 15:08:54.248000',5,'Elsa V','https://lh3.googleusercontent.com/-nwmkxiNgUIQ/AAAAAAAAAAI/AAAAAAAAAAA/CcCtXGOjv2M/c-rp-mo-br100/photo.jpg','14904078213800803294',2191),('AIe9_BGIy_plKfaZrItPyyQZNLvsfu_E2AZtX-T8Kma5Yj3pwfPGVebqivHr6qmqETbjYHmuesfuWD8WsK9z-IG4C1826S7BMDP-aIbDJJx4Ex0xccOVQu0','great experience here! everyone was so helpful and took great care of me. very quick too.','2019-12-22 21:29:23.601000','2019-12-22 21:29:23.601000',5,'Robyn Morrow','https://lh6.googleusercontent.com/-jWejNygNY8k/AAAAAAAAAAI/AAAAAAAAAAA/i4btVaSlXnY/c-rp-mo-br100/photo.jpg','16590124370714063921',3011),('AIe9_BGIy_plKfaZrItPyyQZNLvsfU3jZPIwAVqhSKUHUP4ctiX7J2waBWXWSosz_nMFQ0JsnE6JWNdtlnwcBQx9qV3mQ3oBLAr4VW5_NEKhNJ7l44OH-nU','I had a excellent experience here. Late night, requested an echocardiogram, and a tech was sent out on the spot to help run the exam. The doctor Dr. Boester was very friendly and helpful. I felt very at ease but also cared for. There was no wait at all, I was seen immediately. I was provided snacks for blood sugar during my blood test and received comprehensive amenities.','2019-01-10 04:41:40.516000','2019-01-10 04:41:40.516000',5,'JORDAN FIELDS','https://lh5.googleusercontent.com/-tYKfvU1IHL4/AAAAAAAAAAI/AAAAAAAAAAA/UqcYfuv8pmY/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7498),('AIe9_BGIy_plKfaZrItPyyQZNLvsG1jUxE8tmmex1PyYVWyjQJqU3ehFCCfrRmmVivCsWsSTe8zqSazVZ4xj5FOVSgFae3klON6ypRjwEX489nmOn-HptnQ','Came into signature care ER this morning and was greeted right away, filled out paperwork and before I could even finish was called to the back and placed in a room. Krystal Marquez and Aaron Ortega were the nurses who quickly and efficiently got my husband started on IV fluids, pain mgmt and started bloodwork. Friendly staff, nice facility and quick service. Glad we decided to come here and not waste hours at hospital ER.','2020-02-29 17:24:09.352000','2020-02-29 17:24:09.352000',5,'Brooke Parker','https://lh5.googleusercontent.com/-vJpSIJZqshE/AAAAAAAAAAI/AAAAAAAAAAA/madpl7gUkEo/c-rp-mo-br100/photo.jpg','13486358490203335051',13407),('AIe9_BGIy_plKfaZrItPyyQZNLvsg8pQxms4X6yJA6-4qz9jVxhdBeCWdj7cy7yWfy7_Afhn3ZNsmJ_RW491oI9f09FSmSrlXYw3GqJHix5siHEpQzFYyCw','Excellent staff. Very polite and best of all quick in and out unlike hospital ER.','2017-01-31 00:50:11.832000','2017-01-31 00:50:11.832000',5,'Manish Thapa','https://lh4.googleusercontent.com/-N6ZIoyGP9WA/AAAAAAAAAAI/AAAAAAAAAAA/cJ9hPkGCVg4/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5123),('AIe9_BGIy_plKfaZrItPyyQZNLvsgao_NULXOb9kUvIofpAtT04IurP7u8dtM7bhTizFlO3awVUkEfkkRdDV9KozjdvKeQrsuG-hvqsqIyf6HdDDYMMrjO8','Treat you very fast, Dr. Richard Ybarra.\nThe nurse Rollie,. Natia and Stephanie were very friendly.','2019-11-16 06:52:26.161000','2019-11-16 06:52:26.161000',5,'Luis Silva','https://lh4.googleusercontent.com/-fSrTlh2Sryk/AAAAAAAAAAI/AAAAAAAAAAA/nOcHjgZNsC4/c-rp-mo-br100/photo.jpg','8679688254631342173',8729),('AIe9_BGIy_plKfaZrItPyyQZNLvsGn8sWppqStpU5ZzX5D6jnU4kFKJMusPNhXgTp3yV_l4rimy0Hxgqw6qbY3z0pImsd8rTpgh0LNztltjKxYwiFob1OLU','Nurse Nikki and Dr. Patel as well as Jessica and Luisa were very good. Treated us very well.','2019-04-29 03:05:39.416000','2019-04-29 03:05:39.416000',5,'Gloria Doku','https://lh6.googleusercontent.com/-TkCuutCPbEA/AAAAAAAAAAI/AAAAAAAAAAA/BX-ZI3ExyO0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvsGNhBugTvVXfGqniewIHFggW57KwUKH3WwJsXq6oYYPbicSoD59HA5yqb02rK8hsrw4AHyRm5Wvy3-nmII8i9pPV3eKM','I Google a place to go straight after work from being in excruciating pain. This was my 1st pick and boy am I happy I did! The staff was amazing... Tanisha (fellow 504) was so sweet, Laura, James & Sarah were amazing & patient & talked thru every step they were doing. If you missed anything, Dr. Mauldin repeatedly made sure you heard & understood what was said from him! Amazing experience, thnx team! 💚','2019-08-14 03:24:20.830000','2019-08-14 03:24:20.830000',5,'SHAY FORTNER','https://lh4.googleusercontent.com/-80194UTqmRM/AAAAAAAAAAI/AAAAAAAAAAA/0jvRxIePFYA/c-rp-mo-br100/photo.jpg','17898197009688164559',5591),('AIe9_BGIy_plKfaZrItPyyQZNLvsgU0IqUtT7pwMta8vljArb8VMtb68H9K-Sj3oD4oKXQrJ4afORE0Lt5l3g7RnuLLnPzh6iilRHr-UQ1pdqwDPw0nuYxk','Dr O’Malley, Alvean and shazia Olivia and Patricia were all so nice and helpful. I got in and out. Very nice Signature ER. Thank you everyone!','2019-12-01 18:59:29.241000','2019-12-01 18:59:29.241000',5,'Becca Reed','https://lh5.googleusercontent.com/-Ppb-NAZrLJg/AAAAAAAAAAI/AAAAAAAAAAA/-Z1yOdx_VgU/c-rp-mo-br100/photo.jpg','16389487648212004696',2596),('AIe9_BGIy_plKfaZrItPyyQZNLvsgXxRXFoLJOoyaqPQGjOsGc0HkXW3w1T9nDSGUNoFDRGnrA95oRtyqgh3Em26v4hFVrvfKkRAAH6wWRexkKS8RI1HLO4','No wait, personal attention','2018-05-29 16:36:37.963000','2018-05-29 16:36:37.963000',5,'Crystal Frommert','https://lh5.googleusercontent.com/-QtI-89vL2hQ/AAAAAAAAAAI/AAAAAAAAAAA/zw4_1HUg-AI/c-rp-mo-br100/photo.jpg','14904078213800803294',2250),('AIe9_BGIy_plKfaZrItPyyQZNLvsgysXjlciGrfhN647aENcyh3j3zUYr9hVRdc-9ohXZsHLRKuqB1YnL71870TOShBj1IQV43PPcuUj6jAn3hEFNOLTfhA','I was seen quickly. Everyone was amazing and incredibly nice! My nurse Anthony was very attentive. Dr. VaKey was very informative and didn\'t make me feel stupid or that my concerns were invalid. Morgan was fast with my xray and explained very nicely how to position myself for it. So glad I came here.','2019-07-08 13:39:29.379000','2019-07-08 13:39:29.379000',5,'Ellen Pruitt','https://lh6.googleusercontent.com/-FUi0I6tUcQQ/AAAAAAAAAAI/AAAAAAAAAAA/kbEr2fCRX7g/c-rp-mo-br100/photo.jpg','16590124370714063921',3308),('AIe9_BGIy_plKfaZrItPyyQZNLvsgZWa3FFkPOSOsOo1MeIsbGwVqFdcTnNTTACdZLDYzMcD1l4e7MUjqRKXkos10s-0WXE8WXEP8o958eCwZ9R3otwF1wM','Great staff and service!! Aaron was awesome! He took time to really make sure I was comfortable. He was really laid back and down to Earth. The staff’s reception was much needed as I was feeling very nervous about the reason I came to the ER, but they made me feel calm and relaxed. Many thanks!!!','2018-08-20 22:57:49.558000','2018-08-20 22:57:49.558000',5,'Kemi Nnaji','https://lh6.googleusercontent.com/-91KYyv00G7w/AAAAAAAAAAI/AAAAAAAAAAA/q1pyTD7ptMo/c-rp-mo-br100/photo.jpg','14904078213800803294',2225),('AIe9_BGIy_plKfaZrItPyyQZNLvsh3ATmYfwfwyUEOq14-hHWQxMrHyClOTJ2aOTntCWV3CPiQ4zupZJJFvLeIe0prr37La7Mu0keZGsBr5V4cOB3sm_IE0','5 star hospitality came in and the Doctors made me feel secure Dr.Haraji,Nurse Alvean,Tricia B,and Elida were the team players that made sure I was great I appreciate SignatureCare on Cypress Creek pkwy/FM 1960','2019-10-31 21:50:01.623000','2019-10-31 21:50:01.623000',5,'Blood Money','https://lh5.googleusercontent.com/-aA82-Gks9-E/AAAAAAAAAAI/AAAAAAAAAAA/Z1xoZsQfyh0/c-rp-mo-br100/photo.jpg','16389487648212004696',2744),('AIe9_BGIy_plKfaZrItPyyQZNLvsH4WswmDygId0wpw1SEqjWn5ebI6dHCJlzfzsxMH-RRJ1WGnkOSG0dH8b8SLneNFLaQ681M7REoKyLbiXda7gPqAV5Jw','Great staff! Helpful, courteous front desk help! Made everything super easy! Very knowledgeable doctors on staff that explained all processes in a very professional matter! Thank you to Kimberly, Jacob, JR, and all the wonderful staff!','2017-03-10 20:43:54.709000','2017-03-10 20:43:54.709000',5,'Jessica Evers','https://lh4.googleusercontent.com/-9VcxJZNKGm4/AAAAAAAAAAI/AAAAAAAAAAA/jI8LDabujMQ/c-rp-mo-br100/photo.jpg','16590124370714063921',4037),('AIe9_BGIy_plKfaZrItPyyQZNLvsH6mfueXhy3u2iqgPIC-kr-13067D8PpKIkj1oi-3hHtyEUOLFhvZtVZ9Ak-_EkepHC29JoQTb3pf5FQpTaJcJR781T8','Very professional staff and quick waiting time in the waiting room. Natalie, Vivienne N., Gina A., Diem, JB, and DR. Miller helped me quickly and made my time comfortable; very smart people!','2020-01-31 04:15:37.740000','2020-01-31 04:15:37.740000',5,'Craig Gantt','https://lh5.googleusercontent.com/-5bkMccoOrPY/AAAAAAAAAAI/AAAAAAAAAAA/xw9CEP_Mnig/c-rp-mo-br100/photo.jpg','14567670160750071148',13574),('AIe9_BGIy_plKfaZrItPyyQZNLvsH85CGZZDDJN_JckBE2gjujh4VbFHP3O9QxykjSbliemOysMUdc92GkxnQqeN3LJzFanVbij8rq3HqkTSMgNg3FT-JPw','As soon as you walk in the front doors you are greeted by Jocelyn with a smile!!! Mrs. Alvean was super sweet and Dr. Henderson was as nice as could be. Tricia was the first nurse ever to not pop one of my blood vessels while inserting my IV. She made it very fast and comfortable. \nEach worker made my experience as comfortable as possible!! \nHighly recommend!!','2019-07-24 17:00:17.894000','2019-07-24 17:00:17.894000',5,'Kelli Williams','https://lh6.googleusercontent.com/-XUHypvQOFOw/AAAAAAAAAAI/AAAAAAAAAAA/wrJ8DizhggM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvshBVNzMHDhnJbZS42YNUtEO4xXuinqRa6wvYAyPHiPRFyBSlt1O7WYmkacS1zbs_rSoj2jgZVv3zBta0OC4XS3D92odU',NULL,'2016-09-03 17:55:37.266000','2016-09-03 17:55:37.266000',5,'Mirna Centeno','https://lh6.googleusercontent.com/-dsGqXjLychI/AAAAAAAAAAI/AAAAAAAAAAA/xg9hGerxz1E/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2460),('AIe9_BGIy_plKfaZrItPyyQZNLvsHDMBMecmJfXOQRm3oxr64QRyq9ybDGkzLfFumFQ_aRPSKh5Ln-OO7nZsshkfMXaox3ZyTlfuB22gOR4hWlJ_8TihyYE',NULL,'2019-07-07 18:22:23.811000','2019-07-07 18:22:23.811000',5,'Mar Mckinnies','https://lh3.googleusercontent.com/-qSRHSsTHRvo/AAAAAAAAAAI/AAAAAAAAAAA/SqlrrECocd8/c-rp-mo-br100/photo.jpg','16590124370714063921',3313),('AIe9_BGIy_plKfaZrItPyyQZNLvsHDrJ0QJeltTCyWsArxMkzmyDdrdMK6hXja1ZtL-mfIJ6qa6-JJYOsiw4HF9AKoezUzJmex4ybWv-Pqj6BDfo0daMD0U','Everyone was so kind and attentive to our every need. There just wasn’t anything they left out. Front desk staff Carla, Kim and Linda were welcoming and helpful in getting us in quickly. Our nurses Lucas and Jennifer were very thorough and took great care of my sweet little girl. Kim, Doug and Sherri were so helpful. And Dr Yost and Dr Henderson were fantastic. It was the best experience in a hard situation and I am so thankful we chose SignatureCare. Thank you for everything.','2020-01-18 21:17:57.087000','2020-01-18 21:17:57.087000',5,'Erica Jones','https://lh5.googleusercontent.com/-Cdrd54Bb2nQ/AAAAAAAAAAI/AAAAAAAAAAA/Bwb8WgY_pkY/c-rp-mo-br100/photo.jpg','3272657195432704501',10075),('AIe9_BGIy_plKfaZrItPyyQZNLvsHe78a-HFt4RNiJMyFREbOCg5xZfSuKWL2wJN-1PkLbt6D61ZNHFM_P_rxuE8uIlUk0uakBBKIv1Cmkk5vSP9KVjcWtU',NULL,'2019-09-14 15:07:40.122000','2019-09-14 15:07:40.122000',5,'Nelson Sowers','https://lh5.googleusercontent.com/-5KiTJXPNfQs/AAAAAAAAAAI/AAAAAAAAAAA/nvNhi4duTSc/c-rp-mo-br100/photo.jpg','8626688543755174284',14675),('AIe9_BGIy_plKfaZrItPyyQZNLvsHEDDtxlkniQ434dOTXGgHkWICZylnclQvXa1D3fpafqenksgMbU_gNbZbeLvDuRs6ZLTzTDR7KPMrXlrQ6dBI0lQflg','I’m not a patient here, but every time my older brother gets sick. He runs to signature care and they always leave him better and make sure we know everything about his health and medicine he will be taking!','2019-07-20 04:37:18.945000','2019-07-20 04:37:18.945000',5,'Mario Alvarez','https://lh4.googleusercontent.com/-PTEWFHsRs5k/AAAAAAAAAAI/AAAAAAAAAAA/fKtbYjwJnGQ/c-rp-mo-br100/photo.jpg','13486358490203335051',889),('AIe9_BGIy_plKfaZrItPyyQZNLvshlKU4nez8wVe0fmHZpP7YU4bIH31wSzFmmKmqXgy6rrlUcr4i2nN7lmd37lcLq2Xv3lu4G1NXqxz1cb8lpyDQZ7cTss','These guys were awesome. The facility was very nice and comfortable and the staff was friendly, knowledgeable and relatively quick.','2018-06-07 15:23:33.464000','2018-06-07 15:23:33.464000',5,'Terry Nwosuocha','https://lh3.googleusercontent.com/-TCPegPuMri0/AAAAAAAAAAI/AAAAAAAAAAA/fDFjdbMAyHk/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1609),('AIe9_BGIy_plKfaZrItPyyQZNLvshn2jLZ-YXCeZAQ0U1vgJdGioysIXFuTjv2q3IIOlJsq4eETB62r69388h3FWLR39B-OsxFNQgQwLN9ScjJ7fA3_uYEk','Excellent service from everyone. I was really impressed. Nowadays, its hard to find such great service.','2019-04-09 04:47:03.948000','2019-04-09 04:47:03.948000',5,'Fahimul Karim','https://lh4.googleusercontent.com/-OxposA2gkOU/AAAAAAAAAAI/AAAAAAAAAAA/QJb9jOY4OcY/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4695),('AIe9_BGIy_plKfaZrItPyyQZNLvshNGJJVDwz48RzU1rcPT6PbJExB4koCRkFVkeT-brCjztDY2MRKuSODzO6LYj3OewO1YBkLvj10dWjVo_VIHko91jamM','Had really good service, was in and out of there in one hour. Staff was really friendly especially rashad and sindy also nurses were really nice def recommend any one with emergency to go there','2020-02-07 02:26:09.485000','2020-02-07 02:26:09.485000',5,'Anam Gul','https://lh3.googleusercontent.com/-dE3U8zCZl6U/AAAAAAAAAAI/AAAAAAAAAAA/B7Pb_L2HJRc/c-rp-mo-br100/photo.jpg','17394740196501090048',14029),('AIe9_BGIy_plKfaZrItPyyQZNLvsHQrDOZr7MqM253WAZOCRCuz-uCmRdkhWvKCJeeanOt9W-leorR6dxE01fCwRgaW-pfFj90VwTyVgxWrLvkrAV4tNb1o','(Translated by Google) Dr. Iheme\nMarcus, Jocelyn, Brian. They were the ones who attended me.\nEveryone is very friendly and helpful. Would definitely come back\n\n(Original)\nDr. Iheme \nMarcus, Jocelyn, Brian. Fueron los que me atendieron.\nTodos son muy amables y serviciales. Definitivamente regresaría','2019-11-20 13:32:48.168000','2019-11-20 13:32:48.168000',5,'Sixto Merlos','https://lh6.googleusercontent.com/-fha5Dbbi5IE/AAAAAAAAAAI/AAAAAAAAAAA/jLDl_Wi_Rqw/c-rp-mo-br100/photo.jpg','16389487648212004696',22639),('AIe9_BGIy_plKfaZrItPyyQZNLvsI0-aBoq8t_nnphzfEPYeyrm-tGOveLxlQKq3MpFBeLQYu7wxu7hMYyOghHUkmTtwLlWB5HSXQtnJezp0rmdHVcLwo_8','I love Signature Care ER! They always take such good care of my daughter.The staff is so friendly and professional. Her nurse Erika was so great with my daughter and Dr. Elsbecker was so nice and he really took the time to explain everything!','2020-02-27 16:25:59.857000','2020-02-27 16:25:59.857000',5,'Torie Spivey','https://lh3.googleusercontent.com/-jTGVUv_TiKk/AAAAAAAAAAI/AAAAAAAAAAA/5XKImOYcmrM/c-rp-mo-br100/photo.jpg','6521947413723274945',14541),('AIe9_BGIy_plKfaZrItPyyQZNLvsI4NietgLC7Prg8j4DvEUsC763aArE58wCMuscoylXujOCJ6_iPkyTIErhLsNKxuRiAtBKEtkfzDLMCTjVBmZriWa0Uw','Dr. Omally \nAlvean A\nKelly L\nJocelyn A','2019-11-27 15:05:53.087000','2019-11-27 15:05:53.087000',5,'hussain abdelrahman','https://lh5.googleusercontent.com/-_o2QTu8hvqY/AAAAAAAAAAI/AAAAAAAAAAA/KXhb6cnAnKM/c-rp-mo-br100/photo.jpg','16389487648212004696',2619),('AIe9_BGIy_plKfaZrItPyyQZNLvsI76fDYgEjDu49Q0cOeDyWYeWHaIQxusjB1L5zT6_NJzy8j0DqZXkJtTCALY1DcdCo8quFu5-wJRulJ5LceEbL71iqD8','After having chest pain for three days, I finally decided it was time to get checked. All I can say is this place is incredible! As soon as I walked in, Cindy [front desk] admitted me within two minutes. Immediately the medical staff began running tests [EKG, blood, x-rays, ultrasound]. The test results came back promptly, and Dr. Edwards explained what the predicament was and implemented a treatment plan. The doctor and staff are amicable and proficient. I was extremely impressed by the immediate service, and would highly recommend this place for any emergency!','2019-07-24 17:24:38.186000','2019-07-24 17:24:38.186000',5,'Richard Gonzalez','https://lh3.googleusercontent.com/-K0gzzAGUuLQ/AAAAAAAAAAI/AAAAAAAAAAA/-fWEYUe14r0/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4624),('AIe9_BGIy_plKfaZrItPyyQZNLvsIGPai8KVTlMhC_5yY855RlwzQhgSEnksBb2S1UwRljw_rRVTyHp9C40Vh66oNnh3MvgN_0_DFdsNuwibmHFKbtWJtF8','Aubrey was one of the kindest people I had enter the room. He made the experience awesome. The nurses were awesome. The tech in the radiology room was super sweet and made me feel comfortable. The lady at the front desk helped charge my phone which was a big thing because I know my family was worried. The doctor was super efficient. I really would tell everyone to come here.','2018-09-17 19:22:59.537000','2018-09-17 19:22:59.537000',5,'Ebony greenfield','https://lh4.googleusercontent.com/-kC9fPwWJhxs/AAAAAAAAAAI/AAAAAAAAAAA/2Q82A-xW-YM/c-rp-mo-br100/photo.jpg','14904078213800803294',2213),('AIe9_BGIy_plKfaZrItPyyQZNLvsIgtxO5zRyfqP8MkHwmfFlihuuAu4NWdNIqOo22dM66SHhhp4NojyN8nd_Nvq4hHd9WknA0HDBDzQQaxMCfugwW4o2s8','They were fast and efficient polite caring. Got me discharged quickly and Evelyn the receptionist was extremely nice and helpful when I entered and left the building','2019-09-18 18:17:35.424000','2019-09-18 18:17:35.424000',5,'Rashonda Schaeffer','https://lh5.googleusercontent.com/-Y_iHrKtFJGU/AAAAAAAAAAI/AAAAAAAAAAA/M2QBz15DFgs/c-rp-mo-br100/photo.jpg','16389487648212004696',2903),('AIe9_BGIy_plKfaZrItPyyQZNLvsILqodwc3HHn0gB3OZ3gpOQDD-0qfEgtfZ3wkWOTh9LzCdGu9JmRZW9GLTWw6Mf1Z37anjSG4tbbHezBsxBBzjO_pzTo','GREAT EXPERIENCE VERY WELCOMING','2019-06-12 15:22:45.044000','2019-06-12 15:22:45.044000',5,'Rolaz Cutz','https://lh3.googleusercontent.com/-6W2-mflOlsI/AAAAAAAAAAI/AAAAAAAAAAA/wRR5-UVhaP4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvsIuHkRpEdx4EirRlor4uz8-5r2wseWeuRrHl8z-7h0XCHdPtSh0mSvqkgHesg6FYiVtyc8Pjk0eJhMjLVqN9VzGYv76M','Awesome staff! Everyone was so attentive!','2017-11-13 22:15:50.861000','2017-11-13 22:15:50.861000',5,'Danielle Greene','https://lh5.googleusercontent.com/-XenlfSfHB-k/AAAAAAAAAAI/AAAAAAAAAAA/Ye2BxtsMGRs/c-rp-mo-br100/photo.jpg','3511292162159714121',7760),('AIe9_BGIy_plKfaZrItPyyQZNLvsiwf5ABj035EIYMkb11fcI4A9-rjvpbKdql1jCiYHjbXKOok0ZNIaq-d8VlvWqXedM-u-t1yhlhpjdZqftM8Z2fGn_Gg','Everyone was very helpful! This is an independent ER not an urgent care, but I\'m glad I end up here. I saw a doctor within 5 minutes. I had a couple concerns about medication and she explained everything and made me feel comfortable. I would highly recommend this place!','2017-11-05 14:08:02.534000','2017-11-05 14:08:02.534000',5,'Maran Sprouse','https://lh5.googleusercontent.com/-i5W8g8fa1dg/AAAAAAAAAAI/AAAAAAAAAAA/lhQFZ2UBlbk/c-rp-mo-br100/photo.jpg','3511292162159714121',7765),('AIe9_BGIy_plKfaZrItPyyQZNLvsIXKunqymg4BRAL6cw4OlTSyTAG5Rxu6GBLnkOnMTrmo0qWk5S2IT8B9neF1eekCoJUWzej4798KCYYVB0z_PzI8uvqY','My experience was great everyone treated me and my family great ... Dr. Dang was friendly, Alvean A. Offered us snacks and Gatorade , and Marcus B was a funny dude . They all made me feel very comfortable .','2019-09-10 19:33:12.892000','2019-09-10 19:33:12.892000',5,'Sports Highlights','https://lh4.googleusercontent.com/-7YIURGLr7No/AAAAAAAAAAI/AAAAAAAAAAA/GBNTYyqnAQE/c-rp-mo-br100/photo.jpg','16389487648212004696',2927),('AIe9_BGIy_plKfaZrItPyyQZNLvsixRDngb75izqTooSq3LYNawlG4UuaxIe7PKjwMjjHHd9wHJFz2v-EKfEIvB-snshqkP0hsnNae_ikmZto4_Iu8MXLyM','An absolutely amazing staff! Lorena L. And Lisa H. were so nice and fast getting me checked in and out and Jose S. was even taking me to the back before I even started my paperwork. Him and Vanessa C. were so kind and sympathetic about my kidney pains and Jared C. And David M. Was a great help too! Dr. Miller was awesome in explaining everything and getting to me super fast! Thank you to everyone! Such an awesome staff!','2019-10-24 04:15:40.263000','2019-10-24 04:15:40.263000',5,'Shania Simmons','https://lh4.googleusercontent.com/-5MFI4TGLuHM/AAAAAAAAAAI/AAAAAAAAAAA/ZuvKjdC78_0/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',771),('AIe9_BGIy_plKfaZrItPyyQZNLvsj_btGeSFQN3ute5b1VxF3Ao-ttMrahwO6O6nI0aAoGRGBER0o-KiSFcXfkLQ-uAMME1xU8m_uNwhvPqTEMyh9Xo6cq8','Excellent care, friendly staff, extremely fast.','2019-05-15 15:36:47.751000','2019-05-15 15:36:47.751000',5,'Steven Brimhall','https://lh5.googleusercontent.com/-vbZCU6-AMwk/AAAAAAAAAAI/AAAAAAAAAAA/9NME6dgR4j4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvsj6eDWm-xJzRi2QS_c5v_ilYCFjiJa6lb0ojHSAFJ2XNOc6Mw000jYQMMVTFYqCAR09hXm219qXbwqbqUsFDupGxhWyg','Wonderful facility, prompt care for my fiancé and the staff Nancy R, Kiera, Randi, and Dr Daniels were great!','2019-10-27 01:44:47.220000','2019-10-27 01:44:47.220000',5,'Tiffany J.','https://lh6.googleusercontent.com/-sK_Shli85tk/AAAAAAAAAAI/AAAAAAAAAAA/gY59vFX1xc4/c-rp-mo-br100/photo.jpg','6521947413723274945',8106),('AIe9_BGIy_plKfaZrItPyyQZNLvsjb0morbjAgbQKPKgHHALE4MUwe-bPOy4KwELkaZyb4P6mZ4Qn_Z7Bzw-OP4LWG-pWuF2QaCNwhya14uvzggBqBRZce8','Staff here is Great! No wait times Very tentative and aware of patients. Lisa V., Savanna are such great nurses. They went above and beyond to make sure I was comfortable. Facility is very clean and tidy. Staff all has smiles.','2019-07-15 22:12:24.710000','2019-07-15 22:12:24.710000',5,'Mercedes Manning','https://lh6.googleusercontent.com/-nvZLB5KseEc/AAAAAAAAAAI/AAAAAAAAAAA/2WXONCrD224/c-rp-mo-br100/photo.jpg','13486358490203335051',892),('AIe9_BGIy_plKfaZrItPyyQZNLvsJm9TGpmt80hli9iQc44UJJpVK56-CC_IOm27de-UfdbPm_SKB6ujQH-87_XrcnzTiNzHPwGmJaG9KyXuqorUS_A4N60','You have to pay to get an appointment and then wait outside in the heat under the sun for hours before it\'s your turn. It\'s a scam!','2020-07-03 20:17:56.359000','2020-07-03 20:17:56.359000',1,'syed ahmed','https://lh5.googleusercontent.com/--uEuTZlX6mQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmj6AgPc_7ZSn1Kyqx0I4wpPpDV9w/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21407),('AIe9_BGIy_plKfaZrItPyyQZNLvsJQjcKR_n730KUsRrKAimG4wpPP8951VSLBtPEzKb1D6GF9KQY-zQUQ2-9Fu9sgYsZcIxYS6BhYbTnmXsMDY0sC1iyFs','I was literally amazed at how quickly I got in to see the doctor. I have never been to a 24 hour care where I didn\'t have to wait. The facilities were very clean and new looking. Nicole and Lia, my nurses were gentle and supportive even as I was in pain from coughing and have a fear of needles they treated me with great care. Dr. Yosuf was kind and quick with treatment. i would recommend this facility to anyone.','2018-01-16 15:36:16.907000','2018-01-16 15:36:16.907000',5,'Karen Starz','https://lh6.googleusercontent.com/-2z2QwLYuxJg/AAAAAAAAAAI/AAAAAAAAAAA/B57htjrefHE/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1679),('AIe9_BGIy_plKfaZrItPyyQZNLvsJUnIaYdqlU6J4Ek4fICutZ5wW7CkTZ3iMJ9SISUuscPxAv2DapkCXO-_XHD01WBNtsG0hUIKa3mSMUAUfr3PvOSnTu8','The people were nice and kind and we got in super fast! I truly had an awesome experience.','2019-11-11 00:49:18.165000','2019-11-11 00:49:18.165000',5,'Natalie Harris','https://lh4.googleusercontent.com/-9XZn_CciUnc/AAAAAAAAAAI/AAAAAAAAAAA/4-6DMtMKRwA/c-rp-mo-br100/photo.jpg','6521947413723274945',8095),('AIe9_BGIy_plKfaZrItPyyQZNLvsjYHYbEF5ypF7xvIgCgbcqF36DSpa_sC7AGuYRdIL29yIBluQ5QY9u8n-tbgBfO34r1KRnVdO4cZwqCiAg6xkKmvaBxM','Excellent service, my girlfriend was sick and they got her in fast. Now she is feeling better thank you Kristina, Victoria, An, Laura, Maya, and Dr. Miller. Your service was greatly appreciated.','2020-02-01 02:28:24.410000','2020-02-01 02:28:24.410000',5,'KT3rdCoast','https://lh3.googleusercontent.com/-rbhkSIR5Mfs/AAAAAAAAAAI/AAAAAAAAAAA/tSpVM4dt3KU/c-rp-mo-br100/photo.jpg','12541597562633926366',10376),('AIe9_BGIy_plKfaZrItPyyQZNLvsk72VJNktbsmn5h_d0NCuZ1q6IICAWNTegcOCDtlWn8390oGiMi--yLYPtdICa9G6pCOS9Qh5DaCZNqonbGhDqDmYCKM','Excellent..... The Staff, Nurses, and Doctors are extremely polite, courteous, and professional. Very clean and updated, I highly recommend this place.','2019-12-20 18:00:53.582000','2019-12-20 18:00:53.582000',5,'Robert Smith','https://lh5.googleusercontent.com/-fHDO9cgADKs/AAAAAAAAAAI/AAAAAAAAAAA/E5Vc2wKzLAY/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',14478),('AIe9_BGIy_plKfaZrItPyyQZNLvsKgBgFS-7WYnt6FXDA-aX7GM6nO7iZElP7mASCvEk6dWwM-ck8c7Tsr0tiwBzXByqXPRQsN6id4iN9Tu7AmAZkmmYUco','I went into Signature Care because I was really worried. I wasn\'t too sure what was going on with my body and needed to get checked ASAP. Everyone was so nice to me at the front desk, they took me back for my vitals, and so forth. I waited no more than 15 mins to see the doctor. The DR. was very nice and respectful. I would recommend this location to everyone. I will never step foot into another ER again. No wait, fast service! What more could you ask for with an ER Center!','2017-01-24 18:10:42.324000','2017-01-24 18:10:42.324000',5,'Susan Garcia','https://lh5.googleusercontent.com/-YyZQGg5WzfU/AAAAAAAAAAI/AAAAAAAAAAA/FkfXKkNIJLA/c-rp-mo-br100/photo.jpg','14567670160750071148',1908),('AIe9_BGIy_plKfaZrItPyyQZNLvsKgvpF6GTwYW1FTlyV3_TzEwNO76oSkRgii0kLARygKV08dQFcCIzm6H5hugYHiInHwE8BRPcp_j_mT2k4K-VN8LLFoU','I was made to feel mportant and like my concerns mattered. Dr. Hall, Lynn and Courtney were all very accommodating, professional and thorough.','2019-12-27 19:54:21.103000','2019-12-27 19:54:21.103000',5,'MJ Elakoum','https://lh4.googleusercontent.com/-pN50z-NapAI/AAAAAAAAAAI/AAAAAAAAAAA/XYWe7aVfgyU/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5321),('AIe9_BGIy_plKfaZrItPyyQZNLvskHxT5hwStps6CbFt9zdwH63cEaBawaOkyQwUL9AeaLMP1SDlyfdAxV8Q8RQFY2xcoC5hip_Gp5z-Dj1Pmrc7R8BeQ3A','Staff is super nice and very helpful!','2020-01-13 16:07:10.202000','2020-01-13 16:07:10.202000',5,'Brianna Stanzione','https://lh5.googleusercontent.com/-nuDz5tR0XuQ/AAAAAAAAAAI/AAAAAAAAAAA/yJJMs5NAinU/c-rp-mo-br100/photo.jpg','16590124370714063921',9760),('AIe9_BGIy_plKfaZrItPyyQZNLvsKNIvNj7qf5Wyltolu6SXf8pS9hVcdHDpG028H7LxpBsi8cmh0SKI0vzM_sS4Yl0CVjcEhVAhE3BlNVieIhDj3GvSUtE',NULL,'2018-05-12 17:21:57.584000','2018-05-12 17:21:57.584000',5,'bobby palomares','https://lh5.googleusercontent.com/-KDXexL5RwQc/AAAAAAAAAAI/AAAAAAAAAAA/WtYkJopimWk/c-rp-mo-br100/photo.jpg','6521947413723274945',8340),('AIe9_BGIy_plKfaZrItPyyQZNLvsKPY2iVwuoZy62NtSU2qoW0sIm_B11YV40-7xTa79pE15lDkprlbhNE9BfpmvIHLA0xzbkI8Tq5Wl00FMCV9KjvXyLjM','Great customer service and very fast service. Everybody was friendly and helpful. From the moment I walked in Carly was very welcoming. Irving and Sherwin gave me all the information I needed for my concerns. Would definitely recommend.','2020-02-26 04:07:52.868000','2020-02-26 04:07:52.868000',5,'Chasity Johnson','https://lh6.googleusercontent.com/-_vFB0AppPaw/AAAAAAAAAAI/AAAAAAAAAAA/6SBml2d6k3E/c-rp-mo-br100/photo.jpg','14904078213800803294',20988),('AIe9_BGIy_plKfaZrItPyyQZNLvsKur2fcCWbx3Ns365K5L6Ie_AmcSR_ltdq6tcPtFO467CRNcsfkssZeMh_o6zQQE7bdnnnBY__frtYlp_gWNzGTNB0IA','2 weeks ago, I visited Signature Emergency Center for what I thought was an allergic reaction. The staff immediately diagnosed the problem. During my confusion, they sprung into action and saved my life. Thank you .','2018-11-04 14:32:34.998000','2018-11-04 14:32:34.998000',5,'Donna Section','https://lh4.googleusercontent.com/-EiEAo1St3_w/AAAAAAAAAAI/AAAAAAAAAAA/0llstsxgwPE/c-rp-mo-br100/photo.jpg','17394740196501090048',4768),('AIe9_BGIy_plKfaZrItPyyQZNLvsKW5I-Z89i7W8DEJpQAAOfhsaRhHHcpvGuDNzB3hvwOT7jllD1itJTeqLIg8IDnG_lTEsLdr_TdRuRJHZPqMIs0F1tQ4','This place was absolutely amazing ! I just love how fast they are and how courteous and kind they are to their patients !!','2019-12-10 03:30:51.901000','2019-12-10 03:30:51.901000',5,'REINAH THOMAS','https://lh5.googleusercontent.com/-lt1w_fAvgDU/AAAAAAAAAAI/AAAAAAAAAAA/Ap_3gX1BWUs/c-rp-mo-br100/photo.jpg','2694018788013845459',5994),('AIe9_BGIy_plKfaZrItPyyQZNLvsKwys2WcUn9EWTwVMm-wCBWhFlWcQmnkqSbdaoJ5jmYjssR_VanZJMPXrzPOAe0afh2NR5DIh-lZeTs0jpyTlkH_mE5A','I\'ve never had this much attention and care from ANY hospital before. They were on point with treating my pain and follow up care. I want to say a big thank you to Dr. Vaagenes, Nurse Rachel/John, The Radiology Tech; Richard and Dee at the front desk for treating me like the most import person in that room. I won\'t go to another emergency room that\'s not Signature care.','2018-01-30 20:07:24.978000','2018-01-30 20:07:24.978000',5,'Janie','https://lh6.googleusercontent.com/-maB2rxIIqHA/AAAAAAAAAAI/AAAAAAAAAAA/34aXULsaZnk/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1667),('AIe9_BGIy_plKfaZrItPyyQZNLvsKyTadW9cS2LnbnF4xwN1c64TsZYHKoAD5CuSJqjOZr_nporu8Q3jvo_rzf_xyRGxECQVD9_UZnkRXzkf06MP4NUn6PI','Very professional and experienced staff. Never had to wait for a long period of time, always expedited service with a great staff!','2020-03-03 21:02:07.060000','2020-03-03 21:02:07.060000',5,'Frankisha Martinez','https://lh3.googleusercontent.com/-eenQ9JB7Ipo/AAAAAAAAAAI/AAAAAAAAAAA/h8_bZMYuj-M/c-rp-mo-br100/photo.jpg','2694018788013845459',21121),('AIe9_BGIy_plKfaZrItPyyQZNLvsl_CZ5RUMN27Xq2zwHMPPRTcOEcz42Ha6uFqZEkHxrhF_Y_x3e5XOGGQ1LZETYpH4CnDOGmJOry-C1Kr8PZqt6ALVdj4','Everyone was very nice, it was a fast experience, and Kendra at the front desk was very helpful.','2019-11-03 22:10:09.005000','2019-11-03 22:10:09.005000',5,'Emma Williams','https://lh6.googleusercontent.com/-s1mm1qE60B8/AAAAAAAAAAI/AAAAAAAAAAA/LGxUAy2eCwQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3104),('AIe9_BGIy_plKfaZrItPyyQZNLvsl2c78tlONnHmgDotJ-uxgWKpczX5eHgnjoZaCLYnweQyTUs37e7CgW1DHMElHdjFYZXy7Lq66uoAYDeeIBHmbELmMRw','Staff was extremely helpful and had a very quick weight time.','2017-03-29 15:43:07.569000','2017-03-29 15:43:07.569000',5,'John Norman','https://lh6.googleusercontent.com/-zKUXI-po468/AAAAAAAAAAI/AAAAAAAAAAA/VwmNZEecSJM/c-rp-mo-br100/photo.jpg','16590124370714063921',4018),('AIe9_BGIy_plKfaZrItPyyQZNLvsl5eN2quus-_g2rTIq7myhWYgvUgLEZwl2N4YRd8rRdZ11TChIElxWqKIzC4jfyMWxlV48M5TU7jNmlk_lzjFD14ub_M','I had a great experience. The staff was very good and I did not have to wait more than 5 minutes to be helped.','2019-04-23 04:05:43.611000','2019-04-23 04:05:43.611000',5,'Emily Mills','https://lh4.googleusercontent.com/-x8ZM_HQqaLU/AAAAAAAAAAI/AAAAAAAAAAA/bxbgh4mB4fA/c-rp-mo-br100/photo.jpg','16590124370714063921',3415),('AIe9_BGIy_plKfaZrItPyyQZNLvsLc8Mxe1ZIq2aOUznvqvkk8YWCzBvOREhdTxZJdmClI2edM-ASifz-pfR8c5TtI-Kb0gK2K-rLlhi_f3mMdoSVsQGQqA','The best ER experience I have ever had! Everyone was so eager to help me get comfortable. The doctor was very prompt in seeing me and addressing my concern. This is now my go to place when my family doc is closed!! The cleanest facility I’ve been in, and I was see so quickly ! Thanks everyone!','2018-01-07 17:51:45.821000','2018-01-07 17:51:45.821000',5,'Jennifer Johnson','https://lh3.googleusercontent.com/-NPjriumI_4U/AAAAAAAAAAI/AAAAAAAAAAA/es-wV5DnPpo/c-rp-mo-br100/photo.jpg','3511292162159714121',7738),('AIe9_BGIy_plKfaZrItPyyQZNLvsLe9-5PVaOcbDKJWDh9U0bEMRJRKyF6L2L3ytPvIyj4AbjFNvtDb5rAbyw6nW8XMHx_CKn6qVMrn8SS9ywGwHxVRG2Ls','The staff was friendly and kind. I am so pleased with the service that was given to my sister at her time of need. I will recommend this facility to anyone. The physician farooqi, nurse konya, radiology Thai, registration Natasha/Elie. Thank you all for your assistant great team.','2019-08-30 13:43:17.982000','2019-08-30 13:43:17.982000',5,'Neena Barkley','https://lh5.googleusercontent.com/-QQ9CEMqT428/AAAAAAAAAAI/AAAAAAAAAAA/2ZD_Fb3VL1M/c-rp-mo-br100/photo.jpg','2694018788013845459',6077),('AIe9_BGIy_plKfaZrItPyyQZNLvsLh21Y-9_b0fC67L7SnhJAe4Kp3s8nhcmKY5zyhWDJgcEk8G7X7vtteE4rtN2BKu77w--ilVXobrSWl-56BHRFkWorh8','Dr. Daniels, Maureen, Amy, Dion. Great service','2019-07-07 05:12:28.154000','2019-07-07 05:12:28.154000',5,'Matthew Jordan','https://lh6.googleusercontent.com/-oBwYR3TnK_c/AAAAAAAAAAI/AAAAAAAAAAA/eF-_Q5N30YQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7268),('AIe9_BGIy_plKfaZrItPyyQZNLvsLWhvJx2iGExKvsivqvwU71H30NoMh6oBQBV6JIrD3F9kRCv0TkovnFE9sQtOp4rM5omzpW7q36IGrwl54cOyzTt1BXA','My baby came in with a virus. Dr. Chukwu was very helpful and treated his nausea. Nurse Alvean was very nice. There was no wait time. Receptionist Jocelyn expedited everything. Definitely a better alternative to a hospital ER. Overall had a good experience...','2019-06-05 18:18:14.450000','2019-06-05 18:18:14.450000',5,'Johana Isaza Benavidez','https://lh5.googleusercontent.com/-y_WFzMAZwc8/AAAAAAAAAAI/AAAAAAAAAAA/MvxLgKftkdE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvsM-4yDjeTZu3Dk61RL_ROslCcNnOC3lJmBrmEwe-j8AMYajRX87u1eRU7IWSrQxz0A_MwYv8g_aWV18u7_DxDlisMoMI','Went there recently for a dislocated finger. Dr. Souman was able to pop it back in place like a pro! Quick and professional service. No wait, no crazy co-pay. Highly recommend for your emergency needs! Thanks for all of your help, Dion, Elizabeth, and Melissa!','2020-02-20 04:15:56.879000','2020-02-20 04:15:56.879000',5,'Karen Dao','https://lh6.googleusercontent.com/-CYH9dF-46mg/AAAAAAAAAAI/AAAAAAAAAAA/qhSW82VqrrM/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',14406),('AIe9_BGIy_plKfaZrItPyyQZNLvsmCL9EKpF-V1ZjJRBydDhBE2JSADmMuDF7bCsv4Nh-CWZXv-Ymf4W4cBHtsEwFelVVm3TR46_Q8lKSuid27CMcGKXt-Q','I called to see how the process goes and Leslie was very helpful and accommodating with the information getting assistance. Dr. Yusuf and Nurse Laura was amazing. Thanks for the help.','2019-01-30 22:07:59.082000','2019-01-30 22:07:59.082000',5,'Louise Wilson','https://lh5.googleusercontent.com/-Oz2pgq9-boI/AAAAAAAAAAI/AAAAAAAAAAA/NHe1lRZXZnk/c-rp-mo-br100/photo.jpg','3511292162159714121',7429),('AIe9_BGIy_plKfaZrItPyyQZNLvsMcpQMOv3Hi01OjL2nRENAX_FcqUMbiQCBC96d63OvAbad6UN0R2ltv0bErUx5QrNA244p7QwcQbMGbPlPOCxloqH1_s','I went in for flu or cedar fever the other day. Staff is super helpful, very clean environment up-to date. They offer warm blankets. You know that if they don\'t offer you warm blanket someone is going to get fired:) \n\nDr Elsbecker was really nice explained everything step by step did his treatment and worked like a magic. Nurse Christina is a sweet heart. Very gentle hands. I didnt even feel that she put in IV','2020-01-02 15:54:15.370000','2020-01-02 15:54:15.370000',5,'Mahmud Ugur','https://lh6.googleusercontent.com/-wf_QGGr_RSI/AAAAAAAAAAI/AAAAAAAAAAA/_awtJhq6cec/c-rp-mo-br100/photo.jpg','16891069708558046635',4098),('AIe9_BGIy_plKfaZrItPyyQZNLvsMgOv3YgQ5cdypD40z_NBPx1ruasUH00P7o2FclfrbHtc976vlCAT0F_k_UatCn5yEthuVxn3w0xo9ukQbWQPow-iGVU','Great visit from start to finish. Attentive and caring staff, the knowledgeable doctor with wonderful bedside manners. Wish no one has an emergency, but if you do, you will be treated with resort experience here','2018-08-15 15:16:52.648000','2018-08-15 15:16:52.648000',5,'Lyudmyla Krylova','https://lh4.googleusercontent.com/-b_1nWUXqSmU/AAAAAAAAAAI/AAAAAAAAAAA/Erdn5U7AxhQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4451),('AIe9_BGIy_plKfaZrItPyyQZNLvsmH_aJtJJYPSZgtzdrukOMRTCeOwHb-RcPEsG11-wz0SyPwvqoBv2uvZBrx4AOXWFgQj1KDsnHpcePZZRjspoUHrw01k','Fast and affordable care from dr.wang, Dana h tricia b Patricia c and jordan n','2019-11-15 15:25:37.339000','2019-11-15 15:25:37.339000',5,'Destiny Anne','https://lh3.googleusercontent.com/-0i2prKgbo50/AAAAAAAAAAI/AAAAAAAAAAA/yXa9kzx4SWk/c-rp-mo-br100/photo.jpg','16389487648212004696',2694),('AIe9_BGIy_plKfaZrItPyyQZNLvsmhwP6CnJs2LJwVh6RlK13B_9_sh2Icf8Ld1O7KS171yK2OvLeYGMnKc3agEwWiOvDCfPYBJ-2p5YFExvkEEmt-w2m3Y','Dr.M Dang,Irving,Tino,Hayleigh was great and helpful','2020-03-09 08:44:04.824000','2020-03-09 08:44:04.824000',5,'Ercan karaalioğlu','https://lh3.googleusercontent.com/-T-HbA4prnfc/AAAAAAAAAAI/AAAAAAAAAAA/-ihPoqlH-NM/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',20916),('AIe9_BGIy_plKfaZrItPyyQZNLvsmodNVqp-zMn9pouLogQ1JcLBtPq2FqNj0xGzn_qdIS8cHialQp2utF0322i3B9_nALcnpAeFWUk79IXqZI34AgVT4Pw',NULL,'2019-02-20 03:38:29.942000','2019-02-20 03:38:29.942000',5,'Mr. Made Man Parlour','https://lh4.googleusercontent.com/-01wBAyeSeME/AAAAAAAAAAI/AAAAAAAAAAA/XLTSFL1NjwA/c-rp-mo-br100/photo.jpg','13486358490203335051',1066),('AIe9_BGIy_plKfaZrItPyyQZNLvsmRKJrQO0uHU2h5jPVgHruVC-NRcuGHrVTIf7tg60ZiiXZJ8ozG-01lYm4JaHORLIavZ3-pHvhT9NIp3SJ2ISi6i4NAc','Wonderful staff, great service and overall just a great place to go to! 10/10 would recommend','2018-09-28 20:04:58.184000','2018-09-28 20:04:58.184000',5,'Ashley Benitez','https://lh3.googleusercontent.com/-ZimIU8fObZc/AAAAAAAAAAI/AAAAAAAAAAA/WEPzPZsjQ3A/c-rp-mo-br100/photo.jpg','16891069708558046635',4425),('AIe9_BGIy_plKfaZrItPyyQZNLvsMrOow_YvEOwIFZD8_T5ACCU30nMbbsA08xbpWq5a4YyaWT7LugORmswXg3xemgoZ69jKx1uESAXTixyk5Rt99U13V7g',NULL,'2020-02-27 18:08:45.645000','2020-02-27 18:08:45.645000',5,'Frank Garza','https://lh4.googleusercontent.com/-LguCJZxhYGo/AAAAAAAAAAI/AAAAAAAAAAA/vUZGZmUq128/c-rp-mo-br100/photo.jpg','16590124370714063921',13822),('AIe9_BGIy_plKfaZrItPyyQZNLvsmywJ8KEy88w82ETOSdZjnnmgNhdPL9I0SQijY51Xtotw7aoGmZp_PfKSlADcMgFc9TPzm3eBsVW0XXI29fXPS-V7mXE','Yesterday I went to emergency center. I\'m pregnant too. I was really scared something wrong with my child and me. All the pain I was going through on my stomach. My boyfriend and my friend was freaking out. The pain would stop. Not even two seconds I was there. Call me to back. Nurse was kind and friendly helpful asking me if I\'m ok. Solve a problem . The two doctors I had super nice. Mrs. Edwards taught me life lessons. But she solve the problem for me. Over pain I had. My health more important than job. I would come back again anything happen. Great people and worker. They are place to go.','2017-12-09 01:59:58.004000','2017-12-09 01:59:58.004000',5,'Tytiana Jones','https://lh4.googleusercontent.com/-Fh758idKbLA/AAAAAAAAAAI/AAAAAAAAAAA/0PEUiF0OdOk/c-rp-mo-br100/photo.jpg','17394740196501090048',4917),('AIe9_BGIy_plKfaZrItPyyQZNLvsne4vkrkZpqmGGR_YstTRvvO7kcZGnHuslBpf2sTAFiNJxA29IP3oo-hJdJmFddvg3zD4Cm0skYcOTprdqbJYxIujtWQ','From the moment I walked in the door the place was clean and the front desk personnel was very professional. I came in with with SVT and Dr. Jaber didn\'t waste any time going into action. I am so grateful to my nurses Maynard, Laura and Lynn. I am also grateful for for the X ray Tech I think her name is Lily and the young man who drew my blood. I was treated very very well by this wonderful team. This was my first time going to Signature Care Emergency Center and if I ever get in a jam again I won\'t hesitate. The place was very very clean to be a Stand alone ER. I can say during my visit I felt I was in good hands and everyone was wonderful. I want to say a sincere \"THANK YOU\" to everyone involved who saved my life on that day. You guys are the best and you all took very good care of me and for that I am grateful. I forgot the young lady name that was the receptionist but when my parents and my daughter came to check on me they told me she greeted them with a smile and that means a lot when people are greeted that way. Thank you as well for being professional as well. I can\'t say enough good things about Signature Care and it\'s staff. May God Bless you all.','2020-03-15 13:18:12.308000','2020-03-15 13:18:12.308000',5,'Laquona Anderson','https://lh3.googleusercontent.com/a-/AOh14Ggs4ZlNCNOAUa4zYe7eqVcLblpw8X8MYCu9sJeEYHE=c0x00000000-cc-rp','17898197009688164559',21089),('AIe9_BGIy_plKfaZrItPyyQZNLvsnWN3-gxV9mvwfou0q3LSxYjYaTqXJroE4eAXvUKRGT3tOWcA8AtGHvENfwMwKqZchCBhOz__TXuKJw8JRgS6mW77epI','From beginning to end very awesome very kind !! My nurse Valentine super sweet and gentle and my RAD.Tech Hoan lol funny and cute 😂 he came in saying\" here for a brain swap\" lmao had me almost running and he said its not that bad just goes on one side of ur nose and out the other 😱😂 amazing and honestly he was very gentle as well and it did not hurt at all .','2020-08-05 19:04:59.290000','2020-08-05 19:04:59.290000',5,'Diana Montalvo','https://lh3.googleusercontent.com/a-/AOh14GiutKUXGL_-6ZyztLNSmyF8zO-cEgUNvd0c1148=c0x00000000-cc-rp','14904078213800803294',21924),('AIe9_BGIy_plKfaZrItPyyQZNLvsnz2oszxxXIOryseaVGCt8jAMh4ZWeLlaFIe_crz6rhK25WV-J-uOyyM8-499c2Ur-MiSUE4XMI8Lr7NhGzH0T7KPKg4','Great and honest service provided by Amy, Langit (RN), & Dr Dendy. They processed me quickly through check-in, throughly assessed of symptoms + history, and resolved my issue efficiently.','2019-04-23 02:48:08.411000','2019-04-23 02:48:08.411000',5,'Emily Broussard','https://lh6.googleusercontent.com/-S70oYpSl0oQ/AAAAAAAAAAI/AAAAAAAAAAA/EJxXCGBKCXI/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7354),('AIe9_BGIy_plKfaZrItPyyQZNLvsNzxGgJ9H23ndWp8GbLnNdoH3qXw7R0HBucJ9-rHx8s9OksSsMNdZPDnJFlLz-aL7MCXgr8U8j_8Dp-DMQ3ApUX4Czws','Very nice staff, and very efficient service!','2019-11-13 18:28:08.219000','2019-11-13 18:28:08.219000',5,'Jessica Slockett','https://lh3.googleusercontent.com/-NZQT_QpPwpw/AAAAAAAAAAI/AAAAAAAAAAA/lBj3IJw91Gg/c-rp-mo-br100/photo.jpg','16891069708558046635',4153),('AIe9_BGIy_plKfaZrItPyyQZNLvsO5hEtlKpg1TnurY1w1u-xZPF_Lv7zHXvJA0h4-eyOhg35-wij7FQVPU06m7AVpxoqc5Bg_C7d2NlSxApjkJxih9apvA','Have a very pleasant experience at Signature Care. Dr. Nweze along with Alvean, Tricia and Jocelyn were attentive and caring. Facilities were very nice.','2019-10-16 16:55:35.810000','2019-10-16 16:55:35.810000',5,'Rick Gatewood','https://lh4.googleusercontent.com/-WBJbA-qVJC0/AAAAAAAAAAI/AAAAAAAAAAA/_gnt2qymSpI/c-rp-mo-br100/photo.jpg','16389487648212004696',2815),('AIe9_BGIy_plKfaZrItPyyQZNLvsOa_GZhq7-qMLdKgkiO5-OXzv_3X_UbenwbBCcbTDAdd2pVB5OUBhwq4aRNUp4HUmtRSSq85pId0lbZQ-1Odt68R6dkQ','This is a new facility which no only appears modern but also clean and roomy. The most important part is their friendly staff is able to verify our insurance , get us in and out of the place quickly without much delay.','2017-12-16 18:01:57.135000','2017-12-16 18:01:57.135000',5,'S Wong','https://lh6.googleusercontent.com/-Ud9V-DTP6Do/AAAAAAAAAAI/AAAAAAAAAAA/GqgV8nlYr18/c-rp-mo-br100/photo.jpg','14567670160750071148',1713),('AIe9_BGIy_plKfaZrItPyyQZNLvsoDV0vqEZ9GNsh3FFXez-IwCf_XxqrsWqjEl37hTe5xTl5qCACxlUo1Yxp8W9Wf8p8ZsCgG5sD-Ee3YXxgK4814o5pVI','I tried to fill out the review through the link they emailed me but for some reason it wont submit and the site just says \"Internal server error\" so I will post my review here.\nI am giving a \"bad experience\" review only because the website where I set my appointment was very misleading. My appointment stated \"drive thru\" which made me think that I did not have to leave my car to receive testing. I specifically chose the \"drive thru\" option to minimize potential exposure for not only myself but as well as my elderly grandmother who is most at risk. I, along with another patient who I overheard inside the facility, were confused and thought we could get tested in the safety of our vehicles. I think this should be clarified in a visible area on the website to avoid this confusion in the future. On the other hand, this is more of a suggestion-- It would be greatly appreciated for the safety of patients that must wait inside if the seats were routinely cleaned in the waiting area. \nOther than that, the staff members that performed the test and gave out the results were very kind. Thank you again.','2020-07-12 18:16:11.366000','2020-07-12 18:16:11.366000',3,'Casara Han','https://lh6.googleusercontent.com/-7Hu0AiZ8O_o/AAAAAAAAAAI/AAAAAAAAAAA/U_-vG7dsnd0/c-rp-mo-br100/photo.jpg','8918455867446117794',22926),('AIe9_BGIy_plKfaZrItPyyQZNLvsOF4XyJ-GaI_syb0fJwsT-x3pkMUAwz0Y9vWi7WlTXWEwPHQ0dmij0uSPTNlRM5rOb3C2oTFKmdH8jLYyPZh858yp9lg','Great service wonderful treatment!','2019-11-14 22:09:11.376000','2019-11-14 22:09:11.376000',5,'hailey fox','https://lh3.googleusercontent.com/-PQN5pKMg11Q/AAAAAAAAAAI/AAAAAAAAAAA/kVYsO2yWLDI/c-rp-mo-br100/photo.jpg','3511292162159714121',7145),('AIe9_BGIy_plKfaZrItPyyQZNLvsOiehfKMMoha5x8Gkwtl-xjBTX_OwOddS4ChZ527GEEwiImUlzKn1y9_7gRg5XmT9VrUFXhhQjHWJXZzhPUcrin1c1bk','Everybody was very nice and friendly.','2019-11-20 09:16:10.929000','2019-11-20 09:16:10.929000',5,'B Mackey','https://lh3.googleusercontent.com/-AF6G9D8Oeec/AAAAAAAAAAI/AAAAAAAAAAA/dfu2ePhrzU4/c-rp-mo-br100/photo.jpg','17898197009688164559',5412),('AIe9_BGIy_plKfaZrItPyyQZNLvsoJu-v3LVLesZO8OGqmd3LUduD7gCemkeh1XcxXzO3uIYOnPeN5bgbJGNo4gx77o0al73mRwmiUg7ipBVzSazamHm93Q','Signature care is great! I’ve been here before and I have to say the staff is amazing. They’re funny & caring. Anthony was the nurse & Harjai as the doctor & they were both friendly which made a scary situation much more enjoyable. Definitely recommend this place for emergency care!','2020-01-31 16:51:19.297000','2020-01-31 16:51:19.297000',5,'Elizabeth Grant','https://lh3.googleusercontent.com/-qE_VqjdEASI/AAAAAAAAAAI/AAAAAAAAAAA/eT1ezJGOpkM/c-rp-mo-br100/photo.jpg','16590124370714063921',3508),('AIe9_BGIy_plKfaZrItPyyQZNLvsoqHi1ZZIFZrGK8p9gjvIxr5bsjhg8W-xT_sa_Dvl379W5UBTJriyroB1Kd36H2_P7Ehn27j3SUWYMLELkYSYcICTZWE','The staff are all very professional and caring. I was greeted by Robin Bratcher as soon as I entered the ER and she was compassionate and made me feel very welcome. As I was leaving, she expressed her concern and hopes of my improvement. The doctors and nurses were prompt with my care. It was an excellent experience.','2019-02-20 00:16:29.390000','2019-02-20 00:16:29.390000',5,'Tara G','https://lh3.googleusercontent.com/-9sHUGLI4GTY/AAAAAAAAAAI/AAAAAAAAAAA/X5CdD6aAaMk/c-rp-mo-br100/photo.jpg','8626688543755174284',8550),('AIe9_BGIy_plKfaZrItPyyQZNLvsOx1-YSolot7kTFz_FCPEa3HuKVHOefOR7fWd-sJjrOW7fgGSJTgfhc-nLtoykz3TTs92H_iWNtoF7XRLC4RJSz_dJAE','I am very grateful for the staff here, because they really took care of my Mother. I brought my mom in because she was having pains around the diaphragm and gallbladder area when she would breath in and out. She has Medicaid unfortunately this place does not accept Medicaid, that is the only reason I gave this place 4 stars. It would be nice if they accept all types of financial aid or insurances. So my Mother would be responsible for a bill with no discount no bueno.\nThere was no wait they accepted her immediately, and they started working on her. They took her temperature and she had a very high fever so they immediately started giving her antibiotics through her IV. The Doctor came in to find out what was going on, and after hearing the complaints he was very professional and he told my Mother all that they need to do to find out what was causing her pain when she breaths. He gave his opinion on what he think it is, it could be her gall bladder or pneumonia. He ordered to do an X-ray on her chest, blood work, an ultra sound on her gall bladder and lung area, and to finish the antibiotics along with morphine for the pain. After doing all what needed to be done and while we were waiting for the results there was the convenience of being able to watch television with cable. Everything went by smooth and professional, after two hours of waiting for the results the Doctor came in and diagnosed her with Pneumonia. He said by prescribing her with more antibiotics in two weeks she should be okay. By the time we left she no longer had a fever. \nLike they could not take her Medicaid she had to pay the Bill in full, and I can tell you this that for all that they did on her I was expecting for her bill to be much more. Thank goodness it was not that much. \nThis place is great, it is close and convenient and I give this place two thumbs up.','2015-05-18 19:29:45.553000','2015-05-18 19:29:45.553000',4,'Carola Molina','https://lh5.googleusercontent.com/-Ckb6MB8_m4A/AAAAAAAAAAI/AAAAAAAAAAA/wS_cJ83Ft7I/c-rp-mo-br100/photo.jpg','17394740196501090048',5298),('AIe9_BGIy_plKfaZrItPyyQZNLvsOxUummehhWd7hXsTImU9jKfcnGNPUk7j0p9I-jD9_8_RUJEnuuXATh-1uQvvNCSTBTzbzNpb9xHl-rPzR6khuJTt9BU','My experience there was excellent. The staff was very welcoming and very attentive. They checked on you often and made sure you had what you needed or what you wanted. The stay over night was excellent.','2020-05-27 02:57:37.323000','2020-05-27 02:57:37.323000',4,'Vickie Burrell','https://lh4.googleusercontent.com/-XBJ_QtzYako/AAAAAAAAAAI/AAAAAAAAAAA/7nMtF5gMxZw/c-rp-mo-br100/photo.jpg','16389487648212004696',22581),('AIe9_BGIy_plKfaZrItPyyQZNLvsozu6hEIMb3DabBJuRhoopTHg7SwplO3F74ffdoPsyLScSt82ZtJwJJHvUriet2QmBLCSrhNqE4r6cEj6iDIQUbYbPU4','From the moment I walked in I was provided with immediate assistance and consistent follow up. Staff was extremely attentive, knowledgeable and kind. I truly appreciate the care received and would recommend this facility to anyone. No wait time. Clean, fully equipped facility. I was beyond impressed and even more appreciative of the wonderful bedside manner of all staff. Thank you Signature Care❤️','2017-04-28 06:45:06.335000','2017-04-28 06:45:06.335000',5,'Heather Broussard','https://lh6.googleusercontent.com/-aFVF5Ha-3SU/AAAAAAAAAAI/AAAAAAAAAAA/AVC2PTJjfxE/c-rp-mo-br100/photo.jpg','3511292162159714121',7828),('AIe9_BGIy_plKfaZrItPyyQZNLvsP1YgMIOi2yXUAEleb8eooz-ThJO7jiy4Unvp4AgGAIKtCatGlrUnQ_b1E1mV3vEgXJgIY2phI4oaVzj9QsG8XVP1voo','The testing itself didn\'t take long and we had results within 30 min. The girl up front was very nice and friendly even when the line got backed up and people were being rude and ugly to her. The line to get to your appointment was way behind due to emergencies coming in but its not the front desks fault.','2020-06-25 20:05:08.854000','2020-06-25 20:05:08.854000',5,'Caitlin Marie','https://lh6.googleusercontent.com/-sPXdGp2ADLg/AAAAAAAAAAI/AAAAAAAAAAA/Fut4Hp2O-1U/c-rp-mo-br100/photo.jpg','2077061009497551125',21269),('AIe9_BGIy_plKfaZrItPyyQZNLvsP5i0WxMBEcoFF61_C6nF7GD1p6Qhp4fwnH91f22DSS7IfeWhOc7R81C9fcuintxRpeQOruhqL97mzrKso2gYQd86eHo','It was excellent service and very fast, they treated me very kindly so a big shoutout to Nancy, Marcus, Randi, Theresa and Dr. miller :) overall great people and very helpful','2019-07-25 01:21:33.623000','2019-07-25 01:21:33.623000',5,'Edgar Luna','https://lh4.googleusercontent.com/-sOH7nGdfc7U/AAAAAAAAAAI/AAAAAAAAAAA/IPvg-StT1Wo/c-rp-mo-br100/photo.jpg','6521947413723274945',8181),('AIe9_BGIy_plKfaZrItPyyQZNLvsP7UwR9j_nQTC_IzqWWkqo2He4Ot8DMdC207C_aEuWy6KguOL1PFbV9V1-Zs1_D_WFF6KPYeGZiHPJKFzIQX20H6g_Rg','Rayven , Dyveliz was very Respectful and helpful','2020-02-12 05:14:02.496000','2020-02-12 05:14:02.496000',5,'Melrisha Harris','https://lh5.googleusercontent.com/-S79R9u3pEJQ/AAAAAAAAAAI/AAAAAAAAAAA/qd9Y5m18eCg/c-rp-mo-br100/photo.jpg','16590124370714063921',13862),('AIe9_BGIy_plKfaZrItPyyQZNLvspc6RqOkUcIOVuUxgJ3EjeosxyzAQ0ZC8qw5_nQD_fUVIV-b1UCDpS3P0tGHaNmdfW99wXWYBYVjdpqZZ8AdaUMor9II','I had a great experience! I did not have to wait long! Nurses were gentle and very helpful! Thank you Tatiana, Brandon W and Nicole G for being so nice and offering me water, snacks and a warm blanket! Thank you Dr. Pham for making me feel relax and taking your time to explain everything!','2020-02-09 02:24:55.429000','2020-02-09 02:24:55.429000',5,'Ksandra Massey','https://lh4.googleusercontent.com/-esPRsXdaQtM/AAAAAAAAAAI/AAAAAAAAAAA/wE6rlh-GWJQ/c-rp-mo-br100/photo.jpg','14567670160750071148',13543),('AIe9_BGIy_plKfaZrItPyyQZNLvsPE6EJB2Q8Lh7BbYmOHA0xdZC4TDVt5ndx5-x2QwKfmwVX5ZivcpcO25EWfX2dKbqD7lW5Ok_WyA00-1Xi1N69ro6D6g','This place is great! Staff are friendly and attentive.','2017-12-19 20:14:26.086000','2017-12-19 20:14:26.086000',4,'Dolores Dela Cruz','https://lh4.googleusercontent.com/-3yFQqhvoouY/AAAAAAAAAAI/AAAAAAAAAAA/4pOUin9qTdY/c-rp-mo-br100/photo.jpg','8918455867446117794',9321),('AIe9_BGIy_plKfaZrItPyyQZNLvsPfknjhogE9Yda1QvFdTJ-owRKWqdQjjl--YyDL5dXqNaM89eY_BaT1cRAJKeREQEqnmEPjdc7uCRdoNG5t2RDJXRIDw','I had an amazing experience here, Rebecca V. was an amazing receptionist and the facility is very nice.','2019-09-19 05:22:13.137000','2019-09-19 05:22:13.137000',5,'Erin Watson','https://lh5.googleusercontent.com/-KJGmJ3NGBaA/AAAAAAAAAAI/AAAAAAAAAAA/4BjD9VUfo5o/c-rp-mo-br100/photo.jpg','16590124370714063921',3197),('AIe9_BGIy_plKfaZrItPyyQZNLvspfodWm2-sMxvucVRJL3kVno5dyqUtEArEvDlu5XK4gFt-9dge94FVzDRuJ-ARHgeH4952pS1jZ86uVf1FDAZxTSVUaQ','Thank you for the swift service. Dr. Edwards, Carly, Sarra, Tino, Olivia were very hospitable!','2020-02-03 04:18:46.311000','2020-02-03 04:18:46.311000',5,'Dana Washington','https://lh4.googleusercontent.com/--c08680xp7w/AAAAAAAAAAI/AAAAAAAAAAA/NeyaCzucJvY/c-rp-mo-br100/photo.jpg','12541597562633926366',10370),('AIe9_BGIy_plKfaZrItPyyQZNLvspMExuJTdZgGN2_mqlb-_n-ZI5tWMZKOw4m3GjjhixafWNCC86JSzltS6jVz0NdKs3pWlv24ZldLDX7PN6EqtfFW6Up8','Alyssa P was very welcoming and delivered great customer service','2019-11-08 20:54:34.800000','2019-11-08 20:54:34.800000',5,'Mark Green','https://lh4.googleusercontent.com/-UqL-ReNX36I/AAAAAAAAAAI/AAAAAAAAAAA/Mfm3_4huhjI/c-rp-mo-br100/photo.jpg','8918455867446117794',9050),('AIe9_BGIy_plKfaZrItPyyQZNLvsPMLAprb0Tn5bZTuOKK3yq2x3nF8lSYbgsIgCdStPUZYA7Kq8UCE1H4388DR7vMfs-ZYfhmgpsHwrWEXHG4eB3kkv5wo','I was welcomed warmly by Genesis in reception and seen before I even had time to fill out my paperwork. Kristina RN and ER tech John took wonderful care of me and Dr. Spangler is the best. Thank you for a wonderful experience.','2019-11-25 17:54:49.181000','2019-11-25 17:54:49.181000',5,'Renee Wade','https://lh6.googleusercontent.com/-m34Xvd_QATE/AAAAAAAAAAI/AAAAAAAAAAA/AX0P4VFxt1I/c-rp-mo-br100/photo.jpg','12541597562633926366',370),('AIe9_BGIy_plKfaZrItPyyQZNLvspnW8cAcBL6LwVIkjcTRcZl_s_NYpqnVAHlHaNXy9BANWkahhUQzKI324QyJE6yC8AAknvM3nBIGW-hs1zOtmbkKt5Jc','Wonderful services from\nDr. Pham\nAlvean\nMarcus\nJocelyn A','2019-11-06 19:43:14.258000','2019-11-06 19:43:14.258000',5,'KIMBERLY PHILLIPS','https://lh5.googleusercontent.com/-5K-eQeFVgEQ/AAAAAAAAAAI/AAAAAAAAAAA/L-AXRTEk7iM/c-rp-mo-br100/photo.jpg','16389487648212004696',2726),('AIe9_BGIy_plKfaZrItPyyQZNLvsPPXOI1-4go_Gl-VH6iaioiT4V6tK3JTzkxgpQg1p_43e2YzP3aNG_ur3qqyFE-8vbYLdAIVqKuVdbGuHOreaZurYRMc','Very welcoming staff! Anthony and Natalie were so nice and respectful. They walked me through everything step by step. All of my questions were answered thoroughly by the doctor. I highly recommend coming here!','2018-08-22 20:47:47.799000','2018-08-22 20:47:47.799000',5,'Camryn Powell','https://lh3.googleusercontent.com/-Pzj4k_A4N_g/AAAAAAAAAAI/AAAAAAAAAAA/b3oW2hjzRV4/c-rp-mo-br100/photo.jpg','16590124370714063921',3771),('AIe9_BGIy_plKfaZrItPyyQZNLvspWLBa8s9qQpCfHdM2bKAgNvQakC8mKdg4nCO9yWWJ7-lUA-xnx3asCWg8oFBLd9xLb7MgOCPWSV-JxP9fDGSDnKfPhg','Great staff and experience but i found them from looking online for emergency dental which they do not do. So if you have an emergency dental problem go directly to a dentist. ','2016-05-16 05:43:47.933000','2016-05-16 05:43:47.933000',5,'John Taylor','https://lh4.googleusercontent.com/-Qqmswf0ccRc/AAAAAAAAAAI/AAAAAAAAAAA/ene2soUKTYs/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',8001),('AIe9_BGIy_plKfaZrItPyyQZNLvsPxlkJDgn3qBVTtkpNu-v15ZzbjIFmHhAu0oprU6ljvfPVUj8Bh9DMUuV3DbPInVf9lg9lHVcdvnUrVfddmrRzKCQY-g',NULL,'2019-09-07 08:14:26.215000','2019-09-07 08:14:26.215000',5,'Carrolynn Adcock','https://lh4.googleusercontent.com/-cZmqvvYwR20/AAAAAAAAAAI/AAAAAAAAAAA/9_O_wHEWuH4/c-rp-mo-br100/photo.jpg','3272657195432704501',6898),('AIe9_BGIy_plKfaZrItPyyQZNLvsq-5PA3_yYHPzP4Da0QQ350Scu8I7GZMAG-g0Lw4OncleRaS_cOhKyoAm2YJg9PVG4lWCwoOXKfd7qmwFPOBTyJdtFZA','Erica,Icelia, and Brian gave me first class treatment. An excellent experience. I was nervous receiving stiches but they made feel at ease. Thanks to all of you!','2020-03-11 13:27:38.205000','2020-03-11 13:27:38.205000',5,'Kenneth Washington','https://lh4.googleusercontent.com/-KdyAuFq2CKY/AAAAAAAAAAI/AAAAAAAAAAA/Ddp5_xRUroE/c-rp-mo-ba3-br100/photo.jpg','14748677429039074158',18844),('AIe9_BGIy_plKfaZrItPyyQZNLvsq8BASxrAwIJlPXyuQThkwoGRNAHm1fA3KGu7HfuJedkCaJEvc_R34_v4RAexu0OzyvNSecmRPbTt_liqMesFe-_PJ9A','Lot experience ,great service and the nurse team it\'s a very good','2019-10-12 18:35:36.617000','2019-10-12 18:35:36.617000',5,'Marco Rodriguez','https://lh3.googleusercontent.com/-zLzLM33tKEM/AAAAAAAAAAI/AAAAAAAAAAA/85q2M7eODtY/c-rp-mo-br100/photo.jpg','14567670160750071148',1219),('AIe9_BGIy_plKfaZrItPyyQZNLvsQ9xOLJtZ5m27q7TcDhCHTS7vs6UwnaOHX8340ECnyXjGxfp8yMbzhQGYo9EdmD4z6_bHTBeXutBub2BT6qhBTm3vicg','Signature care provided excellent service and friendly staff! Becca M was very helpful and got me in and out in no time. Highly recommend','2017-10-31 17:51:53.203000','2017-10-31 17:51:53.203000',5,'Ryan Schubert','https://lh3.googleusercontent.com/-CBwD5RHdD-Y/AAAAAAAAAAI/AAAAAAAAAAA/IP9qJ6AuTiY/c-rp-mo-br100/photo.jpg','16590124370714063921',3913),('AIe9_BGIy_plKfaZrItPyyQZNLvsqawTSGkLIsDHh0XpHz7Vfco7Ml6pkYAIhUVogarQmmCnM3FDXVq13H0HZMUWINXlMyOAC2DiEEqWL9MrXvGwQDD1miA','Everything was great and they are fast and very knowledgeable. Dr Henderson,kat,Joshua f, Melissa e. Thank you guys! This is the place to come if needed to go to the er.','2019-06-21 04:24:12.143000','2019-06-21 04:24:12.143000',5,'Natoya Ferguson','https://lh5.googleusercontent.com/-PKM8a2vA4GA/AAAAAAAAAAI/AAAAAAAAAAA/NcMxsTiolj4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvsqDK30YHsFj4XpzXR28jSFw-Gt4c0vlR5al5e_JlPHmimOqmAkIm8eMMTSKbTvGUrBXSj6Xr5E_1Ph0GWSPChZwoXtAs','Had an awesome experience at SignatureCare. I called ahead coming from a car accident and I was in the back in less than 10 minutes. The receptionist Rebecca and all the nurses and doctors were very friendly and helpful. I\'d definitely go back again.','2019-10-26 02:07:10.486000','2019-10-26 02:07:10.486000',5,'Kassie Escamilla','https://lh4.googleusercontent.com/-fIbSUidoa6E/AAAAAAAAAAI/AAAAAAAAAAA/LfSihu5f4z0/c-rp-mo-br100/photo.jpg','16590124370714063921',3122),('AIe9_BGIy_plKfaZrItPyyQZNLvsqgk9gC7S8Divm9-RUtjJBBJFuz2TGuDMgWA5g0kR6orU6O-j6n5AXC92OR8CsLHiJ_JCoLz0rY9EOJyngczUxqdxB-8','Keera was the receptionist and she was very helpful with getting me checked in and also the nurses doctors were also helpful. And the care was quick I would recommend coming here if you are near.','2019-06-04 14:01:10.053000','2019-06-04 14:01:10.053000',5,'Xavion Wilson','https://lh6.googleusercontent.com/-sMfslm2RQ_g/AAAAAAAAAAI/AAAAAAAAAAA/aG79Gn2TwUY/c-rp-mo-br100/photo.jpg','17394740196501090048',4674),('AIe9_BGIy_plKfaZrItPyyQZNLvsQHrCyVFM2WI7deNBNn4a1hrjXgsrgQt3n5NiJpp8lPgueadABq5iGjezWsvjgOmg08ckYOynmzaDRWAgsfCEDw1zJhE','Fast friendly','2016-05-29 09:06:49.632000','2016-05-29 09:06:49.632000',5,'Melissa Rouse','https://lh3.googleusercontent.com/-TWTA5IWD3RI/AAAAAAAAAAI/AAAAAAAAAAA/FnA3U8HIYQs/c-rp-mo-br100/photo.jpg','3511292162159714121',7995),('AIe9_BGIy_plKfaZrItPyyQZNLvsqnLnzzoTzkCy_ixHLgFH17qokvRVohMW6r9s_c5fG0piNJwEcLKrOrD4sBFfndJmeuRbT7PZxaFoCHZ03WZ80RMNLqc','Laura and Norma were absolutely the best, came in with fever and pain they set me up real quick ran labs immediately. Bed side manners are amazing, as well as Dr. Singla.','2019-01-15 15:30:07.935000','2019-01-15 15:30:07.935000',5,'Rosa Ortez','https://lh5.googleusercontent.com/-qZa-vcRXkHw/AAAAAAAAAAI/AAAAAAAAAAA/ewIk413fldQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7479),('AIe9_BGIy_plKfaZrItPyyQZNLvsqOnLpzOMMEBBHSbzzTf9Hpkjneop4mYlQGjuIc_kdk3x8LnKZeFPbE8on2YVS0ZCeEPt6Eh5BYu6RBuaDvhYFPp_yVw',NULL,'2020-02-05 21:38:17.789000','2020-02-05 21:38:17.789000',3,'Kaci Thomas','https://lh3.googleusercontent.com/-TikQFkr2Rvo/AAAAAAAAAAI/AAAAAAAAAAA/Q-sekHK_G5w/c-rp-mo-br100/photo.jpg','3272657195432704501',14369),('AIe9_BGIy_plKfaZrItPyyQZNLvsQrOqP2g9iAP6Zy-OFIIqIvY_dkrdWz9MR5Jcdfrz2thzcRJZXG_MyIcxXLLFv6kEyK_7cRAg_Y51pkXeOS81OLypjvU','Service was wonderful, fast, and friendly. Ashley, Jose, Andrew, Paige, and Dr Vaagenes took great care of us.','2019-09-15 02:11:42.250000','2019-09-15 02:11:42.250000',5,'K S','https://lh5.googleusercontent.com/-3_RBG1oGJiI/AAAAAAAAAAI/AAAAAAAAAAA/3Dr7PyEm6Gw/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',830),('AIe9_BGIy_plKfaZrItPyyQZNLvsqu4UbOux1A3acx8k8UDsYzGY1cZ1htOA5uxYmftp6QXoqy7YOYIcGxEVLa8tnzdYvl7VFBGzW4jt7kCXTvFGnuNGGAY','I Took my six-year-old son in to have his cast redone on his arm. We called and spoke to three separate staff members including the nurse and were told to bring him in and that they could re-cast his arm. They even quoted us a price of $175. When we got there after being treated rudely by the staff In the front We were taken back to see the doctor. The doctor informed us that they don’t even do casts. Staff obviously does not even know what services are provided here and treat you as if you were inconveniencing them by coming in there. The worst part is I was told by a family member not to even go there because of the experience they had when they went. I should’ve listen to my uncle and saved myself the time and hassle of dealing with this place. Do yourself a favor and forgo this place and just come to the hospital. That’s where you’re likely going to end up anyway so save yourself the time.','2020-05-18 17:30:48.059000','2020-05-18 17:30:48.059000',1,'william ray','https://lh4.googleusercontent.com/-BYp-1wTzisE/AAAAAAAAAAI/AAAAAAAAAAA/JSJS8csOxKA/c-rp-mo-br100/photo.jpg','6521947413723274945',22905),('AIe9_BGIy_plKfaZrItPyyQZNLvsQUIoULryFhq9Ocbk2tcBPcXLuiPwTXL0BqvE2800jWLd01kTCPqskU5rl5_apSOwRWe2LwzXHvjkbWXRRS-3X3rYmLw','My wife got really sick. They helped take care of her QUICKLY! Met us with a wheelchair because she was struggling to stand. Immediately hooked her up to the IV and treated us with the utmost respect! Our nurse, Christina, and technician, Andrew, were super kind and on the spot. Dr. Elsbecker was easy to talk to and answered every question we had. Adam, Linda, Christina C and LaBarbara were also very kind and helpful with our time at Signature. We highly recommend this ER to anyone!','2019-12-01 21:38:25.338000','2019-12-01 21:38:25.338000',5,'Bailey Watts','https://lh5.googleusercontent.com/-Pp5uuiFBzCw/AAAAAAAAAAI/AAAAAAAAAAA/byaWCzrG9rQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4134),('AIe9_BGIy_plKfaZrItPyyQZNLvsR77RD_9cAbCASQa27H2A8tYYk510HwNIWnWYobgvY3RlfQovlkm3DhBI2r7EUlTFZf-0hJqAXuhyK4iQpZ4fFwaPMZ0','They don’t answer to phone calls','2020-06-17 13:23:20.154000','2020-06-17 13:23:20.154000',1,'picho aguirre','https://lh6.googleusercontent.com/-iTnsT6qTXEs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmUUlQj_Odq9OWKjibn3RZAtZ0svA/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21080),('AIe9_BGIy_plKfaZrItPyyQZNLvsRcOVoyYAEBUO_ciO-f2EZN0o_KVClaZq_or7tvyipXcYyBks6Iko91JT1pU9wCxRwCL1a1yg-plHAYZhtBCkes9csrg','These people earned their 5 star review from me! Great service from the time I walked in to the time I walked out. Dr was very knowledgeable and friendly.','2020-03-07 04:02:02.914000','2020-03-07 04:02:02.914000',5,'Nic','https://lh5.googleusercontent.com/-71WeAb3QLpY/AAAAAAAAAAI/AAAAAAAAAAA/2oNRJrPvk4w/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',21159),('AIe9_BGIy_plKfaZrItPyyQZNLvsrDwG1OaJVVi4LqHs6lLKpAYVZEhPxwb7Bm7Cixw9r6n8AmH_qPi9dAnPyNvhTcJrUZIdEe7tavXvNjaQ1oN2CflZGQ4','Everyone was very knowledgeable and nice! From Cat who gives a smooth shot, Natalie and Drs Harjai and Vaagenes. Thank you again!','2019-01-27 00:01:34.675000','2019-01-27 00:01:34.675000',5,'Kenny Diserens','https://lh4.googleusercontent.com/-d5n3Mo_9eGM/AAAAAAAAAAI/AAAAAAAAAAA/Hv3fDMtC2cM/c-rp-mo-br100/photo.jpg','16590124370714063921',3569),('AIe9_BGIy_plKfaZrItPyyQZNLvsrgHwm4gw0TjDFubeVQdCk-71kZ3OpBJEVyhS3Nozxq86J3gA9kb9bf6T9VkfkbI95mFgnOC4UWtTkbaEWFL4U_001Gw',NULL,'2020-03-03 15:29:29.885000','2020-03-03 15:29:29.885000',5,'Kathy Beard','https://lh6.googleusercontent.com/-Hmw5DSCFRdU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclBr21dnMc7iL_x-8Ey0R_TyvfJjg/c0x00000000-cc-rp/photo.jpg','3272657195432704501',15323),('AIe9_BGIy_plKfaZrItPyyQZNLvsrMen7U53x1zNTi-qUTLG31fOVaWCu5XWS18e5UZ-mCAHU5g-C2KOtspygFLbaznU1N6god1nsVNKC2zJQisuFNx7_p0',NULL,'2020-03-10 17:30:37.768000','2020-03-10 17:30:37.768000',5,'Cailin Jamison','https://lh3.googleusercontent.com/a-/AOh14GglKaMfiHYg8SPwXLPi9FzE2XmaJ3aJQEgaScvr=c0x00000000-cc-rp','8626688543755174284',21186),('AIe9_BGIy_plKfaZrItPyyQZNLvsrPUdtj_XmSZNSLhap5aKviBPI_MejP0IAT9V4IshXLMmJCBoEKLbPxji6Vaipb7VEfJTzn7hR-Wp04uJNhEQAbKQaX8','Amazing people !!','2020-02-29 01:44:34.524000','2020-02-29 01:44:34.524000',5,'Ahmad Khalifeh','https://lh5.googleusercontent.com/-itbN04YrWn4/AAAAAAAAAAI/AAAAAAAAAAA/waee5qgefiY/c-rp-mo-br100/photo.jpg','16891069708558046635',13926),('AIe9_BGIy_plKfaZrItPyyQZNLvsRSHwLBOP5z9nFTXLzsJIde-vFb7GCv1ban_bCYL8BL9dDX2IUpoSpnPrlASQIq6IQ6b_16X3coxj1lp7M-iuYYPA_eI','Dr.Lindsay’s team (Raj, Naureen, Jose & Elizabeth) did a great job seeing us this evening. We were in and out quickly for X-rays no long wait or any hassle.\n\nThanks guys!','2020-01-27 02:29:12.463000','2020-01-27 02:29:12.463000',5,'Asad','https://lh6.googleusercontent.com/-1wROFeCLqJ8/AAAAAAAAAAI/AAAAAAAAAAA/6zh8CpVpZ5A/c-rp-mo-br100/photo.jpg','3511292162159714121',14443),('AIe9_BGIy_plKfaZrItPyyQZNLvsRVLDxNc44UhIJaOID8-nCye8swgPEKFbSKVuRW8eOcSsfE_6BrtHDL5AjoD3Xe0QO7hcYOg2HwGm2iED2aMBIL2ob5c','Great staff and care. Jesse and Shelli were amazing! Dr Elsbecker was fantastic.','2019-02-05 17:38:13.673000','2019-02-05 17:38:13.673000',5,'Keshia Frederick','https://lh6.googleusercontent.com/-izoivMcrjhQ/AAAAAAAAAAI/AAAAAAAAAAA/pd8Fb_rSSs0/c-rp-mo-br100/photo.jpg','16891069708558046635',4354),('AIe9_BGIy_plKfaZrItPyyQZNLvss0iNLTpa8aiDbaopbqqqrZ6DuB1EUy5vH4N_1jHcJ_ggMIDtjD_I9_BUE8JMnJhAwGv_lOPM8v-jdYBfoFIBMJDEvsE','Really good and quick service!','2018-04-11 03:22:27.572000','2018-04-11 03:22:27.572000',5,'Jonathan Ramos','https://lh5.googleusercontent.com/-3QlKzWyDVM0/AAAAAAAAAAI/AAAAAAAAAAA/dow0sJfd5K0/c-rp-mo-br100/photo.jpg','16590124370714063921',3839),('AIe9_BGIy_plKfaZrItPyyQZNLvsS1-c96P-GGeSaKrZyNA68UNx8e_EUCxTNCYuqMt6IeLb2i2t1esKKMkBIaLKgeFHgf10AF35BJdQ40muleZTr5klTJo','Dr Ybarra, Nurse Karen, Tech Sonle and Delicia at the register you guys ROCK! \nEvery SignatureCare location I’ve been with my family, they just know what to do with efficiency, accuracy and on time delivery. Keep doing what you do and your work will be rightfully rewarded. Good give birth to good trust....🙏🏿','2019-10-19 15:30:08.634000','2019-10-19 15:30:08.634000',5,'Mansa Marah','https://lh6.googleusercontent.com/-I7336NkuEi8/AAAAAAAAAAI/AAAAAAAAAAA/LSfUY28h1Vg/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',8786),('AIe9_BGIy_plKfaZrItPyyQZNLvsS31wr7XGVKL_y67m_oQyzrfJYIFLmpSXaEo-WOQfQy5D0KcWfpevoE_AIgGSJP__avDDw52fx0swxf0LHsoI-7eMAw0','This was amazing. The doctors were so helpful and treated me like I mattered. The wait wasn’t long and the nurses were great. Adam did a great job of explaining everything and if you are a family member of a police officer believe what they say. You pay absolutely nothing out of pocket!! I live in Bastrop but would drive here in a heartbeat!','2019-08-22 00:15:07.255000','2019-08-22 00:15:07.255000',5,'Jennifer Rivera','https://lh3.googleusercontent.com/-zx3N1WJ7vPg/AAAAAAAAAAI/AAAAAAAAAAA/TrFj59Pflns/c-rp-mo-br100/photo.jpg','16891069708558046635',4215),('AIe9_BGIy_plKfaZrItPyyQZNLvsS8SWyxsWTjXh0dzSU_5JJ0xOW7ZxXIIDeEFBymcuKaUVOhXdjwHH_m9LHnmM9OH8RRhJxxtDA626vCVRY9vvT2OHjRY','Dr.Dang , Keera , Jesse were awesome!!','2019-06-20 12:39:40.260000','2019-06-20 12:39:40.260000',5,'Isaac Luna','https://lh6.googleusercontent.com/-67Pe-FNlN9M/AAAAAAAAAAI/AAAAAAAAAAA/UnTm6fX63Ss/c-rp-mo-br100/photo.jpg','17394740196501090048',4661),('AIe9_BGIy_plKfaZrItPyyQZNLvssCIeDQRkkP_jw9ppnDzPcwoimQxjJBWEP4phISwuI7Ni33XK0fX-Z3h7UC2BTaIYp8BsYOlIa7u-WYS4Fr17ZJ_EOnQ','Itza and Jacob were great. Service was fast and efficient. 10/10 would recommend','2019-03-31 17:14:37.679000','2019-03-31 17:14:37.679000',5,'Lizzy Baucom','https://lh3.googleusercontent.com/-aWlgQafRgg8/AAAAAAAAAAI/AAAAAAAAAAA/qb2j2SmhI18/c-rp-mo-br100/photo.jpg','16590124370714063921',3471),('AIe9_BGIy_plKfaZrItPyyQZNLvssetRAMNLfLRtjHzziDWvU3bXiQNSYdkmYpmeSi3_GdmBSwwkVF9odHbRID4av60NtZ8Wml9tR9txyZObNhKCB8M5H1o','Dr. Ding and her team took care of my mother and provided comprehensive, thorough, and prompt care. They were compassionate and comforting, and very professional from beginning to end.','2020-02-19 04:52:02.798000','2020-02-19 04:52:02.798000',5,'Eric Heaton','https://lh4.googleusercontent.com/-Mb3kechCOAw/AAAAAAAAAAI/AAAAAAAAAAA/cFLjmEyb4qE/c-rp-mo-br100/photo.jpg','12541597562633926366',13363),('AIe9_BGIy_plKfaZrItPyyQZNLvsSh78dOsaJ0xWU1B2mLQ5bzIHkIJTMYnPPRHEhTjKevvuxiqJGztuX5N-o1xcJvpl-5r2TAJ-SsEcL1tuQteeFLcdem4','Really quick, great and helpful staff. Highly recommended. Shout out to the staff-Leah,Krystal, and Audrey (Dr. Starr) 👍🏼👍🏼','2020-08-04 15:58:46.504000','2020-08-04 15:58:46.504000',4,'David Salgado','https://lh4.googleusercontent.com/-etmLdz1jROc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckx1AAjXlF4ArMpFHJotzEUrTZ33g/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21820),('AIe9_BGIy_plKfaZrItPyyQZNLvsSODxkqSo11QvvLhiiU5kKIMoQogxhlvhk-CrvQqZr1y2wp8B68oSN_EYqj4L0BxoQwvJWLD6tdy7rBpdAnh_DtLs8DA','I had THE BEST experience at Signature Care! The entire facility was sparkling clean, and comprised of modern technology. Each staff member was knowledgeable, friendly, and professional. They were so wonderful I want to give a shout out to them all! Dr. Nguyen, Adam P., Marty L., Shaunda H., Christina C., Christina K., & Andrew R. Thank you for making my experience seemless, I can\'t believe how easy it all was and how quickly I got in and out. WoW 👍❤️👌✔️🤩🕙\nIf you want Fast & Exceptional Healthcare, this place is it! Open 24hr/365 days a year','2019-08-13 17:41:16.941000','2019-08-13 17:41:16.941000',5,'Christine Adams','https://lh5.googleusercontent.com/-fEL3_9-rYdE/AAAAAAAAAAI/AAAAAAAAAAA/pqFa60_MUME/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4222),('AIe9_BGIy_plKfaZrItPyyQZNLvsstZvL6FrlJMrgz5jzkVs0NEXKEFOvLuU0PL-Ior8PwLUt4pbyQTBuP8U4IRwu1z0SoGl5KleOlWt-wq76Y9jEtiV4ns','It was great. They took care of me Gave me water and a warm blanket.','2019-07-07 18:23:09.784000','2019-07-07 18:23:09.784000',5,'Marcellus Boykin','https://lh6.googleusercontent.com/-8XdemI1nzLI/AAAAAAAAAAI/AAAAAAAAAAA/UrXrK5TlED0/c-rp-mo-br100/photo.jpg','16590124370714063921',3312),('AIe9_BGIy_plKfaZrItPyyQZNLvsSuHSpffPjPhuG5V6feQzoAFHdSlRU6OIueDmc1b8EvIZrqUVpzFyMg4QBzySFUkPqZupoj6Op-r0jLZAaOHXaqNpft8','The place is absolutely great. From the front desk receptionist Malissa to the nurses to doctors. Facilities are highly up to date and clean. Service was fast. I\'m not a 100% better yet but I for sure wouldn\'t feel as well as I do if I hadn\'t come here.\n\nDon\'t go to the emergency room if you don\'t have to!! There\'s never a wait . You\'re in and out in no time but still get the treatment and care that you need .','2018-03-15 16:08:02.718000','2018-03-15 16:08:02.718000',5,'Silesha Maxwell','https://lh6.googleusercontent.com/-zKC2P-TwY08/AAAAAAAAAAI/AAAAAAAAAAA/c07beVf2oeI/c-rp-mo-br100/photo.jpg','17394740196501090048',4870),('AIe9_BGIy_plKfaZrItPyyQZNLvsSXCe0GKRwsUcsdze_B18y-wXlO0CXl3dJc-y0CPOCEQ12tCfIwb5JSTFKU7eCvOK8gigcGuf9RsBvUUS_URgrVtwIF4','The staff Dr. ding, Anastasia, Agnes, Amy, and Dion are phenomenal!','2019-05-12 08:00:19.862000','2019-05-12 08:00:19.862000',5,'B William','https://lh6.googleusercontent.com/-TNKWEmgAif0/AAAAAAAAAAI/AAAAAAAAAAA/lhUEjYrXjno/c-rp-mo-br100/photo.jpg','3511292162159714121',7325),('AIe9_BGIy_plKfaZrItPyyQZNLvst0ASyqMr7v8chc_Jf83vfmroMoIZ7zuUMWtdXUp0iNU-kuUC18SYDOSY3Yq8MbpiGx8_WI027EU5PBKWk3FjnxTYExQ','Very courteous establishment. Sam and Cody are nothing short of first-class medical professionals and made the experience of being in an ER enjoyable','2020-08-18 18:38:51.901000','2020-08-18 18:38:51.901000',5,'Logan Henninger','https://lh4.googleusercontent.com/-w8Q31ytr5mE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclcN51XdMl4qK2-ncqdDaM6HXlfZQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BGIy_plKfaZrItPyyQZNLvsTE5FEVLq5-LhgTHXkFNYpBLNU6MKFYRQQOHVN0jf2HX4tSzolP93T0grqMEbVthFbe1D4Lo52mwc3DetedlRFjFQD1E','Our kiddo (age 13) came home with what turned out to be a fractured wrist and displaced radius from running around in the woods this evening. We cleaned him up and ran him over to Signature Care South Austin, given that they’re open 24 hours and can run x-rays on site.\n\nEvery one here, from Earl at the front desk to the ER staff, have been AWESOME!!! They’ve been very kind, attentive and professional. \n\nWe had to get our kiddo sedated temporarily in order for the staff to reset his radius. Dr. Rose, Nurse Christina, our ER tech Chelsey and our radiologist Eric addressed all our concerns and put my wife and I at ease during a tense time.\n\nThanks to the night shift here at Signature Care, we’ll go home with peace of mind tonight 😊','2020-02-24 02:51:06.544000','2020-02-24 02:51:06.544000',5,'Gustavo Gonzales','https://lh4.googleusercontent.com/-9qaUUEBQ4-I/AAAAAAAAAAI/AAAAAAAAAAA/KkzIRRRydGY/c-rp-mo-br100/photo.jpg','16891069708558046635',13934),('AIe9_BGIy_plKfaZrItPyyQZNLvsTpHFEYwGg5bCocwITafqya8viDWfvPn_eEIZfZaHwgmhXFXT-OS3RfZGTUeUK7T-vvTCsZJ2X8hBD8mRLT9QKBD9M6g','Great medical attention by a great team. Kelly and Natalie were very professional as well as the rest of the team.','2019-06-24 16:54:22.336000','2019-06-24 16:54:22.336000',5,'Catalina Rodriguez','https://lh4.googleusercontent.com/-bBAHRBgDP3k/AAAAAAAAAAI/AAAAAAAAAAA/UQNulHTJop8/c-rp-mo-br100/photo.jpg','14567670160750071148',1286),('AIe9_BGIy_plKfaZrItPyyQZNLvsttqepYQxSJ5h_qC4HifCscKA_E95c3VrjJhjdN6TEJcgsowDzOnOVbGV2HgT21IjCzjcD-ZhVhPvwG-0xv3EuGhJSXs','I went in and was called to the back before i could even start my paperwork!! And to me that’s A++ Alvean was super sweet!!','2020-02-19 17:12:51.607000','2020-02-19 17:12:51.607000',5,'Adroska Jackson','https://lh6.googleusercontent.com/-fEavxqsbfKg/AAAAAAAAAAI/AAAAAAAAAAA/Q_dyMCV5TDI/c-rp-mo-br100/photo.jpg','16389487648212004696',10868),('AIe9_BGIy_plKfaZrItPyyQZNLvstYi-BY2ZdzAdG5bzXHs9Vryj222h6gB2XUn8Y-2IVBWu2NNLOlQ_hbxTLIKRc3_hIf9QAWuLRwZTcoQk1vjf4rwNAHM','worst place to go . No employee to come and talk to us','2020-06-28 06:20:15.154000','2020-06-28 06:20:15.154000',1,'michael Photography','https://lh5.googleusercontent.com/-kKTpb0ew-1s/AAAAAAAAAAI/AAAAAAAAAAA/MnjrUCJSBQk/c-rp-mo-br100/photo.jpg','12541597562633926366',21244),('AIe9_BGIy_plKfaZrItPyyQZNLvsTyikUcOgIy_r3JoaC6ABW56dCTM2NHbmYP6Th6D05wRJ3KzOr2mUm5kNLd5g24JhEDLLy6xTP8_fXI-MIXpTsdwt4j0','Went in for COVID Symptoms and the test was negative. The ER doctor was determined to find out what was wrong with me and did further studies till he got a response, I had pneumonia and strep throat.Julie the nurse was very informative and friendly. Would so recommend this ER to my family.','2020-08-17 15:52:55.509000','2020-08-17 15:52:55.509000',4,'Adriandayo','https://lh3.googleusercontent.com/a-/AOh14GjqaZVP4m8V0yciV1FFwwJlXA3Ar116AVBWnAwFiA=c0x00000000-cc-rp','14567670160750071148',23013),('AIe9_BGIy_plKfaZrItPyyQZNLvsU0fXs-JukUKqcbMGdLx5SM1RnpSzDFjEFTWJZSCKIoRe-_sZPt7eTkkV4ntkyai0nkju4Wo8LwkanFk_wBml1WuIjNQ','The care that is given here is excellent. They listen to the patient and take their time with you. They do not rush you, like a lot of other ER\'s that I have been to. It is all the small things that matter to me. Listening to me, not rushing me, etc. This ER hits all the marks.','2019-08-26 13:32:14.811000','2019-08-26 13:32:14.811000',5,'Marlena Gardner','https://lh5.googleusercontent.com/-1V0IZaiea10/AAAAAAAAAAI/AAAAAAAAAAA/MwkgOP2HMKY/c-rp-mo-br100/photo.jpg','8679688254631342173',8815),('AIe9_BGIy_plKfaZrItPyyQZNLvsU4nXCGeJ1bNBS1OaKfvkSe7O09m4zWolJStc2ZMhPnbDGcePAi18P7SWUMem1bzDGK7UoNfwBP4-3UXRvuwq_KwozFM','Great service, no long wait , highly recommend to anyone in need of emergency services. Registration by patty was very warm and welcoming. Dr. K. Zhen gave great service and was a godsend. Nurses Eda ,Selina and Fanny were very comforting and always reassuring us that everything would be fine.Our radiologist Coraly was awesome.','2019-09-08 18:45:42.671000','2019-09-08 18:45:42.671000',5,'Maison Demoll','https://lh4.googleusercontent.com/-SX9JjHrq7_c/AAAAAAAAAAI/AAAAAAAAAAA/fl9pVD1-s0A/c-rp-mo-br100/photo.jpg','17394740196501090048',4608),('AIe9_BGIy_plKfaZrItPyyQZNLvsUbHxxcZHuQli3YtG2jUXrd5y08dtpljZNMwwAjIwPpub8JlbxQSIIYDeM4jXho8Zql0C3G2fhQi5tngZm-6jdIqT8OY','Easy in and out. Nice facility and great staff.','2019-02-11 13:42:52.086000','2019-02-11 13:42:52.086000',5,'Mark whiteley','https://lh6.googleusercontent.com/-FQssgXuUvzk/AAAAAAAAAAI/AAAAAAAAAAA/KozHcK2jw_E/c-rp-mo-ba3-br100/photo.jpg','2694018788013845459',6184),('AIe9_BGIy_plKfaZrItPyyQZNLvsUgHbhLX44tLxB2X_NKjpaPmT0tOeskFxU-lc40-q1j1EVz3xc5oj4-u5GNQUHiMI8T6Gc5Mrhg3j45tc7McEupq5HhI','Shout out to the team @ the Westchase location who made me feel all better on a late work night: Nurse- Sarah, Radiology Tech- Sherwin- Dr. Dang, ER Tech- Christian and Registration- Ana! They have great snacks lol!\n\nThank you for all you do!','2020-02-19 08:00:02.810000','2020-02-19 08:00:02.810000',5,'Cathy Sandoval','https://lh4.googleusercontent.com/-yKs-TeOKL6s/AAAAAAAAAAI/AAAAAAAAAAA/opun1Q1__EY/c-rp-mo-br100/photo.jpg','12541597562633926366',13362),('AIe9_BGIy_plKfaZrItPyyQZNLvsukbpwJL97rUmjEpD3Oky0ZlUTI5iSyFF7jOOtZx8SYiWbHFKf5CRwvcbfj_ig2aHiOw0JOItfSz8HP90yloUguda-Aw','Always a great experience','2020-02-22 16:42:47.889000','2020-02-22 16:42:47.889000',5,'Kenneth Brown','https://lh5.googleusercontent.com/-fTV1g8Cmoqc/AAAAAAAAAAI/AAAAAAAAAAA/2NQz7HV16X0/c-rp-mo-br100/photo.jpg','8918455867446117794',14808),('AIe9_BGIy_plKfaZrItPyyQZNLvsUO7o20zucZcLmYKtuOeiId0g0jtZ1GHS8T_Js-iJCFPiAwRPwb9n2TizBsdSCgfG4YHPnlcjUkomqA1zjDnXYvine1k','Very friendly and polite. Staff and Doctor are awesome. Would recommend family and friends..','2020-01-31 21:17:53.987000','2020-01-31 21:17:53.987000',5,'KingQueen Sanders','https://lh3.googleusercontent.com/-thtGJ5kl3lE/AAAAAAAAAAI/AAAAAAAAAAA/sHbbjL8HWmw/c-rp-mo-br100/photo.jpg','14567670160750071148',13572),('AIe9_BGIy_plKfaZrItPyyQZNLvsUPCvlwtH2YifVQ4dhNCrlfZFU_sLF4a_wHVaq3QtpeyB7GTEdKGd4yxDeNrEWV_xM4VRDS3q2VUDIhL8CRDtx7WNLaI','I was blown away by the service! I was seen in by a nurse and doctor within 5 of being there. Everything is so clean, nice, and professional looking. The staff, Dr.pham, nurse alvean, radiologist Marcus,ER tech Keith and vanessa at registration were so kind, welcoming, and helpful. They made sure I was informed of everything I needed to know, gave a nice warm blanket, and made sure I was comfortable and not in pain the whole time.','2019-11-19 20:30:29.120000','2019-11-19 20:30:29.120000',5,'Allison Keith','https://lh4.googleusercontent.com/-svxrsRk9RgM/AAAAAAAAAAI/AAAAAAAAAAA/ac-bBGhcvZc/c-rp-mo-br100/photo.jpg','16389487648212004696',2661),('AIe9_BGIy_plKfaZrItPyyQZNLvsUQoYbLX6zU8PYu5l6In3TCEOHJKBQ5KD6A0fT819JxpO5UXnbHpm5iDGp-RUty0ct7EnLJFH0WL3EW59AmY-BmEbmio','This place was great! Itza, Liz, and Brad are terrific employees and are extremely welcoming and professional!','2019-06-10 22:17:16.504000','2019-06-10 22:17:16.504000',5,'I Am Ballistic','https://lh5.googleusercontent.com/-0FH5Q8SoaP8/AAAAAAAAAAI/AAAAAAAAAAA/oCZWx_80YDk/c-rp-mo-br100/photo.jpg','16590124370714063921',3362),('AIe9_BGIy_plKfaZrItPyyQZNLvsuV_cgovcfbax8E_Ggb8pzWHjXMUs6VMhdHfPYSQjCV779UrnJj2-Eh8q_WOOD3C_wYuM2AfNvS7Yly652EJgM1fsQZs','Amazing staff. Alexis was wonderful and helped us get my husband feeling better. Everyone we dealt with was super friendly and very helpful.','2017-09-09 23:56:24.191000','2017-09-09 23:56:24.191000',5,'Lauren Rhodes','https://lh3.googleusercontent.com/-eCaeAvEt5vg/AAAAAAAAAAI/AAAAAAAAAAA/pgts8HrcAfA/c-rp-mo-br100/photo.jpg','16590124370714063921',3940),('AIe9_BGIy_plKfaZrItPyyQZNLvsuw0xdMHl6wjxoUFvBzKPneW01PPyg23t64JUcqWllcFSteQ165PUllfpo7J6scdjwj_aZfdvHqLhiHrRmg8AQNF1eIM','It was an unexpected trip but I’m so thankful for the friendly and caring staff. I was cared for by a very attentive and knowledgeable staff. I would\nrecommend SignatureCare Emergency Center-Memorial City to anyone who has an emergency.','2018-03-06 10:09:41.961000','2018-03-06 10:09:41.961000',5,'Yulonda Thomas-Lester','https://lh4.googleusercontent.com/-lrlaFQEHZMg/AAAAAAAAAAI/AAAAAAAAAAA/FnZrwC7BX7U/c-rp-mo-br100/photo.jpg','14904078213800803294',2275),('AIe9_BGIy_plKfaZrItPyyQZNLvsUwLwHZjhv1xWXt_9GebY36K0GfpGRWJNCFG8b5JUTNVdRgJhIaWkoTJ3ipy-4rWkohOcoW6luood1Ubv4d59IVizrOo','GREAT! Very professional & excellent attendance! Were caring and attentive to my needs. Rad Tech David, Dr. Huerta, ER Tech Andrew, RN Kim, Registration (Front Desk) Maria & Shania were all very caring and respective, treated me with professionalism & courtesy. I will recommend Signature Care ER Midland to all my family & friends.','2019-07-29 23:57:46.939000','2019-07-29 23:57:46.939000',5,'Samuel Fuentes','https://lh6.googleusercontent.com/-tx9RLnbqj9g/AAAAAAAAAAI/AAAAAAAAAAA/9-CPHq3bPew/c-rp-mo-br100/photo.jpg','13486358490203335051',876),('AIe9_BGIy_plKfaZrItPyyQZNLvsuZaIRGx8N1Usp9BVk37twbmo1b606Z7Kahqdl3qRKRmTght2haHvo3TAEEx6s2bEig39aCKmoI86h7bBXILA3Emeksc','Every one was great at the facility!!brought my daughter in for a swollen ankle and was out in an hour.staff is awesome: dr.singla,niki,johnny,mary (ct tech)and brandon..','2018-09-19 05:05:20.017000','2018-09-19 05:05:20.017000',5,'Jn Gato','https://lh6.googleusercontent.com/-yeHbwR93IsU/AAAAAAAAAAI/AAAAAAAAAAA/RPrw0om6srU/c-rp-mo-br100/photo.jpg','14567670160750071148',1503),('AIe9_BGIy_plKfaZrItPyyQZNLvsVbXuGG3epjFNoyChyPkvcTgv-eFcKxL8SHq23NJS4mLlJCj_LU6zDf46e8xILza3NFaGXjwTM_oOtQzk9IDxoS6bll4','The doctor and other nurses and staff were so welcoming , friendly and professional. Also I ‘d been called within 5-10 minutes. I highly recommended them.','2020-02-21 23:54:36.539000','2020-02-21 23:54:36.539000',5,'Super Gamer','https://lh5.googleusercontent.com/-3P0TYCC-MvQ/AAAAAAAAAAI/AAAAAAAAAAA/_x5LdfrkDIM/c-rp-mo-br100/photo.jpg','8679688254631342173',14739),('AIe9_BGIy_plKfaZrItPyyQZNLvsvEAEkKJB8OQChjldIVApf2bc0ZnsYWUJKuXJVqMmci5AZtLAOkMntd1N2UrTqyHGF0x8qoz40D53MsQUia6-aYhQM20','good service, great nurse and doctor. Thank you so much !','2017-09-15 16:46:44.174000','2017-09-15 16:46:44.174000',5,'fionanguyen','https://lh4.googleusercontent.com/-iLSspbNlruY/AAAAAAAAAAI/AAAAAAAAAAA/bX-qNOr9-bM/c-rp-mo-br100/photo.jpg','17394740196501090048',4975),('AIe9_BGIy_plKfaZrItPyyQZNLvsvEhOKzj4VdLNqg-g9WY9_6hgzEz8DTn6OIofcVvUpaBb8bviFGoKUxIaTl8UxIa0HkrWKiCKrDhteL-c99woH8j3JOE','Dr. Iheme, Alvean my nurse, and Jocelyn were extremely helpful and quick! I love this ER!','2019-12-04 16:45:46.217000','2019-12-04 16:45:46.217000',5,'Amy Dulcine','https://lh4.googleusercontent.com/-On1w-BzsFFE/AAAAAAAAAAI/AAAAAAAAAAA/4ScAZcUAzVI/c-rp-mo-br100/photo.jpg','16389487648212004696',2582),('AIe9_BGIy_plKfaZrItPyyQZNLvsVI9Y7T9IGWqNF5HgyCxV3FsB17gJoVAbLvW54sT9HajmLRNkqoptQ7JCt9iCNkj1zBZavaW7J8aosEvYQbh8Xc-F-yw','Best ER experience I\'ve had. Deserves all 5 stars.','2020-02-08 16:24:38.506000','2020-02-08 16:24:38.506000',5,'Shannon Castillo','https://lh3.googleusercontent.com/-5wQt-3Tvq_U/AAAAAAAAAAI/AAAAAAAAAAA/rGLvg0b8rFA/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',13874),('AIe9_BGIy_plKfaZrItPyyQZNLvsVqkkI48MQ2CVB_E7UvBpyi5YliC4Sns6vk36f5Efo9qYOld2GvlHVeq1ozJ7P0Al9-YOnrjv2KkfoeyYg96vNzneBFM','Tricia Jani——- Nice people\nSibienne ——— Good Registration','2019-11-22 13:04:58.010000','2019-11-22 13:04:58.010000',5,'Nestor Martinez','https://lh5.googleusercontent.com/-guDAYB7vPYw/AAAAAAAAAAI/AAAAAAAAAAA/XVqD08iQEUo/c-rp-mo-br100/photo.jpg','16389487648212004696',2641),('AIe9_BGIy_plKfaZrItPyyQZNLvsVSq005A9Tctl6W0PTO4ny7v6w9XGw-C0XlSRRSIswBfqYRoD2UoKtQ5e7znmeMIed6aKJj3bNpOUx0KPRipvNNMHUYM','Fantastic service, treated in a timely manner. All employees were very friendly and helpful. Will definitely be returning if needed in the future.','2020-02-26 16:48:42.425000','2020-02-26 16:48:42.425000',5,'SOTEX Outdoors','https://lh6.googleusercontent.com/-9jWJGO2rl-I/AAAAAAAAAAI/AAAAAAAAAAA/ruYrtkl6VwE/c-rp-mo-br100/photo.jpg','16590124370714063921',13828),('AIe9_BGIy_plKfaZrItPyyQZNLvsvTvUxm0g5j_4o2AVl69B7-M8-YIvFcbEYoNrGRRNC-Po5HsF44OdF9Od6x8zeY8-t8qZMnYVGUE8QqyUoCh3Wpl13NM','Lorena and Amanda at registration were extremely helpful and straightforward! Everyone was very kind and made me feel comfortable. Overall, great experience!','2020-07-25 18:32:27.003000','2020-07-25 18:32:27.003000',5,'Aimee Moncada','https://lh6.googleusercontent.com/-A96yDVD-WTg/AAAAAAAAAAI/AAAAAAAAAAA/ox8FnxYAen8/c-rp-mo-br100/photo.jpg','16590124370714063921',22643),('AIe9_BGIy_plKfaZrItPyyQZNLvsVW8hQUoymSqe6uRC-3xAqQ4umsH-jepXV32h-9byK0PpvA65ECXCNnHYD6MMd91PkfRAko7YOVnYQ1BolRm-u9UTRa8','Dr Grinblatas is awesome. The staff is awesome and caring ❤','2020-02-28 20:12:34.626000','2020-02-28 20:12:34.626000',5,'Hector Mejia','https://lh4.googleusercontent.com/-fAVo5cpWIhE/AAAAAAAAAAI/AAAAAAAAAAA/MDUsb4x8iXk/c-rp-mo-br100/photo.jpg','14904078213800803294',20985),('AIe9_BGIy_plKfaZrItPyyQZNLvsVwXsjz3gxupXZPVxjmkNYNzqh7LRICGNxudtAfoVMonRV09UMRAIKnrtHxa09-TAZzVQsqOz75Hk94Xwxj7_DyAOWog','Jocelyn was friendly and informative. Wait time was less than 10 min.','2019-10-27 16:22:04.638000','2019-10-27 16:22:04.638000',5,'Delicia Singleton','https://lh5.googleusercontent.com/-2pe1dZZ-cJ8/AAAAAAAAAAI/AAAAAAAAAAA/KSIbmL4xGSg/c-rp-mo-br100/photo.jpg','16389487648212004696',2760),('AIe9_BGIy_plKfaZrItPyyQZNLvsW-Zm9d-XMVazb0-0OhK0i0vRM9FZGKhhzprz03gmKbjeYCMGdwvqOTjKwQzYhXHZ5fBD0bv9KNhGN2tJ2DljhTBkl4E','everyone here was so sweet. I was carrying about my English but they helped me to understand everything. it was very fast and sweet. \nthank you so much♥️♥️♥️','2018-08-01 16:42:21.149000','2018-08-01 16:42:21.149000',5,'Дарья Васильева','https://lh4.googleusercontent.com/-4Ke8lkov4os/AAAAAAAAAAI/AAAAAAAAAAA/JDz4ESNmK-U/c-rp-mo-br100/photo.jpg','16891069708558046635',4454),('AIe9_BGIy_plKfaZrItPyyQZNLvsw3jla2ZsXuLL3r9VAFA0RFrKjZdDXeYhsV2--WZdGer01nhmcR9EWC-_NbW9Il74QkrhoebNfljxiGp8F0XTNTiK96s','SignatureCare is the best ER. I came in with some very serious concerns however the staff was amazingly friendly, helpful and I knowledgeable. Is started with the front line staff as Jasmine checked me in and offered quality client services. Nurse Tricia was amazing she was gentle, knowledgeable and hospitable. Nurse Robert was great and made sure that I was taken care of. I will definitely be back....they were amazing!!!!! If you’re in the 1960 area don’t waste your time going anywhere else','2019-11-21 22:48:08.038000','2019-11-21 22:48:08.038000',5,'jasmine bennett','https://lh6.googleusercontent.com/-331xtAhPAy8/AAAAAAAAAAI/AAAAAAAAAAA/f41TzhVTs2w/c-rp-mo-br100/photo.jpg','16389487648212004696',2644),('AIe9_BGIy_plKfaZrItPyyQZNLvsw6A7WCbi2OD6cKVDm0TguTlslO3MMay1bEwpMFvtaqU4U74hivBXZDwyvs3yq69e-eVYY3OszYgVLkbSOKY_Xe7dwlI','Amazing and friendly staff! Thank you Jennifer Diggs, John Bell, and Kanyon! Will definately let everyone know how awesome you are!!!!!!!!','2019-07-29 13:50:59.044000','2019-07-29 13:50:59.044000',5,'GerryNell Merritt','https://lh6.googleusercontent.com/-h9Tgra1NN6o/AAAAAAAAAAI/AAAAAAAAAAA/oBEwaCAMX_o/c-rp-mo-br100/photo.jpg','8626688543755174284',8423),('AIe9_BGIy_plKfaZrItPyyQZNLvsw90DDT42Gds_EyA--0QD-G41ArDHe4DJ8nJE4_hhOmA297p8e9ebQWtCCpfrYn5PRQBLCtbBUKCwa8kZ2BTJt1mzaeI','Amazing staff. Delicia, nurse Duke and Dr. Carlos were attentive and kept me at ease with all my concerns.','2020-02-05 18:20:19.746000','2020-02-05 18:20:19.746000',5,'Angelica Guerrero','https://lh3.googleusercontent.com/-xFUXCpGXPuo/AAAAAAAAAAI/AAAAAAAAAAA/xvolgU8qVso/c-rp-mo-br100/photo.jpg','8679688254631342173',14757),('AIe9_BGIy_plKfaZrItPyyQZNLvsWClVP7WtTkaoyItG17q1cnFw8pHkrzVgliZoqNCx9HRHvRHOE1hwdS-FccVRnd8EkKHSbBHMfZtf7eqviZ3i56WuZYs','I was treated very very professional. The staff is all well trained, professional, excellent customer service service and very friendly. I was seen within 10 min of arrival which I believe is very prompt service. This is definitely my new spot in case of minor emergencies. Thank You For you excellent customer service!!!!!','2020-07-17 08:29:08.525000','2020-07-17 08:29:08.525000',5,'D-Lo D-Lo','https://lh5.googleusercontent.com/-SGT0UCf2cvY/AAAAAAAAAAI/AAAAAAAAAAA/qbwDhzwBTfY/c-rp-mo-br100/photo.jpg','8918455867446117794',22922),('AIe9_BGIy_plKfaZrItPyyQZNLvsWEZrDLi668PHIcqHgCj6XZpnW6zBSUf_tyvNxAM9cwpFGI3Ngdibke5FrSKfVJb53xw0yODr2GFR_B5brF9FSlYU-T8','Went in because my son was sick. They were amazing they took great care of him everyone was so friendly and helpful. I will definitely recommend this urgent care to others. I\'ll definitely go back if I need to','2019-10-29 00:01:40.814000','2019-10-29 00:01:40.814000',5,'Amber Mcivor','https://lh3.googleusercontent.com/-NCoDpNzlpcs/AAAAAAAAAAI/AAAAAAAAAAA/2jl1g_tgyf4/c-rp-mo-br100/photo.jpg','2694018788013845459',6028),('AIe9_BGIy_plKfaZrItPyyQZNLvsWfFswHqNZtcROG9bgVr0KvMQqFA1Tmd8n9gEVizwrVUA1fkCyz-l34k2cGq9V8Uc_1lDvgkvdImfeOlVVV63hdIBogY','Tanishia w., Tammy w., Laura H., James, and Dr. Mauldin were the best ER staff. Friendly, caring, and fast service. 100% recommend for anyone not wanting to wait forever in the hospital.','2019-07-30 23:55:36.508000','2019-07-30 23:55:36.508000',5,'Alexis Sanchez','https://lh5.googleusercontent.com/-To9hU7MVU6Q/AAAAAAAAAAI/AAAAAAAAAAA/D0zkkjEBRx0/c-rp-mo-br100/photo.jpg','17898197009688164559',5614),('AIe9_BGIy_plKfaZrItPyyQZNLvsWKI49X73qcEpPRrj0lJoP8L-45mppzc2L5k1l24iC9yHVP_gB_Y2Qgb_4taD6yQEFGj1nGyNB94HXDJKTLObbZJLQPw','Fast getting seen and very helpful, hospitable staff. Maryann made registration easy. Dawn, Tony, Olivia, and Eve were all quick to get me anything I needed. Dr. Yusuf was also efficient and knowledgeable.','2019-12-20 18:11:36.572000','2019-12-20 18:11:36.572000',5,'Brynne Carleton','https://lh4.googleusercontent.com/-eUxi44Kla0k/AAAAAAAAAAI/AAAAAAAAAAA/dm-VgMuCHp4/c-rp-mo-br100/photo.jpg','3511292162159714121',14477),('AIe9_BGIy_plKfaZrItPyyQZNLvswsR3xJR5cR7unDJOCDEfN1IvfszAKHwCwK6GW_HCeonTYU1pdUdh-Rg07efyVOvptsK_c84FYqfb5ZPVjjQAaYb0CdM','I had a great experience at this hospital. Everyone was great. Thanks so much for taking care of me.','2019-08-11 16:03:23.290000','2019-08-11 16:03:23.290000',5,'jennifer austin','https://lh4.googleusercontent.com/-F4j7E0Z-63M/AAAAAAAAAAI/AAAAAAAAAAA/9vZm0CbQk0g/c-rp-mo-br100/photo.jpg','3511292162159714121',7216),('AIe9_BGIy_plKfaZrItPyyQZNLvsWzbmH1SL_X4RoI2B1s-7e3jOCMddFEeD5n1fcNYdUyrW9o9gD8xcgkiIoWiJRSfh5Ad-kObgtjpMPsc41ZvIEPxYJpY','Luv this location they really know how to treat their patience! Cindy, Selina,Dee and Dr.Edwards great team','2018-10-02 22:57:08.280000','2018-10-02 22:57:08.280000',5,'Jarita W Camel','https://lh3.googleusercontent.com/--TVdpnfdB-Q/AAAAAAAAAAI/AAAAAAAAAAA/uF0RhqWKBxo/c-rp-mo-br100/photo.jpg','17394740196501090048',4778),('AIe9_BGIy_plKfaZrItPyyQZNLvsWZuV7WmhzVLePXL9zlnN22Ox7lFJV5jQ1B9JMbY0fDv-41kjCE_X2j-giAN-WGrpSmuFIqZHTAXzHmJsXpY8bugqCrc','Got here at 1030 and all the staff was still lively and extremely helpful with all the questions I had','2019-07-31 04:25:02.179000','2019-07-31 04:25:02.179000',5,'Sir Trash','https://lh6.googleusercontent.com/-am9gzS5OSnk/AAAAAAAAAAI/AAAAAAAAAAA/vBG1d7HxxXA/c-rp-mo-br100/photo.jpg','14567670160750071148',1262),('AIe9_BGIy_plKfaZrItPyyQZNLvsx4bDCVF7mgkooGvRfG1DQ1XyLJUFYNXMCsQlzMjH4UM8Eld7rOtyQk-MhW4ydOmw5OLFIKKHEAP7vIYdayjDMDuA7t4','Definitely recommend going here! The staff is very friendly and helpful. Dr. Esterez was super helpful and made sure all of our questions were answered and we were well informed with the method of care. The tech, Becca, and nurse, Jacob, both made sure we were comfortable and had everything we needed.','2019-05-04 21:41:13.766000','2019-05-04 21:41:13.766000',5,'Samantha Hughes','https://lh6.googleusercontent.com/-Nw45tO8MrI0/AAAAAAAAAAI/AAAAAAAAAAA/he0qC-lVxMA/c-rp-mo-br100/photo.jpg','16590124370714063921',3394),('AIe9_BGIy_plKfaZrItPyyQZNLvsX7yMpJ_LepRW9at1ykU3dLn9vDaWfIAQ3YiW_-Qh5MxxCnxwCe8s0qQfhK_WyHUzi3HMTmYMMsk5ZwTR9PM1dSlWkrc','I had to go to SignatureCare for the rapid COVID-19 test and was very impressed with their efficiency in getting me tested as quickly, accurately and safely as possible. The staff were very friendly while, at the same time, extremely knowledgeable and efficient. Even tho I live in Rockwall, SignatureCare in Lewisville is where I would recommend anyone with concerns about your possible exposure should go for testing. Great job and a big THANK YOU to all the staff at this location for your commitment to your job and your community!','2020-07-25 15:10:44.710000','2020-07-25 15:10:44.710000',5,'Angie Jones','https://lh3.googleusercontent.com/-zbhsRKE2evk/AAAAAAAAAAI/AAAAAAAAAAA/m5jgi46l6RQ/c-rp-mo-br100/photo.jpg','14748677429039074158',22565),('AIe9_BGIy_plKfaZrItPyyQZNLvsX96ZWrVNG_x5qyiH95dVmfrsoxpNYOAJztAaH92mHtOLXbrzXt6p_ydg6B3ctL-4kT3Ea0-tU5lvWGH2YixbGEIwNf0','Staff was great and Kim was of great assistance. Would definitely recommend.','2019-08-17 01:25:56.620000','2019-08-17 01:25:56.620000',5,'mk go','https://lh5.googleusercontent.com/-R4p0vZt2bhU/AAAAAAAAAAI/AAAAAAAAAAA/v1Y1RGIBUyI/c-rp-mo-br100/photo.jpg','13486358490203335051',857),('AIe9_BGIy_plKfaZrItPyyQZNLvsXbDqsgcrWHn56cGscB81zRdez6vXtNPqW76EsKDQEmNQB9-yXnYKYN9WX9S1W7n82NDNS8Hi1gXvXynWQBCC0Bxe9Ek','This facility overcharges to the max. Before my daughter was even seen by the daughter I wanted to make sure my insurance was accepted. I was told that they were an in-network facility but come to find out on my EOB, they are actually out-of-network. Mind you my daughter had an allergic reaction to some bug bites. Over $1700 for some advice, something similar to Benadryl to reduce swelling and that was it. No patient bed or any other services were provided. I\'m extremely unsatisfied with the way the financial aspect of this was handled. Only reason I\'m giving 2-stars is because the liquid medicine did help my daughters allergic reaction go away.','2018-06-20 14:07:45.916000','2018-06-20 14:07:45.916000',2,'Andromeda Williams','https://lh6.googleusercontent.com/-KcLy64UH2jc/AAAAAAAAAAI/AAAAAAAAAAA/dmLBOno5Q9o/c-rp-mo-br100/photo.jpg','17898197009688164559',5930),('AIe9_BGIy_plKfaZrItPyyQZNLvsXcX3o-cVJADH8ur1hpEn6xkN0W2tEBZ4olklFC5zAC-8a0cH3iY-XR1rculVq9a1fmUSPQChNR2ceb7VtPIDRm_aa5w','Great job to the people at signature care jennifer d was very welcoming the nurse and doctor did a wonderful job as well thanks','2019-02-19 19:46:15.670000','2019-02-19 19:46:15.670000',5,'Joel Searls','https://lh3.googleusercontent.com/-EHnOINZ0XLk/AAAAAAAAAAI/AAAAAAAAAAA/7hMVO4hju5k/c-rp-mo-br100/photo.jpg','8626688543755174284',8552),('AIe9_BGIy_plKfaZrItPyyQZNLvsXMV_rgostrCt84gEX6loFBw6QXqjufHCizy2XPjjwVznd-iUeJnd90pFWWo37yK2a6kClGtE2EDHY1Bun9AEP5mbK5s','I do not normally post bad reviews but this will be the one exception for me because of how extremely disappointing and disgusting my experience was here. My daughter had/has a very bad case of strep throat, I made her a Dr\'s appointment and took her to see her usual pediatrician, upon arriving we learned that her health insurance had lapsed. I contacted SignatureCare and explained to them the situation and that she just needed to be seen for strep throat and that her insurance had lapsed. I called twice just to be sure that everyone was on the same page. Each time they said, no problem bring her in. If she is truly sick the Dr. will see her. When we arrived everything was great, its an absolutely state of the art facility for sure. It took maybe 5 minutes for us to be taken to a room and only a couple after that for the Dr to come in. When he arrived he looked in her throat and verified that yes it was bad and needed to be treated, he said he was going to get the tools to do a strep test and then he would return. Maybe 30 seconds later a nurse walked in and said that the Dr. had examined my daughter and determined that her\'s wasn\'t a life threatening emergency and in order to proceed I had to pay an exorbitant amount of money for the visit and a couple hundred more for any test done, then a couple hundred more for any treatment that she received. I tried reasoning with the nurse that this isn\'t what I was told either of the times that I called, and explained that when I called I advised them that this was just strep throat, albeit a very bad case and they said come on in. If she is sick we will treat her. Had it been a life threatening emergency I wouldn\'t have had the time to contact them twice and drive from my job 45 minutes away to their facility, my daughter and I would have been in an ambulance had it been a life threatening emergency. At any rate the nurse explained that those were my options and I had the right to refuse, which I did being that there was no way I was prepared for those kind of fees. My daughter of course starts to cry from sheer disappointment that this would happen, the Dr. returns and casually advises me that sorry they couldn\'t help but strep is one of those things that will clear up on it\'s own over time the body will fight off the infection. At this point I am thinking then why first try to charge me an arm and a leg?!? We left the facility and my daughters condition progressively got worse. I could not be more upset or disappointed than I was with these people. Don\'t use bait and switch tactics when it comes to the health of anyone, especially a child. Set the right expectations from the start and be completely transparent with your potential patients, they deserve that. I get that it\'s a business and you\'ve got to make a buck, but do it honestly!','2017-06-15 16:57:54.255000','2017-06-15 16:57:54.255000',1,'Anndrea Danielle','https://lh3.googleusercontent.com/-wLnA4MHwGOk/AAAAAAAAAAI/AAAAAAAAAAA/lIFhXgr3cs8/c-rp-mo-br100/photo.jpg','8918455867446117794',9391),('AIe9_BGIy_plKfaZrItPyyQZNLvsxNbukTFi159eQw5GTQrfVrHUY2_y1k4p1Yt6IZBh-Mv0OpI2JVy-fJfYyz1kehgpBdReKF-HG7vF6fkfKAYIEwQ1gkE','Once again the staff at Signature Care took wonderful care of me. I am so happy to have them close to my house. Everyone was courteous and attentive and I felt like I was in the best hands my entire visit. \nThis was my third visit to the facility and they were very patient and understanding with my concerns and did their best to reassure me that they were there to help.','2017-07-22 10:32:33.740000','2017-07-22 10:32:33.740000',5,'Kellie Ewasko','https://lh4.googleusercontent.com/-6tGc0E0ksG4/AAAAAAAAAAI/AAAAAAAAAAA/1XlH8Zcs7i4/c-rp-mo-br100/photo.jpg','17394740196501090048',5016),('AIe9_BGIy_plKfaZrItPyyQZNLvsy3QGOyhZvKF9jZJmeXWavG3D8TZgqHnBr2MNm1LMV9wY3dbZOY-DvJ9twpfDrz4NVJfC_iIdf1vaTnxeVNXkE_f6AFw',NULL,'2019-04-17 05:25:25.655000','2019-04-17 05:25:25.655000',5,'Chelzi Gonzales','https://lh4.googleusercontent.com/-yWT8L2eb75s/AAAAAAAAAAI/AAAAAAAAAAA/4f443RQRfeM/c-rp-mo-br100/photo.jpg','13486358490203335051',1034),('AIe9_BGIy_plKfaZrItPyyQZNLvsy7wdVGdARJuSE-P98HB4okW1zZ52t2SVpcV6dlmj4OfiBi0_dUyxlYzLeAtjQOlw9GeT7dsh4f-Z702ccR8npsMOtI4','Very helpful! I was helped my Dr. Evans, RN-Jacob, Rad-JR, and Reg- Ashlee. Everyone was nice. The visit was fast and easy as well.','2017-02-10 15:15:03.513000','2017-02-10 15:15:03.513000',5,'Megan Marthiljohni','https://lh6.googleusercontent.com/-3YfYytjt86E/AAAAAAAAAAI/AAAAAAAAAAA/jUEgbmGRXOM/c-rp-mo-br100/photo.jpg','16590124370714063921',4059),('AIe9_BGIy_plKfaZrItPyyQZNLvsyDXaMMszDEfaKLbAi-gf86ewM-Q7nCefjBZvacBTzJIkk2coWoTUwWbPdxfDmD8FZYl1ziW_UeT6CBKBOOqV7uQ4APg','Wow. I’ve never felt more comfortable around doctors before. The night staff was beyond nice, caring, understanding, if I ever get hurt or sick again I want them to take care of me\n\nIf you want to feel like doctors actually care about you or your family member, come to this location!!!','2019-02-12 16:10:52.337000','2019-02-12 16:10:52.337000',5,'Arianna P','https://lh5.googleusercontent.com/-fYOXJ6-CkOo/AAAAAAAAAAI/AAAAAAAAAAA/WBAHqDn7U8M/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4720),('AIe9_BGIy_plKfaZrItPyyQZNLvsYgSMQmecLpEJSqH3qc_XHNAMEZMwdDvztsHpXDIe1cDEP9aSUGhu2WQzny1y72gxGfqEgQvSkcyqEgG7C0cgxJ4wr1g',NULL,'2018-12-24 20:19:13.513000','2018-12-24 20:19:13.513000',5,'tik tok girl wellman','https://lh5.googleusercontent.com/-RiKjT52bRHQ/AAAAAAAAAAI/AAAAAAAAAAA/dapQFoA8WBQ/c-rp-mo-br100/photo.jpg','3272657195432704501',7087),('AIe9_BGIy_plKfaZrItPyyQZNLvsYhYVtpw1azTeZq2Kn0XoGFzAWJvrn2BRM5XAqBhplq-I-zsdv9aZLunFv95xDDf29hMUUfTnst4tiNAsNBHIc0A6mmM','Great customer service and very fast. I was seen by Dr Faig who was super helpful and also Holly was very sweet. My first time at this location and was definitely pleased with treatment and service.','2020-02-17 00:28:30.262000','2020-02-17 00:28:30.262000',5,'Debbi Shequila','https://lh4.googleusercontent.com/-eb8t3SFDeo0/AAAAAAAAAAI/AAAAAAAAAAA/QMb6POmSDN4/c-rp-mo-br100/photo.jpg','12541597562633926366',13369),('AIe9_BGIy_plKfaZrItPyyQZNLvsYoWkHGKR76cC2ZL14swBbT6_MG-teurZaALEaHONgx9pQGCirXr2qkZ_Kcq2jTSyNPb7187EjIg5LVaZPJqHcwmKZvM',NULL,'2020-03-06 07:13:34.519000','2020-03-06 07:13:34.519000',5,'Gabrielle','https://lh6.googleusercontent.com/-JLFh6-hexEY/AAAAAAAAAAI/AAAAAAAAAAA/Ml1ay4K4dE0/c-rp-mo-br100/photo.jpg','16590124370714063921',19321),('AIe9_BGIy_plKfaZrItPyyQZNLvsytqUQNShHstY-b65vl_Cv2OKt1KBo2xLov67FR6oLF0ex6DDIWjlcTdo7IwQmllFFhxNLlJr7okKdAOmKDpU7UDjFw4','registrationEvelyn very good','2017-05-12 19:20:22.725000','2017-05-12 19:20:22.725000',5,'Ashley Ashley','https://lh5.googleusercontent.com/-aXk9NIIsyUk/AAAAAAAAAAI/AAAAAAAAAAA/fwsO4DW_UII/c-rp-mo-br100/photo.jpg','17394740196501090048',5056),('AIe9_BGIy_plKfaZrItPyyQZNLvsYwniXjK_omSduVdOnYe6wcj9BxFlhYnhmHs3oNk-6CviX-GEhcyXJq-WytrZk1V9WRLRE20mtXu-ly2FlR1HDigfsoE','They are the best ppl ever Dr Fiag Ms Dee his crew are always ready to help. They get you in and out','2019-08-14 19:00:57.866000','2019-08-14 19:00:57.866000',5,'Sheterra Johnson','https://lh3.googleusercontent.com/-WJwUffMkBzA/AAAAAAAAAAI/AAAAAAAAAAA/sXw-OtfZf5k/c-rp-mo-br100/photo.jpg','3511292162159714121',7205),('AIe9_BGIy_plKfaZrItPyyQZNLvsZ8plvPXb-x-VlPogQz1boNlAA8QlNp8JuVe0xXN23Va3NJ5kRK5YFaHOJW6HoRK3c_fCQPSsMEpz8_Yr4zTU3Q56dOI','The registration: Ashley Burton made getting help fast and easy, the nurse Erica was very nice answered our questions and made sure we knew what was going on, the Tech matt was very nice and helpful and made sure we got the proper care','2019-03-13 13:54:21.434000','2019-03-13 13:54:21.434000',5,'Adapt Soldier','https://lh5.googleusercontent.com/-1jjGn0Ekf24/AAAAAAAAAAI/AAAAAAAAAAA/NkUFkaHOuCg/c-rp-mo-br100/photo.jpg','8626688543755174284',8533),('AIe9_BGIy_plKfaZrItPyyQZNLvsZGZv5e5NqCEAXZM-4uZGiST4OOk-gdFtkweTCqS5SGFZTXWu9N1illbdAO1bMd2mt3lSRwQYeMuKfBovAkFgfQDdy1U','Signature care is a great place for all you emergency needs! Tiffany at registration was great, Ashley was completely helpful with vitals and X-ray, and Dr. Curtis was so knowledgeable with the diagnosis, and John was great at with after care instructions! Everyone was great HIGHLY recommended!!!!','2019-11-02 16:34:04.189000','2019-11-02 16:34:04.189000',5,'eh emily','https://lh5.googleusercontent.com/-itW8uKJ2tOs/AAAAAAAAAAI/AAAAAAAAAAA/IZYZNGEMgok/c-rp-mo-br100/photo.jpg','8626688543755174284',14662),('AIe9_BGIy_plKfaZrItPyyQZNLvszjgWCaxv8njv6Aj6bqxhhcOV8FPHHUvTItNSegcl8tdihLe4V45m0GQh58_rQnapHhJz56Rl_Th4KDcpvTxh8480bkY','I went to Signature Care ER Center in South Austin today 12/13/19 and had a great experience. The staff was friendly, got in fast. I would recommend this to anyone.','2019-12-13 18:53:00.169000','2019-12-13 18:53:00.169000',5,'MaxpotatoYTT Gaming','https://lh6.googleusercontent.com/-s-5uIphZjUY/AAAAAAAAAAI/AAAAAAAAAAA/-ergNmKe1Bc/c-rp-mo-br100/photo.jpg','16891069708558046635',4122),('AIe9_BGIy_plKfaZrItPyyQZNLvsZmGe7tH1XDQnTVFdBlK4RQGZ5b9fUzGAAtdS1MIHmPhEc8Fslqm3nxSKOM8QRQSRyXmRYE3QY-rzZo6EnZfQwxp5QaI','Friendly staff, in and out service.','2019-12-28 03:40:58.402000','2019-12-28 03:40:58.402000',5,'Evan Johnson','https://lh3.googleusercontent.com/-6LpEBB9_etI/AAAAAAAAAAI/AAAAAAAAAAA/ly0BgfWstLg/c-rp-mo-br100/photo.jpg','14904078213800803294',13646),('AIe9_BGIy_plKfaZrItPyyQZNLvsZnbcqnLy8F1Vwjxv3VW0Ta5aF8iFdmYqUg-KZUUT6FTYmNeogM5AEh4X4uwSC_oa1DfBkbna7qyBoe7vMwtU55xVjgk','The nurses, Anthony and Remington, were very welcoming and friendly. The staff made sure you’re taken care of in the best way.','2019-01-13 23:58:27.756000','2019-01-13 23:58:27.756000',5,'Jordan mabie','https://lh5.googleusercontent.com/-o2_KH0Er-Ss/AAAAAAAAAAI/AAAAAAAAAAA/B5lKh9EQobE/c-rp-mo-br100/photo.jpg','16590124370714063921',3588),('AIe9_BGIy_plKfaZrItPyyQZNLvszZcpTybyc1HW1RMlGf36Q2layxzSd6_gncrT5IkSGCxP6U9_4nSHhZAab8wUzkjdlUnq3lOU2QBCKLOSGa3EFJFgMUQ','Very awesome service from the staff at this facility. Very caring and attentive to the needs of their patients. Would definitely recommend this location. Thank you to Fatima, Dr. Thomas, Chantel, Tanishia, and Sala for making this an easy experience!','2020-03-09 03:10:05.157000','2020-03-09 03:10:05.157000',5,'Ty S','https://lh4.googleusercontent.com/-Qp5QGQAIQSY/AAAAAAAAAAI/AAAAAAAAAAA/IRLb_xeG54w/c-rp-mo-br100/photo.jpg','17898197009688164559',19378),('AIe9_BGlY-BaOO_aND3JZqxJBS1R_4kYWYRZQTG_7EcWiN4UeJNXCn0NnqGanj9EnASPe5wb6KbKZ4pHSyQzEW4NKLcdjLldklngTjcJh6EuuoKl5FleHYY','They were great and extremely patient with my daughter today. If we ever have to come back I will definitely come back here.','2019-12-02 11:16:43.350000','2019-12-02 11:16:43.350000',5,'Kristina Luna','https://lh4.googleusercontent.com/-USf1uxLYcxc/AAAAAAAAAAI/AAAAAAAAAAA/9JhnAo1c_jk/c-rp-mo-br100/photo.jpg','13486358490203335051',710),('AIe9_BGlY-BaOO_aND3JZqxJBS1R_a4xW3jptCWde3RijHaEGKe8OO4cE8yeI8bOnNcSgRBQVG-cwW7WcQ5HtH89ig5sbsYKp030hJijwzDj5vSDGYEX3Qg','amazing staff and very friendly. didnt waste a single minute during the treatment.','2019-01-15 21:47:51.834000','2019-01-15 21:47:51.834000',5,'Adeel Neaz','https://lh3.googleusercontent.com/-R9KCT2yoN1I/AAAAAAAAAAI/AAAAAAAAAAA/23U5204ijZs/c-rp-mo-br100/photo.jpg','12541597562633926366',565),('AIe9_BGlY-BaOO_aND3JZqxJBS1R_AdQal5eMTLxss83GRuu3-JcTViVJae41wuV2YkNOT4F4hXrqxkFGbJicnhkmQEcfEpDqfUCCbg-mltFxx9nM2pKTYg','The Stafford location tested my daughter for COVID-19 in less than an hour and her results came back in 15-20 min. Thanks so much!','2020-07-09 18:49:25.371000','2020-07-09 18:49:25.371000',5,'Richmond Oilers Treasurer','https://lh5.googleusercontent.com/-R330WOez_6s/AAAAAAAAAAI/AAAAAAAAAAA/vELDl4nbkFE/c-rp-mo-br100/photo.jpg','8918455867446117794',22929),('AIe9_BGlY-BaOO_aND3JZqxJBS1R_koxbaiL4OLNKRaYSCKv9BMucAkGMW9YnUY80yXeUeKFMY842nrbR98jIgaQ8rD77bUmUsGgawkGHAAqvNhV7MC6AnU','Almost no wait time. Dr. Kotey was great and understanding. The rest of the staff was great even greater my kid and accommodations are great, best urgent care i have gone to, highly recommend.','2020-02-23 00:46:41.417000','2020-02-23 00:46:41.417000',5,'Victor Menjivar','https://lh5.googleusercontent.com/-nVHsyrNoYRk/AAAAAAAAAAI/AAAAAAAAAAA/MyTe2o_7HLs/c-rp-mo-br100/photo.jpg','17394740196501090048',14010),('AIe9_BGlY-BaOO_aND3JZqxJBS1R_LZjm7LjYtJbFERHuOEJ4Qyd_8bLPCf4nivf97Y0Djkc3oAvusmr7TQ3JBJZwd_8zGjkk4_rRiswt-Y8QQ7pvZatGgA','We had to bring my little sister up here because she got really sick. Dr.Ashbrooks was awesome, Linda was so sweet, Amber was nice, and Christie was really good with my sister.','2019-01-04 03:54:35.363000','2019-01-04 03:54:35.363000',5,'Haley Whatley','https://lh4.googleusercontent.com/-Lvp0rjHQQ8Q/AAAAAAAAAAI/AAAAAAAAAAA/PRrLmDxNRlk/c-rp-mo-br100/photo.jpg','3272657195432704501',7068),('AIe9_BGlY-BaOO_aND3JZqxJBS1R_RlkJn6XF51qCY1bEOnsEIVpuCYFyVpU5aniUmBDuUXRSKdHRYs-gSjzLiOv2i-Loi6-YNCue_8gcoPkFv6vFCSnwzI','I had A great experience at this hospital the whole staff was awesome and made me feel comfortable','2018-07-25 14:45:52.163000','2018-07-25 14:45:52.163000',5,'Harold Williams','https://lh6.googleusercontent.com/-EF8Baqmcxa0/AAAAAAAAAAI/AAAAAAAAAAA/LuOG4ac6IIQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1586),('AIe9_BGlY-BaOO_aND3JZqxJBS1R_V98Bh1_1fMUEDw8Z_haLgqkd1IJk1ClupqQcKa1d-IhjrWz915PVi-h0SenKvsbh2J39nGIJ3AvPd5kx-YdSr8sfOg','My experience here was great!! From the time I walked in the door I was greeted. I didn’t have to wait!! I walked in and went straight to the back. The staff here treated me very well. Kept me updated on everything they were doing. Marcus was helpful and funny. The facility is spotless!!','2020-03-10 16:45:48.362000','2020-03-10 16:45:48.362000',5,'Timorha Barron','https://lh4.googleusercontent.com/-nHOgzu2HTnc/AAAAAAAAAAI/AAAAAAAAAAA/UVO3HzXh6Ys/c-rp-mo-br100/photo.jpg','16389487648212004696',13714),('AIe9_BGlY-BaOO_aND3JZqxJBS1R-3ZrGGJanTmVoC9NxdU68Buyx3MOAdxskJ_TTYSMHeSTch3djUCATL8Zex5N2FhUFxGfc-VVQSvJWVytagvOu8rBup0','Dr. O Malley, Jani, Marcus, Elisa and Aurora were so helpful in making my ER experience pleasant. They made me feel comfortable and were very helpful. I would definitely recommend coming here!','2019-10-01 20:44:50.758000','2019-10-01 20:44:50.758000',5,'Vera Olenn','https://lh6.googleusercontent.com/-Ol48netaog8/AAAAAAAAAAI/AAAAAAAAAAA/hg-rgGXo8lk/c-rp-mo-br100/photo.jpg','16389487648212004696',2867),('AIe9_BGlY-BaOO_aND3JZqxJBS1R-7jI1qLGL0XJE9YerB_qrooikJfSTt_DmxvuT3QHws6Uj5VHi8BUQKAdP205fJyAt44JCef6D2453ymev4BT8l6CrCM','Excellent customer service.','2018-07-19 18:44:00.358000','2018-07-19 18:44:00.358000',5,'Salman Ali','https://lh4.googleusercontent.com/-8VlEUn7MFbY/AAAAAAAAAAI/AAAAAAAAAAA/kpRUkXPMapo/c-rp-mo-br100/photo.jpg','8918455867446117794',9257),('AIe9_BGlY-BaOO_aND3JZqxJBS1R-7yIdE4H1dpWcP4B5-Id9S2TQ9rw3k02YpdPWY07lFEa7MrXcOTo41GaW5750ZQyY5cJoMWVVdwvu-dAbfbeIvtxtZs','Great... Tory was awesome!!!','2016-06-11 05:20:57.817000','2016-06-11 05:20:57.817000',5,'Claudell Vital','https://lh3.googleusercontent.com/-uGeTloRuNCQ/AAAAAAAAAAI/AAAAAAAAAAA/KYqvl8RInAo/c-rp-mo-br100/photo.jpg','3511292162159714121',7987),('AIe9_BGlY-BaOO_aND3JZqxJBS1R-NgfpkCc_yKIp2pvBgzCuhqSlDkNT5HlPSVRTL9YGaG4JVLQdvkJXiS93EfxKwkg7-cNscLvQrHIq_hqYSV0d0AhvY8','Everyone from the front desk to the doctor were very professional. They took care of me right away. I spent a little over two hours at the facility and left feeling a lot better. I would definitely recommend Signature Care. Thank you Dr. Giancarlo, Alexandrea and Tiffany!','2017-05-23 11:58:43.605000','2017-05-23 11:58:43.605000',5,'Diane G','https://lh5.googleusercontent.com/-IVzmk9SMjfM/AAAAAAAAAAI/AAAAAAAAAAA/c-f-YOpzG80/c-rp-mo-br100/photo.jpg','14904078213800803294',2354),('AIe9_BGlY-BaOO_aND3JZqxJBS1R-qyaNwdLH3sf77KMQZDXmwPJA_re2RhLwRuQEj6wSv0Gx1_rsXrFk0h4NLi-avzHoJjAXVlfQTtnucp8kOarAl8fFsI','Very professional and caring.','2019-12-11 02:47:20.205000','2019-12-11 02:47:20.205000',5,'VANESSA GOMEZ','https://lh3.googleusercontent.com/-3GLYBYZlGvc/AAAAAAAAAAI/AAAAAAAAAAA/8YN4lM_4wQQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8064),('AIe9_BGlY-BaOO_aND3JZqxJBS1R-ROkWqXr_3Nj0SahMyLTjPYHkMlEarS-JT3zP9suh_3vdN-xvRS73Ft6_kJsohFBmIUIcap9TWLo-Jq7B3Z8jS4mjl0','Awsome experience....awesome staff. Answered every question I had. Very quick and very attentive. Will recommend others there rather than going to an actual hospital. If i ever have another emergency i will be there!!!!','2017-05-17 13:50:48.566000','2017-05-17 13:50:48.566000',5,'Brittiny Shorts','https://lh3.googleusercontent.com/-qLoGEMkYTBI/AAAAAAAAAAI/AAAAAAAAAAA/Ikx-Db-OdZE/c-rp-mo-br100/photo.jpg','3511292162159714121',7823),('AIe9_BGlY-BaOO_aND3JZqxJBS1R-Sn7ONDF0USr3tCdl_eztJzX9eXAwEo_Zqo1DUwhApMzuUTblVVjB7Nc6wmmAfzd1qRA18yWo3TAlO0-UPRPgMFN3XM',NULL,'2020-07-13 19:39:24.070000','2020-07-13 19:39:24.070000',5,'Jeanie Jimenez','https://lh3.googleusercontent.com/-JasbHLaSqx8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclZjOpd0Cb-QDwJSqmOcvQi4mK9Iw/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21964),('AIe9_BGlY-BaOO_aND3JZqxJBS1R-sxKoXEVYaZ6VUW1NSbI5JMgJI0BGOSfeflXMns_RcNzRyWzfAgfMaZ534JZiBYrGA8usvhCiFTCu8bZIU8Ck6xu980','Highly recommend! I received the BEST care at SignatureCare emergency center in the heights, the staff was some of the kindest and caring people I have ever met. I spent no time waiting and was given constant attention. Not only are the doctors, nurses, etc. beyond exceptional but the establishment was very clean with new medical equipment. Nurse Staci (I believe was her name) wasn\'t even my assigned nurse, yet she spent every moment of my time there with me easing my pain. At the end of my visit Dr.Sylvester left me feeling confident I was properly diagnosed and was on track to recovery. I can\'t express the amount of gratitude I have for SignatureCare Emergency Center and the staff that work there.','2019-03-13 16:16:40.080000','2019-03-13 16:16:40.080000',5,'Alexandra s','https://lh5.googleusercontent.com/-n0jUgjKMuYs/AAAAAAAAAAI/AAAAAAAAAAA/80LLgIZAC9o/c-rp-mo-br100/photo.jpg','14567670160750071148',1366),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0-8uSuk_vtaUYS5Zb36O77YbItJvVZ7FC2oBkhByevNWA_zE7P6U4hI4Sk3On1sbZWv5-MSGpNr53aB4nZntHg3Plvs','This was one of the best medical experiences I have ever had. I was my worst version of myself, in so much and so nauseous, and the staff here was nothing but understanding and kind. They believed my pain and made me feel listened to and comfortable. 10/10 would recommend. Dee and Leslie at the front desk were angels.','2019-02-28 20:25:42.493000','2019-02-28 20:25:42.493000',5,'Lili Bauerlein','https://lh5.googleusercontent.com/-JBPB3SAjaGo/AAAAAAAAAAI/AAAAAAAAAAA/onhw0pHRRE4/c-rp-mo-br100/photo.jpg','3511292162159714121',7394),('AIe9_BGlY-BaOO_aND3JZqxJBS1R09MBfaiYwbcc4N8CfW9xqiINz62vBjDoZw11zM5d3pF8rcYpFB7ulMt4vuGbeDgDMAbJ5jm1veoWkEGbC5nj0hAWJDw','Worst place to get tested!!! If I would’ve known the wait time to get tested was over 3 hours I would’ve went elsewhere for the same prices and results for antibody and antigen same day. Staff was rude and the young lady at the front desk wasn’t even wearing a mask. \nI had an appointment at 1AM, wasn’t seen until 3AM and was there until 5AM. Its been two weeks already and I still can’t get my PCR and antibodies results. It’s ridiculous.','2020-07-30 16:06:15.272000','2020-07-30 16:06:15.272000',1,'Yulisa Castaneda','https://lh3.googleusercontent.com/-3R0XG_Z0z7k/AAAAAAAAAAI/AAAAAAAAAAA/yJIZLz0UulE/c-rp-mo-br100/photo.jpg','14748677429039074158',21900),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0HGBD6KaRIvr6cZwQTQSJRsR0Nll9cFiBj9knrovAE0TfgetEbs009iMqsRBVbm5ea007kXmx2REU8FQHXXA9Bw-SKM','Service was awesome! Experience was great. Staff was super friendly. I️ walked in didn’t feel very well, but the doctor and nurses make sure when I️ walked out of the emergency I️ would feel better!','2017-11-11 16:27:07.691000','2017-11-11 16:27:07.691000',5,'Uyen Huynh','https://lh4.googleusercontent.com/-HxyqNmk2hlM/AAAAAAAAAAI/AAAAAAAAAAA/1Uv8winZBaw/c-rp-mo-br100/photo.jpg','17394740196501090048',4934),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0oPGpTILSzKRgVkFHktto2WhyPFjpIIRBZNtItxKB7NVjKx-SyIR1JH_T5pYladMg2o4J8wDnzdbRuhN-anDTROcp7g','Amy at the front desk was SO nice and helpful!! \nChris was my RN and he was super friendly. \nDr. Ding was beyond helpful and explain my illness and treatment plan in depth and made sure I didn’t have any more question. \nI will definitely come here next time I need to be seen urgently!','2019-04-27 21:03:46.978000','2019-04-27 21:03:46.978000',5,'Chelsey Porter','https://lh6.googleusercontent.com/-ChfRccs0Q5s/AAAAAAAAAAI/AAAAAAAAAAA/KeMu-WsPlfo/c-rp-mo-br100/photo.jpg','14567670160750071148',1336),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0rwzuayz3ujD3laFvR0s7KrMFUxKmLIICW7mIUVFjNiKELnP3PAUzB8NubqI8BRZdSMygMod0wzegMm2W8ovis36zBg','Dr Das and his team were amazing! I’m currently pregnant and the team took extra care of me! Awesome job!','2020-08-22 01:10:15.470000','2020-08-22 01:10:15.470000',5,'Bailey Cameron','https://lh3.googleusercontent.com/a-/AOh14GhKKHPt85vXYlDSVri6C2YDXKVqoIWyt91fYe0XLQ=c0x00000000-cc-rp','14748677429039074158',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0SbcjrfurY_FhoHjB9mJsmT86nb1Xf7f5T7y_Pj_JShvUGI8gLf5UlOSsXbzdQr6fvoLIw9TmPJXYUTBofna5_oSe9M',NULL,'2019-02-05 16:10:46.866000','2019-02-05 16:10:46.866000',5,'Sandra Philhower','https://lh5.googleusercontent.com/-kxk_QrTDAOk/AAAAAAAAAAI/AAAAAAAAAAA/IiVae8isnmc/c-rp-mo-br100/photo.jpg','8679688254631342173',8878),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0TI7wMxAVrNmuhw4RnjlzqaEBbXiJCTTM7U71ylRIzCMAOp-n2FXFd8gOTcDjrHYbLcYzdpfVvXEIvEcdI6j1V9KzA4','Dr. Levitt, RN Tony, RAD Bryan, Tech Ricardo, and Rn Regina were amazing. They knew how to handle my situation and were constantly checking up on me. I was very satisfied with how I was treated during my visit. Very professional.','2019-06-18 06:15:00.267000','2019-06-18 06:15:00.267000',5,'Jon Eva','https://lh6.googleusercontent.com/-K_uZ_aS6CME/AAAAAAAAAAI/AAAAAAAAAAA/0UcWmM7_Yco/c-rp-mo-br100/photo.jpg','14567670160750071148',1294),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0TnpS1CvWbHPMBqfvW1erkf24N05ffIuITiVP3EvTihhrLgLhTxYOUKjXlbVcLm_vbxQC0hVmSqmzaATqGZH0Jdfey8','This is a wonderful place to go when you have an unexpected situation verses a conventional emergency room ; fresh coffee \n, snacks and the staff was very professional and quick to assist with a sick toddler, I\'d recommend signature care over other I\'ve been to ; definitely appreciate Dr.Leavitt and staff , Stephanie, Rollie and Natalia','2019-10-23 01:42:59.822000','2019-10-23 01:42:59.822000',5,'Cory Black','https://lh6.googleusercontent.com/-soveU6ebscE/AAAAAAAAAAI/AAAAAAAAAAA/l315pafnIG8/c-rp-mo-br100/photo.jpg','8679688254631342173',8778),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0VduiMFry8QDvkkB_nlGkhJOntGsXtEO8lpI-0kediWMxfAv-bSVrNjufiddlHNH47ECaa-9nlIXXjY4XBRBFfN36ck','Staff was great. Super polite. Received the care that I needed quick.','2020-08-02 02:26:39.670000','2020-08-02 02:26:39.670000',5,'Edgar Cruz','https://lh3.googleusercontent.com/-j2wYnuXGruI/AAAAAAAAAAI/AAAAAAAAAAA/mtDX_z_QTRg/c-rp-mo-br100/photo.jpg','2077061009497551125',22971),('AIe9_BGlY-BaOO_aND3JZqxJBS1R0WgOGPnKFVMzAW-W6mF44zVhlve3ZBuG8nDaB1JoFo4QHtppCRbZDwoW-wglnGo6K62R-sNZiPTVjDm_wWoln8MFGfQ','Amazing care from the start, Amy the receptionist was very kind and walked me through everything . RN Gina was very sweet and attentive. Dr.Ngozi took very good care of me. I would highly recommend this place to everyone!','2019-04-09 02:45:37.971000','2019-04-09 02:45:37.971000',5,'Aislyn Escalante','https://lh5.googleusercontent.com/-jsjmNfgG2TA/AAAAAAAAAAI/AAAAAAAAAAA/aRxM-A_jf0k/c-rp-mo-br100/photo.jpg','3511292162159714121',7367),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1Anw5G5704DN6yxei0C0kQ5Wg0Rxg7EwdL_QTjgUVBUeggniGdRGVryc1xapO83ChcHOfOi-rztnIRGZ7SBKKbu-lws','I came here with my fiancé, and the staff was very quick and thorough. Everyone that helped us was incredibly nice, and explained everything very well. Shout out to Alvean, Tricia, Dr. Patel, and Jasmine for helping us out today! We will definitely be returning for any medical needs we may have in the future!','2019-06-06 18:34:49.192000','2019-06-06 18:34:49.192000',5,'Kaleigh Treiber','https://lh6.googleusercontent.com/--UGzt6CX9lg/AAAAAAAAAAI/AAAAAAAAAAA/bDnbKfhEBjQ/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1GUD6-nH790xG_DmUrFf7TrLi_VEbzKmzLEHxkbZFr8HAiROBcVjPGVwdmjtGpsIsG4n_20fYZxJprngLPY2WKFir_8','I am really thankful for the staff there! I Went Midland for holiday but got real sick and mom was with me but she did not speak English. The nice doctor really helped me with my anxiety and accommedated for our situation.','2018-11-25 15:22:26.202000','2018-11-25 15:22:26.202000',5,'Qingqing Xia','https://lh4.googleusercontent.com/-NrUydnOaoJA/AAAAAAAAAAI/AAAAAAAAAAA/VO7k_J1XE68/c-rp-mo-br100/photo.jpg','6521947413723274945',8335),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1iDSMG48ArtSLzwXdTckymmHrB79_sOAgn5NPkkVTduJZb0vhUB7lLVxZL-ariID1rYflDZzOv4Idm0FQP_NE5QB08U','Dr. Patel and Ms. Bethany, RN took excellent care of my husband and I after we were in a car accident. They were very imformative, extremely efficient and made sure we were comfortable as soon as we we walked in the door. The best ER experience I\'ve ever had. \nI highly recommend Signature Care Odessa, Dr. Patel and Bethany, RN.','2019-03-30 05:13:27.255000','2019-03-30 05:13:27.255000',5,'Holly Harridge','https://lh5.googleusercontent.com/-hLBTMPlUMvE/AAAAAAAAAAI/AAAAAAAAAAA/MT5obPPi1gI/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8294),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1ihBrkpm7MFgwgbW74xY1eed5cvucCp6OoyEy0yfdVnGaJ04uiaz1f7Zpkim8KEw_9-TWlk91eKWPHrhXjqM0i7my9U','From the warm greeting by Jennifer at registration, Erica and Valerie\'s kindness in the patient room to Dr. Dillions patience with a momma and all her questions, I highly recommend this establishment for thoroughness and professionalism!','2019-01-17 18:22:10.892000','2019-01-17 18:22:10.892000',5,'Ashly Kuma','https://lh5.googleusercontent.com/-CRrGeBXhIGE/AAAAAAAAAAI/AAAAAAAAAAA/NnZ_EdVeeJ4/c-rp-mo-br100/photo.jpg','8626688543755174284',8585),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1JFYPkH8WT3tDQJ4pgkHNdbBmjdktu87LpQbU9aaIEETCUo7Ipn-59HI8KUBfIeN-6Oul2f8fk0RHKy2lUnKfaRnGpQ','Everyone was really helpful. Kendra and Jacob have been great, they have helped me in a really timely manner each time I’ve been here','2020-03-01 21:48:31.896000','2020-03-01 21:48:31.896000',5,'Anna Stehling','https://lh5.googleusercontent.com/-kkWgL8OuEZI/AAAAAAAAAAI/AAAAAAAAAAA/ol0oJdJIL9w/c-rp-mo-br100/photo.jpg','16590124370714063921',13810),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1Kj2k-ooputoM_LSwjjd1vRaTT9Fox_xphc1Nse49rFh32euoRBXZqUzduolgZutNdjkx2q3KOLTbebIBr_1HYDQ-Gw',' My first time here was the best experience. I was greated as soon as the slide doors opened, was in and out with in 45 mins. I think the price is very good especially if you don\'t have insurance. I\'m very pleased with the help I recived. Thank you all so much.','2016-10-30 20:13:36.085000','2016-10-30 20:13:36.085000',5,'Victoria Vega','https://lh4.googleusercontent.com/-cgzpIRsY498/AAAAAAAAAAI/AAAAAAAAAAA/c6WyzTpo_-0/c-rp-mo-br100/photo.jpg','14567670160750071148',1951),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1KjAhNbHfWtD-nDOCI4faXhM_-jl5nOxeZetxTsBDjzoNQCU5iEhB5WzL8GUdixQ5fiNGiQCgQrS5gwRtmU3cj8Rkuo','Cody and JD where great with us.','2020-08-03 15:04:36.718000','2020-08-03 15:04:36.718000',5,'luz Quezada','https://lh5.googleusercontent.com/-gdzdBfr0J7g/AAAAAAAAAAI/AAAAAAAAAAA/i69JfR0Jg2A/c-rp-mo-br100/photo.jpg','2077061009497551125',22761),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1Ld8UsopE0kjtQ0Hi2Rlfm_E-bw_FlHJIM7Mg6BthbW1Ane8ViKsQ-iPf4TOKKEsqVWbN1W7Gw1QC2oziASP7fgvNq8','I took my daughter who was having a very hard time breathing and the entire staff was so friendly and very helpful. They knew how to handle my daughter because she\'s only 2 and was freaking out. Thank you guys so much.','2017-11-15 02:33:26.121000','2017-11-15 02:33:26.121000',5,'Joanna Castro','https://lh6.googleusercontent.com/-DnceiDmTfEw/AAAAAAAAAAI/AAAAAAAAAAA/JiRT6F_wEyg/c-rp-mo-br100/photo.jpg','16891069708558046635',4535),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1Noi_qoStqDWYqPVR3ho4URUmZk6cIX-Mz15XDjVS-gllwO3Symqhcy_7i0YjKqt83SFShFa2tip9DhRGAbHCV1a6Sk','I came in with a friend who experienced Chest pains and shortness of breath. The staff was very helpful and Fatima was very nice and helped me and my friend calm down. Also doctor Dunn was very helpful and understanding. Love this place. ♥️','2019-11-11 06:46:38.906000','2019-11-11 06:46:38.906000',5,'Korbin Mosley','https://lh3.googleusercontent.com/-TKX0eRy2wm4/AAAAAAAAAAI/AAAAAAAAAAA/L4-Iuri-Zck/c-rp-mo-br100/photo.jpg','17898197009688164559',5445),('AIe9_BGlY-BaOO_aND3JZqxJBS1R1X1t7o59AD-IwthjMfxuO9D5TLdNz_M0He1EKT5tJy-hvGygRUWEWdCwC3jV60X7RLZclb6BtQAXFMZbGpVxBC4eQEQ','I arrived with 2 sick toddlers, my four year old son and 2 year old daughter. The registration nurse was very welcoming and kind. We sat maybe 10 minutes in the waiting room, granted it was 1030 at night so they weren\'t busy. Either way we were taken back to a room and both nurse Billy and Dr. Curtis we extremely kind. They were considerate of both my kids and they\'re different symptoms and Dr.Curtis explained they\'re symptoms and diagnosis while he examined them. They were offered juice and chips. They were given blankets and my daughter was even gifted a small bear. This was my second trip to they\'re emergency room and it was just as wonderful the first time around as it was the second. I have nothing but love for the signature care staff and I will be making this my children\'s regular emergency room when they need a late night visit to a doctor.','2018-12-10 06:54:41.223000','2018-12-10 06:54:41.223000',5,'Megan Kelley','https://lh4.googleusercontent.com/-Yr5RQOGahMk/AAAAAAAAAAI/AAAAAAAAAAA/IPycCWCfEzg/c-rp-mo-br100/photo.jpg','8626688543755174284',8631),('AIe9_BGlY-BaOO_aND3JZqxJBS1R24i9oGHL01cbyWGKmBQ5nIAhB8lBeQ4GeMvqgmAKiOHXZEeXb94ae6DFG59tZXh2ZpNkCcYJ6PpVBgJAGw-alJIEpE4','Amy A is the best and chexked me in and out quick','2019-02-04 22:16:00.073000','2019-02-04 22:16:00.073000',5,'George Smith','https://lh3.googleusercontent.com/-w3I9N1i1vkQ/AAAAAAAAAAI/AAAAAAAAAAA/GWG1VLQat8Y/c-rp-mo-br100/photo.jpg','17898197009688164559',5865),('AIe9_BGlY-BaOO_aND3JZqxJBS1R2jxXigtyICqnsnedYP8MMfyzB5YtLvmm_T5IBSCWLA6mP4fEFRJij9wyLmMaq3QLCqwxszfXczrWhmhnm9Vq3SXII8I','Great experience! Very professional, timely, and efficient! Can\'t say enough good things about the nurses and their professionalism.','2020-08-06 17:18:48.014000','2020-08-06 17:18:48.014000',5,'Leonard Moon','https://lh4.googleusercontent.com/-3B7LY3Lg7b8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclOxQBFhGOw2QVoW92WBvX8FSLxgA/c0x00000000-cc-rp-ba3/photo.jpg','3511292162159714121',22134),('AIe9_BGlY-BaOO_aND3JZqxJBS1R2kS0ovslMxt-mRP6h_W3dxUdXZxduEDfiq1XMSPCZdRoUzQTgG9Bt8yZMvBy6FDY1J6OpckfdL0UZqe7zkNtsAdDyd8','The staff was sooooooo nice I got seen in less than 10 mins everything went by so smoothly and fast they made me feel better and comfortable no moré ER visits for me this will be we\'re I will be coming from know on thank you guys doctor nurses awesome 🙂','2017-01-21 01:04:54.143000','2017-01-21 01:04:54.143000',5,'Jeselyn Torres','https://lh5.googleusercontent.com/-6K_t_bFUjd4/AAAAAAAAAAI/AAAAAAAAAAA/41FNDTG0Jr0/c-rp-mo-br100/photo.jpg','14904078213800803294',2425),('AIe9_BGlY-BaOO_aND3JZqxJBS1R2QF4ExW6r-MmkBeDlMayeLe4R1FBUCtMo3BClOyo35XS94To7CBUsYa2YC3gkKx_jLzAzYcX31PTQ2aECZVvSCS1wgY','Customer service was perfect! As soon as I walked in everyone was very friendly and helpful. It was an easy experience.','2020-07-27 18:42:50.958000','2020-07-27 18:42:50.958000',5,'Kathleen Monsivais','https://lh6.googleusercontent.com/-y9IK26g2v8I/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnNRq6t_9yPHct0BcDIN3uZhcoo5A/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22015),('AIe9_BGlY-BaOO_aND3JZqxJBS1R2wXIXe6Yk42PKQOepk23hAQMjmymLwlusCxXft1QRdMzlOljJg2FwDN_mONHSHcEEmvKNwzK7rynZiFD59PoGdOSbMA','Great service! All the staff was super friendly and attentive thank you Dr. Yusuf, Nurse Naureen and the friendliest receptionist Amy!','2019-06-01 23:52:52.381000','2019-06-01 23:52:52.381000',5,'Darlene Garcia','https://lh5.googleusercontent.com/-EM4llXfCNYc/AAAAAAAAAAI/AAAAAAAAAAA/taYCY69CIZI/c-rp-mo-br100/photo.jpg','3511292162159714121',7315),('AIe9_BGlY-BaOO_aND3JZqxJBS1R2z6cMTr9wCbTWb_m7aebBGFurl8fBXS16jIJTlh6a3DnZ253Smyy9gEoGn7p_OU2Jb0883GOiklVN2manx6WZ-Vm0HI','Dr Starr is wonderful. Araceli, RN was very helpful and will definitely come back again.\n\nThe staff at Signature care are very nice and pleasant. They\'re very patient with everyone. All nice with a positive attitude.','2020-03-03 20:08:45.667000','2020-03-03 20:08:45.667000',5,'Gabriela Ciesielski','https://lh5.googleusercontent.com/-7Umb-2FMhNw/AAAAAAAAAAI/AAAAAAAAAAA/mib2937clqw/c-rp-mo-br100/photo.jpg','6521947413723274945',14515),('AIe9_BGlY-BaOO_aND3JZqxJBS1R2Zz-xl4-4M0Ugh2X_RcLInnwNibZvucRNswwq1aZ8SrxrtSfSNA78w_pVpN0g5ZIjMzrU5k4sLJBo0lAboU66GEzFfc','Great customer service very friendly and helpful','2020-07-25 20:47:06.975000','2020-07-25 20:47:06.975000',5,'Mansoor Maraghi','https://lh5.googleusercontent.com/-FGIjG4-QBYw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmzAAPpNzrbBWt1WhrBhSOHmAaIyQ/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21868),('AIe9_BGlY-BaOO_aND3JZqxJBS1R3EHsvihgg-zrVDXRJ2yU4tLmfRQKSt1pvik78mZpq4VrY3qtpJgDCi3Ma1gRIoNv2SbPFhkkQgp0WgFQXxOdGMqYJd0','Worked very fast not a long wait time. Emergency center was nice and clean','2019-11-04 23:45:17.740000','2019-11-04 23:45:17.740000',5,'Michelle Engroff','https://lh6.googleusercontent.com/-LD5flbVR2sk/AAAAAAAAAAI/AAAAAAAAAAA/WI9eSGQ2E1Q/c-rp-mo-br100/photo.jpg','2694018788013845459',6020),('AIe9_BGlY-BaOO_aND3JZqxJBS1R3gGusXaFIhf6YwxlkscTqFjf_Z5ykB9r0rmlAzLdqgbIsmvkH67RxD8PIwGZz3jy_OOE6QJWT8lmZNBd-tbfn5zKg_M','I had a great experience with Dr. Patel, Ekaterini S., Kat K., Patricia C. They made sure I was comfortable and I was in great condition before discharge.','2019-10-05 03:55:03.970000','2019-10-05 03:55:03.970000',5,'irionne hunter','https://lh3.googleusercontent.com/-kjLu2xRpSAU/AAAAAAAAAAI/AAAAAAAAAAA/klAdDUlsPXY/c-rp-mo-br100/photo.jpg','16389487648212004696',2851),('AIe9_BGlY-BaOO_aND3JZqxJBS1R3inuZIFXLlB_8BZn2b0NDC6gWtnFE4jJu-MVYOXTspU03_ma4sXJMdQNA1-s0jCFkIKMQFwLgPoFfRMbfoWCoLG2gNU','I\'ve been here a couple of times and the care has been top notch. I went straight back to a room immediately both times and saw a doctor within a few minutes. I\'ve been really satisfied with the staff interactions and the speed of service. That being said, I\'ve paid out the a**hole for these visits. They\'re in-network for my insurance but they\'re still billing insane prices. I was billed 1050$ for an IV and still ended up paying 215$ out of pocket after insurance. All in all, 2 visits here for a stomach bug and a few staples has ended up costing me almost 3000$ out of pocket, with insurance.','2019-06-06 21:16:31.504000','2019-06-06 21:16:31.504000',4,'Tricia Carlisle','https://lh4.googleusercontent.com/-E8NCKdtt5kQ/AAAAAAAAAAI/AAAAAAAAAAA/19Gk9-VvZso/c-rp-mo-br100/photo.jpg','16891069708558046635',4257),('AIe9_BGlY-BaOO_aND3JZqxJBS1R3K2IxcpZ_iPW26IfvYJm5ls5ymwf60AECADTQwMypqMbPtHRsB2LNjqV68cMf3I8DV13nTi3IjyJzHTV1UspLe-rpIw',NULL,'2019-05-12 14:37:00.745000','2019-05-12 14:37:00.745000',5,'Viviana Coles','https://lh4.googleusercontent.com/-pkjjnIIjXfg/AAAAAAAAAAI/AAAAAAAAAAA/BLQDg1nPdb4/c-rp-mo-br100/photo.jpg','14904078213800803294',2138),('AIe9_BGlY-BaOO_aND3JZqxJBS1R3L0uUcEKSXu-urYEQwhAyli2Lxjxihixw2zCLAKbKsHPUrPh8VFNys3q4jLCcF82wVmO02dvZ9AydPZlqChV5iOp-94','The service was amazing and quick. Doctors and staff are very nice and open with their patients. Great hospitality. Instead of going to a hospital, I would recommend this place.','2017-01-28 01:41:34.905000','2017-01-28 01:41:34.905000',5,'El Alv','https://lh4.googleusercontent.com/-c_sTBC0Owmk/AAAAAAAAAAI/AAAAAAAAAAA/w2YCo9uZCRw/c-rp-mo-br100/photo.jpg','17394740196501090048',5125),('AIe9_BGlY-BaOO_aND3JZqxJBS1R3ndFiqbBIY1u7-8wql6_QudecK_ETMDXzFJPLkiIX_4Mt7VAzQJ_YUTe8ayV16z4eV5vbM5SqcwHBV9heVBn0hYqeSI','jessica s was very sweet and wonderfull, the dr she was awsome, great place to come, staff is very nice and attentive.','2020-07-21 11:48:13.810000','2020-07-21 11:48:13.810000',5,'Ariel Galaviz','https://lh3.googleusercontent.com/-JpRynTMG3RA/AAAAAAAAAAI/AAAAAAAAAAA/SD23zvUIZNA/c-rp-mo-br100/photo.jpg','14748677429039074158',21631),('AIe9_BGlY-BaOO_aND3JZqxJBS1R3RtQHzKKlFQOzsJGnp4Pb-Usy192gTZBcBCuA5dZ5qKMpTJL2LnRt9wGjt4W7-LtsD1n0X0oEozjMsj0Q8yVkipPUto','(Translated by Google) They are very professional, attentive, respectful, super friendly, 100% satisfied with the treatment of Dr. IHEME, Nurse, ALVEAN, Radiology, MARCUS B AND JOCELYN A at Registration\n\n(Original)\nSon muy profesionales, atentos,respetusos,super amables quede 100% satisfecha con el trato grasias Dr. IHEME,Nurse,ALVEAN A ,Radiology ,MARCUS B AND JOCELYN A at Registration','2019-04-01 21:29:49.037000','2019-04-01 21:29:49.037000',5,'Angelica Rodriguez','https://lh4.googleusercontent.com/-srEDwglW1rY/AAAAAAAAAAI/AAAAAAAAAAA/JoFvY3dnOnk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1R3YuZFZsvnux9UsWruAicWzuAqptJfMGTeE0r7aRt4SWNcVelUPVUpfMjJsbVRyjqcylIxGNew00i5bwt1Cd4VkhAHvc',NULL,'2020-08-08 16:39:34.388000','2020-08-08 16:39:34.388000',5,'Jennyfer Tucker','https://lh3.googleusercontent.com/-2ZPYQ0A8t0A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmwH0Kl-ocCeMmeAtruIG-7QVyaeA/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21979),('AIe9_BGlY-BaOO_aND3JZqxJBS1R40BCBZMRYZDk-8gEI21s-nwSjceFYE1s-NDFaUkmm_Nayj5AyNGfkdQfhwIqFPneybBQN1NCQI6_UafqUyOAt5o6hvw','I went in because I was really sick and couldn\'t get in to see my primary care physician. They saw me right away and I feel I was taken very good care of. They were very attentive and professional. I would for sure go back again and recommend them to a friend.','2017-10-23 16:30:26.410000','2017-10-23 16:30:26.410000',5,'Dustie Hollon','https://lh3.googleusercontent.com/-RsqTI7vtoeg/AAAAAAAAAAI/AAAAAAAAAAA/RRq_n8bdo6M/c-rp-mo-br100/photo.jpg','14567670160750071148',1744),('AIe9_BGlY-BaOO_aND3JZqxJBS1R46xoopCWf_nfTDv0fRwGRFmmiGXu1SKbGZLKPzj1lP1DSf_YeCqy4wVgPJEgc-PT6Mbi1jtXgHmneMhidOP6rNEDPds','It was great service and the wait was very minimal. The whole staff was very nice and accommodating to my needs to make me feel better. Everyone very professional and helpful.','2018-08-30 06:52:28.157000','2018-08-30 06:52:28.157000',5,'Jesse Herrera','https://lh3.googleusercontent.com/-ev8IqNkAY6s/AAAAAAAAAAI/AAAAAAAAAAA/QoS5l_hzJi4/c-rp-mo-br100/photo.jpg','14567670160750071148',1538),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4BGzEIMBOtejiZ0l8IyDqT-pcW_ey-ABM8lrRE0e9DZPqHCLvGEtuE8aZpWZa-6QvC8f4pI3gkO7O5U5zTPYjPvLCOk','The staff is extremely attentive to the entire patient experience. They not only made sure all areas of medical needs were addressed, but that the patient is comfortable with the procedure. They go above and beyond to care for the physical and emotional health of their patients. I used to have some hospital anxiety, and had no trace of that here.','2019-01-10 04:48:59.544000','2019-01-10 04:48:59.544000',5,'Sophie Hutsen','https://lh5.googleusercontent.com/-B0URWimofZY/AAAAAAAAAAI/AAAAAAAAAAA/yliASjNsBn0/c-rp-mo-br100/photo.jpg','3511292162159714121',7497),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4GjfBwo4mvI2P5pJ1GoUIPuIlv8QyullOHJpTZeODz9t_7gOtCuo4pDqIkIimU4PWwprmq-arweoO5U6G5sYT5gCed8','All are very professional and very compassionate. Dr.Garcia ,Jessica RN,Dawauld Brandon and Samantha are awesome and are very knowledgable..The facility is so clean.I would recommend this ER to all my friends and family.','2019-09-27 19:52:57.971000','2019-09-27 19:52:57.971000',5,'Sanjith success creation','https://lh6.googleusercontent.com/-_IbwFqzoMVQ/AAAAAAAAAAI/AAAAAAAAAAA/fPQWrrnBxr8/c-rp-mo-br100/photo.jpg','8918455867446117794',9067),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4ifMEj0VTkkXppJ_y9prdPMxOumzAl0Q5Beb1u0kNc9MDaIvNyAf7bZ1FJ4TVzgfhxOkBJra3UBbRCwskcZowGYfJCQ','Had to go in for my husbands knee injury. From the moment we stepped in the door everything was amazing. Greeted immediately by friendly; smiling faces. Our wait to pain treatments were under 10 minutes. We were asked by everyone if we needed anything to make our visit more comfortable. Better service here than any fancy hotel I’ve been to. Thank you to Rebecca, Remington, and Dr Lingan.','2019-09-22 21:27:40.069000','2019-09-22 21:27:40.069000',5,'Amie Floyd','https://lh6.googleusercontent.com/-bMQnaj882x4/AAAAAAAAAAI/AAAAAAAAAAA/yDrPQQkkqUA/c-rp-mo-br100/photo.jpg','16590124370714063921',3183),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4LErSwwmXZykO1XZd_4EFC1uEe7D0rRDEdf6EAWYo-H6JWdOxVYZ7tfIS2e6B5eCC-YVtg8N7N8Olvwca6A2pqzSloE','This place was amazing and helpful! Thanks for everything! Staff was great','2020-02-23 15:30:41.885000','2020-02-23 15:30:41.885000',5,'Louie Lovejoy','https://lh5.googleusercontent.com/-SUYihpcvUi4/AAAAAAAAAAI/AAAAAAAAAAA/CKtuxyZXDXc/c-rp-mo-br100/photo.jpg','17898197009688164559',14135),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4nUKvfPe_ETDpwIwAy5Jqh4cINCWIM8rzpt4IlIBi59sk_c0Zc9vIeqEnOw-xcsa94kbFmDmfx7jpnIQ2ZIRE_DhYVM','Registration Reshaad was great very polite.','2020-02-09 05:46:09.624000','2020-02-09 05:46:09.624000',5,'King J','https://lh4.googleusercontent.com/-9F_uduBwt1Y/AAAAAAAAAAI/AAAAAAAAAAA/sagL2kOR_mU/c-rp-mo-br100/photo.jpg','17394740196501090048',14022),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4pRkw__kvuQhQ6dliZdhmUItR7GqXjR6IRPtQVcxVoh8bKlotuCYWBimAQKPFsELQ8v0DdkIoF8VONAU-ovxVfEqeBE','Keera had excellent customer service, she was very welcoming!!!','2019-04-23 15:07:55.046000','2019-04-23 15:07:55.046000',5,'shamekia Cloud','https://lh4.googleusercontent.com/-fBHBG99dD0A/AAAAAAAAAAI/AAAAAAAAAAA/rZCpZGtwSSs/c-rp-mo-br100/photo.jpg','17394740196501090048',4685),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4tSCR-q2XUJ9BRuiniY0__SdgcrIqfkLVM9g8kVg_p83neZsnoFGHgMk92N4aM4Wto9GAdlozCDAf4RuvbYx2NY73Iw','Lisa H. And Jamie P. Greeted me immediately as I walked through the door. They went above and beyond to service me and quickly get urgent care for my emergency','2019-08-27 13:38:27.509000','2019-08-27 13:38:27.509000',5,'Alejandro Escamilla','https://lh4.googleusercontent.com/-uBJAs4qYljY/AAAAAAAAAAI/AAAAAAAAAAA/AtuREO2pvYI/c-rp-mo-br100/photo.jpg','13486358490203335051',845),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4WmfHSV7ejEdD-9zSgctJQGqnR9rkgA_rHuygSsPFqRav4hgKzJzAEilJtxP04rkoLBjL2RfnWj5CB9_suyi9PtOms4','It was pleasure stopping at Signature Care ER. Everyone was Professional, authentic and polite. I will tell my friends and family, and I would encourage others to stop by.','2019-04-17 03:32:45.884000','2019-04-17 03:32:45.884000',5,'Charlotte Smith','https://lh5.googleusercontent.com/-9eO4d6VHSiw/AAAAAAAAAAI/AAAAAAAAAAA/R3Wv2eddLZ4/c-rp-mo-br100/photo.jpg','17898197009688164559',5770),('AIe9_BGlY-BaOO_aND3JZqxJBS1R4xlkijleGvOTYLOsLqgPaJHDM-DNaweqji2eXAGyv9cKNM1Kto1OiCAzm3Ij8tifgfs2OoiKALnVPxa3w05suLlQJvA','Alvean, Marcus, Patricia and Dr. Nguyen were very professional, caring, efficient and listened to my symptoms carefully. They work well together and the service was gracious and fast. Thank you all for a pleasant experience.','2020-03-03 14:08:41.755000','2020-03-03 14:08:41.755000',5,'Rosa Fernandez Arroyo','https://lh3.googleusercontent.com/-msuFeVe5l-M/AAAAAAAAAAI/AAAAAAAAAAA/TDnAZs7_mek/c-rp-mo-br100/photo.jpg','16389487648212004696',13743),('AIe9_BGlY-BaOO_aND3JZqxJBS1R51P3bLC6FHSihauHXdZLEfwfcAf_00pjb95L8pMaW4tFS71zvWpQlaMbPy-KjAUvAdu3LMNqxmAPC4GCenB2CmpKXjA','Fast, effective, professional and nice crew. I highly recommend this place.','2018-01-05 10:13:06.859000','2018-01-05 10:13:06.859000',5,'Nicolas Charvet','https://lh4.googleusercontent.com/-TJRB1KPSbNM/AAAAAAAAAAI/AAAAAAAAAAA/4oem29Rm1Hc/c-rp-mo-br100/photo.jpg','14904078213800803294',2294),('AIe9_BGlY-BaOO_aND3JZqxJBS1R56iWwNhmdQDyj2uZ41i_l2VwCUOE6O5aTEJc-m4DFdrzhpSUrHqYtIqX-gdQSZ_WNmsFpQD2QCi08O_8bkuiSg-gi7U','We had a great experience! Caitlin, Mckenna, Jenci, and Brooke were very friendly and took great care of us.','2020-07-24 01:17:06.402000','2020-07-24 01:17:06.402000',5,'Sarah Mills','https://lh6.googleusercontent.com/-o9vW7MRXEQE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclo_cMfy6Yk6dsAnE12rxPiBgtASw/c0x00000000-cc-rp/photo.jpg','8626688543755174284',22234),('AIe9_BGlY-BaOO_aND3JZqxJBS1R59_A9L89vnscsEeyJwb1_Tora9t1uPfCPb6s9cS878pe0Iojcks8CoPzeSYA4pEbQQJ5wUd44VMeMqvNarvboDTC1rs','This experience was really good','2017-06-14 18:18:15.768000','2017-06-14 18:18:15.768000',5,'Bre Perry','https://lh3.googleusercontent.com/-ltRdUbCYdjs/AAAAAAAAAAI/AAAAAAAAAAA/yuAnkkpYdB4/c-rp-mo-br100/photo.jpg','17394740196501090048',5035),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5B9rwHP9Tq6GIGXP-tGOr7MWUj4-IhlkQcj4TnkQc8uyZzppVeCx57o2nhzrsBsg-X2qIOS6pXvqpS9qaIgB2N0Habc','(Translated by Google) Excellent and very friendly service\n\n(Original)\nExelente y muy amable servicio','2020-07-04 14:42:25.945000','2020-07-04 14:42:25.945000',5,'Junior Montoya','https://lh3.googleusercontent.com/-koJQSoyaq6s/AAAAAAAAAAI/AAAAAAAAAAA/zv_8KM53HrI/c-rp-mo-br100/photo.jpg','8918455867446117794',21500),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5bgYq_beDSGvFNfek7-0DLT8RpMtFX28-pjmdqROH0RydU_O-bdC05nYxxj5_ucMdpfbhn0Qm7iczOkg3E_qZdKQqQs',NULL,'2020-02-25 18:28:28.946000','2020-02-25 18:28:28.946000',5,'Miranda Jamison','https://lh3.googleusercontent.com/-xYUyioijmUM/AAAAAAAAAAI/AAAAAAAAAAA/5OXuX8t_Whs/c-rp-mo-br100/photo.jpg','6521947413723274945',14545),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5bk2LLLGW_b5pcTZbAmoyqhw9rBAEgxsbgn3IC5lJdFLi5rUx8xojQ-P987FnaWH5F6y0X423SXEez9bTD618wSaAyg','Amazing ER facility! My daughter hit her nose and we were in and out in probably 15 minutes at most! The receptionist, Lorena T was so sweet and was working so quickly to get us checked in! Nurse, Brad S/ Remmington was so caring and helpful and Doctor Harjai came in right after and explained everything we needed and let us know exactly what we need to do for our daughter to get her feeling better. That was the BEST doctors visit we have ever had, I would reccomend them to anyone and everyone! Thank you all for being helpful and caring for us, we appreciate it more than you know!','2019-08-04 22:51:13.038000','2019-08-04 22:51:13.038000',5,'Samantha Griffin','https://lh3.googleusercontent.com/-u23GG-NtfoQ/AAAAAAAAAAI/AAAAAAAAAAA/qPgKZQyDMd0/c-rp-mo-br100/photo.jpg','16590124370714063921',3265),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5bMOwd9eYCbB9FFVkjMoq-5jZc19zEIWZ_-mfKiX6xdiqgi-kTmYOxPwwQrJUBHw4a6OsgOT7dQGf0nD077N7qNqnK8','Very friendly and professional. Nurse Dawn, Oliva, and Eve were amazing, and Keaire in registration made the whole process painless.','2019-08-30 13:25:51.850000','2019-08-30 13:25:51.850000',5,'Tomas Silhan','https://lh6.googleusercontent.com/-VGDPxW3zmKM/AAAAAAAAAAI/AAAAAAAAAAA/uvi13vPX0JQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7188),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5dXGBa-4O1bb1NsMEk0y6vS0o9Oh7OMw_3qGqb0IUdgmOHs9ypfNU85VNqIuvzo-_0yH2FrhyNnA_Ay1ckyEODQ9BCU','I am beyond grateful for the care I was given here at signature care in Lewisville. I am glad I made the decision to come here past midnight for intense facial swelling that was getting worse by the hour. I’m not sure what they did different than every other doctor I’ve seen, but my swelling was FULLY gone by the next evening after taking the antibiotics and cream they prescribed, and after they drained the area. Although my insurance wasn’t taken, the price was extremely competitive and was cheaper than other clinics I’ve been to. I am used to waiting over an hour at clinics, but i was seen almost immediately after being checked in by the friendly lady at reception, jennifer. She welcomed me and I was no longer worried, she was very caring. My team was dr mauldin, Steven and nick. Everyone was professional and seemed like they truly cared about my problem. It was handled all quickly and professionally. Dr Mauldin even called me to follow up and make sure all my medicines were working, and it just added to the level of care I am so grateful for. I will recommend this place to anyone who has an emergency, and I even left with a goodie bag with bandaids and other misc items. Overall a fantastic experience I am so glad I chose this place.','2020-05-17 23:48:03.388000','2020-05-17 23:48:03.388000',5,'Laura Tarafa','https://lh5.googleusercontent.com/-Xw3O6h_jd_k/AAAAAAAAAAI/AAAAAAAAAAA/XNm_7iQVZAk/c-rp-mo-br100/photo.jpg','14748677429039074158',21786),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5j8BpdnqPTMxmR_eWNSrLHGZJyt_6aWyMfAOqWrFO5Tvp_xmQs9rFQhgw2CrE6crPz3S3KYHvG9i-TzXdweQNOjGu7A',NULL,'2017-01-22 04:52:17.320000','2017-01-22 04:52:17.320000',5,'Lourdes Heres','https://lh5.googleusercontent.com/-6lV0duxF7Hw/AAAAAAAAAAI/AAAAAAAAAAA/_KBxrEax5ng/c-rp-mo-br100/photo.jpg','17394740196501090048',5127),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5Mfb-pmAWpGbJT4_7U7dix9iqv1jEkJfWV8Jk5vD8dbPwQfA7m60TDB4b98uAJYfPPBGhhVznxLhNehgwnY_PQ5WtfU','Great experience with the most fantastic team on today! Receptionist was very sweet and kind with a welcome greeting & i got offered a warm blanket. Nurse Kristina, Rad Tech Hahn, Dr Zheng, Reg. Malissa, & Er Tech Scott','2019-07-19 16:45:44.057000','2019-07-19 16:45:44.057000',5,'Jor\'Dhyn Kennerson','https://lh5.googleusercontent.com/-N6ei0Ic3qeY/AAAAAAAAAAI/AAAAAAAAAAA/FKhOoLGRtzs/c-rp-mo-br100/photo.jpg','12541597562633926366',487),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5MUgFm8iw0DAJe3Jg7GTeetT_Bj-bSCxa4Kj09hP_-Hrs_01s6eKOyq_cpHl5mFS745SRdTWrP2qlE3PAZ1ucWni5ho','Very polite staff and fast covid testing results.','2020-07-26 21:11:52.122000','2020-07-26 21:11:52.122000',5,'Jack Reigner','https://lh5.googleusercontent.com/-ZVQAD9vbLN4/AAAAAAAAAAI/AAAAAAAAAAA/dSyHozA_st8/c-rp-mo-br100/photo.jpg','2077061009497551125',22818),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5s9vQqNHbkJyhpOAIwqxImMHBLATkm7NOXh6ULJBVKdegXifBYmPn-htQ8M86_j5opUXlqScTGR9OHrcSaJf5ZxxxkE','I was cared for by Kendra, Dr. Vakey, Nurse Jacob and Victoria. 10000000/10 service.','2020-02-16 19:06:02.727000','2020-02-16 19:06:02.727000',5,'Mika Generao','https://lh5.googleusercontent.com/-F36yKJ3Er8o/AAAAAAAAAAI/AAAAAAAAAAA/iT6ONb0HDwo/c-rp-mo-br100/photo.jpg','16590124370714063921',13849),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5WZhEDWvqHJEecflL30zAfICCpNxKi57hnYDrtncrB-5qyq784kUv50e6I1nVGV-tV0IbIXhNvvD6kDMtbURhjbGTT4','Efficient, Professional, and Listen to the Needs of the Patient. Highly Recommend this Center.','2017-04-05 14:57:04.480000','2017-04-05 14:57:04.480000',5,'Shana LaCrosse','https://lh4.googleusercontent.com/-UZLd_Ec0ufw/AAAAAAAAAAI/AAAAAAAAAAA/QIsurmqWo9Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1855),('AIe9_BGlY-BaOO_aND3JZqxJBS1R5xE1yskZHUnUD-ZveVaIZIx6njQ64S8idb0fPQFA3GCKFt-pfP8Ko4whov3aI6AJ06pGZjuz4evDl5matrSW75-rL5Y','Awesome place had great help from Theresa M. Thanks for everything','2020-07-16 16:42:17.144000','2020-07-16 16:42:17.144000',5,'Gerardo Chacon','https://lh4.googleusercontent.com/-yf-4Yt7tf1k/AAAAAAAAAAI/AAAAAAAAAAA/PPTzhbXmHZI/c-rp-mo-br100/photo.jpg','6521947413723274945',22896),('AIe9_BGlY-BaOO_aND3JZqxJBS1R6Cp7frakvrc1lD2ddwnFeSHQoCTDnsyhtglio0ffitDEtodH7BQVMwx6AJHZk5TSg2p65U1p89aTRZltTnIdzEVGSKo','Great staff. Everyone is so nice and took care of me right away. I can’t thank Dr. Ding, nurse Monica, and ER tech Ralph enough.','2018-09-29 04:27:10.338000','2018-09-29 04:27:10.338000',5,'Marisol Aguilar','https://lh5.googleusercontent.com/-znmvlWZ6cic/AAAAAAAAAAI/AAAAAAAAAAA/YNWeH5P0PtA/c-rp-mo-br100/photo.jpg','17394740196501090048',4782),('AIe9_BGlY-BaOO_aND3JZqxJBS1R6eXjuRt8kZHqGtMpW9JizI4GUNvRPxILE1LG9ofjvTwrMM_6aP8mtGmo8Hnjqe26uks57JT2NtxhgkgUQgYzVUgqKWo',NULL,'2019-07-08 20:33:57.855000','2019-07-08 20:33:57.855000',4,'gabby severin','https://lh3.googleusercontent.com/-ciTErfriTiM/AAAAAAAAAAI/AAAAAAAAAAA/tqOCKbLpvzQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7259),('AIe9_BGlY-BaOO_aND3JZqxJBS1R6QEHlHbXQ543G2644269_8g2roYFj5ppYK3kcBPsYB8Omm9sNbEsw9QduQi055OaYiAjSyKhfJDE4oxfzIxrEdEgp9U','Spent the night in observation in Paris. Could not have received better care. Excellent facility.','2019-10-12 15:54:28.250000','2019-10-12 15:54:28.250000',5,'Vickie Garrison','https://lh3.googleusercontent.com/-6BWrG3utjxM/AAAAAAAAAAI/AAAAAAAAAAA/Ita6CJd5FGM/c-rp-mo-br100/photo.jpg','8626688543755174284',14668),('AIe9_BGlY-BaOO_aND3JZqxJBS1R6Tku1_Q9n2I_IwelJbWf2uAfwGaqdFqoi6qtcAJl0yHJoBwlffLzJIS9CaGltFMj-i09nnYEUOQnxDnQjW42tBlw0Nw','Dr. Miller and all the staff were amazing !!! Dr. Miller is eye candy🤷‍♀️ Just letting the ladies know . Very great visit inspite all my pain ! I was helped and fixed up in a very timely manner ! I definitely recommend this ER for all emergency purposes! God Bless and take care !','2019-07-25 12:29:48.133000','2019-07-25 12:29:48.133000',5,'Tabitha Hurst','https://lh3.googleusercontent.com/-3Qcy-Na8b3E/AAAAAAAAAAI/AAAAAAAAAAA/-BItklv6PX0/c-rp-mo-br100/photo.jpg','6521947413723274945',8180),('AIe9_BGlY-BaOO_aND3JZqxJBS1R6UZyissBokwmcgAZvzq4G-oWeJkzi1N1tktAwV6_CksZw50X6hsIKNb1g8OLhaEqA4CIyBalElX-_A8IcsmUe5Ejmec','I was on hold for 1hr and 45 minutes. I just wanted to ask simple questions regarding testing. All the wait to just hear them pick up the phone and hang up. Trust me if I had all my answers by visiting their website I wouldn\'t have called in the first place. I understand they are probably overwhelmed with calls as I was on hold for a while but the least they can do is answer some simple questions. This is unacceptable during the time where many people are wanting simple answers. I am sure that if I went in it would have probably been a bad experience.','2020-06-25 01:29:38.368000','2020-06-25 01:29:38.368000',1,'Cristal Tovar','https://lh5.googleusercontent.com/-1fDM5gspgN4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckXK6wswd2gL_ER_caD3VfNlsqPeQ/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21279),('AIe9_BGlY-BaOO_aND3JZqxJBS1R7asiKdBo3tvOIVqSurAO-PL62q53fbabHhMcAYrDdo5xRhr2WMrlrkmZkgF0pFBoEp18EEotCbOrehPf9GsvvvfttMk','Stephanie was awesome, friendly and professional. The front desk nurse Mercy was very polite walking in and leaving out. GREAT EXPERIENCE!!!!!','2019-06-11 15:20:19.994000','2019-06-11 15:20:19.994000',5,'Timothy IndisBih','https://lh4.googleusercontent.com/-ZWIdjdJMFGw/AAAAAAAAAAI/AAAAAAAAAAA/pH5xem-U00c/c-rp-mo-br100/photo.jpg','12541597562633926366',499),('AIe9_BGlY-BaOO_aND3JZqxJBS1R7fwXFaOTQR2xHbjyqEkJM3VyhKrWvgGJeDWT_Kxc3qFk3-8wF6YjdzIGU_GS2p7ZsbDjplWpGFVPQto1tbEzOKlfZWs','I wouldn\'t typically describe cutting my hand open as a pleasant experience, but being cared for at SignatureCare Montrose definitely was. Every staff member from entering to exiting was attentive and friendly. The kind demeanor of my doctor, as he stitched up my hand, put me at ease. I also had zero wait time, which I was not expecting. I will absolutely choose this place should I find myself in another emergency situation.\n\nI\'ve since returned to SignatureCare, this time with horrendous food poisoning. The staff and care I received was equally excellent. They go above and beyond to make you comfortable in an uncomfortable situation.','2019-07-18 15:05:47.530000','2019-07-18 15:05:47.530000',5,'Lyndsay Cavanagh','https://lh5.googleusercontent.com/-SilTJo5yfPk/AAAAAAAAAAI/AAAAAAAAAAA/XbM0DHGFDs0/c-rp-mo-br100/photo.jpg','3511292162159714121',7244),('AIe9_BGlY-BaOO_aND3JZqxJBS1R7hdn7Jg-rUBhWXExSpW8nT2fSp-UPLpb8hwSdAEpeDncLlHY-2n-FJz0QaN2O3prsYLstJ7kiFMl4M_febrpo69eYxs','we had really good help from Lucas, Sherri, Kim, and Dr.Curtis','2019-02-14 22:51:19.616000','2019-02-14 22:51:19.616000',5,'Deja Cornelius','https://lh5.googleusercontent.com/-drfSEFyrMiw/AAAAAAAAAAI/AAAAAAAAAAA/OLdfpJZEoPw/c-rp-mo-br100/photo.jpg','3272657195432704501',7016),('AIe9_BGlY-BaOO_aND3JZqxJBS1R7isJ1edoei6Vs1NAIwG74qCdvwMwPWDQbkv23G_-zarvxWOEXxFLUTInO6LRNRgmEe8P1yvGGIMvUEhrj3SrGWyG3dA','Dr. Jones, Karen(RN), Kim, & Sherri(RAD tech) they were very friendly & the customer service was excellent. I look forward to coming again.','2019-01-30 23:28:02.366000','2019-01-30 23:28:02.366000',5,'TMA Lit','https://lh6.googleusercontent.com/-ro8CDZ_IFYs/AAAAAAAAAAI/AAAAAAAAAAA/2AY_nBgEYag/c-rp-mo-br100/photo.jpg','3272657195432704501',7034),('AIe9_BGlY-BaOO_aND3JZqxJBS1R7KEerNaPawMP6VXpuk6aryWYDMdMi_j3LVNdRSn2-6BY0rDkGus1cIfbjJ_H00Z18NmGS7LnfVdViIzHj4MQGsa1JXs','They were polite and efficient. Very professional and helpful! Definitely recommend this place to anyone! Alyssa and Karen really made me feel comfortable despite the nervousness i felt behind my visit!','2020-06-25 21:24:33.615000','2020-06-25 21:24:33.615000',5,'Rafael Arredondo','https://lh5.googleusercontent.com/-IYQP8FLJdDo/AAAAAAAAAAI/AAAAAAAAAAA/apKQ4FUR4DU/c-rp-mo-br100/photo.jpg','8918455867446117794',21268),('AIe9_BGlY-BaOO_aND3JZqxJBS1R7mcevpM2HNxW8QtHyZ6whOusz6ruM9QVBXk8rqreBkptYsxa8gAQdHkcKeh090cDVr7YJFPnI1MB-NwvsCjLvXvvC8k','No more waiting in the lobby for assistance when u feel like u dying!! Great people, friendly and they take good care of u. Dont forget to ask for Dr.Kotey ,nurse Naureen/Jessica M.\nER TECH : Josh\nTECH: Carletta\nREGISTRATION: Keaire','2019-07-24 02:08:33.047000','2019-07-24 02:08:33.047000',5,'Brenda Beltran','https://lh4.googleusercontent.com/-JXEe_R6pu68/AAAAAAAAAAI/AAAAAAAAAAA/Ig-qANo9XGs/c-rp-mo-br100/photo.jpg','3511292162159714121',7241),('AIe9_BGlY-BaOO_aND3JZqxJBS1R7t1gVqit5TW-xSYLXJ7eLB9Am6z2umbSC3NKCishjwHo68Vf7d8mvqsgzi-GIdiMfjb1sr-s7h0QPYQsKXXRMTLA7nY','I love this place. You ever need to see the Dr. in an emergency situation this place see’s patients fairly quick. From the time walking into the facility until the time you leave is an awesome experience. The girls at the front desk Alyssa and Kelsey provided us with exceptional customer services. The building is very clean and always have snacks, drinks and warm blankets for your stay. They make all the nightmares and long wait stories you hear about hospital’s Totally diffrent outlook and experience. Your in good hands here','2020-07-04 21:09:50.545000','2020-07-04 21:09:50.545000',5,'All Cana','https://lh3.googleusercontent.com/-pK7gE8NGsog/AAAAAAAAAAI/AAAAAAAAAAA/-5-TPQivibQ/c-rp-mo-br100/photo.jpg','8918455867446117794',21497),('AIe9_BGlY-BaOO_aND3JZqxJBS1R7Y_kLyl7JxJQfO5vrAKkdsH6xd9wkvXzIDyDGkI7sRk6bcShd01DMuis3QJ-EJG-5XwfMGv5rRh1K5CCtjdkR0DTrok',NULL,'2019-01-23 02:29:46.669000','2019-01-23 02:29:46.669000',5,'Ryan Maddox','https://lh4.googleusercontent.com/-gkZz7NItzz0/AAAAAAAAAAI/AAAAAAAAAAA/RibsAPW-vFk/c-rp-mo-br100/photo.jpg','13486358490203335051',1093),('AIe9_BGlY-BaOO_aND3JZqxJBS1R8APOOdA-8JjYgDyu3Wth7h7NpkAbFEkZm8pInvFBoDBj36oZT83kKaV9KC1HVKgBhv5BcAUL-4i9NKx8WXFauQgtqRU','Dr. Werzanski, Gabe, Becca, Kathleen, and Lindsay were great. Special thanks to Gabe for being so attentive and caring. I received fantastic care.','2019-07-03 04:37:56.281000','2019-07-03 04:37:56.281000',5,'Caroline Bosley','https://lh4.googleusercontent.com/-uLyndY3mFls/AAAAAAAAAAI/AAAAAAAAAAA/TVpiAdQRbMo/c-rp-mo-br100/photo.jpg','16590124370714063921',3322),('AIe9_BGlY-BaOO_aND3JZqxJBS1R8EPTjPhLYNON_3LSqSqHgpq1icE10LpJRCSoOp-bUNcU1kNTp3VMwYRpsTPUKX15L1PcOqjxA1-8PqNlRulzsFwkpuA','Dr. Harjaj, Lindsay, Gabe, Cameron, and Becca were all very friendly and helpful. We were seen very quickly.','2019-07-10 06:02:18.232000','2019-07-10 06:02:18.232000',5,'Suzanna Cronyn','https://lh3.googleusercontent.com/-srkqQxhJa8Y/AAAAAAAAAAI/AAAAAAAAAAA/LBGDv15ur58/c-rp-mo-br100/photo.jpg','16590124370714063921',3305),('AIe9_BGlY-BaOO_aND3JZqxJBS1R8l-uJHZIdM-cStQtI5pBHuwEpU3em_s1_JR_XJwNYP_iqRrxd0oWv2TzcSKnkvSXdWVqjgHmXaH1RLpBeME16IG5_Dw','They were very professional and nice. Felt very comfortable the service was excellent. Definitely recommend this E.R. anyone.','2020-02-03 23:51:07.087000','2020-02-03 23:51:07.087000',5,'Brandon Daye','https://lh3.googleusercontent.com/-cTKIE5CAhYc/AAAAAAAAAAI/AAAAAAAAAAA/ttayQfJTd8o/c-rp-mo-br100/photo.jpg','8679688254631342173',14765),('AIe9_BGlY-BaOO_aND3JZqxJBS1R8LzPTeQWY0X2C4Voqjx8zbQf3vjwI950AkNI1z6_7AhcXsIE94xAwzclJxYgw9h03nqtkBYqceKxjx-Xi46ZNK6MP_Q',NULL,'2017-09-10 01:18:55.640000','2017-09-10 01:18:55.640000',5,'Jonathan B','https://lh6.googleusercontent.com/-o5kwe8AtxAI/AAAAAAAAAAI/AAAAAAAAAAA/TcBON51REwg/c-rp-mo-br100/photo.jpg','17394740196501090048',4980),('AIe9_BGlY-BaOO_aND3JZqxJBS1R8SLGBCSCjs_1seGj6SJ0rfsQU_mrRW-wq5KKX7liQxGcyHwknjd2pbD3lmmmFFprXEqcdfAXO0lyXjapnnMZY45QHI0','This place is fast, affordable and the bedside manner is unbeatable!!','2018-02-08 02:39:50.385000','2018-02-08 02:39:50.385000',5,'Ashley Perry','https://lh6.googleusercontent.com/-AnffOmI2ZfU/AAAAAAAAAAI/AAAAAAAAAAA/-b6iNbAvnSY/c-rp-mo-br100/photo.jpg','14904078213800803294',2285),('AIe9_BGlY-BaOO_aND3JZqxJBS1R92QvK9dM3xT1tIV-6aklr8OiQqsVtbDBIZ_dd-U6n9TD6WTKQyCPU_d-ax817_ht0WrMyKOJ-1fes9DqDtnJi_c9mSE','Very friendly and helpful! Clean and caring environment!','2018-08-21 15:19:23.104000','2018-08-21 15:19:23.104000',5,'Collier Thomas','https://lh4.googleusercontent.com/-mSsjbG9Uqic/AAAAAAAAAAI/AAAAAAAAAAA/0-xA42fk2pY/c-rp-mo-br100/photo.jpg','16590124370714063921',3782),('AIe9_BGlY-BaOO_aND3JZqxJBS1R9bLtFQZBy9l0orXw6Jva5OOOSc-M8KanG6ThVKtDYP7stqwmVcoZf6XavhvLY-4_p2vLaJIb4M9Z5PatTePFlHwi6kA','I dislocated and fractured my arm during a drunken night, and the FIRST night Joshua, Luisa and Ekaterini were so patient, gentle and VERY helpful throughout the entire process. I had to return with numb and blue fingers and Dr. O’malley, Troy, Luisa (once again) and Sean were so much help yet again. I had a speedy check in both times and everyone was do friendly and helpful. Will definitely recommend and definitely return if need be!','2019-09-18 02:43:38.255000','2019-09-18 02:43:38.255000',5,'Jazzmine Dunlap','https://lh5.googleusercontent.com/-Gc5YmvCMsd0/AAAAAAAAAAI/AAAAAAAAAAA/hsAVfN2dDG8/c-rp-mo-br100/photo.jpg','16389487648212004696',2904),('AIe9_BGlY-BaOO_aND3JZqxJBS1R9CeBqsvQ7HJkEb5EU0ozj7YLkg2gKQmT72LXn2X7MjaNYeu0wxo1xfmH7N0u8BnHxnOaZ6f3OB9PblGxbHckYECpFFE','Great , very well organized and caring','2017-12-15 21:32:55.446000','2017-12-15 21:32:55.446000',5,'ron kostel','https://lh5.googleusercontent.com/-haeO6HMDRRU/AAAAAAAAAAI/AAAAAAAAAAA/tsZNexyURpY/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4914),('AIe9_BGlY-BaOO_aND3JZqxJBS1R9hqnR-Q2MOkwkWBUtAaGvfV4aKo4nUbwn92yHyRvKlAyTcmZGoZ_CdY54SdEuicgy99W-GsfaQcveVwOrcF3GZQKsyA','Love how they treated me. Loved all the nurses great job. The doctor very detailed.','2020-01-25 13:09:08.904000','2020-01-25 13:09:08.904000',5,'Wendy Gomez','https://lh5.googleusercontent.com/-zgfH9DNirTA/AAAAAAAAAAI/AAAAAAAAAAA/AqbeitrjSH0/c-rp-mo-br100/photo.jpg','12541597562633926366',10098),('AIe9_BGlY-BaOO_aND3JZqxJBS1R9PQ45x-LZfm4xlDPI0fm8CoYuPuaCAQPdtmZgWn7QNjZ43kH-Ue4ZBV6E574xNh1w3zLRuvFXI_eAEnTDMcXGE5OyBE','No wait when was there. Good service. Would definitely recommend if you\'re in need. \nDr. Thomas, Susan R, Laura H, Daniel B, Briseida M we\'re on staff','2019-11-19 04:21:34.311000','2019-11-19 04:21:34.311000',5,'Nicholas Dorn','https://lh6.googleusercontent.com/-7YaaDIFvsKs/AAAAAAAAAAI/AAAAAAAAAAA/CB8iGAtb73Q/c-rp-mo-br100/photo.jpg','17898197009688164559',5424),('AIe9_BGlY-BaOO_aND3JZqxJBS1R9uW6RBUgLjNq7GJlPMElsBno7cXzqiJrnzyxDQQe_9CXrzJ8CptFbNzVQSEu9zezBLL95mnTRwwrs2dtM7WCYNPEhZk',NULL,'2019-04-13 11:07:45.811000','2019-04-13 11:07:45.811000',5,'yousef khallaf','https://lh3.googleusercontent.com/-pjTANGc-2UI/AAAAAAAAAAI/AAAAAAAAAAA/Rii8lBURIvA/c-rp-mo-br100/photo.jpg','16590124370714063921',3432),('AIe9_BGlY-BaOO_aND3JZqxJBS1R9wNPVIcRhXbHG1YmuqXiZmWGXSq60XjBFdtpdnMmCw06YGBa85r72NL7mMPFuqx0K-7ZI7SeBtHwIQ5EdiAvr9Taxuc','This place is fantastic! Super friendly staff.They even have snacks. The front desk is run by 3 ladies named Okarys, Rebecca and Rebecca V.,they are absolutely amazing!!!!','2019-12-06 00:51:55.095000','2019-12-06 00:51:55.095000',5,'bri geaslin','https://lh3.googleusercontent.com/-kNeyYF-SUkM/AAAAAAAAAAI/AAAAAAAAAAA/twYvuJEV97w/c-rp-mo-br100/photo.jpg','16590124370714063921',3052),('AIe9_BGlY-BaOO_aND3JZqxJBS1R9yYUSYexkrBzZ87EW5R7H-1Lk1Nt1u--9jcz-0A0Su_DdwFxovZ_Ni8sqYee2S5Shy9wCZfF_-sxH1see7R0C4JScMQ',NULL,'2020-08-02 00:26:45.658000','2020-08-02 00:26:45.658000',5,'Vesta Williams','https://lh3.googleusercontent.com/a-/AOh14Gh9c1ERyZHFBROeLCsuKUZsPe3vwmZeCAmwyR5UHQ=c0x00000000-cc-rp','12541597562633926366',21795),('AIe9_BGlY-BaOO_aND3JZqxJBS1RA5K0wdyAfwaUrJ5BJ8zYO8TCObBcVpvm8UTPM7rn5ALwrYrQi2IeQLmOj4FKhXCSTgIozdDHd1TLuYJvMqtgCX7fCjY','Would like to thank the staff here at signature health for supporting my family thank you Ms.Cat for being so nice and friendly that truly helped during our visit ❤️','2019-04-24 00:05:04.193000','2019-04-24 00:05:04.193000',5,'Mariah Booker','https://lh3.googleusercontent.com/-HTfNl6GfI8g/AAAAAAAAAAI/AAAAAAAAAAA/zcqTlvG1hdI/c-rp-mo-br100/photo.jpg','2694018788013845459',6169),('AIe9_BGlY-BaOO_aND3JZqxJBS1RAC4bkTQonCgp42zrHTKy6GkCCWgX4S2VOwRbRsb4Br9XxDwE_qjArpuZKCdhMDhSO7oN9nu1xnEjjSauwtdt3exdGSQ','THIS FACILITY IS AWESOME. I sought out an ER facility at 2:00 a.m. for excruciating leg pain. However, I wanted a good facility and good staff; therefore and started reading google reviews of a facility near me BEFORE I made the drive from Pearland and this was fit the bill. My husband called first to see if they would take my insurance, they did and we immediately headed there. I cannot tell you how satisfied I was with my experience from the minute I walked it, as I was barely seated when I was taken back by the nurse. Thereafter, I immediately saw Dr. Daniels, she was very kind and thorough and was concerned about MY concerns. She ordered multiple x-rays and was immediately taken back and the tech was so kind and caring. I then had an ultrasound and experienced the same kindness, even though she was not on staff and had to be called in for it. DO NOT HESITATE TO USE THIS FACILITY IF YOU ARE ILL.','2019-10-09 11:45:59.330000','2019-10-09 11:45:59.330000',5,'Denise Bridwell','https://lh6.googleusercontent.com/-ordM54Uyd1w/AAAAAAAAAAI/AAAAAAAAAAA/jRI4E6W9Zgg/c-rp-mo-br100/photo.jpg','3511292162159714121',7163),('AIe9_BGlY-BaOO_aND3JZqxJBS1RAfU39pHPernYCLRxsZ-j9HijeRxGtvNE_AylU6etc8-l8VKBPlOZwOpwITau4V6lcor-Vt4--gXlENf5z725aIwVg78','LA has negative reviews I will put a negative 5 star rating due to the reason I come in and I have medicaid and medicare they do not accept that I would have to pay out of pocket. As a disabled person I will rate this hospital or ER whatever it is a negative 5 star rating they want us to pay out of pocket they should not even call themself an emergency Room','2020-03-13 01:36:46.153000','2020-03-13 01:36:46.153000',1,'Ricardo Garcia','https://lh3.googleusercontent.com/-qd0wxjWaDSQ/AAAAAAAAAAI/AAAAAAAAAAA/yAzmaoNLxZ0/c-rp-mo-br100/photo.jpg','6521947413723274945',21170),('AIe9_BGlY-BaOO_aND3JZqxJBS1RagzAMpTptakNgajhj4ozxlKMPM69UlFb7Ca0mpkGUsVFCtP7IpNvwpsuqp-uviV_o8M3QLOSoXMDXDLd1Gjn2h1R1DM','Aaron Ortega was awesome and helped me make several appointments for some guys from my office. Thanks for your help!!','2020-06-26 21:52:24.512000','2020-06-26 21:52:24.512000',5,'Connie Bearden','https://lh3.googleusercontent.com/-DmJCcxQZqnk/AAAAAAAAAAI/AAAAAAAAAAA/jTkf_iMqnRk/c-rp-mo-br100/photo.jpg','13486358490203335051',21260),('AIe9_BGlY-BaOO_aND3JZqxJBS1RaI2yio0ZVvAbDelaPXqLyo8Qpzmr5MvDPk5wSXpTGV2V1gyY1Sm3TxcvbDiHqqs4CaJBq3RqeXgh_w8DIehjKUD7fe4','I went here one Wednesday night at about 10PM after my Mother woke up saying she couldn\'t breathe. We brought her in and the doctor assessed her and claimed there was nothing she could do at the moment. She said this as my mother was clearly is severe stress and panic. They deemed it a non-emergency even though she COULD NOT BREATHE. When we called the doctor back in, another nurse came in a big large white male who came in SCREAMING at me and my brother who were worried for my mother. He straight up kicked us out and said he doesn\'t care for the well being of my mother and made us leave. Disgusting place. Avoid at all costs unless you want your emergency to be treated as if it were NOTHING. Sad excuse for an emergency room.','2017-09-20 05:20:00.934000','2017-09-20 05:20:00.934000',1,'adil rah','https://lh4.googleusercontent.com/-yxTtvUHGYCE/AAAAAAAAAAI/AAAAAAAAAAA/n5ZpT2kpdkc/c-rp-mo-br100/photo.jpg','8918455867446117794',9357),('AIe9_BGlY-BaOO_aND3JZqxJBS1RakblUK31qih1gXymnqW83KSx--zy1Yk8Fhf85zftWdeb1eqUbGsrtALAqfoL6Y_L3Jve_f19R63dBAtR07fVbL23KL4','Over 4 hours wait time for covid testing and Dr. Did not have any idea of how much longer it would be, still waiting. They advertise rapid 15 minute testing. False advertisment.','2020-06-14 01:15:09.232000','2020-06-14 01:15:09.232000',1,'Diana Saenz','https://lh5.googleusercontent.com/-qTMX-OrQHDY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmq5fB24L4ftUsOCchXov6LrShmgw/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22101),('AIe9_BGlY-BaOO_aND3JZqxJBS1RaMLkKDdzBZ6DqDHEdcbpfnjFM-Bbpyt2GTbCuZWoHBQKfMlhXcuxrxna3J3kCDHgSTZ4x-XsuYYuxYi9MmFOoVzlgSU',NULL,'2018-06-12 06:39:49.479000','2018-06-12 06:39:49.479000',5,'montana max','https://lh5.googleusercontent.com/-WCtK2jx-qv4/AAAAAAAAAAI/AAAAAAAAAAA/JXdtdyKySXM/c-rp-mo-br100/photo.jpg','12541597562633926366',646),('AIe9_BGlY-BaOO_aND3JZqxJBS1RangAl5AidFHI6dJFTBdmVG3WmxJVI0CKBIqe3ZtAKiH2vro5UmdqAeUgcrwqoecRh-83Rk8Su9l3VZdrseL-wvSlaU0','Excellent staff. Fast service. Nicole, Tatiana, Dustin, Ricardo and Dr. Patel were wonderful','2020-01-23 04:17:17.394000','2020-01-23 04:17:17.394000',5,'Jen -StarberryPocky-','https://lh4.googleusercontent.com/-uH_-DsLlEfM/AAAAAAAAAAI/AAAAAAAAAAA/2QsOoPtZeJU/c-rp-mo-br100/photo.jpg','14567670160750071148',10141),('AIe9_BGlY-BaOO_aND3JZqxJBS1RaQUyvkbjLf5VFGH20--Rx6as1Oqj1WlLbjH-noNUPttlYohITZYXJgz1jq73muQgCg6iFWtNpVuT7sCgamgFpXUcT1I','Wonderful, attentive, and caring staff.\nFrom the receptionist to the medical staff beyond caring and professional.\nDr. Patel was courteous and kind, I left feeling that he genuinely cared about my well-being.\nI could go on and on.... Thank you for your care!!!','2019-06-14 03:36:51.546000','2019-06-14 03:36:51.546000',5,'Chris Coston','https://lh3.googleusercontent.com/-Lu_fkLtXx48/AAAAAAAAAAI/AAAAAAAAAAA/g7uQJFJYrjI/c-rp-mo-br100/photo.jpg','6521947413723274945',8235),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rars0QkCwrGPn0G_hxWMJm3AnEAKyVFh5WNDm4vFXtrPgBdLyV3GJFthxNwJ_sGphEQrakl2Gc7dKRFb0oMxrLPyNBJg','Great experience! Very quick - staff was friendly, thorough and facility was very clean and organized. Dr Leung, Nurse Amy and Rad Tech Sam were all great!','2020-08-04 13:28:35.022000','2020-08-04 13:28:35.022000',5,'Jennifer Johnson','https://lh6.googleusercontent.com/-MnJ9li15UIs/AAAAAAAAAAI/AAAAAAAAAAA/7BLjmQT2-qc/c-rp-mo-br100/photo.jpg','2077061009497551125',22737),('AIe9_BGlY-BaOO_aND3JZqxJBS1RASAz_VY0MTUOsLZngjReAa6jdCR9WilGeS_lcuzFn1XdO7DTWlEnIvYOTvGr7zxrKHBziZvLZcVw9TDlcrd4DTX2uFw','Wow! I had great experience here! I came in with flu like symptoms and I was feeling awful! After filling out minimal paperwork, I was immediately seen by Nurse Jacob, Dr. Rodger and radiology tech Laura. They made sure I was as comfortable as possible, listened as I shared some health history concerns, walked through a few possible diagnoses and performed various tests to rule out pneumonia, etc. I ended up having the flu and they sent me with a prescription for Tamiflu and a few more easy instructions. I would definitely return! Thanks signaturecare!','2019-04-19 13:52:47.428000','2019-04-19 13:52:47.428000',5,'Hailey Points','https://lh3.googleusercontent.com/-pMtRYhF1udc/AAAAAAAAAAI/AAAAAAAAAAA/gB_K2cVWkhM/c-rp-mo-br100/photo.jpg','16590124370714063921',3417),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ravs1QIAVUG8Nc8GTcgDjofzLpWiga-VbM8SNJCyXxw7u9o_l-Lwgf002399B0edBXFzdixIzIs4UwZk4mtUlYJIKaok','Very professional and fast Service','2019-03-29 20:13:26.617000','2019-03-29 20:13:26.617000',5,'Pacedric Brewer','https://lh6.googleusercontent.com/-YDDwBEvu-Nw/AAAAAAAAAAI/AAAAAAAAAAA/jd8r0hj5WOE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RAW7DmyaMstxtfQb46Tp81BxWmVem13RNr5gKhukV3IsdtZS7Ysf9VUVhYRsuLi_orNR69afmO3KcogmR63AajQNb_YU','Amazon staff and quick even going into a shift change\nQ, Sarah Fatima, Matthew and Tanisha we a great team.','2019-09-13 00:20:24.693000','2019-09-13 00:20:24.693000',5,'Kimberly Briones','https://lh4.googleusercontent.com/-ftTmJGDCHJs/AAAAAAAAAAI/AAAAAAAAAAA/CTidb4ZjMU4/c-rp-mo-br100/photo.jpg','17898197009688164559',5550),('AIe9_BGlY-BaOO_aND3JZqxJBS1RAYKfTwL0V80b8ZxyHmo6O-nMzxj0C4ukKYLe-xeQmrEvJggASCcjTq5eQBp3E4IYm_xz0zGyFAZBXz-hX8gy017x_Bs','All the staff here was amazing! Both morning and evening shift. Dr. Kotey, Nurse Adam, Techs: Anastasia, Dion, and even registration Ms. Elizabeth! They made me feel very welcomed, not saying other places do, but I think this is the best service I have ever gotten period!','2019-08-14 03:02:57.308000','2019-08-14 03:02:57.308000',5,'MARIBEL CUEVAS','https://lh5.googleusercontent.com/-ipGDILkKjcU/AAAAAAAAAAI/AAAAAAAAAAA/oWYzlXTK8tw/c-rp-mo-br100/photo.jpg','3511292162159714121',7213),('AIe9_BGlY-BaOO_aND3JZqxJBS1RaZlcMnys6nc3qRshrrKIEQOq4uRiRfCwSTH2ec-IgZ73gdqs9IwqouBZggc9YyFDQo9vZfw8LRQFHRPhjdWkC9k_iq4','I would have given it 5 starts but they were fully opened yet mid construction. My anxiety that through the roof.','2018-06-30 04:12:38.413000','2018-06-30 04:12:38.413000',4,'Ashley Perry','https://lh6.googleusercontent.com/-AnffOmI2ZfU/AAAAAAAAAAI/AAAAAAAAAAA/-b6iNbAvnSY/c-rp-mo-br100/photo.jpg','12541597562633926366',640),('AIe9_BGlY-BaOO_aND3JZqxJBS1RB4penSKCAZ4Eyg9yN3q6QLgJyKKgAFj5KJrhs_FpwDArKs9Dmt3KLwWsMnnR6SKkBBPYY3UTm0JFRJUx6qtq-kjhdH8','I enjoyed my visit to SignatureCare, it was fast and easy. Alvean and Marcus were a professional and help so much.','2020-01-07 19:30:57.621000','2020-01-07 19:30:57.621000',5,'nataly carrillo','https://lh6.googleusercontent.com/-DC0bk0qsN8k/AAAAAAAAAAI/AAAAAAAAAAA/JgJzTKTkH7M/c-rp-mo-br100/photo.jpg','16389487648212004696',9428),('AIe9_BGlY-BaOO_aND3JZqxJBS1RBb0PG2p3YIdco2jTz9Pn8dg0cNlLrcSqLcRNKbon8PN7iabQOwLM4PWH59a_xNu5ivVYuUh52N9rsp_LvRVI73BnwBg','Excellent service, responsive staff and quick help.','2020-03-09 01:58:58.650000','2020-03-09 01:58:58.650000',5,'jaclyn mcjunkin','https://lh3.googleusercontent.com/-FasiJ3ywhlg/AAAAAAAAAAI/AAAAAAAAAAA/FLgGYvDCvDU/c-rp-mo-br100/photo.jpg','16891069708558046635',13906),('AIe9_BGlY-BaOO_aND3JZqxJBS1RbbhbmIwOB-5BfFfzrmsJ_XPoalPyC-XB0b4GAUky_a-mQXtpOST82JtTvEnFIDnNCPo831e9ijJJ17oFNN195Ol0XiE','Best experience ever very friendly staff..nurse jaime was very nice .. plus doctor Nguyen was very helpful and Tanisha and William work fast to get things going recommend to any that needs to go to doctors','2019-04-24 06:02:30.271000','2019-04-24 06:02:30.271000',5,'Jaime Cruz','https://lh6.googleusercontent.com/-Y5OZAmvdmPM/AAAAAAAAAAI/AAAAAAAAAAA/YHfhyjaJTt4/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5760),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rbe2H9D9r8EPyuf8HrQ1gzc71E6-3XbNoGSYZy8e3NStfUJ4cBqyT-F4Mf7ju1cXEUvJM5sDm-hvV3E-cWz6uOvrj1uA','If I could give this place zero stars I would. An outrageous amount of money was billed to my insurance (approximately 5 times more than what I was told would be the cost for visiting and getting a CT scan) after I was specifically told by multiple people what my visit would cost me. This sort of fraud should not go unnoticed.','2016-08-09 20:24:06.808000','2016-08-09 20:24:06.808000',1,'Garret Kirczow','https://lh5.googleusercontent.com/-oqWSF4jvKy4/AAAAAAAAAAI/AAAAAAAAAAA/4Qbfyigg4bE/c-rp-mo-br100/photo.jpg','3511292162159714121',7953),('AIe9_BGlY-BaOO_aND3JZqxJBS1RBE9QGuhBPED-zU6RQikfIvp7RDptDJ63CvOljbDr0XNouK2MMW7SiodB5zdi1hajGEWPzjodI669gh1g8WMzNCFgfGE','Great customer service, friendly staff. Quick service. Very satisfied.','2018-07-04 22:12:45.320000','2018-07-04 22:12:45.320000',5,'Robb L','https://lh5.googleusercontent.com/-n06EcsM4BkU/AAAAAAAAAAI/AAAAAAAAAAA/uKDSp_P-MvI/c-rp-mo-br100/photo.jpg','14904078213800803294',2242),('AIe9_BGlY-BaOO_aND3JZqxJBS1RbfsxocLDk2wRNvrep24SsGy2xOvujK11VF80WPP8Eme2VodDDjBik56BDgG_GxGf-Vx76jl6tyQg7X8-JVf0vTWtSas','The receptionist Dee was so amazing just as welcoming as could be and even remembered me from my last visit almost a year ago and did I mention no real waiting time A1 place','2019-08-14 18:45:01.042000','2019-08-14 18:45:01.042000',5,'Selena McCraw','https://lh4.googleusercontent.com/-WxxIvOaQhRs/AAAAAAAAAAI/AAAAAAAAAAA/6fZ7uRlwp08/c-rp-mo-br100/photo.jpg','3511292162159714121',7206),('AIe9_BGlY-BaOO_aND3JZqxJBS1RbJiDuviB3zbgqDRaqOZ8DedHjXWf-ZOEzE4-s8dsq8B2B8iVxd2_epx2w9lHqN2Zniif061z3nM38_jCkwlfw1vx6dg','No better ER than Signature Care on Cypress. From the front desk with Jesus to Dr. Smith who answered all my concerns. Thanks to Alvean, Olivia, and John to that took care of my baby.','2019-07-27 20:22:41.449000','2019-07-27 20:22:41.449000',5,'Shyla Williams','https://lh4.googleusercontent.com/-XAzRRjLZRoc/AAAAAAAAAAI/AAAAAAAAAAA/ob26IA_josA/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RBksD6rEpVmszHMjicZYzM9f8k-1ahCH56Lqee8_gzzEQ5sA5RH0-PVq_tLz3GgNDoBeRnsDWAkrBO46eGuI0Ixlw_qg','The service was great.. Super sweet and cool nurses and doctors. Had A Great Experience','2020-08-12 18:45:57.498000','2020-08-12 18:45:57.498000',5,'Tashauna Reed','https://lh3.googleusercontent.com/a-/AOh14GhzAQ4-9ncwba6w_V9vgEJ4swiP-wYzPQBNxJj3ug=c0x00000000-cc-rp','3511292162159714121',23075),('AIe9_BGlY-BaOO_aND3JZqxJBS1RblGYMnJkwrTuy-TffH4y4uZ-PJUaVdD7qXotXZn_lcqpjcKRcqNMSSeMMRK5AxHuRGZ3B9AzJ5hQ5dWP_zLw3Wkh65w',NULL,'2017-12-16 16:27:09.232000','2017-12-16 16:27:09.232000',5,'Anthony Smith','https://lh3.googleusercontent.com/-z_8PZcM8P8Y/AAAAAAAAAAI/AAAAAAAAAAA/Vs4_HRMaG-I/c-rp-mo-br100/photo.jpg','14904078213800803294',2299),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rbr4Qz6HVroBiJqs8XDMScym7i-VmJFPundgE_FFW14RumYf9g-yrIG9YR0-ZueBsgBH8W8m8nT7wv07a7tte9bXqh9A','Just visited this Emergency Center, the service was super fast, and the receptionist Kimberly P. and Cecilia Z. were super nice, helpful, and friendly. Very satisfied with treatment, and service.','2020-01-19 01:18:38.973000','2020-01-19 01:18:38.973000',5,'Dyanira Saucedo','https://lh6.googleusercontent.com/-HkmzpksFgOc/AAAAAAAAAAI/AAAAAAAAAAA/HrvL_6m4mKg/c-rp-mo-br100/photo.jpg','14567670160750071148',10031),('AIe9_BGlY-BaOO_aND3JZqxJBS1RbskbLVvoAJ66wU8_moPXFLSjDTRkEHQMERKNBsovAcxRhBekxKTHIofuVv8bqnplEK1mXo7owPC5MqznxNPX6hNe8WU','Staff was really nice Alvean and Tricia were super sweet \n Nice clean location','2019-05-11 19:03:22.036000','2019-05-11 19:03:22.036000',5,'Nicole Bogdanovich','https://lh6.googleusercontent.com/-rVOZmikQj5M/AAAAAAAAAAI/AAAAAAAAAAA/59n1dg3p5_s/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RBxHmGw2BUyQpiA-MdYEVVxllM-ZWT93TflHCKeJBlPVvvDvSh7uKCKuNUVtkUy9-AQ0YayANlkJ8x9czdtJnkjA-3xc','I was in sooo much PAIN. All help me n ease my pain and made me feel like I was at home!!\nThank u ALL🎉🎉💜','2017-05-29 21:47:02.946000','2017-05-29 21:47:02.946000',5,'Roe Hersey','https://lh4.googleusercontent.com/-GaX4rmroq1U/AAAAAAAAAAI/AAAAAAAAAAA/Xy-NhjmsGCk/c-rp-mo-br100/photo.jpg','17394740196501090048',5046),('AIe9_BGlY-BaOO_aND3JZqxJBS1RBy3DXz7287njDvz4lesYVyTlyGKlqenBga3dIZZ3U21qTnQHdqnrU3_NK5DSgRYnoKgbaVUV-QyF1MTTqeD80SNOq_s','Honestly the best ER experience ever!! I was feeling terrible and was having difficulty breathing. I was taken to a room pretty quickly even though they were busy. My nurse Lia was very helpful, caring, and great at her job! Dr. Miller was amazing! He answered all of my questions, explained everything and has excellent bed side manner. Nicole was another nurse who was very sweet, helpful and checked on me often. Kat the tech was great and I barely felt her start my IV. Will, the rad tech was very helpful as well. Overall, great experience! I would definitely use Signaturecare again!','2018-01-10 09:26:04.138000','2018-01-10 09:26:04.138000',5,'Christian & Jackie Carrier & Reyes','https://lh5.googleusercontent.com/-SvZc0VJZiJI/AAAAAAAAAAI/AAAAAAAAAAA/YmY4JLBHoMQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1689),('AIe9_BGlY-BaOO_aND3JZqxJBS1RBYPWHJFu9R_uiMpI0wLaV8r7fuoThyuWsL-2sGtrSYJbAZ_iJvKFvItecsGlGaJelNjZR8kSBd0-dez9D-_WnqtWuCA','I had a great experience at this location! I was assisted by Genesis, Aaron, Hoan, Dr.Jolly and Johnny and they were all very accommodating and knowledgeable. I was given great advice and I would come back again!','2019-07-08 17:25:17.159000','2019-07-08 17:25:17.159000',5,'Nicole','https://lh5.googleusercontent.com/-bAdE0ixahp8/AAAAAAAAAAI/AAAAAAAAAAA/CpdsG1CaKmo/c-rp-mo-br100/photo.jpg','14904078213800803294',2116),('AIe9_BGlY-BaOO_aND3JZqxJBS1RbyqxomLWgl_okZaPOcCsGDOaNcCXq8LYCqpewTaye5oL_C14h4mTiO40Z0Eq9tw1q2O9hryhslrdKTjJDZqtQCasACw','This place was amazing! Dr Gutfreund, Nurse Nikki, and Nurse Calli were very comforting and informative in a time of such wide spread panic. The facility was very clean and efficient. I would recommend this emergency center to everyone in the killeen area!','2020-03-20 02:16:07.854000','2020-03-20 02:16:07.854000',5,'Candace Peterson','https://lh4.googleusercontent.com/-WWnEzVfYfGQ/AAAAAAAAAAI/AAAAAAAAAAA/4LquuUp1xIQ/c-rp-mo-br100/photo.jpg','2694018788013845459',21107),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rc_QDkjW7zecgwWqsn5_kbWPkRR2eQtmkZYaOqaiZVq8b2IRqjYDkJwmmjHi350o8iDUQk0WwbtZty6CYM3sAXfoLlVY',NULL,'2016-11-15 05:54:12.950000','2016-11-15 05:54:12.950000',4,'Eunice Reyna','https://lh4.googleusercontent.com/-nawYiEJNqo8/AAAAAAAAAAI/AAAAAAAAAAA/ooTgb0l71Gw/c-rp-mo-br100/photo.jpg','8679688254631342173',8920),('AIe9_BGlY-BaOO_aND3JZqxJBS1RC-sUJT_nhLOmyIJCRc_CyVds6Q89aIdVh90Bk-_468V0xNz2DMuMmLNI4tyoy1OU3SSaCRVyafUx1NdCdL3szhrnxB8','Everyone is very accommodating and professional. Patricia at registration was very helpful.','2019-12-30 19:55:13.153000','2019-12-30 19:55:13.153000',5,'Ian Agtarap','https://lh6.googleusercontent.com/-JYArnLfCNYY/AAAAAAAAAAI/AAAAAAAAAAA/kWtHS9UtRrk/c-rp-mo-br100/photo.jpg','16389487648212004696',2498),('AIe9_BGlY-BaOO_aND3JZqxJBS1RC1jDUw48sNW2v_-qObbgnZbl9Bqg7h93IINdDYN1EYZRezMp04xzD-7dLh3CMeZY5gQVoOsWq0RuSWWI50on3xitL1Q','Awesome care! I came here for a medical emergency and was seen right away. The staff is friendly, courteous and kind. The doctor is awesome!','2019-06-01 06:20:23.356000','2019-06-01 06:20:23.356000',5,'Oriel Kerr','https://lh6.googleusercontent.com/-8C7WQmppClM/AAAAAAAAAAI/AAAAAAAAAAA/IWqNtylVGmI/c-rp-mo-br100/photo.jpg','16891069708558046635',4263),('AIe9_BGlY-BaOO_aND3JZqxJBS1RC9Qh1dcjcKD8Hua5oqMwsOqZ2M1DPPXyl_vXNSVqYU6wx87faZI36acGzjb-H2Sf7gL_l_TYel3A1ap_0JMwTBOE8oY','Karly was very friendly when I first came in and helped get me registered. Jennifer was very sweet and got right in to see me and make sure I had everything I needed. Brooke was quick and friendly. Over all great experience. Thank you to all the staff.','2019-06-28 00:59:55.588000','2019-06-28 00:59:55.588000',5,'Dana Dority','https://lh3.googleusercontent.com/-1eIqe42Y0IU/AAAAAAAAAAI/AAAAAAAAAAA/9LAroZJbgww/c-rp-mo-br100/photo.jpg','8626688543755174284',8443),('AIe9_BGlY-BaOO_aND3JZqxJBS1RCAUBirKVMIbAbSU2XHWsZkJ8lwqalGJlYr8ANpe42wE_3Y0LREwxiAEe1Vldw8B9NPVHnRpdKLWMScjFJRJY7sgB9X4','Went to this place after my car accident. Lovely and clean facility and friendly staff. Very little wait time. Jocelyn checked me in and was supper friendly. Rachel and Marcus were my nurse and nurse tech were also friendly and made the whole experience great despite my pain. Would definitely recommend this facility for any emergency needs.','2019-09-09 21:59:51.111000','2019-09-09 21:59:51.111000',5,'Miranda','https://lh3.googleusercontent.com/-pfkvgL_O-z0/AAAAAAAAAAI/AAAAAAAAAAA/B9SU_HfT6V0/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2934),('AIe9_BGlY-BaOO_aND3JZqxJBS1RcBf2mNuzej5LSA1RD1iRMateMP1Mm_s296E8_fYbhGzBup_9iq4PlFSiUgznXzei-YTfDG2jt18qnAPlfZKr-kkcX-w','This place is absolutely the BEST in emergency care. From the nurse Katie who took me back right away to get an EKG rather than waste time waiting until paperwork was filled out and the receptionist/registrar Earl, who took my info quickly and made filling out the paperwork later in the visit an absolute breeze to the radiology tech who was so kind and considerate when getting my CXR. Dr. Jolly saw me within 5 minutes of walking through the doors and was very attentive to my needs and answered all of my questions. It is clear that the manager Adam does a great job of taking care of his employees and fostering a positive working environment which shows in the level of exceptional patient care received here.','2019-10-11 03:08:19.576000','2019-10-11 03:08:19.576000',5,'melissa connell','https://lh4.googleusercontent.com/-KRDMD8zE9hg/AAAAAAAAAAI/AAAAAAAAAAA/JNBDamjEuKo/c-rp-mo-br100/photo.jpg','16891069708558046635',4185),('AIe9_BGlY-BaOO_aND3JZqxJBS1RCCFZ38IOSd8KhsQ-VqP062fjTpJpGTuqW7Gtq2CfVznGkRuK0F2IeLwEkiDLtanaN0jlj2BH85cvaum6xTtuf5Nx1Z4','The entire staff from the front desk nurse to the doctor that saw me, were all amazing...Victoria my nurse was very professional, caring, and honest...(even about the shot she gave me) lol. Dr.Zhen was was patient and understanding and gave her honest opinions on my questions. The whole staff deserves a raise for the service. If I could give 10 stars I would.','2020-01-25 02:29:07.719000','2020-01-25 02:29:07.719000',5,'Timothy IndisBih','https://lh4.googleusercontent.com/-ZWIdjdJMFGw/AAAAAAAAAAI/AAAAAAAAAAA/pH5xem-U00c/c-rp-mo-br100/photo.jpg','17898197009688164559',10246),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rcci_LhVkQ3HhLKUER7QIDbHI2r7o3wjqAPMsFk1uYagYCWtaHg_jJnpLHjKhVmPgp2yveR395oCSXCKGydOLiGT9jKE','Staff was very caring and helpful. Prompt attention to my nearly severed finger. Pain was managed well. Highly recommend!! Lisa V. RN, Andrew (Tech), Dr. Huerta thank you','2019-05-05 16:11:29.059000','2019-05-05 16:11:29.059000',5,'Randy Craig','https://lh6.googleusercontent.com/-Au7hpMzAT8M/AAAAAAAAAAI/AAAAAAAAAAA/qPLFG_HAhaQ/c-rp-mo-br100/photo.jpg','13486358490203335051',1017),('AIe9_BGlY-BaOO_aND3JZqxJBS1RCCJHWT3F9dd-pP0KoKxblMuGEZU4u-A2g3CIeKplKdD1l_k5eFTiVom0jsWPJ3Z6NCWU0824_ioMk3yMbuxIrPIslM4','The place was great! Elizabeth was so sweet, Tammy was caring, and Jessica was very nice. Dr. Cavazos was very cool and i will definitely check in again if I have to.','2019-12-21 23:51:20.362000','2019-12-21 23:51:20.362000',5,'Bryanna Thompson','https://lh6.googleusercontent.com/-Nvp1AIAwySM/AAAAAAAAAAI/AAAAAAAAAAA/6LzeUwphlCE/c-rp-mo-br100/photo.jpg','17898197009688164559',5340),('AIe9_BGlY-BaOO_aND3JZqxJBS1RcgZJWKqmSr99VdFxgFavblmfSlD9Plx433yrjVDTzSYJISE0qjbxqB3RG_jkNsMveUMNPk_EqZVagrOnsDmFHL8moIk','All the staff was absolutely excellent!!! I was there for a while so I saw Dr. Ding, Lonnie, nurse Duke, and Natalie at the desk on my way in during the early afternoon. When the shift changed, I finished up Dr. Edwards, nurse Lindsey, Richard, and saw Purvika on my way out the door pain free!! Really great team of caring people. I went to this ER on my way home from work, but I\'d drive the 20 miles back if I had an emergency again to get this level of service again.','2019-09-12 01:30:10.979000','2019-09-12 01:30:10.979000',5,'Theressa Ford','https://lh5.googleusercontent.com/-WCYsNSssrmU/AAAAAAAAAAI/AAAAAAAAAAA/TwGvbecwvUc/c-rp-mo-br100/photo.jpg','8679688254631342173',8805),('AIe9_BGlY-BaOO_aND3JZqxJBS1RcJ5cIzaed5U1T720Tm-I4vqT70dxGLMIn8YzfmgcC5ongCPVTGQi-9lFdXYkkjpJFMwG5y-toohtEo_FsVqOyW0PzQQ','Very Quick and efficient service, the staff is very attentive and thorough.','2020-08-02 19:45:38.798000','2020-08-02 19:45:38.798000',5,'Ana Marina','https://lh5.googleusercontent.com/-qm-dDHilHJQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck8-YAQSagEmxrdPHYD7qG6SOw7bQ/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21932),('AIe9_BGlY-BaOO_aND3JZqxJBS1RcJp9AqlwV3VAHZeYXnsqI1ClVs_W7s2fV2mMTjp8reEwXSuQyntI84l5UHVKAKyzi_eeH6LNWmCuCO84vu5nPAoyfPI','Very professional, friendly and quick service. Thank you JD and Cody!','2020-08-03 14:39:06.599000','2020-08-03 14:39:06.599000',5,'Crystal Long','https://lh3.googleusercontent.com/-neJJDrpeEOY/AAAAAAAAAAI/AAAAAAAAAAA/IKMO3wtgw4A/c-rp-mo-br100/photo.jpg','2077061009497551125',22763),('AIe9_BGlY-BaOO_aND3JZqxJBS1RCKpvDTsam6_alMoBm72_CSxInlgMUyS1eCEYrlS3l8XKMqhYURffU1wwmF9vxz4892POHPpaBDcAFRPSZYW3NDjKido','Great experience, very welcoming ppl and service was rapid and effective, specially tinishia, Fatima, cahantel','2020-03-09 04:11:33.294000','2020-03-09 04:11:33.294000',5,'Cordova TPI Hotshot','https://lh6.googleusercontent.com/-F1irq7BMeKk/AAAAAAAAAAI/AAAAAAAAAAA/RU0H7FLYt7Y/c-rp-mo-br100/photo.jpg','17394740196501090048',21067),('AIe9_BGlY-BaOO_aND3JZqxJBS1RCPsSHjtw0zenZsRd2cB0OVjFOWnMQNihWgIY_yR5AH6CMde7e2b_Ry4th4p50Tjcgs3xl8qtLgZt9-A0fXZv1MzetLY','Went here yesterday with a horrible migraine and fever as well as a pre diagnosed sinus infection. I got there at 8:30 and was seen almost immediately very nice and very caring staff from the front desk to the nurses and the doctor amazing care and I will for sure come here every time I\'m sick felt better almost right away','2019-05-13 17:42:58.016000','2019-05-13 17:42:58.016000',5,'Kelly Thompson','https://lh4.googleusercontent.com/-U4mX351avZs/AAAAAAAAAAI/AAAAAAAAAAA/Y0YLnKpS09A/c-rp-mo-br100/photo.jpg','2694018788013845459',6157),('AIe9_BGlY-BaOO_aND3JZqxJBS1RCuu09nvadosycSqdszkdBHuhAKuVSA0WCERYUjnQoKsal61n1BvRLESJZwOlk_zFknJrWat373-Aurfb4D2ZBWW8Jfk','I love this facility! Dr faig was very sweet , aerial was awesome and quick checking us in, the nurse as well :)','2018-08-06 01:00:27.048000','2018-08-06 01:00:27.048000',5,'shloretta Hall','https://lh3.googleusercontent.com/-2_T-zf9BFsw/AAAAAAAAAAI/AAAAAAAAAAA/dxOzwhg7BFM/c-rp-mo-br100/photo.jpg','12541597562633926366',623),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rd_wfqp68QLw55QD50VxH4R1B1_JY97RZfMdzNQFqdXkAuaZpQKM6T2gjR22SaR94wrfXvrBXFYLKXjnCE0JMHBTnArk','My husband hurt his back and they have been very friendly and helpful since we got here!!! Would recommend this place to anyone!!! ','2016-06-11 01:08:38.976000','2016-06-11 01:08:38.976000',5,'Angela Einspahr','https://lh5.googleusercontent.com/-p5DMscDIXVA/AAAAAAAAAAI/AAAAAAAAAAA/h-0Zq8CgC4I/c-rp-mo-br100/photo.jpg','13486358490203335051',1136),('AIe9_BGlY-BaOO_aND3JZqxJBS1RD017otswSjW9zapL8bRZC4brUr7IaebXxedbuTCZrEmbgcjW4mFJ6rvl-aayoJ84_2P0gY8TH1QVh1dN8E8zZZWX9bI','I wasn’t sick but the attended me like I was a patient Dr Thomas and Nurse Susan are very nice people','2019-11-19 04:50:47.680000','2019-11-19 04:50:47.680000',5,'Armando Gonzalez','https://lh3.googleusercontent.com/-uIzg3p9Wofo/AAAAAAAAAAI/AAAAAAAAAAA/eXuHvHgcnPI/c-rp-mo-br100/photo.jpg','17898197009688164559',5421),('AIe9_BGlY-BaOO_aND3JZqxJBS1RD0MT8czOJQNe8hrJRLboTp4jWDXQ-aHjm0Io7JCG4PUuKAFE6mB2p6C7jZNa_4Wtxk4egcigw5AnmBSXYk2SVebVBhc','In from out of town. Quick and friendly and effective care. Nice facility','2019-05-15 17:59:48.643000','2019-05-15 17:59:48.643000',5,'Don Watters','https://lh5.googleusercontent.com/-E4ulhBRqpfY/AAAAAAAAAAI/AAAAAAAAAAA/m4mSutWamQs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RD1TrG6qYzbAztzQGpEM96LhZhhmA9atd_8N-5pkTehMotacdi_tv0GlqQ8EKkBPixYiAYByqI72mtBVSh737_h7xGHY','This place is great! I was seen right away and the staff were all very helpful and personable. Dr. Thomas was friendly and knowledgable. Our nurse, Racheal, checked on us often and made me feel very comfortable.','2019-02-15 02:00:52.363000','2019-02-15 02:00:52.363000',5,'Amy Ponterella','https://lh4.googleusercontent.com/-nnMLd4Zc744/AAAAAAAAAAI/AAAAAAAAAAA/bCEh0Nbrp7U/c-rp-mo-br100/photo.jpg','17898197009688164559',5854),('AIe9_BGlY-BaOO_aND3JZqxJBS1RD7allBBxu0xE_HsxrgupnYaJ9WrA-faNOCYreBhTK670FVXzFWM4vpfEWgNcDZ8ZDezQXgj1_1fHy5u9vm4hfJS2MFo',NULL,'2019-03-15 22:52:19.061000','2019-03-15 22:52:19.061000',5,'Charles Holt','https://lh5.googleusercontent.com/-yh0XlwWBuvw/AAAAAAAAAAI/AAAAAAAAAAA/y2YWGQKBmpU/c-rp-mo-br100/photo.jpg','17394740196501090048',4712),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rd7p6gbX9RJv7hPLDo-PbjCA3gkkwgggfWMTTH3vLxD2uLznzQon5nVEoYinkz5OFCaIc1OYJ9b7iOuKuGrFMaT-ehtY','I am amazed at how well I was cared for. Thank you','2019-06-28 14:56:52.345000','2019-06-28 14:56:52.345000',5,'Tom Eickleberry','https://lh3.googleusercontent.com/-hh8fdszbz_w/AAAAAAAAAAI/AAAAAAAAAAA/QJPK4_ylrtA/c-rp-mo-br100/photo.jpg','17898197009688164559',5674),('AIe9_BGlY-BaOO_aND3JZqxJBS1RdD6hJG0JO6iULhcRns1K1milb7uRG4qd9c9Sz6MHh035aLU7SWl5IZNR59BolrfXNTPmDGpsLRZgfPp5b1h4rbiX9aU','Loved it here first time here! Took me in right away! Jocelyn was very sweet. Ekaterini was amazing she found a vain! The guys were great and courteous!','2020-03-06 18:45:40.706000','2020-03-06 18:45:40.706000',5,'JUANIE GUEVARA','https://lh3.googleusercontent.com/-Nok6LnCsjXw/AAAAAAAAAAI/AAAAAAAAAAA/9iVrzMUnM58/c-rp-mo-br100/photo.jpg','16389487648212004696',13722),('AIe9_BGlY-BaOO_aND3JZqxJBS1RDg3r3pLmtZ71whJzttRBHHvQilolmNJTtzT2D8_NCA16-SycDLEdtOgTdFZo8O_od9fhB8fYHkx5UF-hlS7YGiVvZD8','The staff here is AMAZING! They remembered me from 2 years ago! I love the service & hospitality! They make you feel safe & comfortable in a place that you are usually coming to due to discomfort! Grateful for this facility! Highly recommend! Also, nurses Laura & Gina are absolutely incredible! The best nursing staff I’ve ever encountered.','2019-01-04 00:19:21.938000','2019-01-04 00:19:21.938000',5,'Kasey Long','https://lh6.googleusercontent.com/-YkgnKT7KdqQ/AAAAAAAAAAI/AAAAAAAAAAA/Wxi8SXjSNi0/c-rp-mo-br100/photo.jpg','3511292162159714121',7528),('AIe9_BGlY-BaOO_aND3JZqxJBS1RdI80TkFhJbTjMm-sDIgQgUBB4kz_FsbROBeQio1tKprgyY3mlxTHdmdS30cTEyEGRgy3KApuv85MJEHtLH9NkT0VJ4o','I came in to the ER on 2/18 and am overwhelmingly grateful that a place like this even exists! My pain walking in was horrendous but just the thought of sitting for hours in an ER waiting room sounded equally as horrendous. Thankfully SignatureCare Montrose was open and close by and I was brought back immediately to a room. My compassionate, friendly nurse Melissa greeted me at the door and walked me back to my room after introducing herself to me. Once we were in the room another sweet nurse Gina obtained my vital signs while Melissa asked me all of the medical questions and did a quick assessment. I was given a warm blanket and some water while I waited to see Dr. Yusuf who came in shortly afterwards. He confirmed what Melissa had suspected and discussed my diagnosis/plan of action in detail with me. After he left I was medicated, reassessed, and discharged in less than 30 min. Thank you to everyone that took care of me! This is the only place I would ever recommend to my friends and family!','2020-02-20 18:25:07.660000','2020-02-20 18:25:07.660000',5,'Pamela Lockyer','https://lh5.googleusercontent.com/-N6bu0GWt7ws/AAAAAAAAAAI/AAAAAAAAAAA/N2uxbi5PsPY/c-rp-mo-br100/photo.jpg','3511292162159714121',14405),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rdj3cusX41X0jmxWID2duZs4Z0YMn2vEDef5YppNAS0iPa2LvcSE--RpOZAokdtH0V3ZEeplW6CpRv5Xmq3mHp5d2Il4',NULL,'2018-01-05 02:27:03.584000','2018-01-05 02:27:03.584000',5,'Stanley Newman','https://lh5.googleusercontent.com/-NhWMGPyzSpY/AAAAAAAAAAI/AAAAAAAAAAA/2aoj3giPkBc/c-rp-mo-br100/photo.jpg','3511292162159714121',7740),('AIe9_BGlY-BaOO_aND3JZqxJBS1RDJhmD9jU_CLx1spWKNUNb6uVaZ2ZTk6owLNQNMiaq4vWKhQEYpnflmtsV7r8TDfSBJoo1A9Kh4zm7LxP7gdknOFu9J8','The whole staff was wonderful an took care my needs on time. I would tell anyone about there 5 star experience','2018-08-15 01:48:04.246000','2018-08-15 01:48:04.246000',5,'Ashley Gatson','https://lh6.googleusercontent.com/-ybmqfRv6u_0/AAAAAAAAAAI/AAAAAAAAAAA/XuuVb-7JRn0/c-rp-mo-br100/photo.jpg','12541597562633926366',620),('AIe9_BGlY-BaOO_aND3JZqxJBS1RdkIXesTFaQDEBxndTBpuQtZ1iUUA60XBjutDxysI2cIzSJXRHQrhNLeRO9mHzj9IsyXAGBBoPKf45SLS9RZqDTsE1AY','We were greeted my Rita at registration, she was very friendly, not to mention the rest of the staff that included Daniel, Holly, Tony, and Adolfo were also very welcoming. Dr. Grinblatas was very thorough with impeccable beside manner and the facility is the cleanest!! I would definitely recommend Signature Care over any other Emergency Room. The staff is friendly and welcoming, the facility is clean, nice and up to date, and the wait time is minimum.','2020-01-27 16:02:14.332000','2020-01-27 16:02:14.332000',5,'Jennifer Hamilton','https://lh3.googleusercontent.com/-9OapnHFFPOc/AAAAAAAAAAI/AAAAAAAAAAA/6efBTJUCQHU/c-rp-mo-br100/photo.jpg','14904078213800803294',13621),('AIe9_BGlY-BaOO_aND3JZqxJBS1RDL_Bj9o5oSyiYe5ilGJ_9fqf8k53DWdBHFSPD6Cnp09lZa8AS58GIuVKOlwiMeSQLiYgnRmulo_-43sYpA9Wh1joJTA','Dr. Lindsay, Amy, and Niki RN made me feel very comfortable and my nurse explained explained all my procedures that would done.','2019-03-12 00:49:10.250000','2019-03-12 00:49:10.250000',5,'Betty Garrett','https://lh6.googleusercontent.com/-n8JXXR26EwY/AAAAAAAAAAI/AAAAAAAAAAA/3ubkwVIRTIA/c-rp-mo-br100/photo.jpg','14567670160750071148',1371),('AIe9_BGlY-BaOO_aND3JZqxJBS1RdleGVRpvwsKwllgCV3YfOma_xzwlw9B3RhWhhD7qgf8YiTpkJ8SYeGqozNTXOONrRY49OXa1M7qTp7iyIBo33wn30Lk','Best experience ever. Quick service I prefer them to my own primary doctor! They even caught my infected gallbladder that went misdiagnosed for months. I love them!','2019-06-26 04:45:37.822000','2019-06-26 04:45:37.822000',5,'Kristen Carter','https://lh4.googleusercontent.com/-uWv5SzGNulM/AAAAAAAAAAI/AAAAAAAAAAA/tw2TraSURDg/c-rp-mo-br100/photo.jpg','8918455867446117794',9112),('AIe9_BGlY-BaOO_aND3JZqxJBS1RDmnvW7IohOf5ovG7VX1w4qfbHZP-2conXTcQ6lEMX3s9KXT-Sc5s-gamgO1sIwharQJV7hlHmt3tWVC9RFUin2kF07I','It was a lovely quick visit the staff was very nice. I was greeted by Elida Jasmine in registration. She had all of my paperwork ready fast for me to be taken to a room to be seen. Alvean A. was my nurse, she was very attentive and made me feel very comfortable. Tricia B. took my x-rays, loved that she very gentle when handling me to get the perfect shots. I just loved the doctor, Dr. Patel. She was a sweetheart. Loved this will be coming back if I have any other emergencies.','2019-10-10 19:18:03.438000','2019-10-10 19:18:03.438000',5,'Naturally Bre','https://lh4.googleusercontent.com/-v-oCVLzvVFM/AAAAAAAAAAI/AAAAAAAAAAA/mvMpxzpivVg/c-rp-mo-br100/photo.jpg','16389487648212004696',2834),('AIe9_BGlY-BaOO_aND3JZqxJBS1RdMoyhdeHe9_gnvdU9IImzMvPE_57G8-J4Yg4SZfRf-WN4zj1HfB-8JF6Hnvfr3n4smJyk3wfSxEBmcq8J1Vl0Mzre1M','As hard as it is to give high ratings for being at one of the last paces you want to be, I have to say this place is awesome. The staff are all super welcoming and comforting.','2018-07-03 04:54:15.378000','2018-07-03 04:54:15.378000',5,'Jeff Hall','https://lh3.googleusercontent.com/-86Uj9AtpGQE/AAAAAAAAAAI/AAAAAAAAAAA/PqRe8bv0FLU/c-rp-mo-br100/photo.jpg','16891069708558046635',4462),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rdq6q-c6N2XbNQ-S_4joeJRFecqZ4wao7EBRmJyJSDl-pSTSU3Mo2jpEeZpdhayyihn6DCVaOIoFs_LknifjpbKhipdE','Signature Care has become our new “go to” for urgent and emergency care in Killeen! They are quick and thorough in their treatment and all employees treat your professionally and with compassion and empathy! They are awesome!','2020-02-19 01:34:56.306000','2020-02-19 01:34:56.306000',5,'Janet Prang','https://lh5.googleusercontent.com/--Z4dCQZhwqE/AAAAAAAAAAI/AAAAAAAAAAA/ojtPauMc_5Y/c-rp-mo-br100/photo.jpg','2694018788013845459',14225),('AIe9_BGlY-BaOO_aND3JZqxJBS1RDScoW78z1Aosh5jsSHhjqA1GfPIbheNhsTvfmNu2DzrQy-8w_OrMyOyR5-0izwHGdOkwacRh-QxeorYgyobTp_qtTXo','Thanks for taking excellent care of my husband while he was suffering with migraines!! You guys are fast and caring all at once. Amazing job!! Thank you thank you thank you 😘','2019-04-10 22:50:43.611000','2019-04-10 22:50:43.611000',5,'Tynika Lemons','https://lh3.googleusercontent.com/-ONH66UXr1-g/AAAAAAAAAAI/AAAAAAAAAAA/O1bdcRcDXoc/c-rp-mo-br100/photo.jpg','17898197009688164559',5775),('AIe9_BGlY-BaOO_aND3JZqxJBS1RDTpMmhGAVeof0xISnYctMv6YtW7h9vEIeoEY5hgnQJ_3VekEXWaLb85L1FhfOlTpHBrjvUaEScnHtxroIDI0pW2gdyQ','had a great experience here! Keera was great!!','2018-09-01 04:34:37.233000','2018-09-01 04:34:37.233000',5,'Mackenzie Abernathy','https://lh3.googleusercontent.com/-5Iz9JbY2yvE/AAAAAAAAAAI/AAAAAAAAAAA/WxcQ_7jxnRs/c-rp-mo-br100/photo.jpg','16590124370714063921',3754),('AIe9_BGlY-BaOO_aND3JZqxJBS1RDw0Tbn1EHkacRM5MBX9evKBkFG5fg3c2yPW-LeD5ex0HivwH_43xrpuZVe7vzpsN4F3Nn2DtKsHGJHBADkbJWUls-6c','I\'ve been to NEC at Bellaire twice and wasn\'t disappointed either time. The first time I went there although I was the only person in there, I was treated so well by the doctors and staff. The second time I went there 8 more patient\'s were there beside me and the doctors and nurses were still just as caring and thoughtful as if I were the only patient there. I highly recommend Neighbors Emergency Center. Simply I can say that the best ER I have ever been to is NEC.','2013-10-15 16:03:54.022000','2013-10-15 16:03:54.022000',5,'Masy H','https://lh6.googleusercontent.com/-3VSKwZOrBbg/AAAAAAAAAAI/AAAAAAAAAAA/zK6vapjYc1I/c-rp-mo-br100/photo.jpg','8679688254631342173',8946),('AIe9_BGlY-BaOO_aND3JZqxJBS1RdWRJUq-BcDyBtkEeerWTBNWnIIpWBb-uVyt0yzsPDpIdzmA02ftpAjUb1HcvDBm7EcFK1lSSFghLPUj0BTA4wxcdlcE','Thank you to leslie,agnes,tino,dr.sylvester and Kelsey for having my sister checked out and making us feel knowledgeable to our needs. We are thankful for the fast easy check in.','2019-01-26 22:02:50.630000','2019-01-26 22:02:50.630000',5,'Victoria Salas','https://lh3.googleusercontent.com/-7JPYIlN9CNs/AAAAAAAAAAI/AAAAAAAAAAA/ghkZrCz5NOs/c-rp-mo-br100/photo.jpg','3511292162159714121',7450),('AIe9_BGlY-BaOO_aND3JZqxJBS1RDyrTMGwvwJJFSYj43gsJwkOY1XQ6UhE3_aH2YWfv-Z88GWu98KNBk8CLDjuGYThADq8bL6ppAR0BP_M0wRzGsjq7Z9c','I went in with a blood clot in my arm from a PICC line. It was so obvious that the doctor told me I had a clot before doing any tests AND called my doctor to tell her I had a clot. They did an ultrasound of my arm and there was no evidence of a clot so they released me. Before I even got to the front door, my arm got worse so I turned around and asked for them to make sure. I waited 20 minutes during a shift change for a second doctor to tell me there wasn\'t a clot. I went home and called my doctor the next morning to tell her my arm was still swollen and purple. She said it was going to be for a long time BECAUSE I HAD A CLOT and to keep taking the blood thinners she told the SignatureCare doctor to give me. I told her I was turned away with no medical treatment, she ordered a STAT ultrasound, which found the clot this place missed, and I was admitted to the hospital and given blood thinners. I\'m lucky the clot didn\'t break off and cause a pulmonary embolism during the night. The ultrasound tech at this facility missed my clot and, instead of ordering a second ultrasound to make sure, BOTH doctors here chose to ignore their instincts. Next time, I\'ll just call 911.','2019-06-12 17:00:10.285000','2019-06-12 17:00:10.285000',1,'Kerry Stewart','https://lh6.googleusercontent.com/-F2Sy6vFr54Y/AAAAAAAAAAI/AAAAAAAAAAA/AOT9fHZddTs/c-rp-mo-br100/photo.jpg','14567670160750071148',1311),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rdz_GKdGxa-q_ZtGLb5VVkTPcobmyMLkoj4LN_D7RvPuOGoxB3bjecQ1j1mLT41nu5jRJyPr4F3wHq5nyrFhJGYEb0H8','Was here Thursday 07/30/20 for right abdominal pain ..Dr. diagnosed me with gallbladder issues immediately. Ran all tests and sure enough needed gallbladder surgery. They were all very nice and attentive. Highly recommend.','2020-08-04 17:35:59.054000','2020-08-04 17:35:59.054000',5,'Mary Belinda Martinez','https://lh5.googleusercontent.com/-DrlQ-7f3xwc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnMcjmwNo8ZF2Ilh0Zbjb2DhAzpvQ/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22029),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rdz4EDSM5VKGYp8JB_0FThf8vpGyp2GWQOb2FXTOCfaX5OUOjwsL9EkVkNWV_T5Iz-uLmCJ-qJqEzO-yLP2z4htOQCAs','Great service, helpful staff. Dr. Das was gret','2020-08-22 00:24:38.523000','2020-08-22 00:24:38.523000',5,'Verna Youssef','https://lh3.googleusercontent.com/a-/AOh14GiXzC1JnJnSnDvUdDi7ePeaSMOMF7GKWxy_9SC3=c0x00000000-cc-rp','14748677429039074158',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RE20ZDWcuU2274afOnvGqbAdTje66Gprlb-nvJ4ZqKkD-m3q03fgnXN4OVqac2vWYdTYZCkMMn1VsskLRQcoJ3ZQPohA',NULL,'2020-07-25 21:43:30.313000','2020-07-25 21:43:30.313000',5,'MariaLuisa Mena','https://lh6.googleusercontent.com/-qNtuzl1-EIc/AAAAAAAAAAI/AAAAAAAAbRw/AMZuuck8K_pdtq8GiNk86V75L6B2K4JDJw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21797),('AIe9_BGlY-BaOO_aND3JZqxJBS1RE5R9ygomKqlaO1L5Fe3yMjpCBELGP1rqjScxDfo86hrgbqaoxM3M8Ai3W7HAMdQtHQz_6W5wrtiQ6JppPAvirB9aNLc',NULL,'2019-12-29 16:08:52.547000','2019-12-29 16:08:52.547000',5,'PAPATONE','https://lh5.googleusercontent.com/-4JjUz0hOsJ8/AAAAAAAAAAI/AAAAAAAAAAA/LVjlAMEx8BE/c-rp-mo-br100/photo.jpg','2694018788013845459',5971),('AIe9_BGlY-BaOO_aND3JZqxJBS1Re7kEZqOnbXlWOW1O6e_dW1VlmeIaSyBBrxYt2WlgFB32IaFzr1rg0gaQoWDFrVSCgn474afDyZcWxo7M9m0nkA0dmLQ','They are sooooo nice here! I came here on the recommendation of my brother and am\nVery glad we did. They took really good care of my 86 yr old mom! Tanishia is great!!!! I also wanted to point out that my moms pain in her hand was treated perfectly and healed by Dr Cavasas!! The nurse Shelly and the tech Heather treated my mom with such heart. I will be sure to come back to this Signature Care!','2019-04-03 03:00:01.557000','2019-04-03 03:00:01.557000',5,'Aline Houston','https://lh5.googleusercontent.com/-prPgRxPcF5s/AAAAAAAAAAI/AAAAAAAAAAA/gHQWnjrFtEc/c-rp-mo-br100/photo.jpg','17898197009688164559',5782),('AIe9_BGlY-BaOO_aND3JZqxJBS1Re9ElNNkCAakvNfPPw0DWk88u4QqEtSA5UA36kzNSi4B-hZ4kD_VROCLp_CLU5YWtp8IE8OZ6w7PSeC6UWd2MbJUIa_g','Kristina and Laura and maya were a great help they assisted me with my injuries and answered all my questions. I would recommend coming here to receive the best customer care','2020-02-21 19:57:13.185000','2020-02-21 19:57:13.185000',5,'ZEKE RODELA','https://lh4.googleusercontent.com/-wnDeBQYeEMw/AAAAAAAAAAI/AAAAAAAAAAA/_U8TL5eNock/c-rp-mo-br100/photo.jpg','12541597562633926366',13357),('AIe9_BGlY-BaOO_aND3JZqxJBS1REeNXjg31CTVAc56U8_6zWHnX35h5r-OiK3EmgoykDZNfwZcb8PVwUNcdafo0qkweirn1gt6fLSfDxwp1McAXiWtp3p4','Very quick to be seen and get results. Everyone is very nice. Dr. Carpenter and and RN Jennifer are great. They explain everything really well.','2019-01-17 23:59:11.167000','2019-01-17 23:59:11.167000',5,'Tanner Inman','https://lh4.googleusercontent.com/-JENWlwevVQw/AAAAAAAAAAI/AAAAAAAAAAA/wHas2L-QtnQ/c-rp-mo-br100/photo.jpg','3272657195432704501',7053),('AIe9_BGlY-BaOO_aND3JZqxJBS1REiUscZ4nerI_XBelnTQsEwk0_TPXK9uVoYoolwdkBgilS7SfrxMS4f4Uni1HKceFGYoqxDi-qhGSJ7qSnql0JVeIiXA','Very personable and thorough. Dr explained everything and nurses were very kind and knowledgeable.the staff Dr. Pham, nurse Alveana, Marcus in radiology, Keith Er tech and Vanessa in registration were awesome!!','2019-11-19 20:36:52.659000','2019-11-19 20:36:52.659000',5,'Kevin Keith','https://lh3.googleusercontent.com/-BbiGh3lmwDg/AAAAAAAAAAI/AAAAAAAAAAA/sBVYGfusV1E/c-rp-mo-br100/photo.jpg','16389487648212004696',2660); INSERT INTO `review_review` VALUES ('AIe9_BGlY-BaOO_aND3JZqxJBS1REJe-ndmvVGDNkn73bctSXD3LCeDfe7U9RX8k1S-0pGZ27-KEubdi4HAkVn3wnABBJl9shiTujh-Ddh01r0pP_ATnqmE',NULL,'2018-10-21 17:54:24.078000','2018-10-21 17:54:24.078000',5,'Alex Hale','https://lh5.googleusercontent.com/-pHBDW96SLxQ/AAAAAAAAAAI/AAAAAAAAAAA/HbXm9BKpBR4/c-rp-mo-br100/photo.jpg','14904078213800803294',2204),('AIe9_BGlY-BaOO_aND3JZqxJBS1ReLaegGp_D37vQph29ubvKHaIj7UXgFnvteFST-BhGrzQFxLA3ecnFt-AkL1ZIWJH6bMDJBbihEsfUFR7ccMA3KoWGbc','Husband had to come due to work related injury and service was great. Thank you to Dr. Wang everyone in staff. Ms tanishia and to nurse Andrea','2018-12-07 05:01:29.761000','2018-12-07 05:01:29.761000',5,'Samantha Martinez','https://lh3.googleusercontent.com/-XAiOqUdpQg4/AAAAAAAAAAI/AAAAAAAAAAA/N9SHUHMr_gY/c-rp-mo-br100/photo.jpg','17898197009688164559',5915),('AIe9_BGlY-BaOO_aND3JZqxJBS1REQneWIIgFjbGExUtVVk0uCV7qBDTQoJkQ7FVtQATtHDYGzmR6XtX2JLQLZcnl58JFr-7iv7WDbnLoPmaggeG1nzFZTM','Fast, friendly service. My ER Tech, Leah, was attentive and had a great attitude.','2020-08-03 15:57:53.019000','2020-08-03 15:57:53.019000',5,'Bella Samarron','https://lh3.googleusercontent.com/a-/AOh14GjXEOI6xPCT0iqhvjHWn8R7H_M1WFZbQFQoIPkj=c0x00000000-cc-rp','13486358490203335051',21824),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rer9noo2uz5At2mGKWFEItT_CIzWKAb5qRLPD4bFNsxMHUyJSE1X1q1LRPJVr1yfZz8IzQlT1asvBujY5SSAWp1LN2HI','This place has an exceptional staff who took care of me with great detail and concern..\n\nTo the staff who was working at the time of my visit \nAwesome job !!!\nThuy An\nAlvean\nMarcus \nJocelyn','2020-02-12 17:22:00.305000','2020-02-12 17:22:00.305000',5,'Dianne Ybarra','https://lh3.googleusercontent.com/-TARUdGtxOFY/AAAAAAAAAAI/AAAAAAAAAAA/iodDnTdw3RU/c-rp-mo-br100/photo.jpg','16389487648212004696',22588),('AIe9_BGlY-BaOO_aND3JZqxJBS1REtIHUoI90cN-mvPXDwDneOhRNvFWbf_JLb1QzNh25Y-5avNkCpH_BTdrfgIm2Ae1D_ddFYdE3S9X41jNSIBv_OWwqBI','Adam, Dr. Elsbecker, Cristina and Chris, we\'re very compassionate and professional, Everytime I come here, or my Family comes and get treated, the staff is very caring.\nI love this place\nDeserves 10 star rating, very clean, personable and respectful','2020-02-19 20:13:40.483000','2020-02-19 20:13:40.483000',5,'Mari G Garcia','https://lh3.googleusercontent.com/-URsbGsnphSU/AAAAAAAAAAI/AAAAAAAAAAA/DjqQYJ7ZhOw/c-rp-mo-br100/photo.jpg','16891069708558046635',13943),('AIe9_BGlY-BaOO_aND3JZqxJBS1ReuGREE3uN3TMLIdpDL1XuhDKa0nVchm4yoSwEYZvmbwUMEe4yVPKn04lcQYnRr3FyyB7zftYSfLP6OjtaVQ3oK5FTfQ','Very clean facility staff is very friendly Dr.Harjai was very informative.. Alvean the rn was very sweet and helpful.. the radiologist Tricia B was fabulous as well very sweet and friendly .. Elida jasmine at the front desk was very sweet I loved my experience here thank you so much','2019-10-31 14:55:16.438000','2019-10-31 14:55:16.438000',5,'Laura Portillo','https://lh5.googleusercontent.com/-l3nQNtWq0Lw/AAAAAAAAAAI/AAAAAAAAAAA/h8AuTcwpj-Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2750),('AIe9_BGlY-BaOO_aND3JZqxJBS1REUxhVv3feGjn6yO-SvmpeD1HPt3BrJcd3XHIxPPlYCb52rxOwZhtNYzMx54QlTETXLC0W5l51kew9vKS7fcOYsSCNxI','Nurses and team were very nice and attentive. Got check in and seen very quickly by Diana. My husband was the one being seen and the doctor was dr. Zhen and his nurse was Kristina. Great team and staff!!! Would recommend coming here.','2019-12-27 19:01:59.058000','2019-12-27 19:01:59.058000',5,'Crystal Vega','https://lh3.googleusercontent.com/-ClpRxxi1-uc/AAAAAAAAAAI/AAAAAAAAAAA/8nkE8_BgdYs/c-rp-mo-br100/photo.jpg','8679688254631342173',8669),('AIe9_BGlY-BaOO_aND3JZqxJBS1ReVMfHU1572bVsYx5nx254n9Fov2dGTDDIm0AeiXVN8gDoJdvQ9I1pTS9mCfQuvx8TH_cO8FFufsuKGjiDvcTGOkX_qo','I LOVED my experience there !!! Tatiana ( Front desk ) was so helpful and cheerful. Had a positive attitude the whole time during my visit and she was one of the very few people that was able to pronounce my first name correctly at first try. Haha It meant a lot !! Everyone here is so helpful and the facility itself is so clean and neat! I\'d definitely recommend this to all my family, friends, & colleagues! When you need Care, Signature is there !!','2017-07-28 02:10:07.303000','2017-07-28 02:10:07.303000',5,'Abigail Galvez','https://lh4.googleusercontent.com/-AFX42yJ1Wck/AAAAAAAAAAI/AAAAAAAAAAA/ssHRSG0ys5Q/c-rp-mo-br100/photo.jpg','8918455867446117794',9374),('AIe9_BGlY-BaOO_aND3JZqxJBS1ReYIQq3b8ZsxjbZEqPJJSt6oO0fc3hMCLWmc6PyI4HxGZnvPqYbNZhkjpFWlifwD96xluNbPNfDXKfMoyG5yva29KnxQ','The staff was very professional and listened to my concerns and the doctor did everything he could to answer my questions and solve my problem. My daughter was with me and treated very kindly and given snacks while I was with the doctor. Most importantly there was not a wait. I did not even have to wait in the waiting room I was taken straight to a room.','2019-01-24 04:15:26.398000','2019-01-24 04:15:26.398000',5,'Adrienne Scoggins','https://lh4.googleusercontent.com/-7ehZg-h160g/AAAAAAAAAAI/AAAAAAAAAAA/LICTjOyIpYE/c-rp-mo-br100/photo.jpg','3272657195432704501',7040),('AIe9_BGlY-BaOO_aND3JZqxJBS1RezcRpmeKDtNCIJkc3pZpvbYuU9k_kAHhtEuzbbeZ2fs_iq2kv_ITs8Ql64f1Ey_inFaY_1EJi80k1ShVFrx2sdkgYxE','Love this place. Quick with great customer service. Pleasant service from the moment I walked in and greeted with a smile by the register Therisa. Checked in serviced by a pleasant and attentive Tech Shane & RN Katrina. When Dr.Bansal,S walked in, it was the the cherry on top, that solidified my cares was in good hands. Thank Each of you for your outstanding service.','2020-06-23 20:37:52.407000','2020-06-23 20:37:52.407000',5,'Amunique Love','https://lh3.googleusercontent.com/-ZL500weEBtw/AAAAAAAAAAI/AAAAAAAAAAA/Fmi4Z2HfdIg/c-rp-mo-br100/photo.jpg','8679688254631342173',21203),('AIe9_BGlY-BaOO_aND3JZqxJBS1RF1cFUJ2Pwu46J0nAwwdDKcSv62TYtvPKxBNm1cnn-6rwsI84DXs5znaN2uWES__EhcPJCUJPJkYTWe2yvNXKLaD6lrw','I had the best experience here instantly connected with Norma warm personality made me almost forget that I was sick. Her and Robert made sure that I was comfortable well taken care of while here amazing and clean atmosphere the first place that had chargers omg that was amazing cause my phone is always going dead doctor smith was very warm and was very concerned about why I was there and making sure I get the best care I’m so happy that I stopped in at this location best experience will recommend this location for everyone I know','2018-11-07 00:13:13.763000','2018-11-07 00:13:13.763000',5,'kristi Robinson','https://lh4.googleusercontent.com/-Zu8DDRQCRY0/AAAAAAAAAAI/AAAAAAAAAAA/HxXic-J8DpI/c-rp-mo-br100/photo.jpg','8918455867446117794',9218),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rf48IuuTm-m0G0PFr7eLLVL9y9WYFCh_RVEACjtI1njfImZoaNx5YJ7lNJv3FptJTNG3Evn4MT7w85boY76sN3KBZ2AQ','Great care with nures Kristina, Scott,Quyen,Genesis,Ding','2020-01-14 22:46:44.371000','2020-01-14 22:46:44.371000',5,'Stephanie White','https://lh3.googleusercontent.com/-upIO7oTpA_A/AAAAAAAAAAI/AAAAAAAAAAA/HPA3gHsNBTQ/c-rp-mo-br100/photo.jpg','12541597562633926366',9659),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rf98CVbr3hpMm7xNCLkww5uqgL3gWpQi4nzEDK70gFYMnfDmEj0jniCkLV63v_RUq5SDK8NeJkf1PPaJ_pH-XayMpjuY','They were wonderful people..very knowledgeable about sickness unlike other hospitals. Beautiful and clean hospital. I do not like blood drawn and Alvean the nurse help me get checked out. Dr. Appiah was very helpful and a great dr. Jocelyn was one of the nicest registration people i\'ve seen and Brian the ER Tech helped me get my results back in a timely manner.','2019-12-18 19:24:20.648000','2019-12-18 19:24:20.648000',5,'Corlisa Hockless','https://lh5.googleusercontent.com/-deKvuo1-oKc/AAAAAAAAAAI/AAAAAAAAAAA/x79gGh2IAf8/c-rp-mo-br100/photo.jpg','16389487648212004696',2534),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rf9JWdIcs2VzTqRb6SDXkr8n4A3XiDnhiA1Pr3BDoOzKlQy2A-MU-K4VqHD7goSFN7R56YgWdGoCqJqowgsH3ROqi60I','Dr.Edwards\nRN Karen\nRegistration Kim\nRT Gunnar\n\nStaff was so understanding and patient with our family. It was a wonderful experience during a difficult time. Would recommend that everyone comes here!!','2019-11-27 21:24:06.651000','2019-11-27 21:24:06.651000',5,'The Man Hines','https://lh3.googleusercontent.com/-kES6FTE948E/AAAAAAAAAAI/AAAAAAAAAAA/zOBEkrYJAuc/c-rp-mo-br100/photo.jpg','3272657195432704501',6850),('AIe9_BGlY-BaOO_aND3JZqxJBS1RfA2-XsBX0SkZWp-DoSTTAXYN20Gp2LA9qYi3uZgzXu1VPIaZYoBVHyiFfwpkUWWFbb388TjknkPGrQB_t8_6qOsL95A','Dr. Dewaal, Kanyon, Erica & Sam we’re all so sweet and attentive! So sweet','2020-03-06 22:33:07.461000','2020-03-06 22:33:07.461000',5,'Haley Tripp','https://lh6.googleusercontent.com/-xLITMLYUrKg/AAAAAAAAAAI/AAAAAAAAAAA/GPGzex5ULmI/c-rp-mo-br100/photo.jpg','14748677429039074158',18853),('AIe9_BGlY-BaOO_aND3JZqxJBS1RFbaJSI5W0H_LH0QybsDj3sAFpeiDV-aGpW12fJpl0iS_1olSKCbW4L_AI5HrewCWbD3xha9HCyRKH5ZWfS6_E-Pa8Uo','Fast service! Efficient, friendly staff & docs. No waiting. Left Methodist ER because 4+ hr wait (flu sounds) son in abdominal pain 48 hrs. Worth out of network cost.','2018-01-24 03:56:53.915000','2018-01-24 03:56:53.915000',5,'Katie Keene','https://lh4.googleusercontent.com/-EVrI7aL069w/AAAAAAAAAAI/AAAAAAAAAAA/HyP2TqNYcnM/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',8904),('AIe9_BGlY-BaOO_aND3JZqxJBS1RfBLaI8Dw9mKlGyq_8eLh0N8FB4bTtZYtkWqLBfWxaGWwC84IQlLXSbNbji8yqzX_XtKyt9u0dihhKyRwBU0dGtr2Nuk','Quick service, caring staff. I highly recommend them for any of your emergency needs.','2020-02-24 21:20:10.600000','2020-02-24 21:20:10.600000',5,'Paul Kolanek','https://lh6.googleusercontent.com/-LnZyCtnVsmI/AAAAAAAAAAI/AAAAAAAAAAA/sjMKeSxvfEs/c-rp-mo-br100/photo.jpg','17898197009688164559',14125),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rfeb8KRhdlybFQOWTF5FjRKtPkGaaKduL9cCneXkZ6lX-GEEzNTCATRu4MqwNtbLI1deoFIP_zg-z1D01mV7y4cn7Aao','Great experience','2020-08-07 14:55:07.552000','2020-08-07 14:55:07.552000',5,'Bric Steed','https://lh3.googleusercontent.com/a-/AOh14Gjd03JNnhyIRSFf98xjMQOML66OYTBCnkrxuQZh=c0x00000000-cc-rp','8626688543755174284',22229),('AIe9_BGlY-BaOO_aND3JZqxJBS1RFEdCXdzJrSIzKLL6ftBR26M41tjnjJzb6is6XDRCQ5isoz8i77MZ8qnwsvZ47MPKs_jHWTOYcUJj4HVO3rmnRrwUzdw','Awesome facility!! Got treated quickly! Staff was amazing to my 4 yr old.','2019-12-04 15:10:14.245000','2019-12-04 15:10:14.245000',5,'ORJH PORJH','https://lh5.googleusercontent.com/-m7KopmYbZmE/AAAAAAAAAAI/AAAAAAAAAAA/cLGTCTAXG6Q/c-rp-mo-br100/photo.jpg','6521947413723274945',8079),('AIe9_BGlY-BaOO_aND3JZqxJBS1RfHvZwT_rO4PxGKDEqCrmOj9Rsq5XFTC_MfOCYvh5JvvP3a58T3sZZPe1sSz4QF3XlDYu5S1urd5IJLRrH6PLdmCZQMk',NULL,'2020-07-25 15:46:11.424000','2020-07-25 15:46:11.424000',5,'Juana Olguin','https://lh4.googleusercontent.com/-CyLM3Jyt3bQ/AAAAAAAAAAI/AAAAAAAAAAA/EEL4nPWX2WQ/c-rp-mo-br100/photo.jpg','2077061009497551125',22842),('AIe9_BGlY-BaOO_aND3JZqxJBS1RfKLRZbGI7af-ApwY0rkJe9YYSlSHBnT_m5IB-F_51VEbl3MZEIvi05glD-2WDaWwuG2GsC74zXoQ6-mZKcMkeUMnTQI','This place is truly amazing . My whole experience from the beginning to the end was awesome. The front desk staff was very kind when I walked in. I was seen immediately . The nurses were caring and gave me peace of mind. They checked on me frequently and was practically by my side the entire time. Dr. Edwards is truly the best. She was very informative and gentle. She answered every question I had and made me very comfortable. Overall I have definitely found my new go to Emergency center. Thank you very much to Jessica , Sam , Mary , Fatima , Monica , and Dr. Edwards. You are truly amazing.','2018-07-28 16:25:26.859000','2018-07-28 16:25:26.859000',5,'Amori Shokunbi','https://lh6.googleusercontent.com/-x32ZWDI7cw8/AAAAAAAAAAI/AAAAAAAAAAA/9XAY5BJGdBA/c-rp-mo-br100/photo.jpg','17394740196501090048',4822),('AIe9_BGlY-BaOO_aND3JZqxJBS1RfNSYUQ7TMg3-Il4u6PhfgszzX05tTGRVOj1oE3oilkpVVvRXWwnrcNCSCn25sM5gFJ16qPKzrJWNeVJhnl40yKOCv4M','Absolutely love this care center!! ALL staff are very nice and welcoming. The doctors take their time to make sure you feel comfortable and at ease. I live close to humble area but drive all the way over here for the treatment!!','2016-12-16 16:58:19.836000','2016-12-16 16:58:19.836000',5,'Gabriella Delagarza','https://lh3.googleusercontent.com/-ICyR3HoCENo/AAAAAAAAAAI/AAAAAAAAAAA/_S3MW0hTqCk/c-rp-mo-br100/photo.jpg','14904078213800803294',2440),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rfob_s7LiSqlppZF_prbcGLzJ-ql4E9hZ5zdZgnMTVGVRwHUE3ikZ27STmJoD7gZA2kVJOmSTCHK16LSHz-oB_cwCOSU','The Staff is here is very friendly and efficient. This is the first time i’ve been satisfied and happy that I went to an emergency room. Selina is an angel, she’s very gentle, precise, and caring. Dr Edwards is an outstanding, qualified Doctor who will go the extra mile to make sure that you’re taken care of.','2019-02-02 19:26:08.029000','2019-02-02 19:26:08.029000',5,'Sonia Sadaruddin','https://lh4.googleusercontent.com/--j2CgQb-d0o/AAAAAAAAAAI/AAAAAAAAAAA/hk08RLEI2eg/c-rp-mo-br100/photo.jpg','17394740196501090048',4727),('AIe9_BGlY-BaOO_aND3JZqxJBS1RfOXs7eHHHORU-0bQ-Oy6uQ49TeB3pmmmPM03_HkchsbvsfLrJdOfD_P5fbkAplSaaLREiAYAMEt7sbo5Ii7PGDgV3es',NULL,'2017-08-14 04:34:27.734000','2017-08-14 04:34:27.734000',5,'C P','https://lh5.googleusercontent.com/-HYM-0kXxYgM/AAAAAAAAAAI/AAAAAAAAAAA/3UpV9I3HN2U/c-rp-mo-br100/photo.jpg','17394740196501090048',4997),('AIe9_BGlY-BaOO_aND3JZqxJBS1RFPbMLV7iM99mEArVxEt71Q_FhPZ8AZpB_nUSs6uNxMg0VeQQ4Eejvt-59039um-ZzXE3lKPwXxwDtCa8YnKLyQaQSR0','Almost no wait time, staff was friendly, Dr. Chin was wonderful!','2017-04-15 05:07:11.743000','2017-04-15 05:07:11.743000',5,'Rachel Garza','https://lh6.googleusercontent.com/-Ekg3DHdfAGg/AAAAAAAAAAI/AAAAAAAAAAA/HOfq3arr43Y/c-rp-mo-br100/photo.jpg','14904078213800803294',2366),('AIe9_BGlY-BaOO_aND3JZqxJBS1RfSe6D73_5g4GaAgH8f6ti9yfBczbJYQwE9CsR_u9R7dkfUDq8Xi_AQpY_ELAzUGMDOJz6sZDIiscMGmO7ZOp9mOazuU','I was greeted when I arrived by Elida Jasmine who helped me sign in and I was promptly called back into a patient room where Tricia took my vitals and Nurse Alvean asked questions concerning my symptoms. Dr. Harjai was polite and showed empathy with my symptoms. The whole team comforted me during my visit. This location was also very clean.','2019-09-05 15:50:35.684000','2019-09-05 15:50:35.684000',5,'Jayda Venable','https://lh3.googleusercontent.com/-Wsezv5kfj4k/AAAAAAAAAAI/AAAAAAAAAAA/fBlii8RANv0/c-rp-mo-br100/photo.jpg','16389487648212004696',2950),('AIe9_BGlY-BaOO_aND3JZqxJBS1RftXDAQfXvmXsbHQhqpqnzpi1y72S0rVNCbdbHK-PsF2LYrEaZ4-nMLAb4N_2FJSe-ByGNg9nvTLoIVZ-8RQVw5iv4Fk','Had I great experience beyond happy with my service..being sick and getting gretted by Nurse Laura and her smile made me feel much better and Dr. Sylvester has awesome bed side manners. Never felt more informed and care for by a team of professionals.. I recommend this facility to everyone','2018-08-09 19:07:33.270000','2018-08-09 19:07:33.270000',5,'siemaj davenport','https://lh6.googleusercontent.com/-Ksyd3vVHpD8/AAAAAAAAAAI/AAAAAAAAAAA/y59T4G_E97Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7646),('AIe9_BGlY-BaOO_aND3JZqxJBS1RFVDrihBKc0LmR6EBU5Mfr9SvbtyNcoYdEk9N5OnK10LFZQphLgVmdmPFJrimAIEc7c9ItnnfNJWxUzdfje0wj8OEPSk','I am quite frankly shocked at the previous review. My experience was exceptional. I sliced my fingertip open the other day and went in to get it fixed up. I couldn\'t write well for paperwork, so the girl at the front desk immediately offered to help and write for me. Wait time wasn\'t long, and quite frankly, I don\'t even remember how long it was exactly because I was happy watching Grease on one of their giant TVs. I\'d say it was definitely less than an hour though, which in my experience, is not too shabby for an ER time (especially on the weekend!). I also want to mention that this facility is built incredibly well, and cleanliness was impeccable. It is seriously the nicest doctor\'s office, urgent care clinic, hospital, ER, I have ever visited. \n\nOnce I was called back, vitals were taken, and I got to see the doctor right away. He checked my finger out, made his recommendations, and immediately got the nurse to start setting up for stitches. I was literally in and out from that in less than 30 minutes. I rarely write reviews, but when the doctor called this morning to check on how I am healing (which I am quite well!) and to make sure I didn\'t have any questions or concerns, I was inclined to write a good overall review. From the front desk to the nurses to the doctor, everyone was wonderful and helped make a nasty experience a pleasant one! ','2016-02-29 16:19:55.836000','2016-02-29 16:19:55.836000',5,'Rachel Lorton','https://lh6.googleusercontent.com/-LhcJvDdXuWs/AAAAAAAAAAI/AAAAAAAAAAA/okGBDlTpH4Y/c-rp-mo-br100/photo.jpg','13486358490203335051',1142),('AIe9_BGlY-BaOO_aND3JZqxJBS1RG2MGAbqhLXIWiOTq6xrfOIDCaMRwS4GnigXkDqR-iRdueqLufaDk9T-mPdCTCU1adH6Rn1DvcrrEujHwB2U2eEsY360','Wonderful Job!','2020-01-07 23:28:39.723000','2020-01-07 23:28:39.723000',5,'Prima Starr','https://lh3.googleusercontent.com/-YBxv4S0bTfc/AAAAAAAAAAI/AAAAAAAAAAA/w2S2wXcwYZ0/c-rp-mo-br100/photo.jpg','16590124370714063921',9432),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rg6SXHz5aYROhlfePcmqbokRm30ic3HKGGxbLJqoq7Xngi8C2uvs4yvp7TT1AqpzYjAJarfcm1j7auHHjTpr0Bd-qmNU',NULL,'2020-01-19 23:07:42.483000','2020-01-19 23:07:42.483000',5,'Jasmine Orduno','https://lh4.googleusercontent.com/-DTGBRE9nrgw/AAAAAAAAAAI/AAAAAAAAAAA/mahb_lzIqUE/c-rp-mo-br100/photo.jpg','12541597562633926366',9941),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rg8e9Xx70MGip5ocAMp_AM56_rpfD6MfC3Wzt4xcXXcs7ZRVZjMQLXx-WefyZvhqJCtXXJEL6rJON1O9vUxbmHogA-cM','Very professional and caring.\nThe service was excellent','2017-07-05 11:08:14.288000','2017-07-05 11:08:14.288000',5,'R.V. Green','https://lh3.googleusercontent.com/-msVd4NTRhXA/AAAAAAAAAAI/AAAAAAAAAAA/U2gJ_jLHgmE/c-rp-mo-br100/photo.jpg','17394740196501090048',5025),('AIe9_BGlY-BaOO_aND3JZqxJBS1RGby_qDCrg1s-_Qqbpn-0aP0COQDJyP3xJn_hqiRjhrXG4Hv_5AjNA9jt_jvrkCJ0gp4qulbcU5RJ4gSeCbNqO6fJMSs','The doctor was very thorough and compassionate.\nCaring, smiling and laughing is good atmosphere for patients. I will continue to come here. They even checked on my daughter the next day.','2018-08-06 19:12:04.006000','2018-08-06 19:12:04.006000',5,'Mitty Millan','https://lh5.googleusercontent.com/-92SIMeGtEKc/AAAAAAAAAAI/AAAAAAAAAAA/iTadwsE6W8k/c-rp-mo-br100/photo.jpg','17898197009688164559',5928),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rgi2o3esgTg1HkjCmT5K21ZThveBu6gi1WWohE9e2puU2UkBLhl7QPGV-vXOsKV8kw9WXWmHqKJ5XW5wIOg37ID3ZhR8','The experience was great. The staff and physicians were wonderful.','2016-12-26 16:52:21.667000','2016-12-26 16:52:21.667000',5,'Debra Jones','https://lh6.googleusercontent.com/-bFHHwNWWY6U/AAAAAAAAAAI/AAAAAAAAAAA/eLHI2C1y4jc/c-rp-mo-br100/photo.jpg','17394740196501090048',5145),('AIe9_BGlY-BaOO_aND3JZqxJBS1RGJ07pr4jb81T2M_4yPyWu7VwiEWeK0gAnUaqRo4seO1179T3eKdYKk3nVQvCRIY4_jsnPzaWG41WU4bsz4UmTwbA8jY','This was our 2nd visit to this facility. They were again very fast, nice, professional and the facility was spotless. Thank you for your help!','2019-06-09 14:18:34.074000','2019-06-09 14:18:34.074000',5,'Debbie Winkler','https://lh4.googleusercontent.com/-4YTc7WrO2cY/AAAAAAAAAAI/AAAAAAAAAAA/mSNJ5PI9DoM/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2130),('AIe9_BGlY-BaOO_aND3JZqxJBS1RGMKSppSuJMtgOAWyii4rcoYoHRnCeDDI9XsikCikmyS6YCN2w2JXlxuTI86H4a-Oy2Ck6rOoDID-dTbWQB5RAuzaR1c',NULL,'2019-09-13 11:40:23.039000','2019-09-13 11:40:23.039000',5,'Roy Burton','https://lh6.googleusercontent.com/-tosvMLtQ2ck/AAAAAAAAAAI/AAAAAAAAAAA/4Bch7_vJKDo/c-rp-mo-br100/photo.jpg','2694018788013845459',6067),('AIe9_BGlY-BaOO_aND3JZqxJBS1RGSi8fgpJTFQHfRoiFaFW-L-8j52PnzMcsN4GgXo92Wu8e34fRF95yg4uvG8AvptqoI01QZmbN1ZRgyJ3scxmoiV73v0','A very friendly quiet place. Everyone was nice and helpful. I was in and out in less than 30 minutes! ','2017-02-02 14:38:35.792000','2017-02-02 14:38:35.792000',5,'beverly carthern','https://lh3.googleusercontent.com/-yh5mFlu8-WU/AAAAAAAAAAI/AAAAAAAAAAA/_OxmDBK0810/c-rp-mo-br100/photo.jpg','14567670160750071148',1897),('AIe9_BGlY-BaOO_aND3JZqxJBS1RgT2eP_XltcHXXAItaKpnzOxzWZfiYXfWS3lJbiZNzASrbgpS6lWBHYkfTUIoZADmRKFK_8aP2W2lThSEhxcIR9GHUMk','I was only here for an hour and the service was awesome! The receptionist Kimberly was so friendly and awesome! The nurse Brad was very professional and explained everything going on, and the Morgan took my X-rays and was super friendly and funny! If anything ever happens I will definitely be coming back here.','2017-02-28 15:43:02.387000','2017-02-28 15:43:02.387000',5,'Ashley Duke','https://lh4.googleusercontent.com/-rnCFnt_mF8w/AAAAAAAAAAI/AAAAAAAAAAA/VlIU3tNukNM/c-rp-mo-br100/photo.jpg','16590124370714063921',4047),('AIe9_BGlY-BaOO_aND3JZqxJBS1RgYQM9lnZBi0c2imzxqKDMyPA5w7VaUpp0QidTz_cLr95HWU3yzoHqoD8TYOSbMyIiz-WRUKi0ou24Ba94xV3uFwViWk','We were in Houston for the Houston World Series of Dog Shows from out of town when my husband had a severe allergic reaction. We checked Google for the nearest urgent care facility and found the SignatureCare Emergency Center-Montrose. He was seen quickly and within a few hours we were on our way with a prescription. The staff was very helpful. The only glitch was it was July in Houston and we had two dogs in the car. The staff was fine with me going outside every 15-20 minutes to run the air conditioning for the dogs and they buzzed me in each time, but it made a difficult situation a little more stressful.','2016-07-25 22:25:35.946000','2016-07-25 22:25:35.946000',4,'Jenny Gibson','https://lh5.googleusercontent.com/-Q2fGJQWcL-M/AAAAAAAAAAI/AAAAAAAAAAA/5AC89I_j44g/c-rp-mo-br100/photo.jpg','3511292162159714121',7959),('AIe9_BGlY-BaOO_aND3JZqxJBS1RGYR4V9UYjo34MOsP7LdENj4ZfGJHn2pGVEFeqLb7fd0hxn3lT4jND2S4OSSSuqDmAuQEkhOenHeaRcsautw5E8yfGlY',NULL,'2019-06-22 06:10:59.330000','2019-06-22 06:10:59.330000',5,'Unicorn 14','https://lh5.googleusercontent.com/-ElADDSGU-YM/AAAAAAAAAAI/AAAAAAAAAAA/KAH1ZfYhpQ0/c-rp-mo-br100/photo.jpg','13486358490203335051',940),('AIe9_BGlY-BaOO_aND3JZqxJBS1RH9797uuzrU9bst9Yw7ezRwBtJwmCQxwY8M9NfAjt6p_8LQtH12IyoWQYkYHFaFdUrdu060gJj8xYo8c8Q3EOtPsgV7s','The facility is clean and welcoming. Dr. Smith and Nurse Alvean were thorough, nice, and very patient answering all of my questions!','2019-07-13 15:41:20.836000','2019-07-13 15:41:20.836000',5,'Tiffany Collins','https://lh5.googleusercontent.com/-IrRnx9ErX2k/AAAAAAAAAAI/AAAAAAAAAAA/fC_EuKC2P40/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RhA--k0xKtC29yKG7pb0Ps6a-gauOT7w9KhyiZR6J34M6j-taTZqt3zUeYc1MMlYIXiBSEHu2wmOmsFF4lg8n5x7Ls84',NULL,'2020-01-05 18:01:02.550000','2020-01-05 18:01:02.550000',5,'sierra sappington','https://lh4.googleusercontent.com/-N6-uOeR1W-c/AAAAAAAAAAI/AAAAAAAAAAA/SUuOE7yxBUs/c-rp-mo-br100/photo.jpg','8626688543755174284',14630),('AIe9_BGlY-BaOO_aND3JZqxJBS1RhAaqW5mi2txXKfmTN_euFWlItC0SeXVMzwmldIzSe1qfBxkg1V-RIKOLQJYxc2lm-OAxMVth4pX0c-eiOcscmODPcwM','I came here to get a COVID test— in and out in about an hour and quick testing times. Dustin was friendly, and the staff was helpful in general.','2020-07-19 20:19:01.300000','2020-07-19 20:19:01.300000',5,'Makiah','https://lh3.googleusercontent.com/-6oKBKveNj0E/AAAAAAAAAAI/AAAAAAAAAAA/3DKynTm0qiw/c-rp-mo-br100/photo.jpg','14748677429039074158',21698),('AIe9_BGlY-BaOO_aND3JZqxJBS1RHFEg2mi81tYBGuIeDFuxa6kM8MoMsTwS4mbUhTuAzlIty2T_yje5V0pHkM66MxFKURznJEywlfo33pX0prpZdlCo0i0','excellent services with Robert H\nMarcus B\nPatricia c\nBrian w','2019-12-17 16:18:58.007000','2019-12-17 16:18:58.007000',5,'Frasiah Njoroge','https://lh3.googleusercontent.com/-4TUc9mkCFr8/AAAAAAAAAAI/AAAAAAAAAAA/S4sLxEoz9rQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2539),('AIe9_BGlY-BaOO_aND3JZqxJBS1RHIgPDf9mwI17FoliMOvQuTZ-HtHAsxAaoULD4RvN69W1JTNq5PF7drZl-E6eg1ayDWmCWFsuTQzUhulvmQCeJMXYm24','Dr. Pham, Alvean, Elida, and Aurora were awesome. Thank you for being friendly and efficient.','2019-11-26 19:33:43.461000','2019-11-26 19:33:43.461000',5,'Jesse Gray','https://lh4.googleusercontent.com/-wLGPaVnLxKQ/AAAAAAAAAAI/AAAAAAAAAAA/0zt4jd6eYCM/c-rp-mo-br100/photo.jpg','16389487648212004696',2625),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rhkgswpbe4jTSVWF3rWPk2xg73ZSL-sRbIiISAWQkMbc4EweL_4ZNTlrZzyj1WnTWt-aInKtmwXniE6-NFJaTVz5BP-g','Nice office and staff is friendly and helpful!','2019-12-09 23:00:08.909000','2019-12-09 23:00:08.909000',5,'Jenna Bertero','https://lh5.googleusercontent.com/-FXaZGOFwzCw/AAAAAAAAAAI/AAAAAAAAAAA/g_ChJEf3baE/c-rp-mo-br100/photo.jpg','16389487648212004696',2561),('AIe9_BGlY-BaOO_aND3JZqxJBS1RHki0iLwAufMCzRhTEiJDkK9c9zN97zHoo3CYrdYFum4MIScdtlAaNdcFRcEK1sH3M3Loo10V4ldo7jC3GhjSj0kf3jQ','Great environment and very clean. Lucas, Carla, Dr. Henderson, and the rest of the staff were great and very friendly.','2020-01-18 21:04:25.179000','2020-01-18 21:04:25.179000',5,'Isaiah Green','https://lh4.googleusercontent.com/-qtIKsrVaLmw/AAAAAAAAAAI/AAAAAAAAAAA/EKL1_UU43iM/c-rp-mo-br100/photo.jpg','3272657195432704501',10077),('AIe9_BGlY-BaOO_aND3JZqxJBS1RhpsSZbL3TetdR9Yel3xr_HELBKE71yJU9ZT4pR0EFqQLlbxv_VgflRuHRmIxDl7PjWF7h7AasKtZ6DCSdVCy1Am19x8','Every one was tentative to my needs. Buffering warm blankets and very thorough with explaining what was happening and why they were doing the things they needed to do. From Airianna at the front desk to Lucy and Ryan, and DR. Aaron Braun, everyone was easy to talk to and very assertive to my needs. \n\nThere was no wait I was in an out within about 2 hours. Having never been to an er and hearing horror stories of ers at hospitals I def recommend going here. \n\nThanks!!','2016-07-03 12:01:01.726000','2016-07-03 12:01:01.726000',5,'Jonathon S','https://lh6.googleusercontent.com/-kRdSKyeU7ns/AAAAAAAAAAI/AAAAAAAAAAA/oWw4_aUG3BM/c-rp-mo-br100/photo.jpg','14904078213800803294',2478),('AIe9_BGlY-BaOO_aND3JZqxJBS1RHrPgvTbYg2Qk6LaQIZGuzJCy3BAT4HU68ufC1qjsnJso_PbymuafLHblREHz2_uiXPW6RvdMKP010gDH7b9DbJV29e8','I was in and out within 30 minutes! The staff was kind and caring! I will definitely be coming back!','2020-02-28 13:01:06.398000','2020-02-28 13:01:06.398000',5,'Katie Osburn','https://lh6.googleusercontent.com/-uHFcVidaH0Y/AAAAAAAAAAI/AAAAAAAAAAA/xeo7MC4dnd8/c-rp-mo-br100/photo.jpg','3272657195432704501',14321),('AIe9_BGlY-BaOO_aND3JZqxJBS1RHsDxuHLGOjwH-EOGQVgH7NVNkJgcErsfbuertaB3AynGmbhMJ3tzRK-OTqNvV0GsE4lzyACPyNI9LoFTMH0ZnOAZTxg',NULL,'2020-07-28 10:34:22.565000','2020-07-28 10:34:22.565000',5,'Carlos Paz','https://lh6.googleusercontent.com/-hQYh2892NRQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclnkoawe-IukUW-iy82c4tMb2iSGg/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21955),('AIe9_BGlY-BaOO_aND3JZqxJBS1RHSJ5MEQSOkgFUSCu299zLQ-mFFpac4iU5AeKfhfukXJxqy6YtozRpyU7zj8mLdp2T2aMH4xjxfrxSPcy877RtUzUkGY','From the start of my visit they were very professional. Vanessa G was very friendly and professional. Then once in a room(fast wait time) the nurse Alvean was very helpful and informative. Dr Henderson was very knowledgeable. we will definitely come back when the next sick visit!','2019-12-20 22:02:55.406000','2019-12-20 22:02:55.406000',5,'Rogelio Miranda','https://lh5.googleusercontent.com/-9mylpJCrFGs/AAAAAAAAAAI/AAAAAAAAAAA/q0VqgLRMFus/c-rp-mo-br100/photo.jpg','16389487648212004696',2519),('AIe9_BGlY-BaOO_aND3JZqxJBS1RHt23KGgytlyOptXTuFGPkcX5C9Ku7Gs7QWD4wQFvT6SMBP495IXCRopBDTlcRWZV58AtlVJiBaBp7xn19KhfB92-fjo','Once I got in, the staff was courtesy and very professional. They need to re-think their appointment time allotments. I had a 1 AM appointment for a COVID test, still waiting over 3 hours to get in. Once I was in, the whole process took less than 40 minutes including getting my results.','2020-07-10 15:38:01.636000','2020-07-10 15:38:01.636000',4,'Patrick Arnold','https://lh5.googleusercontent.com/-1AZNEJ0mfYc/AAAAAAAAAAI/AAAAAAAAAAA/Y9Q3qooBlpY/c-rp-mo-br100/photo.jpg','14748677429039074158',21598),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rhucx-PJ9VpT0Lrt9A2kORyVNQeDKIkDi_HvCUiMM37vAd4T1LtoUTGuBRijrAzi4-9fFWjYGnj_0WYycdAcDSCGdyOA','Where do I beginning? This facility, the staff, the Dr and Nurses were beyond amazing. They were so caring and polite. Upon my arrival, I was greeted at the front desk and was seen almost immediately. After going to the back, everyone was still so polite and kind, they did everything they could possibly do to make sure I was comfortable. After running test on my they were very informative of everything. I will definitely be returning if needed. Thanks again for all of your help!!','2016-11-14 15:58:03.294000','2016-11-14 15:58:03.294000',5,'andrea phillips','https://lh5.googleusercontent.com/-kCEct3_WL_U/AAAAAAAAAAI/AAAAAAAAAAA/a-SVaekShnY/c-rp-mo-br100/photo.jpg','17394740196501090048',5169),('AIe9_BGlY-BaOO_aND3JZqxJBS1RHvYehObK_l9aO11hbNazlrhiZ_sj4D94bIgaj0OfPuqfUicGesCcowoa_axXFpNc0P0n71mTL7qkHSJsHqoCVycBMg4','They are doing the best they can under the circumstances. Great Job','2020-07-08 18:10:12.990000','2020-07-08 18:10:12.990000',5,'Gail Caffey','https://lh4.googleusercontent.com/-fIG3DeCUPZQ/AAAAAAAAAAI/AAAAAAAAAAA/Yz286bmtNRo/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',21491),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rhx6IyKIzRa8IcEFztgRZy-DOYEKyzlRw3EDVuhu7lrEI6EgAExMQj0fXqQEELvrUUVsuC6sZYr2KGnIx2xoDSrcrq8M','I loved how they attended well and fast on my son.All the stuff were wonderful they made us feel comfortable around them and just great service.Thank you Dr.Harjai, nurse Alvean A , radiology Marcus B, and registration Jasmine R.Thank yall so much','2019-10-15 20:17:43.281000','2019-10-15 20:17:43.281000',5,'norma jimenez','https://lh3.googleusercontent.com/-8XsO7Nb5fQM/AAAAAAAAAAI/AAAAAAAAAAA/Pt3XBzrI3pg/c-rp-mo-br100/photo.jpg','16389487648212004696',2820),('AIe9_BGlY-BaOO_aND3JZqxJBS1RI-CuKe28xmH43rRSmSQEoQs1ruJnD9Wic5KJP3XydcDLVtBDnerLIPOHTlM9Ls2oMq4St-lwd5DWAmSs2inCi3lpb1g','Brad and Dr. Harjai were helpful and kind. Lord willing, never will need to return, but if needs must, needs will.','2020-02-10 23:31:50.345000','2020-02-10 23:31:50.345000',4,'Madeleine McCall','https://lh6.googleusercontent.com/-CoB8UQEEaXQ/AAAAAAAAAAI/AAAAAAAAAAA/v6qY7FcgXKU/c-rp-mo-br100/photo.jpg','16590124370714063921',13870),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ri06zFGujl1fJtRd25S8UfrneBdRrcbgGnvfdc9M-nWajybq3cgUD8Q6KzLvZC2ApCpvxqAogzRbJE-wPZ6HqDG_LXOw','The staff was awesome Joycelyn checked me in promptly and professional Tricia and Jani were the best nurses in the business!!!! I will recommend this place to everyone I know!!! Oh yea Dr. Hall wonderful man ❤️','2019-05-16 20:29:08.640000','2019-05-16 20:29:08.640000',5,'Shari Kahey','https://lh5.googleusercontent.com/-b__-nGcK_5A/AAAAAAAAAAI/AAAAAAAAAAA/NR2vXP5QU2o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RI0cKpuBj51k0vdYm3n3tEH70PiBeSfwAdMCCp3hPMewYp-uzc4B6EAgjiDmaHYDpAvHcnJeoBoOJd7D54XybH5blgx8','I was here with a friend, and had a great experience. Dr. Kimball was helpful in explaining what was going on to both of us and Cameron was helpful in showing me where to get snacks and coffee and offering me blankets and pillows! Everyone was super nice!','2019-05-01 15:06:31.723000','2019-05-01 15:06:31.723000',5,'Savannah Davalos','https://lh5.googleusercontent.com/--zk3gMblr8c/AAAAAAAAAAI/AAAAAAAAAAA/ASACqQWtSr0/c-rp-mo-br100/photo.jpg','16590124370714063921',3397),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ri1tuY7unz5aZ1BO0OKV2qdNBVvDwcLiuyH_n6ptNomgL009RX4QJo4fuYeq33Rt9VdrLDqIOEMed15p_iwSoE2u7K9o','Came in for a cat scan for plastic surgery, Anthony the registered nurse was super attentive, Dr. vakey had a quick response time to the room, and the x-Ray technician was very informative. Over great experience!','2019-01-21 22:31:38.124000','2019-01-21 22:31:38.124000',5,'Ethan Childress','https://lh6.googleusercontent.com/-ihoJpTYKv5c/AAAAAAAAAAI/AAAAAAAAAAA/qNHK-qB6Pd4/c-rp-mo-br100/photo.jpg','16590124370714063921',3582),('AIe9_BGlY-BaOO_aND3JZqxJBS1RI8vjLFtB7YM_fqneLjuJ8ZReZPlkWpBV_xuSTsywftRe0uOTGZqVcuSZlFgztVkr0sM2U5clmY-AbE0DbUbh0liZ0f0',NULL,'2017-12-11 08:18:20.364000','2017-12-11 08:18:20.364000',5,'Diana Flores','https://lh3.googleusercontent.com/-douY1M3Q1ZE/AAAAAAAAAAI/AAAAAAAAAAA/i11wuIhXIKY/c-rp-mo-br100/photo.jpg','14567670160750071148',1717),('AIe9_BGlY-BaOO_aND3JZqxJBS1RI9TsdM-01qsuzSU2MVh670bui-TZTwLHmNLEbHaAw1yd_TG0SWZScgVK0dyNDp-3qvBgQqKvI0adCQPvIXcjptmG7T8','Such an amazing stuff and place ! I walked in with chest pain ! I was takin care of immediately ! The nurse explained me what tests they will do and what for( nothing unnecessary) ! I was offered a warm blanked and enjoyed a wheel chair ride to the x-ray ! That\'s my second time at the Signature care ER and I know why I came back and I will (If necessary)! Everyone is very professional the place is very clean and since you walked in you know that you are in good hands ! if you are in need of IMMEDIATE care that\'s the place to go !Big Thank you to Adam ! :)','2018-03-10 05:44:41.777000','2018-03-10 05:44:41.777000',5,'Anna Dudrekova','https://lh5.googleusercontent.com/-l2usec9JWMY/AAAAAAAAAAI/AAAAAAAAAAA/lNmfsG_SbaE/c-rp-mo-br100/photo.jpg','16891069708558046635',4501),('AIe9_BGlY-BaOO_aND3JZqxJBS1Riac7cWeo3UJ8pqypE-LnJ2LdM8onqQRdWPONuIw1z8zaBdQaVCY1XsYbkzTjlqKKj3_3V-I8Cl9aG-6W1YRgqAgRyX8','Great experience, staff were very welcoming and helpful. Definitely an 5 star service.','2019-09-24 22:36:45.488000','2019-09-24 22:36:45.488000',5,'Ω-Dat!!','https://lh3.googleusercontent.com/-jSSpabfVMlI/AAAAAAAAAAI/AAAAAAAAAAA/6QZ7iQOmfiM/c-rp-mo-br100/photo.jpg','12541597562633926366',414),('AIe9_BGlY-BaOO_aND3JZqxJBS1RiBvWtdDIOEcBgXMdTjHwr-sDc32CNESfUzFt_PuAagAeyU3_thYQkv-Yy1gUPH_GtR_bHvXmwfNVex8yfxE5zdVluqQ','Ashlee Collins checked me in quickly and immediately got me sent back into a room where i could lay down. My nurse, Jacob Olive, was very friendly and quickly assessed my symptoms and made me very comfortable. Dr. Scott was also very nice and explained my diagnosis thoroughly. This place is top notch and had me in and out in under an hour, highly recommended!','2017-02-06 01:54:29.766000','2017-02-06 01:54:29.766000',5,'Abby Jasek','https://lh6.googleusercontent.com/-AfFyqomQBQQ/AAAAAAAAAAI/AAAAAAAAAAA/FNDe6tOcbks/c-rp-mo-br100/photo.jpg','16590124370714063921',4070),('AIe9_BGlY-BaOO_aND3JZqxJBS1RIduNOIdnWleByPvgW8h5ZWF3muOJi71YS2pKdFHsjlUnnZ1OTEguXbluaLwmdCQc0iQijXDL1TzLo7K-JI9PXnUL1mY','EXCELLENT SERVICE!!! I can not complain Doctor and Nurse had great bed side manners, they were very educated, and super fast. i had almost forgot i was at a hospital. Certainly puts other facilities to shame.','2017-05-11 21:42:49.055000','2017-05-11 21:42:49.055000',5,'Rebecca Iraheta','https://lh3.googleusercontent.com/-TWMpAGh3T9U/AAAAAAAAAAI/AAAAAAAAAAA/Mp0FPmQUpRc/c-rp-mo-br100/photo.jpg','17394740196501090048',5058),('AIe9_BGlY-BaOO_aND3JZqxJBS1RieA5xAMkOU6wEQ7Bpzz2Io2h73qcvmmLFGVfVu-rCdiF27nu2JOA5XyJH61RnB98X3KAP6vr9b8SjID7I_eJALJotHI','I have been there 3 times. They have a very good customer service and knowledgeable doctors. I would recommend this place.','2020-02-03 15:45:38.253000','2020-02-03 15:45:38.253000',5,'leila jm','https://lh5.googleusercontent.com/-gm_qjQRbfcc/AAAAAAAAAAI/AAAAAAAAAAA/vldsbXju9tw/c-rp-mo-br100/photo.jpg','12541597562633926366',22480),('AIe9_BGlY-BaOO_aND3JZqxJBS1RiH7rbyto7eCErcc2aWHRlxXMaf475fcvwYp3SROEJ7b6_g82Oe8upnlx8ZHIPsvzU273iwXCPT6A_W_A0fITjCMqw60','excellent staff! Wonderful service! They met my expectations. Nurse Amanda and Dr Starr were not exceptional along with radiology tech Aaron . I highly recommend this place!','2020-02-08 16:47:16.125000','2020-02-08 16:47:16.125000',5,'lee juarez','https://lh6.googleusercontent.com/-ZTKoDLy--hQ/AAAAAAAAAAI/AAAAAAAAAAA/7MRGaFUKHR0/c-rp-mo-br100/photo.jpg','13486358490203335051',13430),('AIe9_BGlY-BaOO_aND3JZqxJBS1RiHyhPeTxzYTcSogkoHfdK1T9BL37Pupwq6EbnfTYmX3GTXiZM5-9y6BtH7WtyKq5tluLQg8zRtirCjIlpkziKvlsF6k','This was truly one of the best experiences I have had at an ER. The staff was so very kind from beginning to the end.','2020-07-19 07:17:46.173000','2020-07-19 07:17:46.173000',5,'Chastity Ates','https://lh5.googleusercontent.com/-xX1PJ5Qmpv0/AAAAAAAAAAI/AAAAAAAAAAA/S0wnehv4Z3I/c-rp-mo-br100/photo.jpg','16590124370714063921',22669),('AIe9_BGlY-BaOO_aND3JZqxJBS1RIjlZIKCpmRP33V94AeQDJKMm_t8LxnHPB36gojCloRlfr68Dvai2H-1n5XuBlhVfRXx26SsV6zZpxfbGzo6_p67F5_U','Everyone here was so kind and helpful. Keera was so sweet and everything was fast and easy! LOVE this place','2018-10-26 08:54:27.804000','2018-10-26 08:54:27.804000',5,'Maddie Jones','https://lh3.googleusercontent.com/-CU4mxUXq7Oo/AAAAAAAAAAI/AAAAAAAAAAA/g_U_AOYaN0M/c-rp-mo-br100/photo.jpg','16590124370714063921',3687),('AIe9_BGlY-BaOO_aND3JZqxJBS1RinkmSmwF7G6E_dzA-S1QUNxbkHSU4bAwUEvuMuDaE4dgxdKZzMY-sqkvmfi3sqLls69ie6kT62WiRHbAM8hFhOFJOs4','An appointment means feel free to come stand in the sun with the ---- who knows how many people, but many many people who have scheduled the exact same appointment time ---- as if it meant anything. The only person I ever saw was some lone security guard who was positively goofy and seemed to think the entire debacle was hilarious but couldn\'t answer the most basic question. His only purpose seemed to be making sure no appointments admitted prior to freaking melting. After standing in the sun for an hour, I left having never entered the building. When I left all the crowd of people with exact same long passed appointment time were still standing there. No signs, no help, no answers, no medical care. \nHorrible and shameful representation of medicine.','2020-07-11 05:58:06.174000','2020-07-11 05:58:06.174000',1,'Anita Giezentanner','https://lh6.googleusercontent.com/-rWFc4r3Vk1c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckhcxS-jqT4qF27lCZXsgsnFCvLBw/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21590),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ripj-FmCioVC3ETuKArbI1AdJy7kJvpdt8QUYQlL1Ao0yEUUnBR5OCXPIkKMRNYgu0E17aj_aejWECwdYDANwstUFf84','I was taken back immediately and treated with such kindness and compassion. They maintained professionalism yet joked to keep things less stressful. I will go there instead of a hospital any day!','2017-09-07 02:48:03.710000','2017-09-07 02:48:03.710000',5,'kathy wilson','https://lh5.googleusercontent.com/--8P5onn_lbA/AAAAAAAAAAI/AAAAAAAAAAA/BYZ_B2TK1es/c-rp-mo-br100/photo.jpg','14567670160750071148',1761),('AIe9_BGlY-BaOO_aND3JZqxJBS1RIrSEG9Yw5h_GlXRzH8zomNVOvL7LLNiycC85W1mcbFZmPxNSerlIq48NBhmPud3uncPm2xs5GUmeQXksjGmZg06s6JI','Loved the fast service compared to a regular hospital. I was in a car accident was able to bill the person at fault didn\'t have to pay anything. All of the staff was great. Dr. Jaber explained what was going on in detail. I am very pleased with the service.','2020-01-19 16:45:39.213000','2020-01-19 16:45:39.213000',5,'Leslie Bustos','https://lh4.googleusercontent.com/-Ym6T3UMZhmA/AAAAAAAAAAI/AAAAAAAAAAA/hFeYot-ige8/c-rp-mo-br100/photo.jpg','12541597562633926366',9946),('AIe9_BGlY-BaOO_aND3JZqxJBS1RiZQ27lxYNSWhoiJD53jMKWj7T6218NlFO5pfZJrqGvvnlRcjpQLXaB795iMANMiDekaBAkaTCnp29Zp2ueGAI0zntCo','Had an asthma attack and got very quick service, and was treated with the medicine I needed.','2019-06-13 12:00:10.053000','2019-06-13 12:00:10.053000',5,'Elizabeth Ramirez','https://lh4.googleusercontent.com/-8Fyg755Rxxk/AAAAAAAAAAI/AAAAAAAAAAA/0vanbieIhvk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RJ6qkfIU9pgbvECEQCphit-Zsxse5p1hkLroj2iYJ-WPJsYdH3cZkz1UfoT70rIdXyVg4u-aIwJlVLfgnmW15b3hjZa4','I was seen within 5 mins of entering the building. Luisa, Graciela, and Meredith were so sweet. My nurse and doctor were attentive and made my experience very personable. I definitely recommend you come here!!!','2020-01-31 01:56:53.578000','2020-01-31 01:56:53.578000',5,'Keri Davis','https://lh3.googleusercontent.com/-18R-uj3DtZc/AAAAAAAAAAI/AAAAAAAAAAA/QLJkGKnufo0/c-rp-mo-br100/photo.jpg','16389487648212004696',10415),('AIe9_BGlY-BaOO_aND3JZqxJBS1RJ8ZqJeg5E5_BAcH9U32m2XVIupb1_Q1AdAekh_yD8HFsh0p8SVQFLnSP8ogT6OCkK5OW5R1D-_KI7kVIUG3788LlEuQ','Very fast, attentive and polite','2019-10-16 16:59:17.610000','2019-10-16 16:59:17.610000',5,'Jonelle Brown','https://lh6.googleusercontent.com/-_0fx5tRSFXY/AAAAAAAAAAI/AAAAAAAAAAA/ggeErXOv8RE/c-rp-mo-br100/photo.jpg','16389487648212004696',2814),('AIe9_BGlY-BaOO_aND3JZqxJBS1RJJai9KfcqWkQLtnnVXZA9nIdSzdseErpDXjSy2JPqTqVTxwhI3bFG2sKOnMh3iplLhWMtcBF5cA1uIqyxw2aFns3AZQ','Very nice staff and was able to get me in when I walked in the door. Dr. Ashbrooks and his staff Sherri, Courtney and Katy were all very helpful today.','2019-08-13 15:14:35.475000','2019-08-13 15:14:35.475000',5,'crystal nicholson','https://lh4.googleusercontent.com/-vgeIfUj-4gA/AAAAAAAAAAI/AAAAAAAAAAA/dHvQ2puQlaI/c-rp-mo-br100/photo.jpg','3272657195432704501',6915),('AIe9_BGlY-BaOO_aND3JZqxJBS1RjKDKcrikh-evDkm04UxbtN5Q4aXPBxqtuTCR1KISzTF_dgCfDdj8g5aKMqd_Vlw0RIjmkeOo4bq3tBiLRd11y6OjMMs','I always get attended super fast and the doctors are really helpful and fast. my dr. was Ybarra, nurse rollie, rad tech natalia & registration Stephanie. you guys rock !','2020-01-13 02:33:07.672000','2020-01-13 02:33:07.672000',5,'hippiee','https://lh3.googleusercontent.com/-C2Yva71JgTo/AAAAAAAAAAI/AAAAAAAAAAA/1NA_JvRvKGg/c-rp-mo-br100/photo.jpg','8679688254631342173',9561),('AIe9_BGlY-BaOO_aND3JZqxJBS1RjMJh3Kz1W-4vRogZf0MddwlZRMwhjI7X5DZmREl7yS3R0PPLVbJeU8-ytrLnayLx9mfNa7Kqhq0kqofVPQ6yS8DMDrQ','Always treated me right.... respectful too unlike some hospitals and clinics. Some places just yell out other people\'s diagnoses and it\'s disturbing. It\'s well lit so that you feel comfy and they are very accommodating.','2018-02-01 13:26:17.268000','2018-02-01 13:26:17.268000',5,'Lynn Diep','https://lh5.googleusercontent.com/-0uNl3_qztD0/AAAAAAAAAAI/AAAAAAAAAAA/DhUv4EL_xU4/c-rp-mo-br100/photo.jpg','17394740196501090048',4892),('AIe9_BGlY-BaOO_aND3JZqxJBS1RjNChPmCY5R6zYUFFhxLuz820EvFkAwols6aiGJKT2VR9rK7a2ZYpBEosJUHK21cIHhPYLIbdORlzdj7k8EFK-RdNsRw',NULL,'2019-10-18 19:01:16.050000','2019-10-18 19:01:16.050000',5,'Leopold Von Fly','https://lh6.googleusercontent.com/-QC1jXDhV9zM/AAAAAAAAAAI/AAAAAAAAAAA/gTYQoJ9BFpI/c-rp-mo-br100/photo.jpg','8679688254631342173',8788),('AIe9_BGlY-BaOO_aND3JZqxJBS1RjRbO5JWi3wJQw6a3pueFKayysp75TmlFfdv-J9pN_PcqB-IUsx3JN4fv6LAQ9VdPO76-rwEfAbxUO_2SXxQ_taa95eM','Everyone was excellent and friendly they showed genuine care!!!!','2016-04-24 03:59:47.696000','2016-04-24 03:59:47.696000',5,'Shelvon Fair','https://lh4.googleusercontent.com/-upBLzDBN1lY/AAAAAAAAAAI/AAAAAAAAAAA/iA2gChGfAIA/c-rp-mo-br100/photo.jpg','17394740196501090048',5264),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rjrvht1IUsrK9WiV3ip5F_yKEWZqhi0RFbPT-DfU9oUSqTaymu498eBUN-wW5uqczuLet8mTqWwuGHGPNreTXNlPSm14','Dr. O\'Malley spent a good deal of time listening to the problem, refreshing in a hurry up world. The treatment team was wonderful, from Patricia in Registation through Nurse Alvean, Tricia and Jordan. An excellent experience, feel that they were very thorough.','2019-11-30 19:45:19.001000','2019-11-30 19:45:19.001000',5,'Barbara Heimann','https://lh6.googleusercontent.com/-VS_U5BjRaTI/AAAAAAAAAAI/AAAAAAAAAAA/q9JSZNW5YZo/c-rp-mo-br100/photo.jpg','16389487648212004696',2604),('AIe9_BGlY-BaOO_aND3JZqxJBS1RJs2Ha_5Z2bORjbEPCnNz9WuoTZD8AFHrvs6vIHPEJZpArI9mJ-45vGiP_H_qpmzcJ_ZF2KW6pteA9qXmXRTGPNkrA7Q','Had a great expierce here. This was my first time going to the ER and everyone treated me as a priority. Everyone was supper nice and funny.','2016-07-14 12:27:03.816000','2016-07-14 12:27:03.816000',5,'Irene C','https://lh4.googleusercontent.com/-6STmNUxb8_s/AAAAAAAAAAI/AAAAAAAAAAA/0mnuyTNpBgE/c-rp-mo-br100/photo.jpg','14904078213800803294',2475),('AIe9_BGlY-BaOO_aND3JZqxJBS1RjV35HtaILquMRfQJV3TWdrWDdlHQo78Dl04pVlv0VHyo-6JUL2pvsZmmd6LQVruBSPv8hhhBCLRZzBrjeCEqfI9-nIQ','Everyone was amazing, from the minute I walked in the door. Alyssa the receptionist was very professional. The nurses Mark and Kolondy were AWESOME and professional as well!\nDoc Smith was very kind and answered all my questions. Great place love the service, and best of all I feel Great and am back to work.','2016-12-21 15:01:37.604000','2016-12-21 15:01:37.604000',5,'Colt Kimber','https://lh3.googleusercontent.com/-6LNAGbuNZmI/AAAAAAAAAAI/AAAAAAAAAAA/SO1y5rL81Rg/c-rp-mo-br100/photo.jpg','14904078213800803294',2437),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rjxa1ZdNj5cYDt4PwGvswmtQdaS4DY4pmAV1owNuB7wR7ZSVK5eQPMw_tgPEWx-TVJ3E3GUGNnICaR7xoisudRbVNR3Y','Great Job you guys. The best bedsides manner I have seen in ages and I’m old. Thanks to all of you. \n\nDr. O’Malley\nAlvean A - Nurse\nTricia B - Radiologist\nJoycelyn A - Registration','2019-04-10 19:40:41.153000','2019-04-10 19:40:41.153000',5,'Sandra Denise','https://lh4.googleusercontent.com/-cnQoaqIdnTM/AAAAAAAAAAI/AAAAAAAAAAA/Dfww3w-4x4A/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rk5FDHvlsiPHQA5PihsW5ZcTTRcAbTTfInzSn2uPaaX9izCflpL6fWT1ZIutcI_ETEDxyNPleu7Bq5TELboelBlWneEI','The staff were really nice and friendly. Also very helpful and caring.','2020-03-14 00:43:01.624000','2020-03-14 00:43:01.624000',5,'Jennifer Montez','https://lh5.googleusercontent.com/-vgtfapDtQAo/AAAAAAAAAAI/AAAAAAAAAAA/juFpS36PEBQ/c-rp-mo-br100/photo.jpg','14748677429039074158',18840),('AIe9_BGlY-BaOO_aND3JZqxJBS1RK5Iq_C5Xeh4ApN4VeF6E6mMGpEEksPPH-5vdmPukQQkrHgKOmva1Pho2Q6uZ7fKOEek3ddN4hc2_S3tGP1pZCtEhWqo','This is our 2-3rd time coming and its always pretty smooth. Disclaimer, to get the proper care and assistance its a must you have insurance. Hold on wait, good insurance, if not then you\'ll be wasting your time. Unless you just want a doctors note. Urgent care is never really packed so it\'s never an issue getting to a bed and diagnosed. Mos def suggest this spot for all ages! Could always be better but without a doubt like this spot.','2020-01-23 14:55:24.461000','2020-01-23 14:55:24.461000',4,'DeAnthonee Liggins','https://lh5.googleusercontent.com/-0YEI2qEm45c/AAAAAAAAAAI/AAAAAAAAAAA/4Dp8Gj3I5GU/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',10106),('AIe9_BGlY-BaOO_aND3JZqxJBS1RK7XW7zKrb5ygdrOAhti56ftkTK6gw0TNphEc1xmmpGsuwT7MOnIF_sc4bRwoAAI3WZUtpJlJZ0azRmKBw1PI8WTomzI','Was actually my first time going to signature care and my experience was all around great from how fast they check you in, including the help from dr. Cavazos , alvean and Joshua they helped me feel very comfortable and most importantly helped me feel better','2019-04-14 21:09:27.453000','2019-04-14 21:09:27.453000',5,'Faith Stewart','https://lh3.googleusercontent.com/-_kpIS5NPCns/AAAAAAAAAAI/AAAAAAAAAAA/gB2DTq6GWYU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RK8MQ7YFXkDKBA8_EBkrmpzZyl8yLzL9I__7ouoQ_yT44icIKVcJwGYHdEzBvstzwbvPa2Ds1khFWf3NxxxWki33bXTk','very hospitable and friendly. Patrick, Stephanie, Anthony, and Raven were nice','2019-04-26 01:58:02.781000','2019-04-26 01:58:02.781000',5,'chris 9169','https://lh6.googleusercontent.com/-Le2AfF4uMcI/AAAAAAAAAAI/AAAAAAAAAAA/pqZ2ZCWoYnw/c-rp-mo-br100/photo.jpg','16590124370714063921',3405),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKbhr7GjRFeRU1JO6KO-zEMMOWZh-FxdFuRPjmUDL99hKIokj1TPHWvhkpyS82Wev7I-G1C6I7_tqiovdDB4ZjPYch64',NULL,'2018-01-03 21:11:36.885000','2018-01-03 21:11:36.885000',5,'Barbara Rech','https://lh3.googleusercontent.com/-cf2yodjRFQU/AAAAAAAAAAI/AAAAAAAAAAA/0FpOkJ6TGdE/c-rp-mo-br100/photo.jpg','14567670160750071148',1698),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKDP0eXi6_Ptk52Dm2Fk2ZmqsFmghPDtbM3RLQKW0MDi_JY6mbd2HuyXmVKf3G3e9Cqr-dvP2e5W1cVmTXA7K1KYCLJQ','I had a really good experience here. I was seen right away. I didn’t have to wait longer than 5mins. Paper work was fast and easy. The staff made me comfortable, offered a warm blanket and water. Kept checking in to make sure I was good. Dr. Lindsey and his team ( Naureen & Jose) were great.','2020-01-27 02:30:24.649000','2020-01-27 02:30:24.649000',5,'Anah Khan','https://lh6.googleusercontent.com/-oZndRYvZY3A/AAAAAAAAAAI/AAAAAAAAAAA/FreYlio-804/c-rp-mo-br100/photo.jpg','3511292162159714121',14442),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKdW16tUsME8V2kkHtNSVlsIvDuUFXrph0XaOcUIN_bcVc5R0TfXZQusYvWpICbtJh9WpXR5IDzYoq7Jyy3UZlRsbz8w','Remington, Morgan, and Dr Nguyen were all very nice and helpful the entire time. They were very personable and kept me informed the entire time I was there about the different stages of treatment.','2020-01-28 18:44:11.205000','2020-01-28 18:44:11.205000',5,'Erin Jones','https://lh4.googleusercontent.com/-XyKCR-wPaaE/AAAAAAAAAAI/AAAAAAAAAAA/kJzqVVOk5P0/c-rp-mo-br100/photo.jpg','16590124370714063921',10212),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKEB6hj-JxnWvmHI6-k3wV4g4xqTufL1409Ey3FxDN32kibyJMsGkocKMb_HPSAZrhTpVAAvmVLvQOBqd4MQthwDu27E','I came to the e.r. today and was attended by amazing people (Pam R.N. Jessica R.N. Maria Tech. Dr. Ching and Gus (radiologist) ) As soon as I came in I was attended right away by Aminata who was very kind. She made sure I did not hurt my hand. Not only do they take care of you but offered me moral support during the procedure. I am glad I came in today!','2020-02-05 03:13:48.542000','2020-02-05 03:13:48.542000',5,'Shirley Olivares','https://lh5.googleusercontent.com/-p5VtODW3xRg/AAAAAAAAAAI/AAAAAAAAAAA/oOnHeHt46PM/c-rp-mo-br100/photo.jpg','8918455867446117794',14846),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKesSCQIsF5M7Ciwgy4ihasT1R7OozWsQBIf1cBqlssEOpXuisWtj_pNFWw9DiryBwzCxdMnTH-GJcwa5MN9HQ36F5b0','They were super helpful and friendly. Handled in a timely manner and explained everything to me in detail. Felt very comfortable and Anthony made my experience fantastic! Ask for him if you can!','2018-10-15 20:38:20.730000','2018-10-15 20:38:20.730000',5,'Anthony Mollere','https://lh5.googleusercontent.com/-rDky9Q1FJqQ/AAAAAAAAAAI/AAAAAAAAAAA/NwlING0owCg/c-rp-mo-br100/photo.jpg','16590124370714063921',3703),('AIe9_BGlY-BaOO_aND3JZqxJBS1RkgTwkS6Iw4XaMFxei-EYoNL2qpG231JciQK10yMkHnOfMFhoUJw1YzC6e0l31uwDAG-Osf45PFJrzej_XZ5_p9rw04c','Dr. Miller is by far the best Doctor Who has attended me. Very friendly and courteous and most importantly caring. He has helped me in very crucial times, includung days before my wedding! Meredith, Sherry and Ricardo did a great job in setting me up for the CAT scan and help me overcome my fear of needles. Bryan was very patient and very informative and funny. He knew how to crack me up even though it hurt to smile.','2018-07-28 01:08:38.136000','2018-07-28 01:08:38.136000',5,'Enrique Hernandez','https://lh4.googleusercontent.com/-vpxlux0rMpI/AAAAAAAAAAI/AAAAAAAAAAA/UI23QH_pWBU/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1583),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKpk8dW6ewnCKmScsy08_ho2VpSHYiaBPlVFFpjHBxob_TErzXwe37rz7Jf89ltWjRVboQBcnAql7oZ8OIzZsQunRy5A','Darnisha and Tenoria were phenomenal! Fast and efficient dealing with my pain.','2019-10-07 02:17:29.578000','2019-10-07 02:17:29.578000',5,'Kimberly Picaz','https://lh5.googleusercontent.com/-T5r6aSMqBAU/AAAAAAAAAAI/AAAAAAAAAAA/J4zAN9YtEzI/c-rp-mo-br100/photo.jpg','16389487648212004696',2850),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKSsL0KnQ4SmGua6JjTTllcKodIWkNm5VkIVD-7KZvo7V96pFEg951DRnieBqDYoy4l1w72Xb-VPaLwj6FKTl1n3Xqbs','The nurses and doctors were very prompt and willing to get you whatever you need!','2019-02-25 19:14:05.522000','2019-02-25 19:14:05.522000',5,'Nikki Beebe','https://lh3.googleusercontent.com/-pz_GPHJUY0k/AAAAAAAAAAI/AAAAAAAAAAA/blG8Ks31FrY/c-rp-mo-br100/photo.jpg','16590124370714063921',3520),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKUk1KtH2G0MkCtkdq-nvWXCSLsN4L5nbgtomaKItDV7yz7a4yfcUKCoJP-KB1NTSAfmG0ZShp0L16i4Ve2zj6DDWZEA','Update: We are here again! We were gonna go to an urgent care nearby my house, but I really wanted to bring my mom back here to Signature Care. Mainly because, the overall experience and level of care offered here is unmatched! This time my mom had the pleasure of being taken care of by Julie(who brought us in and was so eager in making sure we are comfortable and explained the next steps to come after being settled into the room) Rachel the nurse was so sweet and calming! She was careful, reassuring and super friendly! Dr. Kotey (who came in immediately and got things going, and made my mom feel comfortable and relaxed) Ralph was in and out the room making sure we were cozy and asked serval times if we wanted something to drink. The radiologist, Diem went through everything fully and explained the process of a CT scan to my mom. And as always, paperwork and the expenses of the procedures/tests/checkup were the last priority- my mom was the first! That’s why this urgent care is hands down one of the best in the city! \n\nI haven\'t even fully left this place and had the urge to write a review. I have never been so satisfied and pleased with a place and it\'s service as I have been here at this emergency care center. Came here just to get my moms chest pain checked out and as advertised-there was no wait. They had us fill out a single half sheet of paper just to identify the patient and the reason of the visit. Called us in, and the nurse started immediately asking questions, very kind a full 10/10 bedside manner. The nurse was very gentle and attentive to everything my mom was having concerns about. The doctor came in and was very polite and began to get things rolling including the tests and scans. They were respectful enough to hold off the paper works (which is amazing to see in a facility because that shows they are more concerned about delivering the best care and not how much your pocket can afford). However, the receptionist did come in prior to any further care and explained the pricing and charges that will take place she also cleared up any question or concerns we had. I am so pleased and highly recommend this clean, organized facility with an exceptionally kind and caring and welcoming set of staff members to all those who come upon an urgent or emergent situation.','2018-10-03 00:38:46.580000','2018-10-03 00:38:46.580000',5,'Komal Farooqi','https://lh3.googleusercontent.com/-wQiut9Vk9bQ/AAAAAAAAAAI/AAAAAAAAAAA/BvqfYFIEgD8/c-rp-mo-br100/photo.jpg','17394740196501090048',4777),('AIe9_BGlY-BaOO_aND3JZqxJBS1RkVKe87Xu7TlceRR7uK73HGvc_Lsf3r1b1DWuehy_08-P6kn0VNnm2uQ_tnLqEN10_-soxb4bzQKQxzMOfop90WaBq_0','I love RN Susan she took good care of me in I I left quickly it was in an out great nurse','2019-10-04 03:08:26.599000','2019-10-04 03:08:26.599000',5,'Laterrica Buffette','https://lh3.googleusercontent.com/--0Q-Uw37KdU/AAAAAAAAAAI/AAAAAAAAAAA/KkqqElz-axs/c-rp-mo-br100/photo.jpg','17898197009688164559',5521),('AIe9_BGlY-BaOO_aND3JZqxJBS1RKXMNsuTWjeKHadAtXFUaTa-W7VQ1U0H-wJZeQS_wYU2mt3ADlZ6iQxAH5KMP2pt0kk6RIkp_-GTwQ_teAR8moVDwavI','Had my second visit at signature care and the wonderful staff made me feel just as comfortable as the first time around. I’d like to say a special thanks to Vanessa, Huyen, Rohan and Edward. They all made an experience I was dreading the best it possibly could be. I’d suggest this place to my own mother. They always do a great job!','2018-08-15 21:48:47.569000','2018-08-15 21:48:47.569000',5,'Dylan Wilkerson','https://lh3.googleusercontent.com/-dmgnJnFrDXc/AAAAAAAAAAI/AAAAAAAAAAA/X94IOGMST6g/c-rp-mo-br100/photo.jpg','16891069708558046635',4450),('AIe9_BGlY-BaOO_aND3JZqxJBS1RkZ8HxxafgT4wFPMtilSYkQyiy8MDXCHlVv5GIxPpzFhM39dFHmRnclx5RWRPEBNHsQvsf45BrgmBu9ktKYZdeDLoB4c','Everyone is very sweet and nice attended me fast dr.dang ,Amy ,Kat s. and kat k.','2019-09-12 04:45:46.191000','2019-09-12 04:45:46.191000',5,'Yoselyn blanco','https://lh5.googleusercontent.com/-DGp26VbZnd0/AAAAAAAAAAI/AAAAAAAAAAA/USFN7sV4uso/c-rp-mo-br100/photo.jpg','16389487648212004696',2918),('AIe9_BGlY-BaOO_aND3JZqxJBS1RL4Rnv1RdY-syn5gB0OMQl42fBtS7rHIhmHKdSToQJan65gwIpQ1XuR6suJx-Y7nkVszij8GNYusk7uZwCtz0W0JkSS4','The staff is friendly and attentive, and really cater to all your needs. This facility is very clean. I highly recommend this location to everybody. Thank you team.','2020-02-17 04:21:23.332000','2020-02-17 04:21:23.332000',5,'Antonette Thomas','https://lh6.googleusercontent.com/-3wc1oyM2Fi4/AAAAAAAAAAI/AAAAAAAAAAA/uiBa3Uvf5Lo/c-rp-mo-br100/photo.jpg','8918455867446117794',14822),('AIe9_BGlY-BaOO_aND3JZqxJBS1RL8OUWkPdGfvqHLN-sqWZk8j_udD9M9NbxugQFT51QkPzeUM3sLAoFqtutbEAtwFr15pCdHNArH6F8L54laCMWAWwVTo','Really polite and treated us really good','2019-12-12 23:58:40.212000','2019-12-12 23:58:40.212000',5,'Garza Cortez','https://lh4.googleusercontent.com/-Ah_dH9YaQb4/AAAAAAAAAAI/AAAAAAAAAAA/dBLkIZUmj6Y/c-rp-mo-br100/photo.jpg','16389487648212004696',2549),('AIe9_BGlY-BaOO_aND3JZqxJBS1RLBbtfCyCGaGA0GHj4ltG0LjDGPvgYryKeAGI2p3ee7_hpNtCf1IyQr3eI_gMoSRnKMGEs98CBXE9qeJ5g_hIGP2p79I','I’m new to the city and didn’t know where to go to get checked out. I found this place online while searching up a local urgent care. As soon as I walk in one of the ladies at the front desk greeted me with a friendly smile said good morning Nd asked how I was doing. Right off the bat I loved that! I felt very welcome. She was quick and prompt with paper work Nd had everything highlighted and ready for me to sign. I appreciated that. I was brought to the back within 5-7min if walking into the door! The Doctor here has a kindness to him, makes you feel like he genuinely cares about how you feel. The staff here is so friendly! I most definitely give this place a thumbs up! And will be returning if need be. If you do t like to go to the actual er or it’s a weekend or are like me that’s new to the area and doesn’t have a pcp stop by SignatureCare Emergency Center!here in midland they’re open 24hrs and will get you the care you need!!💚','2019-11-23 17:45:54.407000','2019-11-23 17:45:54.407000',5,'Maggie. Santana','https://lh6.googleusercontent.com/-VFQQek__RkE/AAAAAAAAAAI/AAAAAAAAAAA/dxG4y68guXo/c-rp-mo-br100/photo.jpg','13486358490203335051',722),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rle9HVRqcQ7IPIhnqPIssBr8TF70mvxpWzUQ3d1OsGy5UZ-wearZRvsURGc61hjGeH3ninesGn6IRKZ50PXwe10OqGxs','Had a great experience staff was really sweet. Alvean was really nice and informative. Facility was clean and comfortable. Over all experience was great and would refer to others.','2019-10-23 20:31:34.988000','2019-10-23 20:31:34.988000',5,'Mykalyn Mosley','https://lh5.googleusercontent.com/-TRc8nR-HDbs/AAAAAAAAAAI/AAAAAAAAAAA/GEXJgOwxFq0/c-rp-mo-br100/photo.jpg','16389487648212004696',2787),('AIe9_BGlY-BaOO_aND3JZqxJBS1RlEvsZ5x9QCaJCkoi32NpmU-4tU-dsqsQHbwkFS553KKKG10W-MrqrAO1AuZrBdpzURXXHtEm0QZAlpTVoM-cisB9i6Y','Jocelyn A. And Alvean A. Where great, kind and very helpful.','2020-01-22 21:20:23.865000','2020-01-22 21:20:23.865000',5,'symone taylor','https://lh5.googleusercontent.com/-BDlhKhYx5HU/AAAAAAAAAAI/AAAAAAAAAAA/nIQvlA5AAIM/c-rp-mo-br100/photo.jpg','16389487648212004696',10193),('AIe9_BGlY-BaOO_aND3JZqxJBS1RLEXrfGUU34XU9BktIwX8RBmlBArIRsjC-D40X1xwupMB46BXYZoS895d6omb5hLntD3StZU1aqzZJg4HuvHHp4AkMX0','Very professional and helpful group. There was zero wait time and Dr. Youst took time to explain, in detail, what was going on. \n\n5 Stars','2019-12-14 18:55:07.364000','2019-12-14 18:55:07.364000',5,'Auglaze Allday','https://lh6.googleusercontent.com/-EeWCJXpXV1U/AAAAAAAAAAI/AAAAAAAAAAA/mlECD4lxNfk/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',6840),('AIe9_BGlY-BaOO_aND3JZqxJBS1RLfuXnttKfFeh4YfUrYjnTOUx7zGGqQ5-Q2WYeeyJbse8fm1jeTlGEhss17pYZsfNo6CxzEWi9VHTeg-8u7NUz3ORBRU','Signature Care offered great service! Each staff member was kind and attentive. The center was clean and comfortable, and there was absolutely no wait! If I ever need to go back to an emergency center, Signature Care will be it!','2016-06-08 18:32:34.260000','2016-06-08 18:32:34.260000',5,'Madeline Rawicki','https://lh5.googleusercontent.com/-Exlwk6dKG8w/AAAAAAAAAAI/AAAAAAAAAAA/ADHJ80zuWco/c-rp-mo-br100/photo.jpg','14567670160750071148',2023),('AIe9_BGlY-BaOO_aND3JZqxJBS1RlgDOmIoyg42IIz8IT2uXUxTAZ8gO1oMsl5Mee1Q67L0_f6nD0ySr9M50V_4N3oJq_eDqL9zTxktxJ8oKZEGoiIIBqOw','Dr. Sali & his staff at Signature Care took great care of my 9 year old! We will definitely use them again if need be.','2016-09-22 23:30:11.337000','2016-09-22 23:30:11.337000',5,'Rosanna Hoodye','https://lh3.googleusercontent.com/-BVIm2jY5ipk/AAAAAAAAAAI/AAAAAAAAAAA/afR2KIqmoQc/c-rp-mo-br100/photo.jpg','17394740196501090048',5201),('AIe9_BGlY-BaOO_aND3JZqxJBS1RlI2mwibp78oFhWeCWHVPe-I8IZMdXr5D6W4HRuQ2xafD9xvxtCnoJyQLh8ef03cMCXMcGrO8_gBzNCrwIXjziCe6-eI','The front desk receptionist Sindy was very welcoming and helpful as soon as I walked into the facility. Nurses Melissa and Max were very friendly and gentle, and Dr. Golla was beyond kinda and thorough with my visit!','2019-09-18 19:38:11.938000','2019-09-18 19:38:11.938000',5,'Diaz Diaz','https://lh3.googleusercontent.com/-KoPRn_A0f1s/AAAAAAAAAAI/AAAAAAAAAAA/mMcetGjKovc/c-rp-mo-br100/photo.jpg','14567670160750071148',1232),('AIe9_BGlY-BaOO_aND3JZqxJBS1RLjmJkSdq6CyJTwoRSxNztphwn9IBN5HNwWhX5asLqnFLbjrew3YAIWx70E-3DKj1hJ67OBJRK5Ej1QjHO-gXFk4MeLI','I really enjoyed my experience here. The staff was very friendly and offered more than they needed to in order to make me feel comfortable and at ease. I was very happy with the care, and service was prompt.','2017-04-02 02:39:56.747000','2017-04-02 02:39:56.747000',4,'Danielle Tallman','https://lh4.googleusercontent.com/-8P7TgWo95X4/AAAAAAAAAAI/AAAAAAAAAAA/iN1ajji5YFg/c-rp-mo-br100/photo.jpg','3511292162159714121',7854),('AIe9_BGlY-BaOO_aND3JZqxJBS1RLJy_U1OhvUCB5nLIi6uf1edsSko16LS_1gYexQ5JCWfWxGZMSG0zheqBoSO7-_y-NTJozzCcK1SaEU_HLLvrWOSinw0','Best service and treatment ever recieved!!','2020-02-19 20:15:49.674000','2020-02-19 20:15:49.674000',5,'Magen Segura','https://lh5.googleusercontent.com/-rMHFL3Yagsc/AAAAAAAAAAI/AAAAAAAAAAA/WJ2A1W6nFh8/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',13844),('AIe9_BGlY-BaOO_aND3JZqxJBS1RLKMNwaKbdpS2-tesJSjNHc3rcgDe5zmdzj1-pErJUyugWjhw31bVHiZTd7x6DY1-KefKEaO8W47DClBvJctclBTUo7I','EXCEPTIONAL SERVICE!! \n\nThanks \nDr.Dand \nJessica N. \nAngel C. \nAshley s.','2019-07-05 17:39:35.218000','2019-07-05 17:39:35.218000',5,'Roland Grohs','https://lh6.googleusercontent.com/-xJji3YQvjWc/AAAAAAAAAAI/AAAAAAAAAAA/KeOwKL-BGz4/c-rp-mo-br100/photo.jpg','17898197009688164559',5661),('AIe9_BGlY-BaOO_aND3JZqxJBS1RlLUBVM380KBuHBt0ulT5Nw1ZBWmN8Q5fJYX-BLd0oL8Rw2OYkL5lapaItnFscWoV6O1ETBkAFim3b1tQWyx0rVq1lPo','Be aware if you are a college student. This location will say they accept your insurance, but chances are, if you are like us, they will discount your bill $50.00 and then bill the rest to you. My daughter had a minor UTI and she literally pee\'d on a stick. We now owe $1400.00 for twenty minutes of care. The people are friendly enough, but you pay $500.00 just to be seen in their facility before anything else. Be cautious and ask the right questions about insurance. This facility will never get another dime from me. This is the epitome of the fleecing of poor college students.','2018-04-23 21:06:21.406000','2018-04-23 21:06:21.406000',1,'Jeffrey Salsbury','https://lh6.googleusercontent.com/-kPsCvbtAEdU/AAAAAAAAAAI/AAAAAAAAAAA/XUhMcsAWhNg/c-rp-mo-br100/photo.jpg','16590124370714063921',3830),('AIe9_BGlY-BaOO_aND3JZqxJBS1RlP_Jg0tTZbsjmI4tOMbXr4LZcgH39Iql621Ke3W5MdjM5Wf7VY4zy8DJBRWuBq8kQsC4G5wwc_GC64sh9Hbasu46j-c','As soon as I walked it I was welcomed by Keaire. Nurse Gracie very nice at explaining procedures as well as RAD Bryan. Overall a great experience. Faster than the hospital emergency room. I would recommend this place to anyone. Dr. Miller is great at helping with anything that you need.','2019-01-13 05:34:33.925000','2019-01-13 05:34:33.925000',5,'Giselle Villarreal','https://lh5.googleusercontent.com/-bO7C1sDNVaU/AAAAAAAAAAI/AAAAAAAAAAA/p1JEAs5XPo8/c-rp-mo-br100/photo.jpg','14567670160750071148',1417),('AIe9_BGlY-BaOO_aND3JZqxJBS1RlRTSSea77pQobyciwB8ggcR4QFHmYWghoprTyGF9TmPeDZSCdUOHFxE0vU6yFzzyfDL-iSx1e4z-LstCQ9qgFzr9osY','Great service, incredibly friendly. Sam, Hanh and Amy made my whole family feel at ease.','2020-08-02 18:33:27.269000','2020-08-02 18:33:27.269000',5,'Jenny Stooksberry','https://lh6.googleusercontent.com/-o9IQ6CNC554/AAAAAAAAAAI/AAAAAAAAAAA/ohBQ3OmFwTQ/c-rp-mo-br100/photo.jpg','2077061009497551125',22973),('AIe9_BGlY-BaOO_aND3JZqxJBS1RlRVfGuScq1FU8982MZizBIgaOu3dqsMSQEZ8Hx_x5xKmOe2KgwvbBftB64x6j-g2Un7l2C8eTcaGrfSXs6vIVrrFe04','Very quick & staff was amazing!','2020-02-06 03:49:18.004000','2020-02-06 03:49:18.004000',5,'christela mendoza','https://lh5.googleusercontent.com/-7qKgJfPB2d8/AAAAAAAAAAI/AAAAAAAAAAA/vCxXq4DAvts/c-rp-mo-br100/photo.jpg','13486358490203335051',13439),('AIe9_BGlY-BaOO_aND3JZqxJBS1RLTgensHNnhAZoJ78OA-sfbq4mAitzYXMw-QJ5yeP7Bi5WE42ozndMrd9EyRo3szrwc2f3xs5mvHWSXmX3b-f8KqwpTM','The doctors and staff at Signature Care are always courteous and knowledgeable! The doctors especially are very patient, explaining symptoms and treatment options in ways that are easy to understand. And the nurses are quick to offer warm blankets and snacks while you wait, which really helps make the experience less stressful. Though it\'s never ideal to to visit the ER, both times I\'ve gone to Signature Care the doctors and staff have made my visit as painless as possible!','2017-06-29 12:09:57.683000','2017-06-29 12:09:57.683000',5,'Alex McElroy','https://lh3.googleusercontent.com/-jX4TU2qtLwY/AAAAAAAAAAI/AAAAAAAAAAA/YeilVNts6rc/c-rp-mo-br100/photo.jpg','3511292162159714121',7806),('AIe9_BGlY-BaOO_aND3JZqxJBS1RlUjOdgB8ikuympcxE47CwT5Mkbu86cJBFu2fLWFLCbKxde9LyJksRukrFPPQq0ZcK_U_sz7Ap5pG5nAYlpxCPrpXjO4','Excellent care! Thank you, Dr. Chen!','2016-11-02 17:44:15.043000','2016-11-02 17:44:15.043000',5,'Kathy Schappert','https://lh3.googleusercontent.com/-QukfbszlyUI/AAAAAAAAAAI/AAAAAAAAAAA/URQ5nH7usBM/c-rp-mo-br100/photo.jpg','17394740196501090048',5184),('AIe9_BGlY-BaOO_aND3JZqxJBS1RM_nf-F7Cz2nPn_OIA1NPqXv5Xjii0Fnc0pdzupRu2V_Dy8eFjn4QfbFfMADN_Eoc5zdH1utzD9OZaKyfOjcwT3xwYhI','Dr. Noor, Dana, Aaron and Ryan were very helpful in quickly identifying an issue to pain I had in my left side. I was immediately admitted and care for thoroughly. I was so relieved to go to an ER where I could be immediately seen and diagnosed. Based on their findings, I was able to have urgent surgery to remove a cyst. I appreciate the high quality and responsive service. I strongly recommend SignatureCare.','2020-01-12 22:39:57.500000','2020-01-12 22:39:57.500000',5,'Peggy Krendl','https://lh5.googleusercontent.com/-KyadEdHgf7Q/AAAAAAAAAAI/AAAAAAAAAAA/q760BByJbII/c-rp-mo-br100/photo.jpg','14904078213800803294',13635),('AIe9_BGlY-BaOO_aND3JZqxJBS1RM_vw5Eplxi2siRP6Xq7td_Ma7AfKdavwrtL80yy9yjl-diw-UwKmNDjrvsNUAv29bArk0Pm7stM53kksezP6os-qQ2Y','Great service, COVID 19 precautions and fast results.','2020-08-06 11:38:26.044000','2020-08-06 11:38:26.044000',5,'Caleb P','https://lh4.googleusercontent.com/-JnTK4YyHjbY/AAAAAAAAAAI/AAAAAAAAAAA/ZebQUZV79VM/c-rp-mo-br100/photo.jpg','2077061009497551125',22726),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rm4oLFsd1-5Gn10BnhtDCZlWXKpD_CWq4rkjqCJp15fTEPrS0NdTUB_HepTqYG3j-j7IkvxA78Ehf3FclqT8872cvjH0','Great experience from when we checked in to when we left. Clean facility, attentive and caring staff. I would definitely recommend this for someone who needs an actual ER in the area.','2018-09-18 00:34:23.555000','2018-09-18 00:34:23.555000',5,'Kelly Burns Smith','https://lh3.googleusercontent.com/-IDeQ6rTkLZY/AAAAAAAAAAI/AAAAAAAAAAA/kaOGpoaIOn0/c-rp-mo-br100/photo.jpg','17898197009688164559',5926),('AIe9_BGlY-BaOO_aND3JZqxJBS1RmAnZQVf8cuvOGQ0mdBq4fDfhSsFoM7Nhn_q9yHJXD0ZMu_g5E1b557xI6Qk74mASc9pSX49E464mMHmrWW796YIn0XU','Very professional, great service, and clean atmosphere . Like to give thanks to Dr. Dendy , Sarah, Fatima B , Alvean, Tricia, and Jesus for making a great experience for my first time visit. Sarah thank you for the water and snacks. Dr. Dendy for being very informative. I never been to a place that offers a warm blanket Thanks !! Alvean the blanket thing that was a nice touch.','2019-06-01 06:07:45.639000','2019-06-01 06:07:45.639000',5,'Tac0 Man','https://lh6.googleusercontent.com/-J4lwUN-dtyI/AAAAAAAAAAI/AAAAAAAAAAA/cT3-997dEYA/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMB43gUereLWDDKm71hhHZhMys7vre8gc4ldz5by9k35a_UHIl6Kja4DHa05yxaRB8k_wzODZFgLwF6Of8ExVTEZZOvg','Mercy was wonderful! Everyone was great here. I highly recommend this place to anyone who is having breathing issues or any type of emergency medical situation','2017-02-03 12:35:32.653000','2017-02-03 12:35:32.653000',5,'William Cowan','https://lh6.googleusercontent.com/-kBOMyJbwiAQ/AAAAAAAAAAI/AAAAAAAAAAA/m3a6xzCsPHo/c-rp-mo-br100/photo.jpg','3511292162159714121',7887),('AIe9_BGlY-BaOO_aND3JZqxJBS1RmBTY6JGBtVbqQo8I3Htf-axomrlfEDJEkMLFQlQ37ZyEAXC1qrCHKOQSxW5Ewg4JmM_G1-i3JQQDKhMPwSvYW4BhamU','Our son fell and split his chin open! The staff here were great with him and had him smiling after all he has went through. Dr. Ashbrooks and Karen did an excellent job keeping him preoccupied while suturing his chin. Keo was very helpful, got us to a room quick and brought our son a bear! Helen was attentive asking if we’d like something to drink or needed anything. Very thankful these guys are here and they are excellent with children! Thanks again','2019-01-15 21:27:23.826000','2019-01-15 21:27:23.826000',5,'Lucas Cummings','https://lh6.googleusercontent.com/-6rQHjii9g0w/AAAAAAAAAAI/AAAAAAAAAAA/wJEObpZuFdM/c-rp-mo-br100/photo.jpg','3272657195432704501',7055),('AIe9_BGlY-BaOO_aND3JZqxJBS1RmgUVfiavFMs5l1fOaAPdcXbPxyo1kzpoINugnGAZLKAdSzxGEeNIozD_2kzb7_Y9KU_cUmmBQ0K-XT_1sGzPH1qYCr0','It was a positive experience, I went with my friend and they were professional and friendly. I would recommend!','2020-02-06 23:07:20.368000','2020-02-06 23:07:20.368000',5,'yessica martinez','https://lh3.googleusercontent.com/-nDhShDemuv4/AAAAAAAAAAI/AAAAAAAAAAA/4HWK9qLWfKM/c-rp-mo-br100/photo.jpg','12541597562633926366',22477),('AIe9_BGlY-BaOO_aND3JZqxJBS1RmHcgW1EevLwjnoy839stb1WdYBwgr3ejnclTxOXZWPE6b9w9nP8ND7vFv77PWtKYUlwU_psiSQlk6BomSXBNEn3Tuvc','Great place to go for an Emergency . The staff was great in helping my son Jesus after a accident he had . Doctor HEHMANN and the Nurse Ray was so helpful and comforting to my son. There patience and expertise on caring for my Son was amazing ! \nThis will be my future emergency center I will go for now on. The customer service at this Place is the best so far I been too . I want to thank Ashely for helping us with registration process and the pricing options she provide ! It’s been two weeks And Jesus is doing so Well ! Thanks Again🤗','2018-11-07 14:30:14.044000','2018-11-07 14:30:14.044000',5,'David Galvez','https://lh5.googleusercontent.com/-sjD65ZOzo-c/AAAAAAAAAAI/AAAAAAAAAAA/3A3NO046XyQ/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9217),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMiAxDD2vLwzcUR69kFrvI4oNiOI54n2FtTIqBEQhDuuKbn7vz3GjufgG52bMVbz6AnMWHgyo-5fsZqotayTxhjRomR4','Love love love this place. Way better than the hospital!! Made sure the patient was okay as well as the family!! From the staff at the front desk to the nurses...to the doctors all are awesome!!!!','2020-02-11 00:49:58.217000','2020-02-11 00:49:58.217000',5,'Brittiny Shorts','https://lh3.googleusercontent.com/-qLoGEMkYTBI/AAAAAAAAAAI/AAAAAAAAAAA/Ikx-Db-OdZE/c-rp-mo-br100/photo.jpg','14567670160750071148',13540),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMME8KYOVfYevIZml7jKz8iCgRmkZdxX5KWdI537avULZRMr8Ekg4ZVdtQ8S0NBNz4LLzSys463AbnlodMgSNZzk8O4A','Best experience ever! In and out in 30 minutes. Dr Patel was very easy on the eyes. Wonderful service and explanations.','2019-12-08 22:20:05.746000','2019-12-08 22:20:05.746000',5,'Andrea Jones','https://lh4.googleusercontent.com/-lgeNgV2GPC8/AAAAAAAAAAI/AAAAAAAAAAA/8ev_ljmKnY4/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',358),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMNRF1kL-56dRnoCM97f2kzOpBGkZhEbIkZs8Q5UV6NmVh-6wEg6Ha4SZG3TVyCCvpSolXp_gZgDIH7dQMmm8c_q2Auw','Excellent, all around, service and care.','2018-10-23 15:34:58.592000','2018-10-23 15:34:58.592000',5,'Tom Lapinski','https://lh3.googleusercontent.com/-RNFv9TfMflY/AAAAAAAAAAI/AAAAAAAAAAA/YlNGzL9lcgs/c-rp-mo-br100/photo.jpg','14567670160750071148',1466),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMq_P36n7Ogtjl62hwOOGjQj8YQFsXinmiQFxXessCEp1FMGHocgQMPt_kiPauT0RziJJzmJcQ5yl7YrZTQEZOwXqFTw','Very friendly staff, was in and out in about 30 minutes (that doesn’t include the wait for results). Considering the circumstances I felt safe and the facility was very clean.','2020-08-03 18:50:24.755000','2020-08-03 18:50:24.755000',5,'Claudia Lopez','https://lh3.googleusercontent.com/-6NUmjnSgER8/AAAAAAAAAAI/AAAAAAAAAAA/fx3uRAHsYWQ/c-rp-mo-br100/photo.jpg','2077061009497551125',22749),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMSJ9n4XG9cbGfhffs-giP60Q4-4pU7xQD3Q7TxP4Cl7ingTmDfj9eXJj95FgMupkgzvPWhLs4ANbhyjurH0U2qV13tg',NULL,'2019-02-02 23:40:59.029000','2019-02-02 23:40:59.029000',5,'Melinda King','https://lh5.googleusercontent.com/-KW1DZ-XwRCc/AAAAAAAAAAI/AAAAAAAAAAA/8LVM63hG8cU/c-rp-mo-br100/photo.jpg','3272657195432704501',7030),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMudI9ki56h0is_Uko9gpqck5lKyRjJNg2PPmMC1z7Bu80K3OXgDP4VkdvYJ2FR_1MJM6rx-6863GcpO1LH8STQ3IdXs','Five Star for the super fast service. The receptionist Tanisha was super nice & very helpful. I arrived and before I could even finish my paperwork they placed me in the room and before I got to the 3rd page the doctor (Dr. Cavasos) came in and introduced himself and immediately started checking me out. My nurse Lynn was awesome and informed me where they had snack & drinks if I should want any. And of course I helped myself to a few snacks. Laura assisted me with my x-rays and was very sweet. The service overall was excellent and I was in and out and all done within 35 minutes.','2020-02-17 02:22:42.240000','2020-02-17 02:22:42.240000',5,'Brianna Smith','https://lh3.googleusercontent.com/-PXiLcS9NLqI/AAAAAAAAAAI/AAAAAAAAAAA/f2_udVqtC2Y/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',14168),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMwQe2JqGDRXlxXNGl2RhXSVp-bPy_MPSn5nCrIZ_VrHbqKH2YB3JxhLw2YU6pGG2kJcG-A-1GPTfzubNafG7q9COoF4','I called up there for info and Dee and Laura were very helpful!! Thanks','2019-01-29 21:39:48.628000','2019-01-29 21:39:48.628000',5,'Christian Aguilar','https://lh6.googleusercontent.com/-b8-SMZycMmg/AAAAAAAAAAI/AAAAAAAAAAA/AFm15CIUi04/c-rp-mo-br100/photo.jpg','3511292162159714121',7441),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rmy8nW2UrpTPID-NqNW-6UIwglUnqakUDizrVPUvjRfSvqtXEbadCtmLBeA6IaHhPtBGZS6NHnTc5OWVWOnFbjBUi2CI',NULL,'2020-07-30 18:00:27.505000','2020-07-30 18:00:27.505000',5,'Amy Dehoyos','https://lh4.googleusercontent.com/-pK44Qxn7qGI/AAAAAAAAAAI/AAAAAAAAAAA/bMUCXpjvPCA/c-rp-mo-br100/photo.jpg','2077061009497551125',22977),('AIe9_BGlY-BaOO_aND3JZqxJBS1RmYk9P027YEmcqN12742PmY0QusFU2URsJFqimkGfZ1323H6h53lMbXxE40hgN4Q7uQN6UW1wqvecfQxVYE04HWJh_oc','I just wanted to thank you too ALL the amazing staff that was on hand 7-11-17 around 4:30a- 6a. Dr. Kimable is truly a compassionate and caring dr. His bedside manner should be taught in all hospital in the nation--that is how a dr suppose to show that he/she honestly & truly care for ALL patients. I want thank Ms. Melinda for making me feel like \"all I have to do call\" & she will be there to assist & help ...trust me I\'ve seen nurses that pretend like they care because I work at one of the main trama center in the medical center...last & far from least thank for calling to see if I feel better Dr. Edwards!! wishing you guys the very best & continue the wonderful efforts in helping people !!\nMichelle\np.s.- sorry but I do not see the \"thumbs up\" button but I give ALL 2 thumbs up!!\n\n','2015-07-15 01:31:15.541000','2015-07-15 01:31:15.541000',5,'Jae Scott','https://lh4.googleusercontent.com/-MEK9F5hGHkc/AAAAAAAAAAI/AAAAAAAAAAA/idz7C6RAHEs/c-rp-mo-br100/photo.jpg','17394740196501090048',5294),('AIe9_BGlY-BaOO_aND3JZqxJBS1RMyVHUe9WXWCdEe-6pG-Q9rkoxmP_Hd8uizvxdvl-Zbx9ecv0b1_3mvazlAJTyd0LuipxVX7Yg_s8paUXR3SlFqrAWbI',NULL,'2017-10-13 15:05:33.200000','2017-10-13 15:05:33.200000',5,'Stacy Kimbrell','https://lh3.googleusercontent.com/-QBEypCcmKb8/AAAAAAAAAAI/AAAAAAAAAAA/pyZFRy5Aht0/c-rp-mo-br100/photo.jpg','3511292162159714121',7777),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rn-jQrP8GE3NkoRzIoSx5TrWFZZ2rOPZ7fUFYN9bISEepDEfq5YQ_TVns0AlKVQJNA5RzxHcEYaBBQN5hQ2OrLCSTf_I','Fast and professional service. Everyone was super friendly and nice. Care room was very comfy - warm blanket offered, cable tv, private. Definitely recommend if you are in a pinch!','2017-12-03 04:12:48.411000','2017-12-03 04:12:48.411000',5,'Ana Gonzalez','https://lh3.googleusercontent.com/-gpcr73AlIzQ/AAAAAAAAAAI/AAAAAAAAAAA/OCnqNGEnBuQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1722),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rn11JqaFRXj6J1U-QG7d3BelUphaQcEKfckwurkSwp_Ej6FoF5u83uWSM7yNoQ7gg85S00edXinj_Fz_HGy9U2MOg4N8','Quick, efficient, service. Will be going back next time i have a need!','2017-02-01 18:40:17.786000','2017-02-01 18:40:17.786000',5,'Amy Termina','https://lh6.googleusercontent.com/-Z2YiuidzC08/AAAAAAAAAAI/AAAAAAAAAAA/WgeKjFohi6o/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1898),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNa24n-op3VqxFLragzSGx7Qb4jNXGqtbK3Vc6qszTFWYmf733PP0R20go7ARwe10Zk5PnXqbIeLik2KmWOI2GVQV8YQ','Doctor Miller was really polite and helpful all the staff here took real good care of us its the 3rd time coming and always leave with great service and well taken care of they know what they\'re doing!','2018-08-10 01:02:39.485000','2018-08-10 01:02:39.485000',5,'Cristina Vasquez','https://lh4.googleusercontent.com/-a7NF9T8_xEM/AAAAAAAAAAI/AAAAAAAAAAA/g8Q29_VcV7o/c-rp-mo-br100/photo.jpg','14567670160750071148',1572),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNfJbEqyphzuv59krWuoJRcz3kIFtN3UCVxzKSJV8EfAcQ-YYMJPd_D8emFGk8fFEiltBa86wHSHNkiBHb8SKLrSQpaI','At my most recent visit I had Victoria, Anthony, Kathleen, and Dr. Baker and they were all so wonderful and caring to my needs. My roommates and I come here every time because of the great services, I highly recommend Signiture Care!','2019-03-04 18:05:39.537000','2019-03-04 18:05:39.537000',5,'cate chaplin','https://lh3.googleusercontent.com/-InppGNUejeA/AAAAAAAAAAI/AAAAAAAAAAA/pYLw09nlrNk/c-rp-mo-br100/photo.jpg','16590124370714063921',3514),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNgcwNo3dXY9ghGOg_75al0VHulxkWr3osyWQl6wHt8oR5Ra4JziDjZRVXjomnt2fhE-WTHOMdMpdUBiOS-bZZZIDTj0','Excellent service. They treat you with care, concern and dignity. I would return.','2016-12-17 17:28:19.213000','2016-12-17 17:28:19.213000',5,'Michael Pugh','https://lh4.googleusercontent.com/-nR8HhldqJQE/AAAAAAAAAAI/AAAAAAAAAAA/ru0iALedDKI/c-rp-mo-br100/photo.jpg','14904078213800803294',2439),('AIe9_BGlY-BaOO_aND3JZqxJBS1RngZkccxYDVsbxb20LL6IFFNIBJHSP27tEPPisYaAHvfUHAFVwK2zct7wbqqkoLs46TeyzOmkzZhluyUKbYWbNs7dXkQ','It was good and everyone was very friendly','2017-03-17 17:32:27.738000','2017-03-17 17:32:27.738000',5,'Izzy Franco','https://lh4.googleusercontent.com/-OMPatQLvxoc/AAAAAAAAAAI/AAAAAAAAAAA/yZNnzUtyaOg/c-rp-mo-br100/photo.jpg','16590124370714063921',4032),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNJZ1NpJmQecnbcUNxwTU2WmzQ3hc2U8bxDgXrvEO8lFTQRr8KgaPBmxAzrxhACv4PGeexS-obpPiSVYhKJZuRoltxQ0','Nurses and team were very nice and attentive. Got check in and seen very quickly by Diana. My husband was the one being seen and the doctor was dr. Zhen and his nurse was Kristina. Great team and staff!!! Would recommend coming here.','2019-12-27 18:51:32.142000','2019-12-27 18:51:32.142000',5,'Crystal Vega','https://lh3.googleusercontent.com/-ClpRxxi1-uc/AAAAAAAAAAI/AAAAAAAAAAA/8nkE8_BgdYs/c-rp-mo-br100/photo.jpg','12541597562633926366',296),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNkVDSFCAo2yFJ1IlEySwg0d_OKOA-KhoMeAcrsIi75GkcWJER7ipLn-Mos3SH7Db0IC_PnUw_Cojskwpm66md1v5m-4','I would like to think you guys, I came here very sick now I’m feeling good and I am ready to go home thank you so much for the service','2019-01-24 22:08:42.731000','2019-01-24 22:08:42.731000',5,'Abdull H','https://lh5.googleusercontent.com/-z5npSMkZo2M/AAAAAAAAAAI/AAAAAAAAAAA/r9ZIZPTwP9k/c-rp-mo-br100/photo.jpg','3511292162159714121',7453),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNNblSMjF3otIH30xOTIwuzsKzGtUnpet028_NrlBsAJliHJ3EUGdpFHzM8ay9WWY6MrjoT2l_jkn48vZ_qX2CRCw0w0','Its always fast and the staff is awesome Ms.Delicia was awesome and the staff.','2019-10-21 17:52:25.886000','2019-10-21 17:52:25.886000',5,'Slim BaddMF','https://lh6.googleusercontent.com/-L59dAPBlCL0/AAAAAAAAAAI/AAAAAAAAAAA/ifIDk9EO2GE/c-rp-mo-br100/photo.jpg','8679688254631342173',8781),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNo0Gni9H2WSH3h_Ig9mX1EUHFvh7FCSI8dhjHZQtqrAdp3_JIQEIpdPMheKJ0pYBGFW4_JpDIQk28Xf2Cb0e8-D7dZo','My husband came to this location for pressure in his head and neck pain, since we got here the care has been excellent, front desk is very communicative and fast, the nurses (Regina, Joann and gonna) extremely friendly and kind and Dr Vaagene was very communicative, he listened to our concerns without interrupting or belittling us, they have complementary coffee and a little set up for kids which is great if your kids come with you. We are definitely coming back here if needed.','2020-02-22 19:35:24.577000','2020-02-22 19:35:24.577000',5,'Lesty Serrano','https://lh4.googleusercontent.com/-fVBOUDl33N4/AAAAAAAAAAI/AAAAAAAAAAA/KFsWvoNv2ao/c-rp-mo-br100/photo.jpg','14567670160750071148',13515),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNtl0qHYXPgtyGPJlRbW4np95ycmWg5BQEkx9K70nsMLXiTzOnMxXk0JkfnrM5NLXflXGsB_zsM1bBYAVFMJ7azEgu9k','Lisa and chris were amazing, they helped so much to make this process easier for the little kids.','2020-06-12 16:53:39.671000','2020-06-12 16:53:39.671000',5,'Jessica Lopez','https://lh3.googleusercontent.com/a-/AOh14GinSYKNUDpK8A1KEBsjhPPD1AyteW_3-CQTwpOj2g=c0x00000000-cc-rp','16891069708558046635',22054),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNV1CezhLemiuiK_6JQj8aivFNqjLHuQzwJ9YocgxT7QcsYZ6iMWemjsqb-_bzej6hXeeUs8niVNTohpbfdXwtXEoquE',NULL,'2019-06-04 06:03:44.687000','2019-06-04 06:03:44.687000',5,'Robert Sparks','https://lh5.googleusercontent.com/-yGsl_Ua-Z3s/AAAAAAAAAAI/AAAAAAAAAAA/CjQNm9XWheE/c-rp-mo-br100/photo.jpg','16590124370714063921',3367),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNvIiNo_lzwa8erbJ0yzZeqSesO8AzwOLg1edhixU6YuB_6KYpaSRKiqlhep8JOgbEHaeOsSGAcdhpEe2LHOC6ALzcwQ','Always quick and professional!','2020-02-18 20:54:16.717000','2020-02-18 20:54:16.717000',5,'khalil salem','https://lh6.googleusercontent.com/-V4XaFqZ7W7k/AAAAAAAAAAI/AAAAAAAAAAA/rOcCQybR4mc/c-rp-mo-br100/photo.jpg','13486358490203335051',13412),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNvIJik9_wlBbbEx-hidRfqnbgmTYUeLLIlW1LgyzCtBDWcwHhtGky7O4O_swfeN8zoy8TOuJOFE71fQeY6gBJTirklc','I can not express how amazing the staff at SignatureCare Emergency Center was to me. As I arrived in pain, the receptionist, Jennifer Diggs, saw my struggle and had me taken to an available room immediately rather than wait in the lounge for a nurse to be ready to see me. I was offered a warm blanket and vitals were take along with questions by an available tech, Erica. She was very personable and helpful in making me feel comfortable. Because I was there for a CT scan, Tech, Matt cam into insert my IV port, taking blood sample and preparing my vein for whatever was needed for the Scan. I had a blood sample takes 3 weeks prior leaving an ugly bruise from another center, though Matt\'s IV that ended up being in my arm for almost 48 hours due to being in observation on fluids and IV antibiotics, did not leave any bruise but a simple small dot where the needle was. Matt and Canyon were so helpful when it came to taking care of me during my visit. The Doctor on duty, Cynthia, gave me my CT results explaining that I would need to be on IV antibiotics because my diverticulitis attack had lasted longer than it should. I choose to stay there at their facility rather than being transferred to the Paris Hospital. I was placed in, what I referred to as the Executive Suit. I was cared for by Nurse John Bell during the day and Billy on night shift. John was so gentle and considerate always asking if i needed a warm blanket, another juice, etc. Billy was very lively and funny keeping me feeling like I am not in a horrible hospital. I was overwhelmed with their hospitality and kindness. They provided me with a most comfortable robe to take with me as I departed after almost 48 hours, and was able to shower in a very fancy bathroom. I hole I never have to return for the same reason as I was in severe pain, though If I ever need to visit an ER, this is where I will go from now on in Paris Texas!!!','2019-01-03 18:18:16.148000','2019-01-03 18:18:16.148000',5,'KRISI HERRON','https://lh3.googleusercontent.com/-wlxvT11DNt0/AAAAAAAAAAI/AAAAAAAAAAA/i3h75jHwabo/c-rp-mo-br100/photo.jpg','8626688543755174284',8614),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNXZzY-v_KgZc8QML-Cou-SGOxFvhfAaFwhRejaLEaFN__plfRVgqQhRcVZwDERPA1aIxUGfM4Nz0Jqmk2cRydldqW9U','This place has wonderful Drs and staff very satisfied with my visit hear no long waiting time very nice friendly staff thank you so much to RN: Karen, Rad/Lab: Sherri, and Reg: Keo. I truly recommend Signature Care Emergency Center you won\'t be disappointed','2019-05-30 14:19:12.020000','2019-05-30 14:19:12.020000',5,'Adriana Vasquez','https://lh5.googleusercontent.com/-0dMtsUt2R1U/AAAAAAAAAAI/AAAAAAAAAAA/OqHF8BDzZAw/c-rp-mo-br100/photo.jpg','3272657195432704501',6956),('AIe9_BGlY-BaOO_aND3JZqxJBS1RNY_DGarh6NRKjppvuQGZSwQg1GiHGVDzHvr7lhI3K4iu-Kp5AmXeRtV6yjHnKxE_k28keUN3gwOTcyW4rYRzhh8GcUw','Tanishia was amazing. If i’m on the edge of death i’m def coming here🙂','2019-11-18 05:59:14.161000','2019-11-18 05:59:14.161000',5,'Telle','https://lh3.googleusercontent.com/-xO12a72eJT8/AAAAAAAAAAI/AAAAAAAAAAA/spZvQaHBtN4/c-rp-mo-br100/photo.jpg','17898197009688164559',5426),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ro-CDBhrUxgRg2hEhEc6-jdA4TN4tFKVh5Ha6AgVrQDJK-DAWfZGgih-L5PjDIRQd1tOyuTdQovKE0aj5T2pbJPQxKqo','DR STARR\n JOSEPH\n SHAYLENE\n TRISHA\n ALYSSA \nWERE ALL AWESOME!!!','2020-02-01 22:30:18.364000','2020-02-01 22:30:18.364000',5,'Diya Juby','https://lh6.googleusercontent.com/-lIuM7ay--Sc/AAAAAAAAAAI/AAAAAAAAAAA/zATPAW-_STs/c-rp-mo-br100/photo.jpg','8918455867446117794',14854),('AIe9_BGlY-BaOO_aND3JZqxJBS1RO4squBE1LBxs-fru9AMNMRzTaD6xCXDSDepcRpQGeDmntMetnMhqngH-pBKDh2No_BFMALA7OC1-awbpfiaPhowsXtQ','They were very helpful and nice as soon as I walked in the door. They worked quickly and provided me with all the information I needed. The doctor was friendly and efficient.','2017-04-26 04:40:31.681000','2017-04-26 04:40:31.681000',5,'cole fowler','https://lh3.googleusercontent.com/-tefG5XyGKCQ/AAAAAAAAAAI/AAAAAAAAAAA/wZl2bvmC84A/c-rp-mo-br100/photo.jpg','16590124370714063921',3997),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ro9cW0yNnGTnMO6lRbTw7N7VhQsdaeAOoVJA3VP56rlVLDrvEteLyPyzUnCyCQ0cK1KMERJPfX6bhi6M6mG7SQK71lSg','Everybody here are very helpful and great. Better service than any other clinics and hospitals i went to.','2019-08-26 18:03:43.987000','2019-08-26 18:03:43.987000',5,'C','https://lh5.googleusercontent.com/-y87kGC0B43o/AAAAAAAAAAI/AAAAAAAAAAA/Ds2zYLVgLF8/c-rp-mo-br100/photo.jpg','12541597562633926366',454),('AIe9_BGlY-BaOO_aND3JZqxJBS1RoA48ApUXL5f2zslxHoBZcBS0iCp1c5XsgkP4hDaQXx25n13o6yx9R_NqYw8dg7JDyCv98rDfTlx7WaXlqUhAxYqPzOc','This place is amazing, i took my husband here. He was seen fast and they were very thorough with us. They took great care of him and made sure i was okay as well. I would recommend them 1000x to everyone. They are the best ER ever!','2019-10-06 19:54:07.448000','2019-10-06 19:54:07.448000',5,'Khiana Vargas','https://lh5.googleusercontent.com/-6S53iatrI90/AAAAAAAAAAI/AAAAAAAAAAA/Zfng5oz1LoQ/c-rp-mo-br100/photo.jpg','2694018788013845459',6053),('AIe9_BGlY-BaOO_aND3JZqxJBS1RoAGFjUrNmmRj4IGydYhYw923bNJKTgo6M-M02K_BewEJ7B34Jf2xlchrxeIxvvs3VrOx3q2tGNwBy8IVdIgjTx629w8','very helpful and understanding!','2017-07-29 03:08:24.321000','2017-07-29 03:08:24.321000',5,'Julliana Beltran','https://lh3.googleusercontent.com/-B6Ex36YI4kg/AAAAAAAAAAI/AAAAAAAAAAA/x5s0JhIC2nI/c-rp-mo-br100/photo.jpg','14567670160750071148',1783),('AIe9_BGlY-BaOO_aND3JZqxJBS1ROb991wff1i5g8fukBdCN0S_bOncXXO-fCeVRz8wcG_aSr1XtnbQGKiNEgqG4i3QgUpL5tapnqyMELfNl5vjAkAEhAQg','Very friendly staff. Theresa was our nurse and she was amazing','2019-05-21 01:29:08.702000','2019-05-21 01:29:08.702000',5,'Ron Drake','https://lh5.googleusercontent.com/-9pG1Ih5sBg8/AAAAAAAAAAI/AAAAAAAAAAA/9MKydzgZKYI/c-rp-mo-br100/photo.jpg','6521947413723274945',8269),('AIe9_BGlY-BaOO_aND3JZqxJBS1RoEwt3EMP9Kc3lb-DDdt4soR_ktOph0SdtAXdb6vCAEZUk1oHh8xGHf0eu67Vex-LKRLoN_mEvKl00c4LtYAq9Z_IDkc','Walked in with severe pain in my neck and shoulder. Upon entering Edward and Stephanie greeted me and were extremely attentive and caring. I waited for maybe 3 minutes before getting sent to the back (everything was clean and organized). My nurse Katie and Dr Miller treated me better than ok, walked out feeling so much better. If I ever find myself in need of some urgent care I\'d definitely come back, and I HIGHLY recommend this facility any chance I get.','2019-04-28 00:34:52.228000','2019-04-28 00:34:52.228000',5,'Guadalupe Calte','https://lh3.googleusercontent.com/-5w-nEjiZkbY/AAAAAAAAAAI/AAAAAAAAAAA/YjYWm6Suz3E/c-rp-mo-br100/photo.jpg','16891069708558046635',4297),('AIe9_BGlY-BaOO_aND3JZqxJBS1ROFQqwSyh3Igm7nihtGBcyrajRjrYhFXLTqic98x2MBmTxdJO3NBDxq0xAwi97a-gQn-a6RZGz4Cpt6HZYyJjl1pPSNk','DR. SINGLA, MD, NITIN K\nNurse: Joseph P I\nRadiology Tech: Trisha   B\nFront Desk: Sibienne Renne W\nWere all wonderful with my 14 month old. Service at the Stafford location was an experience to remember. Thank you all','2020-02-15 14:45:10.570000','2020-02-15 14:45:10.570000',5,'Netta Bright','https://lh5.googleusercontent.com/-eeQaBlhEXRU/AAAAAAAAAAI/AAAAAAAAAAA/BCe1nGW0iEA/c-rp-mo-br100/photo.jpg','8918455867446117794',14826),('AIe9_BGlY-BaOO_aND3JZqxJBS1RoGSxDNaWA_l0MNuwl1POdZWeVKHrrXQX5xBIVrobYLZTomZGfWf5usdUR0camhZSN6a1mProA3RLVXZdUKxsFtZHkj8','This is my go to emergency center. Always so sweet and inviting. I\'ve stopped taking my kids to their primary and started bringing the whole family in, they are quick, attentive and very informative. \nThank you to all the staff.... but recently to the staff that attended to me and my kids\nAdriana\nJared\nElsbecker\nTheresa\nMagali','2020-02-28 15:34:04.335000','2020-02-28 15:34:04.335000',5,'lori bernard','https://lh6.googleusercontent.com/-tWzELidTl6o/AAAAAAAAAAI/AAAAAAAAAAA/kQWlE7PnSRI/c-rp-mo-br100/photo.jpg','6521947413723274945',14534),('AIe9_BGlY-BaOO_aND3JZqxJBS1ROhTmL7AWUvjDEGBbOzY6gzYEH_iZVLqrfKjJzY_lkR22-6W0yOg_gd-gBpdchZJ68TijJEBo4xDr7Xyvsrwwf5K3W50','The facility was very clean but what stood out to me where the staff ! I highly recommend this place over a hospital emergency room ! They offered me a warm blanket , snacks and checked on me periodically! I would like to personally thank Dr Patel , Ms Lynn , Fatima , Daniel , and Tanisha ! You have been great to me at my time of discomfort ! Also the night time receptionist she was the sweetest ! This place is highly recommended! Thank you for your kindness and dedication !','2019-11-25 13:47:33.252000','2019-11-25 13:47:33.252000',5,'Shanell Robinson','https://lh6.googleusercontent.com/-T_xc3jy-Hu8/AAAAAAAAAAI/AAAAAAAAAAA/4wK3lxe-eRc/c-rp-mo-br100/photo.jpg','17898197009688164559',5403),('AIe9_BGlY-BaOO_aND3JZqxJBS1RoHxx6rf7VzDybrLogH0ZYlMRhw3YBxdV0Ti8V8d1RkX2nsPxYY5tcuYGm0rMSsxL4vx59XlLyApI6AAESQiMoRqvoyE','No one wants to go to the ER, but if you do this is the one to go to! From the moment we parked our car, at a very late hour, Security was so nice as they came outside both at our arrival and departure to ensure our safety, which was the last thing on our minds due to the situation. Reception, was unbelievably sweet and the wait time was less than 5 minutes. The nursing staff were gentle, kind and caring, and the doctor had the best bedside manner I only thought to exist on TV until now. They truly provided care to both the patient and the family member with them. I wish all healthcare experiences were like this! Thank you Jackie, Ray, Kristi and DR. MILLER!','2017-02-02 16:20:41.956000','2017-02-02 16:20:41.956000',5,'Donna Huckleberry','https://lh3.googleusercontent.com/-TXFYXDdJOWs/AAAAAAAAAAI/AAAAAAAAAAA/pFMnBQY1rNA/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1896),('AIe9_BGlY-BaOO_aND3JZqxJBS1RoKslMWNErvxS7cQVk_n2TRvGAyuc6UqEKLe9CDGI5SsnBZRxf1fhTrH-FqbpFBeb6dIej8vgJb5piDO99MpCaAMH9wQ','just got back from this place and i am super impressed with everything and everyone here! i want to know the secrete of a well run health care facility -- because most other places are definitely not well run, why is that?? from the moment i step in to the moment i stepped out the experience was positive. Dr. Elsbecker and nurse Gaberiel were such pleasant human beings, they treated my 5mo old daughter with sincere care, including making sure i was feeling ok as well. i am so proud to say we have excellent healthcare providers near our neighborhood and bless to live almost just across the street!','2019-09-22 03:53:05.304000','2019-09-22 03:53:05.304000',5,'Katie Loh','https://lh3.googleusercontent.com/-O-l53He2_WU/AAAAAAAAAAI/AAAAAAAAAAA/Tbwt9LcM2Kg/c-rp-mo-br100/photo.jpg','16891069708558046635',4197),('AIe9_BGlY-BaOO_aND3JZqxJBS1ROmwXz9nxqqp4YWDd4gnXdYdrS5DobZWwo-ajsSx1Wxjqj8mSIa_-Gx-k-Q_oxvFFPe7rBprWJAAFIAKdSTIBpx5uzrA','Very nice and helpful. Rebecca V. Helped us and was really great.','2019-10-19 08:32:48.683000','2019-10-19 08:32:48.683000',5,'Will Gretzinger','https://lh3.googleusercontent.com/-Y7twWbUoJqY/AAAAAAAAAAI/AAAAAAAAAAA/B6VSVOffYVc/c-rp-mo-br100/photo.jpg','16590124370714063921',3130),('AIe9_BGlY-BaOO_aND3JZqxJBS1ROOGT4kzL2EYHxQ6R9lGJt-MuRLGViUoSfULd7dbiYwfC9I7Ml9F7hbWrg6KbPBAstEZqFSXvKO3RSjAOY66Bnbqf-Sg','The staff was incredibly nice and accommodating. The doctor was not only extremely knowledgeable, informative, and healing, he was easy on the eyes. I felt confident in my care and will be returning For any of my medical needs.','2019-02-06 14:32:39.967000','2019-02-06 14:32:39.967000',5,'Gerald Simmons','https://lh3.googleusercontent.com/-Fo34jXckwbw/AAAAAAAAAAI/AAAAAAAAAAA/N6kabP_WB0U/c-rp-mo-br100/photo.jpg','16891069708558046635',4353),('AIe9_BGlY-BaOO_aND3JZqxJBS1RopHK4IRSdUMNK5M8nbERXpytOuBufBhBRIiU1itS20akITB3jAPHD017Vr3DDhPGG2aWrhQkRkWk9YCV1c3JBPtMmWc','I had a wonderful experience best Er visit that I have ever had. Everyone was so fast, sweet, and had so much patience. Anything we needed they were there. Tatiana was awesome. My nurses nicole G and kelly were awesome and very helpful. Brandon Williams was very helpful and friendly. Bre M was sweet. Dr. Souman was very nice and knowledgeable. Thank yall so much','2020-01-12 12:26:25.852000','2020-01-12 12:26:25.852000',5,'Christan Coleman','https://lh3.googleusercontent.com/-OPH8xTCfgwc/AAAAAAAAAAI/AAAAAAAAAAA/1Pm0eZtajaY/c-rp-mo-br100/photo.jpg','14567670160750071148',9544),('AIe9_BGlY-BaOO_aND3JZqxJBS1ROqekcOAyOnTf7q9ZAmOD7oJbgODBO9wkvroJO5pXhqHRXZ7CAmDIaOB8SsaSZepX6bvuPbKd0_JM3wL1VDETuFYKR9M','This facility was extremely helpful and had all the high tech equipment to do all the testing I needed done at the time. Tricia was super sweet and kind...very gentle and patient.','2019-10-21 22:34:12.112000','2019-10-21 22:34:12.112000',5,'Ann Haskins','https://lh3.googleusercontent.com/-2m4PX6BMshY/AAAAAAAAAAI/AAAAAAAAAAA/twf-XbPcRng/c-rp-mo-br100/photo.jpg','16389487648212004696',2796),('AIe9_BGlY-BaOO_aND3JZqxJBS1RoUFC_hytWTpgwuHsS9i2D2WldFfe5ZD2I1MpmELYXox14NGQWU9MV-gzw6OCSqRlXxOt7UkCK7_m9Xymy7DGjuwdkRI','No wait. The staff is so nice. My family and I are repeat patients! I love everything about this facility and will stop here before going to a traditional ER.\nHands down one of the best I’ve ever been too. They not only took care of me, but calmed my son down who was hysterical. YOU GUYS ROCK!!!','2019-12-19 00:14:17.302000','2019-12-19 00:14:17.302000',5,'Ingrid Hargrove','https://lh3.googleusercontent.com/-Sq2EYMy66TU/AAAAAAAAAAI/AAAAAAAAAAA/5BjEdAGPGdU/c-rp-mo-br100/photo.jpg','17394740196501090048',14067),('AIe9_BGlY-BaOO_aND3JZqxJBS1ROWH8RHeBS6L3cR67XqnYhRXic_NXNoUQw1bQjyCTmjoUYbDo_Daj93Iyv4NGXbGlkNh4Z5O0ou6YRUYvee3hnG5yjik','Clean and safe environment and very good helping staff. I justed visuted last night and found everything excellent. DR. WREN, MD, ALISHA A \nNurse: Nichole M F \nRadiology Tech: Brian S C \nFront Desk: Samantha   G\n excellently handled my case.','2018-11-03 18:04:20.009000','2018-11-03 18:04:20.009000',5,'Barkat Ali','https://lh4.googleusercontent.com/-AjawJO-Nr-0/AAAAAAAAAAI/AAAAAAAAAAA/7J4toARBNRo/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9222),('AIe9_BGlY-BaOO_aND3JZqxJBS1ROZ6qd83EdiERHUkUUhZQTd57OjT96uog-hRdollVpDgwJFZMXJ2nIB5fOkkT-Kg-JbikUfv8N3gM1TIm0iqIHj0MEQQ','Great experience, every nice, professional. Lisa V., Corey C., and Allison were very caring nice.','2019-08-30 02:27:09.864000','2019-08-30 02:27:09.864000',5,'Vanessa Carr','https://lh3.googleusercontent.com/-p7CWiHFktqw/AAAAAAAAAAI/AAAAAAAAAAA/Yfy9hWr9Nn4/c-rp-mo-br100/photo.jpg','13486358490203335051',841),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rp2gWrtEQfUyIogQwE3tYVQIMLhgp635-7Q5LcGrMET_tNHAOzblHKEusYeYhnJo11yl3VDRBapTreryZ6uf1f5TFxZg','Very quick and friendly experience.','2020-07-23 00:31:42.173000','2020-07-23 00:31:42.173000',5,'Dillon Weitl','https://lh3.googleusercontent.com/a-/AOh14GivqPS3_BwnfRXRAKlsg2nwhRxleDEwktCuHNyBxg=c0x00000000-cc-rp','14567670160750071148',21872),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rp8BOVS_byzOmW0xL9ryOsFcP_m8wx4cR8HrrGKP5Ft6RQk4v8_utBvEq2xn0uBjyUeFKZ-HmQrvaVKQTiA9C_3q-2Jw','These guys were very quick to see my wife, which at 2am is great. Very short wait and competent staff. In and out in under an hour. Definitely recommend. Skip the urgent cares and hospital based emergency rooms and stop in here.','2019-09-02 19:23:00.444000','2019-09-02 19:23:00.444000',5,'Jake De','https://lh3.googleusercontent.com/-m-BUsztzCps/AAAAAAAAAAI/AAAAAAAAAAA/k-OrITdZb8w/c-rp-mo-ba6-br100/photo.jpg','14904078213800803294',2098),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rp8TQFBdbLnZBVDSLXt7mt2Nx998GEeCd9EsDYALyFHMjoWce-DmDICE9n5ohU2UBwquk5SAB0dHpRhlPRfDtsR_THb0','Wonderful facility. They were professional and very friendly. Delores was amazing and had a welcoming Smile! Wouldn\'t change a thing.','2017-02-13 01:44:35.965000','2017-02-13 01:44:35.965000',5,'alyssa penunuri','https://lh5.googleusercontent.com/-_xJFgtYikmE/AAAAAAAAAAI/AAAAAAAAAAA/ZxSiMUFoABI/c-rp-mo-br100/photo.jpg','3511292162159714121',7881),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rp9og-sqHubHLhxoeN2bj0CABKNNeAQwUDozoVRj9ZRfP0sWZ8N4SwvbeOT73cqlL2_yIB1TSPz96ujxi55h40npuWuM',NULL,'2018-02-03 19:04:37.840000','2018-02-03 19:04:37.840000',5,'MSC OPAS','https://lh4.googleusercontent.com/-bDADKx8TX2s/AAAAAAAAAAI/AAAAAAAAAAA/hAS1YaBDIa0/c-rp-mo-br100/photo.jpg','16590124370714063921',3868),('AIe9_BGlY-BaOO_aND3JZqxJBS1RPC6Ww992q5BGetQRSiHWhVlDISG-faRpn-Dbow7qE1ElQQ7DgSX81oDD_tCGNdW2iulRAnnOEAZjPo72W3uSEWNqBJw',NULL,'2020-02-10 20:31:47.031000','2020-02-10 20:31:47.031000',5,'Ryder Villarreal','https://lh3.googleusercontent.com/-AWY48Z1VrC8/AAAAAAAAAAI/AAAAAAAAAAA/yRcWWo5qE8s/c-rp-mo-br100/photo.jpg','13486358490203335051',13428),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rpf-7rj0FaD92hITR2kjHIJ0WML9DryGEE37lBJKitWGw89n4F8SjgQkoz7cyLPtU27czJjMN_ougQm8oim4dQwSQBGo','Though it was almost 4am, everyone at the Heights location treated me so well. The staff was friendly and caring, and Dr. Leavitt was patient and understanding as she examined me. She and the staff took care of my medical needs, and I am feeling much better now. I\'m so glad I stopped by to see them. Thanks for a great healing experience!','2018-06-06 19:21:12.965000','2018-06-06 19:21:12.965000',5,'Paula G','https://lh6.googleusercontent.com/-Lkt0IKUYJ84/AAAAAAAAAAI/AAAAAAAAAAA/GgCgYs9hRss/c-rp-mo-br100/photo.jpg','14567670160750071148',1610),('AIe9_BGlY-BaOO_aND3JZqxJBS1RPh83cWoWBqysKSi2ZPaJaato73SXQuB69eDQMkCzJFYBfx1HNE8AnEPLfyHqrSC0pqal-h2H0NC1WCso7x9Rx7LJDtA','Fast and extremely friendly! Staff was amazing! Dr. Garcia is very compassionate and caring. My experience was precise and will recommend anyone to this location!!!','2018-07-26 09:31:57.463000','2018-07-26 09:31:57.463000',5,'Shalena Stafford','https://lh3.googleusercontent.com/-CpdhcUkt0F8/AAAAAAAAAAI/AAAAAAAAAAA/KUBhmWjw0jw/c-rp-mo-br100/photo.jpg','8918455867446117794',9254),('AIe9_BGlY-BaOO_aND3JZqxJBS1RPhML3nmHWQozO6pzgO6IFuaB_t2KYT2vUznEZFT9YXOjow8l9Zccz6jl2CSbxG9AwxkcTogIppDv2_J0YZLiG9GPmP0','I’m not the kind of person who writes feedbacks but this one really needs an exception. The front desk was very very rude, I came to do a COVID test at 2:00 a.m. because that was the only spot that they had and I thought it was better because they were going to do things a little bit faster, but nooo not at all. Once I got there they told me to go to my car even though I had an appointment, there was no other people like to tell me to go to the car. Ok, so I did, I went to my car and WAITED for 2:30 long hours, they finally did the test and sent me to my car again to wait another 2 more hours. \nJust do not go to this place.','2020-07-12 10:51:23.977000','2020-07-12 10:51:23.977000',1,'Melissa Marquez','https://lh3.googleusercontent.com/-ob1y8oWvaHM/AAAAAAAAAAI/AAAAAAAAAAA/anR1YBovBdM/c-rp-mo-br100/photo.jpg','14748677429039074158',21763),('AIe9_BGlY-BaOO_aND3JZqxJBS1RpKUIz4YUlBaWLWwyhgaPLwyQ5Vpmcn-GYOnAn_feyYnzYYh1LCQs48gMugLXDE2ep6SU8ie-pIWZ4q45CWaO4yL2MyU','I went in today to get tested for COVID. Staff was very nice and friendly. Service was great! I thought I was going to be waiting long and it wasn’t bad at all. Dr.Das was a very great provider definitely wanted to make sure I was taken care of. The nurse asked me serval times if I needed anything water coffee a blanket. Very friendly place and service was fast. Thank you signature care Lewisville.','2020-08-07 15:18:52.238000','2020-08-07 15:18:52.238000',5,'Julissa Orta','https://lh3.googleusercontent.com/a-/AOh14GhoQ3qXBYNwtYT_AAhzfjR4Xiruwxwy1qgABHvg5g=c0x00000000-cc-rp','14748677429039074158',22514),('AIe9_BGlY-BaOO_aND3JZqxJBS1RPQANzhRECS-SA1438c_eub0ex8tMQpRb_g3LkS_gMAJ3vLRwT06KDfVqr8kRoFA5-m0-etLfefqqbKB7OsOil48y69E',NULL,'2019-11-25 23:17:03.524000','2019-11-25 23:17:03.524000',5,'Raven Baker','https://lh5.googleusercontent.com/-CwhvsIqxpKs/AAAAAAAAAAI/AAAAAAAAAAA/qii_4Q5O0T0/c-rp-mo-br100/photo.jpg','3272657195432704501',6856),('AIe9_BGlY-BaOO_aND3JZqxJBS1RPrIfDc7j8UR4S-LByYwL6Fe4VeC1RTddx0z2InWKPqHH-IrQsxX919b7mtxyIFgXfgi1Ds7l-mKlsQ8qD6eAgVyOG8I','Just wanted to say thank you so much for Dr Jones taking the time to listen and ease my fears. Konya,RN was so kind and caring and even shed a tear with me. Thank you to Nino the Rad Tech for making me laugh when I needed it the most and for Angela in reception , my daughter from another mother, who held my hand when with love. I have such a loving family at SignatureCare!','2019-08-07 15:21:59.213000','2019-08-07 15:21:59.213000',5,'Michele Tomastik','https://lh6.googleusercontent.com/-dR-ODH6V0Mk/AAAAAAAAAAI/AAAAAAAAAAA/yqGD3gHrefk/c-rp-mo-br100/photo.jpg','2694018788013845459',6094),('AIe9_BGlY-BaOO_aND3JZqxJBS1RPvNEbAjKueVYCqygH34jTBxxLKTk1XhUjIWqNeInOl_sPlqQD1t8KcmzZpMRhRz4Jt2yBewB8ZoQaPOGjKlvjtga278','Dr. Patel\nEkaterini S.\nKaty K.\nAnd Patricia C. Were all AMAZING during my visit!','2019-10-04 23:38:45.384000','2019-10-04 23:38:45.384000',5,'Lovely_Lady_Joanna','https://lh4.googleusercontent.com/-3iaYp1YfKZ0/AAAAAAAAAAI/AAAAAAAAAAA/Ju7Enc4M_vQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2854),('AIe9_BGlY-BaOO_aND3JZqxJBS1RpWleo92uBQhFhWpUcOvWw-4XVZaBi_Oemhze84LgxXTqn2oH8-pVoNboeIZkv7oee55ZbswqFO_BLoV_LlrgYCkLRVE',NULL,'2020-07-21 17:33:03.002000','2020-07-21 17:33:03.002000',5,'faze tito faze up','https://lh5.googleusercontent.com/-8hDKV2EiTug/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckJxeZuzH3gK5d8xb5hs9Iyrvr74A/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21878),('AIe9_BGlY-BaOO_aND3JZqxJBS1RPWRnHH-A6KV2PDYEUr0M1PLjUOWAam3ukVAyll7TewmpiTrjB6GejV4TIBmQuHVjZSDxgxfLw4GDaKU3u5HMvXCHE_I','Very pleased with my experience. Welcoming environment where I didn\'t feel like a number instead of a patient.','2017-02-16 19:59:14.698000','2017-02-16 19:59:14.698000',5,'Ange Whitaker','https://lh4.googleusercontent.com/-d3dXdugmYLU/AAAAAAAAAAI/AAAAAAAAAAA/KGDarcgL0Hs/c-rp-mo-br100/photo.jpg','14904078213800803294',2410),('AIe9_BGlY-BaOO_aND3JZqxJBS1RPx6CWETzDeNZ5_CZwEzSU2c0ndBJF9lTB8cANzouDJA4jjQ6FYMGF0gETHlC2c_4So-LWrn38PbUSSa3owupIqc_fvA','Service here exceeded my expectations! Shout out to Dyveliz, Lindsey and Rebeca at the front desk for being so friendly with my daughters on Halloween night to Natalie, Jacob and Jeri with the nursing staff and Dr. Morrical who will forever have my deepest gratitude for going above and beyond. Thank you, thank you and thank you!!','2019-11-01 00:12:09.384000','2019-11-01 00:12:09.384000',5,'Jennifer Cardenas','https://lh5.googleusercontent.com/-l5Aovr9AFpo/AAAAAAAAAAI/AAAAAAAAAAA/a7ExV9f51jI/c-rp-mo-br100/photo.jpg','16590124370714063921',3113),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQ18SIz0XSdeX5Y3JuOtfntfEUX35hCSMaFgxH4wz5S0VAaRuIOkQtXceje58lHjat6osIGjYvsVcrnUhAUZBhoPzXso','Extremely friendly and attentive staff! Tanisha, Doctor Faig, and Nurse Jennifer were all amazing.','2019-12-20 08:22:36.556000','2019-12-20 08:22:36.556000',5,'Gelmar Menendez','https://lh3.googleusercontent.com/-LaCaugvuP2w/AAAAAAAAAAI/AAAAAAAAAAA/XN-0MnlE1GQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5343),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQ1DmegM1PoU0GNc7jHEOCja__rtISSPoY6Xb-zHhzXRgr32iajGS9vib8Z5f4Zq5vh71ztfLhp5TkCPMTc-2BjqkWRI','This is the second time I come here with my mom and everyone is so nice and very attentive. The receptionist tanisha is very nice and help my mom out with her as she speaks Spanish too. Doctor Faig was very helpful as for everyone else the tech Elaine and nurse chantel. Thank you for your help tonight and for helping my mom ❤️','2019-12-16 03:14:00.177000','2019-12-16 03:14:00.177000',5,'Itzel Mendez','https://lh6.googleusercontent.com/-7d14HzX5Fr0/AAAAAAAAAAI/AAAAAAAAAAA/rm8L-vpRY6I/c-rp-mo-br100/photo.jpg','17898197009688164559',5355),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rq1sddYVKZQE4jH4PJtMDxurz9xRIAdo5Kc_5bmC5WrNMpRUelNRQtgo72CRIKifj_th1GzxFVjB944g0LzqEMisvkK8','All the staff was very caring!','2020-02-25 03:02:49.906000','2020-02-25 03:02:49.906000',5,'Cynthia Garcia','https://lh5.googleusercontent.com/-Gt-zpaWuUAg/AAAAAAAAAAI/AAAAAAAAAAA/aQv_t5UmltA/c-rp-mo-br100/photo.jpg','14904078213800803294',20989),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rq5gaiNXz3Y9Y3UySy35QsEiRTukrakDyiUgJsi9gWI7WBpkvesEgOcfV5-U3rUgAgBCAWg1Xw8YRUJV9Ab_UQ0pr1yc','SignatureCare was amazing. They are super professional, fast and OMG so caring and understanding. I ended up having to get an CT scan which i never had before and the tech Jose was very great at answering my questions and making me feel comfortable. The nurses Pam and John and Dr. Wren took care of me so well. It was a chilly night so i was grateful to receive the warm blanket. Nurse Pam made it a personal point to learn how to day my name lol. Which I thought was great and although I missed the Courtesy call the next day she did get it!. Sibienne at the front desk was amazing also. She let me know about a mistake my insurance made that i was able to rectify the next day. I HIGHLY recommend this Care Center to everyone.','2018-11-22 07:52:46.497000','2018-11-22 07:52:46.497000',5,'Shealtra Carter','https://lh4.googleusercontent.com/-BqZ3pBM-wak/AAAAAAAAAAI/AAAAAAAAAAA/rgNaVie7fNM/c-rp-mo-ba4-br100/photo.jpg','8918455867446117794',9214),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQ667vZzREHPDWHthOKdQ4wyoxa7rz-20sOnLOnTLHiMWqrh2spEZGV-eTXyDcWDnrBIEaKRde7K30jJ_CyEkLQlLMGo',NULL,'2018-12-03 01:58:58.919000','2018-12-03 01:58:58.919000',5,'Marin Ivers','https://lh4.googleusercontent.com/-rHaffdgfN0E/AAAAAAAAAAI/AAAAAAAAAAA/25kma5q_Hcs/c-rp-mo-br100/photo.jpg','16590124370714063921',3627),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQ6eK106qdLnjwEYPCZk6ZsjbXXVZOuOHNtTvTKVqb-TztNiLfu2tTRQS-wQHtGeIfVQBUebKP2BQOkUsCHgljMbcyfw','I was sent into the treatment room before I could finish filling out the paperwork. They had me in and out within a half hour. All staff is friendly and efficient. Made sure that I didn\'t have any questions or concerns before I left. Just an FYI, they are out-of-network for most insurance companies.','2015-06-08 01:32:20.199000','2015-06-08 01:32:20.199000',5,'Jessica Coccaro','https://lh6.googleusercontent.com/-NffVWd6aNMs/AAAAAAAAAAI/AAAAAAAAAAA/UzOdAH6eCcQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5954),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rq9hHVL2M8jYLkcr5GQwMwabsBj2rS3Xqb3oiDrB7-oOhsUOTjqhD4DGHTxLS0Xys_LuEMYYaRZrWwfJyROk-I_YZfgQ','Very Awesome Place!\nThey welcome you and help you right away. \nYou are walked to a room right away. \nThey offered you a warm blanket while you wait. My son (5 year old ) feels very comfortable coming here. Love it.\nThank you for your kindness','2020-02-22 00:21:53.261000','2020-02-22 00:21:53.261000',5,'kelly merino','https://lh3.googleusercontent.com/-OMvCvV5udxw/AAAAAAAAAAI/AAAAAAAAAAA/C4YH_Xe-YIw/c-rp-mo-br100/photo.jpg','8918455867446117794',14809),('AIe9_BGlY-BaOO_aND3JZqxJBS1RqAF2Lc_GMONr3xh3pICmtJmifV1jKBW3F64EdfvJCEXxDm9Uhtu5Fu3gCV_b-SntAu80_Wi-0YcLX4KHp1VITqXa2zo','The receptionist, nurse, and Dr. Morrical treated me with great care and informed me of my ailment. No complaints A+.','2019-11-01 12:57:00.416000','2019-11-01 12:57:00.416000',5,'Sarah Brecher','https://lh6.googleusercontent.com/-wWU7U-yx-zI/AAAAAAAAAAI/AAAAAAAAAAA/UAMNFHQ-DSg/c-rp-mo-br100/photo.jpg','16590124370714063921',3112),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQC9SfyjDwYbjzR0DJQkTT2WfZ7bvv0JtbxFU7Pijg5xonI46CSf5MZSO4Itz3wuURGLdjMHqU52hkVTF6nV977SSV1c','Jessica.s was a really nice lady to me she made the time there very great. I would go again','2020-07-20 12:51:05.565000','2020-07-20 12:51:05.565000',5,'Malik Stevenson','https://lh5.googleusercontent.com/-2EDx6hx7TLM/AAAAAAAAAAI/AAAAAAAAAAA/Jk-_c1yXfKM/c-rp-mo-br100/photo.jpg','14748677429039074158',21680),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rqd7_b_UkIYJDKpOc0JZeuf6H3SghsUin6jhMC5kJ5Hutf1Uw3Frvm9O073btCdX4nMo8VQrUFeR84cZA2nB0BtGqugI','My visit was very pleasant. Nurse Vivienne was so sweet & professional. Dr. Miller was very informative and make me feel very comfortable. I’d definitely recommend anyone to come here for treatment.','2020-01-13 19:58:04.179000','2020-01-13 19:58:04.179000',5,'Pawel Lindsey','https://lh4.googleusercontent.com/-V7glYCndz4U/AAAAAAAAAAI/AAAAAAAAAAA/fVHt-IOKC8A/c-rp-mo-br100/photo.jpg','14567670160750071148',9699),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQE-WW79If8C4MfBBps4cFL6wq2VXBGxqZ13BoTMXNh-ezeKei4qHvQ9fU9N6vu6ByIwMnDr-1UmKA3kk8moc2kalNtU','Sita was very friendly and got us back to a room before we could even finish filling out paperwork. Our nurse, Kim, and the X-ray tech, David, were both very kind and attentive. Dr. Werzanski was very thorough and listened to exactly what was going on. They were busy that evening but no one acted like we were not important and took our concerns very seriously. Overall, if I had to be sick, I don’t think I could’ve asked for a better experience.','2019-06-28 16:15:00.812000','2019-06-28 16:15:00.812000',5,'Ashlee Hill','https://lh4.googleusercontent.com/-QUGhj33rxd4/AAAAAAAAAAI/AAAAAAAAAAA/rhfU_ZRASkc/c-rp-mo-br100/photo.jpg','13486358490203335051',915),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQet9cbopUSH1yH0MJDVU9QOVL4GsweNbfExn3AQ6xcosqzM_u6aF-9lFcsuv_SmX1X3AP0wk_41atd3fP4ihlmpNxA0',NULL,'2019-02-26 01:55:24.131000','2019-02-26 01:55:24.131000',5,'Marien Lara','https://lh3.googleusercontent.com/-pJSFEyW6Meg/AAAAAAAAAAI/AAAAAAAAAAA/LFl5_MKca6o/c-rp-mo-br100/photo.jpg','16590124370714063921',3519),('AIe9_BGlY-BaOO_aND3JZqxJBS1RqEu8JWGqIPJkDRmpLc07ajRLmkr4zZjhT-EZEHUVQ7U8_w3MvuUUImBwX9Lwj8KnBdPo6tq14lXUYtYVce__H5z7v3o','I had a great Experience, quick service, kind employees that really seamed to care. I highly recommend.','2020-02-24 20:25:31.297000','2020-02-24 20:25:31.297000',5,'Paul Kolanek','https://lh6.googleusercontent.com/-LnZyCtnVsmI/AAAAAAAAAAI/AAAAAAAAAAA/sjMKeSxvfEs/c-rp-mo-br100/photo.jpg','16389487648212004696',13766),('AIe9_BGlY-BaOO_aND3JZqxJBS1RqfmzeHy-gFCW5M0ucj4bLRvv9gGCC0RljTq0fl6CwYlaBHlywKoKWiLJ1HT5gSxj3LA1xPgbo2CDtrmls3gA7hgD66w','This was the absolute best emergency room experience I have ever had. I went in on Sunday night about 9 pm after I fell and hurt my wrist. The receptionist was kind and efficient. I was called back after waiting only a few minutes. Everything went very quickly--seeing a doctor, having xrays, getting the results, and receiving treatment. Every person I interacted with was polite, very kind and very helpful. Every single person acted like they actually cared about me! They even called me the next day to make sure I was ok. I cannot recommend Signature highly enough. I will definitely return should the need arise.','2019-10-23 20:46:28.541000','2019-10-23 20:46:28.541000',5,'Dianne Martin','https://lh5.googleusercontent.com/-DxCQ4okOJCQ/AAAAAAAAAAI/AAAAAAAAAAA/lIgmVm2krac/c-rp-mo-br100/photo.jpg','6521947413723274945',8111),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQfXRf0l5sXm4Jz-6ZKpGNOXigd5LyHUG1PxgQGjJ4p-jv2nqzeTeT00u3cj_-6VJcfHHK76vEoAvmT4zdN3760tPGl8',NULL,'2019-12-13 02:01:39.883000','2019-12-13 02:01:39.883000',5,'Thuy Le','https://lh4.googleusercontent.com/-DELTzXovGig/AAAAAAAAAAI/AAAAAAAAAAA/e-P-8XcNPK0/c-rp-mo-br100/photo.jpg','16389487648212004696',2548),('AIe9_BGlY-BaOO_aND3JZqxJBS1RqjX88rqoIivroDPc4hbEIUPzrfmZdUXFTfF0I6Kwa2IHJgFELt9QrKFcHca16hi-hGmM0ztAUmdw8APlKFsdF78-rVc','Kim and Dr Huerta took amazing care of me when i injured my back!! David with radiology and Sita with registration did an amazing job making sure my visit went as smooth as possible!!! Highly recommend this facility!!','2019-07-01 04:04:13.003000','2019-07-01 04:04:13.003000',5,'Andrew Clifton','https://lh5.googleusercontent.com/-J7yXoJKiUuI/AAAAAAAAAAI/AAAAAAAAAAA/fMwMaMDr4pc/c-rp-mo-br100/photo.jpg','13486358490203335051',905),('AIe9_BGlY-BaOO_aND3JZqxJBS1RqPO9P-WMIbBOwDZ7WnGHqaSuwIlcD1QgyosoZY4Jpddl8if9uM_s_lTx3QjXADtzZL-qSCww4BGLRwqBss9yQ1_HnXo','I am from Alabama and while on a visit to the area for a wedding, I became very ill. This is the best care I have ever received outside of Jackson Hospital in Montgomery, Alabama. The entire staff was excellent in all areas in their field. Thank you all very much! Highly recommend','2020-01-02 16:53:57.542000','2020-01-02 16:53:57.542000',5,'Kenneth Horne','https://lh4.googleusercontent.com/-fBwf2LrUtzk/AAAAAAAAAAI/AAAAAAAAAAA/HATGKMV7a0Q/c-rp-mo-br100/photo.jpg','8679688254631342173',8662),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQSr2mcs4spGEdaUXR2aoJwV66yELUB7dWiAfFiUlz3qGeVDlp31oO2x4BVzGCRf0M6xWedWpARib3ZurLLfB9GOwE7A','The staff here was wonderful and very helpful I would recommend this E.R. To anyone in need. Ask for Alvean, Marcus, Or Patricia when you visit they are all great staff members.','2020-02-06 19:16:52.029000','2020-02-06 19:16:52.029000',5,'Brandon Daye','https://lh3.googleusercontent.com/-cTKIE5CAhYc/AAAAAAAAAAI/AAAAAAAAAAA/ttayQfJTd8o/c-rp-mo-br100/photo.jpg','16389487648212004696',22619),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQWoGgJ22I3-_VTojytBAMFC9hH9Qdmx09MgVjNUCPCO4eZUq9JpikSoS0cE27_4b6yIgPMHgHTHBHrhAbnriLz6DwuI','It was a good experience at Signature Care EC. The staff was warm and they were quick.','2020-07-13 23:55:27.404000','2020-07-13 23:55:27.404000',5,'Pam LeNormand','https://lh3.googleusercontent.com/a-/AOh14Gg8mzPndXYNzpBLvZfz69r4UfQIHo-DVOCiIxqe7Q=c0x00000000-cc-rp','17898197009688164559',22097),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQxGe0pKSRKXBIyexSqCvBaQ_HtUVY-czyWseJKq8JoBtT0_nHDh88bghcb-itDD4AK3VXRVb4r2MKIzUWnopjwms4Do','I was very impressed with the staff at signature care from reception all the way to the nursing and physicians staff, it has been the most outstanding care I recieved in a long time.\nThank you fir the excellent care','2019-12-04 17:06:52.014000','2019-12-04 17:06:52.014000',5,'David','https://lh4.googleusercontent.com/-uq3aYgt1ZY0/AAAAAAAAAAI/AAAAAAAAAAA/B4vOuijfUt4/c-rp-mo-br100/photo.jpg','13486358490203335051',708),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQXt_Ay9S0AC-f8zGxz1_8wx3W6sVZQNWvthyrNt82AiUfKGlzSsZ1ulajvSw2-AoRDLbRjNY6H1HRI3_3vK3hrumiHk','The doctor was very good and nurse too. Adil was very professional as well.','2016-06-12 05:14:58.017000','2016-06-12 05:14:58.017000',5,'todd enique','https://lh4.googleusercontent.com/-2gvgWypu3dY/AAAAAAAAAAI/AAAAAAAAAAA/IG7e8byIwDE/c-rp-mo-br100/photo.jpg','3511292162159714121',7986),('AIe9_BGlY-BaOO_aND3JZqxJBS1RQZ5e4eWr3VbS82yo8LLsnGqvBN3JqAvW_KQv2lUpaRJVMcZQLYM2zfbHxv80CPnQ4o3bsgA81QuNaOvWwJtQH70D_KI',NULL,'2020-03-11 23:19:29.126000','2020-03-11 23:19:29.126000',5,'Monica Williams','https://lh5.googleusercontent.com/-c4__aIvOqdk/AAAAAAAAAAI/AAAAAAAAAAA/ovVdjl9J_bY/c-rp-mo-br100/photo.jpg','16389487648212004696',13709),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rr1CfXKDfDRnLWDfZhVh9Qwll2p20SPY5uFIZtiwTkSppiSQHHbACZWrDHtNa8naLQeJHk872UFFej8YEIeIlyJFN-_c','I am insured by BlueCross BlueShield of Texas and this ER is within my network so I came in for the first time. It took me about 8 minutes to complete the paperwork and maybe another 3 minutes to be called in upon completion so I am pleased with the quick check in that I was provided. I had to stay overnight but the service I received was exceptional and the facility is very clean and well equipped. The staff that attended to my needs were Dr. Singla, Sarrah, Fahme, Carl, and Genesis. Definitely can recommend this ER.','2020-08-15 15:59:04.637000','2020-08-15 15:59:04.637000',5,'Jesse Yaxon','https://lh5.googleusercontent.com/-fQ2pIJId9Nk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucll0cjl_FzEN6pWT6i8m0wqI5o_TA/c0x00000000-cc-rp/photo.jpg','12541597562633926366',23002),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rr31735DjZBahuz-OLnuNmnk1r5f2CwfITI1sr54CXZGJklXs7Zvw-th-SP93d1KmBzGovC0tq84UWzFUcpNMv7bnTmA',NULL,'2019-07-02 15:04:07.281000','2019-07-02 15:04:07.281000',5,'Elizabeth Abbott','https://lh4.googleusercontent.com/-tc-4MDCuck0/AAAAAAAAAAI/AAAAAAAAAAA/z1BG6b3PJ0g/c-rp-mo-br100/photo.jpg','13486358490203335051',902),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rr4DmCIVjfq1oY409Mkaj1ZWhnitKfxB9f6KLKYO4zSCTphPf8J2-Y-QXALGk29s7qLIqnoJjj8mqSCudRdCQF9SedcE',NULL,'2018-02-18 17:51:51.520000','2018-02-18 17:51:51.520000',5,'Terri Watts','https://lh5.googleusercontent.com/-Edv92PS-jKc/AAAAAAAAAAI/AAAAAAAAAAA/dq4llXx5Dcc/c-rp-mo-br100/photo.jpg','16590124370714063921',3859),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rr9pqNUU2msTbQkORBthzxyK-E6jrFtVJVjE-HeUnfARdVP94oGImpDvW7RJJsCGM7vhIJ-p1f8oeIhHunmvwCOUulhQ','Everyone here was very nice . The wait time was fast it was in and out service.','2020-07-19 21:59:59.133000','2020-07-19 21:59:59.133000',5,'zania williams','https://lh4.googleusercontent.com/-Zv18gNIjNic/AAAAAAAAAAI/AAAAAAAAAAA/3pWwPFhFzt4/c-rp-mo-br100/photo.jpg','14748677429039074158',21687),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrB7dHz5gcKX_Si8fVODbX8iw0fRUVYgYSjcZ12SfU9p6MgIwU_Kx2Ibqw6zLdgRcw2fTrq56sFv13kJIFuoVRtygbyM','Great experience. Nurses where attentive, and Doctor had great bedside manner. \nSandra Archie','2019-12-31 03:22:09.642000','2019-12-31 03:22:09.642000',5,'Sandra Denise','https://lh4.googleusercontent.com/-cnQoaqIdnTM/AAAAAAAAAAI/AAAAAAAAAAA/Dfww3w-4x4A/c-rp-mo-br100/photo.jpg','17394740196501090048',14061),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrBzOAglAqYZDTgLeGGaV5RA0mc3Z97-XDj3_PwJyS7gVDtKHqUScC8nZzrhySz55WIteCtRoKf-rVtKrI9pjF8UZ-8Y','My brother, Derek Toliver received great care. Staff at the Signature Care ER Copperfield location, Dr Mauldin, Nurse Sarah, and registration station, Ms Tanishia W are first class!','2019-11-01 03:53:33.994000','2019-11-01 03:53:33.994000',5,'Antonio D Toliver','https://lh4.googleusercontent.com/-bF_I9j96Ie8/AAAAAAAAAAI/AAAAAAAAAAA/QDfXgfCTL8s/c-rp-mo-br100/photo.jpg','17898197009688164559',5469),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrdbWBy7cg8HWwvnUKWNDT42HufHH1ZZVMuISW0qZb0xQ0y5jcX9klK5BEXlzUfQLYzF3zK0ZYQcjxCygDeStAaN46hQ','I expected a good experience but I got much more than that. The staff was so incredibly nice and made me feel so welcome and got me the help I needed. Lizzie and Dr. Miller were such an amazing to get me the care I needed and I definitely recommend Signature Care.','2019-07-08 04:27:00.711000','2019-07-08 04:27:00.711000',5,'Skye Green','https://lh6.googleusercontent.com/-bBPCboj4v0M/AAAAAAAAAAI/AAAAAAAAAAA/LpPn1dum1Y0/c-rp-mo-br100/photo.jpg','14567670160750071148',1278),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrdT249Hv-FaOdUnXSAG3ZZ5mZkJrDcsI35Aaed87o6lmFkN5lAvdIW2eo7VztOMaIPHJnfMUndvbAbEwwdE-7HJJgS0','Fast service and they do whatever they can to help you feel better and figure out what\'s going on staff is very friendly as well','2019-06-17 17:15:32.117000','2019-06-17 17:15:32.117000',5,'La Tonya Green','https://lh6.googleusercontent.com/-MiTagPnkF8I/AAAAAAAAAAI/AAAAAAAAAAA/PGfKut4qR9U/c-rp-mo-br100/photo.jpg','14567670160750071148',1298),('AIe9_BGlY-BaOO_aND3JZqxJBS1RRErHvCf5h6KirIeaHw1Hh95gOf1yNRVET-iK8fpRSn0aSk7N98dAlBDk9xPyclCv1UHB3qfWS4DbPmLwNt-lQ1GAWmo','Great experience! I was seen quickly and all the staff were pleasant, helpful, and professional.','2019-07-24 13:01:24.344000','2019-07-24 13:01:24.344000',5,'J Ross','https://lh5.googleusercontent.com/-cUgVtveEZLo/AAAAAAAAAAI/AAAAAAAAAAA/3HFZ4sYqp70/c-rp-mo-br100/photo.jpg','12541597562633926366',479),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rrf_VFAfVsHlLlkNMk-cDnsK91t7t0gDIdW6h6qCZYLb0U8LEq04xxEj0gTkR3jG9v0aAyg3ouqrg7ppf4eZ4lbPld6s','Such a good and quick experience thanks to Laura, Leslie, Jessica and Olivia! Very pleased','2019-01-10 19:38:50.685000','2019-01-10 19:38:50.685000',5,'Ian Sumrall','https://lh3.googleusercontent.com/-T4yiGhv1yac/AAAAAAAAAAI/AAAAAAAAAAA/vHXo8lDJaKY/c-rp-mo-br100/photo.jpg','3511292162159714121',7489),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrF_X-v6LOMyriwYw4jALNDt84FBabkyXoNibxXeij5TZKR4mw5JSfeLYrztIkyxrayTpOtVts4AYMqtZJ-NNYMYHYHA','Staff was very friendly and service was fast. Doctors genuinely care about you here!','2020-08-10 07:06:34.819000','2020-08-10 07:06:34.819000',5,'Sandy Pachicano','https://lh3.googleusercontent.com/-TTno73ppoaY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmlj-RbB7EuGhfnETE1QZeLmq5hNA/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22502),('AIe9_BGlY-BaOO_aND3JZqxJBS1RRF7KrTpFy0Zhd-V7V4dj4ble6CP4HFQp4EdWoX6vnRguzxMSOnB9vfybPbI5RM4lR9PFw0ygchgueol2SXznCwLzfpg','the receptionist was so kind and welcoming! Great experience I loved the doctors and had a great night','2020-02-09 18:40:43.218000','2020-02-09 18:40:43.218000',5,'twyla onwenu','https://lh4.googleusercontent.com/-54y0Cdcd8Mw/AAAAAAAAAAI/AAAAAAAAAAA/CqkpyfHG_YQ/c-rp-mo-br100/photo.jpg','12541597562633926366',10102),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrG1iDsJFl_Grjnb6_gC1pL0zlPmjdpL6iqM_R7_p76s11qGV0XmNSAkHhWKw-MkKB45xH3sBcbyz0_bC_DvNex691xM',NULL,'2020-02-29 02:06:08.304000','2020-02-28 07:09:00.382000',5,'Dakota Haines','https://lh5.googleusercontent.com/-fVJfPFqemSc/AAAAAAAAAAI/AAAAAAAAAAA/mROUZd-Jthk/c-rp-mo-br100/photo.jpg','16590124370714063921',11293),('AIe9_BGlY-BaOO_aND3JZqxJBS1RRG8nXZWx3uZXf9e3rvFYj8_m1y2H0NVZIKywYrCnH0eILRD-oU5ka5eqvnpmMoCXGCKRAzJyPw41sR8JqczQjI7KhxA','I’m athlete, and hurt my foot. \nI really recommend that hospital. Everybody so kind and really fast attending. The doctor very kind too.\nI appreciate it .','2020-02-25 19:21:11.453000','2020-02-25 19:21:11.453000',5,'Amanda Monteiro','https://lh4.googleusercontent.com/-XK3pEASsTnQ/AAAAAAAAAAI/AAAAAAAAAAA/EcXyBl4ogEI/c-rp-mo-br100/photo.jpg','8918455867446117794',15423),('AIe9_BGlY-BaOO_aND3JZqxJBS1RRJlEEtERpqO9mlDXrONBD_NzBAPHYmu82d7sE7SksivxykOjn4ivELxK5zbQIJakLSb550dcSy76EqCfSozuV2LxNgY','Excellence services not only this place but all over their network. They not only care patient but also patient\'s family members too.','2018-01-19 13:44:06.198000','2018-01-19 13:44:06.198000',5,'Khanh Tran','https://lh5.googleusercontent.com/-jBb0iO4BYc0/AAAAAAAAAAI/AAAAAAAAAAA/ksXNQ_2egvQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4897),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrvfFktUIHhNmjWFuXBz0Mfh8XmpadRx348UC2SNyAvDEN21Xzth0oKUMf9iHXM4AgaJWdrowpwAVfyqAD4dL_X-orZo','Had a accident with my child 3/16/18 remember it perfectly he needed staples. I mentioned to the doctor if we can do stitches and he gladly said yes explained that it might be a little more painful but I proceeded with my decision the nurses very kind happy answered my questions my child did not cry he did not feel uncomfortable. A scary moment for us turned into a I know where to go in any more incidents or emergency needs when i cant reach the doctor. No waiting no delays and great service.','2019-02-04 17:55:00.886000','2019-02-04 17:55:00.886000',5,'Maria Selby','https://lh6.googleusercontent.com/-s7qL5cdJdUQ/AAAAAAAAAAI/AAAAAAAAAAA/vtwjlKYUeN4/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4723),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrWMfetTpRz8AZn96Tedt2-o58oBKSmZX1GPg3SJ2Ne--iaTTubDv0j0zdMK--E8SKH-BTLtc8HXaQTRBmWRR2Ufjd8U','I was seen immediately. The staff was friendly, supportive, and listened to my concerns carefully. Neither the nurse nor the physician was distracted or fatigued. Front office staff was thorough and clear in explanations and options.','2018-05-12 20:59:30.531000','2018-05-12 20:59:30.531000',5,'Rebecca Robinson','https://lh4.googleusercontent.com/-Ohys6bLsk8c/AAAAAAAAAAI/AAAAAAAAAAA/Bqdf5vtXaI4/c-rp-mo-br100/photo.jpg','14567670160750071148',1624),('AIe9_BGlY-BaOO_aND3JZqxJBS1RryGp9FGd9qxKBNfgDHnIRN59e99gTYYgCKmzGtN-9r0kZHpRGC9OFYjuKEvtkHSBiOPcrxeXwU6XwN8n2Oqci3alhs8','M experience is always great everyone is so nice and caring I had Dr.Dang nurse Troy radiology Jessica and registration Lusia all nice people I would highly recommend this signature care 🤗','2019-09-16 09:03:57.564000','2019-09-16 09:03:57.564000',5,'Marchelle Burnett','https://lh5.googleusercontent.com/-H32bHhPAC-0/AAAAAAAAAAI/AAAAAAAAAAA/KL73b8q53Ro/c-rp-mo-br100/photo.jpg','16389487648212004696',2907),('AIe9_BGlY-BaOO_aND3JZqxJBS1RrZnJ00_EOtoVHiIczVqb_SthoqXhLvbgpxZMogQcEvvJADdKPcwZe61qirQDGwERui8iis9kIRkQ7kJH0t7Kye7NGks','I’ve been here twice in two weeks with my 15 year old, first for the flu and now strep. Katie, Townsend, Freddie and Dr. Elsbecker we fantastic!!!! Thanks for keeping my boys healthy!','2019-02-12 02:24:05.965000','2019-02-12 02:24:05.965000',5,'Eileen Beckmann','https://lh6.googleusercontent.com/-Q75v-1gi5YU/AAAAAAAAAAI/AAAAAAAAAAA/hQs6fSF-msw/c-rp-mo-br100/photo.jpg','16891069708558046635',4351),('AIe9_BGlY-BaOO_aND3JZqxJBS1RS2EsZQ6L_vqCzoqtGXHidwyB-n1adJOB4pqwyBzGejm4Wkfx4w8kYDSD_1tPbHDZqoTWoe_6hdtBt8ACXNpVsdyQduY','Great service from everyone here, Nurse Jacob and Dr. Vakey were extremely helpful and informative!','2019-04-02 15:31:30.199000','2019-04-02 15:31:30.199000',5,'nick hughes','https://lh5.googleusercontent.com/-Q_J3nX6PSnY/AAAAAAAAAAI/AAAAAAAAAAA/NBIbdV8wlzU/c-rp-mo-br100/photo.jpg','16590124370714063921',3465),('AIe9_BGlY-BaOO_aND3JZqxJBS1RS68v3HwEBqN0Kfs0YYK0MrysgUZQAANGBPCD4rNCDV18PTUlsKypP4zMmF6l5L2nsqi2bzEk7IXCfmqjdZgRVEp_hx0','I wanted to thank you for the kindness y\'all showed me during my short stay , please keep up the good work .','2018-06-16 20:33:08.781000','2018-06-16 20:33:08.781000',5,'Monica L','https://lh3.googleusercontent.com/--vbQwCvVn2Q/AAAAAAAAAAI/AAAAAAAAAAA/GIFmpFvRfbw/c-rp-mo-br100/photo.jpg','8918455867446117794',9264),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rs8FHjzEMjJspbRxJ3T5oC17I7eFRxHSVWCSsNhOmFslU9CqLZvTku24n2kFmYn1SxWWXzUA407Zr63i_ZEfM1xJ3vS0','Dr. Daniels, Maureen, Amy, Dion.... EXCELLENT STAFF. EXCELLENT SERVICE!! 2nd time at this location. Great both times!!!','2019-07-07 05:10:57.642000','2019-07-07 05:10:57.642000',5,'Jasmyne Tudor','https://lh5.googleusercontent.com/-jNh7jBdkrCA/AAAAAAAAAAI/AAAAAAAAAAA/6l6_NZYiY6U/c-rp-mo-br100/photo.jpg','17394740196501090048',4638),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSCyt2BGjoCj-1gSK-sjdlHgO5I32cYxNzEr_fINX0fC1Gauwpc5HOg1KCFEOdQurRuEfDgzjBWMALkiLxxlh8sK6AbE','Kristina was the best! Would definitely recommend. No wait and ALL staff were friendly and informative','2020-01-02 15:25:22.201000','2020-01-02 15:25:22.201000',5,'Derrick Abrams','https://lh6.googleusercontent.com/-ap35gf71Fl8/AAAAAAAAAAI/AAAAAAAAAAA/T6zl65BlgVM/c-rp-mo-br100/photo.jpg','12541597562633926366',266),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSd74ALwciO1nd6Bhl7wvzRnCRhX7e6vjFLbp_xGbvPBSyQAPqlEBl0e-NPWcph21XieOa_EAG3dC0yC_5nqfI9THc0U','Anthony RN was the best ever!!! I had the best experience ever. Dr. Baker was so sweet and nice, helped me have a fast and efficient visit! Everyone in the office was very friendly and helpful! Rebecca the tech was very nice and gentle when she swabbed my throat and nose!!','2018-12-12 04:22:02.048000','2018-12-12 04:22:02.048000',5,'Emma Phipps','https://lh5.googleusercontent.com/-CrarN-YWP50/AAAAAAAAAAI/AAAAAAAAAAA/23fs4JHNRUo/c-rp-mo-br100/photo.jpg','16590124370714063921',3611),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSelLZVMXM0ZN7ZTx0bK62Xh1kOB1PTpMg6GTEJFraN1jHmxxWhopcEabYKnfIAMNwYDjEp73OZPMd0vLz9PvLqqkrvY',NULL,'2020-01-21 16:19:28.449000','2020-01-21 16:19:28.449000',5,'Lara Fendley','https://lh3.googleusercontent.com/-0OXG84uH4PY/AAAAAAAAAAI/AAAAAAAAAAA/8ywRVvBjIBU/c-rp-mo-br100/photo.jpg','8626688543755174284',14625),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSHcZVpj38ctsKYdxzDBhbYnXgetnRrpP08BLn5l9lG7nTKt7Dy9A67bFnHrcaFhtuuteZ36VIRI9xuAsoUwuJDrDTf0','SignatureCare took care of both my wife and daughter when I had to unexpectedly bring them for their illnesses. The front desk staff Kim and Cecilia were both welcoming, nurse Nicole G. and tech Dustin were both quick and efficient, and Dr. Estevez was very thorough and made sure to spend time explaining everything.','2020-01-19 07:30:01.347000','2020-01-19 03:45:52.428000',5,'Joseph Balita','https://lh6.googleusercontent.com/-m6V2P011Myk/AAAAAAAAAAI/AAAAAAAAAAA/GOp-Rg49yvY/c-rp-mo-br100/photo.jpg','14567670160750071148',9910),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSiUjdi3sE-duyUnjxdj-bR1Qp0bCxhUrlH6yp6jT0nPaUO4QNhquVYqsaV22tJtD-zF-DXP_bQwd8A5ORYTWbqrAVwY','Very awesome and understanding staff. All needs were meet highly recommended these gals and guys! 🖤🖤🖤','2019-04-01 19:11:32.432000','2019-04-01 19:11:32.432000',5,'Kyla Nash','https://lh4.googleusercontent.com/-JG73JkriMD8/AAAAAAAAAAI/AAAAAAAAAAA/0d-lxUAKQDw/c-rp-mo-br100/photo.jpg','3272657195432704501',6982),('AIe9_BGlY-BaOO_aND3JZqxJBS1RsjSsmokau7f8vZP8AJSb0rNqUKKSe2mfaVHeezvkcvyt8NgvWCblpL4q22f4wE1UHaZRMYgcFDRYzLL2vEsU0HvlIqs','Had an appt at 7am and didn\'t get seen till 10am , how they averaged 4 stars is beyond me . If you didn\'t have COVID before you are probably going to get it waiting around so good luck','2020-06-22 14:02:58.415000','2020-06-22 14:02:58.415000',1,'Samuel Cruz','https://lh3.googleusercontent.com/-gRvRFOKW7Mk/AAAAAAAAAAI/AAAAAAAAAAA/Bhqj6tOhzS8/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',21144),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSNAWLHM5snuFOPsK68mg8x_S7ECwk4PJ3yJnqbz-_fXn2IJf8hh7diUlZAS5a8LrulgWs457OQ7pe6NqQhiC6quvN_c',NULL,'2020-06-20 20:12:45.112000','2020-06-20 20:12:45.112000',5,'J','https://lh3.googleusercontent.com/-357sOWqzXIo/AAAAAAAAAAI/AAAAAAAAAAA/8aM6Pfd1qSk/c-rp-mo-br100/photo.jpg','14567670160750071148',20938),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rso0CCe7lLMRFqWJTmhF7cGH2Z45TmlYsIyMXyGbVr3fBJhXORtxrhn2rN75abBknpE6vyJOswYwbWiuYAqbz8YUZDjg',NULL,'2016-05-22 18:04:31.990000','2016-05-22 18:04:31.990000',4,'Teresa Larios','https://lh5.googleusercontent.com/-zZ6Dp5g9RuQ/AAAAAAAAAAI/AAAAAAAAAAA/VzfTKtBywXo/c-rp-mo-br100/photo.jpg','17394740196501090048',5253),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSptMhZJUsjVcFP22hBjf1FkpdwgdB5y3Yd5BmSnasXWcoUZlMQtIB1jUIkWR1GBnyuGo9O07paTL86vhW3uolJ97ctY','There was zero wait time and Dr. Soli was sincere and very humble. The front desk was astounding and so helpful.','2017-07-13 13:50:01.491000','2017-07-13 13:50:01.491000',5,'Paul Tobias','https://lh4.googleusercontent.com/-Ov39ThZSlgg/AAAAAAAAAAI/AAAAAAAAAAA/FGwa7X73vms/c-rp-mo-br100/photo.jpg','14904078213800803294',2340),('AIe9_BGlY-BaOO_aND3JZqxJBS1RStEWibNCkzV5kZQmsfil_KhqGUi_gCQ2LFqaCdZRJToRBjSpD6uZKgqkhOb0rop_bVKVFiZcq_BLu4qnR4hIS0Qez34','Arrived submitted and in a room in less than 5 minutes ! Everyone was super understanding and knowledgeable. Really enjoy them taking care of all my questions and medical issues .','2019-08-26 13:52:30.140000','2019-08-26 13:52:30.140000',5,'Dyllon Barge','https://lh4.googleusercontent.com/-rZ-n5dpb_L0/AAAAAAAAAAI/AAAAAAAAAAA/dI-rUOPPOH4/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2099),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSUfTb4aqlYaAflzObEnIcWH1bhhz5YSCKQfeTuOGmwjD3jopXsmAlzCIiMuuvSRovAghKfW_K4oCLnz2jUer7FVTmFw','They took great care of me and were quick to get me in a room and start running test.','2018-12-30 19:28:08.739000','2018-12-30 19:28:08.739000',5,'Samantha Mills','https://lh5.googleusercontent.com/-kQiwpA7FvqY/AAAAAAAAAAI/AAAAAAAAAAA/z40rhmZPQs8/c-rp-mo-br100/photo.jpg','3272657195432704501',7078),('AIe9_BGlY-BaOO_aND3JZqxJBS1RSVWHAvcdmR0AjdRlZOFpjdBL0xQDvIREIQ6Idc9tGQAJuYkApsJE3ISv23qCjdS1qwhgcHQFRRi1Q6ks3dt5IZ6DGCA','Excellent from beginning to end loved Chantel dr.henderson Laura Elaine tanishia','2019-12-30 04:07:17.385000','2019-12-30 04:07:17.385000',5,'Shamilwa McGowan','https://lh4.googleusercontent.com/-rvfSpRdMYXw/AAAAAAAAAAI/AAAAAAAAAAA/s-JAV3Q1dTk/c-rp-mo-br100/photo.jpg','17898197009688164559',5318),('AIe9_BGlY-BaOO_aND3JZqxJBS1RsWkRvNW3GuLNukXIdUAyWxhD3DZwHEsz_TtsnZoohFQPLeZs9bjhbVhf-kKQH5Msw64tDi8bVbTsuXcGc3Jia-Zsc8g','Great to have a team that knows how to take care of people from medical to friendliness. Dr. Yost diagnosed my husband and the rest of the staff took care of everything else. Great JOB!','2019-08-04 19:49:41.191000','2019-08-04 19:49:41.191000',5,'Katherine Dean','https://lh4.googleusercontent.com/-7doHDsEOhZA/AAAAAAAAAAI/AAAAAAAAAAA/b7o2mdMUGG8/c-rp-mo-br100/photo.jpg','3272657195432704501',6920),('AIe9_BGlY-BaOO_aND3JZqxJBS1RT8eVU1gRtb-h_RTRCsRiZAISZ1LCCmOjI7f3XMGT_Lb0wXgIvr3B2C14v3APTqc88ljCNoJNqy2uj1dNrioFUWeQ1RI','Such a great experience here! In the midst of a lot of public health concerns they were prepared to protect patients and staff. All of the staff were pleasant and helpful, and really helped ease the anxiet about going to an ER. Very considerate to uninsured patients too! They were thorough and efficient and made sure I was safe to go home before discharging me. I would eagerly go here again in the even that I\'m sick!','2020-03-17 01:53:44.142000','2020-03-17 01:53:44.142000',5,'dallas wilburn','https://lh5.googleusercontent.com/-vDEGYOOwlKc/AAAAAAAAAAI/AAAAAAAAAAA/dpWAOVznhZw/c-rp-mo-br100/photo.jpg','14748677429039074158',20967),('AIe9_BGlY-BaOO_aND3JZqxJBS1RtDzbORPv1xjAs7wy8tidVJ_kIsPx9GYEGU9PoKy-0YPZBzLOQXAIqK16Zi_MzflK3rhGsVmSILD97lp1F0iGdDjchz0','RN: MOLLIE\nRAD: ERIC\nREG: TOBIE\nDR. YOST\n\nALL OF THEM WERE ABSOLOUTELY FANTASTIC AND HELPED IN A TIMELY MANNER ESP WITH AS BUSY AS THEY WERE','2020-01-15 06:34:14.269000','2020-01-15 06:34:14.269000',5,'Brown Family','https://lh4.googleusercontent.com/-qz4cC4EbQTY/AAAAAAAAAAI/AAAAAAAAAAA/PhByrfFLGV0/c-rp-mo-br100/photo.jpg','3272657195432704501',6822),('AIe9_BGlY-BaOO_aND3JZqxJBS1RTEHUIk_gDQ9sNsamIpH-BcGgwQhRZ05KJ4Fed8SlOtBsIX0NsQRKS3Au0dfOMHVnvPcmWpltGHgXJKZ8-QLdRpg3KGM','I came in at 10:08pm and was seen immediately and treated with great care. The staff, Stephanie in registration, Dr. Daniels, Nurses Rollie & Leslie, Radiology Tech Natalia, were all amazing and friendly. I hope I won\'t need their services again but if I do, I\'ll come here. Oh and if you\'re self pay they\'re very reasonable and they have payment plans. Thank you all very much you\'ve put my mind at ease. ❤️❤️❤️❤️❤️❤️❤️','2020-01-15 05:59:29.816000','2020-01-15 05:59:29.816000',5,'Nestas Home','https://lh5.googleusercontent.com/-EGgBnwjkR9M/AAAAAAAAAAI/AAAAAAAAAAA/5VPuVVZOA54/c-rp-mo-br100/photo.jpg','8679688254631342173',9834),('AIe9_BGlY-BaOO_aND3JZqxJBS1RtFcTWCX97WVYBz7UmtF_ZWu5QgLnKOVf0J_XeRnB2wEnGSUeOUyukh-Tg_kiRNy_yWinVOID9qj3H43BH3fCtmyBtYs','Jacob the nurse was really nice and caring, he cleaned my cat bite wound quickly and efficiently.','2017-09-08 20:01:12.607000','2017-09-08 20:01:12.607000',5,'Maddie Wiersig','https://lh3.googleusercontent.com/-7Pi6ASQWUfE/AAAAAAAAAAI/AAAAAAAAAAA/9Z1suY37PfE/c-rp-mo-br100/photo.jpg','16590124370714063921',3941),('AIe9_BGlY-BaOO_aND3JZqxJBS1RTfqsCc3QHRbZ9Fpu_U_xuGf5WAFSHmdONV_YD89pMCM8xmNDvuzqmCniBR5W19h6ECB89ufekWMKmAanuy6PFdwaWQU','GREAT EXPERIENCE! Everyone is so nice & great with kids! Billy did great on getting our IV done & making my son laugh! Robin came & checked on us several times & made sure we were taking care of! Courtney was awesome with both X-ray & CT!! & Dr. Simmons was very patient & great with explaining everything to us! We will be back!','2019-05-07 03:05:27.442000','2019-05-07 03:05:27.442000',5,'Shelbi Mcknight','https://lh5.googleusercontent.com/-Q_dwCsNEbRc/AAAAAAAAAAI/AAAAAAAAAAA/qEfTO8YanaE/c-rp-mo-br100/photo.jpg','8626688543755174284',8493),('AIe9_BGlY-BaOO_aND3JZqxJBS1RtHvjZ8qLH5pDB8q2DQDDcLhPMJNG0S3gqZPHDOA3pOMO72nqC5nGnmxUlm0OVCywsCE2727T7LNrI9BSlFAcuT7lAUs',NULL,'2018-01-03 03:23:25.650000','2018-01-03 03:23:25.650000',5,'tommy chin','https://lh4.googleusercontent.com/-VeRqgcQMW6w/AAAAAAAAAAI/AAAAAAAAAAA/BSL9AQ3qGSY/c-rp-mo-br100/photo.jpg','3511292162159714121',7742),('AIe9_BGlY-BaOO_aND3JZqxJBS1RtiHekAq3KBu_AflNM3XgI9IoJoHtKpXoK-JQ0j3qP68XRb6LijaU4_vQTg31LaAotQIGtps5IaIUbl7z820xUBc2WZo','We saw Dr. Rose and nurse Katie. They were very friendly and patient with my little one especially on a late Sunday night! Definitely recommend this emergency center.','2019-12-13 19:05:24.943000','2019-12-13 19:05:24.943000',5,'Karla Gage','https://lh3.googleusercontent.com/-cqT6Z4_UjnE/AAAAAAAAAAI/AAAAAAAAAAA/SAVsua5DfsU/c-rp-mo-br100/photo.jpg','16891069708558046635',4121),('AIe9_BGlY-BaOO_aND3JZqxJBS1RTKv0LmPH1Yfcy8PvBBxrFKZDm-7TqFSHpzGcWjCCh2gCGSaX-T-XOdXKfSpHhzOH7mliVXtR3-qJQdj7fUTMKtgrK8s','Excellent staff. Thanks Ashley burton and erica and nich.','2019-01-10 18:06:53.139000','2019-01-10 18:06:53.139000',5,'Pela Covington','https://lh4.googleusercontent.com/-3eJAwljc6YU/AAAAAAAAAAI/AAAAAAAAAAA/9Lkld5D8Jfs/c-rp-mo-br100/photo.jpg','8626688543755174284',8590),('AIe9_BGlY-BaOO_aND3JZqxJBS1RtkWwmTIVQy_jBAcCQ1IIRLwzjCS895dixZRfyoq8VdvYvrdREhCvjmVZ9z_iG1Dn5vJVI3qGsakBEa3tsSY7vVmARw4','Very fast service Arianna was very helpful','2018-03-05 21:20:02.671000','2018-03-05 21:20:02.671000',5,'NETT Coleman','https://lh3.googleusercontent.com/-SwEFyvN6oP0/AAAAAAAAAAI/AAAAAAAAAAA/KDUuANlsj-I/c-rp-mo-br100/photo.jpg','3511292162159714121',7720),('AIe9_BGlY-BaOO_aND3JZqxJBS1RtLJuLdrsnGdNrkhh0LWE5iwmDpfJ9Ay6VePBQrIhgmh0RwHTqGcV0Q_EQl7EIZcGkgkJBNgFMo4iqvTwYY6pSgXwL1U','Great service, have been here a couple times and never been disappointed. Great service from Dr. O\'Malley Dawn RN and Olivia the tech.','2019-12-21 14:48:31.531000','2019-12-21 14:48:31.531000',5,'Jenny Blackman','https://lh3.googleusercontent.com/-hHQQz0c-4ak/AAAAAAAAAAI/AAAAAAAAAAA/5FF82hQ4DIw/c-rp-mo-br100/photo.jpg','14904078213800803294',13652),('AIe9_BGlY-BaOO_aND3JZqxJBS1RtNaJgkfUTz2UZqbz43ccP-jHG2Jdj_MUE2HsVm7StKTNMRL2PqveVoAwV-zAL5-KYqfIQyvf6gNsrV2_c4Vho4CKQLs','WOW!!! I was in disbelief...finally an ER that is not dreadful! This experience was painless and is better than almost all doctor’s offices, let alone typical ERs or urgent care centers! No wait, amazing service all the way from Elizabeth at the front to Nurse Raj, to Dr Soli! The nurse even offered me a water bottle and a warm blanket! In and out in 20 minutes with my issue resolved!!!','2020-01-23 21:41:45.793000','2020-01-23 21:41:45.793000',5,'Pahleena Tropashko','https://lh3.googleusercontent.com/-nWY3mnglcvU/AAAAAAAAAAI/AAAAAAAAAAA/kXYmec7kpu4/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',14453),('AIe9_BGlY-BaOO_aND3JZqxJBS1RTOpfctLDf25O9hHEdTKPAkcQ-vXYrcYv4dcKPE3_fMohIKgwvJxvaBoiAd3dD0pKMjhWMBHxw-JH5bGpqoTD24U2nL0','My child was having an allergic reaction which could eventually lead to anaphylaxis without prompt care. We went to an urgent care center near this location hoping to receive competent care but the front office staff were indifferent to the gravity of the situation and they consulted with the Dr. who seemed to not want to \'deal\' with the issue either. My child needed steroids in order to resolve so not super complex. We left there and went to SignaureCare. They saw him immediately, quickly dealt with his issue and administered the meds to make sure he did not have a more severe reaction. They were amazing, efficient and caring. I would 100% recommend them even though fees may be higher than an urgent care center it was completely worth it. Great job and we are thankful for you!','2018-07-03 01:41:57.475000','2018-07-03 01:41:57.475000',5,'Laura Bennett','https://lh6.googleusercontent.com/-b4jF7N_S6Kc/AAAAAAAAAAI/AAAAAAAAAAA/qO3a9q4HKvM/c-rp-mo-br100/photo.jpg','16590124370714063921',3809),('AIe9_BGlY-BaOO_aND3JZqxJBS1RTotOBY1seM-v9Z7yPpdHFOcT4B4WiGylUaj9JaV_xLFCyu6Bi5Edn0m0VrEVi9TC2dGW4rAmqYR6laWGOcngauhE1d4','Brought our 7 year old daughter in after she had hit her head at school the previous day because she was still complaining of headaches. The staff at the er center were so nice and respectful they had her smiling as soon as we got there 😁','2019-02-09 23:50:04.127000','2019-02-09 23:50:04.127000',5,'Richard Barfoot','https://lh4.googleusercontent.com/-d5LPgBeVCDE/AAAAAAAAAAI/AAAAAAAAAAA/nw66P0oFFo8/c-rp-mo-br100/photo.jpg','3272657195432704501',7022),('AIe9_BGlY-BaOO_aND3JZqxJBS1RtrAHkatxgrgjAX-2gk-3676YuSU1Qrw2uwSjHAOMFRbglZ6Z91dp262mMf9AeC_3-u4T0PzS0zvSq2-0mFdRQBbFHSc','This was a great find while on a trip to a city where we didn\'t know where anything was. The staff was professional, personable, knowledgeable and hospitable. Amy, and Maureen were thorough and efficient. Dr. Daniels explained diagnosis and aftercare very succinctly and Dion the Radiologist made us welcome and comfortable. The building and treatment rooms were very clean. Highly recommended.','2019-07-07 02:33:08.300000','2019-07-07 02:33:08.300000',5,'Olive Cookie','https://lh4.googleusercontent.com/-vZ83LmXyOPQ/AAAAAAAAAAI/AAAAAAAAAAA/KeSmLNKZUP8/c-rp-mo-br100/photo.jpg','3511292162159714121',7270),('AIe9_BGlY-BaOO_aND3JZqxJBS1RTymxd2TFlC6JmSQPBmC-7fncs1s7CpzwijL3qCZC-wq3wJTy_kx-b8Rl5wzlwgzZMNOhPoOgOaniOcPeoSz_kXw1atw','very helpful and nice staff. I was able to get my testing done and quickly out of the building 🖤🖤','2020-08-19 00:18:10.976000','2020-08-19 00:18:10.976000',5,'ALEXANDRA DAILEY','https://lh3.googleusercontent.com/a-/AOh14GhUtg4aN5v_-SDsp-2hVq-50YrhhHTy_w4NlmjXJQ=c0x00000000-cc-rp','16891069708558046635',22995),('AIe9_BGlY-BaOO_aND3JZqxJBS1RU-XJYri-7Q5d5kO8gyXlGufNSSr1T13UB26POOE8PABUQ03D5Hh3_RYDBiczh3udS4wtT7L9ByBrIgONWk79ToiBfQo','Everyone here is super friendly. Kind and compassionate .I\'ve been to several hospitals over the years and have never been treated this quickly. Dr. Patel the RN Jani are very sweet and listen to every detail. This is a attentive wonderful place to come. I came here as a possible alternative to the normal emergency room I go to and was so happy to find that you could get quick service with people who know what they are doing. From the tech guy Brian to the registration with Jasmine it was all smooth sailing. I definitely will come back anytime I have a issue with my health that demands I see a doctor immediately from now on.\n\nHighly recommend.','2019-10-22 20:49:05.456000','2019-10-22 20:49:05.456000',5,'Ranae Black','https://lh3.googleusercontent.com/-KMJTf8dN_ow/AAAAAAAAAAI/AAAAAAAAAAA/l3j1W3Fl5aY/c-rp-mo-br100/photo.jpg','16389487648212004696',2795),('AIe9_BGlY-BaOO_aND3JZqxJBS1RU1DmnPJRicSMCzcqGwg_jniWspPEwVfQ1awG9XZwf_6biGWl_43MGR2gJ9mlESTXK56eW9ClxeiF7giqILUWLXbhhvE','My experience at this facility is always great I never have to wait and is seen right away. I will always make this hospital ER my first choice, Great staff too!','2019-10-07 22:38:27.021000','2019-10-07 22:38:27.021000',5,'Kelly Jackson','https://lh3.googleusercontent.com/-LZlk4MOjsno/AAAAAAAAAAI/AAAAAAAAAAA/4bkZa0_eccM/c-rp-mo-br100/photo.jpg','17394740196501090048',4588),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ru6W4wr5ztCAQWrUVD7ZXHmjXjBddS_dmyEewUn3be4_5bjwKs0hWAMThakdB0g8WQLkfmMb2uiD7ZIW_KLcGVbAv19s','great customer service by Dr. Patel Amy Josh Agnes','2019-05-07 01:37:52.845000','2019-05-07 01:37:52.845000',5,'Julio Sanchez','https://lh6.googleusercontent.com/-MCgADwbzofw/AAAAAAAAAAI/AAAAAAAAAAA/fHRZFdcGgpM/c-rp-mo-br100/photo.jpg','3511292162159714121',7336),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rue1Y7rncXcDRLCnriCpXPzgYvnbj8dDvX9BVdZy8VDIt7cRAovnMdXmBa5RKWyUsB7AaUCeY2w5i1oTXXUl0CnfOsfc','Everyone here is absolutely wonderful and made the experience incredibly relaxing. Highly skilled professionals here and customer service is top notch! Thank you Dr Thomas, nurse Lynn, Daniel B and the sweetest Tanishia holding down the front! I highly recommend this location to everyone!','2020-01-06 06:29:15.582000','2020-01-06 06:29:15.582000',5,'Kara Tomczyszyn','https://lh6.googleusercontent.com/-Z0JqTAKr9yg/AAAAAAAAAAI/AAAAAAAAAAA/siR4ieXQbYo/c-rp-mo-br100/photo.jpg','17898197009688164559',5307),('AIe9_BGlY-BaOO_aND3JZqxJBS1RuffFL0hEIxwG_D_u4EjJY3RCH8BZNoDdNyBIGCqISiPZ78wW-9oZDfVAS9oAcGeXNEJBv3QvxIVvKI079JTuzvJtfao','I walked in SignatureCare Montrose location on December 27, 2018 complaining of pain on my lower right quadrant and spotting. Front desk Kiera greeted me and gathered all of my information so that I could be seen by the doctors in the back. I was escorted to the back by a nurse that took my blood pressure and temperature. (Dr. Amanda N.) came in to get some insight on what was going on. She told me that she would need some urine analysis, blood analysis, and an ultrasound would be ordered to figure out what what going on. They told me I was pregnant and I had ovarian cysts on my ovaries. My HCG level was 317. I was instructed to follow up with them or an OB/GYN in 48 hours to make sure my HCG levels doubled. I returned December 30, 2018 still in pain with heavier bleeding than the first visit. The doctor on staff (Dr. Ofer F.) thought I was experiencing a miscarriage but wanted to repeat the same methods from the first visit (urine analysis, blood analysis, and ultrasound). The Ultrasound technician came in stating she had been at work all day and she was ready to go home, she was coughing, and seemed very uninterested being there. The doctor informed me that my HCG level had dropped to 203 so they believed I was threatening miscarriage. They discharged me and told me to follow up with my OB/GYN again. On 01/07/2019 I had my first visit with my OB/GYN at Complete Women’s Health Center. They were more compassionate, helpful, and worked hard to figure out the REAL issue(Dr. McIntosh). I was in so much pain that my doctor ordered me to be transferred to the ER at the Women’s Hospital of Texas in a wheelchair. They did ONE ultrasound and figured out a misdiagnosis that SignatureCare provided. I was experiencing an Ectopic Pregnancy grown to 5cm in my right Fallopian tube. I had emergency laparoscopic surgery done 30 minutes after my ultrasound. I currently only have one Fallopian tube and my chances for another pregnancy is lowered. SignatureCare is the worst so please do not waste your time or money going there. They only care about getting paid by your insurance they really don’t care about finding the real issue of your visit. One of the doctors called me last week questioning me about a survey that I completed before leaving on December 30, 2018. They deserved the negative survey plus more in my eyes. PLEASE STAY FAR AWAY FROM THIS PLACE. I don’t want you to experience the same pain I have.','2019-01-17 02:13:23.705000','2019-01-17 02:13:23.705000',1,'Kayla Moore','https://lh3.googleusercontent.com/-8XJIt8fVtbs/AAAAAAAAAAI/AAAAAAAAAAA/ToWIxkq7oNw/c-rp-mo-br100/photo.jpg','3511292162159714121',7468),('AIe9_BGlY-BaOO_aND3JZqxJBS1RUGFodMMigyZdbJoORFY48fn8JVpMPUFYUpVbMNlDqRwene0seKSwI_c3r8LbfcCFLpOrGV9xfw8E0gy0vLq6dmxtFiw','Very friendly and Made sure I was comfortable while I waited. Also the wait was not long at all','2017-03-12 16:00:47.659000','2017-03-12 16:00:47.659000',5,'Brittany Moss','https://lh3.googleusercontent.com/-AsI6MoWrSRw/AAAAAAAAAAI/AAAAAAAAAAA/6uhY7R0nFQg/c-rp-mo-br100/photo.jpg','3511292162159714121',7861),('AIe9_BGlY-BaOO_aND3JZqxJBS1RUNaAOAMWmR6MjQOnkWDJM-3bRcTeJDLNkK5o1W9PJ59paOwkDGtsa1Ug_EsJtMBq0S39kENQ93WzPbIpULJpD1N1h8I','Very friendly staff! Staff helped me immediately after check in. I would definitely recommend them to anyone needing emergency medical attention. Definitely beats going to the hospital!','2017-04-26 00:53:43.001000','2017-04-26 00:53:43.001000',5,'Lala C','https://lh4.googleusercontent.com/-xXPmvbWjJbs/AAAAAAAAAAI/AAAAAAAAAAA/YbavgZ7WxXk/c-rp-mo-br100/photo.jpg','17394740196501090048',5071),('AIe9_BGlY-BaOO_aND3JZqxJBS1RuoBSweNRrsUedybdY5W3sH_4LMBiK7IJFP2pEZ4_kb-6Zxw1OJQyCoQOSoaIlfwN8Z6VB91FoQe-HtqZydmyZPaiTQA',NULL,'2019-08-06 19:59:27.021000','2019-08-06 19:59:27.021000',5,'Amyl Chaudhry','https://lh3.googleusercontent.com/-FITsXlUdXas/AAAAAAAAAAI/AAAAAAAAAAA/qQxcneIBrRA/c-rp-mo-br100/photo.jpg','12541597562633926366',462),('AIe9_BGlY-BaOO_aND3JZqxJBS1RURj5KH0ZTXHxhsfprZLKcTpZm9PfH8KqZ_dDsvtCPzYtCxlkPe-B-TCxGSu-yameejd-WX2lIPXWyyTd0Dn92jKqeZ8','The staff made the entire process quick and easy. Doctor Straface was efficient and kind. I would recommend going to Signature Care for Covid testing to anyone.','2020-07-06 01:03:24.152000','2020-07-06 01:03:24.152000',5,'Claire Cauley','https://lh5.googleusercontent.com/-xx-vhSgbl28/AAAAAAAAAAI/AAAAAAAAAAA/Oj488cY0RoI/c-rp-mo-br100/photo.jpg','14748677429039074158',21321),('AIe9_BGlY-BaOO_aND3JZqxJBS1RUvGsFCuDfh3Pmw5fTm8TSQ_uKPgTTGEc2HHVafdbch_VdpT_CCUbdLTgC5tqCNyfsd9Yi38Q_7TFJkSQKH2UgTdXmfg',NULL,'2019-03-22 02:51:24.716000','2019-03-22 02:51:24.716000',5,'Caroline Burchfiel','https://lh3.googleusercontent.com/-H_DD3w7qgYk/AAAAAAAAAAI/AAAAAAAAAAA/CAwmEezUTpI/c-rp-mo-br100/photo.jpg','16590124370714063921',3492),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ruw-tDPs9rrQ-DXwhR89vQgrjHQ-KaeG0Z-XMP6w15mpITMsNQ91PmVZYmBzuab8xqQsOlihX5tDdyDJYvsiS9yXXCgc','Amazing team. Made my son feel so good and comfortable. Thank you Dr. Patel and the team','2020-01-25 18:43:53.493000','2020-01-25 18:43:53.493000',5,'Judith Powell','https://lh5.googleusercontent.com/-rBpzB1Yu1Yo/AAAAAAAAAAI/AAAAAAAAAAA/Y1Tl7w7zvUI/c-rp-mo-br100/photo.jpg','12541597562633926366',10094),('AIe9_BGlY-BaOO_aND3JZqxJBS1RUXd477pYrkz0q9aQXaLVFAxYGAfLtBm03GeUoFh1iUQYo0DiKyibxS21n0UL7MtoqGQXIPjoD0awzH4OkiXeUIp-wdc','Everyone, from Registration, “Tanisha W.”, to both the ER Techs, “Rebecca W.” and “Heather G.”, to the Nurse, “Shelley D.”, and the doctor “Dr. J. Cavazos”, were absolutely wonderful. They were all very kind, welcoming, thorough and very caring. I couldn’t have asked for better people to assist me. They truly are all about their patients and getting you taken care of while providing outstanding customer service!','2019-04-01 03:32:43.343000','2019-04-01 03:32:43.343000',5,'heaven hazel','https://lh6.googleusercontent.com/-96wDgMVXKyc/AAAAAAAAAAI/AAAAAAAAAAA/XoOjCCC2AKQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5788),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ruz-0yODKMe9jZjTYAn0ya7q9S-xXYuddhFCZBCf8RRRT7-4CopLPQUm5c2gjQhss-EG6SAOojTKQ0z7w0EAWm0t7MjA','Kendra was super awesome and helpful!','2019-11-07 17:03:06.567000','2019-11-07 17:03:06.567000',5,'Giuliana Slaughter','https://lh3.googleusercontent.com/-UMVS0Re51gA/AAAAAAAAAAI/AAAAAAAAAAA/9-UTjwklSew/c-rp-mo-br100/photo.jpg','16590124370714063921',3098),('AIe9_BGlY-BaOO_aND3JZqxJBS1RV7DMj7diTDmEw6zIygCPbEyWhaexEMakLdji4NgOXKG6-o5Q_wsHjgyI7qNQx3_bDrHU-SZEP8sms9Etp1xTa_it3f8','Dr. O\'Malley and his staff was great,Alvean A,Shazia U,Olivia P,patricia where all great help','2019-12-01 19:23:01.788000','2019-12-01 19:23:01.788000',5,'Raul Galindo','https://lh3.googleusercontent.com/-XFpfSDBJ3Uo/AAAAAAAAAAI/AAAAAAAAAAA/kvmp-jKZlAk/c-rp-mo-br100/photo.jpg','16389487648212004696',2595),('AIe9_BGlY-BaOO_aND3JZqxJBS1RVhIlVQHvZZfJIRtnAQVjrb_VSLUCG0pmnwEDzTxRtcinUJowfWz4nVu8KKVfRB6tNfkFGstymhrGbuRBkXcxCaozOSo','Came in at 11:30pm on 1/5 and was treated for dehydration. Ended up sick again on 1/9, and refused to go anywhere else but Signature Care. The entire staff is more than helpful and patient. Olivia had to swab me and give me shots. By far the easiest to work with. Love this place!','2019-01-09 19:18:10.688000','2019-01-09 19:18:10.688000',5,'Brittny Ray','https://lh6.googleusercontent.com/-U3C0f7IFrJI/AAAAAAAAAAI/AAAAAAAAAAA/iBvi1Zj4hzE/c-rp-mo-br100/photo.jpg','3511292162159714121',7502),('AIe9_BGlY-BaOO_aND3JZqxJBS1RVI4qPWljMTgoaYbwUnY1vxPtFVtzHSBeTgJWDNULxZ8WKQ3DduvJeHlocjflzOCMIRNi--a6UTgG9HIZEdiZ3jVjapQ','Fast and professional! Would highly recommend. Thanks Dr. Chowdhury!','2020-07-24 02:44:34.688000','2020-07-24 02:44:34.688000',5,'Jessica Manning','https://lh6.googleusercontent.com/-4_1lJBQoJ3k/AAAAAAAAAAI/AAAAAAAAAAA/NI5wuoO8apc/c-rp-mo-br100/photo.jpg','14748677429039074158',22570),('AIe9_BGlY-BaOO_aND3JZqxJBS1RvLRCj-Nz-cazdVHH-kmo_IIw6DUpgitQKagqiToETPk3uO_tC7vjyshNktEhnPaDMjrxUSUMT0Z6LNnsMqMwfntTRM0','Great fast covid testing site!!!','2020-07-25 22:05:11.565000','2020-07-25 22:05:11.565000',5,'Gertrudis Reyes','https://lh4.googleusercontent.com/-THsXccuvUPI/AAAAAAAAAAI/AAAAAAAAAPM/AMZuucmA0pW31uyP7WA3fshQ7q_MD--1hw/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21867),('AIe9_BGlY-BaOO_aND3JZqxJBS1RvlsuMLCGcISZhTr6XEUXCCcZ3sAy8rxN4QJhpHAsPbVaxMyDL9SlDSJC62WDtQpWcLor7JHfhG92ycyi0kiIqKP-uHo','An amazing experience with an extremely knowledgeable and caring staff. I am from out of town. I would highly recommend Signature Care.','2019-04-05 16:24:55.021000','2019-04-05 16:24:55.021000',5,'Clayton Streator','https://lh4.googleusercontent.com/-8B60v6kLlD0/AAAAAAAAAAI/AAAAAAAAAAA/-CDJe1DT8LA/c-rp-mo-br100/photo.jpg','2694018788013845459',6172),('AIe9_BGlY-BaOO_aND3JZqxJBS1RvNXJ_k5IEySbBwmRpqwPCON3fP2TW16kR7f8OOBSIioomyXa9fU-nSvoGQeKcp7EGPngj1WLecmW1mVwrFdMmMkTsXE','This facility was very clean. I was taken to the back almost immediately. The staff was very friendly and welcoming. The Doctor was very knowledgable and professional. Thanks Jani, Tricia, Brian, and Jocelyn for making my visit a pleasant one. You all ROCK!','2019-10-30 15:43:04.796000','2019-10-30 15:43:04.796000',5,'Mo\'Nae Jones','https://lh3.googleusercontent.com/-c1C3zWMRd3k/AAAAAAAAAAI/AAAAAAAAAAA/UFS19cRXRb8/c-rp-mo-br100/photo.jpg','16389487648212004696',2753),('AIe9_BGlY-BaOO_aND3JZqxJBS1RVpJsB1ZTMaP_nXAjOPEDwK9HlirMB7OUd_uvGEy6NNs_gSQ5fAqlrR0aRRNgVFlQbMZMnlkffYdP0fUU-z0bZ_m3niU','(Translated by Google) Excellent thanks Alvean and Patricia\nBlessings\n\n(Original)\nExelente gracias Alvean y Patricia \nBendiciones','2020-01-17 18:06:02.825000','2020-01-17 18:06:02.825000',5,'Graciela Gutiérrez','https://lh6.googleusercontent.com/-n1GgDlCcUUM/AAAAAAAAAAI/AAAAAAAAAAA/lsdkVCVx4fI/c-rp-mo-br100/photo.jpg','16389487648212004696',22634),('AIe9_BGlY-BaOO_aND3JZqxJBS1RVQ_fnqNAjeG7jE04gR4APk7o7JEMd10Q7JWAJ7GU280JNGP6H1nnRMoELV1y-h9DWJC60XGyaJj0tmRFiTQOHWKDahI','Went here recently to get tested for strep. They were amazingly fast and efficient. All the staff were incredibly warm and welcoming too.. Dr Lingan got me diagnosed and treated quickly. My nurse Ashli W was fast with my medicine and discharge. Amanda welcomed me and got everything rollinh. And ER tevhd Chelsey and Andrew got all my tests done timely.','2020-03-17 03:42:20.439000','2020-03-17 03:42:20.439000',5,'Geoff Grubb','https://lh5.googleusercontent.com/-2xPFyNZpnrE/AAAAAAAAAAI/AAAAAAAAAAA/TXAVxsPYqVA/c-rp-mo-br100/photo.jpg','16891069708558046635',21047),('AIe9_BGlY-BaOO_aND3JZqxJBS1RvRnh8BcnNSt0E2MdfIXvfEPXu_hJVa8gmTKVx5M1Q0TG3BskhE297O9paenGZu7_nuhiOIXZXyIupIG4cJgKky6YvVc','Today was my first time visiting this facility and everyone here was AWESOME! From the moment I walked in Ashley made me feel right at home! It was a very fast registration! Dr. Thomas was super friendly as well took me to my room gave me two warm blankets and got me nice and comfortable! My nurse Dawn came in and it’s like I’ve been knowing her forever EVERYONE here is AWESOME! If you have an emergency or any medical needs please visit Cooperfield location!!!!!','2018-12-30 18:41:15.654000','2018-12-30 18:41:15.654000',5,'Delanie Eaglin','https://lh5.googleusercontent.com/-9W8gZOSkhZs/AAAAAAAAAAI/AAAAAAAAAAA/-YqiRKdH-ug/c-rp-mo-br100/photo.jpg','17898197009688164559',5901),('AIe9_BGlY-BaOO_aND3JZqxJBS1RVvSLmPGKu1v9aIDxiSZPahSrQJwVu112IP0HpoYz_yW_OYNzlEqd18L7ResBtw4WRkWtOzrsle510IhLjWnFzY0qwYc','I haven\'t been to an emergency room in almost 20 years but they made it a pleasant one despite the circumstances. Everyone was knowledgeable and understanding. They will definitely be our choice for future emergencies.','2019-02-20 09:09:22.331000','2019-02-20 09:09:22.331000',5,'golden child212','https://lh4.googleusercontent.com/-jihQI29SUK0/AAAAAAAAAAI/AAAAAAAAAAA/HYgY90huQz0/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',7006),('AIe9_BGlY-BaOO_aND3JZqxJBS1RVYVll8UKqIwhB2mGDA_bvA_zjqHWGo383GgLBlmOHbJSA_hrWz2MgwPoACP7hmy9Rdu814g4Y2xAT4p77kKM2QLo5eA','They are amazing doing what they can to make me feel better and find out what\'s going on','2020-07-24 22:50:43.158000','2020-07-24 22:50:43.158000',5,'Misty Davon','https://lh6.googleusercontent.com/-We430xUPNhI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclrxuikh9j_e80kNkcTZck-mAbapA/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22115),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rw4qnFCReEzoI-uQpdj2ZOj7BfU_CaEBwcLLb4V_8hZNiijDGIViJWxbR6s8LZZkD2gLFWE6pVJq9gb3CWvXMYROFk7E','This place is awesome! Great experience and beautiful interior. We walked in and were called back right away. They are fast and very caring. I love that they have snacks and drinks in the waiting area. Everyone greeted us with a smile. The nurse Brandon was patient with all of my sons questions. The doctor Singla gave us good advice. If we ever need a 24 hr place to see a doctor again we will definitely come back here.','2020-02-06 03:29:00.014000','2020-02-06 03:29:00.014000',5,'Angela Hider','https://lh3.googleusercontent.com/-OcFpKDLF5mY/AAAAAAAAAAI/AAAAAAAAAAA/NUbqM3yodTo/c-rp-mo-br100/photo.jpg','14567670160750071148',13554),('AIe9_BGlY-BaOO_aND3JZqxJBS1RWafrTgyiaE97J_EYdShKdZ6c9pYNwT5TkkIiNMEsFvAp7jVsNFIbfPP7h8n6pmsohP5zlgvi6hfXt2ieucBgKEHyAL8','Great Staff!! Thanks Ryan for comforting my son. He got his first X-ray & he was super excited to see his inside of his body. ❤️❤️😇 The whole staff was phenomenal! God bless!','2018-01-11 00:29:20.040000','2018-01-11 00:29:20.040000',5,'Olivia Munoz','https://lh3.googleusercontent.com/-bZkOVu8hep0/AAAAAAAAAAI/AAAAAAAAAAA/S2iziQdpY3I/c-rp-mo-br100/photo.jpg','14904078213800803294',2293),('AIe9_BGlY-BaOO_aND3JZqxJBS1RWDf-5rolIUGxClfVv_0OhCkSQ21kAMmMi2mO8HzdacG1E0DAsfZGRA-TrZL0v5g9gFM3sHw1vAnPHBhqoRjG_X3zoQE','I had a good experience, everyone super friendly and welcoming. And i got a starbucks giftcard!!! Special thanks to RN Laura and physician dr. Singla, they were really helpful. :)','2019-01-10 19:43:12.282000','2019-01-10 19:43:12.282000',5,'Ziggy Starbux','https://lh3.googleusercontent.com/-4ZRIsOPKsAM/AAAAAAAAAAI/AAAAAAAAAAA/07shdoAy7l8/c-rp-mo-br100/photo.jpg','3511292162159714121',7488),('AIe9_BGlY-BaOO_aND3JZqxJBS1RwKf4hK7aRLCAT_NkhFuZ6MQjHDT-nJ0_7s31nGlS_xwMlFRF5asD5FqtPIOrzkv8C1_j1bLRiPUbLDBFyUgEbIezp1c',NULL,'2020-08-08 02:11:26.045000','2020-08-08 02:11:26.045000',5,'Ana Blanco','https://lh4.googleusercontent.com/-9EjCYA7ENsg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnWJz6FhpzfPDqtOi5j2JVogExQSg/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21911),('AIe9_BGlY-BaOO_aND3JZqxJBS1RwLEcxANMbXRJg2nTEfrZVITj1bwAt_4QsaPGF0s9qVCWKM0CNtT20DUE_LyKurTmX6TpjyfAxutLq0E6Q8vwnK5tRt4','Amy the receptionist was friendly & very quickly and the nurses and staff so sweet!','2019-03-09 00:36:52.310000','2019-03-09 00:36:52.310000',5,'Mehmet Gürgün','https://lh4.googleusercontent.com/-hHIBsXIW6j4/AAAAAAAAAAI/AAAAAAAAAAA/PPy9QQggRP0/c-rp-mo-br100/photo.jpg','8918455867446117794',9169),('AIe9_BGlY-BaOO_aND3JZqxJBS1RwOoDbQLFkfdW2aV_1GTFGjesbUMUaCymHokKtxxySu7pbIGHMMvYgSD80-SgF_8z40d5PSKFY-LbPCaa9Ld3E3LRA6o','This place was great! Wonderful service, friendly staff, and they helped me in a very fast manner!','2017-04-23 02:49:30.838000','2017-04-23 02:49:30.838000',5,'Rebecca Murdock','https://lh6.googleusercontent.com/-64pNnU7KtOU/AAAAAAAAAAI/AAAAAAAAAAA/0k1rV6kqjH0/c-rp-mo-br100/photo.jpg','16590124370714063921',4003),('AIe9_BGlY-BaOO_aND3JZqxJBS1RWosUYJ77faRBK_u3KXXwhJP7VBPeB0HibONnL-VB8Dc7bl1ZewfkJnXphwe3nnwZcz215huNL_CFJ9fmu1AUHVf5n1I','I brought an employee here when he cut his thumb down to the bone. Jeff & Dr. Yusuf were very helpful. The front desk staff, Leslie and Dee, got his information and got him seen very quickly. After they treated his injury they got him a Spanish translator and made sure he understood everything about his treatment and further care. They have a clean and modern facility and provided excellent care.','2018-08-11 19:01:04.619000','2018-08-11 19:01:04.619000',5,'J Cherian','https://lh5.googleusercontent.com/-VfHycOEXdYk/AAAAAAAAAAI/AAAAAAAAAAA/x4jmObeEaEY/c-rp-mo-br100/photo.jpg','3511292162159714121',7630),('AIe9_BGlY-BaOO_aND3JZqxJBS1RWOtn6Vh-UORQXN8TRtRePzKkQrz_9bi_pLOP8nv7IUmVKTP9YTO-d7G4MWSwZIMIcZp3vv13w6vITURky0o4fK35xF0',NULL,'2019-03-06 20:56:08.544000','2019-03-06 20:56:08.544000',5,'Larry Williams','https://lh6.googleusercontent.com/-kCokOStWRlw/AAAAAAAAAAI/AAAAAAAAAAA/SOSDrDLFSAs/c-rp-mo-br100/photo.jpg','17898197009688164559',5819),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rwr-weTCs6Yw3YFIYtDEoKkrc1rZQt7l-3By79Eb-G_ALz8oAntG16j53WeFA2mOzgxFmnqVV4BkjFIbu-S64SxSzz0Y','Dr. Boester and his team were fantastic. I went in with food poisoning while pregnant, and the staff made me feel comfortable and helped calm me down. They did everything to get me well, and I walked out feeling better. I’ve never had such a positive experience at an emergency room/urgent care facility.','2019-01-01 22:19:40.838000','2019-01-01 22:19:40.838000',5,'stephanie gonzalez','https://lh6.googleusercontent.com/-TGOk5gtLf00/AAAAAAAAAAI/AAAAAAAAAAA/Yg0vxVWlFnQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1437),('AIe9_BGlY-BaOO_aND3JZqxJBS1RwzxWeWkaePZ4seo2phsrVWKthStk7RRWCo8diUywt-Sf-v1z8erO5dyu34YKhksWvjyKFFL4vNrrkPXZiRvtUBdtAno','The only doctors office I will ever rate 5 stars.\n\nDR. DE WAAL CRAIG M.D. \nNurse: Ramirez,Christina Rochelle \nRadiology Tech: Saucedo,Linda \nFront Desk: Garcia,Stephanie \n\nThe entire staff went above and beyond.','2018-01-16 10:28:18.596000','2018-01-16 10:28:18.596000',5,'Travis Williams','https://lh4.googleusercontent.com/-G22EGXRb3aM/AAAAAAAAAAI/AAAAAAAAAAA/9CFwZmjq1vM/c-rp-mo-br100/photo.jpg','16891069708558046635',4524),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rx29w3gtGK-yuDzLp6uaWGc64shJKyUdo2z5uO_eqcRDnthQrISQlNRP-KuyE_fsmARZ14N8UGVtQuLhje98WAdTpIPY','Took my 7 year old after trying to go to another ER right before. Unfortunately they didn\'t have pediatrics. So I stumbled upon signaturecare. From the moment my daughter and I walked in we were greeted and treated with the best care. I highly recommend this place. Everyone from the staff made my daughter feel so welcome and comfortable given the circumstances of her not feeling well. Deff my go to from now on!','2018-01-22 13:35:59.293000','2018-01-22 13:35:59.293000',5,'Andrea Badillo','https://lh3.googleusercontent.com/-zHwWaerpHWQ/AAAAAAAAAAI/AAAAAAAAAAA/hkqSFGZEePg/c-rp-mo-br100/photo.jpg','14567670160750071148',1676),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rx5_B-FnrY1wXB2Eekqg-um_6eMVRqv8Wv6Gxc9YwLhSGahoWgmZHwuc_cWukaKLmiq40CI9ah60vXLlE_bjjy0TPMBM','Absolutely fantastic care! Kim, Lucas, and Sherri were all amazing!','2019-07-23 17:36:12.721000','2019-07-23 17:36:12.721000',5,'Dillon Blizzard','https://lh5.googleusercontent.com/-QEv0Xtt_V4Y/AAAAAAAAAAI/AAAAAAAAAAA/m2rYOgmOc8M/c-rp-mo-br100/photo.jpg','3272657195432704501',6929),('AIe9_BGlY-BaOO_aND3JZqxJBS1RX5bEnbHmkeLtM2YASa55r9MaSUZAdowOSJDWewtF2Yhhf4qf6VpP3kJH1YxpkEDtyiMn30yKOHpmgefW3dUs6Ogb05g','From the staff Webber and Raven very hospitable and friendly. The Doctor and the nurse very caring..... Love this place...','2018-03-12 08:15:34.614000','2018-03-12 08:15:34.614000',5,'BO Sandle Jr','https://lh3.googleusercontent.com/-hT13rR9KCCw/AAAAAAAAAAI/AAAAAAAAAAA/cdP2ttpSBPc/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9280),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rx82QxjE0yEc4nFqpEIOj5afNNRxzBf3OIWH2eSQ8L2p3rKwFJC84MB9L_pVzjajLqijC1yC8qx-D5Ldse13AbMz2msM','Great place takes care of you right away!','2018-09-16 05:17:36.495000','2018-09-16 05:17:36.495000',5,'Franklin Morgan','https://lh5.googleusercontent.com/-wupsKOBn6SQ/AAAAAAAAAAI/AAAAAAAAAAA/TSxMi2aBGAE/c-rp-mo-br100/photo.jpg','16590124370714063921',3725),('AIe9_BGlY-BaOO_aND3JZqxJBS1RxAea25i_co38nUu9rb4c70K02Pn_Zu7OoOY00_ZUoLfJtnJ3nhRQ6r0HMrjIX4bZ98DWUV96GHV5FaWfpBpvFrMqZ1I','These people are awesome and super helpful! Kara, Kim, and Jeri always had a smile on their face and were always willing to help. I\'ll come here for any problem I have!','2018-04-16 19:22:32.683000','2018-04-16 19:22:32.683000',5,'jacob copeland','https://lh3.googleusercontent.com/-eVbVmvHvbDE/AAAAAAAAAAI/AAAAAAAAAAA/yXPVvzT-CFI/c-rp-mo-br100/photo.jpg','16590124370714063921',3837),('AIe9_BGlY-BaOO_aND3JZqxJBS1RxazMWm9v83nRb4bJbWZ3H9RODeAMwhXpBat9Yh_5eoIvwR8NK4X3q2SOvaeFJQWsMjzT6DrAsX9IeMhJB5Zhfy5E0WI','Rita and Brenda did an excellent job even though I wasn’t feeling well this location made me feel better in no time!!!!!','2019-07-05 23:45:06.376000','2019-07-05 23:45:06.376000',5,'Kingdom Biz','https://lh4.googleusercontent.com/-5MwNmwtPSzY/AAAAAAAAAAI/AAAAAAAAAAA/NN0IXF5eP2s/c-rp-mo-br100/photo.jpg','3511292162159714121',7274),('AIe9_BGlY-BaOO_aND3JZqxJBS1RXESLf4wR1wri7vDcp5qg29j0SsijWDepocN3981fjJxkyUezfZJzuoO2Zs_x_HvQtYv1tulYl6mwJ2pKW6gGivfrlPM','Very nice office and staff is real quick and friendly','2020-07-10 14:40:23.828000','2020-07-10 14:40:23.828000',5,'Magelina Lagunas','https://lh3.googleusercontent.com/a-/AOh14GjhKSIIIaT5-h3cxzOOiQzxrHcZZUq0eUKLI33PVg=c0x00000000-cc-rp','3511292162159714121',22171),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rxfk0_ji47opHrhhb3oVCsChmys3ttajeAN-_0UzYkcYHdCHtPAxnFFbDMQqflJs0eUsW36CKocQKz1o6Vn4POCaK6Vk','I had GREAT experience here. Dr. Henderson and Nurse Kristina were very friendly and explain the steps for me to get back feeling 100%. If you want a fast, quick and friendly ER process. I would suggest coming here.','2019-12-14 15:27:53.306000','2019-12-14 15:27:53.306000',5,'robert','https://lh5.googleusercontent.com/-SxOy8tfZjYc/AAAAAAAAAAI/AAAAAAAAAAA/t4aSeS9oRFg/c-rp-mo-br100/photo.jpg','12541597562633926366',346),('AIe9_BGlY-BaOO_aND3JZqxJBS1RxgyoQ0w8p0C_eBEG7ltZGZgq2uTJyPbujDAkRppsi8VdOxBlvo6HZcbae4jdJkGipfhk6EkG5kEJWpZi1__8lSSDS8Y','This place has excellent service and treatment better than other clinics has and also emphasis on what to do and what not to do and give me details on my injury.','2016-09-12 04:44:27.053000','2016-09-12 04:44:27.053000',5,'Mukesh Patel','https://lh4.googleusercontent.com/-6h4D0GnUCdw/AAAAAAAAAAI/AAAAAAAAAAA/VMWz-M7Mz2I/c-rp-mo-br100/photo.jpg','17394740196501090048',5203),('AIe9_BGlY-BaOO_aND3JZqxJBS1RxHRd2OAQqDdTqhNahJ9pqY-T6T4ZeyDK2qvvGSwf6967SkunnJjTvkXxK_6wDdPDgLe0yhj7odk7ZXia5H6xdqVCtJ0','My son and i went in at about 645 no rooms where open right away which i had no problem with. Ms. Nicole took us back for vitals and 5 mins after that we where in a room and seen and also discharged by 8:00pm. I ABSOLUTELY LOVE THIS PLACE!!! I RECOMMEND THIS PLACE TO EVERYONE! MY SON LAST NAME IS MILLER AND THEIR DR.MILLER IS SO COOL. HIM AND MY SON ALWAYS HAVE A GOOD TIME. AFTER I STARTED GOING HERE I DON\'T GO ANYWHERE ELSE!','2017-12-28 11:58:11.104000','2017-12-28 11:58:11.104000',5,'Trenise Dorron','https://lh4.googleusercontent.com/-QSO5jDg7CQA/AAAAAAAAAAI/AAAAAAAAAAA/24OkxzZXzPE/c-rp-mo-br100/photo.jpg','14567670160750071148',1702),('AIe9_BGlY-BaOO_aND3JZqxJBS1RxhWHw2E8yAjeQ9NpKBWfSom_9Cnqlr0Hu0jw5rFIt4f7a-S7q1pKI-sYQ4tciqBKSfqOaqKFBxTjEWq_twEEdoIg1eI','Very professional and fast service. I would definitely come back whenever I feel the need to be seen in a timely manner. Thank you Maya!','2020-03-11 13:16:27.503000','2020-03-11 13:16:27.503000',5,'The Hook Up','https://lh3.googleusercontent.com/-TuqlN93HZRw/AAAAAAAAAAI/AAAAAAAAAAA/KDHg7dWeiQE/c-rp-mo-br100/photo.jpg','12541597562633926366',20911),('AIe9_BGlY-BaOO_aND3JZqxJBS1RxJg1RYQDrgIHHx0tM__p_CkfJ2Us-UOsT3fbdTwfSw18eY-_nk8d7_mztLHZ8WSaRUIKUfiwtmpMKXc3yMCXyKetReQ','Very Caring! Most compassionate ER staff I have ever been around! Recommend to anyone!','2018-12-12 04:22:38.878000','2018-12-12 04:22:38.878000',5,'shaqueta henry','https://lh3.googleusercontent.com/-TTbOmAgC3K4/AAAAAAAAAAI/AAAAAAAAAAA/wk9OVS37NHw/c-rp-mo-br100/photo.jpg','3272657195432704501',7092),('AIe9_BGlY-BaOO_aND3JZqxJBS1RXPloKCP0PGYQ_61zQ05lRov4kCubAywzHY5GbCIT6Ojmhxa-pm_0o7MjwXPjCV4t-lNaq3OYqjYyBAq0maMPc1QQCko','Great staff. Friendly reception. Very through. Good location. Highly recommend.','2019-04-24 02:06:39.794000','2019-04-24 02:06:39.794000',5,'Brittany Smith','https://lh3.googleusercontent.com/-vyEOc0a8NGc/AAAAAAAAAAI/AAAAAAAAAAA/8ZjrZ4F8rQg/c-rp-mo-br100/photo.jpg','17898197009688164559',5762),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rxq9sR7962I2xbT8_jghssGND9hliUSw_NfCi46KETOtswAYfh3TbMlj56kwgaIyJ8S6KUGRIGZnL6jjf70TLABi1e-4','The service is fast and friendly. My dad always goes here and they take great care of him','2018-12-04 22:09:02.939000','2018-12-04 22:09:02.939000',5,'Kasey Speyrer','https://lh5.googleusercontent.com/-sibZBA5Ww74/AAAAAAAAAAI/AAAAAAAAAAA/I_0Qy3Ty1pg/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1451),('AIe9_BGlY-BaOO_aND3JZqxJBS1RXQx1buf_AZwTqIQm30J3hwUsDaz_QY-tFOPo3YuRzHafYJCEqQ9l64uHDQBvi_0ifbYqUq8j9HfPQC2Qxb7Y3oKfLHU','Awesome care! Very attentive!','2016-09-29 16:57:37.790000','2016-09-29 16:57:37.790000',4,'Donna Hodge','https://lh3.googleusercontent.com/-vZGcXjsVlw0/AAAAAAAAAAI/AAAAAAAAAAA/DBXNTakpxG0/c-rp-mo-br100/photo.jpg','17394740196501090048',5197),('AIe9_BGlY-BaOO_aND3JZqxJBS1RxuKhgWmZz6aVyqVTcjhj5-tceKq8BHzvn3dPQEVtJ_TAcd6b5d99uqW9f6t4AvVFUVg0jjGZeZqIn2s3-oANXNhQf40','Great place! Extremely helpful! Mercy was lovely!','2017-03-03 20:56:59.548000','2017-03-03 20:56:59.548000',5,'Carson Severson','https://lh6.googleusercontent.com/-68jtk9kSUjM/AAAAAAAAAAI/AAAAAAAAAAA/LSowrbkc1-o/c-rp-mo-br100/photo.jpg','3511292162159714121',7864),('AIe9_BGlY-BaOO_aND3JZqxJBS1RxukqBnmf1a7OF-MunIzSVwGRMpIMsU8jkHtwpJHHpvOW0dmbsa80gKAAC498rA4BuRE2_JAWJWe3opTQVtZ1kyST5GA','On 11/24/19 I received outstanding care at Signature.\nFrom the front desk up to and including the physician, everyone was professional, kind and caring. \n\nThanks','2019-11-25 23:29:28.840000','2019-11-25 23:29:28.840000',5,'Brian Robinson','https://lh5.googleusercontent.com/-_KECBpaNfJQ/AAAAAAAAAAI/AAAAAAAAAAA/y_JQAGIgnCk/c-rp-mo-br100/photo.jpg','16891069708558046635',4138),('AIe9_BGlY-BaOO_aND3JZqxJBS1Ry1Olk7C5GzHDtznuiffOfFVBZNRl_h_InSelnhRhIxm3HAy4jXaiQ-eYyQcTcYBnjqxnwepJw72eAtpkGilSlE26aNI','Amazing customer service, Keera at the front desk was helpful and answered all of my questions. I received Medicare in no time.','2018-11-04 05:42:52.167000','2018-11-04 05:42:52.167000',5,'Tyneika Williams','https://lh5.googleusercontent.com/-TXn4k1OmD5c/AAAAAAAAAAI/AAAAAAAAAAA/NzynSzzvOyU/c-rp-mo-br100/photo.jpg','16590124370714063921',3669),('AIe9_BGlY-BaOO_aND3JZqxJBS1RY7xOIZ-c49j3UYLebod7SHgZoKLSwpufWHDLTupPgnhz3bDgVnZPDSdXoM_xOyaTS_oB75nHk0pGpmX0j6Rjgvzp5v0','It was great experience. The nurse definitely put us a ease considering the circumstances.','2020-07-25 02:31:25.255000','2020-07-25 02:31:25.255000',5,'Maurice Williams','https://lh4.googleusercontent.com/-E_AqrHlslBk/AAAAAAAAAAI/AAAAAAAAAAA/9Rm9S0i5K0I/c-rp-mo-br100/photo.jpg','2077061009497551125',22844),('AIe9_BGlY-BaOO_aND3JZqxJBS1RybDgGEk2jbLWLpRpU4FHnadTzNRLa0haCQLsvnQJcodiyGLEH8R9xge-ZQHnLsCHIV95IzG7aoQYsNcEv4gh78O4vEM','My visit here was great the staff and my nurse Viv was were very attentive to all my needs!','2020-01-30 00:08:24.291000','2020-01-30 00:08:24.291000',5,'Chris Cru','https://lh4.googleusercontent.com/-BGyH0AlEqI0/AAAAAAAAAAI/AAAAAAAAAAA/y783AI4vdTI/c-rp-mo-br100/photo.jpg','14567670160750071148',13581),('AIe9_BGlY-BaOO_aND3JZqxJBS1RydhnCjrNB5wy8OanAPOHDtTpH4o31Garwe2o9jdNO7_p1g1xrvSHyzf3dlvuP8MrVczhq-9wXVJyIppumHNeThaKRHI','The staff was extremely kind and welcoming. I was 40 minutes late for my COVID19 testing due to going to the wrong location but they were very understand and still accommodated me. Unfortunately I had to take my children with me but the nurses made is feel safe and even gave my kiddos snacks! I\'d go here every time!','2020-07-08 21:50:58.722000','2020-07-08 21:50:58.722000',5,'madonna parker','https://lh3.googleusercontent.com/-a78Qp4FXJu4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclbGav-wmEKeN7fhnrQF2zYiYM_Kg/c0x00000000-cc-rp/photo.jpg','3511292162159714121',21469),('AIe9_BGlY-BaOO_aND3JZqxJBS1RyJiT7364BSeyFGYbLwBMBVEX0_liGNP15T1XeSeU9Y6J3CrcKFp4cz5HQXDp8TpP6JjLe7HxxiPDMC04YlMacL2Y6SQ','Excellent service. \nNurse Nicole G\nReg: Tatiana\nRad: Bryan D\nTech: Brandon Williams\nDr. Souman','2020-01-29 04:32:26.149000','2020-01-29 04:32:26.149000',5,'Justin Carr','https://lh4.googleusercontent.com/-myAgDei4rS0/AAAAAAAAAAI/AAAAAAAAAAA/K3WgdFcqVi0/c-rp-mo-br100/photo.jpg','14567670160750071148',13583),('AIe9_BGlY-BaOO_aND3JZqxJBS1RYKKt0T9iSItH5fZXyzw-ltopu9adBhqcTAGB01-9UVGnjV4cp2CiuWWwqrRmKEtXIJu1adA10gYW6w0QVz_jPDIEq5Y','Cody & jd where great for us made the visit quick and easy.','2020-08-03 15:03:33.951000','2020-08-03 15:03:33.951000',5,'Antonio Bahena','https://lh6.googleusercontent.com/-f3tjWoH9oTk/AAAAAAAAAAI/AAAAAAAAAAA/bLL5fSjNzsM/c-rp-mo-br100/photo.jpg','2077061009497551125',22762),('AIe9_BGlY-BaOO_aND3JZqxJBS1RYl2QDlNYqeVdTM8PBz9XNlMV7p0Xcni_1sa-MsmvY69BeXrM-MDUDYD4Z40Ex-I-Un5sC3Yk2SoR5ob2ZBNa3_WC5a0','Came in without insurance and couldn\'t breathe, they fixed me up, did all necessary tests, and sent me home with a fraction of the bill a hospital would have given me. Extremely courteous and knowledgeable staff, this is now the go-to ER for me and mine.','2019-01-13 16:21:18.834000','2019-01-13 16:21:18.834000',5,'Luke Herranen','https://lh3.googleusercontent.com/-sacXKelF6XM/AAAAAAAAAAI/AAAAAAAAAAA/i6UiMIuCWHI/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5886),('AIe9_BGlY-BaOO_aND3JZqxJBS1RYlJmDT8-_MeESkjFtVXagrhZkbd1YNbpPmz4OjkJwcFy2iVuHYzArmUrdN_FWsDzhAkfPNXXBJ4vCPRyu2SiQ3FOUwg','I hate doctors but they always make me feel comfortable here. They are very kind and compassionate and they take great care of you. Thank you for restoring my faith in doctors.','2020-03-13 01:48:03.023000','2020-03-13 01:48:03.023000',5,'Ty Gabriel','https://lh4.googleusercontent.com/--8yvTC-V3tY/AAAAAAAAAAI/AAAAAAAAAAA/ipMiGHM0rIQ/c-rp-mo-br100/photo.jpg','8918455867446117794',21235),('AIe9_BGlY-BaOO_aND3JZqxJBS1RyMmHjHpKRCo5UpDTv9i3QjYUjxMxniWjQm7lK8QLbwN7e6B44Dc6jtGr2a_i7AWRdPDYJD4zBWKYSWuPpFUbCeGKPas','Friendliest staff ever! I think they know how nervous we are, and Alyssa and Mercedes are so kind even though they’ve been working all day and night. They’re also super patient with kids...and adults that act like kids (thanks Shay). Lol!','2020-06-20 22:45:29.228000','2020-06-20 22:45:29.228000',5,'Nicole Marchand Golden','https://lh4.googleusercontent.com/-HHQYj6TRgZM/AAAAAAAAAAI/AAAAAAAAAAA/MskdQWKlxqU/c-rp-mo-br100/photo.jpg','8918455867446117794',21223),('AIe9_BGlY-BaOO_aND3JZqxJBS1RyO9wNiaZW6rXifAu8ZG_EURKSkeEXx8I8j6BIhy9gyHNZptRMA6h9AjFzMYdNTvikAtheqgvqMvWVR_1-QOAvJyFi4w','if you have to visit an ER, this is a great one. Have been here a few times and I’m always seen immediately, the staff is super friendly, and they are very attentive. Great care during and they even cal you days later to follow up and make sure you’re better. They definitely make the best of bad circumstances :)','2019-06-18 19:42:23.777000','2019-06-18 19:42:23.777000',5,'Courtney Claiborne','https://lh4.googleusercontent.com/-vAYpdn1Vay8/AAAAAAAAAAI/AAAAAAAAAAA/2fzPOItUL1o/c-rp-mo-br100/photo.jpg','14567670160750071148',1293),('AIe9_BGlY-BaOO_aND3JZqxJBS1RYRePtb2PdNfGQLzy_lSJIEp8adYEpwA5SipKBXToVeQ8dK32gZpu8d5SV_zID4yl3UlC7-86Db8nfIiakBnU0Q_ZKH0','My overall experience was really well. They treated me with care and concern while also checking on me and my mother while we were there. Nurse John and Dr.Hehman were a big help to my recovery. They were absolutely fantastic','2018-02-15 00:59:51.499000','2018-02-15 00:59:51.499000',5,'Kvxshh','https://lh3.googleusercontent.com/-TG_xIySey_s/AAAAAAAAAAI/AAAAAAAAAAA/xaeNNXyGLzU/c-rp-mo-br100/photo.jpg','8918455867446117794',9287),('AIe9_BGlY-BaOO_aND3JZqxJBS1RYrSMkSGd-PbDG7ilinmnxZUm7J7uaNeTivQNgLjtemqxLHFMgtmXtP49TK6vdBs4MazwjXrcU5mAUfTCvGrSHeE9uLU','Best experience by far I’ve ever had at a ER. They were extremely friendly, welcoming, and informative. I would definitely recommend anyone to this place','2019-02-03 06:50:56.988000','2019-02-03 06:50:56.988000',5,'Ryan Tolbert','https://lh4.googleusercontent.com/-WoboNFQWLq0/AAAAAAAAAAI/AAAAAAAAAAA/iY9fEaeuGAE/c-rp-mo-br100/photo.jpg','16891069708558046635',4358),('AIe9_BGlY-BaOO_aND3JZqxJBS1RyS2d9FFyJo9vwrQ0zRVf7ZHPfDeDPQJaBkTDZv8HKmq7zUSZjRUTQhy6UWLgGB3DLWlCE78tUFsOp5Jwr-55AqhefR4',NULL,'2019-12-09 03:04:37.169000','2019-12-09 03:04:37.169000',5,'Emmanuel Ibarra','https://lh6.googleusercontent.com/-WRP67sBzi1U/AAAAAAAAAAI/AAAAAAAAAAA/tk5KfTYIHrI/c-rp-mo-br100/photo.jpg','14567670160750071148',1181),('AIe9_BGlY-BaOO_aND3JZqxJBS1RYxdCWc6iUUVp9wxOJt5asJfMQFupqt7859pRqpaKEKDopy71Ypenkm1DBrk3p5B5zpxFtIjqqItUC4v6_4fmFpLYn10','Dr. Richard Nguyen\nNurse: Susan R\nRad Tech: Laura H.\nRegistration: Tanishia W. \nThis was my first visit here and I would definitely recommend this facility for your urgent/emergent needs. The staff was very friendly, caring and nice.','2020-02-05 04:56:43.918000','2020-02-05 04:56:43.918000',5,'Rhonda Levias','https://lh4.googleusercontent.com/-OVPA3OBYJJg/AAAAAAAAAAI/AAAAAAAAAAA/ra0DWmDq6Zw/c-rp-mo-br100/photo.jpg','17898197009688164559',10548),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rz1PGMovfwXsMAwlYhIeQx-AiDd_pQ5k7NI1jF2S75zkPbrERnibu4BIyCmyjmOFuzxWBqhzF-9txNaAUhrjgHT1uHUE','I was not prepared today to have an accident but it happened. So I found SignatureCare ER using maps app and came in to get my wound fixed up. The staff especially Dr. Sylvester and nurses Laura and Amy made me feel at home and got me fixed up very quickly and professionally. I felt at home.','2019-04-13 20:32:01.620000','2019-04-13 20:32:01.620000',5,'Rob Ramirez','https://lh6.googleusercontent.com/-hD1JEf8hzHI/AAAAAAAAAAI/AAAAAAAAAAA/m-zaiyaZ3Q4/c-rp-mo-br100/photo.jpg','3511292162159714121',7366),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rz2HaDa2PSN6o3GSa3OOxJkDDyVeeYM6OunF2lhvOq2r-aTV0HlBSYPOYBZfkH5z8W2j84Dig-khxG2SE4D0ZrYl8BYA','I was very impressed with all of the staff, especially Ashley from registration!They were very professional and highly trained. The facility was very clean, with modern technology. They got my husband in immediately. I highly recommend and will definitely return if ever needed. Thank you all for taking such great care of my husband!','2019-06-24 22:27:26.820000','2019-06-24 22:27:26.820000',5,'Jessica Garza','https://lh3.googleusercontent.com/-oTgzm0Sni0E/AAAAAAAAAAI/AAAAAAAAAAA/S5Aghq8zsAs/c-rp-mo-br100/photo.jpg','17898197009688164559',5677),('AIe9_BGlY-BaOO_aND3JZqxJBS1RZcsPHlYkDzF7iBujYI2uOHdH6x4izChlp5ccqr8ZFB4Bnwbfuh8lzcTZDGwreKe8i4NmNF61TV3gq6tU2NbqPQzvPLs','They treated me wonderfully! Shaunda at the front desk was such a pleasure to speak with. Dr. Jones, Linda, Chris and Christina each were so pleasant and took great care of me.','2020-01-12 20:09:43.062000','2020-01-12 20:09:43.062000',5,'Sherry','https://lh4.googleusercontent.com/-G6dE3jhE4_4/AAAAAAAAAAI/AAAAAAAAAAA/Nf9J-X-R43I/c-rp-mo-br100/photo.jpg','16891069708558046635',9553),('AIe9_BGlY-BaOO_aND3JZqxJBS1RzD1J1rMSkOwu-4QVRNfBGRqCSGTlVD_xea2dMxBmK0r5ScpOevOIpu78HZFTwuuY4Cv4cLiHF_wDVAdx69gpot74jTg','great experience, very courteous and professional, no wait time at all','2016-06-16 22:53:06.673000','2016-06-16 22:53:06.673000',5,'Kenneth Guyton','https://lh3.googleusercontent.com/-IM3DeWNdPls/AAAAAAAAAAI/AAAAAAAAAAA/u7LzV5QnDOg/c-rp-mo-br100/photo.jpg','17394740196501090048',5234),('AIe9_BGlY-BaOO_aND3JZqxJBS1Rzh3wyWC4IGBSxwi_r9SuTvzAhOkyIeLjPw5_7PubRUBSC4Q_XhSwaZ16ExNKCbKE2zvWy73CgH6v3SkuGcKEwIz0jw0','Great care team. Fast entry up front and very prompt and attentive caregivers Dr Huerta assessed my symptoms quickly and prescribed meds. Lisa and Julie took care of me very well and did everything they could to make sure I was ok and getting better. Thanks for a great experience. If need ER - I’ll come here again for sure','2019-10-14 00:28:33.964000','2019-10-14 00:28:33.964000',5,'Bill Brown','https://lh5.googleusercontent.com/-l2Y6RNkly6g/AAAAAAAAAAI/AAAAAAAAAAA/Czd7jLiFlc0/c-rp-mo-br100/photo.jpg','13486358490203335051',780),('AIe9_BGlY-BaOO_aND3JZqxJBS1RzMucGzYEsA8MllhQwljrulGxEStZqmTsNSwYBLOwo3-NG6UrISm1VUkQ-4vebGFPNHPVuWSLKJYaQidPRhHHnKkIcPE','Excellent Service as always.','2019-05-10 04:41:55.627000','2019-05-10 04:41:55.627000',5,'Phoenix Lily','https://lh3.googleusercontent.com/-6ZCpMXtrr20/AAAAAAAAAAI/AAAAAAAAAAA/NhWr8X-9wj4/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5745),('AIe9_BGlY-BaOO_aND3JZqxJBS1RzTN7cxbuGjJlBbt2ENHio4CtKzeoG328e1q-aS7pagfHcpgvadD14kqLd0M-TdK073HhVxdLSRez0AMAgyjHcuMygb4','From check in to check out I felt very good and respected. It was as if I was the only patient around. The staff is very professional, knowledgeable, and friendly. They take their time to explain everything. My heroines are Selina, Monica, and ouch ( how can I forget her name?), the athletic friendly lady that drew my blood, night shift. \nI hardly do this ( write reviews) but the whole team and the Doctors are just awesome!!!!','2018-11-18 16:06:10.726000','2018-11-18 16:06:10.726000',5,'Rex Amankwah','https://lh4.googleusercontent.com/-Z9iJiMuyIZA/AAAAAAAAAAI/AAAAAAAAAAA/RoF_bSZsIvE/c-rp-mo-br100/photo.jpg','17394740196501090048',4763),('AIe9_BGlY-BaOO_aND3JZqxJBS1RzwdI-4UqvG4MILRuHCVeQ-exHZexs83-adDlMjjFy5-hQuR0ee0Q8gK975ioz8BrYsI_R1nKX3gAfRGhkSycCvZy4Nw','Had an ear problem and they got me in fast, asked if there was anything extra I needed, helped relieve the stress of the situation, and got me the help I needed in a timely matter in a clean and orderly environment.','2020-03-13 03:39:12.078000','2020-03-13 03:39:12.078000',5,'Nicole Hallett','https://lh3.googleusercontent.com/-mV4Zt2Bi2OQ/AAAAAAAAAAI/AAAAAAAAAAA/5_ISkKBr0qo/c-rp-mo-br100/photo.jpg','2694018788013845459',21113),('AIe9_BGRQgPYLyzMT9U_xLCp0vBe6Nl0P-Dtc3U5GxvH2jOnfcD1gyLUaSckz7-kWLBt20zZ0JHK5k3IqhfMZpQVYxVyycbl-5eGRjb-bBz-LaH8SnsmdNM','Currently waiting on a scan and wanted to take the time to compliment Dr. Pham, Alvean A, Marcus B, Vanessa G, and Keith on making my experience a very calm and pleasant one. My needs were very quickly taken care of with practically no down time, everyone was kind and personable while thoroughly doing their job, and the facility is quite stunning. For a local ER I strongly recommend.','2019-11-19 16:08:01.197000','2019-11-19 16:08:01.197000',5,'Linda Harvey','https://lh5.googleusercontent.com/-E9Q0tLQQYic/AAAAAAAAAAI/AAAAAAAAAAA/40Y9Vsk1KnI/c-rp-mo-br100/photo.jpg','16389487648212004696',2663),('AIe9_BGRQgPYLyzMT9U_xLCp0vBeBDFCotGjt50hY1Drf3_ZuhC1fCPd-cD6ogsO28Vo-pQYQjO4lSNV4b8uLf2d7eNkcNWHuY1AhKpiDmlyWyRlUtwC7vc','Very thorough and really appreciate how easy the whole experience was. Very much appreciate Dr.Thomas and his team Leslie, Laura, Jacqueline and Olivia for they’re help.','2019-01-03 17:41:26.777000','2019-01-03 17:41:26.777000',5,'Sam Maling','https://lh4.googleusercontent.com/-N7bBdPddagQ/AAAAAAAAAAI/AAAAAAAAAAA/fJ7t024MMDQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7531),('AIe9_BGRQgPYLyzMT9U_xLCp0vBePFWTUwoV7JeBsKyEnkvvh0Slv-QGEtwhUcxQ9XziCtoqGW5Ld8YheAIevBpEh8RnviKqq7QpOG6ScwZp8HuF_mRMcjQ','Awesome visit! I have asthma and simply needed an inhaler and was able to get checked in, examined in less than thirty minutes \nDee at the front desk was so nice and helpful and the nurse and doctor were knowledgeable \nPro tip: download GOODRX app \nThank you guys','2019-11-05 22:32:42.856000','2019-11-05 22:32:42.856000',5,'Courtney Williams','https://lh6.googleusercontent.com/-5LdoKCnHb5g/AAAAAAAAAAI/AAAAAAAAAAA/RySsr-A1bFk/c-rp-mo-br100/photo.jpg','12541597562633926366',385),('AIe9_BGSdz_HPt7vo7IO8vrpa2D10L0mu6P94DFzmffA2cfA0FKmMD2iaLL-vY2TZDipWHYxPjmQQTjHGOmenQrrV_-VZvnBGA',NULL,'2020-06-15 03:39:31.488000','2020-06-15 03:39:31.488000',5,'Katherine Crenshaw','https://lh3.googleusercontent.com/a-/AOh14GjF3DbfxVqjJAmKSjBnEMbfeeBu27TWzWsNHDM=c0x00000000-cc-rp','16891069708558046635',22042),('AIe9_BGSdz_HPt7vo7IO8vrpa2D1lCz-sFMFIyMvqhxxwa6XAK3YRUYU9fHP-v183bXeLxF9vYNdh7X8v7AHvivNcSCUu8SAyQ','Good Customer service and the Medical Staff are nice and friendly !!!! Overall A-1','2019-10-02 13:40:54.420000','2019-10-02 13:40:54.420000',5,'george nealy','https://lh6.googleusercontent.com/-8Y9qBgROfp4/AAAAAAAAAAI/AAAAAAAAAAA/3MYEK3kxIKA/c-rp-mo-br100/photo.jpg','14567670160750071148',1225),('AIe9_BGSdz_HPt7vo7IO8vrpa2D1nTv9qIl_3KX6T0J50YcFQN1HGREbKppsEa4ZJmMZHJzIMPBqfUK-_QgzmUJPjT-ONaXaA_4taQVkTmH12po9dHOiLo0','Dr.Miller , Rn Meredith , Rn Sherri , Barbara , Rad Bryan , Tech Ricardo , Rec Jasmine , awesome service very nice people','2018-09-22 01:02:06.464000','2018-09-22 01:02:06.464000',5,'Venessa Gutierrez','https://lh6.googleusercontent.com/-d_R0_8C1wQg/AAAAAAAAAAI/AAAAAAAAAAA/stChpugifoU/c-rp-mo-br100/photo.jpg','14567670160750071148',1497),('AIe9_BGSdz_HPt7vo7IO8vrpa2D1V0SgKdIVODBkjO3Oxs3DcgRSf97uoq99bMAsWpL9xjxYT9wzqBuFr5vS8ZWasGre5RfTVA','I went to the South Austin location for stomach problems and was greeted with a comforting smile from Edward. :) Dr. Anders was excellent and suggested a better medication for my stomach. I am so thankful because I now feel a lot better. And a HUGE thank you to Shelli, Kesley, and Tina for taking care of me with their warm smiles and making me feel comfortable. Thanks again!','2019-04-30 12:50:53.278000','2019-04-30 12:50:53.278000',5,'Jennifer Chabarria','https://lh5.googleusercontent.com/-QQZ6or6_KUQ/AAAAAAAAAAI/AAAAAAAAAAA/cLw4ub9BsUA/c-rp-mo-br100/photo.jpg','16891069708558046635',4293),('AIe9_BGSdz_HPt7vo7IO8vrpa2D1ZBokTp2UQXeysllB6Gfujo7ed72vGY5WvV88mNYDPeGrPNq7mSYIQfqdyGv8CBG_OdEhCkzeVvHi2dSUG7jBZNrgaCM','Quick service, clean facility, no hassles','2018-02-02 16:42:09.908000','2018-02-02 16:42:09.908000',5,'Darin Campbell','https://lh3.googleusercontent.com/-M0tchXBnftU/AAAAAAAAAAI/AAAAAAAAAAA/RkcYihQLc-8/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4517),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD__ocRfM37YrX78MBmrdiZr0dYYYHsnHcJB3yCjCMoEQAACq4fyG7g1CawuZ8AZHpWdCXfVVfUqYMXGUnyYW77Fl4kl0','I have been to this place for the 5th time in 3 days trying to get a test and I keep getting told they’re out of test to come back at this time and I come back at that time at they are out again! I have waisted 3 days from getting there at 7am them telling me we only hand them out till 2pm and are out and come back at 5pm to them now saying no we hand them out for the whole day come back at 4am and I promise you’ll get seen same day. I can not go back to work till I get this test and These people have cost me 3 days of pay!','2020-06-18 21:23:28.233000','2020-06-18 21:23:28.233000',1,'Jobeth Dowell','https://lh5.googleusercontent.com/-a6JxQb-CHYc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckQtPJZhZEfjDKEt0H8QM6_QtA8lA/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21058),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_0FUYlxEmjFBgrSf-6qtUwGVBemnfo74d4mNhViIkuDSfuK1Fe2kQrWo20jvkqpeKGcWeINGGUIcCKiBKreXK0I-5S8',NULL,'2020-01-16 15:30:43.851000','2020-01-16 15:30:43.851000',5,'Rosalinda Cadena','https://lh5.googleusercontent.com/-_ayGNrJz5kg/AAAAAAAAAAI/AAAAAAAAAAA/B5xTI_10Kio/c-rp-mo-br100/photo.jpg','14904078213800803294',13632),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_cQENt2VILf1ivaFD_W1CzKyLyjp5uFxpnmg9pCK9B9JzosA475c0EV7ZwwneuGs-moCmxzcW8Qch27sJGRYjwhKHA0','Great service! \nMiss. Dee was great!','2020-03-16 19:47:47.376000','2020-03-16 19:47:47.376000',5,'Vanessa Palladina','https://lh3.googleusercontent.com/-6xpEMI4SaQ8/AAAAAAAAAAI/AAAAAAAAAAA/xMRUR8ZfzBs/c-rp-mo-br100/photo.jpg','3511292162159714121',21154),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_diXURWdrRI-lEYPht2TRWSEPMhRnch46PFI-Jkm9nRsmOoZrwr7MR9nHhFCbhnW3tZm_a3ybAz_D2Njb6AcD4yq0xQ','Dr. Vakey was kind and thorough! I got in and out very quickly and this was literally one of the best experiences I’ve had.','2019-08-22 16:43:14.963000','2019-08-22 16:43:14.963000',5,'Hannah Martin','https://lh4.googleusercontent.com/-K0oEq6B5HmI/AAAAAAAAAAI/AAAAAAAAAAA/AKlXI6ThYlY/c-rp-mo-br100/photo.jpg','16590124370714063921',3245),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_G0D8Uhvjb6EiSa5gh5Q54LLWCR8uhuR_MGBxmiw3b1Rm_6kcPsCWjRYfZgsjw-4xLSPTDzi4DmlZbmBZTR0KHRH21Y','They’re very welcoming and have amazing service. My nurse Tammy made me feel comfortable and offered me a warm blanket. Also had an X-ray done by the radiology technologist Fatima she’s very kind and funny.','2019-07-10 04:32:48.297000','2019-07-10 04:32:48.297000',5,'Crystal Vasquez','https://lh4.googleusercontent.com/-JYP7RiLKo7s/AAAAAAAAAAI/AAAAAAAAAAA/YIrTifM0f4c/c-rp-mo-br100/photo.jpg','17898197009688164559',5646),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_h15GP4pNRHdO0riYAQjcD9VClMGQhXEKILzFylcOGanRUnP2qSQVqtxFoHwzQklSTzUueU5ACtoWbDpE287pGcIoqA','This was my 1st time going to Signature Care and I’m truly glad I did. The staff was very knowledgeable and on point with taking care of not only my daughter but her mother, me, as well! Her nurse Kat was amazing and her emergency care doctor, Dr. De Waal, was awesome! The lab tech was also great as well! I felt relieved leaving this office! Great staff! Will truly be back for all my emergency needs!','2019-05-21 08:59:08.245000','2019-05-21 08:59:08.245000',5,'Keesha Davis','https://lh3.googleusercontent.com/-6ZwrHV7F4B8/AAAAAAAAAAI/AAAAAAAAAAA/P5I5m_CNVx0/c-rp-mo-br100/photo.jpg','2694018788013845459',6151),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_icF4Qr-prLhpUjhQqNb9dQb3nV-KhIzVDttZJz9Dsav3dtlZ7906c7npdfI2UBMo-Dkhx8CjZ8c9x-6YB92DCazFFQ','When you feel bad you want to find somewhere that will take care of you. I found that with the Staff of Signature Care ER Montrose. The staff was amazing Laura and Gina took great care of me. Dr Yusef explained things in a way I could understand. Jacque and Norma saw that everything I needed was there. Leslie was very friendly when I checked in and out. Thanks for making my difficult experience a great one.','2019-02-05 03:28:14.633000','2019-02-05 03:28:14.633000',5,'Larry Reed','https://lh5.googleusercontent.com/-h2tLhisLBuQ/AAAAAAAAAAI/AAAAAAAAAAA/f0kEILicF3g/c-rp-mo-br100/photo.jpg','3511292162159714121',7411),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_M0m14iRNHGAOFI2ied9kn5p263CydSxcthMzVRkmI5bedY6c5vd-hWYtr8oPFdv0aZMfTgC7eQdtzRaPYiPGf1s9RE','Fast, friendly and professional service!','2019-03-23 10:57:21.981000','2019-03-23 10:57:21.981000',5,'N Parker','https://lh6.googleusercontent.com/-CIugaKmJ-4Y/AAAAAAAAAAI/AAAAAAAAAAA/o9LtewF3O5Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1357),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_PTCqWw2JR__DOualOEfRC3Sts_g4b9VSb2xxJmLYMQsh4w19_OrPrv5C_jFXmSCMLvKceh1bHBMc06JpwBOHnecbnI','great service. amazing staff!','2019-10-30 08:49:14.154000','2019-10-30 08:49:14.154000',5,'Caleb Harris','https://lh6.googleusercontent.com/-Ab42rhaa8v4/AAAAAAAAAAI/AAAAAAAAAAA/4Pdr3rYdCso/c-rp-mo-br100/photo.jpg','2694018788013845459',6025),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_TAkofF8_nIXtoIGqOoK3QyihJE2Oj92Jk2Q-pIQH20eiLr1KVn4e4d-QmZ6qWI269jckpzdnvJxS_UymFAAgbwcCh4','Great service great atmosphere the nurses and doctor were wonderful. My second time here.','2020-02-13 16:21:41.814000','2020-02-13 16:21:41.814000',5,'Ismael Santibanez','https://lh6.googleusercontent.com/-4Xg8PBgccHg/AAAAAAAAAAI/AAAAAAAAAAA/P2Fl_agbOHw/c-rp-mo-br100/photo.jpg','8918455867446117794',14831),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD_z4WQ_7YgdcwHUohTAlZ0zuGRti_y2yGWhzrEO75dupMf6PvuvTmv5PhhwD6vLh77NbYcZJpHaLADixPkX6XfNmRowY','I was seen and began treatment immediately. I came at 8:30 am on Sunday morning. The staff was friendly and professional starting with the receptionist, and the whole medical team, including the doctor. Everyone was kind and patient. I am so glad this center is so convenient to my home for emergency care.','2020-01-05 17:59:02.261000','2020-01-05 17:59:02.261000',5,'Gwen Baylis','https://lh4.googleusercontent.com/-4abZEwwI_ts/AAAAAAAAAAI/AAAAAAAAAAA/IGGMat-dE3M/c-rp-mo-br100/photo.jpg','12541597562633926366',251),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-65DvFmBDmOGYseqtfViX-BZYGH4g0xcVjRvRJ4w91AJoUZDlEl1SYEZOCZRFwfcyVk6XHYlLQ-1bopxD50PoA5xLBc','Lisa H, Leo, Arron and Vanessa are awesome!!','2019-08-22 14:14:11.175000','2019-08-22 14:14:11.175000',5,'Bethany Ballenger','https://lh5.googleusercontent.com/-Hd9xV_Pd4xM/AAAAAAAAAAI/AAAAAAAAAAA/43py9Y9QmpQ/c-rp-mo-br100/photo.jpg','13486358490203335051',847),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-HY7dh9IztwI0AoN3eB1G6dLwCiBzUTTCq1eU7e7XtkzgIOVP9XVKiYycI3IRqNbPuclJX6nBBovBbYddNqFpUB4oi4','Once again this place was exceptional. They were fast, understanding, kind, professional and all around amazing. Every single person came through and made a very difficult situation much batter with their care. This is my second time here and once again I feel nothing but gratitude. Thank you to everyone that help me with my son yesterday. Thank you all!!!','2018-11-05 15:30:15.893000','2018-11-05 15:30:15.893000',5,'Sonia Suazo','https://lh4.googleusercontent.com/-6LsE6fD_ssA/AAAAAAAAAAI/AAAAAAAAAAA/ZjD5VZ4ByCg/c-rp-mo-br100/photo.jpg','8918455867446117794',9219),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-jdoNEc_SxOERe6QkGj1-M9y_8LSF-FRDaj8RMDTc3AtbmQey2nwttHvBh4POTrDsoLpuDAzNfD0C41b4qTIofHaNe0','Awesome staff, they are very friendly and service is fast. Highly recommend! Manny made sure I was comfortable during my visit.','2019-07-04 17:44:43.554000','2019-07-04 17:44:43.554000',5,'Thomas Morgan','https://lh5.googleusercontent.com/-VQKdrQhnTjo/AAAAAAAAAAI/AAAAAAAAAAA/dTxDX6GqaRs/c-rp-mo-br100/photo.jpg','6521947413723274945',8211),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-kQvh8U-5jWQLRUaAxB09gByBdF6W_9ZDouIO_gIOSDG2Nn_yrRcZqNRc0l6eXIgceMgHvPEDcAz1rD6BY-A86iWBfI','This place is great, I was seen as soon as I walked in, they started taking care of me straight away they let me fill out forms at the end. The nurse, doctor were great, they gave me Gatorade and snacks after my shot made me dizzy. I would go again if I needed to','2017-08-04 20:58:27.839000','2017-08-04 20:58:27.839000',5,'Chantelle Boyd','https://lh4.googleusercontent.com/-MzbLkZvYfjc/AAAAAAAAAAI/AAAAAAAAAAA/Et8j3IrS8SY/c-rp-mo-br100/photo.jpg','8679688254631342173',8912),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-lCmohd_oPgnjjkPJls2AORCfhdp_VH8Qq1MiSD40IZjuiVmHrUM9FZGMOdQ4HDFKqAJL1NOeTyXy99PQPvgSOKbdm0',NULL,'2019-01-13 23:56:47.421000','2019-01-13 23:56:47.421000',5,'Storrey Slaughter','https://lh3.googleusercontent.com/-uzOAv--DDnI/AAAAAAAAAAI/AAAAAAAAAAA/1yLrvjz26u8/c-rp-mo-br100/photo.jpg','16590124370714063921',3589),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-rn2815nBx8ICUHA--gmgkg-luYt6nzu_35XrxFW3Mr4U3vyyYxtsJrcbrMG5Q_oFU_hDIR8pDgrJ18PDkkRkUrxiNs','Was the best experience I have had . They all were very welcoming. The care team is so exceptional . Calli was so amazing great smile . They all made me feel so much better . I came in hurting and anxious but am leaving stress free and feeling better about my situation. Thank you so much Signature Care!','2020-03-17 17:43:19.772000','2020-03-17 17:43:19.772000',5,'Prince Reado','https://lh4.googleusercontent.com/-iKTpl1La38I/AAAAAAAAAAI/AAAAAAAAAAA/fKUi8B4SbfI/c-rp-mo-br100/photo.jpg','2694018788013845459',21108),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-ROzNS5-2HRcSzvQWTUeFOMi0LVlJjlam2G5swXN7JaRmEmUu3H7TVveBhljvHoJd3LEDOzU3gMkdlG6CYI0rvaiDdo','What a great ER! Had some allergy issues and they were able to take care of me. Dr. Iheme is a great doctor with a great bedside manner. You can\'t be the great customer service at this place either... Thanks Jocelyn!!!','2019-11-20 20:45:10.498000','2019-11-20 20:45:10.498000',5,'Sherita Jackson','https://lh4.googleusercontent.com/-XUAQVO30Hxs/AAAAAAAAAAI/AAAAAAAAAAA/D5rZ0I4v9is/c-rp-mo-br100/photo.jpg','16389487648212004696',2646),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-rU4-5aPxyk77po1SQ3naDSgZl2B3K_gdnaLNMnB1Wf2eFOAVgRyvy-h-ioUwopYUXY-xK-GEOSAlmaxigFwdgLA-i8','Great experience. Everyone was nice and helpful. Dr Henderson alvean Marcus took great care of me during my visit','2019-12-09 16:35:04.310000','2019-12-09 16:35:04.310000',5,'d ray','https://lh5.googleusercontent.com/-4ZS3ju9qEHA/AAAAAAAAAAI/AAAAAAAAAAA/3wq9xF4Xy80/c-rp-mo-br100/photo.jpg','16389487648212004696',2563),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-S6il-no-CMhSUi7ecj0z-TwNhjBmxVCJmVBfZmKcLnf7moE8RdB2PqBSJmTA75rNoNszxqiCkn-CQEH2ydHi3KkpNI','They have a very large snack selection and were very nice! Rebecca and Dyveliz were very nice!','2019-10-17 01:11:46.735000','2019-10-17 01:11:46.735000',5,'Alaina Mancuso','https://lh6.googleusercontent.com/-6ylCcbBWmi0/AAAAAAAAAAI/AAAAAAAAAAA/U8T0cBom9H4/c-rp-mo-br100/photo.jpg','16590124370714063921',3136),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-wGAkyV2fy0RUMc_GTPJtR6Ya1TlQozts07WheogJn7c-TQ6nd6QjVQDJdrl2rh4pKr4dwXhX1tod4Li848TmxIWBpM',NULL,'2019-08-11 14:12:03.708000','2019-08-11 14:12:03.708000',5,'V Riddles','https://lh5.googleusercontent.com/-Fe0TOM0UtNM/AAAAAAAAAAI/AAAAAAAAAAA/QjK3FmC-xcM/c-rp-mo-ba2-br100/photo.jpg','8626688543755174284',14684),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD-ym_xaT66EpNvhJsU1dncPIltZMmYiGzgWyx8GXm1HrEKGuG1pH6yRraROiaIf007OyRJlOaRc6Or7hkVr-Kj3AY0to','What a wonderful experience! The entire staff took such great care of our child. We are so thankful for the care and support.','2019-09-06 03:44:10.490000','2019-09-06 03:44:10.490000',5,'Jennifer Zach','https://lh6.googleusercontent.com/-IQLVyyVSHc4/AAAAAAAAAAI/AAAAAAAAAAA/P4W9_P9OW0E/c-rp-mo-br100/photo.jpg','8679688254631342173',8810),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD01J4DaZjo8O8aMrxsr4A3JSS8SCHBqCR9TPgDxCyGT28hjcCcKgE1YuxqslsdJ0ap0I2gNxBNf_GBvuMDZ036dt2AcU','I was admitted quick and Doctor and Nurse were very professional and helpful','2020-02-15 11:21:50.936000','2020-02-15 11:21:50.936000',5,'luv HS','https://lh6.googleusercontent.com/-JT8oWSVjUNM/AAAAAAAAAAI/AAAAAAAAAAA/tREyYnYdCt8/c-rp-mo-br100/photo.jpg','2694018788013845459',14232),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD09udxOqxTUEEm6CX3DHI5518gxpNJJdAPfGB0rkA21oE9-J1fAt2my5dBUrsHvy8uu9OinmekWRrYZuJot7JSFSq_0A','My experience here at signaturecare emergency was nice. The front desk admissions Kimberly P. And Cecilia Z. were quick to check us in. The Nurses Nicole G and Olusola S were super nice and caring. The Rad Tech Dustin H and Tech Tim H were helpful and precise to making sure they got good xrays pics on my daughter. Last but not least a big thank you to Dr. Estevez for treating and taking extra care of my daughter making sure she got all the right treatment she needed to make her feel so much better. I would definitely recommend this place for any emergency that you may have. The staff is good and nice and very caring.','2020-01-19 10:40:37.846000','2020-01-19 10:40:37.846000',5,'Jessica Zamarripa','https://lh4.googleusercontent.com/-t7JOmMMCZfg/AAAAAAAAAAI/AAAAAAAAAAA/6sNphMJQbc8/c-rp-mo-br100/photo.jpg','14567670160750071148',9907),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD0f8Uq50-GqIC3qoQ_sRdJyyy71oJoBbnsJS75-R_G49cpUURE7I2ozJyJ10wM82Qxth4qwTAqyxyaxHhWfZMxXP7OQg','To Dr Pham, Heather, Tricia, and Jesus, thank you. Great staff','2019-07-26 12:00:28.020000','2019-07-26 12:00:28.020000',5,'justin lay','https://lh6.googleusercontent.com/-TzWqN3PZWRg/AAAAAAAAAAI/AAAAAAAAAAA/8mr5X9IJ2Y8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD0jWIMVXlARWQSKny6YxIX84kv3uFp7r5hy0pYE87gZm1GVJbV_OZudjw8yEbWN-yqqEFn5yzFyc5k4DcldPWb8BujBA','Great Staff... DR. Mauldin, RN Bretnie B., Rad Tech Morgan S.,ER Tech Patrick S., Reg Lorena T. and Amanda C. were wonderful. And as always they took great of my daughter and we had an excellent experience!!!','2020-07-29 22:06:17.781000','2020-07-29 22:06:17.781000',5,'Kathleen Williams-Rogers','https://lh3.googleusercontent.com/a-/AOh14GjB_QE5tWDZPGZY2N_4oQx-LrJF3dOyHkQ4W9Gq0w=c0x00000000-cc-rp-ba3','16590124370714063921',3282),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD0MXDWH4FY1CzBdU8O-h3nnXcfyy3xiGRsp4O6IzSvPctMXLuqUDeGiveEz7shGv6RdCGPDTk8RSQ2VJpGnLf9mUVSXg','I went it for my hand hurting .... I ended up needing a cast , they were so attentive , they offered us blankets and refreshments and were so polite and they all had a great sense of humor . I normally hate going to doctors but they definitely changed my experience and I plan on gong to them for any future needs. If you need the care they are the place to go , you won’t regret it :)!!','2018-08-26 08:17:21.385000','2018-08-26 08:17:21.385000',5,'Zach Wallace','https://lh6.googleusercontent.com/-jXSkJxot4ME/AAAAAAAAAAI/AAAAAAAAAAA/WmaF9JvxOc0/c-rp-mo-br100/photo.jpg','16891069708558046635',4440),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD0N4B_8iuCrka5efPXcx5cN923RwLpnLJ0K95ML8pitxM6xkjxLJSmC41W356imkVhss4NhZwH9RycOfnuqkrmFuVbDs','(Translated by Google) My first time here at Signature Care and I\'m really impressed. They were very kind to me and took their time to teach me that if they were very interested in me feeling better. I would recommend anyone to this emergency hospital. Many thanks to Dr. Miller, RN Meredith, RN Sherri, Bryan RAD, Tech Ricardo, and Rec Jasmine. Your attention was great.\n\n(Original)\nMi primera vez aquí en Signature Care y en verdad queda muy impresionada. Todos fueron muy amables conmigo y tomar su tiempo para enseñarme que si estaban muy interesados en que yo me sintiera mejor. A cualquiera les recomendaría esta hospital de urgencias. Muchas gracias a Dr. Miller , RN Meredith, RN Sherri, RAD Bryan, Tech Ricardo, y Rec Jasmine. Su atención fue genial.','2018-09-07 23:53:31.381000','2018-09-07 23:53:31.381000',5,'Zulema Mendoza','https://lh4.googleusercontent.com/-1_Uhoj3BX48/AAAAAAAAAAI/AAAAAAAAAAA/AJmmRhVfdqs/c-rp-mo-br100/photo.jpg','14567670160750071148',22495),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD0Xscngky7to65LTrLnOWisBpc30hqwDg2uW750EIL5ckCMPk35JSEoayPwP5DdNEWqaiCqlLrnYPc6dhV9JscFVxFZM','I was checked in within minutes. The only No wait time ER care in Midland so far. \nWonderful team; Dr. Vaagenes, Nurse Lisa, Allison, Andrew, Leah and Shania at the front desk were great. \nThank you all and I do appreciate your care!','2019-11-22 00:50:49.288000','2019-11-22 00:50:49.288000',5,'Stella Ademola','https://lh6.googleusercontent.com/-yxcbPbdjHUk/AAAAAAAAAAI/AAAAAAAAAAA/sQ_E4LsFv2U/c-rp-mo-br100/photo.jpg','13486358490203335051',733),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD0z-bwobqmsfwyn5nYP0qXvknnKNSdb_-yQQ3c6XSUb6q5HRvRtThO2XTgAUNciGWfvD4RzN6OFDGPW4Y8Od4lxMgYlI','LOVE THIS PLACE!! Kimberly P, Vanessa Z, Kelly, Miguel, and Dr. Miller were AWESOME!!','2020-02-07 22:58:15.495000','2020-02-07 22:58:15.495000',5,'Joshua Zuniga','https://lh5.googleusercontent.com/-mIJFfabmKBw/AAAAAAAAAAI/AAAAAAAAAAA/wane6KUD320/c-rp-mo-br100/photo.jpg','14567670160750071148',13549),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1BnpKCoQx9J7sUtszdQ0X0cxl2eBUa_w0ey9IBXeImhqUnAPYTSzWBayVH9LFM-zGLZdVvnYayRhrr8msx1D6Pc6PDU','We are new to Houston and didn\'t have a doctor yet when my daughter got sick. Signature was near where we lived, so we took a chance. It was absolutely wonderful - everyone, from the people at the front desk to the people taking vitals, to the nurses and docs were amazing. When my husband had kidney stones a few weeks later, we went straight to Signatures ER. They got him started on an IV for pain within minutes of our arrival; again, everyone was wonderful from the minute we got there until we left - my husband much more comfortable than when he arrived. When my other daughter got really sick - back we went, and again, awesome experience from start to finish. Caring people who really listened and took the time to figure out the best plan for helping her get better. I pride myself on not getting sick and after battling what I thought was an intestinal virus for the past week and relapsing, I headed to Signature. Dr. Vaagenes Petter listened carefully to my description of my symptoms and through various blood tests discovered that I had mono which was a surprise and a relief to finally know why I wasn\'t getting better. Nurse Blake Waters was kind and gentle in taking blood, inserting the IV for fluids and assuring that I was comfortable and cared for. Two other male nurse/technicians took blood, vitals, etc with kindness and care and at the Front Desk Jordan Huckels made sure that I was seen within almost seconds of arriving and that the paperwork was all set when I was discharged so I didn\'t have to wait and could go home and sleep. I will go back with any emergencies we have and will recommend Signature Memorial to all my colleagues at the school where I work. Thank you so much!','2017-02-11 00:07:09.567000','2017-02-11 00:07:09.567000',5,'Ann Infante','https://lh6.googleusercontent.com/-nOnQ_SBJEAM/AAAAAAAAAAI/AAAAAAAAAAA/wlHrV3hG1FY/c-rp-mo-br100/photo.jpg','14904078213800803294',2414),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1ETHrqt_pVKM4eqqVtimUns6w5FtEJm-gKcB3qXt6UmqRTHl-Mvh90v7sUa3OYxbnCfQ-D2ISlkpoBJ9PX60_6d5_nQ','Excellent experience during a very trying time for my wife. Staff went above and beyond for us. I\'ve never been more impressed with a facilty. Wish we had some place this great around where we live.\nThank you to the team of Dr Jolly \nRegistration:Rita \nER Tech:Jonathan\nNurses Rommel and Kelly \nRadiology Tech: Adolfo','2020-02-17 04:20:22.479000','2020-02-17 04:20:22.479000',5,'Greg Temple','https://lh3.googleusercontent.com/-3ZkQw9KWE_c/AAAAAAAAAAI/AAAAAAAAAAA/5KZoJNqXSZo/c-rp-mo-br100/photo.jpg','14904078213800803294',20995),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1JDXped-2qXBkbdJBtRj81eil3kbZJXbfdEuQDFJAaZMlRaAKTE0KIKRUaC7GxyYf_Oh5yeh3xk9-8Tg9HNCRBHOF_I','Great experience.','2019-07-01 18:25:44.015000','2019-07-01 18:25:44.015000',5,'Amiri Alexander','https://lh4.googleusercontent.com/-StI4GQrSrqs/AAAAAAAAAAI/AAAAAAAAAAA/UJZnhgbPrDo/c-rp-mo-br100/photo.jpg','13486358490203335051',903),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1Lk4vwdOmcGNRY86FVHo_Q6du7AakHPQ0SH9Pn4SLFdQzz_FAxaaCUG-Dj8mo2Yr3Odn83jzC-U7uw2WFr7rdGnk7R4','Cindy C was great help so nice and was very very helpful','2019-06-06 01:06:32.966000','2019-06-06 01:06:32.966000',5,'Leyah Bradford','https://lh4.googleusercontent.com/-_WzgOH_Kn7o/AAAAAAAAAAI/AAAAAAAAAAA/lvtdVtuQl80/c-rp-mo-br100/photo.jpg','17394740196501090048',4673),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1NfKC7myuaq12jEqYGeHxRQX9hyi0su9HljRH8nuYD94eP9f55NwpPW2teIOMIByBk4tfXT6cmn2uNAous56twzJD4E','Middle of the night and we were trying our best to keep our smiles up to make the best of the rough situation ahead. And Therisa,Theresa, kept the positivity going throughout the intake and discharge. Katrina was professional and you could tell she was totally used to this type of situation. The doc was pretty chill. Bedside manor was perfect and almost casual it seemed. Which made the let’s just say , sore situation a bit smoother and easier to deal with. Thanks guys. You made it all better.','2019-10-26 05:27:33.259000','2019-10-26 05:27:33.259000',5,'Chad Reid','https://lh3.googleusercontent.com/-Jn_O6vSFThA/AAAAAAAAAAI/AAAAAAAAAAA/prr5gC_MO5A/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8772),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1uYzqcV57oeHxxZQjZ2tQ9WdE_K0W6BJuCqXqOeQEglo6UuN5rdo2WIpKjzfVWoGN2-95J_gm3x7S196fBHG9Xc2xO8','I came to see Dr. Aaron Braun after I unexpectedly injured my wrist. I had not broken any bones since I was quite young, so I was definitely very nervous upon arriving to the office. I immediately felt welcomed by the receptionist, who let me know the doctor would be right out. About a minute later, with absolutely no long wait like most other clinics, I was led back to my own private room. The nursing staff and radiologist were extremely friendly and accommodating, which aided in calming my nerves throughout the process. And Dr. Braun was just as caring and compassionate, providing one-on-one attention, ensuring that I felt comfortable throughout the entire procedure. Not only were the staff commendable, but the facility itself was clean and inviting as well. They referred me to a specialist and even followed-up with me the next day. My overall experience was wonderful and made breaking my wrist a little more bearable. I would fully recommend this ER to everyone, you won\'t be disappointed!','2015-10-17 14:53:50.946000','2015-10-17 14:53:50.946000',5,'Svetlana Konik','https://lh5.googleusercontent.com/-WieZNIym9iU/AAAAAAAAAAI/AAAAAAAAAAA/Rf-0krI7Re0/c-rp-mo-br100/photo.jpg','3511292162159714121',8032),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1ves68M3DCgpgf6iQnDjeWFMNjQcp2IA6vRm9V-ZIAw01iYNUCMk6XW0zBkNqPu761I2GMWF4dtZb5wM_8obLVgw1zM','As an registered nurse & emt, I was very impressed on the care that was given to my son when he had a lacerated chin. Great job Dr Kimball, Gabriel,Rn and friendly Naomi!','2019-06-12 03:22:07.008000','2019-06-12 03:22:07.008000',5,'Christy Seidenberger','https://lh6.googleusercontent.com/-ENjHf5kN9PU/AAAAAAAAAAI/AAAAAAAAAAA/ZYCTtX5HReU/c-rp-mo-br100/photo.jpg','16590124370714063921',3359),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1xghAfQWEz8dSxC7EYTU0pN3zcM480BaJh33WtnTbxJhQ3_wIRvLSoZhufWvXrga44i-spsr3c0Azo01yLeUPhv7JYQ','I didn\'t understand why they had so many reviews before going. It makes sense now, they\'re amazing. Everything you want from an ER visit: super friendly staff that tries to make you as comfortable as possible, amazing doctor that listens and doesn\'t belittle you or brush off your concerns, and full understanding of discomfort. There was no wait time, my pain was immediately addressed and I was given a shot for comfort within the first 10 minutes. My nurse was funny and sweet and gave me a sticker because I\'m bad with shots (just an added bonus, tee hee). My xrays were done very quickly and I was allowed to see them after they were taken, the radiologist even explained what they were looking for in the xrays and adjusted how we got them for me since I couldn\'t move without being in pain. The doctor explained the diagnosis so I could understand it and addressed all concerns as soon as the xrays were done. He was genuinely nice and seemed like he enjoys his job. I had low expectations after having been to a different stand-alone ER, but this was perfect. Everything took less than two hours. I don\'t normally write reviews but this was deserved. Thanks again, guys. And thank you for the card. :)','2018-03-24 16:04:27.014000','2018-03-24 16:04:27.014000',5,'Christin Poursartip','https://lh4.googleusercontent.com/-lUCJNpZyvjo/AAAAAAAAAAI/AAAAAAAAAAA/BkesE-lLU2U/c-rp-mo-br100/photo.jpg','14567670160750071148',1644),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD1ZsnEcWYen7g9qwAC9HFSVXd0-iUSSLQBKWn3RlAcgxYSWrz2Y4K27kZO3zNreFJtJ7dB1ZZznEXExqWERF-Pohvb6U','Really clean the nurses and the receptionist really nice and kind really recommend going to this Er','2020-07-22 22:11:35.506000','2020-07-22 22:11:35.506000',5,'Lizbeth Pacheco','https://lh5.googleusercontent.com/-7epUoIfr14s/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn4SjVIYsH5aXzgKjhY91EYWvEOYg/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21799),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD23G8FLVtuHN572qUGiADrFEz0CJWj0aRP0hX79BHsF0hFhMj6m5j9fK2tU3QQDSMMGetRtUn1J1nT8RrVqS7PvaCgiQ','Dr. Patel, Alvean, Brian and Jocelyn were every professional, service great. Wait time was less than 10 minutes, really don’t want to have to go to the doctor again but if I have to I would definitely return without questions','2019-10-23 13:18:40.998000','2019-10-23 13:18:40.998000',5,'Mark Green','https://lh4.googleusercontent.com/-LZUKuZlL9G0/AAAAAAAAAAI/AAAAAAAAAAA/ZbN7UAVkPZc/c-rp-mo-br100/photo.jpg','16389487648212004696',2793),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD26jE9AxR57X6UakAxqOQfJ95mkcvf3PRLrgrVj_agsZQ6h1BBHgvIwaJQMLUj_p4wlvlXne-uZlBZ5JVQch7ggL3BGw','Staff was quick and courteous','2020-03-03 17:07:41.317000','2020-03-03 17:07:41.317000',5,'James Dixon','https://lh3.googleusercontent.com/-Id7qhs7XIb4/AAAAAAAAAAI/AAAAAAAAAAA/QUc664-3Iqs/c-rp-mo-br100/photo.jpg','6521947413723274945',14518),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD2E4zgpgIKmxOQZZ_DY95zAZRzD_uiy73OnjqxR_d889bO1MLUDm9a5H5vc65SF2C8sM02WgjeohHfbUIyTF9XHAYwtU','Excellent service! Nurse practitioner Susie was great/fast about waiting on me','2019-06-13 19:01:44.771000','2019-06-13 19:01:44.771000',5,'KTB Gang','https://lh5.googleusercontent.com/--_3iBLG-RUg/AAAAAAAAAAI/AAAAAAAAAAA/PFJjxDxYqw0/c-rp-mo-br100/photo.jpg','8626688543755174284',8449),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD2G6UusYNZM-G9Hz4KombBCTEaCVzddZ63M5-GQZVU4vrHHWtJ-Pgq00W09m3wRs0GxVN38wG3LaALhUxnfsH5Fli6ZY','Loved the service. Everyone was so patient and kind. 10/10.','2020-07-24 20:06:28.563000','2020-07-24 20:06:28.563000',5,'Victoria Mendoza','https://lh6.googleusercontent.com/-QAVt_Ox5fjQ/AAAAAAAAAAI/AAAAAAAAAAA/2XUoDlCMYbU/c-rp-mo-br100/photo.jpg','2077061009497551125',22848),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD2GI__MLDQ60rlLVc6q4rGEVblTpu06w8kPakvzS1afznnZf0-7GFjSAKHWKwZk8OsEEX8iC_tsWr4NgZBlcMFEYrpvg','Very quick service, covid test wasn’t nearly as bad as I expected, staff was nice and very professional.','2020-07-19 21:56:37.231000','2020-07-19 21:56:37.231000',5,'Samantha Bilbrey','https://lh5.googleusercontent.com/-Gfg0cOqY6Hg/AAAAAAAAAAI/AAAAAAAAAAA/agX8VYCoR24/c-rp-mo-br100/photo.jpg','14748677429039074158',21688),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD2iIMCUYWNsIVUmI7GhV2A6xIQ8j3sf174SrDn8OjsyeaRu0F8IRvPB5QPq5ETPoGxFn6ZN9zWwb8oJ_QnhEf1R_fzcA','Very friendly staff and really fast! Highly recommend Georgia!','2020-08-12 23:59:05.215000','2020-08-12 23:59:05.215000',5,'Lily Mordecai','https://lh6.googleusercontent.com/-z71-vUIaZKc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck4IKdQozm7-z8HVW4eT0B8qty5Vg/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23025),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD2ncZ7EroX71HxKQVMa8tOtoX39bQtuZvoQuLpUWEfQmbJp1t3zEhypY3B1KcSjWnvxilCljHd_kDi7LvBulo1QyxzQA','Brought my husband right away after he twisted his ankle !! right away I was attended n right away he was in a room !! The staff was so awesome n friendly!! Definitely SignatureCare Emergency Center do care n take care of their Patients very well!! Thanku','2019-07-22 03:57:03.814000','2019-07-22 03:57:03.814000',5,'Laura Lagunas','https://lh6.googleusercontent.com/-2oZmkQNcsf4/AAAAAAAAAAI/AAAAAAAAAAA/cLn6HN8slBE/c-rp-mo-br100/photo.jpg','14567670160750071148',1273),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD2S-nSOkWSNzySKAoQq9ooNJobCxeiFO-ayV5G3RFsj8ggm-hIHXFLOakuIrzGrcvv3qbmw0vOGRPldNmUBduSzbdcWk','Thanks for your hospitality. See y\'all soon.','2019-06-22 00:24:51.564000','2019-06-22 00:24:51.564000',5,'cory slessinger','https://lh4.googleusercontent.com/-oc67zLzett4/AAAAAAAAAAI/AAAAAAAAAAA/ECig4gtH1c4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD2wXViZd3FI2bckXFmVcIVmffiim7AF-ABNHP3tw6BKKcrWPKvH7sUtm_ucxzmlbMZO_ctfAraFYIuZgb7bdFonUbW4c','First time here not a big fan of doctors but Georgia!! Is awesome definitely made me feel comfortable about getting tested for covid. super funny wich is always a plus especially when you’re scared lol! definitely recommend coming here and asking for her now I know for future reference for a good doctor to go too !! Thank you so much for everything !! Side note there room is super cute. Decorated with Doc Mcstuffins for the little ones !','2020-08-03 15:07:41.245000','2020-08-03 15:07:41.245000',5,'Kaylyn Brandenburg','https://lh6.googleusercontent.com/-gMsq8yRvB-k/AAAAAAAAAAI/AAAAAAAAAAA/RRctpGaoRlk/c-rp-mo-br100/photo.jpg','14748677429039074158',22530),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD2zS1JWzSwagrABSoagyzD7I8Fi1txv56meZChoXS5mVgqGIjnCAX9z6ysKFz53Vm_ek1iE8xI3hVzb1Qrc2b9514jl0','Due to traveling I had to get a COVID test. I clinics in DFW and all the ones I called were very expensive until I found Signature Care which tested me for much less AND I GOT MY RESULTS THE SAME DAY! I wasn\'t able to make an appointment but they were still able to get me in the same day! This was such a relief to me. It was my first time being their patient and it was a wonderful experience! I was greeted by the registration ladies and they were very kind. The nurse who asked me the questions was very professional and patient with me. It was so simple! I just got tested with the nose thing then drove my car to the back of the building and the Doctor herself saw me in my car and gave me my negative results! I was impressed by this because at other ERs the doctor doesn\'t spend much time at bedside but at Signature she took her time and talked to me at my car and gave me calming reassurance about COVID. It was so hot outside, but she answered all my questions and really made me feel valued! Because of Signature Care I can have peace of mind on my trip knowing that I won\'t be spreading COVID. to anyone and that means more to me then words can convey! Because of this I will recommend this ER to anyone I know as well as go to them for any emergent needs that may arise in my life. Thank you to ALL the signature care staff that helped during my care!!!!','2020-07-19 22:42:51.924000','2020-07-19 22:42:51.924000',5,'S. Hopper','https://lh3.googleusercontent.com/-q1cA5c13B_8/AAAAAAAAAAI/AAAAAAAAAAA/pgBhREMVpL8/c-rp-mo-br100/photo.jpg','14748677429039074158',21686),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD317f6mFK24-jbW9c0WUElEP58F9ntMRH86boWzvdg5AatKis95TpFwzgiAZ-c1oe3r-dcYj6z6K72uULz-myBZFptxo','A wonderful experience with all the staff','2019-11-26 16:57:08.973000','2019-11-26 16:57:08.973000',5,'Tressa Fielder','https://lh5.googleusercontent.com/-ioN3SV3qMnM/AAAAAAAAAAI/AAAAAAAAAAA/Wx_SbEEVHAU/c-rp-mo-br100/photo.jpg','2694018788013845459',6004),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD39lqr75sZ0aOPMvBcLeo90DMHipheNr3lMXjuCUXUbPPz5PfpKlevIpG3OcmGlmWK7znL1i6MSsqEYUcN7LXtqN0LBg','Great patient service from the front to the back. Excellent personnel Delfino explained everything very well Dr. Leong ruled out what was wrong with my son, nurse Katie excellent nurse made my son feel very comfortable while he was getting checked and also Townsend. Definitely will be back whenever I have an emergency. Thank you everyone!!!','2019-08-05 00:13:02.999000','2019-08-05 00:13:02.999000',5,'nancy aleman','https://lh5.googleusercontent.com/-LR5_YlO1D_k/AAAAAAAAAAI/AAAAAAAAAAA/hMHjv9O5CV8/c-rp-mo-br100/photo.jpg','16891069708558046635',4228),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3DNU6QD81mfbRMCE6G5WbGIlfWjDrIHcNyL2XTu3v5GGhSkALgoOsBQYnME2QyxPVdwzZz10un6lHmHRGGWzyYcBKpg','Had to go get tested for COVID due to someone getting sick in my office. I drove all the way from Round Rock to Killeen . The staff was the best! They were friendly, efficient, and got me in and out WITH RESULTS in under and hour. The office space was clean and orderly, the girls behind the desk we so kind and got me in and out in under 10 min so that I could go back to get tested. The nurses and P.A. that took care of me were knowledgeable, quick, put me at ease, and best of all I got my results within 20 min. Thank you so much.','2020-07-01 20:19:04.009000','2020-07-01 20:19:04.009000',5,'Patrick Chaney','https://lh3.googleusercontent.com/-glRQaz8FNX4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl4m-FXnsTummLqwiUG3L2vqSi01Q/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21448),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3EY-9DqrMUtwH-kJFGjUCrQkm9akiW9A69fVneI7NdAHTSkFTHc_-dJ4UkjX9HAC9yEMREF0Pr9CX03_eQCsgyfLUqU','** Please Be Careful, if you’re visiting **\n\nThey advertise COVID-19 testing. But when you arrive they make you stand outside with other possible infected / sick individuals. They give no timeframe if you will even be tested or scene by medical staff. So pretty much you either stand around or sit on the ground with other individuals on the hope you might get tested for Covid-19. \n\nIf you had the possibility of being negative prior to visiting SignatureCare your chances probably will go up by how they are organizing it.','2020-06-27 01:37:35.904000','2020-06-27 01:37:35.904000',1,'Daniel Rivera','https://lh5.googleusercontent.com/-KdrGycQa8s8/AAAAAAAAAAI/AAAAAAAAAAA/8vePyAvOfF4/c-rp-mo-br100/photo.jpg','14904078213800803294',21258),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3icsEY3qwubS284oPIzCjlfKRJkP4N0RnpnZDUZGwkkvtDTQuLVM2hziYcjxoq8rs43vAv-aG1seMFWyjrQRBG7Xm74','Stephanie was very sweet and attentive! She made our visit quick and easy!','2020-02-22 04:54:28.147000','2020-02-22 04:54:28.147000',5,'Tatiana Gonzalez','https://lh4.googleusercontent.com/-Dbv-PHvJzO4/AAAAAAAAAAI/AAAAAAAAAAA/vD8A0g--eqQ/c-rp-mo-br100/photo.jpg','8679688254631342173',14735),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3k9IkcSaobFwG6xn0r8Is7FiE1LXU5nlIWfw8jK4a6V-6PJ6uM-tU2uJn0u66KgjOtsWYrEsOv-4nZW7CyjrzjOEz_k','This was, by far, the best urgent care center I have EVER been. Including hospitals. The staff, the nurses, the x-ray tech and the doctor were all kind, patient and I would not only recommended, but I would come back whenever I needed too. Which, unfortunately, but being honest; I’d rather not! :)\nThank you guys so much for taking such great care of me.','2018-08-27 20:35:48.276000','2018-08-27 20:35:48.276000',5,'Jen Thomson','https://lh3.googleusercontent.com/-MhnnIrWXEN0/AAAAAAAAAAI/AAAAAAAAAAA/weKnXNJNtLc/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7607),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3kuO7cuOzWpKLuhKNAGDpNJCkn1BIskRziWmv3ga-nSGb3Zi_BZ6jakn39rI5e3c1wdvXZAZKITbohDc-UYLyVqSSIE','Quality Care and super convenient. Staff is friendly and professionally trained.','2020-06-25 17:13:00.808000','2020-06-25 17:13:00.808000',5,'Mr. Gonzalez','https://lh6.googleusercontent.com/-ZaW-VFiz1tM/AAAAAAAAAAI/AAAAAAAAAAA/JW5tydO92-Q/c-rp-mo-br100/photo.jpg','14567670160750071148',21270),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3LIJ_rOhic62egSDkFENfEXFZxoXIqcKdJo9f3EPfk7XprDRRB-1v3eAhlxwdhPulAPrXeK9CB1Ag12WOF6t5bVyw38','Great place to go when you aren’t feeling well! The facility is veryyyy clean and the staff is very polite and knowledgeable! I’ve visited more than once and I love each time I go! I checked in and called the the back in 10 mins or less each time. And I was checked out w/ meds and an excuse for work within the hour! Best I’ve ever experienced!','2020-01-02 05:19:26.807000','2020-01-02 05:19:26.807000',5,'Lasaige Francis','https://lh4.googleusercontent.com/-IO6BypCLiOM/AAAAAAAAAAI/AAAAAAAAAAA/LclBmwfOeJw/c-rp-mo-br100/photo.jpg','2694018788013845459',14281),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3q9zkq3r20R5J73ux_VPJUS-bC47JQv8iJwoDVH4BMyF7emuEXJOe9aS4KeDYGagusB1kAtJupu0Hm1XeWrok35EHeQ','While visiting in Houston I became very ill with food poisoning. After vomiting and nausea for 24 hours, I was dehydrated and very weak. My daughter recommended the Montrose SCEC where I received immediate, professional, courteous, and healing attention. I was made comfortable and given excellent medical attention. Dr. Boester, Churiah, Gina, Ke\'Aire, Dion, and Anastasia were wonderful in every way. I highly recommend this facility to anyone needing medical treatment. JoAnna Howard','2018-09-23 16:38:18.451000','2018-09-23 16:38:18.451000',5,'max','https://lh4.googleusercontent.com/-qALAJwZRHpc/AAAAAAAAAAI/AAAAAAAAAAA/qiIjvx37wiE/c-rp-mo-br100/photo.jpg','3511292162159714121',7586),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3Ts397pNExKMGUSGhD5lw1QL2lESWLRKhP7nZHCz8mKn9hqw_i94weQwfEwoF1nNYibMPN_VeHrUBbEi22toZS1eU2w','Quick in and out. Very friendly staff!','2020-07-27 12:58:55.032000','2020-07-27 12:58:55.032000',5,'Warren Sherman','https://lh5.googleusercontent.com/-9EOO5-eOC7o/AAAAAAAAAAI/AAAAAAAAAAA/beDN5gO3pos/c-rp-mo-br100/photo.jpg','2077061009497551125',22810),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD3xqqnqMs67V0VffBom-xgOuO72kcq51b1HJxESl_NN6euXrqjk4hgF_Ujmnv2Ba_fkVuhyc5zMSzLNDtK2zicecajC0','I highly recommend coming here. The staff and doctor are extremely helpful and make this whole Covid testing simple and really made me comfortable. I drove all the way from Dallas because my friend came here as well and described my exact experience. If you need any Covid testing done. Come straight here.\n\nThank you for reading this and I hope you have a great day','2020-08-15 16:42:38.829000','2020-08-15 16:42:38.829000',5,'Mike Galvan','https://lh3.googleusercontent.com/-NUXDi4N8Bvs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnBrEQd1SD8fsduy2XdVj7xNb91bw/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23017),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4-38ytMCGHT2XN4fTz5jsJfpvOUH1f6hNxlCyAvAbHVXlYKgyOR1pUn5nJmxzJb3_x3JeTp6GgPD5MevwyKtZFOvXlM','Great experience! They got me in and out in no time!\n\nAnthony was very helpful in letting me know what was going on.\nNatalie was a joy to be around during my imaging!','2019-03-25 22:54:04.174000','2019-03-25 22:54:04.174000',5,'Elijah Denham','https://lh3.googleusercontent.com/-OBBoMPBDyJs/AAAAAAAAAAI/AAAAAAAAAAA/gcGkURzwnxM/c-rp-mo-br100/photo.jpg','16590124370714063921',3481),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4-VSZz3JrepF7uF5sZQBnkYnZ3QDyrEv7ULcfhS-O75Jyn--OvK9GJ8RlfJhPEes9P1qcG1phXvbCWvzQ1S0D42GFHY','Carly has great customer service skills very professional and helpful . Sherwin is very patient and warm welcoming . This service here is phenomenal. Dr.Wang is very caring and informative and very passionate about his job . I love this place','2020-02-27 04:33:20.527000','2020-02-27 04:33:20.527000',5,'Danielle McDaniel','https://lh5.googleusercontent.com/-nzKq9dNSyww/AAAAAAAAAAI/AAAAAAAAAAA/neDD2gAA27Q/c-rp-mo-br100/photo.jpg','12541597562633926366',13331),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4Bipf79Ta10ySNbIM1Sww_Z1McyG2PpoWAaU3u13U3E8qQg-amkPwqUSk1Iv04ApUJxfrb2gkUEFlQohQhsQLMzAvSQ','I had a good experience with Kendra, Remington, Juan and dr.jaber. They took very good care of me','2020-02-20 15:57:30.037000','2020-02-20 15:57:30.037000',5,'Saipranathi Gunda','https://lh4.googleusercontent.com/-S8wpu-GFca4/AAAAAAAAAAI/AAAAAAAAAAA/H0aUTQpAN8c/c-rp-mo-br100/photo.jpg','16590124370714063921',13838),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4FSinzmtKzzNKg40SLYnlDmL3rLLjFtUkh3DBf1R8S3d1VdShPheKWo5KdumFAmepQzkqoonw0A1V-ytVuWii3sxchI','Very helpful and attentive. Didn’t want us to leave without making sure our baby was okay.','2019-07-21 02:51:02.740000','2019-07-21 02:51:02.740000',5,'Shelby Griffin','https://lh5.googleusercontent.com/-a1iY_2n9b2I/AAAAAAAAAAI/AAAAAAAAAAA/uDMO8FamhsI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4KeDbjoDoWa4TT8bnG3NEwPj8M4yPiSvkJTU1--95W9XR1tby77UlVL0oSeQj02XMZZnX1IqWB1ER2ORonTmcsRuJQ4','Everyone was extremely welcoming and helpful! Would definitely recommend','2020-03-01 02:50:59.046000','2020-03-01 02:50:59.046000',5,'robin roberts','https://lh5.googleusercontent.com/-sgdX-5Q6vBI/AAAAAAAAAAI/AAAAAAAAAAA/ysBDXLZHbUg/c-rp-mo-br100/photo.jpg','8679688254631342173',14716),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4QEIeJ86oKhAgMHWlzAZBn_1MMo78UrQY45uT2YLL-cyrpSHJD_X1Fx0yrVNn9tjnPI5JbXaRocMQguZGcdQ8_z8eJg','Very friendly staff! Explained everything, answered all my questions. Highly recommend.','2018-03-14 18:27:42.193000','2018-03-14 18:27:42.193000',5,'Clay McComas','https://lh6.googleusercontent.com/-rz7_l5RP8tk/AAAAAAAAAAI/AAAAAAAAAAA/XBOep9-x19c/c-rp-mo-br100/photo.jpg','17394740196501090048',4871),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4syuJOH0zjEeCNacSRxRnPwE9cmYv29rDmcZjm9eIoAT3Q0iUHZidoUeM8URYEMEGBiXtko3ex2CQZ47m8QHy3Vem0s','I had a wonderful experience! I was already feeling horrible and everyone treated me and my family very well. Each one will stop by and ask how I\'m doing or if I\'m feeling a little better. Thank you so much.. Patel, Sarah, Fatima, Daniel and Tanisha.','2019-12-02 14:20:16.673000','2019-12-02 14:20:16.673000',5,'Mrs. Perez','https://lh3.googleusercontent.com/-ZsXbeGrJE34/AAAAAAAAAAI/AAAAAAAAAAA/ABsfv4RcpIg/c-rp-mo-br100/photo.jpg','17898197009688164559',5386),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4ugD5hFxBgrfdVhoyGHSxKng5-zs24yFD679WlHxzRZvZ33h3eraa9gVo_QA7SX2hzluLt-to5Y-6UgIKzDzL1S21Ms','Becky, Anthony, and JR. were all lots of help, knowledgeable and took very good care of me while in the ER.','2019-06-19 15:38:40.191000','2019-06-19 15:38:40.191000',5,'Ben Knaus','https://lh5.googleusercontent.com/-XwZ41pEMB8Y/AAAAAAAAAAI/AAAAAAAAAAA/5184tPa4ArE/c-rp-mo-br100/photo.jpg','16590124370714063921',3343),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4vTHNoOtnMT00eBjwZ1FJBYpRhr09EeetTWIP8Pbb3QG_dQX6Yq9LuWLsXXZek4E9DHKD_UEGgeOVypSb13MLeLoCP0','Organized, moderate cost of the test and well informed','2020-07-21 04:54:12.098000','2020-07-21 04:54:12.098000',5,'Joshie P','https://lh4.googleusercontent.com/-DmJW7tbYfho/AAAAAAAAAAI/AAAAAAAAAAA/p-Ggxbxcfi0/c-rp-mo-ba3-br100/photo.jpg','14748677429039074158',21645),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4vyvCYZj6PU8VA-6at-z0hSVYCf9PtEMtYRqUA45lUCviEjJfBmoOXX6sHUcM4_bzEXLQd7wkGIpTnm_RpiA09k4YyY','Unprofessional for both staff and nurses , can’t even asked them a question without sounding annoyed, can’t even feel appreciated and respond in a normal manner, shows a lot what the people turn into in epidemics like these smh','2020-06-27 17:47:44.141000','2020-06-27 17:47:44.141000',1,'Manny Perez','https://lh3.googleusercontent.com/-yt6h4TVCn1M/AAAAAAAAAAI/AAAAAAAAAAA/Vcq2p4HJZ94/c-rp-mo-br100/photo.jpg','14904078213800803294',21250),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD4xQiTUOokh4deILOjm6QEVegq3CNAdtw64AbOWPl_5i_4q635Kz63KmV-nYQcNwDjZolq679OVY-ADnqSBOL-bU6hEE',NULL,'2020-07-07 20:55:17.352000','2020-07-07 20:55:17.352000',5,'Steven Guerrero','https://lh6.googleusercontent.com/-1eel0SFl7GI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnLlktmDUdpc1jd0zsmJVqzVzBwiw/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21370),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5AcAFSN8nq2kKlYosiTgAk4BGKeFJoslkDpT8NAW8IJopzZRTVjHa-Yn31VP3fewQ-d5L2lgWgQUuPcgfqkblERvbG0',NULL,'2020-08-22 23:38:46.219000','2020-08-22 23:38:46.219000',5,'Macy Traynham','https://lh4.googleusercontent.com/-E3vYShN-4HM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmQjZ9ahSY3FUWNcuPCcDVSL3xW5g/c0x00000000-cc-rp/photo.jpg','2077061009497551125',22985),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5CAgfjbrusHElaRzRDmC8SXKdf7aTn0KbTw42RP52cHVTqFR8DqCAlc7xIFqFiOd-9S64XDFT-XabUcDq7sSFlkVJnA','The most insensitive place to go. You are better off waiting at the actual ER to see actual doctors . I was experiencing a miscarriage late Christmas night and I rushed there because it’s close to my house ... I get there and the front desk tells me I would only be charged if I was treated .. I go back to the doctors office where there is the doctor, the nurse, and some guy who took my blood pressure. All 3 are asking me repeative questions and at this point I’m getting extremely frustrated. The doctor then goes and say the ultrasound technician will not be in for about 45 minutes maybe a little later .. “Do I want to wait ? “ Excuse me? ... No I just want to bleed all over my the place and attempt to drive to an actual ER I thought to myself. So I waited for the tech to come as I bled all over the place . Then the doctor proceed to tell me that I have a bladder infection which could be the reason for all of my cramps . After the tech finally arrives she then procedures to do a uterus ultrasound. Then the doctor comes in with my results and tells me that I’m not going to be able to continue my pregnancy. I then start to cry and ask was there anything I could have done to prevent this from happening ? I was told no but next time I should make sure I take care of my bladder infection as soon as possible . As if I knew I was walking around with a bladder infection .. There was no “I’m sorry for your loss” no words of condolences at all. It’s just really sad and unfortunate that people in the health industry have no pride behind their jobs . All I got was a bad experience and a $1300 bill just to be told to treat my bladder infection and follow up with my obgyn.','2018-12-27 02:02:14.746000','2018-12-27 02:02:14.746000',1,'Shakayle Covington','https://lh6.googleusercontent.com/-5e5sVfdX-ig/AAAAAAAAAAI/AAAAAAAAAAA/h-gJ8Sf91Ow/c-rp-mo-br100/photo.jpg','12541597562633926366',582),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5hfz-tXT3ocGK2opkCiYTwhVHeqPz40Uo615xwFBGHFdeAecYNz5rb3zrMK_VIJSioBelKJRcvENA9cqPjATqLAIamA','The team at SignatureCare Emergency center were very nice and made me feel comfortable during my visit. Thank you Nurse: Savanna, Tech- William and Caroline and Dr. Pham!!','2019-07-18 00:59:19.584000','2019-07-18 00:59:19.584000',5,'SONYA FLores','https://lh4.googleusercontent.com/-LYOCr9HzbEU/AAAAAAAAAAI/AAAAAAAAAAA/fvj0NSr0G38/c-rp-mo-br100/photo.jpg','13486358490203335051',890),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5hz3PfCKlfXWbKjM41hyscp_y7sSaeH29m_v8DIChp1vTlLWuRbtr0VbJKdzIb8STHe7fWt49Wg27BymFcRegeuARSE','Really quick and good help','2016-05-19 20:18:37.360000','2016-05-19 20:18:37.360000',5,'Stephany Perez','https://lh4.googleusercontent.com/-LZqQkvhmiac/AAAAAAAAAAI/AAAAAAAAAAA/bA2ZVCveYaA/c-rp-mo-br100/photo.jpg','14567670160750071148',2032),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5rwzTN7XPde3LRan_XIdm5z6aKRjk_lL2AOrArZw5ye5C0lp-_zknOYguW3tYGz-qdnkuglYWS0wVn2K3e9UaDe8oMs','Mercy was super sweet! All the staff and Dr.Faig were amazing. Will return if needed. Quick and friendly.','2017-10-25 17:10:41.818000','2017-10-25 17:10:41.818000',5,'Terra Henderson','https://lh6.googleusercontent.com/-vodAsMdG5KY/AAAAAAAAAAI/AAAAAAAAAAA/gp3i49Y7-p8/c-rp-mo-br100/photo.jpg','3511292162159714121',7770),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5TnAaOd3zSpI0ASlT8n30rQvt1RvCBt8V0bffit-HDMA4dd4OHqcD6l5tKeJXjYZXfHwrsqR2qMzMQV-vANfMH44BVo','Brenda G. from the front desk greeted us as soon as we arrived with a smile and made the check in process quick and easy. We were escorted to a comfortable room in the back minutes after arrival and the medical staff quickly tended to us. They were all so good to us and the Nurses Naureen and Agnes were amazing with checking on us regularly and making sure we had everything we needed. Dr.Patel was very knowledgeable and answered all of our questions and reassured us with any concerns that we had!','2019-08-05 04:59:50.169000','2019-08-05 04:59:50.169000',5,'Nelda Chavez','https://lh4.googleusercontent.com/-NOgi1Ec_-Ks/AAAAAAAAAAI/AAAAAAAAAAA/jmO5oA2GRyE/c-rp-mo-br100/photo.jpg','3511292162159714121',7226),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5wFWmLRCP_iQAJ3uAdQkSRwT8mrIuSAblzrX6LJa5mntli4ciljQW3F44lFOfUUX8sUybXImxdYnRamxPxcI0k-6XxY','Super friendly staff! Went in at 5 am to get stitches and everyone was so kind! Went in again a week later to have the sutures removed and again I was treated so nicely! I had nearly no wait time and was seen immediately! Definitely recommend for any minor emergency needs! Plus they are open 24/7 so I got to go in at a time convenient for me to get the stitches out which I really appreciated!','2019-09-23 16:19:15.893000','2019-09-23 16:19:15.893000',5,'Sarah Thawerbhoy','https://lh4.googleusercontent.com/-7eQKYboCgOI/AAAAAAAAAAI/AAAAAAAAAAA/uPB4nWP8VnE/c-rp-mo-br100/photo.jpg','16590124370714063921',3182),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5yPo7i4bQj1xECWLd95L2K9Ri5LwEGnZ-9zg0deHa-daL48NOfacelJoC59AfFusX1vFqOW9a_d5A3QcOB6osqJO5wk','Signature Care 24er has the best Doctors and Nurses ! Derek is awesome ! He made sure I was comfortable and kept me in good spirits during my visit. When he did my iv, I didn\'t even feel the needle going in. Dr Miller was on top of my care the entire visit. I felt very safe in his care. My nurses Sherya and Rachel were great ! Helpful, kind, and thorough. I will not be going back to hospital ers if I can help it.','2018-02-02 13:27:04.938000','2018-02-02 13:27:04.938000',5,'sgreen writes','https://lh3.googleusercontent.com/-wUcoI6IHFz8/AAAAAAAAAAI/AAAAAAAAAAA/hVLyEqb-7QQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1666),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD5ZB99tcvsUS4jS_XXxYXSOJQiE2l_vP6YkWBer_A8m0NAgHG6RhNiOJst8J2ckuF6xO8fsTltbXViYHAN4jgnqOgFEI','Great fast visit, bill was inexpensive,took really good care of me and was very informative.','2019-10-11 22:58:28.422000','2019-10-11 22:58:28.422000',5,'Chavez Green','https://lh3.googleusercontent.com/-wTBjTBUrdmQ/AAAAAAAAAAI/AAAAAAAAAAA/JhPTAhnNaMA/c-rp-mo-br100/photo.jpg','2694018788013845459',6048),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6DWxI4lwkid-Hwyvu26q51wAGxHjWqanknpdTmi0nFbmCD4EPj6Fgccv7H9C6bTq5rp-JDBr9NOvAnDFbCKXNqusuwA','Staff is really nice and got us in within 10 minutes of walking in the door. Just left from being at Memorial Hermann ER for 3 hours without being seen so the quick care is amazing!! IKita was very helpful at checkin and the whole staff was very sympathetic in working with my daughter.','2019-01-19 00:12:05.627000','2019-01-19 00:12:05.627000',5,'Cheryl Williams','https://lh3.googleusercontent.com/-Dj4eZ59V2T0/AAAAAAAAAAI/AAAAAAAAAAA/z_qngiIXViM/c-rp-mo-br100/photo.jpg','3511292162159714121',7464),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6gRs-jb3QXYCHx4OM9q1zc4AbbYPfMcNLlE2vNa_xOMYCRxqEiciOd1mqxBQaANLZV90z2Sr6BXilOtC81kr-Zgd5_k','The staff was very friendly from the registration girls Kim P and Cecilia and the nurse Chris Cox and the tech Natalie Blake! They were awesome','2020-06-07 00:10:14.949000','2020-06-07 00:10:14.949000',5,'Samantha Garcia','https://lh5.googleusercontent.com/-67-phu_yBdU/AAAAAAAAAAI/AAAAAAAAAAA/AxS6sSLpeMY/c-rp-mo-br100/photo.jpg','14567670160750071148',22488),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6Jm56nS9QRoiZ4YBAjS9Rp-ePLYIFO2svojPF5rxd1HwOc2nCPJEJezO7W-mFBkxe55uarspuWAroTXM5QEecYIb1Y4','Clean, modern facilities with top notch doctors and staff','2018-01-17 05:51:46.239000','2018-01-17 05:51:46.239000',5,'Steven Black','https://lh5.googleusercontent.com/-khedKtUf-5c/AAAAAAAAAAI/AAAAAAAAAAA/X352TBTooDo/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3880),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6OZPbuwCep9RKpWPlGCvFt5zg61gZC4MWH6aKuFgy17hGO6JIws82hHwB2v7P4aM3mEKRYqIG4pFjq4ih6pW_pIfwJw','Was there a Tuesday night and Brodrick Randal and Elisa Trevino were so much help, very friendly and made the whole experience very quick and painless. I reccomend this facility over any other.','2020-07-29 10:58:41.735000','2020-07-29 10:58:41.735000',5,'Courtney King','https://lh6.googleusercontent.com/-yeFTYlG7aZI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclU0wejBHcauTdvCEnXlWtFXY9m7A/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22276),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6q31qw3UmXeCfJ6MFHmluXsR3LTNRFwGgJnRs2vm84KPVePQ451DwQLVbgLufF6JAdzgkmmBnnXvo3IZG9N2cubA5ow',NULL,'2019-01-06 04:35:08.460000','2019-01-06 04:35:08.460000',5,'Vyron Dali','https://lh5.googleusercontent.com/-f_MEoBlnehk/AAAAAAAAAAI/AAAAAAAAAAA/pzziXUVVpGo/c-rp-mo-br100/photo.jpg','17898197009688164559',5894),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6vJR3MFEHxwvNKWf5Ha7UHNv0IvfP9pRfW-7UVk_DlT93AatIUm99_WczYLEkfFMiwxeRGAi_IUbeLyaNJ3lbvZ5ebY','All staff was very nice and helpful, more importantly fast and efficient!','2020-02-28 19:06:19.467000','2020-02-28 19:06:19.467000',5,'Jocelyn Batres','https://lh4.googleusercontent.com/-RR6PLGNCcCs/AAAAAAAAAAI/AAAAAAAAAAA/WEh60cWYt_U/c-rp-mo-br100/photo.jpg','8918455867446117794',17449),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6wpd0_x9NgvUZRZ5ssaK4EPnVyydkcRK1YNE0XoG_ZnelebKoFnx2e1FIzAsOUTfO4-P-cxg0k53ztMhztoP2bIZePo','I love this place and wouldn’t go anywhere else. I have went twice for my daughter. Both times the place was clean, staff was amazing and sweet, got results and treatment super fast, and they called back to make sure she was ok. 🥰','2020-02-02 23:21:28.241000','2020-02-02 23:21:28.241000',5,'Jasmine Andrews','https://lh6.googleusercontent.com/-pAIYQ_nNmZw/AAAAAAAAAAI/AAAAAAAAAAA/hZN2-hrI3yE/c-rp-mo-br100/photo.jpg','2694018788013845459',14256),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6WVqtvarcqj0BLsNAUm0iDGdatW8oo38Jb8PXmeNNs22gvt9xpLZPDiXtYs6Ap0lLa8i9upujLXTUqBxmjxIRWCbJJM','My 1st visit on 3/17/18 with Dr. Soli was Great!! He addressed all my concerns and provided the necessary treatment. The entire staff was rather pleasant from the start to the end.','2018-04-10 01:32:37.778000','2018-04-10 01:32:37.778000',5,'Jo Ann Mugica','https://lh3.googleusercontent.com/-nXdWUJKFDHw/AAAAAAAAAAI/AAAAAAAAAAA/JqnPcw6DqOY/c-rp-mo-br100/photo.jpg','3511292162159714121',7711),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD6Y-M5d900AArijt_axW1DoCWw9B6iE64zOye9RAy0JKUh63jrmn_Zk6Gj1kBUZ2h53slIhIT_Az2znri9lzEM6kXmkE','it was just a little expensive','2019-03-20 04:33:15.962000','2019-03-20 04:33:15.962000',5,'emine güldem yalçın','https://lh4.googleusercontent.com/-ezTNMkUl7Lk/AAAAAAAAAAI/AAAAAAAAAAA/tm5QwJwY_AU/c-rp-mo-br100/photo.jpg','17394740196501090048',4708),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD721k_UGuRG2YVXD0TsHEWoQnESeDcyXad1MCUwwaS9XyZt7j0VfMWMAMjP2XsfrxAtFIrOcIRc-m5e-6-BPY6uRmPaI','Everyone was so welcoming, considerate, & professional! Dolores at the front desk was very friendly & Dion was helpful with any questions I had during my CT.','2018-05-06 07:57:35.714000','2018-05-06 07:57:35.714000',5,'Samantha Garcia','https://lh5.googleusercontent.com/-67-phu_yBdU/AAAAAAAAAAI/AAAAAAAAAAA/AxS6sSLpeMY/c-rp-mo-br100/photo.jpg','3511292162159714121',7706),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD73xz84aW6v9_vF4evbHADOhIZDuyrJd2vO1u-4LgUozUoXV0pRUJQoMCndBpOLaU0MfNg4xYG6Mlx1Nh3EDkmnlJu9U','Very friendly and professinal staff.\nMina, Amy and Dr Lim were wonderful.\n\nWould come back here anytime!!','2020-08-03 14:57:26.683000','2020-08-03 14:57:26.683000',5,'Zamzam Millz','https://lh6.googleusercontent.com/-Xs3zCMuDgqQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmz7x6a5SSx7xFx8BJCO8vYe9EoEQ/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22143),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD7KBw3LsFoqXEUa3DDddmChripKROvGYtNlv7MibB-_7uEyoTSIgZQfNO6P87_D_ZrE0HGdAMx_wJFvfIU9Pu0BlV03w','From the front desk to the patient room, the entire experience was a beautiful one. My child walked in feeling nervous and exited relaxed, actually smiling. We felt seen, heard and RESPECTED by the entire staff (doctor and nurses). Gabe and Dyveliz were wonderful!! Thank you!!','2017-05-20 18:58:29.921000','2017-05-20 18:58:29.921000',5,'Udoro Gatewood','https://lh3.googleusercontent.com/-34Aybs5f_VI/AAAAAAAAAAI/AAAAAAAAAAA/Xz1vUNV_Cpw/c-rp-mo-br100/photo.jpg','16590124370714063921',3983),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD7m-rYAeO9RZkkhXo2TmKT93oGolgM-1NeH0UTTYvA-CTZOltts0sTsiedEz7elJpXpAJrPkC9G__YVmDnIkVkVvP5Q8','Fantastic ER! Wonderful service at the front desk by Kim and Dyveli! And then they the diagnosis was quick and easy by the tech, nurses and doctor!! Would recommend you go to this ER!!','2018-08-22 22:44:11.938000','2018-08-22 22:44:11.938000',5,'Trevor Pendergast','https://lh3.googleusercontent.com/-Qzu5qJW4c9s/AAAAAAAAAAI/AAAAAAAAAAA/1fx-cLguulU/c-rp-mo-br100/photo.jpg','16590124370714063921',3769),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD7Qt9N8ONvW6eqXlNWwEIAV8D307u4GsT5YKF6UgeXKFRFDGvs-Uqq8Tp5G-N3cF7-JCLOK6PvQ9UoLWrVbXtvANWX_w','I had a wonderful experience everyone was pleasant, kind, and caring. There was not wait took me right in, followed all the next necessary procedures to insured that I would have a successful healing process. I was very relaxed and comfortable first time patience I will recommend this facilities to all my family and friends. Once you come here your life will never be the same. Great place for your medicine needs, May God continue to bless all the staff','2019-06-06 12:32:28.621000','2019-06-06 12:32:28.621000',5,'Miranda Strong','https://lh3.googleusercontent.com/-SK2a253PoWo/AAAAAAAAAAI/AAAAAAAAAAA/aiqPCGfP29w/c-rp-mo-br100/photo.jpg','17898197009688164559',5712),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD7yJWH6vfStRU-epD3bPJ66BUieor63Vh8vADGdmN74ZUtFTobNj-ZdG6YR6fgyTcINxU429MCBg5oEecsrPa5A_yUdY','Everything was taken care of!\n\nThanks,\nDr. Ortiz \nAlvean A\nGrace K\nGenesis C','2019-10-27 21:19:15.913000','2019-10-27 21:19:15.913000',5,'Ashley Rowlett','https://lh6.googleusercontent.com/-2sW7Et8X8RM/AAAAAAAAAAI/AAAAAAAAAAA/jCRiXbY1XNs/c-rp-mo-br100/photo.jpg','16389487648212004696',2756),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD7ZwIGr5X6fNxLvy654s-UGeWzYFaK3zagNoOpXo4A19yHaPdaEpf4skSJWDIZdxrFpcg3LTDIgIRP3QqRHq8kFWb2Nc','I\'m so glad this location was put here, with all the intersection collisions in the area they need it. Anywho, the staff at this location were absolutely amazing. Mercades was knowledgeable and helped me gather everything I needed. I had lots of pesky question because I\'d never been in an accident before but she made it a lot less stressful. My nurse & doctor were so cool. Explained everything to me in a way that made sense and they made sure I had all I needed so I wouldn\'t be in pain anymore. I don\'t advise getting sick but if you want great care, come here. Thanks y\'all.','2018-06-09 19:47:08.280000','2018-06-09 19:47:08.280000',5,'Navi Dillard','https://lh6.googleusercontent.com/-uKGr7Nk3hv8/AAAAAAAAAAI/AAAAAAAAAAA/2Xo-3yt_NOQ/c-rp-mo-br100/photo.jpg','12541597562633926366',647),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD8-NDienLbolwDpDvWRBwonhRcPNCmbBc4zfLLRlXMd4siLKqmgfR2VDp6aT0fLToSDPO-M9Pe6lJQs_bP89QjMjyqzQ','While I was here I saw Dr. Henderson, nurse Amy, and nurse Kat, Frank the xray guy/comedian and angela at the front desk, they were all so great! Friendly staff throughout the whole process. Very knowledgable, kind and caring with excellent bedside manners. If I ever have another emergency this is definitely where I want to go!','2019-08-10 05:18:03.216000','2019-08-10 05:18:03.216000',5,'Jennifer Pearson','https://lh4.googleusercontent.com/-8vdNk7zpkQo/AAAAAAAAAAI/AAAAAAAAAAA/gKWy0Keky7A/c-rp-mo-br100/photo.jpg','2694018788013845459',6090),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD858_m42bstISd__OjZAw3iBrB--Y1nCTA6geajjVlVCf-6J2b52SfuGdJ8ZwN40oiGrbbN6xzouBSSOta376v7H_jkc','jessica Sanchez was awesome and answered every question I had?? great place to go in case of an emergency.','2020-07-21 14:28:38.160000','2020-07-21 14:28:38.160000',5,'freddy perez','https://lh3.googleusercontent.com/-4DeusQSdSac/AAAAAAAAAAI/AAAAAAAAAAA/7dDts70nvhE/c-rp-mo-br100/photo.jpg','14748677429039074158',21626),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD87tN2VmHPBFi8skCyzJ1qUoFfrKC0XBsQdjRhm7OKWhrJZJ6cfbe5sYplTF-HT3IMBvO2_4gti9TK4EbOmO5Z1BVJTk','I went into this SignatureCare with a pretty decent sized cut in my arm. It was pretty late in the day.( probably about 7:00 ) The staff was very polite and the coffee was delicious! I would\'ve given it 5 stars but the wait was just a little longer than i would\'ve liked. i will definitely be recommending this place to any and all people who are in need!','2016-10-15 21:30:28.325000','2016-10-15 21:30:28.325000',4,'Cody Mutzbauer','https://lh6.googleusercontent.com/-v8yhGcAiqZQ/AAAAAAAAAAI/AAAAAAAAAAA/8SPCh5LoD6E/c-rp-mo-br100/photo.jpg','17394740196501090048',5187),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD88i_szfzrSmCqMaHNIbOpsfoIMlhvBrRRe9KauZdYgGbCrKVR26eLOy536QcFeKAnQyCny37UN-LvOKfpasHMHnX-Ic','My little man came in with an ear infection and Dr.Rose and her staff were very patient and gentle with him.','2019-05-27 15:43:30.361000','2019-05-27 15:43:30.361000',5,'Chelsea Victoria','https://lh3.googleusercontent.com/-OxzJNo8piL4/AAAAAAAAAAI/AAAAAAAAAAA/MAIuVpDE2h4/c-rp-mo-br100/photo.jpg','2694018788013845459',6144),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD8ITyVLE5-TC5Sa7WLYtnwHRZzW2Ve2n-ISGOwr47gkrUByJDZrHbBqBciUhFfY62iOAy1ReGLj1_b8vNUsQqVRUOBZY',NULL,'2018-02-15 15:36:45.311000','2018-02-15 15:36:45.311000',5,'Hillary Gillin','https://lh6.googleusercontent.com/-liWU0az8BWk/AAAAAAAAAAI/AAAAAAAAAAA/a9hRgyisfLY/c-rp-mo-br100/photo.jpg','16590124370714063921',3861),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD8j5lQZ8-LHdAunV6hEgwF6po83Zq2xl8uVyC1INiASdNl-xQyvR-FnWyiRZ2LOPAbWdZ2eck9dXhJG4S45LuhTb1A9s','How nice is it to be able to go to a free standing ER using your private insurance to receive exceptional care in a speedy yet direct and concise process allowing you to get the care you need without the chaos of most ER hospitals. Dr Grinblatas was attentive to my needs, answered all my questions and sent me home feeling not only better but informed of my care with adequate follow up to continue my care. Staff was efficient, Wendy the tech was caring and drew my labs with a gentle hand, nurse Tammy reassured me of my care from the time I walked through the doors to the time she walked me out wishing me the best. The facility manager AshLynn R actually had came by during my stay inquiring how my stay was and if there was anything they could do better to ensure my care. I was speechless and felt truly engaged with the care I received. I couldn’t ask for a better experience. Thanks again for all you guys do and for sure will always have a special place in my heart for such excellent customer service!','2019-04-11 14:33:13.073000','2019-04-11 14:33:13.073000',5,'Adam Ramirez','https://lh5.googleusercontent.com/-KE6C0EbD9yo/AAAAAAAAAAI/AAAAAAAAAAA/9JBx3DKkUDk/c-rp-mo-br100/photo.jpg','17394740196501090048',4692),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD9_1TXgVN-HjtT1_ggjvDAoY7EO7Lq1gvnfv0Iaygc7JTe95F0fEeFIhJ70vVkxnZmwUPtyl6BEJwW1HdeZMfvi_9aS4','Kendra, Jeri D and Dr. Daniels were amazing from the moment I checked in. They did an amazing job taking care of my son and making sure he was good! Love this place! Will continue to come to SignatureER','2019-12-07 00:04:25.177000','2019-12-07 00:04:25.177000',5,'Lorena Torres','https://lh4.googleusercontent.com/-HX86JIdwIgE/AAAAAAAAAAI/AAAAAAAAAAA/rZtgdJ72UNI/c-rp-mo-br100/photo.jpg','16590124370714063921',3049),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD923u-bOi32HCW5TOkGOjvpjiYBuFtAFlP753YKT3eTOdiEeMyhuKNzN_QIPspdbKVeuYE7wYQHv4K8JrS2IOP_HV-90','Soon as I got there was taken straight to the back there was no wait. The staff was very nice and attentive. I have been here many times before they take very good care of you. The doctor was friendly and very knowledgable. You almost forget you are in the ER cause the atmosphere is so calm and relaxed I drive from the northside of Houston to come here because of the service. I have sent tons of referrals and they were blown away with the experience.','2017-02-22 11:11:14.642000','2017-02-22 11:11:14.642000',5,'Kynishia Mitchell','https://lh4.googleusercontent.com/-6BOiVpI7gzU/AAAAAAAAAAI/AAAAAAAAAAA/YNYdx9Ck21k/c-rp-mo-br100/photo.jpg','17394740196501090048',5107),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD93wTkXhVSI5WtcX7hNLxtAG1H6OqpcstzDF5H0aXEODfqCSXdhH8IHIq_5mFLl4TwA6cgT5H7yPsLtz7hHNYBrwJ2EE','Great experance! Fast & friendly service. The entire staff treats you like family.','2019-05-31 21:11:39.221000','2019-05-31 21:11:39.221000',5,'The Knights','https://lh3.googleusercontent.com/-osh5K9-E0_4/AAAAAAAAAAI/AAAAAAAAAAA/xpahrthJrrc/c-rp-mo-br100/photo.jpg','8918455867446117794',9138),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD97lkX6moI3p6mDuDtxHFC_ZH263RWdYzK01LWvVbscvI5LMD6eDt3b5SKegdIkXogCSi2hGyLc2l_rnG35Puxhbdb-c','My wife and I needed to get a COVID test. The doctors and nurses at the Signature Care Memorial City location (1014 Wirt Rd) were nice, timely, skilled, and very helpful. We felt in good hands the entire time.','2020-08-08 17:12:13.831000','2020-08-08 17:12:13.831000',5,'William Allison','https://lh3.googleusercontent.com/a-/AOh14GjWMQepBnInWp3KO4sS5NuH4NQYnOqhuYOPAW3Prw=c0x00000000-cc-rp','14904078213800803294',21909),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD9Fadoebb6TIi919sUzV9D5VAQpGMHDX-yI-w5Uh9mqdaBJrEXQ4uKAF_d4aM-IFMxn0Tc4u638d376aYrqhTomTcq3E','Nice staff and fast service','2019-06-02 15:40:44.285000','2019-06-02 15:40:44.285000',5,'Larry Parks','https://lh4.googleusercontent.com/-733V0hKpj9s/AAAAAAAAAAI/AAAAAAAAAAA/PNDCMBCFHmE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD9OM6219ZrsUypbe10npm91rgiwnXV839CAzOoochntKYV4u-qV-2VSSXa2VF0MkZY4yDhIRWqIfOD2nrQAXqo6b8Bk8','I came in with severe back pain after moving heavy furniture and was even having trouble standing. They had me in a wheel chair and in the exam room within minutes. Every member of their team went above and beyond to make sure I was as comfortable as possible until they determined the exact nature of my injury. Very kind, warm and friendly demeanor from everyone. Made sure I had everything I needed to fully recover before I left. They let me stay in my room while I waited for a ride that could get me home safely. The doctor even sat and answered some medical questions I had that were unrelated to my current visit. I would make a drive across town just to get care at this facility. Great experience. ','2017-05-24 20:26:44.536000','2017-05-24 20:26:44.536000',5,'Jim Culbert','https://lh4.googleusercontent.com/-XJc91yrhAxA/AAAAAAAAAAI/AAAAAAAAAAA/1po4bJCnCmE/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4555),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD9OMclCZXLT_q-YfIGb8RzwVC-dGDuva2khliMqg7KadJCWq8j9g6g-Bh0iku9eeHtBYHMiQqj5hoNuXU2MveUEgEwLw','Was a quick and positive experience. Very friendly and attentive staff.','2017-06-15 15:19:56.283000','2017-06-15 15:19:56.283000',5,'Scott Anderson','https://lh4.googleusercontent.com/-ZIrWed4TAPU/AAAAAAAAAAI/AAAAAAAAAAA/Fuhko7YUaUY/c-rp-mo-br100/photo.jpg','8918455867446117794',9392),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD9t2BYnv3c4tNyVgECP_1twGqsn_-Pyp6E4fm4x2EbrmRlZ-0laAWTXRQEnO213b0Vfxrlz-6PwtGTBSPSgXXmTOOMxY','Very good and fast urgent care facility! In and out within about an hour and half (broken nose).','2017-11-19 20:37:10.713000','2017-11-19 20:37:10.713000',5,'Pablo Rodriguez','https://lh6.googleusercontent.com/-uJt-h_rm3mY/AAAAAAAAAAI/AAAAAAAAAAA/X0aHddNfKsU/c-rp-mo-br100/photo.jpg','14567670160750071148',1728),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD9Ts5bkIMlMPqdL8LjmjIUCCoXdiZRb8B9Fs0rAYdLoM6ChA0Wr5RvDRh6_gTaU5359XVvOWxWtDWmVaGU3Y6Iq3_NPc','I had an excellent experience with the team here. very good people. thank you for your great care during my difficult time','2017-11-03 22:21:03.074000','2017-11-03 22:21:03.074000',5,'Abdul Rafeeq N','https://lh3.googleusercontent.com/-vHMaKq1NH9c/AAAAAAAAAAI/AAAAAAAAAAA/iC2mcMdif7M/c-rp-mo-br100/photo.jpg','8918455867446117794',9342),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD9Y7qMYkshBKP8jIJd6F87jnroEqnSwFsUb5FEgW807MM-BNWEva1Tv-DbVZbtS7tsf4MhOTG3tvQkV6NMWYLxZ1gJ1E','I had an exceptional experience with thanks to Tricia, Dr.O’Malley, and Robert. They made me feel like I was in the comfort of my own home.','2019-06-08 19:53:57.582000','2019-06-08 19:53:57.582000',5,'LaToya Straughter','https://lh4.googleusercontent.com/-UNv5HL9paTA/AAAAAAAAAAI/AAAAAAAAAAA/krwBzzwIWL0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvD9zFT_6YTQyqb0vsGMAiVoCt9EMs5pSee23F8T_Wcfjn0qrHNsCzFFVITkPmjijvk0zvGR6XFffojfrvLQSnyvAGk9dM','Brought one of our sweet family friends in who is attending Texas A&M. She was so sick and the staff here quickly admitted her, within five minutes of being here, and began the process of assessing and helping her get comfortable. They caught what could have been really serious and got her quickly on the path of healing. We saw Dr. Frausto and Dr. Vakey and both were extremely thorough, timely, and kind. The RN’s Anthony and Jeri were awesome. They helped with every little detail and even moved us to a room with a couch where I could stay overnight with her. Anthony even brought the patient a teddy bear. They brought warm blankets and snacks and I wasn’t even the patient. Thank you so much for such incredible care. I will never go anywhere else!','2019-02-22 19:04:29.507000','2019-02-22 19:04:29.507000',5,'Sarah Chilton','https://lh6.googleusercontent.com/-l1vuJRtBgQc/AAAAAAAAAAI/AAAAAAAAAAA/Xt13os2ji_8/c-rp-mo-br100/photo.jpg','16590124370714063921',3530),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDA-Ec-kAqSN-JoNVJySXxDwyufKY7TcwL2e9pILM-8E-NSerodsmfVNh_o_3hC7_PPUsCtnXRVgmjaXpTXZBZde7FiWc','Fast, attentive and friendly! Best Urgent care in Houston!','2019-09-18 14:38:59.204000','2019-09-18 14:38:59.204000',5,'Andi Aldridge','https://lh5.googleusercontent.com/-_OreKnOf3m0/AAAAAAAAAAI/AAAAAAAAAAA/Dscd8bWNLGc/c-rp-mo-br100/photo.jpg','14904078213800803294',2094),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDA35WDlwn6N9HNx_TkQk9_AX4R9dI14PPAmuvQd_G6Ep20aKv_ymRhNf044wSL2mO2r32EEO0SIxEUTh6aNJzGvgFeHA','Keaire dawn tessa and olivia were awesome. My experience was great','2019-08-16 20:58:11.791000','2019-08-16 20:58:11.791000',5,'Adrianna Benavides','https://lh4.googleusercontent.com/-mX3SrXdUtUA/AAAAAAAAAAI/AAAAAAAAAAA/0f0FEHsqMTI/c-rp-mo-br100/photo.jpg','3511292162159714121',7198),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDA5JhnmbX_jA4Fz8f8H2-IQHTxt2cNp7ZwXcsQKRzW5A77jjfPKrEQOU5cpcUG2Ew1M6Ko7BBjCOMEiCXDtxGAr9ypJ0','Dr Vaagenes, Alvean and Marcus were excellent. The team did a great job. Good customer service, professional, and energetic.I highly recommend them. Very caring team!!!','2019-07-30 14:34:35.545000','2019-07-30 14:34:35.545000',5,'Mamadou Sawadogo','https://lh4.googleusercontent.com/-nRS60Bki-Zk/AAAAAAAAAAI/AAAAAAAAAAA/607pWTtxhmY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDA98OUtJ1RTQ5FsDF_XQa64Sl3SGSmlAVupsDi5Vj1FrZPnnJT5B_5LyEX8l4ha3VDm7afcGDm0RI-EK1B5d0DECjVeo','Very friendly!! I went for a Covid test and I was in and out! Also did not have to worry about Being around other patients','2020-08-14 13:26:56.399000','2020-08-14 13:26:56.399000',5,'Ericka Uvina','https://lh5.googleusercontent.com/-SHXEhLYgIlY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm1ZM3d_PkCKM_OCUnuRubEZSiLfg/c0x00000000-cc-rp/photo.jpg','14567670160750071148',23014),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDaAQvTvYXD_D_SKZzXQkKM_XwqldfnJ9vf8YJBsQVNFw0O2TWfIDkhPkKLDMKP7zplvGJ43YWEoeAUuGU-fAY82Sh0q8','Dr.Baker was amazing. She was very patient and understanding. The wait time was almost none. and everyone there was so nice.','2018-07-08 17:17:55.685000','2018-07-08 17:17:55.685000',5,'dtrainerbondage','https://lh4.googleusercontent.com/-7-FsbbmGa3k/AAAAAAAAAAI/AAAAAAAAAAA/962R7ShlPDo/c-rp-mo-br100/photo.jpg','16590124370714063921',3808),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDabc5BQw9bVJtkDAmbZql3A-Nmumk4A0GKc9ph3c20cpiNnSRVG8nr1EFU3xBpF1iEOQQ_6o-eVYG97xA_3lQpFl7pzE','This is one of the most clean, courteous and efficient medical facilities I\'ve visited. Every person on the staff from reception to the technicians and the doctor himself was kind and well spoken helping me through the process. Should I ever have the misfortune of being hit by a car again I will gladly come back here! They also handled my billing 100% without hassle sending everything directly to the at-fault party with no stress on my end.','2018-06-26 16:07:21.201000','2018-06-26 16:07:21.201000',5,'Brian Nelson','https://lh6.googleusercontent.com/-pPcQ48WzfQk/AAAAAAAAAAI/AAAAAAAAAAA/hrCWzu_Nw0I/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7695),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDAC_0XoW_thow3g8eDBwFN9KpeST1dWcavHAEZbS_sh-HdiuIfGVXYfzWHxzf9kYcRyeYYbR9Ny5k2jGbS0_hAVz0HWY','Dr. Ybarra, greets you at the door\nRN Katrina give special care \nER Tech Cedrick made me feel like I was right at home\nRad Tech very supportive \nReg: Therisa was very patient, kind, and offered good hospitality \nOverall they were a wonderful team','2020-01-04 02:42:50.244000','2020-01-04 02:42:50.244000',5,'Visionary Hands','https://lh5.googleusercontent.com/-mqjkmyaeH9o/AAAAAAAAAAI/AAAAAAAAAAA/-yx8JPlA3eg/c-rp-mo-br100/photo.jpg','8679688254631342173',8658),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDaC9ndDPca1OrzXq7D3oF0Pd_P0tMdt3Q0e1kzEdeOLgQILhD8qPClmyJwrPtCenhnDS9o8pUhSOUX0riEGMqgJg47mc','I came in with my friend who hurt his wrist and Keera was very helpful and he was helped within the first five minutes of walking in','2019-01-19 00:55:18.259000','2019-01-19 00:55:18.259000',5,'Taylor L','https://lh5.googleusercontent.com/-38JUm0n4src/AAAAAAAAAAI/AAAAAAAAAAA/S3jdY1biEBM/c-rp-mo-br100/photo.jpg','16590124370714063921',3585),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDaGANO3_cdU5BMX1pfXwqn-SfwhNRi1b7dOy2F_iKYAl5_iZVnyT13Jyejyz0uVRlgpgTYXQJgMkzJSfYm33MX1ubR8I','I have had the worst night. My boyfriend projectile vomited on my carpet and is refusing to pay for cleaning services. Kendra at Signature Care has made this experience so much better. She offered me a warm blanket while I waited. I love SignatureCare!!!','2019-12-28 12:37:26.274000','2019-12-28 12:37:26.274000',5,'Vanessa Perez','https://lh3.googleusercontent.com/-Exe1MzN0wa8/AAAAAAAAAAI/AAAAAAAAAAA/QGKuruENoQ4/c-rp-mo-br100/photo.jpg','16590124370714063921',3003),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDAIp82rZubcCgDsJ7jEjVAlRhUQAouFCB8AD7LO_qgpYDFmOdExaxY_LLi7aHat8r9qKvE1KRi5F-7zETjlITftpZtPo','I had a great experience here, from the moment I entered with Jesus at the front desk, to Jani and Tricia in the emergency room. I went in for an illness, rather than a true emergency, but they treated me just as attentively. Dr Pham was professional and listened to my concerns, then prescribed the medications to best treat my symptoms. I would highly reccomend Signature Care of Cypress.','2019-04-06 19:50:45.160000','2019-04-06 19:50:45.160000',5,'Deborah Ross','https://lh5.googleusercontent.com/-0LiIyntEPCI/AAAAAAAAAAI/AAAAAAAAAAA/ndIfxAR8bz0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDAja1WJMnZqON_0od6mA8wc9aM_y5iB1-IbSpPZTYNFo8usoAcVRq3xN0TqG2AuMeWBkVunsQVoQu4kadV7Pk8iEI5ps','Very fast service. Isreal and Jessica S. were very warm and friendly. They made the process so much easier. I appreciate how professional they were.','2020-07-19 15:21:46.350000','2020-07-19 15:21:46.350000',5,'Monique Joshaway','https://lh5.googleusercontent.com/-NFt8WELhoPA/AAAAAAAAAAI/AAAAAAAAAAA/FyQbSc-4s0k/c-rp-mo-br100/photo.jpg','14748677429039074158',21717),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDAkuPPmRtyMOnjjHZOzz2-NOmGEAqGpR3zAkJPvYp438Y-73W589i52sd5-EGml0_ljKAdN-6wRv7dKgMR_sW6HxQT_U','The staff here were amazing. I received adequate service in a timely matter. I\'ll definitely be returning in the future.','2018-02-09 17:20:35.145000','2018-02-09 17:20:35.145000',5,'Ronshell Lacey','https://lh4.googleusercontent.com/-DVFm0edHvNk/AAAAAAAAAAI/AAAAAAAAAAA/FoTkeFPSJmM/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4886),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDAowjJJ8VUfBzhvioj5bFlUPl5m78hSPcZhx2In402hLam9IUEYBLQn1lcEwRagu8jolb0bsdCGwLsfClJWT9fqJqmZw','I was immediately greeted with smiles when we came in. I was seen not to long after being checked in which was great! The staff is wonderful and super caring. They gave my daughter a teddy bear, animal crackers and juice while we were being seen. Definitely would give more stars if I could.','2019-05-17 17:07:48.383000','2019-05-17 17:07:48.383000',5,'Maria Beers','https://lh5.googleusercontent.com/-ELDRB8DH_7U/AAAAAAAAAAI/AAAAAAAAAAA/YAi4p_HBlps/c-rp-mo-br100/photo.jpg','2694018788013845459',6155),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDauWtKqG9gcbBMXAe2ayS-WrSulOkLMIOdNoMl20nCAyWkdHTY0SzyVqvTUrmZ8Ne6WmYAJPzIMqLvVeyGvdINOB52f8','What a wonderful ER to have in the neighborhood! Let me first start off by saying how easy it was to get to and park at the front door, and how fast of service we go when I ran in for help. Sweet Elizabeth came out with a wheelchair to help load my mother and Karen at the front desk was full of knowledge about the insurance and payment process. We were taken to the back immediately and were serviced by Nurse Joseph who had a very calming effect on all of us. Only after a few minutes in walks Dr. Adam Boester, he had the best bedside manner with my mom. He made her laugh and calmed her down, he looked at her arm and immediately knew she had cellulitis. He explained everything about it in a easy way for us to understand and he was very sweet to my mom. I wish we could use him for our primary physician. Do not hesitate to visit this facility, they will take great care of you!!! The place is super clean and has a relaxing atmosphere too.','2019-03-14 17:08:34.838000','2019-03-14 17:08:34.838000',5,'Sheri Beasley','https://lh6.googleusercontent.com/-VxvPutUV--0/AAAAAAAAAAI/AAAAAAAAAAA/ARWlc-ahGIU/c-rp-mo-br100/photo.jpg','14567670160750071148',1363),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDAWmnLNyl-EAojBl8s58oOOsrft9dTKSPjoeupSM8OXTC9FIPEs2L0dZKGRK_eCAnQtAyUvXyUJIqZiydrGE-CNGfRMA',NULL,'2020-07-19 18:08:46.623000','2020-07-19 18:08:46.623000',5,'Miranda Muniz','https://lh6.googleusercontent.com/-TeZQlIR9DQ0/AAAAAAAAAAI/AAAAAAAAAAA/VM3uLjfp_1Y/c-rp-mo-br100/photo.jpg','14748677429039074158',21705),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDB_TtZHbAJi6kzCuab-NP69zAMfJdqXqRiBKSxPAkufuzR5G1JQ1iYxoBieyRLcuaL6iz5ZWQ5L7JyhGRsrslYVkZy8M','Dr. Zhen and the nurses were amazing! Thorough, and answered all questions that we had. Couldn\'t be happier. Hope I don\'t have to ever come back, but if I do this will be the place to go. Thanks for the warm blanket and smiles guys!','2019-08-02 03:28:30.489000','2019-08-02 03:28:30.489000',5,'Farzaana Phillip','https://lh6.googleusercontent.com/-kx2nrpPaD6U/AAAAAAAAAAI/AAAAAAAAAAA/eGVFyLHJEaQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5609),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDb2tb8_HYFPPw5cMEEaMkvuTxmweSBxqDL-Pv800RAnAa3vbUtTD2Egz4mvcwRLUKVSQykTRJwLESNo-dcr66M76aZyE','The service here was great the staff Dr.Henderson, Alvean A, Marcus B, Vanessa G, and Jennifer T l would recommend if you need medical treatment this is the place.','2019-12-09 21:11:52.541000','2019-12-09 21:11:52.541000',5,'Lindsey Dirden','https://lh4.googleusercontent.com/-hAi4-ACAoqs/AAAAAAAAAAI/AAAAAAAAAAA/5lngXAiWZCE/c-rp-mo-br100/photo.jpg','16389487648212004696',2562),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDBeqR0C2m0Y60-o9eBZXvHxAZVZ3j_8XiPJzjw4OKcPkYpQxzssA2XFodNMMy3m_TAgbcMY_yjyIGEq9opCIXodkouaA','Dr. Mauldin ,Alvean-nurse,Tricia-Radiology,Jocelyn-Registration....This has been the best Hospital experience I’ve had in my life !!!! This place is Gorgeous,& they have snacks,drinks,& the best attitudes ever!!!','2019-06-12 22:22:40.661000','2019-06-12 22:22:40.661000',5,'Rita Stevenson','https://lh5.googleusercontent.com/-zSAl7Glvu2w/AAAAAAAAAAI/AAAAAAAAAAA/P_cTEYwbU1A/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDBfsB6QRxmMQ-0evMkZNB7MYQPT3FvWSUQsDYxl6xqmlKXKtbHdX3x0TxV11GJeL_68vWENx67RKihi6XI8cEI4aUHWo','My son had severe eye pain but it was coming from behind his eye. He is 10 and it\'s a big deal to him. As soon as we walked into the doors we were greeted by Shania. All my questions were answered and we didnt wait but 2 minutes to go to the back area to see the doctor. The radiology tech Allison walked us into our room and was very polite and welcoming. We also has a nurse, Audrey, see that my son was cold and offered him a warn blanket and me too. Then doctor Mauldin came and asked questions and was understanding and nice. He then checked my son and wanted to find out what was causing his pain. All in all we are being very well treated and cared for. My son is doing better. Thank you to all the medical staff for taking care of my son!','2020-01-18 03:48:41.657000','2020-01-18 03:48:41.657000',5,'christina villarreal','https://lh5.googleusercontent.com/-J9a-HblxOZ4/AAAAAAAAAAI/AAAAAAAAAAA/FlpNItv05V0/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',13472),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDbHJY2HOcqOlbwlW9Uvy5BFG1cs2BQAiplgwmDU9yosMW5rfTO_HTWhEFHa4UefUaKAvJ3K0BY84x8Ne0PrvNZvmwGgI','Great staff! Nice,clean, quite.. my go to e.r. for any future visits.','2018-09-20 19:51:36.635000','2018-09-20 19:51:36.635000',5,'edward armendariz','https://lh6.googleusercontent.com/-ZpeQp8EzUI8/AAAAAAAAAAI/AAAAAAAAAAA/MOJvK0UjESs/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1502),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDbm4O3dNxCjNFtt01MrEsUq2Yw73XBKrmN1R8qr7GswyU0O_wefUucb5o60o17BIND4PtWdihIHwFhko2KeyRPhlFmBY','My appointment for a rapid COVID test was at 11am today and I got there at 10:30 and was out in 15 minutes! Thanks Cody!','2020-07-26 15:50:33.166000','2020-07-26 15:50:33.166000',5,'Madelaine Patterson','https://lh6.googleusercontent.com/-WFItQPoP3RE/AAAAAAAAAAI/AAAAAAAAAAA/BR_jua6LR6c/c-rp-mo-br100/photo.jpg','2077061009497551125',22834),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDc4Af0WtBuOi1xqYeDEwlZjYEde96r5aigGmnw9xw4uxPmKnO3luA-ViZpihlZCdxQHyr8qbHLM53x2_EyZo-QdbvUlE','I went in because I knew I was feeling I\'ll. The staff was friendly and prompt. I was surprised to find out this facility housed patients overnight like in my case. My nurses and Drs were very caring. I would like to thank Dr. Garcia and Dr. Hwang along with all of the nurses who helped me.','2017-09-19 15:06:24.853000','2017-09-19 15:06:24.853000',5,'Hank G','https://lh4.googleusercontent.com/-TmPzM9v4-to/AAAAAAAAAAI/AAAAAAAAAAA/GJHw2mCj2Rg/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9358),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDc5c6TjlcOqB8pZEhgh84X2wSPY-bWQrs4AuKOLudWB_ZZu1cxYpoPKUVagEggk2-Bwy0rVvdkvobPGF0CPHyFtbymjs',NULL,'2020-03-06 17:21:11.281000','2020-03-06 17:21:11.281000',5,'Carlota Rivas','https://lh4.googleusercontent.com/-MEG1q3oBMcQ/AAAAAAAAAAI/AAAAAAAAAAA/EG8K23D_Iu8/c-rp-mo-br100/photo.jpg','17898197009688164559',15282),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDc7JwJwRUmRz2IyiYx3ulgy8pj6cnIJiPwAgbeM3yvtEf3KPMZGTEUL7ZVAXh3nUb-wpmtjgsCz0NsDgzJzvufJSsilY','They were quick and precise and friendly. Not condescending at all like I’ve experienced at other doctors offices. The staff that helped me was Lorena T and Amanda C. The nurse I will be seeing is Jeri/Matt, the Doctor is Akunyili/Jacob and the Rad Tech is Cameron.','2020-07-30 17:44:43.355000','2020-07-30 17:44:43.355000',5,'Allison Stewart','https://lh4.googleusercontent.com/-IFaZ8cg-CEk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn9qCDw_-Dv6h0Ds8eVflRXBv2f6w/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22000),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDcDq_BJGSfvKMqv9VzWCvWDqL14N2YCINMgjJD1xvDAaOTR9X2hAANX_Z3HbZi88bquDissj2oSewjnZKInG9SDSqSYA','The staff are very generous from Tiffany at registration, my nurse John was nice and easy to talk to, and Dr. Jordan did a spectacular job and made sure I was comfortable and stress free.','2020-03-04 17:11:46.959000','2020-03-04 17:11:46.959000',5,'Garret Lloyd','https://lh6.googleusercontent.com/-gxXBuuBkCVo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclHxxQfiGp431LNuBswAyzdeLtTuA/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21191),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDCez-HeI7fPs2Ef3gh5Rq5nSwcwHuHyQTLaQ8d8IelgiJNMeH_2I9mQoYTHmjF8VY-iGhETzSGwq3BI6iLYi0bnbrmxo','Very fast and friendly service. Thank you all: Dr Henderson, Alvean, Grace, and Jocelyn.','2019-10-26 15:32:39.272000','2019-10-26 15:32:39.272000',4,'Katrina Barrett','https://lh5.googleusercontent.com/-Flr_jpA0qrM/AAAAAAAAAAI/AAAAAAAAAAA/xncBmztSOMk/c-rp-mo-br100/photo.jpg','16389487648212004696',2770),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDCGBHnhjzK7U9K0ZcCPjuNRnyz0RGOL0LeQH5tQExnjjV5TPIFXK1IWUkjWCw3ypXrb0CZ9bVh1lOetuaiZv8UVQtJCY','This place is great! Everyone, including Dr. Mauldin and Tanishia at the front desk, made me feel safe and relaxed, which is not common for E Rs. The price for my visit was also unexpectedly low, very clean facility, and no wait. I was seen immediately. Definitely coming back here for any future emergencies','2019-06-19 03:26:47.519000','2019-06-19 03:26:47.519000',5,'Ryan Knotts','https://lh4.googleusercontent.com/-x7KQZx7zc_Q/AAAAAAAAAAI/AAAAAAAAAAA/GnHk2matWvk/c-rp-mo-br100/photo.jpg','17898197009688164559',5691),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDcgBvVSksdURT6oXccihFckU43mceqwJY-SAzf1ROOPont6gpV2po2SkFUopwxfDLZwlnIFFngpVK16ZiiqLZde1KmLE','Christina was the friendliest, most attentive nurse. The staff are all amazing from the second you walk in. Super friendly, and genuinely concerned. Deondrick was amazing, and Dr.Potel has a genuine love for his job. You can tell this in the way he handles his patients. Great place! Also, very sanitary!','2018-12-31 22:20:17.304000','2018-12-31 22:20:17.304000',5,'Valerie Lane','https://lh5.googleusercontent.com/-tWiq8rh6lxo/AAAAAAAAAAI/AAAAAAAAAAA/izLVpFZBYcU/c-rp-mo-br100/photo.jpg','12541597562633926366',580),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDCh6WWlXyCTCXe2DO7rEceTvKFfmPZnryxEQ3z7mRT1LOqtkI9JF4kitv_gX19lKPuKJIjK9YRQcLU0BjfSbXLmjLjEc',NULL,'2020-05-25 16:04:37.673000','2020-05-25 16:04:37.673000',5,'Lynn Henry','https://lh5.googleusercontent.com/-yrPSJFPFPII/AAAAAAAAAAI/AAAAAAAAAAA/cmSofWiJSNY/c-rp-mo-br100/photo.jpg','14748677429039074158',21782),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDCilRW8aNpjq0qOu3qqZWR-2VyJGMZ7J3kMaefGOO_VQotNmXoB30eW356vJFZr-oLyFYjJV1RlX1Hm-bdmQRNY-mZxc',NULL,'2020-06-01 23:29:43.103000','2020-06-01 23:29:43.103000',5,'Robert Lamb','https://lh6.googleusercontent.com/-HhsGvAWpN0E/AAAAAAAAAAI/AAAAAAAAAAA/rGI3skVEit8/c-rp-mo-br100/photo.jpg','2077061009497551125',22871),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDCIvkQTdrWCWwQh4J4AJLIgmBOXg_rLH9pzu3ft91DGX5gVOapCGt8tFkWnL3VAhT2uNUpT8icRiYAk3_lhSOIn-rhoE','The extremely handsome doctor fixed me up right away when I split open my finger on a glass at Hotel Derek. Needed 7 stitches and was panicking but he was calm, professional, and thorough. I am very pleased with my experience there. At other ER clinics that I\'ve been a patient at the norm is to get you in and out with as little care or necessary assessment as possible because they are in a rush. Not the case at Neighbors Emergency Center. Thank you for taking special care of me.','2017-06-02 16:35:49.080000','2017-06-02 16:35:49.080000',5,'Dawn Bennett','https://lh3.googleusercontent.com/-1FB-J4aOnBM/AAAAAAAAAAI/AAAAAAAAAAA/R6kSoYc9Nq0/c-rp-mo-br100/photo.jpg','8679688254631342173',8914),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDclbj2Yxn94lp1PrTpDfMylr_Q5YEJhIWzxDcXPrCcVxjqnYf157xOKdYM26YsKIukBitxEzaqQjpxJVdTlDK2BdGASY','Amazing experience Dr. Cavazos delicia and duke were so helpful!','2020-02-05 16:49:51.470000','2020-02-05 16:49:51.470000',5,'Levi Curik','https://lh4.googleusercontent.com/-7tKMnvMnAx0/AAAAAAAAAAI/AAAAAAAAAAA/k_6vSQ0Yi8g/c-rp-mo-br100/photo.jpg','8679688254631342173',14762),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDClnM2YQ41eHfsTIBwb86k-c0dXVDYnfuqrKOA-HgifZtoGSYEWD6TvZ3l--N5eA5NAyyXnl3uWmopHC88gltqOXoPEI',NULL,'2020-08-01 17:58:19.732000','2020-08-01 17:58:19.732000',5,'Raven Garris','https://lh4.googleusercontent.com/-D2TpD3RMLO4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn-ssz4Kk-T1GSe0dWnMpwc8lcdaw/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21941),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDCmAllYo14H1X-lrZk4aAFhny0Rl8bBGJ3ebc6NGOkslXUt41mND7uFUV9sT9ar4fIrbvULs-UmTatPurY-DSQ_DUO_E','Hands down the best experience I\'ve ever had with an ER... because I mean, who likes going to the ER, right? Professional. Clean. Attentive. And all-around stellar work. Thank you to Dr. Lingan, Christina, and Adam for their exceptional care. And shout out to Chelsey for being just the most wonder human being you could ever meet. All members definitely rocked it.','2020-01-14 21:58:06.687000','2020-01-14 21:58:06.687000',5,'Ricky Aguilar','https://lh3.googleusercontent.com/-WsA0NYsOp1w/AAAAAAAAAAI/AAAAAAAAAAA/ABIA1wLTPcc/c-rp-mo-br100/photo.jpg','16891069708558046635',9766),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDcomMiGp5zfxuNfT4eBurQ6_AB6nA0rpLKxv0H2z4m2a85B3l28WuOtDZ8LNYWt3HjJIDhNDChrv-tDN1yunY0U8EAoo','I was taken care immediately. I also had to have a CT scan. It was one of the reasons that I choose Signature Care, because I knew from their advertising that they have the equipment at the Center. Awesome care by all the staff members, from the time that I walked in bleeding til the time that I walked out. Great Care and Services. Thank You all. Big Kuddos to all','2018-02-05 15:28:44.699000','2018-02-05 15:28:44.699000',5,'Colleen Verdun','https://lh5.googleusercontent.com/-9SWUAjZL8yw/AAAAAAAAAAI/AAAAAAAAAAA/9GKXd_Wvrog/c-rp-mo-br100/photo.jpg','17394740196501090048',4888),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDcP_Ss-xzQcQrnc5aInhULmacVYmigrztXcjBNcy2ht2ChCIpSrqqj8gwdGtU8UdKOM9puhfA-FV7FP5seutbzXSM6Hk',NULL,'2020-07-27 21:17:35.754000','2020-07-27 21:17:35.754000',5,'Gayla Franklin','https://lh6.googleusercontent.com/-SqCD4kEki-M/AAAAAAAAAAI/AAAAAAAAAAA/Mi1eadZFhS0/c-rp-mo-br100/photo.jpg','14748677429039074158',22557),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDCUvbxgqD43fSm8H1IOy9NjxIhW5cR2nQeXAJQ-wOyQCsebF718JWsNx3F-fT7LOXoF5SemZnocFmx8AEgZjSvEQzasg','Friendly staff and very caring.','2020-02-02 18:45:46.897000','2020-02-02 18:45:46.897000',5,'Marianna Rodriguez','https://lh3.googleusercontent.com/-vganBtH2dUI/AAAAAAAAAAI/AAAAAAAAAAA/9T_etxqHZMk/c-rp-mo-br100/photo.jpg','3272657195432704501',14377),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDCuyJiVKUnE-V2-x1p2732lcsK18r1Aj5hg5YHIUvLnfUjKEaPbBAc6j2fuKtsfjcr_Go7XUNnv9IfS9J_-SNU1mn_Ks','First time here & they definitely brought us to our room in less than 5 mins. The staff did great, especially Nicole G. who was very sweet to taking care of our son. Our doctor that helped us was great & knew exactly what was wrong with our son. Would definitely recommend coming here. The front desk, Kimberly P. & Cecilia . The nurses Nicole G. & The Rad Tech, Dustin were great. Thank you to Doctor Estevez','2020-01-19 05:30:48.888000','2020-01-19 05:30:48.888000',5,'MarissaJuarez11','https://lh5.googleusercontent.com/-qB__-TRFEug/AAAAAAAAAAI/AAAAAAAAAAA/Cg3GVSvCWJE/c-rp-mo-br100/photo.jpg','14567670160750071148',9908),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDD5-96YjyoEA-1hwJq87JDdPTRyudvjL-eI1oxBjtR8V7P5LhIVwp8gGSCBzARTqk8gtwVN6x9eyS5UQvc3gKRRjKJqI','It\'s never a good thing when you have to take your parent to an ER but Signature Care made the whole experience as simple and pleasant as possible. The staff was so friendly, including the doctor, Dr.Soli! My mom only speaks Spanish and they were patient with her and made sure she understood what was going on and cared if she had questions. The girl at the front desk, Sindy, was friendly and made check in a breeze! A plus when going anywhere! The radiology tech Jose Ruiz was amazing with us. My mom was VERY nervous and scared and he never rushed her and was beyond patient. The facility was SPOTLESS! Thank you Signature Care for going above and beyond!','2018-01-12 15:51:47.788000','2018-01-12 15:51:47.788000',5,'Alma Padilla','https://lh6.googleusercontent.com/-tPzu8vqvFFM/AAAAAAAAAAI/AAAAAAAAAAA/EjCmYfhtq4s/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7737),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDDzLyPML33jN0WDnSlH888MhXVIiQ7erb3esT9D-pJyf-YpyKd9uozv8voPvi3Mb81LhBF3xplAz6Oe2int5sBusUx4','Late into the evening on Sunday my four year old son got into my daughter\'s epipen. Like any mom I started freaking out. Upon arrival to Signature Care + Emergency Center, I was greeted by a warm staff. Ms. Sibenne Watkins, receptionist explained the services provided, and we were taken back within minutes.The Nurse Mr. Raymund was able to calm my son down, and make him not feel afraid. He made him laugh and feel at ease. Dr. Boester reassured me my son would be just fine. I would recommend anyone in the Stafford area to visit when faced with an emergency. The care we received was amazing and quick.','2018-07-16 13:23:06.645000','2018-07-16 13:23:06.645000',5,'Apryl Owens','https://lh3.googleusercontent.com/-LQEWOAraPB0/AAAAAAAAAAI/AAAAAAAAAAA/QYNds2G4ZWo/c-rp-mo-br100/photo.jpg','8918455867446117794',9259),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDeWXOqwJ0HxADTmvBO8uS5pnhTHeP_JE-IEc7BbU28rqrJaDg9Rb_WRw7jJ67BYfG3hT_33HMNBeTqMcwxiVDr9HM00','Quick service. Clean lobby. Very well run establishment.','2019-02-14 04:45:30.895000','2019-02-14 04:45:30.895000',5,'Adam Cearley','https://lh4.googleusercontent.com/-BC1Ce_NnQBM/AAAAAAAAAAI/AAAAAAAAAAA/8s0jetzazOk/c-rp-mo-br100/photo.jpg','16590124370714063921',3552),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDdfdaajyC5wb0Y7eWYNHLfsNWCKcP8q0RU28d61LWeu109hfo8pzyEIKYnZp9LaUS88fZXsuR6ElIMDaV5Yy6x_P9_Bo','Ellen R and the evening doctor Edwards were awesome. The bedside manner here is great. I was here with my family member and they went over and beyond to make her comfortable and aware of anything going on with her health. \n\nThey wanted to make sure that she knew exactly what they were treating and what the plan was.','2018-08-05 02:42:01.056000','2018-08-05 02:42:01.056000',5,'the soul spa online','https://lh6.googleusercontent.com/-fBe44puRTqg/AAAAAAAAAAI/AAAAAAAAAAA/h6lmhCXu9vc/c-rp-mo-br100/photo.jpg','17394740196501090048',4819),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDdFTepvAu8ucTrz14bL-R5r9unsBPn6Cmoj-pcGs_UKOzrMi9QoJ4xwRFuPkuCY3MCa6I_jlRmIFddr4qm6yt5WwLjOo','Betty, eda, Anastasia, Jerin, and Dr. Golla were all amazing and the visit was extremely fast.','2018-04-20 13:56:37.534000','2018-04-20 13:56:37.534000',5,'Chasity The Model','https://lh3.googleusercontent.com/-NnR4ECJacuQ/AAAAAAAAAAI/AAAAAAAAAAA/Gc9TVgyY7NM/c-rp-mo-br100/photo.jpg','17394740196501090048',4859),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDIDINaeHgb2iByyXl7PtKANCMp1ynHx_XpNfUn4ilkZDWXPdcaw4s0u313VtClWxvmpvDZ322CyVjDyfqpBHFEV-30w','Everytime we have been here there has never been a wait, everyone is genuinely nice. From there front desk all the way to the Dr Hehman. They were able to ease my pain and even complete CT SCAN while I waited and was stll out of there within 2 hours and back home.','2018-01-19 14:38:27.043000','2018-01-19 14:38:27.043000',5,'Jonkneeica Abimbola','https://lh6.googleusercontent.com/-Uy7sUJqTN2M/AAAAAAAAAAI/AAAAAAAAAAA/EaSE1685S6k/c-rp-mo-br100/photo.jpg','8918455867446117794',9302),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDis1FPp9OdQyl0EuTRDkDZiFyoK6CF1Kp4VFuu-ZtzMe1NlJAwfYKVsll3lLokvDVFZarIYq9bb6TDiWZrTUHTTJqSA','Great! No wait, and everyone was really nice','2016-05-04 22:57:40.134000','2016-05-04 22:57:40.134000',5,'Crystal Ibarra','https://lh4.googleusercontent.com/-RE4pnqvpu8o/AAAAAAAAAAI/AAAAAAAAAAA/QKZ-ejNr6LY/c-rp-mo-br100/photo.jpg','3511292162159714121',8009),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDdjX8MejBOMOX34K0OnIxmYQrzP4E9WWVVwxLDd78ePPl9bxKaa4pzJlUzSTOLqNG0d31xi3cWuec9aHzkU9VScwVaNY','Excellent staff! Jocelyn greeted us with a big smile! Dr. Patel and Erika were amazing , and Ms.Alvean made us feel comfortable and all took perfect care of my baby!','2019-08-07 14:49:58.168000','2019-08-07 14:49:58.168000',5,'Kasandra Rodriguez','https://lh4.googleusercontent.com/-bBZI0YMDtbg/AAAAAAAAAAI/AAAAAAAAAAA/9Z-iVKWkizA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDp8E8aCZNv7FMLMpgXrnwsoHEF19Qrw5UeZP60-fKj_Fzsku2P458Hik3vE-VXsrs2X8HxdHKK63sy6gEfDsWO5gBBE','Super easy to work with and very friendly. Would highly recommend. Rebecca V. was especially nice and helpful!','2019-10-19 08:30:55.942000','2019-10-19 08:30:55.942000',5,'Vanessa Rajan','https://lh6.googleusercontent.com/-pNbe7Udl0wA/AAAAAAAAAAI/AAAAAAAAAAA/5fKw5exqkbg/c-rp-mo-br100/photo.jpg','16590124370714063921',3131),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDdpLlslH-nhXBUMkXIuVSJW939hPmqb7lMSn0M-WBC6I6wf1eHwHAuU5CF6S4-HB4L7I7l33uAqXa6VkYOUtyw1Ma38Q','My experience in this emergency room was the most seamless medical-related experience of my life. And though I hope no one finds themselves with an injury in need of immediate medical attention, if you’re reading this review then “prevention” is only a word in the dictionary. My 2am Sunday morning visit was a breeze; the team of Gabriel, Lingan, Townesend, and Earl could not have made things smoother. No sooner after filling out a few easy forms were we brought to the back, evaluated, and provided immediate care. The ailment at hand in this case was relatively minor, but I have full confidence these folks can handle nearly anything. Not only are they the most competent medical staff with whom I’ve ever interacted, they also deserve the award for “friendliest.” We felt like real human beings (dare I say paying customers?) while we were in the building - a stark contrast to being shuffled around like branded cattle in your community big box hospital. It’s hard to put a price on all these great qualities, but SignatureCare does, and it’s much more affordable than any medical invoice you’ve ever paid in the past. I’m not considering dislocating any bones or contracting any cool new diseases to justify a return trip, but if bad luck strikes again you can bet your last dollar that I’ll be back.','2019-10-20 15:24:33.697000','2019-10-20 15:24:33.697000',5,'Phil Gorman','https://lh4.googleusercontent.com/-OxaEvy3sfwg/AAAAAAAAAAI/AAAAAAAAAAA/MoSjwkLaAXk/c-rp-mo-br100/photo.jpg','16891069708558046635',4178),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDqbVkLpy11_-ciKm9VxbFNqmW0bYbFhZa5dETao75ZlyQz6z-jH1UFGxRaoAV-OacyXxeb4O_GhQRpeJlUioQQ4trKM','Everything was awesome and quick! I am happy I came here instead of ER at a major hospital. Everything is cute and updated. The staff are friendly and helpful! Highly recommend!','2019-11-29 20:46:21.707000','2019-11-29 20:46:21.707000',5,'Kayla Holiskey-Cox','https://lh5.googleusercontent.com/-CJgJmkExVsI/AAAAAAAAAAI/AAAAAAAAAAA/g2Hr1nTgPi8/c-rp-mo-br100/photo.jpg','2694018788013845459',5999),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDqkuSC20fGvEsm36hPX7U46tyfiaB-YBG-LS2WSNI0YQkqJh-PDg8uMVkXY3-1mvBIhuG4iQ66mFrUU4ggvilUZvy9A','This is the 3rd time I\'ve been here and I can say everytime the staff is extremely attentive and helpful. There is always little to no wait time and we\'re always out quickly.','2020-01-04 02:58:14.495000','2020-01-04 02:58:14.495000',5,'carissa urias','https://lh6.googleusercontent.com/-hBp8Y79C984/AAAAAAAAAAI/AAAAAAAAAAA/ldhXno7r-m0/c-rp-mo-br100/photo.jpg','13486358490203335051',653),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDxlCjFfdvQN1_AmHOlaAyCbT2GETvyvl4r1yHWr07rNKZa2r4YgrUTxk8bRSVsNNvAyb5y0SkNJ7qJQQJdLAB4wtQ38','Lorena T and Amanda C were awesome at the front desk so nice. Nurse Jeri and Morgan were fast and very efficient. Amazing care','2020-08-08 14:31:15.395000','2020-08-08 14:31:15.395000',5,'Krystashya Baker','https://lh4.googleusercontent.com/-vESKNJowoHo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckRIIbU6kBpkHitgpWyLVkm-3WcgQ/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21981),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDdY4da-M9eK0bSxcvTnbdqi63ryqZjROGt27Up_MDedHmkIRHqHd0RHcPMNnjwXWjIvPkWkYTuon1_zV-vgAibsPlwBo','Great experience. Staff was really friendly and helpful. Robin,John, and Courtney were very caring and kind. Thank you! For awesome service.','2019-04-30 00:05:50.786000','2019-04-30 00:05:50.786000',5,'Kasey McAllister','https://lh5.googleusercontent.com/-qpSZK8VgTxo/AAAAAAAAAAI/AAAAAAAAAAA/Y19TdiKqQBE/c-rp-mo-br100/photo.jpg','8626688543755174284',8499),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDDZnj2R3hwZVGzX19C8AnKTvKjXJ-m5YUjE49zM7ZmvhadKrHmdtvfUtB0WUPeknQdIpaCWKqO8k9ZfpctrYrKWHt02U','I have been to this location multiple times, due to allergies and throat complications. The service here is excellent, with the doctors and nurses making sure that patients are comfortable and attended to, and the receptionists amiable, informative, and helpful.','2017-04-23 16:46:02.652000','2017-04-23 16:46:02.652000',5,'Marquis Tryon','https://lh4.googleusercontent.com/-oCQP7y1OMhQ/AAAAAAAAAAI/AAAAAAAAAAA/HAlnVEvdP5g/c-rp-mo-br100/photo.jpg','3511292162159714121',7832),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDE2YiZJVZV8QPSZNPKjlnQ4cBCurrgv0u7LFnmxUwsYPiit56DYqYrpWsqSN8aZfBb1W3i8Vxw3f2bzw-u8o7-GdY7YE','Dr. Jones, Adam, Linda, and Ailleen were welcoming and did a fantastic job!','2020-02-02 15:09:08.594000','2020-02-02 15:09:08.594000',5,'Christian Smith','https://lh5.googleusercontent.com/-aqCe3hND2QE/AAAAAAAAAAI/AAAAAAAAAAA/TUcOirrykyg/c-rp-mo-br100/photo.jpg','16891069708558046635',13963),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDe7FCMpVFRbnSujWgr15gzGzwn9L9n1GcJtfTsKUNTW2kaTxRIUC979w3BMVSAbvmInhSBmHgicuraRTmySErjT7Ngxg','Very nice caring Staff, Jocelyn Greeted me with a warm welcome and offered me complimentary items as I waited to be called. Ms Tricia ( Radiology expert) ran test while making sure I was comfortable in the moment of doing so, Dr.Harjai & nurse Alvean A, made me feel at home, offered me a warm blanket, cake to check on me every 5 minutes & gave me the best care and concern ever! Best 24 hour clinic Ever!','2019-05-25 21:34:25.069000','2019-05-25 21:34:25.069000',5,'Chanel Winters','https://lh6.googleusercontent.com/-Qff4CFtbNCQ/AAAAAAAAAAI/AAAAAAAAAAA/yeTqTpvyOJI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDeaxDaEm37EpHbpB_oeS9WjS1lMZAcITXNEVZzRQZL5Fi-0Zzvu36wtiRhMuNAjkMTbMQQUHfQMn1tBEnZcxywE-f3hY',NULL,'2019-11-06 22:32:30.154000','2019-11-06 22:32:30.154000',5,'guadalupe martini','https://lh3.googleusercontent.com/-SF61nGm0UTI/AAAAAAAAAAI/AAAAAAAAAAA/p00RygrpTxg/c-rp-mo-br100/photo.jpg','2694018788013845459',6017),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDebUbKe2LnE9EuXkJxCEh58pDXkeRL8-xCOEzfHAFN2-7sq1WDgR9eKUw1B2e4Uj215Vhw4YLBoUsph-pBIoF8_4jNEs','This place is full of the utmost professionals! High quality and efficient care. I came straight in and was treated like the most important person here. The staff truly care. The nurse Kristina was high class and Quyen in radiology made me feel comfortable and explained everything. Dr. Soli treated my Illness and made sure I left feeling 10xs better! I highly recommend getting your emergency care needs from SignatureCare Westchase','2019-01-23 17:49:05.594000','2019-01-23 17:49:05.594000',5,'Robert Aleman','https://lh3.googleusercontent.com/-EuoinHplsXE/AAAAAAAAAAI/AAAAAAAAAAA/zf0LrWNhOYU/c-rp-mo-br100/photo.jpg','12541597562633926366',560),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDECiYbRibtypOxEFX9kHmJiouzdH7-HXneuuN-HnjsVFc5gkBGspRI7ULzbhfr3k14IOj_4mBAxJGUDj_VEnXPnMY79U','Lucy, Stephanie and Dr. Bansal were wonderful. I was in and out very quickly. Their bedside manner was exceptional and the doctor took the time to listen to me and to help me with a referral almost immediately which I have been having a difficult time with. Thank you so much for the fantastic experience. I highly recommend this location over any other in Houston. Thank you for the help everyone!','2016-06-20 16:14:46.211000','2016-06-20 16:14:46.211000',5,'Teri Contant','https://lh6.googleusercontent.com/-CBJq31nTJaU/AAAAAAAAAAI/AAAAAAAAAAA/Tr4ZUq4IQLk/c-rp-mo-br100/photo.jpg','14904078213800803294',2480),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDegC0Jud2rVVWF3ybV4drKgiThLfXhTjwm_BpbNFUtkrVpwPOK0P5PqZli1sDkY6LCvjBUB-9B8Ydc0yaBC3hlFBhSBU','Never been to an ER, the experience here was wonderful. They are attentive and they want you to be comfortable no matter what the situation is. I came in with a really bad sprained ankle and they quickly got me in a wheel chair. Love the attention to detail, it is also a very clean ER with a wonderful staff. Mercy and Dr. Samar Yusuf answered all my questions too.','2018-01-25 23:32:38.829000','2018-01-25 23:32:38.829000',5,'J Sanchez','https://lh5.googleusercontent.com/-QYQxjc-J1y0/AAAAAAAAAAI/AAAAAAAAAAA/GY_tRcX5ZZc/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7733),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDEJ4dPIRVLCtcE_w1OsIXYCIK9uvVKio2m_QpNQCQvbW3q_ozo6SDCeGF56ki_55DXpt94n_B1uu1nXXLliejdxaYR0M','Dr. wang is amazing he answered all our questions and was very professional. \nCarly was very professional as well \nAnd the rest of the staff was amazing \nSarra, Thelma, Sherwin very amazing people with a positive smile and attitudes I hope you all have a great Christmas and a happy New Years','2019-12-24 01:46:32.977000','2019-12-24 01:46:32.977000',5,'Young Lion','https://lh5.googleusercontent.com/-2l0tq_Dw94o/AAAAAAAAAAI/AAAAAAAAAAA/_qmpOP9KEgw/c-rp-mo-br100/photo.jpg','12541597562633926366',310),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDek5_MbNdjbwGMTGJlX_ldRoaWK5RhXi3RWH-_ggG6lNLdjGx2-w3-2WFdlavzvdhpkY8Hl9ANOb49v20eJU2iqOPVr4','My recent visit to Signature Care Emergency for a kidney stone was very impressive. The staff, DR. ASHBROOKS, MD, DARRIN \nNurse: Kara L C \nRadiology Tech: Gunnar S M \nFront Desk: Kelly L B made my painful experience much easier in spite of it being a major Holiday. Service is extremely prompt and thorough. In fact, It couldn\'t be better. The atmosphere is calm, professional, and extremely accommodating. It\'s a comfort knowing there is a place like this you receive care in time of need. \nMany Thanks!\nR.C','2018-11-27 19:53:17.268000','2018-11-27 19:53:17.268000',5,'Rocky Childress','https://lh6.googleusercontent.com/-M1o6BXY15mU/AAAAAAAAAAI/AAAAAAAAAAA/gwfQtQPmaLM/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',7097),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDeltg_a_Mdyxt6ROfwkaoOi8PozXkpNk9clx_qyb6txh5tIp-o2AogiUISudGgRFYoHUvtbk1zOm8XOBe3LcgormeYb0','The staff here are all very pleasant, prompt, professional, and very proficient!!! The facility is very clean and feels less like a hospital emergency room environment which I am sure is what they were aiming for. Dr.Grinblatas RN Meredith, RN Niki and Rad Bryan Tech Ricardo and Jasmine','2018-08-26 00:46:32.412000','2018-08-26 00:46:32.412000',5,'faith2freedom enterprises','https://lh4.googleusercontent.com/-NDeXW2Vu9tM/AAAAAAAAAAI/AAAAAAAAAAA/JpauAb2vM-E/c-rp-mo-br100/photo.jpg','14567670160750071148',1553),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDEncfW1A7h5E9pJXTH6qrYAQMj3mgDcOJObaFuAKIryrZAM_WcYsUnB4pGUb7dehVC9zBn5sF6pmmPIDXStx6cZzf61M','Great service fast and friendly.','2020-03-04 22:38:33.103000','2020-03-04 22:38:33.103000',5,'BRANDON EVANS','https://lh4.googleusercontent.com/-deSswESvX08/AAAAAAAAAAI/AAAAAAAAAAA/EnWbDPivTKE/c-rp-mo-br100/photo.jpg','16389487648212004696',13730),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDeo3GhTyo0W0u-1oBkkxp4f1OMKlBYtJLDt45TtLmI247eW_4wyVBM1Dep-Bja0u4B37FugysyBLn73qfcUyUcjSBEl8','This place is amazing! From the receptionist to the doctor every one was so nice, understanding of my pain and they did a great job , quick and very effective. Was my 1st time there and I was very impressed with the professionalism and the services they offer. Thanks to Dr Giancarlo Soli, to Rachel, Rafael, the receptionist and all others . Keep up the great job!','2018-07-18 00:49:28.032000','2018-07-18 00:49:28.032000',5,'Doris Silvera','https://lh5.googleusercontent.com/-0mQMT4Y9AeQ/AAAAAAAAAAI/AAAAAAAAAAA/zNGZXB30Fbk/c-rp-mo-br100/photo.jpg','17394740196501090048',4830),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDEO4L7Qikv53VNj3-dMOA2XGBTSCGFu0lY0zGfTC-O5ERMbF5kZkloQOdVxhCmddbbTEfum8Ee_z0Tfo1PHYY0h2czGw','Great patient care. Fast and efficient . Thank you to all the staff','2019-06-14 17:08:45.126000','2019-06-14 17:08:45.126000',5,'Dez Hines','https://lh5.googleusercontent.com/-36JxmwPREco/AAAAAAAAAAI/AAAAAAAAAAA/vlOKD4El_TI/c-rp-mo-br100/photo.jpg','2694018788013845459',6133),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDEoul-PQnt-f_JmPLgAxN9HABejW50-j93ALxA__iqAskK5YAM2ZTxAMKa4hq9xKaIP2_AU59dYydsTvPDh0hPdd-EFA','Great experience. Amy and the rest of the staff were so helpful...the doctor that helped me was amazing I went there hoping I would get some answer about what was going on with me and I did. Thank you, you guys are the BEST.','2020-08-11 21:31:08.851000','2020-08-11 21:31:08.851000',5,'Jada Granderson','https://lh3.googleusercontent.com/-pvk23pbudn0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck3vZ6khJSDYHCroOjplOnGeU8dfA/c0x00000000-cc-rp/photo.jpg','8679688254631342173',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDePo50Y3lx2dZncM0x7zk0FJwoYq8GgaGdR0FfqrTwX501dCAWv6f6pXirU9InygSD-T2WZaBP0pfrduZFlU_gy6rbD8','The customer service here was amazing. We were greeted immediately. There was no wait before calling us to the back. The team took GREAT care of us. Thank you Dr. Mauldin, Tenora, James, and Tanishia. I recommend SignatureCare Emergency Center for anyone in need of emergency services. We felt like we were priority. ☺️','2019-06-19 05:27:11.326000','2019-06-19 05:27:11.326000',5,'Anna B.','https://lh6.googleusercontent.com/-czQH0uMHHZ0/AAAAAAAAAAI/AAAAAAAAAAA/XMN27HJLc2Q/c-rp-mo-br100/photo.jpg','17898197009688164559',5690),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDerEgTwRyWRoKldCcb5-SL4S5-D5Yr7OxVUK72uA6ko15Hg1QG93UadsHszDRpoNxrJuOhgFWtJ8K4kqVhUjMD28aZqg',NULL,'2020-02-06 22:21:00.711000','2020-02-06 22:21:00.711000',5,'jalyn lopez','https://lh3.googleusercontent.com/-OiCEs0_afzQ/AAAAAAAAAAI/AAAAAAAAAAA/H_hRNcUMvj0/c-rp-mo-br100/photo.jpg','17898197009688164559',22709),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDERh-lt3Io8wws6jnjTkLoHGiOTK5fmw_qskxuRyjC5Yc-bbua6kVGmAxTWs1mbGY38sbTzpyT3ENfsW3044lBmssWGI','This facility and all the employees are clean, efficient and kind. I will be using them again.','2017-05-15 20:19:12.953000','2017-05-15 20:19:12.953000',5,'Shauntel Cooley','https://lh4.googleusercontent.com/-5eCCnYZwAaA/AAAAAAAAAAI/AAAAAAAAAAA/USr0ZbBFUQY/c-rp-mo-br100/photo.jpg','3511292162159714121',7824),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDEu2OxNcSqM2X-xsgZDsGobzLBDzj_FRKdfOCvenVxmKH83FAyc9H9EFTkWPUiQBPQz8wXF7mZGtXTjSg3-ft4lLJ6uQ',NULL,'2017-05-06 02:37:11.591000','2017-05-06 02:37:11.591000',5,'2 A','https://lh3.googleusercontent.com/-seSkAiAvf_0/AAAAAAAAAAI/AAAAAAAAAAA/lskU_wi2TKU/c-rp-mo-br100/photo.jpg','17394740196501090048',5064),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDeUjbqoYbc90y6eP588sfBG26JEO0wIj1fOKgi7d_q3P0vwpB9kFJuePYZIk6TyDjXiGkB7AiJx9kBwfKLvOR6UjMyjo','I was treated at this center.Dr.O’Malley was exceptional! Nikki and Jessica went out of their way to make sure I was doing fine and comfortable. Overall I had a great experience there.','2019-05-13 03:22:35.936000','2019-05-13 03:22:35.936000',5,'Lourdes Mata','https://lh3.googleusercontent.com/-nSVWIqDcREo/AAAAAAAAAAI/AAAAAAAAAAA/H17Qm-C7vuI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDEuXB_9s-nMswiILNQ-Dmz85d4KqmHp_s8FXxrceWM33zM1mzsnr4dYZGkgJ8kYDBwWtJ_PtM4bgGBl73wazxi8oGsKM','Everyone was great and friendly. Leslie and Dr. Sylvester and the emt Norma all were super quick with helping me and made me feel comfortable.','2018-12-29 17:43:54.349000','2018-12-29 17:43:54.349000',5,'Rachel Cohen','https://lh3.googleusercontent.com/-7dmcUIbpGM4/AAAAAAAAAAI/AAAAAAAAAAA/5NtUHKCuHJQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7537),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDewMTnXUcOi1yvwb6OAvt7uDzmbffl_hDo3c8O_F1trXlhwr5c56ktS0pxhbpA95n6rbjEK4OaDJhkMGNLNbzw1A9-uE','So thankful for the staff today! Dolores checked me in promptly and Mark was a great nurse! I had a huge migraine today and couldn\'t have been more thankful for their help. Aaron was really nice and the Dr on staff was so caring!! Thanks a million to each of you for taking such good care of me.','2017-03-22 19:09:30.049000','2017-03-22 19:09:30.049000',5,'Mercy Hoang','https://lh5.googleusercontent.com/-2huaeEngCuw/AAAAAAAAAAI/AAAAAAAAAAA/exbDHEFeFNM/c-rp-mo-br100/photo.jpg','14904078213800803294',2383),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDexNgko4mQJT9QQeK4YauVrWvrHLwWCzKHMSVP56SPmb7p72-DyUri9jXL113hHjpctAFOg8cAsDOx_OEUXod_0nIGwQ','Fast reception, took real good care of me and explained my problem, what I had and treated me kindly and patiently, highly recommend.\nDr.Nguyen was really helpfully \nMiss Patricia at registration and the nurse miss Ekaterini were also really kind and helpful \nOverall staff were on top of everything','2020-03-05 20:15:18.117000','2020-03-05 20:15:18.117000',5,'alexander ulloa','https://lh6.googleusercontent.com/-c126oIhgsR8/AAAAAAAAAAI/AAAAAAAAAAA/t84r9SY-X0E/c-rp-mo-br100/photo.jpg','16389487648212004696',13725),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDeZPyRQ6tqTy4va6F99HCwXUHJ_i3-I5_7Z9TZIiM2Iqncn_zjIsJwrQMuaRF67oUs8_noyp790np9PbAypM7cFae2tA','Absolutely love this place. From the moment that you walk into the front door Kayla was warm and friendly. I came here today for my son and he is afraid of needles. Fanny and Jesse were absolute rock stars with their patience. They explained what was going to happen to my son many, many times with such care. He calmed down and they were able to do their job/passion because that’s what it felt like. Dr. Grinblatas took his time with my son letting him know what was going on. He was extremely kind, empathetic, and met my son right where he was with his fears. I would recommend anyone who has an emergency to come here for treatment. I won’t go any where else! 😊 Thanks again everyone','2019-09-11 07:04:36.506000','2019-08-30 19:34:09.772000',5,'Andrea Myers','https://lh3.googleusercontent.com/-Juxqn75qNi4/AAAAAAAAAAI/AAAAAAAAAAA/aKrlnL0kqUI/c-rp-mo-br100/photo.jpg','17394740196501090048',4611),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDF_w2AxyirlOeheLsQtkXHOFUB7z9VTaUqCSIej0WsOGjkvwtgJLE1D4SZP1GC8NdA5oo5UjDam7hp7sOZ6K-mzuMTkQ','Staff was very friendly. From check in to check out, everyone was great. Tanishia, Daniel, Fatima, Lynn, and Ybarra were all fantastic. 💫💫💫💫💫','2019-10-14 04:52:33.075000','2019-10-14 04:52:33.075000',5,'Meguan McCoy','https://lh4.googleusercontent.com/-A9pkFsUTwyE/AAAAAAAAAAI/AAAAAAAAAAA/0--Ep-4UGkM/c-rp-mo-br100/photo.jpg','17898197009688164559',5507),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDf0Xx5gnnFoifDzkdKgCuFy4KhntRj-WsWhtBZ5f_d8ZugOtyYnKBBrCgUbuSk11c9buvl0Wso0gEYvrkwyQXcSiDEtc','Brought my GOOD friend here for pain... the staff were so excellent and treated us more than just a customer. To top it all off, it was an in and out process. Thanks to the staff!!! \n\nDr. Smith\nNatalie\nAlvean\nTricia','2019-08-08 23:12:23.611000','2019-08-08 23:12:23.611000',5,'Devin Gibson','https://lh4.googleusercontent.com/-OECFHt0Eg44/AAAAAAAAAAI/AAAAAAAAAAA/KLy6PfkqXf8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDF1-__nCeTM_mpYTMovmGwa_Eq4N7_2TXMMJ83kIuRwlIEkcSpOuTbT2rGDOPXa_VvjT0CHpBibyyXiQQMzmYaDUI3R4','This place truly deserves 6 stars! From the minute I came in on the hot mess express, the front desk attendant Amanda, got me quickly checked in and back to see the doctor. Within minutes, I had vitals taken by the nurse and a quiet bed to rest. Unlike other hospitals, these guys are not rushing to churn/burn beds for money...in a time of need these guys deliver. This is truly how a hospital should run with care and compassion.','2020-01-30 01:22:01.775000','2020-01-30 01:22:01.775000',5,'Alex Kupres','https://lh5.googleusercontent.com/-DrS1l4qNTZU/AAAAAAAAAAI/AAAAAAAAAAA/peLWOn6k4V4/c-rp-mo-br100/photo.jpg','16891069708558046635',13969),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDF1iVzVLFZ_OAeraVVFVopgclFIMPufOwqKXG_kQxCEHqZJExCm70NWVe8DNuZiSBTeomaMFB0ZA6MfijqtWh7p1GqPo','The staff was amazing. Very informative and also very attentive. Highly recommend!','2019-02-03 18:48:04.770000','2019-02-03 18:48:04.770000',5,'Leticia Molina','https://lh6.googleusercontent.com/-rHi65bvAykM/AAAAAAAAAAI/AAAAAAAAAAA/cmpmEz4E1ec/c-rp-mo-br100/photo.jpg','8679688254631342173',8879),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDF27H4ZtwinNgDuMoVsI9JfXW6G925chZA3-W93icAcOhzhX4joBPFsNhT4az0vDkLwHwiqfAf4uyb_6xapkiXaj0frk',NULL,'2019-07-30 07:21:39.707000','2019-07-30 07:21:39.707000',5,'Taylor Czernohus','https://lh4.googleusercontent.com/-Oh0xGQKSCH4/AAAAAAAAAAI/AAAAAAAAAAA/g7FlSCzgfsc/c-rp-mo-br100/photo.jpg','14567670160750071148',1265),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDF3KsZn7XiW9s_CRJWWiEcD4nMn-CSpfYhNRsV6MoFGUjmvD28qQpJ9mLagDOe_fTRQZVCex9r3_hMUegp0bfMbwT80Y','I love the staff here. Thank you','2019-08-14 23:10:05.531000','2019-08-14 23:10:05.531000',5,'Cookies & Cream Plays','https://lh6.googleusercontent.com/-ccx3tJYVu-w/AAAAAAAAAAI/AAAAAAAAAAA/MeKQaN06LdQ/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5583),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDf3TGocR-PUfV1Y3ASPC1taiULAaLHcjJl18Fn6z1clB6WdSki6ao0ynlYQuqu0LZaFk-c4OfrsUUHrTyAO_NNMqwnxs','I was seen very soon after checking in. Doctors are professional and Dyveliz in the front was very caring and friendly!','2018-06-27 19:53:11.206000','2018-06-27 19:53:11.206000',5,'Rebecca Sanchez','https://lh4.googleusercontent.com/-45H7xYK1xoE/AAAAAAAAAAI/AAAAAAAAAAA/yiKkf5Rstc8/c-rp-mo-br100/photo.jpg','16590124370714063921',3810),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDf6T1u68ORXusePdGQVMhbIG5u_grtRPNN7zESEb9GEIqNBTY_LSHU_kT7tIoDoRTd2pf9BuF-91Ey_BY9vTkszmnvsQ','(Translated by Google) Excellent service from the front desk lady, very kind and quick, they gave me a consultation in less than 5 minutes, the nurse and the doctor very professional as well. I recommend it\n\n(Original)\nExcelente atención desde la señorita de front desk, muy amable y rápida, me pasaron a consulta en menos de 5 minutos, la enfermera y el médico muy profesionales tambien. Lo recomiendo','2018-10-17 20:27:46.877000','2018-10-17 20:27:46.877000',5,'Veronica Nohemi','https://lh3.googleusercontent.com/-YL3s86dNQ_s/AAAAAAAAAAI/AAAAAAAAAAA/ZW3unqDDUxA/c-rp-mo-br100/photo.jpg','3511292162159714121',22877),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDFcBeMxVsgAE01UclEdBDl_vhMGXZxtoIQbmqzqxZb1F_c9E2tu_A2eftLj_z2zmng_lKxiExQllRnqx5XhSLvBpNviY','Jennifer D at the front desk was wonderful , helpful and friendly. My nurse Susie was top notch very helpful offering a warm blanket and water also showed true concern and compassion, great \"bed side\" manner.','2019-01-30 01:16:34.610000','2019-01-30 01:16:34.610000',5,'Dawn Stone','https://lh3.googleusercontent.com/-hNtyEjK1dE4/AAAAAAAAAAI/AAAAAAAAAAA/jqRePSBWxdQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8575),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDFfpQIBFRXvQ-mr33be5CGb6ZnfMIZuoDJQUC80DleKW3itYcWejGai8t6SRpbyBY0AvGFN-2_7Y06nnDCl4NJSvADGQ','Between nurse Kristina, Dr Zhen and Dr California this couldn’t have been a better ER stay. It truly is concierge service for the same cost to your insurance as a large hospital facility. From the warm gel for an ultrasound to an offered warm blanket, this place does things right when it comes to keeping patients comfortable during their stay. Not to mention, each staff member displayed great patient care and concern. I was never left unattended for hours or had to feel like I was just another number in a great sea of people to be cared for. They individualize patient care and do an excellent job at being attentive to my needs during my stay. I’m extremely thankful for the staff and to the amazing people who have given patients (like myself) the opportunity to be cared for without waiting in a long line of sick people, or feeling forgotten about in one of the patient rooms. SignatureCare does patient care the right way and I’ll never be seen at a different ER.','2019-12-28 12:26:02.493000','2019-12-28 12:26:02.493000',5,'Mercy Hoang','https://lh5.googleusercontent.com/-2huaeEngCuw/AAAAAAAAAAI/AAAAAAAAAAA/exbDHEFeFNM/c-rp-mo-br100/photo.jpg','12541597562633926366',293),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDfHvWsaHA5XPN9hKzpfQNxtH8Icyt1QulaID8KFhxsDq21U0AcRhrh5poFOwoJc5whVji48xScnQf4SDilPYcaaQMprk','This is now my second time going in for checkup. Each time has been great. Everything is clean, the staff is nice.','2020-02-14 20:00:52.998000','2020-02-14 20:00:52.998000',5,'Eric Washington','https://lh6.googleusercontent.com/-gd5fWVwH1Bs/AAAAAAAAAAI/AAAAAAAAAAA/fOH-ZNWFApo/c-rp-mo-br100/photo.jpg','12541597562633926366',13374),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDfjmAg0A0_VHp4T4j1P9HFIyyY7rtWsYokngixRcK3ZXUyP2WQMZ3VUGciB_VwDLUFDeDkgIyJ987asv3dp8UpgzqDy0','Great Staff. Very detailed in explaining and helping.','2019-11-02 16:23:12.231000','2019-11-02 16:23:12.231000',5,'Leticia Quintana','https://lh3.googleusercontent.com/-xk_Q1aXWQRk/AAAAAAAAAAI/AAAAAAAAAAA/lhSLGtPdyKU/c-rp-mo-br100/photo.jpg','16389487648212004696',2734),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDFPXCZrOmjZt3GvmXI1LhlkGVpmG7YK5CNLTJMjk4aw475vyxSBNRXYmumeMCsjezY2H1f7UUvCvssOwFqtfof4SNcCQ','I drive my friend here because she was having trouble seeing out of her right eye. Everyone here, including Jacob, Becca, and Dr. Kimball were so hospitable and made sure both of us were taken care of. They offered us drinks and snacks and warm blankets and also made sure my friend got the treatment she needed within a reasonable amount of time. I recommend!','2019-09-01 17:24:05.443000','2019-09-01 17:24:05.443000',5,'Sarah Turner','https://lh3.googleusercontent.com/-FeQQud5h4DA/AAAAAAAAAAI/AAAAAAAAAAA/zLumvgJUpc4/c-rp-mo-br100/photo.jpg','16590124370714063921',3222),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDFtlIpIU_PJeEgmCKqPzHs1FVgzUORsR1q4MdRQ_JJpNpG80lihA8CrbD37Zcirg-w5N95ry1ERiVncreEDRYa6-Z0TE','When I wasn\'t able to get the comfort abd service I needed else where in a timely manner I came here. The staff gave me what I needed in a very timely manner and was very professional. Yes I will return here if the need arises. They were very helpful and kind. Thank you','2017-09-10 14:40:08.528000','2017-09-10 14:40:08.528000',5,'Diana Robinson','https://lh4.googleusercontent.com/-OAM7rVTg3MM/AAAAAAAAAAI/AAAAAAAAAAA/u28Cp0gIjCY/c-rp-mo-br100/photo.jpg','14567670160750071148',1758),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDfTRyPR9ldwVDpp7OBKigOVYdBpTS4iSMjw2RHHOH4Mx0LeAqL3D7c1jDGkEAvlW5dduJYQwhsiaWJDpxm_QnjNjBdPo','Great place. Everyone was nice and the place was very clean. We were in and out in under an hour right at the beginning of Flu and Cold season. Very impressed. Way better than waiting weeks for a marketplace Doctor to see you. We\'ll definitely be back.','2017-10-31 02:27:54.158000','2017-10-31 02:27:54.158000',5,'Clint Long','https://lh3.googleusercontent.com/-ALCoVFA_dQw/AAAAAAAAAAI/AAAAAAAAAAA/kmJzlQlQhkY/c-rp-mo-br100/photo.jpg','14567670160750071148',1739),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDFuDaG7s-ahTrynj7JV-fJRxwwxc7-l0lly3Aq4D9it-wpG0JglBoIgjIZiGwOr55RPl4oieKMQ_i3uf_RDheo0zSUOY','This place is awesome. This is my second visit with my second child and it was in and out . Marcus was the attending nurse and he made my daughter laugh the whole time . Jasmine and Luisa was able to explain billing which is rare at urgent cares . Will always have my business here .','2019-04-17 00:22:17.234000','2019-04-17 00:22:17.234000',5,'ivette santiago','https://lh5.googleusercontent.com/-qg9nIBgscSY/AAAAAAAAAAI/AAAAAAAAAAA/sCIPptV1ZRE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDfV8ph3poL_cow3ZqU6J4NYOaAYVlnu8KoFbhyCGPXhDIpJ5Y5uvnHII1B7eO6ZD8NHyOPcbgSPOiWVpwKVmtIykG2wo','The staff was awesome. From the front office to the back office. I received excellent service and great care. Hopefully I don\'t have to go back but if I another emergency I will definitely return here','2017-12-01 02:54:21.963000','2017-12-01 02:54:21.963000',5,'janice Williams','https://lh3.googleusercontent.com/-_NsH3-JAhY8/AAAAAAAAAAI/AAAAAAAAAAA/Vfee1pv_Kxk/c-rp-mo-br100/photo.jpg','14904078213800803294',2306),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDfwAqAVEw31tA2c68elhU9i382OsnQUpX1jZj_xEfNmTgiMvQ1VW0SCGd7arHHARsFrtQMIZi_IHnZ7JBEBO5_UrbHKY','My daughter needed stitches after a fall and everyone here was wonderful! From the front desk to the nurses to the doctor, we couldn\'t be happier.','2019-12-18 22:23:08.769000','2019-12-18 22:23:08.769000',5,'Natalia Chappelow','https://lh3.googleusercontent.com/-j9G5XP9Vrtw/AAAAAAAAAAI/AAAAAAAAAAA/8Nnnnbd9DDE/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4112),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDFwglH_BByJ1QtB9auB_DRPhJgol9kNR2JCuMemqPUjU_cEvgMgrsIeMMQxO9OeSRf_Ao62OX0dzokWLEH66aqv2vtPA','Everyone was really sweet. I was in an out without 30-45 minutes. Would go back again.','2019-03-28 18:07:51.203000','2019-03-28 18:07:51.203000',5,'Gracy Hacking','https://lh3.googleusercontent.com/-RBH-RozVcTI/AAAAAAAAAAI/AAAAAAAAAAA/9UG4Nh4pdRs/c-rp-mo-br100/photo.jpg','16891069708558046635',4311),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDfZ-zGlyfjN-Oxikfzd5al751MVvX1VrPd78ZjchopohpsZa_43U0JHEeq8AHrmHMRFud5en1NcF8i80E7FryYx_FD7c','Great staff Ana in registration was quick and efficient good Irving was the best nurse and my Er tech was so cool Nelson','2020-01-12 06:13:25.792000','2020-01-12 06:13:25.792000',5,'Kayy. Lex','https://lh6.googleusercontent.com/-TNwmnr2iNZ0/AAAAAAAAAAI/AAAAAAAAAAA/Ow5J_UO4rKw/c-rp-mo-br100/photo.jpg','12541597562633926366',9540),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDG0SdFSUWUmzdfJoODm1kY2taZsycq89RQiUi_7C6oBORciaqZrQdeoc7C212BpxcoH1NpIpz1UcwlBgDqy1D3bdqcy0','I walked in with extreme pain and Adam said he saw me in the parking lot not looking well and immediately got me a wheelchair and into a bed. Everyone there from Dr Rose and Miller to Cristina, Candice, Adam and others tended to all my needs. I came here from 360 and Bee Cave because the reviews were so good. In addition, they covered my deductible and copay so I won\'t have to pay for staying overnight. That business model doesn\'t make sense looking at it from a secular world point of view, but when you put people over money and things, good things happen and that\'s why Signature Care is such a blessed environment. I thank the Lord for leading me here so all these wonderful people can bring God\'s love and healing to those who are hurting. I will not go anywhere else for medical attention because there is something special going on inside Signature Care. May God continue to bless you all immensely with His love, joy and peace.\nTony Spinelle','2018-02-09 18:51:15.947000','2018-02-09 18:51:15.947000',5,'Tony Spinelle','https://lh6.googleusercontent.com/-0RP-cX3xijI/AAAAAAAAAAI/AAAAAAAAAAA/CJ64LIEPBeI/c-rp-mo-br100/photo.jpg','16891069708558046635',4512),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDGj4tDWv1FKmpfMGHtEKz_ATzHbmBvroA12jCwyAk4lRwmhZFrKFwD_gJzHjfnc554IWQjG3KMc1Dg6PUekk8U3LfYv8',NULL,'2018-01-16 02:13:14.146000','2018-01-16 02:13:14.146000',5,'Jordan Owen','https://lh3.googleusercontent.com/-4Szrp1iYv_U/AAAAAAAAAAI/AAAAAAAAAAA/79EkzpVyJzc/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1682),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDgL4HYt-imaih0RIhsZvM355xML17h5tMCwLsSTY_TQfDS88FGiWU4KX0c74PF0QSNv9ERFO2HpA7XQDKTzX0dbWO7Tc','SignatureCare Emergency Center - West Chase provides excellent medical service at any time of the day, especially for those hoping to get medical attention without a long wait of a doctor’s office. We came in for my mom following a car collision and everyone from the registration desk person to nurse, doctor and radiology tech were very kind, patient and accommodating for our visit.\n\nThey made us feel cared for and tended to our every need very well. Thank you to Dr. Faig, Nurse Kristina and Radiology Tech Quyen!','2019-12-31 20:12:37.194000','2019-12-31 20:12:37.194000',5,'My-Linh Tran','https://lh5.googleusercontent.com/-zipKqruahAg/AAAAAAAAAAI/AAAAAAAAAAA/TrFrF1uC0vo/c-rp-mo-br100/photo.jpg','12541597562633926366',276),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDGmnKn9-Y-X0FxyEGR3H4x1XqnaVDXKbTGa2ID2_VUPFPXCvpm8n_fCeysEGVsCRMvRcDdpR_YK_NislqzotLfcl68pE','We always receive the best treatment here','2019-12-08 01:19:51.364000','2019-12-08 01:19:51.364000',5,'Destinae Pierce','https://lh3.googleusercontent.com/-DYAI6OFUGFc/AAAAAAAAAAI/AAAAAAAAAAA/7btnBjkSNGc/c-rp-mo-br100/photo.jpg','8918455867446117794',9037),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDgQMqiKzXwFeeDgxlVxeDUjARK5WivaGX9VJnisNDrQyaK3AONBilgnXVBgab7ZyqgY_aih1T4aDzorHNNM8XSKucA3w',NULL,'2019-11-10 14:14:23.108000','2019-11-10 14:14:23.108000',5,'Latecia Rushing','https://lh6.googleusercontent.com/-mfrA0U4PL8k/AAAAAAAAAAI/AAAAAAAAAAA/kDdoodu3vr4/c-rp-mo-ba4-br100/photo.jpg','17898197009688164559',5451),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDGsUyK3DHVtJUV6bEXL2yQ4iBVNmgqE0PcnzBWEJU1gLdTunt6MVAu-k0Pajstjk6uFncuhsWO2jc3bp7mRBK2A_YW5c','Very fast care and kind people.','2020-02-03 19:24:53.486000','2020-02-03 19:24:53.486000',5,'Austin Sweeney','https://lh5.googleusercontent.com/-Phoj3Rn3-8s/AAAAAAAAAAI/AAAAAAAAAAA/LNttfNNJ2C4/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',13881),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDgvhBdWn6yIaLATOuJ5X_Pdh26WXx5N4VgzKH8QnvQEc1hcSsIoPgxZFcNTyis9UAzrFOoauoHofDqGmEdLWUTZieMC4',NULL,'2019-01-09 20:44:15.012000','2019-01-09 20:44:15.012000',5,'Doug Lehrmann','https://lh4.googleusercontent.com/-rJSnXuVCyfA/AAAAAAAAAAI/AAAAAAAAAAA/y-UCcytbAeI/c-rp-mo-br100/photo.jpg','8918455867446117794',9196),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDGVNuIP1i2wrd7wR7uG1sQyUgwwn1A31OoWzDH9jMnkePfq9yMMLkL0nMopNqXGY6K4neX55twGyrXDfqfwC14zB2Juo','Great service from Valinceia P., Rad Tech: Jessica, Dr. Herman, Nurse Nicole P, Er tech Shay, I experienced great service from everyone. We left very educated on all of our symptoms. Thanks everyone for the great service!!! Keep up the great job 👌🏾','2020-03-01 21:46:30.231000','2020-03-01 21:46:30.231000',5,'Kenya Johnson','https://lh6.googleusercontent.com/-1rN4lKaub2Q/AAAAAAAAAAI/AAAAAAAAAAA/faUFGVobT9M/c-rp-mo-br100/photo.jpg','8918455867446117794',17446),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDGW5ypgcU8vCQZ5uMEmzsNYHBoDDob_lhajYUZuwL5vyx_JySPZ5t1A9pEiG1HsN1LM2m95wFr0BOp7Ar1sqcVmQZez0','I came in late at night for several problems and had a great experience. It is very clean, and I was seen right away. Everyone was extremely informative and nice. My nurse and doctor made sure to answer the million questions I had while being patient about it. I was offered a warm blanket by the nurse, and he turned the tv on for me while I waited. Also, I ended up passing out right outside of the bathroom and want to say thank you to the man (paramedic maybe?) who caught me before I hit the ground and was quick to get me on a bed. Highly recommend this place to anyone.','2018-02-06 02:17:01.259000','2018-02-06 02:17:01.259000',5,'Hannah Hannah','https://lh4.googleusercontent.com/-uf3FWK0fySY/AAAAAAAAAAI/AAAAAAAAAAA/XZkLFEVNZeE/c-rp-mo-br100/photo.jpg','14567670160750071148',1660),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDH05sJNPeRHEi4SQjPLNyZAz153lKR-bZgF74hCIEtDFUymn_JQjZbTdJaPrbHgou6bBb_EvLc-P9twGXuic8TtN_JZ0','Everybody was cool and real nice .what a nice hospital ,thanks Bryan for the Wi-Fi password!','2018-09-07 01:23:34.545000','2018-09-07 01:23:34.545000',5,'Michael Ray Vasquez Jr','https://lh5.googleusercontent.com/-u821wxE8RhY/AAAAAAAAAAI/AAAAAAAAAAA/Ixg2-IP68ak/c-rp-mo-br100/photo.jpg','14567670160750071148',1525),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDH1ZanRrP6cq3GVttw0X5qZUYNG3m5oVezBoLCW4iWxTVFieROm8UMeO1WEzZrB3jMt3WqacUpQMM14X-H24pKq6kIvU',NULL,'2020-07-15 19:49:49.101000','2020-07-15 19:49:49.101000',5,'Johnny Ramirez','https://lh3.googleusercontent.com/-HATO5j7utQM/AAAAAAAAAAI/AAAAAAAAAAA/5JpHzU5f9XM/c-rp-mo-br100/photo.jpg','14748677429039074158',21760),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDH344IzLSYtcF_uWA4LQpd-b17qECWmh7Ei5YyhNeylYcXzWLoj8Rnk8SXeUSnyFWGrVd5JU-39uBfXEUg_YVZQsKmEg','It was very good and fast','2020-07-08 20:07:52.076000','2020-07-08 20:07:52.076000',5,'Francy Quevedo','https://lh3.googleusercontent.com/a-/AOh14GiyvMwd0ZGYtDj5KomkR40FWOfnE1P4jx1DHbBy=c0x00000000-cc-rp-ba3','8679688254631342173',21484),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDh4iQ3vXmBjTZ2jJ2FoBaSB31JzyrNQo-gnhNGuCfd_EuTtvTaeqwyU8ll9hmFFrm2cIHhpMuqJTKEk8XhZ8JZ-2ythk','First time here but so far seems like a great ER to come to. Very helpful and thorough staff from registration to the techs and nurses to the ER Doc. Don\'t want to come back but if needed I will feel very comfortable here. All where awesome Dr. Pham, Nurse Alvean A., Marcus B. in Radiology, Vanessa G. In registeration, Keith ER tech','2019-11-19 23:03:39.574000','2019-11-19 23:03:39.574000',5,'Randy Garza','https://lh6.googleusercontent.com/-BsBxuAhGDV8/AAAAAAAAAAI/AAAAAAAAAAA/3RIrYOwhtqQ/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',2657),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDH4k6JSioFv-YaXrMiBQC9DKck7vILP3wOgETDHclVrTmHZAKAWZR6X5S9OFEZWOc_PIeLcsb4OYw-EwSP012wc8_4OE','First time experience and it was very pleasant. There was no wait and the service is great. Seen by Dr Thomas, Sarah, Laura, and Tanishia. Highly recommend this location.','2020-01-31 05:01:01.714000','2020-01-31 05:01:01.714000',5,'Sandra Luna','https://lh3.googleusercontent.com/-kIyzlcejejQ/AAAAAAAAAAI/AAAAAAAAAAA/Bitv5wVbzn4/c-rp-mo-br100/photo.jpg','17898197009688164559',10443),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDH5KWDoEzLjsD3Rw8saVsQnCIhLzqS5UShmntGdRUPBELThN0ryiPKDQC0zwVG61PlAu32rt1lrhS6Z2rk6_Xq4WBUE4','I had to go in for a very sensitive problem I was having and due to Covid-19 my husband was unable to go in with me. I have horrible anxiety when it comes to needles and doctor’s offices in general and had already worked myself up pretty good by the time I arrived. Nurse Adrian Ramirez walked me back to the room and listened attentively and showed great empathy for me. Nurse Rebecca Miller was truly heaven sent during my visit she was caring, thoughtful, supportive and attentive. She held my hand and walked me through the entire procedure went above and beyond with her care for me. I am forever grateful to them both. The physician and all other staff were amazing as well. A great clean clinic who is run very efficiently. I would highly recommend them over any other emergency room in town.','2020-06-28 11:37:50.992000','2020-06-28 11:37:50.992000',5,'Rebekah Redfern','https://lh4.googleusercontent.com/-GFKkRwmW6Z4/AAAAAAAAAAI/AAAAAAAAAAA/Zn9KmfjraqQ/c-rp-mo-br100/photo.jpg','6521947413723274945',21481),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHAgp300yDvyUXo67ibmnFFB140Vh3QY_Oo2Gy41vIjHAGSYERl8Nme3qK8_JNgWG73FaYMk0v3s4ZwX8U_GDcgaJWVk','Took the missus here for some chest pain, staff was very kind and helpful, kept the mood up.','2020-01-13 19:20:12.912000','2020-01-13 19:20:12.912000',5,'Mizraim Reyes','https://lh3.googleusercontent.com/-_qdXnjyDAws/AAAAAAAAAAI/AAAAAAAAAAA/Mjm5X9L15tA/c-rp-mo-br100/photo.jpg','16389487648212004696',9735),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHATNxlLf2QxY_eQqhw7wgFtB_vFlg2JOIejiUyxO7ow0MCcE7baEAn1k2CQnMEBfaIhxVMDOolNzIKEcK2kra7lwIyY','Super helpful from the beginning. Nurse Tyler M. was very sweet and attentive as well as the Dr.A.Patel. definitely recommend!','2020-05-21 00:12:43.102000','2020-05-21 00:12:43.102000',5,'Nevaeh Lomas','https://lh4.googleusercontent.com/-pw2f_SXJo4c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnwk_YxKVleff52hnMTxt4Kt8WB6g/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22084),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHaYh7NRKCxfQcjU0xjnC0sWUovL1CS__k-M-_lpdXh8OPvSIG63UhqoJZT5daZrjKTI-WHA7WGthFQxIMe1ntBt2_pI',NULL,'2020-07-24 22:11:49.643000','2020-07-24 22:11:49.643000',5,'jaylee weaver','https://lh3.googleusercontent.com/a-/AOh14GjAWysC5klhvV5Oy-xmMqmH-MsDObJbFeAxTZJgwA=c0x00000000-cc-rp','6521947413723274945',22215),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHBrACk0_OuNb_gCt8sEd5jKptxqfhU8RBWZDydIksORg98yijj_8V_-6iUHE1aLlb_SNW0EKevB1rc8uLUqrlN4xUsE',NULL,'2018-10-06 23:15:50.630000','2018-10-06 23:15:50.630000',5,'Grecia Batres','https://lh6.googleusercontent.com/-TDbsrGU8qpQ/AAAAAAAAAAI/AAAAAAAAAAA/hIiQ6BfGa48/c-rp-mo-br100/photo.jpg','17394740196501090048',4773),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHDvtfpVUR6HbIKi7GI9sEauGzKAPDuKyuDBIMTe0eLQ8NUOV1sUu0O_vf3HE74krW7eS_hAyu5t2vv1bz4V1AeHyhQE','I always come to this place any time I am sick. Every time I have gone here, there is hardly any wait time (which we all know means everything when you are sick). The front desk clerk is always warm and welcoming. The whole staff is amazing! I was seen by RN Shelli and Doctor Lingan. They both took time to listen to my concerns and address my needs in a timely manner. I always there leave feeling like I received the best care possible!','2020-03-01 17:57:57.939000','2020-03-01 17:57:57.939000',5,'Kelly Barton','https://lh4.googleusercontent.com/-jPdoD97xoFQ/AAAAAAAAAAI/AAAAAAAAAAA/BvQrDsfuuQs/c-rp-mo-br100/photo.jpg','16891069708558046635',13922),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDhFbGJcHnAunS_sbxGhJtkRlkFH1CSReH4YyTT7cLd4_75VNpOai7O0CVuz4xki0Kazq9Zz0UCVktT0OHC0HchRdPys0','Great experience! Ryan and Dr. Henderson took great care of me and made sure that I was comfortable throughout the visit. There was no wait and I was seen immediately. Will use this facility in the future.','2020-01-22 03:14:17.100000','2020-01-22 03:14:17.100000',5,'Angela Fleming','https://lh5.googleusercontent.com/-N7L2y4IrdZ8/AAAAAAAAAAI/AAAAAAAAAAA/YOMLZfNCzhY/c-rp-mo-br100/photo.jpg','3272657195432704501',10290),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDhfzCRUqe6-_8Y6743fcUSmBRk4xEQSbOh6ELzGStJHpLC0UKlS9QChlcc0LiUBrUgQ2xTSwRcv8cf8DQIds9y4jgtrw','This place is amazing. Been here multiple times. Even if your problem is too big for them, they can arrange transportation to a larger hospital but bypass the hospital ER. Every time I don\'t think it was more than 10 minutes between walking in and seeing a nurse and doctor. They always make sure you are comfortable by getting you blankets and water. I would highly recommend this place instead of a old school ER visit. ','2017-07-13 13:12:57.070000','2017-07-13 13:12:57.070000',5,'Adam Gottlieb','https://lh6.googleusercontent.com/-KXEB7Z2bI9k/AAAAAAAAAAI/AAAAAAAAAAA/jamr5c3O3w8/c-rp-mo-ba5-br100/photo.jpg','3511292162159714121',7802),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHhkIgyPuPNPqz4SDuxNzWVxjKF0_5KHm6-_9RU-GAhCx3E-E3OlEMDNverfnzhIp6FGxq0NWMaAgMMQ7tTGt6g04zwY','WOW! This emergency hospital is AMAZING, absolute no wait. No worries on going to the hospital when this is just around the corner in my neighborhood. Nurse Laura was very personable and warm, listened to all my concerns. Dr. Yusuf was very knowledgeable with my injury. All the staff is is OUTSTANDING, you can tell they love what they do! Thank you ER CARE 24 Montrose!','2019-01-30 23:58:12.053000','2019-01-30 23:58:12.053000',5,'Realtor Matthew Ersler','https://lh5.googleusercontent.com/-KbaOvh3f8B0/AAAAAAAAAAI/AAAAAAAAAAA/qcLnu1A2b5Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7428),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHMd03yxcCDJFxFhbzDljvmZfTnNToSiLL3d7zG-iHQrhC8cQFjlPTbTzJnCS0c8ySwzUORGv2NvUEpihLP7Rs9Cscvc','Entire staff was super nice, got me everything I needed and made sure I was taken care of. Will be returning, hopefully not too soon. Nurse Anthony was extremely helpful, the tech Natalie was very careful taking my xrays as to keep me pain free, and Dr. Frausto kindly assured me that I was going to be ok.','2019-03-26 01:38:26.888000','2019-03-26 01:38:26.888000',5,'Trey Brown','https://lh3.googleusercontent.com/-7VHfb99pJ60/AAAAAAAAAAI/AAAAAAAAAAA/VIuNIgez5CM/c-rp-mo-br100/photo.jpg','16590124370714063921',3479),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDhO_kEUenRL9n9xhtW88OKk0Pli-_lE1rvAYiSp_O_YHIQ2Cxz6-d8bUjq0JYrslrq6hfgTbGEqLSU3HI1k8uH4z27wA','Dr. Edwards, RN Shola, RN Irving and RT(R) Thao were all so wonderful! Made a stressful situation better by the time we left. Definitely great ER care.','2019-09-01 04:46:11.406000','2019-09-01 04:46:11.406000',5,'Sobeida Diana Rodriguez Valadez','https://lh6.googleusercontent.com/-O0hl9KrVdRQ/AAAAAAAAAAI/AAAAAAAAAAA/_QOijgj7CU0/c-rp-mo-br100/photo.jpg','12541597562633926366',438),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHpYh-WbOxPVZspWfJMTrDpiSEuPr8SjF1vV8mjDD6N5JnYlhH5RmNmWjxwconuT_uTzBAkfSQVXKUhDPhr4kd7yzqMM','Great service, I was in and out and the staff were incredibly courteous and friendly, I was helped by Anthony and Keera as well as Dr. Werzanski, all of them were great and I would highly recommend this place if you have an emergency!','2018-11-02 04:00:42.202000','2018-11-02 04:00:42.202000',5,'Kireet Koganti','https://lh5.googleusercontent.com/-HlGDBVPqm7k/AAAAAAAAAAI/AAAAAAAAAAA/LVH-DlGrniM/c-rp-mo-br100/photo.jpg','16590124370714063921',3675),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDhsjULNlKZaVg1-SgoiWGg6QqJjg0Lh34LsX71dE5UZgaVper2jpkd8yY3vTKken-ccpPc0hKR-7s9QEkzCyjE7NPpuk',NULL,'2020-02-25 05:29:38.723000','2020-02-25 05:29:38.723000',5,'Jacques Mayer','https://lh6.googleusercontent.com/-4Pdx-2sG9_k/AAAAAAAAAAI/AAAAAAAAAAA/baKyBDbknwg/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',14006),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDHTI0Er-XO08YYSyn95nrEl2B8bGC0x3dZ7oKEwJDJOMzu3uiBmC_9lF_sTUyyb43XbM7w0JpSP--yMZftXEmPdTru88','We arrived at 3 AM with our one-year-old and 107° temperature. Dr. Sylvester and his team immediately got into action to reduce her fever and to identify what was going on. they did a lot of tests but they determined finally that she had pneumonia. From the minute we ran in and from that point on the entire staff made sure that my husband and my daughter and I were comfortable the entire time by making sure that all of our needs were met. We spent a long 12 hours at the emergency center under the unbelievable care of Dr. Sylvester, Dr. Miller and their entire staff. They took care of us like we were their family. There is no doubt in my mind that if we have another emergency we will be visiting the signature care center immediately before going to any emergency room','2017-07-20 18:43:26.861000','2017-07-20 18:43:26.861000',5,'Paula Reidler','https://lh3.googleusercontent.com/-K-08VVy0q0U/AAAAAAAAAAI/AAAAAAAAAAA/zEVjlygXsFA/c-rp-mo-br100/photo.jpg','14567670160750071148',1790),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDI0MrhLLCyrViZsdKxwldhnl6DgAfCjtClR-nx0hFFWwI1_LDRS14EUikjkX0vGaT6vH-iQVgR05vpvg0dJ3zUZT5OGU','Dr. Curtis, Jennifer, Helen, and Austin were a pleasure! They were very helpful and very courteous! When you don’t feel good, it makes a huge difference to have patient and caring professionals taking care of you!','2019-01-03 10:18:14.778000','2019-01-03 10:18:14.778000',5,'Melissa Bradford','https://lh4.googleusercontent.com/-rAIoXD_LYN0/AAAAAAAAAAI/AAAAAAAAAAA/hYVGEkYRaVQ/c-rp-mo-br100/photo.jpg','3272657195432704501',7069),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDi5uKXLVb7Q5kOa591aNAdmkG-fNujRjPv89EKM52qwt9nkzykb2xx69QIqTR2HUsDKMx26YK7T-3uG9DvekIdkum5k4',NULL,'2019-05-27 03:02:18.122000','2019-05-27 03:02:18.122000',5,'Sonia Galicia','https://lh4.googleusercontent.com/-rz0btyhvY5M/AAAAAAAAAAI/AAAAAAAAAAA/T1I5FCiUmEo/c-rp-mo-br100/photo.jpg','17898197009688164559',5724),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDIEksofUEWaAQv-sndrHEq0-Ih0xfIMJL-epnM5SwwNctLX2_WscTTJ9_U3-XfV2dT5vaNhPn7zGCLc7lmNRSK-2N39c','The facility was great! From the front desk to Dr. Henderson and his staff, it was a great experience. The whole staff We\'re kind and accommodating. They made my whole family feel at ease. I would definitely recommend them again!!','2019-03-20 23:40:48.876000','2019-03-20 23:40:48.876000',5,'Barbara Newman','https://lh4.googleusercontent.com/-k1TK5Oll8XI/AAAAAAAAAAI/AAAAAAAAAAA/wCoHw491Vvw/c-rp-mo-br100/photo.jpg','17898197009688164559',5801),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDiF-uSfcKj6YFwyqEy_9JFfpzSbmel50PlHk0_bTOW5nccS2j_XksEca1HGurPaeQZ-WXxumXWJfcXcgBf34T-_NJsbU','Everybody was great and welcoming. Alvean gave me the easiest shot in my arm, I barely felt it. My birthday was yesterday and Jesus paid enough attention to tell me happy belated. It\'s hard to find amazing customer service at an er place but that\'s what you get any time you come here.','2019-07-27 13:53:46.160000','2019-07-27 13:53:46.160000',5,'Dominic Maxwell','https://lh5.googleusercontent.com/-IsF3kZFFOhQ/AAAAAAAAAAI/AAAAAAAAAAA/5WuFAAuTDro/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDIJSVly0fg3RidQeXugm4Lmp1TQyF_x7fVS-2_unmEy-3If1VxAcoE1fQIBQ6n4A-LBL6PWMR8Jre4eCvO4mgAGfyfwA','Great service!!! Fast and easy and friendly','2019-10-02 03:52:15.824000','2019-10-02 03:52:15.824000',5,'Mpc Mpc','https://lh3.googleusercontent.com/-uLo2p4o3y9A/AAAAAAAAAAI/AAAAAAAAAAA/hszyUD5fr1E/c-rp-mo-br100/photo.jpg','17898197009688164559',5525),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDImvky_QmHX3R1VbsJ3i_b0CXNzirKqJTdktsQmZ8gpGhjFP03nEPci0xGgorRtNXqRCpCsIoi0aKHnYX_1eTYeY6VNc','Dr Grinblates and the (entire staff @ E. T.C Jester) from the front desk to the Nurses was exceptionally superb!!\nCame in on 3/28/18 at 5:30 p.m. and was seen within 10 minutes and left by 8p.m. The entire staff was professional & very friendly. We were impressed on how clean,fast & affordable this place is compared to any Emergency Hospital.\nWe came in for a swollen knee/leg and received treatment. The Doctor’s and staff answered all our questions. We would highly recommend to our Family & Friends. We will not hesitate to use their services again.','2018-04-02 20:45:41.755000','2018-04-02 20:45:41.755000',5,'Annette Gutierrez','https://lh4.googleusercontent.com/-Yu153vkIBwc/AAAAAAAAAAI/AAAAAAAAAAA/RUUNHfbQ3Gg/c-rp-mo-br100/photo.jpg','14567670160750071148',1640),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDIscqWysINDMWF9tLwkB1DZ0m_fhuKdRkCQ3lYpJqOpDGH6qJ_-FpLJuCJ6B1_K12vwRm7tkeXl1cMP4ojhYs7yXltf0','They were quick and very nice the ladies were awesome eliza,lisa p, and many thanks guys','2019-12-15 19:14:58.813000','2019-12-15 19:14:58.813000',5,'Galen Little','https://lh3.googleusercontent.com/-3g7Rv0wxOpY/AAAAAAAAAAI/AAAAAAAAAAA/GDJNPXssMOg/c-rp-mo-br100/photo.jpg','6521947413723274945',8061),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDiZwKcgBbW5c9PxpuAa8B1O-NHzy9ucouiM-MWUh-qq102O5FWJNATlWCpTdyhsVK5LMF_ZOA4-3KBP1CYTTmOd43IRU','Love everything about Signature Care!!! Lucas was very friendly, very informative. Eric was awesome in all of his testing. Carla was spot on with registration!!!','2020-03-01 16:42:30.671000','2020-03-01 16:42:30.671000',5,'Amanda Easley','https://lh5.googleusercontent.com/-vv7UhJLI95w/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckOIYYqmTKwEkaNmugfLt-Be0Vb2w/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14306),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDJ1o54m1Qe1EtwPEHcoOhzR3dN5McQWiMw4X_cjVyg0B55Pf9Z3a9i06OhnxUjbuFPk2eNCmeNVlXzEidh5tIePhwMuQ','Rude staff... went here on a Friday and was told I needed an appointment so I go to my car and get online like I was asked.... none avaliable as I rolled it out to October (3 months away)\nI go back in to explain it must be a mistake and they tell me that the scheduling opens right at 8am and I can try again tomorrow.... 7:59am I\'m ready, I just watched the hunger games so I\'m ready to get my appointment... \"tick\" 8am... one slot open for the next day at 7:50pm... this will likely be my last log entry as I fear I will.... not..... make.... it....\nNo seriously, this place is the worst...','2020-07-04 20:02:39.119000','2020-07-04 20:02:39.119000',1,'Karl Wirth','https://lh4.googleusercontent.com/-XYyiW30XMV8/AAAAAAAAAAI/AAAAAAAAAAA/-uSeFsGpuhY/c-rp-mo-ba5-br100/photo.jpg','14748677429039074158',21386),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDJ5XXDy9Y1GtPeK7oWj5lz6rAySfLwy-n4XilD_3BJMmRyl0J1rfn1fBuSiOABGoupu3lRLMPY4vf_71MHrZ54Fl6w04','Very good experience','2019-08-17 22:32:01.566000','2019-08-17 22:32:01.566000',5,'iqra ayaz','https://lh6.googleusercontent.com/-Wqz_pQ5VU68/AAAAAAAAAAI/AAAAAAAAAAA/ze4oBofI9Dw/c-rp-mo-br100/photo.jpg','8918455867446117794',9077),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDJ7xABSd04SGe_q-3EbNzf67X7uAkBH3Ykyk5KFkHywVQaQ1rJG5lwJjJ3_v5yG_k2UqhoBqwRZFVokcmFDDj0OxLJu0','The staff made a crappy situation not so crappy.','2016-06-21 15:19:43.956000','2016-06-21 15:19:43.956000',5,'Andrew Rohr','https://lh4.googleusercontent.com/-oTg0g6PVG2w/AAAAAAAAAAI/AAAAAAAAAAA/fEXr7nHEP2Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7975),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDjBFh5WIYn3y-1mKFx59gvKmLNaOz_WLhIGrz9oL5P-DFFRzj6nOrxssy_bVZCTLTkWxQli-mz1hA1g6O66nDQPaNKgU','The ER was very neat and clean. Tiffany who registered my pretty much brother was nice and very helpful. She made sure we were comfortable. My first experience at the ER was very pleasant','2019-04-29 01:12:50.993000','2019-04-29 01:12:50.993000',5,'Britney Ricks','https://lh4.googleusercontent.com/-7F_nqMFYWX0/AAAAAAAAAAI/AAAAAAAAAAA/UC-lsbA9Mds/c-rp-mo-br100/photo.jpg','8626688543755174284',8500),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDJBfoipvftF-6rfIKPD24xOWjr_nLSSukMrvxBP47uA6hpJt4Y_-Vn3dJ-qFjs5kYM9VX7sxS9dn--RiFu4njl7EBZug',NULL,'2017-08-14 05:28:04.504000','2017-08-14 05:28:04.504000',5,'LeShea B','https://lh5.googleusercontent.com/-t477xzgUbSY/AAAAAAAAAAI/AAAAAAAAAAA/hbkYzCP0ux4/c-rp-mo-br100/photo.jpg','17394740196501090048',4996),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDJGyD39SiYCmkDsWOs1YyFMrWCvAgqhlgR2kind87V-AnNugzSyCauQI8czhio3zxtl9QNvzvMMNQEeOhpCWF5_Xxk2c','The staff were all extremely friendly, and talked me through everything step by step as we proceeded. Definitely a good place to be at a bad time.','2017-11-22 08:41:58.232000','2017-11-22 08:41:58.232000',5,'jullian boentello','https://lh5.googleusercontent.com/-U8JsUjhot7M/AAAAAAAAAAI/AAAAAAAAAAA/wIBXEK2z8So/c-rp-mo-br100/photo.jpg','3511292162159714121',7757),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDJioQ_qkqCGSjAQ5IJ6-oaKJG6VoBjVH-Aks7b7AlsamXMesaXhZLJjlPE9tIHAbxyVLtU2muP4cnGYvx-uifWHqW9ys','I had a horrific experience happen to me and the staff here could not have been more calm and caring. Doctor O’Malley was very professional, walked me through what would happen and handled the situation with the best care possible. Would recommend this place to anyone!','2019-10-10 22:31:08.547000','2019-10-10 22:31:08.547000',5,'Kara Ellis','https://lh4.googleusercontent.com/-wcVszY9Sti4/AAAAAAAAAAI/AAAAAAAAAAA/M5JqWQuKcz8/c-rp-mo-br100/photo.jpg','16389487648212004696',2831),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDJK1NutJPiZm_q-VtnrFWyiC02o3ChOQWUotEuvKRaKRCS1Q8QoCcqZf3J8vHj_DBpr9k7V1U8d9C10BXzoPcU1I1vPo','I had an eye infection and my PCP didn\'t have any availability until 2 days later. And there weren\'t any urgent care centers in network in my area. I was eating across the street and decided to call them. I told Terra my situation and she said they could work with me, financially. I came in and was seen even before I could finish my paperwork. Everyone there was extremely nice and the amenities are really fancy. It felt more like a spa than a sterile ER. I\'d definitely recommend SignatureCare!','2016-05-02 22:14:07.213000','2016-05-02 22:14:07.213000',5,'Michelle Nguyen','https://lh5.googleusercontent.com/-TvN5RgCy1UU/AAAAAAAAAAI/AAAAAAAAAAA/DBkdxaTjoSs/c-rp-mo-br100/photo.jpg','3511292162159714121',8011),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDJKGIvzebpzABiTVnwmE4kDA6qOBytevndbZCeOgEZ_0U5o_fjvOv18z4NEGibRi5bXi0_aN7TkTMqcglBqfUjJVcsy4','I had a excellent experience. I got to watch tv and eat snacks while here and the staff was very friendly her name is Patricia C.','2019-12-27 19:54:25.602000','2019-12-27 19:54:25.602000',5,'Doughboy Torrez','https://lh6.googleusercontent.com/-_7bTB3HqMes/AAAAAAAAAAI/AAAAAAAAAAA/HQrtmSGtk38/c-rp-mo-br100/photo.jpg','16389487648212004696',2506),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDjq-rCuYXIuuf2chk8ukA-wIAFyJgbRp5FSKDq6F69fb-Uasel2MUIL796R9J3_GT8iJnoQNvEuw48P-NhbHCzScX1U8','Everyone was very helpful and efficient. Doctor O’Malley was very nice as well. Keaire and Dawn were both very sweet and consistently made sure I was doing okay! Great clinic.','2019-12-21 16:02:16.436000','2019-12-21 16:02:16.436000',5,'Allen Hadi','https://lh4.googleusercontent.com/--cDWJntrWTw/AAAAAAAAAAI/AAAAAAAAAAA/O1NJDpCOmwE/c-rp-mo-br100/photo.jpg','3511292162159714121',14476),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDjUrrfltEa3wMp9oxDhPjoyhBXfEZ5XYFbFnhCEeI6nI1m58F_oyBl680yRwYayDNsufxBi_851bIhhuAa3j-Ljyw7sY','Great place... they took care of my hand very well when I cut it and the staff are good people. Highly recommend','2019-01-18 20:48:20.029000','2019-01-18 20:48:20.029000',5,'Jared Gutierrez','https://lh5.googleusercontent.com/-LU6e-Ewvf4c/AAAAAAAAAAI/AAAAAAAAAAA/VnoVrmGXxnU/c-rp-mo-br100/photo.jpg','3511292162159714121',7465),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDjW5KdHXaPa-hBbKjSAlRZPtYEQzFZLPRR1C2aOJEgbLLr5A7HiX6_j-rGQ8h63CPQwdFN2Ul4HaDeTaSI_8T6qBzyRA',NULL,'2019-11-25 01:58:31.834000','2019-11-25 01:58:31.834000',5,'SUSANA FUENTES','https://lh6.googleusercontent.com/-x9C6R01dpCA/AAAAAAAAAAI/AAAAAAAAAAA/5W-hU5C44zI/c-rp-mo-br100/photo.jpg','13486358490203335051',719),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDk14lTevxC914IKNdkx4eZXUR_4Ksv35YRe4YNdfVj8ChRpuQilkHRLNYnswOC2GZuAMWEfxAJJXVnERre7OJmJBUfSI','My husband has been here twice and has loved the service here! Brought my 9 year old for severe stomach pain and Tanishia was super friendly and explained before the visit how process normally go. Er Texh Mathew was so nice and explained to my daughter everything he was going to do to her which made her feel comfortable and trust him. Nurse Jaime was a very good listener and took notes of everything I told him. Super nice and fast! Doctor Farooqi was amazing! I appreciate her so much in helping my daughter! My daughter loves her. We will for sure be back if needed to but pray we don’t lol.','2019-04-22 03:12:21.226000','2019-04-22 03:12:21.226000',5,'Jenny Grohs','https://lh5.googleusercontent.com/-YkTEnIO8P3A/AAAAAAAAAAI/AAAAAAAAAAA/n1AuH0iDea0/c-rp-mo-br100/photo.jpg','17898197009688164559',5765),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDk3mIt2tIy0DPgQ_bS0cnfeAaCbuFOYXs3sUPolSTdAT7H5FP_MQzBd94G0m_seP5IsNgZmW_LTR8NwXm5Aeh9rs3G54','Great experience and very knowledgeable providers! Remington, Dr. Wang, Lorena and Laura were amazing!','2019-11-09 21:41:48.010000','2019-11-09 21:41:48.010000',5,'Mackenzie Boudreaux','https://lh4.googleusercontent.com/-tnJb3eojYQA/AAAAAAAAAAI/AAAAAAAAAAA/CvnIizWUpAk/c-rp-mo-br100/photo.jpg','16590124370714063921',3093),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDK4i0jzg07n8Gn-7Y4VcaRVHkJUkmXM1D59Q4IoqX-qSoHjxMEVGSnwOg8vlMn05jngRPf4JpFkXjf0KPbkQudcApWks','This was the best experience we have ever had with an ER center. The staff was so knowledgeable and friendly. Thank you Alvean, Tricia and Jocelyn for rescuing my daughter’s wedding day!!','2019-05-25 16:22:07.901000','2019-05-25 16:22:07.901000',5,'linda mccormick','https://lh3.googleusercontent.com/-hT3YqUb_PBo/AAAAAAAAAAI/AAAAAAAAAAA/RTinZwgVfhg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDK5Bk_Rj6t-p3oBXpeAANpCuF8rH3fdDqDXkAQLl2bEQBrn3oHEv9BzEa95g332UAAeTfBlJ2TyT3LeYLbfLvIIZwQx8','Alyssa was amazing... The service was wonderful.','2019-08-30 13:08:14.009000','2019-08-30 13:08:14.009000',5,'kirah mayes','https://lh4.googleusercontent.com/-0KFUjjSgz2A/AAAAAAAAAAI/AAAAAAAAAAA/MaAjshy1SeQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9072),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDk7VfU7xbg2N4p9r79DjOCzKGnc1qvpAsXvF48tYk-l9vylNnk4PIWI2fjVzQG7jIKRv6ibQt7aWEH4Y5QhmG-GJ03RE','I want to thank Dr.Pham Nurse Alvean A Radiology Marcus B and Registration Jesus C for such a great experience here at the Signature Care Cypress/1960. They went the extra limits to make me feel comfortable while I was there great atmosphere. Thank you for you service job well done.','2019-04-16 17:03:33.693000','2019-04-16 17:03:33.693000',5,'Theresa Isom-Glenn','https://lh6.googleusercontent.com/-KM6YqewjaR4/AAAAAAAAAAI/AAAAAAAAAAA/bq4iY7EpjeI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKfmKQPYgC1-ysVoHQEsC3OF88PnmcUKrBBdt2wVJeHr1qakyjyv9evGI1RzKCpGZwvdOE-PC1SMzKapwgIi0BsQcxng','Amazing and caring staff, from the front desk all the way back to the doctor. Definitely where I will be going from now!','2020-02-12 00:11:04.700000','2020-02-12 00:11:04.700000',5,'Tonya Crenshaw','https://lh3.googleusercontent.com/-gvdR6a65w1c/AAAAAAAAAAI/AAAAAAAAAAA/IBohr10EMbw/c-rp-mo-br100/photo.jpg','16891069708558046635',13952),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKFNYmOT8hZLQIr4Xk7umPBCkMFau93TEcmSLwVcwTsEgQ0DB3-WLuS4bjQmSou1ZELDBxr2ISkX2apnigWe0-c-6WlM','My husband and I received service on two different visits, once with a fractured foot and once with a torn shoulder. The doctors and nurses were extremely compassionate and helpful. We were treated quickly; we only waited five to ten minutes. Based on my past hospital experiences, I saw that the charge was a tiny fraction of a hospital charge. During my second visit, I was suggested to be seen by a specialist for continued treatment, so they gave me a sling and prescription so I could hold on until I get an appointment with a specialist. To my amazement, they didn\'t charge me for that visit and provided me with a free service. It make me feel like I\'m being treated by a non profit organization. I highly recommend this location to everyone. Cau Lee','2017-06-12 20:53:45.353000','2017-06-12 20:53:45.353000',5,'Kevin Lee','https://lh3.googleusercontent.com/-4q2EtUz5MCc/AAAAAAAAAAI/AAAAAAAAAAA/DD5hfYBbId0/c-rp-mo-br100/photo.jpg','17394740196501090048',5036),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKKbnGzTXK74MjxXF0c3UEItRpJxM_hb447SLZtSfnnDDDtVyu-rvCcOZnZ24AQXFngryS7LuwmRJIwbPPgYJ-IJntRk','Friendly staff!','2018-07-30 04:48:13.995000','2018-07-30 04:48:13.995000',5,'Zachary Stern','https://lh6.googleusercontent.com/-UFmjSEWRBeE/AAAAAAAAAAI/AAAAAAAAAAA/LLWj5wy_ktE/c-rp-mo-br100/photo.jpg','3511292162159714121',7680),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDkNH9Au5-N59Ai7zy02ruP8edux1uipKXZHdOu8nQWF4ww5P-cD4ut9QlT8PntJPYPuQdNpCJpFXfsHcFbAKfQAdSlco','The staff at Signature Care Emergency Center was GREAT. The team of Dr. Edwards, Jesse RN, and Wendy Tech were amazing made me feel comfortable while I was being treated!','2018-09-01 14:17:56.804000','2018-09-01 14:17:56.804000',5,'Keely West','https://lh5.googleusercontent.com/-7gomxb9lQI0/AAAAAAAAAAI/AAAAAAAAAAA/XL7_tLKCFds/c-rp-mo-br100/photo.jpg','17394740196501090048',4811),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDkpw_3Wb4iuriNaUozk-mn9M0Mji8nY9U5kCfjUXz6ilOP1LHaVq-mgtKzE0DZ-aU4oURg7EtR8wshK4HeHuJM_3esnE','Everyone was very nice, and it is nice to be treated well since you are the patient in need of help. Caring, smiling and laughing is good atmosphere for patients. Everyone is so friendly and I am very thankful you are in this area to care for me when we need you. The Doctors, nurses & staff are professional and very thorough. I will continue to come here when my family doctor isn’t available. I was very well taken care of. Thank you very much!','2019-09-27 12:28:20.272000','2019-09-27 12:28:20.272000',5,'Maile Barros','https://lh6.googleusercontent.com/-S3M1ZLs1bZw/AAAAAAAAAAI/AAAAAAAAAAA/cyNmmbealGM/c-rp-mo-br100/photo.jpg','2694018788013845459',6058),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKQFFduXYKq2SEKCX9xEQ1TBCqfa43rwTcX8AUiOXCMLfvdqyYu9YkjkYK4W5sT_URZIwO1S_Rcotf4Cy9IO1VvEvckw','Covid-19 test results same day.\nHowever we called up the the day before asked them if they took Tricare. They said yes. We get there and now the receptionist says they do not take Tricare. So they charged us for the test. After the test another lady asks us about our insurance. She says they do accept Tricare. We were refunded but leaves me thinking we almost paid $175 for something that was covered in the first place.','2020-07-15 23:46:22.201000','2020-07-15 23:46:22.201000',2,'Ruben Hernandez','https://lh6.googleusercontent.com/-XRYTMqR3kmQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclExSru515rfO46RNRqvNOugEkoJA/c0x00000000-cc-rp/photo.jpg','3272657195432704501',22125),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDkqXPoiBU-af8cy82Dw5YCocjz7w1UnbH9csKbDw5whMYKaPibC94c2S4ZXUp-Mhg7yDOKF9_hU0AUowaRUYRFaMm_Nk','My husband was seen Awesome group of people. Dr. Ybarra, Rollie, Natalia and Stephanie','2020-02-25 07:42:45.415000','2020-02-25 07:42:45.415000',5,'Apriel Woodard','https://lh5.googleusercontent.com/-18b2evtWE10/AAAAAAAAAAI/AAAAAAAAAAA/wCCLMpPE36s/c-rp-mo-br100/photo.jpg','8679688254631342173',14730),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDkstJvpyWutcMdcaGfw0XX40NT5JwsVBIIIHJfWgk79xz0y6FRplsx0hiEXu9vOSxd0PQHRK8hDtL8r7diVyI41NSiDc',NULL,'2017-08-08 11:10:01.061000','2017-08-08 11:10:01.061000',5,'AISHA BLACKSTOCK','https://lh6.googleusercontent.com/-enT649eg3t4/AAAAAAAAAAI/AAAAAAAAAAA/Zdz8M9_M414/c-rp-mo-ba4-br100/photo.jpg','8918455867446117794',9371),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKu0OkBaT-d2FwlAjDXMLc8TL0mg-35ZWS7P50FNm1_i15r6wPDLSQcwnQER5hMqdn9op-NhZZ1mZu7jni9eA9Cv-Gis','Amazing place!! Quick, efficient, and very caring staff. An extra thanks to dr Patel nurse tammi the rad tech Nancy and Norma for all there help!','2020-02-23 15:39:54.622000','2020-02-23 15:39:54.622000',5,'Rachel Lovejoy','https://lh5.googleusercontent.com/-FTDwSNucxW8/AAAAAAAAAAI/AAAAAAAAAAA/mmxvlQsJMuk/c-rp-mo-br100/photo.jpg','17394740196501090048',14009),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKuhNk8mperlH4--qlc3CWI8WChIYbd7G-2JLi-NLVlPMCvEo8Y_gLEjjfFxtbcwl8APRGwmH109MHYyf3saN8swHx4Y','Nick was great! The staff was great ! Jeff dr. Yusuf Leslie and dee! Facility is so clean and service is fast','2018-08-11 17:59:37.889000','2018-08-11 17:59:37.889000',5,'ivyon ellis','https://lh5.googleusercontent.com/-kMMr_WqBFFY/AAAAAAAAAAI/AAAAAAAAAAA/gsFToHkE4wI/c-rp-mo-br100/photo.jpg','3511292162159714121',7631),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKUI8rbmmXG7Ct7r-LwaiH7CcWTdCN4-U7tEWYO4y0r-fqW82TLMSv_GVz1HLQhQMtThBWRHKq7neQyvDBKEkHeinWgw','I had food poisoning tonight. Dr. Kimball was very nice and informative. Kendra was very welcoming and patient. Overall great experience at SignatureCare','2019-12-28 12:45:26.604000','2019-12-28 12:45:26.604000',5,'Alec Pinon','https://lh6.googleusercontent.com/-jgNQg8-NxKY/AAAAAAAAAAI/AAAAAAAAAAA/T-gVOhruMa8/c-rp-mo-br100/photo.jpg','16590124370714063921',3002),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDkVTboy7owXyzRAqLh--1luSoQ8XE0iDTfKdOpWs8RuXZRQ8FTvoGKf6YlaLlVO_7VV2kBxdhYVQ9iGkKHBXKX-VgF4Y','Great facility. Friendly staff, very clean environment and knowledgeable doctor.','2016-07-20 01:57:53.786000','2016-07-20 01:57:53.786000',5,'amy chervenka','https://lh3.googleusercontent.com/-nKLR0eWGkuQ/AAAAAAAAAAI/AAAAAAAAAAA/wrwDz3QTVk8/c-rp-mo-br100/photo.jpg','14567670160750071148',2005),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKVW8GriUSoxtePHnE2UFwUkamtNt8SB1_fuD1dR6sxq4S5zyAnWEbAs8qbSwuIBywT2HpO7tMBx6UwW2QaEDJHT_VUc','This was an amazing emergency room I was seen immediately they took all the proper steps to make me feel better and made me feel comfortable and safe to be here I highly recommend this ER to anyone!','2019-10-16 16:09:44.935000','2019-10-16 16:09:44.935000',5,'Christiana Green','https://lh3.googleusercontent.com/-CSFF44-UmGg/AAAAAAAAAAI/AAAAAAAAAAA/zMB_L0ShAG0/c-rp-mo-br100/photo.jpg','2694018788013845459',6044),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDKWroBYQVM3ZVI5MEoKTSlw9pUjTI4-RNxSEGiOs5gksaW4UNVrv_HaRzZXfEeBEKqli2oVCjvrBO5vS4aYC21nLQZs8','Great place! Aerial is amazing, frank is the bomb, Trisha missed my vein w a smile and a sorry lol) Josh’s was awesome and dr. Jones was awesome and will come back again. Ps. Aerial was beyond amazing and kind ;)','2018-09-30 01:03:24.521000','2018-09-30 01:03:24.521000',5,'David Snyder','https://lh4.googleusercontent.com/-lrMyPWIJh-s/AAAAAAAAAAI/AAAAAAAAAAA/7Oa2J7pYOUw/c-rp-mo-br100/photo.jpg','12541597562633926366',600),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDL2LllHsH6MzOVWORjMOKfxF_lGqpU8Gi7g3a4Uia-7MdrDK7P9BR1q3AXAId2FcE3Z7r2fmaTotsMkzlw2v0CV2AJSA','Excellent staff ! Very professional. They are really\ntaking good care of my mother. Dr. Akunyili and Kristina was very helpful when I arrived .','2020-02-18 15:21:38.917000','2020-02-18 15:21:38.917000',5,'Brenisha Ferguson','https://lh6.googleusercontent.com/-DkCRWKJz7io/AAAAAAAAAAI/AAAAAAAAAAA/kkV3RX5DvgI/c-rp-mo-br100/photo.jpg','12541597562633926366',13367),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDldjtXa0EQm0P6DZ_reI8yC2n6iBcwMopex4THepUF46Hx-HAI_XYrSWz6Z9012zHPqQMNJiFBype3KbTeY7rnypOTMo','The entire team was very friendly and patient with me. I would definitely come here again','2020-08-08 16:33:43.600000','2020-08-08 16:33:43.600000',5,'Samra Baig','https://lh3.googleusercontent.com/a-/AOh14Gj3AsCDBcm_PaRi54R87K7x1wVJyD7njMyDT4ylxA=c0x00000000-cc-rp','14567670160750071148',21855),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDldZjHyN49pbbeSyo6aF1GzUuFWagAmTwv0PUH_PLPi9R0wngr-s9kZUDYvNX7QwZ4w73icjgrATCVElSrgIkqhgXGtM','Greeted by Maya very helpful and assisted by stephanie which was very nice and patient with me and dr. singla was very knowledgeable and complete the procedure and and got me better...Thanks to this team','2020-01-23 20:56:26.712000','2020-01-23 20:56:26.712000',5,'Victor Oni','https://lh6.googleusercontent.com/-elHSo3YGWRw/AAAAAAAAAAI/AAAAAAAAAAA/ZDwHwNCEuqM/c-rp-mo-br100/photo.jpg','12541597562633926366',10103),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDlgqzb8kKoClGIrIncRoONhVDP1QbspLGkLSRgpTPLNMfznYxVseer-1bBTEiVB-e7iAEhXXJ47KGMx27tZeGYCQgVqs','Great experience.. that staff was great there was no wait .. they got me seen very fast .. dr jolly was great and really fun .. also Kristina wAs very helpful and caring with my needs .. maya got my information and made sure I was seen very quickly .. GREAT staff .. love it here ..','2020-02-11 15:25:01.380000','2020-02-11 15:25:01.380000',5,'CoCo Taurus','https://lh6.googleusercontent.com/-0OT3rpvMIsw/AAAAAAAAAAI/AAAAAAAAAAA/d4D6fjDlCRI/c-rp-mo-br100/photo.jpg','12541597562633926366',22466),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDLicMlgVpJ_4KQ9jAewwXBD8ol3OtLVwbriHYiiznB2p50ttJN0mDCMhVniOIZWWZM68VLUGUELWLY4faE94BEoIu4bE','Dr. Alloju was so helpful and explained everything to us. Nurse Rollie was very helpful, Rad Tech Natalia was awesome and Registration Clerk Ms Stephanie made sure that we were well taken care of and quickly got us into a room. Thank you all so much for taking care of my son and all of us.','2019-11-17 00:50:10.341000','2019-11-17 00:50:10.341000',5,'Fredia Booker','https://lh6.googleusercontent.com/-R9Pj2hRgiiU/AAAAAAAAAAI/AAAAAAAAAAA/dF3MumL167I/c-rp-mo-br100/photo.jpg','8679688254631342173',8726),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDlih49KYRolSEXTEv3MEeFgG135mCouX136kgL6WBYsGFtcnIcfHGvO9c85VoqDXw8XKBXpkacPwzKhvQKNridduhwsk','Today, I came for a visit for back pain. Didn\'t really wanna come because I was dreading the long process of being seen. Ironically when I came in, it wasn\'t a long process at all. The receptionist Tanishia W. was very helpful and polite. When I was finished signing my paperwork, Nurse Sarah G. was right out to get me. Took me to my room for Doctor Lindsay to see me. His care was outstanding. I don\'t wanna prolong. Overall, my experience was great and their facility is nice. Try them out. You won\'t be disappointed. -Ira','2019-12-15 06:44:49.598000','2019-12-06 07:19:58.221000',5,'Ira smith','https://lh4.googleusercontent.com/--CukAVSxTFk/AAAAAAAAAAI/AAAAAAAAAAA/fPBoYpdZt1U/c-rp-mo-br100/photo.jpg','17898197009688164559',5374),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDLMko39SN3lCL8ivZSnjWXQ0pp7pG_ZDduuZ9xmb1qmiYhn-QxrxvLDAVLeCS_Yn5HXIJLcks9FP1l2uSvQ-dlwcEUo0','Had an appointment at 6pm and 3hrs waiting for a test that they said on the phone was only 15 min','2020-07-17 01:31:49.389000','2020-07-17 01:31:49.389000',1,'-I Q','https://lh4.googleusercontent.com/-xtJg7dxsag8/AAAAAAAAAAI/AAAAAAAAAAA/gmIpel12_zw/c-rp-mo-br100/photo.jpg','14748677429039074158',21752),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDLMnPanf3vB8SjN1A9OPuYJafmyeJZdFbwSfoIM2dEmi5YWLumSPjHv9V3VYnbZrIQA-Yyk2cjXrKW5STXSdSAIYWVMo',NULL,'2019-09-10 18:37:07.221000','2019-09-10 18:37:07.221000',5,'KAT Rivera','https://lh3.googleusercontent.com/-AMumHLGWMwQ/AAAAAAAAAAI/AAAAAAAAAAA/ZU-6aMFhm-s/c-rp-mo-br100/photo.jpg','16389487648212004696',2930),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDlOnoQfm5gDnhJidMzyjDOEpv9YHRyBt4MwKgmmtVvJF2sEf6KrcPm6W2ihuUlC_cJxznz6HS7AneGb9p8RPXLCxZDHQ','I had A great experience here! The registration staff, Lindsay and Monica, were very nice and were quick and helpful to answer my questions. The nurses and doctors I had were easy to talk to and very professional.','2020-07-23 02:25:26.044000','2020-07-23 02:25:26.044000',5,'Sophia Lin','https://lh4.googleusercontent.com/-she2yc_fiPM/AAAAAAAAAAI/AAAAAAAAAAA/lgxI893IRXg/c-rp-mo-br100/photo.jpg','16590124370714063921',22664),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDlqr7ugj-COrWqnf6_p2o9EBL6wSkP9P8YfKDXec8Ms30CERXBUhE18ZiAiezfkYb9pYKYXDDWvYjkGaCQWN8Le1ezY0','Everyone was very professional and was very nice. I got signed in and seen immediately my wait was less than 10 mins , maybe 5 to be honest. It was painless to wait to be seen by the doctor she came immediately. If I have any more issues I would definitely be going there again.','2018-09-20 15:56:24.936000','2018-09-20 15:56:24.936000',5,'Samaris Smith','https://lh3.googleusercontent.com/-8uQYMcu6inI/AAAAAAAAAAI/AAAAAAAAAAA/8CXP-vHcWmc/c-rp-mo-br100/photo.jpg','8918455867446117794',9236),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDlSQY1VySQMA2dUSrjs8MUJj2b4WYvEgmGE99db82i8fo74ZBDV-qxyM7NLDmm-sTdL43M_iIuDvilA_2OCKpjSF3-mU','Great sevice, very helpfull, quick service by Dr. Ding and Amy at front desk','2019-04-27 20:19:25.113000','2019-04-27 20:19:25.113000',5,'Lawanda Irving','https://lh3.googleusercontent.com/-QQ59BfVwovQ/AAAAAAAAAAI/AAAAAAAAAAA/FF9PZ9AGwqM/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1338),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDlV3FjRYSJFrufu6gGRy1H-3l_wqbYcz19sC-rYf06AeLdaMEZ1ToaSKOhL1Zgp4-f3s3jGUk6XAaVvlXildO9qtCSqs','The care I received was impeccable. They were quick, kind, and very informative. They were truly a blessing. I did not wait at all to be seen.','2018-10-11 01:01:58.512000','2018-10-11 01:01:58.512000',5,'LaPorcha Carter','https://lh5.googleusercontent.com/-sKPCeYZWiYw/AAAAAAAAAAI/AAAAAAAAAAA/Ew10w_DA85g/c-rp-mo-br100/photo.jpg','14567670160750071148',1475),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDLyWQKU0m0RBy0zLmBRTzhvgGT8U-CeVH2-kMHlKxfNi__QW46QsK1WQVrwpjtB-NplOdrCB3oDHFlEKpI0fXSNMzMDk','Kimberly, Becca, and Brad all made the experience here great. I was in and out and helped within a timely manner. I will definitely be back and will refer others to them.','2017-08-21 16:10:41.681000','2017-08-21 16:10:41.681000',5,'Avery Rios','https://lh6.googleusercontent.com/-vlDbHqvarQE/AAAAAAAAAAI/AAAAAAAAAAA/W0iO6vv4IOY/c-rp-mo-br100/photo.jpg','16590124370714063921',3951),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDM3IIq4Wl25KqUuppVqNT7UE5D75Me5q7phUtlpUMwrradwx9aQ7XGq0aBwtFJzuXBTODPlsl3I0aD29mU6f8H2UxW3s','Speedy intake, and polite providers and staff','2018-10-13 00:23:01.948000','2018-10-13 00:23:01.948000',5,'Shira Wotshername','https://lh4.googleusercontent.com/-PDLqmgy_39E/AAAAAAAAAAI/AAAAAAAAAAA/viTK0SIhfBs/c-rp-mo-br100/photo.jpg','14567670160750071148',1472),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDM3u4eywvVFzAGDs68ZYRq_DbLyjFzEw1V9RdEFSxf5xWkRyrMiqtop7KPQRf1G_Tbpl3vHZACejwHpZpI1SsZ-JG_fE','It was a good experience. Got a good reception from the receptionist and the was taken good care of by Dr. Patel and Gibril. Had so much fun with them and forgot i was in pain. Such amazing guys. keep it up!','2018-03-31 04:43:46.226000','2018-03-31 04:43:46.226000',5,'Wilson Jnr. Mba','https://lh5.googleusercontent.com/-TklJhStRSQg/AAAAAAAAAAI/AAAAAAAAAAA/Wp-u25cWb4o/c-rp-mo-br100/photo.jpg','17394740196501090048',4866),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDm7r6Q8ARq9I_MknyRoKnYYrxQUKfvGlq-JfXNx7FMug1tUkal3QaJmBWyUBJ7-sE1_sC7BD6m1OlSJ4TLz1s7KltrdU','I called in and spoke with someone about my health issue and i told them I needed urgent care and i was in a considerable amount of pain but I didn\'t have much money. They told me to come in and that they would see me. When i got there they turned me away. I walked because it was only a mile away from my apartment and my car was destroyed when Harvey hit houston a few years back.','2019-04-22 04:58:57.734000','2019-04-22 04:58:57.734000',1,'Cesar Zambrano','https://lh3.googleusercontent.com/-6uEY1dJa7sQ/AAAAAAAAAAI/AAAAAAAAAAA/hehc0P02lxc/c-rp-mo-br100/photo.jpg','8679688254631342173',8852),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmcjXyMxIHSts58y3_QfQuFQGJHCxxD2qlXtFJvjUci89yW_cpItHLEz-fc1801-amjkyG5_LxK384qU6_0IrtvkSnrY','Good','2019-08-12 15:40:33.249000','2019-08-12 15:40:33.249000',5,'Kyrstin Nieto','https://lh4.googleusercontent.com/-VvNzxUOOPmw/AAAAAAAAAAI/AAAAAAAAAAA/avqCxmW5J1g/c-rp-mo-br100/photo.jpg','13486358490203335051',861),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDMd1C2cqo_2Hb8-3zPAdB97AY2rM6LRW-67xPc0sxJLShi6mhtOYYO8PgFTVurx7TZEH37Nwmci4P2y-t2qfQu87bl_g','I had to bring my daughter in to get stitches she was scared but the doctor and nurses made her feel comfortable that to the good staff \nDr. Appiah, Jani , Tricia, Patty. good experience thank for taking good care of my daughter','2019-09-28 15:41:04.758000','2019-09-28 15:41:04.758000',5,'Lorenzo Jones','https://lh4.googleusercontent.com/-4CcoHsPo-cc/AAAAAAAAAAI/AAAAAAAAAAA/zgxzUzn8uF0/c-rp-mo-br100/photo.jpg','16389487648212004696',2876),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmEYzhwSN9zNuWwlWaF_CmSW0kYhP682uIRZpU2OOKgk13bLvbPgaNqDD5GISd2H8KkVENZhMiysCbEi10A4MWbV3nLU','This facility was exceptional from start to finish. Thank you Mayra, Lia, Christian, Scott, Dr. Zhen, Dr. Do, Kayla and Estelle! I recommend them to everyone!!!','2019-12-29 01:33:56.637000','2019-12-29 01:33:56.637000',5,'Katina Chimney','https://lh6.googleusercontent.com/-gjma-Nf5eZo/AAAAAAAAAAI/AAAAAAAAAAA/9pdmLiZqnEQ/c-rp-mo-br100/photo.jpg','12541597562633926366',291),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmf1nnIPv9X7AVJidvF_ysyRgDmAwmh_pjrw7Fb6F1wAOfPIjaqSuMA1mnbBTmEutmeqKgMeZ3hBB-HxVBUxfYHBRSXs',NULL,'2019-06-27 23:35:44.603000','2019-06-27 23:35:44.603000',5,'Sherry McLemore','https://lh3.googleusercontent.com/-JG1NqeCazbM/AAAAAAAAAAI/AAAAAAAAAAA/x0h7Im24ua0/c-rp-mo-br100/photo.jpg','6521947413723274945',8217),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDMkDGom-Z9H8lYsnPY3dOpwp1xvMXlzeG1DGZDY2uXPf7PKdSLZtFB0gsNU4Rd2ULzn6xSBwpballwDwYu7VBOBZ_d2U','Amazing experience! Thanks so much\n-GFT','2019-03-04 15:50:49.110000','2019-03-04 15:50:49.110000',5,'Jakob Marine','https://lh6.googleusercontent.com/-2zJEpVNb6bA/AAAAAAAAAAI/AAAAAAAAAAA/Hp8QRqxMQbw/c-rp-mo-br100/photo.jpg','8918455867446117794',9170),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmLFxJRHX-4tqxiMAOS5k_SOCJO48uUA9Z2zCDPuMV5dzFV7BMyF0dgjV5TY0qCOueNT511hIN665cr0THj2siEFTP2Y','Great service and staff! They were very quick to see me and tend to my needs!','2020-02-19 22:26:33.695000','2020-02-19 22:26:33.695000',5,'Kaitlyn Richter','https://lh3.googleusercontent.com/-nMpMjqkHeJM/AAAAAAAAAAI/AAAAAAAAAAA/WP_nlVQPe0Q/c-rp-mo-br100/photo.jpg','16590124370714063921',13842),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmmPKMFivgjdL3czNjbkbPvFitfqZcIIW7jgaI1lkTsvMjzD1fFaioPUxUC-D8jlLVyAq50cLlFsYeLHb1iqgFiEKsJ8','Fast and great service\nDr.Thomas/nurse Irving \nRad tech Holly/tech Lisa/Registration:Ariel W','2019-09-28 06:32:50.275000','2019-09-28 06:32:50.275000',5,'Deshanay Brinkley','https://lh3.googleusercontent.com/-uz94Kdy-Nas/AAAAAAAAAAI/AAAAAAAAAAA/hy6DZtJWFPY/c-rp-mo-br100/photo.jpg','12541597562633926366',410),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDMnH-pY4te2ElvQBzDmrysHihZ4i0_92iwI1_JJIvCX-nie8onCIJU0uZnBKUBWjpfhjs_KSCagsPlVcIV5YV1rNlkXo','I’ll edit as my experience progresses:\n\nI called today 6/22/2020 and asked about where my standing was to get a testing done for COVID-19. Ms. Kendra answered the call and was SOOO sweet, patient, understanding, empathetic, and transparent about what I should expect waiting-wise. I thank you for all that you do at Signature, but i especially want to thank Kendra for her kindness during a stressful situation!\n\nUpdate: Received rapid testing for COVID-19 and the medical personnel were clear about what to expect, what each result would mean, and where to go from there. 10/10','2020-07-18 17:19:41.044000','2020-07-18 17:19:41.044000',5,'Kayla Hudson','https://lh6.googleusercontent.com/-pwIp85yqm_M/AAAAAAAAAAI/AAAAAAAAAAA/6xk0RzBe0Zw/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',21019),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmqHMaIdjqXxxtc_-G9XArjOR-W9oHUPjMWbWKnOWZbp5lW7GNZ5P9-XuYnOV4LelagcaK1qjV8ribXtDPcw-MAaJVdA','We saw this facility open in the neighborhood not knowing we would be here so soon! My husband fell & broke his ankle in two places & the entire team here was AMAZING! Erica welcomed us warmly & took care of all paperwork so quickly! Sam & Brian were also kind, caring & professional with their care & kept us advised every step of the way! Dr Chowdry was awesome as well making sure we understood the X-ray & that Kirk was comfortable. \n\nI highly recommend this clinic! Clean, organized & full of well-trained, professional, caring staff!!!','2020-03-17 21:31:00.656000','2020-03-17 21:31:00.656000',5,'Anne Roller','https://lh5.googleusercontent.com/-zZd0kZYp87Y/AAAAAAAAAAI/AAAAAAAAAAA/X4ByyeF2G3M/c-rp-mo-br100/photo.jpg','14748677429039074158',20963),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmrkvPJQdxeNJPuco-dHyGEFhpiZJt5Gj19QRgfaROMXFClvVUGoZNuEbyTco4FqCJO6HBAEnSRLi_DrSiNlyddbDux0','Thank you to the staff at Signature care Emergency Center in Texarkana! Dr Ashbrooks, Rn Lucas, Sherri and Kelly were efficient, thorough and caring! I will not hesitate to go back!','2019-03-03 18:41:31.423000','2019-03-03 18:41:31.423000',5,'Teresa Wake','https://lh6.googleusercontent.com/-QvCH15ic5bk/AAAAAAAAAAI/AAAAAAAAAAA/leppQt-xTZE/c-rp-mo-br100/photo.jpg','3272657195432704501',7000),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmSApxfMC_ld-j6KNCqHnDCuhPUVTfGJSIPd5J-HPsiP-IKlxUB7gbmucnZHu7TNteulXYbTcfK_21OpY_021UtFkOho','Took care of me good','2019-07-13 19:47:38.751000','2019-07-13 19:47:38.751000',5,'Broden Newman','https://lh4.googleusercontent.com/-5b6zTXtM-ww/AAAAAAAAAAI/AAAAAAAAAAA/Mzg8NXTKYvA/c-rp-mo-br100/photo.jpg','17898197009688164559',5633),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmU1xoDLQ8toPzKvhFGc1LSP7RXIIWaKugeyIX8C4VFw0Ho-RlyAiSiMubwt2h6So8QtrPx57985awbWxIj8sbJO17as','Dr Smith, alvean John, jesus, and Olivia were very helpful and patient. I appreciate you guys','2019-07-27 22:51:54.694000','2019-07-27 22:51:54.694000',5,'Zoē ‘s Worldwide','https://lh4.googleusercontent.com/-9o9KlIwgie8/AAAAAAAAAAI/AAAAAAAAAAA/Ua-jpnXPAzA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmUqXjcWsW274g7D5naAzrrPoFNXaSHQPY-Empd_SBmkGUawR2kPHh3a6O_EoWYopmXh0gj4b_3kAvoJnCWKd0dqw8lw',NULL,'2020-02-29 08:47:24.895000','2020-02-29 08:47:24.895000',5,'Marielle G.K.','https://lh3.googleusercontent.com/-k7krqAu4hXM/AAAAAAAAAAI/AAAAAAAAAAA/fTwDR0o-eGc/c-rp-mo-br100/photo.jpg','16590124370714063921',13815),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDMwi7Cktd641azreNtzGXRzdQu-AQVuyN-BaURHxOazVk6l8CDELewEHTucsRuXQXaVrlJ--hGqi-dh05H5l4V7JCJfY','The Staff is always nice and friendly here. They are always willing to help with any questions you may have .','2020-07-20 13:25:46.691000','2020-07-20 13:25:46.691000',5,'Cristian Gonzalez','https://lh6.googleusercontent.com/-Xfy78qWmNFk/AAAAAAAAAAI/AAAAAAAAAAA/OoGjwdCt7j4/c-rp-mo-br100/photo.jpg','14748677429039074158',21678),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDmy0HmUU6k4sJ_V15Hgr0WOahkOI1zpI_N0ISuKq20ENDV5yaDCs0WfgRPwRdaQs5P-kKbZC3L2m340F8LGdG-ODozGk','Good, prompt treatment.','2020-08-07 11:52:42.845000','2020-08-07 11:52:42.845000',5,'Evan Caffrey','https://lh3.googleusercontent.com/a-/AOh14GjRbXEVPW-9zQZYFoY0j4agRWt2jBTp69QXLh-n=c0x00000000-cc-rp','12541597562633926366',21789),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDN8U6Qm-0XbomXAZiCOmsx58ioh7pTx6G8S_wjPCkSJq96C7wsFohu2nnV1vwcOZgje08-xrDpjRFJ3LWJwiiopPGHjI','Thank you Dr. O’Malley, Alvean,Tricia,Sibiena, and Bryan for taking excellent care of my baby boy. What a nice visit. The staff showed me and my son so much love. It was a very blessed and wonderful experience here. I wish them all nothing but the best having a safe and Happy Holidays to each of the staff members..........','2019-11-14 22:25:34.150000','2019-11-14 22:25:34.150000',5,'Marlarcha Charles','https://lh5.googleusercontent.com/-8yrU4oMznn0/AAAAAAAAAAI/AAAAAAAAAAA/F8jGPD_Whh0/c-rp-mo-br100/photo.jpg','16389487648212004696',2696),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDNB1o0kmi8S0k_6Ytv3DTg1Ffz5ZsBfuBbBoYEm878nHcDVE7pNiO10E5aWXNoCqBL6s8urxHXIy_Os9F4z0HnI1P1XQ','The staff was friendly and very helpful. They were prompt with my care even at 3 in the morning. The facility was easy to find and very clean. They were all professional and even though I was in great pain, they helped me feel less stressed about the whole situation. I’d recommend this to everyone.','2019-03-26 16:40:22.766000','2019-03-26 16:40:22.766000',5,'S Elaine','https://lh3.googleusercontent.com/-xkmcW9PcLzI/AAAAAAAAAAI/AAAAAAAAAAA/8zRhc6x1L2s/c-rp-mo-br100/photo.jpg','17898197009688164559',5793),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDNFfiGZWMhvIEFAJOPiRs9nDPrunyFFfaYg3zhxV7EJ9y33oAoSSiI4GHBRqNajF7ospfPLnLds5QV6UHS35wufwJqcQ','Came here once with an asthma attack. My heart rate was up because of course I can’t breathe well. Shortly after I was not weezing. They were very kind to me. Doctor did not treat me like I was crazy like they did in another place once. Truly wanted to see if I had a panic attack or asthma. I told him I panic because of the asthma... Didn’t do any crazy pricey tests since they had tested a million things for me before. He sat down and talked to me like a human being. I asked if I could stay a little longer until I calmed down and they said yes. I appreciate that and would recommend this place hands down.','2018-10-12 04:59:02.034000','2018-10-12 04:59:02.034000',5,'Jane Smith','https://lh5.googleusercontent.com/-FPy-YwAy3f0/AAAAAAAAAAI/AAAAAAAAAAA/JuAAT27jabQ/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2206),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDNkjPWGlMCgNVhkfl--6is0nv56k4J0FZvvn2OEtN50QjuIM1dnkAdMIZd4OVy0koVDnWWG-scvrtk5mF8bxt25S2cuk','Excellent Experience through and through. Polite, friendly, and efficient. Answered all questions I had and provided help on anything else I needed.','2020-08-23 19:03:15.798000','2020-08-23 19:03:15.798000',5,'Thorn Berry','https://lh4.googleusercontent.com/-v8Xl70VU1iY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmjh5veV3cjUc7xDhhZzTWt-gs-gA/c0x00000000-cc-rp/photo.jpg','14748677429039074158',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDNLrHtvHt10rBbeNCI8ZtCfmeDFLanRZKlGnVDddnEGYtcaVVA83AATT8uUnJSgJdyPg96BnkhgHdTz0KTOt1laMXx-E',NULL,'2019-06-09 01:52:11.224000','2019-06-09 01:52:11.224000',5,'Katy Burnett','https://lh4.googleusercontent.com/-ce8YDgiz6p8/AAAAAAAAAAI/AAAAAAAAAAA/8VjVd2mY6Kk/c-rp-mo-br100/photo.jpg','13486358490203335051',979),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDNMvQ38Eb6cpKcMb-_IGBxM4saF8EbiOey10EzExjs_sggQ36Tl5MQA-u5IX1ZOtDpdAFN-Azus6AYap-p10PN2Q1ciY','Very bad place!! I took my little daughter with 102.3 temperature and they did not want to take her to see the doctor because I didn\'t have her insurance card with me, i told her she has insusurance i just disnt have it with me at that moment. Isn\'t it an emergency room???\nI don\'t recommend this place at all!!','2017-02-25 07:22:13.948000','2017-02-25 07:22:13.948000',1,'Lizbeth J-Sandoval','https://lh6.googleusercontent.com/-ufOF9yiEqyk/AAAAAAAAAAI/AAAAAAAAAAA/vNMd9KhiD4I/c-rp-mo-br100/photo.jpg','17898197009688164559',5941),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDnO_Ph-sny1QVoqr2mzxayy65BgfZIOie6YHhfIMCtvCW_5DFCrKCohWLsSv_rBfb67fz185Vpux-xRfsqM_yp72r8LU','We are visiting US from a different country. I don\'t speak English well, but I have to ask my friend to write this review for me to show my appreciation. Yesterday, I took my son to the facility because he was having a lot of belly pain and vomiting. We were uncomfortable initially because our English is bad. Dr. Ding treated us so kindly. She brought in an IPad translator and explained everything in such details to us and gave us time to ask any questions. Our son love this doctor too. Because we are new to the country, Dr. Ding print out pictures of Pedialyte, so we can buy it in the store and she also wrote down the exact dosages of Tylenol and Motrin for us, just in case we can\'t read the instructions well. She spent so much time with us patiently and brought my son different flavors of Gatorade, so he can choose. We had a very nice experience. Nurses are very nice too. I wanted Dr. Ding to be my son\'s pediatrician, but she said she only works in ER and has no clinic. We love Signiture care and especially Dr. Ding. She made us feel that she really care about us!','2017-09-20 14:50:04.932000','2017-09-20 14:50:04.932000',5,'Huyn Hmmuhy','https://lh3.googleusercontent.com/-f_Rs4k31-0M/AAAAAAAAAAI/AAAAAAAAAAA/M0pCFtvpRzE/c-rp-mo-br100/photo.jpg','16590124370714063921',3930),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDNP1Qrf27bMGVDuEuuL1qBHP6S-A2wFUz5WgH067Y9LWOH3Q8w_mYKiIkBInmGIAhjyWOz3QtONWrxGuuRsC8pHofH1o',NULL,'2019-08-17 16:16:35.374000','2019-08-17 16:16:35.374000',5,'Yoanda Ruiz','https://lh4.googleusercontent.com/-NafSPjJOqd4/AAAAAAAAAAI/AAAAAAAAAAA/POoKJUWI5Yg/c-rp-mo-br100/photo.jpg','6521947413723274945',8159),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDnSsk_LnmQMxbXMb5arBdbUZVgMFsr8Kwq7DS91IJuS8-q0AmRgM6XbvJPylZNO1eHZLDK-o9I_TRFb0OR3aAPBCkWUo','Wait time was unbelievably fast. All the staff was very caring and compassionate!','2019-12-16 20:46:54.054000','2019-12-16 20:46:54.054000',5,'Christy Hyatt','https://lh4.googleusercontent.com/-qb1W_UxS4HM/AAAAAAAAAAI/AAAAAAAAAAA/xFyVioINma4/c-rp-mo-br100/photo.jpg','8626688543755174284',14643),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDNT0FfJEjfCEuGfHCN-p9jwgcvxqQqErGiU7N6cgwEXv8ytkn2Q-LCwtvRQCZakCdxBxz-VvUOu-U3FPEzcImZ2k1xDE','The staff is great and would recommend this facility to everyone. Jocelyn at registration greeted me with a smile on her face and I love good customer service. Dr. Souman, Nurse Cat, and Bryan the tech came in as a team and worked together. Thank you for all you do.','2020-01-14 19:00:26.739000','2020-01-14 19:00:26.739000',5,'Tenora Charles','https://lh6.googleusercontent.com/-Nc_xASoPnNM/AAAAAAAAAAI/AAAAAAAAAAA/oeltgAelvFY/c-rp-mo-br100/photo.jpg','16389487648212004696',22637),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDnwCnaTwNJtqOnIyD-8l5mp_QUj1ycwSaFy0fnFoBU79wgod9cCZn05QJu7gzdGNXBxR3i0_IGsEoZMXvcgPYgxv40QU','Very friendly and CLEAN facility! Test was quick and easy, results in minutes.','2020-07-28 04:03:59.435000','2020-07-28 04:03:59.435000',5,'Jill Vaughn','https://lh4.googleusercontent.com/-zPVIsxZ7a1k/AAAAAAAAAAI/AAAAAAAAAAA/DNFVWiq-1HE/c-rp-mo-br100/photo.jpg','14748677429039074158',22541),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDnxrKViCKNxktH3IUeG41rXd4SBV07SluwJuN2q-3FD0ZezV73Vb5zf0OkKqCKGknFrD5Nnj_ajRgDi8Wb5J5OTgZraA','I came to Houston on a business trip with my Niece Jaimie Allums AKA, ”The Queen of Steam” to introduce her Business to the Houston area. I started experiencing some heart discomfort, I didn\'t know what was going on or what may have caused it. Two weeks ago prior to my business trip my Dr. in Louisiana had changed one of my medications, and I thought maybe that could have been the reason. I called to consult with him what I was experiencing and he immediately recommended that I go to the nearest ER Center. I came to NEC24/7 ER CARE and from the moment I entered the door, Miriam Pana was very professional and caring at the same time. There was no waiting time to be seen they immediately escorted me to the back. I want you guys to know that I really appreciated the care that I received from you all on February 13, 2015. This was the Best NEC that I had ever visited before. My visit felt like more than a medical visit. Special thanks for your kindness to Miriam Pana, Ryan Mink, Dr. David Burger, and all the other Staff members. I highly recommend this Facility to everyone that lives or travel in this area. They were very prompt, professional and caring, it would be wonderful to experience this kind of care/Love everywhere, you guys were awesome. Thanks again, Great experience Rating of a 5.','2015-02-16 02:32:15.735000','2015-02-16 02:32:15.735000',5,'Trinda Gay','https://lh6.googleusercontent.com/-oBlpL2DdJkI/AAAAAAAAAAI/AAAAAAAAAAA/2TJdNntbVqg/c-rp-mo-br100/photo.jpg','8679688254631342173',8935),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDNybEoBlEPqT93uTFotn5cRmUeJcq8sXdTPHClTRClEcey5-Ka-9DGnREHn_eMfmnJeqIJPVifjmT8RDbaZu2jwOms_Q','My experience was great...the doctors and nurses(Trisha. R, Trisha. B and Shay ) they were amazing....the doctor was friendly n helpful.','2019-03-16 00:25:02.146000','2019-03-16 00:25:02.146000',5,'Ifeoma uwandu','https://lh6.googleusercontent.com/-qrnHXhVB27s/AAAAAAAAAAI/AAAAAAAAAAA/q1QdCA6Pb8k/c-rp-mo-br100/photo.jpg','12541597562633926366',535),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDnZXaP11je_17WUgiKv73_kZu__YoUiPl9L-xGVMVUmDhN8ZJk3wvC1beH8Z4eU-T8CqviUxSFDh1uufHFedMdv-thTA','I came in for a severe infection in my mouth and I was greeted by Tatiana at the front desk who was just wonderful. Then I was taken inside by Christine the nurse who was also so wonderful and nice. Not to long after Dr.Lim was in and assessed the situation and took such good care me. All in all such a great experience, I highly recommend this place if you need to come to urgent care.','2020-01-10 02:01:49.689000','2020-01-10 02:01:49.689000',5,'Samuel K','https://lh3.googleusercontent.com/-PId4fsghpo0/AAAAAAAAAAI/AAAAAAAAAAA/T9DKydAhsck/c-rp-mo-br100/photo.jpg','14567670160750071148',9478),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDO2hnhRF0jOL5juE5wg8k_Bt-PuW-0U6MGDtsoM2FrLV1BPZ0wS7yeSpf9VI0Ef2FW-fHh-EqMWrtG2JGSD7bVvVcxZI','Great place. Fast service and very clean. Will be going back in the future.','2016-02-21 23:41:09.677000','2016-02-21 23:41:09.677000',5,'Pedro Costa','https://lh6.googleusercontent.com/-m_Wl12lGG78/AAAAAAAAAAI/AAAAAAAAAAA/E3jeQ4sXx5c/c-rp-mo-br100/photo.jpg','17394740196501090048',5280),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDO3ZdMsVda1OMPZn-G-5hFbF3TGnmyLzDNFe7sfUP4jJ0GJsb7JRCMpci6Pu_gzjm73sLnkRIDyEIBFD7DvQ9wtjf4fQ','Remington and Dr. Vaagenes took care of my sister and did a good job.','2019-07-16 02:01:18.364000','2019-07-16 02:01:18.364000',4,'Olivia Rigby','https://lh5.googleusercontent.com/-LU06WeRV_YQ/AAAAAAAAAAI/AAAAAAAAAAA/N70hI2BC1Bc/c-rp-mo-br100/photo.jpg','16590124370714063921',3293),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDo7BeCv6eTVca1SaJf0r_dLAdB9GRFzQvimHb73BiafGypJKBx-YTrT7rfsTUqggFNVC81NiZFZY1dLBcj6oCwgHdQfg','Everyone was super nice quick check-in','2017-04-10 12:06:24.820000','2017-04-10 12:06:24.820000',5,'Cursila De La Torre','https://lh6.googleusercontent.com/-ERm-mFoqANM/AAAAAAAAAAI/AAAAAAAAAAA/z_xi75GJ5d0/c-rp-mo-br100/photo.jpg','17394740196501090048',5078),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDodhawlZ-_PAk_jFHrgNOymCOIIpy9hvH4nbnkYkTdx_RjL23xPRrpxQgNcYg8YH1AtT012OoJo1LzY2GnsOfu8akUnk','Came in for foot pain, turned out I have an ugly bone spur.... The staff was fantastic with me from the ladies at the all the way to the Dr.','2020-08-14 01:29:40.993000','2020-08-14 01:29:40.993000',5,'Daniel Angeletti','https://lh5.googleusercontent.com/-n5NrE9Ims0g/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmRvbmN3TQ0_Yc2FfNowKiYZdw9SQ/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23022),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDodujnHVcg-Fl5LDHKOndNULE8pz_7Fh3_W5oYkcXkajAx-5xJmvTWDx4geSg1Fpgd06o8lapWMcBVCbx1zenXmKJdl8','Do not go here. Went if for a bad cough and told them my chest was sore (from the cough). They went nuts and ran bloodwork and an EKG, now I\'m having a fight with my insurance company over a $10000 bill! For a cold!!','2017-12-23 17:37:26.732000','2017-12-23 17:37:26.732000',1,'Thomas Hull','https://lh4.googleusercontent.com/-F8SB7Oh_NTU/AAAAAAAAAAI/AAAAAAAAAAA/S7cXjD1yGFc/c-rp-mo-br100/photo.jpg','14567670160750071148',1704),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDOe0LP4t1GZe-x0ZuXd17n118BvoIJ7jFq1vgGw_uTpXt7juVqzrtD--riFa95Xh-WE64f2Gwye6f54oxdsNoR1IRjGM','Everybody was very welcoming they look care of my daughter with no hesitation as soon as the doctor came in and examined her he knew what was going on on the dot. Thank you Doc. Harjai, Nurse Alvear, Radiology Tricia, and Jesus. Thank y’all for helping my daughter feel better','2019-04-11 17:47:14.913000','2019-04-11 17:47:14.913000',5,'Anita Rodriguez','https://lh6.googleusercontent.com/-NP17YVtnTJE/AAAAAAAAAAI/AAAAAAAAAAA/pZjIevOn-y4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDoFupoLWjZM9WY9F251zlbb8Ve3GozKfUT5q6NUEvpBSq9tXpmxmG1jky83uQIGJWjvYl4-xhxfYWUmtqkRA5D9BxIN8','Do not go to this place for covid testing. Very disorganized process and will not give wait times. Staff clearly overwhelmed and after waiting 3 hrs I left. Overheard that management was not allowing them to give out wait times so you register having no idea how long it will take.','2020-06-26 20:47:52.400000','2020-06-26 20:47:52.400000',1,'Stephanie Lauck','https://lh5.googleusercontent.com/-UKmO-cOfQcM/AAAAAAAAAAI/AAAAAAAAAAA/2NmECsLhjoo/c-rp-mo-br100/photo.jpg','14748677429039074158',21261),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDoFZ0VhezeSwLovEwzx-y8NmPht8Yv_V7_8hzJ_MK05C8QfqhtNHeb0OVcZRyCPeuHT5ANnx8up3ZPGauaxkgVu2_4Js','I love this place!!!! My nurse Anthony and tech Natalie were so present with me the entire time, from when I arrived to when I left! They made me feel comfortable and calm, when I came in not feeling my best. Dr. Vakey is someone I won’t forget. He understood where I was coming from and sought out everything I needed quickly and with ease!! These people work towards excellence in a way you don’t see every day! So so thankful!','2019-02-19 00:53:28.584000','2019-02-19 00:53:28.584000',5,'Danielle Durrett','https://lh4.googleusercontent.com/-QRloZvnRogM/AAAAAAAAAAI/AAAAAAAAAAA/teh29PZBTE0/c-rp-mo-br100/photo.jpg','16590124370714063921',3543),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDojVQiB8Pguyvm0HswGu_7iwvPhFweoAl8ch82z3O4XqeRgdPakON6_nc66VexX4FOYcLGPE6q-mpcda4xKbpXyAp5WE','First start by saying everyone was nice and really cared about what was going on with my son. They got him into a room quickly and started trying to figure out what was wrong him. They did an amazing job!! Thanks for really caring.','2020-03-03 16:44:30.128000','2020-03-03 16:44:30.128000',5,'Tyra Williams','https://lh4.googleusercontent.com/-tfctdfrBK2s/AAAAAAAAAAI/AAAAAAAAAAA/K59ZV1YmHUY/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',21072),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDon2rzJl-eS84HsanFn_7YQ8DAA1pWWKudno5G73Y-Y-ODgse_DUHNtn48lJK-6InDCtuNLOBZSVm35fzGspAmO_5YTw','Everytime I go there, they are nothing but nice and very helpful.','2019-12-29 20:11:30.503000','2019-12-29 20:11:30.503000',5,'Felicia Baggs','https://lh4.googleusercontent.com/-WvMyu-qty5U/AAAAAAAAAAI/AAAAAAAAAAA/qtUPdwp5bws/c-rp-mo-br100/photo.jpg','2694018788013845459',14282),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDon7MLbTVHnHQ6UlCUim1BhTHKv6fhgocpj61Z-UiK9PtC-deS2-YYlHWVlsnF42oP8Rs-Fjk5L_AV4vPB101adfhdCU','Absolutely great service and amazing staff!\nDoctor:Lindsay \nRN: Sarah\nReg: Tanishia W :)','2019-12-06 01:34:19.084000','2019-12-06 01:34:19.084000',5,'Mary Krinsky','https://lh5.googleusercontent.com/-v3gpa1LTdO8/AAAAAAAAAAI/AAAAAAAAAAA/O_yae5B2Mvs/c-rp-mo-br100/photo.jpg','17898197009688164559',5377),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDoPPLyyy1MdLlqr-O7JGgFnEl0nSRfRkZ7FMiuN1mr_Do97GVDHazsAqM22XTa1N2e0zvqrYI5q71CiqQbpl2zO8YhmE','This was a very pleasant experience even though the situation was a bit scary. Dr. Dang, Amy, and Barbara showed great professionalism and concern. I recommend this center to family and friends.','2019-05-19 10:31:34.110000','2019-05-19 10:31:34.110000',5,'Brenda Heath','https://lh4.googleusercontent.com/-3iAWtgAdfkQ/AAAAAAAAAAI/AAAAAAAAAAA/U6F4cpnbeJE/c-rp-mo-br100/photo.jpg','3511292162159714121',7322),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDosPtFTGNR1pEiwb4SQP7SMNFQKaYZfjLP7VEIdx1Kmczy9hJx8vwMSQZhAvg9ozHRHjddYmyM7QwSGCUL8WeB2dKUU4',NULL,'2019-01-29 12:56:28.227000','2019-01-29 12:56:28.227000',5,'Kyle Woodard','https://lh6.googleusercontent.com/-c3UUhOO99AA/AAAAAAAAAAI/AAAAAAAAAAA/slHNIBFInhE/c-rp-mo-br100/photo.jpg','16590124370714063921',3566),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDoUYyiiMcfo7_bbxVMhEN9UDjrv8XcrO8699PCwXWN1dNf7JJUB14wPbCUoIhyQPJ4WtlAclXCLAB8-G8lcTtl05_UlA','My experience at the cypress location was a pleasant.The receptionist was very quick and professional as well as the nurse Alvean A the radiology Marcus B and Dr.Pham was amazing.Thank you so much for your quick and professional service.','2019-11-06 17:09:08.084000','2019-11-06 17:09:08.084000',5,'Robincampbell squad','https://lh6.googleusercontent.com/-uKaGmGMPA1M/AAAAAAAAAAI/AAAAAAAAAAA/nN1H8O0-6b8/c-rp-mo-br100/photo.jpg','16389487648212004696',2728),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDoVuwWidE0pSmH2nSElcY6-35bQTJ6GfPi-EV-bQt-8ZzuvWkxW4h3JeBTx6bxWVglOq41eZqWDkilzGWip09DiCmxOQ','The staff was amazing and attentive. They are soooo nice. Cared for me quickly constantly checked on me. Very clean facility and everyone was smiling. DrYbarra, nurse Jani , the radiologist Tricia and register Patty were all AWESOME Highly recommended this place.','2019-09-13 14:09:15.194000','2019-09-13 14:09:15.194000',5,'Dionne Metoyer','https://lh5.googleusercontent.com/-MkKIUZZYvTU/AAAAAAAAAAI/AAAAAAAAAAA/wrS0gKgkpA0/c-rp-mo-br100/photo.jpg','16389487648212004696',2914),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDOZjK16vBWJFSNoxdLxRg2BOrvWJ6XpZpytEyzAnlVWkCWzRsyx1QG1DlxrobrEeeaeDH7kW0cpq6mZvt_3Xb7_IZbts','The staff was very friendly and I was taken care of immediately. I recommend this place to anyone that\'s in need of urgent help. No wait time . Wonderful experience.','2016-08-06 23:25:51.357000','2016-08-06 23:25:51.357000',5,'Diana Galarza','https://lh3.googleusercontent.com/-e93MRlFCsso/AAAAAAAAAAI/AAAAAAAAAAA/5iFpS23OCNo/c-rp-mo-br100/photo.jpg','14904078213800803294',2470),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDP-hX8mJtH15P5FrprISXt6qQ5npPFPbuI6fBrb2Nex-iYBXPeElz6j_Hz33T2PDJT0ErrP9gMMJpw4K1ri8lWOhRDw4','I have a very good experience with all the nurses and the doctor there. They treat my wound very properly and in a very careful manner. I would recommend this emergency room to all my friends.','2017-09-13 22:38:21.216000','2017-09-13 22:38:21.216000',5,'Victor Luu','https://lh6.googleusercontent.com/-73_YE1outxQ/AAAAAAAAAAI/AAAAAAAAAAA/2OMJ33eugAE/c-rp-mo-br100/photo.jpg','17394740196501090048',4976),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDP2MdqTXHKuwlNYpKlnC0AXcaI3qtDiHR1kMxh6IKDKlgq50ZB6EKUASPHLoIEjJ9_bjW-0yETJIoOeoYL4KNA5UQww8','My husband was seen by the caring and prompt response by the following team there: Nurse: Sarah G; Rad Tech: Nanci B; ER Tech: Daniel B; and Reg: Ashley S.\nGreat staff and genuine concern for my husband. So glad they are available and close to home.','2019-07-09 19:24:14.891000','2019-07-09 19:24:14.891000',5,'Carmen Gravis','https://lh3.googleusercontent.com/-2Y4Q87gvWuc/AAAAAAAAAAI/AAAAAAAAAAA/7hMhgHzorjA/c-rp-mo-br100/photo.jpg','17898197009688164559',5652),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDP3fTuoF6V_EZUz2zKizp27rq5olYO7rFKrtSAOkvgBhYzwu0PAkQigLqiXs55NAiHIdec6hNAgCXQknMkyJVeenUFpQ',NULL,'2020-01-21 03:01:36.806000','2020-01-21 03:01:36.806000',5,'Thomas Perley','https://lh5.googleusercontent.com/-5YS1fJeNPkU/AAAAAAAAAAI/AAAAAAAAAAA/PyrSaCE5_nw/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',13463),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDP5VjFYz_dSVlVnL1mE3eyTAZrZZ4cYuDrnA7lT5mTBhnPa2kDjHD7TIKL0bD3YV07B69iXKKWShyCTli9sREnQBHUmY','Very cordial friendly and helpful actually caring about the patient...tammy was very helpful along with tanishia','2019-07-31 02:45:21.985000','2019-07-31 02:45:21.985000',5,'Justin Roeben','https://lh3.googleusercontent.com/-_V6-PVrIZGU/AAAAAAAAAAI/AAAAAAAAAAA/jH19btlaGPQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5613),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDPBy6vPbQfpf8llL8wBiTdb7PKmyTgMXPl6WW6VbqGztDHVkvl-jPROKX6lOar4iYJjjLh7WvwWDbavP-p1xaBD2UQ9U','Really great place to get treated. Everything went quick even the registration and the doctor and nurses were really nice and helpful in the process. They can do lab work and get results quickly. It was my first time here and if I ever need help again I will come back.','2019-11-14 20:57:41.414000','2019-11-14 20:57:41.414000',5,'Erica Esatyana','https://lh5.googleusercontent.com/-ID1tbNTJ3Cg/AAAAAAAAAAI/AAAAAAAAAAA/kBj3am7vtz0/c-rp-mo-br100/photo.jpg','3511292162159714121',7146),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDPeuUC3CUyUlOYFZ4IWfYU7QO-3vrzEzBHdFXd4Mk5-3gxMBl-2PXUEHeSXoPXEtF7Lj0hHyJYOWvXbH0dawnVOEPYtI','Very Caring place and nice service. Neat and Quick as well.','2018-09-09 08:26:42.638000','2018-09-09 08:26:42.638000',5,'Harihara Vishnuvarthan V','https://lh3.googleusercontent.com/-hgvh8iJQ9tE/AAAAAAAAAAI/AAAAAAAAAAA/dqltgrx0_Ac/c-rp-mo-br100/photo.jpg','12541597562633926366',609),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDpgVwvguBwty4A-7UK5Z7FiYm6OMIQ0egl0B6HnsiGqURdJ8RoEJ-E3kaQdCRhEX_iwWja4zME0KbpfingUR57vcW_-4','Thank you to the fabulous group that attended me today. Jennifer checked me in quickly. Martin kept me warm, informed, and entertained. Kee did the ultrasound, was quick and careful. Christina talked pups with me during the CT. And Dr. Goodman was very thorough, kind, and I thank him extra for pushing to find what was going on. Thank you SignatureCare. Can\'t recommend enough.','2020-05-22 12:40:53.910000','2020-05-22 12:40:53.910000',5,'A Robinson','https://lh6.googleusercontent.com/-caVlTLfDWEo/AAAAAAAAAAI/AAAAAAAAAAA/hnCMNnICy8o/c-rp-mo-ba4-br100/photo.jpg','16891069708558046635',22699),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDpgZF9fnVD_ANwgst3cgXLX_TgzKg1n9jApYK5chAkQqm0oa8GfDF1eU9wDLEh3Qm-UfutIEyZuQlBz4_e2dQodsZpXQ','I\'ve been to SignatureCare Emergency Center multiple times and each time they\'ve been wonderful. Dr. Elsbecker, Dr. Lingan, Adam and Chris M. have all been extremely helpful and each took the time to make sure I\'m comfortable and well informed on my condition. I highly recommend this team.','2019-12-19 01:34:10.809000','2019-12-19 01:34:10.809000',5,'Greg Katanick','https://lh4.googleusercontent.com/-CLa9-4W8FLk/AAAAAAAAAAI/AAAAAAAAAAA/6C60WKB3VTo/c-rp-mo-br100/photo.jpg','16891069708558046635',4110),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDPn35o80KbPuGD7thiyCiPb3QaDfrlQRrtArHVRVtkYVrSP9EJ9iipHsB9RZqeIAcmhKLdMC_nEDNhsFbmeHeYIK-QXI',NULL,'2020-06-19 22:50:59.446000','2020-06-19 22:50:59.446000',5,'D B','https://lh6.googleusercontent.com/-eXJ9lafaVls/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucltyKfDvKfh4lrXUIQSUFj3NdycHg/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21038),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDPRuAX2kMvhhc4RDU3POwu0B0Ub65MYPTrJIwIi56wygi5u2-6iVCYgypsYzhvn-YiO4riQCtDqq4YjFaDuGcy0JheM8','This was a very easy ER visit. They were quick and efficient. :-) ','2015-09-12 15:35:27.088000','2015-09-12 15:35:27.088000',5,'cassiwoodworth1979','https://lh3.googleusercontent.com/-mTX7eWugBok/AAAAAAAAAAI/AAAAAAAAAAA/tXleyTbtCL0/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5950),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDpsq1Q1EwAMBAzyCSqrOy5F1KSg0CC-izHa1lJ-7GVkHgUTIeqOFtZKK5085xhKAD8PiHKd2me-Kh3qyiRGwG8Ta8LCU','This is by far the best Emergency Care service I have ever had. I was taken straight back to see the Dr right after filling in new patient information. Everyone was very friendly. Explained everything to me in terms I could completely understand. I have already told my mother and some friends that this is the place to go for any er services. I will not be going to the big hospitals any longer ','2016-02-20 16:38:15.227000','2016-02-20 16:38:15.227000',5,'Cookies & Cream Plays','https://lh6.googleusercontent.com/-ccx3tJYVu-w/AAAAAAAAAAI/AAAAAAAAAAA/MeKQaN06LdQ/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5281),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDPuK6M3e3EA0ExryOPUzCIb8o0FFCcnaMOSpuYT1m-SDVozOhBsbOqcMl9GleDP34yhnP0pXkZMciYKK5yjQEKDvXI1U','Everyone was extremely nice and friendly and I was seen pretty fast.','2019-01-22 15:12:53.756000','2019-01-22 15:12:53.756000',5,'Sarai Morales','https://lh3.googleusercontent.com/-pXK5LbfFbyA/AAAAAAAAAAI/AAAAAAAAAAA/_PokBlo5J9Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7461),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDpuqEsvrKqQML2lwOmU2BWz85QBhGB_-bn5feXZMv70pc3jqlFainP8jj7i7d57ij-LmufQKQduoh-4olAb7II-RvJbk','Great service by Lorena T, Victoria P, Jeri D, Juan C, Akunyili','2020-07-31 15:19:21.725000','2020-07-31 15:19:21.725000',5,'Carnage','https://lh3.googleusercontent.com/a-/AOh14GiRaGFuoPKbN1cCPR5X3BwsRrPAuYO8oY4KLJ1mmQ=c0x00000000-cc-rp','16590124370714063921',21994),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDpXLgoJWi9Ps6rRhVojtK800gl5D-8krABpXuADs4-grHecRlbGkEEOceVR9WNwwmovkNHxbMhDEO16Iju6DgeBFQQSM','Everyone was friendly. The nurse and doctors really listen and care.','2019-01-16 01:08:20.595000','2019-01-16 01:08:20.595000',5,'nacixem9','https://lh3.googleusercontent.com/-X7H5EobIN4k/AAAAAAAAAAI/AAAAAAAAAAA/oV-Xz7BQXjA/c-rp-mo-br100/photo.jpg','14567670160750071148',1408),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDPz0pLauZDPhPhK0gbWyeoO46tpkDinb5X89puXafaxB2V1IGq2sWz5JxgB8TEFMYOG2Tnx283lkLW6ikFXz4RQmdCog',NULL,'2019-04-26 15:30:07.298000','2019-04-26 15:30:07.298000',5,'Dementice Johnson','https://lh5.googleusercontent.com/-KVQqH8qMy9E/AAAAAAAAAAI/AAAAAAAAAAA/CX69YhgdM5A/c-rp-mo-br100/photo.jpg','8679688254631342173',8850),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDq_bbkphTL03gFzv13izFHuzBbfu8c-j6FfhLLDRI8iThMeS3MR8BwipGKCYjAASrv8HzqHyE0tsw4_ElBp4cci0uL1M','Wonderful staff and doctors. Customer service is always amazing and they really make you feel at home!','2019-02-03 21:24:20.785000','2019-02-03 21:24:20.785000',5,'COURTNEY HARRIS','https://lh3.googleusercontent.com/-EcCPqGgjz6o/AAAAAAAAAAI/AAAAAAAAAAA/sYiwi6IYGLY/c-rp-mo-br100/photo.jpg','8918455867446117794',9184),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDq-ZlSENPpI5SI3VjzA_BW4o1Qpp2mSUWCCDxflbHd0ddj6u4Hc5lr4i3ZoeGNxaiT7hJ1Hv2oEnPKWLY_dD5dVn2RAw','We had a great experience here, we were treated well as soon as we walked in the door. Fast and easy, were were in an out. Thanks to the wonderful staff Dr. Carzos, Delicia, Duke, Waldo, and Yasmina. Highly recommend this Facility','2020-02-05 18:16:19.728000','2020-02-05 18:16:19.728000',5,'Ben Paquinto','https://lh6.googleusercontent.com/-wy8MV5mzcGQ/AAAAAAAAAAI/AAAAAAAAAAA/q51nsbP35DQ/c-rp-mo-br100/photo.jpg','8679688254631342173',14758),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDQ1VNjEObJ6aFRucNTKeZukUlfuMdZbUdF7S3hON4vLarh1W72khXzoxheHIAeB4N2odQRB2mBAjAoZDmvQ59xxpR6uQ','Horrible service 8 hours to get a rapid test. Then they won’t call you with the results. And when you try to call they never answer the phone...','2020-06-16 17:36:25.694000','2020-06-16 17:36:25.694000',1,'Hedi Marshall','https://lh3.googleusercontent.com/a-/AOh14GgUSsWyCDN_2KE_AFFXZeHa8Licu2cWcz5xQGpf=c0x00000000-cc-rp','17898197009688164559',21081),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDQa3u3UPgG9Lcu1no-B9V7b6tWLvtdWnUeCXl5ws08b69mCM9jHT_Hx5Pd5rE1vmxWqv7TclUNW3HkrRHb_RLAc9BEv4','Everyone there are total sweeethearts‼️\nCarly\nSarta\nHolly\nThelma','2019-12-25 07:18:17.065000','2019-12-25 07:18:17.065000',5,'Walter Salamanca','https://lh3.googleusercontent.com/-IAmvmyuxVM0/AAAAAAAAAAI/AAAAAAAAAAA/UnzF8-PM8gY/c-rp-mo-br100/photo.jpg','12541597562633926366',305),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqaHUvNZSpdrPVHOHD_fIvznyfXkdfLK_T-NNCRxZeh5F-GWyTmqHUO7QAsxDUuXYpRx57j1Sxivs8UrEY4YU_syEH7U','Was bitten by a dog at my job. No wait, clean environment, and they made the workers comp portion hassle free for me!','2019-03-29 17:46:39.711000','2019-03-29 17:46:39.711000',5,'Brittney Solis','https://lh3.googleusercontent.com/-H7gxL5UDv80/AAAAAAAAAAI/AAAAAAAAAAA/XCZLle-PGyk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDQc67NdgC67NvgLjKWaPL2KK9X-qyfEUjHdjhrbMzANYEphd_HdxMEIv9htZqSfkGFISBAua9s2byG-EMfnhDk1V-3fg',NULL,'2019-11-20 02:52:21.639000','2019-11-20 02:52:21.639000',5,'Rodd Johnson','https://lh6.googleusercontent.com/-BfARv4ZJ-A8/AAAAAAAAAAI/AAAAAAAAAAA/Y_hzxyoQxlw/c-rp-mo-br100/photo.jpg','6521947413723274945',8088),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDQcAnS2iWMitjMxC9VX6Fzzr5goPenN9i2GevoEQxfJBYMYh9K4rTSpi16r3rCsV4S193ulloKL8QFAiacriFkk2jZD4',NULL,'2019-06-14 18:28:56.232000','2019-06-14 18:28:56.232000',5,'Bereniz Baeza','https://lh5.googleusercontent.com/-fnCr3D_6sRs/AAAAAAAAAAI/AAAAAAAAAAA/gaNNrPlmMPg/c-rp-mo-br100/photo.jpg','13486358490203335051',958),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDQFK2S0ssbh9D0AElDCORNf9I7uQDIV_NG4nHmOhHoTdAbD37VJz9zkANMQLLNHuxSzMvdPNAbgHGmNd5wi3eCIdqYLY','Always great service and care here! Would reccommend to anyone. Dr. Leavitt, Cynthia, Carissa, Aubrey and Aaron went above and beyond to make sure needs and expectations were met! Thanks for your hard work.','2018-08-28 14:39:24.301000','2018-08-27 19:14:54.692000',5,'Diamond','https://lh4.googleusercontent.com/-0yT2F_5NPWQ/AAAAAAAAAAI/AAAAAAAAAAA/fygL46H2lYM/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2222),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqhBzFbVymEvfC2smE0MF9kQYzgMUibk0dM19G7vov7ZiaVKCPVwIIB_CI_ewS7q8Rz9_98bD6GMpX_HPhRs6_-WI2uo','Dr faig \nAmy \nHolly\nThelma\nIrving \n*wonderful staff✨','2019-09-13 03:09:27.414000','2019-09-13 03:09:27.414000',5,'Tiana Miles','https://lh3.googleusercontent.com/-4jbpL3xn-Q4/AAAAAAAAAAI/AAAAAAAAAAA/zNNcfNWp4Gk/c-rp-mo-br100/photo.jpg','12541597562633926366',426),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqHjnuLoNt0c7-254A1DcSR4Sz4G_vsVFZ89pXPtcXU1W5AsN4-ii0tg7Tbf9J-I9qRDZ4hnrO0IBalKz3ANEipGglWw','2 days ago on my break from work I was I was very scared and nervous. The lady at the front desk Genesis was so helpful I had forgot to bring my wallet also so I was a mess. And in deep pain. I was helped so much by John and Lonnie while I was there. They put me at ease work fast and efficiently. And the doctor doctor Garcia was fantastic he explained everything took his time. And in the end ask me about any of my concerns and welcomed me to come back or stay if I felt it was necessary. Christina was my nurse and she was excellent listen to me without rushing me. They work with you on any finances you will owe the place please believe me when I say it if you need an excellent emergency room with no waiting, this is it. I was able to leave within a couple hours having confident that I knew what was wrong with me. And I was also happy I felt much better. Please visit these amazing people at the Westchase Signature Care Emergency Care. And and they will work with you if you have insurance on your payments. They also help my daughter greatly and when she was an emergency situation. Thanks so much guys!!','2019-02-24 18:44:17.755000','2019-02-24 18:44:17.755000',5,'Lesa Hicks','https://lh3.googleusercontent.com/-1SWOn2E8uRo/AAAAAAAAAAI/AAAAAAAAAAA/bZ-Ba2YwdlU/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',544),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqJhb99uDMIqqeJk17eYT-mnNXkk8tLWJHBxNLIMPpFx7sdtDUc5XZogA0yWoIqgyiZXxh4mhvKCgqfo8dmjxL-2b45E','Front desk personnel extremely rude complaining about how many emergency visits they have. After I made an appointment and paid deposit I show up for my appointment and the check in lady starts complaining about how many online appointments are being created and how busy they are... worst customer service ever. Being a medical professional myself I hope my patients never deal with someone like this.','2020-07-05 00:10:50.480000','2020-07-05 00:10:50.480000',1,'D Rico','https://lh3.googleusercontent.com/-wftQunaeu9w/AAAAAAAAAAI/AAAAAAAAAAA/v-qofkTCrIo/c-rp-mo-br100/photo.jpg','14748677429039074158',21385),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqQzYp9U8j6MoUeexZGrJA_NfOCkzFH-Cec9ao1lxjvWa3v8Tj0S3IB2BLGWw0IRvX91aKRtNKEmREy8ZHi27A-VIFPQ',NULL,'2016-10-14 01:23:43.707000','2016-10-14 01:23:43.707000',5,'kiara Washington','https://lh3.googleusercontent.com/-BnxN1UOn4fk/AAAAAAAAAAI/AAAAAAAAAAA/7pmGaZh1jGs/c-rp-mo-br100/photo.jpg','17394740196501090048',5188),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDQrB4JwgyNtq3qWo_8ZkhoPdjW9hHm4j6q2iB0QqNczLo2pt4hZoquldHixGNueQo_q3OHD_ltRFk1f7LrcFTQoo0c6Y','Fast, clean and courteous! Would never go anywhere else!!!','2019-12-28 18:26:54.533000','2019-12-28 18:26:54.533000',5,'melody rangel','https://lh6.googleusercontent.com/-Bl8gxMYQg_0/AAAAAAAAAAI/AAAAAAAAAAA/5gKRA2fnBKQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6824),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqtRh-Hbotjf2zioHX2NGPppi_gx5sckzLkPHtTeVJQHypWQGIUGXVC8XJgnUsjpBYxlDfF9umj9cn5lDPX3vBu9D1TU','Very nice, friendly staff!! Will not be going to the busy ER anymore. This is my place for an emergency. Thank you,','2018-08-19 17:55:18.178000','2018-08-19 17:55:18.178000',5,'Angeles Alcantara','https://lh6.googleusercontent.com/-6Rx48MZi15M/AAAAAAAAAAI/AAAAAAAAAAA/-aARO4ncmqY/c-rp-mo-br100/photo.jpg','8918455867446117794',9244),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqu9VSn_nOWEQKdjlOf_qDTN3RsO8oOG8EwFoKTaV9d2d9di31kxzrH0jsfD01_aa2mkFnRWq1X2dKTpL-j9k7Pqpcxs','I came in with pain from a car wreck the receptionist Evelyn was very kind and understanding and answered all my questions concerning my paperwork. There was no long wait as soon as I completed my paperwork they called me back... the nurse Rachael was kind as well really made me feel like I was special and important. Dr. Miller was excellent I’d have to say he’s the the best doctor I’ve ever had treating me. He explained everything to me and eased all my worries and concerns. Very nice and kind. Overall the quality of care at this ER Urgent Care was amazing.','2018-02-02 17:29:22.778000','2018-02-02 17:29:22.778000',5,'tamara byrd','https://lh4.googleusercontent.com/-xWmFsj9bbXw/AAAAAAAAAAI/AAAAAAAAAAA/7rP5tGDK-UM/c-rp-mo-br100/photo.jpg','14567670160750071148',1664),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqxSU5dA6DDtYcQDBvnGwqvefUO9ZiL2bJpa3dOGXVNQCcMdhn3K2XJmiG9g-fDqmlWvgr3L8qTQnI_ubVXMvtNsQyGw','I feel lucky my friend took me two weeks ago to this ER SignatureCenter on Rice Ave after injured my shoulder on a soccer game. Dr Henderson quickly gave me medication to relieve pain and took X-rays, which showed ligaments broken and grade 3 joint separation. My friend Gio first took me to another ER center but they didn’t let me if I don’t pay them at front ($1500) for medical attention because I didn’t have my insurance card on me and I didn’t remember what insurance I actually had. I am glad Gio remembered this ER on Rice Ave, and took me there, when they saw me they were worried more about my pain than my insurance card, I gave them my insurance info after, they called me twice after to see how was my shoulder doing . Thanks again SignatureCenter for excellent and professional health care service.','2019-04-29 23:47:58.055000','2019-04-29 23:47:58.055000',5,'Rafael Acosta','https://lh4.googleusercontent.com/-sWM-W8nBEw0/AAAAAAAAAAI/AAAAAAAAAAA/SURZxQF_q7M/c-rp-mo-br100/photo.jpg','8679688254631342173',8848),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDQxX3zgBXgBLgjHb3IyGi-G-Vi_jFYSVYx-eZH7XJY1mIjHwhp3bYf6JA_D2PoeA0W_ozC8yakIrXXIoSToH9X4JtINo',NULL,'2017-02-04 14:32:20.924000','2017-02-04 14:32:20.924000',5,'Bryan Mann','https://lh5.googleusercontent.com/-_vTbW__6Urs/AAAAAAAAAAI/AAAAAAAAAAA/zeQ_1tSKEdE/c-rp-mo-br100/photo.jpg','14904078213800803294',2418),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDqyGx3c7xDNmPVoizOC9NlfFyWlDR4wJJjlyOhzkL_KrXrEQJjzMoxIGABrVvJT1YNiXgnEjvm2phT1g6qH8xAlq9w4M','This was a great experience the nurse was wonderful and the doctor is so nice here. Very professional!','2020-07-21 02:35:58.373000','2020-07-21 02:35:58.373000',5,'dan','https://lh3.googleusercontent.com/-_QpJS_162Ig/AAAAAAAAAAI/AAAAAAAAAAA/pM0DJ6l4UNA/c-rp-mo-br100/photo.jpg','14748677429039074158',21653),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDQzttB3hE7jiu5BLonDBRUq_7i45PtSqgWmBP5sgGVI_CpBi0qG1ehsPkTlJt-O8AsM_5SDHxQ7biT3SDatKfUBh0bkI','Everyone was so helpful, I can\'t imagine going anywhere else for myself or my family. The staff was so friendly and cared about my children. They had water and snacks for us and even a heated blanket. It was so clean and I can\'t stop mentioning the staff, they were all just so friendly and helpful. They were my angels today!','2019-02-24 01:20:16.876000','2019-02-24 01:20:16.876000',5,'Brittnie DoPorto','https://lh5.googleusercontent.com/-qxRgE8irr5I/AAAAAAAAAAI/AAAAAAAAAAA/1shX9lT0jHU/c-rp-mo-br100/photo.jpg','6521947413723274945',8302),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDr_YL7YlqyIlDR5-kGfYIZSRbx1D-F4ut3IkrssBi535vquVmg7mpeejWvA8JPYFeP7qpR8JO7xq1rI722ryD1TyeHBk','Very quick, friendly treatment! Jackie, Dr. Boester, Leah and Ruby were awesome.','2017-07-24 23:54:08.428000','2017-07-24 23:54:08.428000',5,'Terra Henderson','https://lh6.googleusercontent.com/-vodAsMdG5KY/AAAAAAAAAAI/AAAAAAAAAAA/gp3i49Y7-p8/c-rp-mo-br100/photo.jpg','14567670160750071148',1786),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDR4UU_swGLGooeESAnkr7fm42ie_Do_EW7bCZ0KjjwBEoy0ChdBRpKbk6GlwrQ0qDvuS2n0dm6E2S8zHGtaSdxtlDeOk','Do not come here unless your seriously dying, or desperately need to be seen, 1,300$ bill (after insurance coverage) not worth it just to get a prescription for an ear infection . Place is nice and staff is great, but would have not come if I knew how much they charge!!!','2020-01-01 00:32:59.920000','2020-01-01 00:32:59.920000',1,'vanessa smart','https://lh4.googleusercontent.com/-sbqUVOMoaGU/AAAAAAAAAAI/AAAAAAAAAAA/eT7cohDbJ-E/c-rp-mo-br100/photo.jpg','16590124370714063921',2994),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDr6P8Yk7BkbcJL7uwG9D6oQ7WFnh3Rz0Nuwe2MyF9QHegCQk10JPHzMKe_0h5f52fKysgFFolsSMVIr7Lq6U5QO2P-EE','Jocelyn...alvean....Tricia and Dr Nguyen were amazing and polite they took the best care of me and I would recommend them to anyone!!!!','2019-10-02 21:57:54.531000','2019-10-02 21:57:54.531000',5,'Karole Webb','https://lh3.googleusercontent.com/-08mp2CDIwOI/AAAAAAAAAAI/AAAAAAAAAAA/uNEvl1AkFQw/c-rp-mo-br100/photo.jpg','16389487648212004696',2862),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDr7sxUrPc3S4hRvL9MjDbQMddW0g7o1KemYVDLhXlTQaJboJ8gpWbS-OPW_O1KZMEEkMrsh_iXhf9i97u38dx_pAVxY0','Thanks Cody for rendering excellent care & being knowledgeable on Covid information!!','2020-07-29 20:32:41.189000','2020-07-29 20:32:41.189000',5,'Virginia Sandoval','https://lh4.googleusercontent.com/-FWIrqK9ZnY8/AAAAAAAAAAI/AAAAAAAAAAA/aGq5o2ZZ-Yk/c-rp-mo-br100/photo.jpg','2077061009497551125',22958),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDr7Xu10mGcKygXnWUlyrnQXYUWf04Y46TpL9bwtdb0R0vYwHSZUTA9Vvc5HmVlMxXhCcP6T41evxw2vtDAyCXQqT8VzM','Awesome and quick! Dr. Remington and Jacob were great. The front desk Kendra was so helpful as well! Highly recommend.','2020-01-19 18:42:45.843000','2020-01-19 18:42:45.843000',5,'Allina McDaniel','https://lh6.googleusercontent.com/-NW_ywm7XVAU/AAAAAAAAAAI/AAAAAAAAAAA/o7QjYRbwL-A/c-rp-mo-br100/photo.jpg','16590124370714063921',9976),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRc5mkYKIgmOdOv8PKDQxBRqL5wYhjo1CX2x2qBILp7cdABJnKQY62W88-XV7n8y83dCO4yzaNo3ofoPKthL9EumijfY','Great treatment and I was done and on my way in an hour.','2019-08-02 15:11:30.781000','2019-08-02 15:11:30.781000',5,'Catherine Salazar','https://lh4.googleusercontent.com/-c75g4MqI8u8/AAAAAAAAAAI/AAAAAAAAAAA/LeCptaDWZ_c/c-rp-mo-br100/photo.jpg','2694018788013845459',6097),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDrErK60pWiXp1nAidU0orve7vvTGcHQ5P4sl92DHqzzXXdo0CcKv9Ki29oruEQHwZE9D_DYAMGvf5B2g3RSBsLWT2xiQ','Dr.Zheng \nAmy \nPailes, Rn','2019-07-05 16:34:25.108000','2019-07-05 16:34:25.108000',5,'Faren Carter','https://lh5.googleusercontent.com/-s6MvYpmrtFo/AAAAAAAAAAI/AAAAAAAAAAA/YI2NXnIZY9A/c-rp-mo-br100/photo.jpg','8918455867446117794',9099),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRFOMlpjYeplTONQdUDn6LgAMv6BR5X0r4LI3WmBdx2Iw4XfV8CMq-HOZBOZybjuAvRpLXgHcob3c9ZrKhZAgQ38OeYA','so I came un for some sutures. The staff was unbelievable nice. I would recommend this place to anyone ;)','2020-05-20 23:51:40.984000','2020-05-20 23:51:40.984000',5,'Bella Madrigal','https://lh5.googleusercontent.com/-V-rGqsK_dmE/AAAAAAAAAAI/AAAAAAAAAAA/Lz3z3UqpB1I/c-rp-mo-br100/photo.jpg','8918455867446117794',22944),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRHd9CXE_3MqXkfsN1LjxW9Yh9Y_PSBghRsBjyb72AOUeGxK5JKEF9d68hpOuPm3YMQpb2D0QIPdTl9pUJeOQ-6EQU3E','Great service and super quick! Lorena and Amanda were very helpful and attentive. I have never reviewed service like this! Truly great!','2020-07-29 14:27:41.698000','2020-07-29 14:27:41.698000',5,'Riley Kaufman','https://lh3.googleusercontent.com/a-/AOh14GisejPKcEUj7D-SMmvodmAD53cZwJVyeiMmisYp=c0x00000000-cc-rp','16590124370714063921',22004),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRivgZrtESG_itq3PmFvIyx4eAvQZ_uVMZ6EA7xS3gs9MAgKAAdq9zb09o8DjOG1CM93sny1mfnKMY6EdVjNFmoEUmg0','kendra was very welcoming and helpful! I had come back because I was still sick and Dr. Vakey and birder Jacob gave me everything I needed :)','2020-02-02 16:08:36.059000','2020-02-02 16:08:36.059000',5,'Bayley Bryant','https://lh4.googleusercontent.com/-N4JJmkkgdCw/AAAAAAAAAAI/AAAAAAAAAAA/_Gwvo4RAdO4/c-rp-mo-br100/photo.jpg','16590124370714063921',10426),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDrJBY0w8CBTGtwAL3V87-9sP6cHEfaMguD5z_ozRXr294goP7sB-lgiMsD9jBKLJTOZQ5jC-Rz8GVVjvohx3StJw89Vo','Really no wait. Professional and friendly. Having an in house lab meant the test results were there to determine what I needed fast.','2017-09-21 13:40:47.830000','2017-09-21 13:40:47.830000',5,'Carolyn Oates','https://lh4.googleusercontent.com/-VxCrnslZl2I/AAAAAAAAAAI/AAAAAAAAAAA/fvX1_5xRxQk/c-rp-mo-br100/photo.jpg','17394740196501090048',4970),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDrlT0SdEjxUIYpxUuG42e5HGn-EIZ84GIp4nUNfWr4_WciKq4G_OQ2jjimR1aIrG6ODPtKcVYdAZaUEPADebF42XCsg4',NULL,'2020-02-27 18:00:52.499000','2020-02-27 18:00:52.499000',5,'Terra Henderson','https://lh6.googleusercontent.com/-vodAsMdG5KY/AAAAAAAAAAI/AAAAAAAAAAA/gp3i49Y7-p8/c-rp-mo-br100/photo.jpg','14748677429039074158',18861),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDrMh-vfhyCaAZEOgPutn3bu4rJFi91BpagEcBS_86n8PLJ2sDlycZn8ByqsxfierC-BU76fzYUn6H-93pUv2U-feqgFM','Fantastic care! Quickly seen. Caring staff. Highly recommend for anyone to see them!','2020-01-29 17:08:15.883000','2020-01-29 17:08:15.883000',5,'Nikki Moore','https://lh6.googleusercontent.com/-KTVmzsvtEqg/AAAAAAAAAAI/AAAAAAAAAAA/L5yY1Wnus-k/c-rp-mo-br100/photo.jpg','3272657195432704501',10267),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRRUIenuB3biZVdXegj4t_jYHKAmldtaOGedXmpqjm9dWIMcc3luhL2K1wykrWp_Vl0nRp9C1ymEsw4wAR-PWd9rpXok','I had really bad food poisoning. They were fairly fast, very friendly and Dr. Jones and his nurses Candice had a warm and comforting bed side manner. I\'m so thankful they are in my neighborhood. They helped me feel 100x better','2018-02-24 00:41:36.513000','2018-02-24 00:41:36.513000',5,'Adam Villarreal','https://lh3.googleusercontent.com/-2jVIjK9HjYk/AAAAAAAAAAI/AAAAAAAAAAA/SLW6Ug6Uf_Q/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4506),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRU69hXwysc-Wa8QbkC-I3t2RUtZNwgUrIEvuHD21LsgJ1HIVfiqUxtJL15uoM4Herv-8wKhTXTqKtUacM71galbVLWM','On hold for an hour and a half just trying to confirm an appointment, then after finally getting ahold of someone they said they were transferring us to a different department, then hung up!!','2020-06-28 18:40:06.254000','2020-06-28 18:40:06.254000',1,'Emily Tomlinson','https://lh3.googleusercontent.com/a-/AOh14GhgDipTqL-BXtwIsqEQpcR9knH_34NCmchySHs2fQ=c0x00000000-cc-rp-ba2','17394740196501090048',21432),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRunJgIcOs1LbSbIlv-f2Bpjmtnp4gV5alivl4yo7ihgjxjzSC-TM7T14NjWB8j_GWLc0QYxFPPm6CKwkJVIYZdnlv80',NULL,'2019-10-05 23:13:14.694000','2019-10-05 23:13:14.694000',5,'victor alencastro','https://lh3.googleusercontent.com/-Lu_VO3ajzHg/AAAAAAAAAAI/AAAAAAAAAAA/xGv3CrjsbZE/c-rp-mo-br100/photo.jpg','3511292162159714121',7165),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDrV2kPhPAtgRzgrlGniZ_LR5lUGTIhA7588LaskEDU8VAEBnlT2170Fq_q9kX2QhwTLnbnDd-UQ0L8JqHxpJYW7eDqbI','This place is amazing! Unfortunately we’ve needed to visit a couple of times but they have taken great care of us each time. Their highly qualified staff are ALWAYS happy to answer questions and concerns and always friendly!','2019-12-08 16:39:56.746000','2019-12-08 16:39:56.746000',5,'Chelynne Harris','https://lh5.googleusercontent.com/-2mtfcPWEMCE/AAAAAAAAAAI/AAAAAAAAAAA/agg8VxiSAZ8/c-rp-mo-br100/photo.jpg','6521947413723274945',8069),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRyKkdQ6gr-weUIXzaqhantWE4g6SmcCUt4Jh5ZGA8E4WOT963v1Yrd-fjOf6XnrsKktUGTZ2SW-_McIziH7_Hbu9yqE','I came here after my roommate assaulted me, and I have to say it was the best hospital care I’ve ever received, and I spent 2 weeks in a children’s hospital after my shark bite at age 7. \n\nThe staff was incredibly nice, the doc, nurses, and receptionist all working to make me feel alright. \n\nI usually write comedic reviews, but I took this one seriously.','2018-01-09 16:49:55.286000','2018-01-09 16:49:55.286000',5,'Jacob Osterloh','https://lh4.googleusercontent.com/-1w5eye2Vqf0/AAAAAAAAAAI/AAAAAAAAAAA/LyTaReL7LXc/c-rp-mo-br100/photo.jpg','16891069708558046635',4526),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDrYurg59GOliciTNI0F_NDtPMhjNEe-H5AH5PMxmvVxM5fKpN9Ks6WTzbmgPG_vPgc5t32Iq27iE-u6hPMQxC9SNg24c','I had a great experience here! I came in and within 20 minutes my pain had been dealt with. The staff were so friendly and made me feel comfortable while I waited. I was even given a warm blanket!','2019-09-28 14:50:24.467000','2019-09-28 14:50:24.467000',5,'Taylor Lobb','https://lh5.googleusercontent.com/-JtAhZxErIsU/AAAAAAAAAAI/AAAAAAAAAAA/5d31VKBXbtM/c-rp-mo-br100/photo.jpg','16590124370714063921',3170),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDRZbP_Yuf724AU_P30g9RnhnbJPi-3AFYWMcsEvIToUz8QIT-QwmZL23TrT2UTG0vOjBg0pu0QlTC36eCaLSTOm6TAxU','My mom visited this location as it was closest to her job. Dr Yusuf and his staff( Kristina,Laura,Scott and Malissa) treated my mom like she mattered and wasn’t just a patient with a number. They addressed her concerns and treated her quickly but what matters the most to me was how compassionate they were. That is a hard quality to find in anyone these day. I would recommend coming here to anyone I know or that reads this review. Thanks SignatureCare!!!','2019-08-29 16:58:41.240000','2019-08-29 16:58:41.240000',5,'Tiffani T','https://lh5.googleusercontent.com/-H6eKiAWF1SY/AAAAAAAAAAI/AAAAAAAAAAA/HE9B9K4rQdw/c-rp-mo-br100/photo.jpg','12541597562633926366',451),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDs3xe6Iv8ucyPOqmS-fLoOriFQ0apWqM_XAvsj_GqTOxgmJx6eG6TaNbvR2StNpLskRdMi03bhZsn5MUcXsHgq9Vetcc','The experience was calming & reassuring. Also the response was swift.\nFriendly & professional.','2017-02-20 04:11:24.243000','2017-02-20 04:11:24.243000',5,'G & M Oyede','https://lh5.googleusercontent.com/-SdXmXZDkPbE/AAAAAAAAAAI/AAAAAAAAAAA/JBdnIC3grvw/c-rp-mo-br100/photo.jpg','17394740196501090048',5111),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDS5GeUgltBCPKCfUNg8UkbOMoowvjFv5YpQMBctO5qrDf-D9kqDbsqeKTRwDB9o0XXapLncgJi2uHuFas5tmjsNIDz6Y','I have been here before and the care is always amazing. The diagnosis is always on point, the bedside manner of the Dr.\'s & nurses are wonderful. Not to mention the facility itself is immaculate. They make you feel that they care! Thanks to Dr. Simmons, Nurse Billy, and Jennifer in registration for getting me in quickly and taken care of! 5 stars!','2018-12-04 08:57:07.228000','2018-12-04 08:57:07.228000',5,'Tierra Ricks','https://lh5.googleusercontent.com/-4LyVC-Bsiv8/AAAAAAAAAAI/AAAAAAAAAAA/s1bxeGV73Ro/c-rp-mo-br100/photo.jpg','8626688543755174284',8634),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDs5v7wXXD81stCozTKPCfxL1gSeazzqxP4i8j_oyapv4tMMgJIz_8x9tAjFeMWe8-1lB5CvxoQxfDxsLJjQqV_0728fc','Everyone was very polite and nurse Jani really make you feel comfortable and the radiologist Tricia explains everything so you can understand. Patty at registration explains things clearly and make you understand what it is they are going to do. The whole staff was friendly and made I was comfortable and everything went smoothly and fast.','2019-09-13 20:56:39.550000','2019-09-13 20:56:39.550000',5,'Nakisha Richards','https://lh5.googleusercontent.com/-tsZexQu9sN8/AAAAAAAAAAI/AAAAAAAAAAA/cVULPJIJPTM/c-rp-mo-br100/photo.jpg','16389487648212004696',2911),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDs7ni4gsgHfc-a63Kq7RnNKpeUIOdBr61N7vZuYd6Mzp364oYp_4dDUFGlzQyBPgFE1CaqWgvD9Jdjdu-f0RHa6hsLC0','Great service, good listeners, didn\'t seem to cut any corners. I recommend it. ','2017-02-01 15:54:54.526000','2017-02-01 15:54:54.526000',5,'Jacob Condie','https://lh3.googleusercontent.com/-zcQ5Ax0qtm8/AAAAAAAAAAI/AAAAAAAAAAA/bj7oexkBCwE/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1899),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDs8qU2n3aAH85V2bdGR-HEYTtMTzHyyB8Nn5jep4NRwyZ3FXFjbuiUzj_YosA0cL3XxvzsW6qVaXZx0eifZB7mBibYyQ','AWESOME, QUICK, AND CARING STAFF... Made us feel so comfortable and were so helpful 😁','2020-02-23 01:26:07.872000','2020-02-23 01:26:07.872000',5,'Crystal Carrillo','https://lh6.googleusercontent.com/-wPgqzA957RE/AAAAAAAAAAI/AAAAAAAAAAA/ikIVpCMGri0/c-rp-mo-br100/photo.jpg','6521947413723274945',14559),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDsb-W_6mWVZhbzyyPujxQFJwtIEi6AJeJSb1VxnTfg0gwta53B7srMJHT9P-vS9fmPMpufPBM7Ow2x14E8JTDZlJ_mcA','Great work done for allergies from james and sarah','2019-08-06 05:03:37.438000','2019-08-06 05:03:37.438000',5,'Alex Lopez','https://lh4.googleusercontent.com/-31Z0qZtZdUQ/AAAAAAAAAAI/AAAAAAAAAAA/7-mYDlhlzRc/c-rp-mo-br100/photo.jpg','17898197009688164559',5602),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDsB5Bv3dsmqEvjGwUP1Sf_u1-MlyhoCrSaMy2t_2IrlKQEJTGnChfE66MN5KPA6S3ROfZt-jqCgNr6dxS1keWE2CsV90','Wonderful, Ashley K, Ashley b, susie','2019-05-16 21:03:38.349000','2019-05-16 21:03:38.349000',5,'Tina Gilbert','https://lh5.googleusercontent.com/-ioet1_VcLDI/AAAAAAAAAAI/AAAAAAAAAAA/iANZpb59kvQ/c-rp-mo-br100/photo.jpg','8626688543755174284',8481),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDsbbflmnQK42qrckGLHkEyNWsxxmrRU_60wOZcbVl1H7vjClS_f5yXGzEhDoAWG0Ufdc6mkQ2jOc_VE4TKFyO2wheq7c','We waited two hours for a covid test. Within those two hours we are saw other people who signed up to wait for a covid test. It doesn\'t make sense to have to wait that long.','2020-07-14 07:38:45.114000','2020-07-14 07:38:45.114000',1,'Tyler P','https://lh6.googleusercontent.com/-tAtEvIcN4fc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmZ6MJxZsF62_ucLmoQWyTWfG2_fA/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22251),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDsdST9z2Eage4w6XhWMeDHu5eSa63P3PIgP4sEAsg5e7UwaMKESBvnP6bPvMpyhlV3hZJm6LrPG9zeolAmkS6OG11Iik','This place was amazing! I just moved to houston and got sick so I came here i was in and out super fast and everyone was super nice','2017-04-18 19:50:33.276000','2017-04-18 19:50:33.276000',5,'Chase Smith','https://lh6.googleusercontent.com/-Y8DWLgOqM30/AAAAAAAAAAI/AAAAAAAAAAA/auUbEg4whRM/c-rp-mo-br100/photo.jpg','14567670160750071148',1846),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDsexx0ubshaBA4KPhv06Peg_MpdEimSyThn24S-6oO-k9zq6WMlWBWzQ-iF9iDXixo74QG8Zx9r0Cwwa2j0fSlKlcXvM','Dr. Wang was awesome! He made me feel at ease & answered all my questions. He spent the time to really explain my diagnosis thoroughly & I appreciated that. Troy & Jessica were friendly as well. Deanna at the front desk had great customer service & was super kind.','2019-09-23 07:32:08.546000','2019-09-23 07:32:08.546000',5,'Samantha Garcia','https://lh5.googleusercontent.com/-67-phu_yBdU/AAAAAAAAAAI/AAAAAAAAAAA/AxS6sSLpeMY/c-rp-mo-br100/photo.jpg','16389487648212004696',2888),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDsg6AiwS-Jx9Oz5Bja1PYxXnRUzExnc2J_XBOgfZ7uC-mALCHhPJgVnDX8_cUeNmB7-0usld-usev-ebIp4cnfRqzPMQ',NULL,'2020-02-18 22:14:34.774000','2020-02-18 22:14:34.774000',5,'Shannah Daly','https://lh5.googleusercontent.com/-_CrPBgMPgnU/AAAAAAAAAAI/AAAAAAAAAAA/Gs7kIfSYB-A/c-rp-mo-br100/photo.jpg','16389487648212004696',10873),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDSL4L_x7Mc14PlD_kS2vLCM8cBKCrocV8kmWcWcijX0VonYTjnk9PBIWAl2b2O9YXWruSynBQmYPolBYJC8V8gaHq3Y8','Awesome experience. They apologized for the five minute await. The nurses and doctor could not have been nicer. Nurse Shelly was great. Receptionist very welcoming. Waited in a comfy bed with a warm blanket to see the doctor. Nice to be able to get a CT scan done here. Will definitely be back!','2019-01-04 21:44:45.063000','2019-01-04 21:44:45.063000',5,'Katheryn Barlow-Williams','https://lh6.googleusercontent.com/-uw8Up8vw-nU/AAAAAAAAAAI/AAAAAAAAAAA/1LfN5HsnR98/c-rp-mo-br100/photo.jpg','16891069708558046635',4379),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDSlpaqyHnA87Rt_oZtPv_2NeyI2Tf2ciTmRgzSMXdyE24zqqSHF7q-ZgOCw31VvRlml19IIRaINyIFaHSYpXImusUjSc',NULL,'2019-04-30 16:06:36.021000','2019-04-30 16:06:36.021000',5,'Colby Forrester','https://lh6.googleusercontent.com/-Rd15GccrZ4M/AAAAAAAAAAI/AAAAAAAAAAA/vPBXK4HsMjc/c-rp-mo-br100/photo.jpg','13486358490203335051',1028),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDSMfO-qDvs0dfbtHgBVoaRth9zb4HjehVs2krdBNN2YrXLDZEvIMGHrwmFm2FUX6vDJ2ffA8bUF67jthQJdPAoTvdd7Q','Amazing staff that cares! 😊','2019-12-25 18:39:07.846000','2019-12-25 18:39:07.846000',5,'Vivian Hernandez','https://lh5.googleusercontent.com/-PwOBhnDOyPo/AAAAAAAAAAI/AAAAAAAAAAA/zC_7FsalSCg/c-rp-mo-br100/photo.jpg','17898197009688164559',5327),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDspR2eppd7xpiTHG4E0CA5G0ze55q-LPM92lgtTEk6MeD72DGXDH_fk4SK1NjO7uYubKrtr5aNFaAB8KilRftcNatFSk','Great care and attention , everyone is so friendly and helpful. Mercy and Sussy helped us and took great care of my husband during his visit!','2017-02-23 15:22:32.359000','2017-02-23 15:22:32.359000',5,'Yasmin Patino','https://lh5.googleusercontent.com/-z_o9bFyvZGU/AAAAAAAAAAI/AAAAAAAAAAA/7AvxRar6LNA/c-rp-mo-br100/photo.jpg','14904078213800803294',2406),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDSvMJED43Kl1hE0K4xFgfb-P-y_CnBX5W1DsQvo7gXpDCebf0JFqSac5idUvfcqHFvfAaRbNuW4U8KCAQXIbiEy5E08g',NULL,'2019-03-17 15:29:04.073000','2019-03-17 15:29:04.073000',5,'Karla Arzate','https://lh5.googleusercontent.com/-ASLC6dW0AqQ/AAAAAAAAAAI/AAAAAAAAAAA/YqKe9-zQ9vg/c-rp-mo-br100/photo.jpg','17898197009688164559',5806),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDSVYMJmb3sd-08uf9FFTKn6lmiHJhYlHWYRKdjAdx1yKHHwhtFqbPTAB-tqU3GisZvOfkDY_Tlu4O6P4diQ_4OQtZoOc','Awesome experience! Staff was great. We were in and out in no time. Recommend 🤩🤩','2019-07-28 02:54:36.991000','2019-07-28 02:54:36.991000',5,'Kerri Reyes','https://lh4.googleusercontent.com/-jQ6RheO7SyE/AAAAAAAAAAI/AAAAAAAAAAA/sa4ck4HYB4o/c-rp-mo-br100/photo.jpg','2694018788013845459',6101),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDsXU-Q-5PtGtfLEcE7ENxNq4xfXG7lMjj6LPaKL16IY2OdA4Md9EOaJwJCH-S9Q8GTwEcwwUR521RzvD42I8VADhJMC4','Great service and fast accommodations. I was seen immediately and felt like I was truly cared for and given first rate service. The staff here really know what they\'re doing, highly recommended. Both Kim & Hunter got me back quick and made the check in experience seamless.','2019-04-04 19:29:13.751000','2019-04-04 19:29:13.751000',5,'Matthew Butler','https://lh3.googleusercontent.com/-EdjYhOR37f8/AAAAAAAAAAI/AAAAAAAAAAA/llrz4Q0o_V4/c-rp-mo-br100/photo.jpg','16590124370714063921',3456),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDSz7i8Xr_wTAzSTuHYGSWVFtUY3L0tz0u1j0xbqDeBR7aJqp91eKekaeB-dtcMcEht7wP5fBe1-Je63o8N9hGeWJOTmg','Very nice and helpful staff. Thanks to Lindsay and sarai at registration for the help.','2020-07-24 04:51:56.064000','2020-07-24 04:51:56.064000',5,'Vanessa Zapata','https://lh6.googleusercontent.com/-ixAgv06Mq8U/AAAAAAAAAAI/AAAAAAAAAAA/R0sErOUw3JU/c-rp-mo-br100/photo.jpg','16590124370714063921',22661),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDT_C2zRNcVEbh9_NMPN0wt5Q9TisBEAcnlthfJIp3ica64yUpj9UmZUljD3zMQ0HTgQq_rB8Q_K8duGhMcAGAK8sDZOQ','The staff DR. KE ZHENG,MAYA,KRISTINA,QUYEN AND JOHN WAS EXTREMELY FRIENDLY! THEY WENT ABOVE AND BEYOND TO MAKE SURE I WAS COMFORTABLE! I WOULD HIGHLY RECOMMEND THIS LOCATION.','2020-01-05 15:59:47.474000','2020-01-05 15:59:47.474000',5,'Roxine Smith','https://lh3.googleusercontent.com/-UDEcTAVan2Y/AAAAAAAAAAI/AAAAAAAAAAA/sYhfaAKp-Uw/c-rp-mo-br100/photo.jpg','12541597562633926366',253),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDT_mofFjmPj-qmILcodFBrb7nQacTVUiVSQrh1UQ0jrvh6oN1_-SvXg6QhZwUHS6LtkuWhVUzz8MG5jU9DZ3-ULMsLwU','Kim made check in for me and my sick 6 year old very quick and easy.\n\nLucas and Eric were very kind and patient with my reluctant 6 year old.\n\nGreat experience, and we will definitely use them the next time one of us is in need of medical care!','2020-03-02 18:45:35.546000','2020-03-02 18:45:35.546000',5,'Ellen Markham','https://lh5.googleusercontent.com/-k6tS9x8j7Po/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmgsKzth3N_rlgfg1CJZCpdYGTK6g/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14303),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDT_zFtdJVehUS92kCuZmkF49OJGsz-Owvd-8gfmmaVCHDmGNbxWB32FMZ50jvGo11Ao8dINeSca0Q9dVAxzUPgD6TSaU','Went to Medspring urgent care this morning and mrs Adriana, Linda & Dr. Keith W. Helped a lot. Nice friendly people who get the job done. I highly recommend this facility to everyone. The heights facility.','2019-04-04 15:28:10.089000','2019-04-04 15:28:10.089000',5,'Ronnie Rabb','https://lh4.googleusercontent.com/-rB47ucQBjkc/AAAAAAAAAAI/AAAAAAAAAAA/BsCX3yoLUFs/c-rp-mo-br100/photo.jpg','14567670160750071148',1353),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDTF_Msw4xm3nsubIKnaVi0-xuo3E_hrjOC9VTXH-8rcHbh9qm1k-QoPcjfj8xyy6KoQc0iqyBsuNu46pwtHWNgbvueG8','Very nice place Miss Brenda looked out for us','2020-01-10 02:18:07.535000','2020-01-10 02:18:07.535000',5,'Edward Brown','https://lh6.googleusercontent.com/-SjC6hBEJJOI/AAAAAAAAAAI/AAAAAAAAAAA/mtOX3KzsgMw/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',14877),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDTfH_gWn5YWcigdaQkoWHy1Qa-kgC2JtawQ8uGCYuEPFPFgHkOoRGKt553doSMPelRcTLCy7Vzy6BPKgPrSI9wf4u58k','When I arrived, they got me back to a room before I could even finish the paperwork. Service was fast and efficient with test results back in less than an hour. I highly recommend for emergency needs.','2019-04-30 20:43:22.655000','2019-04-30 20:43:22.655000',5,'Kc de la Garza','https://lh6.googleusercontent.com/-YPuks791TdI/AAAAAAAAAAI/AAAAAAAAAAA/UdTmfgsjPEw/c-rp-mo-br100/photo.jpg','14567670160750071148',1332),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDTIEYraYRs6l6d2OtoswUNszT-pI83bkp7tYCaKxekVXm6AvUBmHmMwHSYDcGqpnBFuX7Z7XOPg3C4NUGTj10XZMtBm8','Awesome!! Fast, friendly, professional, knowledgeable staff! I walked in feeling horrible, after medicine was given, and test were complete. I walked out feeling good.. Thank you... Will recommend here to everyone..','2018-07-05 01:57:47.742000','2018-07-05 01:57:47.742000',5,'Yestal Collins','https://lh4.googleusercontent.com/-NFYzWtq3o2E/AAAAAAAAAAI/AAAAAAAAAAA/HxaJi0pMBjc/c-rp-mo-br100/photo.jpg','12541597562633926366',635),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDtjx_HuhtaL-mWR8T_8d2U-aC0XBpqlMrHgfTwjgZIFDsd0xibnKJTCryX3nnIzQ2GQpoXn9SjrjBU99x7jW77vdqtcs','I highly recommend SignatureCare Emergency Center to anyone. They have trained staff who work or have worked in a traditional hospital ER. The staff who assisted me couldn\'t be nicer or more helpful. I went in feeling terrible and left feeling great (as great as i could feel at least). All this with a 5 min wait time.','2016-08-01 18:41:49.997000','2016-08-01 18:41:49.997000',5,'Marisa Hendrick','https://lh5.googleusercontent.com/-fBu00eUFqew/AAAAAAAAAAI/AAAAAAAAAAA/QLik4A7bEcw/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',2000),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDtjX_rAqnJJ5ifNk2zN0MmxWuYYmwSMmTjvTxjX3FqF3CUYekqWF3VKesQ0lbbR9_Sn9AQNosfGwayWS7NgGCgh3rcAs','Brenda at registration was fast and kind. Dr. Souman gave me a very detailed explaination and answered all of my questions. I don’t have insurance and the visit was affordable','2019-07-07 17:36:13.131000','2019-07-07 17:36:13.131000',5,'Ron I','https://lh3.googleusercontent.com/-CygR4t7zlfU/AAAAAAAAAAI/AAAAAAAAAAA/Pzmu6KWROQY/c-rp-mo-br100/photo.jpg','3511292162159714121',7265),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDtkdSmeLkSnWVUkUnQsbThFOLQshlphikBm4DIT8qQtY_fZlc4cXH9tAb6lrQ0udF6oOU5zn5bVHVCCBPL5YIAyGqJBw','I went for a Covid-19 testing and my whole experience was beyond my expectations. The location is great with very modern facilities and equipment. Friendly, knowledgeable and inviting staff was a pleasant surprise (my past experience with other urgent cares and clinics was not the best in the customer service area).\nThe doctor and nurses were as thorough as they can be with the process and made as simple as it could be and I got my results within 20 minutes. \nI will definitely continue using them for my emergency medical needs as well as my family.','2020-07-24 03:05:01.142000','2020-07-24 03:05:01.142000',5,'Eduardo Torres','https://lh3.googleusercontent.com/a-/AOh14Gh247xmHTNEdwVPgP7J9FrAfD_0EW-W4rsJLGAFew=c0x00000000-cc-rp-ba3','14904078213800803294',21947),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDto-dG1RR7kdtPvl8eEpPNuFxidZNzFjJZYPGyp8aZmA4BjWdh467FU0eMtmeQb-yA7aywX3Eo6ofXL1d4P1Vue4g4h0','Super fast and easy! I had such a great experience I recommend this place to anyone! \nLaura is lovely and so is Jessica and Olivia!','2019-01-10 19:38:19.425000','2019-01-10 19:38:19.425000',5,'victoria patrick','https://lh3.googleusercontent.com/-pozkiSuD-hw/AAAAAAAAAAI/AAAAAAAAAAA/HXPO5FjlOJY/c-rp-mo-br100/photo.jpg','3511292162159714121',7490),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDTOdbhR1yrkkCvnEr6g8ACzwJ-12a8lFNHAUe8R5I4j47Zp9SKJ5opwKNq5xDw2ZK9cmOGntLh9ZlIyt4_4yNcL0E8p0',NULL,'2020-01-04 19:46:08.942000','2020-01-04 19:46:08.942000',5,'Lysette Sanchez','https://lh4.googleusercontent.com/-NsG9aD3ak58/AAAAAAAAAAI/AAAAAAAAAAA/eEOtt6I1HQQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2485),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDTOjm6BNbg4117YbzUcpT4wX5EfUGOAUSP2wzjR98qlmIsX99wsK9UBE4LtM84EEOypZYduQDr_VpAflaa0rZvWGfRrQ','Was assisted by Ekaterinburg And Patricia, good service and was in and out within 1 hour.','2020-03-05 16:22:24.115000','2020-03-05 16:22:24.115000',5,'John Ly','https://lh3.googleusercontent.com/-tPkck6UuH8E/AAAAAAAAAAI/AAAAAAAAAAA/7pDNCT9YleU/c-rp-mo-br100/photo.jpg','16389487648212004696',13727),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDtrc_sdQhZSYl_peSX6CG7hCO70DSRpJ4RyYtUi0wNs2ROWlFbdIkt7BCLGAoK-acMCL7waDLYr2FtgGZBo5Eqz2zpwU','Seen in a timely manner. Very friendly. Dr Daniels is very thorough. Nurse Blake very warm and funny. Son le very informative. And Delicia is friendly on top of her game!','2019-11-05 20:10:36.929000','2019-11-05 20:10:36.929000',5,'Rocio Garcia','https://lh3.googleusercontent.com/-Hj5j3WK1Duc/AAAAAAAAAAI/AAAAAAAAAAA/dXXlG-Bi6Gg/c-rp-mo-br100/photo.jpg','8679688254631342173',8743),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDTtBM_SAwM_9QUVdR9qDQ9MLeVg-j9lNQV-I_fY__AfFyh5kC-ofHRSeNSmTpng7IFTXTQfUjsIOpR9l7CNIxSy-QT04',NULL,'2020-07-03 13:37:15.488000','2020-07-03 13:37:15.488000',5,'Yasir Saoodi','https://lh5.googleusercontent.com/-7TD2QX2jBUA/AAAAAAAAAAI/AAAAAAAAAAA/MGdepT78Hoo/c-rp-mo-br100/photo.jpg','12541597562633926366',21341),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDtTL8yoXjsfSTCHO9vMk5flo0sHTJ43Mj_SIixS9bm0ZReP_G-DgfjTBSts6-lQfzwFXzZ54rk8eQ0UwZVCM7noy6DYA','The facility was clean and well-managed. Staff was friendly and wait times were relatively short.','2018-01-05 16:28:58.576000','2018-01-05 16:28:58.576000',5,'A Self','https://lh5.googleusercontent.com/-JP85-mzOFPc/AAAAAAAAAAI/AAAAAAAAAAA/9nKOVgZbRY4/c-rp-mo-br100/photo.jpg','14567670160750071148',1694),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDTvIL-LKC_beKgisRe8QhYqvCIVUBQCj1az9ql_p_pM__DDUL9_jQ0KjM4C9ADUh2yc-cKLHLm9hSg2pQk5nky-AgUu0','Amazing and very professional atmosphere and staff, no wait time and our care team was awesome.','2019-02-09 01:10:52.077000','2019-02-09 01:10:52.077000',5,'Rosana Castro','https://lh3.googleusercontent.com/-un3zL05BLl4/AAAAAAAAAAI/AAAAAAAAAAA/D1ttbcflTYM/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',1069),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDtxhQIASXTtjtF1_eHUIBKtUkrZKJG0qRgBgAFzWVMptcBXsvPvpxw8H17Ljg76GNbapooFAyzyTrMklqBHHujb96Doo',NULL,'2019-04-07 19:08:31.633000','2019-04-07 19:08:31.633000',5,'Jordyn Hayden','https://lh5.googleusercontent.com/-4Q-CuGaP8AM/AAAAAAAAAAI/AAAAAAAAAAA/9puISomcxoU/c-rp-mo-br100/photo.jpg','16590124370714063921',3443),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDU-KTIo9Fc1Ntqy1MLHESLXgQ7vs-Gtu5d6C-WngzHNVlhFcybX5_6wkQcytv8tKxb8Pe-wj3SisqOsO0aQa0cjvZCoo','Super friendly and fast, spent more time filling out the (minimal ) paperwork. Clean, professional , and great location! The receptionist Aileen was wonderful , as well as the doctor and two nurses.','2019-08-20 00:48:41.214000','2019-08-20 00:48:41.214000',5,'diala c','https://lh4.googleusercontent.com/-iZH7pFc7foU/AAAAAAAAAAI/AAAAAAAAAAA/ZaEmVzB5DXA/c-rp-mo-br100/photo.jpg','16891069708558046635',4216),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDU0LjErb8qFX85fKmaSLpnB26xNW7KTNPuKdJdYKB9IhDSYcANnh-okAMLiMPBNJfpyXaCG2eWCHHF-UB7gyRAg8FJEo','Excellent!!','2019-05-04 02:44:55.545000','2019-05-04 02:44:55.545000',5,'Damaris Rodriguez','https://lh5.googleusercontent.com/-moh3GIKlkSo/AAAAAAAAAAI/AAAAAAAAAAA/RMCaoJjLah4/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',1023),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDu7xqqRTQMmzzcRGkuBFiKvK_mJ-ebdAseUph7KAWd9b26BrkvSF2Xx5I6U1DZ2Pk4JAg1p5-H3iWjni3DQHDRNWl8S4','It was awesome','2017-04-30 21:05:21.223000','2017-04-30 21:05:21.223000',5,'Frederick Ramsdell','https://lh4.googleusercontent.com/-7abBRnycTr4/AAAAAAAAAAI/AAAAAAAAAAA/OukGNxesFXw/c-rp-mo-br100/photo.jpg','17394740196501090048',5068),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUaNsMOq94VhPyWBnc5-bXc_vZiUm9rfphYyT4itGfK9jvpzcgAZgwNFwZy9hhNJ124SFoui-xi4rtn15AN-gnqIwT-8','Dyveliz, Anthony, and Morgan were all extremely helpful in figuring out my medical issue. They were nice, informative, and compassionate. I highly recommend this emergency center.','2018-09-17 13:36:37.773000','2018-09-17 13:36:37.773000',5,'Arius DuPont-Jackson','https://lh3.googleusercontent.com/-Tm9AgVI59c8/AAAAAAAAAAI/AAAAAAAAAAA/YdB5aQ3XPEc/c-rp-mo-br100/photo.jpg','16590124370714063921',3721),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUCMOYFqwlvuqIhIS-3N_xqVMJmtNsU7d7V2BXUla65ldziUUrsW9iuSB1899lHyeAMnNAeZkt8Ri4-boCf1pvTFNhCc','Fast, excellent care. Very friendly staff, made sure I was as comfortable as possible. :) Thank you to Dr. Pham, nurse Blake, radiology tech Rick, and Vy in registration who was very pregnant but came to meet me at the door to ask if I needed a wheelchair. Thank y\'all!','2019-10-31 05:56:07.653000','2019-10-31 05:56:07.653000',5,'Christin Poursartip','https://lh4.googleusercontent.com/-lUCJNpZyvjo/AAAAAAAAAAI/AAAAAAAAAAA/BkesE-lLU2U/c-rp-mo-br100/photo.jpg','8679688254631342173',8759),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUcPmkAHcpBk1fXlM6gBDYwX8qxsh1Mbq9tc3h8Y1PkVUg2eUY22yKhAUGp8GTGJBf66bnO389HcqeU_5FVUvTuNdDpA',NULL,'2019-07-12 22:52:26.047000','2019-07-12 22:52:26.047000',5,'Gabbyy mata','https://lh5.googleusercontent.com/-OKqQXCBoLYw/AAAAAAAAAAI/AAAAAAAAAAA/sNP_Z23OYlw/c-rp-mo-br100/photo.jpg','17898197009688164559',5638),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDuCy4k6gzaUeq_yGV6-XA4gz_kqWrI6FCzPr_GSkaNWR0nyx4aPfeEhyitD7wQOMyHlHIcebDTD-a513XPlPod1FT6-0','The staff at Signature Care ER are so sweet and so kind! April was so kind and made me feel very comfortable. All the nurses and doctors I’ve met there have made my experience feel comfortable and light-hearted. Going to the ER is never ‘fun’ but they made it the best it could’ve been. I would 10/10 recommend going here.','2020-07-26 18:27:50.692000','2020-07-26 18:27:50.692000',5,'Molly Landon','https://lh5.googleusercontent.com/-_6h5zV7RIqw/AAAAAAAAAAI/AAAAAAAAAAA/6TZMAce4_DQ/c-rp-mo-br100/photo.jpg','14748677429039074158',22561),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUD6XBnv25lPu_Xz3Rom9c4VVBmOgvxe6PwWV3kQ8Xw8UZlzDbDqMXQhwEybCydoWEuIWAlRMd5HM9u30N0XCkwYxUho','Woah I can\'t say enough good things about this place and these people. We just took our 4 year old as she was struggling with a cough and a fever for about a week. After a few regular care visits she seems still pretty bad today so we took her to SignatureCare.\n\nLuckily it was not busy and we were seeing a doctor within 10 minutes. Everyone was crazy nice, nurse and tech Marty and Andrew were great, and Dr. Lingan was outstanding. They were great with our little one, and made sure we covered our bases, answered all our questions. and helped us catch some early pneumonia. \n\nThe facility is great with everything on site, and we even learned you can stay overnight for many cases instead of going to larger hospitals, as they are a full ER center that covers most major emergencies.\n\nAnyway we would definitely recommend it and it will be our first choice in the future!','2020-02-16 23:53:39.319000','2020-02-16 23:53:39.319000',5,'Jason Flenniken','https://lh4.googleusercontent.com/-fjd-sr3Kf5o/AAAAAAAAAAI/AAAAAAAAAAA/eaXrqPL38Wg/c-rp-mo-br100/photo.jpg','16891069708558046635',13948),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUflMiUb3iOg9kO04cT3eNqq6p2ZYoF1oZMjueJoHsuj6OaW7uqbTEkJzxMqHiSsee_T_ZUyhmUjSo18Ic6AW5PNhSrY','Lindsey and Purvika was great from the time we walk in to the time I walk out very polite and very professional even the doctor that came in to see.. I would recommend anyone to come here in and out.','2019-11-14 03:52:34.836000','2019-11-14 03:52:34.836000',5,'Amekia Poole','https://lh6.googleusercontent.com/-da9zTvPOv0w/AAAAAAAAAAI/AAAAAAAAAAA/Qp2XDyLSdJ0/c-rp-mo-br100/photo.jpg','8679688254631342173',8735),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUftR2eb2tnA11bb0W-Z7qry46EdW7ejf5a6b3TrWYy04aB1eKKIsNXl_PEzsJmqGVeXfZVyk0Pq-OExM1vcIXbMCOYQ',NULL,'2018-12-08 05:18:20.083000','2018-12-08 05:18:20.083000',4,'Emily Caulder','https://lh3.googleusercontent.com/-jPATihb1iGs/AAAAAAAAAAI/AAAAAAAAAAA/dZPEKj23AqM/c-rp-mo-br100/photo.jpg','16590124370714063921',3620),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDug8feFygs1rXzE7LO7D4vvbw9_Af0g7XjocxxVN5zOz5EHvqDNI0JEpTq1AogNxgiK31t6RpyImh7hnNijoiHQxfiDk','Girls at the front desk are SO sweet and accommodating!!!','2020-06-26 18:48:46.361000','2020-06-26 18:48:46.361000',5,'catherine larkam','https://lh3.googleusercontent.com/a-/AOh14GjIqCkUoauYmz-KQIQSgY_C97p238aprJtV-nkytQ=c0x00000000-cc-rp-ba2','2694018788013845459',21450),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUhj0RC25pRGpfEODz6T_Aycviam2s9xpeDw0X6FFA2Est5wvm-IRI9Px4VFNGfFemoXA82eG1TSgdAkqk9sKs9cU_nU','I\'ve never been in an emergency and started feeling better just because of the laughs of love of the staff. I will always come here...','2019-11-25 00:11:50.722000','2019-11-25 00:11:50.722000',5,'Theresa Alexander','https://lh5.googleusercontent.com/-bPyAwJP3Mvg/AAAAAAAAAAI/AAAAAAAAAAA/U9ylFRfgBmA/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2635),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDui1ENrRWtg4NaDctYQA-otMuSyQUvBqkfPFj4cLsF2r3U4ZanRxtQANYHpWGihQV9tvDv-4FpcQTrUHq9zh2uC_Te0M','Stephanie was a great person to walk in to very helpful and understanding explained how everything was gonna work. Will definitely come back','2019-09-13 22:37:25.914000','2019-09-13 22:37:25.914000',5,'Mariah Moreno','https://lh5.googleusercontent.com/-BJ4u1I8TY_U/AAAAAAAAAAI/AAAAAAAAAAA/r-SzHi7l6Oc/c-rp-mo-br100/photo.jpg','17898197009688164559',5548),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUJDg0yEOXizdscwH6XDhrlV8ClUFVfeHiVdMYLye7xeqJcObJ9CvrPFWp1jTXmhLijEKI5ahpt0w6Q4R5B6cEUnQHnk','They\'re The Best!','2019-12-03 01:18:21.224000','2019-12-03 01:18:21.224000',5,'Darline Nisar','https://lh3.googleusercontent.com/-o1sPIMqxzXA/AAAAAAAAAAI/AAAAAAAAAAA/XbWbnmyLssA/c-rp-mo-br100/photo.jpg','14567670160750071148',1186),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDuNPq0Jn0Tb5Zje5HRQkRnLAEI13sYaUonBZO5wIENMp8V9RT0NP5YLR9t76AKPqGUefIl7myA2lYOq2xX4lotzMTrvA','Signature Care does a great job at treating their patients, making sure you are seen by a nurse and doctor quickly, and having great attitudes. They make sure to give you the most comfortable experience possible. Anthony (RN), Cameron (X-Ray), Dyualiz (Reg), and Dr. Kimball have all made my experience at Signature Care the best it can be. They know what they are doing!','2019-03-06 16:43:25.316000','2019-03-06 16:43:25.316000',5,'Halle Ferguson','https://lh4.googleusercontent.com/-xOD43sTbjlU/AAAAAAAAAAI/AAAAAAAAAAA/mhVMT3g9R0g/c-rp-mo-br100/photo.jpg','16590124370714063921',3507),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUo5frUjhudm3GBd4KGfNve4bdgI_QQdwBr7CC8A93zOZsxzQVT8OcL6o7DT1ZeJO-VDijJI4PrQ6_wsBnj8bO5ZhxxE','5 star facility..Tricia Erika Robert Darnisha and Dr. Chukwuma are all very professional and humble people. Thank you for your excellent service..and for taking care of my sons health! \nMay God bless you all!!','2019-11-03 17:13:29.186000','2019-11-03 17:13:29.186000',5,'D B2B','https://lh5.googleusercontent.com/-nZAFnALg7Fo/AAAAAAAAAAI/AAAAAAAAAAA/L1AA_WzyiHw/c-rp-mo-br100/photo.jpg','16389487648212004696',2732),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUOkX4MrF36ba0JSCy0BCjUOZInArgJU53fXhBBDPnr3elLlujghYSJcHFh0mTGLvTLzOPh2OVwRX8wR3MBwwS5H5o5Q','Great service husband was in a car accident the employees were all courteous and helpful!','2018-07-20 01:50:04.618000','2018-07-20 01:50:04.618000',5,'Whitney Shields','https://lh5.googleusercontent.com/-1BxcKC3AdkI/AAAAAAAAAAI/AAAAAAAAAAA/IfXfeVbeHyg/c-rp-mo-br100/photo.jpg','14567670160750071148',1594),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDUpRGP1bbnte3JeA8ahKTcefCtGtSEyEKEzT3PUG9JYNiwZWS9JqRqIrm3Nn67SMdvA_Gl5qbPagyeEpzNEog5IrsbSY','All the staff was so nice and friendly. They took great care with my 8 year old daughter when she came in with a hurt shoulder! I would recommend this place to everyone! I will return if ever needed! Thanks!! ','2017-04-17 17:38:58.853000','2017-04-17 17:38:58.853000',5,'boogiemama8278','https://lh5.googleusercontent.com/-aBhyHz_3wiw/AAAAAAAAAAI/AAAAAAAAAAA/Et5aSY8naK8/c-rp-mo-br100/photo.jpg','14567670160750071148',1848),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDV-Ieg2U3UUEVF2VOx4rPbs7bclIDX_PPGaJihT8hbYi30KV2TFk8SqB0jso14XI2MBsuL3RB8ZMmHCuAf4DD1goGX08','I had taken my daughter to the E.R. and the service was really fast. The receptionists was very kind and professional. The Doctor was excellent he spent time with my daughter and I explaining the reasons for her issues. The end result was excellent. Dr. Wong we love you!!\nHurray for the entire night staff!!\nThanks for being so kind!!\nCharlene Gulley','2019-11-04 03:14:18.581000','2019-11-04 03:14:18.581000',5,'Charlene Gulley','https://lh6.googleusercontent.com/-pqbRN7dwYuk/AAAAAAAAAAI/AAAAAAAAAAA/m3IWmQFre34/c-rp-mo-br100/photo.jpg','17394740196501090048',14078),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDV0txhg4l2iLh_5uXqMWnq9I41IwNXYPzJgFU-0dDCx9d3vyPNHezPcQRPhon68-ILjliCPPbOr_eVBH_7f7xVbpy8CI',NULL,'2020-01-05 21:00:11.632000','2020-01-05 21:00:11.632000',5,'Dale Arnold','https://lh5.googleusercontent.com/-GDUHKmhekhQ/AAAAAAAAAAI/AAAAAAAAAAA/8V7ADhJIAqk/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8035),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDV7z1t-qu_UW_e5r9VtO-qevPRzbyyI7q8yTrTMp0k67MmBxbbkSefyATD31FbUs2p3XZUcZEpOk0E-QN8i-RLpo4glk','My son was treated quickly for strep throat. Kristina his nurse was very caring and helpful. She made sure she included my son in his plan of care. Sindy at registration was very helpful. Clean, safe and efficient ER.','2018-10-19 01:35:28.135000','2018-10-19 01:35:28.135000',5,'Jennifer Bower','https://lh5.googleusercontent.com/-ZXz2vLcjXqE/AAAAAAAAAAI/AAAAAAAAAAA/Po1Yua__6HM/c-rp-mo-br100/photo.jpg','12541597562633926366',595),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDvAki1Rhti2sCmaZFwL71xlLXBn4NsoHqQmwYeTu2lGw8UVHB2B4Aqxm88d0Egs30TL5mJHuD-7VNMyVEIi8ALOStoAQ','I had a good experience and the staff Dyveliz, Jacob and Morgan was very helpful at making me feel welcome and cared for my emergency situation','2017-08-20 12:17:45.209000','2017-08-20 12:17:45.209000',5,'Inesha Tyson','https://lh4.googleusercontent.com/-A0aosPrcAxI/AAAAAAAAAAI/AAAAAAAAAAA/79KkzH04NB0/c-rp-mo-br100/photo.jpg','16590124370714063921',3952),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDvJBE4SXc4W_Q5ka8vJ4rMowiOcSb8noYIztq38mgODcKFNVgjFxTazhFdpistA0PhVvxxbbyxBGixl-qLHBan-Tf1IY','Great service from \nDr.Omalley\nMax- Nurse \nJerin-Radiology \nPatty-Registration \nSean-ErTech','2019-09-06 16:45:22.719000','2019-09-06 16:45:22.719000',5,'Cooper Better','https://lh5.googleusercontent.com/-clHoJIiyUyE/AAAAAAAAAAI/AAAAAAAAAAA/UrGBE8X5mrY/c-rp-mo-br100/photo.jpg','16389487648212004696',2947),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDVLK16e-rei5KhjMPNFIf-8kknEPG1_z5MgOx-vp5E0P231pvixGLhPHPSdfvrmdFOgEaLHJgm2mra2-ZWNFzUAlJNzw','I will definitely recommend this emergency clinic to all my friends and family. I went in because my contact lens got stuck in my eye and my eye was extremely irritated. It was not an emergency but I got seen right away. They brought me a warm blanket and made me feel very comfortable, safe and welcomed. The doctor was very knowledgeable and helpful.','2018-01-22 19:37:09.405000','2018-01-22 19:37:09.405000',5,'Secilia Perez','https://lh6.googleusercontent.com/-dJS3AXC6IEs/AAAAAAAAAAI/AAAAAAAAAAA/O-XOdaNbeEA/c-rp-mo-br100/photo.jpg','14567670160750071148',1675),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDVlQFQhs7Riv9XLLSkz9Co20zXmhJAnytMxDNwUcFHZr24hC-pvh1C7q12CHFXOjnpVFYG0yi7mNHMyRMfogkk3gO9Hs','Dr. Vakey was very honest and good as well as my nurse Brad and Naomi. Would definitely recommend them and they offer great snacks too lol','2019-08-26 20:31:42.473000','2019-08-26 20:31:42.473000',5,'Kelsey Steele','https://lh4.googleusercontent.com/-Kic8IiSAv60/AAAAAAAAAAI/AAAAAAAAAAA/zfBp2pBNtQc/c-rp-mo-br100/photo.jpg','16590124370714063921',3234),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDVOwRbIEdRnc1v1zZNDD0onCROBxC1im4Bs38zEQR9h-6QHBKqb7i82FQ1zb_8rzTSeTlClsvixNP3DucCFya4PwxDVM',NULL,'2020-08-08 02:10:05.762000','2020-08-08 02:10:05.762000',5,'Luis Blanco','https://lh6.googleusercontent.com/-XOPLl_MxbGc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckGAOuKAUx0ighpnwpJvr2z-o81Zg/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21912),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDvqNV6f6wxVd-ZmjfHSXdEUylZurrpUTd5NjgjBEseQk4jJtAtUT0eKlogLioXEFQujELYw_Aoj5xJHsWBVOIizojkes','Awesome folks. Amy Calvin doctor GUTRIFEND Maude sure I was taken care of!!!','2019-07-01 15:33:25.651000','2019-07-01 15:33:25.651000',5,'René Hicks','https://lh4.googleusercontent.com/-QnX4mPRiNGY/AAAAAAAAAAI/AAAAAAAAAAA/JPsMLA8F_Sk/c-rp-mo-br100/photo.jpg','2694018788013845459',6123),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDvRlsT9PlFOgboqdPoaaaR8_Du8DL9mThRU7ufheuzuSj2QEoiU0NYwS7AGDJXKLC6UJWFnyI10pqmlYCnS_jI_KWEXY','This facility was amazing. My first visit with Dr. Ding Lin was short and easy. Despite the cold temperature , I was very comfortable. \n\nMy subsequent visit with Dr. Erica Evans was very easy. Although the stitches were slightly painful, the Doctor and the nurse, Jackie, kept me talking enough to keep my mind off the pain and the procedure.','2018-03-14 17:20:12.410000','2018-03-14 14:36:36.876000',5,'T Revis','https://lh4.googleusercontent.com/-xoup21KmHwY/AAAAAAAAAAI/AAAAAAAAAAA/pqGgysE_xQk/c-rp-mo-br100/photo.jpg','3511292162159714121',7718),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDvu0Ct7H9ODSlY6jeB8p-svsaYs5BK6x_RJoLccZCoV2GNBJG6ggvKXeKH0b8zCOFbvxP5UiJXQfIsieAvfn51indjoU','Lorena T and Victoria P were very kind and helpful, at the front desk!','2020-07-31 17:08:54.910000','2020-07-31 17:08:54.910000',5,'Cheyenne Slaughter','https://lh4.googleusercontent.com/--cAQc3nxF_c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl_raigywwiAjG4Qrl1aak3QwRx9w/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21992),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDVunKQ-AYUlPeUxvscJpQR5Iughad14BiLQIHTEsEncuCUIOb9vqppqxrDNJzygW5vM0zzR-1226YnhX_wo-kbayHx_0','I want to thank Signature Care emergency center. Especially Dr. Singla, Nurse Nichole, radiology Tech Jauckie, front desk, Ayesha, and ER Tech Staci. OMG THEY ARE SUPER FRIENDLY, HELPFUL AND HAVE LOTS OF PATIENCE. AND THERE WAS NO WAIT!! Was seen immediately!!!!! OMG BEST EXPERIENCE EVER. I highly recommend Signature Care Emergency Center','2019-06-08 17:07:12.297000','2019-06-08 17:07:12.297000',5,'KingBoogieQ','https://lh5.googleusercontent.com/-rO2kD4ztXqg/AAAAAAAAAAI/AAAAAAAAAAA/frUG5M5Y1CI/c-rp-mo-br100/photo.jpg','8918455867446117794',9132),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDVvoSSw4thCuou8oU2JPJkR9yhwm4rdRVwD41cuvzdk2uMj3EJ5xHnSY9x19zZw9_thmOczpbADeETfbQtHUwKzkikXI','This is my first time visiting this place ever and I can honestly say I’ll be back for all my family and I future visits!!! The staff front Jocelyn at front desk, to the nurse Jose, aannddd the tech ThiyAn...they all were so helpful, considerate, and patient with me through out the whole process of my visit....thanks guys!!','2020-02-22 18:38:35.104000','2020-02-22 18:38:35.104000',5,'Ashley Schannette','https://lh4.googleusercontent.com/-nbplR1t4rG8/AAAAAAAAAAI/AAAAAAAAAAA/VtDzezIFz3Q/c-rp-mo-br100/photo.jpg','16389487648212004696',13784),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDVVZsCwheWNDX-ucvVQz_scW0bUbGlleGtFZVD2tnnd1vCWBL3EAbLPNd8vxDlZr1csZTJE8W9-V44cYGLgwfn8g5eoM','Facility is immaculate. Dr. Dendy is the doctor that I wish were my PCP. Jaime and Carolina were very friendly and helpful. Tanishia never stopped smiling and that says a lot about the personality of this facility. I was sent home with instructions and feeling much better.','2019-02-11 04:41:26.382000','2019-02-11 04:41:26.382000',5,'C.C. Matthews','https://lh5.googleusercontent.com/-O4ewJs-2sec/AAAAAAAAAAI/AAAAAAAAAAA/TmiliVHoEUY/c-rp-mo-br100/photo.jpg','17898197009688164559',5859),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDVYFGEYL5ohrCQVLl4A8TqhNuYNrW8JLY8PFeDHOysUUrms_96-hUiXY0JFl5x_LA6BGQWcwAGeQXqARh-oMpwrcr6KA','Was able to get a rapid test done same day. Was quick and easy, people were friendly.','2020-07-19 21:49:01.756000','2020-07-19 21:49:01.756000',5,'Monica Swanson','https://lh5.googleusercontent.com/-btzMF79Wtec/AAAAAAAAAAI/AAAAAAAAAAA/rR91n-W4zzE/c-rp-mo-br100/photo.jpg','14748677429039074158',21690),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDvzNlHFWlnAY1NuPjgsnSi8YwFCyKnnRgB1uy6kH9fYuQKpwtWOgtFeHw3JJsoyUAkYwNPKxa8b7lCIa-egWdjml5ZqQ','This place was fantastic. No wait, fast and competent service. We took our 4 month old daughter and they took care of her immediately. We strongly recommend this place. ','2016-12-26 15:49:06.251000','2016-12-26 15:49:06.251000',5,'Claudia Oramas','https://lh3.googleusercontent.com/-1pyOKXIysps/AAAAAAAAAAI/AAAAAAAAAAA/ee7w_wuMICE/c-rp-mo-br100/photo.jpg','14567670160750071148',1930),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDW0SynB6budUGNJn1Hi9W3CB6u-XqQI9NAYlRx4MIXxPEKbkMiI2ruIZo-jG5r4HY5SppwCpUu09VpHktAdca8stDaVg',NULL,'2019-02-26 14:22:59.068000','2019-02-26 14:22:59.068000',5,'True Story','https://lh6.googleusercontent.com/-ezc3oyID0Hs/AAAAAAAAAAI/AAAAAAAAAAA/FrsSmby_G_E/c-rp-mo-br100/photo.jpg','13486358490203335051',1063),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDwaBz32k3PMaAeuoyhVVhib5v9G2QMOiWQBcEfS-4_Tk2xozD5OOl0HSh3oOLFyp8lDWKZVTT_HtK-0g4aUbE_2Hf7iY','I was very impressed with the care that I received, also impressed with the quickness and expertise that my situation warranted. \n\nI would highly recommend Signature Care Emergency Center!!\n\nI need to mention Dr Patel, Jacob and Morgan, also Morgan from BCS Heart. Very professional, very good at their job.','2020-06-04 02:23:15.805000','2020-06-04 02:23:15.805000',5,'Adela Camarillo','https://lh3.googleusercontent.com/-h_99rTk-h4M/AAAAAAAAAAI/AAAAAAAAAAA/y7JLdVJsTRw/c-rp-mo-br100/photo.jpg','16590124370714063921',22676),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDwel2KvepzELlLFJtu91b1VvDlT804p2QmVpJN20HXCMBcZkFurYXuy8yQ-foBXnLv0slGDK7hAvdAzPKblnPfMczojM','Excellent service, very friendly9','2020-02-23 14:23:39.403000','2020-02-23 14:23:39.403000',5,'Josh Bryant','https://lh3.googleusercontent.com/-cJSOe_p8Py4/AAAAAAAAAAI/AAAAAAAAAAA/Fq1cAo-p0Yw/c-rp-mo-br100/photo.jpg','6521947413723274945',14555),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDWfnbo9DDxRjlrPzKERx6YBgjPqOu8zVcfZf0H2tYGOGnWDe9vRfme88HgoowF1YVCJdMFSaOnGDfF7fhbqpc5kb5-Ng','Hands down best experience I\'ve ever had visiting an emergency clinic. \nVery friendly and helpful','2019-05-24 03:35:42.013000','2019-05-24 03:35:42.013000',5,'Jennifer Lance','https://lh3.googleusercontent.com/-fy2Su8bIejs/AAAAAAAAAAI/AAAAAAAAAAA/JKDCYgpUuTY/c-rp-mo-br100/photo.jpg','6521947413723274945',8259),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDWGBxfiHJkQIK0jC_JFuu_8wDD0LDB48Dr84Tk6Z6wRyiZ3GQ3f7FHZ_rLTHMk5yZCgZoctdmQS8um1-sy-Uoi9WP-6c','Thank you signature care for taking care of my aunt. She came in because she was feeling so sick and her nurse Chris C. was amazing. She wouldn’t stop talking about how well mannered, professional, & gracious he was during her visit. She was also impressed on the registrations staff Cecilia on how friendly and welcoming they had been to her.','2020-07-10 09:55:22.290000','2020-07-10 09:55:22.290000',5,'Okarys Bonilla','https://lh3.googleusercontent.com/a-/AOh14GjSXmEbSagdAdaRTXVLS9lGc_749gJsjyj-twUX=c0x00000000-cc-rp','14567670160750071148',21890),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDwGOarBpGh7cxzbQWnRx9gFOUjeAKt_HqgTsx2GfTKMzHrh7ASMvnae4GAh_bnotv5QDV2kt4QDNfUD05OBNn2B_WsJc','Very professionals and fast service. They keep everything clean and safe for everyone.','2020-07-09 16:39:26.254000','2020-07-09 16:39:26.254000',5,'Patty Diaz','https://lh3.googleusercontent.com/a-/AOh14GgM9RAWKKUIAI3HtLz5WIxVPC3qe4EitFglyKik=c0x00000000-cc-rp','8679688254631342173',22253),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDwLRElEaX22Mz0GaEXisvG83eM35RDQszMF6pq3wO-Z3JGHU1tTxwsophyYWk9OGXPpnzw3-D375gFyUn67k3Xh6rbK0',NULL,'2019-08-30 00:55:20.374000','2019-08-30 00:55:20.374000',5,'Vanessa Hernandez','https://lh5.googleusercontent.com/-5VJAHLYzD6E/AAAAAAAAAAI/AAAAAAAAAAA/GrsTEC442yE/c-rp-mo-br100/photo.jpg','13486358490203335051',844),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDwtahQgptEKpqrUyfPPbi-N17qK-5NkKGWYcN3mAkQA9MzOKonP_OmVhgqkWLyVONcnD2AMKZ6wMHkTnBx89e9aQiLFo','Came for the covid testing! Really anxious and nervous but it wasnt as bad as i thought. Teresa M. was very gentle with the swab in the nose.','2020-07-16 20:26:21.646000','2020-07-16 20:26:21.646000',5,'Aaron Padilla','https://lh4.googleusercontent.com/-UyuoRdfHkBw/AAAAAAAAAAI/AAAAAAAAAAA/JmbqbxbgirE/c-rp-mo-br100/photo.jpg','6521947413723274945',22886),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDWZfV3pHHy_j7Q1osbHvgmb9Dl13YqJ6hmDqD1yS5jryuoX52q_dgLukwMiw5Vt5Y3xqaSxlhUk25zAWnG7jKz3kUCZ0','Laura, Patricia, Ekaterina, thuy an and doctor Rodriguez were very kind. Service and skills were professional.','2020-03-19 17:18:41.763000','2020-03-19 17:18:41.763000',5,'Gwendalin Giddings','https://lh5.googleusercontent.com/-LQZWB9VagPM/AAAAAAAAAAI/AAAAAAAAAAA/NTQl-xH6q0I/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',21003),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDWzI7MZ0cp7FmEIJi8O1AdLHJM7CSwacX4GV4AnKtEsdHZ2HvWJmV9LuCVzABMdn9iOiRo12khCkRF5onQ822KUQttsw','Signature care is the best they took care of me right away. I love the staff they so cool and helpful. Selina and Wendy took care of me thank you guys. 💯','2017-09-22 02:42:14.980000','2017-09-22 02:42:14.980000',5,'LV 100','https://lh3.googleusercontent.com/-vJXinApvWEU/AAAAAAAAAAI/AAAAAAAAAAA/mw7OzFe1h8w/c-rp-mo-br100/photo.jpg','17394740196501090048',4969),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDwzKb6czAumqjoVICVVZ38WidVH5iQTTmq8KEOKKb0iSghgHFUEpZUTc1RVBsTI7RKDphibIjI8b9pCLkm-AYjMeaouc','I absolutely love the staff here! I was in a lot of pain so probably not at my nicest, but they were all very caring and kind. The doctor was very knowledgeable explained thing well. If I ever have another emergency, this is where I\'d go.','2018-12-09 13:16:00.879000','2018-12-09 13:16:00.879000',5,'Sarah Victorian','https://lh4.googleusercontent.com/-Gs-jikwkijI/AAAAAAAAAAI/AAAAAAAAAAA/9_YQpgawe2Y/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',586),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDx2_yEZssyGIQ5SO9j8kdDLPt1aSiKqyYR5JBXDy6DmjJvmy8-VAw0i58IlRK7QbqLErZuoXEB9d5Gyu-SVyHr2GcI4w','Dr. Huerta and Nurse Alexis took very good care of me . I was in and out in less than an hour.','2019-12-11 14:16:59.947000','2019-12-11 14:16:59.947000',5,'Tiffany Drummond','https://lh3.googleusercontent.com/-_dxYml_JQXw/AAAAAAAAAAI/AAAAAAAAAAA/54EZR2kdQEw/c-rp-mo-br100/photo.jpg','13486358490203335051',692),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDx6GoODZQ2TDo0Mem4fqMYvRZhpWjxV6fP6_lHy5uLwcaQDu_HhJk-QUxRJfWiXSEH8krY1NHH7mYNxgdFaycUYkx2cQ','from registration with maya to my rad tech Mayra to my nurses Stephanie/Lara an my er tech scott an my dr singla they were awsome from start to finish so good I had to make sure I did the review while I was here so I wouldn\'t forget. from filling out paper work to being poked an getting a pelvic exam they were amazing an I\'d recommend anyone needing emergency help coming g here an they\'re very clean an friendly might I add.','2020-03-11 18:17:35.874000','2020-03-11 18:17:35.874000',5,'Christina Shouse','https://lh3.googleusercontent.com/-DnZg6uT7EQM/AAAAAAAAAAI/AAAAAAAAAAA/8cuMbOi9Df0/c-rp-mo-br100/photo.jpg','12541597562633926366',20910),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDXc3DuaI_sJL4MyifCjJ4eVYUaVMYtwf3nfObeAIJvMoeDap6uzCFvf1h49Fh-3wo_HNMLzqEjg-8_Zc9qZtdE1U7xp4','It was a nice and swift experience; Patricia registered us in nice and swiftly and the interior and cleanliness of the location is amazing. The entire staff was friendly.','2020-02-14 22:28:13.150000','2020-02-14 22:28:13.150000',5,'eshanti Lewis','https://lh4.googleusercontent.com/-tJD5hkbDbec/AAAAAAAAAAI/AAAAAAAAAAA/z_TTXxyap5A/c-rp-mo-br100/photo.jpg','16389487648212004696',10879),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDXcHLlW2U3ck1QT37YA7lAI2R35B13aOUJwBNbxWK3pqu3LVDC1YDaZkz50lF2bGaGFgTKyy3Y7CkIpkgVmb_gAQOhpE','Great service! Thank you to Leslie, Dr. Yusuf, Dawn and Olivia.','2019-08-06 19:44:29.843000','2019-08-06 19:44:29.843000',5,'Itzayana Fabela','https://lh6.googleusercontent.com/-lbxH-WCYdkw/AAAAAAAAAAI/AAAAAAAAAAA/O0p6Jbpq4Dg/c-rp-mo-br100/photo.jpg','3511292162159714121',7222),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDxChMhx0dvOqkus1TMRZSditRLVhg6OTAow848FUBLhffp7889xfDxdjd7y3a11trJobpImqLq6QXxLtnqB_b4CzxtUs','I was a little hesitant about visiting an ER care center due to my past experiences with regular ERs. However, I must say I am thoroughly impressed. Everything was super fast. Those who assisted me, Jocelyn, Alvean, Jordan, Marcus & Dr. Davis[??] were all very professional & courteous. I would definitely recommend visiting here!!','2020-02-26 22:31:44.727000','2020-02-26 22:31:44.727000',5,'Areonna Ewell','https://lh6.googleusercontent.com/-ndnIT09Tk6w/AAAAAAAAAAI/AAAAAAAAAAA/wyVMjH4xyMA/c-rp-mo-br100/photo.jpg','16389487648212004696',13760),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDXd_H15DE5p15QjKufL6yZsTyc5zCiGOnxmvAn8FErLdFKftUQ95EUYLLFtQOzhhzGphPRQifZ_l8Prh1fv8KfYmhfjA','Everyone can recognize excellent care and service but as a healthcare worker, I can recognize excepcional care from healthcare workers who have gone beyond and above. This facility has really earned the 5 stars. Everyone was extremely attentive and provided fast quality care. Lisa was our nurse and Dr. Huerta was the physician; they were both extremely thorough and compassionate. This is really the best urgent care and the cost was way below my expectations! Why go anywhere else?!','2019-06-26 08:12:28.249000','2019-06-26 08:12:28.249000',5,'Veronica Martinez','https://lh5.googleusercontent.com/-b2gqPeRrD9A/AAAAAAAAAAI/AAAAAAAAAAA/9hQ9YDTWTxM/c-rp-mo-br100/photo.jpg','6521947413723274945',8219),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDXhxzlg8CogDj5O_MJIwRC08QXZKtmszICXzghHKfIax7dO06Dihnlvlh2lCflh-JmvQd9dr5xZ1JeTrQzcv35hiGVds','Dr. Mauldin was phenomenal with our son who cut his eyebrow open! Very informative and caring!','2019-12-12 03:47:34.885000','2019-12-12 03:47:34.885000',5,'Mike Robles','https://lh6.googleusercontent.com/-L3IF-Oudi88/AAAAAAAAAAI/AAAAAAAAAAA/rtIFTNziNeM/c-rp-mo-br100/photo.jpg','13486358490203335051',689),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDxmaJfFJq_TetTjs9S2q4iY6af9nhuUnezT8pGH1FSzkOKWeCYXpf4FRpJ5vWXbXUch2Hl9BCC9JbalcDkuviGIybznE','Dr. Dyveliz was extremely friendly and helpful. He made sure to check all possibilities before diagnosing me. Jacob was very friendly and talked me through the IV process as it was my first time. JR was also great helping me with my CT scan that I needed. Overall a great experience and great people!','2018-08-03 19:10:57.141000','2018-08-03 19:10:57.141000',5,'Brittany Martinez','https://lh6.googleusercontent.com/-2sdPUfzihXQ/AAAAAAAAAAI/AAAAAAAAAAA/gUO2Qs34sB4/c-rp-mo-br100/photo.jpg','16590124370714063921',3799),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDXNTdgFkC4rwO2atlYmoRcqyfVJ5vCgv0-lZJK0_OtdJ5lxO3llwp8LV6PAA05yLN_8tMR2YZR-W7PKhQ6XYcCqoGLqw',NULL,'2018-10-15 11:52:16.902000','2018-10-15 11:52:16.902000',5,'Raquel Ginebra','https://lh4.googleusercontent.com/-zB_1cDrBnDI/AAAAAAAAAAI/AAAAAAAAAAA/-dyS8V0vsn4/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3704),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDXpuyTlEzdGZU8ssj9-EyZpeYtGK4rZKYP2gA1O5wMoflj_JA4qRu7u3_8ELiNDGeNZ-JBdBKQ9ja42O2KfYZfJ39DiE','They took care of my mom really well and professionally. All staff is nice and friendly. My mom really liked how Emily treated her when drawing blood.','2020-02-08 22:28:45.998000','2020-02-08 22:28:45.998000',5,'Z Money','https://lh3.googleusercontent.com/-g1uVWhBWDjw/AAAAAAAAAAI/AAAAAAAAAAA/GCvdgHTwkOA/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',14024),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDxpwFc4bw2q94JQLZhkBVfdgla4yiPBGqzBcC21vjFI2NinVjBie8GXCy6_sL8pynVmTaM_kK_7xE0fKlkqfSDBvbzrc','Awesome staff! They were able to get us in and out super quickly. Each staff member was attentive and just made a scary situation, positive.','2020-08-11 20:52:32.773000','2020-08-11 20:52:32.773000',5,'Danielle Bell','https://lh6.googleusercontent.com/-8xWEoAn4lAA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnGX69pAFeppNxZtGptUuAmAkB19w/c0x00000000-cc-rp/photo.jpg','14904078213800803294',23037),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDXrCoYu7Zyxoo-XIjyLrsbqAM1vninRsfEjIcvgF-gcfUCZbsDFl_HQvLL4vTOkkKfaVFYt-LibILaDjb0XxizNQEWik','Very friendly and enjoyed the experience! Thank you Jacob and JR!','2017-02-10 17:11:52.144000','2017-02-10 17:11:52.144000',5,'cheyenne kent','https://lh5.googleusercontent.com/-T89IIkQXEAM/AAAAAAAAAAI/AAAAAAAAAAA/foi4s-v33MA/c-rp-mo-br100/photo.jpg','16590124370714063921',4058),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDxWUqrHvI2ndGwODpBpTIZCUpumccd414Q0E-qXGVkyIzIwDRfzzH-qf6DB8vKuTaRz2_QEarX2hxzp8-flKAnWFsMS8','Awesome place! The staff is very nice and there\'s never a long wait and the facility is beautiful.','2020-01-18 02:47:38.081000','2020-01-18 02:47:38.081000',5,'Brenda Drew','https://lh4.googleusercontent.com/-8MTfNNPJtCM/AAAAAAAAAAI/AAAAAAAAAAA/6KCZy-xU6qY/c-rp-mo-br100/photo.jpg','14567670160750071148',10034),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDxxPEybAjObnH5L5JV5ZRnxzNe4ZeWdnOLoEqXhoxWRbsKm9rhzvaC4bD4KQXT6x6-wYaO4YoKkO3JQHRgPTPwraxYXs',NULL,'2018-03-16 17:40:48.874000','2018-03-16 17:40:48.874000',5,'Scarlett Button','https://lh6.googleusercontent.com/-1n5obFSTBtc/AAAAAAAAAAI/AAAAAAAAAAA/ICfjbN-wc6o/c-rp-mo-br100/photo.jpg','14904078213800803294',2270),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDxy8OnzOSYDulzDe4twdppOTHbFUgnRMEt5ENbZCUi5Su0Kp7hKUs8mPZO7_TFYX7lNdfFiyZxBtrxPMN_W6PNlih5WQ','Great place. I arrived and was immediately greeted by Ms Jessica Sanchez , who was very professional and helpful . There was no wait time to be seen. Everybody was very kind and I was out within no time.','2019-11-19 16:55:09.024000','2019-11-19 16:55:09.024000',5,'Stephanie Rodriguez','https://lh6.googleusercontent.com/-4dBl2ghk7nM/AAAAAAAAAAI/AAAAAAAAAAA/bgKYAoff9yk/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8089),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDy0ddjTYGnGnyIFu-2Tl7QpWK4Z0f8eHZWkRtxXDbOyx19_mf2rCEN75nP0eaEDWQJl8stn2Sls3211RGIGDTJP6wzTk',NULL,'2019-03-12 17:33:14.821000','2019-03-12 17:33:14.821000',5,'Paty Abarca','https://lh4.googleusercontent.com/-NFXBcOEBkbE/AAAAAAAAAAI/AAAAAAAAAAA/t0IF4nDdWu0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDy3XSacS-t29WYnLoMe5j3Nvc_L-v6I51Ier04DmyeEc-AmYsoVKfmUjbbdQB--RIWjNo-9BeZzskkbfsnZmECo8PaoA','Dr. Harjai was efficient and thorough and listened to everything going on. I appreciated his care and attention. Very clean and welcoming. Rayven at front desk had us checked in in no time. Natalie and Remington were quick, efficient, and comforting. Thanks!','2019-06-16 23:22:11.801000','2019-06-16 23:22:11.801000',5,'A Robinson','https://lh6.googleusercontent.com/-caVlTLfDWEo/AAAAAAAAAAI/AAAAAAAAAAA/hnCMNnICy8o/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',3347),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDY6vL6IghPp89EGvYvpzVc0x3TH55wH-Q-X7IId8UWtVfLvBPRMIee0miCqot2PzyzZxkGyg5ZTO1B1GcYjojmiMCQRQ','I am very impressed with this facility. It is very nice and clean. The staff are very friendly and professional. Dr. O\'Malley was very thorough. Marcus was great. He made me laugh. He helped calm my nerves. I highly recommend this place.','2019-06-18 19:14:30.320000','2019-06-18 19:14:30.320000',5,'Christiana Chigbu','https://lh5.googleusercontent.com/-zO9Gi9YqcTc/AAAAAAAAAAI/AAAAAAAAAAA/5-BS7NQh0FU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDY7SfED5byFIWXK8jmVkZ-setIwz82xaucT4aqHh0nArOMnC3lrPWCD2j-jYU3Ig-SkBKDL2HlBTG8HDrLfeeCEAE_5g','I decided to try it out for the first time since its near my house, And they are very fast and friendly. It sure beats the wait of 3-4 hours waiting at the MCH. Really nice staff. They also called me the next day to see how im doing which is nice of them to check up on me. Thanks again','2016-08-18 18:32:09.846000','2016-08-18 18:32:09.846000',5,'Daniel Salcido','https://lh6.googleusercontent.com/-vtlUngwXEJk/AAAAAAAAAAI/AAAAAAAAAAA/ZNszeYnORwA/c-rp-mo-br100/photo.jpg','6521947413723274945',8358),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDY8IOWwAsmHPM_6sdK464ipwp_CRdnoTEZ2gAGDtm7ZOXsOv1P5H8jkHEkt1VZJzubZ79Tpdy6RBPPt4tw9-c872DLyE','This staff here is absolutely amazing! They were so accommodating and patient. I went in for a back injury and they truly took their time with making sure they completed all procedures to give an accurate diagnosis of my injury. I highly recommend this place!','2019-05-21 22:25:20.560000','2019-05-21 22:25:20.560000',5,'Brittany H','https://lh3.googleusercontent.com/-xyd3ll-L4l0/AAAAAAAAAAI/AAAAAAAAAAA/N1Vn_2H8f88/c-rp-mo-br100/photo.jpg','17898197009688164559',5731),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDy9rtnMLYFK_vvaKdgRsCEj8n1V9EiH28WvTOItOX93-8HmwUzyT_kZQktaNAsHpod86aM1n4MNchtXOOMbNAesBDYeY','The staff was really nice! I have a friend that had to come in for stitches and Keera was quick and easy to deal with! Highly recommend','2018-11-02 03:57:35.840000','2018-11-02 03:57:35.840000',5,'Lindsey Rogers','https://lh3.googleusercontent.com/-4aihhXxrYv8/AAAAAAAAAAI/AAAAAAAAAAA/yQjLhvhC5ic/c-rp-mo-br100/photo.jpg','16590124370714063921',3676),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYDK7D8y24OY2d_Pr5x8Ns7HwrcCOXwos_8S2RZknx4Hj1bdz6Vn7VYzxwk6ZefUoMfcH8IfQZM2k0hWgir-3DaIsxOI','All of the staff was very helpful here. I was very stressed about insurance coverage and cost of payment and they all took the time to share with me to the best of their abilities all of my options. The service was also very quick and I felt very comforted by nurse Jacob and Dr. Vaagenes. Both clearly explained to me what my treatment needed to be and made me feel relaxed in a stressful situation. Would definitely return again.','2019-04-17 17:18:43.335000','2019-04-17 17:18:43.335000',5,'Samantha Sliva','https://lh6.googleusercontent.com/-SIWyOI5dZ9o/AAAAAAAAAAI/AAAAAAAAAAA/rXwxKIB1eBI/c-rp-mo-br100/photo.jpg','16590124370714063921',3425),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYG3MwJpFFRoCMs7qHPvmTd4lF-m-MnDW4ZcrHTIdVSEAOGJDtavxbtwrfVz6KRtfrX6OquVI-QSxXmqOFGDtEqhYG54','Very friendly and clean!','2019-11-22 02:20:22.155000','2019-11-22 02:20:22.155000',5,'Jade Huang','https://lh5.googleusercontent.com/-zCtVu2btox0/AAAAAAAAAAI/AAAAAAAAAAA/zAZ_1NdTJwE/c-rp-mo-br100/photo.jpg','16891069708558046635',4143),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYJbBAXD1GEiXk7Orb2eE5oFxMaP3FffHScDcgOfZhKbYKNIeku9e0mU4IRykXkLHzhJXU1U0F6lrVLR4lPHGQcGilgM',NULL,'2018-09-16 00:22:19.458000','2018-09-16 00:22:19.458000',5,'Khadyja Diabate','https://lh5.googleusercontent.com/-Vnb1NxZS-BM/AAAAAAAAAAI/AAAAAAAAAAA/A0jNj1_NaJM/c-rp-mo-br100/photo.jpg','14904078213800803294',2214),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDylZJONUX4da0GxbvjYxbqJ8tK6yFx-PTnT2aj-qzsI2qgKUreG-WFo21KFz4EArdDMY2OwkviPxnzopnMEo6SV3HZpw','My experience today was great even though I was in a lot of pain! The entire team was so helpful. Selina shared a lot of information that will help me feel better. Dr. Thomas, Keera, Fanny, Janet and Ralph make a great team!! Thank you!!','2019-10-03 16:45:51.663000','2019-10-03 16:45:51.663000',5,'Pamela Edmonds','https://lh5.googleusercontent.com/-FFSQVmiLIQE/AAAAAAAAAAI/AAAAAAAAAAA/lnTbrTXBDWo/c-rp-mo-br100/photo.jpg','17394740196501090048',4589),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYmkD1jjHL76yaRwRK_VNKCylBGv9ecLMnP9G6wkY2UFSUeM4jM6MxFuOktkj_4ckY-TAGGK_oQ0Ugecf4ff9KqSOucI','Everyone was welcoming and throughly explained everything and made the ER visit more comfortable. All staff was knowledgeable and pleasant','2020-01-08 03:32:58.147000','2020-01-08 03:32:58.147000',5,'Victoria Jones','https://lh4.googleusercontent.com/-hpTH5cVEc3I/AAAAAAAAAAI/AAAAAAAAAAA/ZzJqWrXrG0w/c-rp-mo-br100/photo.jpg','16389487648212004696',9423),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYp3LiQeWD_9dcMV2BxSjIwToHWjXIRFrddOSBUL4DcDvQ2RL1PjjKHdmbsgYCHfDfXajXbbP4CeG1H6_6xKLXisipfU','I had a wonderful experience','2019-10-14 05:56:53.418000','2019-10-14 05:56:53.418000',5,'betty martinez','https://lh5.googleusercontent.com/-GVuV305-6_U/AAAAAAAAAAI/AAAAAAAAAAA/_Y9vP7vV3iE/c-rp-mo-br100/photo.jpg','14904078213800803294',13675),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYQEUGCPV95e8G_qokaiPa3MiqFxePWKg4IukBpSOvJmg8-rYQGPLKgJfMqjY6LBlTDloJTLIdDfWLe9VcZ3a02xqH9I','Quick, friendly, professional and clean....the receptionist preethy was nice','2017-02-08 18:47:38.203000','2017-02-08 18:47:38.203000',5,'LEASE A HUSBAND','https://lh4.googleusercontent.com/-LG6cipXErOc/AAAAAAAAAAI/AAAAAAAAAAA/ayHcf5LKmjM/c-rp-mo-br100/photo.jpg','17394740196501090048',5116),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYr3C8X8ZDf7486I_9koGHyaSfaFqhOy--3Uy8DhxtLNaLZ8WyAGjs9edMAYlmWN_wjx1DLZ9AuuYY5azNMk8m7I8V1M',NULL,'2020-07-16 15:47:42.903000','2020-07-16 15:47:42.903000',5,'Eric Martinez','https://lh3.googleusercontent.com/-ehwNRPwqJgM/AAAAAAAAAAI/AAAAAAAAAAA/eldvCIbvBps/c-rp-mo-br100/photo.jpg','6521947413723274945',22899),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDysmcswQLagK07F465qUA9sg_tMcrVal8CF9Tr6RUT4XAPyyFZdTixii4OKfWyGD2GaO-RPMRioA8W7h1BZwGVUvZ1fw','GREAT STAFF! Amy, RN Jeff, Josh er tech, and Dr. Yusuf. Thank you for everything 👌🏽','2019-05-21 02:22:40.234000','2019-05-21 02:22:40.234000',5,'Jesus Estrada','https://lh6.googleusercontent.com/-ycP54U584Yg/AAAAAAAAAAI/AAAAAAAAAAA/EzyednPBw9A/c-rp-mo-br100/photo.jpg','3511292162159714121',7321),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDySr2dJ-EQzGr3jkY7iKfZmugPmr4oEro6LZ4DcCSaNDiT607kBcKxDx4XyUf__WxaB25T4bA-zCbsGMTQwEA3rvx768','HIGHLY RECOMMENDED ‼️‼️','2020-08-16 04:29:14.750000','2020-08-16 04:29:14.750000',5,'Miya Brannon','https://lh6.googleusercontent.com/-qVb7gAvYvfk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmL_l7UPIrlUsA1aYxEVq9qBs6ZIg/c0x00000000-cc-rp/photo.jpg','2694018788013845459',23071),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYtXFEBCjfbEXgrw8pO960aMRGsQ9uDAFSM2kGf6RReO5PW7L-waD_4FKG9WZPSYI3J2UUFXYwdSzrvuJq_xL_hW0IKo','Wow! What an AWESOME experience! \n\nWe came in on a Sunday morning around 9am. Wait time was maybe 5 minutes! I couldn’t even start the paperwork it was so quick! \n\nThe staff here are AMAZING! So friendly. So caring and they are awesome with young kids. My daughter’s 5 and they eased her fears. Dr. Pham was wonderful, nurse Lisa V. was excellent and the receptionist Jocelyn was warm and inviting! \n\nThe facility is BEAUTIFUL! It’s modern, new and clean! The reception area is comfortable and has plenty of seating. There is even a snack area with juices, water, coffee and assorted snacks (goldfish, crackers, fruit snacks, etc).\n\nHopefully we don’t NEED to come to an urgent care but if we do, we are definitely coming here! \n\nThanks for everything Signature Care!','2019-06-16 15:50:23.889000','2019-06-16 15:50:23.889000',5,'Sarah G','https://lh6.googleusercontent.com/-7nrmS-9a6Qw/AAAAAAAAAAI/AAAAAAAAAAA/iKQfOK1OzDY/c-rp-mo-br100/photo.jpg','13486358490203335051',953),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDyv357QWN7jDSUcbG5xncMAFsgrNIC2NZdKVBNW71nmgSuk7AbBABG_YdxhOeejgFdDaUEZeirG2iB39Lgy4cFJYa8PI','I love coming here, they are so fast and so nice!!\nLt, Alan, Dr. Elsbecker, Jacob took care of my husband and they were all great!! Thank you!!','2020-08-09 22:36:55.827000','2020-08-09 22:36:55.827000',5,'Jennifer Langley','https://lh3.googleusercontent.com/a-/AOh14Gj4EqBbijmOK8DGOOp0QuFQteAVpMTJxZkOpyt3=c0x00000000-cc-rp-ba2','2694018788013845459',6032),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDyw75d5DU-BVIFZXiUTlR26phECI0Nr0O9hZJMXIk8yiC26V--UOwQwacmCSg7Ilee3ivb_g5yPa8QPHh64YtflQrTFs','Awesome place, friendly staff, and very fast on attending their patients! 👌','2020-08-17 20:52:11.404000','2020-08-17 20:52:11.404000',5,'Marcelo M.','https://lh3.googleusercontent.com/a-/AOh14GhiEiHVVXQPNs6fPMczEUki-ekrx4zmMYGzVFRJrA=c0x00000000-cc-rp','14904078213800803294',23034),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYx2zAoOPNfk-K9KRrYcR16Uc-Um66yDXBBwqD2vPuCvMUhR8N6s1DfxrY_9mWQFfsG9LN87hDHfloI8UACDQRtjWvKU',NULL,'2019-02-22 08:55:06.296000','2019-02-22 08:55:06.296000',5,'Markkell Reals','https://lh5.googleusercontent.com/-LYgnN83HskM/AAAAAAAAAAI/AAAAAAAAAAA/SOxDB-X3r5A/c-rp-mo-br100/photo.jpg','17898197009688164559',5836),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDYXiFrwQrVJteaI9_4_wtjsD_mVW9BHeL73KKRoBb430WiqxZneHTlBUQC_yFGeWwuV_kdUMa8wGD7dJ32OEujT7hybo','Been here a few times now and the service has always been AMAZING! They have you back to the room within like 5 minutes and are very prompt in addressing your issues and making sure you are comfortable. Staff is extremely friendly. Definitely recommend!','2018-11-15 14:21:06.592000','2018-11-15 14:21:06.592000',5,'Maddie Grubbs','https://lh3.googleusercontent.com/-fgznXPwLDto/AAAAAAAAAAI/AAAAAAAAAAA/MpIkl19dVrI/c-rp-mo-br100/photo.jpg','16590124370714063921',3648),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZ5qlo4_IQAUS2IJnr41KkfylmnaFTaJjf9eHqoH2NoOKrU1FB055RzLHrlIHSEgMuOt4C_ayjqQePz0bEtRHaKKF8j4','Was taken care of quickly and competently. Other than the issue that brought me there, it was a great experience!','2019-11-29 23:33:04.161000','2019-11-29 23:33:04.161000',5,'Tammi Brunson','https://lh5.googleusercontent.com/-_tzbGUfk3vI/AAAAAAAAAAI/AAAAAAAAAAA/72N7Hg_T974/c-rp-mo-br100/photo.jpg','8918455867446117794',9043),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZ8oXaYAN3ADbXWn_xYRxK2WUwKejm55M25s1yBe-NGb4LwxPm0t863sXgVTLQtgYUU_yp48jMcFGJHVYJPlGVzGVQk8',NULL,'2019-07-21 13:38:18.419000','2019-07-21 13:38:18.419000',5,'Gabrielle Young','https://lh5.googleusercontent.com/-C2CsN485wt4/AAAAAAAAAAI/AAAAAAAAAAA/y6sWVL5pmSs/c-rp-mo-br100/photo.jpg','3511292162159714121',7243),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDzA1AnIL1iBma2GhVnaCgTbEjtlKu8APfC5TeAkd2izX7l9-AfSNv-TyedFTy9k5LyYr5uaCAU-jCRUXMd_Ab1NY7rkY','Great service!','2017-12-02 18:57:01.214000','2017-12-02 18:57:01.214000',5,'International DJ Omu','https://lh4.googleusercontent.com/-DH7FqqQ_85A/AAAAAAAAAAI/AAAAAAAAAAA/6PXrYWiSwTY/c-rp-mo-br100/photo.jpg','17394740196501090048',4922),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZaQviyFrN7vm1YNZWYtDbiO8P969g3xpBf3f-Xly0M6NEHEuiSKCHdjTP6FZROB5HOYl6FosEdHZ0dG3CFrEzb0rgU4','Following a bit of a scare, I’m writing this review from a bed at the center! Nurses Fanny and Christine, as well as Dr Grinblatas have made this an enjoyable trip to the ER (hey, that’s a thing). The facility is comfortable, welcoming and clean. I have no doubt that I’m in great hands. While I don’t wish for poor health, I would gladly come again.','2020-02-20 20:15:33.272000','2020-02-20 20:15:33.272000',5,'Julian Johnson','https://lh5.googleusercontent.com/-K5RSRCg-83g/AAAAAAAAAAI/AAAAAAAAAAA/pL9ZcUZ5Y_c/c-rp-mo-br100/photo.jpg','17394740196501090048',14014),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZdlvgftqlKdXL2vruRR3CVovmA9aFivtaVOcSCT4KoxymXMLrMAOIFfibjNeD5le6tWS_4bWQpgiRSd9WFW0ycYPkgg','When strep hit the family over Christmas Shawnda took care of all of us, making the check in process super easy. Christina our nurse made sure we were comfortable and Dr. Miller made the process as simple as possible given that strep test is no fun! Thanks everyone!','2019-12-24 18:09:15.126000','2019-12-24 18:09:15.126000',5,'Elizabeth Hughes','https://lh3.googleusercontent.com/-QvykbpgZJ98/AAAAAAAAAAI/AAAAAAAAAAA/e4Jw3Vdph_8/c-rp-mo-br100/photo.jpg','16891069708558046635',4102),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDzDqUf-0gV1BkV6ZrYioPXJt-2nudAO1QhNnoUKwD1Go9aVfioOuqUqFzJONQ65rBeIyn7lr4hfmVgaKIwduFdOSbtM0','Totally visit was great Ekaterini, Alvean and Josh were all great making my visit really good and making me comfortable','2019-09-07 14:14:46.196000','2019-09-07 14:14:46.196000',5,'troy wyatt','https://lh3.googleusercontent.com/-oEt1PfXHdNs/AAAAAAAAAAI/AAAAAAAAAAA/ByNy4Cq7BqM/c-rp-mo-br100/photo.jpg','16389487648212004696',2946),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZGUi0AIAzKt4KJQ9D324h0vmbaxvJ2eMzWorFyjr1Q1yTRVhIcrB62Z_MpyMMp0y2mFyqDnp2iXnamS0skN7ZcZXMGU','In a time where the norm seems to have shifted towards chaos, ER Signature Care was phenomenal in regards to testing. They have designed a very efficient system that is incredibly efficient. \n\nSpecial recognition to Carly at the front desk, who went above and beyond her duties by being patient, empathetic and caring in her interactions with us and the rest of the patients that I saw.\n\nThank you!','2020-07-05 20:20:42.293000','2020-07-05 20:20:42.293000',5,'Eduardo Torres','https://lh4.googleusercontent.com/-AbjIMylEFcM/AAAAAAAAAAI/AAAAAAAAAAA/ZJ-6PcRtaac/c-rp-mo-br100/photo.jpg','12541597562633926366',21337),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZI2JQ38a_nCNbpaUKvz4626N-Ih3rbuMwnVYzVsQqTrIERv2-ewx-nPSDakU4Jvlz5H-DDnhaZwrPE9b571wvzmkHys','Very clean and professional facility!\nThe staff and doctors are very polite and Nice !\nDr. Soli was very caring and thorough in my wife’s examination . Nurse Robert offered us snacks and refreshments while we waited for my wife’s results . Cindy C in registration was very nice and helpful ! There Technician was very polite and patient !\nHighly recommend for non emergency concerns !','2019-09-27 02:05:54.536000','2019-09-27 02:05:54.536000',5,'randy c','https://lh3.googleusercontent.com/-r0u7WJfzUBA/AAAAAAAAAAI/AAAAAAAAAAA/lm97iOXCG08/c-rp-mo-br100/photo.jpg','17394740196501090048',4594),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZIY5Ga74s0BP0x8EpQW-wbZKcBrHOiWAV2m5wmmYz8F_kFKufxdkOb0_eZ94Gt5PWDckp1io_vrPIMy2fXJ7IYD4MoI','This signature care is very fast and convenient. They show they have proper training and care about there patients. Thank you Anthony (RN), Natalie (tech), Dr. Akunyili, Kathleen ( X-ray) and Dyualiz (Reg)','2019-03-19 00:56:40.535000','2019-03-19 00:56:40.535000',5,'Tanni Tan','https://lh5.googleusercontent.com/-9z2xeTU9SaI/AAAAAAAAAAI/AAAAAAAAAAA/TL93az0Tmjc/c-rp-mo-br100/photo.jpg','16590124370714063921',3498),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDzjJs1U5ZMMfztaX6tOptXvssA0-C8UykCIyW8QTmKPxIy8J7hH24XRyHYbkmO7_pw1zZWAGjxyj2ORrJ5_ltJ7W7pYg','Came in with my daughter to get checked out after we were in a car accident. Dr Dang and the lovely registration desk Tanishia we’re both a pleasure to work with and they made us feel right at home. Friendly and fun, very efficient. Paperwork was a breeze and treatment was painless thanks to these two. We will be back again whenever we have urgent care needs. Cleanest, fastest clinic we have been to. Thank you!!','2019-11-06 06:02:26.574000','2019-11-06 06:02:26.574000',5,'Taylor Sikes','https://lh4.googleusercontent.com/-sTpCvnwnVZY/AAAAAAAAAAI/AAAAAAAAAAA/EHOW0sJY9YU/c-rp-mo-br100/photo.jpg','17898197009688164559',5461),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDzLOki12-axbxxv8FjukHKdiiVmO2UqINq61WCWlMR4fNDKCwUKISuIHcE9VBd98DIZOVI6kMYPysQ9GrYZXPlLigZ1w','I\'ve been here twice: Once for myself, and once for my S/O. Both times we had nothing short of exceptional service and short wait times. Additionally, they take student insurance and have resources that most urgent care centers don\'t have, such as ultrasounds. I won\'t go anywhere else in college station!','2019-01-26 20:01:14.530000','2019-01-26 20:01:14.530000',5,'Patrick Cygan','https://lh4.googleusercontent.com/-_Ir73lsGVYA/AAAAAAAAAAI/AAAAAAAAAAA/49EEQZ237oU/c-rp-mo-br100/photo.jpg','16590124370714063921',3576),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZlTCTLyjBpDLRKwmTHPwtjen2W9U6hgyFaSH5jwrnjLb-uWYUKAFYTqeBhvPI8dcskFiFr8CSBOQHydgdl6kK8JnuzI','First I would like to share that in my 26 years i have never gone to an emergency room for myself. I’ve taken family members but never for me. I was very hesitant to go in but I felt horrible and I did not want to feel like this for another day. So I came here. As soon as I walked in the young lady at the receptionist desk was very attentive and polite. There was no one in the waiting room so I literally was in the lobby for maybe 5 minutes or less. The ER tech, nurse & radiology tech were great & very kind. The doctor was amazing. They had a hard time getting my fever to go down so they didn’t discharge me until it did. For my first time ER experience I can say this place was the right place to go to. The staff who took care of me on my visit on 02/21/2018 were\n\nDR. GARCIA HABACUC D. M.D. \nNurse: Langit,Rommel \nRadiology Tech: Vaultz,Selina \nFront Desk: Munoz,Olivia \n\nThere was and ER tech as well but his name wasn’t listed. All I can say is I don’t feel half as bad As i did yesterday.','2018-02-22 16:08:18.096000','2018-02-22 16:08:18.096000',5,'Amanda Hernandez','https://lh3.googleusercontent.com/-FDjX3oI0dEQ/AAAAAAAAAAI/AAAAAAAAAAA/dzE3w5kx9ew/c-rp-mo-br100/photo.jpg','14904078213800803294',2279),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDznYxHe6e9JexG7VJJh-opwaKKxBtQUXmoJwSkfK5uxd2T6RGr9PYuP4awiCCjBvXF6DjOgzs9GOx_gmAuU5ZrhGHjwU','I had a great experience here, I was seen and treated quickly. Dr.Do and nurse Leslie where kind and helpful.','2019-12-28 03:09:38.417000','2019-12-28 03:09:38.417000',5,'Gisselle Vega','https://lh4.googleusercontent.com/-YNjaLEa2R0c/AAAAAAAAAAI/AAAAAAAAAAA/T7fURwkkzEY/c-rp-mo-br100/photo.jpg','12541597562633926366',294),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDzU26NkQ5GSApegu6_XRWJ3Idl32cftkyc3wN7djWl37TT2wZ4sPWKtuSX9nZRKeZ5rLuH-BG0t-nWRHazG7QJlXjTH0',NULL,'2020-06-13 16:00:46.260000','2020-06-13 16:00:46.260000',4,'Guanakillo Lokillo','https://lh5.googleusercontent.com/-5BkxDpk7k4c/AAAAAAAAAAI/AAAAAAAAAAA/3yfeFXgWygA/c-rp-mo-ba6-br100/photo.jpg','12541597562633926366',22458),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDzV7KHHZklub-T3uGt-nZl8j1lZwwco451BqOQqGp52DE5lnCqSFi2SnAsrtcAvAM7e2wM8SXNpJbMeaNhFMZNCpc2Gc',NULL,'2017-01-12 16:35:00.521000','2017-01-12 16:35:00.521000',5,'Amanda Lang','https://lh3.googleusercontent.com/-ehLLunXNBLc/AAAAAAAAAAI/AAAAAAAAAAA/iL2UHG_Drbo/c-rp-mo-br100/photo.jpg','17394740196501090048',5133),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZwFu594S2WPFyP7b7kHNu8xLAmTG1b7wd0v1kXqyfezzT4IGtdj6YEx0qOyY_B5oRBpcSsQFhumt_Zr9X4xy1ACJoDs',NULL,'2019-12-29 03:10:32.056000','2019-12-29 03:10:32.056000',5,'Jeremy Brown','https://lh6.googleusercontent.com/-zuL2HOgbqqQ/AAAAAAAAAAI/AAAAAAAAAAA/g9-0wT32Mq8/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',6823),('AIe9_BGTHfLB7ZAtvlQmidaL-PvDZxz1U_5tbKbJCF708r6g6f6D0hLrdhhFVXr7UCTF8VmsRni2fnyjwU7WIbzcywIqW3Jj2YEFXUE8DkNAyGdhTpeRuBc','(Copperfield Location) I had to go to the ER yesterday and I can say honestly that they surpassed my expectations. Online they advertise a short wait time and man they weren\'t kidding. The front desk gave me the new patient paperwork and I sat down a good 45 seconds and the nurse called me to the back. Facility is very clean and the whole staff was great! I was in an out in about 2 hours. Fantastic Service and they offer beverages and a warm blanket if needed! Lord forbid I need the ER again, but if I do I\'ll definitely be going back. It\'s way better than sitting in the hospital ER for 10 hours of your day. Thanks to Evelyn and Alexis at the front desk, thanks to my amazing Nurse Jennifer, thanks to Mike the Radiology tech, and thanks to Dr. Nyland for such care and fast service!!!','2019-02-28 15:53:08.860000','2019-02-28 15:53:08.860000',5,'Asia Duckett','https://lh5.googleusercontent.com/-ao455BWnq1E/AAAAAAAAAAI/AAAAAAAAAAA/Mx3MQETJ518/c-rp-mo-br100/photo.jpg','17898197009688164559',5830),('AIe9_BGvUJd9etQojwpjZIMsiFne_0Tq4bRrcYuL-Bu8bXSsEqlZv_0RuABhV7drQYoFn5NMskazvoMR3jjxrcGM2C8673ESq7UG2e7TrIBPTzRcLFMHshU','Great experience!','2017-03-08 18:27:08.605000','2017-03-08 18:27:08.605000',5,'Nora Berrones','https://lh3.googleusercontent.com/-A9rrRQsSAi4/AAAAAAAAAAI/AAAAAAAAAAA/OKIysbEPKfc/c-rp-mo-br100/photo.jpg','17394740196501090048',5099),('AIe9_BGvUJd9etQojwpjZIMsiFne_7n6lf2zbGfS1RmORwEgbSRpELb8yP1GjmmjGu-MqkzfYRCMlulDIdvYuVprXegn29EGfH0J2iersNUrgFWy6oWdTOM',NULL,'2020-07-20 13:43:40.714000','2020-07-20 13:43:40.714000',5,'Raul Garcia','https://lh6.googleusercontent.com/-JXWHZruQbyo/AAAAAAAAAAI/AAAAAAAAAAA/-IVDWgE8-rw/c-rp-mo-br100/photo.jpg','14748677429039074158',21675),('AIe9_BGvUJd9etQojwpjZIMsiFne_eERIzK50P1nOfcqii4DPLKOU0Crax6ryDgoQlduWWDDBt1a36X0C6BOwVD36fznIed40T8XfjinCZ5z2ItWsq9Ik0M','They are everything as advertised. Quick, efficient, and competent. Very caring as well.','2019-06-14 15:17:10.475000','2019-06-14 15:17:10.475000',5,'Christopher Davis','https://lh4.googleusercontent.com/--oh83RARwfg/AAAAAAAAAAI/AAAAAAAAAAA/dXnqST_PQ9c/c-rp-mo-br100/photo.jpg','13486358490203335051',961),('AIe9_BGvUJd9etQojwpjZIMsiFne_H1l9vbcZVgvJNVqdZHh8j3Xb_73Zo1j7h_AWhanH4p3EOWD8t_6UxQFfELoYW3cHIRcYo8kjnmutMLD8UJ2CuRnfAk','Dee was great. She was patient and explned everything in full in my time of need.','2020-03-17 13:11:27.840000','2020-03-17 13:11:27.840000',5,'Mz. Brittney','https://lh6.googleusercontent.com/-1zfDeSjq-vA/AAAAAAAAAAI/AAAAAAAAAAA/bXfJ_TBdQ-o/c-rp-mo-br100/photo.jpg','3511292162159714121',21152),('AIe9_BGvUJd9etQojwpjZIMsiFne_JnxwgYR3OgJ--tbXgtrIOeyzrpArRdVlVy9PI_-54SgpEtmEST6bbxaPFqFRlyTWMqza0lONpc7QLcxZ39rg173CAM','Thanks for the care of my son. Tanishia and Fatima you guys were great.','2020-02-21 04:29:30.158000','2020-02-21 04:29:30.158000',5,'Vianney Valencia','https://lh5.googleusercontent.com/-i39yt6YVFqU/AAAAAAAAAAI/AAAAAAAAAAA/lUr_TKVKA0s/c-rp-mo-br100/photo.jpg','17898197009688164559',14147),('AIe9_BGvUJd9etQojwpjZIMsiFne_PS_QRw0fI_XalL-XsP9qU3nnfH4t29H3KvQKu1ak0lMqjESI0t9SUQmytZHgpceT2bJX-4Rs2ErtPq0nXog6Le4nNw','I came into to SignatureCare and was immediately welcomed by Kendra, who helped put my nerves at ease with her positive and reassuring personality. I was helped by nurses Jacob and Remington, whom assisted me in a speedy and kind manner. Dr. Vakey did an excellent job at diagnosing me and was extremely kind. All in all, it was a great experience!','2020-01-19 17:05:48.092000','2020-01-19 17:05:48.092000',5,'Valerie Rangel','https://lh4.googleusercontent.com/-RGnL-bsaALo/AAAAAAAAAAI/AAAAAAAAAAA/n4qZlA8lNuQ/c-rp-mo-br100/photo.jpg','16590124370714063921',9978),('AIe9_BGvUJd9etQojwpjZIMsiFne_RLTnl4qCBZPsMI9d2V5wOumwMvVU3MZSPKpw_sUu5sFRGHqWESmAti4r0GCxj64Lz6ovl1H8SzT1Xq589v2u6ISpvI','In the last week. It\'s never fun when you don\'t feel well when you are traveling away from home. While in Houston for business, I had a medical issue come up that needed immediate attention, I went to SignatureCare in the Heights last week and the entire team made my visit more comfortable and quickly worked together to find the problem. I was seen immediately and got first class care. From the front desk to the nurses, radiology team to Dr. Sylvester, my visit last week was handled impeccably well. I would highly recommend SignatureCare to anyone that needs immediate medical care.','2017-07-23 02:17:50.595000','2017-07-23 02:17:50.595000',5,'Cathy Leritz','https://lh5.googleusercontent.com/-vfPPZNJJdg0/AAAAAAAAAAI/AAAAAAAAAAA/VyR9q8d0Hfo/c-rp-mo-br100/photo.jpg','14567670160750071148',1787),('AIe9_BGvUJd9etQojwpjZIMsiFne_TJbZc_mtOgHt9yzximrf9FXWFpYJ06Iv__1gd9e_MtUyoNV7yPaQIOrSkMylv1chb63BLH7Qx-guUdNj2ePntuXTg8','Quick and friendly intake. The medical team was focused and knew just what to do, with a prompt diagnosis. My husband had to be transferred to the ICU of a nearby hospital, and the staff, Dana, Tricia, Jordan, and Patricia, made the transition easy and answered all of my questions. They were also hospitable, offering me a blanket and snacks.🤗','2019-11-15 18:44:04.004000','2019-11-15 18:44:04.004000',5,'Lisa Morrison Hernandez','https://lh3.googleusercontent.com/-3RAuJ0s7jPM/AAAAAAAAAAI/AAAAAAAAAAA/0VgZW08b0oQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2692),('AIe9_BGvUJd9etQojwpjZIMsiFne_vcNL3qI025uSHIeOLWjKh5onHk1_WAWtltlGpViLUrVdXw086_0hBcQul3Gn2lEXP__jTMtM8wEvX-KmKeGkOW85EQ','From the time I walk in the the registration Amanda Was perfect & the Dr name Ms Daniel was great plus Nurse Gracie was lovely also Mr Bryan was nice the experience was cool everything was great even the tech Carmella','2019-06-12 01:21:25.193000','2019-06-12 01:21:25.193000',5,'Gary Foy','https://lh6.googleusercontent.com/-DUceUOZjlPI/AAAAAAAAAAI/AAAAAAAAAAA/o90iUAL4C4w/c-rp-mo-br100/photo.jpg','14567670160750071148',1313),('AIe9_BGvUJd9etQojwpjZIMsiFne_zWQW5oeehe-jcZtF3TRx_RQQw4b9rAFCKUiUgww2DElIaeZngqNpBojfvniJSM1L5PqDb5FNrgriVA-tpHYPcaCF7I','Always great to be here. Maya and Kristina were so helpful and pleasantly wonderful. def recommend.','2020-01-05 19:42:36.545000','2020-01-05 19:42:36.545000',5,'Norma Tzunux','https://lh4.googleusercontent.com/-segqtD1qak8/AAAAAAAAAAI/AAAAAAAAAAA/Y9m72I7Puts/c-rp-mo-br100/photo.jpg','12541597562633926366',249),('AIe9_BGvUJd9etQojwpjZIMsiFne-_vX5K3HVUA6gN6zbODrkdCOSSM4gUWkYtghypIivb2zuQm3Rv3KrKOIV5uNA6dysm4cFshcSJMDV-t1O6gD1cgfEic','This facility was great. I was a patient here and I was helped immediately. Irvin, Nicole, and Katherine were all great nurses!','2020-02-07 04:00:23.290000','2020-02-07 04:00:23.290000',5,'david berrios','https://lh4.googleusercontent.com/-GBzLMNMyzvM/AAAAAAAAAAI/AAAAAAAAAAA/YcOFvLTALck/c-rp-mo-br100/photo.jpg','12541597562633926366',22474),('AIe9_BGvUJd9etQojwpjZIMsiFne-5wcFqBlHVkNPE-06oO7qizb9QgytSBIOfj20i20LORpFwlfN69yw7hbnZMVZM30qxo2kLmaX35I2uyfqkV4WL5sR8g','Megan and Senaida gave me a great experience. They were very kind and made me feel comfortable.','2019-02-18 02:15:56.611000','2019-02-18 02:15:56.611000',5,'Destiny Molina','https://lh6.googleusercontent.com/-9Ahdc13U74M/AAAAAAAAAAI/AAAAAAAAAAA/VHP6btzzWTA/c-rp-mo-br100/photo.jpg','6521947413723274945',8305),('AIe9_BGvUJd9etQojwpjZIMsiFne-7p8Gc4hy8PnyNlCrNbkBg7cwEX_xh0-B4V3vZwRFF5nIgduBYfvdHbGBlfXmtqGTg2X8naNR2pHiIY1e5A56T0dSMw','Dr Jabber, Remington, Natalie and JR took really good care of us on our visit....everyone made us feel welcomed and like family','2019-06-16 00:01:10.229000','2019-06-16 00:01:10.229000',5,'Monica Maldanado','https://lh5.googleusercontent.com/-BvqhmFDAEH0/AAAAAAAAAAI/AAAAAAAAAAA/vU_IIZjek34/c-rp-mo-br100/photo.jpg','16590124370714063921',3352),('AIe9_BGvUJd9etQojwpjZIMsiFne-apSIcCvAt7fKbvANntt_vNsOP4aFtJw9031RDKkXWq9EYKAq_xrM8IqazL0nIQnnIpvlniCdad-J33j1ZyCsOB5yl4','Great place and friendly and professional staff. Dr Zheng listened carefully and took her time to assess the problem. The warmed blankets provided by Nicole was just the personal touch in a stressful situation. Val was super friendly and patient as I hunted for my medical cards. The Radiology tech, Trisha was thorough and highly competent. Everyone took time to explain their part of the process. \n\nAlso, facility was very clean ( I saw personnel routinely cleaning while I was there) and furnishings were stylish and inviting. \n\nI highly recommend this facility.','2020-02-17 04:31:27.518000','2020-02-17 04:31:27.518000',5,'Karen Johnson','https://lh5.googleusercontent.com/-TLSsdZed6Gc/AAAAAAAAAAI/AAAAAAAAAAA/8SJtCcSOSyw/c-rp-mo-br100/photo.jpg','8918455867446117794',14821),('AIe9_BGvUJd9etQojwpjZIMsiFne-C61_ROD8c-9O1r5QrXeDIff4LMrHovcbkB1IxKhmHZIC31G8uwVvt1uZDI65QTLHuBj0UhEh-GhiYwCQEaoL66K434','We went to the Copperfield location twice. Both visits were wonderful! The Clinic is so nice and clean. The staff are very warm, friendly and helpful. The care my daughter received was excellent! We were helped by Dr. Ortiz, Tammy W, Courtney G, Jessica N., and ChanellP on the first visit. Excellent group!!','2020-01-21 20:22:12.707000','2020-01-21 20:22:12.707000',5,'Lynn Hart','https://lh5.googleusercontent.com/-lYve4TGRbjM/AAAAAAAAAAI/AAAAAAAAAAA/uERLSMTMwMs/c-rp-mo-br100/photo.jpg','17898197009688164559',10253),('AIe9_BGvUJd9etQojwpjZIMsiFne-FfoM8fRWm_xQxhtWRVf9j3t8aYtplJyT7yY71ekhU4GhsdiTI4Oka1kSp0J_ABcvO8CtEMniEJ97N7EgW4nXSIMaQQ','Dr. Golla, Keera, Jesse, and Janet were great!','2019-06-25 21:39:03.687000','2019-06-25 21:39:03.687000',5,'Tori Smith','https://lh6.googleusercontent.com/-9z1wtzpKCmM/AAAAAAAAAAI/AAAAAAAAAAA/1mq51G30CiQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4647),('AIe9_BGvUJd9etQojwpjZIMsiFne-k2Vs00alrdXyJsL6CVcnXLM_ZcjliDvqhEbLIjjd3d5pbSaps6dQBbXdSbd7aXJl2UP3r42cbGyr5XR2PVvlOZNzNE','Keera was great!! My experience was amazing!!','2018-10-26 03:16:44.498000','2018-10-26 03:16:44.498000',5,'Kindle Kelley','https://lh4.googleusercontent.com/-ZMxSERPseRY/AAAAAAAAAAI/AAAAAAAAAAA/yBqSS6G925E/c-rp-mo-br100/photo.jpg','16590124370714063921',3688),('AIe9_BGvUJd9etQojwpjZIMsiFne-kNlMDNEvLS9uVtOgb_qlRO2dyIpyLrFcmxRvXJ5AtLwauN7cef7zToO4NKkF7jEmHjRUj8ET0OGfBdPlzVO9B9_MNA','This experience was great and very helpful today with my injuries that I have been in with the car accident Anthony with the RN was great and so was Dr.Harjai he was very professional and really put my mom at ease! J.R. The X-ray tech really helped me with positioning my body to get the right X-ray \n\nGreat service I will visit again','2019-04-03 17:43:48.129000','2019-04-03 17:43:48.129000',5,'Mikaela Pyron','https://lh4.googleusercontent.com/-1lkBSvtXzfY/AAAAAAAAAAI/AAAAAAAAAAA/uOlWCk0rbaE/c-rp-mo-br100/photo.jpg','16590124370714063921',3460),('AIe9_BGvUJd9etQojwpjZIMsiFne-O_yqAGHuWD9o9jn9tlS1Lcs-jPzF3rnCWw6tgueMeDnvZCWsPBiIkOnDk33K7DCiV1AbG5de9U2MibJc5gUGlgEwdY','We had a fantastic experience. The staff was amazing. I am so glad I brought my 2 year old here for stitches. I could not have asked for better care. Everything about the visit exceeded my expectations. I highly recommend!','2020-02-06 18:16:57.535000','2020-02-06 18:16:57.535000',5,'Jamie Van Wagner','https://lh5.googleusercontent.com/-KkDdRskA0mg/AAAAAAAAAAI/AAAAAAAAAAA/t_oITJBAiXo/c-rp-mo-br100/photo.jpg','16891069708558046635',13957),('AIe9_BGvUJd9etQojwpjZIMsiFne-od4sQZCTtKfhbj6YjRkpiBKOrmBJ15LMfFa5Z7PFlwfO4ul33BEjLImpbSE0d96MwQBBzYeAcOffM95qyo_n86rrFI','These guys rock! Very clean space that paired with the amazing staff provides an unmatched experience.','2017-12-30 04:26:38.677000','2017-12-30 04:26:38.677000',5,'Francisco ‎José Gomila García','https://lh5.googleusercontent.com/-THV3kRYiTyU/AAAAAAAAAAI/AAAAAAAAAAA/3-OAjHLnwb4/c-rp-mo-br100/photo.jpg','16891069708558046635',4530),('AIe9_BGvUJd9etQojwpjZIMsiFne-P9L9ai-djYvAo668ucXKFxizCM3dPU-LAG3wD2PCrd6otO53awB4wjRKK2S2M93pYWagmQSXqrkDlgg7aH4Pti1UDg','Came in on July 4th. I was lucky that very few patients were there, so I got immediate attention. The nurse Nicole was extremely friendly and attentive. The facilities were actually quite remarkable, Very spacious and clean. Dr Zheng was very thorough with her procedure. Overall this was a very nice experience at the emergency.','2019-07-06 18:30:33.485000','2019-07-06 18:30:33.485000',5,'Mark Valco','https://lh4.googleusercontent.com/-D0wTi1jvRB4/AAAAAAAAAAI/AAAAAAAAAAA/BM39L7qil7w/c-rp-mo-br100/photo.jpg','8918455867446117794',9095),('AIe9_BGvUJd9etQojwpjZIMsiFne0_CZ3VGAmwLf5xs7nSUDm73iu-WiuGRdwuZS5Pm4nJ_rFaIt8O_U4dDrwhr9wZ3BIPyOjSHQ_TmVwjuqmB76UHAXSJc','Had a great experience when I came to Signature Care Emergency Center, Tera helped me feel comfortable since I didn\'t feel well. Everyone, the staff, was super friendly and treated me very well. Thank you!!','2019-12-14 02:43:17.301000','2019-12-14 02:43:17.301000',5,'Isabel Perez','https://lh4.googleusercontent.com/-tlH8mB5JDrw/AAAAAAAAAAI/AAAAAAAAAAA/AWsr2gn3VEE/c-rp-mo-br100/photo.jpg','17898197009688164559',5357),('AIe9_BGvUJd9etQojwpjZIMsiFne06dom5O_tt8dntwr7cXK5Kdp2UKXdJ1H3-ftaFLWEJZNhWHL3M8OtDrvNbDaryzUmReyVF-9umhBSg-p0KyN-SVw_Kc','Nurse Gina and Regina were great! Made sure I was comfortable and knowledgeable of my visit. Dr. Wang was really kind and got me up and going in no time. Tech Diem and Marone got me in and out. I highly recommend this location. No wait time got me in really fast.','2020-01-17 20:09:29.981000','2020-01-17 20:09:29.981000',5,'Joseph Matthews','https://lh3.googleusercontent.com/-v1U3jrb2b8A/AAAAAAAAAAI/AAAAAAAAAAA/j3imwUEJgT4/c-rp-mo-br100/photo.jpg','14567670160750071148',10036),('AIe9_BGvUJd9etQojwpjZIMsiFne08Whm-1_V_S0jb6zAv36PCK-hCxvyujDRy0azcqu14pi6YGJKwrDpzTsZQFg89jTMqNoYRirPAkGASwwITI1WT3kVk8','This is a great place for urgent care need avoid the hassle of hospital settings. The experience at this location was awesome from admission to discharge warm hospitality by Patricia, vitals by a man of little words Jordan and nurse Alvean was so warm, caring and the best medicine for pain. Now the best for last Dr. Mauldin he needs to teach ethics classes great bedside manners and gentle doctor he is in the right profession because he care for people. Thanks for the wonderful experience!!!','2020-01-25 21:13:07.862000','2020-01-25 21:13:07.862000',5,'Wanna Thompson','https://lh6.googleusercontent.com/-cVSioMiIDWM/AAAAAAAAAAI/AAAAAAAAAAA/nh11B41cYrQ/c-rp-mo-br100/photo.jpg','16389487648212004696',10177),('AIe9_BGvUJd9etQojwpjZIMsiFne0ar6Twb03R9u4VBiQJudla_CIYQq2VuD2g0uPcvT7iVLmcaoTDRZ0z36xu7IWuZ2cbd9UQN7gDrARJ2vzCTWaarUcRM','Awesome facility 5 start services compassionate care keep it up guys.','2018-09-27 02:07:50.895000','2018-09-27 02:07:50.895000',5,'Ovais Khan','https://lh6.googleusercontent.com/-vMjcDj-vq6U/AAAAAAAAAAI/AAAAAAAAAAA/tnYSUorLqE8/c-rp-mo-br100/photo.jpg','17394740196501090048',4784),('AIe9_BGvUJd9etQojwpjZIMsiFne0g1Uvx-IqM3kNatgDgN6JcTLkVst_skAGrq8MyKmYDiXgpTEPReqOA6PmPK9mQQhYuWLEd9aF1qGrYjJsl5BdFpVpMY','The doctor was very patient with me as it was a dental concern! Wait time was less than 10 minutes!','2017-03-20 18:19:04.555000','2017-03-20 18:19:04.555000',5,'w taft','https://lh3.googleusercontent.com/-zHPEBnbNF8g/AAAAAAAAAAI/AAAAAAAAAAA/G0NLsj1dEWQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5092),('AIe9_BGvUJd9etQojwpjZIMsiFne0LyKD6Ve9boyDywHFSpq1h6r9imlBvPQ4LJZr1YTbZrOnfF1MHMIXUGoenT96vQAVayF3LW4V6dVGBE1ii2w5L3uL8M','Dr. Wren was so sweet and informative, Chih explained the process, and Amy was so sweet!','2019-04-21 05:49:32.089000','2019-04-21 05:49:32.089000',5,'Angie Pecina','https://lh3.googleusercontent.com/-Vv_4JVSVMdo/AAAAAAAAAAI/AAAAAAAAAAA/c6qlmn6JuWw/c-rp-mo-br100/photo.jpg','3511292162159714121',7357),('AIe9_BGvUJd9etQojwpjZIMsiFne0Si2bGJzNocEEU-ZMuzDEQZ9V5GFmkdRzAy9WbaIxKyOS2g3jjLkjxWrDHxeyoDLs0_w7rYFdpp6xR02uw1QCM0gfac',NULL,'2019-12-06 18:17:27.158000','2019-12-06 18:17:27.158000',5,'RaizDF','https://lh3.googleusercontent.com/-otImXU_ftxk/AAAAAAAAAAI/AAAAAAAAAAA/p_f3uiOyv0o/c-rp-mo-br100/photo.jpg','12541597562633926366',362),('AIe9_BGvUJd9etQojwpjZIMsiFne0Tlm6OJrWe8FZNXw4JN1-kCwNgQGjiTy8F6sVfLaImvjD8vx2FFhrJHfC5W-rhVO8eZhqLISNJbbA93ncGMoiB4WFs4','I came in with heart problem and I was immediately seen and taken care of with kindness & care. Everyone was so nice and made me feel better & calm. Thank you to this amazing team Registration: Stephanie, Nurse: Rollie, Rad Tech: Natalia, & Dr Grinblatas','2020-03-07 06:30:46.472000','2020-03-07 06:30:46.472000',5,'Angel Guerrero','https://lh6.googleusercontent.com/-W87cSAVe4Ag/AAAAAAAAAAI/AAAAAAAAAAA/fOclAqHsRXg/c-rp-mo-br100/photo.jpg','8679688254631342173',20536),('AIe9_BGvUJd9etQojwpjZIMsiFne0YFvKQSNiw4MOthU5tYNAD8y8V6VFg-aX8AHVXkHCLmIBmOpdwudTinWIIxSoA92LeVGCACYmXfDY_RK8oKLRyHHc2U','It was a very quick experience. Melissa was very nice and polite, dr dendy was great as well as troy and Sean. Super convenient.','2019-08-26 00:27:20.996000','2019-08-26 00:27:20.996000',4,'Brittany Bayer','https://lh3.googleusercontent.com/-1Evg9rKjbr4/AAAAAAAAAAI/AAAAAAAAAAA/kkgTA6l9NXE/c-rp-mo-br100/photo.jpg','16389487648212004696',2975),('AIe9_BGvUJd9etQojwpjZIMsiFne0ze7VioPNdAw_Kg77PZLuPSzW-4qg1cC8SVHTY0jrmjUYNawaHOGKsdEqSYqGV5Ai8RZGkW7MfzPQ8CPQ_X7JVKBdws','I loved the experience it was very nice and Calli was the best tbh..','2020-03-03 19:06:07.866000','2020-03-03 19:06:07.866000',5,'Earnest Knott','https://lh6.googleusercontent.com/-QBeys50ronc/AAAAAAAAAAI/AAAAAAAAAAA/QJASGwf2M6I/c-rp-mo-br100/photo.jpg','2694018788013845459',21123),('AIe9_BGvUJd9etQojwpjZIMsiFne1_yorR4bkkrw8zwPCNKdc4uBc6ZS31IdOezBuShXI8uWdO3OxgAoFR9PHIqWPQGmUHnCqq47kpVNi5X62JmyR6y-ogY','No wait & Ashley B, Erica & Ashley K did great!! They were all very nice!! In & out of there!','2019-07-11 17:07:54.282000','2019-07-11 17:07:54.282000',5,'Taylor Farmer','https://lh6.googleusercontent.com/-_jca0eBI0oc/AAAAAAAAAAI/AAAAAAAAAAA/Q8-ENduUDrI/c-rp-mo-br100/photo.jpg','8626688543755174284',8435),('AIe9_BGvUJd9etQojwpjZIMsiFne15_8szCB_CWwISy0LfFPHMBborYGanD67TGCf7uGXfapf56hVfTzl-mK1IzY-HncvAb4NuTtgFGq8Y_TamECn9uYIxA','Doctor Patel was great , nurse Susan was great , Ms.Tanishia was outstanding !','2019-10-04 10:34:28.045000','2019-10-04 10:34:28.045000',5,'Ronald Dixon','https://lh5.googleusercontent.com/-FYztEJMG1GU/AAAAAAAAAAI/AAAAAAAAAAA/dhIg1I325fU/c-rp-mo-br100/photo.jpg','17898197009688164559',5518),('AIe9_BGvUJd9etQojwpjZIMsiFne19caqT2u3fgGj2wG8BfDbNyjZ4x7nj7V55SDkHYqqevRbxC6iK3oqDJfsVWNZVv9ey6HvyqMdySOeDowgSnVwDmGo4c','I was welcomed with open arms from start to finish. Everyone was warm, caring, and helpful. The visit did not take forever and they were thorough with explaining everything to me. Definitely recommend this clinic. \n\nKyota','2019-06-02 06:53:51.629000','2019-06-02 06:53:51.629000',5,'Kyota Brown','https://lh3.googleusercontent.com/-Ighgugek2G0/AAAAAAAAAAI/AAAAAAAAAAA/Wz2IPEt-Wvo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFne1AgQp8r-YMyPjz3RQQrUQGW2YQrLY7rOssjAFMXFBCjKUGGJqRNFa49zKE66V3xrYS62_RJtraS9qxtB-zW6uSpyZoI','The only urgent care center I will use for my family...best staff and great atmosphere','2018-10-09 12:18:27.624000','2018-10-09 12:18:27.624000',5,'Sadie Lee','https://lh5.googleusercontent.com/-lis-oiupn9c/AAAAAAAAAAI/AAAAAAAAAAA/adJIBO2greA/c-rp-mo-br100/photo.jpg','8918455867446117794',9229),('AIe9_BGvUJd9etQojwpjZIMsiFne1CIbX8a2tiJJ93GdqLkQEJJqhROFf-TaLoYVS6mTL5u1r7I8YgJ4XCN_5E0WTNSbnnf6RiN3WQYbxK_CMnFCF1n4dRA','I have an appointment at 12 am, and I still have to wait in line. I still did not fill up any paper work I was asking the guard if I can have the paper work and fill it up mind as well to lessen the time inside but he said no and once you come inside they give it to you. I was asking him if there is an emergency inside because it will be understndable if there is but he said just wait outside. It\'s useless to make appointment and because the appointment that you are signing in is for 10 people. Plus one of your costumer service hang up on me while telling her that I\'m not the only one that have an appointment at 12. She is instructing me to go inside while the guard is saying to wait outside. If your costumer care service cant handle questions they should not be there working. This is in cypress creek location. I\'m giving 3 for the super nice front desk.','2020-07-10 13:37:30.867000','2020-07-10 13:37:30.867000',3,'Cynthia Samson','https://lh3.googleusercontent.com/a-/AOh14GgikczEaYB56tpsXJj9N9nwYeNM6cK82lVAriGWjg=c0x00000000-cc-rp','16389487648212004696',21965),('AIe9_BGvUJd9etQojwpjZIMsiFne1dQCp93RjzLBw6FYCN1OehTpJR6lD-k62DKFgBHJ3odbKCSDXhtuQ072BvTrNyndGwnjceOzSGGU7yRxBiQTRfpZG0c','Quick and Efficient. Everyone was great. Very friendly. Dr. Erica Daniels, Gina, Raj, Josh, Joey and Darneesha were awesome!!','2019-10-08 03:43:32.306000','2019-10-08 03:43:32.306000',5,'Jordan Akins','https://lh6.googleusercontent.com/-ckf6Daiqnts/AAAAAAAAAAI/AAAAAAAAAAA/c5bkVvnrbSw/c-rp-mo-br100/photo.jpg','3511292162159714121',7164),('AIe9_BGvUJd9etQojwpjZIMsiFne1JBhAsQeGxdvdksOvew0fJM2H-v9PwoamlONS0kBH5QyHZv1c2elBRaCkqH5z6jYbZzQhcrl2z79i8_8fzazdAGPEdU','I came in for my flu symptoms getting worse and was taken care of with little to no wait time. Before I could finish my paperwork I was in the back being seen. Everyone here is polite. From Shaunda at check in to nurse John and Dr. Hemerka.','2020-02-12 03:20:03.238000','2020-02-12 03:20:03.238000',5,'Antonio McCray','https://lh5.googleusercontent.com/-PzgCWj8Q9zQ/AAAAAAAAAAI/AAAAAAAAAAA/3yccH791Qrc/c-rp-mo-br100/photo.jpg','2694018788013845459',14238),('AIe9_BGvUJd9etQojwpjZIMsiFne1nb06A5PpnLbfth2FBzlTgLoTMNcGda67WJ6kTEloYXmUeNrMVh-9jwd_eauTN-648LsYu8IPlRrSqx07Pvj8n6qmlk','I was in and out within an hour, the doctor saw me right away, less than five minutes. They were very caring and nonjudgmental. Patricia, who worked the front desk did a great job explaining everything. Alvean the nurse was fantastic, and the X-ray tech, Traevis was also equally fantastic. Highly recommend this place!','2020-02-27 18:42:55.255000','2020-02-27 18:42:55.255000',5,'Jessica Kate Productions','https://lh3.googleusercontent.com/-f90c808_fKc/AAAAAAAAAAI/AAAAAAAAAAA/dESHcm3xU7M/c-rp-mo-br100/photo.jpg','16389487648212004696',13757),('AIe9_BGvUJd9etQojwpjZIMsiFne1sKVl8aIb7zHDBnQanWsDi-NX2qPA61Tra8ND2eW4xPnRX_kpT5VtjXLhMWFbgXxmp9bOUSblRrKqTDmUbgbGo-8WkQ',NULL,'2016-11-28 17:03:52.915000','2016-11-28 17:03:52.915000',5,'Ivanska Merced','https://lh4.googleusercontent.com/-5wGsSjqgC7k/AAAAAAAAAAI/AAAAAAAAAAA/rPY31CaxnJI/c-rp-mo-br100/photo.jpg','17394740196501090048',5159),('AIe9_BGvUJd9etQojwpjZIMsiFne1Slg0WHJH6G0_Q6upt4NODhmPwIt4-YV64CuTmcTeq2kXi_H2YGYx962C4SVluUS2OMdfbr9VFwylnkASomsF6dRAbQ','Even thou I\'m on Medicare and have a supplement Signature Care Emergency /Center doesn\'t accept them but I still go to them because I have sent all my family there the doctors as well as the staff are amazing. I just went Sat. 5/26/18 had to have stitches on my lip as I had run into a door, I took my husband there in 2017 he had a heart attack and had to have open heart surgery. My daughter and granddaughter who live out of state have gone there also when they have gotten sick while visiting. Even though I know I can go to a ER that accepts Medicare w/a supplement I won\'t go. I feel that I will and as well as my family that we will always get the Best of the Best care there and that means a lot to me I still hope that someday they will accept Medicare w/a supplement. One thing that Signature Care does they call the following day to make sure you are doing okay and if you need anything they are there to help you.','2018-05-27 15:47:30.025000','2018-05-27 15:47:30.025000',5,'Mary Jane Venghaus','https://lh5.googleusercontent.com/-BkmYzIJF0_I/AAAAAAAAAAI/AAAAAAAAAAA/XmgjI6WUe7Y/c-rp-mo-br100/photo.jpg','17394740196501090048',4846),('AIe9_BGvUJd9etQojwpjZIMsiFne1YUkmREBwgKDV-DKS5VcyVVJbClkZi-nzZF1B7ZxWAOpNqB7N7z774XpapwQ6nDFc-fohsoJ8Q2ufedCNBZX4Q0ZaAQ','5 star service provided by Dr. Patel, Heather, Tricia and Patricia! They were so friendly, efficient and caring. I\'ve never been treated so well at an ER. And no wait! I highly recommend them!','2019-10-24 22:53:16.405000','2019-10-24 22:53:16.405000',5,'Casandra Bates-Burns','https://lh3.googleusercontent.com/-spqiefJYe0A/AAAAAAAAAAI/AAAAAAAAAAA/5a_XEoh-6jw/c-rp-mo-br100/photo.jpg','16389487648212004696',2774),('AIe9_BGvUJd9etQojwpjZIMsiFne1yUkP2WbKQx7pfjh4OAuXUTFRykGG0idTPRoi_bSkGDfv34tBSOoqwMCbkgmFKWAj2TLZBEaPW-dbhe5-pJMeZjYmtU','Great experience! Better than most hospitals!','2016-04-02 02:09:07.506000','2016-04-02 02:09:07.506000',5,'Kakarot 93','https://lh4.googleusercontent.com/-E1v2r5J-UdE/AAAAAAAAAAI/AAAAAAAAAAA/-e-ysXAQJM8/c-rp-mo-br100/photo.jpg','17394740196501090048',5268),('AIe9_BGvUJd9etQojwpjZIMsiFne2_mZLmzRjqFNvo4Wi7CPFYwZDLYGZsjpO3kNT_jKt--Y7l-IgCICGbmmhKtYokcGnCMSuGahNXVYJFcHbHslDJ6MCos','Great customer service. Jessica Aaron Ryan Cynthia Smith. Fast service no wait','2020-01-16 20:45:17.842000','2020-01-16 20:45:17.842000',5,'Nicole Williams','https://lh3.googleusercontent.com/-bSFCEYWuRKs/AAAAAAAAAAI/AAAAAAAAAAA/jgFV4Sz-PnY/c-rp-mo-br100/photo.jpg','14904078213800803294',13631),('AIe9_BGvUJd9etQojwpjZIMsiFne26m3u40X3jwZbXkWw4sQ1hR_bjdCJki2ijuyvECtfNVAmzTOpFJwp4bZJokR8KTxyWqw-FM2B5IGBs1R5swBtZPbqxI','There was no wait time at all. As soon as I got there they took me to the room and the doctor came in right away. Facility is very clean, and staff is very professional.','2017-03-21 15:21:02.383000','2017-03-21 15:21:02.383000',5,'Brooke Warnock','https://lh5.googleusercontent.com/-MsWxSHyP7V8/AAAAAAAAAAI/AAAAAAAAAAA/cXzWrfiC-O4/c-rp-mo-br100/photo.jpg','14567670160750071148',1862),('AIe9_BGvUJd9etQojwpjZIMsiFne2GCwxNvD8PcQRBeGmcAmtdJt_ff4FXK4bvMYfs6Wwa6V-0Yr9Jh_UmxJ3GBxezZxbEBeUpmThuWvWbf8W6J-vC6lAnE','My wife and I had the best experience the facility was very clean and the staff was very welcoming so thanks Dr.Henderson,Alvean,Patricia and zeik for the hospitality','2020-02-08 23:13:12.730000','2020-02-08 23:13:12.730000',5,'Mack Marshall','https://lh5.googleusercontent.com/-RA6vusjJ8Ac/AAAAAAAAAAI/AAAAAAAAAAA/Duv2gZpWm0g/c-rp-mo-br100/photo.jpg','16389487648212004696',22601),('AIe9_BGvUJd9etQojwpjZIMsiFne2uPlBci-DwEGqIk-CV7SNQyF6wLFv7_tYt6AnGDOy1wEmxzssaLJZ9J70ETsTOvu0mJRgu0TgKp-sFJCoqt_w8X4OVI','We are fast and friendly experience here. I come here for any thing I need taken care of right away. The service is great and staff is very nice and caring','2019-12-18 21:45:39.720000','2019-12-18 21:45:39.720000',5,'Amber De La Rosa','https://lh5.googleusercontent.com/-RLWtVucNfmk/AAAAAAAAAAI/AAAAAAAAAAA/X1g00tBawGQ/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',686),('AIe9_BGvUJd9etQojwpjZIMsiFne2vgs4RTcltE_veXBPk3iBdCMsKvV4jaBO19jfcj0fLjg3pbP1j6eIiMlFHh4OznlrFcXuOko6xeOhdMCsDCHgTjuq5M','Great and fast care ! Doctors are excellent and very caring .','2019-07-23 00:16:55.981000','2019-07-23 00:16:55.981000',5,'Brendan Jackson','https://lh5.googleusercontent.com/-TUp9psQnbSw/AAAAAAAAAAI/AAAAAAAAAAA/ygeuu8Tgufo/c-rp-mo-br100/photo.jpg','12541597562633926366',483),('AIe9_BGvUJd9etQojwpjZIMsiFne2yk8Kt_FuxczSYNnavepQrxzd5Zm5ZhKXubSQYlhKPqjMk9sy2EFCvnF8cJjHln3SG9DJ6v9V7WS4hN6T54Y7vId23Q','Very good doctors and nurses very good receptionist!','2020-01-30 20:58:21.938000','2020-01-30 20:58:21.938000',5,'Michelle Valdez','https://lh3.googleusercontent.com/-c68gWq4ZKG8/AAAAAAAAAAI/AAAAAAAAAAA/eknn-XF-2IQ/c-rp-mo-br100/photo.jpg','14567670160750071148',13575),('AIe9_BGvUJd9etQojwpjZIMsiFne2zhyTTqGyEQrUSSOYofPuaCpcvi9Hz-3b4174r0zwdThVZrlNfWhwjmeWRUxDZdRJHBwWBFqSQsztu2mCKhKYPqeLac','Everyone was really helpful and made me feel at home including Dr. Vakey, Kendra, and the nurse Brad','2019-12-09 15:06:14.408000','2019-12-09 15:06:14.408000',5,'joel west','https://lh3.googleusercontent.com/-L07pPxwDZdA/AAAAAAAAAAI/AAAAAAAAAAA/fvoe7TxsBOI/c-rp-mo-br100/photo.jpg','16590124370714063921',3028),('AIe9_BGvUJd9etQojwpjZIMsiFne3mUoyQOVVxOyevN3-Qb57NzwxDxwPFwSar96dF2kwk8At1nOPBr5jp1fy28PdBdSB2nGlmkjLSlEZYkPuBJacq-X5ek','I came in feeling very sick and anxious. Dr. Starr and Araceli, RN really made me feel conformable and at ease. I would definitely come back again.','2020-03-03 20:13:18.534000','2020-03-03 20:13:18.534000',5,'BTC','https://lh4.googleusercontent.com/-2VZ9yaI25iY/AAAAAAAAAAI/AAAAAAAAAAA/AT3rCxJTRA8/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',14514),('AIe9_BGvUJd9etQojwpjZIMsiFne3wsfYEkaW2YydCSFh0DLpcvIlTWzpaNKqr0jLfpZ1zdmsZLTkGsFMieMUUbudChQcwpVaRQMCTupNil98TCLiXflJ2Y',NULL,'2017-07-31 00:00:46.700000','2017-07-31 00:00:46.700000',5,'Keyrin Lopez','https://lh6.googleusercontent.com/-Izy4ioxP6n0/AAAAAAAAAAI/AAAAAAAAAAA/aaJoB8JYvbM/c-rp-mo-br100/photo.jpg','17394740196501090048',5010),('AIe9_BGvUJd9etQojwpjZIMsiFne4-ji9LiDLY190V-UtxoVvTbZ8DtTfHsG9sE2AiKyrjRqCY0WyU3iNP8jBfl0GnbeVuHKqsb57uUm5HUWSSZyiqAV-VQ','Thank you Signature Care and all your staff for taking good care of my brother in law and going the extra mile for him and again thank you Dr. Ding , Amy front desk and RN Chris I appreciate the work you do for all patients that come here .Ms.Semetria M.Gary family of patient Floyd N. Williams again thank you taking good of him and making him comfortable while he was here.','2019-04-27 17:32:18.344000','2019-04-27 17:32:18.344000',5,'Claudine Gary','https://lh3.googleusercontent.com/-BlLPJbUurCo/AAAAAAAAAAI/AAAAAAAAAAA/noSYhZqgYpI/c-rp-mo-br100/photo.jpg','14567670160750071148',1340),('AIe9_BGvUJd9etQojwpjZIMsiFne46bLYgFFo5zdwCcvPR7vR7VWmgplmob12J7N11KnTFMzyPaeO-oTlubozv6CVhXI_NjAuIlLXakX6XZgNN8dnII9m6s','I was given excellent service by Tracy. E, Dr. Wendy, Blake, Adam, and Jas when I came in for some tests!','2020-08-02 17:51:00.683000','2020-08-02 17:51:00.683000',5,'Anthony Clara','https://lh3.googleusercontent.com/-D4NLOo33gWk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm15mHb-dZO4cy0DTQVUSy-3EouYQ/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22239),('AIe9_BGvUJd9etQojwpjZIMsiFne47WDWiUdTKDXcKTULguURn-D_T18nteCX-B2t9XcTpIl2LVqksW15SkwJfVjbPHtviU4FNnzTo0Lihst7MRRuQsuUUc',NULL,'2020-06-20 23:06:54.520000','2020-06-20 23:06:54.520000',5,'Jennifer Polanco','https://lh3.googleusercontent.com/-ti-PCBN7dAI/AAAAAAAAAAI/AAAAAAAAAAA/VsYYcOvJ5Hw/c-rp-mo-br100/photo.jpg','13486358490203335051',20918),('AIe9_BGvUJd9etQojwpjZIMsiFne4bwpCobRflqEiSusy9jDCTCh8b9X4eEn7DnxsaDu6tVz1xgnJtE2xzbKgii_8qUrliEx43HFqbQBn-7BEaeGYeCTnF8','I do not know if it was inexperience, lack of knowledge or what at SignatureCare but, if my sister had not gone to a hospital for her swollen leg that was diagnosed as a sprain/sports injury at SignatureCare, even after an ultrasound was done at SignatureCare, she may have died! It was not a sprain or injury but a blood clot in her calf! Got that verified by 2 doctors at 2 reputable hospitals who not only did ultrasounds but quickly placed her back on a blood thinner and are currently monitoring her on a monthly basis with follow ups. I would never send anyone here! This will definitely be turned over to the TX Dept of Health for investigating and the firm I work for. Unbelievable! J. Hardin','2018-09-23 21:45:38.466000','2018-09-23 21:45:38.466000',1,'J Har','https://lh4.googleusercontent.com/-Plcc_MI9aBc/AAAAAAAAAAI/AAAAAAAAAAA/-l85h_XTH9Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1494),('AIe9_BGvUJd9etQojwpjZIMsiFne4EsKOQvEstiqV2D8LptZ0QXFojNj1fLSZKf-0ih7Z4IYrCfZJdGesIGnNpkeLOHKpBXYPlxYNztFjphZXIZGhFhW2Go','Great service!!!\nGreat people !!!\nGreat results !!!','2020-07-08 13:40:15.552000','2020-07-08 13:40:15.552000',5,'jesus reyes','https://lh6.googleusercontent.com/-SICVRMtDO2c/AAAAAAAAAAI/AAAAAAAAAAA/8mfRwxcQwuA/c-rp-mo-br100/photo.jpg','14904078213800803294',21396),('AIe9_BGvUJd9etQojwpjZIMsiFne4ju6jqdipcroir6N5NUkRRt7XpMmONEfdwIi70hXGZ9CT_s7CIRwC0EFQRSz-n9vSirfD-Su-4Icl54AiHkt5yMN8WI','Mrs.brenda fernandez was awesome they treat the patience awesome come here','2018-05-06 20:40:42.143000','2018-05-06 20:40:42.143000',5,'Mercedes Fernandes','https://lh6.googleusercontent.com/-4W31gmK3uZY/AAAAAAAAAAI/AAAAAAAAAAA/YLNjKmwRuU4/c-rp-mo-br100/photo.jpg','8918455867446117794',9271),('AIe9_BGvUJd9etQojwpjZIMsiFne4neExmOrZYaQbwo1YSaGed2pmAdbyr9T6Q7Br04LzEb5UwLW0QJcJ61VqFTT5-mq8OQICjzaZL4NJ00nGRsZfRajZKw','Great Customer Service!\n\nDr.Golla has been the nicest doctor I have ever met.','2018-10-05 16:01:19.085000','2018-10-05 16:01:19.085000',5,'Edgar Sermeno','https://lh3.googleusercontent.com/-HJWzA0qCuFo/AAAAAAAAAAI/AAAAAAAAAAA/_zG6agDQP0g/c-rp-mo-br100/photo.jpg','3511292162159714121',7578),('AIe9_BGvUJd9etQojwpjZIMsiFne4rNY5qsUA-mV7rZis09-XUc-EEDM0feHcMNLQ5sOeHyZIxvGmp6cZhFmYIa1ZkZftw83k-PlKvVW6o4LZJ3Dn68AY28','It\'s was very friendly..Adil was friendly. Overall great experience.','2016-06-10 01:30:30.018000','2016-06-10 01:30:30.018000',5,'Lan Nguyen','https://lh6.googleusercontent.com/-6VQJ7gZjiyw/AAAAAAAAAAI/AAAAAAAAAAA/PvGxYNUI0uM/c-rp-mo-br100/photo.jpg','17394740196501090048',5236),('AIe9_BGvUJd9etQojwpjZIMsiFne4TAwiAiyteVoh3PxcPjC9G5yPY98kHxUbfyPaQoW5Jt6nBlN9EMhoPrzZ0rrF2IEaTAdBp1Dj8_WVQvqzWjJojChQHk',NULL,'2018-10-26 16:22:05.601000','2018-10-26 16:22:05.601000',5,'Araceli Mendoza','https://lh4.googleusercontent.com/-nBge6RuHl-4/AAAAAAAAAAI/AAAAAAAAAAA/5Txhva99dvg/c-rp-mo-br100/photo.jpg','16590124370714063921',3685),('AIe9_BGvUJd9etQojwpjZIMsiFne4tUNipiTPIxNxbZPrEvuIoboy2F8cdiFIo3VgP6Nkot4Xup8nvsA7S7goUvRSi9oVOaE3rvt3d1bJBPiAKNIDTz98eM',NULL,'2017-06-27 15:16:27.160000','2017-06-27 15:16:27.160000',5,'Bog Flop','https://lh4.googleusercontent.com/-CblJvCaECgs/AAAAAAAAAAI/AAAAAAAAAAA/ZqFOPvWasyo/c-rp-mo-br100/photo.jpg','8918455867446117794',9388),('AIe9_BGvUJd9etQojwpjZIMsiFne4vR5eB9m4IAGVDC1yDx_dXQ-POkaMo57-ifCL-scho-wkGhCVvJMGl6GxRiQiaKBPiUMcP_0SZZrWSL3TOzgFnUHTtQ','I took my son for a possible ear infection and was in and out in 35 minutes. Aileen at the front desk was efficient and quick with the paperwork. Chris and Andrew got him triaged within 5 minutes and had the physician in the room 1 minute later. Dr. Goodman was attentive and assessed my son quickly. He diagnosed him and offered medication to alleviate his symptoms. Adam came right after with the medication for my son and went over diagnosis and discharge instructions. Can’t say enough good things plus we were in and out. I would highly recommend this faculty and staff to anyone.','2020-01-20 15:35:58.273000','2020-01-20 15:35:58.273000',5,'Heather Quigley','https://lh3.googleusercontent.com/-ImBWEeBL6RA/AAAAAAAAAAI/AAAAAAAAAAA/YeYhmXop2Q8/c-rp-mo-br100/photo.jpg','16891069708558046635',13984),('AIe9_BGvUJd9etQojwpjZIMsiFne5-HALZP7ziaHukmwLbTUfWhB6s3Ux2517wMIm6GsokqC_I7xWPRCjW8jVkwjVtE10cPU0zaOE-1kuZMBfq9TIi6Nhrk','Dr. O’Malley was awesome!!! Patty was very nice and friendly! Jerin and Maxeau were very helpful! I love this place!','2019-09-06 12:52:23.821000','2019-09-06 12:52:23.821000',5,'D BallZ','https://lh3.googleusercontent.com/-X07-l1BCiqo/AAAAAAAAAAI/AAAAAAAAAAA/l-QDFuuBdR8/c-rp-mo-br100/photo.jpg','16389487648212004696',2948),('AIe9_BGvUJd9etQojwpjZIMsiFne5DE5S4ZxuMBfzIZACVebPut2vdxU3GtMWtX-W0gl9NrXCAskJjDOnf9o_80ebHuGEbwjqjap-LFiwYWciNGqJwctxUU','Awesome service fast and friendly...highly recommended','2017-09-28 17:07:39.265000','2017-09-28 17:07:39.265000',5,'Boss 92','https://lh5.googleusercontent.com/-R5lcv4moRJI/AAAAAAAAAAI/AAAAAAAAAAA/KF2pChYJ9wE/c-rp-mo-br100/photo.jpg','8918455867446117794',9353),('AIe9_BGvUJd9etQojwpjZIMsiFne5H_wWD5ZCGw7rp3A0efjxs6qDOdtL-84_p_i7KeVW_YNCaEJPs9Md2uZORCbsE-gccuChvhmjnbvthSGrumQfu1W-Nw','Very Professional, and knowledgeable. Amy, Juan and Sam took good care of me and got me in and out on a Monday Morning. Relatively inexpensive and accept most insurances.','2020-07-27 11:52:58.999000','2020-07-27 11:52:58.999000',5,'Trevor Wolfe','https://lh4.googleusercontent.com/-JwfkBJKsQS8/AAAAAAAAAAI/AAAAAAAAAAA/2orcAmXQVZc/c-rp-mo-br100/photo.jpg','2077061009497551125',22812),('AIe9_BGvUJd9etQojwpjZIMsiFne5KrOIisIzSJTpw1N-vIngx6NXS-Lh6yimey1ABUf12xhtOH9dbH4K5ZgBdqL-wzb_SPO3aHlEL_0tXXH5f0_CUIUlmQ',NULL,'2020-07-20 07:53:45.075000','2020-07-20 07:53:45.075000',5,'Lucy Nguyen','https://lh3.googleusercontent.com/a-/AOh14GgyP7UxN3hpB2aXqHT1SrLwVAGZOgwNOv3JHPF-hQ=c0x00000000-cc-rp','12541597562633926366',21804),('AIe9_BGvUJd9etQojwpjZIMsiFne5l23AOUBeZjfEWdbjZNTOLo9Bqx2esBJdtusMPPH4p6Vpb6EmWqMUFwGKtuagPoXQZTkfItqp0XO2I7NRLx0Pqv4I5U','The Signature Care group at the Mission Bend Sugar Land location off of Hwy 6 was GREAT!! I went in for some initial check up and they kept me for observation...The staff was very professional and great!','2016-07-24 19:07:14.591000','2016-07-24 19:07:14.591000',5,'Chris Smith','https://lh4.googleusercontent.com/-JplWOAjomtA/AAAAAAAAAAI/AAAAAAAAAAA/irBhjv_H_BU/c-rp-mo-br100/photo.jpg','17394740196501090048',5222),('AIe9_BGvUJd9etQojwpjZIMsiFne5MmQImr76wBOVnrS_mqiMz4c1vTd9-iQxYWSNg_Gsgt9AJF-TTOectY-dkb6Z7d-Ki9EV-lPRSB6xzb0O3aBV9Z6RFc','Everyone was very professional and nice especially Dolores at the front desk, she was very comforting and friendly. Made you feel at ease!!','2020-08-07 05:24:19.719000','2020-08-07 05:24:19.719000',5,'Alma Guzman','https://lh6.googleusercontent.com/-4vBvLTzn0Do/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck8Wf13akFKT4OK-bd7hIbIrzuClg/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21920),('AIe9_BGvUJd9etQojwpjZIMsiFne5q7eECPBeHg6LKCZ-M2wCFIGjZ_dR0I--IQ_dzSNZiqvdJoBcFBERgSHSxjmQui3nLu0OOBD-H_bTGzhMunwpDDSONY','I miss the last step of the stair of my place so tough I broke my ankle bcos of the pain!\n\nOnce my partner took me to Signature Care everybody was amazing. From the security guy that rush to get a wheel chair to the nurse and everybody that were there to assist.\n\nThey were amazing and got me in right away and provided me with a pill for the pain. Best pill ever!\n\nAwesome patient and customer service!!\n\nThank you all for assisting and takin care of my ankle!!','2018-07-04 14:08:56.731000','2018-07-04 14:08:56.731000',5,'Nicholas Velazquez','https://lh4.googleusercontent.com/-xnSa3Es307o/AAAAAAAAAAI/AAAAAAAAAAA/COg1LNkVLPg/c-rp-mo-br100/photo.jpg','14567670160750071148',1607),('AIe9_BGvUJd9etQojwpjZIMsiFne6cWEhXGL_XIRoJd_twAr0i8YgRDuWrDSmXvPu5Cay6JDBRmiJvK9NZ8jJgLCb5oyMD4iBcJ-0I6_GRpSDE7EgXBJfIU','I visited this facility for chest pain and indigestion. I was immediately and well taken care of by the team - Anastasia, Joe, Dr. Yusuf Samar, Brenda and Noreen. They kept apologizing for the wait but I didn’t think the wait times were long at all, considering they did have other patients to tend to. I felt I was a priority and they took the time to address any questions/concerns I had. I would recommend this place and I will definitely return for any future medical emergencies.','2020-01-17 19:01:58.940000','2020-01-17 19:01:58.940000',5,'Natasha R.','https://lh6.googleusercontent.com/-aMEY7zIOmEI/AAAAAAAAAAI/AAAAAAAAAAA/vfgsZmhs9uc/c-rp-mo-br100/photo.jpg','3511292162159714121',14457),('AIe9_BGvUJd9etQojwpjZIMsiFne6HOl-eSl9bsAZeJFWKTxbenAYh4dQOM1s_RXen-H1uImZnPTQaXHtVV58OeVpEgiCi7XBcKfysCSNtKVeK4wZOD-sHA','I have brought my 3 1/2 year old daughter here twice in the last month and all the staff have been amazing with her and with me! They were all very competent, thorough and kind as medical professionals and we received amazing care! I would definitely recommend coming here.','2020-01-17 03:10:24.983000','2020-01-17 03:10:24.983000',5,'Pamela Pierson','https://lh6.googleusercontent.com/-4qAXkOu373E/AAAAAAAAAAI/AAAAAAAAAAA/N2uMucj8jVk/c-rp-mo-br100/photo.jpg','13486358490203335051',13477),('AIe9_BGvUJd9etQojwpjZIMsiFne6J4NZ6Few2aEYPX0aRlwsVZjtfI17fxDIyjvvkzUaoI7AMAMoDq5XPbJq-kdGVnwNtfTl2KPZVP2R2aQRoD2Y8GLBG8','Great service and experience while here. My care team was very nice, Gabriel my nurse, the er technicians Christine and Chris, the physician that attended me dr. Elsbecker was great and very attentive. Amanda at the front desk was also very helpful. I would recommend this place to anyone in need of emergency care.','2020-02-19 05:02:47.249000','2020-02-18 02:53:44.986000',5,'Karen Portillo','https://lh6.googleusercontent.com/-YT0Uett_OC0/AAAAAAAAAAI/AAAAAAAAAAA/d4fIRzSEOVU/c-rp-mo-br100/photo.jpg','16891069708558046635',10904),('AIe9_BGvUJd9etQojwpjZIMsiFne6JZNB4fe-2OBab3xn1jEL9m_B_tDe4MgL_TJw7iO5jBXi3p_DlRMtwPojxW4cv16gh1vLLTnB1mvXdFCOMqA5dqbJ18','In the few days after seeing my PCP I had developed an ear infection with the onset vertigo. I had visited a couple of days before to SignatureCare ER/ Robert being my first care provider- but the infection had taken its turn for the worst- but this second visit, I was attended by Tia G. RN, Kelsey/tech which has the perfect IV insertion, and Dr Adam Boester, DO; they made me walk out feeling like a SuperHero! \n\n There was no wait time. They started the process immediately to discover what was making the room spin. \nThey listen to my complaints and addressed all my concerns, taking the time giving clarity to my issue. \nAfter receiving hydration I was out understanding fully my continued care within 2 hours- \n\nI truly appreciate the promptness in every aspect of my experience.','2018-06-16 23:37:22.914000','2018-06-16 23:37:22.914000',5,'Roosevelt Edwards KR','https://lh4.googleusercontent.com/-RfLL6jueop8/AAAAAAAAAAI/AAAAAAAAAAA/rjwBNQCojNI/c-rp-mo-br100/photo.jpg','8918455867446117794',9263),('AIe9_BGvUJd9etQojwpjZIMsiFne6nzLLvsfa0CLxANyWm34Nuxmab6Ng2Qi0aFrb1YDakmY1KB5PMbd6TTtMfiSvqpfH9gSnkoqyAtZTfmnpXRkaq_VPw0','Incredibly friendly and extremely professional.','2019-12-10 07:23:05.097000','2019-12-10 07:23:05.097000',5,'sam english','https://lh4.googleusercontent.com/-dv8-I43RwHo/AAAAAAAAAAI/AAAAAAAAAAA/-z--fEa45xk/c-rp-mo-br100/photo.jpg','3511292162159714121',7132),('AIe9_BGvUJd9etQojwpjZIMsiFne6rO2CJSUV429FwFL-GebUBk8DMfhl9WxSzC4vyJvIPBnHP3K0dXJ2lMZio-RUSN2DG6eG-4o8mP14Tc9OtMtEPzb3nc','Amazing staff!!!','2020-02-23 02:19:59.457000','2020-02-23 02:19:59.457000',5,'Mary Daniels','https://lh3.googleusercontent.com/-GWi6z_nsDdI/AAAAAAAAAAI/AAAAAAAAAAA/029LCRGLrtY/c-rp-mo-br100/photo.jpg','3272657195432704501',14331),('AIe9_BGvUJd9etQojwpjZIMsiFne6S1iQOx3ZMbYxiRjNNel61WWsvcQuXY0x9wMieJjkglvgYZpp4qihwX5GoFpS2lcgk5AipLSmeDVJ8MMZXn0KGaCRC0','Carly from front desk is amazing best place to go better than any hospital','2020-03-12 09:55:31.849000','2020-03-12 09:55:31.849000',5,'David Amado','https://lh3.googleusercontent.com/-OzrvkQvG1C4/AAAAAAAAAAI/AAAAAAAAAAA/fcqx2z7Af-8/c-rp-mo-br100/photo.jpg','17394740196501090048',21065),('AIe9_BGvUJd9etQojwpjZIMsiFne6Z0V1V_gAGoBjJjqJqz5gp0a0p4Pr8f-dj4pXDvPWC1dN2NK_NwvNdJ0Eh977F3wRKL9RlEsmc44XvDb-YDdeZHpjSU','Wait was pretty good for an emergency center, especially with how busy they probably are. Testing results were fast once I got in the room. Everyone was super nice!','2020-07-28 03:25:19.926000','2020-07-28 03:25:19.926000',4,'Brooke Cummings','https://lh4.googleusercontent.com/-5uHVyi8qLbE/AAAAAAAAAAI/AAAAAAAAAAA/NEg-0W6A7b0/c-rp-mo-br100/photo.jpg','14748677429039074158',22543),('AIe9_BGvUJd9etQojwpjZIMsiFne6z5xNzaoS1EULLIeHAOdUpifSTs2e_7UcJB3WWHLrFYINpytXlhPD9lUyiAT4pFPdKd3ZsaA6MvkMdZvppmtf7JmkNI','Kendra was super nice, and checked everyone in very fast with no wait time!','2019-12-08 18:04:07.407000','2019-12-08 18:04:07.407000',5,'Taylor Bellotte','https://lh3.googleusercontent.com/-oNWbGf8Fh5E/AAAAAAAAAAI/AAAAAAAAAAA/4IFO2PaIhHo/c-rp-mo-br100/photo.jpg','16590124370714063921',3032),('AIe9_BGvUJd9etQojwpjZIMsiFne7_8KtEyLnkMbBkvv8iRhlGPO9OvxPJuwRMZjqyz1VDD0pHGL8RnhhMqQKesZ2Tea23u4DOGvnVSwnsNGUA3D3EM2vPo','We arrived for suture removal and were greeted quickly by Lisa V and Lisa H. They got my daughter back really quickly. We,ve been really happy with our visits here. 👍🏻💯','2019-09-29 17:16:30.733000','2019-09-29 17:16:30.733000',5,'Kathryn Steed','https://lh6.googleusercontent.com/-NVDYpc_wufI/AAAAAAAAAAI/AAAAAAAAAAA/V3Ch9LOAcVk/c-rp-mo-br100/photo.jpg','13486358490203335051',801),('AIe9_BGvUJd9etQojwpjZIMsiFne70h2cTd6InXyNPc6fQ3BRP8SKAbCVkylo0QbhrpRH8rZkm_Yyx_FXZew4BF-esaAKiYnPvAPPon2xMHIphpB8DuQ2YQ','Dr.henderson,jennifer,gunner,courtney were awesome they were very caring and made sure i was very comfortable','2019-09-19 17:49:11.151000','2019-09-19 17:49:11.151000',5,'Chrislinn Singleton','https://lh6.googleusercontent.com/-bt42cSuGLF8/AAAAAAAAAAI/AAAAAAAAAAA/GEf4-2kZJXc/c-rp-mo-br100/photo.jpg','3272657195432704501',6890),('AIe9_BGvUJd9etQojwpjZIMsiFne72EuqFMOquHLGRmG5rq9AGZpdZk-lv4BzXfQPvU6Hmy8Dhe6gRCu0CEuvzV0uF4H3vuskxSuJpWxVhXZ_cIIUWHM89c','Had to go there after falling off a 14\' roof. I\'m so glad I went there. Staff was super kind and knowledgeable. Dr Mauldin, Cory, and Andrew were awesome! Thank you again Sig Care!','2019-11-28 07:12:09.987000','2019-11-28 07:12:09.987000',5,'Lee Rojas','https://lh4.googleusercontent.com/-hW6NFCxH3aM/AAAAAAAAAAI/AAAAAAAAAAA/IZI2LXVIKX0/c-rp-mo-br100/photo.jpg','13486358490203335051',712),('AIe9_BGvUJd9etQojwpjZIMsiFne73uccRFLhS70Dw79YT5Kk8K_3ABhEr6TTWM6EUbAQYxem1C-msP9NGbNYrfCavyrjKQCKxlN-kGfuxIrwd8PG-N6jLQ',NULL,'2019-04-19 02:08:37.068000','2019-04-19 02:08:37.068000',5,'赫兰春','https://lh6.googleusercontent.com/-BzAV54ARPtI/AAAAAAAAAAI/AAAAAAAAAAA/39uUBLz4t_k/c-rp-mo-br100/photo.jpg','16590124370714063921',3420),('AIe9_BGvUJd9etQojwpjZIMsiFne76FjzWef19L-rgE5URwZgJWMkkAvU1M35mF6skHWBFl_Lx9XB8iOA-sRxDCSNxlBjAZZQYwezwvR6Kv9genraATL9Ao',NULL,'2020-08-19 05:09:11.874000','2020-08-19 05:09:11.874000',5,'Bianca Anderson','https://lh3.googleusercontent.com/a-/AOh14Ggpg2eAgciWoUVaRnvCR1woziNndH3kROdcQcBSOQ=c0x00000000-cc-rp','8918455867446117794',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFne7ByknnucagakkWCrqo9I5LzyjardEvHMjY_MCwIOOmDRHp2InXUG45YrNmQz_TZ7wmG-12qOMmy8c2w1NQEg13Gggp8','My first visit here was amazing, but my visit today was drastically different. From the moment I walked in, I sensed that the staff didn’t want to be bothered with me; their tones were dry and nonchalant. When I was explaining the reason for my visit, the person taking my blood pressure was extremely condescending and treated me like I didn’t know what I was talking about, even though he was the one who didn’t understand what I was trying to say. There was one person who was helpful at the end, but the overall experience was still negative.','2019-02-28 00:15:42.988000','2019-02-28 00:15:42.988000',1,'Victoria Jones','https://lh3.googleusercontent.com/-Qwdwu6TeF1U/AAAAAAAAAAI/AAAAAAAAAAA/zi-8tZ-bu28/c-rp-mo-br100/photo.jpg','14904078213800803294',2163),('AIe9_BGvUJd9etQojwpjZIMsiFne7oO2yJkR09KznijBB5OW_s1Mhl2SCoiF856vFfHjN2S4iMYdfcXNuFCb5E5ewgun-h2KUtrU0IMSMOKTbgnIMszw9YY','Amazing experience despite being there for a unfortunate event. Excellent bed manners and kind people.','2019-01-09 23:27:02.725000','2019-01-09 23:27:02.725000',5,'Sarah Jaffery','https://lh5.googleusercontent.com/-TLpLz0OdIZI/AAAAAAAAAAI/AAAAAAAAAAA/g0YsY-fdoTs/c-rp-mo-br100/photo.jpg','3511292162159714121',7500),('AIe9_BGvUJd9etQojwpjZIMsiFne7qj6dq_fwdnHJL1FLM_ahwy8W2VJN9JBl7xqldX2eBxZkEVoogBeIF6Y0_bJh2gm-ii95NiPzKPoB-cc3yKyJbuL3TM','Everything was great, they really cared about my health. All the staff are wonderful and professional. I never felt rushed and they listened to all my concerns. I had to stay overnight and they had netflix and an ipad for my personal use. Thanks to everyone who took care of me. Dr. Faig and Dr. Sylvester, Hamzah, Jacqueline, Denise, Tim, Kelly, Jessica.','2018-09-08 12:41:45.223000','2018-09-08 12:41:45.223000',5,'DANNI ANN','https://lh3.googleusercontent.com/-CVhRNnsrR8c/AAAAAAAAAAI/AAAAAAAAAAA/Exnyp8KTkXs/c-rp-mo-br100/photo.jpg','3511292162159714121',7600),('AIe9_BGvUJd9etQojwpjZIMsiFne7tzuorvBUH2NkUG999qd-PZXZDzJRs1UBgdEV4lBqd00Yf94ADY6s4354muLdsKYFA6Yf-Oyt7_bn52BEOarNBCy5TE','Dr. Iheme, Alvean, and Tricia were great. The visit was very pleasant and to the point. No wait time walked right in and was attended immediately.','2019-08-23 13:02:40.598000','2019-08-23 13:02:40.598000',5,'roger Salinas','https://lh6.googleusercontent.com/-j2kSIBOjQWQ/AAAAAAAAAAI/AAAAAAAAAAA/Vm6eUvsoglM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFne89Cy1VXu5v9qn0GYuVLGTBIvXyXglY8uRCk1oD6VhwDUd_GLa7K1yufQrb6-3Hqxwn3hpM31mJ_BTkwzgm7puaVQ5Vk',NULL,'2019-08-19 18:09:57.741000','2019-08-19 18:09:57.741000',5,'Sabrina Hamm','https://lh5.googleusercontent.com/-PN4-HQOrlgI/AAAAAAAAAAI/AAAAAAAAAAA/E1HsWTFkP_4/c-rp-mo-br100/photo.jpg','16590124370714063921',3247),('AIe9_BGvUJd9etQojwpjZIMsiFne8CpJk-QpYUkeZW0zNWHJwz1tVuw_CuvMo3oMgIRaEL56Y_MYW0gGprmkClLxKs49kmV04R8sSFYbRWnUfJVxaBXYYHE','Fantastic facility with an even better staff. Dr. Leung took his time to engage with me and figure out what was going on. Nurse Gabe explained everything I was doing and made sure I was comfortable and taken care of. Chris, Enizlo, and Edward were equally helpful and nice! Glad we came here.','2019-08-02 02:33:25.619000','2019-08-02 02:33:25.619000',5,'Alex C','https://lh5.googleusercontent.com/-ot41398O2S4/AAAAAAAAAAI/AAAAAAAAAAA/XlRYzh3OBNw/c-rp-mo-br100/photo.jpg','16891069708558046635',4230),('AIe9_BGvUJd9etQojwpjZIMsiFne8i9CbkqyjxWSiZUyBUOCQugKxR5FLbIEMHtZMNXCig-Gedt7m3sj85SrRUuVrww13kusG94PeNrn1zmITV1y0XhQxww','They were really friendly and nice, Melissa was really helpful and told us everything we need to do, ekaterini was really funny and friendly, and dr. Mauldin was very informative','2019-06-30 05:47:26.922000','2019-06-30 05:47:26.922000',5,'Nana Ziko','https://lh4.googleusercontent.com/-ZepXAB2UOoM/AAAAAAAAAAI/AAAAAAAAAAA/wBsKkNskFRw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFne8IiBRQw2vgImqX3vErWd94_BsdWjtfu0yld7tlawEljKW0NaBrp5Inf8fV3kKr37Nf1FBsUloh0MeCRauXVYD_ySK1w','Amazing experience. Elida got us registered quickly. Within minutes, we were in the back being seen by a great group of professionals. Dr. Harjai was amazing, Alvean took exceptional care of us, and Tricia took some great images to help the staff diagnose and treat. FIVE STAR staff and facility!','2019-10-31 16:03:33.119000','2019-10-31 16:03:33.119000',5,'Robert Buckelew','https://lh3.googleusercontent.com/-aTkBrIAb3FY/AAAAAAAAAAI/AAAAAAAAAAA/_nNLJ1JhBq0/c-rp-mo-br100/photo.jpg','16389487648212004696',2749),('AIe9_BGvUJd9etQojwpjZIMsiFne8lkPt30UwWP26mOxKgSfjyx14TFdLcVp2eL_D01O_KGB1VBf_kEc0_2NOlJRx0blAkqPJzUbcFK-1sW8qCKCPOH1RNQ','Amazing service from Doctor Das And staff!','2020-07-31 19:55:31.681000','2020-07-31 19:55:31.681000',5,'Olivia Royal','https://lh3.googleusercontent.com/-fhCus6rgQSA/AAAAAAAAAAI/AAAAAAAAAAA/lsXCwH5oVCg/c-rp-mo-br100/photo.jpg','14748677429039074158',21895),('AIe9_BGvUJd9etQojwpjZIMsiFne8M8Jqm8LGspohtzqtZdYdgiQaadhPUVEVzzJI7LiGWVJDq7UAY58iYDmeDLMsPH5ggPDA1dayp4A_b50NeLGAIEjZTI','Dr. Miller, Myra. Rn Natalie tech John and Sindy were excellent. Great service and Great people. Awesome experience','2019-09-30 15:04:54.196000','2019-09-30 15:04:54.196000',5,'Dorian Vallet','https://lh3.googleusercontent.com/-OG5zbSOWGo0/AAAAAAAAAAI/AAAAAAAAAAA/XkMYMcoGeQQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1226),('AIe9_BGvUJd9etQojwpjZIMsiFne8YG593RBQyE7d6ZGzJ6wpCpBJOEncA6CLDkV8i-MWGnvIeHaH9a3HqN6j4kg0_7PazHy6z2_prLUyF8bbO0LxUuqKPw','Dr. Vakey and Rebecca W the tech, and Gabriel D RN they where very fast with there service. They also did a wonderful job making my grandson safe and not scared to see the dr. I will return if it is needed. I am very pleased with SignatureCare in College Station TX. 😊','2019-09-23 23:27:39.480000','2019-09-23 23:27:39.480000',5,'Trisha Witherington','https://lh6.googleusercontent.com/-D0JjIPVNpbY/AAAAAAAAAAI/AAAAAAAAAAA/uG8uBWYjUx8/c-rp-mo-br100/photo.jpg','16590124370714063921',3178),('AIe9_BGvUJd9etQojwpjZIMsiFne9_YXr16WZjL4ZJAGnRhFX0ULfaRVpwizfbM16QNt36qXn1GvZXwttYb3Pqtk4aryJh7ELfYX1adyOdKeN5uAYdWyVnw','Who wants to be in ER at 7am? No one, but the team SignatureCare Westchase were overly amazing. From checking in with Malissa, to speaking with Sarah and Dr. Miller, the entire team was so kind and invested in getting to the bottom of what was going on. Thanks for everything!','2019-08-30 14:09:02.397000','2019-08-30 14:09:02.397000',5,'T Johnson','https://lh4.googleusercontent.com/-VoBhrrwBVp8/AAAAAAAAAAI/AAAAAAAAAAA/ICF-u_fL3hI/c-rp-mo-br100/photo.jpg','12541597562633926366',447),('AIe9_BGvUJd9etQojwpjZIMsiFne958G-XmZ69H6AJHowQ80Uq7sTbiDx4giMOdLD8uIC0egem3U2aPTkEEIBOlMdGGlNMFWNo3AzIB8oPtGOZtpw9emjY0','I had a awesome team to care for me on my visit. High five to Evelyn, Rachel, Melissa & Dr. Ortiz.','2018-05-24 01:50:24.823000','2018-05-24 01:50:24.823000',5,'Evelyn Lewis','https://lh6.googleusercontent.com/-ZFeeSppbyuY/AAAAAAAAAAI/AAAAAAAAAAA/RupaTXcooPo/c-rp-mo-br100/photo.jpg','14567670160750071148',1619),('AIe9_BGvUJd9etQojwpjZIMsiFne9FXOl3IqpDN3-kKtC9uKZALpThCZCD86WPbtL5gUOTyY8Bya7-4_cVYLwm-ZLZ2TBk2hmUcWhc8IpcJXaNu9z5dSl0E','Fast and friendly service, very clean and knowledgeable doctors and techs. Thank you Jocelyn, Alvean, Marcus, Jordan and Dr. Jang for a great and quick experience','2020-03-16 14:57:11.838000','2020-03-16 14:57:11.838000',5,'Timmy Evans','https://lh6.googleusercontent.com/-fK4BRdH6bMI/AAAAAAAAAAI/AAAAAAAAAAA/vHq_KIUWgj8/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',21012),('AIe9_BGvUJd9etQojwpjZIMsiFne9G8-eU8ZXDAngZ81wkRGVE5WGJuifGxoGH4TygYOXGNSWqOCZm_0Og8ZEetDFesKBejcNqC-8Q90e-YqhyDHrcm332g','Super friendly staff, my wife\'s very sick and the wait was literally under 5 minutes and we were placed in a room and everyone\'s been very nice and comforting to my wife and the doctor came in not even 2 minutes after my wife\'s vitals were taken so they\'re very quick here and it\'s New Years and they were the only available option besides the dreadful ER so we are appreciative for this SignatureCare Emergency Center in Texarkana, TX. We\'ll definitely be back, but hopefully not too soon, and make this a first selection from now on.','2019-01-01 23:30:35.665000','2019-01-01 23:30:35.665000',5,'Joel Cantu','https://lh4.googleusercontent.com/-s5L6nATlxYI/AAAAAAAAAAI/AAAAAAAAAAA/HqKAqZV1x6g/c-rp-mo-br100/photo.jpg','3272657195432704501',7071),('AIe9_BGvUJd9etQojwpjZIMsiFne9tDnWZWwo4zGWYTVTbSlPNm7gyHuD6tiXd82M_uJ0A8BkiAa5ni-7Re3Fim8TPBtHsZ_iSJF8UdHHaOIrRf79R6gCSY','Other than the front desk lady that was a little rude (not sure if it was Blanca or Bianca), might’ve just been a long night (arrived 9:45). The Dr and Nurses were amazing here! They took AMAZING care of me and got me going home feeling better! Definitely will recommended!','2020-07-26 07:32:14.588000','2020-07-26 07:32:14.588000',5,'Mindy Gomez','https://lh3.googleusercontent.com/-jfDeRTSqHjg/AAAAAAAAAAI/AAAAAAAAAAA/g6x1SRtLVf4/c-rp-mo-br100/photo.jpg','14748677429039074158',22563),('AIe9_BGvUJd9etQojwpjZIMsiFne9udhpF6Cb1PSB_kevgFiMN6tKKKT9AzjBh6oTwDlevuitAtON83cxcPaIBV_nZHwXaOIfodYZLLt-vbeQFqwHrMeRVI','Dr Jaber, Joseph,Lonnie, shaylene, and Alyssa were superb','2020-02-08 15:28:31.175000','2020-02-08 15:28:31.175000',5,'Cameron Terrance','https://lh6.googleusercontent.com/-HsoB0BjXTbo/AAAAAAAAAAI/AAAAAAAAAAA/aDfDGoI9xZ0/c-rp-mo-br100/photo.jpg','8918455867446117794',14834),('AIe9_BGvUJd9etQojwpjZIMsiFne9X0tyic5vjz6JqumbnzNU-s_gwuFPRszWoqQ7Dl23jBlj1q-fY2AXNgwjfR1IlIaFEh9VqhM5pB6MZSvNfAPaR3xfe0','Staff is friendly, and to the point , straight forward with fees and service.. clean and welcoming environment!','2020-02-23 16:02:46.052000','2020-02-23 16:02:46.052000',5,'jony the bugman','https://lh3.googleusercontent.com/-DBVun41FEYk/AAAAAAAAAAI/AAAAAAAAAAA/GcI745HjMQQ/c-rp-mo-br100/photo.jpg','12541597562633926366',13352),('AIe9_BGvUJd9etQojwpjZIMsiFne9zcEBfJM0xY_MA4tmb6s4_nfW4zJRI8MJW_hlvH43810TPmYGLSqihUP2A2-wZUQt9Svdir2Hh-V1v9X_ph9LY5k6O8','They did an amazing job taking care of my mom! My mom is currently 4 weeks pregnant and when stop by anytime she\'s having any problems. They always take us right away and are super nice! Eboni is the best! Everytime we come in she always has a smile on her face and makes jokes to keep is laughing. Truly the star of the team!','2018-09-10 19:23:25.174000','2018-09-10 19:23:25.174000',5,'camry wheeler','https://lh6.googleusercontent.com/-JK8gOpt3SV0/AAAAAAAAAAI/AAAAAAAAAAA/vu0030GJaSg/c-rp-mo-br100/photo.jpg','17394740196501090048',4802),('AIe9_BGvUJd9etQojwpjZIMsiFne9ZXBkb7JNfRpJ9KwUGoB8qOcEJMx6JJotmk1kB82_gEH_HdFKx-QMhpOTWDDKqilBFSTfBwU-BXy2PwOOv0ME-n1tIo','Amazing staff. Timely and efficient service. I would return','2019-09-23 20:00:10.285000','2019-09-23 20:00:10.285000',5,'Kilakitu Abdul-Bashir','https://lh3.googleusercontent.com/-risCzgRI10g/AAAAAAAAAAI/AAAAAAAAAAA/687xVJNCMYk/c-rp-mo-br100/photo.jpg','2694018788013845459',6061),('AIe9_BGvUJd9etQojwpjZIMsiFneA55paiPGLjhTI3RQcdZCv5OegNGq19zqqPZJBTggEmJ9gGiKvn_D9PlOWSZt9eylSTCybFPZPDdcVXmVH03McN4mvWc','I\'ve used this location before and have been pretty happy with it, but today\'s visit was awful. It literally felt like the red-headed doctor listened to absolutely nothing I had to say. I left feeling frustrated and still in pain with no helpful advice. Thanks for nothing.','2017-07-22 18:19:38.160000','2017-07-22 18:19:38.160000',2,'simone kennedy','https://lh6.googleusercontent.com/-AMvMpVD7yjU/AAAAAAAAAAI/AAAAAAAAAAA/p2LxPvJywxk/c-rp-mo-br100/photo.jpg','3511292162159714121',7800),('AIe9_BGvUJd9etQojwpjZIMsiFneA5k9dkpdVjJCyo4jZ4pE7KTDERFkHbpYbpKHm4Whq05FrjdXsUrKkfNIwXvpJsqaLd5cpMhGlynSO7viu23fUqFLjnU','Really fast and so friendly','2019-02-04 05:38:59.804000','2019-02-04 05:38:59.804000',5,'maria rangel','https://lh3.googleusercontent.com/-2SDCyfu-MMo/AAAAAAAAAAI/AAAAAAAAAAA/frKBmi1llH0/c-rp-mo-br100/photo.jpg','14567670160750071148',1394),('AIe9_BGvUJd9etQojwpjZIMsiFneA5n-JyLL5B9t1QBYy_z7lp-2bn6dWpShqnXKiqRC9ZakPp7hdjmU6diP_BfOcfKkc1NwHC4CsP1IZ-Q_x1ZGwUF0TQ4','Thank you so much for the quick care! Remington the nurse, Becca W. The tech, Stephanie with radiology, and Dr. estevez all worked together to get the care needed. Thank you Rayven for getting the registration process completed easily and quickly','2019-06-21 23:32:25.329000','2019-06-21 23:32:25.329000',5,'Maxim Morris','https://lh4.googleusercontent.com/-W7z7jZY2d-g/AAAAAAAAAAI/AAAAAAAAAAA/9tY5Lk2ooB8/c-rp-mo-br100/photo.jpg','16590124370714063921',3340),('AIe9_BGvUJd9etQojwpjZIMsiFneA7Xyec5X4nu6zJLNipCz3lT7fd240F_nIZPeuTEQFGefB2chHi4YcSlQmED2E-yk3UVbfv2_RGHqIpQdA2Umh7Fve6Y','Fast, friendly and well taken care of! Dr. Ding, Jasmine from registration, RN Alvean and Rad Tech Marcus were great! Definitely recommend this ER! 👍','2019-03-19 16:50:39.274000','2019-03-19 16:50:39.274000',5,'Deanna Garcia','https://lh4.googleusercontent.com/-w4Yqe4OspVk/AAAAAAAAAAI/AAAAAAAAAAA/jSOThOXyXwU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFnea80QnpGzTvaNIkuMcz8kPHPaH-oDGYYcrNaa1YUvwYakjDUQ3V_Tsin_7lzDTAuhOE0HUqUQ_XTFvaJnRz1IZy1ioVM','Thank you so much to the staff over at signature care!! They were awesome and took great care of my little brother!','2019-12-12 19:04:17.679000','2019-12-12 19:04:17.679000',5,'Dominic Leyva','https://lh5.googleusercontent.com/-46ynqAdQz38/AAAAAAAAAAI/AAAAAAAAAAA/oGocUrsckhc/c-rp-mo-br100/photo.jpg','16389487648212004696',2550),('AIe9_BGvUJd9etQojwpjZIMsiFneABAJIx86_EOlU2zS7_24ci7War0ZlPYBZo77gpadwaHUgK14e7MW9Be0KssoJWyT1rnZE4NO_eiP3jd0GOyJDLSmkiI','I was absolutely blown away ! As soon as I walked in I didn\'t even have to be seated in a waiting room they took me straight to the back & assisted me with my every need. It was very clean & welcoming ! The doctor was GREAT !!!! She made me feel like I was the only patient in the entire building. She didn\'t act as if she was in a rush & had other things to get to. She made me feel very important & comfortable. I would definitely recommend this ER to ANYONE !!','2017-07-15 20:34:19.828000','2017-07-15 20:34:19.828000',5,'Ebonie Stewart','https://lh6.googleusercontent.com/-bIlkecvePU4/AAAAAAAAAAI/AAAAAAAAAAA/UUqqw6ySnTs/c-rp-mo-br100/photo.jpg','8918455867446117794',9376),('AIe9_BGvUJd9etQojwpjZIMsiFneABNjg2a3tlhaDpsO2JWWYHGH6CQgP62SzaZ7LdU19mmaU0ozRa3BEJsitc4lIN2DpEaR3DozY_Dm9QEd3OzPzEQv9W8','Fast and friendly staff, they really love their jobs! \nDr Angela S. is awesome!','2020-07-18 17:46:02.117000','2020-07-18 17:46:02.117000',5,'Dana Putnam','https://lh4.googleusercontent.com/-n67wG8BPdEk/AAAAAAAAAAI/AAAAAAAAAAA/6IgHNyBlkxY/c-rp-mo-br100/photo.jpg','14748677429039074158',21741),('AIe9_BGvUJd9etQojwpjZIMsiFneaDkbmxpLmbN4ub3sQDBFKHgdxE0HM_fp0YAjzfsRa6Vt8V4ZGs8qgMBJYgG2DXWp-5uen4YlAVduY2XvIzRrlFtxlno','Quiet and clean, friendly staff.','2020-02-27 21:28:15.284000','2020-02-27 21:28:15.284000',5,'KerriAnne Jaime','https://lh4.googleusercontent.com/-A1r5M0bG9eo/AAAAAAAAAAI/AAAAAAAAAAA/VAYrgCCedQM/c-rp-mo-br100/photo.jpg','16590124370714063921',13821),('AIe9_BGvUJd9etQojwpjZIMsiFneae7yCFC9hyWehNtWrRIfdzokJkDqRv_Zgx4Svuj1ydPfl0WKie19n8F2JffdifctTROSsOobw3_LZlWHvCPxregmlDE','Very quick and efficient care. The receptionist Patricia, the nurse Jose and Dr. Souman were all amazing. Everyone was nice and professional, one of the cleanest facilities I have visited.','2020-02-09 18:36:37.108000','2020-02-09 18:36:37.108000',4,'LaQunta Redd','https://lh3.googleusercontent.com/-R_DK_DBlVo8/AAAAAAAAAAI/AAAAAAAAAAA/nnv1RGWyQDA/c-rp-mo-br100/photo.jpg','16389487648212004696',22597),('AIe9_BGvUJd9etQojwpjZIMsiFneaE8kxkGTbFjz3lB1Cn-y2uPkHGrbEjXl8RmtBI784ixUiSXYlTEoTvjHW2oSswwUij1avHDgmBpFSUcoPHPhuOWjZ-o','Great team, super helpful!','2019-10-27 01:20:01.453000','2019-10-27 01:20:01.453000',5,'Chris Tompkins','https://lh5.googleusercontent.com/-_-U1q9K80hk/AAAAAAAAAAI/AAAAAAAAAAA/Q12__6Qp7mc/c-rp-mo-br100/photo.jpg','16891069708558046635',4172),('AIe9_BGvUJd9etQojwpjZIMsiFneAElQI_6YQrsCm5Oe8U4kxUgH3jFvbpdNnYAvmc_j0uEGxfP_r5B3T5Bf7kuQg3pK5rmKV2pCHcSnFSUufDMFYQEBrPE','Very nice place if you book your appointment online you go then in and out with frame time that they give you nice staff very professional','2020-07-01 12:53:52.049000','2020-07-01 12:53:52.049000',5,'Reem Saeed','https://lh3.googleusercontent.com/a-/AOh14GjvvbygcYL43gxXf6wnL0n6UHE_hQR1I6sRaMqo=c0x00000000-cc-rp','17394740196501090048',21428),('AIe9_BGvUJd9etQojwpjZIMsiFneaEYp1pTQlHw7fBflEQawlTzoaZRAPGXvP1r8D5_DMRVoGRCyTdaHwXUl0g7Fc516alu4aiXTws_oEzcZZFtcFMWBDTY',NULL,'2019-03-04 21:00:09.717000','2019-03-04 21:00:09.717000',5,'Shawn Rogers','https://lh4.googleusercontent.com/--5MfP0wYL24/AAAAAAAAAAI/AAAAAAAAAAA/GLrz7YPFqfY/c-rp-mo-br100/photo.jpg','17898197009688164559',5823),('AIe9_BGvUJd9etQojwpjZIMsiFneAjHv7mhaIXmh8wft09CRSV4aAkhtKAvqACdoLeQx_kDoETKnO-5OjuRjVM0DDYSHD5kZiaQndbg5ovJk2LF8EI50ZeU',NULL,'2019-04-01 22:05:24.486000','2019-04-01 22:05:24.486000',5,'Itzela Hernandez','https://lh3.googleusercontent.com/-lDPWp36SNfY/AAAAAAAAAAI/AAAAAAAAAAA/5l1yLEVHCZw/c-rp-mo-br100/photo.jpg','17898197009688164559',5784),('AIe9_BGvUJd9etQojwpjZIMsiFneAninRbqL2RUIQ3y77zBawdq-1cbxdM9O-yYNMhCGKwAC7cfI5FMCg1eXhPBkDFxkiasvqIKP5WqyG7cDfoer_VeqNak','The staff was very courteous; Dr. Harjai,Erika and Patty. No delays whatsoever definitely will keep them in mind for future emergencies.','2019-09-25 18:08:03.770000','2019-09-25 18:08:03.770000',5,'Isamel Chavez','https://lh6.googleusercontent.com/-INmbVz4M0s8/AAAAAAAAAAI/AAAAAAAAAAA/msTaUc1yViE/c-rp-mo-br100/photo.jpg','16389487648212004696',2878),('AIe9_BGvUJd9etQojwpjZIMsiFneAPXS05ybPbDP7dPvrg6A3Xl4W-xqMVHKW4YjpIW4ATexAH-3TT4LR8S1SZJ6IeDJEqAOvTV1s7jpfnxQv9aafsruq-M','Very friendly staff. Very helpful! Will definitely come back','2017-03-22 18:59:35.713000','2017-03-21 19:30:36.505000',5,'Avery Rios','https://lh4.googleusercontent.com/-mvy-u540p8g/AAAAAAAAAAI/AAAAAAAAAAA/BPEwhR18tvA/c-rp-mo-br100/photo.jpg','16590124370714063921',4028),('AIe9_BGvUJd9etQojwpjZIMsiFneAqeCqItKCYyahbmEc7sxdBBPLXeHk9wCUB-oycAi7wSphmX9oDCZV8CdcACXanDbQoKoBNS2z5M12hHhkK2OmhBzZfY','Very short wait and near immediate assistance. Staff are attentive and excellent at what they do.','2017-07-11 00:52:34.125000','2017-07-11 00:52:34.125000',5,'Jim Riley','https://lh6.googleusercontent.com/-oLPCtBTjOK0/AAAAAAAAAAI/AAAAAAAAAAA/NsBguKSlJyM/c-rp-mo-br100/photo.jpg','16891069708558046635',4548),('AIe9_BGvUJd9etQojwpjZIMsiFneaTJNjNAQApYBrSZk5WALJ5wfB22pCn7LC_2_K2A0b64_RUmaMu0Bhja4TrFwC5uvR9CzDGGYf18EmyusR50wfMosrDg',NULL,'2019-12-31 23:59:32.170000','2019-12-31 23:59:32.170000',5,'Lois Siol','https://lh5.googleusercontent.com/-mzDrH65mC9o/AAAAAAAAAAI/AAAAAAAAAAA/9ltqZB8-Rkk/c-rp-mo-br100/photo.jpg','3272657195432704501',6810),('AIe9_BGvUJd9etQojwpjZIMsiFneAto6zBAdN6FvHIVreIX1Mq4252xtHuNQCnJJoimYifvt9bYJTC-fpEbDWpuixdNIc6EGp0yrt2WVkh2hky_IwaAP6Hk','This location was fantastic! Their receptionist Okarys was so sweet and I left feeling very well taken care of!','2020-02-27 04:52:57.062000','2020-02-27 04:52:57.062000',5,'Taylor Smith','https://lh6.googleusercontent.com/-ArAACKPW41Q/AAAAAAAAAAI/AAAAAAAAAAA/IihBdfkDc50/c-rp-mo-br100/photo.jpg','16590124370714063921',13823),('AIe9_BGvUJd9etQojwpjZIMsiFneaundj8jyHTTzdVXPeYRW_dafJiU1z1mUbxH92eySMUklBsiGe7EctpVNIv30Qs1kvkuI1TDcX2PZnObVwDgddo2AH4o',NULL,'2019-02-10 16:18:06.992000','2019-02-10 16:18:06.992000',5,'Makinley Campbell','https://lh5.googleusercontent.com/-4kIujNQqpMI/AAAAAAAAAAI/AAAAAAAAAAA/Xv1j7SZFs8g/c-rp-mo-br100/photo.jpg','3272657195432704501',7021),('AIe9_BGvUJd9etQojwpjZIMsiFneAVi9qEuHt5wTd9DoQx2wqxmAXYWt01niGVzuJ_rikBbFQCLQwx_EExdogKDETPs7-gVUUr-YTTDEF3tsRJWCasPG0ds','Brought my partner in late and she received great care. Donna in registration was so helpful on the phone and when we came in. And the nurse, Keylee, was just amazing.\n\nUPDATE: My partner ended up being transferred to the hospital for surgery by Dr. Das based upon a grossly misread CT scan. After the procedure, the surgeon called me and stated he saw absolutely nothing of what was reported by Signature Care’s radiologist, Nick. My partner underwent completely unnecessary surgery when some strong antibiotics would’ve done the trick, not super pleased. \n\nSo while Donna and Keylee were absolutely wonderful, the rest of their team seemed to let \nthem down a little.\n\nSo still giving two stars because the nurse was honestly worth 5. But next time, I’ll just go to the ER at the hospital.','2020-05-18 12:55:32.053000','2020-05-18 12:55:32.053000',2,'Emily Vandeventer','https://lh6.googleusercontent.com/-VsPTrLE_hJ4/AAAAAAAAAAI/AAAAAAAAAAA/SsdtbiSZjfI/c-rp-mo-br100/photo.jpg','14748677429039074158',21785),('AIe9_BGvUJd9etQojwpjZIMsiFneB_JbHyaCAIEvHz14hP3U5AF1_15nnJBCq9swk-Bu799WV9TDToICYuaKCVQI8NwkAGzkbpZqADRM4pbO5jcfOxoyEUo','This place is very caring and takes care of their patients really fast and organized! Rebecca V and Okarys treated us with respect and were very nice!','2019-12-06 00:50:25.867000','2019-12-06 00:50:25.867000',5,'Madison Rowan','https://lh3.googleusercontent.com/-niZRyvy5G8c/AAAAAAAAAAI/AAAAAAAAAAA/TiQA6zTI0Sw/c-rp-mo-br100/photo.jpg','16590124370714063921',3053),('AIe9_BGvUJd9etQojwpjZIMsiFneB5sXJW8XIfcgNNVua68_ok8vCZtufGmB10Jj9wX4zsVs7yR-_X68-6ZBlM6tNKxKlmDqqHP7bTk7zOdTr61N9jZkSK4','They are great and very fast service','2019-06-03 23:25:11.064000','2019-06-03 23:25:11.064000',5,'Nate Dawg','https://lh5.googleusercontent.com/-yPOTm4SHaKg/AAAAAAAAAAI/AAAAAAAAAAA/K-K7fQ9TNxw/c-rp-mo-br100/photo.jpg','2694018788013845459',6138),('AIe9_BGvUJd9etQojwpjZIMsiFnebBdpwXfn1y9hjnefSSk5BnFd2Z93bzSGcEkuYN5CEdd3XjXKIqJxPbrZA2mubkXq1hXRYlKP6RN-OR9fhpXMPZt6MLE','I came in and received fast service. Everyone was very helpful and explained everything well. I’m so glad that I chose to come into this location.','2019-03-22 03:50:08.602000','2019-03-22 03:50:08.602000',5,'J Sin','https://lh5.googleusercontent.com/-lwnYkMERB70/AAAAAAAAAAI/AAAAAAAAAAA/M701v9q5l0Q/c-rp-mo-br100/photo.jpg','17898197009688164559',5799),('AIe9_BGvUJd9etQojwpjZIMsiFnebebEDFJvCwztcohID2x-t0ztw4kZB94Mr9mxqv45Q7A8A0lFJnBgOys-q3vUsiz_x9B_F4CoY3KLz2sQxBMHZExCjSE','Kendra in registration was very patient with us while we gathered our information which made it a much smoother visit.','2019-11-01 20:12:48.836000','2019-11-01 20:12:48.836000',5,'Alex Barrios','https://lh3.googleusercontent.com/-OX4YvoROfec/AAAAAAAAAAI/AAAAAAAAAAA/oZ2nuuyzWMM/c-rp-mo-br100/photo.jpg','16590124370714063921',3111),('AIe9_BGvUJd9etQojwpjZIMsiFneBhbe3Ks9hilCFxiTjcUMESsRrcjspv9kkLj5oQac-lU86KBYrQmE62sTjyje2ev0OLE26UnGoymP5LlS4aFmDxAI0WA',NULL,'2020-08-07 18:09:08.232000','2020-08-07 18:09:08.232000',5,'Maria Alfaro','https://lh3.googleusercontent.com/a-/AOh14GhrY1Vh7YMiND3JaCtOW7BwFesp0IS3I1aIBoo0gOg=c0x00000000-cc-rp','14904078213800803294',21919),('AIe9_BGvUJd9etQojwpjZIMsiFnebiWo7pUkrpl-sL0O_LJTLcQAru7dBSPKV3CNcTqmnPDdxIP-J_rF21oKp0JC61JJvSeNfy5mvo5j6J0rBj_pcYFdcL8','They treated me so nice! Jose, Alvean and the front desk Jocelyn were so sweet to me. In and out so fast with xrays','2020-02-22 18:57:06.054000','2020-02-22 18:57:06.054000',5,'Natalie Gallo','https://lh3.googleusercontent.com/-5GUOv8p-kug/AAAAAAAAAAI/AAAAAAAAAAA/s4yKsvLCC-8/c-rp-mo-br100/photo.jpg','16389487648212004696',13783),('AIe9_BGvUJd9etQojwpjZIMsiFnebKIuNrI_9y6hI516l9_G5A5PeeX_j8HoCsyuTpFVjXPHTAQrwaYoVHjnv1AVwOlegutQxAdmsHsyBjawschLE070Juw','Great visit and super friendly staff! Alexis and Jacob were super helpful','2018-08-19 19:44:52.204000','2018-08-19 19:44:52.204000',5,'Daniel Resendez','https://lh3.googleusercontent.com/-xM2cMsTzEpo/AAAAAAAAAAI/AAAAAAAAAAA/TvfGc8WRFLY/c-rp-mo-br100/photo.jpg','16590124370714063921',3786),('AIe9_BGvUJd9etQojwpjZIMsiFneBWWTO31P7UhiphNy8Nv3SOex1L8jMNjZqzzaVhGIF0dQYgX5PLRb7bjvTtW0_zoa4lrfrFvL7KHH0RBQE-LyuRr__0s',NULL,'2018-01-17 21:17:56.625000','2018-01-17 21:17:56.625000',5,'Nuno Garcia-Martinez','https://lh3.googleusercontent.com/-C-qc2OSzZag/AAAAAAAAAAI/AAAAAAAAAAA/yiUOlzzhHBg/c-rp-mo-br100/photo.jpg','14567670160750071148',1678),('AIe9_BGvUJd9etQojwpjZIMsiFnec_2ULzQPIbCAMzc3wfLCwHdvbldtMZI7LFP0ROBFbWcXEUH1Awd417yDnKLVyQ_xqLUC1u5HUVBb1I0lS9sRG3AUaQE','I love this place. Close to home and never a wait. Professional, through, and they treat you like family. ','2016-03-13 18:43:29.641000','2016-03-13 18:43:29.641000',5,'Staci Metts','https://lh3.googleusercontent.com/-ULRBmwCgkVo/AAAAAAAAAAI/AAAAAAAAAAA/e20n1Hc1K-M/c-rp-mo-br100/photo.jpg','17394740196501090048',5273),('AIe9_BGvUJd9etQojwpjZIMsiFneC3ezdG3P_2Roxiw4OzbWvddscbhHU8vvIRuH-BbHgLhydDsczCioNRX5HbeytnYttLQJ7FCaqSnU-Ug-bLumpaG331w','I have never written a review but I am for this emergency room visit experience. Very clean facility with friendly staff, nurses and Doctor. My son was seen right away and the Doctor explained everything and answered all my questions and concerns. Definitely recommend 100%. I’ve been to PLENTY of emergency rooms and this is by far the best one. Thank you Dr. Cheng and your staff!','2018-04-12 04:12:11.926000','2018-04-12 04:12:11.926000',5,'Amanda Serrano','https://lh6.googleusercontent.com/-v1pi8VZlil4/AAAAAAAAAAI/AAAAAAAAAAA/zSWtx1kkMBM/c-rp-mo-br100/photo.jpg','8679688254631342173',8901),('AIe9_BGvUJd9etQojwpjZIMsiFnec7SylYDnipJAk1ja8Xre967QurEnas8begue1LuFGx2UlagEPeBAfybOzkL9nkWNm0ZcU9ND5fnj05sV2JMdLPId8Cw','Fast, friendly, and extremely helpful','2017-10-16 16:20:15.611000','2017-10-16 16:20:15.611000',5,'ridge crum','https://lh5.googleusercontent.com/-0jROZF4UQD8/AAAAAAAAAAI/AAAAAAAAAAA/GpWC51bIlb8/c-rp-mo-br100/photo.jpg','16590124370714063921',3919),('AIe9_BGvUJd9etQojwpjZIMsiFneCa5UmRUUmlbqdBrUW93YHvpf8J_gWga1v7E8XyXVtWjXbwuqjCx19-ylLg4p7MPBn_n-FyG1QGjjVzLdK5hAEGmL-xM','The receptionist was welcoming and helpful and the nurses were super friendly and caring. They even gave me a warm blanket!','2016-12-17 02:28:44.796000','2016-12-17 02:28:44.796000',5,'Karen Macleod','https://lh4.googleusercontent.com/-TjDqFwAtgcM/AAAAAAAAAAI/AAAAAAAAAAA/7d_dKlbUUQA/c-rp-mo-br100/photo.jpg','3511292162159714121',7919),('AIe9_BGvUJd9etQojwpjZIMsiFnecciqVp0c3MO5y6HDAe7dB6ftH6VFJdL-O5NN9o4PxCP_zJm_YC-KgZ82jpkOBtaBhPqPEuo6vJSP5rA2rnH7O8CbhF8','very professional & clean if I need urgent care again, I will return!','2019-10-04 18:11:58.050000','2019-10-04 18:11:58.050000',5,'Arias Featherston','https://lh6.googleusercontent.com/-UA3IJ_JV4Es/AAAAAAAAAAI/AAAAAAAAAAA/r2QgTVwT6FY/c-rp-mo-br100/photo.jpg','2694018788013845459',6056),('AIe9_BGvUJd9etQojwpjZIMsiFnechkWmKug3Pk8IbriXvpeXByem4sAjMUCyEbUZDhMBXHr-lfy-9Q6RYiNPaHte7ec8CZLwpna17qbpHK5Qe3K27eH4xQ',NULL,'2019-02-19 17:58:39.325000','2019-02-19 17:58:39.325000',5,'DYLAN HUDSON','https://lh3.googleusercontent.com/-Vif8Zq-ZRjE/AAAAAAAAAAI/AAAAAAAAAAA/O7IBd__SpwA/c-rp-mo-br100/photo.jpg','8626688543755174284',8554),('AIe9_BGvUJd9etQojwpjZIMsiFneCHXpNz-ky1gR-TqWYnv5A-WmJuAqyuqCmKh5mW91FR5sC__u4yCVN9HauvGyEaC4tcFHwlqqJejW_7vvmmyLDe9YLYU','We come her alot with our sick little ones & everyone always treats us so kind! They are also very thorough! Jennifer D. Helped us check in this time she is a doll , so sweet and polite everytime we are here!','2020-02-19 17:10:09.393000','2020-02-19 17:10:09.393000',5,'Kim Taylor','https://lh3.googleusercontent.com/a-/AOh14GhCACd4X1tLKTWzMExeqRgPYOEk_0SXu1WziJs6bVA=c0x00000000-cc-rp','8626688543755174284',14609),('AIe9_BGvUJd9etQojwpjZIMsiFneci-_AQSHXt_L5zoqbpQg6piX5apAn7PN7b5RcJ0bmBJzMjYT0S-BwsjtoCyaMnweZstzvZmKU4CbVMm6SAl9kWvclIM','My experience at Signature Care went smooth. The nurse Nicole was extremely patient and helpful and offered my husband and I warm blankets while we waited. The ultrasound tech and the doctors took great care of me.','2019-12-27 00:25:37.140000','2019-12-27 00:25:37.140000',5,'Chelsea Washington','https://lh6.googleusercontent.com/-RwO5vUnnJes/AAAAAAAAAAI/AAAAAAAAAAA/YXlwO96fw6U/c-rp-mo-br100/photo.jpg','8918455867446117794',9023),('AIe9_BGvUJd9etQojwpjZIMsiFnecJqmEh2agVv1QhbPpReILw3kDIGx_QnLaHjEKVVkc1YVGWbeig2ng1YdX4Se8YXCxsE4EVJBeIrmqvOI8BVCovB_gvQ','Good experience and good treatment and great stuff doctor:kotey ,md nurse :Lynn s. RS tech Fatima b , er tech , Daniel b. Registration . Tanisha w','2019-12-23 05:35:50.836000','2019-12-23 05:35:50.836000',5,'PRATIK VAIDYA','https://lh3.googleusercontent.com/-4QyZdOXEkHw/AAAAAAAAAAI/AAAAAAAAAAA/CuZ0USme-jw/c-rp-mo-br100/photo.jpg','17898197009688164559',5336),('AIe9_BGvUJd9etQojwpjZIMsiFneCkGj0L_DZYFaBq4ereqRR3RqAOMrfOnv11KnqSPQEgHR0N2m4IopD5AvjLcKdXwXMo8An9sUuXIhyCwZxyH-lflLYeA','Quick, prompt, and professional. On top of awesome service; these guys treat you like royalty. I would definitely recommend this location to anyone who needs fast, reliable service!\nFrom Maya at the front desk; to Nurse Kristina and Dr. Faig, everyone here is WONDERFUL.','2019-12-31 17:04:39.836000','2019-12-31 17:04:39.836000',5,'Chris Jones','https://lh3.googleusercontent.com/-crDE_2awRGo/AAAAAAAAAAI/AAAAAAAAAAA/9ZxH-TnX3gA/c-rp-mo-br100/photo.jpg','12541597562633926366',277),('AIe9_BGvUJd9etQojwpjZIMsiFneCKlKToiMYZBG1hkpv-choNOC4SKEDUI0nyxBRMEVMgQMyyP-6msIOEBOE4v0Sgn_P_J2lv8-1Sp-tD1k6eJrJADOoo4','This place was amazing. I really can’t imagine it’s a part of our healthcare system because it’s so much better than a hospital emergency department.. if you ever need care just go here!','2020-01-23 11:55:19.402000','2020-01-23 11:55:19.402000',5,'Jonathan Holt','https://lh4.googleusercontent.com/-5QYTerZwKvs/AAAAAAAAAAI/AAAAAAAAAAA/pk2ps_N1taE/c-rp-mo-br100/photo.jpg','16891069708558046635',13978),('AIe9_BGvUJd9etQojwpjZIMsiFneClxQmCfhBZPdQPmkQb4pOP4NZSHOi2nNkik-YvdYxPj49Vqi4mfWYQ5rAN_1YgBjTCVD41BQBTlpp3zlZ3323P8Qw2A','I would definitely use Signature Care again. From the time we walked in until the time we walked out, the staff was wonderful. When we arrived the ER tech, Patrick came in the room, explained everything he would be doing and was very helpful answering any questions. The nurses, Cat and Remington were very knowledgeable and accommodating. They made sure I was not in any pain and always had a warm blanket. They e planned what every medication was and what it helped with, before they gave it to me. Stephanie, the Radiology Tech was quick and precise. Dr. Ortiz actually spent the time to ask questions and listen to what I had to say. It was a very welcoming atmosphere and I didn’t feel rushed. They really took their time to make sure I felt better. When leaving, Rebecca V was polite and wanted to make sure I was taken care of during my visit! Thank you Signature Care for doing such a great job and making me feel better.','2020-02-15 13:32:24.512000','2020-02-15 13:32:24.512000',5,'Barbie Piccolo','https://lh6.googleusercontent.com/-gpu3rhdKoCE/AAAAAAAAAAI/AAAAAAAAAAA/-9nRm8jurcQ/c-rp-mo-br100/photo.jpg','16590124370714063921',13855),('AIe9_BGvUJd9etQojwpjZIMsiFneCn04BfWfUZo9q7m9tWMc1mg1gDihl4m73eMs4QEUrxd2oiNq_4OFG5G2r4qqvogEwSaz9VFTHQNbPhcr74Ffb-YR9kM','I came in with a high level of pain. They were able to see me immediately and take care of me quickly. Alexis, Anthony, Laura and Dr. Vakey were super nice and took great care of me.','2018-09-15 13:49:35.508000','2018-09-15 13:49:35.508000',5,'Sara Chappell','https://lh5.googleusercontent.com/-AU40Ym2r-A4/AAAAAAAAAAI/AAAAAAAAAAA/XhdmCOND5-w/c-rp-mo-br100/photo.jpg','16590124370714063921',3729),('AIe9_BGvUJd9etQojwpjZIMsiFnecNrjQc6h3x3liRa7OhNO2QlTWO2mZ3XyIWLTDcpe38CpN_wICEes4AxakTAUOLl0jNH566yolk9XnWDkfrzv2vxw0_o','Excellent service ','2016-09-04 17:39:08.485000','2016-09-04 17:39:08.485000',5,'Lucero Macias','https://lh5.googleusercontent.com/--yHUxxKZzh8/AAAAAAAAAAI/AAAAAAAAAAA/uJGS7iT0WA0/c-rp-mo-br100/photo.jpg','14567670160750071148',1977),('AIe9_BGvUJd9etQojwpjZIMsiFnecOG2ByBuT2GlYx0g4Yqi4MSoBDmH_N---9_CybzHWYNXMUUvRWlT_RuLz0rK9GV4chDXmMynK0aD_7dzeTs9t6YkhfY','Is great place all the team of doctors are great','2019-08-14 16:28:57.229000','2019-08-14 16:28:57.229000',5,'Jose David Hernandez','https://lh4.googleusercontent.com/-EEr4fGboCAE/AAAAAAAAAAI/AAAAAAAAAAA/uGPIfl1dp8s/c-rp-mo-br100/photo.jpg','17898197009688164559',5588),('AIe9_BGvUJd9etQojwpjZIMsiFneCwGbSwpm_xRUEtkxvc9L42-Tke1PtXa3OjjEsgOTAJU_5tYxLGPUvgYIe43KkF7jDWY5jHBLC1059L-z0mw7--EdHYU','I walked in because I haven\'t used the bathroom in a week. Staff was very nice but doctor not sure she was even a doctor. They said just go to Walgreen\'s but decided to do more test on me. they took my blood and said they are going to run tests. I left and went to Walgreen\'s and bought over the counter medicine and was fine 2 days later. the next week i checked my insurance statement and got a bill for $9000.00 dollars. I didn\'t even go to a hospital to have such an amount this outrageous! Make sure you are informed of fees and what is going to happen before you accept service. I thought this place is next to my home and it is better but the fees are not worth it.','2016-11-25 20:50:54.848000','2016-11-25 20:50:54.848000',1,'Sounreal 1973','https://lh3.googleusercontent.com/-LGamdPgpEtA/AAAAAAAAAAI/AAAAAAAAAAA/B4jc14WeUpE/c-rp-mo-br100/photo.jpg','17394740196501090048',5161),('AIe9_BGvUJd9etQojwpjZIMsiFneD6PgoJA4CT1i8Cws0cY7zBJzYpRar4rWqXs4pyWPr4vRdXEJNtrRIj5jitTCLiNINJodhtQWZIDPJmvb0Ca7kybUgmg','Staff is extremely nice and helpful. They got my wife in quickly and diagnosed her problem within an hour. Thank you!','2019-06-16 19:16:07.874000','2019-06-16 19:16:07.874000',5,'Dustin Jones','https://lh6.googleusercontent.com/-wulEtdldTw0/AAAAAAAAAAI/AAAAAAAAAAA/49pGjA__W3Q/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',952),('AIe9_BGvUJd9etQojwpjZIMsiFneD6uIrEGwmaNLAw5nGP_L0gatcbqYYy3L5eGqIeKRuLZ6znOIAcFilkMlK8F6P3_X-1ciwVIPKDpIONnuDOPjbjyjWlY','I recently had an accident and went here to get checked out. The staff was top notch! Thanks to Dr Rose, RN Katie and Mr Townsend and REG. Delfino for great loving and caring service. If needed I will go hear again without question! They really take the time and care about you! Oh and barely any wait time!','2019-03-13 23:16:27.484000','2019-03-13 23:16:27.484000',5,'Carrie Hargis','https://lh3.googleusercontent.com/-N5YPvdpFing/AAAAAAAAAAI/AAAAAAAAAAA/KnNq3ipwGeg/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4325),('AIe9_BGvUJd9etQojwpjZIMsiFneD9a7IYQzazg78h19NL6Z7WfD7z304ENXHWrfHLZa_t94aISy6vMj2KeXBata34v9USLycAdPIB0wOGrLPeUaKBwFVAk','Bit pricey if you don\'t have insurance BUT excellent care and compassion. Doctors call back within a couple days to check to see how you\'re feeling.','2020-01-30 20:12:31.720000','2020-01-30 20:12:31.720000',5,'Philip Judice','https://lh4.googleusercontent.com/-1gfFdWLGMWY/AAAAAAAAAAI/AAAAAAAAAAA/HkG-Bo1wMQQ/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',10470),('AIe9_BGvUJd9etQojwpjZIMsiFneDa1Uram5XQqL7plpYwS_ZUMik6RDhEQzXSL0jiNVGG16zdgafndr8unG-Rqs_0AhFQluuV8xORFSJ8KBzdA9ITzzJzA','Very friendly staff dr Curtis Lucas and Kelly and very clean hospital','2019-03-31 18:58:47.117000','2019-03-31 18:58:47.117000',5,'Lucy Anderson','https://lh5.googleusercontent.com/-KT6U0v3fBkA/AAAAAAAAAAI/AAAAAAAAAAA/7viOTL1xxEE/c-rp-mo-br100/photo.jpg','3272657195432704501',6983),('AIe9_BGvUJd9etQojwpjZIMsiFneDaaDX-1OyRuPjCudIwLlivDDDTcPpQS8sh7EV_Y5c4fNhmVts9WexK6V9yJpvz8POR48fT801wvdGN0ZzpQCNVGuJKE','Dr. Grinblatas was amazing. And very caring to our concern with our child also along with all the other members we interacted with.','2019-06-22 21:05:13.398000','2019-06-22 21:05:13.398000',5,'Danielle Peterman','https://lh5.googleusercontent.com/-yKJ85ng225k/AAAAAAAAAAI/AAAAAAAAAAA/O-1Byuh9VoA/c-rp-mo-br100/photo.jpg','17394740196501090048',4655),('AIe9_BGvUJd9etQojwpjZIMsiFneDdx8S8EDqFVCQCFfuy0sHiwDJpZliEifuWs02F6gTPLu8i4-2N9a5LRugmLgie35kkzTjZN5Bl2A1WIaWFK6zq_QEG8','So it\'s been several months and this place has still not gotten my billing figured out, even though my insurance sent my payment months ago and I\'ve called and emailed them multiple times. I\'ve left so many messages it\'s ridiculous. I finally got someone to reply to an email and phone message but they have still not gotten anything sorted out. Also, they promised a Starbucks gift card for leaving a review and I haven\'t received that yet despite contacting the lady 3 different times. Communication and follow through at this place is terrible!','2015-10-28 20:23:46.076000','2015-10-28 20:23:46.076000',1,'Ceecee Gee','https://lh6.googleusercontent.com/--O0e9-hUMXc/AAAAAAAAAAI/AAAAAAAAAAA/D43uFnfx4I0/c-rp-mo-br100/photo.jpg','8679688254631342173',8927),('AIe9_BGvUJd9etQojwpjZIMsiFneDielctVf-_sHvAxgwO33wwb-hcbX4vTuyj_vUpXdDP7RhNCKbrsyXhNHv4sGI1eBZg1tLNqIn-tjM_AAV2OhnNQsMfs',NULL,'2019-12-08 10:39:32.276000','2019-12-08 10:39:32.276000',5,'ABR Aravinda','https://lh3.googleusercontent.com/-dJRp9JeL5zg/AAAAAAAAAAI/AAAAAAAAAAA/Vjg0mTW8m0s/c-rp-mo-br100/photo.jpg','8918455867446117794',9036),('AIe9_BGvUJd9etQojwpjZIMsiFnedjljdfLVHbwuxhQEyKkQAdMDCthyLzsX-hVt_hJMHt9m2EwPMGd5FBM_aQbF_hxWLOwlH0kZs8BGPpskWFehU4AQhqg','The staff was quick, professional, and kind. Would highly recommend','2018-08-11 22:23:25.278000','2018-08-11 22:23:25.278000',5,'Corey Woodson','https://lh6.googleusercontent.com/-sj_tZyS7vog/AAAAAAAAAAI/AAAAAAAAAAA/a0Vp6mGr4os/c-rp-mo-br100/photo.jpg','3511292162159714121',7628),('AIe9_BGvUJd9etQojwpjZIMsiFnedM0q-XlA9VKnqu7lcdZ5HPwe5UFcKtVKab6ELpw_vale6xtLgWqrKhbTB7UDDbDjF3L4C21Fv4KRnHxZTINUgvnaKI8','Very helpful, I was in and out in no time!!! Staff is very friendly and professional!!!','2019-12-26 01:38:18.054000','2019-12-26 01:38:18.054000',5,'Johnathan Felder','https://lh6.googleusercontent.com/-1qpp_przmK0/AAAAAAAAAAI/AAAAAAAAAAA/1P2g6Tq_9W0/c-rp-mo-br100/photo.jpg','12541597562633926366',302),('AIe9_BGvUJd9etQojwpjZIMsiFnedM19xDy78yDl3QvuyUck41wUhSrMUBUIkOiuRw73eLVjvvGmvRdYYc-J4KfxCy2LNz_XcrekyGGupbnwsczUe1NWpbI','Nicole was very attentive to all our needs','2020-01-12 04:53:38.503000','2020-01-12 04:53:38.503000',5,'evelyn gonzalez','https://lh4.googleusercontent.com/-EuldjLoWamY/AAAAAAAAAAI/AAAAAAAAAAA/vT_z0aVdyG0/c-rp-mo-br100/photo.jpg','14567670160750071148',9470),('AIe9_BGvUJd9etQojwpjZIMsiFnedmU8znX4V89eEG5iGSHVDxifGHEilTaybBH7PIPDKxl1vM3-aZE70QU9Cq_VurJ8FwPhsAC6HXnHsdG0DhjHWjnetJc','I came in with a swollen wrist and knee. The entire staff was very polite and helpful. I was specifically treated by Alvean, Tricia, Jasmine, and Dr. Patel and they were a phenomenal group. 10/10 will come back. (If In need of medical attention)','2019-06-06 18:29:41.253000','2019-06-06 18:29:41.253000',5,'Eric Garcia','https://lh3.googleusercontent.com/-El8O52Ua3IU/AAAAAAAAAAI/AAAAAAAAAAA/OyY_Q4Bb_YI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFneDOR3Z0mhoAC4ZoUIRMzxhPqbgiRbg7QdXX_qvYV2MqD01Mra7srOjMXyIC1P4KQq_5Mk8ZdX4Sh5mMiSyagbVrhRP7s','Front desk was very prompt as well as the nurses and doctor. hospitality was great and they know what there doing !!','2016-11-04 21:49:05.689000','2016-11-04 21:49:05.689000',5,'John Knaus','https://lh4.googleusercontent.com/-Cz48qw77joY/AAAAAAAAAAI/AAAAAAAAAAA/wiJ8psuuyU0/c-rp-mo-br100/photo.jpg','14904078213800803294',2448),('AIe9_BGvUJd9etQojwpjZIMsiFnedorOB58a5FVetJSxhfRQqyGKFGCzySwTOCzpkj8wj5WzWFhGkzkBPeK_JiOUywDSpf3aOBW1cocyJ3lqyNKQ20zSx1M','Thank you mercy in the front helping my brother and the process was swift hand helped him. Staff felt very calm and nice thank you agin would come again if I was almost dead.','2017-04-20 20:08:14.400000','2017-04-20 20:08:14.400000',5,'Alexis Lopez','https://lh4.googleusercontent.com/-aWvMRFBdEx4/AAAAAAAAAAI/AAAAAAAAAAA/VWAz81HIToI/c-rp-mo-br100/photo.jpg','3511292162159714121',7834),('AIe9_BGvUJd9etQojwpjZIMsiFneDpNVbFfNzgKyG9Z2hQsWDls8KvCf9VblTxp7bXm8e9hBrxBZMcltWnkNMBDuC9S3h2sQOdJHcxrVQHlBa0syU7TKbwY','My son had an accident that required stitches. The entire staff, including Dr. Lingan, Nurse Christina, Christine, Aileen, and Christopher were AWESOME! The were super attentive to my son and made him laugh the whole time! We were seen practically immediately and the whole process was quick and painless for all of us!!! I will always go to SignatureCare in the future!','2020-03-04 21:06:46.843000','2020-03-04 21:06:46.843000',5,'Nicole Pittman','https://lh4.googleusercontent.com/-extCiaB80pQ/AAAAAAAAAAI/AAAAAAAAAAA/6zYvgjW3mTI/c-rp-mo-br100/photo.jpg','16891069708558046635',13920),('AIe9_BGvUJd9etQojwpjZIMsiFneDpy-f71qG77JvwBgKISZLWBr1SjN_TAG4y8sPKOOIL-ab4x7N9WF4ITsy-7JKIjISVS3V8JiRxdqvSYm9j2MUP_HobY','The staff at Signature Care in Midland was extremely gracious treating my 5 year old daughter. As kids will do my little girl got scared and panicky and threw a pretty good fit but they were able to help her once my daughter calmed down. They were patient and diligent, reassuring my daughter as it went along. It is a huge relief for my wife and I to have such a professional and caring staff of medical professionals so readily available anytime we may need them.','2020-01-11 02:48:56.883000','2020-01-11 02:48:56.883000',5,'David Paz','https://lh4.googleusercontent.com/-i215OYj8W7Y/AAAAAAAAAAI/AAAAAAAAAAA/44pDAt51S3E/c-rp-mo-br100/photo.jpg','13486358490203335051',9467),('AIe9_BGvUJd9etQojwpjZIMsiFneDra0WpebKZBHw3V1x7xRsi83h66771wtIcTMFdo7sDbhlivxKuz4-ycwWB622fZlP-AEKBR9Sxt1lX4bvEW_-o1UxOQ','I\'m very disappointed in the owners of this facility. I have worked for them for two years and worked my tail off for them. I was saving my personal/vacation time for surgery and they denied me my pay that I had already earned. Very Greedy!!!\nWatch you pennies!!!!!!','2016-06-08 00:38:35.012000','2016-06-08 00:38:35.012000',1,'melinda wade','https://lh3.googleusercontent.com/-qVL5X59vlH4/AAAAAAAAAAI/AAAAAAAAAAA/eeBzi4v5_nI/c-rp-mo-br100/photo.jpg','17394740196501090048',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFnedweNBENzgHa8Od2De-691fqQlVs9p_b6AMeOJEhkgwo68N_z5zLJnhxG7sLyRBBcJzwmVTbAUFntgHl2yYgtGusoke0','Freindly staff and fast service!! This place is my go to choice for emergencies!!','2019-06-23 17:29:10.363000','2019-06-23 17:29:10.363000',5,'nikki parker','https://lh5.googleusercontent.com/-Fvi9aHWdJP0/AAAAAAAAAAI/AAAAAAAAAAA/9FsyrGrXxTM/c-rp-mo-br100/photo.jpg','13486358490203335051',931),('AIe9_BGvUJd9etQojwpjZIMsiFnedwtO6nrybEwMY3fLqGcYUReCZlJdvjGfRQPV5kAdlElC9WsIBsKLCWNjUKABo9R712N1dyyv7bS03TgAMFDVX0oCedQ','Dr. Patel and nurse Gina and the Registration person w Amy all awesome and helpful','2020-02-12 19:58:20.538000','2020-02-12 19:58:20.538000',5,'Kenneth Wilson','https://lh3.googleusercontent.com/-RrO976OpbyY/AAAAAAAAAAI/AAAAAAAAAAA/u1lFqrmBmg8/c-rp-mo-br100/photo.jpg','3511292162159714121',14416),('AIe9_BGvUJd9etQojwpjZIMsiFneDZ9feFBdNm_qfeWuZYWjLHegXrpSug95kp-tWsDZDR30kWC7pdlIt-b4SV9axQ0jGNINz66nxfxFsG0cFblLlsFS7FI','The whole staff was nice and got me in within 10 minutes. Kelly was very nice and even got us a snack. Dr. Curtis was very professional. Highly recommend','2019-01-02 19:39:45.302000','2019-01-02 19:39:45.302000',5,'Rosalynn Swofford','https://lh3.googleusercontent.com/-lE74Lfqb_hc/AAAAAAAAAAI/AAAAAAAAAAA/fOATdvef174/c-rp-mo-br100/photo.jpg','3272657195432704501',7070),('AIe9_BGvUJd9etQojwpjZIMsiFneDzJvXlsmm568dvDXUYDPoRoIz32tBsx_6V-uqIR01SQX6ZT4hvfDk4BFFWh410lOFbdEsyHB83M8x9DnA9tnF-jX5HI','They are helpful and i can t imagine that much more understanding and polite people. We don\'t have any insurance but they find a cheap solution. Thank you all you guys. As specially We appreciated to Dr. Grinblata and Nurse Rachel Reyes.','2016-10-23 02:23:26.880000','2016-10-23 02:23:26.880000',5,'mensiye yılmaz','https://lh4.googleusercontent.com/-DHNq2hJnZC0/AAAAAAAAAAI/AAAAAAAAAAA/Ju82RRr4UuQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5185),('AIe9_BGvUJd9etQojwpjZIMsiFnee29tzWuQf48SoSOn4Ui74ccDwbb26UgCFZZlDBeIj5Ovt77nsuJKvUsXfOQvBP-3qohZJaM_NNhRZ5IdOGRdnHaTkMY','So friendly. Love the help!!! They were very detail and cared about patient. Dr. Miller, Ashli, Eric, Felicia, and Chelsey all helped me and were so sweet to me.','2020-03-14 02:31:34.285000','2020-03-14 02:31:34.285000',5,'Aliya Sunesara','https://lh3.googleusercontent.com/-Hoteifpn85w/AAAAAAAAAAI/AAAAAAAAAAA/GcyH6Jky7DQ/c-rp-mo-br100/photo.jpg','16891069708558046635',21052),('AIe9_BGvUJd9etQojwpjZIMsiFnee4ipaGazDaErlOQ4m2igZdQDjl5ZjEwcGbNW1t3wlPSW26RrRvj-kvvAeSz60_Su9dKDkOUe7Obsp5oHk6nGYGljLFY','This place is very pleasant Mark and Kelly were wonderful nurses Aubrey the tech amazing and Dr.faig is such a great doctor Dolores in registration was very nice and friendly and welcoming best Er ever','2018-11-27 21:44:53.320000','2018-11-27 21:44:53.320000',5,'Cynthia Ball','https://lh4.googleusercontent.com/-ERJYDJXhNt4/AAAAAAAAAAI/AAAAAAAAAAA/1KHuP1c-FYk/c-rp-mo-br100/photo.jpg','14904078213800803294',2193),('AIe9_BGvUJd9etQojwpjZIMsiFneef-3bGOg4D0g2bhm_vzFyD8s72jwJqc7JsCZ7DaVH-1XRmAmS-BECb4RxbdUrmauUuQZau_2_qi-ZZF1crFo38FpHv4',NULL,'2019-07-09 19:55:19.339000','2019-07-09 19:55:19.339000',5,'Candice Evans','https://lh3.googleusercontent.com/-AtudKviVwSc/AAAAAAAAAAI/AAAAAAAAAAA/4OARiZKOevE/c-rp-mo-br100/photo.jpg','17898197009688164559',5650),('AIe9_BGvUJd9etQojwpjZIMsiFneeKcGssDJvYWEJY1GpfzwD0Rtp9VqI-Ev1jVxBmRlWLmVhFUWjiBW7XdrQJSVa1ErF1P-IM2L2tztQ-ZcTXEMN7DoEGg','Everything about SignatureCare is first class. It\'s obvious from the moment you walk through the door.','2020-01-15 06:02:57.250000','2020-01-15 06:02:57.250000',5,'Bryan Haas','https://lh3.googleusercontent.com/-StUngXC77t4/AAAAAAAAAAI/AAAAAAAAAAA/KVAc5fvxkD4/c-rp-mo-br100/photo.jpg','16891069708558046635',9765),('AIe9_BGvUJd9etQojwpjZIMsiFneeN1DWMTZXcVY1j2MBMEyHzi1fSCSYBGAgdBrzeP0J_rTPXi_sxmWYvw7nqq7LwxUDvCeCggkr7aA8HAqv3OJGYUYat8','The staff was quick and friendly. They showed compassion and care when dealing with someone that doesn’t like needles.','2020-08-15 20:35:26.056000','2020-08-15 20:35:26.056000',5,'Rachelle Borgman','https://lh3.googleusercontent.com/a-/AOh14Gjk1txu15n5w-bksCvxH4AkTdpAllE79cspkZE1xA=c0x00000000-cc-rp','13486358490203335051',23012),('AIe9_BGvUJd9etQojwpjZIMsiFneeqMGJ4179J2v3G_DdNBrXxbBYXiCDIx7DDgt6MFTKLZiCvGyLULgBxz7r4I1FluwPKI6Ffp8BuSNpTIjXUBrmJiqH6k','Best ever,real good place to go on this side of town,Dr.Yabrra,nurse Jani,Tracia B,and Patty C','2019-09-13 14:18:31.902000','2019-09-13 14:18:31.902000',5,'Damon Gordon','https://lh6.googleusercontent.com/-1MOeGkebP-A/AAAAAAAAAAI/AAAAAAAAAAA/RXsvaUMtqbQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2913),('AIe9_BGvUJd9etQojwpjZIMsiFneeRI2B3fZBa_75gSk44fbShkY0fuSApwpQRa00cqUvZZZetUz0nbmZOYQ4Xm4qLp1DkZcQRposo6cijuRsU7S0DSIJCE','Always fast and very friendly','2019-12-23 01:38:40.075000','2019-12-23 01:38:40.075000',5,'Alycia Brooks','https://lh5.googleusercontent.com/-bIfEivBBtj8/AAAAAAAAAAI/AAAAAAAAAAA/AP_3GR0oux4/c-rp-mo-br100/photo.jpg','13486358490203335051',668),('AIe9_BGvUJd9etQojwpjZIMsiFneEsoK-l86MkRigq4_rNdQ2trKCgp2XylAuZJccn8o32rRkzZY1zrSfngBJdceXO99Y3X3FWSNCcHPNThsetwESnMGjtQ','Rude front desk personnel. Won’t come back. No compassion whatsoever.','2020-07-06 14:48:40.977000','2020-07-06 14:48:40.977000',1,'T M','https://lh6.googleusercontent.com/-GCMWX0VbB-s/AAAAAAAAAAI/AAAAAAAAAAA/MxXukAhkw04/c-rp-mo-br100/photo.jpg','14567670160750071148',21373),('AIe9_BGvUJd9etQojwpjZIMsiFneESTbS3Dtsw7Oil7KiYNnqXwS4p20gKgDRPLjHScQLoYJtbP1355IYYyZnem1x3V9zC2Zf_14DV36VgFw4nWIWyd8SS4','Everything went well. The appointment was scheduled for 1:30 a.m. for a COVID-19 screening. I arrived a little bit early filled and out my paperwork. While I was filling out my paperwork, they let me know I was ready to go in. I went into the facility, took my test, and they told me I need to pull around to the drive-thru. Once I pulled around, it took about 15ish minutes to get my results. The process was fast and smooth.','2020-07-21 07:11:52.140000','2020-07-21 07:11:52.140000',5,'Ashton May','https://lh5.googleusercontent.com/-67qNOF07C_M/AAAAAAAAAAI/AAAAAAAAAAA/u7OuUmCxXzg/c-rp-mo-br100/photo.jpg','14748677429039074158',21635),('AIe9_BGvUJd9etQojwpjZIMsiFneeTRpzvJebF_04KeAv0Oe-e7gU273TFZh96M1PNZQKofWbynOtVeaMj5FtVzRTAXPp9AHiI_5RzWT76P03UPS87cRlno','Fabulous service with very kind people! So helpful and no time waiting at all. Would definitely recommend this place for any emergencies!','2018-11-28 04:17:40.528000','2018-11-28 04:17:40.528000',5,'Abby Williams','https://lh3.googleusercontent.com/-UQKV1TV2SR8/AAAAAAAAAAI/AAAAAAAAAAA/-GnFjROPh0g/c-rp-mo-br100/photo.jpg','16590124370714063921',3635),('AIe9_BGvUJd9etQojwpjZIMsiFneEWjdb26vFbuukRw2-fSH9ZL-Tg1Ii0wCW3so0E6vcNuxE11zKGk6UiHZ3zGWrxrs-vqYx9x4kPgv8Xyxj6DbBN3fUEA','ALART: THEY WILL SCAM YOU. DO NOT GO HERE FOR COVID TESTING. \nThis facility is an absolute nightmare and I would not recommend going in here. I went through the drive through over a month a go. Just got tested for covid. Never even entered the facility. They only did the swap test. I recieved a bill from my insurance for over $2,000. THEY BILLED ME FOR BUNCH OF EXTRA THINGS THAT I WAS NEVER TESTED FOR. \nNow, i have to chase down people on my insurance and the billing departments to get this resolved. DO YOURSELF A FAVOR AND GO ANYWHERE ELSE.\n\nUPDATE: exactly 2 months later and this issue still have not been resolved. No one in the facility ever returns my call. The email the \"owner left in response to my initial complaint was a generic email with un auto-response.','2020-08-13 01:31:59.934000','2020-08-13 01:31:59.934000',1,'n a','https://lh3.googleusercontent.com/-_o6mhbibwi0/AAAAAAAAAAI/AAAAAAAAASw/AMZuucmZ3C-iQxuv-0hqbwTccnEu1zJTeg/c0x00000000-cc-rp-ba2/photo.jpg','14567670160750071148',21858),('AIe9_BGvUJd9etQojwpjZIMsiFneEzZh23mQG5b7mRmcvcv5vTuAZFkSh0P5MPP5YE5b4sFUFqKfHDHhQ1zsfRrV1AvZ85ADTxqakP_tw9P_9ml0qqJHTng','Dr Hanna Tran was the best she helped me and made sure I got exactly what I needed and the rad tech Marcus made sure my cat scan process was smooth and the nurse Alvean made sure I was perfect before I left I’d give a million stars if I could😋','2019-04-30 14:53:00.893000','2019-04-30 14:53:00.893000',5,'Cynthia Ball','https://lh4.googleusercontent.com/-ERJYDJXhNt4/AAAAAAAAAAI/AAAAAAAAAAA/1KHuP1c-FYk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFneF7pJiRjaHEHnStNkTWJh5PCX8IbFg_npxnITIRv8JA9d3_CcXlm6dXrymSTRXM2pL-LdAvuWXX0ZtquwZxOQzgD4Nu4','Wanted to thank eveyone from the front desk staff to the Tech & Nurses & Doctor that where on call the day I decided to utilize A Urgent Care.\nhad a good experience highly recomended to family & friends','2018-08-22 19:45:25.066000','2018-08-22 19:45:25.066000',5,'ANA ESQUIVEL','https://lh6.googleusercontent.com/-YKaiQZtZB9w/AAAAAAAAAAI/AAAAAAAAAAA/wL3JXwCqHMc/c-rp-mo-br100/photo.jpg','14904078213800803294',2223),('AIe9_BGvUJd9etQojwpjZIMsiFneF88lcJRVy2TridG3KwgCpmN7kr3H1rJNw8vYqiv5dYviJ6seNaiJ5Y1xY4U5KqYkYpGnJvZ8wYYIidor-wKqA0fqXaU','Today I was helped by Kimberly at the front desk, Brad was my nurse, and my radiologist was JR. THESE ARE SOME OF THE KINDEST AND MOST HELPFUL PEOPLE I\'VE EVER MET. I was helped right away and felt incredibly welcomed and cared for the whole time. I had one of the most enjoyable and helpful experiences here, definitely recommend!!','2017-04-19 17:45:41.331000','2017-04-19 17:45:41.331000',5,'Breanna Collins','https://lh6.googleusercontent.com/-ccj_NO_TrDw/AAAAAAAAAAI/AAAAAAAAAAA/tTKlIqaOxQg/c-rp-mo-br100/photo.jpg','16590124370714063921',4006),('AIe9_BGvUJd9etQojwpjZIMsiFnef9M9VF6jsLrVgUUsV5642CE1YBLdeBDNyecXVOdhlDmK4sHzywLG31yctKixU0Q6QEsUBjLgLCPk9VDVyYI17vGJWYA','I had a great experience!! I was taking care of by Dr. Mauldin, RN Bretnie B., Er Tech Patrick S., Rad Tech Morgan S., Reg Lorena T. and Amanda C.. I always enjoy being seen at SignatureCare Emergency Center in College Station.','2020-07-29 22:12:05.933000','2020-07-29 22:12:05.933000',5,'Katie Howell','https://lh4.googleusercontent.com/-Edg_hDAej6E/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn2xrfVis4AHSF-QhEQBQ_RB7XkrA/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22002),('AIe9_BGvUJd9etQojwpjZIMsiFnefegIfJohcWifOsZrKVLC3OfDCEvoA82Db0Ca89tQms6GSzS3UYKSu1QUM_gxbTzRYMIRKM0xTFlhtbNAfrzUxHG0dR4','Very welcoming and nurturing.','2019-02-22 03:48:02.085000','2019-02-22 03:48:02.085000',5,'Marianna Lassen','https://lh6.googleusercontent.com/-2L5FeA1TtLs/AAAAAAAAAAI/AAAAAAAAAAA/jL6FevMZG_c/c-rp-mo-br100/photo.jpg','8918455867446117794',9173),('AIe9_BGvUJd9etQojwpjZIMsiFneFfYz0LyhEpdBPN9JfrSsFc-uhql4sfrFiFC7FcKWpw-kCiVBTLCLyw3M8a3DdKKW9EHuD29fFnWayWcnLvAXeI9ZQAQ','Since the entrance everybody treated us very nice, the front desk lady was waiting for us with a wheel chair, nurses and dr were very nice specially Aaron Ortega.','2020-02-29 17:50:02.786000','2020-02-29 17:50:02.786000',5,'Aileen Hernandez','https://lh5.googleusercontent.com/-RmdSdXF2om4/AAAAAAAAAAI/AAAAAAAAAAA/Gmvx7vWpOAQ/c-rp-mo-br100/photo.jpg','13486358490203335051',13406),('AIe9_BGvUJd9etQojwpjZIMsiFneFHQtQy014AYFso_rfUndWS329goFZYb9DIhVzhfiQxgw6evX5nt9Yb9xR3TSfQaY9wZcziMNld6nDxUcGnY6f7UnC10','Brought in my grandson and Dr. Boester, Marcus B, Erika J, and Jocelyn A were great made him feel very comfortable! Thank you for the best ER service','2019-09-30 21:28:31.402000','2019-09-30 21:28:31.402000',5,'Apolinar Astudillo','https://lh5.googleusercontent.com/-y4nh2RMaaDU/AAAAAAAAAAI/AAAAAAAAAAA/w3Qj_l4EHBA/c-rp-mo-br100/photo.jpg','16389487648212004696',2872),('AIe9_BGvUJd9etQojwpjZIMsiFneFMihP_EUxF6Viy39np9bQoA_r78a89IPBMkNtoFkSmJxv1RnZ8jrhU4Qu2C_MPg14lh6RB4JdZWkaoEZHpUsf81csso','The best experience I\'ve ever had with an emergency care center. We went in over the weekend with my finance showing signs of a stroke. We were both very scared. They had us in a room and him in a CT scan within 10 minutes. They ruled out a stroke and took excellent care of him. I can\'t say enough about the communication from the doctor, the attention from the nursing staff and the overall experience. Thank you thank you thank you for turning a horrible experience into a good one. ','2013-10-25 01:57:58.506000','2013-10-25 01:57:58.506000',5,'Coryne Rich Matthews','https://lh5.googleusercontent.com/-ASMhSsi7CEI/AAAAAAAAAAI/AAAAAAAAAAA/DhlslB94SUM/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8945),('AIe9_BGvUJd9etQojwpjZIMsiFnefOOjnJ5J4KcVIoYxXROA37t3mg0QB1UguqJNtM2XP8KGbRYKkAnZpM_wcBvLlMtPuNZMoPyw2yo3s7wXrngYsmQ1Lug','Brayan D, Nicole G, & Christine M. Where very helpful and kind and great stuff','2020-02-19 01:51:32.194000','2020-02-19 01:51:32.194000',5,'Mayraaa Elii','https://lh6.googleusercontent.com/-xLjwBNewRsI/AAAAAAAAAAI/AAAAAAAAAAA/zM0jwUS31iY/c-rp-mo-br100/photo.jpg','14567670160750071148',13519),('AIe9_BGvUJd9etQojwpjZIMsiFneFRHOr1aPqUQZHYUH7CngXXMfFnWeEFaLKJTMQX3A9TRZJizmq9-YnDE0rhNljAFmmDT1j-ER_tu3vRI_qTsgq3n7csM','Was a womderful experience . Everything I needed was taken care of .most respectful staff. Thankyou I will be back and recommend this place when needed for sure ','2017-05-24 22:12:19.437000','2017-05-24 22:12:19.437000',5,'Sandy Cruz cortez','https://lh5.googleusercontent.com/-VQosEq0AS6Q/AAAAAAAAAAI/AAAAAAAAAAA/5Bx22B75uVE/c-rp-mo-br100/photo.jpg','14567670160750071148',1821),('AIe9_BGvUJd9etQojwpjZIMsiFneFsGQseGsz_Mw57Jgi-gjmRzR9Eru-3Jr4CnX3Z4RjaDLHy6irO8Buj48CmSBnZA9jt-BWbT5hoqTtV-K0wkG8OMV7Tc','The staff was excellent! Sarah, Fatima, Daniel, Tanishia & Dr. Patel. This was our first time here and they welcomed us with open arms. Will definitely recommend this facility. Love the staff','2019-11-27 07:07:58.604000','2019-11-27 07:07:58.604000',5,'Christina Vasquez','https://lh3.googleusercontent.com/-QiZB9IyCJ08/AAAAAAAAAAI/AAAAAAAAAAA/c3QeOBi9bkg/c-rp-mo-br100/photo.jpg','17898197009688164559',5399),('AIe9_BGvUJd9etQojwpjZIMsiFneFVjyfJs2kvy9qCn5IfRvqxLv4STJXlif9Ddjlf3_ujKs4Wjvu1whpldHQEiEfwkXyQ9JWhwAr4nWb7mpwf2V6JOLdoY','Great experience','2019-04-05 15:31:50.634000','2019-04-05 15:31:50.634000',5,'Monica Fam','https://lh6.googleusercontent.com/-KntpDZSLCk4/AAAAAAAAAAI/AAAAAAAAAAA/z-zZM8IfgW8/c-rp-mo-br100/photo.jpg','17898197009688164559',5779),('AIe9_BGvUJd9etQojwpjZIMsiFnefz4VPcpdBo_sW3XYvnOWsWo-eEctanngMOEghV5Nl4IDt9zk4Br6Uj7Z_544KsVkfr1AwIOVDRzajvq977-H3oDLrdo','I had a great experience at Signature Care off Highway 6! The staff was very knowledgeable, understanding of my symptoms, and super helpful and kind. I would recommend this emergency care facility to anyone and everyone! I was in and out in a little bit over an hour, and felt better than I did when I went in! \nThank you to the front desk, Ashley, for her professional and sweet presence. To the nurse, kristina, for making me feel comfortable. To the radiologist, Quyen, for making me laugh a little while testing me for strep and the flu. And to the doctor, Dr. \nPetter Vaagenes, for understanding all my symptoms, making the pain disburse a little more, and correctly diagnosing me!\nThank you all!','2019-09-25 13:54:33.508000','2019-09-25 13:54:33.508000',5,'Laura Walker','https://lh3.googleusercontent.com/-qLEpUR-xuLs/AAAAAAAAAAI/AAAAAAAAAAA/mGW2vZ7s2CQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4596),('AIe9_BGvUJd9etQojwpjZIMsiFneg_mrZxGPtsBWM2bwdL2qfUVFKrhKs9GTji4pM8X5SwyV-hVeylzLQDVouiz9-FGtqNkv-Yr2Mj3-lfqxXHmvrUo6ENg','My little brother got taken care of as soon as he walked through the doors. Great care and friendly staff.','2019-04-29 00:53:40.967000','2019-04-29 00:53:40.967000',5,'Tamra Holmes','https://lh3.googleusercontent.com/-4M4FR0gopHM/AAAAAAAAAAI/AAAAAAAAAAA/qW7BxlR54_g/c-rp-mo-br100/photo.jpg','8626688543755174284',8501),('AIe9_BGvUJd9etQojwpjZIMsiFneG4xWRynLUwOTfHzPeT8LgDU9KiXNsGdJHHeVOTKPwazoneJk2B46bd7AxnGIfUEzep43ZvNm6nSb0upzo9kCj4dHTsw','Awesome people','2020-07-16 17:31:43.009000','2020-07-16 17:31:43.009000',5,'Lily Zavala','https://lh4.googleusercontent.com/-H7CPqhT86gU/AAAAAAAAAAI/AAAAAAAAAAA/Yg3SW03DjF4/c-rp-mo-br100/photo.jpg','6521947413723274945',22891),('AIe9_BGvUJd9etQojwpjZIMsiFneG4ZfVroZvIkA1lM4B6k9prVDBJG_bgRRPpZLuMbcCcw-YJrLZWNzgms_T9QxWh9dUqnLr7wX6mLobVDOYuLvmZJCqvw','I highly recommend coming to SignatureCare Emergency center! There was no wait and I came in with a high fever and was taken care of right away. My nurse was super helpful, he offered me a warm blanket and set up the TV! The woman at the front desk was incredibly nice. I had called before going in and she sent me the location to help me get there in a timely fashion. My doctor was super helpful as well. I definitely would come here again for any future illness.','2017-01-31 15:01:23.895000','2017-01-31 15:01:23.895000',5,'kailey butler','https://lh5.googleusercontent.com/-iFLePZnNmMA/AAAAAAAAAAI/AAAAAAAAAAA/zgpnjnNodh8/c-rp-mo-br100/photo.jpg','16590124370714063921',4073),('AIe9_BGvUJd9etQojwpjZIMsiFneGbk7laMwOR5d0pS4y1ynTI0ew0m60j5WjdDAvGDouZhTDESXrF-VcILSJOwjZdRwrY5r5ZCxCB0wqyOZnYbx_3jG1y0','Very professional clean and quick','2020-07-03 16:51:50.398000','2020-07-03 16:51:50.398000',5,'Kanisha Evans','https://lh4.googleusercontent.com/-4PbinNnc4h4/AAAAAAAAAAI/AAAAAAAAAAA/ZyuR90vKFBQ/c-rp-mo-br100/photo.jpg','14567670160750071148',21377),('AIe9_BGvUJd9etQojwpjZIMsiFnegc5ph207eSpsEukmk1aIaL5DRxJEnnoe0sNpGSSc9ilTZyZMdDE6JHqGC33_KD9iEpIoiO4wNkqmK6Wm7YdfLCFZZm4','Excellent, friendly service. Sarah took great care of us.','2019-07-29 13:34:03.173000','2019-07-29 13:34:03.173000',5,'Alexandra Ferretti','https://lh4.googleusercontent.com/-d3E-cfX5h0U/AAAAAAAAAAI/AAAAAAAAAAA/N4Tzq7hz4Mo/c-rp-mo-br100/photo.jpg','17898197009688164559',5618),('AIe9_BGvUJd9etQojwpjZIMsiFnegD02VxWb7s53tW8s4y98tDrMYNTwC2j5Wwwl7OeWZdPf7JDDvrYHshPjt4C3lL8PWMW15y52AfBfQytNmxnUjzreAaY','Excellent service Dr.Sovman was patient,friendly,and explain everything in details. Amy greet me well and was very nice,and the nurse Agnes was very nice and helpful.','2019-06-15 23:27:24.825000','2019-06-15 23:27:24.825000',5,'Alejandro Aranda','https://lh3.googleusercontent.com/-iIJnoeOAyck/AAAAAAAAAAI/AAAAAAAAAAA/GzOWGBRbwik/c-rp-mo-br100/photo.jpg','3511292162159714121',7304),('AIe9_BGvUJd9etQojwpjZIMsiFneGDmRKljOWcAgE4Fz8FUVm1rzInC8j5osfPmBYVCmfLzISBmhpBW7JtyK1nctd-0h59OomcdRXYD3NghSdWfAaCmahgs','Today I visited the heights location erica was very helpful','2020-01-06 00:31:01.197000','2020-01-06 00:31:01.197000',5,'Red Peterson','https://lh4.googleusercontent.com/-oTE4f80hQ6A/AAAAAAAAAAI/AAAAAAAAAAA/esvKaSmUcfE/c-rp-mo-br100/photo.jpg','14567670160750071148',1145),('AIe9_BGvUJd9etQojwpjZIMsiFnegdzyvH67pbXofO3O3t6nUEmZVM73jAxZxgpFcdFcBPwqEPz_h0ns9CiF4zWs3PxGoAr8PH4x_efHXwWKtSdywpJuXKc','Very good experience, Dr. Sylvester was very nice to talk with and give good advice. The nurse Karen and Tatiana welcomed me warm!','2018-06-19 02:59:18.655000','2018-06-19 02:59:18.655000',5,'Animator 54','https://lh4.googleusercontent.com/-ABbe8q-Lf4g/AAAAAAAAAAI/AAAAAAAAAAA/emoJ3Y79-9Q/c-rp-mo-br100/photo.jpg','12541597562633926366',643),('AIe9_BGvUJd9etQojwpjZIMsiFneGIg2u8bqQWqKthTn27bn_y8KZtLGzJ8DK_z3JxJccA-dQv2tgIX8BcO-C76lkynzy_Rex1lZnSnd1uuUG5KTvciiTec',NULL,'2019-09-17 21:42:18.928000','2019-09-17 21:42:18.928000',5,'Alynna Rodriguez','https://lh6.googleusercontent.com/--fBosAFZYzk/AAAAAAAAAAI/AAAAAAAAAAA/QLcyXWW4S7E/c-rp-mo-br100/photo.jpg','6521947413723274945',8140),('AIe9_BGvUJd9etQojwpjZIMsiFnegjW5HpmQ34ZJZZhrOxdbF6Q0XCPK3roXtXBqt_06fmLmC94CahMLXk_R6IG_qbPYSOt4HADqdLV48BW7iMY7-bB4hTM','Maya the receptionist was really great we were in and out!!!!','2019-12-31 21:42:02.517000','2019-12-31 21:42:02.517000',5,'Brandey Dale','https://lh4.googleusercontent.com/-qpbLnnrqlEA/AAAAAAAAAAI/AAAAAAAAAAA/fJOZbtWhtv8/c-rp-mo-br100/photo.jpg','12541597562633926366',273),('AIe9_BGvUJd9etQojwpjZIMsiFneGmGqDF9qU2HH4ji20HpXYGcWAO1uc0c6bonqAbkMe-TXprcmWdWeJGNSZYwe6F4709V0i56KgTDIw9kiatqsLU4NPIw','They got me into a doctor quick.','2017-10-11 19:01:46.020000','2017-10-11 19:01:46.020000',5,'Taylor Hill','https://lh3.googleusercontent.com/-YQ9ow7Cv3XE/AAAAAAAAAAI/AAAAAAAAAAA/mfFtWEBJ52g/c-rp-mo-br100/photo.jpg','16590124370714063921',3925),('AIe9_BGvUJd9etQojwpjZIMsiFneGOlCq2y9nU2zGRSpJQK47FtRVmtO1qe3DmMHSS8PBPrZ2QXLxv8vH2Z-rywKdJEX2nSx9USFUjsKaJC6qf0zGBFBoeg','Great group of people here. They were very professional and friendly at the same time. Took the time to explain everything, and made sure I understood it. I was in and out pretty quick.','2020-07-23 13:40:10.811000','2020-07-23 13:40:10.811000',5,'david zamora','https://lh6.googleusercontent.com/-ibD8lxhYOrw/AAAAAAAAAAI/AAAAAAAAAAA/jndcqdrIW88/c-rp-mo-br100/photo.jpg','2077061009497551125',22854),('AIe9_BGvUJd9etQojwpjZIMsiFnegq9vpyGeyI5F3JRzebHefNl3emrQBsJAEk11obXSVK-D_mq3NRUT1mpq4gpDOB16XoD9P-EcoV9dtjtGfKW9op4GNTE','We were taken care of as soon as we got there. A very well kept facility as well and friendly staff. I do recommend this place for any of your emergencies!','2016-09-12 13:24:33.560000','2016-09-12 13:24:33.560000',5,'Erica Serpas','https://lh5.googleusercontent.com/-HL_dNba1SOo/AAAAAAAAAAI/AAAAAAAAAAA/wsrmNEhwzVo/c-rp-mo-br100/photo.jpg','17394740196501090048',5202),('AIe9_BGvUJd9etQojwpjZIMsiFnegqVBNUz35mFlHUgwHDwVNbmVkehTOh38wh78DKoTVMHIIt-UdWBf4pK7VP3D3k7MhdSdXz69aGSH0NzTsR9sRaA7rXY','Everyone here was so kind and understanding from the receptionist, to the nurse, and the doctor was very informative and nice and I will definitely be back if I have any further issues.','2020-07-22 17:31:16.906000','2020-07-22 17:31:16.906000',5,'Alexis Hurta','https://lh3.googleusercontent.com/a-/AOh14GiezaD4UtMOczq4s5M4xgzmCc5MJ2p1b2S8ee9qhw=c0x00000000-cc-rp','17898197009688164559',22094),('AIe9_BGvUJd9etQojwpjZIMsiFneGtPU6W01PtedzDWkhkqQPiyO-SWMSpQHo2zwBK4ln3HwcBsQmxWgp06LGpuuUE_-IrPGboOy7e1pjcBoi0kjHB6UnGk','Omg first off I tried to call several different emergency care centers and all I got was rude people on the phone I called signature care emergency at Montrose the lady was so nice she even text me a Google link to the maps very very friendly the whole staff was friendly they\'re nice they\'re caring and they try to help you with your problem anything that they can do to help you they will do it and they get it done. I highly recommend this place because they truly care and it\'s clean and the staff the staff staff staff I give them 10 stars','2016-05-09 19:16:24.904000','2016-05-09 19:16:24.904000',5,'Tamara Beltran','https://lh3.googleusercontent.com/-eZ-NIlaU2UU/AAAAAAAAAAI/AAAAAAAAAAA/8hH6jROz_2I/c-rp-mo-br100/photo.jpg','3511292162159714121',8004),('AIe9_BGvUJd9etQojwpjZIMsiFneGv7foenKvYpXG3lL0AAqVxVR4rN-F43Qw0NEJx3BcM6ZzxbPUbLE9qvsgIxzdcGpkLPCGODH4ypEqO-aQ5rVfIiZqqI','Dr. Dang , Sarra, Holly, Christian and Carly are amazing. Recommend this ER to anyone.. Fast and friendly. Thanks guys','2020-03-01 07:02:52.408000','2020-03-01 07:02:52.408000',5,'Wesley Hernandez','https://lh4.googleusercontent.com/-NRipjwc6VLM/AAAAAAAAAAI/AAAAAAAAAAA/vpPLYKEHsOU/c-rp-mo-br100/photo.jpg','12541597562633926366',13323),('AIe9_BGvUJd9etQojwpjZIMsiFneGvPWm0cSRfWSMDRWR0dYzAc84P__hvvDzz6ksInchU896SZ5dQGioX-4uCszJbbDON37rvURFGM50_8ngTkZZ73kqDs','Thank you to these amazing people for taking care of us','2019-03-23 17:10:51.971000','2019-03-23 17:10:51.971000',5,'Shane St Clair','https://lh5.googleusercontent.com/-erhTPUKUCzA/AAAAAAAAAAI/AAAAAAAAAAA/-n-3ypObHmE/c-rp-mo-br100/photo.jpg','16590124370714063921',3490),('AIe9_BGvUJd9etQojwpjZIMsiFneGWhudoOoZIbNKPOWwcG2AZDX1Lo_EbFCEu90Ndw_hQBmhLFxyVaLXUkC0xYpdyar2T3fROgzyjUl0JZXyHi6tneQ_vQ','Couldn\'t have asked for a better experience.','2020-03-09 01:24:58.573000','2020-03-09 01:24:58.573000',5,'Aaron Hausher','https://lh4.googleusercontent.com/-EcGwaynEjKY/AAAAAAAAAAI/AAAAAAAAAAA/6QW4R4D6uHg/c-rp-mo-br100/photo.jpg','14567670160750071148',20950),('AIe9_BGvUJd9etQojwpjZIMsiFneGXUWn1xq1aWsMHm9j-DGJyAAuywWQN_2TYo_ldYgrwudI2I-2DuBuOdNYtBUzSu2rdPy8YRlBo5PDlu19BX9MYj8J8A','Excellent care by Dr. Paul & the staff at Signature. I was taken in very quickly & everyone I encountered was friendly& professional. Susie, Ashley K & Jennifer D took good care of me, thank you!','2019-04-26 21:40:18.864000','2019-04-26 21:40:18.864000',5,'Maggie McClain','https://lh6.googleusercontent.com/-K5V5CeWllMk/AAAAAAAAAAI/AAAAAAAAAAA/n5_ON5y4gdI/c-rp-mo-ba3-br100/photo.jpg','8626688543755174284',8502),('AIe9_BGvUJd9etQojwpjZIMsiFneh2oug73uFSsvgVgJmlzKPoyzsK1fQDt8ObxdzejI0F0bX1KN0PMogqR8oKddghyIWLb6WAAVtMsreKNBG7D92WhADPo','Very nice and courtesy. Handled my testing quickly and everyone was on the same page. Good Job','2020-07-03 12:50:34.060000','2020-07-03 12:50:34.060000',5,'Robert Presta','https://lh3.googleusercontent.com/a-/AOh14Gj4qZupqR2s3_j8Z2rA4nLRC-r18Z64_ooNl19Cvw=c0x00000000-cc-rp','17394740196501090048',21425),('AIe9_BGvUJd9etQojwpjZIMsiFneH7VH7aD-N1uETEp55MGbAFdyvaUZNZ5SLZXm7E84Ig6beNn0YVCU26zEzKJW1xT6YCDbtdVlG91-gMJ8k4fVpy6ymVg','Fast & friendly experience. Meredith, Alvean, Jordan, Tricia & Dr. Nguyen were all very kind, and work well as a team.','2020-03-04 19:18:57.946000','2020-03-04 19:18:57.946000',5,'Alicia','https://lh4.googleusercontent.com/-24Y2imkgq3g/AAAAAAAAAAI/AAAAAAAAAAA/uvBNz1ai24E/c-rp-mo-br100/photo.jpg','16389487648212004696',13734),('AIe9_BGvUJd9etQojwpjZIMsiFneh8ZCZiZHrois3iGzwpl-ZR3GEPwIZ4doz8LMtOt_RbIMBibhan9lavjWWKv4K8-ZmhIQMIy9Ke1sZDrorErTLcC_cQ4','I love this place Amy was so nice and helped me with the registration. Jani and Dr. Iheme let me know exactly what was wrong again i love this place.','2019-07-19 22:20:39.891000','2019-07-19 22:20:39.891000',5,'Damien Crayton','https://lh4.googleusercontent.com/-rKBr_jsri3o/AAAAAAAAAAI/AAAAAAAAAAA/RLFxasP31fw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFneHaNRb05yAbGaLshbVNFHpHm9tqiXxcVlvHJVUS8MDks3Dj3rGcFGCCSlhQYENiY1OTSIDXQNdJRoZJMtx5V_24XKskI','Tory rocks!','2017-02-03 03:07:08.957000','2017-02-03 03:07:08.957000',5,'Charlie Aguero','https://lh6.googleusercontent.com/-eJ56DEN8cP8/AAAAAAAAAAI/AAAAAAAAAAA/Am0y6e9ZYmY/c-rp-mo-br100/photo.jpg','3511292162159714121',7889),('AIe9_BGvUJd9etQojwpjZIMsiFneHBL7w-08T4FOuzL81TGYDk1_b_EMIPqx1QUUhz_FZlAUyqOTQNni7HFflENvakHUoFZXmJHWH2u_fw_45z-p-VJS9Cg','Took my mom here for a visit and the care was excellent. John Bell is such an amazing nurse! The tech Brooke was amazing as well! The check in process was easy and fast. McKenna did a great job and got her back quickly.','2020-02-10 14:52:32.093000','2020-02-10 14:52:32.093000',5,'Fair Shae Guest','https://lh6.googleusercontent.com/-y1kyBpc5HDQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclh1ejSn1KIcfIELFxKUTlYSFmDIg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14616),('AIe9_BGvUJd9etQojwpjZIMsiFneHC64AYajy-lT4JA02SBKJcZTQZ79R7YguT_BjyHPNjZggvMUttq8ad6LbylLtuWKXEnBnxsVJ6xFdVLM64S_Gd5KqZI','will require mind anyone very great service Patel great Sarah Fatima great Elaine Tanisha great','2019-11-22 00:45:36.803000','2019-11-22 00:45:36.803000',5,'Ayesha Warner','https://lh6.googleusercontent.com/-tEdUg0y3h-8/AAAAAAAAAAI/AAAAAAAAAAA/w8nYW9RcAo4/c-rp-mo-br100/photo.jpg','17898197009688164559',5408),('AIe9_BGvUJd9etQojwpjZIMsiFnehcwYUFcAmhkOfpj5KSaotGV9hZsrh4VR7GkDDpg2MYQQ-GYzK9gGGpAWuZH4jjcD-ouSUM2CSsaH-QYTxXxLJ6fpU_s',NULL,'2019-01-09 03:26:32.336000','2019-01-09 03:26:32.336000',5,'Morgan D','https://lh3.googleusercontent.com/-dCmR95L4FC0/AAAAAAAAAAI/AAAAAAAAAAA/_f15Q2hD7JM/c-rp-mo-br100/photo.jpg','14567670160750071148',1427),('AIe9_BGvUJd9etQojwpjZIMsiFneHE6sbMRtYb-WbbrXCJ2ZwqGgfj_HYctwVrLzuBRuFoiaZuLzZXBJEgtDF5B-c3IHeytJifo0uLOgDfNoNwQQuwc9_Uk','It was the best experience i have ever had .The lady at the front desk Malissa gave me a warm welcome .I was dizzy and she immediately called for a wheelchair before i asked.In .The nurse came followed by ER Technician,the Doctor Wang,and the Rad Technician Laura every one did their part to make me feel better.My blood pressure was very high but by the time i was discharged it came normal.I highly recommend this place to the public.Very Clean.EXCELLENT SERVICE.!','2019-08-15 17:26:08.562000','2019-08-15 17:26:08.562000',5,'Marthal Nyame','https://lh4.googleusercontent.com/-T_QpjaVDOZ8/AAAAAAAAAAI/AAAAAAAAAAA/vYO5gzHJfKw/c-rp-mo-br100/photo.jpg','12541597562633926366',458),('AIe9_BGvUJd9etQojwpjZIMsiFnehfC5T_OFOA3Mc0NxAEo75RtZyjHQXclxp29738MGmly5SMy0tlDGOm8Q70XWbXu88S0tqn1eKWGMrKFpDKieLNhrIGE',NULL,'2019-02-10 04:59:22.025000','2019-02-10 04:59:22.025000',5,'Dana Campbell','https://lh4.googleusercontent.com/-p1dpdGBWylY/AAAAAAAAAAI/AAAAAAAAAAA/5toAskG3fh8/c-rp-mo-br100/photo.jpg','12541597562633926366',552),('AIe9_BGvUJd9etQojwpjZIMsiFnehG5jc2WvMkDJo4BB4ZuJwbYevoNws7pr5MhNL4zBS_2o-Apys2xbvsiFmHmnNl60FJquk5aJLv-iA2zro5Bj2bf3oJY',NULL,'2019-04-04 12:23:30.703000','2019-04-04 12:23:30.703000',5,'EDU ROSALES','https://lh3.googleusercontent.com/-8PmlKnFNUts/AAAAAAAAAAI/AAAAAAAAAAA/6aD02P8YIWk/c-rp-mo-br100/photo.jpg','8918455867446117794',9148),('AIe9_BGvUJd9etQojwpjZIMsiFneHgVNb9rqJY_TtmR-zILasZ2LnuwlngGduK7q5TpxvoEVRExR4ffIPoqs9ZQ9Sn8ifmwvyhfchunCUZMBWQX7s7RWpb0','My boyfriend had been in an accident and needed to see a doctor to get cleared for work. The woman I spoke with on the phone was very helpful and assured me he would be taken care of and within reasonable financial means. They matched what he had been quoted at an urgent care and he said the service and doctor was one of the best he ever been to. I was worried to send him to an emergency center, but was very happy to hear it was well worth the money and he was treated well. Thanks for the help!','2016-06-13 20:18:15.013000','2016-06-13 20:18:15.013000',5,'Lorraine R','https://lh3.googleusercontent.com/-Bkk1asuF8xw/AAAAAAAAAAI/AAAAAAAAAAA/1SwU4H4us2Q/c-rp-mo-br100/photo.jpg','14567670160750071148',2018),('AIe9_BGvUJd9etQojwpjZIMsiFneHJlveEPPQzUSutVWznPWt4a8kC0P9wiNasXc72zMlCmxW27EwAK7H2LN3bW6QIdgFIARn6SmwknPjsloE0u6QXTqHcw','I was treated like a Queen. The doctors and nurses are the Bestest!!!\nIf I ever need to go back, I surely will. I recommend the hospital to everyone. When I left I had peace of mind knowing that the staff really cared for me. Love.Love Love the services.','2016-02-24 17:45:27.404000','2016-02-24 17:45:27.404000',5,'Catina Jones','https://lh4.googleusercontent.com/-IYdf-WFzRaQ/AAAAAAAAAAI/AAAAAAAAAAA/sP6c2-0nkhk/c-rp-mo-br100/photo.jpg','17394740196501090048',5278),('AIe9_BGvUJd9etQojwpjZIMsiFneHLMdvI_w2BTo-vQTmPAxQNrxxfPVSZfgaZd-bTdlaL69dypymZOev0O_56N2dLAh_7xDx4HMU48vXoOjhK5797QhaYQ','I prefer this ER over any other ER here. I just recently moved here, and I suffer with hemiplegic migraines, and Lupus. The doctor that I seen today, DR. Patel, knew exactly how to get me back comfortable. I loved how everyone from the front desk, to radiology, to my doctor took care of me. Fast and effectively. Not to mention they treated me like family. Love this place and will continue going!!\n\n2/18/2019*** Another successful visit! This ER makes me feel so welcome. Everytime I come they treat me very well and diagnose what’s going on with me immediately! There is no wait time EVER, bedside manner is incredible, and the staff and doctors really make you feel like they care.','2019-02-18 18:28:27.437000','2019-02-18 18:28:27.437000',5,'MsWhitney7','https://lh3.googleusercontent.com/-Uqm7DhTImK0/AAAAAAAAAAI/AAAAAAAAAAA/M8I5CibUnRI/c-rp-mo-br100/photo.jpg','8918455867446117794',9176),('AIe9_BGvUJd9etQojwpjZIMsiFneHsacVLohLpS1mlhVyhSGNhVTOCbfoVsZUtV0OPR-vhel9szLkzJBawHiEjCLL_m0S7mxLPPfvD3x0GQ7OMOiZBwSsRM','No long wait time, the staff was professional and thorough, and the facility as clean and well designed. The best part was the follow up call from a nurse; this shows that SignatureCare really cares!','2018-02-06 18:38:01.126000','2018-02-06 18:38:01.126000',5,'Veril Hughes','https://lh4.googleusercontent.com/--C12uIiSpAs/AAAAAAAAAAI/AAAAAAAAAAA/B15NdEuMJ0Y/c-rp-mo-br100/photo.jpg','8918455867446117794',9293),('AIe9_BGvUJd9etQojwpjZIMsiFnehttzPgZx3m4KWPubY67xX2QG-LW5e3lHgxpQbj_ksjDv0psTEW6vJqUF_v7Tj8PappEhhHIaY-Q5GuzPusl6GgBB7mc','Quick and easy services by all the staff. Answered all my questions with no problems. Would likely return if I ever needed medical attention again.','2020-07-19 21:44:07.951000','2020-07-19 21:44:07.951000',5,'Alan Sustaita','https://lh4.googleusercontent.com/-VgB8S71pF4o/AAAAAAAAAAI/AAAAAAAAAAA/zCCV_3BPvqk/c-rp-mo-br100/photo.jpg','14748677429039074158',21691),('AIe9_BGvUJd9etQojwpjZIMsiFneHUa77h8n6XVNmPZGZ6VLNq0MEPaf1IKNIxPz94vlbGdFgingNPnGmyZ6dUP2K0xrQGJQdgo8HT-caoI7c4Iyz75Np_k','My Husband and I went for a Covid test, we had an appointment at 8 and they got us in at 8:20 which was not bad at all.The attention and service was great, the facilities were very clean, and the people amazingly nice.\nAfter taking the test half an hour later the Dr. came out to let us know that our result was negative and asked if we had any questions. Our experience was very good.','2020-08-14 23:35:30.106000','2020-08-14 23:35:30.106000',5,'Myrna Garcia','https://lh3.googleusercontent.com/a-/AOh14GiSBXJhYS7-oYbdL7ZudwHzNcoHZfgN5Q_elWKT=c0x00000000-cc-rp','16891069708558046635',23059),('AIe9_BGvUJd9etQojwpjZIMsiFneHuNMPVJEjhRaCb_8jjTUPmPp4_t-mtCvBHpV2HhvP4gsfbVvF4KUCsF3RBtDH8f7L14rU9Ozx9cOdr2alt4tlkrgLCY',NULL,'2020-01-22 11:33:22.155000','2020-01-22 11:33:22.155000',5,'Stanleigh Tomich','https://lh5.googleusercontent.com/-pQeNerzne1s/AAAAAAAAAAI/AAAAAAAAAAA/AB-vk1syjm4/c-rp-mo-br100/photo.jpg','6521947413723274945',10313),('AIe9_BGvUJd9etQojwpjZIMsiFneHwFUBk9U_kfzkxtKzUJDIM9QdeOkEiWoT4U1--yiNFyU02UoQBQvNGKwy7ehD1os1GV7Fq9ndk76CvAmIo2eyvpEjMk','Never had an ER made me want to comeback. I would make this Dr. my PCP AND the nurse and rad tech was awesome not the mention the registration rep. This whole visit, was a weight off my shoulders because nobody likes going to ER.','2020-03-14 01:41:15.433000','2020-03-14 01:41:15.433000',5,'DarNesha Thacker','https://lh4.googleusercontent.com/-VpnuiwAHmSs/AAAAAAAAAAI/AAAAAAAAAAA/dzUXgdB0Zdw/c-rp-mo-br100/photo.jpg','8679688254631342173',21210),('AIe9_BGvUJd9etQojwpjZIMsiFneHXp4Pbo1Yu_Tm9tobaYcssujrV26ncFPC7LWGz8Lp-YV4vRGnq3J1TmOhxCnSbdEoYunVlrc79X5bZjWtgLuG5C9czA','Great place. Staff was very friendly and fast!!! Dr Patel, Nurse: Alvean, Radiology Tech Brain and the Registration clerk Jocelyn all was great!!','2019-10-23 19:14:54.918000','2019-10-23 19:14:54.918000',5,'Clifford Davis','https://lh6.googleusercontent.com/-8Rak8z0jRYc/AAAAAAAAAAI/AAAAAAAAAAA/a2WwXLqWZ3U/c-rp-mo-br100/photo.jpg','16389487648212004696',2791),('AIe9_BGvUJd9etQojwpjZIMsiFnehZRtILs4saRpNOYbai_AZ1mnonXKwAlWNLKW8Ok3G6O_sAQraZtFh3TbTDoOh-niIijeuzXf2wngmwPRwre4a-W43DY',NULL,'2017-12-06 03:44:21.640000','2017-12-06 03:44:21.640000',5,'Aminta Parker','https://lh5.googleusercontent.com/-kp_NZCmuuWc/AAAAAAAAAAI/AAAAAAAAAAA/dmp0af3Scoo/c-rp-mo-br100/photo.jpg','14904078213800803294',2304),('AIe9_BGvUJd9etQojwpjZIMsiFneiGaq8KY45IsOfdASsZC_4PZ_-Ldji18WlCS0FjLg5Uk_siGzPfrPQjEIt3X2MkXQWCc756kF-tqJ5UfcA4D1Q_e94qM','Poor customer service. When I went to the Rice Ave location, they were prompt & got me in immediately for covid-19 testing because I was experiencing symptoms. 4 days later & I’m still experiencing symptoms after a negative test result. I came to this location to get tested & was told I needed to make an appt to get tested, when initially I was told if you’re experiencing symptoms you get tested the same day. But when the Caucasian male in front of me came in without an appt, he was able to set up for testing. I would hate to be the one to pull the race card, but it’s a shame how people of color healthcare gets disregarded just because of the color of your skin.','2020-07-04 18:35:34.947000','2020-07-04 18:35:34.947000',1,'Summer Edwards','https://lh3.googleusercontent.com/-yxcSpKhYIvw/AAAAAAAAAAI/AAAAAAAAAAA/awmAh-2XMuw/c-rp-mo-br100/photo.jpg','8918455867446117794',21498),('AIe9_BGvUJd9etQojwpjZIMsiFneii-nvBQGX4QKPiUnQiBSY72LDnJeLp0s03F7Z213l-558hBmLJu8Hz727VRBckLFlJ8a4ytblYmjBPXCxVcHM8lFvFg','Great staff no wait Chris did a great job!!!!','2020-01-10 22:57:02.077000','2020-01-10 22:57:02.077000',5,'Juan Colejio','https://lh6.googleusercontent.com/-LkA3slRXpBs/AAAAAAAAAAI/AAAAAAAAAAA/VGZh3sDsSKg/c-rp-mo-br100/photo.jpg','14567670160750071148',9474),('AIe9_BGvUJd9etQojwpjZIMsiFneiioukHdJeiX3njfOuWb5UeGFWl7w0aQQh2iQTTFcETTfLbJ8O3yd6PEiAXrWGPPFA-sUrErbQ9TUxYjekBQtWxyQ6KU','Quickly seen, friendly service','2020-01-03 01:30:38.260000','2020-01-03 01:30:38.260000',5,'C Baker','https://lh5.googleusercontent.com/-sKVzI9meVnk/AAAAAAAAAAI/AAAAAAAAAAA/nk5Iyyctv7k/c-rp-mo-br100/photo.jpg','2694018788013845459',14279),('AIe9_BGvUJd9etQojwpjZIMsiFneIKwZdDtmLenAYtqMLs4T1lZ9n1pDj7XUjWvC73q1HzuTICdFMt2Q_11BfMBtU_ZHGp9Pr8YOm4fs1EjHezxHFOcBLvQ','This place is truly a life saver and a great addition to The Heights. The staff here is extremely caring. I\'m very grateful for the amazing medical staff that took care of me when I needed it. You all treated me like family. Thank you Nicole, Melissa, Dr. Kotey, Dr. Braun, John, Mike, and Shino. SignatrueCare is top notch and I couldn\'t be more happy that this place is here. ','2016-05-10 13:06:01.888000','2016-05-10 13:06:01.888000',5,'Veronica Petry','https://lh5.googleusercontent.com/-6WlWqwI7L9Y/AAAAAAAAAAI/AAAAAAAAAAA/pgPflYRqPwI/c-rp-mo-br100/photo.jpg','14567670160750071148',2038),('AIe9_BGvUJd9etQojwpjZIMsiFneio5_DB-mDOi2UdcERVMyJwLEeHZ4KDZNlnlGk1VK52Wh2pj5tPfC4h6SmHSDyPXEuT_LpVromw8mprGpYHOMPi2WhkI','Awesome customer service, very tentative and very concerned. Nobody wants to be sick but if you are this the place to come!! #DrVakey #Anthony_RN','2019-03-14 17:32:29.566000','2019-03-14 17:32:29.566000',5,'Marycia Moore','https://lh5.googleusercontent.com/-D6VvsFTyMUI/AAAAAAAAAAI/AAAAAAAAAAA/BD7lUOwdIe8/c-rp-mo-br100/photo.jpg','16590124370714063921',3502),('AIe9_BGvUJd9etQojwpjZIMsiFneiOnFLutxUJR0w9uCGisFKTu9P271z_pvaREhVAAHAzvv4lA1EMKAZVtOsIfA0DXWc038FdAMHJbDGMoxcdXfvoFtm2A','From the gentleman directing everything to the guy who checked my vitals, and the dr were super nice! It was 4am and all were energetic and nice! It was a great experience besides the circumstances ...','2020-07-16 12:25:34.726000','2020-07-16 12:25:34.726000',5,'Jessica Guajardo','https://lh3.googleusercontent.com/a-/AOh14GjBKEnLuUyfLPN-15XBKlU8JSw-j6G3CCpQLFSdgdo=c0x00000000-cc-rp','13486358490203335051',21851),('AIe9_BGvUJd9etQojwpjZIMsiFneiqelGxnLwfwLzc6s8XLUBpDyP9jz19pAOlWmfZKgLtaibXJT_oA4K5cW-LByO4bDjyGa4q0zJlnMUSjFBFyWx7iYNdo','Absolutely great experience from the moment we walked in the door! I had to bed by my baby with me and the doctor and staff were super sweet keeping him fed and distracted while I was taken care of. Upfront pricing and payment plans for those of us without insurance. Fast & friendly service. This is a stand alone ER, not just urget care. Don\'t hesitate to come here for any of your medical needs','2019-05-23 14:37:36.325000','2019-05-23 14:37:36.325000',5,'K Will','https://lh6.googleusercontent.com/-I2eIQmVGLiM/AAAAAAAAAAI/AAAAAAAAAAA/2AivDuEeLec/c-rp-mo-br100/photo.jpg','2694018788013845459',6147),('AIe9_BGvUJd9etQojwpjZIMsiFneISEmzIU4y45-RhZoFHnPWUrDjacsV2f7RL7hNWCxmESEY2o0ncFwAdD22b_6tqK0m9rt3GJyGAUMtH_COWUppwIDJNA','We had a very pleasant experience with the team at your facility in Texarkana. Dr. Jordan, Lucas, Sherri, and Keo were wonderful and very helpful.','2018-12-26 16:28:28.746000','2018-12-26 15:29:17.371000',5,'Julee Sharp','https://lh6.googleusercontent.com/-4f7fLhDx0Ek/AAAAAAAAAAI/AAAAAAAAAAA/YcxCW3rTukE/c-rp-mo-br100/photo.jpg','3272657195432704501',7082),('AIe9_BGvUJd9etQojwpjZIMsiFneiYUg-GbRt7Gof6zvmiPmgbDZDmMJnyGuSIVJ1bv_jkvyh42kaFWNJtqfw2VQ8ryGzc6RHrXplq9lrM-DJp5dYE3S4bU','Crystal is an amazing nurse. She went out of her way to help me feel as comfortable as possible. Hopefully I never have to come back, but if I do, it’s nice to know I can come here for great care.','2020-02-23 20:51:08.725000','2020-02-23 20:51:08.725000',5,'Heather Munday','https://lh5.googleusercontent.com/-3GW5WIg4Yws/AAAAAAAAAAI/AAAAAAAAAAA/pT50cm9i280/c-rp-mo-br100/photo.jpg','2694018788013845459',14213),('AIe9_BGvUJd9etQojwpjZIMsiFneiZxaLufDFSk3VzGiUFn3J2FGsRAvyi0YzuahMZ9-VJE3tdW48v30rpyWd_qa1Bq93UGclkGnrJKi-quaGKVQq_FDYMs','Absolutely professional, very caring and quick. Had no issues at all and the nurses and doctor were great to me. I had doctor miller and the nurses Laura and Agnes helping me. \nDef come here for minor to major','2019-01-31 18:54:46.243000','2019-01-31 18:54:46.243000',5,'CommanderMau9','https://lh6.googleusercontent.com/-j9sF7YabqFo/AAAAAAAAAAI/AAAAAAAAAAA/wwIiPc5cfw0/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7425),('AIe9_BGvUJd9etQojwpjZIMsiFneJ923AZnGMj0Jo-2bhnqIzCY0oeyBUGY59S-7mu7b4D9m6qGSXWMP1zmo5evgfwh4zYLoezSs3olHpOccEO3YBSRF-6I','Signature Care has a great staff that is very professional and prompt! The staff made my short stay as comfortable as possible.Dr. Kotey was very kind and caring. Wendy was very attentive along with Al, Emily, Down and Zineids. The hospital was very busy but stayed on top of things thanks guys!','2020-01-15 01:05:52.861000','2020-01-15 01:05:52.861000',5,'Sadie Alanis','https://lh4.googleusercontent.com/-eaQ953U6PQw/AAAAAAAAAAI/AAAAAAAAAAA/A_Ni3bXBdms/c-rp-mo-br100/photo.jpg','17394740196501090048',14049),('AIe9_BGvUJd9etQojwpjZIMsiFneJDnvjL4DCcFCzUMz9UYBTWLlPIBiExZev6IftYiPOEGrtwTBn_xxILKngWKrAFlP6vLivJ4TFTuQTc65QsoXKxEfaIk','ER tech Scott is so amazing!!! I suffer from anxiety and he was so patient and walked me through the whole process when putting in my IV & taking blood. Dr.Zheng, nurse Kristina and Laura are all very welcoming and nice as well!','2019-07-19 20:26:19.914000','2019-07-19 20:26:19.914000',5,'Jacqueline A','https://lh5.googleusercontent.com/-y7XSPJhGSrY/AAAAAAAAAAI/AAAAAAAAAAA/qlBuyOmars4/c-rp-mo-br100/photo.jpg','12541597562633926366',486),('AIe9_BGvUJd9etQojwpjZIMsiFneJECLAA1h63Qv_1-24bwuVYK6cFnXphbqqxf0yjVU2lOH-EysuNBlEAwGMZhvmgJH66OPYzCCmp7J-XXraLlVST65hdo','Kimberley at reception was so welcoming from the moment I walked in! I was offered a warm blanket by Morgan, and Brad was so great and helpful throughout my entire visit! I would 100% recommend!!','2017-04-25 15:25:05.296000','2017-04-25 15:25:05.296000',5,'Emily Hanna','https://lh6.googleusercontent.com/-FkdewOp-Hz4/AAAAAAAAAAI/AAAAAAAAAAA/4GUOGi6Qjvw/c-rp-mo-br100/photo.jpg','16590124370714063921',3998),('AIe9_BGvUJd9etQojwpjZIMsiFnejHYjZMyx23RDcSQYN2rlBRIWavDfxyYg5-8R5TRSMgp1zfcRCHA6actAanCfnqnnyIdLF-JIgGzF3HBfpK0b-lzRczE','This is my 3rd time visiting SignatureCare Emergency center and every time I have went I have had the best experience. The overall environment of this place is welcoming from the receptionist, to the nurses, to the doctors. Everyone was nice and respectful and willing to help you with whatever your situation may be. I totally recommend this place!','2016-05-10 16:07:06.634000','2016-05-10 16:07:06.634000',5,'Mychal Bass','https://lh5.googleusercontent.com/-gKed9MkvYnc/AAAAAAAAAAI/AAAAAAAAAAA/SmkY5M6s0Cs/c-rp-mo-br100/photo.jpg','3511292162159714121',8003),('AIe9_BGvUJd9etQojwpjZIMsiFnejigrUkDNh5rK7WrjJ4mMZoKATYL5eptvwyn7j_z-bWy0t5a1gKrQyne-hSQLy824C0eybutNR868XM9AH-p4dA24D0s','(Translated by Google) All the service was fast very attentive. I recommend this place. Receptionist very friendly nurse and doctor and all very nice people\n\n(Original)\nTodo el servisio fue rapido muy atentos. Recomiendo Este lugar. Receptionista muy amable enfermera y doctor y todos muy lindas gentes','2018-09-08 01:14:23.648000','2018-09-08 01:14:23.648000',5,'V V','https://lh4.googleusercontent.com/-agi-u7VQ09s/AAAAAAAAAAI/AAAAAAAAAAA/FHgy8XLLhAI/c-rp-mo-br100/photo.jpg','14567670160750071148',22494),('AIe9_BGvUJd9etQojwpjZIMsiFneJj-jej82CN6J3jEcgqQ7QNkVJwbk9DM2wvEsgBWNe8dyr3yE6oLZusnrV75yPjfGW1Hh_eNedbMsbVIxuvMYqDmaoVs','I received the best care from Dr. Mauldin, Alvean, Patricia, and Brian. This is one of the best ER centers I have been too! Will come back for future! Everyone is so kind, personable, and helpful','2020-01-25 21:05:18.157000','2020-01-25 21:05:18.157000',5,'Bracheia Thompson','https://lh5.googleusercontent.com/-YJi3v7JJhN0/AAAAAAAAAAI/AAAAAAAAAAA/DD2jsmt5Huo/c-rp-mo-br100/photo.jpg','16389487648212004696',2921),('AIe9_BGvUJd9etQojwpjZIMsiFneJMt8Y0VxeMo1Q9emL_BzQSrvvtYLiZz1TPygRAGUr3YV5iGQxpzbf18wOilTcb0XP5WkZHiZoimG5J-kSk-UHmjm7KE','Cody and Nadia were really helpful. Made a stressful time less stressful with great service.','2020-08-18 17:03:23.723000','2020-08-18 17:03:23.723000',5,'erin caldwell','https://lh5.googleusercontent.com/-jE3r_LXd95k/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclH2i3S58g0VrtDGMDUitb5K_4obQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFnejrco_-z1xN0US2L8NH3ywQ3PRMMHXiwFa3t4HCxFXgb_0iolLMvQaoaKJapgjNoHCDgA_9PvCfJMa9dpD9aVjdCCFX4','This ER was amazing!!! Rayven did a great job getting us signed in and explained all the paperwork. Anthony, RN and Kathleen were both so caring and wonderful taking care of my daughter and making sure she was comfortable. Dr Kimball was also wonder. Great bedside manor and explained everything that was going on. I highly recommend Signature Care for any of your emergency care. Definitely with the hour drive from Cameron.','2019-08-12 04:38:00.934000','2019-08-12 04:38:00.934000',5,'Wendy Hall','https://lh6.googleusercontent.com/-tuXt3590_r4/AAAAAAAAAAI/AAAAAAAAAAA/v5K4lJZhL7Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3258),('AIe9_BGvUJd9etQojwpjZIMsiFnejSqUWlFmvjf-mKmgs7Y9moY9CkJdNRdcnZ2NtQTAX2pT0vIJiZdfe6mJlwQQaaFMqQhWJGCMSBMD3Q9dzWTlvmHomDI','Amazing & fast service! The staff for tonight’s visit was super nice & caring! I was actually referred here by a friend who’s been here before & I can honestly say I’m impressed with the service . Thank you Sita, Kristina, Allison, Randy, Matt & Kramer','2020-01-21 03:06:20.672000','2020-01-21 03:06:20.672000',5,'Alexzandra Herrera','https://lh5.googleusercontent.com/-LJP_iATbtiM/AAAAAAAAAAI/AAAAAAAAAAA/d7rBjcMvekY/c-rp-mo-br100/photo.jpg','13486358490203335051',13462),('AIe9_BGvUJd9etQojwpjZIMsiFnejtFa0_q8Qic9-zmeIHc07O-rTn4q3jFBUZf8LFfGQKKM-7iP6ArA-Jx5VU67Qqv1lugyxYLeKm2wOOhrkvd_jmW6tcY','Er:Jani, Rad:Tricia, Dr:Cavazos, Jordan-tech were very great and nice had a wonderful experience.','2019-10-18 22:31:21.972000','2019-10-18 22:31:21.972000',5,'Dawnsha Dewitt','https://lh3.googleusercontent.com/-Rz07V147a3o/AAAAAAAAAAI/AAAAAAAAAAA/-88AMwVFqFM/c-rp-mo-br100/photo.jpg','16389487648212004696',2799),('AIe9_BGvUJd9etQojwpjZIMsiFneJVla1mINIjPMUIrUoY2mXz55M6ckwFCCPUKlnr16O2C5qwX-Uxs732yWYvTVyWUW-HPybQa8f7x339WcTnYVgmcJtE4','Great staff! Doctors, nurses, techs, and front desk all go above and beyond. So thankful they were there to help!','2019-04-11 21:37:00.815000','2019-04-11 21:37:00.815000',5,'Sarah Gipson','https://lh6.googleusercontent.com/-IgcdRmhgrZc/AAAAAAAAAAI/AAAAAAAAAAA/SDpS9L_7OYU/c-rp-mo-br100/photo.jpg','13486358490203335051',1040),('AIe9_BGvUJd9etQojwpjZIMsiFneJzc68suXUBPTgwWYNtr0eQ7DgH2UrjZy0dFC_Xp_U32amD0nL3SGKGOdicgj2jCYSxaje7CNeGBO86m7KU-XMnbHHpc','The experience here is much better than a traditional ER. The service is top-notch and they make sure to get to the root cause of your problems.','2020-03-13 21:23:39.053000','2020-03-13 21:23:39.053000',5,'Caitlin Somers','https://lh5.googleusercontent.com/-RlATrb3twVg/AAAAAAAAAAI/AAAAAAAAAAA/4q9l9A_fkx8/c-rp-mo-br100/photo.jpg','12541597562633926366',20906),('AIe9_BGvUJd9etQojwpjZIMsiFneK-vHtjr57UqsZi7iRTB0126y63vaP3HDBUwEt22B9BhcYgzSL1vGXLMF-0WBZIbegVTjSTWa8Kb2PikNrFJDIFOTFlQ',NULL,'2019-02-15 17:47:26.618000','2019-02-15 17:47:26.618000',5,'Jose Montanez','https://lh4.googleusercontent.com/-32i_qJ0SMVk/AAAAAAAAAAI/AAAAAAAAAAA/K0F_lZNVi0c/c-rp-mo-br100/photo.jpg','13486358490203335051',1067),('AIe9_BGvUJd9etQojwpjZIMsiFnek6kzwo9D1X9LnFUwCo2U9NA1N60nrPzjh28bPEwyDkIAUmSd58o3BjFMJv2qJwHMoSCmZZm_A9hM7t4eAboIrfwUKfM',NULL,'2019-12-17 13:12:27.905000','2019-12-17 13:12:27.905000',5,'Lady Theriot','https://lh6.googleusercontent.com/-nXPogdJYLFs/AAAAAAAAAAI/AAAAAAAAAAA/GHb1Z5h2ldM/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8688),('AIe9_BGvUJd9etQojwpjZIMsiFneKAJRHV9cOVFE5DGS91c-J792U1KqaaGPk8JP7nZNEi3XR_Y5BBcsDRXA2M-D9_CWT2BEh3tFRkmpL4uhrCWhxaqZG8Q','Dr. Harjai \nAlvean Nurse \nTrieia Radiology\nElida Jasmine Registration','2019-09-05 14:21:40.210000','2019-09-05 14:21:40.210000',5,'Latasha Ligons','https://lh4.googleusercontent.com/-vwLvXHW4qCo/AAAAAAAAAAI/AAAAAAAAAAA/m6hMEufhJog/c-rp-mo-br100/photo.jpg','16389487648212004696',2951),('AIe9_BGvUJd9etQojwpjZIMsiFneKCEQ3oB5sxVGtrphyR0gWk4MplNZ8WqKjfgWjjlSTMXOu0CDnqyy0YX_CWzjJYWMPR1knH6hRKJoLvjQsHLeDYPwSW8','No waiting, all the staff was caring and sympathetic to our issue.','2019-09-28 02:59:44.309000','2019-09-28 02:59:44.309000',5,'Angelica Sampaio','https://lh3.googleusercontent.com/-ABj_KoIDo2M/AAAAAAAAAAI/AAAAAAAAAAA/S6H9CrqbQfQ/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',412),('AIe9_BGvUJd9etQojwpjZIMsiFnekdBESdqaUgzLw2ScElq-QhukS2yOr9hwvpmRhRN6zTM89jVWMHL-oFcd8-EHyGfEa0B0JWo5vqAi4RA_MxjEdLbO_SI','The is the best ER by far. Dr. Zhen is a very caring and wonderful person. Jessica is a very knowledgeable and friendly nurse. Nurse Allison was very kind and also called my prescriptions in for me. Best place to go if you’re sick.','2020-01-05 13:54:36.731000','2020-01-05 13:54:36.731000',5,'Teresa O','https://lh5.googleusercontent.com/-8a3qF9ePQQA/AAAAAAAAAAI/AAAAAAAAAAA/t2ztErpMFmY/c-rp-mo-br100/photo.jpg','14904078213800803294',13642),('AIe9_BGvUJd9etQojwpjZIMsiFnekdP-uiV-t_QS0dejr6WhJTgXvE_1P5mfRFBXPJsqKQbih5uQrfaKPa5xyiWVjcZRSvtMU5WUxGXFGT3idw0LOa5Jwco',NULL,'2019-07-22 20:34:03.437000','2019-07-22 20:34:03.437000',5,'Maci Ruminer','https://lh6.googleusercontent.com/-3XWZ0ggAslg/AAAAAAAAAAI/AAAAAAAAAAA/xxxNmCg9Wa8/c-rp-mo-br100/photo.jpg','6521947413723274945',8186),('AIe9_BGvUJd9etQojwpjZIMsiFneKGEdBmLNl6cJGR8FEgEeqo-arNYB72e9N5d_3co2IG9hapVTwAQJhSUwADwV0x_DKRXAKdaM4iSLXGztOmFHsSpaTYw','Dr. Kotey Fatima Karen Donna Sindy Wendolline were great they took great care of me and my family. Made sure i was comfortable and that i understood the plan of care. This is the best Er in the Universe.','2020-02-20 03:55:45.106000','2020-02-20 03:55:45.106000',5,'Eva Yorks','https://lh3.googleusercontent.com/-_OOeHCEyvqQ/AAAAAAAAAAI/AAAAAAAAAAA/hPTZh4v2pls/c-rp-mo-br100/photo.jpg','17394740196501090048',14015),('AIe9_BGvUJd9etQojwpjZIMsiFneKj_Aut55kYzYhMThyIspMFaLQ248nlPmC60ZLIRnmNcIOcs_syR5sQb10Pl57QgJTONOkcwonhVpruhaapWpf-HZ4eA','Everyone was very nice and outgoing , I love the nurse Allison she was very sweet and caring would definitely recommend this place .','2019-06-23 20:59:29.065000','2019-06-23 20:59:29.065000',5,'Anjanai Reimonenq','https://lh5.googleusercontent.com/-jrQysGiRa6U/AAAAAAAAAAI/AAAAAAAAAAA/j875vnSzo18/c-rp-mo-br100/photo.jpg','14904078213800803294',2124),('AIe9_BGvUJd9etQojwpjZIMsiFnekor8k8foINAZb1-_1VV1KzWZtYYjwYhyj-vNF5WRdbxAwJTRjuZxfSHvUkSqoc2fl0VYtwzB7R27cx8oGr3h0IZYrh4',NULL,'2020-07-09 16:31:22.942000','2020-07-09 16:31:22.942000',5,'Ashle Stokes','https://lh3.googleusercontent.com/a-/AOh14Ggs8-bfYvr9yvbRiBxP-st274tc-loUo-H0uMfBQw=c0x00000000-cc-rp','3511292162159714121',22174),('AIe9_BGvUJd9etQojwpjZIMsiFnekpAqQQTrBOkFVCh-vfKreK5nrgOCPA8RayLVwnOl4DBNlUYKFPxteA7yEP8R3ViLWtsLqT9mlKH6nJPB1qLNDFzLcs4',NULL,'2020-08-16 18:28:07.288000','2020-08-16 18:28:07.288000',5,'Chelsea Mayes','https://lh6.googleusercontent.com/-5vp3B92tROU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl_GP9VLc12U_FYXqCy-OCAw_OXtg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',23078),('AIe9_BGvUJd9etQojwpjZIMsiFnekQ_GMWrZ6neJXbVY3jBxb9wGyX87XUjwfSzWUVPEEasMrgu-Gq79Hm31u05WUcoVXlxyA8H8qGsC34-UYkQTtmlN7ds','I had a great experience at this location with the help of Briauna L.\nKelsey J.\nSibienne\nMarcia\nBrodrick','2020-08-01 00:33:25.213000','2020-08-01 00:33:25.213000',5,'chelcey armanii','https://lh5.googleusercontent.com/-U1R9vNwVLYQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnh0ksjQNBK59N7iHGDqmTNGOMlUA/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22268),('AIe9_BGvUJd9etQojwpjZIMsiFneKqimFiYuh2SiOMNuZaMcW4hqXS0j8Q8R5PJ3GsCCpHsmpvfE5l0mkAz7DCQEwg1_-ETzcwmDg_CQZ8RHdT04c2Kruu0','I went in with a severe asthma attack on top of a panic attack, I seriously thought i was gonna pass out. The satff stayed calmed and worked diligently along with the dr to bring my rates to normal. The dr assured me he would fix me and within a few min, i was breathing normally and no longer freighted.','2019-11-02 09:52:24.377000','2019-11-02 09:52:24.377000',5,'Celica Lopez-Deltoro','https://lh3.googleusercontent.com/-TyXnHakjmyE/AAAAAAAAAAI/AAAAAAAAAAA/O6Tz4g3koxg/c-rp-mo-br100/photo.jpg','14567670160750071148',1204),('AIe9_BGvUJd9etQojwpjZIMsiFneKS9E1ReuwpUs90YVi-MI5yf3-3IZqNizC3rPYBoujCAnO3gpbp5pmgiJIyFu2_bfjvmyIPO-2erf1hrtc3m6X_ENLJU','\n','2016-02-16 14:26:02.312000','2016-02-16 14:26:02.312000',4,'Kik Hernandez','https://lh3.googleusercontent.com/-ZznAkZMTeko/AAAAAAAAAAI/AAAAAAAAAAA/PaUPxxcWyRI/c-rp-mo-br100/photo.jpg','17394740196501090048',5284),('AIe9_BGvUJd9etQojwpjZIMsiFneKtmQziq0rZUs1F94w6FGLhXtOuMKlYkFpianes1oN7LO2Tbe13nos0p2CrvmU9DVKdRvT5XPz5XV3JuWSWYnlyPWLqQ','Wait was not like the hospital at all and staff was very professional. Thanks Manny and the female PA. That took care of us.','2019-01-13 15:22:25.221000','2019-01-13 15:22:25.221000',5,'Tometra Mitchhell','https://lh3.googleusercontent.com/-tvq0JIJjLJc/AAAAAAAAAAI/AAAAAAAAAAA/QWjdhNGKreQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8330),('AIe9_BGvUJd9etQojwpjZIMsiFneKTSo2bFwFwiOW4AS4k3RDcfbqMi4TT6yHbnq0GEkJvKrPxJLztqugXciNBBqCQtBu0ObaiNV29MlHKOHibstpwLjoOo','Dr Ashbrook, Jennifer, Helen ,tobie are wonderful','2019-10-19 18:18:42.425000','2019-10-19 18:18:42.425000',5,'Tonya BossLady','https://lh3.googleusercontent.com/-YPfhA_Th0E0/AAAAAAAAAAI/AAAAAAAAAAA/ROf013zLDns/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',6879),('AIe9_BGvUJd9etQojwpjZIMsiFnekTV7mJ1Dm4olPkEHtf0QdjxIU9OHGc0u0ygn-Zh1s_7nvRB_SFeXRNjP-20zcmTKVLK6Mnje9zvov0-lu4EOV3fo0Fs','The signature bellaire has a patient, friendly and welcome staff. They offered a warm blanket along with snacks. My wait time was quick the process was smooth and Dr Dang even gave me a hug. They listen to my problems and was knowledgeable about symptoms for certain illnesses👍🏽','2019-12-03 17:17:08.339000','2019-12-03 17:17:08.339000',5,'Latosha Britt','https://lh5.googleusercontent.com/-Ydnd329ybUQ/AAAAAAAAAAI/AAAAAAAAAAA/zn5hnJT8_Bk/c-rp-mo-br100/photo.jpg','8679688254631342173',8699),('AIe9_BGvUJd9etQojwpjZIMsiFnekvfllO6kFD-a8KZt5f1NH5jwqBH7YoUvBae5mgypuZuW-lA4NHzleRIiXLSEypw1dyIUbqbCG904h1hJxFMHQm_twb4','I usually dread going to any type of emergency care clinic, I was in serve pain and the staff here were amazing made sure I was comfortable and always checking in on me. The nurse Adam was such awesome guy. I would highly recommend this place','2019-03-01 07:33:41.382000','2019-03-01 07:33:41.382000',5,'Kathleen Rathburn','https://lh4.googleusercontent.com/-lNJx7tKqaXo/AAAAAAAAAAI/AAAAAAAAAAA/WT09QuPdHT8/c-rp-mo-br100/photo.jpg','16891069708558046635',4336),('AIe9_BGvUJd9etQojwpjZIMsiFneKwi4Usm69KbZ6b5762ypVrGM25PNIQwosRo2xUmkVbhwNQyLGZqenAQCYTgx_G811rNMQKbNGU9PNLinU_OqQnwYo24','Dr. Das and his staff were awesome. They are every nice and they care about their patient. I would recommend them to everyone if you need to been seen by a Doctor.','2020-08-12 10:53:04.734000','2020-08-12 10:53:04.734000',5,'Kimberly Kellam','https://lh3.googleusercontent.com/-Px-JTlY1osg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmNPUwbhAybMLHikOq4lRJlaHfD_w/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23029),('AIe9_BGvUJd9etQojwpjZIMsiFneky0BhM97LMHguqOYsuwTpm72-vjFXmBzM_F27hfUkbSzwkUfsbMbpeNsvANYBuSTOYYfrYQSl45s_343ZF-Nj7pots4','Very friendly service and I was in and out in quickly. The entire crew was great and very patient. I want to especially thank Vivienne for understanding my needle phobia. Definitely recommend!','2020-01-15 16:01:41.850000','2020-01-15 16:01:41.850000',5,'L. Angel Hyder','https://lh3.googleusercontent.com/-gWCAgV6NjDo/AAAAAAAAAAI/AAAAAAAAAAA/c5bSMj2a_e4/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',9693),('AIe9_BGvUJd9etQojwpjZIMsiFnekz6H-DrCTvQsG5GyXspbUlzPZ3mkNzoVK5BZnB-CfJ1fm-OT_9XjetR9pTpLwvAs1tuqbKwdiFhYK7E_8pKCZeyioA8','Twice I have had treatment here and both times the experience was A+! The place is clean and smells great! The staff is friendly, attentive and very professional. I always feel that I am in good hands here! On one visit the staff who helped me was Dr. Ortiz, Tammy W., Courtney G., Jessica N. and Chanell P. I highly recommend the Er Center!','2020-01-21 16:19:04.953000','2020-01-21 16:19:04.953000',5,'Lynn Hart','https://lh5.googleusercontent.com/-lYve4TGRbjM/AAAAAAAAAAI/AAAAAAAAAAA/uERLSMTMwMs/c-rp-mo-br100/photo.jpg','16389487648212004696',10204),('AIe9_BGvUJd9etQojwpjZIMsiFnel-QkGiBkArKnNYpqWdD8NjYZn1URyta_bxhLmPsoJ9OtIe4a64-iQAWa6LhxBskDs0V3dV0g0_K7ISJfRZkIaF77U2I','I got taken care of and treated by Anthony, RN; Natalie- EMT/ PCT; Rayven; Gabe, RN, Dr. Kimball and Kathleen (x-rays). Everyone was super helpful and kind. I always come here and I’m never disappointed!','2019-01-22 02:58:26.703000','2019-01-22 02:58:26.703000',5,'Andrea Serrano','https://lh6.googleusercontent.com/-PmbtYFQv6OU/AAAAAAAAAAI/AAAAAAAAAAA/7x4QcCfH5Pc/c-rp-mo-br100/photo.jpg','16590124370714063921',3579),('AIe9_BGvUJd9etQojwpjZIMsiFneL56mXcYQY8SJasjLlE4NM3elgz93WvwGD91n6gHbHbSTvFjMUbHX-euKAVp9x_-yU0VMu4BjLjGmd3YVdp5QSm1epzg','I bought my wife in and the entire staff was fantastic. Dee at the front desk was awesome got us back really fast. The nurse was very caring and helpful. The entire team was awesome. Thanks everyone.','2018-07-20 01:27:17.217000','2018-07-20 01:27:17.217000',5,'Deopersad Rambharath','https://lh5.googleusercontent.com/-3j__wEai08w/AAAAAAAAAAI/AAAAAAAAAAA/8RuNxBaK0Qk/c-rp-mo-br100/photo.jpg','3511292162159714121',7687),('AIe9_BGvUJd9etQojwpjZIMsiFneL65F3XB7WqfTT3PsMi4vtR42AdKb6_Dfbliv7Q_SgoAI1z9m_8SfAeytwjH6YKPpyAnNu9IlLK2k4ex69tDOY8xPojM',NULL,'2020-03-12 05:06:18.607000','2020-03-12 05:06:18.607000',5,'Ivan Romero','https://lh3.googleusercontent.com/-3Qt1NvQgXkU/AAAAAAAAAAI/AAAAAAAAAAA/OlFuTXV2vW0/c-rp-mo-br100/photo.jpg','13486358490203335051',20923),('AIe9_BGvUJd9etQojwpjZIMsiFnel6FZhl8S_3pS7H0ukYMfX1EPAChsK1rOBk8u8XLHf2X7Ee7CG7nQ-ZdTKYQkSUMDisGP_pWauMF_W7PG7Dgjw_L8ar0',NULL,'2020-08-13 22:34:03.521000','2020-08-13 22:34:03.521000',5,'Thomas Lehane','https://lh5.googleusercontent.com/-zXDb0Cd3Xug/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckXdH_zHZSwYyjTtiN6nYelTX3dBA/c0x00000000-cc-rp/photo.jpg','12541597562633926366',23007),('AIe9_BGvUJd9etQojwpjZIMsiFnelAGH2MpcfjZpGk2qUHu-2cY5UboDCS_M2GGXG5botMrlFw__MIdLrYVYIv4GNDM0TgrQ1wAspNZ_4RzWY1fSBZBuLJc','I\'m extremely skeptical about hospitals and doctors.. after much insisting by my wife I decided to come here and finally get checked out. Wow, what an experience. There is no wait time, the receptionist was friendly. Ms. Lani the nurse assigned to me was very understanding and helpful. Made me feel cared for. Dr. Pattison was knowledgeable, she took her time with me, made me FEEL safe and comfortable. Even Bryan the nurse\'s assistant came and ask if I needed anything, gave me warm blankets and kept me informed of any updates. I still prefer not to see a doctor but if I ever need to again.. I will come here.','2019-01-09 04:47:55.110000','2019-01-09 04:47:55.110000',5,'Ronnie Edwards','https://lh5.googleusercontent.com/-8MW1cy1whdc/AAAAAAAAAAI/AAAAAAAAAAA/618rBnxSUqs/c-rp-mo-br100/photo.jpg','14567670160750071148',1425),('AIe9_BGvUJd9etQojwpjZIMsiFneLcFhMJaHGJcXjyzPDqnUYsoB13qFSKonOiRrUvLiifUxrVUBe01HnxOtSljurtM3NqqyBEQ2A9eXOoZvw3Wu5yV62J4',NULL,'2019-02-26 23:54:24.352000','2019-02-26 23:54:24.352000',5,'Karsyn Hisaw','https://lh3.googleusercontent.com/-MHTa4fMPn18/AAAAAAAAAAI/AAAAAAAAAAA/RaZtZhInhcA/c-rp-mo-br100/photo.jpg','8626688543755174284',8546),('AIe9_BGvUJd9etQojwpjZIMsiFneLFhSkj8yk6xoOxlhnUGPGlsMS8BHe15n4PvyWNfQdR0WpPOhuyG1LoOicT3VwDGk6NaQLGz4uYVQh9DKbctHE-4svFc',NULL,'2017-01-16 13:47:05.663000','2017-01-16 13:47:05.663000',4,'Lily Nails','https://lh6.googleusercontent.com/-FEJrVd8Wog4/AAAAAAAAAAI/AAAAAAAAAAA/GVSrIF4YGgk/c-rp-mo-br100/photo.jpg','17394740196501090048',5131),('AIe9_BGvUJd9etQojwpjZIMsiFnelFQ0C8KVn_VTU9dFQjHOYbpVArtamTqqybNHIpoecZ5cnMKcojLgFnG7OPOX8f0VTU5OXAXzjDRnKO8S-3WGrvH1X7A','Came here for the COVID-19 testing, the line was extremely long. I waited for 7 hours. However the staff was very friendly. I recommend making an appointment online first. The wait time is still long on both sides but appointments get through the line quicker.','2020-06-29 22:39:52.518000','2020-06-29 22:39:52.518000',5,'Jojo Ma','https://lh3.googleusercontent.com/-XtO_jnpnPQo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckHOCJQQYdyPNznxaeeHTLORod3qA/c0x00000000-cc-rp-ba3/photo.jpg','16389487648212004696',21409),('AIe9_BGvUJd9etQojwpjZIMsiFneliEKsQMYCZp5KRlFeV1wrISBkJgO3W5QEC1dj7CcLK47-hDg5p-A-zW9zRu6jJn2ep6LUYGqnw3hzZ4QndkkYEJmXVE','Unfortunately, my experience with Dr. Castaneda was extremely poor. He is extremely arrogant and unnecessarily aggressive. My husband and I were not pleased with his behavior. He argued with me in front of my sick daughter who is 2 years old. He exhibits traits of a misogynist and narcissist, based on his behavior towards me.','2019-05-28 00:41:26.818000','2019-05-28 00:41:26.818000',1,'Midnite Rose','https://lh5.googleusercontent.com/-7ohsm_DKsSE/AAAAAAAAAAI/AAAAAAAAAAA/v0iSx7V2oRI/c-rp-mo-br100/photo.jpg','12541597562633926366',501),('AIe9_BGvUJd9etQojwpjZIMsiFneLiP8Q42s2MYgR73EZIMq4H27PPHvZSI_A17ZG7pFPugLVsK9sYbgtE9CY5covL0DgIX5p1XtRF0_FD78BWRf1hS9jmY','The entire staff were very attentive and caring.','2018-06-19 13:15:48.761000','2018-06-19 13:15:48.761000',5,'Paulette Smith','https://lh4.googleusercontent.com/-noJCbuPaF-E/AAAAAAAAAAI/AAAAAAAAAAA/DPsRaB-vTgo/c-rp-mo-br100/photo.jpg','14904078213800803294',2246),('AIe9_BGvUJd9etQojwpjZIMsiFnelNjxFgXpP_CjvpaCk2RkrbxXVpQFD32WQ5epFtOhG0DRBius5Ih1Odo07GHOQYJstttcwE9gcsproxQvBHMNuq5tY0g','Jayron (security officer) and Amy (front desk) were thoughtful, patient, and professional. I would recommend Dr. Smith to any and all-he was efficient and helpful. Shabba was sweet and my fiancé and I felt comfortable.','2019-03-09 07:21:44.382000','2019-03-09 07:21:44.382000',5,'Brandon Gilbert','https://lh5.googleusercontent.com/-if-LusXMPhI/AAAAAAAAAAI/AAAAAAAAAAA/WS8PhgXP9R0/c-rp-mo-br100/photo.jpg','8918455867446117794',9162),('AIe9_BGvUJd9etQojwpjZIMsiFneLVe8B5MERfnVfuI2yuVnzruM7ChxEeggol-1ukjVh4HMt4ShqEyulMci2RDVUb6e18o6wMMRN5qlSx3wVHieSpWtSuo',NULL,'2019-07-05 12:40:27.496000','2019-07-05 12:40:27.496000',5,'Nick Yannuzzi','https://lh3.googleusercontent.com/-1z7Y3YLT8a8/AAAAAAAAAAI/AAAAAAAAAAA/9P5AvktaOPE/c-rp-mo-br100/photo.jpg','16590124370714063921',3317),('AIe9_BGvUJd9etQojwpjZIMsiFneM2I8z4UJuLIJmti8JHbTHNRmTFv2ZUaRKToHRzzx6G4oqZy_Nn7eXvYYkw_3oXA_Dzaw7Aj2zlZE26ZrhLrBKoWoyoE',NULL,'2016-12-19 16:04:55.871000','2016-12-19 16:04:55.871000',5,'Carla Coronado','https://lh5.googleusercontent.com/-ohGS5-rj0Ps/AAAAAAAAAAI/AAAAAAAAAAA/v5Q1smX1Tos/c-rp-mo-br100/photo.jpg','3511292162159714121',7914),('AIe9_BGvUJd9etQojwpjZIMsiFneM3rRbwEqdftvk3qtfEkc0Pf3mnbFffLY5ONQ-JF7F9FacIVizHzt5RHDudi9NZ6zzK5z5hnVOYH2_q1Fflf-d6dZ0rY','Signature Care ER gave me the best care I could have ever imagined. From the moment I stepped in the door to when the doctor came and saw me less than 10 minutes later I knew that I was in qualified hands. They explained everything they were doing and since it was recommended that I stay for observation they moved me into a better room where my husband could sleep on the couch. They even had both doctors call me one and two days after to follow up and see if I needed anything else. I would go there again in a heartbeat.','2016-10-28 20:33:36.036000','2016-10-28 20:33:36.036000',5,'Kerri Bartkoski','https://lh3.googleusercontent.com/-KU3eymJyTP4/AAAAAAAAAAI/AAAAAAAAAAA/6sZoN2TvCyQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2450),('AIe9_BGvUJd9etQojwpjZIMsiFneM73xiyZ9KKUUJgl1mWqyoc4LhM468zMLB8j5O_qYiOeEcOTXQLMkDhLQvrY5iq_Ffek21-mLuwVs5Crf1PknmA4lpd4','Front desk staff, Sindy and Rashad were very welcoming and attentive while visiting my sibling- very nice and gracious service! Dr. Wang was also efficient and attentive when attending my sibling with lab results.','2020-02-07 03:58:14.884000','2020-02-07 03:58:14.884000',5,'David Mejia','https://lh3.googleusercontent.com/-3mEMMFoh9IM/AAAAAAAAAAI/AAAAAAAAAAA/We-vT5pvFdU/c-rp-mo-br100/photo.jpg','17394740196501090048',14027),('AIe9_BGvUJd9etQojwpjZIMsiFnemcDALf2QA3QTxFqbun4Pj2ZiccCtxBZ7VMrWUYIzc4nxruMJURZZLCV8bKqv81PjA3_oXSCJTpVk4nLCpz8UBZkQje0','My impression of an ER used to be chaotic, crowded, long wait... Definitely not this one. My uncle had stroke in October and we went to this place. He was seen immediately by the nice doctor who was so caring. Nurses stared to work on him and he got a CAT scan right away. Then his weakness returned, we were in a panic mode and didn’t know what to expect. Dr. Ding immediately decided to give him some medicine and nurse Tammi bought in the medicine so fast. Everything went through so smoothly and in order. We were so appreciative that our doctor kept her calm which eased us tremendously. Thank you Dr. Ding, Tammi, Eda and everyone who was there helping us.','2018-11-20 17:13:52.502000','2018-11-20 17:13:52.502000',5,'Julian Prieto','https://lh5.googleusercontent.com/-XTl-vzGMfCM/AAAAAAAAAAI/AAAAAAAAAAA/onxk0IY5V34/c-rp-mo-br100/photo.jpg','17394740196501090048',4760),('AIe9_BGvUJd9etQojwpjZIMsiFnemChhDSD1Txbn74UZNe0VYKQ6cP7N39AAGpLUrtZHEY7AkLR7nVzP_cI3Xe6etyJqOGCjYNXhgbKj8W8oSfAI6crPIqw','The warm welcomes, the smiles, the compassion, the bedside manner, the promptness and the listening ears is what makes a great Emergency Room, and the Westchase Signature Facility HAS IT ALL... Let\'s talk about exceptionally how clean the is... The security guard was even nice... It\'s hard to get service like this these days, but this place has it all... If I ever have a need again for emergency care, this will be my GO-TO-24HOUR-FACILITY..','2019-10-21 06:39:15.933000','2019-10-21 06:39:15.933000',5,'Tracey Marvin','https://lh5.googleusercontent.com/-RAlD-_lJGH4/AAAAAAAAAAI/AAAAAAAAAAA/KI0BsDIhjOs/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',395),('AIe9_BGvUJd9etQojwpjZIMsiFnemDQJQ6TScCWauJrRYddL0LAJpPQc8t-Y1LR5fPPOJB3e6PUAjxVafHEUJXt46Z1URp2qRvPtIOLi3Oe0q5w_2fl-i9M','Very clean and welcoming place. I needed a quick test and was in and out in no time!','2020-08-24 00:01:33.713000','2020-08-24 00:01:33.713000',5,'Thomas STING\'EM Bingham','https://lh4.googleusercontent.com/-hPlivlu2yKM/AAAAAAAAAAI/AAAAAAAACBY/AMZuuclG2F6uICImzzBN9p-aZRNZIJ0mSw/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFnemEP6XhHr5e4JGX3bMJs6kl7AK67iL4ZKzxJIPxVpme6PGidoAo6h45fVBct1_h1VNeTZFnDoNeOcM4FaXNmLhiiTsQM','Everything was pretty good. They were clean fast and nice. Ill go there again. ','2017-07-14 12:53:31.375000','2017-07-14 12:53:31.375000',5,'Lulu Acosta','https://lh3.googleusercontent.com/-ubyg4murMP4/AAAAAAAAAAI/AAAAAAAAAAA/dZNHALG03as/c-rp-mo-br100/photo.jpg','14567670160750071148',1794),('AIe9_BGvUJd9etQojwpjZIMsiFneMf4NJskUbC9zPWICQTznQkrUfGK1fAO7nM0dNTcQyXeg9iocxaO3jWzuUuv3lZFLsh1vDSrUWRvua0jyl_kxoNvbUg8','My experience at SignatureCare was amazing. Jessica, Dr. Wren, Kris, Lani, and Gus were all awesome. They were all warm and welcoming.','2019-01-26 23:22:33.353000','2019-01-26 23:22:33.353000',5,'Sandra Moreno','https://lh3.googleusercontent.com/-GmM24L2CYwY/AAAAAAAAAAI/AAAAAAAAAAA/9xpDsBOkX2s/c-rp-mo-br100/photo.jpg','8918455867446117794',9189),('AIe9_BGvUJd9etQojwpjZIMsiFneMfiNm5DMnKF8Qqrj3pzm4PwkISpjMPVcrg80CNZ2B5v2NKxCNqQvQO72KiunQKCxijc0eGLzPmyEZDwK6n5a7JHvpe0','Had prompt services, friendly greeting and help from Jocelyn, my nurse Alvenan was very friendly as well and was able to help me with questions I had. Had an X-ray and Tricia was very patient with me and very nice. My doctor Nweze was great','2019-10-16 20:27:01.103000','2019-10-16 20:27:01.103000',5,'Kim Wikoff','https://lh5.googleusercontent.com/-SP9sDq_zDUs/AAAAAAAAAAI/AAAAAAAAAAA/2Jkis2EPSu8/c-rp-mo-br100/photo.jpg','16389487648212004696',2810),('AIe9_BGvUJd9etQojwpjZIMsiFnemLJErS3L4sh-Yzje0LogvexGrt08SycrCSzxN8__8VNJUDOSsRfIB1zw-gi-y-A8iia24pgi5QAVvppkCqgkvKJ5F1E','The Receptionist Jocelyn was nice. Followed by the Nurse Alvean and Dr.Henderson!','2019-10-26 15:45:37.674000','2019-10-26 15:45:37.674000',5,'Lydia Lacy','https://lh3.googleusercontent.com/-EyvwuyehWxU/AAAAAAAAAAI/AAAAAAAAAAA/refGe03y0oE/c-rp-mo-br100/photo.jpg','16389487648212004696',2769),('AIe9_BGvUJd9etQojwpjZIMsiFneMNOQmvlI2ESe4woUH7E5JvrlOw9ESEtVUQ0_OuTnYQx_wiWw6eqWq-o4HvP5Q9Htw2r_bcDMDf3sERUSP2SU5ODEoc8',NULL,'2019-06-23 22:52:37.702000','2019-06-23 22:52:37.702000',5,'Jason Arispe','https://lh3.googleusercontent.com/-CTSY-y84nY0/AAAAAAAAAAI/AAAAAAAAAAA/XB9Xid5Zd5o/c-rp-mo-br100/photo.jpg','17898197009688164559',5679),('AIe9_BGvUJd9etQojwpjZIMsiFneMs9jv5KLhs-MZIDt8FJr6ULCgxUbpvBqzWXW7ZFosManemUdY3V8XrR5X9Fmwy0bk9J286I1pAVHOmWj71AjjcCZZso',NULL,'2019-10-04 21:53:02.450000','2019-10-04 21:53:02.450000',5,'Haley Mayson','https://lh6.googleusercontent.com/-qb-kqH6hf0k/AAAAAAAAAAI/AAAAAAAAAAA/8n_JPYzTEwc/c-rp-mo-br100/photo.jpg','16590124370714063921',3157),('AIe9_BGvUJd9etQojwpjZIMsiFnemulrQaSghG-wWHbCF6_BT9Q3rpNvl0AL-JmttuxQIReBf1Mc_ND2kpDeqeiL3iJohHvuvoHUc2REtiVumNvVbXkrQ2U','(Translated by Google) Despite the fact that I had to wait longer than I had estimated, the attention was kind and respectful. Thank you\n\n(Original)\nA pesar de que tuve que esperar más e lo que tenia estimado, la atención fue amable y respetuosa. Gracias','2020-07-06 04:08:50.908000','2020-07-06 04:08:50.908000',5,'Judimar Sosa Torres','https://lh3.googleusercontent.com/--xbOrVLUNsM/AAAAAAAAAAI/AAAAAAAAAAA/yt1VdtgXZgI/c-rp-mo-br100/photo.jpg','12541597562633926366',21319),('AIe9_BGvUJd9etQojwpjZIMsiFnemVG-nUjst9Xirepy0TLg1dsKR-osOTMmsXBFxTgfloCMbervFQvlU6-SyopIf90PtaNlFMUfsIfb_s3iuPStRgp_YGE','I have to visit SignatureCare in Stafford for a kidney stone and wow, this visit was awesome. If you feel ER\'s are just as bad as your pain, you should go to SignatureCare they take all of the wait, and hassles out of the emergencies. When you have to use an ER, please try SignatureCare for you will not regret it at all. When you walk in the ER, you will not see a tropical hospital ER. You will be greeted by someone that wants to help you and cares about your stay there. The design and layout is almost like a 5 star hotel with room service. Now just wait for a visit from ER staff. Waiting is not a word I would use for this ER for their on top of things in a now moment. When you talk to doctors, you feel as you have know them for years and they were working here just for you. Location I went to was Murphy Rd and 90. If you use SignatureCare, you will never visit another hospital ER. \nDon','2018-05-28 13:19:53.226000','2018-05-28 13:19:53.226000',5,'Don R Simmons','https://lh3.googleusercontent.com/-eGKWFhml_Tw/AAAAAAAAAAI/AAAAAAAAAAA/mADx7gI1KxQ/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',4845),('AIe9_BGvUJd9etQojwpjZIMsiFneMYcEJNp3jEGxFgzCZmJcgSWXbKsBekY7qdYrWJCqM3C6V8Pmol9_n9BkpIoSICr12Ei8nCbO5k_r8LGn-VXLGok7l2A','AMAZING SERVICE & CARE. Unfortunately we have been here a couple of times and most recently with our 20month old. She hit her head and needed evaluation for glue/stitches. It being or first ER visit with her, I think the parents were more worried than the baby. \n\nThere was zero wait (obviously situational dependent) and the care/consideration given to our daughter was top notch from the moment reception greeted us through the door to when the security guard let us out. \n\nThey took us straight back to a room for treating children (Finding Nemo on the wall, books and a tv with cartoons). The nurses were great with putting our daughter (and us) at ease, and Dr. Miller was super informative and considerate along the way.\n\nI am so thankful this facility is so close to our home and I could not imagine going to a different ER while we live in Houston.\n\nThanks!','2018-07-09 12:08:17.782000','2018-07-09 12:08:17.782000',5,'Lance Weinmann','https://lh6.googleusercontent.com/-pcB46U550v0/AAAAAAAAAAI/AAAAAAAAAAA/UzRhFYXzI9o/c-rp-mo-br100/photo.jpg','14567670160750071148',1605),('AIe9_BGvUJd9etQojwpjZIMsiFneMzO-5ghIw7TBPb2BeHSEhqhosrCEuA3eRWipDrhMKuEGkAE6d7W95fgYtJDd5AQepLgs_2jq-lPrizQpkyqWLKYfubM','Thank you to Dr. Dang, Kayla, Edna, Tammi, Janet and Fanny','2019-08-28 14:06:44.359000','2019-08-28 14:06:44.359000',5,'Andrea Matis','https://lh3.googleusercontent.com/-yKscFihnBTg/AAAAAAAAAAI/AAAAAAAAAAA/4e9nq_eZiiY/c-rp-mo-br100/photo.jpg','17394740196501090048',4615),('AIe9_BGvUJd9etQojwpjZIMsiFnemzzFnLzCNRl68WFR2JQB7v92VQD9TPjontZAD6uHqqE_nuTnaR8lkJlRGLMr0rbuRu1tCSSTOq5VGyRxqivU2F2kiYA',NULL,'2017-04-07 23:38:31.263000','2017-04-07 23:38:31.263000',5,'Eugene Kim','https://lh5.googleusercontent.com/-5jpG8KN-huo/AAAAAAAAAAI/AAAAAAAAAAA/_1GIJ_-LCts/c-rp-mo-br100/photo.jpg','14904078213800803294',2371),('AIe9_BGvUJd9etQojwpjZIMsiFnen_P6iG8JAMnF0yT3FpZzNdPDq-vYnMG1-_If2zL86epJu9FA__DpKm_qJ5vxMCGup123Pt-yB1qlWnUU8suU2SuwHLE',NULL,'2019-02-12 18:11:36.539000','2019-02-12 18:11:36.539000',5,'Kaitlyn Morton','https://lh3.googleusercontent.com/-D34rhpO9ETk/AAAAAAAAAAI/AAAAAAAAAAA/orW93sBZKv0/c-rp-mo-br100/photo.jpg','16590124370714063921',3558),('AIe9_BGvUJd9etQojwpjZIMsiFneNDd-m1gZ5G1k4nbvudaXYAs6yN62brH6MDGkvFzCJY4-r7VF2pAXtgnV1E4xIvsAqhcr3nbHWZgrDdJ3eEuHpnjKiQ4','I’m a physician . These guys are great .','2019-10-18 12:36:24.152000','2019-10-18 12:36:24.152000',5,'MUZAMMIL SHAFI','https://lh5.googleusercontent.com/-uf3G-kvvzfk/AAAAAAAAAAI/AAAAAAAAAAA/tC3s9MVuDL4/c-rp-mo-br100/photo.jpg','12541597562633926366',399),('AIe9_BGvUJd9etQojwpjZIMsiFneNDJQVnTHnkBo1Y8bXDLFHZkl7KAEhKDa_67uw6iEbdebdFlGHrFhk6RJ5ZIqlpKrxViYRmhTWWaESxYnIxi7m_qNbQU','Great care and extremely quick especially during these times','2020-07-23 20:43:38.663000','2020-07-23 20:43:38.663000',5,'Cne Ross','https://lh4.googleusercontent.com/-0umCYqhedo0/AAAAAAAAAAI/AAAAAAAAAAA/ZYvIu9lsiSQ/c-rp-mo-br100/photo.jpg','8918455867446117794',22296),('AIe9_BGvUJd9etQojwpjZIMsiFneNG6wakCi6IH_o6MQumDNNyJTrQah6hVHbv_9FhRu0Ul3G2hYHxgxQZ6UOQ1l6B-bV0bsGTdJdBk6djGa-qPB4U_CG6I','Awesome!','2018-01-16 12:43:54.035000','2018-01-16 12:43:54.035000',5,'Nicole Harris','https://lh5.googleusercontent.com/-rl937GcTDKc/AAAAAAAAAAI/AAAAAAAAAAA/TqCJ4ipiVlc/c-rp-mo-br100/photo.jpg','14567670160750071148',1681),('AIe9_BGvUJd9etQojwpjZIMsiFnenhnB5o3t6sQ7VfLxJ-0XNxYokzVGWWZYPm0VeWbDTUJTjkFNdUqJmTaNZUNwnMhfKMkYPF4HBB8E3VUfYEZuTlbgx28','The staff here are incredible. I was referred by a former employee and couldn’t have been more pleased by the care I received by Shelli, Chris, Dr. Elsbecker, Adam, Christina K, and Christina C.','2020-01-29 09:31:37.657000','2020-01-21 20:49:21.494000',5,'Brittany Starace','https://lh4.googleusercontent.com/-yjY82q0DZGY/AAAAAAAAAAI/AAAAAAAAAAA/IuQSbk52F1U/c-rp-mo-br100/photo.jpg','16891069708558046635',10234),('AIe9_BGvUJd9etQojwpjZIMsiFneNhZeo8o9KjLRKwYMOkb1DxZtZxSvz6MTrG1YcaFY6UtYV-IjQM7z8R9yZtyByRNYKCKTegoEd63diMS0i-r0z77GIuY','Wonderful experience, Doctor Patel was very patient and informative. Just as well as Nurse Tony and Rad Tech Sonny. Ms Delicia was also very kind and involved! Wait time was little to none! Will be going back.','2019-02-23 14:21:05.660000','2019-02-23 14:21:05.660000',5,'Brittany Thibeaux','https://lh4.googleusercontent.com/-hiugFs5VfaQ/AAAAAAAAAAI/AAAAAAAAAAA/d954oZdJBYk/c-rp-mo-br100/photo.jpg','8679688254631342173',8868),('AIe9_BGvUJd9etQojwpjZIMsiFnenKxhIv2tbjqvQ75d7qO6Vrt9Q0RydpAxNYZrqfj8ir4YGvbE-NZV3TIMKCIgl1VXorY3hwKR39rIrH_907dwhU2n2vo','Thanks to Sita, Alexis, Allison and Dr Herbert. Very professional and got my pain level down in a timely manner.','2020-02-03 06:40:38.553000','2020-02-03 06:40:38.553000',5,'Cody Caraway','https://lh6.googleusercontent.com/-KraOgpOHsuY/AAAAAAAAAAI/AAAAAAAAAAA/6SJRruJXAUs/c-rp-mo-br100/photo.jpg','13486358490203335051',13440),('AIe9_BGvUJd9etQojwpjZIMsiFneNL3VL8eP-XDMhkvzNCSA4-ScD9Nxyla2qIymrD3x2J1Qn8tjySHu9sTe9b_E8s_rO-VEZQf57gRS2S070hc8umRAOcM','I was seen fast and the people are very caring. I would like to thank Leo, Julie & Allison. They have taken care of me several times and are very informative and helpful.','2019-10-14 02:45:20.764000','2019-10-14 02:45:20.764000',5,'Shana Burns','https://lh6.googleusercontent.com/-RQfup5RuYmI/AAAAAAAAAAI/AAAAAAAAAAA/hpdjYnNi9Q8/c-rp-mo-br100/photo.jpg','13486358490203335051',778),('AIe9_BGvUJd9etQojwpjZIMsiFneNPRnNHCxNYv08qPB4CLWj7fH7p4MY-ZYUAyygGfGt5fqB_44kJc0FpVKh7SR7icO-PbE_fBIRLrkm9mnq9uN0Hmjmc8','They were very kind and helpful in making sure that I was on my way to feeling better and making sure that I understood what was going on. If I ever need to go to an emergency care place, this would be the one I would go to!','2018-01-28 19:07:36.382000','2018-01-28 19:07:36.382000',5,'Eryn B','https://lh5.googleusercontent.com/-vVckB7SpXm4/AAAAAAAAAAI/AAAAAAAAAAA/v0DbzQGijOg/c-rp-mo-br100/photo.jpg','16590124370714063921',3871),('AIe9_BGvUJd9etQojwpjZIMsiFneNReGEoErkLmUllzisT4myjiMqiu1q-WWUUaALHDDBpSTOGRbMDp7MjAiBt-dLE8ZR6sLJMiazGKaS6nvGJGdx6bP6Nw','As I entered I was immediately greeted. I had a great experience here with the er tech James , Nurse Tammy and Dr on staff.. Staff was friendly and helpful!!! Great facility that was fast and gave care into the check up. Did not rush me out but ran appropriate test to verify issue. Over great experience and will continue to use Signature Care copperfield! Thumbs up👍','2019-12-23 16:23:13.649000','2019-12-23 16:23:13.649000',5,'Mayra Drobnick','https://lh6.googleusercontent.com/-rT5oeN8H5wk/AAAAAAAAAAI/AAAAAAAAAAA/M5mR2MieZ0I/c-rp-mo-br100/photo.jpg','17898197009688164559',5333),('AIe9_BGvUJd9etQojwpjZIMsiFnenUlH5AwA3aWHmtWlPb5V56eRdWmqcNrToHofUs_-waBQpYrZonhbidS2ivY1hIclouf-BaX-ESzg2c60XcIVs_ZtQD0','Great customer service! \nSeen almost immediately when you get here every time!','2020-01-02 23:37:42.166000','2020-01-02 23:37:42.166000',5,'Salina R','https://lh5.googleusercontent.com/-CMkrli4NwrE/AAAAAAAAAAI/AAAAAAAAAAA/kFVxtl-iMrw/c-rp-mo-br100/photo.jpg','12541597562633926366',263),('AIe9_BGvUJd9etQojwpjZIMsiFnenVImZQ6SZ8DYHnFGBMAb5Q3c0lIxrUkPKi6HMtOcGjDDq4PgzI1bednP6wgml8gwGj7-YtKYiQIqRwhU_6QqdWXda94','They took care of me like I was the only patient in there. They have great staff that make your experience more enjoyable by actually engaging with you on a personal level rather than a regular customer service level.','2018-11-03 01:39:05.134000','2018-11-03 01:39:05.134000',5,'Glammed Out Nails','https://lh5.googleusercontent.com/-WfLrPFpXXxw/AAAAAAAAAAI/AAAAAAAAAAA/jrxu7WJJhsk/c-rp-mo-br100/photo.jpg','14904078213800803294',2201),('AIe9_BGvUJd9etQojwpjZIMsiFnenWAW7Rruu2j15rfJyytUCe6S_ohZZ1C7RLxj6uP1Qu9RO6o2S7-HusSaxR-ZswAW2UdWwFjM9CPUyepz14H9CDAhxKk','All the staff members were great! Samantha, Timothy, Grace and Dr. Edwards made my experience in the ER that much better. Thank you! ☺','2020-08-08 10:44:20.718000','2020-08-08 10:44:20.718000',5,'Deanna Garcia','https://lh4.googleusercontent.com/-w4Yqe4OspVk/AAAAAAAAAAI/AAAAAAAAkC0/AMZuucl9XWx02X2zfN0jkq6Hi_DCsDjJyg/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21856),('AIe9_BGvUJd9etQojwpjZIMsiFnenwXztaVQWLzLlEaEeCQ7eR6K3UPKWM2bqH8jvx1VrBihvR8Uo0U29xQ7LipE8gZjPiYmgA7yIeKrRGgSQ60h8vYoXV0','his is definitely one of the best er care places that I’ve been to. I was seen quickly and based on the information I provided Dr.patel I was diagnosed accurately and they even shared with me common reasons for what I was experiencing which was very enlightening. Nurse Kristina did an amazing job drawing blood and placing the iv she made it look effortless and it was done well! Scott,tino,maya also worked together as a team from checking in ,and all the details that go into making a patient feel as comfortable as possible!','2020-01-25 18:33:23.527000','2020-01-25 18:33:23.527000',5,'Elisha Taylor','https://lh5.googleusercontent.com/-W6v8oXp9AqY/AAAAAAAAAAI/AAAAAAAAAAA/MdF0Cz-7p2w/c-rp-mo-br100/photo.jpg','12541597562633926366',10095),('AIe9_BGvUJd9etQojwpjZIMsiFnenZfrYM0Gvj8EdM2Fby-Zu1gKIptbun6V0HAPNAA-ZYgijPDcIwIlbiw_SwFS0fvw9aHkpHSwMO2UV74Q9x7HtJg2uT4','Was very friendly, clean, and efficient. Service was great!','2019-12-13 21:37:12.518000','2019-12-13 21:37:12.518000',5,'Ariah Brown','https://lh5.googleusercontent.com/-0uXhLbFz3ME/AAAAAAAAAAI/AAAAAAAAAAA/Vq-OAQ-TYkw/c-rp-mo-br100/photo.jpg','12541597562633926366',350),('AIe9_BGvUJd9etQojwpjZIMsiFneo-ohZHWVgO6CGe5-vNUkny_9Q3rOBooiGdPQalxYAxDGwqbeCCW6dTyPh6PvhivFgDhSeNphwF0ubxXhRHxACHWF-Yo','I’m new to the Houston area and had a bit too much fun at the NFL Sunday! #steelers won.. I conveniently stepped barefoot on a piece on mental and cut the bottom of my foot...I was greeted by Genesis who registered me and got be going quickly... the ER Tech John wheeled me back immediately where I met nurse Kristina and Dr. Spangler who greeted me with warmth and compassion I felt like family... the radiology tech Quyen took my X-ray... to sum it up I’m from DC and been around along time and this has been the best medical care I ever gotten. Thank you all for your service... I hope I never need an ER again but if I do I will be here❤️','2019-11-25 19:57:12.686000','2019-11-25 19:57:12.686000',5,'Magdalena Dias','https://lh3.googleusercontent.com/-6Y_MjH3QaJs/AAAAAAAAAAI/AAAAAAAAAAA/42JuOx3LaMs/c-rp-mo-br100/photo.jpg','12541597562633926366',368),('AIe9_BGvUJd9etQojwpjZIMsiFneo00tYYzzhEDQJyJrqvjxKDXtzxGFBRAoTDIy5-d8dOTS7GfZQSEEF8EDBGvLbfrfEYFykGBi9KaMNlL-ZOWTrnLUFw8',NULL,'2019-09-18 09:04:15.456000','2019-09-18 09:04:15.456000',5,'Melvin Miller','https://lh5.googleusercontent.com/-NOaIVxppuxo/AAAAAAAAAAI/AAAAAAAAAAA/DyR-job6rHY/c-rp-mo-br100/photo.jpg','3511292162159714121',7174),('AIe9_BGvUJd9etQojwpjZIMsiFneo3NQbzT7_iBfkxZLu1YpY7EkrsJAzYEa26AVMSpubxCv-3dO-yV09Jfpxjh0l11VNoX2F61ePNLdvkN63E73BMw8pzw','Quick and fast service,Dr. was very knowledgeable,very nice staff I would recommend this emergency room to everyone!!','2019-11-16 17:53:03.985000','2019-11-16 17:53:03.985000',5,'Bernice Jackson','https://lh4.googleusercontent.com/-IgSoeUqNKA4/AAAAAAAAAAI/AAAAAAAAAAA/c1cjkDWO6kw/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',2683),('AIe9_BGvUJd9etQojwpjZIMsiFneO3qS7NjxHpYsqRcd6nbcaP2S3hnsUupTogwukg3uti2CA4XMVtxr3Ba7D5FPsDZSXQlzt-QqXIiw8Aj_llTxBUFh0Xw','It was amazing \nDr.Dendy\nNurse:Nicole G Brandon W\nReg:Vanessa G \nRad:Dustin H \nTech:Andrea','2019-12-22 05:02:38.710000','2019-12-22 05:02:38.710000',5,'Caren C','https://lh4.googleusercontent.com/-2VW7Lzqz2IE/AAAAAAAAAAI/AAAAAAAAAAA/h58ZiYggQx4/c-rp-mo-br100/photo.jpg','14567670160750071148',1165),('AIe9_BGvUJd9etQojwpjZIMsiFneO6YI3sJjzWkkwy1EUPiSzCWpCP9JLM0tOfhVNMPpgx4nLvvmIRVzVO9-gnY1ziONiiKdT8VSIv0Sshhc46I7bJJPC4A','amazing customer service. we were promptly greeted by amy and iza. the wait was short even though the clinic was busy, but the dr.was amazing and thorough. overall, an excellent experience!','2020-01-04 19:46:14.196000','2020-01-04 19:46:14.196000',5,'Babette Crowder','https://lh5.googleusercontent.com/-l1yu4caEkWs/AAAAAAAAAAI/AAAAAAAAAAA/fTRNPhT9tOI/c-rp-mo-br100/photo.jpg','3511292162159714121',14468),('AIe9_BGvUJd9etQojwpjZIMsiFneoKj4fbiO3EMOtEjLBCjh2ukF9nPcDx5S6CHK2A2aA9Y7JXSXl26ZyGgzwoTcmJFYEmMbNv2yddSPHYLotlbKz1oshRM','My experience at Signature Care was marvelous. The staff was amazing. They made sure I was comfortable while I received treatment.','2018-08-01 14:10:19.510000','2018-08-01 14:10:19.510000',5,'Keyonnia Austell','https://lh3.googleusercontent.com/-9L_qVj7aFUY/AAAAAAAAAAI/AAAAAAAAAAA/wWz52h_vWE4/c-rp-mo-br100/photo.jpg','14904078213800803294',2233),('AIe9_BGvUJd9etQojwpjZIMsiFneonAVqqEbXMj1PlN7yE2AjY5hekRbBvY__5dg3lDkQ2Lo2-k5UZWYF19E5NVgmcqbij9EJRFCSFwxJSzOw8mUyiaWUas','Dr.Alcanter and RN Dana were amazing ! Their bedside manner was very comforting. Dr. Alcanter was very thorough when explaining and took time to answer all of my questions. Absolutely Five star service!!! \nThe front desk staff was also very nice and professional! \nThe wait was very short ..','2019-09-16 18:27:30.459000','2019-09-16 18:27:30.459000',5,'Charisma Carter','https://lh3.googleusercontent.com/-M4QYi3yx0jE/AAAAAAAAAAI/AAAAAAAAAAA/ld_DQYuoA14/c-rp-mo-br100/photo.jpg','14567670160750071148',1236),('AIe9_BGvUJd9etQojwpjZIMsiFneOpZtMoZ-Ja780uRlt3FLizNnv5YYN5DMRZGQRnJaXeGHbZq7VTKihFqwHyuxSj96j3qoUuhDkMRYDAeJGZvM_lNTHkA','Quick and efficient service, friendly staff appropriate medical care provided.','2019-12-26 16:11:47.388000','2019-12-26 16:11:47.388000',5,'Taneisha','https://lh3.googleusercontent.com/-64hpFLzA1U0/AAAAAAAAAAI/AAAAAAAAAAA/Sswyp4Uwrik/c-rp-mo-br100/photo.jpg','12541597562633926366',301),('AIe9_BGvUJd9etQojwpjZIMsiFneOrBvw45cZGxErHhPH2-8NH3QnZuc4hgQEknJQ39krneJ4x4_esytRb_wrYDww4CEmo_AhwSXd_59r0_OuVu_B3VeBT8','Jennifer D, Nurse John Bell and Matt did a wonderful job taking care of all my health needs thank you guys you all are amazing!','2019-12-31 16:25:45.739000','2019-12-31 16:25:45.739000',5,'Retai Store','https://lh5.googleusercontent.com/-IEbMGIG1hsw/AAAAAAAAAAI/AAAAAAAAAAA/eyJDSeXNTPg/c-rp-mo-br100/photo.jpg','8626688543755174284',14634),('AIe9_BGvUJd9etQojwpjZIMsiFneow1FfZ1OEtnP92SZQ4vNY5V3OYK86Wg2vcyOJJECA4cIGodnVO0BIsrChEj7p7VJHi0oWhYtKNBGo1vNedvi5FIkH2c','I went to this emergency center a couple of nights ago when in a lot of pain from an infection. I was stunned by the warm and compassionate way in which the entire staff responded to me and my situation. I was immediately placed in a private room with a bed and given a freshly warmed blanket and something to drink. Every member of the staff was so pleasant and kind and every step was explained to me so that there were no surprises with either the diagnosis protocol or the billing. Even though they do not accept Medicare and I had to pay out of my own pocket, the charges were reasonable and more than worth it.\nThe staff members on duty that evening were:\nDr. Henderson\nNurse Alicia\nER Tech Elaine P.\nRegistration clerk Tanishia W.\n\nThank you so much!!\nD. Cimo','2019-11-16 18:04:26.438000','2019-11-16 18:04:26.438000',5,'Deborah Cimo','https://lh3.googleusercontent.com/-e2lNslgBVi4/AAAAAAAAAAI/AAAAAAAAAAA/jVmmMqr2Vuc/c-rp-mo-br100/photo.jpg','17898197009688164559',5431),('AIe9_BGvUJd9etQojwpjZIMsiFneP9ZVUcKvHLY5eJP-MM7j8AJCu8NTIy6iVbxQyr_sDV13JnFZHhj_ri-t8LPrfmVXJlnd8WhQQaWqsAerE__EPr7o3vg','Great Experience!! Dr.Garcia and the nurse Nicole and Joseph were very helpful..great and clean place and awesome service. Highly recommende!!','2020-02-02 19:01:11.358000','2020-02-02 19:01:11.358000',5,'Carina Leon','https://lh6.googleusercontent.com/-ozQ2GTCYFGA/AAAAAAAAAAI/AAAAAAAAAAA/NHkvOf3LINU/c-rp-mo-br100/photo.jpg','8918455867446117794',14851),('AIe9_BGvUJd9etQojwpjZIMsiFnePb2rpnH9X_-KLDWzFz7F08UShceAJK5QfRJTm9gxIaAAT88HAji13Kz509shcgTCo7fUOB8_9TJsq_0EMRUe8m4Ddpo',NULL,'2020-05-26 16:10:00.403000','2020-05-26 16:10:00.403000',5,'TexMex508','https://lh6.googleusercontent.com/-owtFq9BxRes/AAAAAAAAAAI/AAAAAAAAAAA/soNAFqQIyP8/c-rp-mo-br100/photo.jpg','16590124370714063921',22682),('AIe9_BGvUJd9etQojwpjZIMsiFnePdrm293oFkTtlTSWMqnPwXzNtTy9dMZpVLeYHp2S8GwVUQMCVN8kT_qojs5TdHSe4NK1VVWWbjDx-gTmzFJrS9tctU0','It was a pretty nice experience got to enjoy my free sprite while Jose, Alvean, and Jocelyn where checking on my fiancé’s pain. Would recommend this.','2020-02-22 23:45:36.990000','2020-02-22 23:45:36.990000',5,'JuJu','https://lh4.googleusercontent.com/-k29dcMdE61Y/AAAAAAAAAAI/AAAAAAAAAAA/4A0Qs1tMSGg/c-rp-mo-br100/photo.jpg','16389487648212004696',13778),('AIe9_BGvUJd9etQojwpjZIMsiFnepKZzfJOSqnS82mQ6wcgU6mSZqV9nwzmTMWKoyMRi3KeQJTxA_moKUobtd3bi73WHVRshlAvrPczYoxCNzyXcntYux0I','Everyone was helpful with taking care of me, from the front desk person to the nurses who took care of me. They would check on me periodically to make sure I was doing well. I would definitely go back if needed. I appreciate them making me feel comfortable while I took antibiotics through an IV. Keep up the great work guys. You will definitely get a great recommendation from me. I will definitely refer people to your location.','2017-05-06 22:21:14.899000','2017-05-06 22:21:14.899000',5,'Destiny Harris','https://lh5.googleusercontent.com/-2DrF9ILwzts/AAAAAAAAAAI/AAAAAAAAAAA/3Oi7AYqNRVY/c-rp-mo-br100/photo.jpg','14904078213800803294',2362),('AIe9_BGvUJd9etQojwpjZIMsiFnepmSsYOBuxjYr97W5-gDx03e9uDZPep7AZ4DHI9xnG-x9KxM24hLXYCiOMmCqFKpMhhv_p92hCOObVCZWgebpdSVMJMY','I had a bad experience, MY brother had a Big pain, and i called the 911 abs they Bring Us to San Jacinto, and we had yo Wait more that 3 hours for they to take Care oh him. They Was focused on the information and Work whaterer! Instead Of taking Care of him. Then when they saw him that he cant even tell then anything, then they took him to the room. And leave him hours+hours without salina me about him Or something. They when i told them, one Big word, they went inside to check him, and he wasnt good, he Was leaking on his back and the ecg wasnt promperle located. ','2015-02-17 19:26:58.311000','2015-02-17 19:26:58.311000',1,'Jafreysi Abad R','https://lh6.googleusercontent.com/-E2o8FBZ4wzE/AAAAAAAAAAI/AAAAAAAAAAA/RjXbwfcqU50/c-rp-mo-br100/photo.jpg','8679688254631342173',8934),('AIe9_BGvUJd9etQojwpjZIMsiFnepoF-4zdIEj07ymWCZ_kjxS6WNAtNEr52eutQSG_x0eVnmglQfoQt4tRYDDXS28KCWwmddkqsgSg-nYmfsOG-aTF7aEI','Best E.R I\'ve ever been','2019-01-14 02:01:09.337000','2019-01-14 02:01:09.337000',5,'ADA CAMACHO','https://lh5.googleusercontent.com/-Ks9UYF5N-J0/AAAAAAAAAAI/AAAAAAAAAAA/uNPXcQ3v3EE/c-rp-mo-br100/photo.jpg','14567670160750071148',1414),('AIe9_BGvUJd9etQojwpjZIMsiFnepQOQfLDpNuiK6GMlCamHbLjFPGXPcx4c1zKf291PAJwqtEbOR9Fu793HNPhgEY6ssZG5Fthq02NspEP9ytH7UNLDyu0','Dr. Ybarra, Blake, Yasmina, Richard, & Veronica are the best!','2019-12-21 21:22:37.055000','2019-12-21 21:22:37.055000',5,'Melissa Valdez','https://lh5.googleusercontent.com/-fsxYxdRF4Y4/AAAAAAAAAAI/AAAAAAAAAAA/5IjtD4KRbwg/c-rp-mo-br100/photo.jpg','8679688254631342173',8682),('AIe9_BGvUJd9etQojwpjZIMsiFnePRDoVrI_s5P7AclkbG1Vyfltn6VXFLxCXiekQGbARzRy09-cN-xApJCVJL2hnamFVoV8AhI4buY8IKdrovSlF3MnQnc','Dr. Golla is amazing, super hands on and definitely cares about his patients. All the staff has been absolutely amazing','2018-10-05 16:01:30.500000','2018-10-05 16:01:30.500000',5,'Kourtnee Duff','https://lh6.googleusercontent.com/-YcbOo1mOUls/AAAAAAAAAAI/AAAAAAAAAAA/q9Q_jdJ2jJs/c-rp-mo-br100/photo.jpg','3511292162159714121',7576),('AIe9_BGvUJd9etQojwpjZIMsiFnepRXRIPwXEbCFv6S-r0QEp6pmcZ43H7uj9_upz5Gw6cNmzRBSveFar7zdlI6hTv-WIEQ9B-1sfbc6FB4nQNdmxCIyhjA','Awesome experience! Lucas, Linda, Kim, and Sara were all wonderful with my daughter!','2020-01-31 01:46:24.761000','2020-01-31 01:46:24.761000',5,'Blair Richardson','https://lh4.googleusercontent.com/-MKXt0X2Lx-c/AAAAAAAAAAI/AAAAAAAAAAA/rwVbQ7ENTBw/c-rp-mo-br100/photo.jpg','3272657195432704501',10467),('AIe9_BGvUJd9etQojwpjZIMsiFneptTmp0LcEQXEJRGPUM_odAd0a-xC20y3XJzcr7z1fzMqXrhZoRaI3adJ5eYNSk828iLDoNCZG6tvFN1YmtqigApenpk',NULL,'2018-04-24 12:46:28.636000','2018-04-24 12:46:28.636000',5,'Kelly Krieg','https://lh4.googleusercontent.com/-dpQ2NNe1EXs/AAAAAAAAAAI/AAAAAAAAAAA/JuNfNtLRMEg/c-rp-mo-br100/photo.jpg','14567670160750071148',1629),('AIe9_BGvUJd9etQojwpjZIMsiFnepvKzvM4d2jfvS8TWhPfGCvFx-qywQ_8VA7-eEYltCm9TgwgjadCdn5MugMzHes0HXemq42VTXl7ktdTuO7OnqdJRJys','Great care! Very quick! Clean facility and very nice staff! Nurse Jennifer was very nice! Would recommend for all your emergency needs','2020-01-13 01:32:58.519000','2020-01-13 01:32:58.519000',5,'Xxfire wolfiexx','https://lh5.googleusercontent.com/-7D6Hsm5tTes/AAAAAAAAAAI/AAAAAAAAAAA/uOI1ehiZ138/c-rp-mo-ba3-br100/photo.jpg','8626688543755174284',14628),('AIe9_BGvUJd9etQojwpjZIMsiFnepxl-NBBfpfbz2Dd3yg03qbDtH-9u-6KltnQW3U3Rg_WgroAvs007VyiDv_Y9K64EpIokAz5CS4VnX1htEL7cVIVxowk','Exceptional staff! I had Alicia, John, and Kanyon. No wait. In and out in a little over an hour with xrays and all. Highly recommend!!','2019-05-20 15:40:51.592000','2019-05-20 15:40:51.592000',5,'eric sawyer','https://lh5.googleusercontent.com/-OEb1XCBJFPc/AAAAAAAAAAI/AAAAAAAAAAA/Vkb5nlFTkRA/c-rp-mo-br100/photo.jpg','8626688543755174284',8480),('AIe9_BGvUJd9etQojwpjZIMsiFnePzefgykPYgJwldR9GUTuaNYR9C8EKAZkkQPR9E3N6Bm2XBzyBv_l0VqS_cNqadCNecNIWTKo4iSXrMACgemDC9h66Vg','My mom works there and the staff at signature emergency center are really nice also Jessica Sanchez is the best manager there she’s nice helpful and friendly.','2020-08-08 02:14:53.477000','2020-08-08 02:14:53.477000',5,'vita franco','https://lh5.googleusercontent.com/-XqRuEJVNgk4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmhNuBC9d1QWjFgIEoHldpIBvJyWA/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22509),('AIe9_BGvUJd9etQojwpjZIMsiFneq12mIAaVWefISech0W3YRHp5dDWi9JqKSKs4Q969j2HogCi2NshHPR5YO6-K6SsxysWYycbvBmEKOnETzdUnPP2u12I','I had a great experience with Dawn, Agnes, Dr. Faig, Olivia, Eve, and Lizzie. Everyone was so friendly and efficient. There was no wait and the nurse and doctors came in very quickly.','2019-07-08 22:29:15.293000','2019-07-08 22:29:15.293000',5,'Maddie Talbert','https://lh3.googleusercontent.com/-Ed5QBVZdPi8/AAAAAAAAAAI/AAAAAAAAAAA/BIkqGOTrWx0/c-rp-mo-br100/photo.jpg','3511292162159714121',7258),('AIe9_BGvUJd9etQojwpjZIMsiFneq6q7Wx1nnMOYvSpaQTh8wYowjpbeGdeGD6f8jEVXABS-JoOWQDMw6FwXF6kx_K21YOvGFdPoYVoUma3t_zeAna7N6ZI','Super nice and super clean! :)','2019-12-07 16:35:54.961000','2019-12-07 16:35:54.961000',5,'Leeann Nguyen','https://lh5.googleusercontent.com/-wC1KxG9UZ-E/AAAAAAAAAAI/AAAAAAAAAAA/9uHzOJjoLg0/c-rp-mo-br100/photo.jpg','16590124370714063921',3040),('AIe9_BGvUJd9etQojwpjZIMsiFneqApTFxtSmtfDjzQW-4LFXr2YVLGbFXWJOhj_PssVLjCxF2okUFkK1185VY0yXpxHSAVE8HwwwFpdnDX6VsoRpxsCsps','Zero complaints; facilty was clean and quiet. Staff was attentive and professional. Overall, a pleasant experience.','2020-01-26 20:54:19.337000','2020-01-26 20:54:19.337000',5,'Naomi Poe','https://lh3.googleusercontent.com/-oROfpgV4YFY/AAAAAAAAAAI/AAAAAAAAAAA/6LkiwXjCcPw/c-rp-mo-br100/photo.jpg','12541597562633926366',10087),('AIe9_BGvUJd9etQojwpjZIMsiFneqAUPvYuYVlfpZyLEukpV4owtFKb-ASMBgyPG5C_apUHlre47TPbJr_rMsRDVrGOvm5GJessFlXsJ2Qo5_80e9_cxtpA','Very attentive staff...\nFrom check in to check out was excellent!\nNurse Agnes\nDr. Yusuf \nLaura was excellent!','2018-08-02 19:02:52.566000','2018-08-02 19:02:52.566000',5,'H. Russell James','https://lh5.googleusercontent.com/-QlUufz7hnSs/AAAAAAAAAAI/AAAAAAAAAAA/oQbBMFThmhM/c-rp-mo-br100/photo.jpg','3511292162159714121',7674),('AIe9_BGvUJd9etQojwpjZIMsiFneqBrrhMnzSmSa-ljH9vj_xkPmS2MvZulwadjN_FWX-Kshnf8X79xyMgujz-6n-FYj5m-Wu8OiG6NWtQ8h5ndb7S41RGo','Lorena T, Amanda C and Jacob were friendly and quick.','2020-07-29 13:27:46.758000','2020-07-29 13:27:46.758000',5,'vanesa rivera','https://lh5.googleusercontent.com/-_jILe6wca8E/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckPY0Yt24xqskRIWIeKHTc93cl1Hw/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22007),('AIe9_BGvUJd9etQojwpjZIMsiFneqC8O8uopURZ8fnH112z-hxemFs4lblsVqLbbbX5L1wasZS1NQrApYm2QjAAlZl9Da0dbCB6xbjU-LckZqu5WKaI9wdg','Jessica Sanchez was really sweet and helpful as well as the whole staff.','2019-08-24 07:30:19.704000','2019-08-24 07:30:19.704000',5,'Adrian Cardenas H','https://lh5.googleusercontent.com/-Lx-STSChQio/AAAAAAAAAAI/AAAAAAAAAAA/GFEWCvnXr4k/c-rp-mo-br100/photo.jpg','6521947413723274945',8157),('AIe9_BGvUJd9etQojwpjZIMsiFneQjnJRfrxGJ-FL5ILxG7_dDn5tvwVXpW2WISi5fj_zxO9pawmnQ1Ub8l2YcHfjjDnLfg7wV-WRRoXg0vVFSye6k6omQg',NULL,'2019-12-13 12:22:54.234000','2019-12-13 12:22:54.234000',1,'Hypolite Oliver Tossou','https://lh3.googleusercontent.com/-IL8aIxHl1Vw/AAAAAAAAAAI/AAAAAAAAAAA/urPEngYgQnA/c-rp-mo-br100/photo.jpg','17898197009688164559',5358),('AIe9_BGvUJd9etQojwpjZIMsiFneQJw1JoS9RpC5Jir2k_MUIa37o_A3dHauIMVShaaFK8u3Re8i8K-y_5-uk3mtWRtUmaoF0Pq20LH2fIwgoIY6d1FUlXA','This is my second visit here! Mercy, Yami, and the rest of the medical team were great and took care of me quickly. I was in and out with all of the information I needed and printed out ref material so that I could take it home. Would go again if I had to.','2017-04-23 16:42:46.429000','2017-04-23 16:42:46.429000',5,'Crimson Jordan','https://lh6.googleusercontent.com/-NDz4a0mC16A/AAAAAAAAAAI/AAAAAAAAAAA/OLjXDIjWTHg/c-rp-mo-br100/photo.jpg','3511292162159714121',7833),('AIe9_BGvUJd9etQojwpjZIMsiFneqk2JgCCaSy3PRk2tkgm1VtP_wLHN29N6OeKvz0LqA0Qr_ZARBPZ_nR1NIvxw_UoS7JWKnb2QWQyhtt5fNyvynwE9b0k','They are fast and very nice','2019-10-26 03:00:30.497000','2019-10-26 03:00:30.497000',5,'Karla Her','https://lh3.googleusercontent.com/-Szdi8PHmrTI/AAAAAAAAAAI/AAAAAAAAAAA/YKjI8_cTCTs/c-rp-mo-br100/photo.jpg','6521947413723274945',8110),('AIe9_BGvUJd9etQojwpjZIMsiFneqm5kY-ZR4-zevCWM6PzZxmdoAcjwYsXEjXV6sJiQRWbT5R2hPBZL0k3BBCMNZsPyhEASAj2mF6Kiaxe1fP9IpG-jDoY',NULL,'2019-06-17 03:58:18.857000','2019-06-17 03:58:18.857000',5,'Ben Crowell','https://lh3.googleusercontent.com/-lYPr6T2gi2Y/AAAAAAAAAAI/AAAAAAAAAAA/Xr6c-g70LEI/c-rp-mo-br100/photo.jpg','17394740196501090048',4663),('AIe9_BGvUJd9etQojwpjZIMsiFneQrepz9jj9rRxq3X-UxuqmVARkDN3S7kbxqHlYFPTE26iBqA5ckNgMKCsvWB79Qhc8uscf94rI7HI82uzoQOFgND86bw','Signature Care is a great Clinic to visit. Dr Patel was an awesome Doctor. Also the staff Amy, Joey, Josh & Rommel were extremely welcoming and friendly throughout my visit.','2019-05-07 06:08:14.874000','2019-05-07 06:08:14.874000',5,'Tricey Jones','https://lh5.googleusercontent.com/-MVQK7hh4-a8/AAAAAAAAAAI/AAAAAAAAAAA/VpkoKmIwTXQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7328),('AIe9_BGvUJd9etQojwpjZIMsiFneQrU0wZoPFUMa7rDfijkTaaD1pL97dPrjUgqpA9Xeb6FmYXh5Dgx3rGeYD8KNhQEEWwCN7rV5mJvsRqNqxnoiAxR5Djo','everyone was nice and respectful with no pain or struggles','2019-09-16 14:22:27.941000','2019-09-16 14:22:27.941000',5,'Girl Almighty','https://lh3.googleusercontent.com/-q5m86Eq7Zmg/AAAAAAAAAAI/AAAAAAAAAAA/2OfMM8Zdxsc/c-rp-mo-br100/photo.jpg','6521947413723274945',8142),('AIe9_BGvUJd9etQojwpjZIMsiFneQuOUYNC7rTQe6xPf9KG2-Shs_uLdJvu7BoUNQkv1TAEeUUawBdORPL6_AtIfaAczgqPrbOH7-4IF4iYmCbKTSZKIDRw','Upon entering the place you are greeted, they immediately helped me. I hadn\'t finished my paper work yet and they started taking care of me. The whole staff is wonderful there, so warm and kind. DR. AKUNYILI J EDOZIE is so awesome and funny, he kept everyone calm. Oh and I was amazed how little a CAT scan costs here! Overall I\'d recommend this place to all my friends and family. Thank you Signature Care staff:\n\nDR. AKUNYILI J EDOZIE \nNurse: Balita,Joseph \nFront Desk: Reyes, Jacqueline ','2017-06-21 14:15:25.282000','2017-06-21 14:15:25.282000',5,'Reina Rivera','https://lh6.googleusercontent.com/-4evdV-Vhmvg/AAAAAAAAAAI/AAAAAAAAAAA/RkcpMnvOZRY/c-rp-mo-br100/photo.jpg','14567670160750071148',1805),('AIe9_BGvUJd9etQojwpjZIMsiFneqWB6_KGvmRKkwn37Bcxvz6zpW7li44XuFpUMWFSbJsiTk1VQ_VGeHLBNBOZYSBPFz2KWnbzwHhWSd4oO_k5AKlASwoo','I took my 15 month old there on a Sunday morning. He developed an ear infection overnight. It was a nice place. New build out. There was no one else there and that should\'ve been my first clue. They gave my son Tylenol and gave me a prescription for an antibiotic. In and out in about 20 mins. Then I received about $4500 worth of bills. That\'s unreasonable. So far my insurance which is part of the Federal Employees Health Benefits has denied claims because they\'ve never filed a W-9 IRS form. Save yourself some time and headache and go somewhere else. Some of the good reviews on here were written by people who worked there. Look at the pictures on their profiles and then walk in that place and see if I\'m right. ','2016-01-25 19:56:57.902000','2016-01-25 19:56:57.902000',1,'Luis Blay','https://lh3.googleusercontent.com/-ApJiKDsKmTo/AAAAAAAAAAI/AAAAAAAAAAA/RWMiPtukM38/c-rp-mo-br100/photo.jpg','17898197009688164559',5949),('AIe9_BGvUJd9etQojwpjZIMsiFneqyIVk_0QD-Ps6Yfs9WUopBv21mgrJeCnNe-DzbD1sSZo6W5I5cwe4_WX26y_b_hzpwLYfRIxP7g8wbtfEPdCidGD0zM','Very excellent staff!','2018-08-08 20:55:53.766000','2018-08-08 20:55:53.766000',5,'Charlotte Morgan','https://lh6.googleusercontent.com/-PgDFjz398eI/AAAAAAAAAAI/AAAAAAAAAAA/eIKBVYcG52E/c-rp-mo-br100/photo.jpg','3511292162159714121',7651),('AIe9_BGvUJd9etQojwpjZIMsiFner-GioDbLaW3GmnG1_K7AExnAzkjkMsW5sd1xrNKtOQUq0gvVTxd88urYpy1egFC7xQHfi47g8P1wNb3qy4Yj_THmW9k','Amy and the whole staff were amazing','2019-03-10 01:52:21.895000','2019-03-10 01:52:21.895000',5,'Janee\' Nunley','https://lh4.googleusercontent.com/-QT3gNKbXvnc/AAAAAAAAAAI/AAAAAAAAAAA/X3uSwwIMrw4/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7390),('AIe9_BGvUJd9etQojwpjZIMsiFner238aekLBQEUy4HE72-oYeVTkGKg09ADdb5u-LWaiABNen08ogfUgVxtK8pBcpwBV_ds86jJMHwyASoiYc1v7SwYL48','As soon as we got there, the front desk lady Therisa was amazing. Yasmina,the ER tech, came out woth a smile amd helped us out. Then shortly after, the nurse Katrina was quick to come and assist us.it was a great experince of service at this urgent care.','2020-01-03 05:47:58.474000','2020-01-03 05:47:58.474000',5,'Nehal Alamleh','https://lh4.googleusercontent.com/-JoXc-lXI-3Y/AAAAAAAAAAI/AAAAAAAAAAA/Ox_PsCUgEiE/c-rp-mo-br100/photo.jpg','8679688254631342173',8659),('AIe9_BGvUJd9etQojwpjZIMsiFneR3dckjOWkassXoPbZPUlSyNmGrZR84tibfYG0Styq5uHqQs3a0Ux8chwzOJMMzUCaRdyW7mXMKpA2S8Bg63dFC10igI','Very friendly staff. Nurse Graciela and Jocelyn A were very helpful. The overall experience was great.','2019-12-16 19:56:43.169000','2019-12-16 19:56:43.169000',5,'Jamila Gordon','https://lh4.googleusercontent.com/-nR_XSgTY4CA/AAAAAAAAAAI/AAAAAAAAAAA/k3SSR95DOXU/c-rp-mo-br100/photo.jpg','16389487648212004696',2540),('AIe9_BGvUJd9etQojwpjZIMsiFner3h9D6MadGdMRPoaJyY5af7x267PGJvhogPaAf4d5ale5WINJOdohtYP3PH1H-0VaPWc-OwpLgmyIFIFWrZRfDCjGmY','All the staff were very attentive and I was seen in a very effective and efficient manner. All the tests and results have been explained and everyone had been very pleasant.','2019-02-14 15:28:41.078000','2019-02-14 15:28:41.078000',5,'janel liane cala','https://lh6.googleusercontent.com/-C67HJyPll90/AAAAAAAAAAI/AAAAAAAAAAA/wO9_buWBvsk/c-rp-mo-br100/photo.jpg','13486358490203335051',1068),('AIe9_BGvUJd9etQojwpjZIMsiFner9E2kSdvC6dnWI0UwLygqNPLwghhngNXH9UkfBYtV7-NMy6u3RT4-D6ToGy4hSROfVcujbppkXysnjEx_BPs7LQy8zI','Signature care in college station is the best emergency center I’ve been to. My friend and I were out in under an hour. They have the best doctors and nurses as well. The receptionist was very kind and explained everything we needed to know. She also offered water and coffee and she let us know what we needed to do to get through our time here. I highly recommend this emergency center.','2019-10-27 17:05:51.032000','2019-10-27 17:05:51.032000',5,'Avarey Anderson','https://lh3.googleusercontent.com/-eVrbTjQmFzw/AAAAAAAAAAI/AAAAAAAAAAA/QrT5qvUWqPU/c-rp-mo-br100/photo.jpg','16590124370714063921',3121),('AIe9_BGvUJd9etQojwpjZIMsiFnerA8pq2KRiKIU4gsPqF66jga-UAWlXbm5V4_7Y75fOQRxElgVcDh-sW8cP2HYWhYnt-ly13vZ1qZQhuWoALF61lHeNX4','Dr. Yusuf, Laura, Olivia, Eve and Shay were wonderfully professional and CARING.','2018-08-02 16:03:16.487000','2018-08-02 16:03:16.487000',5,'Wilbourn Woodward','https://lh4.googleusercontent.com/-qfN3yETWNnA/AAAAAAAAAAI/AAAAAAAAAAA/GxWmXWr7gC4/c-rp-mo-br100/photo.jpg','3511292162159714121',7676),('AIe9_BGvUJd9etQojwpjZIMsiFneRcwtpnSwIZAWmzkEA4d9mOCfBXhXXlkkxQdeU5R-gSmStxENYbnwaEm7lYd3PfmL8JVwsC-M9mCtGpSgkMToRvva1Qo',NULL,'2020-07-29 06:01:00.704000','2020-07-29 06:01:00.704000',5,'Blanca Trem','https://lh3.googleusercontent.com/a-/AOh14Gigb3WN8_uNGPQqQKGtE8KHL5QrhvrU1rRZIoLoPA=c0x00000000-cc-rp','8918455867446117794',22279),('AIe9_BGvUJd9etQojwpjZIMsiFneRCzlmis9kvdEAIcDJdYBmxd6lQePJR7KRf-e1WWfBQKODBO6rEOeypQM5KCOrN-XEIToqTelvQc8zGErQLI1Dfzpx3I','Have a broken foot dr gutfreund was great all the staff very awesome and helpful \nNurse Kim\nRadiology allison\nEr tech Jared\nRegistration sita\nFacility manager Erin mann','2019-03-14 00:37:16.424000','2019-03-14 00:37:16.424000',5,'gina solis','https://lh3.googleusercontent.com/-gbbrh-ufnh0/AAAAAAAAAAI/AAAAAAAAAAA/onrtuz1jAfg/c-rp-mo-br100/photo.jpg','13486358490203335051',1060),('AIe9_BGvUJd9etQojwpjZIMsiFneRDMeFAygYNk2I5r6I2oMIB0aoXd4ClqXv-pOJk_mbF92SE6nnQP2_FjK-HCMdeE0MDaCGU8HyYOGrwu1odj94Z581mE','Everyone was very nice did the best they can to see what was wrong with me. Worked very fast too I was out of there less than 2 hours.','2019-10-07 15:52:54.147000','2019-10-07 15:52:54.147000',5,'B ChAv','https://lh5.googleusercontent.com/-57uP55gI988/AAAAAAAAAAI/AAAAAAAAAAA/lEU-M3EkySs/c-rp-mo-br100/photo.jpg','12541597562633926366',405),('AIe9_BGvUJd9etQojwpjZIMsiFneRgdBeEyYidZ4Q_Rz68J5f3bJVm8GxpLP1GDD0ADt4kcgyA-ZsGab8-7UPkao3N6b1a1M5jqXcrqRQ2mJqhyV07yOK7M','Signature Care was the best experience I have ever had. Staff was professional, knowledgeable, and friendly. The place was so nice and I was seen almost immediately. Special thanks to Earl, Christina, Shelli, Tina, Freddie, and Dr. Rose for my 5 star treatment. Thank you guys!','2018-03-27 20:56:27.550000','2018-03-27 20:56:27.550000',5,'Chantell Mejia','https://lh4.googleusercontent.com/-RdO6Jt3_uQI/AAAAAAAAAAI/AAAAAAAAAAA/OtURPRN1WbU/c-rp-mo-br100/photo.jpg','16891069708558046635',4492),('AIe9_BGvUJd9etQojwpjZIMsiFnerGKvYRvj_csfrYc7G4ITR5w9DNCCfNbfyaoQjzoRl7YJg8_iH8ajUX2vg8nm-K5Tt2iNrcRyXQ-nm8aEAfGbshFuTAA','was greeted by Patricia at the front. Super nice and took care of me promptly. She was able to inform me of how the facility works and how my insurance would cover. I was taken in quickly by Traevis, he helped me out and was very nice and friendly. He was able to check in on me as needed. Alvean was my nurse and she was just amazing. Super fast at running IV (the worst thing ever!) and made it so easy for me to not feel a thing. The whole staff was just amazing and friendly. Highly recommend!','2020-02-27 21:03:20.157000','2020-02-27 21:03:20.157000',5,'Laura O','https://lh5.googleusercontent.com/-_xzNkTLrjno/AAAAAAAAAAI/AAAAAAAAAAA/gcmGvOzwb1w/c-rp-mo-br100/photo.jpg','16389487648212004696',13753),('AIe9_BGvUJd9etQojwpjZIMsiFnern4Hh1FcAxTVKzO5a-FoVyRZmgDFDBt3d2VVLS1aC3ktRFVVdOQdKdy8Rn5j1sZBmZqxU12LZ4Fc-HbKURtMSgZRHUQ','Awesome staff! Very knowledgeable and courteous! Would recommend to everyone! Thanks guys!','2017-03-10 20:46:26.717000','2017-03-10 20:46:26.717000',5,'Art Evers','https://lh5.googleusercontent.com/-c83qXHTfG4U/AAAAAAAAAAI/AAAAAAAAAAA/GqFMz8MzobM/c-rp-mo-br100/photo.jpg','16590124370714063921',4036),('AIe9_BGvUJd9etQojwpjZIMsiFneRnONCUqXcjGeGKZFDglraECY4atuiCn8XdyC3_S3bAO2ei8rBUEMldQK7zJsiAksstjZUO0Jf6z1wsfEpfkpdFfY6T0','The staff was so caring and sweet! I hate having to go the the Dr. but everyone was so amazing ❤️','2019-10-24 01:27:02.547000','2019-10-24 01:27:02.547000',5,'Jessica Bohn','https://lh4.googleusercontent.com/-qZqpboLrI9A/AAAAAAAAAAI/AAAAAAAAAAA/JuogxeApSLU/c-rp-mo-br100/photo.jpg','3272657195432704501',6876),('AIe9_BGvUJd9etQojwpjZIMsiFneRnVUTZLRHrOTGzJIhnwS4EjyRFI73DihfSXrA014giZUVxJwgW4xtKtU-g8H5kAEtV9q0gOUfuiJuFM5ATVUGpjJ-Mk',NULL,'2020-01-22 18:02:11.748000','2020-01-22 18:02:11.748000',5,'manuel gaytan','https://lh6.googleusercontent.com/-prAJ7tfcRWo/AAAAAAAAAAI/AAAAAAAAAAA/_rwgPnvPZ8g/c-rp-mo-br100/photo.jpg','14567670160750071148',10145),('AIe9_BGvUJd9etQojwpjZIMsiFnerq3dNDMXIdx6ZWButIpPoUiNyrxwQqNQYcfNUMDpNGAVP9YIXqFHdB2hh5v760V-8DqYHJe44KCO0HreIU2E1lCUGuU',NULL,'2017-12-19 14:09:01.651000','2017-12-19 14:09:01.651000',4,'Michael Byerley','https://lh4.googleusercontent.com/-wrYF7H-aVXE/AAAAAAAAAAI/AAAAAAAAAAA/MwCnfbdg_vE/c-rp-mo-ba5-br100/photo.jpg','14904078213800803294',2298),('AIe9_BGvUJd9etQojwpjZIMsiFneRQDvOCtBV8buOGJGg_SbMRuE9YDvmSXxDiiIUzXZHrOEGmkYbZWqXNTx7mjD9psBOdEkQYKePMLCFB3izKgVnvi-TKY','Love this place! Very caring and friendly staff all the around😊 Very clean environment. Maria was amazing as soon as I walked in greeted with a ☺\nThanks to the whole staff Kristina, Dr. Osieki, George, Andrew and Jared👌🏼','2019-10-06 18:27:59.106000','2019-10-06 18:27:59.106000',5,'Angie Moya','https://lh4.googleusercontent.com/-5IF1oA6YaMA/AAAAAAAAAAI/AAAAAAAAAAA/KdWwbEZmFf0/c-rp-mo-br100/photo.jpg','13486358490203335051',791),('AIe9_BGvUJd9etQojwpjZIMsiFneRtbPIIWelEspna736FNehbUljR4-47D3O77PGKXOaKvyhTBbM0Pak-ERtHFbXZ3kio0XRiFMd6eHrqrE7FURtgh8FCs',NULL,'2020-01-03 19:46:50.509000','2020-01-03 19:46:50.509000',5,'Adalberto Arguelles','https://lh4.googleusercontent.com/-ebBl36sZFLU/AAAAAAAAAAI/AAAAAAAAAAA/6IEMXDP4Et8/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',258),('AIe9_BGvUJd9etQojwpjZIMsiFnervK2nMqO9ou-rS78yWbRWz-GRG6eojyfgR02mQ420jL8VsPstovwZerfpw9AlBN-eFLevZbqG_trayK1I9_NMvL62nk','Very attentive to patients and ensuring they’re visit goes as smooth as possible. Inside is clean and nice. My boyfriend came in with a broken nose and RN Anthony and Dr. Vakey were thorough with their check and had a very quick response time. A great experience!','2019-01-21 22:33:18.373000','2019-01-21 22:33:18.373000',5,'Katherine McClelland','https://lh6.googleusercontent.com/-oYrc5JVuopo/AAAAAAAAAAI/AAAAAAAAAAA/OQCOk_MCfC4/c-rp-mo-br100/photo.jpg','16590124370714063921',3581),('AIe9_BGvUJd9etQojwpjZIMsiFneryf9-zvY8BRuryNL6G7fTEo7DcAb3GYG7KOVM4PtJgg4IxMMPFx-66fgY-TSWrutYRefhyNyehwduL1WzDGuRoq4s20','Prompt, Professional, Service. Highly recommend this location to all','2017-01-29 15:22:06.615000','2017-01-29 15:22:06.615000',5,'Lee Warrick','https://lh5.googleusercontent.com/-rEXMQTr-X4s/AAAAAAAAAAI/AAAAAAAAAAA/-NTH85j-2UQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5124),('AIe9_BGvUJd9etQojwpjZIMsiFneRZXNRciS_VXXTrMeN532kxIdsSTZm8p62jKmqMg4a3JqnYTJfpXaqxLS2okdlRaMuB210JlhOBRpluJMxl1qLBKtVKk','Dr Das is helpful and caring! Great customer service, time efficient and super friendly staff!','2020-08-07 14:28:15.310000','2020-08-07 14:28:15.310000',5,'Dolly Viera','https://lh3.googleusercontent.com/a-/AOh14GgUkcOEU8QXkINp4bYq2Mdsi2LBYK1mEdS684BQrw=c0x00000000-cc-rp','14748677429039074158',22515),('AIe9_BGvUJd9etQojwpjZIMsiFneS0fuDn7UGJAOIz2viM2rruBrgV4QH8SFdXwzlqBVVLSMcgOUAyefGSOS0dL9m6zwX2mTl24t565kgHcMC2n3K--nx6Q','Ryan and Katie are very sweet and attentive nurses.','2020-06-03 23:23:48.666000','2020-06-03 23:23:48.666000',5,'Madison Reel','https://lh3.googleusercontent.com/a-/AOh14GhrPICCHAo7Ly6gImnVEmU75kIlqeQwKVuZkYwO7g=c0x00000000-cc-rp','3272657195432704501',22129),('AIe9_BGvUJd9etQojwpjZIMsiFneS1lD_NeLk-o0CWRYz14INZACyp1eOJC_BDeLbdNAGv2MzvRwYVi5a77rp1rjixvTUpfLrZag1V_I1vlNYC-OEohKZ_k','The night ER doctor was awesome. My daughter forced me to go to an urgent care facility a couple of weeks ago. This location was the closest to my friend\'s house. What started out as movie night, turned into fright night. Long story short, I\'d decided to wear my pinkie ring on my toe that morning; well at around 8:00 that night, my toe became swollen and I could not get the ring off. The front staff were warm and friendly, attempting to make me feel comfortable in an uncomfortable situation. The doctor had to cut the ring off (and mind you this was 14kt gold and it don\'t give). That doctor felt so bad about the pain he was causing; but, it had to be done. The next morning, I received a follow-up call from the day doctor, checking on me and my toe (that I almost lost over a dang toe ring)! \n\nStaff were nice and doctors were awesome.','2015-04-17 21:10:01.062000','2015-04-17 21:10:01.062000',5,'lilwyde1','https://lh4.googleusercontent.com/-_f70VKe2J64/AAAAAAAAAAI/AAAAAAAAAAA/YoJW0JjvdfI/c-rp-mo-br100/photo.jpg','8679688254631342173',8930),('AIe9_BGvUJd9etQojwpjZIMsiFneS7ccG-GAPOap2zPAkPoIAlF_xPRJDvoxAM7t06PQAwMeKboftbvPWTLmvdWi8ghK9v5Nkb-cqz1q85kK8agi-etFz20','Staff is wonderful and service is professional!','2020-02-19 01:03:04.470000','2020-02-19 01:03:04.470000',5,'Markayla Starkey','https://lh3.googleusercontent.com/-XNtQkZlptxw/AAAAAAAAAAI/AAAAAAAAAAA/dvlYJMpP5YI/c-rp-mo-br100/photo.jpg','2694018788013845459',14226),('AIe9_BGvUJd9etQojwpjZIMsiFneSbMVuy9xIRxAMa8S2QsRDcIXYHZmp-zplAuHKWIuyG9OnjqtGvlhNn6uE_-kDZEZh28EbzwcFE7IM-BMIV8jKr8vM7Q','We came in at 3am and they took care of us right away. Ms Stephanie was very nice! Natalia and Rollie worked together to quickly take my daughters vitals with minimal discomfort and asked questions before the doctor saw us. Dr Nweze figure out what was wrong with my daughter within 45 mins at the most! They ended up finding what was going on, gave me an actual answer AND solution nobody else had been able to do. I was feeling so defeated but Dr Nzewe and the staff honestly made me feel at so much ease, something very few doctors had made me feel. Thank you so much to the entire staff here!!','2019-12-13 10:20:52.895000','2019-12-13 10:20:52.895000',5,'Yessica Hernandez','https://lh5.googleusercontent.com/-r25ytvXZMJk/AAAAAAAAAAI/AAAAAAAAAAA/N3nVn06U5p8/c-rp-mo-br100/photo.jpg','8679688254631342173',8693),('AIe9_BGvUJd9etQojwpjZIMsiFnesDGC7dooPQhyl8xWs_TUz9CeSXld-ba2-y-N2QymZ3jxzTzUWSs6TxOT3hE1ygjmEoTcKlT5Lg0rzhKDgN9lSpKFcCU','I visited SignatureCare Emergency Center yesterday and had an absolutely wonderful experience! Tiffany Galfore greeted me with a smile and was very welcoming. There was no wait! My nurse Betty Puac was very professional, and knowledgeable and Dr. Shelise Edwards was wonderful! She came in to talk to me and explain my diagnosis and medications. I loved the professional, efficiency, and organization. Not to mention the facility is very clean and beautiful. 5 stars for me will definitely recommend to friends and family.','2017-09-22 13:17:40.479000','2017-09-22 13:17:40.479000',5,'Claudia Arevalo','https://lh4.googleusercontent.com/-SMwtAX4RJ9Q/AAAAAAAAAAI/AAAAAAAAAAA/GqcWt0O16Tw/c-rp-mo-br100/photo.jpg','17394740196501090048',4968),('AIe9_BGvUJd9etQojwpjZIMsiFneSDLXYyuGivpXKR28xUbL2iooReJBlsE3P5YJS3XNIR4e3MVyoDbOof5mjuLjvpjn7FBg5R2U76t6-SAM3BCQF0NBojo','I had a great experience at the Montrose location. I didn’t wait long at all and everyone I came in contact with were very professional. My nurse Dawn offered me snacks while I waited and a blanket because I got wet from the rain. Dr. Yusuf did the same ! Thanks to all who helped me today: Ms./Mrs. Keaire, Olivia, and Eve as well.','2019-09-27 15:30:36.614000','2019-09-27 15:30:36.614000',5,'Calvin Breeland Jr','https://lh4.googleusercontent.com/-Tk7gLiCUoeU/AAAAAAAAAAI/AAAAAAAAAAA/xnYvsdA2a1o/c-rp-mo-br100/photo.jpg','3511292162159714121',7170),('AIe9_BGvUJd9etQojwpjZIMsiFnesGWaJopEHh9layX6n2Ek7ULWdVuMcBDnFt94IWOrJyFfTBKPE8_jerYwZeDtNyLRHUaCD7Hixd9-JYNxEdJYa_Nlww8','Shawn ,Carrie and Doctor was excellent and patient . Know wait time. Went for the COVID 19 I had the swab much better.','2020-05-20 20:00:25.027000','2020-05-20 20:00:25.027000',5,'Tammie James','https://lh6.googleusercontent.com/-nMCFD0qyGZY/AAAAAAAAAAI/AAAAAAAAAAA/Bg86yX15mKk/c-rp-mo-br100/photo.jpg','8918455867446117794',22946),('AIe9_BGvUJd9etQojwpjZIMsiFnesHIRMGJpBGdN6r7-xR9wO52blfGQwtsOUEuwCjvk0KpbzONYsU3ttFlgTAiHcq1E--j6KL_9Tf8uw0mySZ4WlAzqMWI','This place is amazing, they were very helpful and caring during our hard situation. Jessica Sanchez was nice and caring during the whole process. Definitely recommend signature care if you have an emergency','2020-07-21 15:31:38.600000','2020-07-21 15:31:38.600000',5,'becky mon','https://lh6.googleusercontent.com/--F-lu8g_m5I/AAAAAAAAAAI/AAAAAAAAAAA/udxHwXmsRJw/c-rp-mo-br100/photo.jpg','14748677429039074158',21622),('AIe9_BGvUJd9etQojwpjZIMsiFneSIYSL2YN7qx_C5mNMpyo9lculzC1axMXRBPReh1dHEuYi_h1w9WvtLtBBUh9VGX7vpHoi-bH5UTBo0mUzHA6jahMuUg',NULL,'2020-01-15 06:33:57.253000','2020-01-15 06:33:57.253000',5,'Alana Morphew','https://lh5.googleusercontent.com/-erZXKYwZo6g/AAAAAAAAAAI/AAAAAAAAAAA/-FREKnIq8VA/c-rp-mo-br100/photo.jpg','3272657195432704501',9812),('AIe9_BGvUJd9etQojwpjZIMsiFnesJ772b703JLQeDOxRIHl3LdAcx8chGZnC-EDB-YuTBTngfeXPk4qsdJc--RRNeDk_RXfXF2mD-OQubEFURa7b2YC8fE','They have amazing service. ','2017-09-08 13:40:41.996000','2017-09-08 13:40:41.996000',5,'Keyonnia Austell','https://lh3.googleusercontent.com/-9L_qVj7aFUY/AAAAAAAAAAI/AAAAAAAAAAA/wWz52h_vWE4/c-rp-mo-br100/photo.jpg','8918455867446117794',9363),('AIe9_BGvUJd9etQojwpjZIMsiFneSk8hKAw5Tf87TmMyhT98MM6yfeJepggk1r7uEsc8YErG_xnXzeU_DZj60Lm2C7zQM9FYsEo51vgxiYKQhEcVr-gNAfo','I came by and got all the help i needed! They are really amazing at Copperfield location','2019-10-14 20:02:30.732000','2019-10-14 20:02:30.732000',5,'Beyonce Kemi','https://lh6.googleusercontent.com/-mPLc92Pq5S4/AAAAAAAAAAI/AAAAAAAAAAA/5TXbXI81-ns/c-rp-mo-br100/photo.jpg','17898197009688164559',5506),('AIe9_BGvUJd9etQojwpjZIMsiFneSkB8XknxI-ARi2FvspCNaEV1dte_lYZAEFHfpgTddG1HvW_2z4qZUf6beFkrnKILE9lIXIe2gGldBpdRm1nkbbChCJQ','All of the staff was very informative, friendly, and accommodating. Kendra brought us pizza, Dr. Kimball was very quick and responsive and nurse Brentnie was very sweet and got my friend and I starbucks while we were waiting on test results. We really appreciated you all!','2020-03-08 04:36:39.265000','2020-03-08 04:36:39.265000',5,'Ashley Ridlon','https://lh5.googleusercontent.com/-eX-rVyyTeq0/AAAAAAAAAAI/AAAAAAAAAAA/SCUYIMXOc9Y/c-rp-mo-br100/photo.jpg','16590124370714063921',21031),('AIe9_BGvUJd9etQojwpjZIMsiFneSL0KOzHKHLrf-yxtVbaxzhngZIaykk7AIS__b6P3D7cREqg18FM2cD0T7dgL4oUVQq0f5tTIpJoVqMmkjVx_UsPCiYM','Doctor refuse to see me even if I told him I\'m not feeling well. Doctor as in doctor','2020-07-09 04:13:12.511000','2020-07-09 04:13:12.511000',1,'Cynthia Samson','https://lh3.googleusercontent.com/a-/AOh14GgikczEaYB56tpsXJj9N9nwYeNM6cK82lVAriGWjg=c0x00000000-cc-rp','14567670160750071148',21366),('AIe9_BGvUJd9etQojwpjZIMsiFneSN2Ky6EJoc-51Jo88sqZ9dwNLy47CHTUNh5e8-nEbkBMAM7Y3xeHCIlk87GnoBeR-OvH4WMQCx9_AQIg8VlklV-aeOU','Awesome staff! Very gentle, friendly, and consistent! Mercedes at the front desk, along with the doctors and nurses who assisted me made my visit less stressful.','2020-01-27 13:32:35.237000','2020-01-27 13:32:35.237000',5,'Taytiana Drake','https://lh4.googleusercontent.com/-lW_6CDXhsOA/AAAAAAAAAAI/AAAAAAAAAAA/N801YSoVOcs/c-rp-mo-br100/photo.jpg','8918455867446117794',14863),('AIe9_BGvUJd9etQojwpjZIMsiFneSNRCEkpWoZfNQpjGW2AW_8EXkL891_x9jpRv5KIhIiNj3b29NL9kkIBqKXgaDlmk2A3ZA2HtJyRh4AHPyEPa34s-f6Q','WOW!!!! My father in law was in town to assist us with our new baby but all of a sudden felt I\'ll. He has a cardiac history and was nervous of another episode but even more worried about the wait of an ER, the over abundance of unnecessary test so commonly done, the duration of stay, and the general experience. As we approached the front desk we were greeted by Natasha and as soon we informed her of his history, she called Christine, Tina, and Janet to take us to the back. They were super calm and informed us that their protocol required a series test to be completed asap. In minutes they had him attached to machines, blood work, xray , and wonderful Dr Rose doing an assessment. They explained that the tests would take a few moments to result but he appeared stable. Left us in a closed off room with privacy and not one of those rooms with the curtains that typically haven\'t been washed . Moments later the Nurse Manager Adam came in to let us know the next few steps in his care and if we needed anything. Within three hours he was cleared and we had the best experience ever. The very next day my new baby needed a retest for bilirubin since her previous test showed a drastic increase. It being New Year, we couldn\'t find a place open to get her blood test ran . We decided to ge to Signature again they were once again so easily accommodating. This was obviously not a typical request and instead of saying no, they can\'t, or acting clueless. They quickly checked us in and said they\'ll figure it out. Dr Rose evaluated her, nurse christina got her blood and we were discharged within the hour. Our pediatrician got the tests and it was simply to easy. Or how it should be in every medical office. Superb work!','2019-01-08 22:45:21.986000','2019-01-08 22:45:21.986000',5,'Chris Kelly','https://lh4.googleusercontent.com/-QhItKxgZnME/AAAAAAAAAAI/AAAAAAAAAAA/AuS5bdm5F9Q/c-rp-mo-br100/photo.jpg','16891069708558046635',4373),('AIe9_BGvUJd9etQojwpjZIMsiFneSoW1r8lvdjB27JFiQRgyijQ1porwhaaSm_FCFwR7-81tDH32PtvUWjtbiQz7DHmnX8eMtGOvkFA58xmkpIhfzZ7Imc8','From the Physcian Dr.Jaber Nurse Jeff M Er tech Dereck P were very helpful considerate and very knowledgeable. I really appreciate them today','2019-07-02 16:55:37.647000','2019-07-02 16:55:37.647000',5,'Victoria Wolridge','https://lh4.googleusercontent.com/-nXUzLCLrJfg/AAAAAAAAAAI/AAAAAAAAAAA/h3ebtrW7B-8/c-rp-mo-br100/photo.jpg','8918455867446117794',9106),('AIe9_BGvUJd9etQojwpjZIMsiFnespBa_v5xQEws5ZYW0_GCCvhDW0Sr2DIkGoTnhBQvpw7Kv7PX4iz60AVOZRK2WGotnHG_QNSzqkcBo6yew22qTSVpNMo',NULL,'2020-02-19 13:38:37.535000','2020-02-19 13:38:37.535000',5,'Deavon Williams','https://lh5.googleusercontent.com/-qDVx69POe_0/AAAAAAAAAAI/AAAAAAAAAAA/EoYpWKPByxo/c-rp-mo-br100/photo.jpg','16389487648212004696',10872),('AIe9_BGvUJd9etQojwpjZIMsiFneSRlQ5tVyafmsbOpZVXtBkECQiTHTB-8-cKkhOcZtHAUynvCaYy5WEguyKxqM3JiwOnZxx9ivIFef6PsMR5b4iOA8lhg',NULL,'2020-08-09 14:22:46.217000','2020-08-09 14:22:46.217000',5,'Faye Miller','https://lh3.googleusercontent.com/a-/AOh14Gi929wmiw4Qtz7rvbm_gwle7fNkTrTRsr37caQyzA=c0x00000000-cc-rp','13486358490203335051',21814),('AIe9_BGvUJd9etQojwpjZIMsiFnesSunWWUcOjDFSpwiRHjMwm2xvQD42jeqZRQhg9Jja8j6x-IPMkWylvrfxc66LXKzT_XTjS0QoFzsKermip3-c2B5bqI','Dr.cavazos, Rollie, Natalia, and Stephanie did an amazing job. They were super friendly and informative. The doctor was very knowledgeable and quick. Definitely recommend for any medical visits','2019-11-20 02:21:39.161000','2019-11-20 02:21:39.161000',5,'Alexis Bañuelos','https://lh4.googleusercontent.com/-mj2GZrH-PdA/AAAAAAAAAAI/AAAAAAAAAAA/YlFaZQk_9c0/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',8715),('AIe9_BGvUJd9etQojwpjZIMsiFnet7AlLDj1vWXU4Sbd4LQJrfMI658rEy81CZqJuADLttpBeIxCIJ4MA5wwcHd5igR2zHRJUhsprkYD3c53kR3I-IQR_6E','First I didn’t even wait long for them to see me. Second the whole staff was amazing! Third they all gave all the information I needed and more these people go above and beyond. Also they do have free Refreshments and little snacks I’m case you might need it the place is very nice as well.','2018-03-05 21:39:58.572000','2018-03-05 21:39:58.572000',5,'Carlos Rodriguez','https://lh6.googleusercontent.com/-PmYNkS9XtQY/AAAAAAAAAAI/AAAAAAAAAAA/qg5UJ9kQxHI/c-rp-mo-br100/photo.jpg','8918455867446117794',9281),('AIe9_BGvUJd9etQojwpjZIMsiFnetAyXm88Qr68HMBSfJgkV9dNIp9BheDR2MHA4FRp8q-RtYsMzFRb9XTBflDACLa7EKdsgQ9c3XoXxpZO_0JEUDUQgAUM','I arrived in the middle of the night with stomach pains and as soon as I walked in, the SignatureCare team made me feel so comfortable. Every single nurse and doctor that worked with me were so patient, friendly, and thorough. Dr. Miller took the time to explain my options to me and wasn’t pushy or rushed when discussing my health with myself and my husband. They also made my husband feel welcomed by giving him blankets, food, and drinks. A situation that could have been miserable was made a comfortable experience because of the SignatureCare team.','2018-04-23 23:33:05.132000','2018-04-23 23:33:05.132000',5,'Rebecca Mott','https://lh4.googleusercontent.com/-6kWwxXNvJkE/AAAAAAAAAAI/AAAAAAAAAAA/T7o_7ik7nfs/c-rp-mo-br100/photo.jpg','14567670160750071148',1631),('AIe9_BGvUJd9etQojwpjZIMsiFnetC_9KMUvKSW5x1S4QFBAG596cbItub8gBonUJ-XAJd36rAQiilPYdtYJUgBcC1iCS4ji4pbIKLrI6KDuuJK6o2IYDr0','Had a great experience Teresa M. Was polite and gentle.100%','2020-07-16 20:04:42.995000','2020-07-16 20:04:42.995000',5,'Anthony Subia','https://lh6.googleusercontent.com/-jJn_wiV58aY/AAAAAAAAAAI/AAAAAAAAAAA/IOecFju6dlw/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',22888),('AIe9_BGvUJd9etQojwpjZIMsiFnetDyiGMH9AtY1PiLe0p3gfMcsmDzrGoAnhgTdwAbiw9nvAKMaKJwdxNiX9VmMYIm_6I980gHkyK3JyXlGCJDZYQT_-I8','Even though I came in under some bad circumstances, the staff was super friendly and nice and explained every detail to me. They even gave my son snacks and juice, which as any parent knows, snacks help keep toddlers calm! Two big thumbs up from me for the excellent service and care I received from here! :) Dr. Elsbecker was nice and calm, and all the nurses (lots of Christina\'s!) were great and sweet.','2019-03-29 12:51:12.424000','2019-03-29 12:51:12.424000',5,'Christina Lopez','https://lh6.googleusercontent.com/-hXLakj-YX2U/AAAAAAAAAAI/AAAAAAAAAAA/vt-Od7TQYfQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4310),('AIe9_BGvUJd9etQojwpjZIMsiFneTer1NA-2eEzMQJHnFFKjn5xD8mEQ0RWuEd6uren4nweeHCOJ0efd_bHSjrzzu0bsxOX3jmKjpSuOOy-N3L4361WGFm0','I was skeptical due to me not wanting to go to the Urgent Care. But when we got there i was at ease. Everyone was thorough and very fast. I walked out the facility feeling much better. The staff was awesome. Would definitely recommend this facility','2019-01-08 15:16:35.235000','2019-01-08 15:16:35.235000',5,'Denzel Gilleylen','https://lh5.googleusercontent.com/-RMug5RZ94GM/AAAAAAAAAAI/AAAAAAAAAAA/YaNOOdykjxk/c-rp-mo-br100/photo.jpg','14904078213800803294',2185),('AIe9_BGvUJd9etQojwpjZIMsiFnethxpJMwO45MRTaJweCH6GYT8CMvYNO0CchB2BJtW_XgJO0JQMQ8eNmV57Oqfq2B4SollX5s6C3WqM91kA5wTOWSSfAE','An amazing group of caring individuals. Thank you Ekaterini S, Ezequiel M, and Patricia C for taking care of my every need.','2019-10-08 13:29:34.000000','2019-10-08 13:29:34.000000',5,'luisa salazar','https://lh4.googleusercontent.com/-AMbsAUTu4bY/AAAAAAAAAAI/AAAAAAAAAAA/7PzUAOzz3KI/c-rp-mo-br100/photo.jpg','16389487648212004696',2845),('AIe9_BGvUJd9etQojwpjZIMsiFnetI8TK-CO5ATdMmAA8C4QmmhwBspS_kIdcsj7upIXMUmEyBI2jSuI3nr_NwT6hQDWPLOukhnFPyImYjamwoPlo8CqYEw','Cody and Sam were great','2020-08-03 15:25:24.772000','2020-08-03 15:25:24.772000',5,'Elisa De Loera Gutierrez','https://lh5.googleusercontent.com/-hq_VFhKW8f8/AAAAAAAAAAI/AAAAAAAAAAA/sh_QkNijYYc/c-rp-mo-br100/photo.jpg','2077061009497551125',22759),('AIe9_BGvUJd9etQojwpjZIMsiFnetipb2jcaTa7PidWUsLywjTyBS9DrZAKjd7-eV5EPm32xkw0Db21-DbNoctvgX_vkwo8L7ZkAjEqsuGLif4W7xVnGej8','I loved everyone at Signature Care! Dyveliz and Kim were really friendly and helpful from the moment I came in. Jacob was a super personable and friendly nurse and made sure I was comfortable and made sure I understood the treatment I needed. JR was a great rad tech and Dr. Edozie was top notch. I would definitely recommend this place to my friends!','2017-07-08 21:18:20.798000','2017-07-08 21:18:20.798000',5,'Emily Hall','https://lh6.googleusercontent.com/-XzbYQvu22Ng/AAAAAAAAAAI/AAAAAAAAAAA/HKuTeFH0ngQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3971),('AIe9_BGvUJd9etQojwpjZIMsiFneTMoBEg6C7uSRXB8h-vpTeOf0QqMJXFMkVbALukN3YjRFRp6bsB9a9pfuyQ8n7rVLFgtN0uoR2UqIRKq7knUsP8kpZTo','new facility, very clean. staff very friendly and professional.','2017-06-22 22:54:43.796000','2017-06-22 22:54:43.796000',5,'Yongjing Chang','https://lh3.googleusercontent.com/-jvL4RPE4qTs/AAAAAAAAAAI/AAAAAAAAAAA/f2imGJTfDkg/c-rp-mo-br100/photo.jpg','14904078213800803294',2345),('AIe9_BGvUJd9etQojwpjZIMsiFnetnj_7IW-UmroDmkXcZ6vnaIcgdtU3Vjy_0plr4Njq6iTvVwLoDHkJfyT04X8oFe3rVb-3c2XFLCT9hTvmUoMi4ae-B0','I’ve had to visit here on a few different occasions for different incidents. Each time the treatment and efficiency is the same. Clear communication, quick test results and, genuine care and professionalism. If you need an ER in the heights area this is the place for you.','2019-09-09 16:06:47.959000','2019-09-09 16:06:47.959000',5,'Angela Kitterman','https://lh3.googleusercontent.com/-8vhcyNZsiVI/AAAAAAAAAAI/AAAAAAAAAAA/h2LhCvZksbQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1247),('AIe9_BGvUJd9etQojwpjZIMsiFneTP5q_YYBTXuCfxRM4ubxqVqCObufUB3XpunYHUPE7fVoZo2OjGGnaDbuYCItr3d5ptFKb2CKTM9YJyg9lgBiIwzsMz0','They were professional and courteous, I had options by Dr.Harjai. Him and my nurse Alvean had my best interest at heart. From the time I walked from Alvean, to Richard, to Deanna, down to Sean, nothing but professional. I give them 5 stars and will be back for any emergency needs.','2019-08-24 21:23:22.779000','2019-08-24 21:23:22.779000',5,'Monica Smith','https://lh6.googleusercontent.com/-ikYKcXnEXlA/AAAAAAAAAAI/AAAAAAAAAAA/GkBUBLDtofE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFneTrG7M--KZCAyduANVHeRmd7XNa04j9DXsOVnGZOJrbiB2WvvWWI6uEUH_MRgDrRiKkR8vsk8uhFXV5lVKEJPlLsvoFw','very friendly and fast ! 🥳🥳 lisa, matt, savannah kristine, jamie, and dr huerta were amazing !!','2019-06-12 15:00:33.019000','2019-06-12 15:00:33.019000',5,'Liliana Valdez','https://lh5.googleusercontent.com/-Iihw7Er45YI/AAAAAAAAAAI/AAAAAAAAAAA/OOa78X1ZlrE/c-rp-mo-br100/photo.jpg','13486358490203335051',968),('AIe9_BGvUJd9etQojwpjZIMsiFnetu2JxXi5spXdBMgoLx0o138jMFNEzSicKwCeYModjWobVbW0T3VEPLZEPur1fXaUPANipEhML4WgQd-DoDqH8vAFIHs','This place is the best, I will never go anywhere else. The customer service is outstanding, the building is emaciate, and all with little to no wait. Best ER experience we have ever had. Highly recommend them!!!','2019-07-11 00:31:44.338000','2019-07-11 00:31:44.338000',5,'nathan power','https://lh6.googleusercontent.com/-ur5VGShCwH0/AAAAAAAAAAI/AAAAAAAAAAA/aOXynSqF_N8/c-rp-mo-br100/photo.jpg','2694018788013845459',6112),('AIe9_BGvUJd9etQojwpjZIMsiFnetWJeMzG-DTUb4MLMyuBpgruEquifQ70eUZqKkd_m9NwHPDJDMs632DVY9-AHC99siEMkTgSGxUVfybsBE9lTsfLBP28','Very quick and friendly! Would definitely recommend','2019-12-31 09:44:53.757000','2019-12-31 09:44:53.757000',5,'Babyykayy','https://lh5.googleusercontent.com/-NI08OJByoh0/AAAAAAAAAAI/AAAAAAAAAAA/ttzAiXLlqB4/c-rp-mo-br100/photo.jpg','12541597562633926366',278),('AIe9_BGvUJd9etQojwpjZIMsiFneTXaizr0eljcQlypDsoCX11GGeKsALpgKqBJ866lYO4x8EJujvT4mnsixjX6i11cnbWQDhv7uqUlKWG7L2Lc2-e56joA','Great','2018-07-10 18:25:36.557000','2018-07-10 18:25:36.557000',5,'Crystal Simmons','https://lh5.googleusercontent.com/-vZXg_GMh_7w/AAAAAAAAAAI/AAAAAAAAAAA/HkBy6fqAlOE/c-rp-mo-br100/photo.jpg','14567670160750071148',1604),('AIe9_BGvUJd9etQojwpjZIMsiFneu1ek0G9porOBCT3TirK4DH_v-ggAa6bqfVIDRhjbwekXVv_AWiq69-jYFzbnbPw3BoqRpisLTZKE_7103BvW-Z7DFYc',NULL,'2019-01-04 00:32:09.962000','2019-01-04 00:32:09.962000',5,'Xochi Allen','https://lh6.googleusercontent.com/-2ZT5BfcN9Fs/AAAAAAAAAAI/AAAAAAAAAAA/XCGxmgTl7MI/c-rp-mo-br100/photo.jpg','17898197009688164559',5897),('AIe9_BGvUJd9etQojwpjZIMsiFneu6SjaF-l6zgC6qN8UGVQ01nfFib87iUJlK5IaJyIdS2wJrw_IG_FS9lfJ1gKh27yjCiJjC5MM9VW4LyLp1xYO1jI2qQ','Went in for a seizure. Very nice and professional. Alfred, in particular, was a very calming presence.','2017-11-27 20:25:36.083000','2017-11-27 20:25:36.083000',5,'Dan','https://lh4.googleusercontent.com/-aSpGhvidiao/AAAAAAAAAAI/AAAAAAAAAAA/o5uMs5S7Pk8/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1725),('AIe9_BGvUJd9etQojwpjZIMsiFneu9azmAKakXaop01epvx91Qo_UPlhalFC1zzuOm3ywSigAYjfjeXFhXJS9A3pUowvyTN_da8CIOCAV7xGIBaIYrbaBok','I am so glad I brought my husband here! Very friendly, prompt, and courteous staff. From the front desk, to Nurse Gina, Vivienne, Rad tech John, ER tech Natalie, and Dr. Miller, they were all awesome and caring! We were seen within like 5-10 minutes and treated special with warm blankets in a nice room. Facility is very clean and nice. I would definitely recommend this place to anyone and everyone! Great job guys, thank you for treating my husband with great care! :-)','2020-01-15 19:38:49.411000','2020-01-15 19:38:49.411000',5,'Jocelynn Rodriguez','https://lh3.googleusercontent.com/-YGRk_OEIihs/AAAAAAAAAAI/AAAAAAAAAAA/4DPk9cBAbDg/c-rp-mo-br100/photo.jpg','14567670160750071148',9692),('AIe9_BGvUJd9etQojwpjZIMsiFneUHUoLsn4VU0ErAc48BZu6IpElccL4bLgTNbmHo6aqvLHMy3fvqfO--cjlbdKVLLI-QAMRZO0N7Oze2N18vBUPLxxwVU','I can’t tell you enough good things to say about the care we have received from Sarah, James, Dr. Thomas, and can’t forget Daniel. The took great care of my son!!!','2019-11-20 01:27:37.175000','2019-11-20 01:27:37.175000',5,'Fonda Higgenbotham','https://lh3.googleusercontent.com/-3bnXilZWqpE/AAAAAAAAAAI/AAAAAAAAAAA/bDSRJ3XoHAk/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5420),('AIe9_BGvUJd9etQojwpjZIMsiFneuIi9CBnSzpk_rODleskJBW7g-F7FCFAGVo-C4ZvUOxuq8d9HjFfZiUECk4ErKtDiwXf3fNIrqu39iV5eYDLfIiHo1UA','Cindy was very sweet at the reception desk and the nurse was awesome! Quick and easy!','2019-06-15 03:24:58.741000','2019-06-15 03:24:58.741000',5,'Caleb Starnes','https://lh4.googleusercontent.com/-JBlcB0bZgAs/AAAAAAAAAAI/AAAAAAAAAAA/3StGHDMLydo/c-rp-mo-br100/photo.jpg','17394740196501090048',4665),('AIe9_BGvUJd9etQojwpjZIMsiFneUJrzNK6gpFLMTSVAKhCfX9hKpuEYMtgRGHLPaotDjgFtsGCDBGoG_OLINq1yIH1v33PRe6mDsb_YQLXcn1cbh5pp5z4','I had a great experience. The whole staff at Copperfield was very helpful and sweet. I would like to give a shout out to Dr. Hall, Angela A, Shelley, Chantel, Jessica, Terra !! :)','2019-10-12 00:02:39.883000','2019-10-12 00:02:39.883000',5,'Veronica Martinez','https://lh5.googleusercontent.com/-3skLJ_MUXzY/AAAAAAAAAAI/AAAAAAAAAAA/o77V6xYXkJU/c-rp-mo-br100/photo.jpg','17898197009688164559',5511),('AIe9_BGvUJd9etQojwpjZIMsiFneUl7XBC1TecWD6_MR2z_hBcMfERRPDX-CQF-T7-gAcny476PZ4ChYlMdW2_FC4siPi_OH84Nypv7xk28pdTnBUccU40s',NULL,'2018-12-20 17:51:47.872000','2018-12-20 17:51:47.872000',5,'Jewelrus La Vaughn','https://lh3.googleusercontent.com/-ywwauHrjj4I/AAAAAAAAAAI/AAAAAAAAAAA/STcZ0ORbZmA/c-rp-mo-br100/photo.jpg','17394740196501090048',4751),('AIe9_BGvUJd9etQojwpjZIMsiFneuLmh8gNrTHhDzeqkp8COROgRMBlwMtkxwIXsafV4oqRt8_aS8ehMmoAFDqhYsfBMFxHXkpjmaeyRlv8_TNiFNHaFwbY','Friendly people and great service I’m so happy with this people:Nguyen, Racheal,James and Kayla','2020-03-09 21:41:48.838000','2020-03-09 21:41:48.838000',5,'The roblox squad ROBLOX','https://lh6.googleusercontent.com/-gwGMTWMsIEU/AAAAAAAAAAI/AAAAAAAAAAA/j_Bdn77aCZE/c-rp-mo-br100/photo.jpg','17898197009688164559',21096),('AIe9_BGvUJd9etQojwpjZIMsiFneULXxQQyRPk8GJrRcKt41popWIpUU4vZK8Z151jVC5WJhqdh9ft1NIOA2GKhCkvCpfY60lreK9cSKGdwrEmmaf68y2DM','The staff is very friendly and welcoming. they make sure i was comfortable all the time.','2020-01-16 08:34:58.662000','2020-01-16 08:34:58.662000',5,'Josue Merino','https://lh4.googleusercontent.com/-JrgBy1_IPMM/AAAAAAAAAAI/AAAAAAAAAAA/shEXTtSjyLk/c-rp-mo-br100/photo.jpg','12541597562633926366',9657),('AIe9_BGvUJd9etQojwpjZIMsiFneUm3_6DMXZbKOgG-rQ1TN1Er5XLKUotP_IbowXou6WLBezovHkzY51p04womojGgloImKP5cpUQb1Juo3f0TuTyQj3Cs','Charles was very helpful and professional.','2017-02-03 21:30:23.194000','2017-02-03 21:30:23.194000',5,'Cassandra Perez','https://lh6.googleusercontent.com/-K34jNs3EMDw/AAAAAAAAAAI/AAAAAAAAAAA/wPGSXfrVTkI/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2419),('AIe9_BGvUJd9etQojwpjZIMsiFneumwPthmCeXf1YJuKqbtxYOUxv2bGZnT3SmGqUDMX8kr8UEXTPcJUkfk9OMmegqupj86kzPraukxVVaI8T-Idglckmko','great care service.','2020-05-29 01:53:49.147000','2020-05-29 01:53:49.147000',5,'perry a johnson','https://lh4.googleusercontent.com/-Xx5s_8i9_SU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck6vxJF-jBLjMfERCqyZIyp2DkANQ/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22106),('AIe9_BGvUJd9etQojwpjZIMsiFneUN5DW_KvJHbjDTqvosu-_cNKSYj9v36HhDdiefzWKsLnQ0I9F9bgrN73ppiDaMLuj9dmx1XWPULl-Cdli8XM8BEORUE','Very professional and friendly staff. I didn’t have any wait and was taken back quickly after signing in. The doctor was very thorough in finding out what was going on. The nurses were all very friendly and caring and made sure I was comfortable. I would definitely recommend SignatureCare to my friends and family. \nThanks Dr. Huerta, Nurse Kim & Allison, and Sita!','2019-08-19 04:26:20.118000','2019-08-19 04:26:20.118000',5,'Faith Gainer','https://lh5.googleusercontent.com/-KNm9M0vXQ2Q/AAAAAAAAAAI/AAAAAAAAAAA/poQdPZRB8Is/c-rp-mo-br100/photo.jpg','13486358490203335051',851),('AIe9_BGvUJd9etQojwpjZIMsiFneuOD9MiD3gLJ1SJfNLS-YCfm1eCX0MPBMNR4ov-hAmW87i0k2IWT6jlKrUGc0ZXHtRXd4TnTdWcQhGIVMyPE6-Sp7WOE','My daughter split her chin open and we had to go by at midnight to get her stitched up. I was greeted by Hayleigh S., and she was very kind. We were admitted immediately, and had very good care. We were offered food, blankets, and received very good dialogue on what was happening. We were done in a couple hours and back home.','2018-09-06 00:59:29.892000','2018-09-06 00:59:29.892000',5,'Taylor M','https://lh3.googleusercontent.com/-h03x9z751j4/AAAAAAAAAAI/AAAAAAAAAAA/DEinRi9jxCY/c-rp-mo-br100/photo.jpg','14567670160750071148',1531),('AIe9_BGvUJd9etQojwpjZIMsiFneurVYNFJEpwEH414y4yGbO4K62-bn7f1dxxPx-q7L9LSl3ZNyVAqCcZkbFH1nzddrkVFG6NRm9Cv-Y3eZieL1uRe6QEo','Wow, if I died, I wish heaven hospital would be like this place. I came in at 3:30 am due to chest pain and shortness of breath. I thought I was going to die. I changed into my clean underwear just in case. \n\nAs soon as I entered the building, I was attended immediately. The staff members started working on me. They were all so professional and nice; they make me feel like I was at home being cared for by my love ones. \n\nSoon Dr. Cheng came in to my room and introduced himself. He read all my history and physical documentations. Dr. Cheng took his time to explain all the lab work results to me including the EKG results and my final diagnosis was pericarditis (inflammation around the outer lining of the heart). He spent over an hour teaching and advising me on my medical condition. He gave me some pain medication in the clinic and a prescription for pain and anti-inflammation medication.\n\nI was discharged a couple of hours later with pain free and anxiety free. I only have to pay the copay, which I was very happy. I also received a couple of visitor gifts on the way out.\n\nI was very surprised when I received a call from Dr. Cheng the next day expressing his concern about me. I have never received this kind of medical treatment in my life, and I have been in and out of the hospital so many times.\n\nI am very sorry that past clients did not receive the exceptional service that I have received. But maybe your voice has made this place perfect for future clients like myself. So thank you for your service. I hope that you would come back to see what a good deed you have done.\n\nSincerely,\nThien Nguyen\n\nP.S \nI am not associated with any staff members or the clinic. I believe people who stay up all night long to provide good medical service to people in need deserve recognition.\nDid I mention that this place is fully staffed and well equipped, wow again?\n','2015-06-04 21:46:23.811000','2015-06-04 21:46:23.811000',5,'thien ngyen','https://lh5.googleusercontent.com/--M6EAuCSoZg/AAAAAAAAAAI/AAAAAAAAAAA/Kw6vkUmlG_Y/c-rp-mo-br100/photo.jpg','8679688254631342173',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFneUTsYOsIpxGxVQr2ezWWyQ-OTW3xw4Wp8U1NYQenBv7DrxH4P1S9IaxWtMB1uh2QimXYI8ZbmHioesK_aM6qJUl2gVWc','They were great with their service. I was in and out. Sarah was awesome','2019-12-02 04:14:29.883000','2019-12-02 04:14:29.883000',5,'Dino Wallace','https://lh4.googleusercontent.com/-ekCRFRL9yXQ/AAAAAAAAAAI/AAAAAAAAAAA/LHsyuOHCC4o/c-rp-mo-br100/photo.jpg','17898197009688164559',5390),('AIe9_BGvUJd9etQojwpjZIMsiFneV-3mQC2Mr05Zclv5e411B1FHjYjewaDham1-gDzmX6lcvSmAqd2Lh0xfHguJFlKgHzwPDak4wKbkVDzYEImjETDj7GA','Great service! Kim was really helpful and I was taken care of really fast and easy!','2017-01-19 20:32:04.484000','2017-01-19 17:14:01.160000',5,'Xavier Nieto','https://lh3.googleusercontent.com/-4YAwD3lH59c/AAAAAAAAAAI/AAAAAAAAAAA/sC1el93hFOw/c-rp-mo-br100/photo.jpg','16590124370714063921',4090),('AIe9_BGvUJd9etQojwpjZIMsiFneV2dt67fOa7wUr324V3ULUBmuRxJ-0xuBcwo8-wMhLFjBWXcKsBipqc92OTyrv7YImPTDdMnDMumGK4sm_J72c8f2C6w','Very friendly staff and quick service. I did not have to wait AT ALL which is amazing and everyone was so nice, professional, and gentle with my injury.','2020-01-17 20:16:34.971000','2020-01-17 20:16:34.971000',5,'Jade Nolan','https://lh6.googleusercontent.com/-S6AWBpBWv7A/AAAAAAAAAAI/AAAAAAAAAAA/yWP8veCa0SQ/c-rp-mo-br100/photo.jpg','14904078213800803294',13630),('AIe9_BGvUJd9etQojwpjZIMsiFnev59-ScHnUhj-28dPws4iUaAAsqIq1_56SUrVqw3iLVscxK-Uf8w91TN-pC582Hmxp1pjm4Z1Abuh-pNhMAfbnIbERc8',NULL,'2020-02-14 20:17:30.194000','2020-02-14 20:17:30.194000',5,'Jessica Clemons','https://lh4.googleusercontent.com/-JIcL-RMZD-o/AAAAAAAAAAI/AAAAAAAAAAA/THDVZ69z0Xw/c-rp-mo-br100/photo.jpg','13486358490203335051',13424),('AIe9_BGvUJd9etQojwpjZIMsiFneVaf3hrH4qTW82w0JQhgIeWN5SHnjkqVqfUgSdx26bGlVRdOmbCaWRdyJRe5in-dh_1ask5aByzhjLMxzDQDlCnhaCQk','Staff was very courteous, and quick. They took care of me, even before paperwork was completed. I would recommend Signature Care','2018-08-06 17:54:59.652000','2018-08-06 17:54:59.652000',5,'Juliana Martinez','https://lh5.googleusercontent.com/-D_waNosfSA4/AAAAAAAAAAI/AAAAAAAAAAA/jjCs5hyN7BE/c-rp-mo-br100/photo.jpg','8918455867446117794',9251),('AIe9_BGvUJd9etQojwpjZIMsiFneVi_di_3Sk6EbaQFXDvwd2dYBiy__Uzl3nlLv8RyOUxgu8KqmE35HmtKnQXnPEBlfuXMNgBipfYVvePdesZNX1tAtAGw','Was well taken care of','2020-05-30 03:45:09.056000','2020-05-30 03:45:09.056000',5,'Gary Malcolm','https://lh5.googleusercontent.com/-8ETLLfX0p_o/AAAAAAAAAAI/AAAAAAAAAAA/PLjdl7KAGO8/c-rp-mo-br100/photo.jpg','6521947413723274945',22902),('AIe9_BGvUJd9etQojwpjZIMsiFneviKts2XEyDb3TCBWRS8If8Rm3BTYxMhfCu1CxB0JYbaxPQE6qTWE5DZONtzNhi3g16xoM3E1msFJlqbqVcZZ4hcfpcQ','Patricia and Alvean was great. Very helpful and made my stay comfortable.','2020-01-27 00:05:27.310000','2020-01-27 00:05:27.310000',5,'Katrina J','https://lh3.googleusercontent.com/-GFRGdNH5MeA/AAAAAAAAAAI/AAAAAAAAAAA/6hyx8QIn5gA/c-rp-mo-br100/photo.jpg','16389487648212004696',10173),('AIe9_BGvUJd9etQojwpjZIMsiFnevIohIF-1UGoYeaB8JqWaW4QC6CspKndc-4rrPOVo8fVyC1AovQukVYlvCR-B4Kz8vQp3yo8drAKxKyfcOE9aFT9cZUY','Delicia was very helpful!','2020-01-22 21:15:12.966000','2020-01-22 21:15:12.966000',5,'Jaylen Gray','https://lh6.googleusercontent.com/-M92pZy5iGBc/AAAAAAAAAAI/AAAAAAAAAAA/RJ5WMMI0lVM/c-rp-mo-br100/photo.jpg','8679688254631342173',10346),('AIe9_BGvUJd9etQojwpjZIMsiFneVL6V_D7p4X--ccaCyFUzjjd1VgWlCGzge2mwwuYWblD1ru9OsIG4b2RykYa2dY-0PlQ7ngpHu2Nc4lcmyjUL-Nv1eFo','ER Tech Leah was great 👍','2020-08-03 13:29:16.734000','2020-08-03 13:29:16.734000',4,'Marco Hernandez','https://lh5.googleusercontent.com/-uHXzYO8Bp0k/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckmkNS19lsuLKxOvMOlzCm8KqYx2g/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21827),('AIe9_BGvUJd9etQojwpjZIMsiFnevNjcf751OqwhVyNo7dtk5L-hLBz3B4iHdhfllunnVu8VqfNb65eeKXTdEjl2dMlL2gXB6-gl_KtWP1cJqGhIObqloMA',NULL,'2017-03-18 18:32:54.314000','2017-03-18 18:32:54.314000',5,'Dinara Sunagatullina','https://lh5.googleusercontent.com/-BsqkJxX6Or0/AAAAAAAAAAI/AAAAAAAAAAA/OctZLUq4W_0/c-rp-mo-br100/photo.jpg','14904078213800803294',2385),('AIe9_BGvUJd9etQojwpjZIMsiFnevOCDCUsaLPXmtTNtpZcTPydWtxahGcpy-Q1cNBHJHajmU9GNlNekfkTERAjns6hh9Kg8Ega0R4CnNSNsQykPS2_OUbI','Went there and the whole staff was so very caring!! Loved the atmosphere, the nurses carried on a conversation with me and joked around with me, they even showed me the sonogram screen and showed me my gallbladder!! This will be the only er I will ever use!!','2019-04-02 04:55:02.949000','2019-04-02 04:55:02.949000',5,'Jaime Harrell','https://lh6.googleusercontent.com/-cUvyQfx20mA/AAAAAAAAAAI/AAAAAAAAAAA/5_qGg267BGs/c-rp-mo-br100/photo.jpg','3272657195432704501',6980),('AIe9_BGvUJd9etQojwpjZIMsiFnevqVzqCsTh765Y6xxMoqtDHC5YDXFsc4W1k03FpTlQaOWPCqKWV1mvlJNxWEWLEhEH76Ohw-WKCOZAcNBAvqtBVTd2NQ','Everytime I have any medical problems I go here when I have health insurance. So does my sister. We have fast, quality care from caring and attentive staff. They make sure our concerns are thoughtfully answered and give us clear instructions.\n\nSignature Care saved my life twice by their quick action and care when I needed it the most and I will always bring anyone in my family here or recommend them to everyone I know. \n\nWe love Dr. YOST, Lucas, carla, Jennifer and the rest the staff there.','2020-02-01 19:43:29.413000','2020-02-01 19:43:29.413000',5,'Mandie C. Purifoy','https://lh6.googleusercontent.com/-8HNWUDOumA4/AAAAAAAAAAI/AAAAAAAAAAA/iQR_Xt8cUqg/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',14383),('AIe9_BGvUJd9etQojwpjZIMsiFneVsaKEV_a2pCsNEU2KEq0KogdBBL4HMd51b5lFSchXmXSL4oHMkESEdgWNj7vFoqMdSDFR5yotfQ_Kv3CHkk3jUzQnyE','Went here for a rapid COVID test.\nScheduled my appointment 24 hours in advance (the soonest they will allow).\nThe staff was very pleasant and made me feel comfortable.\nAnd they had very safe social distancing procedures with a person monitoring the door and how many people were allowed inside the waiting room.\nIf you need to get a rapid COVID test, I recommend this location.','2020-07-26 19:31:11.656000','2020-07-26 19:31:11.656000',5,'Michael Greene','https://lh4.googleusercontent.com/-A-z9bn5lhkI/AAAAAAAAAAI/AAAAAAAAAAA/ziugOm5l2tA/c-rp-mo-br100/photo.jpg','2077061009497551125',22824),('AIe9_BGvUJd9etQojwpjZIMsiFnevsr80tHsyl1cwWfyYJ7r3kEna8qpNw9if1bTDo3z8Uxiu-ll01o44mV4d7w_cT_psyFN5DzTl78P_-JaU-Gqvll_kaA','The staff at this center are always so nice and fast! Nurse Brad and Tech JR helped me even as I whined like a baby! 10/10 will continue to recommend.','2019-02-21 14:15:18.235000','2019-02-21 14:15:18.235000',5,'Kiersten Vaughan','https://lh4.googleusercontent.com/-Zjn-BBV_YR8/AAAAAAAAAAI/AAAAAAAAAAA/Mw2hlUBUM4Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3533),('AIe9_BGvUJd9etQojwpjZIMsiFnevStxc_yZkP1ALY267BTrtm9YDD2mJ25-1N_JBU04lYgfPJmbUfgDANtOqbsoQiRfeKAL_YY4yCTqlF5Lbo3C5FtTN7o','Excellent care and quick in/out. 5 out of 5 stars thanks Jennifer Erica and Ashley!!!','2019-05-04 14:46:21.523000','2019-05-04 14:46:21.523000',5,'Ryan Nance','https://lh6.googleusercontent.com/-XLzOEBaDsw4/AAAAAAAAAAI/AAAAAAAAAAA/tv6guYH9kNo/c-rp-mo-br100/photo.jpg','8626688543755174284',8496),('AIe9_BGvUJd9etQojwpjZIMsiFnevziQugrTzPfDwD2b0Pt-MGcPUa-LUcN89ERGwIXjudOksljtEWyveVd2_iob8VSRssoWRp2DlXn0avoy9ZcNpkbDLnA','Ms. Jocelyn was so kind even with everything that\'s been going on I was seen right away! \nMs. Alvean made me feel so comfortable and at peace very kind and broke down all my questions. HIGHLY recommend Signature Care (Cypress) to anyone who is suffering from mild cold etc.','2020-03-18 15:32:21.373000','2020-03-18 15:32:21.373000',5,'Ashley Landin','https://lh4.googleusercontent.com/-eaN27sxZiOw/AAAAAAAAAAI/AAAAAAAAAAA/cEEAqQ_qqhw/c-rp-mo-br100/photo.jpg','16389487648212004696',21005),('AIe9_BGvUJd9etQojwpjZIMsiFneVzt_a1ruxuklsLLOT4Owr0e4vtg3u3d6v3LaAzxP_ffDNAK_dNopaWmvrSajaH0lVabiG17ydjIQNDYryafagZgt4KU','Alyssa P was very helpful at the front desk. Super fast service. Doctors and nurses were very friendly and helpful.','2019-12-14 20:46:15.538000','2019-12-14 20:46:15.538000',5,'Kayla H','https://lh6.googleusercontent.com/-ge9IzBriQk8/AAAAAAAAAAI/AAAAAAAAAAA/Stc1H39bjLU/c-rp-mo-br100/photo.jpg','8918455867446117794',9030),('AIe9_BGvUJd9etQojwpjZIMsiFneW9b6mexWL-ZvmK2KOtHcdrKD_SUGtBTO6SnX0vgvFMmcI2zZa9SqWP5up2f3Is9u1YLOGw6w59hYGP9EzBDEJn8b7uY','My visit was great! I was treated quickly. My nurse Trini was very kind and caring. The X-ray tech Marcus was very compassionate and friendly. The ER Tech Pete did a great job getting my labs. Even the receptionist Jacquie, was attentive and professional. Special Thanks to Dr. Daniels who was very thorough and took the time to listen to me, addressing all my concerns.','2020-02-22 07:54:21.033000','2020-02-22 07:54:21.033000',5,'Tammy Burk','https://lh5.googleusercontent.com/-AdRc0wGkF8s/AAAAAAAAAAI/AAAAAAAAAAA/hvYkO6uX_UQ/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',14562),('AIe9_BGvUJd9etQojwpjZIMsiFneWDOFKc7tiK8ffct-Dgd-dqwRNVju3OyuyVUfS-kxxmN4Ih3dqtonpQOXcbATanXhoIt1stQ5SRFVe8tVWR8pil-Pnw8','Dr. Spangler, Duke-nurse, Amy-registration and Waldo- rad tech we’re very friendly and helpful. They made us very comfortable. From check in to check out the service was great.','2019-06-12 13:01:26.795000','2019-06-12 13:01:26.795000',5,'Tyra Williams','https://lh3.googleusercontent.com/-7kt14cRq-Dk/AAAAAAAAAAI/AAAAAAAAAAA/czfAYOhOW0E/c-rp-mo-br100/photo.jpg','8679688254631342173',8836),('AIe9_BGvUJd9etQojwpjZIMsiFneWDSbK_Vw5u09uc4DVwNPULMbWt2D1vtwzrb3Cp6xIkZ82f3Rt3xXSEJRHZZ9GJ-eFL5ai6DU-vSefWrNBYxK5mfsBps','Hands down this is the best Er! Maria who works at front desk made me feel welcome and even help me fill out paper work she can answer questions and is very helpful. Dr.Osiecke and was very concerned she took Everything serious and was able to help me. Christina was such an excellent nurse very attentive. Megali is a radiology and was beyond nice! Elza is a tech and I couldn\'t of been more happy with the staff! They are way better than Excel.','2019-09-26 19:13:47.184000','2019-09-26 19:13:47.184000',5,'Lucy Enriquez','https://lh5.googleusercontent.com/-SoLqX3dwyIQ/AAAAAAAAAAI/AAAAAAAAAAA/mHtwIYMoHxE/c-rp-mo-br100/photo.jpg','6521947413723274945',8128),('AIe9_BGvUJd9etQojwpjZIMsiFnewf7ee3PeCn47jq1aeG2MswJx_9p2SwOLTFoVLNVYChUgOuN2W9M_7B_-xrujXOVeeV-lQO8Paq2BRUQf7zbhQv4Xk7Q','Very fast and amazing friendly staff!','2019-05-31 03:28:18.569000','2019-05-31 03:28:18.569000',5,'Starla Keller','https://lh6.googleusercontent.com/-xcilCkAP4RM/AAAAAAAAAAI/AAAAAAAAAAA/cTp5pQaVPV4/c-rp-mo-br100/photo.jpg','8626688543755174284',8467),('AIe9_BGvUJd9etQojwpjZIMsiFneWisrqiPmANB8Klw-4VWF_efpL3Cw9428Jbig7siSBZ1EM3ATed31iWYNiwyX6a_ZLiioMaPgEXo1IeMOAdui0bMBcP4','I came in on Friday with symptoms consistent with the flu and I was greeted and treated promptly, my nurse Lucas was amazing as well as Dr. Ashbrooks! I came back in today to bring in my daughter to get tested and treated for of course, the flu. Same experience if not better! Lucas was great with my daughter and Dr. Curtis was great and thorough as well. Laynie wasn’t scared at all during the visit. She was also given a little goody bag that she loved! They really go above and beyond for their patients! We highly recommend :)!','2020-02-17 16:53:57.177000','2020-02-17 16:53:57.177000',5,'Anna McConnell','https://lh6.googleusercontent.com/-FoxzS-2E9Lo/AAAAAAAAAAI/AAAAAAAAAAA/-mgeeTn2a1g/c-rp-mo-br100/photo.jpg','3272657195432704501',14352),('AIe9_BGvUJd9etQojwpjZIMsiFnewLUPmlIfGYnAfsH2chkDNehCr6fTyw10sRHWx40VRZSIfYDziXk7x2WhisVJWMoQQjCUyZWn42JBcTkRVkUg9baXc80','Friendly staff. Quick quality service.','2019-05-31 20:29:37.016000','2019-05-31 20:29:37.016000',5,'Allie Winters','https://lh5.googleusercontent.com/-dBvidyN-PX4/AAAAAAAAAAI/AAAAAAAAAAA/7i2X8EyhWvQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3372),('AIe9_BGvUJd9etQojwpjZIMsiFnewOAk1Rg6PwktBn4NJ4z_eC-xyZMIpWWhUm9nssatD-30OzIzSpDt9PsvkoIKVUgCZhFDyJHiZGb9qf-QS6eldDwoe1c','Amazing group of folks. Nurse Sarah and Radiology tech Fatima were amazing. My son is no easy case when it comes to strep and flu swabbing. They handled it like pros. Dr. Faig was knowledgeable, thorough and attentive. This was a pleasant way to spend a hard night. Not to mention Tanishia, the receptionist, warmed us up from beginning to end. I highly recommend SignatureCare Emergency Center Copperfield.','2019-11-13 04:14:10.295000','2019-11-13 04:14:10.295000',5,'Jordyn Lorenz','https://lh4.googleusercontent.com/-pJ4aFulYBhc/AAAAAAAAAAI/AAAAAAAAAAA/9moLD3Pqgvc/c-rp-mo-br100/photo.jpg','17898197009688164559',5438),('AIe9_BGvUJd9etQojwpjZIMsiFneWoPhoBsuoUaVx0qtkHsrZYIWxua-NGmTypTkWb6B5z4Qu1NLBS9YUKZLeVTO1IpY9Q4OhpubzskyWt7bUZO0oWaElso','From the moment we arrived, Leslie helped us sign in and got our paperwork ready quickly. We were then brought in by Dawn and Eve, whom are very kind and took the time to listen to our problems patiently. \nDr. Faig is very informative and patiently answered all our questions, he has shown genuine concern. He and his staff are awesome. Dawn took blood and hooked up the IV and constantly checked us to make sure that we had everything we needed while we waited on lab results. Eve helped my mother in law to the restroom and to get her CT scans done with so much care, we really appreciate it. Olivia came in and withdrew some blood, she was kind and gentle.\nOther than coming here do to an illness, our experience has been a good one. Thank you all!','2019-08-01 17:49:30.609000','2019-08-01 17:49:30.609000',5,'M Avila','https://lh4.googleusercontent.com/-YZt3b7ceym8/AAAAAAAAAAI/AAAAAAAAAAA/WyTpPYeGwGQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7231),('AIe9_BGvUJd9etQojwpjZIMsiFneWQXuj5ZeqAfsSaImAvcywRravtKu00QtwX6RGEaHsj28J7LuMAyK-bsOGmhI3a8vlzqbNjVxtB6j9wnpUrvayTwULkA',NULL,'2020-06-04 02:37:44.421000','2020-06-04 02:37:44.421000',5,'master jr Sanchez','https://lh3.googleusercontent.com/-0sruOUqVdGw/AAAAAAAAAAI/AAAAAAAAAAA/Banb_OfAFSs/c-rp-mo-br100/photo.jpg','8918455867446117794',22936),('AIe9_BGvUJd9etQojwpjZIMsiFnewrpyGgTzaRXi334pdeEAPRJQucnwc6lRsobczEaeNJ67_j1ordTIY_ZrjzULLdepuUD7E7kzoCtoeXYnQvZr0S9jAg8','Everyone here was so nice and helpful. I was able to get instant help. Dr. Patel is so nice and caring, she answered all of my worries. \n Nurse Alvean and Tricia were so patient and helpful with me. Thank God for Signature Care Emergency Center (Cypress). They offered me water, a warm blanket, and they made sure all of my needs were met. Awesome crew!','2019-06-06 22:10:24.719000','2019-06-06 22:10:24.719000',5,'Lanetha Jefferson','https://lh5.googleusercontent.com/-xqsEA4D3dOY/AAAAAAAAAAI/AAAAAAAAAAA/lXMei8a6JsI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFneWwAwDCOyvpdQNIcTFtUH0_qkSCnclf8pkTS7a3GhIWcLf3hhIXgp6jCExJ0x6Ndt6g1vvfMBaFonZw4HG_8wJDFC9us','I was very impressed with the facility as well as with the staff. The nurse was very knowledgeable and courteous......but I could tell his demeanor changed after I assured him of which arm to draw my blood from. He wasn\'t nasty or rude but I could tell that I touched a nerve. I did apologize if I made him to feel as though I questioned his ability to \"ONE STICK\", I hate needles. Nevertheless, the doctor was very nice, knowledgeable, and concerned as well. I would definitely go again.','2018-01-10 15:24:11.511000','2018-01-10 15:24:11.511000',5,'PJ Norseweather','https://lh3.googleusercontent.com/-X5CL4msEmj0/AAAAAAAAAAI/AAAAAAAAAAA/4dwdncqdGWo/c-rp-mo-br100/photo.jpg','17394740196501090048',4902),('AIe9_BGvUJd9etQojwpjZIMsiFnewWGn97n2ghUcQ6_t6twayX5PKaVi-VrO9iX-EGjRHtsbMhpTszFxOyl48RDxo1KG1pom0YUChu9gR3dT3G6xJGWM5_4','Wonderful service by all the staff. Thanks Ashley B, Jamie and Matt!','2019-01-10 01:32:17.730000','2019-01-10 01:32:17.730000',5,'jo Mcc','https://lh6.googleusercontent.com/-Kf8qAo27d2c/AAAAAAAAAAI/AAAAAAAAAAA/6SxNH4RLVcM/c-rp-mo-br100/photo.jpg','8626688543755174284',8593),('AIe9_BGvUJd9etQojwpjZIMsiFneWXHvs8IIOfotrWkLhwefar1FZNuDiVuu2u0l7iJlLqPgAvEBrItCMS94FAWklyJ9gSRjxjbui-DqSfRAlOlcfNQRQeg','Very efficient and friendly atmosphere.','2016-12-04 21:52:53.318000','2016-12-04 21:52:53.318000',5,'Frances Cardenas','https://lh5.googleusercontent.com/-SDdUU_zhGwQ/AAAAAAAAAAI/AAAAAAAAAAA/dFtZpVJxgRg/c-rp-mo-br100/photo.jpg','14904078213800803294',2444),('AIe9_BGvUJd9etQojwpjZIMsiFneX_zRA8IzvGR4cawLD4DxDCH2D5QgkMctiCYR8hz7hGlrumaxV7NYiGA5RYPGEgyeZa1powSbr_t1vP9xZdfP25og4tM',NULL,'2017-04-27 00:08:17.738000','2017-04-27 00:08:17.738000',5,'meghan diede','https://lh6.googleusercontent.com/-maexA4d2V4g/AAAAAAAAAAI/AAAAAAAAAAA/uHoPzHMWMBY/c-rp-mo-br100/photo.jpg','3511292162159714121',7829),('AIe9_BGvUJd9etQojwpjZIMsiFneX3VWYxhcg97WxgXOsn2NV0ulLGU_jng2tP3BNqlw1e-Y2CO53wH6oNpovLMnJJfkD47fBOYHGPhcg6d2oygz6GtDaMU','Awesome staff: Manny Aaron Pete and Lisa. Quick service. Short wait time. 👍','2019-01-13 23:34:41.989000','2019-01-13 23:34:41.989000',4,'Angie Saenz','https://lh4.googleusercontent.com/-Zzc0kix3j6w/AAAAAAAAAAI/AAAAAAAAAAA/dzi43DXxU9Q/c-rp-mo-br100/photo.jpg','6521947413723274945',8329),('AIe9_BGvUJd9etQojwpjZIMsiFnex4QFhV4t2GCiJyWDvdjmZvy2nWRsEC96MmAE5Mfz-HSReZCpoV4Ie5KgsfcqTEgSbY9S1Fq0iI_EkOj8eyd_JiwIIlE','Dr Elsbecker, Shelli and Linda were awesome','2019-12-16 17:26:33.299000','2019-12-16 17:26:33.299000',5,'Lynn M','https://lh6.googleusercontent.com/-X7qNBNSPjMU/AAAAAAAAAAI/AAAAAAAAAAA/Y6pA0Co8how/c-rp-mo-br100/photo.jpg','16891069708558046635',4118),('AIe9_BGvUJd9etQojwpjZIMsiFnexE99dy9cyz4bUehpdsvODO6zjHYwZz0NsCz3osacLiPYd0vIhSXwywuWR5Z-KKeioMsGBDimMI3uoGSt8g8Wz0lsEdE','This place is AMAZING. I honestly feel like I spent time filling out the paperwork more than anything. The nurse was fantastic and so was the doc. They gave me a breakdown of what I needed to do to get the best results for my care. I would highly recommend this place to anyone who wants personal care.','2019-08-05 04:40:38.353000','2019-08-05 04:40:38.353000',5,'Denise Juarez','https://lh4.googleusercontent.com/-NUwHFggNkGU/AAAAAAAAAAI/AAAAAAAAAAA/W0ykINWTfng/c-rp-mo-br100/photo.jpg','16891069708558046635',4227),('AIe9_BGvUJd9etQojwpjZIMsiFneXeIrJrkKVbrB7lB7gBa5PXfR78wC--vY7hlLGa4YQc0R6949pdVa0yNXD4JhEM7sO7EqL1XMMHeZMPe_9VrRfzcWduc','Great service!!! Highly recommended!!!','2019-03-29 02:50:01.779000','2019-03-29 02:50:01.779000',5,'John Burnett','https://lh4.googleusercontent.com/-kZKo3DH7iR8/AAAAAAAAAAI/AAAAAAAAAAA/voJowk2QRRc/c-rp-mo-br100/photo.jpg','17898197009688164559',5791),('AIe9_BGvUJd9etQojwpjZIMsiFneXFqR4i_FdmvpUWSbNAS8hHYpctyUNXlNOLU7EsSZ2_Pa00vNMOZte_BtH92C3y7syHLlwsQ3AyrpdpZ1DjwOlGiXrEQ',NULL,'2019-05-15 22:18:56.579000','2019-05-15 22:18:56.579000',5,'Jearmey Morgan','https://lh5.googleusercontent.com/-TZNxbUzuBPc/AAAAAAAAAAI/AAAAAAAAAAA/Z2FsMla9L8M/c-rp-mo-br100/photo.jpg','8626688543755174284',8484),('AIe9_BGvUJd9etQojwpjZIMsiFnexfzKwh-5zTV1e5EJX0MOjAxIzHlBUndvbTkHOnxBslLgEmOpBWxj84BK4DKQAIUx-3qB6CDGLPuLK7E801TzqSOwsmI','This has been the fastest ER visit I have ever experienced, while being cared for in a professional and friendly manner. I highly recommend this facility.','2017-09-06 19:45:05.792000','2017-09-06 19:45:05.792000',5,'jaynazier','https://lh5.googleusercontent.com/-l-NXMAdqCHw/AAAAAAAAAAI/AAAAAAAAAAA/AQ5_K9GxiMg/c-rp-mo-br100/photo.jpg','17394740196501090048',4981),('AIe9_BGvUJd9etQojwpjZIMsiFneXGbPUlLiqtGyN6O7Ynq2GSVo2vIcCWqZNgzDmz4kcncVkb2pjIEnIEMSRxvRqHXuLuNhqbhx7aL-r3pFCc5O8lOlJH8','Went on a Sunday at 5 am. Staff was friendly. My doctor was really informative. They called two days after to check up on me and gave me more information on how I was doing and what to expect. 10/10 going back.','2018-08-14 00:12:38.410000','2018-08-14 00:12:38.410000',5,'Kristyn Kaufmann','https://lh6.googleusercontent.com/-EqzXmWc19-w/AAAAAAAAAAI/AAAAAAAAAAA/z1qiX8atHfo/c-rp-mo-br100/photo.jpg','3511292162159714121',7622),('AIe9_BGvUJd9etQojwpjZIMsiFnexh-qxsCkvENU_ubui_kLYKFRQd49YJTPJ0Tf4zNXdpJcqRYtRODhZG-b2YDQx6PCa32XmaE7TZ1A1QdHnGyat1ELnkM','Tanisha was really helpful and patient and nurse Lynn was nice too.','2020-02-17 03:36:32.850000','2020-02-17 03:36:32.850000',5,'Duane Shipp','https://lh4.googleusercontent.com/-6y8XKhA6N0o/AAAAAAAAAAI/AAAAAAAAAAA/_hvIrZ9WZ1Y/c-rp-mo-br100/photo.jpg','17898197009688164559',14167),('AIe9_BGvUJd9etQojwpjZIMsiFneXKsQ2q_QFeaGZqkLptmtLUPpQhwehkGIie-STJJCD2KJLNFdgA3U2uf2FbFfX7yBiL30AQErUcPfPMzx9lZOCWL0U1o','Great experience!','2020-01-16 23:36:16.269000','2020-01-16 23:36:16.269000',5,'Jaylen Gray','https://lh6.googleusercontent.com/-M92pZy5iGBc/AAAAAAAAAAI/AAAAAAAAAAA/RJ5WMMI0lVM/c-rp-mo-br100/photo.jpg','8918455867446117794',14872),('AIe9_BGvUJd9etQojwpjZIMsiFneXMaL7KXA9DqouUnai19VNX8kGfDsHyPtB-g-84znTgg8aa306yrdxY6Io56ZLqM-ZutWLA7hulh6qv3JHbVWYKMJ6Gc',NULL,'2020-03-05 16:22:54.342000','2020-03-05 16:22:54.342000',5,'Melanie Hernandez','https://lh5.googleusercontent.com/-YrYsjr3-9hQ/AAAAAAAAAAI/AAAAAAAAAAA/3Hb_SiiyDAY/c-rp-mo-br100/photo.jpg','17898197009688164559',15283),('AIe9_BGvUJd9etQojwpjZIMsiFnexmN_vjHshzypMck26En_CD04To2iBbnBg66PnD6o4FtSwGuAxdMhazpXEF-XyIBtSEmP7ztG-WC2X9LBkMN2rKI0UXc','I tested here twice already, I love that they took us in as appointment and walk in. Today I was fortunate enough to get greeted in by Elisa T., she was very helpful and professional. After getting tested the wait time is about 30 min, free test if u got insurance, or else it’s 175$. From what I heard test are more accurate than the free test everyone been waiting on. Will definitely come here again, thank you for y’all help ladies, in a desperate time ppl be acting like fools, not wearing masks and risking others lives (just saying).','2020-07-31 00:54:22.062000','2020-07-31 00:54:22.062000',5,'Bere Villanueva','https://lh3.googleusercontent.com/-eUUsPC7jh9o/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclt2VsEDiztpVfXaYd7E1yTgVeiug/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22273),('AIe9_BGvUJd9etQojwpjZIMsiFnexOhcDxrsLNNqUJmmgecH-Hyvuw9J4wzipw-JVQMfUozPW2UUFuuZr9aolNzQLVNaTDUFaK4fqxZVY4_Wat9X6R3unLQ',NULL,'2019-01-04 03:20:15.818000','2019-01-04 03:20:15.818000',5,'Melissa Hurbs','https://lh6.googleusercontent.com/-rtrgxXIzg_w/AAAAAAAAAAI/AAAAAAAAAAA/vtOzSKYj1zA/c-rp-mo-br100/photo.jpg','3511292162159714121',7526),('AIe9_BGvUJd9etQojwpjZIMsiFneXPP3K039O5vmtrJM1OT8GbB1yOtrQgreK8N0ne9Z6zoS4ZgwryNoVUMhcUKheFGiQpS36O9BbLsTpPzT6aPjSn-7-Hk','Dr. Edwards\nRegistration: Carly\nNurse: Sarra\nRadiology: Tino\nEr tech: Olivia \n\nThanks for everything 💋','2020-02-03 06:32:33.952000','2020-02-03 06:32:33.952000',5,'Melody Santana','https://lh4.googleusercontent.com/-XmWcmEydWW0/AAAAAAAAAAI/AAAAAAAAAAA/lG6SpuLN-I0/c-rp-mo-br100/photo.jpg','12541597562633926366',22481),('AIe9_BGvUJd9etQojwpjZIMsiFneXr5lAP38mqL-_539X2Oato4GkAVTg1PQ_JNSXS6YVfd6vsldN4U-JgsnLoFXoKQS6NUj2_CMwPeyk9Z-zdzaYaG9Smc','The staff at signature care is very helpful from start to finish Amy at registration was very though and dr. Ding and nurse Jospeh made the whole experinace comfortable and quick','2019-04-27 18:41:37.166000','2019-04-27 18:41:37.166000',5,'Mia Marquez','https://lh6.googleusercontent.com/-5KCZIuvvR-U/AAAAAAAAAAI/AAAAAAAAAAA/w_OGvfs56P8/c-rp-mo-br100/photo.jpg','14567670160750071148',1339),('AIe9_BGvUJd9etQojwpjZIMsiFneXRiq2RyOmIt6rU_6KcVJSsC9lwVoHlq8d7QSONhJY35357ObTYMT2mFUAzf9L3NGmGlCK7L08a5CzDEU3izh1JuWngA','From the time you walk in and welcomed by Ashley she makes sure you are comfortable. Then nurse Racheal is super nice and brings you warm blankets and asks a few times if you need something to eat or drink. Jessica did my blood work she was super nice and got my vein on first try whew cause this review would have went bad fast if she didn’t. She was super nice during the whole process. The dr was knowledgeable and fast which I like. He gets to the problem fixes it tells you what you need to know and your done. I will always come here. No wait time it’s clean they are friendly and it gets the job done. Thanks team!','2019-07-24 15:57:19.311000','2019-07-24 15:57:19.311000',5,'Kelly Renee','https://lh6.googleusercontent.com/-PuAvLHrPp6g/AAAAAAAAAAI/AAAAAAAAAAA/GOYEMtIRmYg/c-rp-mo-br100/photo.jpg','17898197009688164559',5626),('AIe9_BGvUJd9etQojwpjZIMsiFneXs0fBaC41ilC_HWX9giiXgXZcQYk2gZdstHh8TMl_M_C6WvumERQT5Zm3trPN8g24vZa5HLsrFMqLj7qAStiVHUI-oI',NULL,'2016-09-25 18:29:39.958000','2016-09-25 18:29:39.958000',5,'Tashea Walker','https://lh5.googleusercontent.com/-K4-QTV1DOC4/AAAAAAAAAAI/AAAAAAAAAAA/K53s3Z1UrNg/c-rp-mo-br100/photo.jpg','17394740196501090048',5199),('AIe9_BGvUJd9etQojwpjZIMsiFnext_zYxwNl94G4LmMXTAXbwmBFkNjkymN7mYg7_v5wPEoaaDVGhw06VnQglpICyaEuuN9dw6OBE561NVsnHJgyQsOzb0',NULL,'2020-02-26 23:33:30.490000','2020-02-26 23:33:30.490000',5,'Alexandra Long','https://lh3.googleusercontent.com/-XNwbRGyqLgc/AAAAAAAAAAI/AAAAAAAAAAA/oLf7MZu8iuU/c-rp-mo-br100/photo.jpg','16590124370714063921',13826),('AIe9_BGvUJd9etQojwpjZIMsiFnexxCW2zTHh9UwsBypHC6JnFdxzE_jz2pn7v5El7ycl9sbN2KdPHRDWHyaonumNfgfTT7ETZuaaI6l89PUMSK1ynrREQI','This was a great exsperiance. New clean facility , friendly and profetional staff with prompt service !!!Gets no better than this.','2019-09-26 20:36:34.420000','2019-09-26 20:36:34.420000',5,'Robert Smith','https://lh5.googleusercontent.com/-6oXMk-YOI4I/AAAAAAAAAAI/AAAAAAAAAAA/mlq751m06Pg/c-rp-mo-br100/photo.jpg','12541597562633926366',413),('AIe9_BGvUJd9etQojwpjZIMsiFneXyBuv92YmS-FIrd0z4c-UbDN9UbSbEnP-LhYHqFFtzHf3h9_3oNm3vAHumIPU-2axdJ31vt4likTqIXu2u8DkWlMoiw','Dr.Appiah was very nice and answered all my questions and Chantel was very nice and offered us snacks and drinks. Registration with Tanishia was very fast and simple.','2020-02-24 01:31:30.127000','2020-02-24 01:31:30.127000',5,'Kolani Perez','https://lh4.googleusercontent.com/-K4TKSrYHnKQ/AAAAAAAAAAI/AAAAAAAAAAA/RnaGgZJW0zU/c-rp-mo-br100/photo.jpg','3511292162159714121',15343),('AIe9_BGvUJd9etQojwpjZIMsiFneXz0W_K-w0of3-qMxI5C6sYAXUY9_A2HpG_ZjrZfzyfmNO2kUHSFOWeybvLorPc9PR3HyDlS_yjxX7CBB6nxNT-VNyd4','Brad, JR, Itza, and Dr. Vakey were wonderful! Thanks.','2019-07-12 14:04:15.199000','2019-07-12 14:04:15.199000',5,'Blake Powell','https://lh3.googleusercontent.com/-gAncWykE4g8/AAAAAAAAAAI/AAAAAAAAAAA/ksdrrZUnwxM/c-rp-mo-br100/photo.jpg','16590124370714063921',3300),('AIe9_BGvUJd9etQojwpjZIMsiFnexzbcc8bBMQjl9V6ENz3b_CpbRiW-htw90_qO2mbNXV0KcSE109DKY9hEWWNT8utIOrPXnJ_9tBfYFJS3SZKziGMU5Wg','Excellent service','2018-11-02 23:03:02.182000','2018-11-02 23:03:02.182000',5,'Diamond Winner','https://lh5.googleusercontent.com/-OfjIK98HRfU/AAAAAAAAAAI/AAAAAAAAAAA/d58Kn7JhbZY/c-rp-mo-br100/photo.jpg','14567670160750071148',1462),('AIe9_BGvUJd9etQojwpjZIMsiFney_w67mXYEdoPY3sLzUKldb7l394HwvPKxBcp3irQMJwxtGqGJTCDiexARV0Gm_RNlrCOF2kGneIm7XetWlav_PFcKhk','Awesome staff and services at Signature care. They were fast, clean and efficient. Special mention for Dr Ruby. She is a wonderful Doctor. Thanks to Google which suggested this ER.','2019-05-21 00:28:44.545000','2019-05-21 00:28:44.545000',5,'Kushagra Khorwal','https://lh5.googleusercontent.com/-ac_vX6aKnZI/AAAAAAAAAAI/AAAAAAAAAAA/ARefFl-3SoY/c-rp-mo-br100/photo.jpg','16891069708558046635',4273),('AIe9_BGvUJd9etQojwpjZIMsiFneYA0_5xr8HxOuKdal8VgVzROwYRxtRvJIIgQUvA4Xyo-27hjhPYr3LEMOEbEgyp2JKsDR7hSqAxqg6Y16CiI6_EZt0A8','Every one is super nice Jesus is very polite The nurse alvean is nice and helpful good place 10/10','2019-08-16 22:20:17.063000','2019-08-16 22:20:17.063000',5,'Christian Vaudagna','https://lh5.googleusercontent.com/-LN3k2pDj2UE/AAAAAAAAAAI/AAAAAAAAAAA/0C4E4CXPw7o/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFneYbXyoU9Z0cSnY49llbUcqVGX63v7PE2s9-Tjq9tKmlzAe_IxY7sX6-Mevl-qhIbnY0tM6-I8B_yywcRSuVQVgf-HkNw','They took me in fast, had a 100 degree fever and was burning up, they ran test and gave me medication and antibiotics to get me feeling better was there for maybe around 2 hours. Highly recommend their services. Very happy and im doing great now','2018-12-10 23:45:05.604000','2018-12-10 23:45:05.604000',5,'Knightmare5.0','https://lh5.googleusercontent.com/-SlDRneWF8eQ/AAAAAAAAAAI/AAAAAAAAAAA/FL_nYoLRj_Y/c-rp-mo-br100/photo.jpg','13486358490203335051',1123),('AIe9_BGvUJd9etQojwpjZIMsiFneydJHgKqAcF4e3TyzdcTo-SkoXi6ELI7YflwqBTh7rlz2ao_V-mCwXp8IqZtFP_pHvqarSdBFvqN08Dsxcaf2lEUFWa0','We went in for Covid 19 test on a Tuesday, it has taken 6 days and many calls to get the results back. the service was pretty good there. the nurses were attentive but the Dr. was afraid to come in the room. He spoke to my wife from the door of the room and barley listen to her lungs. We have made several calls and the phone system hung up on us at least 5 times. I know it tis a crazy time and you can not bill for phone calls but the amount we pay for emergency care should include a decent follow up service.','2020-06-15 22:53:46.381000','2020-06-15 22:53:46.381000',2,'JoeyandSandi Fotheringham','https://lh3.googleusercontent.com/a-/AOh14GiXopUyle6Jut6I3fphTDDSWEQMP9gjDighbTSMcw=c0x00000000-cc-rp','17898197009688164559',22099),('AIe9_BGvUJd9etQojwpjZIMsiFneYemwGrCcqz471jqZ_wgse__WV2Dy61bHelllXHu4TZgRL0C0D97I8JX0H1JzaQMP-jaLSOzRyA41_mXVKLgrUt0AuKY','The staff and service was amazing! More like a hotel than a clinical, cold hospital. There was no wait ! ','2016-03-10 06:33:28.192000','2016-03-10 06:33:28.192000',5,'Nyisha Crowder','https://lh3.googleusercontent.com/-ZqH9HIi9rUo/AAAAAAAAAAI/AAAAAAAAAAA/cL9I_59-VZc/c-rp-mo-br100/photo.jpg','14567670160750071148',2047),('AIe9_BGvUJd9etQojwpjZIMsiFneYfylY-3_7vlj3G2SyrCUZhJCarr4PcBGzYb2TT9w8VtFcTyuUgXiQXg8TfDeE5V9IIuEosZ4mFVByvlAkm1H9UJL944','Awesome quick and friendly service.','2018-10-28 03:18:53.173000','2018-10-28 03:18:53.173000',5,'Andrea Alva','https://lh5.googleusercontent.com/-nNcOjQXNlAI/AAAAAAAAAAI/AAAAAAAAAAA/iUS0UWFEtAQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4410),('AIe9_BGvUJd9etQojwpjZIMsiFneyHCV1-M3hnazCB0eY4y9CiIonS-BRLKrrJo2hdJeKL8ZelLypvap2H525dMs5lYTwvIZkmac-MP0yTpUrLr8j8OtZFw','They put me on the waiting list for 24hrs, made me completed paperwork the next day, just to tell me in a very snug manner that they won\'t be seeing me because they don\'t accept my insurance. Not sure they even called my insurance. When I called my insurance later they told me it was acceptable there. They looked at the name of my insurance and not the details behind.','2020-07-04 13:42:52.591000','2020-07-04 13:42:52.591000',1,'Cymilian Kedia','https://lh3.googleusercontent.com/-M4C8OasbuoM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclCXj4uKYTOsmKElBnOiLjmpkP68g/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21415),('AIe9_BGvUJd9etQojwpjZIMsiFneyhxR3_vSIJQ1anz21cpayoZMO1B-alcQLdYp9fWp5_1x-MtnxM501QMEfWYSvxKqPe8IEkM5xTKD1l2rXnSuNuOWtbo','Great experience. Super fast service service (no wait!) and friendly staff. Skip the ER and stop here to save time, money and aggravation!','2019-01-06 16:24:10.944000','2019-01-06 16:24:10.944000',5,'Aaron Savella','https://lh5.googleusercontent.com/-zHs5NhyQL6A/AAAAAAAAAAI/AAAAAAAAAAA/FvgJHwaf5Tc/c-rp-mo-br100/photo.jpg','3511292162159714121',7515),('AIe9_BGvUJd9etQojwpjZIMsiFneylocCks1qMK_KhqJ9hpKJFTmDNi0u5eoAECW9QXgXlTKoN1lT1hT9p9LDdAenK6DCgodVtZbkY0j7IkAWMtiCgrj3AE','Thank you Dr Straface! Same day result for covid','2020-07-18 17:38:56.516000','2020-07-18 17:38:56.516000',5,'Selina Diaz','https://lh4.googleusercontent.com/-4kHaSi5gbSA/AAAAAAAAAAI/AAAAAAAAAAA/PFGX3APSsiY/c-rp-mo-br100/photo.jpg','14748677429039074158',21742),('AIe9_BGvUJd9etQojwpjZIMsiFneymnwKKbXa6jlHHgUNTuGaAF0VLRf3dnjeP8VMr27ieulk5VMVbmowf3YLdBuXZAhIts7DXjVDemuaCUiRcyiLN71vNQ','I can\'t recommend this location enough, every single Dr. and nurse I encountered was knowledgeable and kind. They were constantly checking on me to make sure I was comfortable without being intrusive. if I ever have to visit an ER I will definitely go back to Signature care on memorial.','2018-08-07 23:55:23.306000','2018-08-07 23:55:23.306000',5,'Daniela Mercado','https://lh5.googleusercontent.com/-Z8I02BNxsFU/AAAAAAAAAAI/AAAAAAAAAAA/xwyI2WbhFi8/c-rp-mo-br100/photo.jpg','14904078213800803294',2230),('AIe9_BGvUJd9etQojwpjZIMsiFneynPIJK3gReWMgyWJoQSq5WVVlSODxgB7-tY6XX4UFnowQS0WHIeC-uNm859qANlKY_SscTp84ox36jrAInlhT2RjMU8',NULL,'2019-11-09 15:37:31.187000','2019-11-09 15:37:31.187000',5,'Dawneisha Ross','https://lh3.googleusercontent.com/-TnyN9G25yWk/AAAAAAAAAAI/AAAAAAAAAAA/5PFuV6tKxBE/c-rp-mo-br100/photo.jpg','3272657195432704501',6864),('AIe9_BGvUJd9etQojwpjZIMsiFneyog8F5YvxN1tam3J6ExShQn1iv5qnF1Z66yGgT-RbZ7QdmLAajA6ehR0g7nkAU7Soi3m8jnTLJXIXuMAen31pEVkcOM',NULL,'2019-11-25 16:15:11.634000','2019-11-25 16:15:11.634000',5,'Maggie Martinez','https://lh5.googleusercontent.com/-_VeIVhKlYKo/AAAAAAAAAAI/AAAAAAAAAAA/tex89ZC_F-E/c-rp-mo-br100/photo.jpg','16389487648212004696',2633),('AIe9_BGvUJd9etQojwpjZIMsiFneySGwUCl0WO-N9Z_MXADtBpTLCs_rRAdoKpQgkOD2e6G_EAX7JN4vmx_9I5O5iFPZpdADynZYWQFahg_cXoEWdJ0Ml1Y',NULL,'2018-08-28 15:52:50.326000','2018-08-28 15:52:50.326000',5,'sandra Orona','https://lh4.googleusercontent.com/-iNB82hhHRJo/AAAAAAAAAAI/AAAAAAAAAAA/WPV5XeQGPSA/c-rp-mo-br100/photo.jpg','6521947413723274945',8339),('AIe9_BGvUJd9etQojwpjZIMsiFneyv19_Tkx3nMvLvKwDeuubhiOOMnFUHjWmfvbKisZlxDa2c1soB-_HPj-rJKkwI2VDjnEVZrTqNkhLA9JaewYRwV0eGA','Doctor Mauldin was a professional as a doctor could be. From the minute I walked in I was treated like a long time customer. Efficiency, hospitality and professionalism was demonstrated by each and every staff member. It gave me a whole new image of what the ER experience was about. Definitely will go back when needed.','2019-07-26 11:56:36.448000','2019-07-26 11:56:36.448000',5,'Eric Flores','https://lh6.googleusercontent.com/-X-oK6lJFmCY/AAAAAAAAAAI/AAAAAAAAAAA/JZqcnzW2AAo/c-rp-mo-br100/photo.jpg','17898197009688164559',5623),('AIe9_BGvUJd9etQojwpjZIMsiFneYwCT1ekCTWCMCgD-S5w8xRfZwsFSfH_6_NPod7MAhx4AHEnwqHkkh719CuI1Bw2TMYEf238j0uzXBnKSntJ02nb6-Mo','Dr Pham\nAlvean\nTrivia\nElida\n\nSuper care. Helped my nephew','2019-11-26 14:28:14.215000','2019-11-26 14:28:14.215000',5,'Brenda Engel','https://lh6.googleusercontent.com/-PJQFrNkyPyA/AAAAAAAAAAI/AAAAAAAAAAA/tCx4B1bUiZw/c-rp-mo-br100/photo.jpg','16389487648212004696',2630),('AIe9_BGvUJd9etQojwpjZIMsiFneYWNzGhx03fU-67Cns9druYjmODAn52JqoH-Nzi_nZV6EgaKVeutHnCni3v7fyxAEbFWZX-OG53GPX1VFSOw2nqQMI_Y','First migraine, never had a headache like this. The staff was very kind.','2019-06-17 05:36:29.339000','2019-06-17 05:36:29.339000',5,'Gaye Kendrick','https://lh3.googleusercontent.com/-Rm_Lzeai2QU/AAAAAAAAAAI/AAAAAAAAAAA/brFmXasPbz4/c-rp-mo-br100/photo.jpg','17898197009688164559',5695),('AIe9_BGvUJd9etQojwpjZIMsiFneyyzJBaHc7fgn4LTjbAbHTAtWnH_BkkUwNU3nv3CuV9Vgn5EngxmV6yxA3kqHTy2Dq6mTxpeSlQYgRu3CWuvUlugoNy8','The doctor was amazing she made me feel pain free and was super nice. I was seen in no time the entire staff was super nice.','2016-12-14 13:27:22.365000','2016-12-14 13:27:22.365000',5,'luvitman1 goat','https://lh5.googleusercontent.com/-Lr2dPmEWW_U/AAAAAAAAAAI/AAAAAAAAAAA/KkIyWlMQGWk/c-rp-mo-br100/photo.jpg','17394740196501090048',5149),('AIe9_BGvUJd9etQojwpjZIMsiFneZ-ENmArurPN0FT9rN4FJsH3gRgx9aZk1fx6-fqmTsZEua43iuxodqKJL_zYCCyf1keFCGAAKZMxz8QcnTffzR8TXQoo','They were very helpful and got me in fast! \nRollie, Natalia, Stephanie, and Yasmina were all so friendly and made me feel comfortable! \nDefinitely recommend coming to this location!','2020-03-06 01:01:37.958000','2020-03-06 01:01:37.958000',5,'Morgan Yates','https://lh5.googleusercontent.com/-cfOfDsVQEbE/AAAAAAAAAAI/AAAAAAAAAAA/TKKamb4mqCg/c-rp-mo-br100/photo.jpg','8679688254631342173',14709),('AIe9_BGvUJd9etQojwpjZIMsiFnez86XdzdaUHl5NdOWaiOCYQRBUKJqw2hL0-gfZagD7MsMnyY3vVbmIemt-3AlBZ-tldTkXxz4SJ9mr8vcy3GNdD8S3fs',NULL,'2020-06-22 18:31:32.607000','2020-06-22 18:31:32.607000',5,'Aguilera Johnson','https://lh5.googleusercontent.com/-1Mk_8oSyfTg/AAAAAAAAAAI/AAAAAAAAAAA/ZWll-4GoPIk/c-rp-mo-br100/photo.jpg','14748677429039074158',20958),('AIe9_BGvUJd9etQojwpjZIMsiFneZA4tSd3icOoI4hsP69FybNbKPvtbekODnGWdVx7yZpLPaJ8rlz_ZqkeYvs1pDYkb7Ho7zeEfVXYcaoKb6LhRTC4NrXo','Staff was amazing 😉. Even though their busy they do take the time out to help you and to make sure you have all the info you need.','2020-07-21 03:20:09.995000','2020-07-21 03:20:09.995000',5,'Vicki Roberts','https://lh4.googleusercontent.com/-nOmyMLjGKhw/AAAAAAAAAAI/AAAAAAAAAAA/We9Zd00JyeM/c-rp-mo-ba3-br100/photo.jpg','14748677429039074158',21651),('AIe9_BGvUJd9etQojwpjZIMsiFnezAXwOuHLUabXw3W-u-7soBumgg2TkLoZUeqkdFl01i-YvIYgnKstMA__ruPJPw81r7HuJoaHskx6Pfqh_J4HePF4nWk','They were all so kind. Very quick service. Shania moved us in very fast.Every one was so kind and considerate. Tried to make us as comfortable as possible. Dr. Diaz communicated very well with my mom. Vanessa, Alexis and Cy were very helpful. Bancroft and Andrew were great. Thank you and God bless you all.','2020-01-23 04:48:14.960000','2020-01-23 04:48:14.960000',5,'Ana Nevarez','https://lh5.googleusercontent.com/-AwzNsYRITX0/AAAAAAAAAAI/AAAAAAAAAAA/2WWMVQxY86k/c-rp-mo-br100/photo.jpg','13486358490203335051',13459),('AIe9_BGvUJd9etQojwpjZIMsiFneZbbIwwHyRjcWuygnUYC2GJ8h2GZAETPevArH8Pvgk8wuFihIoHYwcl0U5BnJXnzkZ3ENyxCy7RxWwOp8Z49b_jRqJBg','Always a pleasant experience here. Fast and efficient service. Highly recommended.','2020-02-13 17:03:45.131000','2020-02-13 17:03:45.131000',5,'Anjanette Curtis','https://lh3.googleusercontent.com/-CLJitIu16Tg/AAAAAAAAAAI/AAAAAAAAAAA/TSf9T5acvWA/c-rp-mo-br100/photo.jpg','12541597562633926366',13376),('AIe9_BGvUJd9etQojwpjZIMsiFnezfRYW1WEeUtLeAxmBmbqryh3mYecL9Im-crcxCOSPum87kkurQgP45pXdnRRRi25n2of1Gm0n9kazFOJz2NEhYkoyYE','The Dr and His staff are wonderful. Love the way they show their work ethic. THEY CARE ABOUT THEIR PATIENTS. From the time I walked in Ms Jessica S was very courteous and attentive she called someone within minutes of checking in to get me. RN Adrianna was very attentive and patient and also caring. CT tech was nice too. (Sorry didn\'t get her name) and Dr Elsbecker is wonderful. He takes pride is in job. Hes so patient caring friendly and attentive. He gave me my diagnosis and TOOK HIS TIME! LOVE IT. THANK YOU., U ALL ROCK!','2020-02-28 22:51:00.048000','2020-02-28 22:51:00.048000',5,'Veronica Urdaneta','https://lh6.googleusercontent.com/-t83Er2i9SdE/AAAAAAAAAAI/AAAAAAAAAAA/H9nWEuooa18/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',14530),('AIe9_BGvUJd9etQojwpjZIMsiFnezG3hDieFusZzA79MSLIBr4uRQKdTuqOEz4ONXL-tIzPN4yFOQX-ysmDzECSGSd076Myr-EDGySWXa8QUeU7H6mqdnJ8','Everyone was awesome thank you so much! Luisa was very friendly and welcoming, Jessica M took very good care of my son and Dr Patel made made my son feel very comfortable!','2019-04-03 03:22:46.744000','2019-04-03 03:22:46.744000',5,'Jocelyn Astudillo','https://lh5.googleusercontent.com/-QLEzOxc1YTU/AAAAAAAAAAI/AAAAAAAAAAA/Nm1hAF3euFM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGvUJd9etQojwpjZIMsiFnezgGeJ6AJ5xLi_O0K-0xGqS0Y_Kjw1nUT6jBedcu0oVxkbIj_eJ49k5W4ifKjyV_7-5ZrEV5xGGTeg4cC7ETtxX8DaRQ','Outstanding care and friendly service to patients. Highly recommended ','2017-01-11 23:57:42.835000','2017-01-11 23:57:42.835000',5,'reaperman345','https://lh6.googleusercontent.com/-pOOtJn8mbGQ/AAAAAAAAAAI/AAAAAAAAAAA/agYWK9MCcC0/c-rp-mo-br100/photo.jpg','6521947413723274945',8357),('AIe9_BGvUJd9etQojwpjZIMsiFneZGqB7LjXm4prNUZM19jJOgRBSADYCqKde58D9wNdnd5ZJqjF_6nVMf1xLGyCtUAn3CE0WjkQyEylb-ZAMbbXm_yZhac','The best in the West, first time here and I already love this place.','2019-07-06 22:46:22.369000','2019-07-06 22:46:22.369000',5,'Jm Vega','https://lh3.googleusercontent.com/-kDFVF-CLDgM/AAAAAAAAAAI/AAAAAAAAAAA/TkusQ_HtRao/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8210),('AIe9_BGvUJd9etQojwpjZIMsiFneZHm46yv6-ZSieOSSTdlZfSOEk1bRBb3xez3qkac6dwhrpuRtpcrwhNdd_xnxZgLWbIFF_gDYFnTrDmi5nETnQppa8Lc','This is by far one of the best ers l have been to always clean and professional. Dr.Zhen was very attentive and as well the nurses Alvean A, Holly the radiology tech, Jocelyn J and Marcia D you guys were awesome! This is my go to place. Thank you guys are AWESOME... 😊😊😊','2019-10-13 19:20:51.837000','2019-10-13 19:20:51.837000',5,'marquila miller','https://lh6.googleusercontent.com/-ngdlbRI2kqw/AAAAAAAAAAI/AAAAAAAAAAA/bKw6oOFxWlg/c-rp-mo-br100/photo.jpg','16389487648212004696',2823),('AIe9_BGvUJd9etQojwpjZIMsiFneZja0eMzqtSL98dwRx-moBjq9k6lib1u4uMv719-zUxDT4MQeeWFqn_bI0ahnBXJYMCmP1K-wkF9OjHLJK8x8U-NI4m4','I\'m so lucky to live near this ER. I had to bring my boyfriend and they were incredibly calm and efficient. I really appreciated they kept both of us informed as to what was going on and took the time to listen and make sure he was comfortable. Shoutout to the amazing staff: Dr. Miller, Shola, Julie, Bryan D, Ricardo, and Sam.','2019-07-29 04:26:03.547000','2019-07-29 04:26:03.547000',5,'Shelby Coleman','https://lh4.googleusercontent.com/-q0tZCMEAvXk/AAAAAAAAAAI/AAAAAAAAAAA/zqoC6u6dAcA/c-rp-mo-br100/photo.jpg','14567670160750071148',1269),('AIe9_BGvUJd9etQojwpjZIMsiFnezOg3LEKAboBmm0jTo5Da2kD2rdOvxtc-nd1R0TvpLDEGYAfnO04pI2pXww17npqL6T8zcHk0CNai0Yb9TE3Aa8US6s0','Great bedside manner, very professional, efficient and quick service. Friendly and welcome staff made the visit less stressful.','2019-10-25 02:58:07.838000','2019-10-25 02:58:07.838000',5,'Candie Syon','https://lh3.googleusercontent.com/-QukJ_sqLBMg/AAAAAAAAAAI/AAAAAAAAAAA/TW-5wmQQG28/c-rp-mo-br100/photo.jpg','17898197009688164559',5480),('AIe9_BGvUJd9etQojwpjZIMsiFnezOiGYcbmghGvYzQ2owNPGXfc3AwTABQfA8PsZ8aBnbM11ko88eInFbI3YCXUSaGPLTPX4dDDtNFkNEwEXBOqTizknfw','This place is absolutely the best medical facility I have ever visited in my 52 years. Dr. Patel Was amazing. Lisa my nurse went above & beyond her duties. Great place.','2019-05-01 11:40:20.598000','2019-05-01 11:40:20.598000',5,'Jeff Duke','https://lh4.googleusercontent.com/-xzMmntW05CA/AAAAAAAAAAI/AAAAAAAAAAA/3BN-tvE-MBU/c-rp-mo-br100/photo.jpg','6521947413723274945',8288),('AIe9_BGvUJd9etQojwpjZIMsiFnezVVpStwHuJ48hZ_sVu4YLsbgkbxz0DIDzQFEn29vUSnyV4mClJlLbgrCfMWTa8fMq-ezjPWv6im6QCq3zy0UWj1kH5E',NULL,'2019-09-13 21:24:31.071000','2019-09-13 21:24:31.071000',5,'Bryn Dodd','https://lh6.googleusercontent.com/-TZfXuJmg5NI/AAAAAAAAAAI/AAAAAAAAAAA/1AJnNCWLutY/c-rp-mo-br100/photo.jpg','6521947413723274945',8147),('AIe9_BGvUJd9etQojwpjZIMsiFnezy_wHX12cOz4FdH6jJgQ187ngHVgs6k7VsOgr5OTMmLuSOg1rewscSNYcAeGyC0mWvFZJ6NppfhlRwYXXGz4-fG8SOU','Ms. Alexis was my ultrasound technician, and was probably the only positive part of my experience. Watching the lady at the front desk (she was wearing cheetah print, half shaved head) roll her eyes at a gentleman asking questions, and give him attitude when answering, was pretty irritating. I understand it was/has been busy, but it’s not any easier dealing with people who already don\'t want to deal with you. My nurse, I don\'t think he knew what he was doing. I have a huge bruise on my arm, before pulling the IV needle out, he twisted it almost in a full circle, and was very rough when removing the tape. \n\nHUGE thanks to Alexis, and the few that helped without the stress.','2020-06-12 03:52:01.939000','2020-06-12 03:52:01.939000',3,'Carolyn May','https://lh3.googleusercontent.com/a-/AOh14GgxyVCePU54qIdfaDtKe6TPCr_OzX9Vj_jrE2ieoA=c0x00000000-cc-rp','17394740196501090048',22082),('AIe9_BGZuRKHeO1iYrcf4B001kE2_6NfJnprzY24-sk6Ow5VDlvsK3pRuYNeDxrwf6RwvH7Bn8-Bu0P3khiw3YkGOXhdi3OVWlqWOs2CuIBXlHUeSd18kmk','Delicia at the front desk made registration extremely fast and was very sweet. \nMy nurse Karen and Dr. Ybarra made sure they had covered every step to get me feeling better faster. \nSon LE who started my IV did flawlessly and I left feeling as well as I could. 10/10 would recommend this place! Thank you all so much!','2019-11-04 22:29:07.657000','2019-11-04 22:29:07.657000',5,'Samantha Walker','https://lh4.googleusercontent.com/-1SAW_bqA2n4/AAAAAAAAAAI/AAAAAAAAAAA/VsjXNNII0-8/c-rp-mo-br100/photo.jpg','8679688254631342173',8749),('AIe9_BGZuRKHeO1iYrcf4B001kE2_a2-1dvbCIlj6cfXegxeaFQ7_LHHX2ObCTSswuJ7nOFp9Tmjtbo4y2qqGnrM0FwqQSeNxSTxTxW1beHypn3tTiWpMQM',NULL,'2020-08-14 17:42:54.899000','2020-08-14 17:42:54.899000',5,'Dennis Pruitt','https://lh5.googleusercontent.com/-1bUQFPIqkrM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmRWyKoy5fKmT3YthdaN4Z_dPtVEA/c0x00000000-cc-rp/photo.jpg','12541597562633926366',23005),('AIe9_BGZuRKHeO1iYrcf4B001kE2_Ij3kmVqta-MdtbfT0x1zLpXPuxAbEvmaoAj0_W-ArPC08EVT6pMeEajBEYgk_fdKT4_kJjohp5k0xvK5BuOHH9xNrc','Just had my elbow injected with anesthesia and then the Dr. Henderson who is an awesome doctor. He\'s got a very compassionate trusting comforting and friendly bed side manner... He\'s just really awesome and I was very glad to see him walk in my examining room as I\'ve already been introduced to him when I brought my daughter to this facility for an emergency situation. And Dr. Henderson is the doctor who inserted a much bigger needle into my elbow and began draining it and finally the doctor inserted another needle into my elbow and injected it with a steroid.... I sure hope I don\'t have any interaction with any police officers or anything on my way home because it would be kind of hard to explain that to an officer by saying, \"No sir officer, I haven\'t had anything to drink, but my elbow is under the influence\" 😜LOL \nthis place is great. I\'ve been here several times at the Copperfield location on Hwy6...\nDr. Henderson, Nurse Sarah Grant and along with the rest of the entire staff are all very wonderful people and that\'s coming from having been here on at least three separate occasions and on a couple of other occasions for bringing my daughter here ... I feel relaxed and comfortable and there isn\'t even a ten minute wait. They get you in the very private and nice examining room in no time at all. I highly recommend this place to everyone. Is a very soothing easy-going comforting trusting environment the staff all the staff entire building and even at other locations cuz I\'ve been to another Signature Care Emergency Room location facility and they were awesome there too.','2019-10-24 04:04:17.916000','2019-10-24 04:04:17.916000',5,'Nicole Sveter Raney','https://lh4.googleusercontent.com/-DmXp-tWvNkM/AAAAAAAAAAI/AAAAAAAAAAA/WaYnJP_o5S0/c-rp-mo-br100/photo.jpg','17898197009688164559',5483),('AIe9_BGZuRKHeO1iYrcf4B001kE2_oIeWEdkxJuSoJlI9o7dxywQ455enos5Ct8Xx6YM2LChx6hOLOBdwWjVcbjCrjgRaP7C7ED89Zw3v2W7pgMTqyxnw-s','The staff here is Awesome! This place is nice and clean. I highly recommend Signature Care to my friends and family.','2019-05-04 17:51:53.634000','2019-05-04 17:51:53.634000',5,'Angie araiza','https://lh3.googleusercontent.com/-zbAUXTMXsbc/AAAAAAAAAAI/AAAAAAAAAAA/JMqm2gAJap4/c-rp-mo-br100/photo.jpg','13486358490203335051',1021),('AIe9_BGZuRKHeO1iYrcf4B001kE2_wplm666QERHKFHZO8qsgDjLBo3FrXmZWUxfqmwUzu06pAlGAoz78zfypjDJionwDe5MnOKF6l0ak2zzorriKIhvprs','both receptionists were extremely nice and professional both over the phone and in person. my nurse and doctor were also exceptional. both were caring and nice, and both made good decisions about what to do with my injury. i strongly recommend!','2017-11-01 19:09:34.164000','2017-11-01 19:09:34.164000',5,'Alycia Nusbaum','https://lh3.googleusercontent.com/-vlajpTprX5w/AAAAAAAAAAI/AAAAAAAAAAA/gn3KYqb7VEw/c-rp-mo-br100/photo.jpg','16590124370714063921',3911),('AIe9_BGZuRKHeO1iYrcf4B001kE2-0bGD4-jZpevItQ4Un8_z5AE7nvfN7S0N35pC7ofKuzCmrskYRS7ysW5bD1o6-npaqlfiPdCCqW2OarEMBdxxx0LpRg','Had a wonderful experience at Signature. The stagg was amazing. Thank you Lindsay, Brad, JR & Dr. Vakay!','2020-01-16 13:44:52.049000','2020-01-16 13:44:52.049000',5,'Rhonda Rodriguez','https://lh3.googleusercontent.com/-rZ8z6BQ2czk/AAAAAAAAAAI/AAAAAAAAAAA/ctdILqY57PU/c-rp-mo-br100/photo.jpg','16590124370714063921',9751),('AIe9_BGZuRKHeO1iYrcf4B001kE2-6DTrpS4XE_WJePqePqCM5Gd6G8oQuXslh-kfK8qcLQIdAtXZucF9z57gB4nVV6x_Ijo_TKCyeWGpaMPpHxpOHGOn-Q','The doctor and staff were extremely nice. Brenda and Kesley and Dr.Hemem are nice and treated my brother well','2019-01-07 16:22:05.180000','2019-01-07 16:22:05.180000',5,'Lauren Pacheco','https://lh6.googleusercontent.com/-IZWO-Jzz4hU/AAAAAAAAAAI/AAAAAAAAAAA/7lSakdVKpsQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9198),('AIe9_BGZuRKHeO1iYrcf4B001kE2-fR5w6pFYV_stR5poXZMdVld68hchnJuHStjAINGAj0HqtU_sQFYaCotrX1FwNlFWraSiS3WbmHqEaYfSgBol636jXY','For this being my first time here, I was pleasantly surprised! The staff is just so sincere in making sure their patients are well taken care of and that their needs are met! Their genuine and quick response to someone in need is impeccable! Thank you Jacob and Kat you guys are so admirable in making your profession a priority, while still considering your patients as family! I can never thank Signature Care enough for their attention to detail and making sure I was in good hands! I would never lie about something like this, if you need an emergency room this place is a 10/10. I would highly recommend this place!','2020-07-28 20:30:16.314000','2020-07-28 20:30:16.314000',5,'Maddox Register','https://lh6.googleusercontent.com/-vknsuRdyG7s/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckIN6RN5THY3h4Y4pQXaamcQN6MbA/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22112),('AIe9_BGZuRKHeO1iYrcf4B001kE2-gg1-4VcXy0BQmD-sz6OwLsIYgCwzL03RDh4z58O0h9rIkHzvIfgfI7WpGy4T0nI7RtaQ76j_27riE_8Wi0fAFtrTlE','Everyone is so sweet. Expeditiously taken care of and the staff is so friendly. Definitely one of the best ER’s.','2018-10-06 01:22:11.797000','2018-10-06 01:22:11.797000',5,'Damon Mershon','https://lh6.googleusercontent.com/-hBuONJX9rrg/AAAAAAAAAAI/AAAAAAAAAAA/tHywUrzmwes/c-rp-mo-br100/photo.jpg','3511292162159714121',7575),('AIe9_BGZuRKHeO1iYrcf4B001kE2-KEi53UjHolxyuuaUuNzX5NC6C-TxsmzKZdBue5wdOpxPD21FbZN3wsiqtAiSB5lAw55MFzILBDWJ-wOboGfz6B6S_w','I always enjoy coming to signature they get me in fast and treatment is the best! Dr.Miller was awesome and his nurse Kristina was the bomb.com they really care about you here and treat you well I will always come back!!!','2020-08-11 21:34:10.011000','2020-08-11 21:34:10.011000',5,'Jessica Duharte','https://lh3.googleusercontent.com/a-/AOh14GjAwLNEyMUXdCt37SPyXqaW-3Zklro-LkOlXCiRUw=c0x00000000-cc-rp','12541597562633926366',23010),('AIe9_BGZuRKHeO1iYrcf4B001kE2-U-M7DrnvPvR4OqavVnxVYy3FLbhWGGTTlhpZ_w_bOaA4GikRmZVa2bG1aB_9HkZIMzV_Q0WzttCO8X6JvNTdPSXcPY','The experience I had at Signature Care ER was amazing. Ashley S. was very welcoming and worked very fast on not only me but multiple patients. When Dr. Patel, Tony, and Scott came into the room they were very friendly and attentive. If you want fast and outstanding services I would recommend that you visit this location.','2019-12-08 16:54:41.984000','2019-12-08 16:54:41.984000',5,'Andre Murray','https://lh6.googleusercontent.com/-xR2K4LE4fYc/AAAAAAAAAAI/AAAAAAAAAAA/xab8EjY-cWo/c-rp-mo-br100/photo.jpg','12541597562633926366',359),('AIe9_BGZuRKHeO1iYrcf4B001kE2-uwDc-ohaTaQvAAav2UC7uQH2-_8SZzZYxcfAoGkdHiWOzuWiJZQ4pked99cksLpays6jN3oVmut3L-UJ4NoGUiE8aE','Ms. Angela at the front was very fast and friendly. This was the fastest I\'ve been in and out of the ER. Doctor Randy Jones, Kat and Britini were very helpful and efficient with their care. I\'ll definitely recommend to friends. ~lance mccombs','2019-02-14 05:43:16.852000','2019-02-14 05:43:16.852000',5,'LeeRoy Jones','https://lh5.googleusercontent.com/--gl8DqpuXmM/AAAAAAAAAAI/AAAAAAAAAAA/EEuv5J-5zcU/c-rp-mo-br100/photo.jpg','2694018788013845459',6183),('AIe9_BGZuRKHeO1iYrcf4B001kE20JFnQPIGSuPxu8CRSr9WXy5NTFv8ItFtvRnUI8nRUA142MAS4p2Pae6pFnGgc634-aejf_QPXgNrB51rZbQ5UUBLlBA','Fantastic emergency care and staff. Probably one of the best I’ve experienced. The staff and Dr.s are always friendly and straight forward. Very short wait times in the waiting room and examining room.','2020-07-04 12:48:54.456000','2020-07-04 12:48:54.456000',5,'Dan Houdek','https://lh3.googleusercontent.com/a-/AOh14GhdksgKMAONxwKc4QExLxSJEnIsu6fvf_jGAabsqQ=c0x00000000-cc-rp-ba3','16891069708558046635',21416),('AIe9_BGZuRKHeO1iYrcf4B001kE20mq_DWfb-vJWtflki8vWKSZAhefHQr45RhsdWbqwql5Fp3x-kDmiEPqvHugruaFt3F9NRgSg68FlJgW01mSbfD83gZk','Everyone from the time we checked in until we checked out was wonderful. Compared to an emergency room at a hospital, this is a much better option. Also much better than most urgent care clinics I have been to.','2020-06-29 03:13:01.025000','2020-06-29 03:13:01.025000',5,'Lisa Buban','https://lh5.googleusercontent.com/-KQ08JO6JxOw/AAAAAAAAAAI/AAAAAAAAAAA/x8-MbsPcmOg/c-rp-mo-br100/photo.jpg','14748677429039074158',21393),('AIe9_BGZuRKHeO1iYrcf4B001kE21-UaijM-tSG-3FTsNquhgV2omNVYZAf6QRwyUxGHONXFG6bi_CC5WKYW_OL8jz4_I0YOtHh68QSsNLzrQjZhv5kItso','I’m so thankful for this emergency center! They did not dismiss me when I was telling them my symptoms. They took all the test and found out what’s wrong with me. Thank you so much!!!!','2019-04-10 01:07:45.346000','2019-04-10 01:07:45.346000',5,'Destiny Walls','https://lh6.googleusercontent.com/-_jpcIYMyQkc/AAAAAAAAAAI/AAAAAAAAAAA/KyHiCYGLTbQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9146),('AIe9_BGZuRKHeO1iYrcf4B001kE2133Xv0NbpSi187X1_5UcCxc6HvQ2H_xh13oJfDUvOfNZybMNG4rgm-DW5zuRy9khETwwIifSD9pOoEh3fYyGgcQyGEY','They got me in real fast. Nurse Troy was very nice and welcoming and so is ms Melissa. Dr jaber told me exactly what was going on and had me answered everything I needed.','2019-08-12 23:42:38.017000','2019-08-12 23:42:38.017000',5,'Chelsea Scott','https://lh4.googleusercontent.com/-OvqEKJorj10/AAAAAAAAAAI/AAAAAAAAAAA/5nXl8B-ne00/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE21MPp-IXkd3tISTXiX_b00266iEwWhwmZD7McRim1rH4eaDV133RY6ociZ0p436ppRBwkSGi4FHKt6beWJwccnYKsT5s','This was my first time going to an Emergency Care Center. Registration was fast and easy Jocelyn was really helpful. Dr. Nweze was really attentive and took the time to listen and explain the diagnosis. Nurse Alvean and the radiologist Tricia helped my 11 year old feel comfortable and helped us beyond my expectations. All staff was really attentive, courteous and professional. I would definitely recommend this ER to anyone.','2019-10-16 18:59:02.586000','2019-10-16 18:59:02.586000',5,'Lizeth Lopez','https://lh4.googleusercontent.com/-wKeKAU1GEs8/AAAAAAAAAAI/AAAAAAAAAAA/nV4GwAa2QX8/c-rp-mo-br100/photo.jpg','16389487648212004696',2811),('AIe9_BGZuRKHeO1iYrcf4B001kE21QQX8Pu83_NssoNvG18JrudrN9vWVza-JR0AtMJz3NVjiRZ_pN-U-AvsPuxUl396l69jJ5ycYdC9zLCua8092jnkzes','My first time going to this emergency center and it was great, from being in so much pain the staff made my experience more comfortable and fast thank you Delfino, Gabriel, Frank and Dr Nguyen for taking care of me! Would definitely go back if I need to!','2019-02-03 03:28:00.678000','2019-02-03 03:28:00.678000',5,'Maria Sanchez','https://lh5.googleusercontent.com/-OBkhqL8GMVU/AAAAAAAAAAI/AAAAAAAAAAA/vHX_E1Nq1yQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4359),('AIe9_BGZuRKHeO1iYrcf4B001kE21Wdg7Z5Xw0ZBT7QaL-UJ1a8zAiny7876-f2sJUBW3gbdXkb61oNxT3PPFTVh6Qydv8OPY-Ak-Bzyrbufu43qwx5DZbY','The staff was amazing and very helpful and Gunnar the RAD WAS BY FAR THE BEST PERSON TO EVER PUT A IV IN MY ARM I WOULD RECOMMEND SERVICE TO ANYONE ANYDAY ID MOST DEFINITELY BE COMING BACK','2019-02-08 20:56:41.671000','2019-02-08 20:56:41.671000',5,'Lacreisha Coleman','https://lh5.googleusercontent.com/-b7j5CFb79pQ/AAAAAAAAAAI/AAAAAAAAAAA/nfuwP5M2xC4/c-rp-mo-br100/photo.jpg','3272657195432704501',7024),('AIe9_BGZuRKHeO1iYrcf4B001kE222GhCN07idYBP0rNUxHkyt3KkeG1Unbaj0juwV9z9uW0jCqvYUjanj2c1GjUNyJgqVThZo-h-pklEFGD5d28JvUA70E','excellent care even better then my primary dr','2017-03-16 01:17:20.213000','2017-03-16 01:17:20.213000',5,'rad rich','https://lh4.googleusercontent.com/-zJtTxH34KiI/AAAAAAAAAAI/AAAAAAAAAAA/loRVnh4optk/c-rp-mo-br100/photo.jpg','3511292162159714121',7857),('AIe9_BGZuRKHeO1iYrcf4B001kE227Ih0jqCywch4_AkYuH2GKhLRUMiiV8K3ZbMzp5RnMgrpgJV8rRS3ZCWco9c6td-dG7NrhVBFl9k-jNO0E8MgP3pM_I','I usually don\'t write reviews however when someone deserves honor, they should receive it. Last night my mother fell and twisted her ankle at work and was brought to Signature Care to be seen. She was greeted by a compassionate nurse named Katrina Valyan. This young lady was patient, knowledgeable, and she took good care of my mama! Furthermore, she had a welcoming smile and a helpful attitude. No one likes to go to the doctor but with nurse\'s like this on staff, we\'ll gladly return just for the excellent customer service. Thanks Nurse Valyan! You\'re the best!','2019-10-29 20:26:37.612000','2019-10-29 20:26:37.612000',5,'Risha G','https://lh4.googleusercontent.com/-wW-_fmZ2bXM/AAAAAAAAAAI/AAAAAAAAAAA/CaHOCXd9uqE/c-rp-mo-br100/photo.jpg','8679688254631342173',8763),('AIe9_BGZuRKHeO1iYrcf4B001kE22kvtHIBowkkuwTw18N5CchXVeqPDlqaBIXdREDxf0c1AkDtQSy5squQLZn1trN6cb56z9jrYLIRyRvKxnuU6jNio140','Came here with my friend, she didn’t feel good at all this morning, and everybody took good care of her,\nDr cavazos\nNurse black \nThe lady at the registration delicia\nAnd the red tech SON le','2019-11-19 20:02:52.665000','2019-11-19 20:02:52.665000',5,'David Seginer','https://lh6.googleusercontent.com/-L-ASi5iw2Nk/AAAAAAAAAAI/AAAAAAAAAAA/0Z5DIdQpqL4/c-rp-mo-br100/photo.jpg','8679688254631342173',8717),('AIe9_BGZuRKHeO1iYrcf4B001kE23-5959zNskcJisbCG0e9K7SbKSQ2GGo6MdN2zXd4epgoUNuoxhvFY273N-z7_rkf2H1xgFICXze-hnD98SVt2WfgY_U','I had good experience. All staff were very kind and nice ,especially the X-ray staff Tabitha, I highly recommend singnaturecare Emergency center.','2019-11-22 00:34:51.467000','2019-11-22 00:34:51.467000',5,'Rosie Garcia','https://lh4.googleusercontent.com/-IG8pgcF7fOk/AAAAAAAAAAI/AAAAAAAAAAA/x4Ah98LEmL8/c-rp-mo-br100/photo.jpg','6521947413723274945',8084),('AIe9_BGZuRKHeO1iYrcf4B001kE23oODSRin0S0-77JLbIlGcIhJKc0gj7issGrDvc6FlFq78JUus9Lvp-Gee67p63TjqAnAPcFxO9VJijq9nmI7iuBXj5c','This is the way healthcare should be. Very caring, efficient and thorough.','2017-03-27 13:13:21.697000','2017-03-27 13:13:21.697000',5,'Christine Cobb','https://lh4.googleusercontent.com/-itLp5UB3yd4/AAAAAAAAAAI/AAAAAAAAAAA/3isq7BWwumk/c-rp-mo-br100/photo.jpg','14904078213800803294',2380),('AIe9_BGZuRKHeO1iYrcf4B001kE23wLVZb4UIplcx0_31uu7nZKNsVRYpBCVUVMrHmOy0QZ_7ZUN3ZsLpPYPivZOcc7TeHbSjHf85oayezGdmZr0j8GplLQ','I’ve been here a couple of times and the staff is always helpful. Hopefully I don’t have to come back (don’t want to be sick), but if in need of urgent care, this is my go to! Special thanks to Nurse Karen, Dr. Spangier, Tech Son Le and Ms. Delicia!','2019-11-03 17:19:24.808000','2019-11-03 17:19:24.808000',5,'Erin Elston','https://lh5.googleusercontent.com/-oBhNIwaFHGE/AAAAAAAAAAI/AAAAAAAAAAA/u9LI7Br31BY/c-rp-mo-br100/photo.jpg','8679688254631342173',8754),('AIe9_BGZuRKHeO1iYrcf4B001kE24EW8YYQVRgbbW-oXmR9auNZZGCSKl31p4w9uSru5pHpCmvWiM2cWsC_ZwkxaOzyhlVBeb5E4t-lYU2ja1pwdrsatGdw',NULL,'2018-07-15 22:28:37.255000','2018-07-15 22:28:37.255000',5,'Benjamin Bean','https://lh5.googleusercontent.com/-6z7Ixms7iQE/AAAAAAAAAAI/AAAAAAAAAAA/Bp0ZGQM2fu4/c-rp-mo-br100/photo.jpg','14904078213800803294',2240),('AIe9_BGZuRKHeO1iYrcf4B001kE24jyZ0vKowvRq0_wpkfT4JQHzXZvnBTH5zAuPA7VgN6raI2Cxx8YjtS9e8_uT2Rkg9WLBdjhlD66FBYJ06JTunk2eKbE','I came to Signature Care after being in pain for 24hrs. They have amazing customer service, especially the doctors. They were always quick to help and give me proper care. From the front desk employees being Kendra and Raven to every nurse I’ve felt cared for.','2020-01-14 21:55:37.139000','2020-01-14 21:55:37.139000',5,'Desirae Weise','https://lh4.googleusercontent.com/-KwMuAKbBuWs/AAAAAAAAAAI/AAAAAAAAAAA/of214rgX90Y/c-rp-mo-br100/photo.jpg','16590124370714063921',9757),('AIe9_BGZuRKHeO1iYrcf4B001kE24oNaS9Q5EElZQWCUM5n1k4cL2bQBoUDRd8AsubbdgcNoLvqipLUJHxarnRq0MySVbZxHotEQuww9UccvtkQfx-EYlk4','awesome sauce. truly incredibly. remington, my man, thank you for the air splint. i salute you.','2019-12-07 20:21:56.081000','2019-12-07 20:21:56.081000',5,'Hannah Boyd','https://lh4.googleusercontent.com/-XzISz6W5Aq4/AAAAAAAAAAI/AAAAAAAAAAA/h7WoQPUfkE0/c-rp-mo-br100/photo.jpg','16590124370714063921',3039),('AIe9_BGZuRKHeO1iYrcf4B001kE24Onwv355IV2nwX-FwZeUD-yRR2kI2MgtSdJqYd1HLKMB6Is5A2_xkAGr1-7FikgiS4NOQq94vz6T-S_geVNssH8NNaM','Wish I could give this place zero stars. I can\'t respect a business that won\'t answer the phone. Not a single SignatureCare in Houston will answer the phone. The corporate number just hangs up. Not everything can be done online and I\'d rather not go to a place full of sick people just to answer a simple question. POOR CUSTOMER SERVICE.\n\nAnd don\'t tell me you\'re too busy because of covid. ANYONE can answer a phone. Maybe you should pay a receptionist.','2020-06-24 16:42:15.096000','2020-06-24 16:42:15.096000',1,'Jason Blunck','https://lh5.googleusercontent.com/-5QRknsr5SZU/AAAAAAAAAAI/AAAAAAAAAAA/zXNQC2C5gMA/c-rp-mo-br100/photo.jpg','14567670160750071148',21287),('AIe9_BGZuRKHeO1iYrcf4B001kE24RVS8D5HVWYkv3t-I9Zr9uCenmRTRFpQH_oMv4FlKtqlH5ZeuHc45w7RZZx7xNVcCK786hmCSdP1TEtXFugwuv6wGvI','Nobody ever want to go to an Emergency Center, but if you do, this is the one you should go to. From the second I arrived, I was greeted and treated with the utmost care. I interacted with at least 4 people during my visit and each and everyone of them made me feel comfortable and did anything they could to make my experience better. They will even provide you a warm blanket should you need one. I hope I never need to go to an emergency center, but if I do, this is where I\'ll be going.','2019-08-21 14:12:11.150000','2019-08-21 14:12:11.150000',5,'Kevin Gregory','https://lh6.googleusercontent.com/-kU9SjFb4dUI/AAAAAAAAAAI/AAAAAAAAAAA/j-FWNBBC_hE/c-rp-mo-br100/photo.jpg','14904078213800803294',2100),('AIe9_BGZuRKHeO1iYrcf4B001kE24s0rG4OYXc6DlYVNTlu3HXCG8YremXcQkl7RjogBn61mjrKA_7AZJ_Tvzfa_hvbYTlwh4Z4PVaNIEOP2dGSmw14sxjo','Dr.Ashbrooks is so awesome. Gunner the radiology technician is the best. The nurses are wonderful and pleasant. If you ever need a doctor for a emergency please go to the SignatureCare in Texarkana on Summerhill road.','2019-11-01 18:29:55.868000','2019-11-01 18:29:55.868000',5,'Linda Butler','https://lh4.googleusercontent.com/-G_-N7rPaGcc/AAAAAAAAAAI/AAAAAAAAAAA/kpsNWeeeWfQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6875),('AIe9_BGZuRKHeO1iYrcf4B001kE25_4bhsnP_RCYJUDM0C5_zwT9Ea8S3U_LlOzzB3_wZEJhCc4T4buWkjUX910qyAJC2bly5ViXJVwarunmq2lGS4aad_8','The nurse was very rude if i see her again there another complaint issued again on this nurse and i will looking at katy fwy @ wirt road','2016-11-28 17:18:46.046000','2016-11-28 17:18:46.046000',1,'Eric Scott','https://lh3.googleusercontent.com/-Nfh5urnDZlM/AAAAAAAAAAI/AAAAAAAAAAA/UqJeEPWRoe4/c-rp-mo-br100/photo.jpg','3511292162159714121',7923),('AIe9_BGZuRKHeO1iYrcf4B001kE25aU06hclguc8B-cMOkpS6Ofa1-Ak_Oq8P3HZeJajcyC2wqg8EIIikmWd8Mzlroj_HzoTyN300ylbg6zsAUT68_X-pJU','The staff here is amazing! Maya at the front desk was very sweet and fast with registering me in. the nurse that greeted me was very attentive and address all of my concerns. Dr Daniels was very understanding and made sure I left feeling secure about my health. Thank you guys so much!','2020-01-17 20:58:51.976000','2020-01-17 20:58:51.976000',5,'Gregory Mcclendon','https://lh5.googleusercontent.com/-t6JBFFBda_g/AAAAAAAAAAI/AAAAAAAAAAA/eVOjqlJg05Q/c-rp-mo-br100/photo.jpg','12541597562633926366',10021),('AIe9_BGZuRKHeO1iYrcf4B001kE25bpLz_qyZ0jZ2tApV8VFp3LTaTN1lSx5SzVlc5L2Y39fmy6MDmNXPjULHyS2CbUWpTIUk1jrBC5js-WtZwX9XyFhwUE','Everyone was extremely friendly and helpful! Dr. Ding, Pam, Trisha, Alyssa, and Shaylene made me feel welcome throughout my experience and answered any questions I had.','2020-05-23 18:59:13.769000','2020-05-23 18:59:13.769000',5,'michael leonard','https://lh4.googleusercontent.com/-gCEGQcJIssc/AAAAAAAAAAI/AAAAAAAAAAA/ML-4p_UuQPM/c-rp-mo-br100/photo.jpg','8918455867446117794',22942),('AIe9_BGZuRKHeO1iYrcf4B001kE25ew4VKN49a6SpehN7l_Qml7lljatsYAaELrSL36mFjB6r-EnGNQO18zW--xlihwqnras1f6QGjfCus6DWvGwEqmPkaA','First time here - Great service (fast and efficient) from Kim P, Joseph B and John A.','2019-10-22 16:37:25.703000','2019-10-22 16:37:25.703000',5,'Brent Henderson','https://lh5.googleusercontent.com/-JAkBAwQ4ces/AAAAAAAAAAI/AAAAAAAAAAA/nPFNrElW1Jk/c-rp-mo-br100/photo.jpg','14567670160750071148',1212),('AIe9_BGZuRKHeO1iYrcf4B001kE25GHL6dj55VoOn0E8eJlasjDnfEgtnahG3-JYEGNLKV5VIQPc0p-1tBtYj75xQslQzV1WDOMFA9t7O6W25yRe35ghfX0',NULL,'2020-06-19 15:02:42.462000','2020-06-19 15:02:42.462000',5,'Ariel Goggins','https://lh3.googleusercontent.com/a-/AOh14GihlWtVSZhrK8Bi8inupAmhmW7h3BUAHWOQg8mq=c0x00000000-cc-rp','2694018788013845459',21105),('AIe9_BGZuRKHeO1iYrcf4B001kE25i2P8mzdmSmuIReUP_spiaZD_YsehungBxjfMDIXLpoMGGMrhatZa2bXSxXIhB2mmvFcN8FGTejeQu4yL623GCjcFts','Absolutely awesome experience. The staff was fiendly, knowledgeable, and willing to help .No wait and was out quickly .Thank you .','2018-07-19 13:12:27.581000','2018-07-19 13:12:27.581000',5,'Lee Arnold','https://lh6.googleusercontent.com/-gd0jn8ziThc/AAAAAAAAAAI/AAAAAAAAAAA/yXwd77gjNvs/c-rp-mo-br100/photo.jpg','16590124370714063921',3805),('AIe9_BGZuRKHeO1iYrcf4B001kE25n-r2d0IlV2t7HUskJ9iEmLceaRzg1ECg5gHumT8r0KsRZtlS5EvJkUZ7U1oiEeb13AYhQhLkxtgXH8C3bBkq3HJGtM','Jacob was so great!','2018-07-12 14:31:05.075000','2018-07-12 14:31:05.075000',5,'Aly Conrad','https://lh5.googleusercontent.com/-eyPGCLPpl8g/AAAAAAAAAAI/AAAAAAAAAAA/qZu_5rcQsZI/c-rp-mo-br100/photo.jpg','16590124370714063921',3806),('AIe9_BGZuRKHeO1iYrcf4B001kE25Vf98jLrzQVzuOHzaHB9mJnf7uyyr0ElAiCt-skkWgaXxmBuzGARz9apFO4HkEYvU2JVszS8WXbYvydxx4E_HczlUCU','Every one here was just fantastic! Luke,Kim,Courtney, and Dr yost are the best!','2019-11-27 00:08:53.141000','2019-11-27 00:08:53.141000',5,'Laura Choate','https://lh3.googleusercontent.com/-eumzceobwT0/AAAAAAAAAAI/AAAAAAAAAAA/O8-M6Szc9gM/c-rp-mo-br100/photo.jpg','3272657195432704501',6854),('AIe9_BGZuRKHeO1iYrcf4B001kE2636t6DaYdji44_NuoiMkjAEbKnJqYM3xZoj3oSySdsxNEON80JSxMW8UHX76MfYIsQZ6aJMZV_ob4miO7-Vb9qfoBu8','Great experience! Jennifer and Susie were very friendly and helpful. In and out very quick!','2019-05-10 20:20:52.960000','2019-05-10 20:20:52.960000',5,'Aimee Cobey','https://lh5.googleusercontent.com/-Cs7beZwolFc/AAAAAAAAAAI/AAAAAAAAAAA/4FBY_hJkFkg/c-rp-mo-br100/photo.jpg','8626688543755174284',8490),('AIe9_BGZuRKHeO1iYrcf4B001kE26aKt2r4jghOBqYgkWvDIwZ4ltS4ngJFUira6sUB_PcT17HDPDPp1dW7RkwiBvMT2qvQUTBEfUfCbEkkF0LRmjOA-tBQ',NULL,'2018-02-19 05:26:03.363000','2018-02-19 05:26:03.363000',5,'Kashif Siddiqui','https://lh5.googleusercontent.com/-IAy1hOZawf4/AAAAAAAAAAI/AAAAAAAAAAA/lMqCZo31kRU/c-rp-mo-ba4-br100/photo.jpg','17898197009688164559',5934),('AIe9_BGZuRKHeO1iYrcf4B001kE26BkG7fWZEZBvUfc2t-0Iyj4Ei7wjJ5_soLCy53_WT-t1JXo2JUvR_Lfc7foImLitXc9cV-c7r6mc2P3esXgRYs-p2xE','The nurse (Alvean) and tech (Marcus) were attentive to my needs and moved quickly to get me settled and comfortable. Dr. Henderson was caring and seemed to true listen to my concerns and offered advice on how to address my illness moving forward. Registration was courteous and effective during the check in/check out process.','2019-06-26 12:11:17.018000','2019-06-26 12:11:17.018000',5,'Heather mccrackin','https://lh5.googleusercontent.com/-Br_NLDvv04M/AAAAAAAAAAI/AAAAAAAAAAA/0kvHazz6vFY/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE26cSNq1dPV7N1OgLnM8qHHyz04Dl87lVsCZjsuUz-iT9UAw7kFcExB_ZvNMMkOhUnewm8mwprybepVhtWbmswNobDQJ4','A very rude staff, not a good place to go they don\'t care about you at all.Not recommend...','2018-04-19 12:44:27.964000','2018-04-19 12:44:27.964000',1,'Emma Brown','https://lh6.googleusercontent.com/-hDxb7fmjgps/AAAAAAAAAAI/AAAAAAAAAAA/MpQcnvVVvKk/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8341),('AIe9_BGZuRKHeO1iYrcf4B001kE26qwpRwzvxHRGAiBweCCKfFPMRwDrlY71SKXLjPZjFS3-RZA1EGtAv-on8I9em8iJPADc5ckOwlGAigJMbkZYl6QbX-s','The staff on duty were great!!! I have issues that can not be cured only treated. I was in Houston (out of towner) on 1/20 my child had to be in a parade at 10am. When I got there at 3am I told them the issue what I needed and to please get me out in time to see my child in the parade.\nDr. Dang. Nurse Sarra, radiology tech Michelle, er tech Christian, and Ana during registration!!!! You guys are the best!!!!','2020-01-26 20:19:24.530000','2020-01-26 20:19:24.530000',5,'Simone Strickland','https://lh3.googleusercontent.com/-xa7GSaa_YbA/AAAAAAAAAAI/AAAAAAAAAAA/qkD3EZkStT4/c-rp-mo-br100/photo.jpg','12541597562633926366',10088),('AIe9_BGZuRKHeO1iYrcf4B001kE26srwzApI4aG0VkmxTPzjb1hEEKeUuSi2CswGEapsLom62SbmnBSlIpnJm6atnjpALxxVIkAiT30vVzZNuhebHrfXTUA','This place is very good they was quick and very efficient the nurse Jessie was so nice and offered me a warm blanket as well ! Everything was in a timely manner as well','2020-02-27 20:52:24.555000','2020-02-27 20:52:24.555000',5,'ELEXIA HATFIELD','https://lh5.googleusercontent.com/-VCzdo8-1Qx0/AAAAAAAAAAI/AAAAAAAAAAA/swWfzYSZW6E/c-rp-mo-br100/photo.jpg','17394740196501090048',15937),('AIe9_BGZuRKHeO1iYrcf4B001kE26u1yTdckZXvfKWnN3np-2wnOudTzm_HOppuhygGwDs-zbAMGYKx-rn3xxkSao0qB9H4Gb9asF_KrSW-v-r6C9x62wFc','Did have to wait an extended amount of time to be tested for COVD but was ultimately helped after persistence. The nurses and aids were really nice and professional.','2020-07-04 21:39:22.659000','2020-07-04 21:39:22.659000',4,'Isaiah Freeman','https://lh5.googleusercontent.com/-Pzc4a13YCmI/AAAAAAAAAAI/AAAAAAAAAAA/BfcR9YwzeTA/c-rp-mo-br100/photo.jpg','12541597562633926366',21339),('AIe9_BGZuRKHeO1iYrcf4B001kE26w7F9Z1Rq9zpy4aDilRQa-_32Kqc6JxOCZ0rmQyHGeXed-Ai_MxErgknFIJd0zX_H2sIRvBQDpWfgn3V45Pf7FGu1UY','The most amazing experience I’ve ever received at the emergency room. Everyone was super nice and friendly. They tended to me at a timely manner and gave me all the resources that I needed. Cindy at the reception desk was soo help and informative both over the phone and in person she made sure she didn’t leave a single detail out and helped me understand things I was unclear of. I will definitely be recommending this facility to all my family and friends.','2019-11-14 11:08:41.829000','2019-11-14 11:08:41.829000',5,'Charity Roberts','https://lh5.googleusercontent.com/-4Z_XkOiKA-E/AAAAAAAAAAI/AAAAAAAAAAA/9myCL6-YgtI/c-rp-mo-br100/photo.jpg','17394740196501090048',14075),('AIe9_BGZuRKHeO1iYrcf4B001kE26WyBt2hBccQki37nyC4_W84VgviAq7XDEzRoB9MVh1KHIj6Fad9g1QWLUS5yMc2Zyd0ApWXa6SotpuGjFaUTY6ZjGx0','Took My Wife here for a Post Op Complication and they helped us and made us feel very comfortable. Great Physician and Awesome Nurses! Thanks Signature Care.','2019-01-22 22:46:19.480000','2019-01-22 22:46:19.480000',5,'DX Construction','https://lh4.googleusercontent.com/-9Fli-SjQeYs/AAAAAAAAAAI/AAAAAAAAAAA/SofwyJe3UKQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7456),('AIe9_BGZuRKHeO1iYrcf4B001kE26ZnLj2XrHOGKENULxgSGl8U_OLzm8nivx25-_yVT7MWfGC9HcneGqHd2PvmaoPXPVMCfUaGF_iSE67dAo02ynmIkawE','Dr Singla, and Nurse Laura were very good communicating with me. Front desk Leslie was clear and everyone was efficient.','2019-01-10 13:59:58.609000','2019-01-10 13:59:58.609000',5,'Mark Reed','https://lh3.googleusercontent.com/-iwICwa7Kxic/AAAAAAAAAAI/AAAAAAAAAAA/zFgwW73uQr0/c-rp-mo-br100/photo.jpg','3511292162159714121',7494),('AIe9_BGZuRKHeO1iYrcf4B001kE277TdreBTe4fYvo7CuENLH5dD0rRYOSuZBe3m0P_u2Q4iWF5nSf_JYuj1sH2BEJjG8ZHqQbIa7OGSYEqlURDgm6sDZJw','Came in and was greeted with a warm welcome didn’t wait 5 minutes and was called to the back. My friend was helped by Jocelyn and Alvean they were very nice and attentive also were very informative. Highly recommend this location everything was nice and clean. And she was in and out Thanks so much','2020-02-19 23:36:50.630000','2020-02-19 23:36:50.630000',5,'Dose of Rae','https://lh6.googleusercontent.com/-e5Xmd9zidko/AAAAAAAAAAI/AAAAAAAAAAA/Ea8uLBoTe8g/c-rp-mo-br100/photo.jpg','16389487648212004696',10865),('AIe9_BGZuRKHeO1iYrcf4B001kE27b2Iha1nex8445NyoAldGlodBFswI_cKD2ZBKo-qTJ5MxLfdZMegEWiYz-tynDI5jMdYaPABklxztFyrLlIPlalhMw0','Awesome Care!','2019-03-01 03:59:05.113000','2019-03-01 03:59:05.113000',5,'Aaron Daniels','https://lh4.googleusercontent.com/-UsqkhHQ745s/AAAAAAAAAAI/AAAAAAAAAAA/oa19WVxtgaE/c-rp-mo-br100/photo.jpg','17898197009688164559',5829),('AIe9_BGZuRKHeO1iYrcf4B001kE27eaZ7ni0EOKy32NXPRtV7n2cSduS-tUVZ56kb6btrtEyD_AqF-1bVftnnVp85EhonxSUpb4ZuxgBoQwbxXetiNJDQUQ','Came to this place with my fiancé. Nurse Keira and tech Dillon were amazing. Nurse Keira took time and answered our questions. Tech Dillon did good with his IV. The warm blankets were my favorite. They even gave me one and I wasn’t the patient. The Dr Daniels explained everything. My new favorite ER','2020-02-23 07:06:16.987000','2020-02-23 07:06:16.987000',5,'Rita Lafitte','https://lh4.googleusercontent.com/-xSF8_VVr3VI/AAAAAAAAAAI/AAAAAAAAAAA/rdAWigMbqz4/c-rp-mo-br100/photo.jpg','6521947413723274945',14556),('AIe9_BGZuRKHeO1iYrcf4B001kE27lztUPeUOEjeZTe2f9-D1w09rYOxIktBAlViUu7aQ2E78o-2Kv53i7z30N_P9w8zGsqIg6x6nBQk03DitDhNwaFcAak','Well to start my husband was taken by ambulance to the hospital where they did not fully take care of his pain. When we left we came here and the staff was so awesome and very patient and kind. Doctor came in right away and got him some meds and started tests. He feels so much better now. Thank you for this awesome experience','2020-03-04 09:28:15.858000','2020-03-04 09:28:15.858000',5,'Cheery Blossoms','https://lh6.googleusercontent.com/-i9qWs7Rm6gw/AAAAAAAAAAI/AAAAAAAAAAA/07_Wg0hE-qU/c-rp-mo-br100/photo.jpg','6521947413723274945',14508),('AIe9_BGZuRKHeO1iYrcf4B001kE27t4lZwt4z1SeG7elEAGwlpvz4Ro1kcRGRHp_Wu98eoZq4stLQZ8t3pZMUXMn9Q81HaIkqzmq32qnHMbpC2sa9eZUvGQ','Great care and service!','2019-06-04 03:37:14.725000','2019-06-04 03:37:14.725000',5,'Kerwin Flaherty','https://lh5.googleusercontent.com/-FwP3xMq70lQ/AAAAAAAAAAI/AAAAAAAAAAA/giMKzj8d2cM/c-rp-mo-ba3-br100/photo.jpg','2694018788013845459',6137),('AIe9_BGZuRKHeO1iYrcf4B001kE27ZHgDUrytflkNvc4D7KurvnhWCf7KlaG-lwvu3BtvmoT7tx2VwVMhBMg8RwIc--w-is1i5if5d454pAwGrK9usQKCh8','Kendra did awesome! She really hooked it up!!!','2020-01-19 18:40:55.937000','2020-01-19 18:40:55.937000',5,'Brandi Reed','https://lh6.googleusercontent.com/-0Zzb4On5eCg/AAAAAAAAAAI/AAAAAAAAAAA/TM5N1fpQ3dU/c-rp-mo-br100/photo.jpg','16590124370714063921',9977),('AIe9_BGZuRKHeO1iYrcf4B001kE28m7HpUKNnopIvx3FU6NjUSbQLCP8jNjvp3IuNJSUXlzD0kJAruCvn4zNR4l_imQZkEMOGdshnkR0wruLj5CcdEzW56E','The care was phenomenal!! I had to get stitches there and they were quick, attentive, and very personable!','2020-01-07 05:01:40.617000','2020-01-07 05:01:40.617000',5,'Emma Thomas','https://lh4.googleusercontent.com/-mloqzRaTI-E/AAAAAAAAAAI/AAAAAAAAAAA/1L1iElhZ1Q0/c-rp-mo-br100/photo.jpg','16891069708558046635',9413),('AIe9_BGZuRKHeO1iYrcf4B001kE28O9kmzYhgraYwUWqRgHJI_HLhEtefc-rjjTXz8XLZSx2oEEljHtJQ7aoaMn1VLW_xXR8z4p4S90c-WzODcxu5gFwf1M','They took great care of my mother after an accident. Took the time to make sure she was well before we went home.','2019-10-03 06:49:03.091000','2019-10-03 06:49:03.091000',5,'monroe Jordan','https://lh5.googleusercontent.com/-82MecAc6t3U/AAAAAAAAAAI/AAAAAAAAAAA/9hiWAJtO134/c-rp-mo-br100/photo.jpg','8918455867446117794',9065),('AIe9_BGZuRKHeO1iYrcf4B001kE299r9b3pbBZj3QYO9KQtfI0FePybL4e21fvdNnVQwfo6JEiSayHOghGtNo3OH6vuTFOWq8sxyEve0_Z399qhfsGJml1A',NULL,'2020-07-24 20:58:15.492000','2020-07-24 20:58:15.492000',5,'Julio Lozano','https://lh3.googleusercontent.com/a-/AOh14Gg26XD1PfFMGoqQ9NoSVzbFiZ2I7fZOrmr33hv9SHc=c0x00000000-cc-rp','6521947413723274945',22216),('AIe9_BGZuRKHeO1iYrcf4B001kE29IeyoaNfxRJ7CuBCOQMJ7yOwAJLXDI4O3fotWUdzW_bv25qCk4_A_GL0eLdfJwzy4ePcdUnn_IwdrfRKApixQ93SWiI',NULL,'2019-03-29 07:06:07.533000','2019-03-29 07:06:07.533000',5,'TyAnna Hunter','https://lh4.googleusercontent.com/-chEwC9VJfsg/AAAAAAAAAAI/AAAAAAAAAAA/TFwnkVRrTqw/c-rp-mo-br100/photo.jpg','17898197009688164559',5790),('AIe9_BGZuRKHeO1iYrcf4B001kE29iIbzwRIedarL6r1yUoT6Bvi_9f_9alp1eitpdJYqEyH2m6g76KEwal6sd3_h8hUwUThCxpHXbCnNgoxyK1XNb_SNyM','Signature care was more than great, I was under there care for a full 24 hours. Remington, Kendra and Kristen were beyond helpful.','2020-05-31 18:57:58.905000','2020-05-31 18:57:58.905000',5,'CHRIS D','https://lh5.googleusercontent.com/-UbuCLRHamSM/AAAAAAAAAAI/AAAAAAAAAAA/ZIBdepyt0vQ/c-rp-mo-br100/photo.jpg','16590124370714063921',22678),('AIe9_BGZuRKHeO1iYrcf4B001kE29jFZpbxU7AdHCgmDP7_H_9Y3Ogd5M5pVSNOHqfCE4hWgzlkajKYTkZn-njLfg8KUwT-iDMTpnvtAMybYCIw9VqnqJuQ','My husband and i came to this facility and i have to say by far it is the best experience we have had at a ER. The whole staff is awesome especially Dr. Patterson, Bryan, Brandon, Jaime, Jasmine, Sherri, and Meriedith...Thank you for taking good care of my husband and keeping a smile on our faces.','2018-11-02 00:46:18.116000','2018-11-02 00:46:18.116000',5,'Au\'vaire Sumpter','https://lh3.googleusercontent.com/-b-VsplQoklY/AAAAAAAAAAI/AAAAAAAAAAA/7cl0Cq6XnhY/c-rp-mo-br100/photo.jpg','14567670160750071148',1463),('AIe9_BGZuRKHeO1iYrcf4B001kE29lTfF9kGiemuLc0-CRR_eVa7Frz_JVwEG1okoMJDrPkMpjb-mQeKJXJqo7ijmREbKScXCxOkMjIpDf82YJsuTo1Ieao','My visit here was cool, Keera was cool help too.','2019-06-22 19:16:07.620000','2019-06-22 19:16:07.620000',5,'Josh Cazatt','https://lh5.googleusercontent.com/-svFXeJqQkGw/AAAAAAAAAAI/AAAAAAAAAAA/eCR1L8olxMQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4656),('AIe9_BGZuRKHeO1iYrcf4B001kE29oNZH5cWxIaNT-351GI7g0ZW6e4_eIwZXN4nVOUHtgOnUWvcPRpS1erIoECw0mUKd8BOLIZH_dgpjbDN6rcfYWRQ-28','Great, fast and friendly staff. Explains everything being done during visit.','2020-01-26 16:46:35.495000','2020-01-26 16:46:35.495000',5,'Tracy vigilance','https://lh6.googleusercontent.com/-zsgHl06U9X0/AAAAAAAAAAI/AAAAAAAAAAA/uw1sphnpISE/c-rp-mo-br100/photo.jpg','12541597562633926366',10089),('AIe9_BGZuRKHeO1iYrcf4B001kE29VCJDQIWRkNO1lzdhqtNycYL4jZv3X277HZmCKsbH47vmVwsOGHlAIFCr9dPAcxQGnWjBHfTyD2uIwX32sTPe3cayXg','Dr Iheme and his staff alvean,Tricia, and Natalie were very helpful','2019-08-23 17:03:28.995000','2019-08-23 17:03:28.995000',5,'Erin Mullen','https://lh4.googleusercontent.com/-6FjgiPvagNo/AAAAAAAAAAI/AAAAAAAAAAA/UTjJgyBXvfc/c-rp-mo-br100/photo.jpg','16389487648212004696',2981),('AIe9_BGZuRKHeO1iYrcf4B001kE2A0r42QPaKyo-karlg_bSwDyUhNZaERINUCNX3Icr60rwB5w6s7OtE_fuMxgNIl1_xhJuAY6MlePGdRnrzdo7wNEsvAA','The place is amazing and full with extraordinary staff that helps and keep you well comfort at all times I suggest if you in the area with a urgent emergency non 911 this is your ER you won’t be disappointed neither dissatisfy','2019-01-12 19:11:32.620000','2019-01-12 19:11:32.620000',5,'Gustavo Padilla','https://lh4.googleusercontent.com/-BDwvY3qFEEA/AAAAAAAAAAI/AAAAAAAAAAA/GG1ZlFAVWMI/c-rp-mo-br100/photo.jpg','17394740196501090048',4741),('AIe9_BGZuRKHeO1iYrcf4B001kE2Aaq34UdzWTyqBKUX58L72meahdh8b0WriZI_Zg4xdFGDRl8Sn3KmUe4GweG-KSuvcl7iVccaAgesratgjHcD9_qnPkE','There was no wait time, the facility, was clean . Dr.Zhen was very informative, the staff Ana, Nelson, Sharesa,& Irving we very friendly & efficient!I definitely recommend Signature Emergency Care Westchase!!','2020-03-08 04:15:17.615000','2020-03-08 04:15:17.615000',5,'nicole tate','https://lh3.googleusercontent.com/-wzByvJuWoIg/AAAAAAAAAAI/AAAAAAAAAAA/aPdR9lJITRE/c-rp-mo-br100/photo.jpg','12541597562633926366',13306),('AIe9_BGZuRKHeO1iYrcf4B001kE2AGGYk3sEeisk0mHfZnuHqhvr1auqEsDbivRQj6Sv0FtxPdYH-3VaDdA0VyT1eCAlqSaSXv-dT0WZ_HFGH8fAXdJbgTY','My wife wanted me to get blood work done - she felt that I was losing a lot of weight. I was referred by a close friend to see Dr. Grinblatas at the Memorial City location. I felt nervous, but the entire staff made me feel comfortable. As soon as I walked in, every member of their team was outstanding. From the front desk clerk Enca, Ryan, and Teresa (tech), nurse Jessica to Dr. Grinblatas - were all amazing people. They did all the tests I needed and I was able to see my results within the hour. Blessed to say, everything checked out great. I just need more rest and I need to eat more consistently. The pandemic has really put a lot of stress on my family and me...It\'s starting to take a toll on my body. I would highly recommend my family members, a friend or anyone for that matter to visit this location for your medical care needs. A+++++++','2020-05-30 01:44:35.957000','2020-05-30 01:44:35.957000',5,'Mario Havikoro','https://lh6.googleusercontent.com/-lC76kf7EGgo/AAAAAAAAAAI/AAAAAAAAAAA/5S2ECSJccSs/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',22579),('AIe9_BGZuRKHeO1iYrcf4B001kE2agtnQeFZBRCNAhG8c_kTbDb7-DcwD5LRvoLAbatUTojwKNRoLxxIQBWIrGR795zhem9Rj5FH98Wa9Z0-4RquWSKjNqw','Shania was great, made us feel comfortable while we waited for our love to be treated.','2019-11-23 04:20:23.084000','2019-11-23 04:20:23.084000',5,'Paulette Standifer','https://lh3.googleusercontent.com/-u4WRgDsrwAo/AAAAAAAAAAI/AAAAAAAAAAA/H2dzF0quydk/c-rp-mo-br100/photo.jpg','13486358490203335051',727),('AIe9_BGZuRKHeO1iYrcf4B001kE2AHoQ-VI9qAI1zmLBWTnafSvTu5tFWvaasl_07Sz6yYluCqHEEi9o9snmPY_WJ-z_BudEEb5Y0KyvqWcfxUjhlR0HooI','I love how friendly the staff was! The blonde woman at the front desk, who I unfortunately can\'t recall her name, was the sweetest person! Very clean, sanitary emergency room. They even sent me a cars a few days later saying feel better. How cute!','2016-09-21 18:54:35.952000','2016-09-21 18:54:35.952000',5,'Autumn Wagner','https://lh5.googleusercontent.com/-9173BI6dXW8/AAAAAAAAAAI/AAAAAAAAAAA/OcsGN7jTcZU/c-rp-mo-br100/photo.jpg','17898197009688164559',5944),('AIe9_BGZuRKHeO1iYrcf4B001kE2am691a8QXkPv9wMcdgLFuvvTdKLEkSl-dHZiSpk6OOkhJmQmCujJixPC4YrONFGFvDoc8mcUgoap1w5YsCyqSuu4BBc','Amy had such a vibrant energy greeting us when we first walked in the door. Nurse Rommel and Dr. Patel were very caring and really confronting doing the whole visit here.','2019-05-07 05:43:22.298000','2019-05-07 05:43:22.298000',5,'Britnee Tollivar','https://lh3.googleusercontent.com/-iL2ZlOJGgbY/AAAAAAAAAAI/AAAAAAAAAAA/9lBogREKS1k/c-rp-mo-br100/photo.jpg','3511292162159714121',7329),('AIe9_BGZuRKHeO1iYrcf4B001kE2B5gi5WG7-i4CxpJAbuehGIg6GYkJMLBdnGq81gACeSVsTH6TL5mVUEboN9cJx1RV4lNtp4H4Y_zVdKbcJvAJxr9HlGQ','Absolutely the BEST emergency room I’ve ever been to. Was seen incredibly fast and taken care of in a very timely fashion. The nurse and doctor were so comforting and great. They offered warm blankets, snacks, drinks, and I even got a goodie bag at the end. They resolved an issue I’ve been having for two months in an hour, never going to another place again.','2019-05-06 06:03:44.153000','2019-05-06 06:03:44.153000',5,'Hannah Hart','https://lh4.googleusercontent.com/-p9JDquh6V68/AAAAAAAAAAI/AAAAAAAAAAA/Sgp3vsVYFBU/c-rp-mo-br100/photo.jpg','2694018788013845459',6163),('AIe9_BGZuRKHeO1iYrcf4B001kE2BArJjoHy5SwYhFDpfL1QM_O9qe-WFVqJgIni6pafwzIn2Fuv_dQALNAd-yqTAyTzuvNofG6aNrmx2MgjRDF0IdfxocQ','I had a pretty embarrassing reason to visit but the staff made me feel at ease and worked very quickly and sufficiently. I was in and out within 20mins. Fastest emergency visit ive ever had. Price was extremely low compared to a regular visit.','2019-11-05 17:39:40.039000','2019-11-05 17:39:40.039000',5,'Chelsey Brown','https://lh4.googleusercontent.com/-BIAtvWYzZXA/AAAAAAAAAAI/AAAAAAAAAAA/bnX1z5HnKMQ/c-rp-mo-br100/photo.jpg','2694018788013845459',6018),('AIe9_BGZuRKHeO1iYrcf4B001kE2bKV9RdCilyIwr_LIiDRoN0QYaWPS-ZCY9uxI1wlCwL_2LgIozBGUg9fKnHymWRPTT2SJbxP5qAFHfYsSBYfLPP2naM0','First time here...I absolutely loved the experience...I came in for emergency dental care and they were equipt to help with my condition. Staff is very friendly, empathetic and accommodating. The establishment is very beautiful and well kept. Highly recommend!!','2019-04-17 03:56:00.305000','2019-04-17 03:56:00.305000',5,'Colecia Wilson','https://lh3.googleusercontent.com/-kv5OqLeoutw/AAAAAAAAAAI/AAAAAAAAAAA/VAyRVHjc9As/c-rp-mo-br100/photo.jpg','17898197009688164559',5769),('AIe9_BGZuRKHeO1iYrcf4B001kE2c22gBBZTJ-Sax2yTRvK30tumigOK80qXpQ9Lw7yRsc5S_rz_PTogQOB_nOovw2BOr6kKw2zSCPElfeEEOVozY1XOgVI','This place is amazing they helped me with everything i needed.','2019-06-14 02:56:05.763000','2019-06-14 02:56:05.763000',5,'Brandi Knight','https://lh3.googleusercontent.com/-_Y6BlH9bsm0/AAAAAAAAAAI/AAAAAAAAAAA/Uw-oV8f31B8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2C2j9NNxwbS_K5VsBA4Oc9hQ-r-kFOeaLh1SDr-r43zPVvLpwCQxhD9-v9LmGbFknJ6Jo97-GqbKjDl-InEWLYXHGrEA','The front desk staff (Lorena T and Rebecca V) was welcoming and friendly! They patiently answered my questions. The nurses and tech staff (Jacob, Morgan M., Laura, Lindsey N., and Rachel) were efficient and friendly, as well. I had an extremely short wait time! Dr. Vakey was transparent when explaining his concerns. I would highly recommend this clinic!','2020-08-17 17:05:35.299000','2020-08-17 17:05:35.299000',5,'Abby McKaskle','https://lh4.googleusercontent.com/-fXnu5NOXXWU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclgzOVsDxpcCBQzP4jUse_InPcjgQ/c0x00000000-cc-rp/photo.jpg','16590124370714063921',23047),('AIe9_BGZuRKHeO1iYrcf4B001kE2cE5aBqfsFW5yrswa0RS5-WUvI-TX0GpHw4VJ_hGQlBtwaA6ncLlFfcre9GWaP6AuAQkuFdej4WjG0owVLyCX97U6mAE','The best place you can visit as a college student in College Station. One of the most nicest and helping workers. Extremely glad I decided to come here.','2017-05-06 19:19:59.902000','2017-05-06 19:19:59.902000',5,'Temesgen Yelima','https://lh6.googleusercontent.com/-M9fmfgJ3970/AAAAAAAAAAI/AAAAAAAAAAA/l7_o-cu52dw/c-rp-mo-br100/photo.jpg','16590124370714063921',3991),('AIe9_BGZuRKHeO1iYrcf4B001kE2CLlld_2iInR80JDd8Q798eYTS7VnDZMmAGJTuzpFF4kPpEh3XFS9uavHY2BI883vRMUbkbGSLM8JXgRkEyc3iObj_PA','I was there last night bc my son had a fever. The reception and the nurse doctor took really good care of my son and I really appreciate that. I would highly recommend anybody to come to this place.','2017-09-26 15:16:06.129000','2017-09-26 15:16:06.129000',5,'20 Number block','https://lh5.googleusercontent.com/-Vn_bwCEOuyY/AAAAAAAAAAI/AAAAAAAAAAA/e3b7z6i0zXY/c-rp-mo-br100/photo.jpg','8679688254631342173',8910),('AIe9_BGZuRKHeO1iYrcf4B001kE2Coyu7nelTmlESi0EKj4g1ivzFSetCjvWp1iaOBvRVO4873qgfYGte-0ZrlsQE0-8bmqz5b0r5B6QjoKcY5zFhAcsDQQ','Fast and efficient service! Stephanie with registration was welcoming and helpful. Dr. Ybarra and my nurse Rollie were great. I got the treatment I needed and my CT was negative which gave me a huge sense of relief. Will def recommend and come here for my ER needs!','2020-01-28 05:26:45.609000','2020-01-28 05:26:45.609000',5,'Cassie Garcia','https://lh4.googleusercontent.com/-ADjLhYuAIwU/AAAAAAAAAAI/AAAAAAAAAAA/shqxVQBsBUw/c-rp-mo-br100/photo.jpg','8679688254631342173',14783),('AIe9_BGZuRKHeO1iYrcf4B001kE2cUMhEaFh6DTKp8qtghTXuHCw-XB9hhrcV0buDodW_ZDuIBUGqmUae_6hhRqQKluyu5RmfxFbvhAHujSkw4foCWSe8PQ','Fast and quick and had good service and also amazing faculty.','2016-03-22 02:28:37.892000','2016-03-22 02:28:37.892000',5,'Charles Deltz','https://lh3.googleusercontent.com/-HLr99AA6ceI/AAAAAAAAAAI/AAAAAAAAAAA/ud_Up4oy8ow/c-rp-mo-br100/photo.jpg','3511292162159714121',8020),('AIe9_BGZuRKHeO1iYrcf4B001kE2cwkCC4w9iJ7EJL-fjQiNqhF501Kz8gy9vio-Vlt9e4o1-sipZBDwFB8EEER9CcXspNq06oXtF9AWpbOinwjWUMsN5oA','They were all so nice and seemed very patient with me. Super professional and they all seemed to enjoy what they do. Will definitely come back here for any future issues. So clean and modern inside. Very reasonably priced for an emergency room!','2019-01-21 00:54:50.520000','2019-01-21 00:54:50.520000',5,'Vica Nova','https://lh6.googleusercontent.com/-AMWxyTwWU-U/AAAAAAAAAAI/AAAAAAAAAAA/M3MiyNzz_wY/c-rp-mo-br100/photo.jpg','3511292162159714121',7462),('AIe9_BGZuRKHeO1iYrcf4B001kE2czY5M6La-k-IJ4JECj3gnHfGvny3b-1y6cfb--d2r0iGDSVyvkkS5QCrKq6gWRP9U8DjxKgliQ8JyJ7BVBf1ujZrNPo','Walked in having so much pain. We were seen almost immediately!! They did everything above and beyond ! I was so shocked how tests were done quickly meds given to help me feel better and I was back home within a couple hours !! I will always come back in the event we need medical care. Thank you thank you !!','2019-03-18 17:51:15.676000','2019-03-18 17:51:15.676000',5,'Lisa Lara','https://lh5.googleusercontent.com/-tRRq7REpfWI/AAAAAAAAAAI/AAAAAAAAAAA/65ncDMSGGJk/c-rp-mo-br100/photo.jpg','17898197009688164559',5804),('AIe9_BGZuRKHeO1iYrcf4B001kE2d4TiYHpgYUh-_jNboQl8mN-1NfEPUTO8D51Ld_dec1knecKy-xTJGCH6T8m3uKsoxXlVCvtXbmFnui3x0MBcNt1NnJk',NULL,'2018-08-30 05:37:24.251000','2018-08-30 05:37:24.251000',5,'Brenda Pruneda','https://lh3.googleusercontent.com/-Oh3RUK7vi_A/AAAAAAAAAAI/AAAAAAAAAAA/ONR1nOq5KB8/c-rp-mo-br100/photo.jpg','14567670160750071148',1540),('AIe9_BGZuRKHeO1iYrcf4B001kE2d9_WSP_ZRBKDHEVXVREhW46Mim9PCbZpflR44qGMfb53q_saK_4AX-HKuSLbkqD4-ZokPrqQc1MpATypCIETekiOKao','This location was wonderful and so caring they offered me a warm blanket and were so attentive even as it got busy. Rashaad was super helpful and a pro at multitasking it really put my nerves at ease Dr Thomas was wonderful along with Keri Amelia, and Fatima. This location was a distance from me and well worth the drive and I’ll be looking to them in the future','2020-02-22 03:26:48.386000','2020-02-22 03:26:48.386000',5,'Caitlin Jackson','https://lh6.googleusercontent.com/-MNqDKAH_eRY/AAAAAAAAAAI/AAAAAAAAAAA/Elc9-X-2v4c/c-rp-mo-br100/photo.jpg','17394740196501090048',14012),('AIe9_BGZuRKHeO1iYrcf4B001kE2deTkSUCk9UEY7tlBlvZNih1CsAXuxGl-4BcFFAXeZ-rfjEl0keYq57DjW38C4It-XuP54-u878HIshBoYUF1_pk6_vY','Dr Appiah is the best! Great doctor that helped me feel well while i wasnt feeling good and explained to me in detail about what caused it and what he recommended me to do ! Excellent service! Stephanie is very attentive and makes feel welcomed as soon as we arrive at the clinic!! Rollie Was excellent as doing procedures and making sure everything worked out well!!','2020-03-06 08:13:30.117000','2020-03-06 08:13:30.117000',5,'Eve P','https://lh3.googleusercontent.com/-ff1Z9j2TxYY/AAAAAAAAAAI/AAAAAAAAAAA/voKSSa7UiA4/c-rp-mo-br100/photo.jpg','8679688254631342173',14706),('AIe9_BGZuRKHeO1iYrcf4B001kE2dExL8a6oLqrhVnetEmEnAvCUSdFi4R6Wz0iN3sW2VnnOhzUDdKRfXK51NyI932iIHs79NsBp60LWp_qzeIDxtdzuxz8','Imagine opening your standalone ER at the same time COVID-19 arrives. And months after opening being the only nearby provider that is offering the 15 minute rapid test! This location is slammed busy. Apparently this is one of a chain of locations so the easy “no appointments, just come in person” blanket statement on the website obviously wouldn’t work for this new location in the middle of the COVID spike in Denton County. Guess they are too busy treating patients to update their website - fair given the circumstances!\n\nWe couldn’t be seen as a walk-in but were able to make an appointment for the next day. When we arrived we still had to wait about 3 hours (in the comfort of our car) to be seen. Once in the building our patient was quickly in a room, tested, and released. Back in the car, we drove around back where the attending doctor himself came out to share the test results (negative for COVID-19, BTW). Sure I wish they could have seen us quicker, and yes the nice lady up front should be coached to stop offering “another 45 minutes” as an answer to your wait time. But all said we are thankful for this service that nobody else around is offering, and the hard-working professionalism of the doctor.','2020-07-11 13:12:34.845000','2020-07-11 13:12:34.845000',5,'Alan Michael','https://lh5.googleusercontent.com/-ghl1g3svmIA/AAAAAAAAAAI/AAAAAAAAAAA/kSXrndTAZDs/c-rp-mo-ba3-br100/photo.jpg','14748677429039074158',21764),('AIe9_BGZuRKHeO1iYrcf4B001kE2dF4FwpS3r8G_H-GzXSWmNXvgjvpSJsblqcADd3GNBNxkAKf7f8G5kNPkY45I2SIc7rteg2UEYrzMxTw8v7pklWRN91I','Great experience. Very fast and friendly','2019-10-27 20:50:08.207000','2019-10-27 20:50:08.207000',5,'Andrew Rodgers','https://lh6.googleusercontent.com/-vL62kpfdGdI/AAAAAAAAAAI/AAAAAAAAAAA/Bnu_GHhiveE/c-rp-mo-br100/photo.jpg','16590124370714063921',3117),('AIe9_BGZuRKHeO1iYrcf4B001kE2dgjI3E2MMSnJ_cX_zkHDpV-AlnIqJ4-0_-eAkA9jAK66-RGWPybmaHUvWSJm5BtsepacA5cNE5hkKaPrUHVwbEd50P0','Great and fast service from everyone, thanks to Nelson, Holly Irving and Dr Smith.','2020-01-12 10:24:18.837000','2020-01-12 10:24:18.837000',5,'David Arias','https://lh6.googleusercontent.com/-NwDhiJGcU3Y/AAAAAAAAAAI/AAAAAAAAAAA/uGOdc63oR1U/c-rp-mo-br100/photo.jpg','12541597562633926366',9538),('AIe9_BGZuRKHeO1iYrcf4B001kE2diCXj9nKwPzU7LuxddGKE8TmYaNM7LEGtCpm8Xmz8_cd0wtD91xp1jZC1B4Ru7klL6lm2pef4jge0e_4aSF9PQU2-BE','The staff was very friendly the entire visit. The nurses (specifically Jacob and Remington) were knowledgeable and explained everything that was going on. Dr. Vakey was great! He broke down everything that he was going to be doing and what my issues were. Kendra at the front desk was super nice and answered any question I had. Overall, great experience and very friendly staff!','2020-01-19 19:22:50.071000','2020-01-19 19:22:50.071000',5,'Jonathan Hoar','https://lh3.googleusercontent.com/-NJw5HLIi2H8/AAAAAAAAAAI/AAAAAAAAAAA/PxglAymKK0Y/c-rp-mo-br100/photo.jpg','16590124370714063921',9975),('AIe9_BGZuRKHeO1iYrcf4B001kE2djuzl-Hi6ZW77l1DKjZOrsJk4wt1vzk-8Bo3eXY_QAUuRIJbmXfRjVZCfkkJFLVzSLIaTo2l0goVztEz0IkcxdNaqiM',NULL,'2018-05-26 13:57:56.667000','2018-05-26 13:57:56.667000',5,'chelse jones','https://lh6.googleusercontent.com/-9coC_n3hPNc/AAAAAAAAAAI/AAAAAAAAAAA/uy7yZvhSzW0/c-rp-mo-br100/photo.jpg','14567670160750071148',1618),('AIe9_BGZuRKHeO1iYrcf4B001kE2Dmra1hZKHUtLwNBz-prMWhxO5sAcGvrwIgajUanqvp1DhdO6ueMZI3KEfvXl4SITazkuQxh8nHhK7BiiiY_OruaB9Iw','Trisha, Kelly, and Thanh took great care of my wife and son.','2020-01-12 23:39:46.559000','2020-01-12 23:39:46.559000',5,'Elias Ayala','https://lh4.googleusercontent.com/-lyCW5lYDU54/AAAAAAAAAAI/AAAAAAAAAAA/SjQnX_coaTs/c-rp-mo-br100/photo.jpg','8918455867446117794',14874),('AIe9_BGZuRKHeO1iYrcf4B001kE2E-PQCD5WyokH7O7AHWG9q-sCG7a6t2v3IqVrcMj0rt2O-cpKIqaqljkEcbjLfkwGmiiG8xT46p57dQbp--mBvxaROMM','Very clean, nice facility. Staff was kind and extremely helpful.','2019-04-11 14:38:14.536000','2019-04-11 14:38:14.536000',5,'Larissa Martin','https://lh4.googleusercontent.com/-Slxjc1vCE-Q/AAAAAAAAAAI/AAAAAAAAAAA/oQl_m8zBCjs/c-rp-mo-br100/photo.jpg','3272657195432704501',6977),('AIe9_BGZuRKHeO1iYrcf4B001kE2e23Po_6RYyZ1FdDz893cIKhQ4l1jGLOfpwnhMHelp7hlwoM-c7z6uP8cacHTgircOYA37OAX2N3RNE7M6-1Azx1Lr84','They always do a great job over there, never feel uncomfortable','2019-02-08 05:51:53.693000','2019-02-08 05:51:53.693000',5,'Cyan Vaughn','https://lh6.googleusercontent.com/-TJbM1As5h_o/AAAAAAAAAAI/AAAAAAAAAAA/YFRlEzNyFpA/c-rp-mo-br100/photo.jpg','16590124370714063921',3561),('AIe9_BGZuRKHeO1iYrcf4B001kE2e68ZqQLyiUKLaa-e7LBYYUr6J7APkhSc-EWqqT6DiS4MrCWjm8NO4I9woPRmA7m1P_wbEuP0plb9qZMPXFwfRO6lrGs','The staff was friendly. They were busy so it did take some time but with all that\'s going on everywhere is taking time. They took good care of me, figured out what was wrong, and honestly I think this pain will be gone soon!','2020-05-26 10:53:51.893000','2020-05-26 10:53:51.893000',5,'A Sa','https://lh5.googleusercontent.com/-XZJ9Ruanh5o/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckdX5Uf05GXqp6tRl9WwU_qReRagg/c0x00000000-cc-rp/photo.jpg','3272657195432704501',22130),('AIe9_BGZuRKHeO1iYrcf4B001kE2ecxbNnwI99PKi0_WhX7nSztZT14HahmQ0mxDimPR6D6YYSHkDKNYvcnITQqr4kht2s0ycuF3j7erAYqqZ8A0pC9zN98','Amazing experience from the minute you walk in the door to the minute your sign out. Everyone and I mean EVERYONE is genuinely concerned about how you are doing and all go the extra mile to make sure you\'re feeling better. They even have a full CT scanner on site for instant detailed imaging! No one wants to have to visit an ER, but if you need to, there\'s no better place to go in Austin!','2018-08-20 21:57:11.125000','2018-08-20 21:57:11.125000',5,'David Smith','https://lh5.googleusercontent.com/-SimRTO1wJkg/AAAAAAAAAAI/AAAAAAAAAAA/95mjuPGJ6yE/c-rp-mo-br100/photo.jpg','16891069708558046635',4443),('AIe9_BGZuRKHeO1iYrcf4B001kE2eda83uzO1zSojRVjRnQesNssu--Geak3CCrHvS2wafx2TziAJSP3b_7BmgHHuzi-QDtwfK1pIjWZqBBq6qdnF5EClv8','The staff was absolutely excellent! From the receptionist (Luisa) to the nurse ( Nikaela) that offered us blankets while we waited to see the doctor, such a nice and helpful staff! The wait was short and Dr. O’malley was so informative and patient. My husband went in to see him because he had a piece of metal stuck in his eye. The doctor took his time and explained everything he was doing. He also made sure to double check that all the metal was out with special equipment and dye. I have worked in the medical for a few years now, and I know this is the way treatment should be!','2019-07-23 02:46:23.253000','2019-07-23 02:46:23.253000',5,'ashley lopez','https://lh6.googleusercontent.com/-QODpqgZz-WQ/AAAAAAAAAAI/AAAAAAAAAAA/k4rayB7opco/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2eeCNOGY1fFaYNE03P1PVa2RMRjTYjQuv5IFchgC1KVtgdU9dD_2fYX6WPFF4CkaVuCT6A-IOyvk4x68fdF9RAmA_90c','Every member of the staff was very polite. Dr was super friendly and great bedside manner. Would highly suggest anyone that\'s needs emergency care to come here first','2019-12-18 06:36:57.396000','2019-12-18 06:36:57.396000',5,'Casey Blount','https://lh3.googleusercontent.com/-snCeCYHXgyc/AAAAAAAAAAI/AAAAAAAAAAA/nLmYwIGrvHA/c-rp-mo-br100/photo.jpg','8626688543755174284',14640),('AIe9_BGZuRKHeO1iYrcf4B001kE2eiov6TVjo9q2lc0l9tnfSUg1EAGoN47nKPecx8hPm7-koi85cpDggOIlD-kdUPz8QtCvXusanykqNyFuJ-GIiMbdYd8','The staff was absolutely incredible! Quick and close to home.','2017-12-18 16:52:54.766000','2017-12-18 16:52:54.766000',5,'Denise Kelly','https://lh3.googleusercontent.com/-bLnsA19rCW0/AAAAAAAAAAI/AAAAAAAAAAA/e6Txl78lhMg/c-rp-mo-br100/photo.jpg','8918455867446117794',9322),('AIe9_BGZuRKHeO1iYrcf4B001kE2EQG0J81XoP8RrN8vx0P3ThIR6TKAhXCoSZnu_93cioBWbRNsSJ1ReMnjbuNevoJlahlX1Kywmww7uKjfPBRjus06pOM','Jennifer greeted me and was very pleasant to work with. The nurse Susie was thorough and very empathetic. DR. Curtis was extremly knowledgable. Overall it took maybe 30 min in and out. I would definitely recommend! Pricing was great for no insurance!','2019-06-02 16:46:49.650000','2019-06-02 16:46:49.650000',5,'Holli Vazquez','https://lh3.googleusercontent.com/-uqLbgOyKLTw/AAAAAAAAAAI/AAAAAAAAAAA/lMKHjNWFVW8/c-rp-mo-br100/photo.jpg','8626688543755174284',8466),('AIe9_BGZuRKHeO1iYrcf4B001kE2ER7Y13rSHd1xw_-xj0j0o5c_ORY-fG9y_GkJqgY-nBbFJ-MTilD7k_yHre788eeWGj1GByRZRfpsQyU1Lfrd-3uYwX8','Dr. Patel, Heather, Alvean, Tricia, & Patricia were all very helpful. There was no wait time for a room and they were very informative about everything. This is my 2nd visit at the location. I prefer this location, because they always make me feel very comfortable.','2019-10-24 17:07:51.881000','2019-10-24 17:07:51.881000',5,'Octavia Griffin','https://lh4.googleusercontent.com/-C-3M4Z-NXP4/AAAAAAAAAAI/AAAAAAAAAAA/3KR6C8DrgL4/c-rp-mo-br100/photo.jpg','16389487648212004696',2782),('AIe9_BGZuRKHeO1iYrcf4B001kE2ERskQKwEIEz9jejyOK-I9YPOIkSscYdwA3lNORralOid1ju2IxdIQVKzIp3hlCG63vC7nLqkEEIL0rOYlwtUcSefJh0','Every time I’ve come here, they have had the nicest and most helpful staff. I always leave better than I came in! Definitely my number one alternative to the on-campus clinic. The RN Anthony, Dr. Jaber, Reg Alexis, and X-Ray Tech Victoria we’re all so great to me!','2018-09-02 14:22:53.482000','2018-09-02 14:22:53.482000',5,'Kate Blevins','https://lh3.googleusercontent.com/-Zq3CkPW6ayM/AAAAAAAAAAI/AAAAAAAAAAA/pQMh4gj8oRs/c-rp-mo-br100/photo.jpg','16590124370714063921',3750),('AIe9_BGZuRKHeO1iYrcf4B001kE2erX2eUy1SCv-gwDmFOuNMj2HahyvU4lq4FN0haLCRC9KutCS2U43jjIPpgQNg4lm1R2sM3GHa9Yzi-Q49tfwh9wDr50','Dr.Zheng was amazing she gave me something for my pain right away. \nVery fast service. \nThe staff was amazing as well very friendly (pales and amy) I definitely recommend this emergency care center😊','2019-07-05 15:35:52.612000','2019-07-05 15:35:52.612000',5,'Denise Dailey','https://lh6.googleusercontent.com/-JV_EVK6vcA4/AAAAAAAAAAI/AAAAAAAAAAA/l0HpqK7DnAU/c-rp-mo-br100/photo.jpg','8918455867446117794',9102),('AIe9_BGZuRKHeO1iYrcf4B001kE2EsW2Me-pr1P3FLJUW9F3USU3O15km2VaYnuB4-HUW1ACudzuvHw-rgpGX1oDlvXRDlUPy3Aa6ROoy2ZKnik3trH-S8M','Friendly and professional staff. They really take good care of you.','2017-09-05 12:52:57.818000','2017-09-05 12:52:57.818000',5,'The School Of Grace & Early Learning, LLC','https://lh3.googleusercontent.com/-1c81GPEh7TU/AAAAAAAAAAI/AAAAAAAAAAA/t0cbrmI6Q0Y/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4983),('AIe9_BGZuRKHeO1iYrcf4B001kE2F7S2JnP1mPtpimVG0WpnUlXvllrVfdghLJQEp_kMBanbDeecuLVPErU0eeSLv2OLHTmFb46Sd08ENhpS6csIO6A4-i4','Fast service, especially during covid times. The staff was pleasant and very helpful. Highly recommend.','2020-07-19 01:38:59.230000','2020-07-19 01:38:59.230000',5,'Kristina Lam','https://lh6.googleusercontent.com/-0K-DtOajfhs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnVV3NnMXAMToKazxUQ0542LHKDJw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21806),('AIe9_BGZuRKHeO1iYrcf4B001kE2fCq0mv0WNVFrzmsXEr8x_wEN-L9XVpZ2O67NDObULWo596qJHsnwdWE2gWNJtZTnNAYqy6K58zHHHI9xadOEGOOVzO0','Highly reccomend this place to any and everyone that is in need of care. Place is so clean! There\'s coffee, and plenty of seating. Our wait was only 5 minutes, not even that. The Nurses and the doctor when we went was amazing! They were so understanding, and extra friendly!','2018-01-10 18:12:54.040000','2018-01-10 18:12:54.040000',5,'Vanessa Solano','https://lh6.googleusercontent.com/-IemQlxOKYYg/AAAAAAAAAAI/AAAAAAAAAAA/BjE6Y9OJOg8/c-rp-mo-br100/photo.jpg','14567670160750071148',1687),('AIe9_BGZuRKHeO1iYrcf4B001kE2FdrvuQExVMif43_EIKa_QIxp3w5e2x9Ni5lZAb0tbPmDUG3rg0CNSoyuOsUuCNrHi6zU-Tv26ykg037kGaIx5n0ic9k','They answered all of our question very efficiently! The place is soo clean! The dr and nurse staff were soo friendly! Would highly recommend this place! Amy is very compassionate and understanding!','2019-03-09 01:59:52.178000','2019-03-09 01:59:52.178000',5,'Tasha Hutton','https://lh5.googleusercontent.com/-HN6_pgsGMJg/AAAAAAAAAAI/AAAAAAAAAAA/Cp97DvTkT-k/c-rp-mo-br100/photo.jpg','8918455867446117794',9165),('AIe9_BGZuRKHeO1iYrcf4B001kE2fgQkOlO4znrUNAEET8GeMHMs1vhXFhNaRL6SxWXvfB525Hbf2ddJKL294fhHhephwnINP7omQKtFA-4AJGcBjqevvek','The doctors are patient, understanding, and chipper considering the situation. 💙 Keep it real.','2020-07-28 05:12:50.781000','2020-07-28 05:12:50.781000',5,'Logan Albert','https://lh5.googleusercontent.com/--B6olUExIcE/AAAAAAAAAAI/AAAAAAAAAAA/fNojdch761g/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',22540),('AIe9_BGZuRKHeO1iYrcf4B001kE2FhmJPAqfqGW-jZ4ZxqNzG-fWC-ziVRHAtTm8osoWlQ-QuEgTC1o3muWZ88fVtegaTtxq0029OXcC9V3ZEV4e9YRscss','I had never utilized an emergency center before, but found the need to due to a sudden high fever and racing heartbeat. The facility was very clean, the front desk staff very friendly. I didn\'t even have to wait to get taken back. They got me situated, assessed me quickly and got me on meds and IV fluids very fast. The doctor listened to me and checked on me frequently as did the nurses. The rooms were private and clean, and the temperature was actually comfortable (although I was running a high fever, so sub-zero would have been comfortable). They did not rush me out, and let me rest so my fever could come down and I felt okay to head back home. I even received a follow-up call a day or so later to see if I was doing okay and if I needed anything else. Needless to say, should I find myself needing to use an EC again, I would have absolutely no hesitation to use SignatureCare on Wirt Road. Thank you.','2017-03-13 06:04:43.514000','2017-03-13 06:04:43.514000',5,'Regina Kirkland','https://lh3.googleusercontent.com/-VYLK-P3lxLQ/AAAAAAAAAAI/AAAAAAAAAAA/KX707kmwJSU/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2390),('AIe9_BGZuRKHeO1iYrcf4B001kE2fiADqMuzr-s0eXNPzrRYW9nq9cEgFMV2CW9TUS_KiAoiLw2O6DWDmW8oFPs0pDnDE0xxGTEMFJcSD7YLnAM9lbJNmTY','I had a great experience at this ER. Staff was super friendly and knowledgable. Hoping that I don\'t ever have a need to go back but if I do, they will be my first stop. Kudos to Dr. Lingan, Nurse Shelli, Radiologist - Chad and Christina at Registration. Top notch!!!','2019-01-08 21:02:11.763000','2019-01-08 21:02:11.763000',5,'Katherine Fowler','https://lh5.googleusercontent.com/-_TEKAbjMBVk/AAAAAAAAAAI/AAAAAAAAAAA/2ZIq78o-SyY/c-rp-mo-br100/photo.jpg','16891069708558046635',4374),('AIe9_BGZuRKHeO1iYrcf4B001kE2FL6k2RkMyMflV75R_QkdpuHYrM5kOsC-iJTaeeXrKycllCia-3ALAwpgQNIS2_o2eYLPtJcgHfMxKI6r_x9vv0ZeaHc','4 months after service I was hit with a $1,500 bill this is after insurance paid over 13k for a food poisoning situation. Granted I got a cat scan which I’m inclined to think an ultrasound would have done the trick but ok. I was only there for about an hour. The only thing I got was temporary pain relief. I regret going there now','2019-06-21 14:58:36.590000','2019-06-21 14:58:36.590000',1,'Million Airess','https://lh4.googleusercontent.com/-ivQlHedNeBQ/AAAAAAAAAAI/AAAAAAAAAAA/cpSd6aDEFaU/c-rp-mo-br100/photo.jpg','8918455867446117794',9114),('AIe9_BGZuRKHeO1iYrcf4B001kE2fMeplNgsSE-JHJjVMaBOHc_8jJD-fWSB9pP0euzk_-p1Vc_FRSR6bqXLGz08hhcmvyPxpJv4JOoM7V9Hbn4onQvOrCM','Based on prior reviews raving about this location, I must have visited on a bad day. I was taken to a room and introduced to nurse Nichole. She seemed nice but appeared disinterested in my history and medications as it was brushed off once I began telling her my info. Then I waited for Dr. Tran. She looked at my injury about 2 minutes and told me to wait for xray. That fella came in and took care of business. I asked for ice pack to help with the pain. Then I waited...and waited...and waited. I was in that room for 1.5 hours. I called out for help but no one responded, even though they were walking around outside the room and could clearly hear me. Finally, Dr. Tran reappeared to give me a diagnosis and tell me that they were going to buddy splint my big toe. It was at a 90 degree angle and she was going to leave it that way! I demanded that she straighten it, to which she responded, \"I guess I could try.\" She was able to straighten it almost completely. I was very satisfied with that. Then she sent in a nurse aide to buddy splint me and bring me ice. She came in with what looked like scotch tape. I insisted on another kind of tape which she found in a drawer. She did not put any gauze between my toes, which I now know is required. She left and I waited for discharge papers. After being in that room so long I began to panic and had to get out of there. I never got that ice pack either. I felt completely abandoned and ignored. By the way, they weren\'t busy. I doubt I\'ll go back there.','2020-06-04 17:22:41.462000','2020-06-04 17:22:41.462000',1,'Sandi Evans','https://lh6.googleusercontent.com/-WEFNvu-m-bo/AAAAAAAAAAI/AAAAAAAAAAA/XQMXa6l5FiY/c-rp-mo-br100/photo.jpg','8918455867446117794',22935),('AIe9_BGZuRKHeO1iYrcf4B001kE2FOEoZ6HI9L0W6x5Y1EuZ74aARUfPSy9ToA-yKOhgjELUuLK0FZd4yDwpKuF9zV4AEXt4RunwdVHZav0Ze74nA18mHXI','Took my mom to this facility, everything went great and will be returning for myself. If you go to this one ask for Dee, she really was helpful with everythjng!!','2019-06-26 20:57:46.873000','2019-06-26 20:57:46.873000',5,'Melissa Skelton','https://lh3.googleusercontent.com/-Cs7lZaOZpeQ/AAAAAAAAAAI/AAAAAAAAAAA/T3J8jRahFcU/c-rp-mo-br100/photo.jpg','3511292162159714121',7280),('AIe9_BGZuRKHeO1iYrcf4B001kE2FPOTXr0u_TYn07zdr0Jvj1aPMcjnOx7aC0Wzgvg2V4iiqRT8h_wb20_5EetEbRfAD35C_PPrAnz-XZ0TefyPESkfIro','Nicky Ty Cali Michelle were great good service very professional tru homes Michael Hunley','2020-06-26 16:13:33.679000','2020-06-26 16:13:33.679000',5,'The GoldenGoon','https://lh3.googleusercontent.com/a-/AOh14Gh0wNd-1whcJAg5DkrIB8wRi1xQrPU9rCEJvr4lDw=c0x00000000-cc-rp','2694018788013845459',21263),('AIe9_BGZuRKHeO1iYrcf4B001kE2frEe0aLf-AlM0oUa2WPeHseE6sioTAQHDkNJP6OnVFpIyrpH2asD9aX_Lx6RIW5vhJeOHXyug73fX8JGet-YYpQH3-U','Best emergency place so far in midland ,really nice people and they\'re fast 😀','2020-03-14 21:59:01.855000','2020-03-14 21:59:01.855000',5,'Erik Alvarez','https://lh4.googleusercontent.com/-HViTMS_7C4k/AAAAAAAAAAI/AAAAAAAAAAA/mNvLwzEnYoI/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',20921),('AIe9_BGZuRKHeO1iYrcf4B001kE2fWxyD2VHXJj5RtLdJ0MUdkYb0L07BaAkBggTQ3gjBWeqeaEOGGmcQwufmcxx2tBbKOVYrpbTHZweD4_hNLYfRCWSnVI','This facility was very clean and comfortable! Tricia, Heather, Sean, Jesus and Dr. Hall were all very friendly and accommodating. I definitely recommend this place!','2019-08-09 18:53:44.276000','2019-08-09 18:53:44.276000',5,'Natasha Kontominas','https://lh5.googleusercontent.com/-cW01U9tyaUw/AAAAAAAAAAI/AAAAAAAAAAA/75Yu7xX_IVg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2fXHPcUH-oabyMcfst_juqPOhKC94VsOJr0oFvUIcl-awTw3Mp0UTTcS8DutiqbAt7OVKHG6auDZFP1b5O6eZoB7iVss','Susanna and Emily were amazing !!! Great place to get your COVID test. Very comfortable and easy experience. Thanks again.','2020-06-16 15:04:28.047000','2020-06-16 15:04:28.047000',5,'Nicolas Svend','https://lh6.googleusercontent.com/-UsdBA2kHhKY/AAAAAAAAAAI/AAAAAAAAAAA/lSt1vtJ9dWs/c-rp-mo-br100/photo.jpg','2077061009497551125',21103),('AIe9_BGZuRKHeO1iYrcf4B001kE2FxnG6G13vHQQTbyfYeLwlP4C9QfTEiknk2u_V3hd4n4qV0QaFgTSRMVV2zrq0hvU9uUxd79y0UhFqeBCXoqa-E56e1g','As long as I live in Killeen, TX I will never use another hospital but signature. This place is quick, very friendly and they go above and beyond...','2020-05-19 14:17:25.920000','2020-05-19 14:17:25.920000',5,'tracy webb','https://lh3.googleusercontent.com/-OwocCPzZqyk/AAAAAAAAAAI/AAAAAAAAAAA/CCRRoVJUINg/c-rp-mo-br100/photo.jpg','2694018788013845459',21464),('AIe9_BGZuRKHeO1iYrcf4B001kE2g6htboC8TXCdsoyzHFcHsHR2k5oqZoSoUj1h0CrbW_B-zFgXqTd8difBK1SS4OkHRmvSo1u7bR0TnPzC7t3ZlX2F_Mk','The best ER experience I’ve ever had!! Great staff and friendly service. We stayed their 2 nights for urgent pediatric care. They cared for our son using the same procedures the local\nchildren’s hospital would have done. My son never got an IV put in prior to this visit, so we pretended he was getting lasers injected in his arm like Buzz Lightyear. :) Their goal was to take care of us and make us as comfortable as possible. They did just that.','2019-02-02 05:13:14.134000','2019-02-02 05:13:14.134000',5,'Stephanie Owens','https://lh6.googleusercontent.com/-OGl56NfqdRE/AAAAAAAAAAI/AAAAAAAAAAA/QN5TtQuRgrs/c-rp-mo-br100/photo.jpg','16891069708558046635',4360),('AIe9_BGZuRKHeO1iYrcf4B001kE2gB2RuFVCiKtSRzzNxb5anWB1rfw7x22CeV3RUK8Zhd8f_t8SLYFtvp8JGieVMjdMMZHRrXYzl6mOh4hzMzOeHaaqqg0','The staff was absolutely amazing this morning! We came in around 3:30 AM and everyone was so kind and thorough. Dr. DeWaal, Nurse Katie, Radiology Tech Chad, and Aileen in Registration were excellent. They were so thorough with our daughter and very understanding of her ASD. I would highly recommend this specific team to anyone who needs emergency care. Thank you all for your professionalism, expertise and compassion. Our daughter arrived in pain and left with a smile on her face.','2019-05-11 19:19:26.508000','2019-05-11 19:19:26.508000',5,'Maxie DeBlanc','https://lh4.googleusercontent.com/-Ey7Ry3dU_Y0/AAAAAAAAAAI/AAAAAAAAAAA/lOVGPPeJpK0/c-rp-mo-br100/photo.jpg','16891069708558046635',4282),('AIe9_BGZuRKHeO1iYrcf4B001kE2gdwT0WojT2LNy4gk0holymLy_Rm0yDLi0yYjObcTbQcDhG1KtY-ydm7-l4ZdLAwaXc90p98Clf44fND3I5dd7YQQ5_E','Great staff, great doctor, overall great experience','2019-10-12 01:13:02.937000','2019-10-12 01:13:02.937000',5,'Sahian Tena','https://lh3.googleusercontent.com/-7QRNH0a2Tvk/AAAAAAAAAAI/AAAAAAAAAAA/SeePpXG1T-8/c-rp-mo-br100/photo.jpg','17898197009688164559',5510),('AIe9_BGZuRKHeO1iYrcf4B001kE2gloh7jOoXJJ5EcRfyHKymhKt0_TFSPoQeyOgJYtWVwraayG0ct5iuoziVTfyx7vq0NUZyZczHGZl9t9wLS3826MMoLA','I came in to get some blood drawn and I was nervous. The staff was great. Jen, Trisha, Shay, and Ariel took great care of me.','2019-05-11 10:16:19.653000','2019-05-11 10:16:19.653000',5,'Elias Ayala','https://lh4.googleusercontent.com/-lyCW5lYDU54/AAAAAAAAAAI/AAAAAAAAAAA/SjQnX_coaTs/c-rp-mo-br100/photo.jpg','12541597562633926366',507),('AIe9_BGZuRKHeO1iYrcf4B001kE2GnIpeLstKyhqWtZwEL1giUk0Cu8u6yD-nE4sgDTvEBye-Q4eUPNLNNiLb4tLvXIuTlotwVJczaRpIg-0HedY95xi-Ws','Service was absolutely amazing! Fatima, Selina, Thelma and Dr. Edwards was great. Bedside manner was terrific. Thanks you guys!','2017-10-22 16:41:52.104000','2017-10-22 16:41:52.104000',5,'chasity peters','https://lh6.googleusercontent.com/-oeo7cLhSFjU/AAAAAAAAAAI/AAAAAAAAAAA/Muh9DQ3Rkj0/c-rp-mo-br100/photo.jpg','17394740196501090048',4944),('AIe9_BGZuRKHeO1iYrcf4B001kE2gRHOo9q5WDB8gaLna23du92UihYMiHbylczxwS-5Jq1UINqnAvp59gQlvdjD0rJ2W7wSlLWFJI5CDH5bi2iacPIPV9w','Just bad paid 175 for nothing they pulled me back for an ear infection charged that gave a prescription that was none existent','2020-07-09 23:31:55.708000','2020-07-09 23:31:55.708000',1,'alexandra marrujo','https://lh3.googleusercontent.com/a-/AOh14GjnSTTTT6ZgXlY6M2KbtGfE4JapFLUrURSRfwgG-g=c0x00000000-cc-rp','17898197009688164559',22098),('AIe9_BGZuRKHeO1iYrcf4B001kE2gVkDPk-tLF0mWZKXKDDDOoKvUKa_bDVBiXmM3lhIaFbBtacShiU_8vzgEdWghkz7cnvpBbBFbU5b5JhKEw7yI5LxCso',NULL,'2019-07-04 04:51:39.458000','2019-07-04 04:51:39.458000',5,'Oluchi Nwachukwu','https://lh4.googleusercontent.com/-K9kQxNQBtFE/AAAAAAAAAAI/AAAAAAAAAAA/xK3FTK7qzQc/c-rp-mo-br100/photo.jpg','8918455867446117794',9103),('AIe9_BGZuRKHeO1iYrcf4B001kE2gwvJxeEWMp4SLirzwzgLWAY-AwHUsqzzOnR-BGmYqUoGOpJEFfPQ506idNTI6Q15f8lADAKZuhT12O-a9NZll0XQvtA','Received awesome care from Dr.Yost, Brandi, Karen, Kim, and Gunnar.','2020-01-22 23:12:38.610000','2020-01-22 23:12:38.610000',5,'Sophia Lejeune','https://lh5.googleusercontent.com/--PthGDF38Zg/AAAAAAAAAAI/AAAAAAAAAAA/5dADjWDTYhU/c-rp-mo-br100/photo.jpg','3272657195432704501',10285),('AIe9_BGZuRKHeO1iYrcf4B001kE2GzFzUecyzbvWhSYH7CLuTqnsBGFQiRd9FbuL3ica7bKFTBaGrr9RCxAjsJCcbLl7HVRnBdnW1kJi-Ezx6ecv3194Mhw','Very polite, took time to help me through the necessary procedures and fully explained my diagnosis.','2018-06-03 10:00:53.058000','2018-06-03 10:00:53.058000',5,'Stu Werner','https://lh4.googleusercontent.com/-x65-AH9Hcec/AAAAAAAAAAI/AAAAAAAAAAA/fYAqEk2tZCE/c-rp-mo-br100/photo.jpg','14904078213800803294',2248),('AIe9_BGZuRKHeO1iYrcf4B001kE2h8H_cmqaulQGexIo3N4gN5I6Umj3bDCzJDJwLJ171yIqWUX2x7etuY4U793EjnDGrb_aW4NvGIK-rplmt2DWr42PXRc','I can not express enough the gratitude I have for this staff here, both the front staff, and back are just great. I went in last night, and I’ve been there in one other different occasion. I’ve had different doctors and nurses both times, and let me tell you both the experiences there were great. You can really tell the team loves what they’re doing, and they know what they’re doing. They’re so quick to check you in, and take care of you as a patient, and I’m very very grateful to them for being so kind, and making sure I feel better, and get the correct medication to make me feel better. Thank you guys, keep up the great work! 👍🏼','2019-04-05 13:07:20.311000','2019-04-05 13:07:20.311000',5,'Esther Bustamante','https://lh5.googleusercontent.com/-u4W0RIn_U-Y/AAAAAAAAAAI/AAAAAAAAAAA/NtzHhZSXD3s/c-rp-mo-br100/photo.jpg','3511292162159714121',7368),('AIe9_BGZuRKHeO1iYrcf4B001kE2HbH_AwNhFQeoPxE1pWS5Rj5KhzUFEU6L6Q5QpG2vLeHhYRkJU7_Y836HTvjBq6Ur8GlAb2XNDZ83GpvYKXG1Wiv5ePE','The staff were great and very efficient. Very caring. I highly recommend.','2016-12-01 23:21:41.156000','2016-12-01 23:21:41.156000',5,'anita dooly','https://lh5.googleusercontent.com/-PvX2QIjXU_4/AAAAAAAAAAI/AAAAAAAAAAA/7ktaE_x7Q0o/c-rp-mo-br100/photo.jpg','17394740196501090048',5154),('AIe9_BGZuRKHeO1iYrcf4B001kE2hIN9PzRD9bTv1ia5gijq0J2ii1BLYGsTckFlmgFTddUTE3cAEp6vLmfABvEiORo5Auyo3-cAs77SRMgyXQXQDW7tB2U','Super Quick! I was in and out in a flash. The entire staff from the receptionist, to the nurse, to the doctor, were all very knowledgeable, professional, and compassionate. Oh and then they even offered me snacks and drinks. I’m talking name-brand, like Gatorade and Cheez-Its. I am so happy they are now taking Tricare-Prime. What an amazing alternative to waiting six hours somewhere else. Yes there is a $61 co-pay, for retirees, but still. It’s a “No-Brainer” for me.','2019-11-04 16:57:12.095000','2019-11-04 16:57:12.095000',5,'Sandi Primous','https://lh4.googleusercontent.com/--jGXIEMu2dE/AAAAAAAAAAI/AAAAAAAAAAA/VcL_1KHLkNk/c-rp-mo-br100/photo.jpg','2694018788013845459',6021),('AIe9_BGZuRKHeO1iYrcf4B001kE2HiP8ESIalL_2CJkLv_l-XIVpJhKKH4uJ54hSHaea6N0xQVuI2qbAliEgZCsrXfvLNDtsonIWhQVWpAcr0ogaXXZkPk4','I was seen within 10 minutes, if that, of filling out my paperwork. Everyone, from the receptionist to the nurses, was very helpful and friendly. I came in for a covid test and the nurse explained everything about the testing and overall just made the experience very comfortable considering the circumstances. 5 stars all day, thanks for the great service.','2020-08-18 23:12:52.186000','2020-08-18 23:12:52.186000',5,'Michael Garrett','https://lh5.googleusercontent.com/-ibl_nPHLmJM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckL74HJd1dLTW6wnm__FETRDuNHNg/c0x00000000-cc-rp/photo.jpg','14748677429039074158',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2hkINaXVROpDGOoBTILMIipEjcsKgbtWre2c6_K6msbg_oiD__pmJQijJGD_Fc1d7FIVffWbk5u0kzPI7ZVsFrfRkGto',NULL,'2017-07-24 01:55:35.478000','2017-07-24 01:55:35.478000',5,'Stefanie Chambers','https://lh6.googleusercontent.com/-c8qPUivT50U/AAAAAAAAAAI/AAAAAAAAAAA/IP0jfKhFCbA/c-rp-mo-br100/photo.jpg','17394740196501090048',5014),('AIe9_BGZuRKHeO1iYrcf4B001kE2HoCX1O2ht0x-yBKZ5oIe2F5H-FrzHgk9PHwMXTeYNzUtfDpH8J0iTxSla1dWFYAC3UxrBYp6l7kll_eOpnO9zcd59Jo',NULL,'2016-09-23 15:10:50.816000','2016-09-23 15:10:50.816000',5,'Nicheeka Smith','https://lh5.googleusercontent.com/-ikZuPsQ6tMI/AAAAAAAAAAI/AAAAAAAAAAA/Lgqcp9xB0_c/c-rp-mo-br100/photo.jpg','17394740196501090048',5200),('AIe9_BGZuRKHeO1iYrcf4B001kE2hRDPG91KWM-E2KfcUc3HsDLcgdCVDyK9g3kPtTM5mNdZvwy55p-X3CQb6fGCSSJtS6TQw0iGxfe5ku5d3xiRn1JaAZA','I really loved the people who helped me there they were very upfront, understanding, fast, and professional. I would recommend if needed you guys go here when your in need of help.','2019-08-31 13:15:47.571000','2019-08-31 13:15:47.571000',5,'Christina Hughes','https://lh4.googleusercontent.com/-MZyu7ecZ-oo/AAAAAAAAAAI/AAAAAAAAAAA/U1Vxu1PLr4c/c-rp-mo-br100/photo.jpg','8679688254631342173',8814),('AIe9_BGZuRKHeO1iYrcf4B001kE2Hrz2PlmK0NXCOa2LwHEcarVKFipPkCNnZnqd7wkmamwI8tEhE5fbCArqijWvRWJoOlSjNofPvm2teHMATvzLQATbgTE','Dr Daniels Elizabeth T Karen and Anastasia Took very great care of me I really was sad because I didn’t know what was wrong with me and they really made me smile and I’m in less pain now thanks so much from Jhonni Blaze @jzapalvonkrishna on Instagram love you guys','2019-10-30 08:15:48.205000','2019-10-30 08:15:48.205000',5,'Jhonni Blaze','https://lh5.googleusercontent.com/-kKEZGYvF8tk/AAAAAAAAAAI/AAAAAAAAAAA/93SNM8H93JM/c-rp-mo-br100/photo.jpg','3511292162159714121',7151),('AIe9_BGZuRKHeO1iYrcf4B001kE2HSUa4jnD6XKYMh2OgxZ9M2pERKipUL1KEZx4kJWh9HwSUzNfo2ItM_Qw-cyeaELtcmJWHMzjYalfElJlnc20DLmm49Y','The staff here are awsome. I want to Thank Natalie (Front desk) Vivienne and Gina (Nurses), Diem (Rad Tech), JB ( Tech) and Dr. Miller for an outstanding job taking care of my needs. Very caring and concerned.','2020-01-30 18:44:21.720000','2020-01-30 18:44:21.720000',5,'Denna Blair','https://lh5.googleusercontent.com/-oawqk_PwIx8/AAAAAAAAAAI/AAAAAAAAAAA/_jHuQbQc_iE/c-rp-mo-br100/photo.jpg','14567670160750071148',13576),('AIe9_BGZuRKHeO1iYrcf4B001kE2HTE3uekAeJ34PSrRmeJ1DvV4Lb-C-FylB9fXf0ZqToayqdAcH1-vnaafA8w013V7F4_fGQpiyxksXqjxz7JZnMb7qms','The care center is really clean and modern equipment! Staff is professional and corteous, can make a trip to the urgent care center an actual pleasant experience!','2018-08-11 15:26:27.756000','2018-08-11 15:26:27.756000',5,'Joaquin Villegas','https://lh6.googleusercontent.com/-aCAIHBmthJ8/AAAAAAAAAAI/AAAAAAAAAAA/qyW-Zkc9PKU/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7636),('AIe9_BGZuRKHeO1iYrcf4B001kE2hzfxjy5rAWp4m1uoWRGZKUdtP4XD9sbETRqOfFgvgv9WWab6jbqcIfVYGLCQlektWzK6mLlVepFmFCPn48NuMsmBKrI',NULL,'2020-07-19 18:11:29.250000','2020-07-19 18:11:29.250000',5,'Victoria Muniz','https://lh5.googleusercontent.com/-HIGNnv949m4/AAAAAAAAAAI/AAAAAAAAAAA/oyvb7xELS74/c-rp-mo-br100/photo.jpg','14748677429039074158',21704),('AIe9_BGZuRKHeO1iYrcf4B001kE2i2dGTR2xTKDTkO8DNYp2-ug1QGQGf7RI_kz_Bioh0VIzFbn4wuUPvjuExypNYI6Z1p0LrdD6iDsYRtVSLXyCwvKNH7Y',NULL,'2018-06-05 08:38:08.785000','2018-06-05 08:38:08.785000',5,'Taffeta Burleson','https://lh4.googleusercontent.com/-KJi8frGBIAs/AAAAAAAAAAI/AAAAAAAAAAA/jZIOsyPS84Q/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3821),('AIe9_BGZuRKHeO1iYrcf4B001kE2IaIRXN2hTmx8np_TJh9O5xl1V-cH5-34g1GCkoKB576UIp2G7d23oao5SmI4hOhmmP2aXErW6cxGrRBQkTWSEDL0bSw','The facility is clean warm and made me feel like home. Staff really knowledgeable. Dr Mauldin was very threal and caring.','2019-06-13 07:46:16.347000','2019-06-13 07:46:16.347000',5,'jay m.','https://lh5.googleusercontent.com/-4VBuKBWftQs/AAAAAAAAAAI/AAAAAAAAAAA/PBXFAhKG4SI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2iaOfwTJcpvCIpb5LM4F_yDi19wmze6aX5Qa1SmdGqGnw3AA8cjiokOk-jVRRRn2TDxjM7T9X6sDWsH0vx2BoT9KJbBc','Walked in and was greeted by Leslie at the front desk, who was very polite and welcoming and helped us promptly, answering our questions and concerns. We were taken back quickly, and saw Dr. Boester within a few minutes of our arrival, we did not have to wait long at all. He immediately addressed my needs and was very friendly and I felt comfortable with him. I got xrays with Eve, and helped by Churiah and Olivia, who all made me feel at ease. Definitely a wonderful experience given the unfortunate circumstances that lead me there. I would definitely recommend this facility! Thank you everyone!','2019-08-22 23:18:25.377000','2019-08-22 23:18:25.377000',5,'Sean Carlson','https://lh5.googleusercontent.com/-13paUjMy0R8/AAAAAAAAAAI/AAAAAAAAAAA/EBnIhjlcm6w/c-rp-mo-br100/photo.jpg','3511292162159714121',7193),('AIe9_BGZuRKHeO1iYrcf4B001kE2ih-Ghh4PqExWc9CskSNU6pipMEHq8Esak41xqRva5-cFR8CGW9t8fW24_JX-T6vhDa9QIxp_SH-hRWmJSzvx8GoqYHw',NULL,'2019-01-14 13:36:59.389000','2019-01-14 13:36:59.389000',5,'Kiara R.','https://lh4.googleusercontent.com/-tPn8nFWhWEc/AAAAAAAAAAI/AAAAAAAAAAA/5fteJ7ho8Ek/c-rp-mo-br100/photo.jpg','3272657195432704501',7056),('AIe9_BGZuRKHeO1iYrcf4B001kE2iH3OrMc_yBTETdV0zEJE2dN-bNPX3LJzullC0B4AUzlfAsLLiJl-PKC0eysPQg2UoZMGlysJKXL0rTaq3le3Tu9YhWU','5/5 stars! I came in worried I had the flu and my nurse, Gina, was so nice & took great care of me! Dr. Singla answered all my questions. I walked out feeling 100x better than when I came in. Thanks yall!','2020-01-25 00:14:55.470000','2020-01-25 00:14:55.470000',5,'Hannah Goidel','https://lh5.googleusercontent.com/-CvfZSxoqbF0/AAAAAAAAAAI/AAAAAAAAAAA/ri11yvy9Ptk/c-rp-mo-br100/photo.jpg','14567670160750071148',10129),('AIe9_BGZuRKHeO1iYrcf4B001kE2IhGX8G8L0wV1dST6RFVsDBJb1yDIACSah-Yxa20Lh6kcGtpkOeB3us_aojzWPXwwWZMP2E4a1OgEcPoma0SOBxbLqYE','The wait took a while but Dr Daniels, Gabe & Jerry, Stephanie and Okarys at the front desk were all very helpful. Will come back if need to','2019-12-07 04:23:47.436000','2019-12-07 04:23:47.436000',5,'Mason Ackroyd','https://lh6.googleusercontent.com/-6FB8YIYQ6UU/AAAAAAAAAAI/AAAAAAAAAAA/9H4Zbjxvim8/c-rp-mo-br100/photo.jpg','16590124370714063921',3046),('AIe9_BGZuRKHeO1iYrcf4B001kE2IPj9vARLmM6ea0-tEtdhXd66InDfvKUSW2wjCM9GaUpF98EL4k-fWYbScRSnQtmJq39iyXFq096VkmOrjslwyFJ3Ph8','Had a great time!','2020-03-06 01:02:39.575000','2020-03-06 01:02:39.575000',5,'John Waterman','https://lh5.googleusercontent.com/-UrivSkoC0u8/AAAAAAAAAAI/AAAAAAAAAAA/bn18FQfdmas/c-rp-mo-br100/photo.jpg','8679688254631342173',14708),('AIe9_BGZuRKHeO1iYrcf4B001kE2isACLviAazMeWPiGQZJrSqK9nZy9oWldJFHadOHEqZzxmThKw0IqlR5U8XBOyfKZ2b_jNBWSKrMYXtGuPHjEIj7irTc','I had a bad bike accident in Terry Hershey Park and went straight to Signature Care Westchase. After having had a previous experience with them, they were my first choice. I\'m glad I did. I saw: \n\nDR. MILLER, MD, BILLY J \nNurse: Sarah A G \nRadiology Tech: Laura Imelda P \nFront Desk: Malissa M Re\n\nThey made sure nothing was broken and gave me excellent care in a timely manner. Highly recommend.','2019-08-31 10:14:02.356000','2019-08-31 10:14:02.356000',5,'Donna McCoy','https://lh5.googleusercontent.com/-g6jhN2BbmrY/AAAAAAAAAAI/AAAAAAAAAAA/uxJ99pHvXYM/c-rp-mo-br100/photo.jpg','12541597562633926366',442),('AIe9_BGZuRKHeO1iYrcf4B001kE2IwOF67FOAtG1Tf8b2yVbgBOdsFK4pE0_xXmXDZIn0FMBtICqFztAwhrZuu_x4EGFIW56OHHUvXrgavMgI3XGDaIiLZw','I have never been to a Signature Care facility but on Aug 11 2020 I found myself there and I actually had to stay the night, which I did not know these facilities did. I have to admit at first I was scared to death, I didnt know any of the staff or the doctors but it did not take long for my anxiety to disappear.\nDr. Sajal Das was excellent and there was another Doctor and I am sorry to say I cannot recall his name but both were excellent with me.\nBut I have to give an extra shout out to Gabby my night nurse and Alyx my day nurse. You guys are amazing!!!!! Thank you, just doesn\'t cut it, but thank you for your compassion and ability to connect.\n\nWishing you the best, \nSchultzie Smith','2020-08-12 19:44:21.923000','2020-08-12 19:44:21.923000',5,'Schultzie Smith','https://lh6.googleusercontent.com/-D_vVTOgJtWo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck1vefHbJXwjxey6IVp4eLlGWZsnA/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23026),('AIe9_BGZuRKHeO1iYrcf4B001kE2jhP9JwCUxP6Va1NTYFdnw-_Gt8POCTwouFcDRicHlUbOO-eO41PKPz4-_fA7Q9vQ34zJy7XOty-RdkUwogeuzG_PsrQ','This is the BEST ER I\'ve visited. There wasn\'t a long wait and everyone has a pleasant personality. Dr. Henderson, Jennifer, Gunner, and Courtney were all compassionate and extended the best care possible. Jennifer even called me the next day to check on me. I know where to go next time I\'m sick. Thank you everyone!!!!!','2019-09-21 03:03:06.457000','2019-09-21 03:03:06.457000',5,'Lorenthia Mormon','https://lh5.googleusercontent.com/-Q8s0XUqqUlg/AAAAAAAAAAI/AAAAAAAAAAA/Zq4a5Z6oqcw/c-rp-mo-br100/photo.jpg','3272657195432704501',6886),('AIe9_BGZuRKHeO1iYrcf4B001kE2JiV933KEB5ShltxuhE6iOSQLEUFHQWg8Ad7djnjLSqY7Y5XXekrkfNIjbuul4WwhPfUsN9OOyOnew0QCytOTAdQFh8k','Diamond and Natasha was amazing they greeted me soon as I walked through the door and got me signed in immediately, Kat my nurse called me to the back and was very nice and helpful she knew what she was doing and was very caring and nice and walked me through everything and made sure I understood all my instructions, Frank from radiology was gentle when it came to fitting me with my brace and helpful he made sure I knew how to use it, Dr. Jones was extremely professional and thorough he made sure I I knew what he was talking about and he used words I could understand he didn\'t throw a lot of medical terms at me. He was very nice and caring and I formative. I am thankful for the whole the staff at signature care.','2019-07-04 03:30:13.368000','2019-07-04 03:30:13.368000',5,'Shetika Jones','https://lh4.googleusercontent.com/-jMLPvBroWJc/AAAAAAAAAAI/AAAAAAAAAAA/hfnjMgbEfW8/c-rp-mo-br100/photo.jpg','2694018788013845459',6119),('AIe9_BGZuRKHeO1iYrcf4B001kE2JMzojhQ8lEBdJ9Jho4PuDdHXF6T2yRejKCnECaxacQzof2tv2BmgQSlFTwA-uLTnHtdcYCMabxrlEXagVIiMYklR0ZE',NULL,'2016-09-29 23:51:29.202000','2016-09-29 23:51:29.202000',5,'Martha Martin','https://lh5.googleusercontent.com/-gXHdH5eVu2s/AAAAAAAAAAI/AAAAAAAAAAA/kO-FF3C-UeI/c-rp-mo-br100/photo.jpg','14904078213800803294',2457),('AIe9_BGZuRKHeO1iYrcf4B001kE2jNh_T_LWxFDo3ialCQhUFUgNR69ajC9286gUenfD0rZdLc0CJiVNWn2m8F9nU9acFijihqdIwMvU60aj1Gv-AtQdoh8','I was rushed in with an intense pain in my side and everyone was more than helpful, friendly and really helped make this hellish day much better. Dr. Faig was very calming and knowledgeable, and the nurse Laura was very sweet and laughed at all my bad jokes. Norma, the ER tech was able to work through my fear of needles which is quite a feat! All and all, really great and helpful service and a very clean and modern facility.','2019-01-22 19:13:39.811000','2019-01-22 19:13:39.811000',5,'Katie Tyler','https://lh6.googleusercontent.com/-TD_1io-cTRs/AAAAAAAAAAI/AAAAAAAAAAA/fChZ7d9J7Ho/c-rp-mo-br100/photo.jpg','3511292162159714121',7459),('AIe9_BGZuRKHeO1iYrcf4B001kE2jNj5q_tRcf3oCuZgRpxE4gvVmr2ERPbBlu-OpkyCelRu_7d5m0EnHadM-a8Q4jJsQOBzYI4ElJUyjvy-rxnsWf5HDzQ','The whole experience was fast and easy. The staff was great and very informative. Thank you, Dr. Angela was great.','2020-07-18 17:46:04.045000','2020-07-18 17:46:04.045000',5,'Lisa Aza','https://lh6.googleusercontent.com/-y0UeURMTQj4/AAAAAAAAAAI/AAAAAAAAAAA/z4pWd_thvIY/c-rp-mo-br100/photo.jpg','14748677429039074158',21740),('AIe9_BGZuRKHeO1iYrcf4B001kE2jrcAtXMTghrhsG3OyoNY6FjJXHtzEppuMVTDGSzKJwrPV8xgRRYJq_nyhPJypoqwzulxjwIQSIfp4OeibvL9i6AlRwI','they were good ,quick, knowledgeable and very professional thank you ...The best staff Delicia-Registration, Karen-Nurse, SonLe-Tech, and Dr. Spangler.','2019-11-03 19:30:32.786000','2019-11-03 19:30:32.786000',5,'rhomeo01','https://lh4.googleusercontent.com/-uVLsiCk0eHA/AAAAAAAAAAI/AAAAAAAAAAA/XiuhQLCm-WY/c-rp-mo-br100/photo.jpg','8679688254631342173',8753),('AIe9_BGZuRKHeO1iYrcf4B001kE2JtCFRIGnEZOMP2alzd3XoxDAYcSkVKFefH3H9Q91KpYPRbBsgHN6AnSNRkODnnECkI1rrZJdX3PgmThfe9KTgyx_uQM','Great services. Everyone made me feel welcome!. Dr Miller , Melissa Rn , Natalie were really helpful. Thank you all so much .','2019-09-28 18:42:54.703000','2019-09-28 18:42:54.703000',5,'Helen Lammie','https://lh3.googleusercontent.com/-rGLRX2uzMvw/AAAAAAAAAAI/AAAAAAAAAAA/VAYPlgk6eZ8/c-rp-mo-br100/photo.jpg','14567670160750071148',1227),('AIe9_BGZuRKHeO1iYrcf4B001kE2JWBSrjW_EtbGUAz2Z_eF-6PdYM--DFEgsW4EXene5ZaXM7Cu8_MUzD3eysRm1tXg-GypKKwlyMQhIrodBZOmxGHF_Mc','The staff @Signature Care were extremely professional and caring. Especially nurse Jose and Dr Baker,they took time to explain everything I was going through and were the most polite staff I have interacted with. Also my wait time to get in was maybe 10 min,I highly recommend Signature Care!','2019-01-24 06:03:05.372000','2019-01-24 06:03:05.372000',4,'Miranda Cockerell','https://lh5.googleusercontent.com/-zmnt4KEDqz4/AAAAAAAAAAI/AAAAAAAAAAA/HYRT5kzi8Yw/c-rp-mo-br100/photo.jpg','13486358490203335051',1090),('AIe9_BGZuRKHeO1iYrcf4B001kE2JZtdhiY-VgL82P9Z_5mHcS1RMCM32SY1L04Dsqrol3j2cdpgc8ZLRof4PSTJfbPB43fQRlPNu0MkdIiRVctIWVbzfG0','I went in yesterday & was brought back to a room within about 2 min of my arrival. Everyone was polite and professional. Dr. Yusef was very thorough in diagnosing me. All my questions were answered. I was so surprised how affordable my visit was. Thank you to everyone who helped me yesterday!','2019-07-13 16:40:05.027000','2019-07-13 16:40:05.027000',5,'Leslie Garcia','https://lh4.googleusercontent.com/-vg5O6g9nA2s/AAAAAAAAAAI/AAAAAAAAAAA/YY-cHd9FYGk/c-rp-mo-br100/photo.jpg','3511292162159714121',7253),('AIe9_BGZuRKHeO1iYrcf4B001kE2kC-tgpxtJacPPC-R1fE0F_UrG83nr61MutDDijRs_uRxzqcUVZEnHGc4y5jzmz6XEPZQRCs8OuDtSKxlaU-NaOn_v-s','Very polite and informative. Great experience!!!','2020-07-21 08:42:07.733000','2020-07-21 08:42:07.733000',5,'Kimberly Adams','https://lh5.googleusercontent.com/-nmMwX-AtRkM/AAAAAAAAAAI/AAAAAAAAAAA/EdfDe1VIIj0/c-rp-mo-br100/photo.jpg','14748677429039074158',21633),('AIe9_BGZuRKHeO1iYrcf4B001kE2kdq-RnNT6rhXeNYwxef1o7OxibEAxW9pnuYOPac1kGzNVsTcXaeIV5tAXIyGhtqPDgNzR7w8-Vo_L2ufcR-7mmQlWP4','Best care I have ever received. The staff seemed genuinely concerned with my well being and went above and beyond to make me as comfortable as possible. I would recommend this establishment to anyone.','2019-01-10 03:00:22.224000','2019-01-10 03:00:22.224000',5,'Lisa Sinder','https://lh5.googleusercontent.com/-PWncQ5AK_zw/AAAAAAAAAAI/AAAAAAAAAAA/bfyCO8G4C0c/c-rp-mo-br100/photo.jpg','3511292162159714121',7499),('AIe9_BGZuRKHeO1iYrcf4B001kE2kGpIJIYoUi0cjo6Q7wJ2Dy-bQx5dC61kaWlPpStA6U4_TEV4LNtMOkcHxme6nQi-uIcfd_GURdxLJWSoSF48NAEHOnA','We spend most of the afternoon looking for a urgent care. I am glad my finance and I stopped in this location. All the staff was wonderful. Very friendly. \n\nChroriah, RN \nDr Soli and Dion. \n\nHowever, Chroriah was the best. She had a great personality and she had the most caring nature. She was such a blessing. She made our day. She sincerely cares about her patients. I had been to plenty of hospitals myself yet I never met someone as caring as her. She is a great and it\'s meant to work there to make a huge difference. Thank you so much Choriah, RN. \n\nShe explained everything in detailed and answered all of our questions and it was a lot of questions lol. It\'s not a easy job to have. But she is great at it and it comes naturally. Thank you so much. God bless you.','2018-08-04 01:05:12.612000','2018-08-04 01:05:12.612000',5,'Vicky Trevino','https://lh3.googleusercontent.com/-EAXqG-W-D28/AAAAAAAAAAI/AAAAAAAAAAA/2NG1OhweF9U/c-rp-mo-br100/photo.jpg','3511292162159714121',7664),('AIe9_BGZuRKHeO1iYrcf4B001kE2KGxDzoSu8WlvAFROZEgnxwAx2mzD9uo7HvrfbbRJxAIt3-4P2Yav1Fr2vpAdr34e982XWUUVLTw8WFYoU4X9KHBRsVw','Signature care here in Cypress has the most curteous and caring staff I\'ve ever met. Dr. O\'Mally is the best and is so considerate and understanding. Alvean A. Kelly L. Jocelyn A. Keep up the good work. Thanks. This is the BEST 24HR EMERGENCY CENTER on 1960.','2019-11-27 21:52:52.980000','2019-11-27 21:52:52.980000',5,'Our Mother','https://lh3.googleusercontent.com/-95QgLv1WP0w/AAAAAAAAAAI/AAAAAAAAAAA/ZlT26-rJq30/c-rp-mo-br100/photo.jpg','16389487648212004696',2615),('AIe9_BGZuRKHeO1iYrcf4B001kE2KhmZ2HCP4WgOsqDJh3_5Zn_lz1aPP4wGX9Rm6NCsuyTZB-DT4fxLRoYVPZbMCM6VWEKKj1nFNJ1-vvj3457osj8h5ck','I brought my mom back and it was very comfortable and pleasant super clean everyone one was so nice from dr Jasmine thomas,vivienne, joseph, natalie,erica and travis was super sightful when i asked questions they answered','2020-02-03 16:47:02.149000','2020-02-03 16:47:02.149000',5,'Devin Anderson','https://lh5.googleusercontent.com/-Nzsnunj3fEA/AAAAAAAAAAI/AAAAAAAAAAA/bGeIxGbGsUM/c-rp-mo-br100/photo.jpg','14567670160750071148',13566),('AIe9_BGZuRKHeO1iYrcf4B001kE2kqabNTFpyWt6bg8YmhFe__jRln7jHGyVhG9zT4obWphkX9XHZq7-sNE7zxBWMtCBW_qZym3kXKoatQefrTicdPcDZCc',NULL,'2016-11-22 16:22:25.616000','2016-11-22 16:22:25.616000',5,'Chito Udegbunam','https://lh5.googleusercontent.com/-CqwODKdtmIQ/AAAAAAAAAAI/AAAAAAAAAAA/AZ9Pu8_QZKY/c-rp-mo-br100/photo.jpg','17394740196501090048',5163),('AIe9_BGZuRKHeO1iYrcf4B001kE2Kzli_rK7MdMUNBPn1_lcQvQCa-0oojEH6egPr7V4cqQphohOdb8_bS8lBxSny4yccIEeTFt1-AOOXPRuQbzdO1Nez3M','When I came in, everyone was courteous and professional. My team was Ke\'Aire, Norma, Reagan, Dawn, and Dr. Sylvester. They were all so sweet and serve their patients with compassion. They got me in quick and handled all my concerns promptly. Overall the best experience I\'ve had. Would recommend anyone to come here when sick.','2019-11-03 15:10:12.452000','2019-11-03 15:10:12.452000',5,'Anita Hancock','https://lh3.googleusercontent.com/-z825NMGX7ZY/AAAAAAAAAAI/AAAAAAAAAAA/MzbCdj3TALc/c-rp-mo-br100/photo.jpg','3511292162159714121',7148),('AIe9_BGZuRKHeO1iYrcf4B001kE2L_c_o63qVInKfmcjqN59n-G5vFVF79r8e7vJOX5Kx-78kArhQJHvoGrLVmFEkcVpg_FOquL5-nukbyGKqEc4GSStDcs','Great place nice and informative staff','2019-01-13 17:09:55.933000','2019-01-13 17:09:55.933000',5,'Richard Mcdougal','https://lh6.googleusercontent.com/-gwer6ZzwfoU/AAAAAAAAAAI/AAAAAAAAAAA/yIqMg5qPb3Y/c-rp-mo-br100/photo.jpg','17394740196501090048',4739),('AIe9_BGZuRKHeO1iYrcf4B001kE2L_O9ln4kIMwVEgbp0cKtIuPs3nb8ejd3f0-wdPO9iYN3cfa583f4vsGXRpFUmS5JIHd4yWox2WdRB8tpxPbIoPxLaVQ','Had a wonderful experience for an injury care, got in quickly, got a shot quickly, got xrays quickly! Staff is super cool and friendly! Shout out to Dr Leavitt, Hamzah, John, Brenda, Jessica V and Eve! Thanks yall!','2018-08-04 21:03:15.247000','2018-08-04 21:03:15.247000',5,'Hannah Goidel','https://lh5.googleusercontent.com/-CvfZSxoqbF0/AAAAAAAAAAI/AAAAAAAAAAA/ri11yvy9Ptk/c-rp-mo-br100/photo.jpg','3511292162159714121',7660),('AIe9_BGZuRKHeO1iYrcf4B001kE2l2rjhRL-kHKosRBh55YjKTsR24fsCgBp3p82W5knnk--BWyl41uaPJtk-gOZCCRwwC5IpRsIud--K6xlTXTApa5c7lw','Cat and Stephanie both made our visit very comfortable - not only for me, but my son as well. Thank you ladies for your patience and being so sweet! (:','2018-11-03 14:41:09.500000','2018-11-03 14:41:09.500000',5,'Keera Walton','https://lh5.googleusercontent.com/-I7R8YaphVJE/AAAAAAAAAAI/AAAAAAAAAAA/oMpLW1PDmXY/c-rp-mo-br100/photo.jpg','16590124370714063921',3670),('AIe9_BGZuRKHeO1iYrcf4B001kE2lCWOYw8clMJ8UkjXl3dLDFiOaNT1EKy-V2vI3u2vox0Jyb832S6DEP4tVsPBTFd_nC8X0yfG2Fr95uHKiUjhwB3OFu0','Saw me right away and the staff made me a priority. The facility was very clean and comfortable.','2017-10-17 23:57:55.542000','2017-10-17 23:57:55.542000',5,'Xochilt Endsley','https://lh4.googleusercontent.com/-NVpvXOvGpLI/AAAAAAAAAAI/AAAAAAAAAAA/FqY26cyLwvk/c-rp-mo-br100/photo.jpg','8918455867446117794',9344),('AIe9_BGZuRKHeO1iYrcf4B001kE2lfD1JUqlVYOiq8UpVLkoLPgqEpZUH6eWJfh4EIJVrCqozKBdyp_EF0TI1g4cqwr8PAy_aH1rZiGTAEq7Qa4t3pBiTiQ','This is my second time going to SignatureCare Emergency Center Cypress and I must say everyone is genuine and caring. The consistency is amazing and they are great with you no matter the age. The first time I came was at night and this time in the morning and it\'s awesome to see that both staffs are professional and caring. No long waits either time, literally seen within 5 to 10 minutes of arriving. They answered all my questions and are very patient! Thank you so much for showing courtesy and professionalism!','2019-11-13 16:19:16.857000','2019-11-13 16:19:16.857000',5,'Riquel Webber','https://lh5.googleusercontent.com/-wxaYL5IL5SQ/AAAAAAAAAAI/AAAAAAAAAAA/66DfoWw8r2I/c-rp-mo-br100/photo.jpg','16389487648212004696',2712),('AIe9_BGZuRKHeO1iYrcf4B001kE2lgUpKcM2zHtfXomRL5lidOez59KwUqf0rgHrCzzEG2Ip_k_gpNmxDBWdpsGSiFU02GWvlQEgEmStvcs0rCnmztAmV0s','I came in with what I thought would be a bad sprain. However I have broken bones. From the registration with Jennifer D to my nurse SusieH and technician Matt I have had nothing but kindness and compassion. My doctor was Dr. Das he was also very kind and made me comfortable. I was very pleased with the services I received today. It was very quick, I’m','2019-07-24 13:54:17.278000','2019-07-24 13:54:17.278000',5,'Sherri Conrad','https://lh3.googleusercontent.com/-q8C6sHaPzww/AAAAAAAAAAI/AAAAAAAAAAA/yvmilw50NhM/c-rp-mo-br100/photo.jpg','8626688543755174284',8425),('AIe9_BGZuRKHeO1iYrcf4B001kE2LiyAPZ1F0CV-2gYx44FPnKpuj2z__G3ARSWfxa7Lso8wv94CycRF0NABm81cxJm6TdO6GkJ13LwmN8XWj0a4Dp8-d-g','Highly professional, knowledgeable, and courteous medical team. I definitely recommend this urgent care facility should you have a need for urgent medical care and don\'t want the wait time of an emergency room.','2016-07-11 18:03:37.532000','2016-07-11 18:03:37.532000',5,'Victoria Zavala','https://lh3.googleusercontent.com/-IkeaCOJOtKY/AAAAAAAAAAI/AAAAAAAAAAA/yTgDzHi4rWU/c-rp-mo-br100/photo.jpg','3511292162159714121',7962),('AIe9_BGZuRKHeO1iYrcf4B001kE2LqMawhDIq54Espy8lSovu4eH5Q7k6BBXTmt9TVPHQdHW7PPVTBgFi9vuzuOgrB2Bnne8tNqZnK6Cs0E-3H0ePuNsYrc',NULL,'2018-02-15 16:03:14.748000','2018-02-15 16:03:14.748000',5,'Javier Garza','https://lh5.googleusercontent.com/-rgvEneF1y-M/AAAAAAAAAAI/AAAAAAAAAAA/nu0-kHlVhyI/c-rp-mo-br100/photo.jpg','8918455867446117794',9285),('AIe9_BGZuRKHeO1iYrcf4B001kE2LuyZ4wbOETfWXVvd5KkANz4pk3shRbzI0F23-5RDWKMMtRgzO6HhFClbi4nKxNvMs-g4iabQh-TEOCJgRyw96NPGTOg','Had the best experience here!! Staff is AMAZING!','2019-09-18 02:33:19.326000','2019-09-18 02:33:19.326000',5,'casie minjarez','https://lh3.googleusercontent.com/-hxYxtvC5dTg/AAAAAAAAAAI/AAAAAAAAAAA/AskOIUNqu0I/c-rp-mo-br100/photo.jpg','2694018788013845459',6062),('AIe9_BGZuRKHeO1iYrcf4B001kE2LXiTACh4pHGnX_VM4q3CxYVYdVcosiN_EPIZGmhmyU-gWqma4C_JYX3jkJXLYGLKXXhbLr4VG0HumFWl3dWpM1UXKjw','Dr.Kotey, Keaire, Dion, and Cris took great care of me. I was in extreme pain and I am joe feeling great. Thank you signature care and staff for fast and efficient service.','2019-06-21 09:01:39.350000','2019-06-21 09:01:39.350000',5,'Mr Trippy','https://lh5.googleusercontent.com/-9C0EgDt88Rs/AAAAAAAAAAI/AAAAAAAAAAA/vzP0zIEIz_4/c-rp-mo-br100/photo.jpg','3511292162159714121',7292),('AIe9_BGZuRKHeO1iYrcf4B001kE2lY76K9wk2Xp3KUavK_X7uakNn1D3KqVEfw0o5lN11vxqQm7bnDAC8wNYAFQg0rZLZ-2yMcfKgAkoP9gMKZ2iuGmSNMQ','I am very grateful with the staff of this location! They honestly made me feel so much better from the moment Karen checked me in. I had just flown in from out of town and I was feeling miserable, but the nurses (Nicole H. and Nicole F.) and Dr. Garcia put me at ease and made sure I got the treatment I needed. Highly recommend!','2018-08-07 13:14:51.177000','2018-08-07 13:14:51.177000',5,'Loretta Miranda','https://lh6.googleusercontent.com/-x6lRSHdE-jg/AAAAAAAAAAI/AAAAAAAAAAA/tqcaYST7AVE/c-rp-mo-br100/photo.jpg','8918455867446117794',9250),('AIe9_BGZuRKHeO1iYrcf4B001kE2LYWdc5ItQffOe9ENrn42QyU7n3kHV1dsxbcu-k8X7U9qWnxdND2xioIdLmTfgafkFYu0XgvkJtPqM5JSy4zAEW4Q5gw','Would 100% recommend to anyone and everyone! I barely had to wait to be seen, the staff were not only helpful but extremely friendly, and the payment was so reasonable. Thank you to Nurse Ashli W., Dr. Langen, Eric, and Amanda U. You guys are the greatest!','2020-03-13 06:29:44.132000','2020-03-13 06:29:44.132000',5,'Marisol Garza Rivera','https://lh4.googleusercontent.com/-C7kOLmZdRA8/AAAAAAAAAAI/AAAAAAAAAAA/Mjdz-3nEgHM/c-rp-mo-br100/photo.jpg','16891069708558046635',21053),('AIe9_BGZuRKHeO1iYrcf4B001kE2M-kdT2rD4CnvO-3m__1Y22-Dbad3g0ZU1D2bmDWAGTl4cH0NmabTIVSubVbS4HIzqpKDeH4_fumj936UYM2RqWydJP4','A very clean facility, with little to no wait, and very little paper work. All staff was extremely thoughtful (brought my daughter juice and water) and friendly to make my 9 year old comfortable','2018-11-07 17:12:19.656000','2018-11-07 17:12:19.656000',5,'Tatiana And gabby','https://lh3.googleusercontent.com/-XwnYoW7dw2A/AAAAAAAAAAI/AAAAAAAAAAA/quxvgZQU044/c-rp-mo-br100/photo.jpg','17394740196501090048',4767),('AIe9_BGZuRKHeO1iYrcf4B001kE2M3GxnlsCpJQWBjLCleeLlnUykfH-xKf0B8r8QfbKdyRWHsTfYRlpZWVfWWHRYfhxzs6_rSLY4YcNMdbIgsr8MRwUXRc','Friendly, clean, fast, 100% recommend. From receptionist to nurses and Dr every single person was very informative and friendly.','2020-03-09 03:01:46.021000','2020-03-09 03:01:46.021000',5,'Danielle Dominguez','https://lh3.googleusercontent.com/-KvgUvQ_FIFo/AAAAAAAAAAI/AAAAAAAAAAA/LFk9gJ-QwVw/c-rp-mo-br100/photo.jpg','14748677429039074158',18849),('AIe9_BGZuRKHeO1iYrcf4B001kE2m591fZ-Afwe6OD76KRbLnksQuoG06-2hM0eAA1wd9DZ2A6Nw5ekWxuqltXI8ycYtlFi_nk4kgsTMSYCebEdEGVwQJLI','Prompt, friendly, and thorough','2019-02-17 15:08:44.308000','2019-02-17 15:08:44.308000',5,'Haleigh Jones','https://lh3.googleusercontent.com/-83dfSPKIiYk/AAAAAAAAAAI/AAAAAAAAAAA/enZoGdbV0Lo/c-rp-mo-br100/photo.jpg','3272657195432704501',7011),('AIe9_BGZuRKHeO1iYrcf4B001kE2m8sqPnZdAsUAPquxbLTIBs8Dq0PLFVFGFHNxBB5wVjrbvCIfHssmlrrP4vUyZ8f06l9SGF-yYbvqvWHZkTewFhBHELk','Dyveliz, the lady at the front desk, was so kind! They have such quick and effective care! I\'m sure to recommend this place to anyone!','2017-06-19 20:36:08.297000','2017-06-19 20:36:08.297000',5,'Victoria Kowalenko','https://lh5.googleusercontent.com/-7YtgWj2U-RI/AAAAAAAAAAI/AAAAAAAAAAA/dlqyXtrjZOs/c-rp-mo-br100/photo.jpg','16590124370714063921',3974),('AIe9_BGZuRKHeO1iYrcf4B001kE2Mc78YnNzdapqr6V4S_59uAM_8CsodjjICBMdCZuquCdQSt2BWIi-QpwF4VXvJjTDyUlYEDpAYWIIKHrveoA1T7HExqQ','I had an abcess on my back middle of my shoulder, that couldn\'t wait until thursday. There was no wait, quick paperwork to fill out. I was made comfortable and had the procedure explained to me. The doctors and staff were awesome..In and Out','2019-09-01 11:38:28.718000','2019-09-01 11:38:28.718000',5,'BigBaby Harris','https://lh6.googleusercontent.com/-2NuOhgE0SKU/AAAAAAAAAAI/AAAAAAAAAAA/SuP6PTA2DD0/c-rp-mo-br100/photo.jpg','17898197009688164559',5565),('AIe9_BGZuRKHeO1iYrcf4B001kE2mDa-FgTlm9-ogznzDSwpBjhOZbW87mwzHbORO6RbDvX3k3GMCRRo-Ml7LIvKlmLfMNxcxdUtB4hzQIfdctWrsUli28o','Very clean and friendly, and I had the best experience!','2020-01-08 14:40:44.100000','2020-01-08 14:40:44.100000',5,'Ada Mansaku','https://lh4.googleusercontent.com/-bFZBG6mrrao/AAAAAAAAAAI/AAAAAAAAAAA/-1u4PiYP-n0/c-rp-mo-br100/photo.jpg','8679688254631342173',9454),('AIe9_BGZuRKHeO1iYrcf4B001kE2MEWSAJ-BnI1Z1I353W5bpEFsT9Jxsfv1YBebQrihXpwQPkZpf_r9Cu4osugLqWm9pgOymkBh9jiGPaEpD6h2cuSUqsY','Always have the best experience here. Dr. Jorden was great at explaining everything and truly seemed like he cared. I have received the same great service from Dr. Yost as well. They always get you right in and have the ability to do testing on site when necessary.','2019-09-09 23:22:42.163000','2019-09-09 23:22:42.163000',5,'rosalyn loudermilk','https://lh4.googleusercontent.com/-Hf_dTALJilk/AAAAAAAAAAI/AAAAAAAAAAA/EGgXqC_abqU/c-rp-mo-br100/photo.jpg','3272657195432704501',6896),('AIe9_BGZuRKHeO1iYrcf4B001kE2mf6GnNYxI0colH8z77rbHk9soz-VgK-GS1A1HGJncTj1KN0l6UpnkxxyLKD0x4hRdfZ-ud891MECAGJrJ2B7-3h_f1E','Great place! Fast service and friendly staff! The Dr took good care of me and answered questions thoroughly!','2019-07-31 18:45:24.430000','2019-07-31 18:45:24.430000',5,'Starla Hill','https://lh5.googleusercontent.com/-aMQ9TLLNTFU/AAAAAAAAAAI/AAAAAAAAAAA/zJoCuaK7wg4/c-rp-mo-br100/photo.jpg','3272657195432704501',6922),('AIe9_BGZuRKHeO1iYrcf4B001kE2mFPJyfpXHuogDQri66hRCAusSBPHSFp7pfsUz-9f74YpNdCta5Q0D9O7FQDlEYn359d7jDIrSU6ndl7g8JWn32Ck-Ic','Very nice facility, excellent staff. Wait time was not long and very kind to my daughter. Explained medication and diagnosis thoroughly. They made my daughter feel safe. I am very happy. I’ll be even happier when my baby starts to feel better.\n\nThank you again,\n\nSasha.','2020-02-13 06:30:15.566000','2020-02-13 06:30:15.566000',5,'Sasha Thomas','https://lh5.googleusercontent.com/-0t9Bi8bEzp0/AAAAAAAAAAI/AAAAAAAAAAA/HXOI4PIg9Z8/c-rp-mo-br100/photo.jpg','3272657195432704501',14364),('AIe9_BGZuRKHeO1iYrcf4B001kE2MIsDmntqwHSXv5l3HvkciObhJmZhJug30UF9XgqvaxODqesGm2b98OirthVu49vbs6ZNXO8drHO-W53ecllIEyS5frw','Cody and Nydia is wonderful to come because there are beautiful attention','2020-07-28 18:27:25.878000','2020-07-28 18:27:25.878000',5,'Susana Hernandez','https://lh6.googleusercontent.com/-_P1G5O84P2A/AAAAAAAAAAI/AAAAAAAAAAA/NJyDciPHNuE/c-rp-mo-br100/photo.jpg','2077061009497551125',22792),('AIe9_BGZuRKHeO1iYrcf4B001kE2MIxpYJLYvCZO8Cdh7DjB-I0mSEZUhiGypdR3sw5qDx2jJsezsxBoKDTRseVNoUcnvclhOkNvfNJ15rDWoqS80mNAy4Q','liars! they don\'t accept government subsidized med ins plans and charge $300!!! They need to close','2019-03-29 02:36:04.406000','2019-03-29 02:36:04.406000',1,'MICHAEL KUZNETZ','https://lh5.googleusercontent.com/-Q8GS8W2NQyQ/AAAAAAAAAAI/AAAAAAAAAAA/RNgIsQQdxIA/c-rp-mo-br100/photo.jpg','12541597562633926366',527),('AIe9_BGZuRKHeO1iYrcf4B001kE2MlyXCXyhed6cJ2LrFHwYaMHTTdSthAsOjvHeBMLF0L-vpARkpolXXFrYay08uHVGrnlr5IbyzPsZLuD-cZki5EMs9pY','Came in for a back muscle strain that was really hurting. Malissa was very helpful at the front. Dr. Yusuf was very detailed in explaining what was wrong, and my Nurse Kristina took very good care of me. Definitely recommend this location.','2019-08-29 16:47:51.562000','2019-08-29 16:47:51.562000',5,'Destiny Russell','https://lh3.googleusercontent.com/-RjTNs3ocMaM/AAAAAAAAAAI/AAAAAAAAAAA/TCv8EWlZAIs/c-rp-mo-br100/photo.jpg','12541597562633926366',452),('AIe9_BGZuRKHeO1iYrcf4B001kE2MRRNtcgLa0s-m-pQqd2cQJuanBBbOinRH3t-jfa2up2758FZ_R-UOBCMJIXm85M0lTkA5vRMAOwrSb30lqDMkq5ZVWw','I came to SignatureCare for abdominal/back pain. They got me back so fast and gave me immediate pain relief. The nurse (Corey B) that took care of me was very caring and made sure that I was comfortable the entire time. The radiologist ( Allison) that did my CT scan was very sweet and caring also and the doctor (Alcantar) was amazing. She ran alot of tests to make sure to cover everything and was very sweet. She made to sure to explain everything. I am 100% satisfied with my visit. I will not go anywhere else or take my family anywhere else but Signature in Midland, Tx.','2020-03-04 09:57:28.752000','2020-03-04 09:57:28.752000',5,'Lindsey Coppedge','https://lh4.googleusercontent.com/-m27p0ckD5sk/AAAAAAAAAAI/AAAAAAAAAAA/iyQjPeiHiLw/c-rp-mo-br100/photo.jpg','13486358490203335051',20933),('AIe9_BGZuRKHeO1iYrcf4B001kE2MSJ-0h-Y1QIlvZV_KTAd11ASDxq1UXP6pU7O77ZBcyqR3LcbJJ-PcNmGWY-r5l6Ghr14RqenL8umGDKZ_lQ3rEEY9mM',NULL,'2019-08-05 07:10:45.396000','2019-08-05 07:10:45.396000',5,'Nicky Vega','https://lh4.googleusercontent.com/-lK6ponwe9Gw/AAAAAAAAAAI/AAAAAAAAAAA/D3c3bdtVMuY/c-rp-mo-br100/photo.jpg','14567670160750071148',1259),('AIe9_BGZuRKHeO1iYrcf4B001kE2mW8kSjOkRnPxOeFbwOpANHeD2QsyMUTdQ78q5anuGhorPo4hbS4pKyW_VLNhX0j2UWcpTvBnHI8J_Ruo3N27tdTvLrc','Wow! What an amazing emergency room! That staff was impeccable, the facility was perfectly clean, no wait time, very affordable care, I could go on and on! I appreciate the nurse Shelli, Dr. Jones, tech Linda, and front desk personnel Christina for their care and concern for my little one. I will definitely be back for any future healthcare needs. Thank you Signature Care!','2018-03-15 15:39:27.759000','2018-03-15 15:39:27.759000',5,'Kara Kelly','https://lh3.googleusercontent.com/-0GAv-HRVZjQ/AAAAAAAAAAI/AAAAAAAAAAA/b1S9Dokqpqk/c-rp-mo-br100/photo.jpg','16891069708558046635',4497),('AIe9_BGZuRKHeO1iYrcf4B001kE2mzLwwanaWG-zv6tcOu7w3XyEfRoJjuIs5QcZ7hSoL2iSHjhO_8ysfkde9G_6u0EOPEBfPOD4wF3JSkPOBrurDbAHOLc','Just had an amazing ER experience with my 7 y.o. daughter with a ruptured ear drum. Going to the ER is never fun but when you have a team like Robin, Billy, Courtney and Dr Simmons we feel beyond blessed. Fast, efficient and compassionate.','2019-02-19 03:57:12.024000','2019-02-19 03:57:12.024000',5,'Karen Dozier','https://lh5.googleusercontent.com/-KQ0SgIfwDDE/AAAAAAAAAAI/AAAAAAAAAAA/7dFF_R_9_3w/c-rp-mo-br100/photo.jpg','8626688543755174284',8556),('AIe9_BGZuRKHeO1iYrcf4B001kE2N5tzuWsNKscAAUYVbpBJT2cW8uwCpscprlXJ19_Qs5t_IyphYQEw6t2GCo_ZSiPU-YYsy87b3CeMVGCwlAtMKgQbx04','A great experience. The dr was awesome and Kat and Jessica were so helpful.','2019-05-10 00:44:26.033000','2019-05-10 00:44:26.033000',5,'Melissa hancock','https://lh3.googleusercontent.com/-eKotNZooniQ/AAAAAAAAAAI/AAAAAAAAAAA/nnm26qBnw_U/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2n8KMNoLMlxmH-AhOnbmYrpNvnJcAD6z1DA7C4jpansECbxT5IYbJs5aCJ3gvZBfhhu3YOVKjcr1RJsl3mlk8l74Qw58','Sita, Alexis, Allison, Leah, and Dr.Herbert were all wonderful and caring. Got us back fast and took great care of us. Also gave us helpful information to take home.','2020-02-03 05:59:30.739000','2020-02-03 05:59:30.739000',5,'Cynthia Ramirez','https://lh6.googleusercontent.com/-DmBFJWmHQms/AAAAAAAAAAI/AAAAAAAAAAA/Ed_YsL3k4NU/c-rp-mo-br100/photo.jpg','13486358490203335051',13441),('AIe9_BGZuRKHeO1iYrcf4B001kE2NB_WwkyhIZq60wFAtePcFtUUojH2HFB2ew_e4YI269Y0D5k16yFyg4UbUdf0gRAk7oXgfJk21SAES6-gyLfCwFuCNxs',NULL,'2020-01-03 01:09:44.853000','2020-01-03 01:09:44.853000',5,'John Crosby','https://lh6.googleusercontent.com/-b0_DdRFg-FQ/AAAAAAAAAAI/AAAAAAAAAAA/QpxUJiPM3TI/c-rp-mo-br100/photo.jpg','13486358490203335051',655),('AIe9_BGZuRKHeO1iYrcf4B001kE2nN86tmyhum8bgpeyZgABiTuv9BSnX92Ye_qi0rgowDUhWyW31Vfibsi5heHfG9QhSxewvij8Q8d6k71UizaemGdqMXw',NULL,'2017-06-05 15:23:31.427000','2017-06-05 15:23:31.427000',5,'adan cisneros','https://lh3.googleusercontent.com/-n6xGn1XtIaU/AAAAAAAAAAI/AAAAAAAAAAA/GW5eXzioVYQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5043),('AIe9_BGZuRKHeO1iYrcf4B001kE2noBupll8DYDfdpPSZb913hM-pW8gFG-YJrPeRSRKUUHkSyIugNjjAjW_jkB4DrkjQSV8_iC5EnuvjTdfTHZ3h6vpNPA','staff was very kind. treated quickly and cared for. Dr. Vakey and Nurse Jeri were great','2020-07-24 16:54:57.566000','2020-07-24 16:54:57.566000',5,'Isaiah Garcia','https://lh4.googleusercontent.com/-aZWHFQdj-ro/AAAAAAAAAAI/AAAAAAAAAAA/NlhH3V8u0ns/c-rp-mo-br100/photo.jpg','16590124370714063921',22659),('AIe9_BGZuRKHeO1iYrcf4B001kE2NQM1-5RAwZBJyi9kFgPWf5umo5wX8WfOFG9Jeagib1VEfZZUUiY6Vkdj1DvR_DwPAhxNqbg8HY3xWN4T86i5rO0ggL4','The staff from the front desk to the nurse\'s and doctors was very cordial, I was in so much pain on arrival. With the team effort I left with so much peace. My pain worsen the next day called the Urgent Care. They told my family to immediately come back with me. When I did they took care of the pain immediately. I feel so much better for it. keep the good work up team on Wilcrest! \n\nPamela Green','2020-07-15 22:38:30.000000','2020-07-15 22:38:30.000000',5,'Pamela Young-Robertson','https://lh6.googleusercontent.com/-zAxz3ibyAnE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclX2HxhgDVL5Y2uIQTbJiJ43knLMw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',9853),('AIe9_BGZuRKHeO1iYrcf4B001kE2nvPrtxZ_s4UHzNxj66gaXc9nj-Sgwp_kwY-OOAkVs8aB57fA-j-yHgNR_3CqYfQhK_hhS8_n1ylKk02Rmt2FKcQFg2E','I am pleased to report that there is a medical facility in Austin that provides excellent care and personal attention to its patients. Highly recommend for emergency care. Shelli, RN, Dr. Chris Lingan, and Tina, made sure I was comfortable and well informed every step of the way. I greatly appreciate being seen quickly and treated with compassion. Great job, Signature Care, I\'ll be spreading the word!','2018-06-26 15:35:24.605000','2018-06-26 15:35:24.605000',5,'Nancy Muse','https://lh3.googleusercontent.com/-2dw-rJS-dio/AAAAAAAAAAI/AAAAAAAAAAA/r8NAqDrLrDg/c-rp-mo-br100/photo.jpg','16891069708558046635',4464),('AIe9_BGZuRKHeO1iYrcf4B001kE2NybOVO5dBh6VMvGfD_L4_en2_HyL5fpeAMS49Xn_atmtntxSU1X8Sus_xTTdl5L6il1TLOnm4sI4knp8tkbGONXi7Xk','They were amazing. I went in as soon as I arrived and was out in less than an hour. Help me out so much. I would highly recommend anyone come here','2018-04-11 03:19:00.426000','2018-04-11 03:19:00.426000',5,'Darlen Rodríguez','https://lh3.googleusercontent.com/-ARwO-pV8DyA/AAAAAAAAAAI/AAAAAAAAAAA/Npwe434GrdA/c-rp-mo-br100/photo.jpg','16590124370714063921',3840),('AIe9_BGZuRKHeO1iYrcf4B001kE2nYgcEgLPsopeqccbyciYQeeDx1Bv0jydSjkWPZhjmGkSifvmMgy0vF8rQY_ZCh5meXNHJ9RPGjijogzmjbk1Sdq4Xqg','In the past I have had a great care at this location and my mother has too which is why I came here today. However today was by far the worst experience I have ever had at any healthcare facility. The nurse and Dr. Was very ruse uncocerned, disrespectful & unprofessional. My concerns were not addressed right away they seemed very un concerned and insisted on telling me it was allergies. I waited a hr in a cold room without being offered a warm blanket and I practically coughed up a lung before anyone offered me any water. I wasted 3hrs and $300 for the Dr. To give me $300 worth of Rx\'s on the wrong RX\'s pad once iIget to the pharmacy they tell me it needs to be on a diffrent kind of Rx paper. So inconveniently I had to go back to signature care er to pick up new RX\'s. I felt worse when I left there than I did when I walked in. Went to an Urgent care later only to find out all I needed was a steroid &/or antibiotic shot hot which is exactly what I told the signature care ER Dr. I needed because it was what worked the last time I was diagnosed with bronchitis. Instead they insisted on giving more Rx\'s for meds not needed. I will never visit this location again or refer anyone else. I used to think highly of this place and today they treated me so badly. I understand it was a holiday and they did not want to be there, but I didn\'t wanna be there no more than they did. I also mentioned to the Dr. I need a work note as well, just in case I was not better by morning. Only to get home and find out it was not in the folder they gave me. As a director of a medical facility this is by far the worse experience I have had and seen.','2019-04-22 03:58:55.169000','2019-04-22 03:58:55.169000',1,'LaKeya Timberlake','https://lh6.googleusercontent.com/-rjG4AayGzM8/AAAAAAAAAAI/AAAAAAAAAAA/8EE8GBLiRnI/c-rp-mo-br100/photo.jpg','17394740196501090048',4687),('AIe9_BGZuRKHeO1iYrcf4B001kE2O1YSj435MmoDmtdELuzsWczBODXdl_yj_VM3oiEMSK26f2WoL5_jfZrCsN4lZz8qZrhy4LD_NWea77VWzA9UvcM7x9s','I brought my mother here because she developed shingles while visiting me, and does not have a doctor in Houston; also it was a Sunday, and she was in terrible pain. I was a bit wary of the notion of a freestanding ER, but we were both very pleasantly surprised. Brittany was very kind and competent as she handled the registration process. RN Shelley was equally kind and competent -- her years of experience very evident as she began assessing my mom on various dimensions from the minute she walked into the room. The doctor seemed very nice also, and listened to my mother\'s concerns before prescribing for her. My only criticism was that several of the staff (including this doctor) had their name tags situated so that we could not read them (i.e., down low on their uniforms, and/or turned around). We were very grateful that we were back out the door an hour after we arrived.','2020-08-02 18:49:00.845000','2020-08-02 18:49:00.845000',4,'Deborah Lee','https://lh6.googleusercontent.com/-F1z2edBr2WE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclIC-0D_anW8C6wYrekyN1cYUczkQ/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22091),('AIe9_BGZuRKHeO1iYrcf4B001kE2o4dDwQPrO0JU0VjT9bIaAlqSz4VkvtmDVbJ-JgCs7DgJpe29Xp0dPTV2tJjUzTEpxavUX5zPRhYmbSO2ZtTCGiKJ2UY','Dr Patel was great knowledgeable and sweet. Genesis at registration was a welcoming soul and my nurses Catherine and Fame .... No words ... I left feeling much better due to them . Thank God I came here instead of the long wait at the hospital.','2020-01-07 21:13:14.787000','2020-01-07 21:13:14.787000',5,'Henrietta Turner','https://lh6.googleusercontent.com/-0WZGk8v6sVY/AAAAAAAAAAI/AAAAAAAAAAA/QKa2znh3iNY/c-rp-mo-br100/photo.jpg','12541597562633926366',9417),('AIe9_BGZuRKHeO1iYrcf4B001kE2O67CeI9MKqWSQUBVxMJv5C1ffvEqdpeM6qm3LJUH2bPaE3ywheOsrTockjbjEKPuBG_WfLvz2nx1pplUesv3AOTbMlc','Fast and friendly staff.','2019-02-05 15:58:33.691000','2019-02-05 15:58:33.691000',5,'Michelle Cason','https://lh6.googleusercontent.com/-mGyxPdAcM0U/AAAAAAAAAAI/AAAAAAAAAAA/9c0gKWac-ws/c-rp-mo-br100/photo.jpg','13486358490203335051',1071),('AIe9_BGZuRKHeO1iYrcf4B001kE2ObXve-V10YsPM77YIUeLto9VRIcQVcUH44aRiSCxM9-j37PcD5d0mcws6LZZB0dx-MkCFsQWq84yocAmqJgT-qvdLWg','They took great care of my husband and made sure he was completely comfortable.','2019-04-22 18:53:52.373000','2019-04-22 18:53:52.373000',5,'Mae Mae','https://lh4.googleusercontent.com/-MiOJ20oRvHE/AAAAAAAAAAI/AAAAAAAAAAA/fZRiOTjTr_s/c-rp-mo-br100/photo.jpg','17898197009688164559',5764),('AIe9_BGZuRKHeO1iYrcf4B001kE2oJqc4aTMKbcgMMt0U6CFE2tc8ABc-ZgDlmd_2riwagVakO9cDFBShKeLUX-s_E7ETlqsy_PX1v9y1_JbKLeg5T40aD0','Kendra and dyveliz where really helpful and extremely nice! My nurse brad described everything that I needed to do and made me feel safe knowing I was getting the right treatment. Dr. Hemerka was also very knowledgeable and helped me start feeling a lot better. Great experience and I will definitely be coming back if I get sick again','2020-01-14 20:42:40.108000','2020-01-14 20:42:40.108000',5,'Trevor Divel','https://lh6.googleusercontent.com/-bXdaR0WJOZw/AAAAAAAAAAI/AAAAAAAAAAA/6UY9kwkY50E/c-rp-mo-br100/photo.jpg','16590124370714063921',3461),('AIe9_BGZuRKHeO1iYrcf4B001kE2OR_lM4MdSoFXQElNj5R9O2AdVUk7ILsrQtHjkmmPZe0wl3uuZ-BgA-0RMRKn3wsmwD2a3qNYEM3iBpyI6NX_hEDH0sU','Fast and friendly staff. Dr Jones, RN Calli and Tech Brenda were super nice and have an amazing bedside manner. Would recomm.','2020-08-08 18:10:51.006000','2020-08-08 18:10:51.006000',5,'Gloria Eaton','https://lh6.googleusercontent.com/-WMGQzvPdhUI/AAAAAAAAAAI/AAAAAAAAAAA/kC-PT7S-50c/c-rp-mo-br100/photo.jpg','2077061009497551125',22719),('AIe9_BGZuRKHeO1iYrcf4B001kE2oZGMOtUN14Iy7pqgDm8H7eZBHcFkYDx4tMeLvv_3KRBqfPbV2SrzyW6l4LbudI2lBEVrmXJbJI9U500Vmbk354_FQgY','From the time I walked in until we were released, the staff was SO welcoming, caring and professional. Courtney got us signed in quickly, and Jennifer listened intently as my son discussed his symptoms. Gunner was so good at comforting him when they had to swab his nose. Dr. Yost took time to listen and explain all questions we had. They made a yucky day a little brighter for my sick boy. We will definitely be back!','2020-01-29 08:55:54.282000','2020-01-27 21:36:10.674000',5,'Natalie Cox','https://lh6.googleusercontent.com/-6jCTXRSeFBw/AAAAAAAAAAI/AAAAAAAAAAA/aPTCY6k5Crs/c-rp-mo-br100/photo.jpg','3272657195432704501',10272),('AIe9_BGZuRKHeO1iYrcf4B001kE2PCowZP37VYRULe2wVoWiVMxMVU0lnUcnXF8BLHfaPbQ3wLWtzGK2f4UwJUaQricRAEQGB5bvL9hhX_8svuL8tU8TsAY','Thank you! Customer care is great, Manny is very attentive and cares about the patients. This is about the 4th time I bring my kids here, and its honestly the only place I trust.','2020-03-03 17:06:10.401000','2020-03-03 17:06:10.401000',5,'aj 91','https://lh5.googleusercontent.com/-JGmrJWLtnN0/AAAAAAAAAAI/AAAAAAAAAAA/UgrIyxR3jo0/c-rp-mo-br100/photo.jpg','6521947413723274945',14519),('AIe9_BGZuRKHeO1iYrcf4B001kE2PDEjH2JruLEb0ny5c1vhEuDZDgkRmRshHt9__g0EyvSiyeulBIEvlvTXFvBf4QJK3X3yIdzcGBLfE24z28drykVXO9M','Went for a COVID test and was impressed with how organized and fast the process was. I would recommend family and friends to book your appointment and get tested! Also, Okarys was very friendly and informative!','2020-07-14 17:35:59.926000','2020-07-14 17:35:59.926000',5,'Rene Flores','https://lh5.googleusercontent.com/-3IYkARj8uZE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn279BSVc7wzIHtNKZW1asRrzakww/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21887),('AIe9_BGZuRKHeO1iYrcf4B001kE2PDZlZlQCgch664nIVdWI6HhbOPyr8Ksv7KKyoDp8dSFJbNR8BSh7f2sYlBM5mF_W9T5HdBMrZB1f3Tb44POwO9nwk0s','Best emergency room I’ve ever been to. Everyone was so sweet and caring. They gave me 5 warm blankets, moved me to a more comfortable bed and took the time to talk with me and listen to what was going on. If I ever need the ER again, I’m coming here ❣️ Shout out to Dr Sylvester!!','2019-11-21 02:50:24.563000','2019-11-21 02:50:24.563000',5,'MJ Leigh','https://lh3.googleusercontent.com/-Y9f3fpXigdE/AAAAAAAAAAI/AAAAAAAAAAA/leQk6Olm7nw/c-rp-mo-br100/photo.jpg','14904078213800803294',13662),('AIe9_BGZuRKHeO1iYrcf4B001kE2pevVQifIP6LCCOkcwOxEa11_n-eTrYGKq_w3NT1oDTA7Vlw8YdadqsesjQM4JENIljsqV1rdeiCyvZ7_s0_KSiegu1Q',NULL,'2020-08-12 20:04:23.963000','2020-08-12 20:04:23.963000',5,'Tanner Gollihare','https://lh6.googleusercontent.com/-Af1qrqgIwv8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn8SPXLqVGXh4hs8kb-x7NaljAFDQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',23069),('AIe9_BGZuRKHeO1iYrcf4B001kE2pUqqKZmxnl6CexAxUnzIijpzWX6zNVCCO1RY7qr8NGEsidgMQbfuvY5HPr5-a76Dh4E2dK9F2gI5_YhlVLPavgNR_OQ',NULL,'2016-09-25 08:03:19.571000','2016-09-25 08:03:19.571000',5,'Htx713','https://lh3.googleusercontent.com/-uPN_UAKDxZ0/AAAAAAAAAAI/AAAAAAAAAAA/5eUAZQhKHuU/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1966),('AIe9_BGZuRKHeO1iYrcf4B001kE2pxHqOTB3r4wpGlf-MJtNYxDtC5IvjWpxDjYBBQRA_SzBBfqF_GVaEIrWhqQS58ZkdWXXnG7pOvXgIdxFvo9HIUi1VZo','Went to get tested for covid, Theresa M was such a delight through it all!! Thank you so much!','2020-07-16 20:18:13.533000','2020-07-16 20:18:13.533000',5,'Halo Peace','https://lh3.googleusercontent.com/-7M_x-9xkIos/AAAAAAAAAAI/AAAAAAAAAAA/mXfGVbyYmmo/c-rp-mo-br100/photo.jpg','6521947413723274945',22887),('AIe9_BGZuRKHeO1iYrcf4B001kE2pxSrfbUXeepqp8DwfbHmh9evw6ccvKRbSup74V3F2ShiSqqHqmL-wnvpDtQ1vKFLd9X6XbqYRFdBDjkAyz5ExmJATio',NULL,'2017-02-12 21:36:47.665000','2017-02-12 21:36:47.665000',5,'Jenny Prieto','https://lh4.googleusercontent.com/-MjtbH7gODMM/AAAAAAAAAAI/AAAAAAAAAAA/h2x0wnS5UyI/c-rp-mo-br100/photo.jpg','14904078213800803294',2413),('AIe9_BGZuRKHeO1iYrcf4B001kE2qAwq8Es2T1-fPBtFWve81Rc65M8S6HrLSFFa90j1yEbg1aMA1ll4W9QQNtZYWGQ7B-moVm9UaCCaKiFYUEijQVEQdmw','The staff was great and so kind! I felt so informed the whole time I was here. Thoroughly explained my diagnosis. Anthony, Natalie, Morgan, Kristen, Kim, Dyveliz, & Dr. Akunyili were awesome!','2018-10-22 19:16:08.986000','2018-10-22 19:16:08.986000',5,'Ana Gonzalez','https://lh4.googleusercontent.com/-jZFXfMmLhQA/AAAAAAAAAAI/AAAAAAAAAAA/ylxYUQYAbvI/c-rp-mo-br100/photo.jpg','16590124370714063921',3693),('AIe9_BGZuRKHeO1iYrcf4B001kE2Qbd8w6SFrnWjmtyTKohqJGVEK35k3Y_uFmDa7mNbRGMp8KoYTKknyBSYXGHW3rAFdCKDL_2ZY2NqV3EiiY0QcqZk4Mk','Fast service! Marcus was funny! Alvean was sweet... dr dang was professional and elida got us checked in really fast','2019-09-10 19:31:30.589000','2019-09-10 19:31:30.589000',5,'Queen D','https://lh4.googleusercontent.com/-iHglvbwT2Es/AAAAAAAAAAI/AAAAAAAAAAA/wAJAJ32zaG8/c-rp-mo-br100/photo.jpg','16389487648212004696',2928),('AIe9_BGZuRKHeO1iYrcf4B001kE2qdqtN3-8qoBLSJgGs-PHeYZbrRqIRCCkHwi1ZUaMeXEpirbFz9LEQdeflRUY_C-W3VVcAXAMPx_lsMbxGhmtgEUab8Q','The staff was very attentive to my sons needs. He was cared for promptly and the service was more than I could have expected.','2020-03-08 07:09:42.525000','2020-03-08 07:09:42.525000',5,'Enjoli Levy','https://lh3.googleusercontent.com/-ryI2P81igiI/AAAAAAAAAAI/AAAAAAAAAAA/1WQIgISLHiM/c-rp-mo-br100/photo.jpg','12541597562633926366',16462),('AIe9_BGZuRKHeO1iYrcf4B001kE2qhPWiM5AM2CiX9Pe4HIw9JIItWxdN7r9jS9uZvfYg6OWNqJjDeQdN6bztJkoBFj-joH5JwywasO-gg1bkj-dybi5hNE','If you are looking for the quickest, most efficient, and friendliest place to go for your ailments, this is the place. I have never been one to go to the doctor unless I had to, and this place made it not as bad as I was expecting! Jennifer D, Erica, Ashley K., and Dr. Jordan were absolutely the best! Was in and out within a couple of hours. Highly recommend!','2019-03-08 15:25:16.952000','2019-03-08 15:25:16.952000',5,'Sarah Shipman','https://lh4.googleusercontent.com/-ElZy1REoTIM/AAAAAAAAAAI/AAAAAAAAAAA/9scUtEauInk/c-rp-mo-br100/photo.jpg','8626688543755174284',8537),('AIe9_BGZuRKHeO1iYrcf4B001kE2qicRWgKbq2d_R3Yzy5LptpK6vCQQNF0FhKeLPX4TNcJR2eDCg9SeWz9jxu1_KKGQXeYu5gmzpAbB1aLqrbxvoGwYqRU',NULL,'2020-01-11 08:33:24.609000','2020-01-11 08:33:24.609000',5,'Kate Gregg','https://lh3.googleusercontent.com/--lqKnx85KTA/AAAAAAAAAAI/AAAAAAAAAAA/PRCIQ1zidk4/c-rp-mo-br100/photo.jpg','6521947413723274945',9525),('AIe9_BGZuRKHeO1iYrcf4B001kE2QiQPiDOK1cLrvmQpjvDWUJdYmf8XoenjUTPtmcyB-4x5BN6o334qElZs2X1_H3xrhBpWj9SkaqGTzeqYZ7IV0mAdRrs',NULL,'2019-01-20 17:22:45.725000','2019-01-20 17:22:45.725000',5,'Skylar Garcia','https://lh3.googleusercontent.com/-bQf3Q1psDk4/AAAAAAAAAAI/AAAAAAAAAAA/avApaWFv-I4/c-rp-mo-br100/photo.jpg','13486358490203335051',1100),('AIe9_BGZuRKHeO1iYrcf4B001kE2QM4EENwdObD4cvrr1mSm-WJNaQdR4CbLJ3WabzaCcZnUcOCFtVrD8fQ76JZ3hYHksEzD7-Ql6nKus-KceEYi2EQ4DkA','This location was excellent. Marcus and Alvean were very attentive and friendly. I would recommend my family and friends to come to this location','2020-01-21 16:15:48.935000','2020-01-21 16:15:48.935000',5,'Tonya Dolphin','https://lh4.googleusercontent.com/-QKxn2Ni7fXQ/AAAAAAAAAAI/AAAAAAAAAAA/I62IaOGSyts/c-rp-mo-br100/photo.jpg','16389487648212004696',10205),('AIe9_BGZuRKHeO1iYrcf4B001kE2qO-gn0SmEOhr3HKEgjxQ9DLdzLsijfnubWtZ091hlUxdXCisTKiEBj-KKHnByRhiP-rIpcpKEZXcWo_ucasPG4Bijoc',NULL,'2020-07-05 20:53:34.403000','2020-07-05 20:53:34.403000',5,'Stephanie Walker','https://lh3.googleusercontent.com/-ZWU9QxHrTmE/AAAAAAAAAAI/AAAAAAAAAAA/EuaUEOelp3I/c-rp-mo-br100/photo.jpg','14567670160750071148',21374),('AIe9_BGZuRKHeO1iYrcf4B001kE2QQ7DCb9nDFjx8q6gSm9PyBFoLxoQX5x0vmhmrn3P_it002TEbeG_137uuKxlLoVfvUQOYzCy1O3AYM_I1cBbp4njxbY','Dr. Appiah, nurse Rollie, radiology tech Natalia and Stephanie at the front desk provided awesome care. They were friendly and welcoming and explained everything to me. I highly recommend.','2020-03-06 10:47:45.954000','2020-03-06 10:47:45.954000',5,'Sandra Trevino','https://lh5.googleusercontent.com/-oDCOSYwwk0U/AAAAAAAAAAI/AAAAAAAAAAA/bWxwAEjDB9k/c-rp-mo-br100/photo.jpg','8679688254631342173',14705),('AIe9_BGZuRKHeO1iYrcf4B001kE2QrKokZNV70LEooTnHolvvyM7lVibijTU7aqwVBnF6vIwuvUdYQwxGwZblcftDE8glmrR7s4jSGfwjiCWB9qKxFDSBiI','This place is fantastic! No one enjoys being sick, especially on the weekend. But Signature Care took great care of me and my husband. When we walked into the door, we were greeted by Aileen. She was so quick and efficient! We probably waited 5 minutes before we were called back. My technician, Linda was so kind and thorough. Also, she’s great at starting IVs! Next we saw our nurse, Adam. He was amazing. So friendly, encouraging and definitely made the situation not as tense. Lastly, Dr. Leung was fantastic too. Very thorough and made sure my concerns were taken care of! It’s rare to find this kind of service (from start to finish) at the big hospitals in town. We will always consider Signature Care as an option in the future.','2020-02-24 19:03:48.887000','2020-02-24 19:03:48.887000',5,'Mallory Holmes','https://lh5.googleusercontent.com/-mp8SuCFZzSA/AAAAAAAAAAI/AAAAAAAAAAA/XRZOnYWHXl4/c-rp-mo-br100/photo.jpg','16891069708558046635',13933),('AIe9_BGZuRKHeO1iYrcf4B001kE2qsW7IrI6cbR3ojeI001bFrqDMPAdgaOhroUvXQRlG0P5j-HuWpdylUwKbf649o9etvWRxm37P_sAEl1uaJlTstt5wEk','Jessica and the entire team were great!!','2020-02-27 23:41:37.229000','2020-02-27 23:41:37.229000',5,'Heather Maddox','https://lh5.googleusercontent.com/-XUW7j8ahMQI/AAAAAAAAAAI/AAAAAAAAAAA/T7-6tN-_dKs/c-rp-mo-br100/photo.jpg','6521947413723274945',14535),('AIe9_BGZuRKHeO1iYrcf4B001kE2QtqcY-5w_KIlpH6eRCINy60wc0G-bLf4j4jsgiasN39oK2CW5TUm-z1obsK6C2AfazvxLJOIx0Zs-fvF5w8DFG4hDHg','The professional and compassionate care we received from Mercy, Shelly, Matthew and Dr. Soumen was exceptional service. It\'s a great location and open 24 hours. Thank you so much!','2017-04-06 13:17:08.773000','2017-04-06 13:17:08.773000',5,'Terhea P. Harris','https://lh6.googleusercontent.com/-WvP0WBMs_XE/AAAAAAAAAAI/AAAAAAAAAAA/N9HGjzJzSd4/c-rp-mo-br100/photo.jpg','3511292162159714121',7850),('AIe9_BGZuRKHeO1iYrcf4B001kE2QxGDUNqg9rIeLdIZpu8hjXTys3-5sfE1aOPNekkadgR60ih2EG2TLvMdpRx1rEBbgWSgWTzk1_i-LfkugqZjoysMAQU','This facility was fantastic. The appointments have made the process so much easier. There could be more specific instructions online for how the process so there\'s no confusion, but everything went very smoothly and the staff there was great!','2020-07-16 14:31:12.500000','2020-07-16 14:31:12.500000',5,'Kristin Pope','https://lh4.googleusercontent.com/-yvaj5WyMfDc/AAAAAAAAAAI/AAAAAAAAAAA/UFZ5QMSCVRE/c-rp-mo-br100/photo.jpg','8918455867446117794',22923),('AIe9_BGZuRKHeO1iYrcf4B001kE2QYu5chUB5XHGATBlE4ojCfP9PALg_3HIf2f9iuYVJrroIUKZdpPPc5eRy3pjJRfsGSN_rzSrKYDCz3SpIhA_xIu1U9M',NULL,'2019-02-02 13:01:22.291000','2019-02-02 13:01:22.291000',5,'desiree rodriguez','https://lh5.googleusercontent.com/-0e5nbdUPT1M/AAAAAAAAAAI/AAAAAAAAAAA/-NxHkSA8ETw/c-rp-mo-br100/photo.jpg','3511292162159714121',7420),('AIe9_BGZuRKHeO1iYrcf4B001kE2Qyy-bz4woU7pdFq28K-Iq0fI4mkP7g9m44IrscR_cBArElUd6zcptqD4GL_zoTiEPz7dxiXOwVskefYLOeoGsgUNNKs',NULL,'2019-06-17 02:08:55.492000','2019-06-17 02:08:55.492000',5,'Adrian Hargrove','https://lh6.googleusercontent.com/-Y50bEDHU6lg/AAAAAAAAAAI/AAAAAAAAAAA/Dl6f3qfwCsU/c-rp-mo-br100/photo.jpg','17898197009688164559',5698),('AIe9_BGZuRKHeO1iYrcf4B001kE2R3Io6f74P_BmlLBsRuv0ZpVofskpROrXrFnEO8vaouk8m-VHk2_T_2-adV4Ocm9Ux9GPjVBk16jACPDN3k-bx9WMZW8','Nice staff, not waiting list','2017-09-25 17:33:17.109000','2017-09-25 17:33:17.109000',5,'Adriana Eleuterio','https://lh6.googleusercontent.com/-rQS8wbjetPY/AAAAAAAAAAI/AAAAAAAAAAA/KdK6FTh1Cb4/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4965),('AIe9_BGZuRKHeO1iYrcf4B001kE2R3pqRSJggP2bxRWq1r1h3XC2_dYbgWN58TCt4qGoYKbCb98AGiDnAcovK764oReVQTjsjdHREfcY_AHzLf98ZYhpefk','Fast and thorough care. I was in a bike accident and the staff was very concerned and recognized the problems with biking in houston','2016-02-29 19:44:20.297000','2016-02-29 19:44:20.297000',5,'Andrew Comer','https://lh3.googleusercontent.com/-h1x-WUVDfh8/AAAAAAAAAAI/AAAAAAAAAAA/FQrizyMRABA/c-rp-mo-br100/photo.jpg','3511292162159714121',8023),('AIe9_BGZuRKHeO1iYrcf4B001kE2ralcQG30bqC_CDTo5ypnwh-yvFSmmC4rhqbvkzk6b6jzbFU_JDihW5lr6ryQLDMUs6iwadoCN9uTMt9vG3kSZDmup1Y','Dr. Pham and staff were wonderful. The staff included\nAlvean A - Nurse\nTricia B - Radiology \nElida Jasmine - Registration \nAurora- ER Tech\n They were all great and I hope I never have to see them again in this type of situation. But if another emergency pops up, this will be my go to emergency room.','2019-11-26 14:48:48.342000','2019-11-26 14:48:48.342000',5,'Lorraine Carter','https://lh3.googleusercontent.com/-Hxnn0CNjdRg/AAAAAAAAAAI/AAAAAAAAAAA/rx5XOlagqFE/c-rp-mo-br100/photo.jpg','16389487648212004696',2628),('AIe9_BGZuRKHeO1iYrcf4B001kE2RCZTBryUFAkK7JXnMvR32g1GzArtlSvnAAFemycocg5ACN3HKut9Q1xQEdjHitq40QflfvHV7CJbgSOYlsNEkxEHaRY','Great and quick service! Dr Thomas was super friendly and answered all our questions. Great drink section too while waiting.','2019-03-03 04:50:09.314000','2019-03-03 04:50:09.314000',5,'Michelle Gonzalez','https://lh5.googleusercontent.com/-HsND7wOUwkc/AAAAAAAAAAI/AAAAAAAAAAA/hemPVZLh_b8/c-rp-mo-br100/photo.jpg','12541597562633926366',540),('AIe9_BGZuRKHeO1iYrcf4B001kE2RFI1mToH2Wn7CpbSqo0lmUDtCnnfbFttxpxZnL1JPkeG5I7BbdRp0ctgPGQO9lGyt8xDMSPdU1vzljeqR7BNpHnXm2M','Moms & Dads - They are fantastic with children! Don’t hesitate to bring them. They are totally equipped to handle them. They even have a pediatric exam room. I took my 7 year old here and what a great experience. (1) Total time spent - under 20 mins. (2) Knowledgeable front desk who addressed cost concerns (Thanks Christina C) (3) Nurse Shelli was a great w/my son. Gave him all sort of choices - do you want water or juice to take the medicine? (4) Dr. E knew how to manage a little one with hyper-sensitive ears. He gave me thorough info on what he thought was happening and why, and reviewed the recommended treatment plan. (The Doctor has 2 kids under 3 yrs of age so he gets it.)\n\nPS - I have probably written less than 5 reviews ever, but this place was worth it. I wanted parents to know there are other options besides Dell.','2018-11-22 15:27:57.732000','2018-11-22 15:27:57.732000',5,'Michelle Martin','https://lh6.googleusercontent.com/-a9GQUlPQfgw/AAAAAAAAAAI/AAAAAAAAAAA/_jX4EH9w8pk/c-rp-mo-br100/photo.jpg','16891069708558046635',4401),('AIe9_BGZuRKHeO1iYrcf4B001kE2rMfAyD-6qAFWT8DslNwFSFZp5LyR7Ogn7qFopJ2Zk3fy2H75yJvWLegyjfr0UcS_pRuAomqtO5m6MZyn7Ug8n0qM4fU',NULL,'2019-04-07 18:24:00.165000','2019-04-07 18:24:00.165000',5,'Andrew Pouland','https://lh6.googleusercontent.com/--6dHzRIQCuw/AAAAAAAAAAI/AAAAAAAAAAA/y3KnldBH97s/c-rp-mo-br100/photo.jpg','16590124370714063921',3446),('AIe9_BGZuRKHeO1iYrcf4B001kE2rMfdAxrhT4UEuFh4uU3eJFfeBkEOSXH6lh9UbMDU4dQ-cPV69ybW9t8EYpF6b0PNc2v5UCtaWQvRAM6ziRMDs0oIcIY','Dr. Edozie Akunyili and his staff, Nurse Johnny, and Tech Ryan were very attentive to my needs today. Very knowledgeable and professional. Thank you for all you do! You are heroes. Much appreciated.','2020-05-17 23:52:43.414000','2020-05-17 23:52:43.414000',5,'Alicia Matsushima','https://lh6.googleusercontent.com/-ACkEpoFkTEM/AAAAAAAAAAI/AAAAAAAAAAA/6ZVMhKh9b5I/c-rp-mo-br100/photo.jpg','14904078213800803294',22580),('AIe9_BGZuRKHeO1iYrcf4B001kE2RNfzOgt__Ndc8HRJBuvm1M4iie_ne_6ONDZeNVS85LM3Yfo-GaZlAUBdhcS-x8eQB2C8UrGNYsKfc-_byOjElNe4HpM','It’s very nice clean facility. And Dr Chen is very informative and knowledgeable. RN Joseph is very helpful and careful for my son. Highly recommend this ER.','2019-09-12 05:49:34.178000','2019-09-12 05:49:34.178000',5,'Yan Zhou','https://lh4.googleusercontent.com/-q2wOw0ngon8/AAAAAAAAAAI/AAAAAAAAAAA/CKXrIecpfWY/c-rp-mo-br100/photo.jpg','8918455867446117794',9070),('AIe9_BGZuRKHeO1iYrcf4B001kE2RPl_km-s3LUg66iFeOHlJ6jyHyYzI1_yAXO-j_jDiYkd2CJ1T85oNytgNGfkn_e66Uy-HbhNV5elR4nibCLTn238jgg','I had at great experience at SignatureCare Er! The registration ladies, Lorena & Amanda, were extremely helpful & kind!!','2020-07-25 16:06:25.318000','2020-07-25 16:06:25.318000',5,'Samantha Dennis','https://lh4.googleusercontent.com/-frpZ-OiZ_dY/AAAAAAAAAAI/AAAAAAAAAAA/Qi5hAT0qO9k/c-rp-mo-br100/photo.jpg','16590124370714063921',22648),('AIe9_BGZuRKHeO1iYrcf4B001kE2rqlRVB7CzkFDaUz5i9wpOiAnDmseSRMIfC4Jv89ckyrh0Pfj4Qk6ukI87UYd0DbH9y7DJ8cts3cp9DSc6UutHVpLCsE','I injured myself at work and got a cut on my face as a result. I was sent here from Concentra, as a recommendation. The service was so fast; literally the quickest ER visit I\'ve ever experienced. All of the staff were friendly and helpful: the registrar Itza, the RN Dawn, ER Tech Olivia, the RAD Tech Jacque, and of course, Dr. Akunyili was amazing.He gave me the correct solution to have minimal scarring from my injury and he was correct. Great location & service!','2020-02-27 13:08:52.478000','2020-02-27 13:08:52.478000',5,'D. Oliver','https://lh3.googleusercontent.com/-7DPaMyeJ4Xk/AAAAAAAAAAI/AAAAAAAAAAA/I4trlcPBGrI/c-rp-mo-br100/photo.jpg','3511292162159714121',17371),('AIe9_BGZuRKHeO1iYrcf4B001kE2Rs5T65-VZ7RALxA3bpYDxdaiDFzLwyZTiYp5TIh6scs7EieOvVqIEHIbo0Y_9jQ9dvx6YZtmEoC6MO6okXvmI7pZ2V4','I had an amazing visit. I was helped from the moment I walked in. I was seen in less than 10 minutes. Let just say I had already seen by the doctor before even starting the new patient paperwork, it was that fast. Highly recommend.','2019-12-18 19:20:47.764000','2019-12-18 19:20:47.764000',5,'Camille Allen','https://lh5.googleusercontent.com/-iHwoNgB3q2I/AAAAAAAAAAI/AAAAAAAAAAA/OpSahCxFiQc/c-rp-mo-br100/photo.jpg','2694018788013845459',5982),('AIe9_BGZuRKHeO1iYrcf4B001kE2ruez5_FF0-E8fftRXs_qOT89pEWIPPSic4wiUpKf9g551gORYOGrzDIB6Bm6kLaJlUND8dUpF4_Hha-0VZFiyOnYuMs',NULL,'2020-08-10 03:12:36.707000','2020-08-10 03:12:36.707000',5,'Erendira Dominguez','https://lh4.googleusercontent.com/-IDAwoBsFkhg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmFmsUP_-mkg77zY_yNm-WNAL0SHg/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22504),('AIe9_BGZuRKHeO1iYrcf4B001kE2ruKhIA2hikCGLbrF4XjYUOwkBi044lxH7Y3P3-U-hbVsZg0E-VA7DS5-jw94rqG0MZbBN6LhkpJkroncR-D6FsNPeJU','Everyone was amazing!!! Super friendly and helpful! Loved my experience from the receptionist Jocelyn A. To the nurse Alvear A. To the rad tech Christopher W. And tech Brian. Thank you Dr. Do for a wonderful experience.','2020-01-11 16:21:21.123000','2020-01-11 16:21:21.123000',5,'Ekaterini Montano','https://lh5.googleusercontent.com/-7pwJYHOixHA/AAAAAAAAAAI/AAAAAAAAAAA/F_EAOAsqyvM/c-rp-mo-br100/photo.jpg','16389487648212004696',9488),('AIe9_BGZuRKHeO1iYrcf4B001kE2RUNfQ9-RJz5KWEZWp932JubEGlCG0I6gahkuGff4iLnbNRNSL6Q1tYlebmAzxKEbejw110xtLl0iD2mU6f5vNCBzuAk','Amazing experience. The staff is very nice and friendly. Edward, Linda, and Dr. Miller were very helpful and made me feel comfortable the whole time. I will definitely be coming back in the future for my medical needs!','2019-03-04 23:22:59.259000','2019-03-04 23:22:59.259000',5,'Marissa Schatz','https://lh5.googleusercontent.com/-fK0puQC3_Z8/AAAAAAAAAAI/AAAAAAAAAAA/cm0UVNlkERk/c-rp-mo-br100/photo.jpg','16891069708558046635',4331),('AIe9_BGZuRKHeO1iYrcf4B001kE2rwqAwQN2pxk1V3KW8oPyH47APYc_fr0uxnM8o3JbYJQaFHK5psWCbtiwxs768KOG1rQenOUNNmi8ePGhTKyi2CGCMg0','Everyone there was extremely nice and helpful and got me in and out great place to go for an emergency!!!','2018-05-14 12:19:58.596000','2018-05-14 12:19:58.596000',5,'Jason Gonzales','https://lh4.googleusercontent.com/-RERG3n-Vy10/AAAAAAAAAAI/AAAAAAAAAAA/hG5J51V8k54/c-rp-mo-br100/photo.jpg','17394740196501090048',4848),('AIe9_BGZuRKHeO1iYrcf4B001kE2rxy_I1hvao8IJMsSaXE4ddTY5EBypfBQ0BQfGD8fhheAntKXnz3uCtl3PACdUb3mpl3HhW6dyYiIuyK5Em056SDEFqE','Thank you to all of the staff, doctors and nurses at Signature Care! And an extra thank you to Dr. Angela for standing out in the heat delivering results','2020-07-18 19:07:09.055000','2020-07-18 19:07:09.055000',5,'Carolyn Carter','https://lh6.googleusercontent.com/-9zZ99j7oRvc/AAAAAAAAAAI/AAAAAAAAAAA/eAUwO3xxOTE/c-rp-mo-br100/photo.jpg','14748677429039074158',21731),('AIe9_BGZuRKHeO1iYrcf4B001kE2RYxFykojO1UvpFy63aPAmiEKPHSJc2--Qa83ZR9exKgWlg4hMslSmZd6ndvZUeGEWxTiAdI8kpnAFAaFYXJAkBlKTzQ','Everyone here is awesome! They treat you like family. They welcome you and give you the attention you need. I highly recommend this place!!','2019-08-03 19:53:22.024000','2019-08-03 19:53:22.024000',5,'Leslie Ariza','https://lh5.googleusercontent.com/-4JBivQUfhCU/AAAAAAAAAAI/AAAAAAAAAAA/XL0dQm59xyU/c-rp-mo-br100/photo.jpg','17898197009688164559',5603),('AIe9_BGZuRKHeO1iYrcf4B001kE2s_2E-6s77jkn5oVAi2j-zaoTzoM4jBZrHHPl6AGhDl7VLUAUyg6aJeMGPUAlOvrRGih3kt_rBzpzpFOJ9yBhEUQpiM8','Lucas And Jennifer Was Extremely Helpful And Dr.Henderson Was Amazing And Very Helpful','2020-01-19 01:08:32.419000','2020-01-19 01:08:32.419000',5,'g g','https://lh3.googleusercontent.com/-hrymaMn287E/AAAAAAAAAAI/AAAAAAAAAAA/8-bi6-FVpBU/c-rp-mo-br100/photo.jpg','3272657195432704501',10008),('AIe9_BGZuRKHeO1iYrcf4B001kE2s_DWybyrIN4e8KB-MD4wiCglYxpE0FqIWGnXg765jW62fnRg0jE_P6HrxrjW9uqur4UAUeozSH6X17NcuGL0kfxnkXE','Dr.Patel Was great. Best experience I’ve had since I’ve been in houston. Every Dr. and Nurse all was on the same level. None better than the other. No complaints. Highly Recommend. They’ll take care of you.','2019-02-13 17:18:25.510000','2019-02-13 17:18:25.510000',5,'Shawn Williams','https://lh3.googleusercontent.com/-i8iw2EMeDLU/AAAAAAAAAAI/AAAAAAAAAAA/tyuyz0QtEzs/c-rp-mo-br100/photo.jpg','17898197009688164559',5856),('AIe9_BGZuRKHeO1iYrcf4B001kE2s4tjv5wqIoTX2aP-Qy-Y5zlmdZRwVNCVXXfxwIQ4pXPaqeVHkcFzoh34CYvr6cc3pI57tqCm1fMq9FNag1YAqE0WTyw','Excellent care. Fast service and very friendly staff. ','2016-06-22 22:19:34.444000','2016-06-22 22:19:34.444000',5,'Samantha Reddic','https://lh5.googleusercontent.com/-SawY93E76iE/AAAAAAAAAAI/AAAAAAAAAAA/IrTZkWW6smM/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',2013),('AIe9_BGZuRKHeO1iYrcf4B001kE2s5tXX0ACcLi5MgWTu5mOYdN0Nbk4-vHDh9yt7pQUU2oiXacMeUkL4t2w4ny_ZuBYXKVUq_f82oQoWExX5fsqyNDCC2o','Teresa M, Dylan and Joseph did an amazing job quick friendly and professional service.','2020-07-20 19:43:15.675000','2020-07-20 19:43:15.675000',5,'Sergio Figueroa','https://lh6.googleusercontent.com/--lqspriW0jA/AAAAAAAAAAI/AAAAAAAAAAA/WwLtgMho40Q/c-rp-mo-br100/photo.jpg','6521947413723274945',22226),('AIe9_BGZuRKHeO1iYrcf4B001kE2S8cK3a3r825Jl-ZY9aPwCADAFX56otaZZiA4F9oYfEYxiV14Ud7l2asQZDe-e1hfszEHNpk8Xk4UlMnA348cs7XGIWM','BEEN THERE 3 TIMES AND ITS NEVER A DISAPPOINTMENT, I RECOMMEND THIS TO ANY ONE THAT IS IN PAIN. THEY ARE VERY HELPFUL AND CARING.','2018-04-03 14:43:16.142000','2018-04-03 14:43:16.142000',5,'Juana Saenz','https://lh3.googleusercontent.com/-GSMRp-YK7VQ/AAAAAAAAAAI/AAAAAAAAAAA/OfVTSkXaAeU/c-rp-mo-br100/photo.jpg','14567670160750071148',1639),('AIe9_BGZuRKHeO1iYrcf4B001kE2SCv8laf2Jk5eMtSl7J-u06n7JoneNPI7ickL7qNIY2xn8og-TM7QXMMwhsnvuk9TsOhV7-qOyRIywi1RdEJiO63c1co','I would definitely recommend Signature Care Emergency Center to everybody I know. The facility is very clean and the nurses and doctors are very professional and very concerned about their patients. If ever I need emergency care in the future I would definitely go back. I would give this place 10 stars. I was very pleased with my experience.','2016-10-12 15:10:52.610000','2016-10-12 15:10:52.610000',5,'meme77677','https://lh6.googleusercontent.com/-Wy0G_b-MX-4/AAAAAAAAAAI/AAAAAAAAAAA/SMhA4iBS7kk/c-rp-mo-br100/photo.jpg','14567670160750071148',1959),('AIe9_BGZuRKHeO1iYrcf4B001kE2so731laT6H6OnTepJvopK79auih_0TBw0pPj3PvL78DPQnR7d0I69EMS1RZihj8LDKRqsLrBozBXLwcDVHtlylZCyG0','Didn’t take long I was in and out. Patricia, Ekaterini, Marcus & Thuy Anh.','2020-03-13 20:02:55.383000','2020-03-13 20:02:55.383000',5,'ashante brown','https://lh3.googleusercontent.com/-lHswOHTvthI/AAAAAAAAAAI/AAAAAAAAAAA/ZRstn095HxM/c-rp-mo-br100/photo.jpg','16389487648212004696',18231),('AIe9_BGZuRKHeO1iYrcf4B001kE2sr9rh5G4B8Gy6303QYVoO2y5Jw2ELSmnOvIzu1MjyvMqwmlOnQWEbTwkKcyD9wzc0tvCL_LnFyPuVILmDCCfii_gKOE','Normally wouldn\'t be excited or thrilled about a emergency visit but Signature Care has definitely changed that. They have the most amazing staff. We weren\'t waiting forever and they were super nice and understanding. Definitely will go again.','2020-01-13 19:18:25.859000','2020-01-13 19:18:25.859000',5,'Matthew Woodruff','https://lh4.googleusercontent.com/-_ohQknXT1nE/AAAAAAAAAAI/AAAAAAAAAAA/yDMO-GVJ5sI/c-rp-mo-br100/photo.jpg','13486358490203335051',13483),('AIe9_BGZuRKHeO1iYrcf4B001kE2stF_kYEPeth-Dd8Xi1gYV-aLK5lr5Jyl0ay_f2p9sa0lgXHZzFRAawZLvahhBXHEsOcOY7ASqUNx49ae-V5dKCEUf4Y','DR Craig, Laura , Olivia & Eve made my experience awesome . I have no complaints . From the welcoming receptionists to the staff , I was in the a lot of pain . Yet they made me feel right at home','2018-08-09 18:04:09.592000','2018-08-09 18:04:09.592000',5,'Jordan Coleman','https://lh6.googleusercontent.com/-nvfHncI3hUo/AAAAAAAAAAI/AAAAAAAAAAA/dfYZK5yUzR4/c-rp-mo-br100/photo.jpg','3511292162159714121',7649),('AIe9_BGZuRKHeO1iYrcf4B001kE2STShbQXRn7mEgQSQZvldDgHtTMLVwj1JMMzbagDHc_JGjps8lDmUEsI1XiDUWfaY5OfZvDETJvB95NvRIMLE7Plqgnc','This was my second experience at Signature Care in South Austin. Just like my first visit, everyone I came into contact with was kind, empathetic, and professional. I was in and out in probably less than an hour including my radiologist read x rays, and consultation with Dr. Rose. They only want to make you feel comfortable! I left with a diagnosed sprained ankle, but the ability to be mobile with the awesome boot they gave me-I have 3 boys to look after, and crutches were not cutting it. Thank you Dr. Rose, Adam, and all the nurses, and administration staff...I don’t want to have to go back, but it’s nice to know if I need to-Signature Care will be there to help get me back to healthy.','2018-10-18 17:56:44.817000','2018-10-18 17:56:44.817000',5,'Becky Garcia','https://lh4.googleusercontent.com/-nupKDkI4RMY/AAAAAAAAAAI/AAAAAAAAAAA/sbI5FcXXXoE/c-rp-mo-br100/photo.jpg','16891069708558046635',4414),('AIe9_BGZuRKHeO1iYrcf4B001kE2su5el6plsTlOfuYAfjQHC9sDFDFsqyypI5A1Piul4DD13HLFVDOwazJdmKsQAO4bHjZK0rKBF4MTMtoBNOkzmHuBwKk','I was in a lot of pain and it was an great experience. Gus the technician was very funny and quick. Genwsis and all the nurses were very supportive. Dr Wang explained everything to me and was very friendly. Dr jerry Chen was thorough and supportive.','2017-07-08 05:29:14.551000','2017-07-08 05:29:14.551000',5,'Barbara Beauzile','https://lh5.googleusercontent.com/-LV194cFCNPg/AAAAAAAAAAI/AAAAAAAAAAA/eGJLXHRHyz0/c-rp-mo-br100/photo.jpg','17394740196501090048',5023),('AIe9_BGZuRKHeO1iYrcf4B001kE2sYDDnCBTS4gEyeP4TbOICk9kTxIm9so1HT9Vl25OSJztnG_6HwMDJkxsNMXNQTp2QF21xKOTwLLJf2LFxfofffmB9OU','Great overall experience. Very friendly & helpful! Dr. Kimball gave great information about how to treat my symptoms. Brad, JR, & Ashlee were very friendly as well! I would definitely recommend coming here!','2017-01-27 23:56:23.186000','2017-01-27 23:56:23.186000',5,'Bailey Scogin','https://lh5.googleusercontent.com/-gOrbHCGHeYE/AAAAAAAAAAI/AAAAAAAAAAA/sJtRVhSTVeA/c-rp-mo-br100/photo.jpg','16590124370714063921',4078),('AIe9_BGZuRKHeO1iYrcf4B001kE2T--eNBBKRZqpfebxEHm71NqaEvzMbzsDw8bUhTSMWsqElxG6rKT-Bm-_Ubxa8jGaCfsn5W26bXaqAjdaL2dGpysylIw','They we’re Fast and Friendly I was only there about a hour and they took really great care of me within that small amount of time. I didn’t even wait 5 minutes to be seen, Thanks','2018-11-04 20:21:43.336000','2018-11-04 20:21:43.336000',5,'Robert Winston','https://lh5.googleusercontent.com/-W9ujL4z4fX8/AAAAAAAAAAI/AAAAAAAAAAA/gOP11P2R5vE/c-rp-mo-br100/photo.jpg','8918455867446117794',9221),('AIe9_BGZuRKHeO1iYrcf4B001kE2t1RGGLEfN_nJxcregHbPM9SOfYf2EiwTANKgoLfMMNwmYROkboR7TTnBTsdURsbjhndfNEbctu0Pe3e6NzWaWOSIrx4','Cody and Sam were amazing! Helpful kind and patient. I so appreciate the efforts during COVID!','2020-08-17 17:37:32.841000','2020-08-17 17:37:32.841000',5,'Reina Acosta','https://lh3.googleusercontent.com/-MIhYOGdjWj8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnvAnhOTXxeOnQof_eaRzOK2n8O9Q/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2t2QpHVLfBjbM2uyUwoilIZ56IxQd7Owp5K_9g1oZfBFx0TBwn88UjV34UYIfKfON0A55vYyCf-jvfxceDpWsDP6Tznc','They were very professional and caring. The receptionist Sita was very friendly. Great','2019-06-13 01:35:22.780000','2019-06-13 01:35:22.780000',4,'laura ochoa','https://lh6.googleusercontent.com/-b-dbKc9YBdg/AAAAAAAAAAI/AAAAAAAAAAA/q9BGawY02Fk/c-rp-mo-br100/photo.jpg','13486358490203335051',964),('AIe9_BGZuRKHeO1iYrcf4B001kE2T7g86vh0d9tttXPe-2iWd3w1Ajl7L9Au9YiMgHfWVVI5Tshdu7YC2yz19YsBNfG5c2IJqNJmdegtbvfZT-IjS3lvBlY','I received timely and compassionate care from all the staff. Natalie, Rick, Joseph and Dr Boester were all very caring and friendly','2019-07-20 13:54:25.345000','2019-07-20 13:54:25.345000',5,'Karen Harrington','https://lh4.googleusercontent.com/-OD04MvUsLA0/AAAAAAAAAAI/AAAAAAAAAAA/ZXCxS17reNA/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1274),('AIe9_BGZuRKHeO1iYrcf4B001kE2T7uljME43098E-IoTUxkO9bSrgks9IZ5G8C2FkiFpN94eBrId4no0H7_9h71ji0tNHxai6zHvO6d7e0nEddwzkunbKg','My son had a sprained wrist he had been complaining about for a few days. I decided to get it checked out and called SC. I spoke with Adell and he was excellent on the phone. He told me my son would be seen and then I would be quoted a price and decide if I wanted to proceed. He assured me nothing would be charged without my consent. I took my son in and was there literally less than 15 minutes. No one at any point consulted me about prices/charges. When I walk out to checkout, the receptionist told me it was $300!! I asked her to get me Adell and she said he was not even on site. Luckily I redialed the number and he answered. I told him what happened and he agreed that I was not properly informed. He asked to speak to front desk and then they decided that a manager would reach out to me (Tara). I was then asked to fill out a survey, which I did expressing my dissatisfaction. No one ever followed up with me. This incident happened in October and I just now got a bill in the mail for $300. \nThis company was very deceptive to me and absolutely unprofessional. Beware.','2020-01-06 17:52:40.128000','2020-01-06 17:52:40.128000',1,'Sharia Castillo','https://lh4.googleusercontent.com/-93gTKUjO4_M/AAAAAAAAAAI/AAAAAAAAAAA/IGXQQ99VRJk/c-rp-mo-br100/photo.jpg','8918455867446117794',14881),('AIe9_BGZuRKHeO1iYrcf4B001kE2Tni-6k8THSl1ZOSQYZvUy_sZFSENgNBGTXrg2iM9OXkaqExtY2C33kzBG0CA_ld9agMJ51iaadXFrJ_EdBRy65rSQ4s','In and out FAST....great staff ....','2020-08-14 14:57:14.944000','2020-08-14 14:57:14.944000',5,'NEIL MITCHELL','https://lh5.googleusercontent.com/-pf2soPKg4pU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclF2aTTMOwplg1St2QToHYPzqpprg/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2tNPRlmcUla5P1yH3OOgTIBDKWWid97V21HLx01pyi0Q2XEj0Cd7T4FKlTkagVZkDyYgKE4ZxC2rcgHw0FErICeVpPcs','The care was fast and effective. The receptionist made getting registered easy and with kindness. I hurt my back and they knew I was having trouble moving. They assisted me with taking off my jacket and getting me comfortable. My pain was addressed immediately. The tech performing my scans handled everything with the same care and concern. Not all doctors listen to their patients and this is worrisome at times. Dr. Huerta listened diligently and immediately worked towards finding my diagnosis. I left with full knowledge regarding my diagnosis and confidence in the treatment plan. Thank you for being fast, effective, and full of all around kindness. I have been here before, and left very upset. With that being said, I feel that the reviews from patents are read, addressed and improved accordingly.','2020-01-19 18:01:17.558000','2020-01-19 18:01:17.558000',5,'Kymberly Sredanovich','https://lh3.googleusercontent.com/-sD4dymbq7-g/AAAAAAAAAAI/AAAAAAAAAAA/83lAOx_Vgtc/c-rp-mo-br100/photo.jpg','13486358490203335051',13468),('AIe9_BGZuRKHeO1iYrcf4B001kE2tSGLFf9lvwdMROI8GI193zPL7E7pewVYqn1PdXU-W19VWwEJl0IGFp2iK-ZMA3DdzrYA2m29vNT5TT0qIe89Jbf9Wh4','I had a great experience here. I will definitely recommend them to others.','2016-08-15 16:58:12.730000','2016-08-15 16:58:12.730000',5,'Shanecia Lenay','https://lh6.googleusercontent.com/-g7UMNqkUpKo/AAAAAAAAAAI/AAAAAAAAAAA/iHktFilVJvI/c-rp-mo-br100/photo.jpg','17394740196501090048',5214),('AIe9_BGZuRKHeO1iYrcf4B001kE2Twn4SWdsigA0yyrKB4e-RnkALRpjHJxQq843w94M7GPEusxsLaV2AhDpk8m0fsBXZe10Oyni_9gh9SCm4OgMvJKwnws','Jennifer D with Registration was great and my nurse john bell and Tech Valerie they took every step to make sure my visit was worth it and they were just a awesome staff thank you for your help!!!','2019-01-07 20:53:48.735000','2019-01-07 20:53:48.735000',5,'Rodrick Taylor','https://lh5.googleusercontent.com/-hAQBJ3-z1Z0/AAAAAAAAAAI/AAAAAAAAAAA/Uqa7Ap9_4HU/c-rp-mo-br100/photo.jpg','8626688543755174284',8600),('AIe9_BGZuRKHeO1iYrcf4B001kE2txJMnSP943cGwi9va3Vjm_RadO5Cv2aS-3FJW7H4YVDvvyHjQRDovSAznFnFwWRLk3QuU_-_moum_i7COWQhOGUHyV8','WEBSITE SAYS THEY WILL TEST YOU FOR COVID IF YOU HAVE SYMPTOMS WITHOUT AN APPOINTMENT BUT THEY WILL NOT. Staff is very rude and condescending. They never asked me about my symptoms, they simply turned me away.\n\nTHIS IS SPECIFIC TO COVID. Website states people having COVID like symptoms can be tested so they should be staffed and ready. Clinic needs to be responsible and alert whoever is running the site to take that down because it is misleading to the public because it is 100% false.','2020-06-27 16:14:26.831000','2020-06-27 16:14:26.831000',1,'Kate Jones','https://lh3.googleusercontent.com/-LUrZkipvzkU/AAAAAAAAAAI/AAAAAAAAAAA/nPSqukMGKPM/c-rp-mo-br100/photo.jpg','14904078213800803294',21252),('AIe9_BGZuRKHeO1iYrcf4B001kE2tZOVm88AsI7J90SbOMQCVthSEZ4l8fxmyQz6rF6BJrlo7rk-z5-yh1arCsCkooKeaKeZACI98tJV1NvqHSnc8bQDCPA','I made an appointment for 3pm to get tested in an evaluation room. I arrived at 2:45. After about 2 hours, I started to ask when I could expect to go in. They said no idea, and told me to stay patient. Front desk lady had quite the attitude, which I understood - at first. I understand emergency patients deserve to go ahead of me, but EVERYONE was going ahead of me. I ended up waiting FOUR HOURS until finally they asked me my name again and told me I was next. At 7PM they finally told me to join the line for the drive thru. I was furious. I could have done that hours ago and been done within 30 mins. I also suggested the drive thru idea to them 3 hours into waiting and they told me no and to be patient. I am a very understanding and patient person, but this experience was just so ridiculous I had to write something.','2020-07-10 22:24:37.439000','2020-07-10 22:24:37.439000',1,'Hannah Campbell','https://lh3.googleusercontent.com/a-/AOh14Gjr2e87Vh2vafGqY-MLAMCEQmCbYn_bXJ5hyGVtRg=c0x00000000-cc-rp','14567670160750071148',21595),('AIe9_BGZuRKHeO1iYrcf4B001kE2U_R_IwatrKWfJCg57wwBR_nmXnTmtp7VEtJifQ0bEqxHxuae75lFFNuQ0oHc13YiU2M_YhgVUIaUwXLeHKUg7CKf8wU','The whole team was professional and kind. The facility is clean and new. Would definitely recommend this ER. Thank you to Dr. Alloju, Rollie, Natalia, and Stephanie - you’re all fabulous!','2019-11-17 02:09:58.913000','2019-11-17 02:09:58.913000',5,'Jessica Shishkoff','https://lh5.googleusercontent.com/-2xXFOECAu8c/AAAAAAAAAAI/AAAAAAAAAAA/Mg-w0fDL9oo/c-rp-mo-br100/photo.jpg','8679688254631342173',8722),('AIe9_BGZuRKHeO1iYrcf4B001kE2U4NgI_0vm3ZHCr2MqTx3vRe7BVJV9-fMI8_rKignt7gID-poAKKCSuIkpIumanwYJAj-AYGOo0jtHvmPb5Dp4l0yzz4',NULL,'2018-08-21 22:54:52.264000','2018-08-21 22:54:52.264000',5,'shaylamdias','https://lh6.googleusercontent.com/-WixKkIHU62Y/AAAAAAAAAAI/AAAAAAAAAAA/P9RIctxciJk/c-rp-mo-br100/photo.jpg','12541597562633926366',618),('AIe9_BGZuRKHeO1iYrcf4B001kE2U8FFWfVINd3-6ycXnQtnoet17ESIKlWyTbaQShonB33E9i5YO45DbGTjEHXU90qi2TnSO8Ak6BF_IeALuOB2QnvP81E','Staff was very friendly and accommodating. Irving was very helpful and took the time to talk to me and it made the process more comfortable. Dr. Edwards was also an amazing doctor and took great care of me.','2019-09-01 03:47:00.553000','2019-09-01 03:47:00.553000',5,'Gabrielle Guy','https://lh6.googleusercontent.com/-8e7adfwDiks/AAAAAAAAAAI/AAAAAAAAAAA/lFyXrKeOS9k/c-rp-mo-br100/photo.jpg','12541597562633926366',440),('AIe9_BGZuRKHeO1iYrcf4B001kE2UkjX_lgBxK0-rYpz1_e0VuhiUWHK6NC6zKr190Mz_cGADnI5NDqpdsYBED-mYIXl5VuQEv_1KVpOp4Wzj6iy_CyHG_M','Got my covid test done here by a wonderful nurse named Amy and they had me done so quick I almost couldn\'t believe it! On top of that the lobby was very clean which is very important to me especially right now. Highly recommend if you need a test or anything else to get it here!','2020-08-15 22:11:04.573000','2020-08-15 22:11:04.573000',5,'Nick Bryan','https://lh3.googleusercontent.com/a-/AOh14Ggkdzlb6P0oYW3V0rq1lhkG0MBz9dmGgvxR7Cyg=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2Ul-kPOCgTRYS7KD6zZI-w8SagUEuViNRel7HsYczSTEw-aFZe_inpLvUDQpr5w5A7nVIxVAUS89xBShNYdwzdSByhHY','Fantastic service, Dr. O\' Malley, Alven,Tricia,Jordan, and Patricia','2019-11-30 15:30:43.985000','2019-11-30 15:30:43.985000',5,'Douglas Smallwood','https://lh5.googleusercontent.com/-LkBxS5Xz89Y/AAAAAAAAAAI/AAAAAAAAAAA/3YXxKkZVP00/c-rp-mo-br100/photo.jpg','16389487648212004696',2607),('AIe9_BGZuRKHeO1iYrcf4B001kE2urKkyiJ2m7QYPu_lK3mSusSDgsQ7MI51pHAZ7Xvc7M96MV_Lnt0dmYHhR3qPj5et9Yk4f0QzE6qT1M5jwwLGZvvl128','I visited this facility for the first time this afternoon and was impressed with the cleanliness, friendly staff, and quick service. There was little to no wait time, and the staff was both friendly and efficient. I highly recommend this facility.','2017-02-07 00:43:44.696000','2017-02-07 00:43:44.696000',5,'Deann Groce','https://lh3.googleusercontent.com/-QuLaI6_NtXs/AAAAAAAAAAI/AAAAAAAAAAA/Q2y5asuTMFU/c-rp-mo-br100/photo.jpg','14567670160750071148',1894),('AIe9_BGZuRKHeO1iYrcf4B001kE2Ush4QVKmspObPzf3oyYS2l7VOc12v_VJpoA8ZaUfCt94yICvNOQTy0k7wJspDadpTGG0rs6Tv8Y4csdF2wrOs71RMic','We had a wonderful experience. Great speedy service and friendly staff','2018-11-06 05:24:24.188000','2018-11-06 05:24:24.188000',5,'Brandon Beasley','https://lh6.googleusercontent.com/-YET-fWCmzwU/AAAAAAAAAAI/AAAAAAAAAAA/LZaT14JLD2w/c-rp-mo-br100/photo.jpg','16590124370714063921',3663),('AIe9_BGZuRKHeO1iYrcf4B001kE2UTacohnymQBSeuk9ov9QNq115rTScPY3MQLbkK_y4Vv9MtCTeL4pr5T3vsmtIULY2MOeAnrS5bbGNJTJvtImxpEM6yo','Our experience was wonderful! First Brittany at front desk was so nice and helpful on the phone before we even got here! Then so so so sweet once we got here! Dr. Braun, Jeff, and Mrs. Eve were excellent so professional, so nice, so fast with their work, and just all around great people! Very satisfied with our experience and will/would recommend you guys to others!!!!','2016-07-11 18:47:52.955000','2016-07-11 18:47:52.955000',5,'Renee Roy','https://lh6.googleusercontent.com/-y5p-stlBqIs/AAAAAAAAAAI/AAAAAAAAAAA/bpsACOfktZw/c-rp-mo-br100/photo.jpg','3511292162159714121',7961),('AIe9_BGZuRKHeO1iYrcf4B001kE2UvjqsJocIG0lirDH7gBQ648Up-MplrRy4S2AXHieB1-tVLgBO96MrEbF_-9_5haKn0ZvJdhHglb0gA0V76k-OTK1JAM','I had the best ER experience at SignatureCare Emergency Center. Quick and efficient service, and the staff was extremely friendly and helpful especially Aileen at the front desk. I definitely recommend this place!','2019-11-04 19:25:33.461000','2019-11-04 19:25:33.461000',5,'Aidee Lopez','https://lh3.googleusercontent.com/-SfqM1ifeANM/AAAAAAAAAAI/AAAAAAAAAAA/mAOMW0OZkfs/c-rp-mo-br100/photo.jpg','16891069708558046635',4163),('AIe9_BGZuRKHeO1iYrcf4B001kE2UWRQMGqrg8WLtzr9N-jbjDIc8itddiKQmM-RLcfSQPSdlSGO3istNMdtoxoLY-kdYkwL5vEvJc5Yc1yBOsJrmur3DYk','I was seen on Saturday evening and I couldn’t ask for a better place to go . The entire staff was caring and helpful . Monica , was amazing ! She was very professional while never losing the human touch . This will definitely continue being our place to go for all emergencies .','2018-09-11 02:49:05.024000','2018-09-11 02:49:05.024000',5,'Cinthia Gonzalez','https://lh6.googleusercontent.com/-viCgnAePg6E/AAAAAAAAAAI/AAAAAAAAAAA/6VPocjpTaKE/c-rp-mo-br100/photo.jpg','17394740196501090048',4801),('AIe9_BGZuRKHeO1iYrcf4B001kE2uYxjgH1kuEAxaj0tvTHADxJibJlGfV8vRe4g4qfESa120IsmmJPuC35ftb-o0uZ86WyZLMQNAe9qlK5w1WuqpRMkw1k','Awesome services','2020-02-26 21:58:10.604000','2020-02-26 21:58:10.604000',5,'Tylandria Braggs','https://lh5.googleusercontent.com/-RB2R8gIDBSo/AAAAAAAAAAI/AAAAAAAAAAA/uNK1Q0NUG-c/c-rp-mo-br100/photo.jpg','12541597562633926366',13335),('AIe9_BGZuRKHeO1iYrcf4B001kE2vB74IL7blJBXxoYgW04k7317U_9q687qJazlA7wI_ytjOWsnOr6NeRxQ5fNx90ONfUuOBGLTAe61MU0I00pHqU7HCaw','This place took such good care of me last night when I came in. Each person did their part efficiently and professionally but so utterly friendly that I didn\'t mind going so late. They had me feeling so much better in no time. I am very greatful to all their staff for caring about me and my daughter also. I wouldn\'t go anywhere else. Thank all of you.thank you to Dr. Patel N., Nurse Sarah G. , Fatima B. And Tanisha W. I appreciate it.','2019-11-09 01:51:40.101000','2019-11-09 01:51:40.101000',5,'Margaret Davis','https://lh5.googleusercontent.com/-I0LIz5VRQ1w/AAAAAAAAAAI/AAAAAAAAAAA/1nfqrXw6ASE/c-rp-mo-br100/photo.jpg','17898197009688164559',5453),('AIe9_BGZuRKHeO1iYrcf4B001kE2vBjtn-I_Q4mjK-9_1cZkrEhAnQ65WiYAKtRZc3IYBSOGRnxuwkqUNElxktQU4S6nbzF62R-bzgURJvFyHWKu2M69_PA','The entire staff from Jocelyn at the front desk to Jani the nurse and Dr. O\'Malley where all friendly, caring, and helpful with my daughter \'s injury.','2019-11-09 19:53:13.835000','2019-11-09 19:53:13.835000',5,'Andrea Valderas','https://lh3.googleusercontent.com/-rPAQdEqZN6k/AAAAAAAAAAI/AAAAAAAAAAA/YP-r3zEmzDo/c-rp-mo-br100/photo.jpg','16389487648212004696',2719),('AIe9_BGZuRKHeO1iYrcf4B001kE2Vk57VZs7sfJyP8qasKuMDauTpBcODi2Ea1ELYyqG271Cv2vf_QCyUdyudr_CjK7c4tuopz3ukvDK8RbuY_ZmQodI46g','Was seen there service was fast and staff was very professional','2019-10-27 16:46:11.281000','2019-10-27 16:46:11.281000',5,'Shuvona Mathis','https://lh5.googleusercontent.com/-H-E_V0oRGTA/AAAAAAAAAAI/AAAAAAAAAAA/p6nrx2ESnFE/c-rp-mo-br100/photo.jpg','2694018788013845459',6030),('AIe9_BGZuRKHeO1iYrcf4B001kE2VowhPzX3VgFqVsHW9AnXqpHzScdrsmFo8DD-Y9BXdp-M0W3lIPbYeBECy22dPMpFcCh83v_IIAo_W6VRnh7fwdB8pGI','If I could give zero stars I would. They were rude, dismissive and uncaring. I heard them joke about me and give more attitude in the hallway. I sat there and waited while they joked around for 30 minutes because they didn’t care. If you really need help I would suggest seeing qualified health professionals that can actually get hired by an actual hospital. Also Lia the rn was by far the meanest most uncaring RN I’ve ever come across in my life.','2018-12-30 15:24:43.545000','2018-12-30 15:24:43.545000',1,'Caitlin Jackson','https://lh6.googleusercontent.com/-MNqDKAH_eRY/AAAAAAAAAAI/AAAAAAAAAAA/Elc9-X-2v4c/c-rp-mo-br100/photo.jpg','12541597562633926366',581),('AIe9_BGZuRKHeO1iYrcf4B001kE2VTVxC0qLzQdSZhnPErchUcR483-uo4VTailhcaXVxkEtGOc2Y0ddFLp1zlEiOZE8_J_f1SGE1yP9x-kPjBofwMz7p78','I’ve been to seton hospital and was terrified of any more hospital visits but at signature care my opinion has changed will definitely let our patients know and everyone that this is one of the few places that are good . Dr. was super nice the goal is too not have patients waiting long but give them excellent care . Great nurses great experience','2020-02-04 00:16:05.542000','2020-02-04 00:16:05.542000',5,'yajaira davila','https://lh4.googleusercontent.com/-NPmcprZTABU/AAAAAAAAAAI/AAAAAAAAAAA/Z4Dy2OWqP3Q/c-rp-mo-br100/photo.jpg','2694018788013845459',14255),('AIe9_BGZuRKHeO1iYrcf4B001kE2VwLhO_L4NfrCssOlDUkMmYeQOQ-NXYuCOJzltskpCGA_mmvzJbWDbuqSmh5Q2ytEa4BQmNFTqf1EmEYn1iIdi6ShjTA','Very efficient, and friendly staff this was my second time here. Thanks to Brenda for taking care of me at the front and Olivia in the back.','2019-07-07 15:52:24.632000','2019-07-07 15:52:24.632000',5,'Lakeisha Mckinney','https://lh4.googleusercontent.com/-URReSGH5eLw/AAAAAAAAAAI/AAAAAAAAAAA/LCTIKXWLHYY/c-rp-mo-br100/photo.jpg','3511292162159714121',7266),('AIe9_BGZuRKHeO1iYrcf4B001kE2VWpNXN37vpk1z1I2593JU4sKi_HwxrIKpA95m0vjow_6pewjEw9pc4KUbvKS4oX_joqw38JQF_GavcRyc7pOv_Gi2E0','I had cut my hand badly in a fall. There was no wait, minimal paperwork and friendly front-desk staff. I was impressed by the facility, quality of care and friendliness of the staff. It was my first visit (thankfully) and far exceeded expectations.','2018-05-12 16:09:08.287000','2018-05-12 16:09:08.287000',5,'Laurie Green','https://lh6.googleusercontent.com/-kf5n5cygbBc/AAAAAAAAAAI/AAAAAAAAAAA/impu_zmbHII/c-rp-mo-br100/photo.jpg','17394740196501090048',4850),('AIe9_BGZuRKHeO1iYrcf4B001kE2w4fzp-5LodppVF2I9fcHYorcbl4CxoT9a2NeBzZ_8duw7y2BniLbHUPYEnMsTMg1zH_yec5uCZu7EzCqChkPput0HUE','By far the fastest ER/Clinic visit ever. Staff was amazing. They took great care of my son and also made sure I was ok.','2019-11-08 21:50:19.248000','2019-11-08 21:50:19.248000',5,'Shaena Smith','https://lh3.googleusercontent.com/-YIA0J7A1DCk/AAAAAAAAAAI/AAAAAAAAAAA/u10aERGW9kM/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',6016),('AIe9_BGZuRKHeO1iYrcf4B001kE2w91OYoqSyQwCNe05qUISl8pp5BHSk1BLese3zLUTgsnR--ebBg4l1bUGpVOU6XKcLOXMRH5guBkM9B-VcEJsbN77RLY','Christina, Andrew, Dr. Lingan, Adam, Carli, and Aileen were all amazing. We loved this place so much that we are going to start coming in for the smallest of injuries. My girlfriend felt very comfortable and was taken great care of. I will be coming back here for all of my medical needs.','2019-11-17 19:04:40.173000','2019-11-17 19:04:40.173000',5,'Reid Hairston','https://lh5.googleusercontent.com/-_CePJD36its/AAAAAAAAAAI/AAAAAAAAAAA/42o2YQjwJXY/c-rp-mo-br100/photo.jpg','16891069708558046635',4146),('AIe9_BGZuRKHeO1iYrcf4B001kE2wcn5JyQKSecf9ni1IQ3YhBgywZIXlf6xkptJPn6tS_FY0SfZhPjuswR85veI_CXg5r5kr7R0PKr1fmx9IGvJ5otPTvQ','I came in to SignatureCare and let me tell you, they definitely live up to thier reputation. The facility was clean, the staff was polite and knowledgeable and the Dr.O\'Malley had exceptional bed side manners','2019-11-25 15:12:53.944000','2019-11-25 15:12:53.944000',5,'You Triedit','https://lh5.googleusercontent.com/-bSEkjZ4umiw/AAAAAAAAAAI/AAAAAAAAAAA/X0ccNhxZBP0/c-rp-mo-br100/photo.jpg','16389487648212004696',2634),('AIe9_BGZuRKHeO1iYrcf4B001kE2wfLkNs2A-sqBeWR9sqKyj9AKpqRctMaqOZ87UF8XoK7m5GDM6RROdF66J2JEW_TivDTsATXOXp85Obg1GMx33K_wUQE','I went here after work yesterday to get strep tested, as I hadn’t been to the doctor in years and didn’t even have a primary care physician. I kind of dread going to the doctor but if enough doctor offices and medical facilities operated the way this place does that dread would quickly fade away. They are amazing. Everyone here. From the helpful welcoming folks at the front desk who assuaged my concerns about getting a monster bill from my insurance, to the friendly nurse, to being able to lounge back and binge watch Gilmore girls in the room, to the kind doctor explaining different options to me about treatment in a very common sense way... Seriously, I do not wish for anyone to have to visit an emergency center. But if you do — go here. They will take all that crappiness and stress you’re feeling and melt them all away.\n\n_________________________________________________\nAdded 6/17/19\nMade a second visit to Signature Care this morning after an owl attack. Yes, you read that right...an owl attack. Go figure. My head was pretty scratched up with talon marks and what not and everyone here was not only incredibly kind and caring, but also kept me laughing with a steady stream of owl jokes & puns making light of a pretty ridiculous situation. Mad props to to Nurse Adam for the most owl jokes of the morning and for administering a tetanus shot I couldn\'t even feel. Many thanks to Dr. Miller, Christina C., Linda, & Adam for turning an extremely bizarre morning into a pleasant experience.','2019-06-17 14:52:42.494000','2019-06-17 14:52:42.494000',5,'Mindy Palmer','https://lh3.googleusercontent.com/-jFJ2_PkHhfY/AAAAAAAAAAI/AAAAAAAAAAA/_ouqG1wvmzc/c-rp-mo-br100/photo.jpg','16891069708558046635',4250),('AIe9_BGZuRKHeO1iYrcf4B001kE2WgIamJZFBkbJt3aBunjSymgANZqtjnySikHxlnPnVvrdfdYdslIvFUTqL0UYHmh2wXMzeJbhrSxMfe1tgVCMmBfVAWs','I went in the staff was very nice on point I meet the staff Konija ,Nikki , and doctor elsbecker very nice got me in and treated me quick and made sure I was feeling better the whole time I was there I recommend if you need to go to an urgent care this is the place','2020-01-05 18:09:26.693000','2020-01-05 18:09:26.693000',5,'Cindy Garza','https://lh3.googleusercontent.com/-xWWZ3h6n8sk/AAAAAAAAAAI/AAAAAAAAAAA/tk0fRrrKanU/c-rp-mo-br100/photo.jpg','2694018788013845459',14276),('AIe9_BGZuRKHeO1iYrcf4B001kE2WgM6nl801W_I5TEzsTpGHV_-g1YTxr42wubhSsnfekz-zK78lDV6uYgirj53j_0uwmsvkCmNxq_b0qvnRf8lMkRAv6I','ALWAYS clean, efficient, kind and caring!','2020-01-11 00:25:50.351000','2020-01-11 00:25:50.351000',5,'leah Colley','https://lh3.googleusercontent.com/-zva-UL1bDps/AAAAAAAAAAI/AAAAAAAAAAA/3_AgqhQfWQQ/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',6935),('AIe9_BGZuRKHeO1iYrcf4B001kE2WJxRZb5ugj7FehFg0z1ypBHvXG9vmxRPjI67Qkbp3FVBQAOq3UifiGP6FPkf8mXBmphXoHJKZtgMqE7z3bE3n0hWSD4','Beautiful facility! When you hear about heaven this facility is the area before enter into the gates of heaven. Alvean, Tricia and Dr. Nguyen were excellence in caring for me. The front office staff made me feel like I was checking into a hotel. I was in so much pain upon arrival but within 30 minutes I was feeling better. I highly recommend for any emergency care.','2019-05-30 19:15:00.178000','2019-05-30 19:15:00.178000',5,'Kathy Manuel','https://lh5.googleusercontent.com/-sezFZmFoACc/AAAAAAAAAAI/AAAAAAAAAAA/ESVgKUaB7n0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2wQ9CJF4OGMgVgXeCW3ktHh9VsZC9bApULUm89PDriNFDOs2GEQE1mPOeQcBgaa3nigxyQJ4JD_49P23L4Z1QSde4UH8','Fast and friendly service.','2017-01-05 00:09:45.089000','2017-01-05 00:09:45.089000',5,'Kris Persaud','https://lh6.googleusercontent.com/-xlQduhcsoT4/AAAAAAAAAAI/AAAAAAAAAAA/u2mBtE_HzNQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2430),('AIe9_BGZuRKHeO1iYrcf4B001kE2wQSIV8MG1OawtEqsCKjmDjK-cZoeMxvRMhoQVUX2klyi1hc3jwNpOFXzTnR6byKt1T3be9lSoWMTR1xUwb98hEHz7pY',NULL,'2019-09-08 17:43:13.283000','2019-09-08 17:43:13.283000',5,'Hilda Leo','https://lh4.googleusercontent.com/-o8RC9ZvERIs/AAAAAAAAAAI/AAAAAAAAAAA/IUsStuBYFII/c-rp-mo-br100/photo.jpg','8679688254631342173',8808),('AIe9_BGZuRKHeO1iYrcf4B001kE2WuOUglKexq0U8zUSni_1CRRmFOPIVqbTOBR6URk-337VYiPL9eJyQ8Zd7lsUgz2QiXN-oAqbDONqiL4g_WYqnN0PS5U','Great service from Dr. O\'Malley and also Nurse Kat quick in out service and knowledgeable staff! Would recommend and will be back in the future! Patricia was a great registration host and very polite!','2020-03-13 13:18:06.368000','2020-03-13 13:18:06.368000',5,'Jereme Graham','https://lh4.googleusercontent.com/-AW5L5wzVu1g/AAAAAAAAAAI/AAAAAAAAAAA/cUEBk9kTJxA/c-rp-mo-br100/photo.jpg','16389487648212004696',15203),('AIe9_BGZuRKHeO1iYrcf4B001kE2X_1qVKWhvkYZMBNLZi5ruG-eQHnigAEvpW21sBqNvkgLVthPNtNk4FzNOpRKKwp_9Lhc2NkCNInBm7QwdMOCAtakdMc','Mercedes and Allisa was fast and efficient checking me in and Shawn K. provided excellent service! Amazing people.','2020-06-20 19:55:57.613000','2020-06-20 19:55:57.613000',5,'Jerrin Francies','https://lh5.googleusercontent.com/-3lxc6cVC9Jg/AAAAAAAAAAI/AAAAAAAAAAA/9osraLZjv2g/c-rp-mo-br100/photo.jpg','8918455867446117794',21230),('AIe9_BGZuRKHeO1iYrcf4B001kE2XHw_7BfIS-Kn_IAWL7G2WJTnhrv1q7ocIElL5-pZC8X7McsWJS7x5CIYF0IeMKBIEcCAGMooV6FdYkcakVLsu31sCNY','I love this place! I have literally been here four times in the past three years for my strep throats, and every time they make me feel so much better. Liz in registration was amazing today; she got me through so quickly! Nurse Jacob was very kind, funny, and made the shot as painless as possible. Dr. Harjai explained my diagnosis in understandable terms and made it easy for me to understand what I needed to do for post-care. I would recommend this E.R. to anyone!','2019-02-13 13:54:01.909000','2019-02-13 13:54:01.909000',5,'Marissa Rowley','https://lh6.googleusercontent.com/-tQZWpNmlnKw/AAAAAAAAAAI/AAAAAAAAAAA/Hlpz1Y1y19w/c-rp-mo-br100/photo.jpg','16590124370714063921',3556),('AIe9_BGZuRKHeO1iYrcf4B001kE2xohHqi4brFniRkfnRgaDL21IogIw0Cm5MiOxaZUkHw37T0Eq1NdPl7gYelkY6nnOGfdYS_j6q23ae83ONf4cw5lLDOY','Great service ','2017-01-18 23:40:17.122000','2017-01-18 23:40:17.122000',5,'Angel Medina','https://lh6.googleusercontent.com/-RNH1EDx0pRI/AAAAAAAAAAI/AAAAAAAAAAA/ucbgOdYlqyc/c-rp-mo-br100/photo.jpg','14567670160750071148',1912),('AIe9_BGZuRKHeO1iYrcf4B001kE2xUH1njqumYod5fzJVAjyDX2s9i6rLBRHZJ3Wjm-neShnjf0-fawLQDC9XwFgZotI8NGwEclAHpkucjyin2potb7KdYw',NULL,'2019-02-05 14:37:55.816000','2019-02-05 14:37:55.816000',5,'Darren Lane','https://lh4.googleusercontent.com/-4RMH15m5gI8/AAAAAAAAAAI/AAAAAAAAAAA/gmqM3cKGfHs/c-rp-mo-br100/photo.jpg','8626688543755174284',8573),('AIe9_BGZuRKHeO1iYrcf4B001kE2xWfD5XtpUEX6OuIEgmUHfFp4q_sm7Ox8Tib8a0uz2zfYTuMSSNGItTsUvTsYfRqllYMH4CXWbezNlUZzenlKEk2-FYg','Excellent costumer service-provided by , hayleigh DR. Golla and nurse reed were great, very helpful, kind and knows there stuff. Every one of them were super freiendly and could tell they care about there patients. Will definitely recommend all my JNS Fitness clients to them.','2018-07-19 20:05:22.036000','2018-07-19 20:05:22.036000',5,'Madiha Khan','https://lh4.googleusercontent.com/-nC4Fnxk7_xk/AAAAAAAAAAI/AAAAAAAAAAA/WtSDCR94QJA/c-rp-mo-br100/photo.jpg','17394740196501090048',4829),('AIe9_BGZuRKHeO1iYrcf4B001kE2Y3f3FnAaqxgAnNgFr-G9hvM2xqqIa2L9GU_rIXIs2OXuukxdwzNHLLTgLpLZn5qZ_46njZ8nDAKmSUKjaF710PkdE3A','Great experience! The team diagnosed my foot problem and I was out the door. Right medication helped keep the problem away. Lucas Sherri and Kim were great. Dr. Host came in and told me just by looking what the problem was. 😃😃😃','2019-08-04 18:04:40.193000','2019-08-04 18:04:40.193000',5,'Jeffrey Dean','https://lh5.googleusercontent.com/-LRiR2O60VkE/AAAAAAAAAAI/AAAAAAAAAAA/G4_2ev65Fg8/c-rp-mo-br100/photo.jpg','3272657195432704501',6921),('AIe9_BGZuRKHeO1iYrcf4B001kE2y3u5q7ARNjxZ8wOoXO8Kfds8X5el23voUubqmEtmerjmE77nae3MMreMZEfT0DE-IKTJlCM8UNRzpn8E_Zv_K8LGp8s','My experience is great every time I comin. Everyone is always pleasant and helpful. Thanks Kelsey, Jeff, Dr Tusuf, Quyen and Patty!','2019-06-19 16:55:34.293000','2019-06-19 16:55:34.293000',5,'Roxchelle Sheffie','https://lh4.googleusercontent.com/-urm4qwAA4Bo/AAAAAAAAAAI/AAAAAAAAAAA/VWGihh1WqYI/c-rp-mo-br100/photo.jpg','12541597562633926366',495),('AIe9_BGZuRKHeO1iYrcf4B001kE2yGeo726mCHwLyefWG8c6r_BYCiekiQWc7bth-0zI29fR7zZi5T0UpwB-2FGl5wbNepJ6zVNlHNio-6TzTKRgTK4cvUM','This is the best staff and Dr.Dunn was very sensitive to my problem and took care of me. Tanishia took my information and was on point and very friendly. My nurse was great and was very caring. Fatima was very nice. Thanks A team.','2019-11-11 08:08:02.674000','2019-11-11 08:08:02.674000',5,'Sheba Stephens','https://lh3.googleusercontent.com/-BOVVds3RY9o/AAAAAAAAAAI/AAAAAAAAAAA/t7bMRDDtFdc/c-rp-mo-br100/photo.jpg','17898197009688164559',5444),('AIe9_BGZuRKHeO1iYrcf4B001kE2yJlv2zskerpPDklUfmWjD5UR5ZMDrOqWGloiLEWItbLiAn-t5seJzonPJQ-vPGB6q6vpJ8iWwJPM-7KrBNwPfLJrLYE','Loved place so much , very fast and efficient. Very lovely people specially Radiologist Fatima and receptionist Bryanna. Definitely reccomend.','2019-12-08 06:17:41.768000','2019-12-08 06:17:41.768000',5,'Lorenzo Nepomuceno','https://lh3.googleusercontent.com/-je04PueOOHE/AAAAAAAAAAI/AAAAAAAAAAA/pF1VDkCL2nM/c-rp-mo-br100/photo.jpg','17898197009688164559',5371),('AIe9_BGZuRKHeO1iYrcf4B001kE2yno4NyNMA6tdp29QgzzloADJZSqvn_C55Mrr22UHoOiiJ0gXfYP1Meq4q4vbmcCkgnwL2HTEDuXl_ZDw7VO_ryFpRvE','I’ve been to this emergency center multiple times throughout my pregnancy. I’m 36 weeks pregnant and I went in due to suffering from shortness of breath and cramping. They were very patient and attentive to your needs. The staff is very friendly and easy to talk to. The doctors and nurses were very thorough! This is for sure my go to place if I’m ever in need. \nShout out to \nR. GARCIA, MD, HABACUC D \nNurse: John W \nRadiology Tech: Lonnie B \nFront Desk: Brenda E M','2018-12-20 12:13:04.059000','2018-12-20 12:13:04.059000',5,'Manda Reece','https://lh5.googleusercontent.com/-zSjqCBDlbj0/AAAAAAAAAAI/AAAAAAAAAAA/RILt_zM1By4/c-rp-mo-br100/photo.jpg','8918455867446117794',9204),('AIe9_BGZuRKHeO1iYrcf4B001kE2YntwOB5ItkSLj0yrUJ_uYMeRFhQLsN-JU7zH3pVhSDxc7b3EnKk6xPm9jRczQ9EAra7jFheDir45BCjOXHign1L6P4k','Great place to be healed!! I\'m a very hard stick and my arms were already covered in bruises from previous visit but nurse Lucas was able to get me first try when placing the IV which NEVER HAPPENS!! Dr Ashbrooks was very friendly and did not moonlight me like you get at regular ERs which was refreshing. Kim at the front desk was able to get me quickly checked in and back to a room.','2020-02-27 15:52:45.980000','2020-02-27 15:52:45.980000',5,'Mandy Johnson','https://lh4.googleusercontent.com/-5sH7CAt-Z-k/AAAAAAAAAAI/AAAAAAAAAAA/_hrZA2ZqSFY/c-rp-mo-br100/photo.jpg','3272657195432704501',14324),('AIe9_BGZuRKHeO1iYrcf4B001kE2YrxeRQIeBFmHYmWt-EfjwNUktmkQORn7po6CBeGHw88HC_gS5y8PjwIB78e0Yntnk_-vrswnmwnjMOpes1dRkFakl1A','I overall had a good experience here. From the moment I walked in everyone was making sure I was comfortable. I didn\'t have to ask for anything- they brought me everything I needed right away.\n\nI worked with: Kendra, Morgan, Nurse Jacob, and Dr. Vankey','2019-11-03 16:52:16.183000','2019-11-03 16:52:16.183000',5,'Emma Thompson','https://lh3.googleusercontent.com/-Jf_gdTiNAvA/AAAAAAAAAAI/AAAAAAAAAAA/umGqaOFQ9kA/c-rp-mo-br100/photo.jpg','16590124370714063921',3107),('AIe9_BGZuRKHeO1iYrcf4B001kE2YsvyIErcOxULFHimwgOXSbBG8YDrEcR6i5bJj37xuTWmghxD2Q_cR1tDo2AaRg366aVqfPNbtf36EGiKJTS3qu_uCHw','Very clean facility, very professional. Even when we were hesitant about treatment they took the time to explain further to make us feel more comfortable. Front desk staff was especially friendly','2020-03-05 18:27:00.104000','2020-03-05 18:27:00.104000',5,'Kym Hulslander','https://lh5.googleusercontent.com/-F5udnR82LoU/AAAAAAAAAAI/AAAAAAAAAAA/mD4GmOduF8M/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',14505),('AIe9_BGZuRKHeO1iYrcf4B001kE2Yy4XyPdbuwNWAyy8gTAxeEfetyF56HkME3QMYIVT8cOTuEBbyNXrk8nQ-53apkNxxWg22HX4Ye2K75Ww7bPn0cXmqm8','All I can say is great!! This space is unbelievable, the staff was friendly and helpful and the nurse and doctor were amazing. I was seen by the doctor within 10 mins of arriving and was completely done in about 30 mins. I will go there again when ever I\'m in need of medical care and know I\'ll get quality care in an beautiful space!\nI highly recommend Signature Care!','2016-06-09 19:31:27.929000','2016-06-09 19:31:27.929000',5,'Colmenares Leana','https://lh5.googleusercontent.com/-IWCbwDzrC1A/AAAAAAAAAAI/AAAAAAAAAAA/FEI7JFuLqdA/c-rp-mo-br100/photo.jpg','3511292162159714121',7989),('AIe9_BGZuRKHeO1iYrcf4B001kE2Z_ZVQLb1sfgd-QA89GmakAwkwz5gKPLKaCSagi1oXEsAD1l6Ekx6pEtk6PLtTYboj47MJlpNORysV95Wg75H8pqh26o','We live in the neighborhood and have depended on SignatureCare for several emergencies. They are consistently professional, attentive and trusted.','2017-04-18 14:20:26.246000','2017-04-18 14:20:26.246000',5,'Michael Groomes','https://lh6.googleusercontent.com/-3S2b60ozoCs/AAAAAAAAAAI/AAAAAAAAAAA/f31Jj1zJT58/c-rp-mo-br100/photo.jpg','14567670160750071148',1847),('AIe9_BGZuRKHeO1iYrcf4B001kE2Z-TtDCS1cPdUDqGLlZkYzZCXaYdqxJ2LgOeiWlhcTRl7nTxb28GSXEPfuAKVGHQdXNcfeWMI99H4Y6vdexFJ6Dgk5k0','I was treated with the best care ever! I recommend highly!!! \nPS Before leaving, please make sure that you have your results.','2020-02-20 19:42:02.545000','2020-02-20 19:42:02.545000',4,'Marcella Dupre-Gunter','https://lh3.googleusercontent.com/-niBLaWW8gtE/AAAAAAAAAAI/AAAAAAAAAAA/c2Mxr3fk0WI/c-rp-mo-br100/photo.jpg','8918455867446117794',14812),('AIe9_BGZuRKHeO1iYrcf4B001kE2Z0nHMxHx6z9u0dgwXe8oqHu5lR1XgCVJmPHLZmnSV8jZuxl8mBLgT6SOO6SKLLpKRELQZJ1kt2oN75r4XKDhcfJVaM0','Excellent service and attention. They make you feel as comfortable as possible. They offered me water and a blanket and explain every step to my treatment and condition.','2018-02-05 16:39:48.819000','2018-02-05 16:39:48.819000',5,'Leola Gonzalez','https://lh6.googleusercontent.com/-dQtuxhnF4Ko/AAAAAAAAAAI/AAAAAAAAAAA/vW3VY-LHNDI/c-rp-mo-br100/photo.jpg','16590124370714063921',3865),('AIe9_BGZuRKHeO1iYrcf4B001kE2z8oOZzab2Ijfw2cJR9IAudtqDwd5ZffEte8MjX6nurQTXXQEnNOMSho4iV2J1VYo6QO_8eFc6_R_vb46v-a7LcScjOQ','My experience with this new clinic was exceptional. They got me right back, iv started, ct scan, meds all within 10 mins. My nurse,\nAndrew was was excellent. He went above and beyond to assure that i had everything i needed. Upon discharge the were quick and all were so courteous. I highly recommend this clinic!!','2019-03-11 04:04:36.203000','2019-03-11 04:04:36.203000',5,'Trisha Elliott','https://lh3.googleusercontent.com/-DkmAdnq_g0k/AAAAAAAAAAI/AAAAAAAAAAA/QPLMoGFWgPQ/c-rp-mo-br100/photo.jpg','13486358490203335051',1061),('AIe9_BGZuRKHeO1iYrcf4B001kE2Z99t6sjuNsmTks8jN7u0nqnVWZRlXucf7KUf3Edh_k1keQ5jn2bsWsDidkUN7QSjciBm1N7Nwvx1P0eofenou0F_I0k',NULL,'2017-04-24 16:16:12.733000','2017-04-24 16:16:12.733000',5,'katelyn socko','https://lh4.googleusercontent.com/-X0-WzT3R_KU/AAAAAAAAAAI/AAAAAAAAAAA/sWGV9y4qw8s/c-rp-mo-br100/photo.jpg','16590124370714063921',4000),('AIe9_BGZuRKHeO1iYrcf4B001kE2Z9ZkqGRE3RGIFumSLnuSYx34eV4Jj1mDb2X_e0z3QcfOjltuzcqDWRQyN-WYC0rGK4tdzIryO7Bge40EhztowSxuxeU','Very friendly nurse . Quick and easy COVID testing','2020-07-27 00:11:07.492000','2020-07-27 00:11:07.492000',5,'Maria Aguilar','https://lh6.googleusercontent.com/-qZxvBC8xeC8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckLKhfpnuu18lsqajSdwLvsdldOjw/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22203),('AIe9_BGZuRKHeO1iYrcf4B001kE2zFw4Wvnt_nA3CBliCoPSRFCUnmnmju6G9OqfS6T2GSXIM_4gI642XcnccKQWsK9hf_9I5xcvvS72TVA_7OKTlI-h79Q','Love this Emergency Care!!!! They took care of me from the time I walked through the doors! The secretary Melissa was very helpful with helping me with paper work and insurance information. The Nurse Ekaterim was so sweet to my little boy and Josh the Radiology tech was great with my son!!!! Doctor Hall was in to check on my son as soon as we came back and came back 3 more times to check on him!! I highly recommend them!!!!!!','2019-08-10 02:16:27.715000','2019-08-10 02:16:27.715000',5,'Danesia Moore','https://lh3.googleusercontent.com/-0Aj8YfqCbTc/AAAAAAAAAAI/AAAAAAAAAAA/kaE-z9i6SHw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BGZuRKHeO1iYrcf4B001kE2ZOZTg96tLR4NIr1aXHjCkTGDsdqrbpZ_JwnPE0fV9qx7KhsfQ6XqbLAxCt1p31hIV1vEYZuSIUOOwdhnFx9sO4pd7VI','Went for a covid test. Looked online for an appt and got one within 2 hours. Staff was friendly and doctor and nurse were very sweet and empathetic about the test and how uncomfortable it was. I received results about 20 minutes after swabbing.\n\nOnly thing is that it was raining and I parked facing the street, where water was pooling. Not the hospital\'s fault but may help others.','2020-07-22 16:22:56.822000','2020-07-22 16:22:56.822000',5,'Christina Batts','https://lh3.googleusercontent.com/a-/AOh14GgJDmTH_Uoc7mc49lVZbCITHf79zD4VD5QS9Ndu7A=c0x00000000-cc-rp-ba2','3511292162159714121',22157),('AIe9_BGZuRKHeO1iYrcf4B001kE2ZRzWI4oYifgkYQDY6OOW11BlPtPT0dzF7XB7-Uj57T06I3NuqLSJ-y8IALCbd606QGhDGiMBB-k1gVwmt8RkirZqgaA','Dr. Akunyili and Nurse Marcie were great\nThey explained everything to me from beginning to end\nThe whole experience from Check in To checkout was awesome\nAll drs, rns and staff at signature care should be like them \nThank you for making me feel so much better','2020-01-14 05:06:49.109000','2020-01-14 05:06:49.109000',5,'Erikuh Muhree','https://lh3.googleusercontent.com/--5oW8hQGTz4/AAAAAAAAAAI/AAAAAAAAAAA/QjUpFSgjBTc/c-rp-mo-br100/photo.jpg','12541597562633926366',9663),('AIe9_BH-PZCNGatIuVf9MEYiysTx-9US7fbD7gaZZsCBaJsWRsSkOMI54Y-a4NtvdGv_Sp-_qv83aK-No1mhYHKd2E9hmeZsSnuBGBe_3gsIuuKsSiXy7U0',NULL,'2019-01-28 20:21:42.539000','2019-01-28 20:21:42.539000',5,'Laura H. Bautista','https://lh4.googleusercontent.com/-_eHCrE07y78/AAAAAAAAAAI/AAAAAAAAAAA/TcIoK_1zl9g/c-rp-mo-br100/photo.jpg','13486358490203335051',1083),('AIe9_BH-PZCNGatIuVf9MEYiysTx2plhmQo72kS9AqvQJHFb-pX_vDoKkGAQOt8hIkP5vjJyblEyIxwIxvzAlSCYLvyLnkKBYJg3zO_N89lFxTFrnlBnMu0','Awesome service from beginning to end. I\'m 13 weeks pregnant came in bleeding the staff proceeded with such urgency. They were able to reassure me I was ok. Nikki is so awesome and sweet she\'s the nurse who attended to me. She helped alleviate my anxiety. Ruby the ultrasound sound tech was extremely interactive in the ultrasound and gave me a reason to be excited. Dr. Nguyen made sure I understood everything that was going on and gave me awesome advice going forward. I\'ll be forever grateful for this awesome team.','2019-05-08 04:44:08.605000','2019-05-08 04:44:08.605000',5,'tori tan','https://lh4.googleusercontent.com/-I-ytCVTT7as/AAAAAAAAAAI/AAAAAAAAAAA/Wzt97fqvLJw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-PZCNGatIuVf9MEYiysTx3uK6EOPQHDAP8-I5Eo0Mflr4d6M-8mhW7JbVKrS8J4B-J0xp1h5yw6IYltoboxoKX9cPmR_L_x8R8fcxkxE8Q2NyQWU','I LOVE this place!!!! Always fast, efficient, professional and friendly from the front to back. Very concerned staff and doctors!. I even stayed overnight once for observation and received the best care! I highly recommend this place! And for anyone complaining about price. FYI: This is an EMERGENCY room not your PCP provider.','2016-03-21 16:24:29.702000','2016-03-21 16:24:29.702000',5,'D S','https://lh5.googleusercontent.com/-Bm_Ay-8m3JI/AAAAAAAAAAI/AAAAAAAAAAA/SxDiWR_9YuY/c-rp-mo-br100/photo.jpg','17898197009688164559',5946),('AIe9_BH-PZCNGatIuVf9MEYiysTx5Hms-9ItcL1VWLR5nlT4cTcYx6uB7emuFk2GfeTbl2XiAiY16ZZfUaNgqQR3-thWzWumg_P87-elpNbvTglxrKMuzS8',NULL,'2020-07-22 02:36:07.373000','2020-07-22 02:36:07.373000',5,'Adriana Ayala','https://lh3.googleusercontent.com/a-/AOh14GhnEgntlw-32vXvdOZRM0vPXxvNNAvg3cZY8_U=c0x00000000-cc-rp','12541597562633926366',21802),('AIe9_BH-PZCNGatIuVf9MEYiysTx6tOlmQAevcslenJngGkhfvpNMDTm1yhmn3nhtkJFwYCXhWLkUjDtS2jh4vRzZ7I3U4rWjg06mWurscwV-FaJJQDdY8E','There aren’t enough positive adjectives to describe my experience with Signature Care. I have never had a positive experience with an emergency room and I avoid them at all cost. Signature Care was the exact opposite experience. All of the personnel made us feel so welcomed and not like I was wasting their time. They kept us informed, even when there wasn’t anything new. Their attention to detail was amazing. I felt like they took me seriously, that is something I cannot over value. \nIf ever I have a need to emergency care again, I will not hesitate to use Signature Care.','2019-01-07 05:20:48.737000','2019-01-07 05:20:48.737000',5,'Lauren Hill','https://lh3.googleusercontent.com/-TZDwKpe3PsE/AAAAAAAAAAI/AAAAAAAAAAA/ALOWqVoQRH0/c-rp-mo-br100/photo.jpg','3272657195432704501',7065),('AIe9_BH-PZCNGatIuVf9MEYiysTx7nl3VQCAhYWj_nGNcafyL1p_9IIOf8Hns7yA6CERh2fKPRurBwgc8SfRDLoqH6dBoqRA_zythGbTOeZDWpVpUWBAvHk','From the receptionist to the nurses and doctors, they all wanna make sure that I was comfortable and without pain.\nThe service was really good, I spent a night over there and I thank y\'all for the attention and care. They run all the tests without hesitation to find the diagnostic to my pain.\n','2017-08-26 20:46:23.398000','2017-08-26 20:46:23.398000',5,'Geisa Picolo','https://lh3.googleusercontent.com/-KVIGNDc1dQU/AAAAAAAAAAI/AAAAAAAAAAA/RK9PENt42eY/c-rp-mo-br100/photo.jpg','8918455867446117794',9365),('AIe9_BH-PZCNGatIuVf9MEYiysTx8btKpVTNFPGs8UoMszk7Qaq6TynsRRiiyyMdsn6i2RY2AyvHzOhWm0tsTVztm9r8yF4R4RavDzI4v2wJ6Q-cGErEcaQ','They took a scary experience and made it easy. I would recommend it to anyone. Brenda was helpful and kind.','2020-08-08 14:22:38.321000','2020-08-08 14:22:38.321000',5,'Corban Carroll','https://lh5.googleusercontent.com/-lf5mdB-i6bQ/AAAAAAAAAAI/AAAAAAAAAAA/OO7ZdPUsqHE/c-rp-mo-br100/photo.jpg','2077061009497551125',22722),('AIe9_BH-PZCNGatIuVf9MEYiysTx8sEn9FYdb7mt8vG5tPdSu3y5ufeSQ3Xsp8Ru0cPkgsetVLO-zAiSxPWHn1SlxVAgUrBWphukoxHS12OOY9o1w4WVUsQ','Dr. Iheme\nAmy-Registration\njani- RN\nTricia - Rad tech \nSean - ER tech\nAll great staff','2019-07-19 22:54:41.227000','2019-07-19 22:54:41.227000',5,'maria infante','https://lh6.googleusercontent.com/-8jXATVjtbkM/AAAAAAAAAAI/AAAAAAAAAAA/EEU0Qse1dnY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-PZCNGatIuVf9MEYiysTx9iuqBn4cEVx-BM24dkJL69jL9KsMbymn4DNAkO9-M4mUpXhP79zOyDfa4JT3mzkl3VzmYUzmqDWU9-OcbTc30tg8has',NULL,'2019-09-06 03:55:39.164000','2019-09-06 03:55:39.164000',5,'Wade Decker','https://lh5.googleusercontent.com/-2h-c84XkhPU/AAAAAAAAAAI/AAAAAAAAAAA/fzhhTGVI_5E/c-rp-mo-br100/photo.jpg','8626688543755174284',14679),('AIe9_BH-PZCNGatIuVf9MEYiysTxAh5Kupm8Sm76i85YAkcgOkhi9GtAKRhgDRI9dAvJvNDMYFKMaw2ROLFfTdx-LXH2fx5n_qzzFi3xQHHY2AM8gL4rBkA','Definitely recommend. Great staff, fast service and very thorough. As long as they are open I\'ll never go anywhere else.','2017-07-21 23:28:14.847000','2017-07-21 23:28:14.847000',5,'shelton stewart','https://lh4.googleusercontent.com/-eX2Uuv9lsbA/AAAAAAAAAAI/AAAAAAAAAAA/zvPxRkiGx7k/c-rp-mo-br100/photo.jpg','3272657195432704501',7107),('AIe9_BH-PZCNGatIuVf9MEYiysTxal4DQQY7u0rIWZ2thefA_l8-uEwUx7FLiojzuPxQGgRSvKyRiWLKPYxMZpsMzJu29uGmjBS86npOngIz2CAGRekcPd8','Tech Norma is awesome! Nurse Hamzah and Dr. Sylvester were great at communicating and covered all their bases.','2018-12-29 15:51:05.230000','2018-12-29 15:51:05.230000',5,'Ashlyn Sterling','https://lh5.googleusercontent.com/-FRIA_-qiEVI/AAAAAAAAAAI/AAAAAAAAAAA/knSgykFAOGg/c-rp-mo-br100/photo.jpg','3511292162159714121',7538),('AIe9_BH-PZCNGatIuVf9MEYiysTxbfAfDx7Q4YHE86AglpL9ZlAQGXb4yXLzpvgXDtxO0qyECLWMXW59-KjicCdsM7DGD6vcQ-13k3A1DDaYkZZir2do0S0','Great place to go if you need to see a doctor without waiting all day. Ashley got us in and out quickly.','2019-02-16 04:15:39.116000','2019-02-16 04:15:39.116000',5,'Roger Goza','https://lh3.googleusercontent.com/-M9X_fOKVtfg/AAAAAAAAAAI/AAAAAAAAAAA/XrXOaPIXBt8/c-rp-mo-br100/photo.jpg','8626688543755174284',8565),('AIe9_BH-PZCNGatIuVf9MEYiysTxBWXN4HpzHGfpbruSS8IGlz-Uo_dtlxKKSCqe4qthF-h1SVaHhiy2Rt_JvTCsprzSakXKrr1d1UOx9gm6f3g3YH_kWxk','The team was amazingly helpful! Dr. Appiah addressed the problem and made me feel at ease.','2019-10-16 05:02:34.128000','2019-10-16 05:02:34.128000',5,'Alejandra Banuelos','https://lh6.googleusercontent.com/-kDGF8_zNbA0/AAAAAAAAAAI/AAAAAAAAAAA/c2vvWzpiFx4/c-rp-mo-br100/photo.jpg','17898197009688164559',5501),('AIe9_BH-PZCNGatIuVf9MEYiysTxdLPVdAghGTLmPn6gcMru_v1p960-zi0DJ9NHP-bC8c9GfqlMwBq0LTnS3-KkoQPaShuGU91xZzslL3Ke3FsINUEltpk','They were all friendly and informative. Not a long wait.','2019-08-07 01:28:18.757000','2019-08-07 01:28:18.757000',4,'Melissa Gaston','https://lh4.googleusercontent.com/-bMZdSCm5hJA/AAAAAAAAAAI/AAAAAAAAAAA/EKgi12_TDQE/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',866),('AIe9_BH-PZCNGatIuVf9MEYiysTxECc8H99ApXIAjWbsoGJNTw3hawaU2HV3-4irFgBnOGaqbYfcrrsUdVVlHkDlThGbdW1BeRSKeal09bIqEnU-D--vA-U','Dr Smith Cynthia Aaron and Jessica were great','2020-01-30 18:22:45.720000','2020-01-30 18:22:45.720000',5,'Sheandrea Eaton','https://lh5.googleusercontent.com/-sKT6or9SXNo/AAAAAAAAAAI/AAAAAAAAAAA/PHagtDJeEAA/c-rp-mo-br100/photo.jpg','14904078213800803294',13615),('AIe9_BH-PZCNGatIuVf9MEYiysTxFOjzaUBRfuBE2OQh8MQzYk-afqZRyMAQH4u4irFfjPEfIwO1I5bZzqVFZ21oA43heJweChJdewPRsHK7KLVGiIms0eI','Awesome!!! Clean!! Everyone was nice, welcoming, concerned and made sure I was comfortable. I was done within the hour. I’ve gone twice and have had the same exact experience. They also have snacks and beverages for when you’re waiting!! Dr. Chen and the staff are awesome.','2018-03-04 14:59:51.094000','2018-03-04 14:59:51.094000',5,'Andrea Reed','https://lh4.googleusercontent.com/-SZajSKbbq4k/AAAAAAAAAAI/AAAAAAAAAAA/KTPWCXQTD8o/c-rp-mo-br100/photo.jpg','14567670160750071148',1649),('AIe9_BH-PZCNGatIuVf9MEYiysTxgqUD2Z_K8zz59ZVsIy152yKIIbFPlvweUQdvsnOMF4xUiITtEfS3P2u_xoi80kvl8ylhgm6F5SBSTtuGQzTlXjcm7GE','Nurse Alvean, receptionist Jocelyn and Dr Do are amazing!! This was my first visit and everyone worked hard to make me comfortable. They were knowledgeable and explained everything. \n\nThanks!','2020-01-11 17:06:16.535000','2020-01-11 17:06:16.535000',5,'Errolynn Zetar','https://lh4.googleusercontent.com/-de53bSow6so/AAAAAAAAAAI/AAAAAAAAAAA/qDkOzA91DbM/c-rp-mo-br100/photo.jpg','16389487648212004696',9486),('AIe9_BH-PZCNGatIuVf9MEYiysTxGxTuxKRLCSw55R9CwyS94D7hMy0LJJ6cJxuZwQ38p1lTPC8owYpwjDg01_rdAYSZh3Nu5I16xnhi1yn8KK_QINzJbrE',NULL,'2020-07-17 02:51:51.672000','2020-07-17 02:51:51.672000',4,'mavis hinson','https://lh5.googleusercontent.com/-WDWr-uZe9m0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnRiH5pilzE1aUzl2iIG7-N-hXoTA/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21963),('AIe9_BH-PZCNGatIuVf9MEYiysTxMGL8asXs7n0lrvxPBJ417E5i2BrnjLk2tD1q_o7TPdE4FDiWJS9Up8l7j1OsBrIA-01gG7lvz7rFuilKOYrgghHYqR8','I absolutely love this place. Every time I come here its so quick and simple. I just left there yesterday with daughter having to spend the whole day there. Omg her Rm had cold drinks a Apple ipad free to use and access to lots of snacks. I can\'t tell you how impressed I was for them to have all these things and for a 9 year old that was perfect. Everyone is sooooo pleasant and gentle. I wish this was our regular Dr. I\'ve already asked one of the Drs if he had a practice lol. Luv this place!!!!!👍👍','2016-06-08 10:49:56.804000','2016-06-08 10:49:56.804000',5,'cibabie22','https://lh3.googleusercontent.com/-Eg-zSTqFpnE/AAAAAAAAAAI/AAAAAAAAAAA/yHtkCxgjsAg/c-rp-mo-br100/photo.jpg','17394740196501090048',5239),('AIe9_BH-PZCNGatIuVf9MEYiysTxnc6rNISHHaxYe7AshvyWRrce-FtFg0ttb-UqsMpjpAFJzRKtVLj4Oddz6-P8vV0sLdh3EAu3SNvnGA1-6Lq-cUbEkDg','Dr. Morrical, and his team Irvin, Laura, Lisa and Maryann were great. Fast and friendly service. 100% recommended.','2019-09-15 03:31:02.233000','2019-09-15 03:31:02.233000',5,'Igone Garayo','https://lh3.googleusercontent.com/-NdjC2R_OHUI/AAAAAAAAAAI/AAAAAAAAAAA/G3fidjSvlyo/c-rp-mo-br100/photo.jpg','12541597562633926366',422),('AIe9_BH-PZCNGatIuVf9MEYiysTxpUiAQ7mlHwLu0zput3DHuVwJ2usI_DxrJGUb7wg3nfK4othdKzcP7h5qbBlfUzzKRkWnAKatN1TKfupwzBAgNDphMsw',NULL,'2019-01-28 04:25:39.274000','2019-01-28 04:25:39.274000',5,'ERIC IZQUIERDO','https://lh3.googleusercontent.com/-28_atCIUx60/AAAAAAAAAAI/AAAAAAAAAAA/ZJhNCQNRrPw/c-rp-mo-br100/photo.jpg','17898197009688164559',5873),('AIe9_BH-PZCNGatIuVf9MEYiysTxQkJHjSa6MqxTuDvnohr1aCWgWyI0fYSp9rZ8hPaTnnNS_dLlXLJNuFcLYbZ2-q_d1fY1xhJsxk8GgbfZAzyU6paTySM','Lorena T and Amanda C were so kind and made me feel so comfortable and welcomed! Jeri, Tori, Lindsey and Rachel, along with Dr. Vakey made the whole experience as easy as possible on me!','2020-08-16 20:13:03.205000','2020-08-16 20:13:03.205000',5,'Anya Ittiruck','https://lh3.googleusercontent.com/-EgZnkRnly7c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn3-fjsxcwC8P0iowloG2i_ju011g/c0x00000000-cc-rp/photo.jpg','16590124370714063921',23049),('AIe9_BH-PZCNGatIuVf9MEYiysTxQokhWR6bkvKDb99FE6QCRfk9F-x39S7UHKjrOG01JHG9JfccPf7QkbPGPUiGkOU7MhtD1J5-VT4IpZ20cHcneOEQ1fQ','Kim ,lucas,sherri,carpenter there were all awesome best place u can go to get seen excellent staff','2019-02-28 21:37:45.284000','2019-02-28 21:37:45.284000',5,'King Jonathan','https://lh4.googleusercontent.com/-A1Z3Jk6xBeQ/AAAAAAAAAAI/AAAAAAAAAAA/fUdn-NH_p3w/c-rp-mo-br100/photo.jpg','3272657195432704501',7001),('AIe9_BH-PZCNGatIuVf9MEYiysTxsw87VCIFMnFWi4vPz8NS_NS8zMpeo8leGOX-O_HL09sImBilgU7jhvZibAdczoW_CTR7cV_k_1k9lLz8wWV9csRgc4o','Great experience. Mack, Pete, Tabitha, & Nancy were awesome!!','2018-12-17 18:11:25.495000','2018-12-17 18:11:25.495000',5,'Brooke Fierro','https://lh6.googleusercontent.com/-DEmzM7prEs4/AAAAAAAAAAI/AAAAAAAAAAA/pz0Txi4VCPQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8333),('AIe9_BH-PZCNGatIuVf9MEYiysTxsz27iVFit5YPli9rGp-aGZLeF1x-dipMkksX0junGgeHcVsU4T1TQArX6ns_ahgq4Zq1ObMPzSiQji0enUX7fHAehz4','Absolutely the best. From start to transfer, myself and my child felt totally welcome, totally cared for and safe. The staff, from the Moment we were greeted at the front desk, all the way through the whole experience, were genuine, patient and encouraging to my child. Giving lots of praise for taking nasty meds, being brave during needle sticks, thanking my child for trusting them, and making sure to keep me informed of everything going on, patiently answering questions and taking care of all necessary transfer arrangements. \nIf I ever need an ER service again, I will DEFINITELY go there!','2017-02-22 13:46:13.015000','2017-02-22 13:46:13.015000',5,'Snow & Ice','https://lh5.googleusercontent.com/-1_OLI6KSIBg/AAAAAAAAAAI/AAAAAAAAAAA/lG0vhRTs7gc/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',5106),('AIe9_BH-PZCNGatIuVf9MEYiysTxt5ISgTRoTb34CnwSqeim-5UpCgDYYjLvD6u0ZKEHCvsTkfTkIGTojL_PqmIb88bWWmZ8uWGz4kbXenyK42OPXnT-3Ds','Kendra (front desk) was EXTREMELY helpful when I visited. Not only could I not talk because I was sick but my insurance wasn’t also extremely confusing... Kendra was extremely patient and kind towards me while I tried to figure it all out and helped me figure out the insurance stuff as well. She’s the best!','2019-11-11 17:42:52.279000','2019-11-11 17:42:52.279000',5,'Anne Goetz','https://lh3.googleusercontent.com/-zjheEzlJijo/AAAAAAAAAAI/AAAAAAAAAAA/IwB1MG2Apdk/c-rp-mo-br100/photo.jpg','16590124370714063921',3091),('AIe9_BH-PZCNGatIuVf9MEYiysTxuffXYgW3D74jL-qch12jjzbFI2t7RxX3GsUgdf2lr9RKK1WSAyaleuGlvf8hbXWWA0IU158MizbRjNoQ_aoYeWZYFXw','Can’t say enough good things about this place! Everyone has been so nice every time I’ve been here. It is always so clean and when I brought my daughter they gave her snacks and a drink. Today we were helped by Theresa B, RN Eliza, tech,Plante,MD, Lisa P, registration....Thanks to all of you~Stacy Blake','2020-02-22 23:53:49.219000','2020-02-22 23:53:49.219000',5,'Mallorie Armendariz','https://lh4.googleusercontent.com/-Poo1FYeU8T8/AAAAAAAAAAI/AAAAAAAAAAA/ZFsxtQRbdXA/c-rp-mo-br100/photo.jpg','6521947413723274945',14561),('AIe9_BH-PZCNGatIuVf9MEYiysTxuzzkpbzR8ysAYMe6ulmxAXrKoJUYC0EirH_aYhZ2yGbuHeETmpaxxyGpbMnsGc3fc6ytk6ZM1Fho82diWMJGiyUlqVI',NULL,'2017-05-01 23:21:30.207000','2017-05-01 23:21:30.207000',5,'Danah Ramadan','https://lh6.googleusercontent.com/-WojS2AxFQto/AAAAAAAAAAI/AAAAAAAAAAA/12Uoxe-Cwm8/c-rp-mo-br100/photo.jpg','3511292162159714121',7826),('AIe9_BH-PZCNGatIuVf9MEYiysTxvYIsN_9dGNNXxuKp6J3pqsQC8aYOlz1Pb8in_ihLsoI6DpX6qkelPPGjknt-4lIiHDA4NmLMvzc6g809X-XqblvFTqQ',NULL,'2020-07-19 01:39:44.997000','2020-07-19 01:39:44.997000',5,'Raul Nieto','https://lh4.googleusercontent.com/-FMRDGaQqnwY/AAAAAAAAAAI/AAAAAAAAAAA/Q5YBy4wAiAA/c-rp-mo-ba4-br100/photo.jpg','2077061009497551125',22858),('AIe9_BH-PZCNGatIuVf9MEYiysTxW6fx6wQ1eBsnPqYORgXjNqTKxmQFiNKHqtSl4Q_wby6NGu0nIfzeol1updsPxId_OocQp5yKW2rweENILLTWNl18rkg','Very friendly and helpful staff. The facility was also very clear and professional looking. Came in not being able to hear out my ear, but left hearing perfectly. Thank to Dr. edozie j akunyili','2018-02-27 02:31:29.102000','2018-02-27 02:31:29.102000',5,'Richard Johnson','https://lh3.googleusercontent.com/-27wBNehgjpY/AAAAAAAAAAI/AAAAAAAAAAA/1zMqCqJEfcA/c-rp-mo-br100/photo.jpg','3511292162159714121',7722),('AIe9_BH-PZCNGatIuVf9MEYiysTxx8ZDGBWAWPBvDHIySEzf5fHJqghV_IBzZeOMKAJTIL-BL47ZTX-Rz1HNZHbVvu-ODW90uuFKpZ3oeyB3uAOgTKOxuU8',NULL,'2017-04-23 18:23:22.218000','2017-04-23 18:23:22.218000',5,'Cesar Gonzalez','https://lh3.googleusercontent.com/-7nGqR_9iGpw/AAAAAAAAAAI/AAAAAAAAAAA/BV4XeEIBBxU/c-rp-mo-br100/photo.jpg','14904078213800803294',2364),('AIe9_BH-PZCNGatIuVf9MEYiysTxxjI6K46NlLfAm5dpIbsR_W5Qryj6cQCpbuwuknb2VkUfMDvvG38zha4p2lQi8EpUMtlwXTiW2w1zmoBxLFnuMTbzDSA','Really clean and neat. Great with our support dog and really sweet in general.','2020-01-16 18:35:03.240000','2020-01-16 18:35:03.240000',5,'Justin Wasson','https://lh6.googleusercontent.com/-q-NghPpYJW0/AAAAAAAAAAI/AAAAAAAAAAA/r5kSFSPLDeM/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',9810),('AIe9_BH-PZCNGatIuVf9MEYiysTxXLbwLwm4LP002oKojhcgGNsGaM7snRXv6iifea-roGbsfpYTFPVMyT2JXwvlzU5oqH9-_7uoRGWnBQK6ukH8QwvDx-8',NULL,'2019-05-12 21:07:34.322000','2019-05-12 21:07:34.322000',5,'Leonor Loredo','https://lh6.googleusercontent.com/-Xup_u-Ay8X0/AAAAAAAAAAI/AAAAAAAAAAA/MOu3GhgrP8c/c-rp-mo-br100/photo.jpg','16590124370714063921',3388),('AIe9_BH-PZCNGatIuVf9MEYiysTxyHQOS9jrjz_NQXRp8DhOdPOzKpajwDoeag1PIkQRH1xKMy8p5RQ5gjHoC1mZDGu3qD9c6ymvFCa5k0ehBjc8Z4DCXsk','The front nurse Lorena was friendly and bilingual, the other nurses brad and jr were great and the Dr Harjai was friendly overall best ER in town fast and efficient would recommend to anyone looking for great ER service.','2019-11-27 15:50:26.418000','2019-11-27 15:50:26.418000',5,'Yunior Torres','https://lh3.googleusercontent.com/-8XJHDtlEty4/AAAAAAAAAAI/AAAAAAAAAAA/9eYfqWXOIrU/c-rp-mo-br100/photo.jpg','16590124370714063921',3075),('AIe9_BH-PZCNGatIuVf9MEYiysTxZt810T_wmX5WdiFQC8yN4JLnVWmuxfpqSuAoC53B5QFayNjNHUM6k9tyUa-lB4mF02-gyFX3SMId_TZZDm-y59Oosr0','Tanishia was a great receptionist, the rest of the staff was just as friendly and hospitable! Expensive but with the visit for my child.','2020-02-19 02:35:23.068000','2020-02-19 02:35:23.068000',5,'enoc contreras','https://lh4.googleusercontent.com/-2tkPYMaKbjw/AAAAAAAAAAI/AAAAAAAAAAA/qyrGiav1XR4/c-rp-mo-br100/photo.jpg','17898197009688164559',14161),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_0geL-ei48JU2fWmEPPzuLyOh4Od6SV-4SUrWECg228EG7mBNgbK1zpoeEQzUtx5ElR6v394Gt1hcU6bnTYwHtUinuc','I am just so grateful for such great care and outstanding customer service i have received from all the staff here especially Karina, she was so empathetic of my situation and made me feel like everything would be ok since my family wasn’t allowed because of COVID, thank you all this was the best place i could have chosen for my care!','2020-08-05 23:44:32.929000','2020-08-05 23:44:32.929000',5,'Gabby Gabriella','https://lh3.googleusercontent.com/a-/AOh14Gjjlbz7zcu4qEgmrD-DR34U6zhT2gy28ztieAYs7w=c0x00000000-cc-rp','14904078213800803294',21922),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_AxzMASjV_rj8JzG77PPxGVYNDwhLwu7XtX5L_m7AGBiwG4EMTP6O9R8NeUlRXepH1uCsImZbeixy3tjYOX75PnDw-s','Was taken care of in a professional manner. Treat me and my health quickly and very kind, and the medical staff was really nice. I would be going back whenever I have an emergency.','2019-10-10 12:38:52.071000','2019-10-10 12:38:52.071000',5,'Joselyn Perez','https://lh5.googleusercontent.com/-Car2EceOA_s/AAAAAAAAAAI/AAAAAAAAAAA/wEboLkINpo4/c-rp-mo-br100/photo.jpg','12541597562633926366',403),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_bKcYgZJeMY1os_zeGCUlTQZuz9B6_5VTiOYWR-_sHneqtrCwZDFpXZDIXTSu9HxWQVEvvNF7JvyWRVnB_EfEdj5xvk','We were in and out super fast. Everyone was so kind and helpful. Kendra checked us in was great along with all the other staff.','2019-11-17 21:03:22.596000','2019-11-17 21:03:22.596000',5,'Sherri Wolff','https://lh6.googleusercontent.com/-i5NZZ5gBPJI/AAAAAAAAAAI/AAAAAAAAAAA/1lbIE8Lk02A/c-rp-mo-br100/photo.jpg','16590124370714063921',3087),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_E0Ne1-Bgxq2z3TG40Z3PpdWY2Vh8OViZLZ3pXgFB1mtUj65WscEn-OEi0dPx7MZxk3WDim6eYdySvmNZVzIRKN40dU','They were so accommodating and friendly. No wait time and such a kind compassionate staff','2018-12-31 16:54:42.317000','2018-12-31 16:54:42.317000',5,'Jimmie Thomas','https://lh4.googleusercontent.com/-f6GDUEIHHJg/AAAAAAAAAAI/AAAAAAAAAAA/MtWDKmNI3U0/c-rp-mo-br100/photo.jpg','14567670160750071148',1440),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_G2mYBTiu7xg-s_S-ALBBF3uVLw-_wlIO9BR8oABSE-_iD4DQBkL1Nm0PdDaIHA2XugqbKrkwMZXByWmfgRej-6JR8s','Rayven, Brad, Anthony, Becca and Dr Estevez were great! They all made sure I was comfortable the mintue I walked in. This is an amazing ER','2019-07-18 23:33:19.144000','2019-07-18 23:33:19.144000',5,'Larissa Mendoza','https://lh3.googleusercontent.com/-oflepzbh7Xo/AAAAAAAAAAI/AAAAAAAAAAA/rPlU2okJ45k/c-rp-mo-br100/photo.jpg','16590124370714063921',3288),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_o1z9kuJqI2BsSwVkx0rKJRljJXegQ0vEIMfG9ZTEONk8So7b_pgotWD4AP-j1lP2r2uh1HDi7O-qaHNWuyS_2VQspg','Excellent!','2017-08-07 15:48:39.554000','2017-08-07 15:48:39.554000',5,'Kelly Kiser','https://lh4.googleusercontent.com/-y2qc9E7dJU4/AAAAAAAAAAI/AAAAAAAAAAA/-5UtyU9A5J4/c-rp-mo-br100/photo.jpg','14567670160750071148',1778),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_VgD1Ku4aWqgnHC-NDWIhA3QQtGfiAIaU7m7om5GxT8fiIOvj7iy0R_dIDZvT6D0lGQQ-IhNwyx0ABuUL-aXoRg2rWw',NULL,'2020-07-19 14:41:22.401000','2020-07-19 14:41:22.401000',5,'Heather Cypert','https://lh4.googleusercontent.com/-pukxvrXheJM/AAAAAAAAAAI/AAAAAAAAAAA/7a4A2rjLgVI/c-rp-mo-br100/photo.jpg','14748677429039074158',21718),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_WPMIM-6hS7ButuN9M8OxIz5CkPyUgznKt19SyG4h1sDTaOL_DFGyxsuSo5QiXVu8wewbqxpjY1fLDNA6YVXeQGIE3E','Thank you Dr. Singla, Laura, Eve, Leslie, Gina, Kelsey. I hate IV’s but today didn’t hurt at all!!!! Y’all are wonderful 💚💚💚','2018-08-15 20:33:15.381000','2018-08-15 20:33:15.381000',5,'Katherine Makosa','https://lh5.googleusercontent.com/-CwGuaRMS38o/AAAAAAAAAAI/AAAAAAAAAAA/9pjmK1AXgms/c-rp-mo-br100/photo.jpg','3511292162159714121',7618),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2_Y4n-uvfj3mhkJ2a-VPyJKvglxUEa1Yv9ykYAMb1iz4fIGmemz6yx4EfYbuSm14PCGPzc4n1j6Fm6VQDIMH8v-PW2G0','Receptions Ashley was extremely helpful and friendly!','2018-12-08 02:46:47.894000','2018-12-08 02:46:47.894000',5,'Itayethzi Esquivel','https://lh6.googleusercontent.com/-myOyFdD2s-4/AAAAAAAAAAI/AAAAAAAAAAA/GFHH9owm8W0/c-rp-mo-br100/photo.jpg','17898197009688164559',5914),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2-hookCkB4MyvuUUzXqb-A0injRXFzkqN0r9vZx8B_OsKbNr-d_-03zvir2WvJL2tm6lHa-iPWFE6VODsXZTXogPD8cw','Terrible experience. We waited for almost 9 hours from arriving to receiving test results. It is deceiving for SignatureCare to keep advertising that they provide a rapid \"15 minutes\" testing when in reality people have to stand outside under the heat for 9 hours. They said that we could have registered online and in that way jump the line but when you check online there is no clear provision for that. Hanging around for 9 hours in a place with a very high probability of the Coronavirus is a perfect way of contracting the virus if you already don\'t have it when you got to the center. Also, the reception room is not monitored in order to maintain a certain number of people inside at any time, social distancing also is not practiced. The process is poorly managed ... this center will be your highest chance of exposure to the virus. I would have ranked this place 0/5 if there was an option for that. I think the government should monitor and regular some of these test centers.','2020-06-20 01:38:06.223000','2020-06-20 01:38:06.223000',1,'kenny okoli','https://lh6.googleusercontent.com/-6kMA9fdDumg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclYlnt5ffmiCqHr4DEN77NuY5nRsA/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21000),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2-q9yelD94CtNtf30wpnLKksLStMAln19YuCCJFhr6bN3Rb2b_YhJWH82pMz2hNNa-BEC97i5ylZI8MsJ88ESIDAqzqQ','The staff and doctor were fantastic! Taneisha and Dr. Do were so welcoming and made me feel safe after a horrible car accident. Dr. Do was warm, caring, and thorough, answering all my needs and ensuring I was prepared for what was to come. Taneisha was a smiling face both going in and out.','2019-12-18 05:44:49.399000','2019-12-18 05:44:49.399000',5,'dolores marie gonzalez','https://lh5.googleusercontent.com/-_KPyVk3HRbk/AAAAAAAAAAI/AAAAAAAAAAA/3uUAqrFfLgs/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5352),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG206_VH2RpdaZwH4NYDQHo1RhKrsfnGMJgr18mmd1KxCFn5TP-5YZbIxccklPAH6nwBC1RTdb3A9RxNkDDcCxHvXCiFrQ','Everyone on call was extremely helpful and very attentive. That gives any patient peace of mind. They were very thorough and I appreciate that more than they\'ll ever know. I sincerely thankful for them and what they did for me. It beats going to any hospital ER in the Houston area...seriously! Thank you all again :)','2017-10-25 15:30:54.916000','2017-10-25 15:30:54.916000',5,'J\'Boogie Harris','https://lh6.googleusercontent.com/-kl3oBgM7l_c/AAAAAAAAAAI/AAAAAAAAAAA/nSW7kYeuB2o/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',4943),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG20Fi6lF62QIypy1PrOjaCI1uJq72NE9frmY-mWxnaS_EBmqeQMJ_SmIFW-8jkVfaqewLSIMnp6xGF060Ev2yTlV3jK10','A Hospital ER will never see our face again! My partner had a very bad tooth ache, turned out to be an infected tooth. Dr. Grinblatas is AMAZING! I mean ALL the staff were great! The Patient Service Rep, was so friendly, got my partner in immediately. The two male nurses were friendly and extremely efficient. Dr.Grinblatas was so friendly, caring, and you could tell he absolutley loves his job, and cares for the well being of the patients! I wish he could be our PCP! Oh and he loves The Patriots! Extra Kudos for this Boston Bred Girl!!!! We have officially found our ONE N ONLY ER!!! A HUGE THANK YOU to ALL THE STAFF! You really have shown us what true Care for a Patient should look and feel alike! We are elated!!!!','2016-04-04 03:00:07.423000','2016-04-04 03:00:07.423000',5,'Lady Lioness','https://lh3.googleusercontent.com/-2FCYEJEsY34/AAAAAAAAAAI/AAAAAAAAAAA/a51ERqs5WKM/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',8019),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG20O8beHcbMHPCyAstrDZOLlOOdmzg7DNESIwC5DVCU3gNPQPHzaZFkjsMeZfpBYOcJNmYVqaj0u0WN4zvsOKebRw4J6E','One of the nicest, updated ER I’ve been too. The rooms are very colorful and doesn’t feel as depressing like most ER’s. The staff is very kind especially Allison. All though it did take a while waiting it’s a very good place!','2019-08-21 02:03:33.505000','2019-08-21 02:03:33.505000',4,'Katie Price','https://lh3.googleusercontent.com/-ztA4H0IUnqs/AAAAAAAAAAI/AAAAAAAAAAA/b5uDN1Vm3dM/c-rp-mo-br100/photo.jpg','6521947413723274945',8158),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG20p6O2ljs84EyY5FchY3rk3WJBDrUwQd3xtrfKmEVotK9BUW6GfuIC1vN18p_865spNeXv4skoSjXLjjy5XfDdLCFGOA','Great place to go for emergencies. Friendly and professional.','2017-12-01 12:13:00.628000','2017-12-01 12:13:00.628000',5,'S Taylor','https://lh3.googleusercontent.com/-1OVo8iUDxSM/AAAAAAAAAAI/AAAAAAAAAAA/lyflyoNNC00/c-rp-mo-br100/photo.jpg','17394740196501090048',4926),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG20TwbftU-1aAw6iFsZQ5Lw1wy7Mux7Y3CerwCMs1DKSQFLjDlTQ96MDUp1SJ-Jx0ioeR_vxEa2Nq1ii9I6ABgKky7SnE',NULL,'2016-06-02 07:04:17.332000','2016-06-02 07:04:17.332000',1,'LC','https://lh4.googleusercontent.com/-1bunRuS26cI/AAAAAAAAAAI/AAAAAAAAAAA/EcKewQQVU3g/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',1138),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG20VfgrUsUMuM5e5YTU27ae2L1qESOZbdmfweISoQer7NLy0IQ-PfqqhO7f6zfo_y_o_SWlF5_odDfNSr5TnH2N-buga8','Excellent service and excellent care.','2019-04-01 15:37:58.618000','2019-04-01 15:37:58.618000',5,'Gerald Hull','https://lh4.googleusercontent.com/-D8d69uuyLPM/AAAAAAAAAAI/AAAAAAAAAAA/pc1wjjWSuro/c-rp-mo-br100/photo.jpg','16590124370714063921',3468),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG20XhWRJ0GCOv_U_3e7h4v7TsnaCpjNFQJq5CGsXg-MKE1pmb-AYSKDZHMyOujL9p_TiN20Yh17nUOni863_eDySoqlWM','I am so glad I came here for my Covid Test. The staff did an amazing job considering the vast number of people coming in. Dr. Straface was kind and professional and put me at ease right away. Overall great experience under these difficult circumstances. I highly recommend them.','2020-07-06 00:58:59.050000','2020-07-06 00:58:59.050000',5,'Linda Runkles','https://lh5.googleusercontent.com/-Mft_F7Pgewk/AAAAAAAAAAI/AAAAAAAAAAA/GJRUUYxuJrY/c-rp-mo-br100/photo.jpg','14748677429039074158',21322),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG20ZLzvOWWxVkBVEbrrbTRxkwGr8TQA9M02EEiQE2x8EoDzdVt2xEctFOTAAfkotyGJk36IhAq1UukQeJInuyx6gDv4_g','I was very impressed with SignatureCare Emergency Center-Montrose I visited today. The minute I walked in, I was greeted by Leslie who was genuinely concerned for my care. I did not expect to see such a \"top notch\" facility when I was taken back into the center. I was under the care of Olivia, Jacqueline & Hamzah who were outstanding medical staff members. They were professional, compassionate, and focused to getting me to feel better. I attempted to go to a different ER facility that did not open until 8. It\'s reassuring to know that SignatureCare Emergency Centers are open 24 hours.','2018-07-14 15:51:35.290000','2018-07-14 15:51:35.290000',5,'Ralph Leal','https://lh6.googleusercontent.com/-TPVPo41UsNo/AAAAAAAAAAI/AAAAAAAAAAA/QDgBkmO34bg/c-rp-mo-br100/photo.jpg','3511292162159714121',7689),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG210efAWyGI_dYA4VvjQ5X3LjfdhZXew8yPI5Tmi6zUhab3AktVouckNO-Q22rascwHYkLL2C8OJbqYuWDClh4PDAoHbM','***EDIT & WARNING*** Unfortunately I have to now change my review. \nThis used to be my family’s most trusted place for emergency care. The staff and doctors were so kind and took wonderful care of us. Recently, I had two incidents that caused me to seek emergency care late at night for pain scale level 9-10 back injuries that required pain medication. Upon the second visit for the same injury (not that this is pertinent, but I was awaiting MRI results to present to my sports medicine doctor, who would refer me out to a pain mgmt doctor thereafter), Dr. Faig was on call and passive aggressively began to berate me for coming in, emphasizing that ERs do not do “chronic pain care.” Well, I am aware of that fact, considering I have seen two others in my life for my chronic neck pain. Unfortunately they won’t see you without MRI results which, again, I was getting THE NEXT MORNING. I was screaming out in pain and could not move, sit or even put my pants on without help. Emergency rooms are for just that - emergencies. If I would have been able to make it through the night without level 9-10 pain, I would have done so. Dr. Faig made me feel like a junky. I don’t drink alcohol, I don’t smoke cigarettes, and I certainly do not abuse pain medication. I understand we have an opiate problem in our country, but to shake down an already emotional patient who is hurting is despicable. When I asked what he recommended to do, he said, “well, you’ve been dealing with this injury; you tell me.” Honestly the most rude and impolite medical “care” I have ever received. To top it all off, he had SC send me a letter stating they were “alarmed” by the number of times I had come in for my injuries. I told all of this to my sports medicine doctor and he said, “you know what you should do with this letter?” And then he proceeded to crumple it up into a ball and tossed it into the trash. My pain is very real. The MRI showed degeneration in 3/5 vertebrae in my L spine as well as a bulge that sits on the nerve at L5/S1. My new (and competent) pain mgmt doctor told me today I’ll be doing epidural steroid injections and prescribed me some mild pain killers to assist me in the interim. They do a drug screen on every patient and guess what? No red flags. It’s such a shame that I have to leave this review because everyone in that building is wonderful, with the exception of Dr. Faig. I urge you to seek care elsewhere if he is on call so you do not experience the extreme emotional distress that he exacted on me that evening and later on with that letter. Absolutely disgusting.\n\nFollow up. I was called by Jordan, Memorial City Medical Director, who profusely apologized to me and was shocked at Dr. Faig’s behavior. He went so far as to tell me the letter would be revoked by the board and that Dr. Faig would be spoken with. Jordan, or Dr. Smith, had actually treated me for a pain related visit previously and he expressed that I was an intelligent woman and it was evident that I was not there for a mischievous reason. We spent an hour or so on the phone and he asked me to please not give up on them and to please keep referring people to them. He said to wait for a confirmation email from him to follow up about the letter and I said to myself, okay, if they are going to make it right, i should alter my review. Much to my dismay, a completely different Dr. Jordan Smith contacted me yesterday, saying Dr. Faig is very compassionate and gives the most excellent care and he’s “sorry I didn’t feel that way,” (sarcasm there) and that they were not going to revoke the letter. THE KICKER: He asked me to take down this review, which I found in extremely poor taste. Considering I could easily sue them for extreme emotional distress and defamation, one would think it best to not fan the flames. STAY AWAY! 💔','2018-04-06 22:02:41.650000','2018-04-06 22:02:41.650000',1,'Stephanie Tabbah','https://lh6.googleusercontent.com/-IFq61HGia0s/AAAAAAAAAAI/AAAAAAAAAAA/3PfUUDSFS8w/c-rp-mo-br100/photo.jpg','14904078213800803294',2267),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG215-PEA7kylSVcGeRMGO-7Rputri7n__OVyOVivtyCRuzuaNgu7wZjQvWskkaNn81qflQMq6zGbAqpNcMzfrVt_vXdyo','It took almost no time to get in, Okarys was super nice and made sure I (as well as my boyfriend) got taken back quickly. My nurse was Jeri and he was awesome, was very efficient and helpful, making himself available for anything I needed. The rad tech Stephanie was the sweetest ever and made me feel comfortable the whole time during my CT scan and EKG, always slipping in a funny joke to make me laugh. The doctor Mauldin was incredibly fast and thorough about explaining everything to me that was going on. Definitely a great ER to go to, will absolutely recommend to everybody I know!! :)','2020-02-27 04:36:04.499000','2020-02-27 04:36:04.499000',5,'Kyra Stafford','https://lh4.googleusercontent.com/-6Em8muXUC6M/AAAAAAAAAAI/AAAAAAAAAAA/P_CKbouxUdg/c-rp-mo-br100/photo.jpg','16590124370714063921',13824),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG21Ii5r5YU_m1n4iV3v02bkbXsSeNYInn05fHHroWkGE-yN4mLe24R0HG6yCnfqBrlZNRrk3sLg0Q1Fb22FjDXs7mS0BA','i had to wait an hour after my appointment time to get seen but it\'s cool bc the process itself was pretty fast. also, the doctor who gave me my results was so vibrant & beautiful i hope she has a great day.','2020-07-21 01:33:23.768000','2020-07-21 01:33:23.768000',4,'Mia Swanson','https://lh4.googleusercontent.com/-jnmTrX7_fh8/AAAAAAAAAAI/AAAAAAAAAAA/9bSdeIVIy-w/c-rp-mo-br100/photo.jpg','14748677429039074158',21656),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG21Rkf6b9w5Z_m5I5RBvz8gO6JGr6rxEZA_h1GHczHN5EhsAP5cfubwuzFe66BECzacDivOYogB8oAI1woaLaD_wXajVQ','SIGNATURE CARE was amazing. Coming from out of town we are glad they were here. As soon as we walked in, Jesus got us going in no time. The staff were very caring and made us feel so much better. Our nurse (Alvean) walked us through the process and explained all what was going on. Dr. Henderson was quick and very gentle with our baby and assured us everything was ok. Everything about the place were amazing.','2019-08-16 18:13:03.019000','2019-08-16 18:13:03.019000',5,'David Aguilar','https://lh6.googleusercontent.com/-MJZYBbV-mi4/AAAAAAAAAAI/AAAAAAAAAAA/0S_G9RWluls/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG21YYxv141Q4MJJz-Y_xkU5ZYDtlQgQwxhuHJ1wlvcYgNlTeb2HO2wBwNSiXi38h-FjXPPgn3pQL48E_jQlSQMDcWKPYE','Great care. Everyone there was kind and welcoming.\nThank you Dr Ashbrooks, Gunnar, Karen, Keo','2019-01-30 16:58:35.521000','2019-01-30 16:58:35.521000',5,'Sherri Campanini','https://lh6.googleusercontent.com/-akeHYM-MWnI/AAAAAAAAAAI/AAAAAAAAAAA/iZJ___odhj8/c-rp-mo-br100/photo.jpg','3272657195432704501',7035),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG22-IC0fzIDJKuHEcPFPDCJSeVPwyXM6CoQyges-vLrf4YWV7h5MCEzPlrntkagdWle-7H9gbJIH6m19POFQNUWANlouU','Dr. Vakey did a great job with my friends stitches in his hand. Super short wait as well. It’s really close to Campus and would be my first choice.','2019-04-23 20:33:09.852000','2019-04-23 20:33:09.852000',5,'Alex West','https://lh3.googleusercontent.com/-E7ymRTnjfbs/AAAAAAAAAAI/AAAAAAAAAAA/Fnqe2eQJdKY/c-rp-mo-br100/photo.jpg','16590124370714063921',3412),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG22AVDz9p6sdSD7-8OeZ0OKS0Nsx8WffGwl-O5o1MB3_C82gPDvy_kGIPj9yav3wAU9InPvxkvQEG2ZVJ2Q9kTZX5wAjU','Great service! My roommate cut her finger and she was helped in a very efficient way. Her visit was quick and smooth. Thank you Rebecca V, Amy Patel, Jeri, Gabe, Patrick and Stephanie for a great visit.','2020-02-22 06:27:07.417000','2020-02-22 06:27:07.417000',5,'Sonnie Acosta','https://lh6.googleusercontent.com/-ywSA-EW256g/AAAAAAAAAAI/AAAAAAAAAAA/-HSOPzpbmZg/c-rp-mo-br100/photo.jpg','16590124370714063921',13832),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG22NCqMRiqTwdcgKFkNLuQKWT7X3EJG3kyovUbgltVPTpT7pLYdGOH7Hb8x7iUU2dJ182KsB7Pe7jeOLCIIjlBq-_hbiY','This was absolutely the best experience i’ve had with any emergency room in Texas . They all were very hospitable. From being greeted by Miss . Erica to being helped and informed and taken care of by Mrs.Dana and Mr.Joseph. And my Dr. Grinblatas. They were the absolute best and I appreciate it more than anything .','2019-10-22 15:48:08.019000','2019-10-22 15:48:08.019000',5,'Camari Carl','https://lh6.googleusercontent.com/-tcCXi3DRIxk/AAAAAAAAAAI/AAAAAAAAAAA/Dbciu2rjpNE/c-rp-mo-br100/photo.jpg','14567670160750071148',1213),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG22Vf8l2BwIJ2ALbC3w9Vu6cQETsMuW53C7jUbjg8TkhXOzKXQ-ggEsF-P4S8sHnF1KdpmCNR7BTXgL2vLBh5Vx8ifJBA',NULL,'2020-07-24 16:21:10.099000','2020-07-24 16:21:10.099000',5,'Garland Banks','https://lh5.googleusercontent.com/-D0OavSk-zSU/AAAAAAAAAAI/AAAAAAAAAAA/VM0qoSy4T4M/c-rp-mo-br100/photo.jpg','2077061009497551125',22852),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG23-OxBpEXvOdO25bqitLKFiMUT3F75N6PFvsN23Azep7IbiodoIuROvXzchY6S7vRSRVkrJebunZHoTGUuGZOWYGF7Ho',NULL,'2020-02-23 04:51:39.951000','2020-02-23 04:51:39.951000',5,'Yadira Alvarado','https://lh4.googleusercontent.com/-NmFgwkGokcg/AAAAAAAAAAI/AAAAAAAAAAA/oOMZQ2VdHIM/c-rp-mo-br100/photo.jpg','17898197009688164559',14137),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2304dCjINzezyKRajRhRwNo97KHUbdu8TmzIgO86lqsxvzwtDUDgMMVtVKCY3c2b8qdWcjwD9wVZc1zPsOZfqhWKiIvA','We are treated promptly and with great respect! We feel listened to and cared for.','2020-02-27 11:39:56.508000','2020-02-27 11:39:56.508000',5,'Winter Ross','https://lh6.googleusercontent.com/-g8qvyEaWw3E/AAAAAAAAAAI/AAAAAAAAAAA/cC2TvmIrt8U/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',14326),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG237P1mtZvjyGk7BzM6snEAmOOM7mI9okmbZ1yDPAzQkiCHLW53Eii5Un25OExNSbc1fnxPFFffcnj0e-KNcc0zTJ9FDI',NULL,'2019-04-09 17:05:12.775000','2019-04-09 17:05:12.775000',1,'Jillian Fitzgearlds','https://lh5.googleusercontent.com/-okEjslJrpAY/AAAAAAAAAAI/AAAAAAAAAAA/TUZTFbr7W6k/c-rp-mo-br100/photo.jpg','6521947413723274945',8291),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG23bjmH_0pD6fKH1IRxuCFzlgIxQpRA4mqenv04a6yEXNz0gg0MsBNvycpF6-GZ6SBPIyqxqIlaP11eErnFac7M_gB2mU','Amazing staff and I was not waiting in waiting room all day to been seen. Would recommend this emergency center!','2019-10-23 18:43:56.712000','2019-10-23 18:43:56.712000',5,'daejenera morris','https://lh3.googleusercontent.com/-KpzxD3Iqfeo/AAAAAAAAAAI/AAAAAAAAAAA/DfHu-7vBnn8/c-rp-mo-br100/photo.jpg','2694018788013845459',6035),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG23Qah02BCOllOC4-mFpDjURZ-JpTTDNEvtIk4-0iq7xqjqjQhyZdl23_xEsIRVHg2OMjQEg9g65C_ctDoc7VTKL6qrco','Wait times were very short and the nurses and Doctors were very nice! Dr Das is very nice and helpful, I definitely recommend stopping by here','2020-08-10 14:55:50.652000','2020-08-10 14:55:50.652000',5,'Gloria Viurquez','https://lh3.googleusercontent.com/a-/AOh14GgbPd7jR2sQfqJOaOn70nQbE6r9QjyuOFDlf-lGdQ=c0x00000000-cc-rp','14748677429039074158',22499),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG23r_VS6XJPZM7rA2r36H5IwxKHkoHHG9KsQxVxh9fBSBdu3lJhVsMbfml6BuB_9X9AQUyz-MYG0lSsM4rhV9yEDC14Bg','Luisa, Andrea, Robert , Chris and Dr Daniels were great thank you','2019-12-14 08:11:40.024000','2019-12-14 08:11:40.024000',5,'Joe Valladres','https://lh5.googleusercontent.com/-NHzWvYlLWHE/AAAAAAAAAAI/AAAAAAAAAAA/MoAFVKJoAYE/c-rp-mo-br100/photo.jpg','16389487648212004696',2545),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG23rS0MHMWKMB8_fOUeOaFA-0OhuA68hDmlgVDPJ-O6jwoc4hLaNX2c_unPjFdME9XGuXj23tRZPJyk6godT4QDd_Wu7I',NULL,'2020-01-10 22:19:55.587000','2020-01-10 22:19:55.587000',5,'Alejandra Diaz','https://lh6.googleusercontent.com/-kbgX-S8I3AM/AAAAAAAAAAI/AAAAAAAAAAA/dK-q6Eo5WnQ/c-rp-mo-br100/photo.jpg','16590124370714063921',9497),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG23sgJ1AnteWeU6dxhCklPkFYLLJ1imHRKy9Hn4AGWsjvCxaDHnSXtWgM-W5df3XZnUJlM5QAGDflLqCvO99I56-CTpC8','Superior service. I felt comfortable and welcome from the time I walked throughout the entire visit...\nEvery person who assisted me did so with a great and caring attitude... this will always be my first choice for my emergency care needs for my family and I. Keep up the great work Dr Wang, Dana, Tricia B, Jordan N, and Patricia C!!!!!!!!!!! Signature Care','2019-11-15 21:57:06.107000','2019-11-15 21:57:06.107000',5,'Kiantraea Green','https://lh6.googleusercontent.com/-j46ElSf6V30/AAAAAAAAAAI/AAAAAAAAAAA/KoVbuE71iEc/c-rp-mo-br100/photo.jpg','16389487648212004696',2689),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG23tAFnPyT_6YZhp_ZgRFUZLOztjdhFZXMvHKC_A_VK47rT4yEBhJOIYMZrlNZimYsFV9HLxo8qNf1-Q8_iUboCZ38Kwc','7/2/19 - I went in for a SEVERE MIGRAINE that was causing so much PAIN. I was quickly brought back and triaged by Johnny-RN & the ER tech \" please forgive me I do not recall her name\" but both of them were WONDERFUL & KIND. Dr. Jordan Smith also quickly came in and just wanted to make me feel better and with-in 30 minutes after my IV fluids & IV medication I was feeling so much better and PAIN FREE - every time I have gone to Signature Care the ENTIRE STAFF always makes my kiddos as comfortable as they can and making sure they also get the warm blanket. Once Again THANK YOU SIGNATURE CARE-MEMORIAL CITY for your help. YOU ARE THE BEST','2019-07-03 17:39:17.597000','2019-07-03 17:39:17.597000',5,'Rita Aguillon','https://lh3.googleusercontent.com/-N3RNCnY3V1A/AAAAAAAAAAI/AAAAAAAAAAA/-lvtl5i2Wxo/c-rp-mo-br100/photo.jpg','14904078213800803294',2120),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24_Cl8CrTTP9F939_fMXlHYBLeq5iMNoANI3PtPXtsRKBbqGlfSOOGRDr0LygXiAK5iJ3sllUtkKkawJa1rTsTcKW6D8','Really happy I came here. Dr. Henderson is close and his team is great. Kristina is amazing with kids and made my shot bearable. Olivia and Nicole did great testing also.','2019-12-14 22:51:59.250000','2019-12-14 22:51:59.250000',5,'Kemelya','https://lh4.googleusercontent.com/-hwh6HYBzZ_Y/AAAAAAAAAAI/AAAAAAAAAAA/yy4HddaIaQM/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',343),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24gO6FNzQqT1zuI9t15yGrrAqqlj-IDZKM4excrTmAwTmzeVRPH1Jq2bHW_4gL7G6YiHsiQKj7GKamysQkkoPaVrxy2A','The staff was professional and helpful. They have very strict guidelines, and I appreciate their work to keep people safe.','2020-07-06 16:35:35.798000','2020-07-06 16:35:35.798000',5,'Mark Ermis','https://lh3.googleusercontent.com/a-/AOh14Gg0RkopxX26JmLgC_ekAcGtJbzktDQz02b7yTgKRw=c0x00000000-cc-rp','16891069708558046635',21313),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24HfRd-mS44qONe75eyUdkJKOFEM4U27A9_yevzZupHGTy76jV_MCUXI0TzTgvcSI8PsPN33Cs55i6ZnNszxU5M7U_Og','Great experience! Went in for back pain. The nurse Lynn was wonderful, the x-ray tech Fatima explaned everything very well and the tech Daniel did great with my IV. The whole visit was amazing!','2019-09-30 04:34:53.135000','2019-09-30 04:34:53.135000',5,'Courtney Giglio','https://lh4.googleusercontent.com/-wzW9btRSqSU/AAAAAAAAAAI/AAAAAAAAAAA/8oe860QZApk/c-rp-mo-br100/photo.jpg','17898197009688164559',5531),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24Ka4q0iHH3NJ8EPhBcCFEKHmITkWc-2Ch9FJxyDxQEixVZSDbh975z6p7HHlxIeZBtLLXg7thMCYtFZItLtM7B_wFBY','Dr. ybarra, Stephanie, Rollie and Natalia were great!','2019-10-22 03:11:28.065000','2019-10-22 03:11:28.065000',5,'Todd Chaykosky','https://lh5.googleusercontent.com/-gRMrdbc9p8s/AAAAAAAAAAI/AAAAAAAAAAA/ZIK-X3t0TTs/c-rp-mo-br100/photo.jpg','8679688254631342173',8780),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24NPL9iwQsy9qAfu6ISVX8j6VbM8mdH7l57Wq_beUi1DwG4daw1C9N0evOggaXudp73UEJ_aOvqzfeWzNlf-ryrNYH4Q','Receptionist Honey , Nurse and Doctor were Awesome!! Great Customer Service!!','2017-02-05 02:12:51.989000','2017-02-05 02:12:51.989000',5,'Gail Bell','https://lh6.googleusercontent.com/-lohXsUILMLA/AAAAAAAAAAI/AAAAAAAAAAA/16kLcHwQS2g/c-rp-mo-br100/photo.jpg','17394740196501090048',5119),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24QYSa4fAPhu2YLu47-QpD8vDb_E5AZCRGJtmuBEgCI-I05N9cN1vp_YLMIA8jPi3XpDDukgAKCGUrkNqP0fmxtdjgoI','I had to bring my sister here after leaving her nail shop and stepping on a nail in the parking lot 😩. The staff, nurses and physician were incredibly nice, they made us feel comfortable and the process of care was super quick. I would highly recommend. Thanks SignatureCare','2018-08-10 01:11:23.940000','2018-08-10 01:11:23.940000',5,'Sheena Worsham','https://lh3.googleusercontent.com/-vraxpNIBdOM/AAAAAAAAAAI/AAAAAAAAAAA/Gj792uG6m8Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1570),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24uanyJVRyri_M8LwHGof3C23GqtmXFeZnrOm5Tq29CCgO3x90y5nZyFtJ3LINfG_1_ksHiqnhbl3-HG_aobU3qdVfcE','Hands down the best medical experience I have ever received. The staff actually listens to you and will go out of their way to make you feel better. The only complaint I had was the guy who initially took blood out had really rough/shaky hands which made the needle hurt more than it should. Overall fantastic experience.','2019-01-21 14:46:57.848000','2019-01-21 14:46:57.848000',5,'Alberto Guzman','https://lh6.googleusercontent.com/-MYz6t3Mv_UI/AAAAAAAAAAI/AAAAAAAAAAA/3BZz_9aybyQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4367),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24WDWeqLw6CgfkkuVK9ZZB4PqRh6jui7oySqELT_iXoMeqekEVmK0B5VUDfHx93i8Z9hg1sx4LMuEqqbsL1R1-xlEdxo','I loved the service here. The Doctor Dr. Miller was the absolute best doctor and most sweetest person I\'ve ever met. The nurse Meredith was very nice as well, Ms. Amy. Brandon, and John were all so sweet. God bless all of them. The world is full of ugly people and they all proved that the world can be beautiful. Thank you guys for your service.','2019-07-30 21:05:29.748000','2019-07-30 21:05:29.748000',5,'Jade Tatum','https://lh6.googleusercontent.com/-zSj7Pn1OewY/AAAAAAAAAAI/AAAAAAAAAAA/PdDCtFxS_GU/c-rp-mo-br100/photo.jpg','14567670160750071148',1264),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24WqU39kOWYIOuOO7rzT3_2RXhuo4fZiSlk5_Qlsp3PA57zfecBTYZLj5iZNuDvwX1i62j3Ik-OTS5KIlKCT97iEL-VE','Staff was friendly and got out pretty quick. No long waiting period. Would definitely recommend','2019-12-19 03:11:24.776000','2019-12-19 03:11:24.776000',5,'Tommy Joe Bueno','https://lh6.googleusercontent.com/-AKw7SjWPxPU/AAAAAAAAAAI/AAAAAAAAAAA/i44xUbujXEQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8046),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG24z5RUotY3H8FFLC8t-JS9w6MWEZZe4zTruydzCVZF_ptQvsyNDw6_D4R_hiAedgIc9rjFFTBGzjWNy5cnWlwCdKqIC0','No way of nicely saying this but this place is a scam go elsewhere for your covid testing \n\nNow waiting for the generic “sorry” response they seem to be posting on everyone’s review','2020-07-13 04:48:32.940000','2020-07-13 04:48:32.940000',1,'jonathan martinez','https://lh4.googleusercontent.com/-_f6tPY0zftM/AAAAAAAAAAI/AAAAAAAAAAA/UP-1buH_NG4/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',21762),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG25dEZKHILoxp-UjqrsoOSHdA2ntPrH3fsbB7MlFpafLGNvT3rgEqBg7InHzH2e9scojCycdTEVUhkgMLvTeXZOufPJYc','I had a great experience here. Filling out paperwork was quick and easy and I was seen by a doctor within the first 5-10 minutes of arriving. The building is very nice and clean and the staff was amazing!','2016-09-06 15:41:01.248000','2016-09-06 15:41:01.248000',5,'Nicole Shefchik','https://lh4.googleusercontent.com/-KhBs7C9Q1kE/AAAAAAAAAAI/AAAAAAAAAAA/S_GExZDcGFw/c-rp-mo-br100/photo.jpg','14567670160750071148',1976),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG25O_5egEC9zbhu3TklJloAtu-N6AfuIgIPBrRy---sEHiRiT29J_EddIHKYNJViq2R93xDH5GEnVhXsDmfvdVnbA8kGw','My experience was amazing fast and caring very clean and effecient','2020-03-02 00:39:12.351000','2020-03-02 00:39:12.351000',5,'Angela Woodley','https://lh5.googleusercontent.com/-h_TAdjnvuWc/AAAAAAAAAAI/AAAAAAAAAAA/Vroei1n1UjY/c-rp-mo-br100/photo.jpg','12541597562633926366',13322),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG25oez_eG3eNbfDXUwSMzJCfSY95YUfgYx6HnOm1MiMG6cQWYn96vOY3B6J1XnAzQJNbv-5ey5iKvcwXtEd1v4auU7vqU','The staff really cares about your well being. They treat you like a human being.','2019-01-05 00:00:58.285000','2019-01-05 00:00:58.285000',5,'Keyshawn Preston','https://lh6.googleusercontent.com/-6NXtpQJ7gR0/AAAAAAAAAAI/AAAAAAAAAAA/xvacHchY9pY/c-rp-mo-br100/photo.jpg','3511292162159714121',7523),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG25t9865NDpD-fvKVV90bDqjbfFxNBChKvT5SSa9gh7u8j1Z_rM-LWtn3c1T66uLYqiW3g8uDjie_Xi4-XfmPzHIFXQpo','Awesome people work at this location. They were thorough and caring throughout the process of finding out what was causing my son to be ill. Dr. Booster ordered various tests to get to the root of the problem. The registration sweetheart Jasmine welcomed us with a smile. This will always be my go to for an emergency!','2018-09-25 06:23:58.063000','2018-09-25 06:23:58.063000',5,'Staniecia Neal','https://lh5.googleusercontent.com/-FQlvGqdP91k/AAAAAAAAAAI/AAAAAAAAAAA/AvJ1u5iTLPg/c-rp-mo-br100/photo.jpg','14567670160750071148',1493),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26_En6qm_DzLSBv9_IsTpIRnFK3p_IApaJw4blJeLsnWiSlI0Y_x7plYaIpBfyG5gIQwdZgUlopQUt1MqpbWMi25BmSM','I had an amazing experience. As a RN for the past 6 years, I know good care when I see it. I was VERY impressed. Thank you, Signature Care!!','2018-07-21 01:26:56.014000','2018-07-21 01:26:56.014000',5,'Lauren M','https://lh5.googleusercontent.com/-3nIf3vOorHc/AAAAAAAAAAI/AAAAAAAAAAA/SgWfG6xF3kQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9255),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG263_fvjWz2rAml3nylndAJDoCdYgcKpfKkS1DiEryngiUIE2XD5FYCrO4yCzW4dk5ow2s6BgMe6A2ACG_kktA5Uxt410','Came in on 5.15.15 @ 12 noon after a fall and Melinda as well as the medical staff were very professional and caring. I had a great experience as they wrapped me up good and I do highly recommend this facility for any emergency care if you are in the area.','2015-05-15 18:23:29.512000','2015-05-15 18:23:29.512000',4,'Official Nkechi Uche','https://lh5.googleusercontent.com/-BSSia_Y1Gb0/AAAAAAAAAAI/AAAAAAAAAAA/dYr39brB84o/c-rp-mo-br100/photo.jpg','17394740196501090048',5299),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG267P6Ri6CgcEWd-BMRMPVnp6IOYgDX6GIMvS9Xv3-X_18yC19QVlrqb1bGcaCQKB_QLt44RcDgNnd9VRsYm_sSsnIy2E','No wait! They are very kind & they bring you warm blankets... I can\'t complain about the service I will totally go back in case of another emergency plus it\'s super close to my house.','2017-07-14 22:37:25.836000','2017-07-14 22:37:25.836000',5,'Perla Canales','https://lh4.googleusercontent.com/-eDUz5bLiRgY/AAAAAAAAAAI/AAAAAAAAAAA/Yl3UzZvIl1U/c-rp-mo-br100/photo.jpg','8918455867446117794',9379),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26ihjdNnVKK85_e9zsrFr9cxD3b2vAeIawTvm4lqVUftA826i0HoNWnw4y3kuk9uqGSL4M3zcpTx_Kc7rnsgZV4udwKQ','After being sick for about a month straight I finally came here and I had had best care given to me! Huge thank you to the tech Natalie, RN Anthony, and Dr. Werzanski.','2019-05-13 19:04:23.037000','2019-05-13 19:04:23.037000',5,'Lindsey Tandy','https://lh5.googleusercontent.com/-6xQv9zNdXqk/AAAAAAAAAAI/AAAAAAAAAAA/6O2px1GH8pU/c-rp-mo-br100/photo.jpg','16590124370714063921',3387),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26NjRbRjr2oJvimtHJsyfFAIFdROf-NIP55idge0EvR0LLmRbXj5EhyVTW4G9irQeJ44eEGcQDrnwoloe2YpusNu8pFs','I came here cause i thought i had pink eye and turns out that i had a cut in my eye. The staff was very nice great customer service skills. They are fast but very professional and make sure you get checked out and treated i would definitely recommend everyone to come here for emergency or non emergency.','2019-12-15 20:22:18.467000','2019-12-15 20:22:18.467000',5,'Nicole Turner','https://lh4.googleusercontent.com/-Eq-HakorkIk/AAAAAAAAAAI/AAAAAAAAAAA/Opf-UAD7Zlc/c-rp-mo-br100/photo.jpg','16590124370714063921',3021),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26PcPHjYbUh7aPEAU2tWGQRqL5o7ojGEUsVr8kqB9Kz6IicPeQ6UG6DvJ102V4sJPCndN9RidVBbWdntRreiyR8L1uQ0','Tech Sonle, Dr.Neweze, Blake, register Delicia are great I came on what felt like my death bed and they got me in very fast and helped with all my needs. They literally did anything I asked even giving me 4 blankets because I\'m that person that is always freezing in hospitals. Discharge was easy and quick as well. Would definitely pick this location again.','2019-12-12 17:18:50.430000','2019-12-12 17:18:50.430000',5,'Chelsea white','https://lh3.googleusercontent.com/-WiBF0sL5K2o/AAAAAAAAAAI/AAAAAAAAAAA/0R0kNj445IA/c-rp-mo-br100/photo.jpg','8679688254631342173',8694),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26PUGEXLbpfaM-_NgHjgT09c96hU8LBBbUTZ-2yMxd0W4tWD3oBd-LRK_nZAwhGXwAEtXHgILRmlARRm6BkF_mG3BAKc','i had a great experience! the doctor was so helpful and patient!','2020-07-19 17:24:02.650000','2020-07-19 17:24:02.650000',5,'Lilly Mack','https://lh6.googleusercontent.com/-vqj6W2U7e_0/AAAAAAAAAAI/AAAAAAAAAAA/Cx3UCT_-hqQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21711),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26Uyc9-8OKlr2deT3zWcAoNtLfqUQBLvcDzhWpTj4t1UKHNFdnk4dgiqkhm0_TzLXMEakoq4NH8ZMvqwgG4GAZHC7t0U','Very friendly and fast','2020-01-23 20:19:01.594000','2020-01-23 20:19:01.594000',5,'Paul Forsyth','https://lh3.googleusercontent.com/-CRnmQk_TJ3I/AAAAAAAAAAI/AAAAAAAAAAA/9DdEVODh0qo/c-rp-mo-br100/photo.jpg','3272657195432704501',10281),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG26x0tU5XbnryWODIHG_KXSCQcWGlsStbRuvaFbnF58EuNLfIiSzleqh79MnyEkgAof2RGKx4fFYE7EBC5His1NW8fXgg','Excellent service 👍','2019-03-27 19:00:55.532000','2019-03-27 19:00:55.532000',5,'Moe Money The Wave Surfer','https://lh6.googleusercontent.com/-OnYZ-dONFR8/AAAAAAAAAAI/AAAAAAAAAAA/LrWyyAZRXJk/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27b49Ax9WNnE2Jx15RRS221F84JUunjTIAuLKiMXy3ecqdtrReG45KfnAYNFJ-Vr7BrEJOd11G5YmRG_99m3YriTGwzo','We had a great experience here! All of the staff (Jennifer D, Kelsey, & Matt) were so friendly and helpful throughout my visit. They will definitely be our go to from now on!','2019-01-06 21:29:02.301000','2019-01-06 21:29:02.301000',5,'Hilary Mcneal','https://lh4.googleusercontent.com/-h3RXapYarl0/AAAAAAAAAAI/AAAAAAAAAAA/XjtJI305558/c-rp-mo-br100/photo.jpg','8626688543755174284',8602),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27DIiLnP7hNcuRWMf_CZLCdIIWlOjMDh0OpA22b4CcIiE6FdtKIH29lmp6sq3CUyCo-N0yk2U6kM58Ol8yCsjfz20c20','Signature Care Hwy 6 providesls the most professional and personable care. I joke on how I replaced my primary care provider, but this time I wish I could with Dr. Edwards. The staff was very helpful and polite. I want to thank Jesse, Jubril, Mercades, Wendolline, and Barbara for everything!!','2018-09-01 20:09:40.880000','2018-09-01 20:09:40.880000',5,'Leslie Scott','https://lh6.googleusercontent.com/-AR8qbJUzMNI/AAAAAAAAAAI/AAAAAAAAAAA/d5AYJTETICE/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4808),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27ERMTOzApIZqYrsPAldo9c5z9BO8kXtxFQ3PMDOGMhXtcEf4iAClalIEm4LX_vr_UcO0iu58uAotZXSn70t5dt6jkHU','This place is a life saver! I checked in with dizziness and they found out that I had had a Mini Stroke. The personnel there are some of the most caring and knowledgable medical stall I have encountered. Everyone seemed to care for my well being. Thank You all for a job well done.','2017-07-28 17:01:34.446000','2017-07-28 17:01:34.446000',5,'Jerry Persefield','https://lh3.googleusercontent.com/-oucPcnrRciQ/AAAAAAAAAAI/AAAAAAAAAAA/1nM-sxIO2u4/c-rp-mo-br100/photo.jpg','14567670160750071148',1784),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27F9_m3T_fSbJLSRq9Fv80sN6CTCbtUlMVzjrm1a9Zo0Pm1RcxhfHuOKua1DmRNuK-6P1T-Jq7i4akNFqY-CCVoAibDQ',NULL,'2019-08-19 13:33:02.654000','2019-08-19 13:33:02.654000',5,'Ashley Bostick','https://lh4.googleusercontent.com/-6XdxRNcrEGc/AAAAAAAAAAI/AAAAAAAAAAA/UR5zfV5caIo/c-rp-mo-br100/photo.jpg','16590124370714063921',3250),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27hWwZIkOwBDqNLCq61Vz8qLPXsQ0n6cxt5FoYXj-TZFFqwx_yNxRCtwtZPU63cUfRZPOvgJiYB2JTJZrNgVa3go4L5s','Do not go here for Covid testing!!!!','2020-06-22 03:37:54.771000','2020-06-22 03:37:54.771000',1,'Shelby Rogers','https://lh5.googleusercontent.com/--YRZQSsP5tY/AAAAAAAAAAI/AAAAAAAAAAA/kTZ_yyOk54Q/c-rp-mo-br100/photo.jpg','14748677429039074158',20959),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27NapfUxbuVlb7jJFxxdp--V7qyaLjcALlBBivuHEuhENQCAgRIbizBWjB_kkl6yEmQ5UodNx8BHXCljGwFytgcZ79Kg','Everyone did a great job keeping me relaxed while they worked on my finger. Irving, Holley and Lisa were very helpful and let my mind off the pain! Highly recommend.','2019-09-29 02:53:47.926000','2019-09-29 02:53:47.926000',5,'Amanda Norris','https://lh4.googleusercontent.com/-dzpq2U5dBbA/AAAAAAAAAAI/AAAAAAAAAAA/H3ocSQ09olk/c-rp-mo-br100/photo.jpg','12541597562633926366',409),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27OVeO5htytXSgEJjOJc-uqLMjIzryB6LC1q7pEquARLNW_5qxFfvjyFPs0PQmb38NQAVuEh565de0hMblNSNX8uWFxk','I want to take a moment to say the staff at this clinic have been so awesome and caring , there was no wait time to get my daughter Into a room , they also took the time to explain everything to me and answer any questions my daughter is 2 and super shy they we\'re patient and kind with her .i want to think Lorena T Dr Patel & Juan y\'all where amazing to us Thank you again','2020-05-30 19:46:58.249000','2020-05-30 19:46:58.249000',5,'Oneata Loving','https://lh5.googleusercontent.com/-yaZU2hMg_R4/AAAAAAAAAAI/AAAAAAAAAAA/20r7hUILpfA/c-rp-mo-br100/photo.jpg','16590124370714063921',22679),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27P6Th2q8h3mi2_FCK3sgjGhCMhB_HqpFC6EUl2XcjDmlCbR0tgurB217N2psY2mRBuL7IMFA-UT7shDHaiastcpNpBY',NULL,'2019-05-28 01:52:23.676000','2019-05-28 01:52:23.676000',5,'Wanda Miller','https://lh5.googleusercontent.com/-KUhkk-xAS90/AAAAAAAAAAI/AAAAAAAAAAA/PYFaDo9bTMA/c-rp-mo-br100/photo.jpg','6521947413723274945',8254),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27pHzp-oNkpbS5J5yx6S0dltKkuiAd1ydpJZjO6uLInOmNRJUDX3u0S9HkNPmOIrIRWmhX2DM9AeMWGg583WX3zrWZS8','Nancy in registration was very prompt whenever I had arrived, my Nurses Seniada and Cindy were both very helpful throughout my stay, Allison and Delpha were awesome techs explaining everything in a detailed manner and My attending physician Dr. Plante couldn’t have been better. From start to finish A++','2019-07-18 03:30:30.641000','2019-07-18 03:30:30.641000',5,'Grimm 6759','https://lh5.googleusercontent.com/-WG0Lb_oYyJ8/AAAAAAAAAAI/AAAAAAAAAAA/ehlO7MA4djc/c-rp-mo-br100/photo.jpg','6521947413723274945',8190),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27rXyMOpiioxeRqo4i5LME4HCrpSJ24B9f54HOCVyi17ESDVTjv2YcZL_ErSCDINTLvvxojmmiNnPhx9X1G1i8ZuQTKA','Great Urgent care.....in and out in less then an hour. All fixed up!! Amanda, Lisa H. And Dr.Diaz did a great job.','2020-02-07 14:21:37.153000','2020-02-07 14:21:37.153000',5,'Andrew White','https://lh3.googleusercontent.com/-dHHwAzG5y00/AAAAAAAAAAI/AAAAAAAAAAA/p01pkSFRQaM/c-rp-mo-br100/photo.jpg','13486358490203335051',13437),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27xyRZMrGP4vi14RC_rl66M6jcZvrgTpQY_nm1PL6g1G_pG0inUPjDJV9odEY3zuTxM0cyuQLjIOHwDk2QhlisrCDjKE','No waiting room time, Aaron Ortega radiologist was quick and made me feel comfortable. The staff was attentive and all testing was done quickly.','2019-02-21 22:09:54.436000','2019-02-21 22:09:54.436000',5,'Maria Labrado','https://lh4.googleusercontent.com/-XUVSv6Izy5k/AAAAAAAAAAI/AAAAAAAAAAA/3DNkHubZnV0/c-rp-mo-br100/photo.jpg','13486358490203335051',1064),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG27zX925ZUu0fSo_0OaZqzVnTeO10L_4Zo2wC2XGi9ZOcizWuGjFzssEi69GtZWeR7wk8BI8zCdVCxJrUITyHl_Hg18Kk','Great customer service and attentive staff. Manny was the best.','2019-06-20 23:28:24.902000','2019-06-20 23:28:24.902000',5,'Lexi Villarreal','https://lh4.googleusercontent.com/-qgRKatLKwm0/AAAAAAAAAAI/AAAAAAAAAAA/MQdhzW3nUCg/c-rp-mo-br100/photo.jpg','6521947413723274945',8224),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG28JYG2w13VFLbd75r_FtqtzEPgQ2jBt-dmx0DgpvibnnAqMKem3dSFN_sfGkvQfmJYmkStLfJQgPv9eC74OnH7WB_mn0','Could not have chosen a better place in my time of need i was in so much pain from a toothace they\'re not a dentist But Dr Zhen did what ever she could to ease my pain and make me feel comfortable overall whole staff was super friendly and helpful','2020-01-05 10:08:54.274000','2020-01-05 10:08:54.274000',5,'Linda Jacobs','https://lh4.googleusercontent.com/-CV0lXE8qEbI/AAAAAAAAAAI/AAAAAAAAAAA/eohhXiKcbQo/c-rp-mo-br100/photo.jpg','14904078213800803294',13643),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG28nCL97ByOgXoSHMb5BuhYMsOuvaEGgudfnDPA30b2ya3Tv4KyGENGl4GN_L0Qt0YkWrPWxmnY7vw17Vo_ZWZsk8nVE8','This has been the best experience in such a bad time, from the time you walk with in youre greeted by Austin with a friendly face & a breeze through paperwork; our nurse\'s Luke & Kim are amazing. Kim started my IV; she was so passionate about making sure she would only have to stick me once. I can\'t thank Luke enough I was in some pretty bad pain and he jumped on everything to make sure I stay as comfortable as possible.','2019-01-25 04:36:14.772000','2019-01-25 04:36:14.772000',5,'Justin Drake','https://lh6.googleusercontent.com/-fHHM1-mu5eM/AAAAAAAAAAI/AAAAAAAAAAA/GBI_oLIlbs8/c-rp-mo-br100/photo.jpg','3272657195432704501',7038),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG28rcwhBBECaQLv8i2ISp8wXQAkmil1leLeqETO3OjQdeWqf82b4IkjG1WszyeWptUpX4LqWz-FjeGeO1eJcls6Uyj_cE','I really recommend Signature Care Westchase I\'m sure all locations or just as good however this is the only location I\'ve visited. The staff is very warm and welcoming and the service is great all around.','2019-08-30 19:41:56.597000','2019-08-30 19:41:56.597000',5,'Roberta Jeffery','https://lh6.googleusercontent.com/-p5-U9tLFhc4/AAAAAAAAAAI/AAAAAAAAAAA/ikQfBE_mJh8/c-rp-mo-br100/photo.jpg','12541597562633926366',446),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG28VvH3FNzC-peU1hP0aWRbnu0B1kudOODlhNr1S15yJXNvFKuiwoeiRxI79gxUQuQ2D-yApM1WfqxVgQvC6R0VTtibT4','I love this place the staff is friendly and really nice. my favorite part is when they call you the next day to check up on you and see how you\'re doing.','2020-02-03 05:06:38.169000','2020-02-03 05:06:38.169000',5,'Nikki Liddie','https://lh5.googleusercontent.com/-4L9CsEhfPqc/AAAAAAAAAAI/AAAAAAAAAAA/uEj-wcrY9YE/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',14429),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG28vyi3Qa7KET4bYEg5z-9GHgZMfAoSl6I-5MLQiKz31R-KFnn7rQXkqG24RYfyvHOu7byh2QjPRRUfH37oIlEZ57awNo','Came in really sick on Thanksgiving and the staff was absolutely wonderful. Ms. Lorena was very helpful and cheery she was able to get me in to see a doctor within minutes. I highly recommend coming to this ER because of their highly trained staff, Dr. Harjai was able to diagnose and treat me very timely. Jacob O. and Laura D were very professional.','2019-11-28 18:02:45.996000','2019-11-28 18:02:45.996000',5,'Kayleigh Forbes','https://lh5.googleusercontent.com/--EAMe-tTB_w/AAAAAAAAAAI/AAAAAAAAAAA/IGCUvtBVwd8/c-rp-mo-br100/photo.jpg','16590124370714063921',3071),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG29Cp0s3LvBn7NCNhfjUgVPczSeA-5NWK4QEGJitjk5dbn5a7wb3e4AcDS_PckkXY2uVGKGXEggtnF-IHTaaExa0kgC9E','I was in town for the birth of my first grandchild and became ill. I googled for the closest emergency care and decided to go here. I am glad I did. Staff was outstanding and made me feel like I was very important. Not at all what I expected. They were very thorough and consistently checked on me to make sure I was comfortable. After many tests and IV fluids and antibiotics, I was able to go home later that evening. Highly recommended','2019-04-24 11:50:54.490000','2019-04-24 11:50:54.490000',5,'Chris Holcomb','https://lh6.googleusercontent.com/-FQOkueyfDHU/AAAAAAAAAAI/AAAAAAAAAAA/FP9RN8GEs3E/c-rp-mo-br100/photo.jpg','12541597562633926366',513),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG29I-K--xvyfQ9ZAXNShHA7lMGtnPrh60J3ql2WQPYhr8cx7S8nLhcNnPkFB7G-4LJlEN_dXXtRJTDN3DPrRBqeyuJqjo','My husband and I were totally pleased with the treatment shown to our son by Dr. Plante. Our son was in Texas working, and we were about five hours away. Dr. Plante not only took tremendous care of our son, he went above and beyond to call us multiple times to give us updates. Thank you, Dr. Plante\nGrateful parents,\nPam & David','2018-05-09 21:50:02.321000','2018-05-09 21:50:02.321000',5,'Pamela Newton','https://lh6.googleusercontent.com/-fEL9QzMuJUM/AAAAAAAAAAI/AAAAAAAAAAA/H04gKNaZbVw/c-rp-mo-br100/photo.jpg','16590124370714063921',3827),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG29j9jEcSygt7o6jqKHwe3RRez8V12X_7dcd_88aywl5sRqCRzlvNMElbnwppdOwzhOAKOpqWQblXDvSPMsIip7sgRkqQ','I highly recommend SignatureCare Stafford!','2018-01-11 14:33:30.758000','2018-01-11 14:33:30.758000',5,'Gemma Browne','https://lh6.googleusercontent.com/-wKGexa9qRHY/AAAAAAAAAAI/AAAAAAAAAAA/1ldT_lYRqws/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9310),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG29l1Ua3u6fr-pVK6S4daUq6KXXpPq4aAqY9QuEkLGWUyIcRQ3hTjjAhzKkBPQuJmNHI7wnzbsQtPgVQ6_DAb6JPCHAas','Dr. H and the staff here are amazing! I came in and it took me less than 10 minutes to be seen. It’s nice to see that they aren’t sitting around twiddling their thumbs, but rather they are actually practicing good, effective bedside manner!! This will be my ER visit place to go.','2019-12-19 16:46:33.666000','2019-12-19 16:46:33.666000',5,'Miriam Harris, LPC, NCC','https://lh5.googleusercontent.com/-GQympNwjbFQ/AAAAAAAAAAI/AAAAAAAAAAA/QFim9dPr5Jo/c-rp-mo-br100/photo.jpg','8918455867446117794',9027),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG29OAxkcF79GxRTWyNJ6_F6T6yNHyGaWvl2LPsfk7ZB6Ud_7JwxqQak_cYHZVXXqmYq3_50ZfaqKDVtTIAm3a-AoVspD4','First time coming excellent service staff very friendly. Just want to thank Dr. Mauldin, Eksterini S & Troy, Selina V, Melissa E for their attention. I highly recommend Simple Care.','2019-07-01 09:04:51.625000','2019-07-01 09:04:51.625000',5,'Bella Escalante','https://lh4.googleusercontent.com/-sBp5xYF-U8g/AAAAAAAAAAI/AAAAAAAAAAA/1wVos0t6gt0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG29zUZ-BvRW6f8eBCwFhq3rfbVbpUSFGzQIyj_2QFtK0iRQdFIAwirBi3qnii_7ZI-Z6yj4frhGud81WAp8qaLRMGBMgE','Everyone here was extremely helpful and kind. Dr. Vakey, Nurse Anthony, and Natalie took excellent care of me. Cannot recommend this place and the staff enough.','2018-12-10 20:16:22.584000','2018-12-10 20:16:22.584000',5,'Sara Stein','https://lh4.googleusercontent.com/-MMM-NvYZ6ZI/AAAAAAAAAAI/AAAAAAAAAAA/COoG66A4tV8/c-rp-mo-br100/photo.jpg','16590124370714063921',3615),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2a_EGNoJaiEry_8D8KGEEdsapC8r7UJhU-98Wrb_biXXTMwcp3Qph-6PXW5IKvtSNSXV77RSmpK6xNyPoijEgK3pPUAc',NULL,'2019-09-04 09:35:45.021000','2019-09-04 09:35:45.021000',5,'Sarah Bracamontes','https://lh4.googleusercontent.com/-BdXQ00dgJog/AAAAAAAAAAI/AAAAAAAAAAA/ZX2uNSDRlMw/c-rp-mo-br100/photo.jpg','16389487648212004696',2953),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2A-tMgdEVVWbxPgqvVLfctLNeMEcLDybNGmaB58W-6kVj92HRfReLE6qB8qxbn4_DYDS0wto0YdgK9J-nWlJDhYjL340','Lorena T, Jeri D/Bretnie, Nina, Tori, Jaber/Jacob were really friendly and made me feel at ease while getting tested. Its not my first time here and they always have been friendly. No complaints.','2020-08-02 17:01:15.891000','2020-08-02 17:01:15.891000',5,'Karla Martinez','https://lh3.googleusercontent.com/a-/AOh14GgbK4zxS7rmzPE391iDElF2od9-qdCDEtxt9TCnvOg=c0x00000000-cc-rp','16590124370714063921',21986),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2a2lqYpflWnvrilUtUvjPgJdzxeVfQRN9FDP7WjmirmyO8Ku55STxXJsZqAeNRQJFxJJS8Zn5oOhwzeH63FZRkicjAVk','For some reason I’ve never been to emergency center before. The other day I had a bad ear infection and I went to Signaturecare emergency center and I can tell y’all that it was a good choice.\nThe front desk receptionist Tanishia was very welcoming and helpful. Thank u for ur great customer service and ur help that evening. We were really touched.\nThank u much Doctor Thomas for being very patient with me.\nThe Radiologist Laura and nurse Sarah, thank u very much for ur kindness.\n\nKeep helping people and providing them great services. Y’all rocks','2020-01-19 03:11:00.503000','2020-01-19 03:11:00.503000',5,'Zubair Nawaz','https://lh5.googleusercontent.com/-5IjueGTKSAU/AAAAAAAAAAI/AAAAAAAAAAA/k5ATckxJHl0/c-rp-mo-br100/photo.jpg','17898197009688164559',9988),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2A4l-hZJcnJ-rzUY3K3mw4fYladHRJ9rG3oE1WVNlzDimem7VJlSXTAPpZkHXLiE2ObuO_rXAFOVAYVU7FrcW0djygaI','Brought my baby in for a fever and coughing for days. The service was very fast, Jocelyn help us with the registration and answered question we had. Thank you to nurse Alvean, and Marcus, even though my baby wasn’t very cooperative, you guys did a great job. Thanks Dr Dendy for being so attentive and rapidly checking out by baby. Thanks guys really appreciate it','2020-01-01 19:30:31.907000','2020-01-01 19:30:31.907000',5,'Kelvin Alvarez','https://lh6.googleusercontent.com/-vTUUtZMeI7I/AAAAAAAAAAI/AAAAAAAAAAA/wI6c-2gnMtc/c-rp-mo-br100/photo.jpg','16389487648212004696',2493),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2a9ghDGeh6C9rCnpQGnhmPOEDZVKv9bFD8hkoR22FS0rYxOMCd0Gj2BaNqVbiU3q4rnxiTD8slBzUorerbVU0dvx5Vcw','Very nice and professional staff. Dr. Tran was awesome considering the time it was. The nurse was also very nice and considerate.','2019-05-01 08:58:12.954000','2019-05-01 08:58:12.954000',5,'Laura Camarillo','https://lh4.googleusercontent.com/-0zGQfpWsSHs/AAAAAAAAAAI/AAAAAAAAAAA/KDl14-957qk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ab7yIBzDl2MkF4EiMFRwZcsK8jui9-szONJMqTkZrwytyBptSkbN8O0M6h1UYPD1MWVT46NGmQOsCI16whFV3W_KPPo','I had a bad allergy re-action on Sunday, and this place was a recommendation by my dermatologist.\nI walked in and it tool latterly 5 minutes only to get check by the doctor.\nThe #Airianna#Fron-desk was really nice and helpful, she greeted me with smile that made feel better right the way, thabk you for the special service.\nI loved the service there, it\'s fats convenient and better than walk in to hospitals ER.\nThank you so much 😊','2017-07-14 05:23:25.858000','2017-07-14 05:23:25.858000',5,'Ola Alhammami','https://lh5.googleusercontent.com/-EX7vs41mMYc/AAAAAAAAAAI/AAAAAAAAAAA/fnghL0WIQhE/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1796),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2AC9bp16j9Ajz1RQhRQueMQM6r5Ez4rrXYjNkXAzAAIeL1P51wCDrbx4jOGCmpgmK9sLa3c0xCBndD3b8QNEk9ve6nQI','Just quick and friendly service.Walked saw the Dr. and walked out with in 1 hour. Would totally recommed them to ANYONE.','2019-04-18 15:07:40.901000','2019-04-18 15:07:40.901000',5,'Angela Mabry','https://lh3.googleusercontent.com/-cUxsCoMoAXg/AAAAAAAAAAI/AAAAAAAAAAA/mIVL1cRqV-I/c-rp-mo-br100/photo.jpg','8626688543755174284',8508),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Aff_bNo8dFfg6HSxKyep9oCCYaKzy0pyOkUZeTt4tTdjqASFkSKjQ-SC2AbgC2l7lrT9TEtCt8Mpk3ph1kh3rJMM8-4','So glad i went here instead of waiting hours for a hospital. I was seen within minutes of walking in. Dr. Zhen has the best bedside manner and reassured me that everything was going to be ok. She continuously checked on me and made sure i didnt need anything. I couldnt have asked for a better nurse than Kat. She made sure i was comfortable and explained everything that was going on to me. She made sure i had every little thing i could have needed. Im thankful for those two ladies and would definitely recommend this place!\n\nEdit: i had to go back just two weeks later and still had a great experience. Dr. Pham, Alvean the nurse, Marcus, Keith, and Vanessa were all great. Everyone who works here is very good at what they do. I would recommend this place to anyone.','2019-11-19 23:56:01.204000','2019-11-19 23:56:01.204000',5,'Terry Blanchard','https://lh5.googleusercontent.com/-qwGPP0KsvMw/AAAAAAAAAAI/AAAAAAAAAAA/QJsbHbW6cuk/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2656),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2agzo3kDHM_10OJNiclghvnY0PIAkZ5ocpdLkpFE4M75jI2saRlUe2f2rwuYVEc8y8ELzdj6GRpvAjQGUCpqqXYpKAxY','Thank you so much for a wonderful visit!! Nurse Adam, Dr Leung, Chris, Adam, and Aileen were super nice and professional! I have been here several times and trust them with my health!!! They made me very comfortable and catered to me! Thank you!!','2020-02-24 23:24:39.113000','2020-02-24 23:24:39.113000',5,'lovesentable','https://lh3.googleusercontent.com/-zz003FnG99k/AAAAAAAAAAI/AAAAAAAAAAA/7xtPmPHnSik/c-rp-mo-br100/photo.jpg','16891069708558046635',13931),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Al1uVQUS7m4IPyc-Tsqgt2erPDlSKT0H8kkqlqNV0QTLZoAi8b7eRQeRpXCHPNf-RulfNYqH-BIZjyB7rfOwjwmLdcU','I had a HORRIBLE experience at this facility!\nI left crying! Cruel & uncaring front desk registrar!','2020-06-27 11:31:54.951000','2020-06-27 11:31:54.951000',1,'Debra McShane','https://lh3.googleusercontent.com/-emkzRanQLY4/AAAAAAAAAAI/AAAAAAAAAAA/CPiX1K5ZUSQ/c-rp-mo-br100/photo.jpg','14567670160750071148',21253),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2aM0INcoj2YQeK61VMDZDfWS_e1n2Gj56qe6fL5CPs7qoB0xeBw7RaNuVR-wHQj_vdjySZtCKtE9tbQFSsXR1leIMVPw','I am the GM for the BurgerFi next door and one of my employees got hurt, he visit signature care to get checked out and he was back to work in just minutes. Everyone was so sweet and took care of him right away. Thank you so much everyone who helped him out and made him better!!!','2019-09-19 03:31:38.341000','2019-09-19 03:31:38.341000',5,'Gaby Ramirez','https://lh5.googleusercontent.com/-sS6AZtAmDkE/AAAAAAAAAAI/AAAAAAAAAAA/tQ2D5hfkBz4/c-rp-mo-br100/photo.jpg','16891069708558046635',4202),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2am1A_Hq_0GPvasoyuUtohKjv4S_l6c4SUeBobu_rmNCt8uf5jYlmgEaRmtT1jepgeHx0pR93_LCqpDphHJogHlGxwSg','The staff is amazing & makes you feel as if you are their #1 priority. Dr. Appiah, Alvean, Jocelyn are amazing . & I can\'t leave out Marcus who makes the CT scan experience a great one!! Thanks and 👍🏽👍🏽👍🏽👍🏽👍🏽Also the housekeeper EVA is awesome. Very clean facility','2019-05-22 21:19:06.263000','2019-05-22 21:19:06.263000',5,'ladonna palmer','https://lh3.googleusercontent.com/-QZX5jfWo2k0/AAAAAAAAAAI/AAAAAAAAAAA/OOKlvKaos_I/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2AmXhPZSqhMYLso3MykZH9WOPT1EDML_6DK-SHVBa2wXgtREFV1Zi3VqBPKh-oCflVVcpgPI3eeVcp1qVqKvZ8UC5yjs',NULL,'2019-12-27 06:52:36.527000','2019-12-27 06:52:36.527000',1,'Quynh Le','https://lh5.googleusercontent.com/-N5uQJC3J6vg/AAAAAAAAAAI/AAAAAAAAAAA/96qQrkccMgQ/c-rp-mo-br100/photo.jpg','17394740196501090048',14065),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ao2YEE-UxoAswfXOanuB5jyJ4a8hyBfeCLOnANpq_oIBl7r0ekAZwqxRyTHNpeOacem4VFm09l87zZ0FKl-319mITy4','Excellent service provided by crystal and Jamie! Took care of us in a timely manner and made sure we understood everything.. brought a little one with me and they made sure she was comfy and taken care of as well!!! Will never use another hospital in this area! Thanks sig care, y’all are awesome!','2019-05-15 18:51:01.019000','2019-05-15 18:51:01.019000',5,'Bethany Plunkett','https://lh6.googleusercontent.com/-RhhTMqGa9Po/AAAAAAAAAAI/AAAAAAAAAAA/eT-OyqRxyXA/c-rp-mo-br100/photo.jpg','13486358490203335051',1007),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2av189TkpVw5TjerMhPKHbITMtG5-2tdKTwW8vFsEhPf2a0ucwKO30rm9MvTOiilbl1bJvhZDaOAZbxJmPRbhYNlwzyU','Brought my daughter in to be seen. Dr Yost, Lucas, Kim, and Sherri all took very good care of my babygirl. We will definitely be back.','2019-04-29 18:26:52.349000','2019-04-29 18:26:52.349000',5,'Krystal Willis','https://lh6.googleusercontent.com/-cvYFHcZtSnw/AAAAAAAAAAI/AAAAAAAAAAA/_3Wu86YL5a4/c-rp-mo-br100/photo.jpg','3272657195432704501',6972),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2AWihBTtsLXuAeQoWnZV_vl_jhP-5-91JxBa7NZLyF_951-gcLbttwLeZAe5EJCTAh1jcckHR2AJuyWk8RI21rhHWbo4','It is a clean facility with a professional , caring , and friendly doctors and nurses. I highly recommended it.','2020-02-21 23:46:37.020000','2020-02-21 23:46:37.020000',5,'Aladdin Ali','https://lh6.googleusercontent.com/-xUWC-0_jlmw/AAAAAAAAAAI/AAAAAAAAAAA/m9dJVrtzg6Q/c-rp-mo-br100/photo.jpg','8679688254631342173',14740),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ax4P92VwS4R7plyQ5LokXqXgeMKyOqSAe8C1DtggHcCfiYhtod8pkXiTA-edWDDrKcqjttfvZi0Y60XVRj2I8Q2GZuA','I had an a very well experience. Bryan was very knowledgable. Alvean was very tentive and of course Dr. Farooqi was just the best. Jocelyn was very profesaional and helped with my registration for i couldnt fill out due to the situation i was in. All four were respectful and professional, also answered all my questions. I would recomend this place to anyone with the need for emergencies.','2019-07-11 22:32:59.192000','2019-07-11 22:32:59.192000',5,'jimmy hoang','https://lh3.googleusercontent.com/-O2-LtpzJjfM/AAAAAAAAAAI/AAAAAAAAAAA/paLPC1_s5OU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2AYvhQJf5bQo1al5iDiqyR6bipEuZk5H4Po-wzZ6g5b1PNHcXJLI8UJdoDYxa5Rj8VLDJ9k8ptw0onh1vUXzPIz3d4CM','Always takes care of my daughter and granddaughter when they come for care and they take the time to explain in detail of your health problems.','2019-05-02 02:18:05.606000','2019-05-02 02:18:05.606000',5,'Fabian Jefferson','https://lh6.googleusercontent.com/-K8ucKkNxJGc/AAAAAAAAAAI/AAAAAAAAAAA/VcVAUEyxu6U/c-rp-mo-br100/photo.jpg','16891069708558046635',4289),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2b_9jFqqIOvZqaS69Y0RGKsn1sMbN4q5SiFTFn7_T4T7okEGVTcY8MbvhnzkLDlwnlGEPl7saVpNnGBxz-a6pKrfDpC0','Awesome staff ! Lorena &Victoria ,Bretnie/Matt \nDr. Cabaniss /Dr. Lindsey and Tori .','2020-07-26 16:43:09.334000','2020-07-26 16:43:09.334000',5,'Joyce Ripkoski','https://lh5.googleusercontent.com/-aQPhYJN5kSA/AAAAAAAAAAI/AAAAAAAAAAA/tRcRIYx8Ra0/c-rp-mo-br100/photo.jpg','16590124370714063921',22021),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2b7_3xhK8LBDckK2Ojof90ay9o654YVUh3nfWdpzAXaJFZWdDd8NRjBJ1_O-1KtLufQCqavAMHfcaQz_cbMIuNJv2V3c','Great job Skyler R., Jamie M., Courtney K. and Dr. Henderson.','2019-12-18 06:38:06.456000','2019-12-18 06:38:06.456000',5,'April Blount','https://lh3.googleusercontent.com/-R9WQel-vRTE/AAAAAAAAAAI/AAAAAAAAAAA/Wra8QbdBHNY/c-rp-mo-br100/photo.jpg','8626688543755174284',14639),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2BBk8mBbLcfPxnJO7qSz6r2F2GkunxDAYGOsGCnZ9BTZUr-FRbYki1mKWa9GvAqx_SfG-DjKcevpKUhtzjioDcIPNvHk','Service was great and oh so convenient.','2019-05-27 14:01:52.129000','2019-05-27 14:01:52.129000',5,'John Bradford','https://lh6.googleusercontent.com/-phnoxzcCUic/AAAAAAAAAAI/AAAAAAAAAAA/jyXP1D-yi3k/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2BeeL2Uy0HWBEMJQrkku3ryaTDVzPVktXodd3hh9e29HwyFavpnRmy-F0dqFIhch2EFerz_F2S0pqCwMdlmcCl5FNqqI','Great customer service would recommend anybody to this er thanks Dr.Souman, Nurse Irving and Lara, Radiology Tech Holly, Er Tech Christian and Registration Ana keep up the good work','2020-03-07 04:00:36.153000','2020-03-07 04:00:36.153000',5,'Zalayah Kellam','https://lh4.googleusercontent.com/-WmpqzRSKktM/AAAAAAAAAAI/AAAAAAAAAAA/tYXM2OyzV58/c-rp-mo-br100/photo.jpg','12541597562633926366',13312),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2BH_uaPccQoTsJPzrL6xdHqJc1kr0AWVJpo49a9UU0NYNBMf5SUBUmfInUUJFoxunixngmOqCTIuARtwo59HhVRBmo8M','I\'m pregnant, running fever and feeling extremely ill. I was concerned, nothing else was open so I decided to check out Neighbors. The staff at the front desk was decently nice. The problem was with the doctor and her assistant. They were INCREDIBLY rude. They basically treated my like I shouldn\'t be there and was stupid for coming. They both talked down to me and treated me like a child. I will never step foot in this facility again. When someone is sick to the point they can bearly get out of bed, this is NOT how to treat them. I\'m honestly still in shock. I will be finding out the names of the people who saw me and taking up my issues with whoever is in charge. I would seriously urge anyone who wants good care to look elsewhere. I\'ve never been treated like that before by medical personnel. This is not the way you run a good facility. From the looks of some of the other reviewers, they had the same experience. I went to this ER after an accident when it was located down the street and the cars I received then was wonderful, it\'s a shame to see this place go downhill. \n\nSide note: Also they are completely unwilling to help out with looking up any insurance information. Most ALL clinics or ERs of any kind are more than willing to help. I see this happened to another reviewer as well. ','2016-12-10 05:05:43.964000','2016-12-10 05:05:43.964000',1,'Lea G','https://lh4.googleusercontent.com/-eWHyo7X5aMM/AAAAAAAAAAI/AAAAAAAAAAA/K6lNZ-uPRZU/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8919),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2BHWAsfw5onElHIiAIF6F5Tw97rG6oOfreb4tT4NDs_XEvc2rgKvE7rMLCY_CO3MOgkAcB6Q7UHLq5zW6Q5YOHaCAht4',NULL,'2020-07-16 02:19:08.910000','2020-07-16 02:19:08.910000',5,'Cindy Herrera','https://lh4.googleusercontent.com/-CtnKjmqMo1A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckZmvBrIeOwSS4-wL0Jn05AC-OLSA/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22073),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2BJB3ryM9fFo_Poa2M4HiFQ5WjnbUwizG-16ZxFkBsUM0IamLzQGbu4lmBaSoAcbRjcslRsbH9mfUjJk13D3krNF0CMI','The experience at this location was excellent we had great service coming from Dr. Castaneda, (rn) Miss. Katrina, (ER.Tech) Miss. Yasmina, (RAD Tech) Miss Cheney, Miss Therisa.','2020-01-03 03:37:15.713000','2020-01-03 03:37:15.713000',5,'Keicy Robinson','https://lh6.googleusercontent.com/-B-gpRXsg2Ko/AAAAAAAAAAI/AAAAAAAAAAA/lk9GeuvecKU/c-rp-mo-br100/photo.jpg','8679688254631342173',8660),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2BJcQqbA4i6tpAvDsxCvKZ6vtUZlfkjSSmXXuZJt5baNaYv57nsyfA3MZrnPltooaGrrN0MpiVS5o4htSP0OPIZgAk6o','I walked in and was taken care of in no time. It may not have been a busy time, but it was nice to be seen quickly as I got to go home and get some much needed rest. The staff \"all\" of them were very nice and I was treated well. Everyone had a smile and greeted me with friendliness. I will definitely be using this facility again if needed. I also highly recommend it to anyone who needs urgent care,','2019-02-14 16:02:51.426000','2019-02-14 16:02:51.426000',5,'T3xas Tr!sh','https://lh3.googleusercontent.com/-VRPi4Sb5QX0/AAAAAAAAAAI/AAAAAAAAAAA/Vww0ja92qGU/c-rp-mo-br100/photo.jpg','6521947413723274945',8309),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2bKnPqandE7klz-nXdJCg9NnJa8yZzWJEjeZxqBMGAXVDEKKk5gd48hEQ41tN56Cd6sVWtEOdOI3gpKNL7t4--W8WCdI','Dr. Miller, Vivienne N, Gina A, and Natalie are a great team! Thank you for making my little one feel comfortable! No wait time & treatment at Signaturecare is great!','2020-01-30 16:46:02.825000','2020-01-30 16:46:02.825000',5,'Amy Adkison','https://lh6.googleusercontent.com/-FOcXxTf14Qo/AAAAAAAAAAI/AAAAAAAAAAA/FIta3YP7Ox8/c-rp-mo-br100/photo.jpg','14567670160750071148',13580),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Bq2K4w4wIIgIh5fLBaePRJ0yskD0vUlR8Sy6IuCaQwFS8k-eBr5otUEzGJK5m87afmVaTW6Od3aBItruuyQxTlkCOZY','This place is the best! Makes me feel at home and comfortable. I really do appreciate their service and hospitality.','2019-07-10 13:18:23.710000','2019-07-10 13:18:23.710000',5,'Lily','https://lh6.googleusercontent.com/-VyURwo1MD6s/AAAAAAAAAAI/AAAAAAAAAAA/djCIhiTzu5I/c-rp-mo-br100/photo.jpg','14904078213800803294',2114),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2bqunc-csHyKzAqN8Gz0LyfKj812sJ90U19olr9QEE6nRUILSV7dWVcG0kgtSkWwxl9Sa30d_RQKMJq4fnU89Ly5SJjc','Great location! They got us in quickly, even though we showed up at shift change. They answered all our questions and explained what was going on very clearly. You never want to need a place like this, but I’m glad it’s available and close by.','2020-02-26 13:49:47.886000','2020-02-26 13:49:47.886000',5,'Do Better with Christian','https://lh3.googleusercontent.com/-Bz_T3eOQyP8/AAAAAAAAAAI/AAAAAAAAAAA/NcRfg15wJhE/c-rp-mo-br100/photo.jpg','8679688254631342173',14728),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2BR-8pQDqbdlEhVzPITkSDUr0kg_DTFz8-EtEAWV1L33k2HaMFs_Zd7wN0A6095JZ3MnbmfTfktHUsAuVe5YXUUz2WiM','I love this urgent care center, they were welcoming, friendly, and they reassure you that everything is going to be fine. I had a great care team shout out to Dr Jolly, Nurse Leslie and Kristina, Quyen, Scott, And Mya.They are truly good at what they do. Thank you guys!!!!!','2020-02-11 23:24:28.140000','2020-02-11 23:24:28.140000',5,'Megan Jean','https://lh3.googleusercontent.com/-DW4qFjnKGo4/AAAAAAAAAAI/AAAAAAAAAAA/qvtd_lxNVus/c-rp-mo-br100/photo.jpg','12541597562633926366',22463),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2bSKpjR8c6xk9ukkBtWRKlB3BjjjSfpvFLKLgeCVUpNOaNvXRm3ROErQE1KJKaHm8gltBEMb9oq2gvvNytEf9j_Mfiuk','Definitely recommend this emergency center!! The entire staff was extremely nice! They really care about every patient. They even called me the next day to make sure I was doing okay. I will definitely recommend this place to my friends and family!','2019-05-28 00:25:22.534000','2019-05-28 00:25:22.534000',5,'brooke erickson','https://lh6.googleusercontent.com/-s_lTiEUb1vM/AAAAAAAAAAI/AAAAAAAAAAA/HerjMcpUrAg/c-rp-mo-br100/photo.jpg','16590124370714063921',3376),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2bueeNIsS5FKarlHYFvywrF0ozWGB0ly01N0EVBEmcgiOLo-xhDeOZya1MxNXCpjH1GJol0g0L_YV5QXMK3Idraqgsig','Great, quick experience! Amy, Mina, Sala, and Brian were very friendly and helpful.','2020-08-03 14:35:48.015000','2020-08-03 14:35:48.015000',5,'Alicia Martinez','https://lh3.googleusercontent.com/a-/AOh14GjqTnJ6MwDu84lC5O9a9sonc-ERz6eK4sFkb2jBF-E=c0x00000000-cc-rp','3511292162159714121',22144),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2bvPEqapZq1f46tYQsIM4BCcs7tR81cbwAhWnppN4Fy-tp6nDJnrEGFdk0lLnsBVm1vJhezD8fglgB8joxF6TtzGOynM','I had a wonderful experience with SignatureCare Emergency Center, Mission Bend Sugar Land. My child had an injury in the night and we were to travel out of town the following morning. I thought of the trouble of going to the emergency room in the \"Mega hospitals\". Then I found Signature in google and decided to try them. What a relief. Starting from the security guard at the door to the Doctor, everyone was courteous and professional. As a nurse, I had an expectation from the clinic and I want to say that the staff there exceeded my expectation. I have to specifically mention Dr Toni Kotey and give her 2 thumbs up. She was simple, knowledgeable and professional. At the same time, she made it a fun experience for my six year old. Please give them 5 stars for a start.','2016-05-23 23:29:39.967000','2016-05-23 23:29:39.967000',5,'Charles Ibe','https://lh5.googleusercontent.com/-pDYQGhZ84qw/AAAAAAAAAAI/AAAAAAAAAAA/NyFX6O1fmxs/c-rp-mo-br100/photo.jpg','17394740196501090048',5252),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2bW_lKvolSWjclYAw5FAVI0ImHHU8yg4ddiNfBd76iFxRLjjfAFcokyqY5qNN5a81kpLGw2rCfh7Vd_ousvbNmKdjHH4','This was a very clean and high tech place, also really fast with the doctor Diaz, and our nurse Alexis','2019-12-08 19:37:25.585000','2019-12-08 19:37:25.585000',5,'Juan Garcia','https://lh5.googleusercontent.com/-2JDbkscai7o/AAAAAAAAAAI/AAAAAAAAAAA/2wdXxnKbvuc/c-rp-mo-br100/photo.jpg','13486358490203335051',698),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2BXV4qPLC1CK_aU_HvrVW8_2TIsLQWIq4Z5zu7HFopLM3bPakosoE8gwArT3tOywBOodPlKaVLpY3sn-r6pStlhgA6Wo','They’re so welcoming and fast service! They helped us out and they have an awesome kid section and have TVs for your kids. And lots of snacks and drinks. There doctors and nurses are nice and caring!','2018-06-05 01:57:15.698000','2018-06-05 01:57:15.698000',5,'Yasmin Hernandez','https://lh6.googleusercontent.com/-8yKS2JgTXfE/AAAAAAAAAAI/AAAAAAAAAAA/Yt72iPrw_Qk/c-rp-mo-br100/photo.jpg','8918455867446117794',9265),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2C_brMR6SnmHMwAusbEwkQYHe7aN8U7F_nHEo6F7hFARG4Wjx-lLigLHz4x4xC-gLlewhK3ZGBt83yMvkr5atA4qVECg','I visited SignatureCare about a week ago for the first time. Going to an ER is never the place you want to be, but as soon as I walked in the staff was very helpful, and they were quick to see me. Dr. Elsbecker and the other staff did a great job in curing my problem and were very helpful in answering my questions. Fingers crossed that I don\'t have to go back to an ER anytime soon, but if something should happen, I will definitely go to thisone. :)','2018-08-06 19:14:14.618000','2018-08-06 19:14:14.618000',5,'Stacy McFarland','https://lh5.googleusercontent.com/-gCisLmfV_3A/AAAAAAAAAAI/AAAAAAAAAAA/71jSRKum6BU/c-rp-mo-br100/photo.jpg','16891069708558046635',4453),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2C230TEG-Su9XWMhEmqGDtu_2I2ct6Un9pz_hmFdR6Mr5t7cxF9fCJP6Jdvv8liGx-yMQrD8DEF1y-UBmUIdHzpe-OIQ','Excellent and friendly service with staff going above and beyond.','2019-09-21 17:25:47.703000','2019-09-21 17:25:47.703000',5,'Nikhil Singh','https://lh4.googleusercontent.com/-Anokf2z6mns/AAAAAAAAAAI/AAAAAAAAAAA/Ey8NA3x5juQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3186),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2C37tFSe2pVRddc0DxeQSQpYwYf-_iVtGLGph1Jti6f8gKEAOw2tmaAxCAd7DPQyiVpMtef_mA4osH2VHtHj8f2BKOzM','Firstly, I would just like to say I’m glad I was referred here. Was previously waiting for almost 2 hours at Concerta urgent care only for them to tell me they couldn’t do anything for me. Once I came into SignatureCare in Montrose I knew I was gonna have a wonderful experience. From the respect and warm hospitality from Keaire in registration to nurse Dawn, Olivia, Eve, and Doctor Pham providing top quality care, to say this was a great health facility is an understatement. Their facilty was spotless clean and everyone was just so friendly and helpful. I plan to tell everyone about this place and plan to make this my first stop for any of my medical needs. Thanks again to the staff! -Deborah','2019-08-30 19:59:39.360000','2019-08-30 19:59:39.360000',5,'Deborah Natalya','https://lh5.googleusercontent.com/-M2sxrWpE1D8/AAAAAAAAAAI/AAAAAAAAAAA/N4gA4tTP1e4/c-rp-mo-br100/photo.jpg','3511292162159714121',7185),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2CarKcPuWndjb1DQGZmiuJos3otJeInYszmXEj4N9BIUMhuxBdbNs8UUmDbZlKTLlCIFWWI_ndajGBbByl1mkjU5Zn8I','They were a some and caring, had me in and out ASAP for a cut that was infected. They treated me amazing and you can tell the staff is well trained takes the patiences care seriously and that they like their jobs! Also I heard laughter from all the coworkers they are in real harmony here. Sindy was amazing, my nurses were Gina and Vivianne so kind and gentle. Dr. So glad was knowledgeable and really knew what he was doing. So was Diem and job. Thanks guys!','2020-01-24 18:23:43.065000','2020-01-24 18:23:43.065000',5,'Jessica Luna','https://lh6.googleusercontent.com/-_6tsgpYQFL8/AAAAAAAAAAI/AAAAAAAAAAA/UdDJwl6nuS8/c-rp-mo-br100/photo.jpg','14567670160750071148',10134),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2cFcH3AnkW1-ZEc0Ml8wmtMh2Mr_2POeNNV-U2fD5OJQoSXAFC81OqInx9JNkYWw8S9JebMim_lS6gzuXGYuMQfiufNI',NULL,'2017-04-12 04:00:18.665000','2017-04-12 04:00:18.665000',1,'Rida Motawala','https://lh3.googleusercontent.com/-rIF6o9EsYIA/AAAAAAAAAAI/AAAAAAAAAAA/MIDz_75l2kg/c-rp-mo-br100/photo.jpg','17394740196501090048',5077),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2CjXeHGXqt1WHwIxxwk42F2j6WduvwIRKznd6qJIxGli5MsjdQGqD3bGM5p0hOQrMkp0KaH-oKS1CNlZbxYa4k9Fh1B0','Called for some friendly advice and received an enormous amount of attitude from someone who sounded hungover.','2018-01-01 15:38:46.009000','2018-01-01 15:38:46.009000',1,'Soul Wolf 57','https://lh6.googleusercontent.com/-ateTkv0gX34/AAAAAAAAAAI/AAAAAAAAAAA/_XjK6mnOuPk/c-rp-mo-br100/photo.jpg','6521947413723274945',8344),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2CKxPdRiDCLkXKgHVIsfS3zdSkT0mnHw3QHK9Lgw8uyF12d4IQL9cOJPDUwaa-DUT72jOG1NTDs8EnpmKRGeCQ0G30M8','Dr. Patel, Rollie my nurse, Natalia, and Amy were great! I will come back if necessary again!','2019-07-03 00:39:41.662000','2019-07-03 00:39:41.662000',5,'Rosie Laws','https://lh5.googleusercontent.com/-h93wNL11UiY/AAAAAAAAAAI/AAAAAAAAAAA/bkoxZxdfeaA/c-rp-mo-br100/photo.jpg','8679688254631342173',8827),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2CsG9zXNgRnSsLlkqUn5ytgE2rTaZdtZcBKsVT2sdfxQmlfutybCuf3BbOYvmsJO9z9fG7ChaG6tn1hkpfhPcRl76_Ug','Love love love it here I’ll be back.','2019-11-22 01:55:41.412000','2019-11-22 01:55:41.412000',5,'Payton\'s crazy color','https://lh4.googleusercontent.com/-1n8oluUaSHE/AAAAAAAAAAI/AAAAAAAAAAA/VNch6h95G1A/c-rp-mo-br100/photo.jpg','16389487648212004696',2643),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2CUk7OP3ABO3AxqzZm1-m--tfTqPZsirds2Wc_GnAuhQvkE4vL9CECcD4Wk8fZ9SPmPoq4OlCRPGVBDBq4shn0WL0cW4','Staff was extremely friendly. Our wait time wasn\'t even 5 minutes to get in to see a doctor & get labs started. Very clean environment. I would highly recommend coming here!','2019-08-11 19:49:22.049000','2019-08-11 19:49:22.049000',5,'Nicole Barker','https://lh5.googleusercontent.com/-KaSehZ-gnr4/AAAAAAAAAAI/AAAAAAAAAAA/hK5iVTC-5gg/c-rp-mo-br100/photo.jpg','2694018788013845459',6087),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2CUKkv5emMltl7ATt72C4a4TEKPT1GsHPhcqCtVV7xLa-rEOLAS8W92nQcnCc98TmTqPdBCEBXemgGySL_XhFRa1Ol-c','I went in for a Covid Rapid test and the staff was very nice and welcoming. They weren\'t aggressive with the swab and we got our results within 20 minutes.','2020-08-02 18:47:51.551000','2020-08-02 18:47:51.551000',5,'Emerie Morales','https://lh3.googleusercontent.com/-_nubT4nYyzs/AAAAAAAAAAI/AAAAAAAADPs/AMZuuclVvJNReibvTkXeKuvVG07DFd59Yw/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21933),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2CvCaLp1VXMOq77efT5Ln69cTjoKQg6DTqosDJZKT3YfHTa04rucbIN1cJHjxy4QCKUjKICaU43wXqRjukzERxil0D5M','I really loved how Brodrick R, Bianca M., Dalia R., Alyssa P., and Briauna L. made our visit to the ER come out smoothly. They are so friendly and nice, and make sure that everything is clarified before getting seen by a doctor. I wouldn’t hope to come back but will be if necessary ❤️.','2020-08-13 23:29:08.986000','2020-08-13 23:29:08.986000',5,'Veronica Sanchez','https://lh5.googleusercontent.com/-WABbwuJrUQE/AAAAAAAAAAI/AAAAAAAABeM/AMZuuckoK-RRUEGP9OXBLy8QeZ_cww8kEQ/c0x00000000-cc-rp/photo.jpg','8918455867446117794',23082),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2cWOWEJS2iVWRLyZmD7GeQuYBsJuuE90Um8b56uOQdQ7T27i-hpo36Pxf_Yc9vsAly6CWzlR8Rx2Ss7QnS6WEsnvxdyA',NULL,'2020-07-06 21:53:41.946000','2020-07-06 21:53:41.946000',4,'catrin ahumada','https://lh3.googleusercontent.com/-DybZ0qORyDc/AAAAAAAAAAI/AAAAAAAAAAA/YPqCq9Ik0PA/c-rp-mo-br100/photo.jpg','14748677429039074158',21306),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2cYxBbVSiY6dIMNihDtTAy7vzqeO6VE28YEPLe4n_jl8dmeQx063BNUsu1CAuZf_ospWHY2JDj3UopF6jNNhDjHO7GKI','Going to the hospital ER, waiting dead hours to be seen is a thing of the pass, signature care is the best thing ever, before I was able to finishin filling out my paperwork I was already being seeing, love the service, doctor ZAJAC, MD, PAUL \nNurse: Konya D S super team work. The rest of the staff amazing, what else can I say when everything was just perfect. thanks for the stickers an the great time in suck a bad day...','2019-04-26 11:33:36.575000','2019-04-26 11:33:36.575000',5,'_ LuMagraal','https://lh3.googleusercontent.com/-ssV77wnQyOw/AAAAAAAAAAI/AAAAAAAAAAA/qiTBDDnL97k/c-rp-mo-br100/photo.jpg','2694018788013845459',6166),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2db_yG8qNtLbmbNpEpiFceLcIhit2nJQ0_O85dESCoBO8112vTbjCzE5bsGqJTyzTF-iPPIRLev-CtD0d5_-rDzLk_Ko','The staff at this facility is caring, professional and attentive. The facility is clean and in great condition. I am glad I found this emergency room.','2019-07-13 02:18:27.815000','2019-07-13 02:18:27.815000',5,'Gina King','https://lh5.googleusercontent.com/-XHFhGXZ2nX0/AAAAAAAAAAI/AAAAAAAAAAA/4HNLJkwZm2s/c-rp-mo-br100/photo.jpg','17394740196501090048',4630),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dCifbTcd0YCPWii3s-5Nk3gNgDVoNmeQPy6jKt7JZRlyIhiPnurdU12TBOwy8dwtEBNfdFTyiD3No0MtFcJYXA1ywlo',NULL,'2018-02-11 21:30:12.377000','2018-02-11 21:30:12.377000',5,'Jeremy McFarlaighn','https://lh6.googleusercontent.com/-AdIk7jTsZnA/AAAAAAAAAAI/AAAAAAAAAAA/8uWer7XfPzA/c-rp-mo-br100/photo.jpg','16590124370714063921',3862),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2DEC_0_Fr-8m2HYMPVuDcIjxhDM1Rmml5fK02x6xBRk_pbpt2AFK_SfXzA_jJYsyRiPHE-_JvfJ4DZpBhkr-TLl2mDoA','Super fast and all the workers were extremely nice and polite','2019-08-14 20:25:50.943000','2019-08-14 20:25:50.943000',5,'Jason Norton','https://lh5.googleusercontent.com/-_RWvv2dFV7E/AAAAAAAAAAI/AAAAAAAAAAA/fyYkm02qWjA/c-rp-mo-br100/photo.jpg','13486358490203335051',859),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dh3vaLJFQCW69at-F6T63fBWSbHm8Q4pv0Dx-6FMslfKF4SRzL7Qvdi-NAP8VSXszwhyQnipOzeZCM7Asu8AiggINtc','I was in a great deal of pain when I walked in. The staff was extremely helpful and polite. The wait time was less than 5 min instead of hours at larger facilities and they can perform the same exams and care. I hope I do not need to return, but if I did I would definitely go back here.','2019-06-13 12:51:14.382000','2019-06-13 12:51:14.382000',5,'Paula G0910','https://lh6.googleusercontent.com/-WOWkoSeMEeQ/AAAAAAAAAAI/AAAAAAAAAAA/n1w4-ThHUhM/c-rp-mo-br100/photo.jpg','14567670160750071148',1310),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2DHge00r28oEZlKXxISYfBZnODfjkCCDi9L10_Ca0WwEEccuvgBrXaVmY0hzQ3bzMHKao2--jM8-nI3hYi9Y0fMsEXQg',NULL,'2020-01-18 22:44:17.663000','2020-01-18 22:44:17.663000',5,'Keeley Thomas','https://lh5.googleusercontent.com/-sC5wKDsS4Rs/AAAAAAAAAAI/AAAAAAAAAAA/XfJlGesM9xc/c-rp-mo-br100/photo.jpg','3272657195432704501',10074),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dhJqGiLWxuFLY3P2qO_4qAnWzbLWkLQlKBbMtc8uDk5X17RhLSd2XfhNUKGLlujRFasCB8fjl9xvZPD0Yt0du9oFCps','Dr Dang and his staff were extremely courteous and professional. The nurse (Stephanie) on duty was kind and considerate. From the second I walked in the door to register the Registration attendant Maya was extremely friendly and welcoming. I highly recommend Signature Care Westchase!!!!!!!','2020-01-15 21:07:46.622000','2020-01-15 21:07:46.622000',5,'Doug Brisco','https://lh4.googleusercontent.com/-_3IVAqTNFlo/AAAAAAAAAAI/AAAAAAAAAAA/v2O9JoMclb4/c-rp-mo-br100/photo.jpg','12541597562633926366',9658),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dISnzaOacx7eZH3g2BgeLkcAnEfiT7uTHLBvFAa2XvU0tE19__mO_kxjYKfbDbHZS176cI2l8jOeLphXHE9mS036Ao8','They were super friendly and funny! The doctors and nurse, Anthony, explained everything thoroughly and were extremely helpful when I was sick.','2018-05-26 18:17:13.675000','2018-05-26 18:17:13.675000',5,'Noelle Reed','https://lh3.googleusercontent.com/-usYMDs_yINg/AAAAAAAAAAI/AAAAAAAAAAA/UWIJ0NmdneE/c-rp-mo-br100/photo.jpg','16590124370714063921',3824),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2DkGyKI3Uwz4tnDrGCmvfTUyA2luyWypG7fOjNuDrWfibaHYw5KztdR_e1k4yk69EdK8TSb-qMr5gz0WPT-6WXI-nSVM','Cody and Nydia helped my father, this facility is friendly and the service is quick. 🙏🏼','2020-08-18 19:25:02.979000','2020-08-18 19:25:02.979000',5,'Natalie Nicole Bugarin','https://lh3.googleusercontent.com/a-/AOh14Ggh1JKbhvYzu6p2eX7WZ0dResGk9iXCtnldBUNYug=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2DLOi9gglYsMEG9_aQXKimRbuoarS69wmAWYHno7GlM-TiSTMKp4mjTNMNejcfosQ8MxOFlKGciPRL_gvfTTfKRk32Po','great customer service! Alvean , Dr Iheme, And Jocelyn A were very polite . Thank you guys for making this place feel like Home!','2019-12-04 16:37:11.172000','2019-12-04 16:37:11.172000',5,'Ramasses D','https://lh3.googleusercontent.com/-x-iQz2AR8rY/AAAAAAAAAAI/AAAAAAAAAAA/9V9iW_aX9Zc/c-rp-mo-br100/photo.jpg','16389487648212004696',2583),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2DprtOnMSqrVdTY5IoJocr6-QVpAKzbKk_sjQh2TynhhxOWrJvElcz_Po0ZNeuWJxiXLOOEVvACz1ijsXjprnHmwCoZM','We had no idea what to expect coming in here for my boyfriend who injured his shoulder. From the moment we walked into the ER care everyone was very welcoming! Alexis helped accommodate my boyfriend when he was having trouble figuring out which insurance he has. Anthony accomated him immediately and helped us feel so much better! Dr. Jaber was right in 5 minutes later and assisted his needs and explained everything that was wrong. Victoria was very helpful even with my boyfriend almost passing out while getting an x-ray. This is the place to go to if need medical assistance!','2018-09-02 21:03:40.467000','2018-09-02 21:03:40.467000',5,'Mikayla Gutierrez','https://lh6.googleusercontent.com/-C9ymwGVT_Jk/AAAAAAAAAAI/AAAAAAAAAAA/66wX8rqsMx4/c-rp-mo-br100/photo.jpg','16590124370714063921',3748),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2DvPylfpiVI37dhuwxKpC4KMQiN-oLg9dk-0xU4su7R-bKCbgW1QVQXYDNkRJtSlX6zpfudtq-SNeJh5YTGyoMveUyiE','clean, orderly and relatively quick considering the current situation. made appt at 3pm & was done by 4:30.','2020-07-22 15:02:31.743000','2020-07-22 15:02:31.743000',5,'Jessica Kobe','https://lh4.googleusercontent.com/-4g_th_3Y9jo/AAAAAAAAAAI/AAAAAAAAAAA/8URwvpmZN9s/c-rp-mo-br100/photo.jpg','16590124370714063921',22667),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dw1FroYcpqeiYiY-orCLVfy8gnkAAUvRh0M8vpgpwS3-1fbDxfi9XvIwJSECod6oKr6Yu_FCvDraMv-A6oifn9VTGJA','Super fast and caring staff...made sure u were feeling better before leaving...','2019-12-15 07:18:49.806000','2019-12-10 16:12:32.824000',4,'Katja Anderson','https://lh6.googleusercontent.com/-vurjrsGkZ_g/AAAAAAAAAAI/AAAAAAAAAAA/T1tnumwrGRc/c-rp-mo-br100/photo.jpg','2694018788013845459',5993),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dy1JDQvqBneHxApqqKFzirs7gGTjCdn_Wq58tOAZinD1ApYA_2x2wxsU7hgYGT4p8PFfVihQ5ZlRFEQJu_3tFUt2VXU',NULL,'2019-11-30 20:00:46.161000','2019-11-30 20:00:46.161000',5,'Brandon Centeno','https://lh4.googleusercontent.com/-0Q1wC_wxTP8/AAAAAAAAAAI/AAAAAAAAAAA/kDpTdx98lDc/c-rp-mo-br100/photo.jpg','16389487648212004696',2603),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2dzqGLGDyseMH3scxAyZJSFVM5TS2ScRL0DOEu2z-XDFV41nXQ0QP-wRUGRTvxmLvuFCjLBRI4DH2nkSt6eDk7-qAlWY','Laura was really nice!','2018-08-08 20:54:38.038000','2018-08-08 20:54:38.038000',5,'Porsha Ferguson','https://lh3.googleusercontent.com/-VU35NhU_75Y/AAAAAAAAAAI/AAAAAAAAAAA/erFpQ2Dnhe4/c-rp-mo-br100/photo.jpg','3511292162159714121',7652),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2E0o4QVuVBo8nmjIcq8KVvRIQj3Y0AZQKz4iv_cUDLXBXKqBN4RtnDV_y9I97sV6dqp3nyt9Qt7EuAe15rw_0XQbrV04','Awesome experience with such a caring and kind hearted staff. Dr. Daniels, Rollie, Stephanie R, Stephanie P and Natalia','2020-08-12 05:18:46.419000','2020-08-12 05:18:46.419000',5,'Stephanie Perez','https://lh5.googleusercontent.com/-twfCI2PktMw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmuS56bQC31dLQNCLUFv14QQOS_kw/c0x00000000-cc-rp/photo.jpg','8679688254631342173',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2e4202wxImmaNy0JHwFQIgYkeDKGPvjLQZd6itC1hlnRXN2tCIbega74dl-xwoIv94U4J4uU1VnfQO7dZ4j7CLCg_fYk','My experience with signature care is excellent. I am taking care off very well. The staff were all nice more specially doctor Ding he explained to me thoroughly the result of my diagnostic. I would highly recommend SignatureCare for emergency. Keep up the good work and all the best for your future emergency patient, i know their in good hand!!!','2020-02-28 15:43:09.851000','2020-02-28 15:43:09.851000',5,'E R','https://lh5.googleusercontent.com/-gVyZV6A9oeQ/AAAAAAAAAAI/AAAAAAAAAAA/S7sLnGXppcE/c-rp-mo-br100/photo.jpg','8918455867446117794',17450),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2e4yECqy0syiDzGymk_9elHN9tc6w_Uxpum83gvoLfAObhfqOwvgjOiDJ-6vwY0FPDsmqPVD4D2uf9ZKwgsgPgk6BJyk','Linda was very helpful and friendly she made my registration fast and easy. Dr. Ashbrooks, Michelle and Christie were all very friendly and professional, I will certainly come here again.','2019-03-15 02:24:35.848000','2019-03-15 02:24:35.848000',5,'crystal noiel','https://lh3.googleusercontent.com/-AxmSE9nbkX0/AAAAAAAAAAI/AAAAAAAAAAA/JoBf61Z3fMI/c-rp-mo-br100/photo.jpg','3272657195432704501',6991),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2e7MP5b8uvvnpDimpry04j6xtXRVBCH-SQhqbkFXeQX5R9UyPBgspRbz4vlQJlNSu_wgQgMolMWF_e9O1utZuLfyPBOw','Er tech Delpha \nNurse Leo\nRad tech Carolyn\nReg Jolynn\nAnd doctor plante, all took great care of me and really showed care. Thank you guys so much 👍👍👍','2019-09-25 22:59:21.067000','2019-09-25 22:59:21.067000',5,'Jervonte Amie','https://lh4.googleusercontent.com/-RmTBGhpU9to/AAAAAAAAAAI/AAAAAAAAAAA/LiEuTU5HK5Y/c-rp-mo-br100/photo.jpg','13486358490203335051',815),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2e9oLglgivS_WaUdh86xa7ORsU6wCmr8p4SmhKWGgXuj2hwvESPk81VR_u4xtTTHU_v1BAMKTW-N00UxrO8P_Vyh278Y','Excellent staff! All the way from the front desk to all the nurses and doctors.Dr. Jolly was great! Very informative and great bed side manner. Nurses Gina and Regina took great care of my Dad. All the techs who performed the Echo gram, X-rays and CT Scan along with John , Natalie and the night crew are all awesome! Everyone had great and positive attitudes. Very helpful as well. I would highly recommend them to anyone who has any medical issue. beautiful clean place inside and out. Thank you guys for my experience!','2019-12-11 23:32:22.123000','2019-12-11 23:32:22.123000',5,'Phnix Jessie','https://lh4.googleusercontent.com/-ExAksIX5DfQ/AAAAAAAAAAI/AAAAAAAAAAA/m0sm1h0JOic/c-rp-mo-br100/photo.jpg','14567670160750071148',1176),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2eBaMOJv__Inx6TsgQw-RmzLootWQUJ3JH26YxYz83mjMqxCw7tuor7T8GouOHfqffYmo_FC__jpDRJVGFkiHcRvQ6ow','Great experience! Dr Huerta, Savanna, Jaime and Lisa helped make my experience so quick and amazing. So worth it!','2019-06-13 06:34:10.492000','2019-06-12 15:58:52.758000',5,'Mandy Duran','https://lh5.googleusercontent.com/-QLx90_p8wao/AAAAAAAAAAI/AAAAAAAAAAA/dSJ0LdjHWRQ/c-rp-mo-br100/photo.jpg','13486358490203335051',966),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EClsLUsrSUH9uNg2WDgsh3I7ooNSmqxJrY-Hl8y3B163PPZVixwjWZMN0lh0v8FaruOh_01X74sXa0FGtLvTsx6KFvo','I had an abscess under my arm and was nervous to get it checked. When I went to signature care, I felt comfortable from the minute I walked in. The place was clean and the staff were friendly. They explained every procedure to me and before I left, they made sure all my questions were answered. I will definitely recommend this place to friends and family. Great job Dr Chen, Eda and Stephanie.','2017-06-12 20:15:30.931000','2017-06-12 20:15:30.931000',5,'nana akua Somuah','https://lh6.googleusercontent.com/-fQ8LRCSnBVk/AAAAAAAAAAI/AAAAAAAAAAA/T2Nru2XP0xo/c-rp-mo-br100/photo.jpg','17394740196501090048',5037),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ecZrtVx_hdUIRINUvW6ucPyaGjTRA_rT8sHmc4EvqmiahlKhxll5UP_El1UYJP_vl_MCfLuQAD1nd1dbCKrj1PH9zAs','Wonderful places and excellent services. Rollie, Natalia, and Stephanie are a great asset to your company','2020-01-27 01:49:49.487000','2020-01-27 01:49:49.487000',5,'Francesca Nelson','https://lh5.googleusercontent.com/-gzn9q6uiZtM/AAAAAAAAAAI/AAAAAAAAAAA/AWTbEZklmOE/c-rp-mo-br100/photo.jpg','8679688254631342173',10330),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EeQ4ZBdrBRiLWjIJDHahzqwv_iI3_YKR-Shg2wTXsD2vi0KHzyMcq1Ls3aL6i7sMzSnT89F9Nw89oi8yp0CSzh0sqfQ','I came here after a terrible experience at another ER where the doctors ignored my complaints and assumed what was wrong to the detriment of my health. This ER was the complete opposite. The doctors carefully listened to me and did every test necessary to find the root of my complaints and correctly diagnose me. Dr. Ankunyili was very nice and determined to get me better. Everyone from the nurses (Laura and Gina) to the radiology tech who did my scans was so nice and helpful. Hopefully I don’t need an ER again but if I do, I will be here.','2019-01-09 23:25:33.513000','2019-01-09 23:25:33.513000',5,'Allison G','https://lh6.googleusercontent.com/-lZv-pIyqSwQ/AAAAAAAAAAI/AAAAAAAAAAA/tLf3lSSdHh8/c-rp-mo-br100/photo.jpg','3511292162159714121',7501),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EfyE5E1b4I2H3RAg0udtQeiwDNfOTejcg0mqPGXroqPsEbZjfw5oNDydEIHC2di2Toy2Mp69mnvridOwJjQ0XffbaxE','From the moment I walked it everybody on the list was absolutely amazing. Definitely take care of you','2019-08-31 01:30:53.969000','2019-08-31 01:30:53.969000',5,'Breanna Dzurikanin','https://lh3.googleusercontent.com/-6r4hEi6eOL8/AAAAAAAAAAI/AAAAAAAAAAA/45gf-67WS6o/c-rp-mo-br100/photo.jpg','12541597562633926366',444),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EIzcE75yBkgbItgljgW_-gMVnPIv5zoIePFuV9vOWaFe0Vrd842hxZ1tDPMGAaqjxpr0bYBTwDHzTMbIafnAoK2xkRo','Came in with my crazy husband... he is always doing crazy stuff. But as soon as we walked in to emergency room we felt very welcome. Tanishia was a very welcoming offering drinks and treats. We love her. Dr. Thomas stitched up husband and nurse Sarah G helped us get in and out.','2020-01-17 08:58:39.311000','2020-01-17 08:58:39.311000',5,'Tonya Zepeda','https://lh4.googleusercontent.com/-sWdW8hZINqY/AAAAAAAAAAI/AAAAAAAAAAA/W-1DiTruSnk/c-rp-mo-br100/photo.jpg','17898197009688164559',9991),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ejbPsZUbg9hsdOPP8hXf4ePJuRCiDtOv_ld8uDHPvD_ZSzO1dH13sZglsqO2qi_UzkU8a6oV-0UX0t9itgDej4qZG2o','Went to get tested, social distancing, making sure it was not overcrowded, and getting patients including myself in at a timely matter, staff was very nice and comforting. Front staff had a bit of a attitude. But I can completely understand it can be overwhelming and stressful. So no worries. But over all I received my results in a timely matter and service was great! Thanks!!!','2020-07-08 02:46:15.176000','2020-07-08 02:46:15.176000',5,'Vanessa Zamora','https://lh3.googleusercontent.com/a-/AOh14Gh0kVKyLnOE3GEKT5QiMnMm7RR5fizic1vcAVUKRQ=c0x00000000-cc-rp','14567670160750071148',21368),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EKKlnJK1KHCEHAQ9MTZyQqgzRV1bW0ZfU4jdl4Y7YftnrZqleTNDek-UwRxrYUkNrjzG9dKLmb09xASW1AQLiFhjP2o','Dr. Jones was Phenomenal At his job.','2019-02-24 15:47:11.413000','2019-02-24 15:47:11.413000',5,'Aaleisa Tarantino','https://lh4.googleusercontent.com/-I5JB1jg2cnw/AAAAAAAAAAI/AAAAAAAAAAA/jluFjhlvxV4/c-rp-mo-br100/photo.jpg','3272657195432704501',7004),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2embK730b_Fywx-_amZMfbhjA09pH6MtKp9sWEQE7EKZqkHgbJP42vDjGHQsmBY42peWseJ18WQJGnLTWL_EbD0A1yJs','My family was exposed to Covid and I was extremely worried because my son has a heart condition and I wanted to find out immediately. We made an appointment the next day and got our results extremely fast .','2020-07-20 19:05:03.437000','2020-07-20 19:05:03.437000',5,'Denise Soto','https://lh3.googleusercontent.com/-GftXwy21Jkk/AAAAAAAAAAI/AAAAAAAAAAA/ejNT5ErzW2g/c-rp-mo-br100/photo.jpg','6521947413723274945',22227),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EorNizENrUSjsGTif_uBeoYU9OaYtK1Yf47RG9QLq81eNCUC53452XdooE7trsVOCLxvXGnBUOl3d_dSGCe8_hMatp8','Dr. Patel and staff were professional, fast, detailed and took very good care of my daughter. The facility is clean and entire staff was wonderful. If you need emergency care, this is the place to go.','2019-07-12 12:13:38.396000','2019-07-12 12:13:38.396000',5,'Tana Poitevint','https://lh4.googleusercontent.com/-WrwSDWGs7fE/AAAAAAAAAAI/AAAAAAAAAAA/SwbQfLus0hc/c-rp-mo-br100/photo.jpg','3511292162159714121',7254),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2EP_wg6BK56Suq08sGGrTV-gCUpVV1mTpDaWjMi0wbCRUyNTfHw02X7x9uKgQJ37V1EmrCotfl7hUVVa54AHFjE8YhKY','I had to stop by the other day for covid testing and Jessica made the experience as delightful and easy could be in these tumultuous times.','2020-07-16 18:01:36.916000','2020-07-16 18:01:36.916000',5,'christina soto','https://lh3.googleusercontent.com/-u4qoofGboe0/AAAAAAAAAAI/AAAAAAAAAAA/iHGbJIEhXEo/c-rp-mo-br100/photo.jpg','14748677429039074158',21756),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ErqNxZfbhkE99ti2Z6VYYqs4nkQ8wEwHp8cEnEPyt8P1MZKQWnAxN0y_zorG527RoGOjwcclYHXGSWZa21M3rPuIzWc','Best experience in the worst moment! I came in with severe abdominal pain. They got me in very quickly. Everyone was absolutely amazing. The place was incredibly clean and comfortable. My nurse Joseph immediately got me on an IV with pain and anti nausea medication, very sweet guy. The tech Norma is literally the most amazing lady. Also Dr. Ortiz was very thorough in helping me. I\'ve never felt more comfortable or had such good care anywhere else. If I could give them 100 stars I definitely would haha. Thank you guys!!!! <3','2018-11-27 04:44:02.498000','2018-11-27 04:44:02.498000',5,'Lauryn fellows','https://lh4.googleusercontent.com/-kkwY6nOCx-w/AAAAAAAAAAI/AAAAAAAAAAA/GcB8CW1GjJY/c-rp-mo-br100/photo.jpg','14567670160750071148',1455),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2etf9dJETM1GjmuAILbv17PoAn9nDpysNqSM9rutopOOJnFpWRfzLjYQXP-1jJ7AcdPZgVqfekyN_c9x-g4atJjZoQKQ','Visited on Sunday and could not be happier with the experience. They got us checked in and called back really quickly. Kristina A. was excellent in taking care of us and helping ease any worries for me as a Dad and for my son who was receiving treatment. Thank you Kristina!','2020-08-18 05:00:43.840000','2020-08-18 05:00:43.840000',5,'Chris Baez','https://lh3.googleusercontent.com/a-/AOh14GhXno6yt2qqprhCv5De3I40Vw8wOH0flF_ds7Qysg=c0x00000000-cc-rp','12541597562633926366',22999),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2eV6THUde7wqJ27Ov8GfRLWsiHVPEly34nLL-O0lh0j7nthRCKN-ZAl1F6FU9d6e9RRLg9TK-K-HBnU9iKAVo9KD_Gog','Excellent service. Friendly people. If you need to be here this is the place to come.','2019-12-24 23:30:51.219000','2019-12-24 23:30:51.219000',5,'Jennifer Parras','https://lh5.googleusercontent.com/-vxfBbAAHhYg/AAAAAAAAAAI/AAAAAAAAAAA/qJdEXkn1isU/c-rp-mo-br100/photo.jpg','13486358490203335051',662),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ewrLtyRYrF-NH0mgDHlbgP46SKmYvoF6d33r5xPRwpw8u5ySt_JSDcD6nbL-UElEwVvUD6zx9cjD-K-cFqYtw4_yJEw',NULL,'2020-07-14 20:27:03.168000','2020-07-14 20:27:03.168000',1,'wyverne isiaih','https://lh3.googleusercontent.com/a-/AOh14GiM2aLm9uH8n--oSvUUH5iutHIkXmu3yBDXMr5R=c0x00000000-cc-rp','3272657195432704501',22126); INSERT INTO `review_review` VALUES ('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fBUExekiGHOcu2oUiZ56Gzt91x3I1OLyLe9UohzMl-0q-IdyqtKBwoH70P0EqkxQtlu33J-WuLllCzYSJFOD34sjLj0','This is hands down the best Emergency Room I have been too!!. Loved it. Service from the receptionist and the nurses/tech Genesis, John, Kristina ,and Mayra were all very nice and welcoming and Dr. Daniels was so professional, detailed and was soo nice definitely will be my to go to ER from now on.!!!','2019-08-04 18:35:04.131000','2019-08-04 18:35:04.131000',5,'Carmen Zuniga','https://lh3.googleusercontent.com/-6x-ZWv70f7U/AAAAAAAAAAI/AAAAAAAAAAA/-go-r2zbXso/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',464),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fow3GuIwuRnKOT-88K_moOBQwZ4FY47MLJhcXBLWKuaYDk8xsL8T2rTah7QfBx-BeMiksIbWjCNunZEGETFoz6yu2qc','Everyone at signature care was extremely friendly and helpful. Would definitely recommend their services.','2017-01-18 00:25:31.961000','2017-01-18 00:25:31.961000',5,'Blair Butler','https://lh3.googleusercontent.com/-zoWF6vMpQRE/AAAAAAAAAAI/AAAAAAAAAAA/TUk2dKcKz90/c-rp-mo-br100/photo.jpg','3511292162159714121',7899),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fQa3fjBcEJkzPa8qB96R3qzV1cFG43DzqH8YE43SDinDzT9PduoIFeLTmEqDMM5l-6bxi2Kw0Ci_CKkyjJcz0ojHwRg',NULL,'2020-07-18 13:39:50.624000','2020-07-18 13:39:50.624000',5,'Nadia Llerenas','https://lh3.googleusercontent.com/a-/AOh14GjHlpJnn3lDwfE682lG7CRgbnHcHI_PCBHurfBO-Q=c0x00000000-cc-rp','17898197009688164559',22095),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fSM3qlRwtNylPLGGVdQs8NcRfJ9iYAwfTWS8Mp9lVIZWyFuOpyMIHpukb5CxpO4nUk_PwiK57BjjTNcP6MLJNzedz5k','This is our go-to place. The staff is amazing, professional, and efficient. I love how the ER doctors are not only great at what they do, but also very practical in their recommendations. Quick service, kind bedside manner, clean facilities, very kid-friendly ER room (cute Nemo theme in one of them with Disney Channel playing on the TV), and great reception with Dee. I definitely recommend!','2017-12-01 02:43:30.966000','2017-12-01 02:43:30.966000',5,'Myra Williams','https://lh5.googleusercontent.com/-1qNnFAa4QZo/AAAAAAAAAAI/AAAAAAAAAAA/0m57iSJP5-Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1723),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fTdCZd6bqxCNXUG4jGZV3HgcPy2BCoxi8URYJsVlMrmUBCsjIqsUTYBX7C-Kd8ZyV0Bxas_mDU2foEmppGuDCPcF0jw','Ok I did not even go but had researched many other places and almost went inside. Helpful but expensive my 8 yo obviously could not be re bought so if looking for the best place that a with good MD and no wait you get what you pay for\nI read all the 1 star reviews here and other places that had legitimate 1 stars. This is all billing and sure some staff reviewed maybe but come on what 20 at most and who doesn’t for there business\n Over head is insanity for this type of business, and wouldn’t you want to make money to pay for school to become MD RN etc? So priority is patient first billing second as some places make sure $$$$ patient dies\nIf you worry insurance won’t cover call yourself first. Don’t expect to not be charged minor er visits at a no wait type place minimal. Trust me most places offer you coupons to 5 star them and I do not see that here so save your time looking if you want fast best now but be aware this is a business with low volume so of course the mark up is $$$$$$$$$$$$$','2020-06-14 08:36:36.153000','2020-06-14 08:36:36.153000',5,'katie Loden','https://lh4.googleusercontent.com/-sqRNiqCRJGU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckl22n6Y3zJtWj4dOQwCuVhYerN1Q/c0x00000000-cc-rp/photo.jpg','17898197009688164559',22100),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2FVbw_wfAxVHIkEdRyerLXFHtrjsj2pNIKTMX6nlC11e_cvRgVwasYStLQ6uMvmLknPP-gX9L7jhcrAjZivkwuFAWdTc','The service here was awesome and Dr Jeff was very nice. I would recommend going here if anyone have a pain problem with their teeth. The staff is there are awesome as well.','2019-07-12 15:31:39.146000','2019-07-12 15:31:39.146000',5,'jonathan kelly','https://lh6.googleusercontent.com/-I-Jf_LHDnaY/AAAAAAAAAAI/AAAAAAAAAAA/Ztheb2Hj6U4/c-rp-mo-br100/photo.jpg','2694018788013845459',6111),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2fYCbM3W7tT6pMQDH7WLVXI3O-yViz8fjIMuwczIRKwUGmzvoVPLQiwVE0QtI6yMzvKg0eTRhe0voHhXGWFROfgtL5yw',NULL,'2019-01-23 01:55:51.321000','2019-01-23 01:55:51.321000',4,'Esmeralda Sandoval','https://lh4.googleusercontent.com/-2rwo3E5tJn8/AAAAAAAAAAI/AAAAAAAAAAA/YFOOjFsqgN0/c-rp-mo-br100/photo.jpg','13486358490203335051',1094),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2g4ZU7plou3DJUlxPHfsEStfnPUNj3sqRw5Q2yHr1Ee2GYP7qvrSHbaG8UAsK7w5WGMODqnCZSPyW10DxlErina2yvDw','Very clean facility. Staff was warm and friendly. They had great snacks!','2020-02-22 05:50:17.806000','2020-02-22 05:50:17.806000',5,'Kaleia Porter','https://lh4.googleusercontent.com/-f8NyZ1pRdhw/AAAAAAAAAAI/AAAAAAAAAAA/KgRhyRII0fo/c-rp-mo-br100/photo.jpg','14904078213800803294',20991),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2g6iTG2Bkgrz4K7o7nzbEy5kEGHXoX54Fwqjm7szzER7mloZxrnz-FCDP54LGkR5NOIxhQ5m9zLjqxZ5e89BDEinchMg','Alvean\nMarcus\nPatricia\nThey were great had a wonderful experience.','2020-02-06 19:46:52.247000','2020-02-06 19:46:52.247000',5,'Latoya Perry','https://lh4.googleusercontent.com/-hGEEuLqCh2w/AAAAAAAAAAI/AAAAAAAAAAA/cBH_WimdsfI/c-rp-mo-br100/photo.jpg','16389487648212004696',22615),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2g7Biyssn4FpLl62tDWfHPwqRRoKo_FW_OyqyhvaWfm0UavUefQ_-QJQVqfNKkrcjBhBnb08R-zbr6zbvsQv1Y8Haex8','The people who work here took great care of me and I did not have to wait long at all to get in. The staff was great as well.','2019-11-14 00:04:53.560000','2019-11-14 00:04:53.560000',5,'Sarah Grace','https://lh6.googleusercontent.com/-O4bIPEhnJvU/AAAAAAAAAAI/AAAAAAAAAAA/gcDj39xK54s/c-rp-mo-br100/photo.jpg','16891069708558046635',4152),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2GaTRcMy4VpUIi5mz8g1PGRn33mI_meI2wSy69WeAolEMrMyjYfYAGRm-t8IO0MT6TUzbkQGYCVps9jZ--_s2U9K7DZY','Airianna was amazing at greeting me and Dr. Garcia was very amazing as well in taking care of me as well! I would most definitely recommend this hospital!','2017-08-22 00:51:03.782000','2017-08-22 00:51:03.782000',5,'Briona McGee','https://lh4.googleusercontent.com/-s52xbmt13Hs/AAAAAAAAAAI/AAAAAAAAAAA/oDxSg6uakKI/c-rp-mo-br100/photo.jpg','8918455867446117794',9367),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2GbguoV303r58ZHZ0oVJzkDSOWeGqJEfcln-hA5WrxIrcLJy35_z42ndTB_tVMBvB8vVEkw7akTrqE1ClYa8qKES88PU','This is the biggest scam. Set up in a college town where students (kids) do not know any better and just are not feeling good then you charge them hospital prices. Additionally receiving thousand dollars bills more than a year later. Your facility is unbelievable and you should be ashamed. This is down right FRAUD','2018-12-05 23:31:05.944000','2018-12-05 23:31:05.944000',1,'Jordan Allen','https://lh3.googleusercontent.com/-y428WBxr4P8/AAAAAAAAAAI/AAAAAAAAAAA/T5XSOp52b24/c-rp-mo-br100/photo.jpg','16590124370714063921',3623),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2gElAbPGwOEJHKw6yg6CRh7_d7iU9U0M8oCIyZPaD8RTHWban7L59hHWMxm7Sgvn0w0MgFTA4KurRqNIYRBHlvUCD_OA','my visit was good we had no problems they were very nice.','2020-08-02 20:31:11.172000','2020-08-02 20:31:11.172000',5,'Tamia Ortega','https://lh5.googleusercontent.com/-uLBkskwqwB8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmbRzaFv0BFuLRuT8LqC_5g3uhbBQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22193),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2gfOwjDDQ1RdWVjQMNiiZLeVM-tkgllLdkah7GqI9tK2I68_8p74WLHx2e2rpTGY6m6UHejGcFj6iVj9S34zbplN1eJE','Everybody here is nice. I feel safe here.','2020-01-29 10:50:02.631000','2020-01-24 05:40:14.303000',5,'Tien Tran','https://lh6.googleusercontent.com/-oA5CqzDq2_4/AAAAAAAAAAI/AAAAAAAAAAA/-rhDG-YahxQ/c-rp-mo-br100/photo.jpg','14567670160750071148',10137),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ghbwJfXDuw9SByIcTTn_KPd4_gaUJbpIDN5pNiRYEqsrQRJCozrznb2L8w75KVKIm17e1dN_5rDJF8m2c9ZKO3uVgaI','This was the best ER experience I have had. Registration was super prompt (thank you Miriam!), and the team that catered to me was nothing short of excellent. They were very thorough and made sure I was comfortable throughout my time there. A huge thank you to Dr. Patel, Rachel, and Jessica!','2019-02-21 04:05:27.958000','2019-02-21 04:05:27.958000',5,'Erin Radisi','https://lh6.googleusercontent.com/-cYPx05kWt3Y/AAAAAAAAAAI/AAAAAAAAAAA/wal8TZDWlWk/c-rp-mo-br100/photo.jpg','17898197009688164559',5840),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2gI0Up4yNgiJ_rGT0m99QFiowQt5ceAMocFQLRq8Yo2ot1nkry3-bRGJk_n3HqYJoA5IEILQTaf_UiYmO5wHRZvl0dfs','Patricia, Alvean, Marcus \nThey took good care of me while I was here','2020-01-15 23:37:32.239000','2020-01-15 23:37:32.239000',5,'ZAYY_ YT','https://lh4.googleusercontent.com/-AhL-_2uR5TI/AAAAAAAAAAI/AAAAAAAAAAA/tLUC0_yoN2s/c-rp-mo-br100/photo.jpg','16389487648212004696',9725),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2GJFypaI3B8NkZbm_b3EjzZ-Cfcy8Cm9Jww-wgE6o18oj588EmCzVuTWv7Ai6nQJEX69guMR_HZ2IRoldn7sDtOar3RA','Dr. Strarface is a great dr. Gave us great care.','2020-07-21 04:26:43.062000','2020-07-21 04:26:43.062000',5,'Sandra Knapp','https://lh3.googleusercontent.com/-RQweLVwIJLs/AAAAAAAAAAI/AAAAAAAAAAA/83dwiN0cTlk/c-rp-mo-br100/photo.jpg','14748677429039074158',21646),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2GkiLOqXRi3ncUi2kvCE9sebEFaoR5Ba1faX3JU_YYTuuQQYmSYl2SkGjv-bT5p2l4rXPZ0a12DdUhzqRHIhU0gjz1oc',NULL,'2017-05-12 05:10:25.874000','2017-05-12 05:10:25.874000',5,'Linda Murray','https://lh4.googleusercontent.com/-jGhmCUi0pFM/AAAAAAAAAAI/AAAAAAAAAAA/BrtM4SfH9fk/c-rp-mo-br100/photo.jpg','17394740196501090048',5057),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2gnxxGuUtEXGGsh3qqmT22-6X22vSpWkmCe3gfCCW7wCS_SS5fvBPexp0NEVTFVHgXFTOQ-uCsRctEhX5e2WFq5EdPpo','Very fast and knowledgeable. Excellent service','2019-11-25 22:26:46.941000','2019-11-25 22:26:46.941000',5,'Demond Wright','https://lh3.googleusercontent.com/-yGj9x2XcAWY/AAAAAAAAAAI/AAAAAAAAAAA/LrdNUqR6wi0/c-rp-mo-br100/photo.jpg','12541597562633926366',367),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2GRkusRpYJD4PMujeQyNtb0Y_B9WnhifOwGQvfKvjNyYpqz4C7WAOQ_viNP8f8syto9xFqW1aMWVj0xG5Ida3f-lKoQI','Customer services staff and other staff was very friendly and helpful from the beginning to the end of my treatment . Very professional staff.','2020-07-06 17:26:57.681000','2020-07-06 17:26:57.681000',5,'merial gibson','https://lh4.googleusercontent.com/-d6H-0qOhu3A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclycck3Rwx-6om6cCaSrywh_zOTnA/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21311),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2gsA0RspMIB6rkcZfjpeQXq-Ew1h-F-J_yp_HFD2GXI21CTp5AEUQ2tK0dtZwieu-61KbhhBkeyU91eQmRXMvCS3qTyE','I don\'t normally reas reviews because I figured the staff make the reviews up lol. After Today, I felt the need to write a review. I couldn\'t believe how Great Westchase staff is!!!!!!! Wang, Malissa, Jeff, and Scott treated me extremely well. All my questions were answered in detail. The team made me feel like my health was their main priority. I will definitely recommend Westchase Signature Care to anyone.','2019-05-23 01:58:04.447000','2019-05-23 01:58:04.447000',5,'Shorty Caston','https://lh4.googleusercontent.com/-PWxLhI11-zI/AAAAAAAAAAI/AAAAAAAAAAA/Gv2LDPvZVpI/c-rp-mo-br100/photo.jpg','12541597562633926366',504),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2GU8-Qkklgu8u0Xc9hxpzPmk3y3aGYqyyukuPwoP4W4kLUMg03m6G5oVEHkH16j7IkXShGA5RsohObe-_Le_c4_F1-34',NULL,'2019-12-28 01:15:06.790000','2019-12-28 01:15:06.790000',5,'Jeni Varghese','https://lh3.googleusercontent.com/-PI41vZ1Is1Q/AAAAAAAAAAI/AAAAAAAAAAA/v48ccY8P9jo/c-rp-mo-br100/photo.jpg','17898197009688164559',5319),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2GUzQmijpmd6gbpocZNXX8oD61QsWOB2Ro3_ukbRM2m7SwQtA5oJ6YhCIoQC97lp5tPOoOX6tR1basM4dehIYgze1EI0','The place was clean and the people there are friendly','2019-02-09 16:01:58.969000','2019-02-09 16:01:58.969000',5,'omar jelbi','https://lh6.googleusercontent.com/-ID28kJVXOB8/AAAAAAAAAAI/AAAAAAAAAAA/w80HJt6F8O8/c-rp-mo-br100/photo.jpg','8679688254631342173',8874),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Gvo_nWFRNyQmQuN72KN1eJkgXabPlfrqGRWJbQEScwMnxEkrnIgGpRrulx_UXyLqt-45hspI-TlyfEf225xYMB79Bck','Everyone was very nice and helpfull Kristina the nurse who helped me was excellent when I was called and then scott was really helpfull too and really nice and quyen was really professional. And Dr Ortiz was really nice when he came to check on me to see what was the problem. And when you get to the clinic you will be received by Jocelyn at the front desk real nice young lady.','2020-01-21 20:11:08.913000','2020-01-21 20:11:08.913000',5,'Erick Looza','https://lh6.googleusercontent.com/-ke9AT2H5_do/AAAAAAAAAAI/AAAAAAAAAAA/XOB3PRv5xM0/c-rp-mo-br100/photo.jpg','12541597562633926366',10365),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2GWQL6q4R4s2lqb7y1uVtmjWBM110vz9yI6F_-RP69TEVBAvRbFrmhCxHGJmsgn8VVe6qxPH14p0tuJdhAvoSne4SZx4','Had really bad acid reflux with coughing and some congestion. Their friendly staff took me right in and got me checked out and took care of problem. In and out within 45 minutes!! Loved it. Highly recommend them.','2018-08-05 14:11:24.367000','2018-08-05 14:11:24.367000',5,'Leo Ruiz','https://lh4.googleusercontent.com/-x2H2r8Hkdao/AAAAAAAAAAI/AAAAAAAAAAA/BIXMCanZDD4/c-rp-mo-br100/photo.jpg','14904078213800803294',2231),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2h3R-LmWyd4wNV8lTZwg9z892HAsp822GZTWnYL054-TS1P5EzA9GOkrwl9yvJ1ZPpnf6GHUYW45Wo_WEFwhO3y79Cpg','RN Anthony and Dr. Jaber were very nice and professional and made me feel at ease. I would recommend anyone to signature care.\n\n11/28/2019\nLorena is very professional and she got my wife checked in right away. Nurse Jacob gave my wife her meds on time and was very nice. Dr. Harjai was very professional and nice when he gave me and my wife her diagnosis and very patient. Y\'all are a wonderful team. And I would recommend signature care to anyone.','2019-11-28 23:21:39.297000','2019-11-28 23:21:39.297000',5,'Matt Matthews','https://lh6.googleusercontent.com/-qSa5sSJiJBY/AAAAAAAAAAI/AAAAAAAAAAA/WxU5VwnAtoY/c-rp-mo-br100/photo.jpg','16590124370714063921',3070),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2H4c0bZ8JNkkZLOmaH3juzvhWsQl2w0WNZZG3_v218udw6ZCkLbibIL1qM3Xl-b0as6unfsXOTr7n_isOvMjEYx77Hug','awesome expereience fast and great service nice people and best of all i didnt pay a single cent for copay','2018-08-29 20:44:47.352000','2018-08-29 20:44:47.352000',5,'fariya nadeen','https://lh6.googleusercontent.com/-zy32gE09c-w/AAAAAAAAAAI/AAAAAAAAAAA/fRXgiZ8nHyY/c-rp-mo-br100/photo.jpg','17394740196501090048',4813),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2H7Txrx8gsWRme0vL5pjpzBwxGsXpIg7bRG8HqA3XLZ4hCAbAG0hWT7a0bM-JZ0bZ7kUSwFBJ10RX5cQC4aIYXZpEJig','The environment is so modern but Is calm with a hint of warmth to it. Next, the staff is so wonderful! Very engaging with sincerity in their voice, seriously, major kudos. It\'s a Sunday, I was taken care of pretty quickly, but even if there would of been a small wait, the setting for the waiting room was pretty relaxing. I HIGHLY recommend this place. It will take care of your emergency needs in a courteous way that you will be flattered by all the attention and care. To the Montrose Signature Care team, good job guys!','2017-02-26 19:30:09.638000','2017-02-26 19:30:09.638000',5,'Jaws F','https://lh4.googleusercontent.com/-dNVzTHxyI-k/AAAAAAAAAAI/AAAAAAAAAAA/2pXZpDjiqss/c-rp-mo-br100/photo.jpg','3511292162159714121',7866),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2H89l0Q1iT9goPM5oKA1O99n825WbsOfjcharuTOeJGqnM22jMnmSfXzumeu7dDceGGHOaV1OwNYu1GNHtJqxA7G4MRw',NULL,'2019-10-13 22:24:45.877000','2019-10-13 22:24:45.877000',4,'Lillie Martin','https://lh4.googleusercontent.com/-qFADMsu9ll8/AAAAAAAAAAI/AAAAAAAAAAA/qJ191Z8lDdQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8118),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2H8TadHZlYYw802HKxxIIDmqF6zm_7-wRsWmpYMbloBUs08icNXT9iqQCugedtyo7iEiLRqgm9cnawIseHVOVQhOHfpM','Very friendly staff form the time we walked in the door. Amanda at registration was great. She got us in very fast. We were asked a number of times if we were comfortable and if we wanted something to drink or snack on. Dr. Dang was very kind and very knowledgeable. I would recommend to anyone in the Heights area to come here.','2019-08-07 01:32:37.800000','2019-08-07 01:32:37.800000',5,'Adam Hounshell','https://lh5.googleusercontent.com/--mAL0qJOmcw/AAAAAAAAAAI/AAAAAAAAAAA/d7fU1FrTGzM/c-rp-mo-br100/photo.jpg','14567670160750071148',1258),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2HcLc3V-QefFFDJS9YbcR0Fy4xFmweJaQzPVvtneh-t9M1nQvt3fvHVFnocnMLP--ISx-qBKfmfNKqrW3o-mDg7SgGEI','Exceptional staff and quality service! Highly recommend to anyone.','2018-12-22 06:02:40.153000','2018-12-22 06:02:40.153000',5,'Heather Ham','https://lh3.googleusercontent.com/-aypgPcl9i5o/AAAAAAAAAAI/AAAAAAAAAAA/fynRRD_bp60/c-rp-mo-br100/photo.jpg','8626688543755174284',8625),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hIS-2mhQcIV2e0L9aJhX4Ri7AuyglY2PsJ3p_VIo8JHR9gNpjyO9Wq29Gn6MbUCTZXJaHHAnLKyi8caJ4whct-Ww5S4','This was honestly the best medical experience I\'ve had in my life. I wish i could find a PCP I liked half as much as Dr. Miller or my nurse, Marty. I hadn\'t been to any emergency room in years and I had no idea it could be like this. I had blood work and cat scan done crazy fast. Prescriptions and a surgeon to follow up with. My husband and I agreed this is where we are going when/if we have another emergency.','2019-11-06 21:17:43.191000','2019-11-06 21:17:43.191000',5,'Rachel Bach','https://lh5.googleusercontent.com/-CbLZvwT4Wn0/AAAAAAAAAAI/AAAAAAAAAAA/BXOUMpAjREs/c-rp-mo-br100/photo.jpg','16891069708558046635',4157),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2HkAKSN_GPNUj9GUHKyMI92lqJOFNXDT6dnz6XD8fSQDs1URsakMlueiAPSERl4a_8wb3xRy9U3IhBSnF34aehgTf-94','I called them early in the moring and was greeted by the front desk rep, she was very kind. From the nurse Manny and doctor.. staff and treatment was great!!! Thank you all very much!!!','2020-02-18 15:48:31.674000','2020-02-18 15:48:31.674000',5,'Tina Hayes','https://lh4.googleusercontent.com/-TYikU9lPz-g/AAAAAAAAAAI/AAAAAAAAAAA/5rjQYkytWpo/c-rp-mo-br100/photo.jpg','6521947413723274945',14573),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2HKx7ZDSVUsIncCJP8HHMYmoY1wvX0O5sPUf12rc8783sM0pykOHVEAS1UJm1HyA3u017XRsjEzWVCHVbtO2ivBBLXTQ','Great service love this er Dr. Patel so polite and funny and sweet and caring so is both Rn’s tammi and Eda, Juan and Janet','2019-03-09 21:49:42.810000','2019-03-09 21:49:42.810000',5,'The Wilson Sisters','https://lh4.googleusercontent.com/-y7eD2Ur0PY4/AAAAAAAAAAI/AAAAAAAAAAA/279uIECy4T0/c-rp-mo-br100/photo.jpg','17394740196501090048',4715),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ho4qapq1VxHZuMD1R_TmZdoRZRsWk5j-IEm2voOaWnEtJpKy3s6PyrsXp_h6cdVDPzVpL6IntV9ADf0fsCtiDoPJ4ns','Dr.O’malley ,nurse Alvean ,radiology Shazia Er tech Olivia and registration Patricia made this experience for me a breeze and a lot quicker than hospitals.','2019-12-01 21:50:27.748000','2019-12-01 21:50:27.748000',5,'Nicol Ed','https://lh3.googleusercontent.com/-x0ZPCnT_wJY/AAAAAAAAAAI/AAAAAAAAAAA/bVWg8wa3P-k/c-rp-mo-br100/photo.jpg','16389487648212004696',2591),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2HrcW_IDdLLOa02ymRdbu5p2kXDxZPwFWsfBlBVy9uP4U7L8jK-Fo5MHxhVPv9uF9JbtdwbuOcTGB3PkQ2NKVMuZMpZI','the whole staff was so nice and helpful! Dr H was awesome, and so was the nursing staff (Jacob) and Liz at registration. i’ve been here a few times now and every experience has been awesome! would definitely recommend coming here!','2019-02-13 16:40:31.951000','2019-02-13 16:40:31.951000',5,'Julia Long','https://lh3.googleusercontent.com/-cunjZSNzPL4/AAAAAAAAAAI/AAAAAAAAAAA/C-iwOTpiRqI/c-rp-mo-br100/photo.jpg','16590124370714063921',3555),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2HrkMJdiwQO0eCDPuE_6zyGW3RWa-GWqSYI8xrOECdt5Sl9vFeNe8uXG8G3DPrjafXOGfqxw2qMWfwZW0kMWwODTCDhI','Clean place, great snacks and service, staff is kind and very helpful. Big thank you to DR.Edwards\nNurse Karen\nRad Tech Ricky\nER Tec Jaslyn\nRegistration Maryann','2020-03-02 19:20:28.564000','2020-03-02 19:20:28.564000',5,'Seren Derp','https://lh6.googleusercontent.com/-df1WPjGt7P0/AAAAAAAAAAI/AAAAAAAAAAA/pTDzdreArfk/c-rp-mo-br100/photo.jpg','8679688254631342173',14712),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hrxQXiZS00yD_IASkR7d6yrI5hZ28oHGguLsAEpzZQEP9G9rawHksVDziTMMLxhZ1a2gDzBDgljH6OMfLq8k0AMMAhs','From the receptionist, to the nurse, and the doctor.....they were all professional and made my son and I feel really comfortable. They provided fast and friendly service. I really enjoyed.','2017-03-01 18:53:04.678000','2017-03-01 18:53:04.678000',5,'Janiece Fowler','https://lh5.googleusercontent.com/-kp9NHsDVE1c/AAAAAAAAAAI/AAAAAAAAAAA/pHFm_wAYSrM/c-rp-mo-br100/photo.jpg','14567670160750071148',1875),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hTDYKCXbR4hrcW0GHTFC-T5kVbtfzdlGd-vYtkzLm1CL3Ng0K2HBnEDqu4sV_9vwXroxSJv1G04bwPAgo_tJjWD6now','I was not feeling well and did not want to sit at area hospital so I decided to come here for care. The moment I walked through the door I was greeted by the woman at the front desk who immediately acknowledged me and began to address my needs. I was placed in a room in a timely manner and cared for by the nurse with her compassion and wanting to make me comfortable. Dr Jones came in the room and was very knowledgeable about my symptoms and took very good care of me. I will definitely recommend this place to anyone who wants fast but excellent care.','2020-02-21 00:37:51.209000','2020-02-21 00:37:51.209000',5,'S. Ward','https://lh3.googleusercontent.com/-4BMXRjspmEI/AAAAAAAAAAI/AAAAAAAAAAA/wlUzqoNOwqs/c-rp-mo-br100/photo.jpg','2694018788013845459',14221),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hTQoZtquQmMQss9N1nB126d2_S4Ju0XOzSdiU0LtJIjjz4hrRkNYMSb-pjJ-pu821w71Vhgwt4LF9s7KjzoHNXY07es','Very welcoming experience here, They have answered all my questions and helped me so much . Thank you Dr Henderson , nurse Alvean A , Jocelyn A registration , and Sean our E R Tech.','2019-10-26 20:55:58.308000','2019-10-26 20:55:58.308000',5,'Gabriel Favela','https://lh4.googleusercontent.com/-QBn9uN_3awM/AAAAAAAAAAI/AAAAAAAAAAA/VQiHo4Yp_1A/c-rp-mo-br100/photo.jpg','16389487648212004696',2765),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2huovLUBA5E-tT-7m8HrmQ4Qd8Mm-zXlxZ4-jRR9vcQ1MulfiMkpfckbEIYAiLeD6n4VpmLt1y43RQRiJbr1E2b7zjvw','Dr. Werzanski, Nurse Jacob and Rad Tech, Morgan, were wonderful. We are assured that our son will be well taken care of if he gets sick during his years at A&M! Thank you!!','2019-08-18 17:07:51.376000','2019-08-18 17:07:51.376000',5,'Jeffrey Kajs','https://lh5.googleusercontent.com/-Wq3rpVmDC8g/AAAAAAAAAAI/AAAAAAAAAAA/CPesLCByZLI/c-rp-mo-br100/photo.jpg','16590124370714063921',3251),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hUu_A8x6A22jHd-afD-PbQ_HaTWyQrixyCKJPW4Sfq0BJk9gOUC9jGDlKfBIU5OnqesxUvEzENMe1KLBAMRGMdhm1ic','very friendly','2019-12-16 20:44:39.720000','2019-12-16 20:44:39.720000',5,'Saras life Adventure','https://lh5.googleusercontent.com/-C_TOv2nse_o/AAAAAAAAAAI/AAAAAAAAAAA/M4po07LkJRQ/c-rp-mo-br100/photo.jpg','8626688543755174284',14644),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2HWdYlmL65P0OiUbo6oT826vF2xrSUutSxV8XWCznWSsNn2VBUNNRUSUKj6qIlmKE1AVGfU7Q7MkLggV3SXfDh0lkq2k','Maya the receptionist was so nice. She made sure we were so comfortable in the lobby','2020-03-07 20:49:27.034000','2020-03-07 20:49:27.034000',5,'Nicole Sambol','https://lh4.googleusercontent.com/-aI7LYvhU1VY/AAAAAAAAAAI/AAAAAAAAAAA/LeKjChhrLmg/c-rp-mo-br100/photo.jpg','12541597562633926366',13308),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hWgHse3Ll1stUVAW8CRDebGrpxnmlXojx40kYsfTcuqBUo9mZFFQMbXSNeEDcWCNWjJj3AJP8Xe_mf7YJ2hh9BCGTTY','Meridith and Alvear very nice ladies I felt like at home. I found everything I need it. Thank for everything guys great job.','2020-02-05 22:00:58.829000','2020-02-05 22:00:58.829000',5,'Annie Trejo','https://lh6.googleusercontent.com/-0koUCjdgYzE/AAAAAAAAAAI/AAAAAAAAAAA/W6ha226QXKs/c-rp-mo-br100/photo.jpg','16389487648212004696',22627),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2HwlQdAhHpscbgxw3kFK78pEUM9Tc2qhnxeF1KyGgJDoRGqI8cEEGfyU2wus45AADa52x7QQFI3wMExxCUTX9An9JXL8','I had several cat bites on my arm and legs. Went in and right away I got service. Although at the time I thought I had only received bites on my arm, it later turned out my leg was also bitten and even though they had prescribed strong antibiotics, the bite was getting infected. I went in again, this time they had me in observation. I stayed at the montrose location and everyone was really kind and they gave us snack and drinks. My leg got better, would definitely recommend them.','2016-07-12 00:08:18.154000','2016-07-12 00:08:18.154000',5,'Kaethleen Siguenza','https://lh6.googleusercontent.com/-pQijmSgVu6M/AAAAAAAAAAI/AAAAAAAAAAA/F1naLCgymzY/c-rp-mo-br100/photo.jpg','14567670160750071148',2006),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hX50hQS0a55Kvv_ZZu-t7rImzhN4NWv7F44pkSbjCTqO5OfkQRGJ6cAobmBe4-zxww8GBOSXQmAmk2hZ_o8HN9gdUbc','Great service and great staff! Kept the place super clean and took great care of their patients!','2020-07-29 03:33:09.099000','2020-07-29 03:33:09.099000',5,'Rocky Ferony','https://lh3.googleusercontent.com/-A_2Cpat0lfI/AAAAAAAAAAI/AAAAAAAAAAA/9rTzbP2_rNE/c-rp-mo-br100/photo.jpg','2077061009497551125',22773),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hxCHxFpB40f_uPDtp9xAsAkOpYgnL9sK5yQmhYiEW7EY7YKUYKW-vT1ayCGCxr67aaD3wYExma7MVC-PfY9gP-W2roE','Wondal friendly staff at this convenient location!!! They did an awesome job from front desk to nurses and doctors. I would highly recommend .','2016-06-15 17:38:54.260000','2016-06-15 17:38:54.260000',5,'Shelly Varley','https://lh4.googleusercontent.com/-_MFkXbRo2kk/AAAAAAAAAAI/AAAAAAAAAAA/9iB5nfkaYZI/c-rp-mo-br100/photo.jpg','3511292162159714121',7982),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2hXhrR6sKkFMWgjjrtW2BH7NXzCOvQ9J3tf7SVW8y4xgbNYs2XwklHdxabugRdOLD8Ur0p0hbCV4ViL38veTDxmxPAVk','We had the BEST care!! The staff was extremely professional and caring. Jolynn was attentive and helpful, getting my upfront questions answered quickly. Manny was caring, kind and gave us time to ask questions. Made sure we were comfortable and ensured that if we had any questions he was close by. Tabitha was very accommodating and made us feel comfortable while caring for us. Dr. Plante was extremely knowledgeable and listened well. He has excellent bedside manner. Was very attentive and explained things well. He and the staff went above and beyond!! Extremely impressed and thankful to have such great care.','2019-08-09 15:17:56.251000','2019-08-09 15:17:56.251000',5,'jesika smith','https://lh3.googleusercontent.com/-E38CMzb62FE/AAAAAAAAAAI/AAAAAAAAAAA/MeJKNlvmlz4/c-rp-mo-br100/photo.jpg','6521947413723274945',8166),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2HyoIZoiETUF_MzoUVXAWFx-9pCjDZBWRg2AgtgPf1TyhtPgIhYvW1IfipNsZlZloW76I7B2HtRlLStjMhLqyhbeTSGg','The people at signature care are so amazing. They go above and beyond just to make you comfortable! They build relationships with people and treat them so well. I love signature care! I also love Adam, he is the coolest, sweetest most attentive manager I have ever met. Whether I am a client or a neigherbor (I work a few doors down) he is always so polite and respectful.','2018-03-11 13:34:09.007000','2018-03-11 13:34:09.007000',5,'ユキハミ','https://lh5.googleusercontent.com/-FDcyKXxY5Os/AAAAAAAAAAI/AAAAAAAAAAA/TT_svxnqnwE/c-rp-mo-br100/photo.jpg','16891069708558046635',4500),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2i41t6H7yjvVpkTwlpuVN81HFWwDl47qyCwTG535EB6ed7uVz2X51iagyluCY6Qn1Cu7g5qafQTBRplKBW8R-qLhQ2os','Dr Thomas listened to all concerns.\nNurse Susan , Tech Laura, Tech Daniel and the registration Briseida were all welcoming and friendly making the stay pleasant','2019-11-19 04:48:53.427000','2019-11-19 04:48:53.427000',5,'Aisha H','https://lh5.googleusercontent.com/-A9JqulmZg9E/AAAAAAAAAAI/AAAAAAAAAAA/imvUtMJm5Ms/c-rp-mo-br100/photo.jpg','17898197009688164559',5422),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2I4gwzlCHiBP7apSV7gQspmRSc3_IGPhfP5ODy9YDdDHYeBs-0rE8dO3spMXoJwzFkJ9tEO2DI-LQ3hVfh4Am0Xuv4Zk','Thank you, Ortiz, Sarah,Fatima, Daniel and Tanishia','2019-12-25 01:49:30.578000','2019-12-25 01:49:30.578000',5,'Luis Flores','https://lh5.googleusercontent.com/-t1IthVJ33Mc/AAAAAAAAAAI/AAAAAAAAAAA/YtFGe53WBzM/c-rp-mo-br100/photo.jpg','17898197009688164559',5330),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2iAnv2RLrYWlymm6eylX5pZv_kk6VxtYObE9v648TKIDaHn-N3UgsyhRxugDSNlbvJoBK5uChejE6uuNE68yEa7VoVn4','Jocelyn marcus and ekaterini. Get fast service and friendly people here','2020-01-13 19:50:11.827000','2020-01-13 19:50:11.827000',5,'Chantal Hayes','https://lh6.googleusercontent.com/-PeuFQgg3vWw/AAAAAAAAAAI/AAAAAAAAAAA/U0MPhy6AE6E/c-rp-mo-br100/photo.jpg','16389487648212004696',9733),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2IBt_dCJZlKkzZBicjotFX6T-_ruY023lvPKBWB17q2FpGs7RBgPd_uaBV8tpKZpVdWJuHSFKCHid-HLnlzdsFO8oUYA','Great staff ! Super friendly, made me feel at home. Dr.Edwards and nurses Robert and Rachel were great and the RAD Tech Joy and Tech Elen were super nice . Great facility . Definitely recommend.','2018-09-24 23:58:03.099000','2018-09-24 23:58:03.099000',5,'Raven Dugas','https://lh5.googleusercontent.com/-lFPTyK45BM4/AAAAAAAAAAI/AAAAAAAAAAA/pJCxefyxR50/c-rp-mo-br100/photo.jpg','17394740196501090048',4787),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ic5uuYaCHEtUmzGEdkGD6hKGMvE00Cs4dQhmyTcAoVQrzxoj5VmAvZwI-8OTJUJwCeM1NvgtU3PMqxEq7Eu6vlTBks4','I was having an allergic reaction to something so I went to SignatureCare and they were awesome! Fast, efficient and super friendly! The nurse made sure I got treated as fast as possible :)','2017-07-29 20:42:22.389000','2017-07-29 20:42:22.389000',5,'Dagny','https://lh4.googleusercontent.com/-lFCUgfvjSiM/AAAAAAAAAAI/AAAAAAAAAAA/UsU31GZK6YA/c-rp-mo-br100/photo.jpg','16891069708558046635',4544),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ICVE5r6jQrRLaQPVCTdRfHHeZXuPqQ2DGOB3ylalCG7Od7CFfwaMYYFw1-VQwHzJa_hF8BedTuHUTkAVj_IRof_u9Gc','I had a great experience at a facility especially the assistance of Ms.Ikita. She was soooo nice !','2018-12-11 13:34:39.311000','2018-12-11 13:34:39.311000',5,'Jaquita Ellis','https://lh6.googleusercontent.com/-Hh6r4jD6d-Y/AAAAAAAAAAI/AAAAAAAAAAA/U4uBplb4_vk/c-rp-mo-br100/photo.jpg','12541597562633926366',584),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ig4pnsCIGLuzk1rhdw-NMyeiY6Aa766gKAcWfmac1V2UDcxS2S2eRtsXpPCY_Y0w_TdFxWbpX4q0e7m9-T33tfD_jvc','Jose was awesome great service and Lisa h at front desk was helpful and courteous','2019-10-27 19:39:46.320000','2019-10-27 19:39:46.320000',5,'Chrystal Chavez','https://lh5.googleusercontent.com/-NBKE1u42_tQ/AAAAAAAAAAI/AAAAAAAAAAA/zLxxaOprW5U/c-rp-mo-br100/photo.jpg','13486358490203335051',763),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2il1wRhjrFPiqry1Jmqp-BUlXQRNDR7Tmq85R7HsT2XmyqTHzkYVauYZHg6GcN7Ndkq-Fm2UwTNfi0jHRd5N8yjY_4S0','Every one was very friendly and caring for my son Bethany and Adrianna were very prompt and helpful.','2019-05-25 12:54:04.170000','2019-05-25 12:54:04.170000',5,'Justin Townsley','https://lh6.googleusercontent.com/-tBPrUEeCqi8/AAAAAAAAAAI/AAAAAAAAAAA/k_mKOsIgMcg/c-rp-mo-br100/photo.jpg','6521947413723274945',8255),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ilgcBryD0bFBXQjscymiXW0wm9AM15kJxngnDq05HW6qbWoH3IRkUPMyNyd2O-VdaP8ys8ji4VZekQ8W8zttKmQUzRg','Dee and Dr. Grinblatas were so friendly, nice and caring. Best place to come when you cannot get in a normal doctor visit!','2018-10-22 16:09:33.542000','2018-10-22 16:09:33.542000',5,'Nicole Flores','https://lh3.googleusercontent.com/-C92S7thkVAk/AAAAAAAAAAI/AAAAAAAAAAA/bIJ1NxmCjTQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7569),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2IlIJUlLgt-D6q8YsakslWMADVvmXxrKP6Qt5jIkRHwDLf4CSVij28R5beDa4Fe3YKGhTOhZBts7Ipn1z6HHNLdJM8s8','Great fast service love all the staff here Dr Rose Ashli my nice and the front desk was great hospitality recommend to anyone','2020-05-29 22:37:24.573000','2020-05-29 22:37:24.573000',5,'Sony Hong','https://lh3.googleusercontent.com/-D9N5azMJEeI/AAAAAAAAAAI/AAAAAAAAAAA/70uFET70B0o/c-rp-mo-br100/photo.jpg','16891069708558046635',22695),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2iLIujhIZ1ie5zDXfBHGizBTJ2ENp1bEJp4QxK3W2rouvrJm3PAEFoOEHvoqeHrlxZSl_ffMA9_v7W2XuSQAmN0k1tEo','Exceptional experience; was receiving medical attention within a matter of minutes. The entire staff - Shelly, Dr.Jones and Earl were great.','2019-10-12 20:27:41.676000','2019-10-12 20:27:41.676000',5,'Ron Parungao','https://lh6.googleusercontent.com/-f06MkA2yjm4/AAAAAAAAAAI/AAAAAAAAAAA/mWqULCzlcEQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4184),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ImZ09w0aT1VamzcRvxP_UDtXNpgUb-zKsGdD_DB8w3ziD13SzIVyaO_-dQXReAJ8Y161tdhhp-UkarWiEWMnYsjV3Hg',NULL,'2020-01-22 22:38:32.590000','2020-01-22 22:38:32.590000',5,'Christina Shipp','https://lh5.googleusercontent.com/-r-zIpEx6Pfg/AAAAAAAAAAI/AAAAAAAAAAA/PYcMfOyh3kk/c-rp-mo-br100/photo.jpg','3272657195432704501',10287),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2IQ6E7SWINoQ-WSX2IsylpWgSkOdLCUcDJ3dTI2jrn1-5fH9LoJlgw9tmx9_SiRBYsRETKM2aAXQJVrtsm4Nl5SziL7Y','I had a horrible experience with Signature ER! I tried calling four of the locations and waited for over 45 min each to just get through the call line. Once I finally got through to a real person, she informed me that I should go the Heights location at 3:00 am to wait in line for the 5:00 am wrist band line. I did that only to find out that they changed their policy and that I would have to come back at 6:00 pm. I asked if they could help me get in touch with other Signature locations to see if I could get in at one of those locations..(It takes over 40 minutes to get through to ANY of those locations via phone) but they would not help me. \nMy initial frustration was that I was given false information on the phone after waiting on hold for over 45 min. Had I received the correct information on the phone or online yesterday, I would have gone last night to get a wrist band! I was there from 3:00 - 5:00 am trying to reach any of the other ER24 facilities online or by phone, trying to find another facility. My biggest frustration was how rude they were and that they would not let me stay to try to locate another testing faculty! All I needed was a safe place to search online and to call the different locations, but they made me leave. They would not even let sit in my car in the parking lot to try to locate another cover testing location. I was obviously next to tears and pleaded for their help, but instead they were extremely uncaring and extremely unhelpful. The security guard seemed very caring and tried to be helpful, but they forced him to make me leave. At that point, all I wanted was a safe place to sit in my car while I continued to search online & via phone for a different test center...but they would not let me do that either. Cruel and uncaring front desk staff!!!!','2020-06-27 11:29:29.478000','2020-06-27 11:29:29.478000',1,'Debra McShane','https://lh3.googleusercontent.com/-emkzRanQLY4/AAAAAAAAAAI/AAAAAAAAAAA/CPiX1K5ZUSQ/c-rp-mo-br100/photo.jpg','3511292162159714121',21254),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2IrIVfsxL688J_MA5sLCrPSptlXrRx23hVVk_16iGo-ZugDK_H6j4rpFM9JCFd6EDXBHEp6OULzW4ZrAyf-znwXRPyVM','Surprisingly easy. Very nice and clean. Security was present. Fast check-in and friendly. Rooms huge and comfortable. For having to get stitches I felt like I was in and out. Very nice nurses and doctor. Would suggest adding Disney Jr. to the cable so my son could have been a little more entertained LOL. Checked out and security guard walked us out and even made sure we got in our vehicle and drive away. How\'s that for service! Would highly highly recommend.','2017-06-30 15:35:28.409000','2017-06-30 15:35:28.409000',5,'Julie Bloomer','https://lh5.googleusercontent.com/-NQFA5GXblTk/AAAAAAAAAAI/AAAAAAAAAAA/X4v4ySR6LpI/c-rp-mo-br100/photo.jpg','14567670160750071148',1803),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Iubl09HGzxfuIp4MPp7u93rlR05fWhk0M0f09h75vST2ygt3UvMti2eEFn_PsfBo5bMldRJTemdd39MWeov2_lZNhs0','During my visit I was taken care of by: \nDr. Wang \nNurse: Sarra A \nRadiology Tech: Sherwin P B \nFront Desk: Carly E B.\nFrom Carly at the front desk to my nurse and radiologist, it was an all around great experience. I felt such at ease. The wait time was low , they got me in and out in an manner able yet professional fashion. Dr. Wang was great . Would highly recommend .','2020-02-29 17:51:10.141000','2020-02-29 17:51:10.141000',4,'Jana Shakesnider','https://lh4.googleusercontent.com/-80J2taFQFZU/AAAAAAAAAAI/AAAAAAAAAAA/FVIeg-D0pjw/c-rp-mo-br100/photo.jpg','12541597562633926366',13325),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2iwzp2w2oIn4CTL3yZwJAEHaPkMMS8CiPhlYm85yed0LXZ9iICvuLsvp3gsMKeuf_ZgAGxBWxlzwB7XWc22a8h6hPtdU','The staff was very kind and helpful. Sonny was the first person EVER to do a venipuncture and succeed on the first try. Very impressive!','2020-01-28 21:17:45.096000','2020-01-28 21:17:45.096000',5,'Amy Collins','https://lh5.googleusercontent.com/-ipxSMMlNOCc/AAAAAAAAAAI/AAAAAAAAAAA/u3mxW2ev59E/c-rp-mo-br100/photo.jpg','8679688254631342173',14781),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ix5ZomG9XQYD2JEfEg3RqsCS7v_g7sT6HMR4FmFdYQn0E1-xdtJQcjtwniznovXXrAasFTbUi_3O4LJe_KU4ZwH9zEU','Everyone was very courteous, understanding and knowledgeable. Everyone greeted with a smile and willingness to answer all question we have. They went above and beyond anything we could\'ve ask for from the moment we walk thru that door. The decor and area overall was very welcoming. Big big thank you to Nurse: Sarah A G and Front Desk: Tanishia W. for their overall assistants and everything they were able to do to help us.','2019-10-25 00:14:24.298000','2019-10-25 00:14:24.298000',5,'Vinny Q.','https://lh5.googleusercontent.com/-VCkD9DDtiFM/AAAAAAAAAAI/AAAAAAAAAAA/gPqo-6fsWhA/c-rp-mo-br100/photo.jpg','17898197009688164559',5481),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2IXwwSekypzumjDaTNAWohwBF2MEDbne9lSKdSIaoSyjEx0j8bTL9ECjfOE3QeHeHdRQUJfAXGMYq68RDeywQ1swJh1A',NULL,'2019-03-28 17:42:30.029000','2019-03-28 17:42:30.029000',4,'nick Naca','https://lh6.googleusercontent.com/-cAvx7TD4HK0/AAAAAAAAAAI/AAAAAAAAAAA/98R3YRxMsTs/c-rp-mo-br100/photo.jpg','12541597562633926366',528),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Iy58udXZoreGmrbt6JoBDEwASgpvWQheGg6VMpz8lo3NHBCeqp68Rl7_4CS9soi13Uh5H09IdmaBT9DPnMjwIKxBdn0','This is my go to ER. The stuff is always friendly and very helpful. I have been visiting them since 2015. My whole family goes there when we need immediate medical attention.','2018-10-01 02:59:23.604000','2018-10-01 02:59:23.604000',5,'nicky ni','https://lh3.googleusercontent.com/-3Un4ljbUR-o/AAAAAAAAAAI/AAAAAAAAAAA/RyAHGX9Ufyo/c-rp-mo-br100/photo.jpg','17394740196501090048',4780),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2iyuNV93f-OcgcWl8hcUYYgLR14LUx4vjNC9IY8IiApjgDGEwqFn8yUns-B5wCgAZe5svuEYkZ9DJm7Z5jL3c8t72i1g','The service was fast and amazing!! Aerial, Dr. Tran, Irving, Tino, and Carmella were really great with treatment and answering all the questions I had. I expected to be here for hours since it is an emergency clinic, but I was taken care of in no time!!','2019-09-02 04:34:07.137000','2019-09-02 04:34:07.137000',5,'Jo M','https://lh4.googleusercontent.com/-DvrzHuOhYeA/AAAAAAAAAAI/AAAAAAAAAAA/4KiHdhmBFAk/c-rp-mo-br100/photo.jpg','12541597562633926366',436),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2J_EltgioLfGkH-E_gmdA_-RP_06myiVjxeHuf0VJqFh51r_rl5xFtWMWA4__Q-Pj5zSSNhzKauOWyzoWSaAeWW9ysn0','The doctors, nurses, and receptionist were all nice and treated us as family. They had us in and out and and they made us as comfortable as possible. I would rate this a 10/10 and would come here if sick again','2020-02-22 03:02:24.114000','2020-02-22 03:02:24.114000',5,'Nycol Williams','https://lh4.googleusercontent.com/-UcunybRqo10/AAAAAAAAAAI/AAAAAAAAAAA/dnzpzhOsfH0/c-rp-mo-br100/photo.jpg','2694018788013845459',14220),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2J1sk0W8_xajcXhMW6EsZtKNTq830Jr-uOODQyHePskbng2ZqA7OrgjmTTUqkQv4FCVhWWaUI0ZpvIQ2ENBwgiL3yFXw','Alyssa P and Nurse Pamela were amazing they were very friendly!!','2019-12-13 22:03:43.295000','2019-12-13 22:03:43.295000',5,'Conisha Lewings','https://lh4.googleusercontent.com/-B-3_wcc9TVQ/AAAAAAAAAAI/AAAAAAAAAAA/kolpCtSffPk/c-rp-mo-br100/photo.jpg','8918455867446117794',9032),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2J1SuQ4R7UDLFCY3lL4f54fto4Oz7QU7Yzdhyjo8sfIRk0IaOA8zjx7gGfz8__r0IhacVTkdgwOsdNFZzI0EtdeBjlMU','I got here around 11:30pm and the entirety of the staff that helped me were friendly welcoming accommodating and helpful. Than you Therisa D, Katrina V, Cheney O, and Dr. Ybarra you all made the best out of my unpleasant situation!','2019-10-26 05:27:39.297000','2019-10-26 05:27:39.297000',5,'Cash Reid','https://lh3.googleusercontent.com/-qGf-beSTfD0/AAAAAAAAAAI/AAAAAAAAAAA/ncE7cUrzt5c/c-rp-mo-ba3-br100/photo.jpg','8679688254631342173',8771),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2j3He09r3p05cpPIfkOmo-pvOzSQhBDhywOU9GTE-56f0aoLI-Vp3mLMQpyTRwYzHjLa5XlzwelQLX4b-B9daQ0hJXUE','Great, quick, and high quality service from Theresa, Katrina, Cheney, and Ybarra.','2019-10-26 00:28:10.407000','2019-10-26 00:28:10.407000',5,'Ike Ojiaku','https://lh6.googleusercontent.com/-hG2rEBjuJ98/AAAAAAAAAAI/AAAAAAAAAAA/gwFIEvn1Zzs/c-rp-mo-br100/photo.jpg','8679688254631342173',8774),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2J5FM6ptVHDlTPwOZr5xbAjaDWT0nMVlu7EOqwTttNAOVGPkSMfiIIK7QVS7Cgw7knv-92UKnR0neu8JgRfav__jXpOk','Had a nice time. Snacks were on point. Tran, Tony, Hoan and Aaron were fantastic','2019-07-23 17:18:21.693000','2019-07-23 17:18:21.693000',5,'KevinUp','https://lh6.googleusercontent.com/-cGsTYWXLFfM/AAAAAAAAAAI/AAAAAAAAAAA/1HtJYHSQ1Vk/c-rp-mo-br100/photo.jpg','14904078213800803294',2110),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2j63TbF53MxFIuEJ6Okr0AQTS4ucnCqUHQnknnaYbTNsT4pJvx3iCgkf0_cbRRrq2wAjNw5oxAJ5vw7L_yNpja876mPY','The staff was wonderful and caring. I was amazed how fast we were seen. A warm and friendly place to go to on an emergency.','2016-11-09 14:23:06.000000','2016-11-09 14:23:06.000000',5,'Claudia Tristan','https://lh3.googleusercontent.com/-R15x-efw43o/AAAAAAAAAAI/AAAAAAAAAAA/UiVgAyhLJ9E/c-rp-mo-br100/photo.jpg','14567670160750071148',1945),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2J9JxafOifsXEzeI5K7dlfWzo7rHoQGWpvCA8DVYMfXpZhYCyWibt__SSq-dmb28QPvUb1sU1CAL0Ecbulgr91qSTf9w',NULL,'2019-06-26 03:18:24.658000','2019-06-26 03:18:24.658000',5,'Kal Bratanov','https://lh5.googleusercontent.com/-jFRtPx-2oi0/AAAAAAAAAAI/AAAAAAAAAAA/ixhwpVYmXmQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3332),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2jg-Q8J45PUAArwe6srfKmz6IWCGLFSLQm-YvG3DZzE_zV0ozCtrjO8BLq7IWhkWC3Yr8dTnitRdNQTTsV6EXSscgcCo','They are an amazing hospital with the perfect staff....kotey..rashaad..ladonna and Mary also Fatima.....and Amelia','2020-02-28 03:50:31.044000','2020-02-28 03:50:31.044000',5,'LATOYA HOLMAN','https://lh5.googleusercontent.com/-TsGHPJbmN7w/AAAAAAAAAAI/AAAAAAAAAAA/QVKfLEnlZLw/c-rp-mo-br100/photo.jpg','17394740196501090048',16620),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ji4S3hABzD9-pfMNFfYzV0nWydrXPyJ6hUVLQeSDDy9F1LnI89gijjOLWzDjSGETHPpkndODpmTyGDQwEG2todx_JG4',NULL,'2020-01-11 20:36:01.341000','2020-01-11 20:36:01.341000',5,'JA Guardado','https://lh6.googleusercontent.com/-I-2BL2JmN7s/AAAAAAAAAAI/AAAAAAAAAAA/D_Nv7CzZj5Y/c-rp-mo-br100/photo.jpg','14904078213800803294',13636),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2jIXFsKAw7Ob8L-pFlxvkTavw3mkj8-HkCod_mpNDC6eRBfhNncmVMzLIZbwdRhdZwVJZxyHAhZn3bSxyg7vQCcHtnH4','This facility is fabulous and has an outstanding staff ! My husband and I arrived to register for a Covid 19 test time for the following day....we arrived at midnight to get in line...expecting to wait until 4am to finally get our timeslots. We were told corporate protocols were in place....But the team pressed their \"higher ups\" and modified their process timing so at 1am we got to register---then to our surprise they took us back for our testing RIGHT THEN! The team had used common sense to appeal and gained approval to start taking actual patients for testing as long as there were no other emergencies on hand!! Every single employee, from the security guard outside, to the front desk, to the doctor and nurses....alllllll were outstanding!!!! The facility is top notch and the team was superb!','2020-06-22 13:48:06.020000','2020-06-22 13:48:06.020000',5,'Rie Hoehner','https://lh3.googleusercontent.com/a-/AOh14GiQuhwYTZUZn2mJwzq0P-0X2qBm8tK7z4PcRwBW=c0x00000000-cc-rp','17898197009688164559',21079),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2jNdxUWYUcSSaRnzHfdR7RnIecXUNiZ9kwRkMKelhP1PnYS8xgm_PHAahGkpJKR6TeLsUpOKEty8vjZ4AMLHF9MtzOkw','The TC Jester SignatureCare emergency center was super efficient and has very friendly and informative staff. They really have the Covid testing process down and have everything moving smoothly.','2020-07-23 14:17:34.216000','2020-07-23 14:17:34.216000',5,'Silvio Salinas','https://lh3.googleusercontent.com/a-/AOh14Gi_wqsJnfUXyrdrAxpZql1O0dGeuBU1oHDaqcwO9A=c0x00000000-cc-rp','14567670160750071148',21871),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2jNu4GcF8Xef7wkcoO8hiOZ-IAV98eSZBdM3Cqhjt2XCda-2OkbqRjRb1nwdFF83kIWonhNtEjwvXobhaJtHOZn3mFvk','I want to thank Dr.Spangler,Malissa,John,Kristina,and Mayra for being very professional and really taking out their time to help me with my sick baby it really made me happy that I coulda rely on them that much so I wouldn’t be so stressed out anymore. If you have any sick babies this is the best hospital for them to be seen at I promise you that. \n\nThank you so much Signature Care Emergency Care in the Westchase Area of Houston','2019-02-11 17:32:01.693000','2019-02-11 17:32:01.693000',5,'Jini Morris','https://lh6.googleusercontent.com/-89MNl5nQ4fw/AAAAAAAAAAI/AAAAAAAAAAA/BXH0OmxWu_s/c-rp-mo-br100/photo.jpg','12541597562633926366',550),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2JnwyPmnwqxkxApP3jRA-Iq80l4qQPjSNJtulzr2qQD91HNds4WeNTlfz-9t-hu8DA8lNaemqKbWLDmcObTWXoM3f4ss','Great service','2020-07-15 16:58:14.529000','2020-07-15 16:58:14.529000',5,'Cameron Engel','https://lh3.googleusercontent.com/-YwidJqEgOYM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnZHCeJpi0LGUo549aImvtG4MUY0Q/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21305),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2joskBx4mVnF-SQmfLGqdJyU6n2HFceNZxBlGeVGXifXo1HR29dv-Io4HPn8UFqrxtV3voMDmGAcsvJM3iP11p8dWrvk','I came in because I wasn’t filling good I was a little nervous due to the COVID-19 that is going around but when I was checking in Jessica S was so sweet and so informative and answered all my questions. Thank you SignatureCare for everything your doing for our community!!!','2020-07-21 19:43:27.760000','2020-07-21 19:43:27.760000',5,'Andi Soriano','https://lh4.googleusercontent.com/-UeXxA_eCHIE/AAAAAAAAAAI/AAAAAAAAAAA/z-zMG9qte3Y/c-rp-mo-br100/photo.jpg','14748677429039074158',21615),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2jS-fYiSp0xf7CRAHClSeD8VLo9G5spfbbxwaz-ABiJD0kv-Un3sKPTE9vQK-S7c-EGdILwcPgTl_sMIy7tB9C8S5x-M','I love this place','2019-06-19 04:33:22.662000','2019-06-19 04:33:22.662000',5,'TX B. G.','https://lh3.googleusercontent.com/-IZiOuYslp3Q/AAAAAAAAAAI/AAAAAAAAAAA/c9iaZlpQAds/c-rp-mo-br100/photo.jpg','8918455867446117794',9118),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2jsPrW7BAxFvMXmiqpONeQDdtGtj3wLh6zp4z7qSzkxvvTtMkiA4dkOkTxgsnkjQBc3kDIywXJbHIPTiK6govE8ZL0m8','Brittany was wonderful! Dario, Jeff, Eve and the awesome Dr. Sully were all wonderful. They were fast and caring. As soon as i came in, I had all these people taking care of me. It was the first time I\'ve ever been treated liked that...full blast attention! It was awesome!! Dr. Sully had my full attention and listened to me carefully. He was the best!\n\nI will definitely come back if I needed care again.\n\nThank you, Signature Care!\n\nMelissa ','2017-02-10 19:59:16.788000','2017-02-10 19:59:16.788000',5,'Melissa','https://lh3.googleusercontent.com/-ZEYzmV1Es7I/AAAAAAAAAAI/AAAAAAAAAAA/Uc5SLXKwTqo/c-rp-mo-br100/photo.jpg','3511292162159714121',7882),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2jU3rrGcglRFTxuCnEwl62C2Zfv-RtD3xnKBANg5zH_toz3oSsqb4dfk01xNR3VGJdu9OHWOHZWIbp2Skmaco21F9kY4','Amazing service loved chantel and Henderson and fabulous help and directions from tanishia','2019-12-30 04:07:26.356000','2019-12-30 04:07:26.356000',5,'Spazzout Kemo','https://lh4.googleusercontent.com/-_2w2Wx47500/AAAAAAAAAAI/AAAAAAAAAAA/unBPdGQb8Us/c-rp-mo-br100/photo.jpg','17898197009688164559',5317),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Jwn30SLt01JfSvCM42YK1VfWz19FqIxTU6HdK_osW34dDnZoc4lJrRVCsYxyRRWRNolTveaXR2XRI_Fx_L7HoH8oJx0','This place is amazing service is very fast and efficient.the staff is very friendly and has warm smiles.5 stars for a 10 star organization','2019-03-19 14:55:04.232000','2019-03-19 14:55:04.232000',5,'Dion Dezurn','https://lh4.googleusercontent.com/-JFUCw7zzpB4/AAAAAAAAAAI/AAAAAAAAAAA/4wUMZ4Zr660/c-rp-mo-br100/photo.jpg','2694018788013845459',6177),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2K3GUl8hriOkEUxGP5XKixcq-UqmmuUapwoxid2beF2KWfNZazm9p-udfpoCUoJKFck9ZvUEugKRKAVxwqyYiz-QUD5Q','Great experience from the moment I walked in Maria G. Was very welcoming and helpful she explained the paperwork very thoroughly and got my back quick. Very minimal wait time. Definitely recommend!!','2019-06-13 02:25:52.712000','2019-06-13 02:25:52.712000',5,'Irvin Vazquez','https://lh4.googleusercontent.com/-WnSKyYvlA90/AAAAAAAAAAI/AAAAAAAAAAA/HtZw4csVN7o/c-rp-mo-br100/photo.jpg','6521947413723274945',8236),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2k4muS_iKMLZcgIRSpHumkrIxix4Vnirw4DV25b84qdrJaKYi1RHPqEKHl0Fu-Mb6z5UrxTv9JJYKwRiTkbT3Gxt8cas','Always quick and kind','2017-09-25 17:27:38.400000','2017-09-25 17:27:38.400000',5,'Dia Mendoza','https://lh3.googleusercontent.com/-vjFTqKxd4-4/AAAAAAAAAAI/AAAAAAAAAAA/0qWtUdRJFKI/c-rp-mo-br100/photo.jpg','17394740196501090048',4966),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2k7iLTNzwv5cikbGSdoHGcstCti-Qi7Ebw7goHCcz-GElA7PyPrnfV-SIJN23fnLNWyrCGz2XJ-EvZ3EgVS1vpDOTmsw','After so many sleepless nights dr kotey and Ralph got right on it and made my baby feel athome and relaxed.. They made sure they ruled out any option before sending me home with peace of mind. Thank a thousand','2019-03-22 14:08:31.132000','2019-03-22 14:08:31.132000',5,'prototype ent & dance company','https://lh6.googleusercontent.com/-_aCw5AQPAAY/AAAAAAAAAAI/AAAAAAAAAAA/WjoduAy6ptM/c-rp-mo-br100/photo.jpg','17394740196501090048',4706),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2K9tBBRK5hw3J3SFJMLFG79L-6wqFSK-lsQwbWD3Hwqjfr_FLsGbW17EM8eRfMrjMoF4jkzXYv2aqyfYmyQPAv4E4F4Y','By far the best ER in the area!! The staff was by far the best medical staff i have ever met. The doctor spent a lot of time explaining everything so that we understood it completely. It was more like a stay in a luxury hotel or resort, the staff pretty much waited on me hand and foot, readily anticipating every possible want and need!! A++++++++ in my opinion!! I will never again waste my time or money WAITING ever again!!','2017-03-04 04:10:13.844000','2017-03-04 04:10:13.844000',5,'Andrew Clifton','https://lh3.googleusercontent.com/-YDt6CRiuTl8/AAAAAAAAAAI/AAAAAAAAAAA/HsC5cI9wJqU/c-rp-mo-br100/photo.jpg','13486358490203335051',1133),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KcJp2x1p77szBZWxT0xrdFGMxAn2KG3TxGc-dYjbHDc1CYczISL6ElgZRC1NwZE10kybf2etFCVVD8ggUcFLKwBKc6k','Amazing, amazing. I would recommend for anyone to come here. Dr. Vakey is very nice and thorough. The nurses were helpful and comforting. They are reasonable and they don’t do any procedures without telling you first. No surprises','2019-05-22 17:46:04.062000','2019-05-22 17:46:04.062000',5,'Amanda Essoh','https://lh6.googleusercontent.com/-VT2r-fLL13w/AAAAAAAAAAI/AAAAAAAAAAA/HRn8AObGiHk/c-rp-mo-br100/photo.jpg','16590124370714063921',3380),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KEoXsNhSzusFAdpMLqcjdRV1ijUSUd7wKLAzj6EuWoQTWtDlIbMseabuJ5ott55MAY2XZj3Uz-WqyhAYTK7E7LBRzls','2nd time being here. 1st time as the patient and both times have been super great and stress free. Stephanie, Rick, Rollie, and Dr. Daniels were all very kind, nice and efficient in helping with my concerns!','2019-11-15 04:32:36.736000','2019-11-15 04:32:36.736000',5,'Micah Cohn','https://lh6.googleusercontent.com/-4RwV7QQVUXw/AAAAAAAAAAI/AAAAAAAAAAA/BS73ctvHVbM/c-rp-mo-br100/photo.jpg','8679688254631342173',8732),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KGTlemnxbIo-y0EJAq1vxDwV9Qv1pEy2-yy63yMO816oCvV9QpBPrvc38nrkKj5NkbeLZ755aRzMfRnsS8ZRjZnsZ8o','They were very polite and helpful','2019-12-17 01:29:06.828000','2019-12-17 01:29:06.828000',5,'Oceana Jefferson','https://lh4.googleusercontent.com/-SrxCtkbOgqg/AAAAAAAAAAI/AAAAAAAAAAA/50BsaQs7qbI/c-rp-mo-br100/photo.jpg','3272657195432704501',6838),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KH_Zb_X0GeQRMLLCr3Tk2OkJkNktVY2-IPK5u2kxwSuM7mQ13FLq3VFOs8an0vj0mmRWGVpcapCRqNgiAqxNBiRetok','Had an amazing visit I was nervous the staff was great with me very patient and understanding A big thanks to .. Dr. O’Malley, Alvean A , Tricia E , Sibienne W and Bryan the ER Tech !!!','2019-11-14 21:12:35.660000','2019-11-14 21:12:35.660000',5,'7even Lucey Rain','https://lh6.googleusercontent.com/-YwTraDXMnUc/AAAAAAAAAAI/AAAAAAAAAAA/A99o5U4Gqlw/c-rp-mo-br100/photo.jpg','16389487648212004696',2700),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2kiWkm1OsfjbOz9X-e_TwuecD2nm9vYGNlFztL2-MNTHrw8rplYLZWctYJBqyyqbKSKtEohzbGXVwK5-AR-q-hzuizNs','Brought my 7 year old in with a terrible virus. They took amazing care of him, were kinda and playful to make him as comfortable as possible. We had to stay over night for fluids, the facility was very accommodating. His nurse Austin was amazing. Very grateful for the care my son received.','2019-09-27 12:01:02.891000','2019-09-27 12:01:02.891000',5,'Leslie','https://lh6.googleusercontent.com/-R6SAzdSxo-g/AAAAAAAAAAI/AAAAAAAAAAA/LTYS9q6rKdo/c-rp-mo-br100/photo.jpg','8626688543755174284',14674),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KOuq_61RSSp5LvYdpFR7uFV1G_kfkk0kjvYxcIxGetSLidd1FyI3whSJMzlnfb776AInIkwvQDTIte2qWnOmhomoiSI','I brought my 5yr old son in with a bad cough and breathing issues. As soon as I walked in the door i was offered a warm blanket for my son. I am very pleased as how quickly he was examined and treated. Staff is nice and friendly. Rooms are kid friendly. I would definitely come again for all emergent needs. Very pleased that we have an emergency room that treats both adults and pediatrics.\n\nThank you Dr. O\'Malley, Nikaelaa and Ricky!','2019-06-19 06:57:55.100000','2019-06-19 06:57:55.100000',5,'Karla Perez','https://lh4.googleusercontent.com/-LR6jLstNOHQ/AAAAAAAAAAI/AAAAAAAAAAA/Tk4XUEt3odk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2kqXsldDrB7oB19er02hZ7xcNnkHGM3oMvD6jAX7N2DwLPF_xq8jpy0KzR9n3ThTJ53MQbAuE7jkgppswIl8Q6VSBW7E','Friendly, knowledge staff that has taken care of us on a few occasions. We always leave happy without the exhaustion of an ER wait. They even called to check on my daughter\'s arm today which was really sweet!! Thanks for always taking care of us!!','2019-11-03 19:28:39.026000','2019-11-03 19:28:39.026000',5,'Mandy Johnston','https://lh4.googleusercontent.com/-4zPAnUB_RVQ/AAAAAAAAAAI/AAAAAAAAAAA/FSRcl2cDl74/c-rp-mo-br100/photo.jpg','3272657195432704501',6870),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KUd5wAuJR2aHydby5dO5pZOeWJJLv-kp139Q3E4KRkAqxktTF2ksrf9ii5QIOAsBQ8LPkdY01VV4lCfmzgS7McGuC6A','I didn\'t know why after a car wreck i decided to go here the hospital bill cost me $10,000!!! When i hit the steering wheel with my head. All they did to me was do an MRI/Cat Scan and give me some ibuprofen, a pregnancy test and some water, and sent me home saying everything was fine. Why did i get charged dang near $10,000????? what kind practice is this? Idk any practice that charges this amount? is because they feel insurance and lawyers will pay them? Well NO, i have to pay.','2019-08-30 12:05:27.855000','2019-08-30 12:05:27.855000',3,'Jennifer Ogundana','https://lh5.googleusercontent.com/-YHCO-Dm5dy0/AAAAAAAAAAI/AAAAAAAAAAA/qde0WJhnO6A/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7189),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KuORLzkLDmlqpGPYtaUJJXDu8i-nc-PgEuv-SdMziT1stUiwX2q18B5YMZ4sU1tjw7SE_Wrx7jrtUw7w4SL4_m_BRGw','Everyone was very caring and friendly. They helped me immediately, and kept me well informed the entire time. Obviously no one wants to end up in urgent care, but this was one of my \"best\" healthcare experiences ever. ','2017-05-24 01:02:24.160000','2017-05-24 01:02:24.160000',5,'Karen Marais','https://lh3.googleusercontent.com/-T0-UAeEb5l4/AAAAAAAAAAI/AAAAAAAAAAA/8nXVJOxRBV8/c-rp-mo-br100/photo.jpg','16590124370714063921',3980),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2kw1N5gD2miJH-YnBj1vPfCtNXYMFytTgMWL2DSBMpNTME-2LzIebXuAOorvYc3O2KeeZyT7oGocGE8udUqRaJyiI4pU','Very helpful staff!!! Such a clean, neat place. Was in and out! Definitely will go back if I mess up my foot again! lol','2018-10-31 00:49:05.689000','2018-10-31 00:49:05.689000',5,'Janie Garcia','https://lh3.googleusercontent.com/-tMMt4Z8J0W8/AAAAAAAAAAI/AAAAAAAAAAA/tZuBn2wKxTs/c-rp-mo-br100/photo.jpg','16590124370714063921',3680),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2kxMPZACIq-mECar4i3R7JPTTHO3-mhA_lIOHX19mC4DOu2umN4oXys8QzwCAJM8t6pTXesEUVIjgVd35ubPscFUy3rc','Tricia & Robert very professional, helpful, super attentive and made the experience pleasurable','2019-05-10 15:23:41.245000','2019-05-10 15:23:41.245000',5,'Valencia Owens Santos','https://lh4.googleusercontent.com/-LG4FC2itNyY/AAAAAAAAAAI/AAAAAAAAAAA/ZodAMsSybXk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KYDuQpC_AIlCBqm0w_bVlfSfVNFKF5o1KnNSFhLR-ls90Djf5JkRih2UzB1rXyVnbyFfyw5FCHltxT2JpRP4QJMeXsE',NULL,'2016-10-24 23:08:59.203000','2016-10-24 23:08:59.203000',5,'Gang Fu','https://lh6.googleusercontent.com/-M2MtlEWEmB8/AAAAAAAAAAI/AAAAAAAAAAA/OAKRVdn8o84/c-rp-mo-br100/photo.jpg','14904078213800803294',2452),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2KZBj32Vckg7wtyhr1vmgsUQNTF0xA7Fe9wnoBHCQQYxuyYjW26-Ojnnt0c0hBXyADwWwPYXp64t7nIS4MvJTcD4rCQ0','Came for coronavirus care. I was seen quick, fast, and in a hurry. Rollie, Natalia, Stephanie P, Stephanie R, Nat and Dr. Daniels took great care of me! Thanks Signature Care','2020-08-12 05:17:40.205000','2020-08-12 05:17:40.205000',5,'Erica Evans','https://lh3.googleusercontent.com/a-/AOh14Gj7QDdm42xpYPbWkkno7qVSST34iT_6ZvzB3eJj=c0x00000000-cc-rp','8679688254631342173',10013),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LavlTY1T-quIw6g6oc-48-F2h8sWhVVVm4kbpL2imfUG3pn1U7HvXWossZGaPK2MecGw4987UlaHRI8YR8mcqQB0toM',NULL,'2018-11-23 01:08:53.946000','2018-11-23 01:08:53.946000',5,'Kirsten Jackson','https://lh6.googleusercontent.com/-C-XFu5z-y4k/AAAAAAAAAAI/AAAAAAAAAAA/Mu0uCDpN3yE/c-rp-mo-br100/photo.jpg','8679688254631342173',8895),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lEFbEZw9FKggm_6cpG02qlU2VScywhjzSAsML6q2NxwJAAsvhQVkgRFblWHbnsjWsulusLfwY82GWOFOlEKLBkkldPw','Great place . Fast and easy to get an appointment online. Amy at the front desk was super nice same as Dr. LIM and the rest of the staff.','2020-08-03 18:46:30.981000','2020-08-03 18:46:30.981000',5,'Angel Serrano','https://lh3.googleusercontent.com/a-/AOh14GjYPCfiE6LHtW17iBR4xQTdCKqJvYdI1pz2t7FxBg=c0x00000000-cc-rp-ba2','3511292162159714121',22138),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LfIqrfY1sBfLNczGnLN6WSBKpgv3dtcisc2kWNPOKnrW90kl8qMP1SD3iE_Jba6gHqAPqfAVv2GfyDn84I_F1oMVYbo','Little bit of a wait, but understandable given the circumstances. Everyone was kind!','2020-07-18 14:51:30.378000','2020-07-18 14:51:30.378000',4,'Madi Frissell','https://lh6.googleusercontent.com/-YDIvjn5N-AM/AAAAAAAAAAI/AAAAAAAAAAA/h9kl6w24cS0/c-rp-mo-br100/photo.jpg','14748677429039074158',21746),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lgD2QCKNUc71TrF-4LWBxWNsqEZyp2NTV9HOnSkkf6arHDTWyeXiLEBBK1n_5x3CPvDgwOlpjuF7dKemv1FwMW9TsQc','Ryan, john, and Dr. Miller were swift and attentive to their duties, as well as genuinely pleasant and kind during my stay. ','2017-09-05 16:26:00.088000','2017-09-05 16:26:00.088000',5,'Josh Gordon','https://lh6.googleusercontent.com/-cGxv3e9CECc/AAAAAAAAAAI/AAAAAAAAAAA/FVhrN_iD2N4/c-rp-mo-br100/photo.jpg','14567670160750071148',1762),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lI3GgWm5rIRpTU9L9pJPUOQlr1wr1Vp4fWTr3_YibixmgYdjj6NXGtpupAjQeZstEMNTfd282yxVMmxvrTf0IUyzb6o','I had to come in on Thanksgiving morning at 7:30 am! I felt miserable but the entire staff (Lorena, Dr. Harjai, Jacob O., and Laura D.) were all fantastic. It was a speedy, efficient visit!','2019-11-28 14:08:07.049000','2019-11-28 14:08:07.049000',5,'Nicole Glenn','https://lh6.googleusercontent.com/-L3g-L4_YP18/AAAAAAAAAAI/AAAAAAAAAAA/YFiWGHkNxu0/c-rp-mo-br100/photo.jpg','16590124370714063921',3072),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LNM22KaLex9oxIY_jisd7R_9NLNx-TdY8O3sia91jLDN94M88DxcbVKmRv-mupR4gYpCT0go6xS4G8uz83zD5cDBJfQ','Friendly staff! Makes you feel comfortable.\n good place to go for in out service','2019-10-15 02:23:19.499000','2019-10-15 02:23:19.499000',5,'CHRISTOPHER RODRIGUEZ','https://lh3.googleusercontent.com/-xlRm3BiOV5k/AAAAAAAAAAI/AAAAAAAAAAA/MQPBnH6gy-w/c-rp-mo-br100/photo.jpg','13486358490203335051',776),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LOccOUL4Aly7u6q5brlhU_8znNCtVmzNMo3y1aRZmC1zFwwH0kysXQ-a63IKkbAdRA14K7dYt5wpgghbxpDppnmG0HM','Jessica in the front desk is very friendly. Cory was our nurse he was funny made us feel comfortable. Alison the X-ray tech took good care of us.','2019-08-02 03:10:21.726000','2019-08-02 03:10:21.726000',5,'Javier Villalpando','https://lh5.googleusercontent.com/-SE641Slxo6E/AAAAAAAAAAI/AAAAAAAAAAA/tZbx1hHhhqc/c-rp-mo-br100/photo.jpg','13486358490203335051',871),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lqeMc4UZVhmIepvPCVPl4OEYjBVNlPs5p6C2iM9MrW2qJrRuHLf8DlQWYGCfEoqQ-XF-G2eM9nhW6VnKJG5j-NwvJ-A','Really friendly and caring staff','2020-02-14 17:30:51.190000','2020-02-14 17:30:51.190000',5,'taha nizam','https://lh4.googleusercontent.com/-_qzmp9fuuhw/AAAAAAAAAAI/AAAAAAAAAAA/T4AD1K7kScM/c-rp-mo-br100/photo.jpg','8918455867446117794',14828),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LRF53pYUu0_Tt9BAqHTgZyxDwqN7xFnz1mV66ECvuoWQ9swnQFgflI4MVdPwPZXaK2VzELYiqL34lE06N9EjGylYgRs','We was greeted by Cindy. C and after that we was taken care of','2019-06-27 02:05:41.603000','2019-06-27 02:05:41.603000',5,'YOU FAMOUS INC.','https://lh4.googleusercontent.com/-SWSthe1IURY/AAAAAAAAAAI/AAAAAAAAAAA/iQXXvhz8FBQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4645),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LSdtJzWGDO3kjEBx5uW9-1rmprhFcHgs6nHHLe7ckb8eA1dOoiSRYsvBusepixW1xqgyQQFxFVG0oy7R3mkAFH-N-lo','I came in today after a car accident two days ago. I was taken care of right away. My pain was addressed right away. I was given xrays of my shoulder and my back. I was concerned with my back since I had surgery 12 years ago due to another accident. I would recommend this place for any emergency issues.','2019-06-28 23:45:51.015000','2019-06-28 23:45:51.015000',5,'Baby Grl','https://lh3.googleusercontent.com/-nkYa-f1fqc8/AAAAAAAAAAI/AAAAAAAAAAA/g9aMdGWZ76Y/c-rp-mo-br100/photo.jpg','17898197009688164559',5673),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lSeIL44g4Wjo268lr7gi6Ifcn53348qp3aqSDsRFE1SGe9nJY8e17XaqdwNP98d3ufBcu9nqgd7r_aoa7Hh3hbv17_g',NULL,'2019-11-15 04:41:47.462000','2019-11-15 04:41:47.462000',5,'Juan Garcia','https://lh3.googleusercontent.com/-o_BMpB6c7J8/AAAAAAAAAAI/AAAAAAAAAAA/agXGHHfSn6A/c-rp-mo-br100/photo.jpg','13486358490203335051',738),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LSfT5dz2PCqVtaOp_8uBi92wpOQutEuZJhblBa860BDYM0uJWXA6sQmQg5eiNExD18z_AL2k7D8i7vECf-gAKdf6xiU','I had a great experience in the urgent care. Carly, the receptionist , was kind and helpful. Irving , the nurse, was friendly and professional. The center looks clean and sleek. I recommend this urgent care to anyone ...','2020-07-08 06:21:41.844000','2020-07-08 06:21:41.844000',5,'cesar morales','https://lh3.googleusercontent.com/a-/AOh14GiI-k9MZSaQ-WsCbnJo4Dgurei-0K0h6qy6ieal=c0x00000000-cc-rp','12541597562633926366',21335),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lUmLd6_RUMaPo9ZI1s6FZanDf396opMd87UpbYu4Dy6zk6Rnt846p31dXEOvii60lZNz51Z5-demjkT6zw0N6QW0Q2Y','I had by far the best experience. Lizzie Torres was the best when I walked in explained everything made me feel very welcomed. She walked me step by step and had me in the back within minutes. The nurses here were great very friendly made me smile and laugh even while I was in pain. The doctor answered all my questions made me feel well taken care of. Overall my experience was above and beyond expected. The complete staff was amazing. Thank you for all your help.','2019-06-28 07:50:36.255000','2019-06-28 07:50:36.255000',5,'Helen G','https://lh5.googleusercontent.com/-dmuVznpjCtc/AAAAAAAAAAI/AAAAAAAAAAA/h0D6WpWAtQ8/c-rp-mo-br100/photo.jpg','3511292162159714121',7278),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LVq4oNwnBYVPKQL9jyW3O4TxykInL7lDKBmpcoYhqeNu0AiRBjSOIlS_rqozKvp4zxxbL9tftvuWEl4PTBAIg09DLFg','Excellent customer service. From the moment I walked in Kimberly and Okarys were amazing and getting me taken care of. My nurse Nikki attended my every need and made me feel much better. Dr.Vaagnese was very friendly and warning. Wonderful bedside manners. Dustin was very awesome as well, took xrays on my busted knee and it didn\'t hurt. Thank you all so much for taking care of me. Will definitely recommend to anyone!','2019-11-10 02:04:24.342000','2019-11-10 02:04:24.342000',5,'Latonyai Stanford','https://lh4.googleusercontent.com/-XKfFF8ZK4mE/AAAAAAAAAAI/AAAAAAAAAAA/1NLM6QGVFok/c-rp-mo-br100/photo.jpg','14567670160750071148',1197),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2LwjJImkIezQa_fvN7rtOlmtk4otsWPu8yRI6280KFbmfJAGj7ofiC-0qxEkMbGXD0VrTFH3kAIujR7LUz0cmaXYwNng','I had the best experience ever! My nurse Kimberly went above and beyond! She answered my questions and my grandmas questions! She had so much patience with us! Never have I ever had so much respect for medical staff, but this lady has so much knowledge and cared so much I had to leave a review! Thank you nurse Kimberly fOr you amazing work!','2020-06-19 02:05:27.806000','2020-06-19 02:05:27.806000',5,'Tina Quezada','https://lh4.googleusercontent.com/-6SaD9KKaW4E/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckt6myJpYk6B1t0qL-faRY9hndf2w/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21106),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lXM05KXoaEFzBopeHMEWgJc5up3jeYlfaD0JUevCHXQqmKeZ1oT2rKSepUTdQWP791xJb_n7Lr-X-XXG466PdwveAUA','Brian H and Brandon W were very nice and friendly. Brian D and Ricardo G were so helpful and Dr. Jolly made me feel very welcomed. Service was fast and took care of me with gentle care. I have been coming here for two years when an emergency arise wouldn’t go anywhere else.','2020-02-18 01:18:29.412000','2020-02-18 01:18:29.412000',5,'Alexis Dow','https://lh6.googleusercontent.com/-T4iUj1nyFHM/AAAAAAAAAAI/AAAAAAAAAAA/pYrvYJm2o0g/c-rp-mo-br100/photo.jpg','14567670160750071148',13529),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lXuzmNcwft1xxcWfU_y-NPblhjumep1fNNCkRWhSmNRZmT5ySTj2aLTFF1D0vODT0B_XgcX2Wvi2zCL56SeKlaK207M','I rarely go to the doctor\'s due to the uncomfort I get while I\'m there, I just never admired hospitals/ emergency centers but this place really eased my worries. Beautiful facility, speedy service and the staff was OUTSTANDING! Everyone was nice and friendly and most of all super helpful, Dr. Pham, Nurse Alvean, Radiology tech Tricia and Jocelyn at registration.','2019-05-15 21:32:07.351000','2019-05-15 21:32:07.351000',5,'Jaquan Lewis','https://lh4.googleusercontent.com/--I-uxgNmIRo/AAAAAAAAAAI/AAAAAAAAAAA/vX-mu8qWgMI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2lYejI9f5zkvFnIUzmwJjwM3I2QLfAr278oZ409W040pHjpsmtIeBLRzq11_qxEtIZ2cpxQA3Jrf2nmvXaMZoqnmkaoA','The Dr was extremely rude and insensitive. Scolded me when I was stressed and in a vulnerable situation. Because I was nervous and “interrupted him”. It irritated him so much he felt like scolding a woman who was in shock, gushing blood and thought she was loosing her baby. A heartless person. A doctor should act with understanding and compassion. Don’t be a Dr if you can’t.\nI also was asked to complete some paperwork while standing by the reception gushing blood. All ofthe information asked was listed on my ID and insurance card that I handed to them.\n\nLocation - 8910 S Texas 6. Date of visit - Thursday, September 13. I do not have the name of the Dr. we left to a hospital after being told it would be another 90 minutes before the ultrasound tech gets there.','2018-09-23 18:25:55.826000','2018-09-23 18:25:55.826000',1,'Ria C','https://lh5.googleusercontent.com/-_LigrRw2hMg/AAAAAAAAAAI/AAAAAAAAAAA/zCNm4BEgH7I/c-rp-mo-br100/photo.jpg','17394740196501090048',4790),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2M5NSake0A7ESe3Nt2JX3LpKtQr3aQHmxEDBXC3IePN7F6nG2K6zwjXNTryeJNsVHk6pCf9KN1_2qgFXxCjL8b9-DaXg','Amy, Norma, Dawn, Eve and Dr. Leavitt were amazing!','2020-02-02 15:24:24.876000','2020-02-02 15:24:24.876000',5,'Brian Brown','https://lh3.googleusercontent.com/-uxX59AKke3A/AAAAAAAAAAI/AAAAAAAAAAA/aCSs8TIlkMc/c-rp-mo-br100/photo.jpg','3511292162159714121',14436),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2m9FVoE6pbyqYNs0BzCM4d9f5hPBYKJLOwXulAN7NNtBm1DCw9KEwfN4myuM1Lrdf5237zttOzp2OxjEnzTPYUhb8cFk','I had a very good experience they were nice and we had no problems','2020-08-02 20:41:54.030000','2020-08-02 20:41:54.030000',5,'Tiffany Edwards','https://lh3.googleusercontent.com/a-/AOh14GhcUNpOgVyBrMGZRwuV0PXMlA2dK9IHr10O1_m3TQ=c0x00000000-cc-rp','6521947413723274945',22191),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2mEkxYUE-_ugmFfrhI82WJv-0i52EcshkNAWTZ9F9fFz2wVIb5hDZdCnY7dfx5P8GBMB7NgT5oIAZEMORo6aZ0eJzFcA','Excellent service','2019-01-26 02:55:23.121000','2019-01-26 02:55:23.121000',5,'Carla Faircloth','https://lh4.googleusercontent.com/-zS5TEnShaNQ/AAAAAAAAAAI/AAAAAAAAAAA/bUxMXqZUDaA/c-rp-mo-br100/photo.jpg','17394740196501090048',4732),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2mETS4A8IpKeMFaJv069PtnIrhjTGFGTovGiAtVcONBQ4XD7ChLgEraNnNvG53Ik4ElqlXyet3E3Fx-8iBkFVwXOUaDs','Awesome experience and really fast to take care of. Dalia and Julesia in the front were really attentive. Definitely coming back to this location whenever in need! Thank you!!','2020-08-18 15:38:37.543000','2020-08-18 15:38:37.543000',5,'Bryan Salguero','https://lh6.googleusercontent.com/-v7H0gtiqe5M/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmZB2oEgXnHi1eXCh7unSCI1Tphpw/c0x00000000-cc-rp/photo.jpg','8918455867446117794',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2mflDU9vBo3fa6nEOQs-aOohQ-YmUG-5puwz1TyaHaX_8mzk6kXAsurrs-E2CxrXHc8fo0-PZCw-wDQmhkp9XnbrHUn8','Very impressed with this emergency room from start to finish. Came in for some chest pain was seen right away by Dr. Patel, the staff came in and did a quick EKG and some blood work very professional great team effort. \n\nDr. Patel \nRommel RN\nMilly Rad Tech\nJonathan ER Tech\nOlivia Registration','2019-12-22 20:03:49.541000','2019-12-22 20:03:49.541000',5,'Timo Juarez','https://lh5.googleusercontent.com/-X11koJOnVd4/AAAAAAAAAAI/AAAAAAAAAAA/HssK0PfM9C0/c-rp-mo-br100/photo.jpg','14904078213800803294',13651),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Mh47tC7fpW_-nSt_7SO7dCGcSAJBAudzmqGYICnzeLb6qpVsM_ZwU598Mz2L2AGyMZzFkvHCQ7jdxEYb5o9Hz47Sq_k','They had a really accommodating staff!!! Kim made sure I was comfortable & satisfied my entire visit.','2019-08-14 22:53:04.062000','2019-08-14 22:53:04.062000',5,'Kendyl Myers','https://lh3.googleusercontent.com/-xOIVVL5_D_I/AAAAAAAAAAI/AAAAAAAAAAA/hoUUWOWxaUM/c-rp-mo-br100/photo.jpg','3272657195432704501',6913),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2MIJ_GbQcpwEnzM22Px0MCUCkOrKmXlVB8MjOXC7SLdkohIfrAfFZBrjZXI4AaWaZvrjc-F3wQCMzqvEA_CcC9HrKgtk','By the time I had made it to their clinic I was not only physically or down and exhausted but I was emotionally given out. The staff was beyond accommodating! They cheered me up and made me feel comfortable. Not only was the doctor and staff professional, kind and friendly but they went beyond their means to make me feel at home. I will definitely return should I have any future problems!','2018-11-13 00:13:27.724000','2018-11-13 00:13:27.724000',5,'Tammy Kaye','https://lh3.googleusercontent.com/-mEeskH-6bWI/AAAAAAAAAAI/AAAAAAAAAAA/VtL79RMq8lQ/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7560),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Mjp_LkA-qJeK7KlOoICyjBJCB48kD2kqthDlW5Y_wyLBKP538HZxfhFuxWanx8Hyt-u9codhyk3fwR2owmp5hvFrJbY','This place is VERY questionable! In my husband\'s recent visit after he\'d fallen and knew a rib was likely broken, as he\'s had multiple broken ribs in the past. He worked two days prior to his visit. His wait time was short. He was X-rayed and told he had 3 broken ribs and a partially collapsed lung. THAT\'S when we should have left!\nThen then \'Board Certified\' doctor told him he needed a CAT scan to check his liver as it was likely injured by the broken ribs. My husband was in a lot of pain and was given heavy duty pain meds. Altering his judgement and I just wanted him better, now he was feeling no pain.\nAfter the CAT scan verified a partially collapsed lung, the doctor told us he need a chest tube. NOW, we should have left, but the ads say \'Board Certified\' ER doctors...My husband said he wanted to leave because \'You\'re just trying to get my money\'. The doctor told him he could NOT leave to go to the Hospital, We were told we \'had\' to stay. Should have called 911...\nAs they are now very quickly prepping him for the insertion of a chest tube, I notice that everyone but ONE person is dressed in clean, professional scrubs. This person, who was \'acting\' like a nurse was wearing an old, dirty GAP sweatshirt, some kind of non-scrub pants and FILTHY looking bright pink Crocs!!! I\'m in the room until the actual procedure, then told to leave. I hear my husband screaming in agony, horrid! THEN the doctor says my husband has to go to the Hospital for an overnight observation...in THEIR ambulance no less! Should have called 911...\nAt the Hospital, they said the chest tube equipment was outdated, hadn\'t been used there forever! Then they asked something we didn\'t even think about, what if something had gone \'wrong\'? What was their backup?\nDO NOT USE THIS PLACE unless it\'s for a cold or vaccination!!! Also, I CANNOT find that particular doctor\'s Board Certification ANYWHERE! Buyer BEWARE!!!!!','2016-02-16 00:24:44.846000','2016-02-16 00:24:44.846000',1,'Margaret Byrne','https://lh5.googleusercontent.com/-w8VQjTtF66s/AAAAAAAAAAI/AAAAAAAAAAA/0aIYvyFcdzc/c-rp-mo-br100/photo.jpg','13486358490203335051',1143),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2mMmT82BeIK-D3J47vVpXQfDqQqhHDxNHa64Bej2oiMFyxKv0AOn9J_swl7D9_OFwaOpu8njG5K9xLPCtmVJmYZ7bujM','Dr. Edward\nRN: Fanny,Jesse\nRadiology: Janet\nTech: Wendy\nReg: Angela\nAs soon as I told the young lady at the front desk my problem they immediately to me the back. They listen to my problem and got right on it. They made my visit comfortable.','2020-01-24 17:11:10.576000','2020-01-24 17:11:10.576000',5,'Roshinda Haynes','https://lh6.googleusercontent.com/-74PjJXgLrXU/AAAAAAAAAAI/AAAAAAAAAAA/YQAsgVM4S2I/c-rp-mo-br100/photo.jpg','17394740196501090048',14042),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ms-NxlFz7RgkF82400dGHXw2UUwZtEr9q-G2qFR7zZ60kowq2JxdJlbb1oOrVafBgpeIKtHfwS3AFR9FM6gC7P1k4A0','Was greeted as soon as we walked in, the receptionist seemed to care about what we were there for. Didn\'t wait very long at all to be seen by the attending physician, everyone on staff was very caring and concerned about my daughter\'s wellfair. Would definitely recommend this location and Dr Sylvester to anyone needing emergency care.','2016-12-06 04:07:26.933000','2016-12-06 04:07:26.933000',5,'Robin Contreras','https://lh3.googleusercontent.com/-vFzWCjRUnPE/AAAAAAAAAAI/AAAAAAAAAAA/uBj42pKt8C0/c-rp-mo-br100/photo.jpg','3511292162159714121',7921),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Mt2cwLdrbqyrfYZui3rsmRWqAQDPonmUDE4Ol8e3SUJw7xF_Fr8vhOtUmnlapYgE8xdyaV0INOMrA3viUehDFt5wfb4','Jocelyn’s smile when you walk in is reassuring and welcoming. Robert, the nurse manager, took us right back since the nurse was busy and he didn’t want us to wait. He was professional and helpful. Marcus was friendly, kind and accommodating. Alvean was professional as she came in to make sure everything was good and give meds. She did everything she could to make sure we were comfortable. Dr. Joe was so down to earth and explained everything allowing us to be apart of the healthcare decisions and talking through options honestly.','2019-10-13 06:50:14.996000','2019-10-10 20:46:49.558000',5,'Tricia Brand','https://lh5.googleusercontent.com/-HY1aKRPdnFA/AAAAAAAAAAI/AAAAAAAAAAA/bgofChUVI2w/c-rp-mo-br100/photo.jpg','16389487648212004696',2833),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2mW_zz-TsaR9z0kvELja4HQsyRdgoHOpgbKTVK_QcRcLcaFzDeNhX-9ijqofvvrhfU40_XX2kQ4hhuCLTx71mBduNzEY','The staff workers at this location were very helpful and nice during my time of need. They are very fast when it comes to seeing their patients and try to keep you as happy as can be despite being sick. The worker at the front desk Courtney S. really made my experience memorable ! She was very sweet and helpful! I would definitely recommend this location!','2017-12-20 02:18:24.524000','2017-12-20 02:18:24.524000',5,'Kashia Hastings','https://lh5.googleusercontent.com/-ZX0k9nW5lSk/AAAAAAAAAAI/AAAAAAAAAAA/gxhq2Svhelo/c-rp-mo-br100/photo.jpg','8918455867446117794',9320),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2MZIakGscCRTpNi3T_JIGwFd0l6yJl3j3XSDAhAgbl1gtlPgUUnk-yK5u7MuO5Bx4n2HeQ-qjak-3NTl2fMQNJpvaoDc','Came with a friend and the care was the best I’ve seen in an emergency room. Ashley, Keira, Magali, Eliza, and Dr. Anders were great.','2020-02-25 04:36:19.996000','2020-02-25 04:36:19.996000',5,'Lauren Lopez','https://lh4.googleusercontent.com/-amuJta-bsZY/AAAAAAAAAAI/AAAAAAAAAAA/ZtkSN1SBK90/c-rp-mo-br100/photo.jpg','6521947413723274945',14546),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2n95cZTroPUzMty0Gxo3V5Nav8qDjVFKdi4lcdqy1FB9EZS6tzZvZlf2lrBiw7hYlR9ZF54qdF4kNqDlG853kDd_R66c',NULL,'2019-02-01 20:52:36.365000','2019-02-01 20:52:36.365000',5,'veronica barrios','https://lh3.googleusercontent.com/-1_qb6a9ht90/AAAAAAAAAAI/AAAAAAAAAAA/4aKgxhHDDKI/c-rp-mo-br100/photo.jpg','3511292162159714121',7422),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2NAB0gUxFKxmEgYWqeBCQHYTf6hEpzCp0OCh6K0VcN49N7mJS7Qb5IkwoxxVwrNM2trvtmuN0y7wsmMYZqCrx-U9FhwU','Phenomenal care, quick service, and great doctor. Highly recommend!','2017-01-08 16:33:46.267000','2017-01-08 16:33:46.267000',5,'Jennifer Josey','https://lh4.googleusercontent.com/-hSovTHPTFsk/AAAAAAAAAAI/AAAAAAAAAAA/_qCxvscaSbg/c-rp-mo-br100/photo.jpg','14567670160750071148',1920),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2nect0B-1kUryVi0-IzJaoJpjN9fqXOwl32AjGLKVDGPVSQc0o55lebNmgXscu7jx05czT8Os64StrgEs_naqLsw1_Do',NULL,'2020-03-02 03:17:23.288000','2020-03-02 03:17:23.288000',5,'Brooks Kelm','https://lh4.googleusercontent.com/-sGszd-aRGFk/AAAAAAAAAAI/AAAAAAAAAAA/CFfr43vW8uo/c-rp-mo-br100/photo.jpg','13486358490203335051',20937),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2NhRJIOhHu-DDqLGYi6j26ZzQ9LgeorwYTOVXa7cJwZTQ_Q7cBYrNwiBWIQN-OEE-k4HhLpcVdNllDJ_gdQFWfe6LV_s','My family’s experience was great here all the staff Alvean A. Kelly L. Jocelyn A. And Dr. O’Malley were very helpful','2019-11-27 15:58:40.887000','2019-11-27 15:58:40.887000',5,'Janea Alexander','https://lh4.googleusercontent.com/-IdYcrJyQv78/AAAAAAAAAAI/AAAAAAAAAAA/r_04Bs2j00k/c-rp-mo-br100/photo.jpg','16389487648212004696',2618),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2nkQ4FgZDivenhq4jRq2xdh8Q1O6dtYgFePqlmkKff3YW8mb9ms0Sqbx46lLhH3_HKZqsnzg2NvFBJFS6cMtlyBYGE_Y','Savanna and Aaron took exceptional care of my Daughter. Thank you Signature Care!','2019-05-15 20:36:18.112000','2019-05-15 20:36:18.112000',5,'Krystal Marquez','https://lh6.googleusercontent.com/-YrGjRpnxpXY/AAAAAAAAAAI/AAAAAAAAAAA/LaPYig0Ly-o/c-rp-mo-br100/photo.jpg','13486358490203335051',1006),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2NREwjgp-NuaSDXFKUlYXJsbUvBsNMlGddRdITQgNxJlZtJAVvqWthPRQ_lm-N8q7XjOQINrfTLwLSIwECfeXvUKpmcc','Jennifer d very precise and immediate Care and attention\n\nErica great nurse very patient and informative\n\nAshley very professional. Knowledgeable\n\nI love this place, everything that was happening was explained thoroughly. \n\nThe doctor was very informative, explained it all in everyday people terms. Quick precise...\n\nI will return again...','2019-03-08 15:58:10.037000','2019-03-08 15:58:10.037000',5,'Tonia Andrews','https://lh6.googleusercontent.com/-PfUFUJCQxlk/AAAAAAAAAAI/AAAAAAAAAAA/LI4pDNm9Ibc/c-rp-mo-br100/photo.jpg','8626688543755174284',8536),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2nTCdpRtUVi-OWhgQEDyJxg17qZosPMBLyimHDj_mz-Sm4AIa3El0mZ0i8049jlcUd222sTG36VHaekVJcXdIWFeiln0',NULL,'2016-05-25 08:30:43.744000','2016-05-25 08:30:43.744000',1,'Cadesha Raibon','https://lh6.googleusercontent.com/-jF0nG6ZsE7k/AAAAAAAAAAI/AAAAAAAAAAA/tsM7Ye4gMEs/c-rp-mo-br100/photo.jpg','8679688254631342173',8923),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2NVipxHWAaqk70YRSIWJ6f8EFC1G_ZPCE2KWnxK-M9HuEVxFuGnawd0kEHsFCIqpU_AZChjaRe30fzem7AiMSoUNyW6s','I waited on the phone for 3 hours very patiently because I understand that they\'re swamped with calls about COVID-19 testing but for them to HANG UP on me right when it\'s my turn is bull. At least have the decency to call me back. Also if you don\'t want to be slammed with phone calls, maybe you should have more information on your website and require people to make reservations/appointments because the website is very misleading per the other recent reviews. OR have signs posted outside of your building near the entrance to let people know they need wristbands and what time they should come to get them and miss me with your generic \"apology\" response that you have been responding to other posts.','2020-06-26 06:05:38.524000','2020-06-26 06:05:38.524000',1,'Vivian Tran','https://lh4.googleusercontent.com/-wcqcgQonp0A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnomYYbB6HvyYQ9i_Lxov9SI6SCYw/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21265),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2NwqpKtK1lEqHZ6B3UkJhNfqpkwjqA_WCOIDYVdIa8xjvvN1g_6-AyltjhdBaBrNo90pRJX3xSJNpI9_AH7AEAquS9nA','The Signature Care Emergency staff including Dyveliz, Remington, & Autumn were awesome and took great care of my daughter. I highly recommend them.','2018-06-10 19:52:11.761000','2018-06-10 19:52:11.761000',5,'1st Base Investments LLC','https://lh4.googleusercontent.com/-0yq4SvdgL5A/AAAAAAAAAAI/AAAAAAAAAAA/tuzSZAKQfck/c-rp-mo-br100/photo.jpg','16590124370714063921',3817),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2NYdHoqtP6Ug5KVImYD_nJiodMs31oX2yvDwu8-oYMQeGBUreaH57S26tXF4Ql-zdYrpmjiLyTRwLRrBnd-CU3sDud2w','Friendly staff. Very fast. Would recommend this location.','2020-07-21 06:28:00.789000','2020-07-21 06:28:00.789000',5,'Ximena Nunez','https://lh6.googleusercontent.com/-OPVO72ZTeAQ/AAAAAAAAAAI/AAAAAAAAAAA/sfR_tI2G42A/c-rp-mo-br100/photo.jpg','14748677429039074158',21638),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2O-s99OVSeC4myyxmu-fJ3DMdlbesmWY8FEsu800FV9viGfLIrTz4irw4bF8oDXCXA8tHxhb1O8Gxi8DW9KPrjPZnsp0','The registration staff member, Stephanie, checked the patient in as soon we entered the ER with genuine care/concern. Nurse Rollie, along radiology tech Natalia, got the patient into a room immediately for an assessment of her medical condition. Dr. Ybarra was very thorough and exhibited in depth knowledge concerning the patients expressed medical concerns. We have visited this ER for medical emergencies in the past with great satisfaction that our emergency medical needs were more than met with great care.','2020-02-11 05:37:21.258000','2020-02-11 05:37:21.258000',5,'Kevin Malonson','https://lh3.googleusercontent.com/-Iq3V9H5hB2s/AAAAAAAAAAI/AAAAAAAAAAA/OhD7UlMB1BU/c-rp-mo-br100/photo.jpg','8679688254631342173',14750),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2o1KKd7zdmdY7o4XbYld97KJG4yPfAk0P0lxvQMjNhYwQ4KUQ0loBWgSu1MmPRAfv_yclIN06a_U_RLkgugjjd_vlv5g','Such a nice, clean, friendly environment! The staff was AMAZING! Erin took wonderful care of me and always made sure I had a warm blanket and something to drink. I would HIGHLY recommend Signature Care to my friends and family.','2019-02-26 17:14:47.427000','2019-02-26 17:14:47.427000',5,'Carson Greenwood','https://lh4.googleusercontent.com/-DjwEHAgbsS0/AAAAAAAAAAI/AAAAAAAAAAA/5U8v5uVd6yo/c-rp-mo-br100/photo.jpg','13486358490203335051',1062),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2o7vD6RPx2OYNMpkAQE9jlA4CpK2sauiDuZbeVRMbMv1Kz28CU-JoDL4q22QZtQdS04cM1VOOrz2-LpSycVHNtXDttio','Dr. Jones very through. Got to the point didnt mince words. Very appreciative for that. Gunnar was phenomenal!!! My youngest truly enjoyed his upbeat attitude and didnt make her feel uncomfortable. Fantastic. Thank you guys for making us feel comfortable.. Karen the nurse was very lively. Enjoyed our visit.','2018-12-31 21:49:57.892000','2018-12-31 21:49:57.892000',5,'Michelle Johnston','https://lh4.googleusercontent.com/-MgrnGwXRbMI/AAAAAAAAAAI/AAAAAAAAAAA/hsXRA6C8Xow/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',7074),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2oebmrzhCab4Ur7fkYffdxxh3wtaObeDw4znLmpqAjhfgqLg1ZmuyJBiKe7cGZ4icL5yD5kFS8LaJ5viV96gW2QOHymU','The staff was extremely professional during this virus crisis... friendly, efficient thoughtful ( although I didn’t get my warm blanket) I would have liked for the doctor to have examined my foot rather than totally rely on an X-ray. \nJoseph was very informative and considerate (although he forgot that warm blanket☺️)','2020-05-20 16:03:29.981000','2020-05-20 16:03:29.981000',4,'Mary Helen Wright','https://lh6.googleusercontent.com/-mwAUmMgXBQU/AAAAAAAAAAI/AAAAAAAAAAA/_e_TSQCmH0c/c-rp-mo-br100/photo.jpg','14567670160750071148',22489),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2oEDzpTzynTr_ZqjG4m1qNp7p8ZpcTa4i-M_V0fICo3eswDzZ4ZzyC8STfMWvxq6EoiZuGi1k7PQXTfiEWBqj9gwIBn8','Was scheduled for a COVID exam here by my employer so that I could return to work. Was in and out in under 30 minutes. Nurse who swabbed me was quick and professional.','2020-08-06 15:34:45.789000','2020-08-06 15:34:45.789000',5,'Justin Maloney','https://lh3.googleusercontent.com/a-/AOh14Gj3kVYqua7DaX8dgtyTCt65uIVRm6WpCw95Knct=c0x00000000-cc-rp','8918455867446117794',22262),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2OhGnJtVXiU_QA4jWQM0OhLYKKZBRKG1UelPs_NQv5BcYtzDTAuUlC_F8gaZ0iB6vHKgaChmeZLjaZRR5vxd872zoTBY','Outstanding service, will come back and recommend to others.','2020-02-27 05:31:00.608000','2020-02-27 05:31:00.608000',5,'Errol Hill','https://lh5.googleusercontent.com/-NqMp5u5ie6E/AAAAAAAAAAI/AAAAAAAAAAA/nDuQGIlAVNA/c-rp-mo-br100/photo.jpg','2694018788013845459',14206),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2OMnC5kD3f7hWcsyCoO4DPQff0pwPP7UqGhbIduQlgAAEWofckXk0RaR4oCxFuQfquOTPf3rXsMJ1IgzvLisi4nq3Nk8',NULL,'2017-08-01 17:20:55.118000','2017-08-01 17:20:55.118000',5,'Danielle Licerio','https://lh5.googleusercontent.com/-X-7I86FDWy8/AAAAAAAAAAI/AAAAAAAAAAA/EeJ1sZ6Imqs/c-rp-mo-br100/photo.jpg','14567670160750071148',1781),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2oOZ0etlhMqIOrfrRcILkuiVjck_a3FthpU8TULxhGiWy31ex7kdYFQy59rZN7ZT6fQ_nGx0quEH6mz_aOooWy8axqd0','Hayleigh and the staff was amazing!! Everyone was so great :). Thank you','2018-08-31 01:45:20.473000','2018-08-31 01:45:20.473000',5,'tawny heath','https://lh4.googleusercontent.com/-QhNscm6zAQc/AAAAAAAAAAI/AAAAAAAAAAA/uGoIL3ylXmk/c-rp-mo-br100/photo.jpg','3511292162159714121',7605),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2OQdQXKk4bfcBbeF5GTNIiFCX-sgUSGx2x5-wEdAq-CgcmsTcCeidmXJKOORuKHj_Kz6AOJRbIskOvNdOMh_LS_81CdE',NULL,'2018-04-01 22:17:01.367000','2018-04-01 22:17:01.367000',5,'Alberto Lopez','https://lh5.googleusercontent.com/-_ye36g10ncs/AAAAAAAAAAI/AAAAAAAAAAA/wmfV14pijvc/c-rp-mo-br100/photo.jpg','17898197009688164559',5932),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2oum2xGIKb2-ih7vwo4hYDYC5Fax3uP_8PUP1SMegnIjdcoqOYXyyCH2Tth8CKPjRpo7er9bbrtvTtEVT1mibiTM42pA','Alyssa, the receptionist, was nice and everyone who was there were helpful and kind.','2016-06-16 02:38:18.594000','2016-06-16 02:38:18.594000',5,'Arlen Huynh','https://lh4.googleusercontent.com/-9CV-bWUs3S4/AAAAAAAAAAI/AAAAAAAAAAA/hFA-7TsvZlU/c-rp-mo-br100/photo.jpg','3511292162159714121',7980),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2OyIOMttKEm8OsE99pbF0ISrTTH4fdYcMI9u8LfrmGpodqWZEUjKYq8YqMnDrH5EM2JFkU6d5G9ViyNrKr-5i7j4_zS4','I live nearby and have gone here twice in the past two years. Amazingly clean, the staff/docs are very thorough and make sure you\'re well taken care of.','2020-02-16 14:41:41.443000','2020-02-16 14:41:41.443000',5,'Jason Gaitz','https://lh6.googleusercontent.com/-7C1s2bo9dT8/AAAAAAAAAAI/AAAAAAAAAAA/OLRjNqS3_kA/c-rp-mo-br100/photo.jpg','14904078213800803294',20997),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2OzC0ZMOFDHbgD8j7Io3R7XnesZpg-nxhKUjUV7FyEyJlzmdqLW3TEPCaSqh5spUWJlYf3iRmMdkKuXeZbAicrxibZck','Doctor Patel, nurse John, and registration Deanna were all very empathetic and efficient. This will be my ER from now on.','2018-09-08 17:24:50.362000','2018-09-08 17:24:50.362000',5,'Polly Heins','https://lh6.googleusercontent.com/-GFT_zcvNt4Q/AAAAAAAAAAI/AAAAAAAAAAA/Fs9ELkV5Qjo/c-rp-mo-br100/photo.jpg','12541597562633926366',614),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2P4MYRp--FPCrfJlSdsEmYXUjdpPw1gC1jEAp5NXCQMnpsDnohzutxCB3I3eIEJB1_yUwYjY63wQ7eZqSkYiK7YHhDqk','Came in and was instantly helped by this locations awesome team ✅ \nShout out to Patricia, Ekaterini & Thuy An!! \nThanks for bringing me back to life!! 🏥🚨🔋','2020-03-19 16:01:00.282000','2020-03-19 16:01:00.282000',5,'Chaz Fuego','https://lh6.googleusercontent.com/-jfMBmUWCZaM/AAAAAAAAAAI/AAAAAAAAAAA/g0VkJpF1Pdc/c-rp-mo-br100/photo.jpg','16389487648212004696',21004),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2p5qvaScryz0BarjrLc_X6aIeUd8yz9S2O7RoJ0fBx0jvwKCoRp2vbARyreQvuxoDTTAgFqPGmcChbmq1PActpK1QROw','Christina And dr Quang was amazing and efficient','2020-01-28 23:49:06.721000','2020-01-28 23:49:06.721000',5,'jeanesia edwards','https://lh5.googleusercontent.com/-ey22qJo6Hh8/AAAAAAAAAAI/AAAAAAAAAAA/7KZv1KzXTFk/c-rp-mo-br100/photo.jpg','12541597562633926366',22482),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2P8DQsmARjUMsAwsBUKIva_fULn53nmit9a_brCjM1kV34IwOJHMob6VJ5Bu0drx1xqqRZqZ1zEFh8qbZnuwpggf9jU8',NULL,'2020-07-10 11:51:02.593000','2020-07-10 11:51:02.593000',5,'Rebecca Mendez','https://lh6.googleusercontent.com/-1MRONwlGxzw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucklNDakOsfUm8v4sPUzMEZKk4O-xg/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21966),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2PbkM-5qfQj4vBTVCf4W5Sq_Bnt87Z-03HAZlX60T7oyxMAIjwQB8JeUivW2km_ICEMxEdWm34qL8rEoyqzEOlCG-O18','Fast service! promptly seen by the Dr. quick in and out. Very friendly staff. Dr. Cavasos was very caring and so was Nurse Sara. Thanks again.','2019-11-30 05:04:53.559000','2019-11-30 05:04:53.559000',5,'Mustafa Faiz','https://lh6.googleusercontent.com/-bMSzOae8xLY/AAAAAAAAAAI/AAAAAAAAAAA/jBqc9AK8JMk/c-rp-mo-br100/photo.jpg','17898197009688164559',5393),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2PewAFHTpemZnMeycL4uSKzy7VmBZM9FGEMgHrECGBJdJ_6-_qJfzUfPR6bVqfVsBKAGzGK0yRx9Mw9Pdt5PzqQfqEos','Great service and great customer care as well as reasonable wait as well as quick and efficient work','2020-06-05 19:00:13.454000','2020-06-05 19:00:13.454000',5,'Sam Filardo','https://lh6.googleusercontent.com/-GyeQ760vgmE/AAAAAAAAAAI/AAAAAAAAAAA/bzOJQRNFPLY/c-rp-mo-br100/photo.jpg','8918455867446117794',22932),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2PIcbn3L3BCuyWPONgE6JLywi899hPsQh8KR1nHA-VSyi1PBHC-8uIKeY9vdPVVtnuoZpqYLwJzBT7A9LVo-4Uxc-g_8','I had a work injury today. Came in to Signature Care, I was blown away! The customer service is excellent, I was seen right away. Thank you so very much Lisa, Jair, Krystal, Jaime, Dr Bose!!!!!!','2019-06-11 19:23:05.091000','2019-06-11 19:23:05.091000',5,'Miriam Morris','https://lh5.googleusercontent.com/-skgZJ6_KZUs/AAAAAAAAAAI/AAAAAAAAAAA/7rTxFjFXjvQ/c-rp-mo-br100/photo.jpg','13486358490203335051',973),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2PJjD8Oa6kImJN_5OWmymxu_0KiAis5DV2jmOwCz410jyERUFonqSm-NWvSbR0RsDNq8xXjTZbo_t3ExJCCJU5KoBYRA','The entire staff was amazing with my little girl they made her feel comfortable and we were literally in and out. The absolute best experience hands down!!!','2018-05-12 05:46:09.824000','2018-05-12 05:46:09.824000',5,'prototype ent & dance company','https://lh6.googleusercontent.com/-_aCw5AQPAAY/AAAAAAAAAAI/AAAAAAAAAAA/WjoduAy6ptM/c-rp-mo-br100/photo.jpg','14904078213800803294',2254),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2pLzieXZMESiMNxd0ADJRqW3Ih_apy4Jc1aJFCynhJhVMQid1o1R4Fom5XLLRjcjkZqjyE3Caq-v_Tm0D54ZTFBc6tY8','I love this place! Being without insurance is hard to find a spot affordable and willing to care for you BUT they went above and beyond my expectations! From the front desk lady(Jennifer) to the doctor (Elsbecker) & nurse (Christina) they were all amazing.','2020-02-21 16:29:34.311000','2020-02-21 16:29:34.311000',5,'Sandra L','https://lh4.googleusercontent.com/-X60mAlR6UsE/AAAAAAAAAAI/AAAAAAAAAAA/4P67zHpVLX8/c-rp-mo-br100/photo.jpg','16891069708558046635',13937),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2PPa06TrBRqj8Y9lZTnc-rkhwpZt9pqcqPQPOFfYxR7HE3hjtPG-4zfrvGHrWxhjVKqpdu-TGVd6s72w86XNPyraTFJA','Very quick in and out! Love it way better than the hospitals','2016-11-14 12:35:10.723000','2016-11-14 12:35:10.723000',5,'kaylah crosby','https://lh4.googleusercontent.com/-lKFzQABQKx8/AAAAAAAAAAI/AAAAAAAAAAA/58szMYczINM/c-rp-mo-br100/photo.jpg','17394740196501090048',5171),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2pPD7P_aadPd9_jECE8iBa8jjsfNySCnxwLakFsU9MwHMquqaHzRZn6ASR4b7JQU-R_44NmdjfUO4SmHsYGJ8S0v7-1I',NULL,'2020-08-02 16:17:52.965000','2020-08-02 16:17:52.965000',5,'kayla lopez','https://lh3.googleusercontent.com/a-/AOh14GjTqhjSofvxE6sLEQQsyu9Veo0TxS9H6dzmS7bA=c0x00000000-cc-rp','6521947413723274945',22195),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2pqZHZkvLhyiHchl7UdeP-ny5L2C71Hh94XneR8POHumyd-cX0o6K9S_lP5qUBTVv5Lh0OQDb80_LeQ8HHHvQ1_pPxAk','Just arrived at the SignatureCare Emergency Center on Highway 6 South to accompany a friend who came in with with severe abdominal and flank pain. By the time I arrived she was already in an exam room with IV fluids and all pertinent procedures/labs had already been performed and were pending review. She was promptly treated for her symptoms as she waited for the results of her diagnostic testing. Minutes later she was given results with a plan of care. The staff here has all been excellent and very professional, from the front desk person to the nurses and providers in the back. We are extremely pleased with the care being provided and would definitely recommend this ER center to family and friends or return in the future if needed. Very pleasant experience so far. Special thank you to Rolly, Cindy, Lisa & Dr Edwards, keep up the great work! You are so appreciated!!','2019-06-26 07:16:18.368000','2019-06-26 07:16:18.368000',5,'Angela Beal','https://lh3.googleusercontent.com/-dZhefUk7Hx4/AAAAAAAAAAI/AAAAAAAAAAA/rQqd_2SDZp8/c-rp-mo-br100/photo.jpg','17394740196501090048',4646),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2pU1vMtoD27m1ewW8nnUOS-N2ahIUlgEXo3cW6Pse1SfCE1VyhiCJPDyWsJYA7b5Ky9ONEHiv_vr-5JVziKgf3E366WM','The two times I\'ve been here there was barely any wait. They are very good at providing a comfortable waiting area with drinks and snacks gratis. Very nice staff.','2017-08-02 21:16:21.793000','2017-08-02 21:16:21.793000',5,'kaye katt','https://lh4.googleusercontent.com/-I6g0bi_p5ho/AAAAAAAAAAI/AAAAAAAAAAA/VJnHPwyABFY/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2336),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2pW13gB4K1Yg9h83EE8P_Sv_0m0ZR8YHHCKiJUED18AKc6JYWdMuDtxd-5VUhB4jUySnat-Pxu16Huu4zrSB9JXMwqDw','Dr Estevez, Alvean, Tricia, and Jasmine are the best. They specialize in best practices and put the patient at ease. The facility is as amazing as the staff. Highly competent professionals.','2019-07-25 18:47:49.179000','2019-07-25 18:47:49.179000',5,'Kevin Anderson','https://lh3.googleusercontent.com/-AtQCS_N88bo/AAAAAAAAAAI/AAAAAAAAAAA/njs4-4i0W4k/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2pWWxsj_sPvU5jGjKsQBN7m3-64CRBQl_6mRTZCTZK7uhr3JUtADSbnJIuk3E9-DJq_RgE-oatohBlQQcl_53A6Dtdgc','Our experience at Signature care was great. Our nurse Jessica, doctor, and the staff made us feel welcomed and taken care of. 10/10','2020-03-01 22:34:45.803000','2020-03-01 22:34:45.803000',5,'Justin Deanda','https://lh6.googleusercontent.com/-ba9jEAeZVB4/AAAAAAAAAAI/AAAAAAAAAAA/60rT-v1jrIE/c-rp-mo-br100/photo.jpg','6521947413723274945',14527),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2PxYxWynZKyu_uoarxuPX1VVDWpyaODJJCEfcaynpMb-0HJlZfXsapLlMi6ZPoZZ8gvusn9KscjwXp01IxmpAgLof4n0','Do not pay the 10 for the “Drive thru evaluation” literally a waste of money. I waited for 30 minutes only to be told to go inside and check in. What is the point of the “Drive thru evaluation” what a waste. And really rude service.','2020-07-21 13:29:55.763000','2020-07-21 13:29:55.763000',1,'Jessica Thompson','https://lh6.googleusercontent.com/-De3jawAZQZw/AAAAAAAAAAI/AAAAAAAAAAA/-dmo5YJtBKg/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',22919),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2PYOZNqq3ZBewZ7A2o8eCMNg9cykjJmkLijMSmP9t0elaWj4bdE-gscP09OL3Kr9jco9qFmVd4YpGn04W0OsLKOzcKIA',NULL,'2020-08-07 18:11:04.211000','2020-08-07 18:11:04.211000',5,'Erlinda Alfaro','https://lh3.googleusercontent.com/-E76fYR361BI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckCjfpHuPLP8iTh35__jqoIedqUTA/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21918),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2PYZGjkkhVjMyDBB0ZzV60DUvGd9IKAJPGY6lH0WcfSgnpBMD6ZYtvUOdqfqFtJI-Ld5_tH2Lfmk95vpVBzAPDVWaQow','beware of their prices, they are good at advertizing but god forbid their billing.','2019-03-17 22:19:16.160000','2019-03-17 22:19:16.160000',1,'Mayank Malik','https://lh6.googleusercontent.com/-XUPBnFJmX9A/AAAAAAAAAAI/AAAAAAAAAAA/_X5C9f-2gE8/c-rp-mo-br100/photo.jpg','14567670160750071148',1360),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Q3gu_n-7SDS34Tq1xaASBoMUNhEX5fnazC94aQa7wTpW3Es8iox2ksjjmjGD8Qr4M_p_PxTu6INSxRf6Ddz1_w9KDxc','I am at the clinic at Lewisville this guys know how to to their job I got her at 3 pm and they just give me the results unfortunately am positive for covid-19\nBut it was fast and now I know what to do.\n\nFor the clinics in DFW learn call them ask them how they are doing it.\n\nWe need this to be fast.\n\nThank you to Dr chowdhury for all the info and thank you to Osbaldo nurse for been very profesional.','2020-08-06 21:42:49.715000','2020-08-06 21:42:49.715000',5,'M4 Construction','https://lh3.googleusercontent.com/-TOqD5ykmkOc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn8cV8PXwZxx3xZyEfT_tcO1NvmNw/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22516),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2q7zBzTj7dRKjDbpRGG-enBltKyxnCjyddJ_JGtOp5f88UwLPlKNkjnkdw-amLD75PO6rmIV_R_y5oEGOZJTOcCJp30M','Rayven, Nurse Gabe, Rad tech Cameron and Dr.Kimball were all amazing during my visit here!','2020-06-17 11:06:35.069000','2020-06-17 11:06:35.069000',5,'Kendra gray','https://lh4.googleusercontent.com/-vQaN4kaX_Dk/AAAAAAAAAAI/AAAAAAAAAAA/3qVAwNQsO50/c-rp-mo-br100/photo.jpg','16590124370714063921',21020),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2q9l1kPjBGCnvEWWkeoY5AkXOsXNVcUBYzjrhnHL4P9kWrl4TxFBzOKN3WV1sCHi2uVXMEPp6SZcha67Bfq3n-WIBATM',NULL,'2020-01-09 18:05:17.095000','2020-01-09 18:05:17.095000',5,'brittney fletcher','https://lh6.googleusercontent.com/-gzBj52XOJW4/AAAAAAAAAAI/AAAAAAAAAAA/W18j0m4Naag/c-rp-mo-br100/photo.jpg','17898197009688164559',9510),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2qhb5jCTrWnqUVWUIe1BO6yqc_uxeqBgI2VNKyVx9dyJ7a_A1Znx7I2YUQPniJksOMG3I0yYy-QfYGEAbcgSnqtY-6Rc','Went in today because I was in an accident and needed my back looked at. The woman at the counter named Michelle was beyond rude to me. Treated me like I was nothing more than a piece of garbage. When I called back to speak to her supervisor she hung up on me. Thinking I must have been disconnected I called back and was hung up on again. I called a third time and told her maybe she should be a bit nicer to people. Her reply was, \"uh huh\" and I was hung up on again. I work in the medical field at an animal hospital and we treat dogs better than I was treated.','2017-07-14 23:31:08.741000','2017-07-14 23:31:08.741000',1,'Crystal Jones','https://lh5.googleusercontent.com/-vJ2l0WPkwNs/AAAAAAAAAAI/AAAAAAAAAAA/WLo3v26TPco/c-rp-mo-br100/photo.jpg','17898197009688164559',5936),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2QhchPnFtWDlxP7lfL-67WT-78azcBMYUUtTsk_AMXZcJ9CGRSnS5kAIksFUFEnrK8TS4jVYFf7PhCEIJ0LKFSCo_Qt8','Their reception, doctors, nurses where was so welcoming.','2018-11-03 13:51:29.845000','2018-11-03 13:51:29.845000',5,'marian iwe','https://lh4.googleusercontent.com/-RoO1ExglI6M/AAAAAAAAAAI/AAAAAAAAAAA/4pdeK02j6WM/c-rp-mo-br100/photo.jpg','8918455867446117794',9223),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2qizmo-O_EIlst9hKcComx05OF5AL_NoVrzYpjy3OnDzVRdfc2iBGfVkJiDIqX8ZxQPVimf7lWKkPcOM2C3L3G9F-4ME','First I thought the registration staff Nancy and Jackie were very nice and welcoming. The nurse zenaida listened to every question I had. The er tech Rachel was also kind and understanding. Dr Patel was amazing he took out my sutures that I had on my hand with ease. I experienced no pian. Great atmosphere 👍','2020-02-14 03:38:39.945000','2020-02-14 03:38:39.945000',5,'Gabriel Soliz','https://lh6.googleusercontent.com/-Qd2hBJN2AIo/AAAAAAAAAAI/AAAAAAAAAAA/rKZjsa47Ubg/c-rp-mo-br100/photo.jpg','6521947413723274945',14577),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2QjnFI8qJ8XOdl9tYPZpvblFEzA6c6yjx1Y0rrqZ0Czcau3YY_hDMvdwCj4Lz-QbPjVrX0-vFQtI9_Zd5sHNhb2ss1YY','very friendly staff! the service is quick and i would definitely recommend this ER to others','2017-08-19 23:01:59.079000','2017-08-19 23:01:59.079000',5,'Stephanie Johnson','https://lh3.googleusercontent.com/-8km4LoM7wWE/AAAAAAAAAAI/AAAAAAAAAAA/iM4da3O82mI/c-rp-mo-br100/photo.jpg','16590124370714063921',3953),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2QKV120NcQXloiWoRDuvlVeB1t_7357AU7nyaIyGzrp69_eWrbgVjHOXPvoEe9uaYWA_HVSt5gquz7xD98hjgUzrTXfo','Dr Edwards was amazing. She very happy to help, answered all my questions, made me feel at home. I’m so happy she was here. Also Nurse Adam and Nurse Le were Great!!!','2019-07-08 18:25:31.810000','2019-07-08 18:25:31.810000',5,'jayedos112','https://lh3.googleusercontent.com/-9XsB72zwg7Y/AAAAAAAAAAI/AAAAAAAAAAA/A3rgyb2Jznc/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4636),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2QMpkKg1G7yA9hbzcNDdXfSUMox340u4HmaXdp26XtRYRELunStE2FfYo8iuhjhx1mzcDivRWlpnNpLGWnwvo1zVDlX8','Fast service care & awesome staff. Thanks! Dr. Harjai, Jani, Kelly, Marcia and Patricia.','2019-12-06 20:54:04.076000','2019-12-06 20:54:04.076000',5,'Brenda Ramirez','https://lh5.googleusercontent.com/-RczcC08m3-Q/AAAAAAAAAAI/AAAAAAAAAAA/2Dg-g5b0FhI/c-rp-mo-br100/photo.jpg','16389487648212004696',2573),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2qT2khAQ4kuscmwCuOC9X3oleFgKHdY0_la7Je9ep9ysaXwLxmZwQPrj4hVfIJtSCeQrAfiXpCsLXb24FCvPRzGg7svc','Very friendly and attentive staff. Would come again. Thanks to Dr. Ding, Blake, Sonny, Yazmina and Mary Ann for all their help.','2020-01-28 21:21:23.041000','2020-01-28 21:21:23.041000',5,'Patrick Collins','https://lh4.googleusercontent.com/-h1BtojF7DKU/AAAAAAAAAAI/AAAAAAAAAAA/ybpY2cLr8rE/c-rp-mo-br100/photo.jpg','8679688254631342173',14780),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2qUMcYpbCK29R28jva_q5mo-n_jhl-y5ajV2Q4D8DhhdXtoWaqxRWjO_zz51sYbWsnfnelfqktIODSJ7jXvSW2duv7Mo','I was having some bad abdominal pain a few days ago when I decided to come here to see if I get some help for it. I was very impressed by everyone here. Luisa at the front desk was able to get me checked in quickly even though I was in a lot of distress and not able to pay close attention to her. She was very professional and understanding. The nurses and radiology tech( Kat, Heather and Joshua) were very thorough and kind. After running all the tests, Doctor Wang was able to determine that I had a kidney stone and treat me for it. Good job all !!!!!','2019-07-25 15:49:07.053000','2019-07-25 15:49:07.053000',5,'Clifford Jensen','https://lh3.googleusercontent.com/-UOmnHvvrKzU/AAAAAAAAAAI/AAAAAAAAAAA/tH6Jntdp7v8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2QWPc9DVgEWBxUbs2GLub3AqN9jFRfQRpuihznrG-PLRI8_z-bjSxxolHe6JqOMmuSKnAI_AUX8s8pPmj29X5VSvBpJw','Love this place! Dr. Edwards and RN Mollie are amazing!!','2020-02-08 01:01:05.488000','2020-02-08 01:01:05.488000',5,'kaylyn jones','https://lh5.googleusercontent.com/-pw6YRHx8tsg/AAAAAAAAAAI/AAAAAAAAAAA/5sII3n49jy4/c-rp-mo-br100/photo.jpg','3272657195432704501',14368),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2qX5lktjZQ72IBAYdFEAypSVZ_NVx4otl2OaKPc9MVCWOUuYP1wdKgvGfZ15LhJkw5pyKcEXewA8eH5UujUSC-H_g6-4',NULL,'2017-12-10 07:06:13.606000','2017-12-10 07:06:13.606000',5,'Shae\'ron Nikole','https://lh5.googleusercontent.com/-MVdLJgaAf6A/AAAAAAAAAAI/AAAAAAAAAAA/Ozg7U1rgcbQ/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7750),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2qXVNw_MwI5R5SQ1EZmFe2t9heN0XO_K8LTF2ixvkJMS7IhrQsRZNquE6uIjJ4JNxfB3UuRjrB-igkXDzSXu9uLTY53A','Great place we were taken care of quickly.','2018-08-18 04:34:25.251000','2018-08-18 04:34:25.251000',5,'Sylvia Perez','https://lh6.googleusercontent.com/-Gjqy2VOZZTw/AAAAAAAAAAI/AAAAAAAAAAA/f7p02Ha94v8/c-rp-mo-br100/photo.jpg','14904078213800803294',2226),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2QXVP0vH5IisQNd6TroTNwzeb4LbzFhHL7xUWzUc8Fwcbk3GWet_ifBpul6LUnCx9oVqr0ifdljfpTkqvSW0EwW842E4','The doctors, nurses, and staff are very friendly and helpful! Fantastic service!','2018-05-10 11:34:24.021000','2018-05-10 11:34:24.021000',5,'Vanessa Zamora','https://lh4.googleusercontent.com/-v64srS_cjN8/AAAAAAAAAAI/AAAAAAAAAAA/qZFY4iXFaT8/c-rp-mo-br100/photo.jpg','14904078213800803294',2257),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2R_UwvxxN0AKHYalnBsNr_b274DwCbY44iNiVzr2U0kMH9VDPKAs-8USveqjUApFF4wUCsukMMIvSo3hEWLrOXn12mx8','Very nice facility. The staff was very knowledgeable, kind, and helpful','2020-01-31 16:53:53.063000','2020-01-31 16:53:53.063000',5,'Kali Little','https://lh6.googleusercontent.com/-_Rw9WyF2-u0/AAAAAAAAAAI/AAAAAAAAAAA/7qciQcySRd0/c-rp-mo-br100/photo.jpg','3272657195432704501',10463),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2r3w5t5gBUhCZFWQSR6qAISHWO_Eiw0JRXBNY03etWtFhw-CgBOQXy1u0iCHiOjwAXcVpQ2A7bQKp405a_2LQQGl0UzY','Friendly staff, constantly looking for your improvement.','2017-10-01 16:27:10.927000','2017-10-01 16:27:10.927000',5,'Octavio Aguayo','https://lh4.googleusercontent.com/-VG_i4cHG-Lk/AAAAAAAAAAI/AAAAAAAAAAA/6ywwoJFA25I/c-rp-mo-br100/photo.jpg','16590124370714063921',3927),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2r5cHmiSDQwE0GwS6q_DgvIpPOh_bqL3J-JobxApvdzHbxPfGiZZ-WUlbGBapyzA0esgLuuVeits58ZKbJhYXtCPdv_M','Dr. Appiah is the best, he explained everything to me in great detail and handled my problems with care. Any problems please visit Signature Care. Alvean A is a great nurse and made me feel comfortable with my pain leave when asked. Marcus B is a great radiology tech. He kept me comfortable and warm during my cat scan. Receptionist Joyclen is friendly and very good with customer help with getting patient in as fast as possible.','2019-10-09 19:43:22.763000','2019-10-09 19:43:22.763000',5,'Jade Bufkin','https://lh3.googleusercontent.com/-kfHYKC84Qa0/AAAAAAAAAAI/AAAAAAAAAAA/3YQq2EBdH9k/c-rp-mo-br100/photo.jpg','16389487648212004696',2841),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2r661I3vFN2Bws3rkbAAiEr8WH1qCaDZqRmWlzCacVQ7pNq00jJD646a5K2oLT_9lSJR9uGjitOA1I_rxXTU5-buKdJs','Leah was great and gently during my testing and love that i did not have to wait long.','2020-08-03 14:07:37.958000','2020-08-03 14:07:37.958000',5,'Lissette Baeza','https://lh3.googleusercontent.com/a-/AOh14GhvCHuBXt-GtqavDHXJJ7uzzT0fwR4a7qnoTif3Cw=c0x00000000-cc-rp','13486358490203335051',21825),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2rC92Z5J-F1nwiTTz7o3JRSsdgQ0NxFZDtYZ45vePlVBNsNEmxvPHbVPsqVGjIqfeK6CaCLegZ80Re339dFC5w4WUNQc','Dr Nguyen, Marcus the Technician and the Nurse Alvean was great !!! Our first time hear and they took their time not rushing us away to take the best care of my husband I would most definitely come back again','2019-03-14 21:04:36.686000','2019-03-14 21:04:36.686000',5,'Elizabeth King','https://lh5.googleusercontent.com/-bpEGtVr6juU/AAAAAAAAAAI/AAAAAAAAAAA/uOIWej72Ubk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2REvP2fjrqg2MLrB3ZqZxSezGUiXPKccP_7g63jvOprT9jzAYBaoFZNdkT9Yk7uWrElJ95W0qxg6NBD2p7SAX4sSsnyo',NULL,'2020-01-01 04:52:43.124000','2020-01-01 04:52:43.124000',5,'Kendra gray','https://lh4.googleusercontent.com/-vQaN4kaX_Dk/AAAAAAAAAAI/AAAAAAAAAAA/3qVAwNQsO50/c-rp-mo-br100/photo.jpg','14567670160750071148',1152),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2RpixD8Zt0OXhJR_SYYTA9AyviYlDkcph1Rxx7RbYg56HOyO_aScZ_2tb3rllg3OI67Don2yGy3bhIsgdvi88lXsll-s','Brought a coworker to get checked out for breathing issue\'s, they got him in really quickly and was able to help him. Very polite welcome. Very clean place.','2020-03-06 16:39:43.834000','2020-03-06 16:39:43.834000',5,'Murphy, Christina','https://lh4.googleusercontent.com/-LGulyfb2Arw/AAAAAAAAAAI/AAAAAAAAAAA/ZYb0LnpLN0o/c-rp-mo-br100/photo.jpg','6521947413723274945',21181),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2rS2P8RIF78kVw-WY-ccjZSuDfI-RCpdVrWNyuRo4KPd-NiKwS8a2QTnvsOIcbazE8SE0C9h-vXpVxGeGzHVIFxNNEBc','Jesus was awesome! Very pleasant place to walk in and be welcomed. \nJani & Richard were great!\nDr O\'Malley was an amazing Dr with excellent bedside manner!! \nA great place to visit for your Emergency','2019-06-01 16:43:42.267000','2019-06-01 16:43:42.267000',5,'patrice dyer','https://lh3.googleusercontent.com/-AIhoOqENEA0/AAAAAAAAAAI/AAAAAAAAAAA/aBdMrmmZdMM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2RT-EmvDNJWv8oD_HgH5IATfk1YSA2yL0pYobf-fK2EJ0P8XQe4yIdR8G9SsRWGLdjMgdmuRQpZCdeUKfWUijsjuZK_g','I needed a Covid test and was able to make an appt. online. I showed up, did minimal paperwork, went back, and got the results within 20 minutes. Very friendly nurses at front desk.','2020-07-15 14:11:07.958000','2020-07-15 14:11:07.958000',5,'Lori Fryman','https://lh3.googleusercontent.com/a-/AOh14GiMQ_OSf0aG41EPv0ib2UKqTGs6WJnZgcRuPz13=c0x00000000-cc-rp-ba2','3511292162159714121',22165),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2rzyHHrwAVHQPtbzpJGDdOyMmHNcmJzH0svgYEe7xnVdEXZAGZd7IUpsixeAU3re2d_RYsa91ka-JuOpHlXRm8NF7aVg','Dr. Harjai was fantastic with my son’s broken wrist. And the other staff members, Alvean, Tricia, and Elida, took such great care of us. The facility is new and clean and they couldn’t have been any more attentive and professional. Thank you guys so much for being so great today!','2019-10-31 16:03:33.364000','2019-10-31 16:03:33.364000',5,'Sally Buck','https://lh6.googleusercontent.com/-6Dd-S98UIxY/AAAAAAAAAAI/AAAAAAAAAAA/NLj-Yj8n-n4/c-rp-mo-br100/photo.jpg','16389487648212004696',2748),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2s0pJ71_M5Eic0Hj0b3SRgle339gRFru8ekfqZrmZRPnqU8w9POgB-IfiJ0rlLuJYLcm68ml1FS9idRTsTYyDNLCW2fM','My Doctor was the best. When I arrived they seem on the spot. No waiting time. Thanks to all of the staff.\nDr.Miller\nRN: Melissa RN:Sherri\nRAD: Bryan\nTech: Natalie \nReceptions Evelyn!!\nThank you all for a Great Job!!\nMany Blessings to You All!!','2019-01-04 00:12:58.852000','2019-01-04 00:12:58.852000',5,'Denise Flanagan','https://lh6.googleusercontent.com/-IBJmGcmgLwk/AAAAAAAAAAI/AAAAAAAAAAA/PppM1AUbBnk/c-rp-mo-br100/photo.jpg','14567670160750071148',1435),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2s52kLmBDMLtBYlyyY0BAAGVO8XrpfUkxWb_YvgzXHzm94ZhQRZGpmyVpwoSh4UjLcn4nuKjeKI1HZ6UJb9mn0HhVTvw','Best urgent care experience we\'ve ever had! Extremely friendly, personable staff. Welcoming, clean and spacious waiting room and patient treatment rooms. The doctor and nurses were outstanding, taking plenty of time to address all of our concerns and to let us know they are available to answer questions by phone after our visit. We went three times in a 2 week timeframe for various reasons, and every visit was easy and smooth from a patient perspective.','2018-04-10 20:09:42.472000','2018-04-10 20:09:42.472000',5,'Dawn Kjeldsen','https://lh3.googleusercontent.com/-D87JyXxqI4Y/AAAAAAAAAAI/AAAAAAAAAAA/gYxXVRkiBnM/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2263),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2sDMZVL302C_bdSSAwBRsgbifwBKzs7nkyH3rkcLjx28qDpLxIAWOMY2K067G4SYHUxTyOIEAxDWV3AWqTU-eQNbqaIk','The staff was very helpful and will to help at all time.Jocelyn was helpful from the beginning as soon as we walk in.All of the staff in the back Dana,Marcus,Jorden and Dr. Ortiz were friendly and helpful and most import respectful. Great staff!!!','2019-12-16 16:51:47.939000','2019-12-16 16:51:47.939000',5,'Carlos Cruz','https://lh3.googleusercontent.com/-K8AqYsTMLco/AAAAAAAAAAI/AAAAAAAAAAA/GWpm91Ajt7I/c-rp-mo-br100/photo.jpg','16389487648212004696',2541),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2SF11qnWbwth76TR9OrXsXX8TKtcALm5vRqz34RU9qM4azNDNV9vz8OSagakXDJs0UENLRD7BKOiGutcV9d8Fh2-MXPY',NULL,'2019-05-13 01:32:06.422000','2019-05-13 01:32:06.422000',5,'Evelyn Mendoza','https://lh6.googleusercontent.com/-NyX52lf2TZ4/AAAAAAAAAAI/AAAAAAAAAAA/4CsDIwnlQUY/c-rp-mo-br100/photo.jpg','13486358490203335051',1010),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2SgQTha3Y8nxtRp5AJH0cw_84WWn0RyP5Yi-1CPNtS1az0fnarhTCXdOoaZ0R1ZjiU35gvmKj6dYp2itEnSCaz6wEVdQ','Very prompt, good service. Alvean, Patricia, and An did a wonderful job with us.','2020-02-09 18:33:37.833000','2020-02-09 18:33:37.833000',5,'Kendall Phillips','https://lh5.googleusercontent.com/-6mVOGxLHewM/AAAAAAAAAAI/AAAAAAAAAAA/DUmFWvVxo9c/c-rp-mo-br100/photo.jpg','16389487648212004696',22598),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2shvF5KHero8hqfS-BaakbKVyRSBl6dm_PadbcAPuuSY46iAsqH7_KmGRcq4fyPlnU7UMVOpTSi21p2MeqMGnfzAMe0I','Tiffany, John, Matt, and Dr. Simmons all did an exceptional job. They are friendly and knowledgeable. Highly recommend.','2019-12-10 14:21:50.628000','2019-12-10 14:21:50.628000',5,'Katy Walters','https://lh5.googleusercontent.com/-8kwrsqPm2CE/AAAAAAAAAAI/AAAAAAAAAAA/JfBw0IwdG8w/c-rp-mo-br100/photo.jpg','8626688543755174284',14655),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2SMHHNhDxkFymUnj5d71J-kxCC8zk8NP9IXw2tWDVI9ki3-FtdpNhbtjNgu8bAHqcCS35Q-RVTin3Lht2AJcOvi3vnQM','This was our first time visiting this urgent care. We were there because our 2yr old was sick. After he was seen by the doctor we waited for the results. Nurse Konya D S came in celebrating like she had good news, but she joyously told us our son had the flu. My husband and I didn\'t understand why she was so excited to tell us that horrible news. No one wants to hear that their baby is sick for one and for her to celebrate as it was a good thing angered us.','2020-02-02 13:34:00.931000','2020-02-02 13:34:00.931000',1,'Daniel Hanchett','https://lh4.googleusercontent.com/-e2knN7XwBqw/AAAAAAAAAAI/AAAAAAAAAAA/KSmyS_bXcv0/c-rp-mo-br100/photo.jpg','2694018788013845459',14257),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2spZyLWb1sfedzLdknYDSx2VHY2mS8r-DPTI_dOwCpgPH2Nf9b_hAz7jlI0m2wb0oq9uopFO23DvgQ7pP95KQ-E-7nJw','I’m beyond grateful for this ER, they not only are there for emergencies but are helping the pandemic by doing covid tests for the community. Staff was friendly and the facility was very clean. Thank you for all you guys are doing!','2020-07-25 00:43:17.581000','2020-07-25 00:43:17.581000',5,'Candice Pleasant','https://lh6.googleusercontent.com/-K0ceQCqzzQM/AAAAAAAAAAI/AAAAAAAAAAA/4x6SbwqyTmY/c-rp-mo-br100/photo.jpg','2077061009497551125',22846),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2SqjddQK127263-Df9aXvPyj8qwITsEM-gAo9pbKOeidceHdXMeQZGG7t9jLv8QbMKs9XsaOgt7BKg5IUS_j6j3RkAaA','Brought my friend in and the receptionist, Rayven, helped get him back within 10 minutes for a knee injury. Most places usually take 30+ minutes to get you back around here.','2018-10-15 02:23:38.987000','2018-10-15 02:23:38.987000',5,'Luke pendergrass','https://lh3.googleusercontent.com/-fxIg5eZD36I/AAAAAAAAAAI/AAAAAAAAAAA/Y-HslqzGUaY/c-rp-mo-br100/photo.jpg','16590124370714063921',3706),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2SuFcEIg9CEKIjKUq8I5OqEF3tuemJqy_Ha49txhjLjJHX3LCrmHN-46qxt98OZZIy7iXNet6hHUH3lZ5Y6bFLsYuAx0','Friendly and caring staff, especially Tanishia 👍','2019-07-01 04:55:13.570000','2019-07-01 04:55:13.570000',5,'Estefan Hidalgo','https://lh6.googleusercontent.com/--1wEPINZ-64/AAAAAAAAAAI/AAAAAAAAAAA/a9oVd8jyYsI/c-rp-mo-br100/photo.jpg','17898197009688164559',5672),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2SWKeox3RAti_7ogk0dazuUtFB0icOjLpOcCLO78PLPigGd23Tq2k16jEJY0LZDYU5DyVBAK-l17UwE_adEEgLxPSCd4','Great experience! Highly recommend them! I had Mollie, Leanne, Dr. Yost, Gunner, Eric, Tobie and Carla! Everyone was great! Thank y’all!!','2020-01-13 01:42:59.068000','2020-01-13 01:42:59.068000',5,'Michael Harper','https://lh4.googleusercontent.com/-TVcg2sGyQgQ/AAAAAAAAAAI/AAAAAAAAAAA/IGQgf7EhZ4s/c-rp-mo-br100/photo.jpg','3272657195432704501',9557),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2sXDKd7DikuRNq1ONm0JNJkkb2-f88VF-hqdQ9F7PyhrODuqVs3TqaJ6uhH1eY9rui86q-lIa5t2T6HyYm3OVcmKyq2M','Great Location very attentive and helpful with all of your medical needs. Special thanks to Lorena on the front desk highly recommend','2020-08-02 16:02:11.779000','2020-08-02 16:02:11.779000',5,'Jose Moncayo','https://lh6.googleusercontent.com/-sM19WrpIJeY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmpiFzwLhqMAcoqXyoAvJdBGCb-Yw/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21987),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2t_AvhqjJEaB_FxOW8SFz4_lP2p6I05mfR5AYgcQVoJILR6A1_Yhs6I94pV9ftN7coW0hsblzfHkqmjOrdjCpOEHakSs','I was not the patient on this visit. However, my wife needed immediate help and they did just that. Cared for her very quickly and had great bedside manner. They addressed all of our concerns and questions. They were also all really personable, friendly, and polite from registration with Itza, the RN Dawn, ER Tech Olivia, the RAD Tech Jacque, and of course, Dr. Akunyili was amazing.','2020-02-27 12:48:18.870000','2020-02-27 12:48:18.870000',5,'Dominique Oliver','https://lh4.googleusercontent.com/-_YpmrPuaxsI/AAAAAAAAAAI/AAAAAAAAAAA/7uRelsb2cTc/c-rp-mo-br100/photo.jpg','3511292162159714121',15682),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2T3zzHrlo7UoPKGYJvHBH6XNLZsCP_F29EvAVy3hi4f2XoiyWJzalL5Ap8jRDArEQPElF2dfTowfLnpmzUWa3LAyM2xs','The staff is fantastic. Good energy, very helpful and informed. This is the place to come.','2019-04-10 01:24:49.412000','2019-04-10 01:24:49.412000',5,'Savage Serenity','https://lh3.googleusercontent.com/-EYKrQ-Ll1hU/AAAAAAAAAAI/AAAAAAAAAAA/vlIexzADV4M/c-rp-mo-br100/photo.jpg','17898197009688164559',5776),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2T6tYwCpFLVUYQXgT1sKj6-nTFP9VCY4EYCnLms5ajzwzIbytenr1BaUI208HTaPR-nGanbejLaErWeV2zSx_5g52V6I','Wonderful experience and Doctor and staff were really nice.','2019-02-08 22:41:50.113000','2019-02-08 22:41:50.113000',5,'Brandi Howard','https://lh5.googleusercontent.com/-qoe8a_7j_AA/AAAAAAAAAAI/AAAAAAAAAAA/2wQ9haO95xk/c-rp-mo-br100/photo.jpg','3272657195432704501',7023),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2T7Px01EuJohAV4rTWsARidBFcchRxFJfNc7g8S5DWv54DDtI1zDRy3UkplQBbq2jFlF3qtu58bmMx3Mu0ZNxVgpHyOg','No complaints here, in and out within a hour. Everyone\'s friendly and helpful. Sindy was helpful with all the paperwork. Gina and Vicienne helped get info and into a room quick. Dr Singla was kind and helpful. Glad I could get the help I needed 😀','2020-01-24 18:34:22.267000','2020-01-24 18:34:22.267000',5,'Gabby Alvarez','https://lh3.googleusercontent.com/-dmiSYukTllA/AAAAAAAAAAI/AAAAAAAAAAA/bZ8pKMt-z2k/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',10131),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2tbGPrW5bVMhxGOYQp0N6npGltB_T_AwXXHezlDVb1gLEsT2Pk89fC7u-3RwQrfZu-UUFU7LRPJGCDgRtHve_TYk-XKI','Quick & easy. Very friendly staff.','2020-07-28 05:29:10.298000','2020-07-28 05:29:10.298000',5,'Jennifer Grimes','https://lh3.googleusercontent.com/-HHDs-Jf8Mdg/AAAAAAAAAAI/AAAAAAAAAAA/d7wT6nnglHs/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',22538),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2TBiW3cj3iguB_uegHL0mTQx9tuca8slaiJnpV7v5AH3evrDCTClSiuMn1ghO49utBazBcJOWlDxMTtzUGRATeaM-V38','My daughter injured her arm playing soccer. The care she received from the moment we walked in the door was really great. She was taken into an exam room immediately. All of the staff from the front desk crew to the nurse, X-ray tech and ER doctor put our daughter at ease, reducing her anxiety and stress. We were able to view an X-ray of her arm which was interpreted by both the ER Doctor, Dr Ruby Rose and an outside Radiologist both of whom confirmed the injury was a sprain with no apparent fractures. After tenderly applying a soft cast all of our questions were answered and a follow up plan was put into place. I highly recommend SignatureCare Emergency Center when the need arises.\n\nCraig W','2019-04-01 19:07:06.369000','2019-04-01 19:07:06.369000',5,'Craig Weitzman','https://lh4.googleusercontent.com/-5HWYcxQg5b8/AAAAAAAAAAI/AAAAAAAAAAA/MEoNBzKBznQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4308),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Tf96qtQD1MePpB0r6tkg6TpidVnfWal-aapgmkz_ZNqIUDZy04cQLiq8tuHExUjGQXrUu2VgMujS_y3vvp1qbLMEJiI','Fantastic experience!','2019-08-08 11:52:01.338000','2019-08-08 11:52:01.338000',5,'Ashley Unbehagen','https://lh3.googleusercontent.com/-c-jtxLxtac8/AAAAAAAAAAI/AAAAAAAAAAA/LBFg5wmPMmU/c-rp-mo-br100/photo.jpg','16891069708558046635',4224),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2tg4Kr0EBv3n5vy0i1SU177AxuS3R_LBP31deb4w7s106pzvMqckEZl89AaGAbRFYzvWGfHMNmapS8o7XkRXEeEYaPNI','Rebecca V. is great and they are so kind!','2019-10-12 01:17:57.922000','2019-10-12 01:17:57.922000',5,'Cassidy Chu','https://lh4.googleusercontent.com/-TjtWSoGWX7U/AAAAAAAAAAI/AAAAAAAAAAA/I5PMA8b1zBs/c-rp-mo-br100/photo.jpg','16590124370714063921',3151),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2theeeqXKgHxlnKxCzBZeCgYmGF0urdy5CrATu1w8oBhkszX9Tpidh2RMBI076GY8TvWBD9lWz_GVX8IEQUVaiWZamkY','Great and fast service! Dr wang, Susan, Tamisha were awesome and took really good care of me!','2020-01-08 02:39:00.688000','2020-01-08 02:39:00.688000',5,'marmaljr mmm','https://lh4.googleusercontent.com/-KaVVPcFXp_4/AAAAAAAAAAI/AAAAAAAAAAA/jsv3uG7OUBk/c-rp-mo-br100/photo.jpg','17898197009688164559',9434),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2tIK6o8DYrb0QkAYs73QgGdf2THUz1cwn7D6u3qKEemH0xh6kASrFpo14JABQmflA7TGwQYqGjXXCgx3o6w05uFNwW3I','I had a wonderful experience. I was able to see the nurse within 5 minutes of arriving and the doctor shortly after. They listened to my concerns and accurately treated my condition. I highly recommend!','2017-10-22 01:36:41.782000','2017-10-22 01:36:41.782000',5,'Stephanie Lyssy','https://lh6.googleusercontent.com/-Et1AbLYl0GA/AAAAAAAAAAI/AAAAAAAAAAA/YajwFafoClo/c-rp-mo-br100/photo.jpg','14904078213800803294',2316),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2tiLZjMb90DUD3Fz_JG0hA8vPSafox2uFIXOSxYB2s7BpU6q4pMUwcBux8idZWj2IMjBcH0d9vlkWa2PUNV7r3f4SrC8','Very friendly and knowledgeable. Took time to answer every question I had. My nurse was Keylee and she was a god sent.','2020-05-17 06:18:36.747000','2020-05-17 06:18:36.747000',5,'Bryttani Pasley','https://lh3.googleusercontent.com/-RYx__5gr7U0/AAAAAAAAAAI/AAAAAAAAAAA/R3O23xsDITE/c-rp-mo-br100/photo.jpg','14748677429039074158',21787),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Tk1J7YmgrGafW8dkK09a3Bu9ziR4hEBdM7QydsYT_zcd04Y67tcEh0xymqBiOByhLXNBEis2xbEtfAi3f7pTX8rg-JY','Loved our nurse and Dr!! Theresa M and Dr. Chambers were very helpful and thoughtful. They explained everything in detail. Overall great experience and would recommend to others.','2020-03-09 00:43:25.434000','2020-03-09 00:43:25.434000',5,'Christina Gavaldon','https://lh3.googleusercontent.com/-BBWAahzuNRQ/AAAAAAAAAAI/AAAAAAAAAAA/zAQEjxc291w/c-rp-mo-br100/photo.jpg','6521947413723274945',21177),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2tlL5nchYTDkxoZ9QoVYGu90aJFr2EZ8Plbf6fOU6j0dSaZuaqZmERRD2lwB3LXcOvYnpiUPfVw6ZXkTEaypnrh7CUEI','The facility was nice and amazing maya the receptionist was so welcoming and nice. Will def recommend I was in and out less than 2 hours.','2020-01-17 17:04:00.024000','2020-01-17 17:04:00.024000',5,'Tonja Fairchild','https://lh5.googleusercontent.com/-SEDmUMdXMHI/AAAAAAAAAAI/AAAAAAAAAAA/lZSFdKxuCl0/c-rp-mo-br100/photo.jpg','12541597562633926366',10024),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2tlw-rXJ50YyZYiRIA50tXDt4v9ZrBKFmDmxkdcF1Fpfxgd5WEV_teiF9l_iMnceds7P3tVu4F1UqWKGzldVXpHKvU0A','Super nice staff and easy to check in! Lorena T and Victoria P made us feel very at ease.','2020-07-31 18:29:41.071000','2020-07-31 18:29:41.071000',5,'Amanda Wayland','https://lh5.googleusercontent.com/-11E8MCsxlBc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckwwBd13vl64fl1syHzEXRJUQlp4g/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21990),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2TOCrCwDDnjTzuonc5Hoi7ogjSrK5xbhdATJEmIVHDVYM5VL2UaOVMHPv9frB6beQSGCPhm0znbrh1Zl435kQQhadNwE','Great service and friendly staff!','2019-12-21 21:55:06.473000','2019-12-21 21:55:06.473000',5,'Clayton Richardson','https://lh6.googleusercontent.com/-PTcj5UYtKI4/AAAAAAAAAAI/AAAAAAAAAAA/I3vfnEU-bJ8/c-rp-mo-br100/photo.jpg','13486358490203335051',674),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ty8eRPuYnliMmSwxanrGXPMRC8mwjv7YhJeq6dMunv1G7DudZeHDVWc5Z_HxbCijxnwrg08df8tDbpeKzgT3fdgVBUA','Great staff. Very VERY CLEAN','2019-02-24 21:53:57.763000','2019-02-24 21:53:57.763000',5,'Kat Martinez00p','https://lh5.googleusercontent.com/-FptPJduGkkE/AAAAAAAAAAI/AAAAAAAAAAA/tSCaWPLc7RQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3522),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2u1IbkDa-fLz6M47AWBOy00lQ_jadzvtRM0HVuyPHGf0MKfHJBm8-l8G_sZvJm2aI2sfCI5s869gpTkdjVILZhe2wVOI',NULL,'2020-07-09 12:50:43.182000','2020-07-09 12:50:43.182000',5,'renemunoz17rm','https://lh6.googleusercontent.com/-T4e2CFFU8YM/AAAAAAAAAAI/AAAAAAAAAAA/pn56E7l5-sc/c-rp-mo-br100/photo.jpg','14748677429039074158',21766),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2U1sXAZbXaJQ8PnsNVFCFh15f4ob5-Y5Y5_r6JYIX3xZav1A87qNpVlpSzG9GHdB4FZLRA2sTuyS2Xl9AwFFUuthG8is','Great friendly staff, they were quick to get me looked at, there service is crazy good, I’m talking bottle service at the club level good, much better than a traditional hospital for sure','2019-06-11 14:01:08.905000','2019-06-11 14:01:08.905000',5,'Ryan Clark','https://lh4.googleusercontent.com/-KEixe0zfAK4/AAAAAAAAAAI/AAAAAAAAAAA/EzYhADPTDuY/c-rp-mo-br100/photo.jpg','17394740196501090048',4667),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2U3H6fp0KnL1Pqw74ZAIjvGkhHvWoUTjHpcA-8PNFYMimvvqQgQSb_Ag3LhvMWnUwue4rn__IpRvwVoW58_1EC6XvMIY','I sent my husband to several clinics in town tonight and this was the only place able to get him seen right away. When I called to see if he had been checked in yet, he told me they had already done blood work and had started fluids! From my first call to Signature care, to the moment he was sent home, we both felt like everyone on their team genuinely cared and wanted to help us. This level of customer service is refreshing and we will be back should the need arise!','2018-11-03 01:20:46.967000','2018-11-03 01:20:46.967000',5,'Carli Galbreath','https://lh5.googleusercontent.com/-AttwXUU1HkM/AAAAAAAAAAI/AAAAAAAAAAA/yCG3JymHF2Q/c-rp-mo-br100/photo.jpg','16891069708558046635',4409),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2U4B_wNU6SoSrumUMea50gP2t4BL4-XJoJbSrx4_qM6ZDkE_OLkdAoBURxDGtL91fWD89l66iknwlqDb3TVM0l9WNiAs','I was well taken care of by Mercy.','2017-03-04 17:53:23.367000','2017-03-04 17:53:23.367000',5,'Alvina Hicks','https://lh6.googleusercontent.com/-FnOsSZQEgyE/AAAAAAAAAAI/AAAAAAAAAAA/pT2ZIdVm5Pw/c-rp-mo-br100/photo.jpg','17394740196501090048',5102),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2U7RdanlR1zn8OeH2GiuyggJYuGb0n8UjS8iBIfdbSpsnSjTksGRddx32TUt7Tt2pubhRcZPrwrRg3LI40RpjETbqD-Y','Excellent facility. Quick service. Professional staff. Great experience.','2020-01-26 23:25:02.809000','2020-01-26 23:25:02.809000',5,'Julie Muegge','https://lh3.googleusercontent.com/-EX58WPbYJSk/AAAAAAAAAAI/AAAAAAAAAAA/g1OkuiAywxk/c-rp-mo-br100/photo.jpg','16891069708558046635',13971),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2u9q3kQe6dP-zk8BshY2UbArQecvDahwQ2Xcs79zL-cl13Av12h2p4GQEI12PHxNaLYKqVGM9opf2R_SHBEp7ifuaui4','I took my wife to Signature Care this evening. She had some pain that we could not get to go away. All the staff were incredibly polite and helpful. The doctor was patient and explained everything in detail. All in all it was a quality experience and she left feeling better than when she walked in.','2019-07-16 04:59:26.012000','2019-07-16 04:59:26.012000',5,'Josh A','https://lh5.googleusercontent.com/-QobMWwp8H7k/AAAAAAAAAAI/AAAAAAAAAAA/_wevAMG93NE/c-rp-mo-br100/photo.jpg','2694018788013845459',6109),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Uh7obO3KkJYEoOq4hNAIhRtfXnqEQ--ackroflcp4fSSsG1Jg1f8dBVzZFvxRnvyjLQRBfG6d48N322FQfcG50U73tI','We recommend Signature Care. We were taken care of by Dr. Boester quickly and he explained everything very clearly. The nurse and ER techs were very helpful and attentive as well.','2019-08-16 12:52:18.650000','2019-08-16 12:52:18.650000',5,'edith solis','https://lh3.googleusercontent.com/-yGMSTHms5ok/AAAAAAAAAAI/AAAAAAAAAAA/wK6_mwda8sY/c-rp-mo-br100/photo.jpg','3511292162159714121',7202),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2UhYMpPVDruABeWm0Qd9ykzlGP8rTMmppGV-yRZiO8gate8kvBNMaHkJjd2KiKcNOIwn2slkzMggZ-ZhsFDtHKligtZ0',NULL,'2018-08-26 17:18:17.740000','2018-08-26 17:18:17.740000',5,'Kyle Graham','https://lh5.googleusercontent.com/-PiLfALsmDks/AAAAAAAAAAI/AAAAAAAAAAA/zrA35sRTWMo/c-rp-mo-br100/photo.jpg','16590124370714063921',3761),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2uIu-PpExHSjKCIpZVd3Yq0277ezNVl4891ge4BJ3J_775e0IBVyaKXo59eeLKGOhJpi4W5h1CRnvqdumD6ipBDeIUAY','Literally the best thank you for everything Dr Jones, nurse Katie and Adam, Linda, Townesend, Amanda and Gabe!','2020-02-03 22:13:01.343000','2020-02-03 22:13:01.343000',5,'Aileen Lopez','https://lh5.googleusercontent.com/-Et1b7GUQG-8/AAAAAAAAAAI/AAAAAAAAAAA/J3JwLFU6z1I/c-rp-mo-br100/photo.jpg','16891069708558046635',13960),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ul-N9QPM18XXHgmFr9W88DR5tSDgPkUaXMubJ2dkIDImHVJ0GhtWI4nWOCQRTHyvvyQwBlfTEDookZqEicvIppdMAcQ',NULL,'2020-02-18 01:13:28.080000','2020-02-18 01:13:28.080000',5,'Rob G','https://lh5.googleusercontent.com/-hcAa7E8Yk5A/AAAAAAAAAAI/AAAAAAAAAAA/l08gr41ur1c/c-rp-mo-br100/photo.jpg','8918455867446117794',14819),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2uL45EF_ftp_E8iGZtv32qCeWJQ5ZIhZAH7KUIJcPUAV436YnTQ0ZLNSFka3mFOIsajGoad0WCpxs1lkNUGiIyGiLdbA','Adam Pinon- awesome care, great staff, amazing experience','2019-06-04 19:23:23.812000','2019-06-04 19:23:23.812000',5,'James Buono','https://lh5.googleusercontent.com/-4qYo31YyMvI/AAAAAAAAAAI/AAAAAAAAAAA/lCRltj5hUKM/c-rp-mo-br100/photo.jpg','16891069708558046635',4261),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2UM2rLBzcEfYo_jMiirfjTqoe89tx3w0OQcBOYZV0Li8Xm1pRfU5fFcBRSpJR14hlgCqwHalXm00W_I6wKHgCVnkZanc','Kendra was welcoming at the front desk followed by Nurse Jeri who was understanding and comforting. I felt heard and treated by Dr Ortiz who helped me.','2020-03-05 23:53:39.121000','2020-03-05 23:53:39.121000',5,'Kirby','https://lh4.googleusercontent.com/-KhuggCHuS0g/AAAAAAAAAAI/AAAAAAAAAAA/hFhXeL9m1Io/c-rp-mo-br100/photo.jpg','16590124370714063921',15223),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2UnoRP1Ymh0BbZzi_Bl5j-zC62teuqHw0bpWjFSKdvE_iWc8pjloHNp4NPgUHu9Zk5OhfHlqLFplnpbMGmRBkP3eL7DA','We are retired Canadians who stopped in at the Heights SignatureCare emergency Center on January 26,2020. The service was exceptional and each staff member was professional and friendly. We thank Dr.Q Henderson, Kelly & Robert, Joann and Erica for making this experience seamless, professional and friendly.','2020-01-26 20:43:12.721000','2020-01-26 20:43:12.721000',5,'Gilbert Perrin','https://lh3.googleusercontent.com/-pISckBpt5hE/AAAAAAAAAAI/AAAAAAAAAAA/CFAgo1lWsUI/c-rp-mo-br100/photo.jpg','14567670160750071148',10121),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2UPp5Tz4PwYYnYPBep-sQLdmrQR4__rm15_zUgu-vbWkF_fBSQmAvCgEqjes7EViFWwA0C-lpsX_f_GJc5U_zfgmAjj8','DR Jones kathy Kim Sherri where all very nice','2019-03-13 21:51:52.749000','2019-03-13 21:51:52.749000',5,'Stephanie Johnson','https://lh3.googleusercontent.com/-Ud09wM4vHuQ/AAAAAAAAAAI/AAAAAAAAAAA/rtqZrY7Z1Kw/c-rp-mo-br100/photo.jpg','3272657195432704501',6994),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2utW2cKzdmDeqq8SH4-8NiYMaroC4xhtOSyATJvNDEygWTA6WXp7COdoEhvuV4lBm92EeqXAmMWMa2o1IJzjHtFA034Q','I just want to take the time to appreciate signature care staff for deligently & efficiently taking care of me while I was here... the front desk lady Ashley was very welcoming & offered my son a coloring book & some complimentary snacks.. Dr. Lindsay, nurse Dawn & Can were very friendly. I even had my 3 year old with me and they helped keep him busy while I was resting in my room. I just haven\'t been in a ER professional setting where they took their time to really take care of my concerns. I wouldn\'t change anything about my visit. Thank you so much from the bottom of my heart !','2019-02-15 19:41:29.136000','2019-02-15 19:41:29.136000',5,'Miriam Chirinos','https://lh4.googleusercontent.com/-puaNwkFzDDQ/AAAAAAAAAAI/AAAAAAAAAAA/AokGwnC1ULs/c-rp-mo-br100/photo.jpg','17898197009688164559',5852),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2v6PYUnccoJoRXvDJQwT6k2Btp6MP6OAh8-R5HXatmmoa37Qkm6S3JtGHLGue0FDG6iqPL66UrrNjRag4djNOyUJoKMA',NULL,'2020-05-31 15:03:31.997000','2020-05-31 15:03:31.997000',5,'Frediculous Videos','https://lh6.googleusercontent.com/-d-nJkFB_N9I/AAAAAAAAAAI/AAAAAAAAAAA/OH0SuPIyyl8/c-rp-mo-br100/photo.jpg','14748677429039074158',21776),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2va4ny5M8yaJ1BG49bcPejQrVSxP7lxd0C8JitEpYkiVSaHzT8-PKX4XF9XU7s3m6qgEt5qoO4eEf3Ywe_z6f04HpWec','Very friendly staff. Very attentive. And thorough with questions and care.','2020-02-15 17:37:46.051000','2020-02-15 17:37:46.051000',5,'Hannah Cabrera','https://lh3.googleusercontent.com/-6ocHxp6KGCo/AAAAAAAAAAI/AAAAAAAAAAA/NkFZysb8uNY/c-rp-mo-br100/photo.jpg','14567670160750071148',13531),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2VbjQpo5hzMyywBURKXXyluJz385jlinQOEyJJ6Fj_-aQqdDML-15Jp3Oc0ZkSUG5h1G5bvYSw-1vafAYDGVhKBrhQM8','If I could do no star I would. My husband and I came in with a bloody nose that would not stop bleeding. They packed my husbands nose twice both times there was an odd crunch and my husband was in a ton of pain. We went to ENT for follow up two days later as instructed. Turns out the doctor there broke my husbands nose and deviated his septum. He now needs to have reconstructive surgery. The doctor even looked at my husband and said I didn\'t break your nose. IF you are not confident in a procedure do not do it! They charged me 500$ so they could break my husbands nose. Will not return!','2017-06-01 19:30:04.941000','2017-06-01 19:30:04.941000',1,'Nichole Diamond','https://lh3.googleusercontent.com/-j0Al1Rdg17o/AAAAAAAAAAI/AAAAAAAAAAA/6ECezV_iLN4/c-rp-mo-br100/photo.jpg','17898197009688164559',5939),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2VFrgcW1Z7OF5e3rxn9YEYuxFA_wzYAs6sgAOeNNCqDOyWmyaotWuADV4c_mwnwjZPJJIcXo2fPwfJtstFH0NlKHFdiA',NULL,'2016-07-08 11:52:11.374000','2016-07-08 11:52:11.374000',5,'Viridiana Garcia','https://lh6.googleusercontent.com/-5naXXXbxcIQ/AAAAAAAAAAI/AAAAAAAAAAA/nWVLcqGnMlI/c-rp-mo-br100/photo.jpg','14567670160750071148',2009),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Vj3VXe4_fc2SvV5eaLTM8Rwetky1mtLIm-D9lDMSqalw3IEgC1H4QZ5Bdc4AenPTNASTqoNyPcRyu4K8RDiCsb0YX3s','Delicia & Bri the register’s were great! Nurse Blake was great ! Dr.Alloju was also very helpful! & the tech Sonie was also wonderful! Great place ! Glad I chose this location to bring my daughter at her time of need!! 5 stars!!!','2019-10-18 17:17:43.667000','2019-10-18 17:17:43.667000',5,'Dera Frierson','https://lh6.googleusercontent.com/-6vwwfKPHG30/AAAAAAAAAAI/AAAAAAAAAAA/tydLCINyxwo/c-rp-mo-br100/photo.jpg','8679688254631342173',8789),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2vNFCEOqf-ZoP0lWcQvCr-TFNAcCsKBS9rIswrfWM_dDfvx8Sa2RVoOzvu5PuKCQwb20YIxXwnvDpZ-b38kH6PUR5F3U',NULL,'2017-10-08 15:38:22.705000','2017-10-08 15:38:22.705000',5,'Jackie Lamb','https://lh4.googleusercontent.com/-xq0QTaldSdg/AAAAAAAAAAI/AAAAAAAAAAA/6rrNdzTYymM/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4955),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2vqBDszre7P98YpTVI-EQVCbZ_QPZzaMnrsD4VcHEuUymaeG-YhG8z5x7Vi2Y5d4KP33fZzbXQxeDfkpDoBeteBhAw8I','Had to come to the ER for persistent headaches. We were greeted by Louisa who got me checked in right away, Nikela and Jessica took care of me in the back and then I saw Dr. O\'Malley who was great and very thorough. They worked with me on the price and were upfront about the costs due to the fact my insurance doesnt take effect until next week...I would come back here again if it necessary. Honestly the best ER visit I\'ve had to date.','2019-05-28 04:16:16.519000','2019-05-28 04:16:16.519000',5,'Thomas Cass','https://lh6.googleusercontent.com/-MHUitBAKrko/AAAAAAAAAAI/AAAAAAAAAAA/eSIV7MQRAwc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2VqzSqSnUJj2BmXuKtqgHjy6t7h2tzEMnyH3evKM7i0GI7-4A7Bw-816Ba1X6cJ28EzadaYY1o98F2jqEaJhOfWJSGmY','Absolutely love it the wait is less than 10 minutes staff was awesome dr.pham was so helpful and informative. Patricia was sweet as can be I recommend signature care to anyone!!','2020-01-30 17:48:19.994000','2020-01-30 17:48:19.994000',5,'Ravyn Traylor','https://lh6.googleusercontent.com/-n5HrbKBbuDE/AAAAAAAAAAI/AAAAAAAAAAA/UO7_tisT9cU/c-rp-mo-br100/photo.jpg','16389487648212004696',10417),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2VSK71oQCZEnqWhkIKs3YCcvVAjoCTcTEo7tdRE0p4TZulG-e7WvbAYZhmguG2qlH_7N_CT9DGuA--M03JZ27wT_WDYg','Very nice staff. Nurse Sherri and Dr Daniels were quite pleasant and helpful throughout the whole experience.','2019-01-20 04:11:09.031000','2019-01-20 04:11:09.031000',5,'William Mckinley','https://lh5.googleusercontent.com/-OpxVEdbjDZY/AAAAAAAAAAI/AAAAAAAAAAA/Ntw9i2xgM_c/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1402),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2vYIWPGHgLFyQx0-OnPy1AiDLWCRcWkEbNEnVRoFXFMWBRNoXYOz4M8wuynEqyG8TlYgmM3MkRmI5WC1Xp4H5pq6To7g',NULL,'2016-12-19 20:08:43.265000','2016-12-19 20:08:43.265000',4,'Bridgette Lehman','https://lh5.googleusercontent.com/-vue5nZ7xIIM/AAAAAAAAAAI/AAAAAAAAAAA/VrvLLkJN1Q4/c-rp-mo-br100/photo.jpg','17394740196501090048',5147),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2VzQDmqAkj5RsydWHkPd7lz0RCKLZcF6QN4j66yXsAOq2ZoACk7Djgfzzj4EiwuzTJkFBCMpih3SjOUK2hTLU4IiOKzs','Wonderful experience! As soon as I walked through the door they wanted to make sure I was comfortable and being taken care of! Friendly staff that worked very quick! Highly recommend this place in any emergency or minor visit!!','2017-08-19 16:32:31.551000','2017-08-19 16:32:31.551000',5,'Christa Howard','https://lh6.googleusercontent.com/-Z7h3NzpG76k/AAAAAAAAAAI/AAAAAAAAAAA/zRAWDsjdYDM/c-rp-mo-br100/photo.jpg','16590124370714063921',3956),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2W-hpKO2MSYItjnV02Ogjpd_AETNAwrSB-XZmoEwCRA2CK8ngmqomkUOQxMxpm_LABxVMbsUYmxYYn7m1AtUTZwUYDAM','Excellent service!! Dr. O’Malley, Nurse Alvean and Marcus were excellent. Thank you!!','2019-07-17 16:32:01.552000','2019-07-17 16:32:01.552000',5,'Roger Suarez','https://lh6.googleusercontent.com/-hltT_1JQ_lE/AAAAAAAAAAI/AAAAAAAAAAA/y4tg8hGDtNU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wAd9T0To8XhwqXC_Z7DSD91KbT144jcyQAdvNvje-_N_Fn0_tEMEkHeMAoaWcY-qHWCxsy2aYIEKLe-exbbSA88HBxc','Professional and courteous staff. Way faster than the hospital. They helped us four times already for less than the cost of one visit to the ER.','2019-09-14 07:51:36.427000','2019-09-14 07:51:36.427000',5,'overseermole','https://lh6.googleusercontent.com/-a8qjmyAHptM/AAAAAAAAAAI/AAAAAAAAAAA/yPnWpVbdsUI/c-rp-mo-br100/photo.jpg','13486358490203335051',831),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2we1PizDIDYLpxW6tR8BwLP5rFws4E7ilq5o8gJKgRikfGXz54DT4jmjgPPl-V3dkFQ-OqzqaMZCPDI1ouhCEA7794Vg','Horrible took my daughter in late Friday night cuz she sounded bad with her coughing and stuffy nose. She is only two months old and we were told she was fin just was coming down with the cold. She tested negative for rsv and the flu. Well over the weekend it was just getting worse and today we took her to her doctor and she tested positive for rsv. How do you miss that in the first place? Wouldn’t recommend this place at all','2018-01-02 15:57:29.283000','2018-01-02 15:57:29.283000',1,'Leeroy Valerio','https://lh3.googleusercontent.com/-c8SCAL3Lqeo/AAAAAAAAAAI/AAAAAAAAAAA/bJFEMsT_Z9Y/c-rp-mo-br100/photo.jpg','6521947413723274945',8343),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wEx0yIUlvUgQWTwR02Vs6Sn6dc-VRwF4U2Ec9CPWoeY5XNvX47DBk1RspxZDXbjhAZoIVRFGhrsZm51DGMq9wj7Bvbo','Fast and friendly! Great staff and very clean modern clinic.\n\nCan’t recommend enough!\nLisa V. and Lisa H. are the best!!!!!\n\nThank you for such a good experience!','2020-03-09 21:07:58.266000','2020-03-09 21:07:58.266000',5,'Daniel Van Nice','https://lh5.googleusercontent.com/-4bWUSO95hGs/AAAAAAAAAAI/AAAAAAAAAAA/YUopEg2DDBU/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',20928),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Wfpr9Z4RlQLru9RxLGDY87uYI7fp50d42qzAkOcoCiKk3IlbZVtjCYKD2aHeyjBiD_xUwLO3q_g_Ne2YiAzozMiS5S8','The staff was great and caring making sure o was 100% ok to go home. Anthony & Natalie made sure I was taken good care of and Dr. Jaber made sure To answer all questions and kept me informed throughout my visit. I highly recommend!!!','2019-04-22 23:44:02.620000','2019-04-22 23:44:02.620000',5,'Christiara Jones','https://lh6.googleusercontent.com/-S53RxxfLJhk/AAAAAAAAAAI/AAAAAAAAAAA/XI4UmVP2950/c-rp-mo-br100/photo.jpg','16590124370714063921',3416),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wKJhMsb1DYrMNkmEqW_TVPmj9B6c9ZecF05u_21AjCde76Fc8rsoUssDJ7w7OxAx8Ldj34dxkSiMY94HnnIEpgONjO4','All the staff were very kind, especially the doctor and nurses. They were attentive to my needs and i had a really great experience. Everything done in a timely manner. Highly recommend, they’ll take good care of you!','2020-08-09 22:33:56.856000','2020-08-09 22:33:56.856000',5,'Carlos Mosso','https://lh3.googleusercontent.com/-zeuncO_05tM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckUTPh3oejMho1OtUtPMx_qV7GdHg/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22911),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wlSL0446cS1ppjLWN1eLP4uP4wlZ9eE3804GOzVqXb88uiy0VonYh9XFOs2QBUEadoctB-fNQDx_Av73qIPeQkjR864','Very helpful','2019-02-16 00:31:08.942000','2019-02-16 00:31:08.942000',5,'Peggy Coulehan','https://lh4.googleusercontent.com/-LWE4v70FWwo/AAAAAAAAAAI/AAAAAAAAAAA/QiW9pqNvxXQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5851),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wMNujh7CfhpVYBCusHoOb7Hd_gDtFwYjs5u7c4xFrlrq-MHDYEyb7CDR7kJ7IJQat487Wkuve0iOkQUXvLAv96e3zkI','Brought my mother in Saturday for stomach and back pains. Everyone we encountered was extremely nice and helpful. My mother only speaks Spanish, so the fact that everyone knew a little bit of Spanish, especially Nurse Jacob, was very impressive. Thank you all for taking good care of her!','2020-01-21 02:56:23.804000','2020-01-21 02:56:23.804000',5,'Lucero Carreon','https://lh5.googleusercontent.com/-u9znsWTjHfI/AAAAAAAAAAI/AAAAAAAAAAA/nTprpPBzWgU/c-rp-mo-br100/photo.jpg','16590124370714063921',9971),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2WPDqAiPlL_WDYM9cVK_tbXZwZNP6K8GD8kaK080Ey6YBCb53mUZPPrWwdpgx8edq2l0S_10nu8iCCOfobx8LQdhd_jI','I visited SignatureCare ER Center today. Within minutes, before I could finish the registration paper work, I was placed in an exam room and immediately was being accessed. The staff, from the moment you walk into the door until you walk out, are very friendly, courteous and helpful. All procedures were clearly explained before and during the process. Dr. J. Thomas listened attentively to everything I said, then proceeded to examine me and explain test she wanted to do and why she felt they were needed. She was so friendly I did not feel like I was talking to a doctor. I felt extremely relaxed during the entire visit.\n\nA major feature of the facility is that they have all of the state of the art equipment needed to handle your needs! I had an EKG, Cat scan, chest x-ray and blood work done without leaving the building. This meant alot to me.\n\nI will definitely use SignatureCare again, if ever needed, and highly recommend them to anyone needing emergency care but don\'t need to go to a hospital ER.','2017-08-20 03:41:19.628000','2017-08-20 03:41:19.628000',5,'NANA T','https://lh6.googleusercontent.com/-D6dw0vxGxQ8/AAAAAAAAAAI/AAAAAAAAAAA/XRTqIZ6gwv8/c-rp-mo-br100/photo.jpg','14567670160750071148',1764),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wqvXRCZRcfTxwToCHFdNF7po5uiaqaf3JvLUlI3vNiau4tT_KMmSWgP3hjcZIK_NNeIOKWDh52c2SM8P3tJXR2D16iE',NULL,'2019-12-14 02:10:03.588000','2019-12-14 02:10:03.588000',4,'Alex Eichberger','https://lh4.googleusercontent.com/-ICztjadnSnQ/AAAAAAAAAAI/AAAAAAAAAAA/eYqW0DG4A0k/c-rp-mo-br100/photo.jpg','16891069708558046635',4120),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Ws3-0jplRQmEMHMAn6Yeq-5BKKsI0ZmFSTYroSXvL-BTAkJZMYoPzZgE4k3cAb-M0yZ06eHSPViZ6UJpznHi7r4sGHo','The staff were very pleasant especially Norma. The wait time wasn’t overwhelming we were in and out.','2020-01-08 01:19:42.228000','2020-01-08 01:19:42.228000',5,'sherita johnson','https://lh3.googleusercontent.com/-od9bZ99WQ7k/AAAAAAAAAAI/AAAAAAAAAAA/zh9NjTPR-SE/c-rp-mo-br100/photo.jpg','16389487648212004696',9425),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wvCKDTviQQu6kR0eG13Qd-xdAYhd6T3nlUOitbllTzJi1YvxGyAOZOa16Mp8G4aIH6dfdKnCU2q1D0l9fb23RGZZ_dI','great team, clean place. They took care of me. Dr Nguyen was great, also the nurse Kristina, the rad tech Tino, the ER tech Nelson, and the registration nurse Maya. All great. Thanks!','2020-02-22 23:31:36.764000','2020-02-22 23:31:36.764000',5,'Juan Rombado','https://lh3.googleusercontent.com/-MeskCpHXVlw/AAAAAAAAAAI/AAAAAAAAAAA/XYgrfrFmY9g/c-rp-mo-br100/photo.jpg','12541597562633926366',13354),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2wvetV5jOqYZyrAJTA1ojM9buV4yHMqjm7Qg7USCFNhHtMytWzK3W1q6cBOGiFmHa2G83hH7LpVpkGup_ZYIfkR8hkwU','Dr. Pham , Nikaela , Jessica and deanna were all super great','2019-05-16 04:53:17.999000','2019-05-16 04:53:17.999000',5,'Bri Anna','https://lh3.googleusercontent.com/-UT5HuEOIvhk/AAAAAAAAAAI/AAAAAAAAAAA/ZOGNJNUrBX0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2WVykAFGacCniHdGOMKThuU0WSOts05D729IguYrWFkFB1j5HjtJ_vl2XjsRHb9j2PZLDZoE7ODqsKL0P7swTVDaByPk','They were so patient & kind 🤗 I recommend this place to anyone.','2019-10-09 20:37:50.387000','2019-10-09 20:37:50.387000',5,'Vianca Cruz','https://lh6.googleusercontent.com/-V61Al26t6jA/AAAAAAAAAAI/AAAAAAAAAAA/WZPa4tqBuaE/c-rp-mo-br100/photo.jpg','2694018788013845459',6051),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2WYGy8VZV4ApT4GAJkEbvhXvJ9-FHkPHErb4m0pKbShEUbq23VNAnTsp7Jk-yxoBRrWTbDjTjFDh1ezRLfshBDL5_QSU','They were very quick and incredibly sweet to my daughter. Was very thankful for their help.','2018-10-14 03:55:02.765000','2018-10-14 03:55:02.765000',5,'Damaris Tiongson','https://lh6.googleusercontent.com/-NG0WIN2_S5w/AAAAAAAAAAI/AAAAAAAAAAA/VvbBU7V6fZI/c-rp-mo-br100/photo.jpg','16891069708558046635',4420),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2x14kKkRgIV_T__ejeyzIg703W4e6rvZ0q6ebzereyrtbXvfLKx2oxYjEjcfaF6Dy2gTTalyuKmkOBIAvUXh3K8B5Q2U','Dr. Chiang, Rommel,Jessica,Ricardo,and Rita were amazing and made my son feel very comfortable and at ease. Amazing experience overall. I recommend this place to anybody looking for great service and feeling comfortable and at ease.','2019-07-08 19:42:25.308000','2019-07-08 19:42:25.308000',5,'NATI FERNANDEZ','https://lh6.googleusercontent.com/-psiChO5zndo/AAAAAAAAAAI/AAAAAAAAAAA/AKov6xj36fY/c-rp-mo-br100/photo.jpg','14904078213800803294',2115),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2x3TZXsTFPmJg0Yxm8eYATWhITym7BUclHUu9Sg1HAR6L_8ePH6-X-lwKiHj0bcewRpUoKD_XsQ9jobKAOdf27TAkTJ8',NULL,'2019-10-17 05:56:16.049000','2019-10-17 05:56:16.049000',5,'Pierre Whittington','https://lh5.googleusercontent.com/-KwNRrzdECSc/AAAAAAAAAAI/AAAAAAAAAAA/nJXb18jCexE/c-rp-mo-br100/photo.jpg','12541597562633926366',400),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2x57RuzSHjUPi6UbHn5QMPFa47GYAh4pwFYbqqIRhziD0dF1sVBvxJ_fV7X-HBKVljbwkdu6H_KM8JTWbngcsV25AlMM','Everyone is very friendly .. Thank you to Doctor Ortiz . The nurse Dana . Marcus , Jocelyn and Jordan for being so caring . I had no wait time . I would definitely come back and will recommend Signature Care to friends and family ! Thank you guys for everything!','2019-12-16 16:49:31.803000','2019-12-16 16:49:31.803000',5,'Tasha Cruz','https://lh6.googleusercontent.com/-CzLaK-y61X4/AAAAAAAAAAI/AAAAAAAAAAA/JAOLcAougBk/c-rp-mo-br100/photo.jpg','16389487648212004696',2543),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2X9iahhI47p3hWZhxfGnykzk1K8fzNfMe9tzdl6l4tTsbiA_5ny5otq-CsRwoX2vuatwat-OJhTBePlQpBDYg4m7nRrs','Very nice and fast','2020-01-21 17:59:03.490000','2020-01-21 17:59:03.490000',5,'jamelle blalock','https://lh5.googleusercontent.com/-P6zwytribRM/AAAAAAAAAAI/AAAAAAAAAAA/Mf54kzA7EdM/c-rp-mo-br100/photo.jpg','16389487648212004696',10203),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2xCUNaERi_rZhmXgrod1l6tqIJOVPV_QiR6PkTqJ9b8z-N-n115x6xkoPA2NK6ybpLFs62oDHRRVyjOtiC57Z35oPQaw','This place is amazing! They sowed me back up with ease and I was on my way. Super friendly GREAT customer service from start to finish. I highly recommended this place.','2018-03-15 23:23:12.679000','2018-03-15 23:23:12.679000',5,'Adam Canizales','https://lh6.googleusercontent.com/-Tuex-tw2wZs/AAAAAAAAAAI/AAAAAAAAAAA/o9XszWFm598/c-rp-mo-br100/photo.jpg','16891069708558046635',4496),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2XdcBWQa-0HEUK-6vB4-BtAh4wdA8L4cRFiM08QJHEUGQuTIpdOixmqQqmLiaUcwv5oTibIDQ4wZsc35V1OFr1EV2138','I had a great experience with the staff at the midland location! Very friendly and helpful. I was in and out of there in 30 minutes with no issues. Thank you to Dr Huerta and his staff for helping me out!','2019-06-12 15:30:27.587000','2019-06-12 15:30:27.587000',5,'Brendan Nelson','https://lh5.googleusercontent.com/-MTykE9UJObk/AAAAAAAAAAI/AAAAAAAAAAA/3zvq_2KBZcc/c-rp-mo-br100/photo.jpg','13486358490203335051',967),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2XEMDtKZyAfOWBWxN42Hyf2NglOhIoF7cu-XzJF8BwRY0bc5BErMT5Qg1xxofZIia8MNptiI-Ni90XdPowfKM0SIoFWw','My experience was great s always. Terra, the receptionist, was very nice and pleasant. There should be more of her in the medical customer service.','2016-06-20 20:17:40.253000','2016-06-20 20:17:40.253000',5,'Marie Freelon','https://lh4.googleusercontent.com/-Fg_otfHMz9c/AAAAAAAAAAI/AAAAAAAAAAA/PrheQg6uV1g/c-rp-mo-br100/photo.jpg','3511292162159714121',7976),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2xF1c4TwWOjw5HZSlAh_Yot-rWxwNQBjOhdhEQIXeKdp0Biae6Bl5wglcAm3ir5AghG9bZbvnRR0dXP3yuAv-c05Yfxk',NULL,'2019-01-01 18:12:34.888000','2019-01-01 18:12:34.888000',5,'bradlea christian','https://lh4.googleusercontent.com/-fC_YZu98lcs/AAAAAAAAAAI/AAAAAAAAAAA/qMU2w-xjzmY/c-rp-mo-br100/photo.jpg','8626688543755174284',8622),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2XFEIhQYwFNDertAiKxiD89zUXSbjOIaYuz8BGD8NAcJZOjai4MNwCiWT32TDXD_UNfPYJCg7HxGv64ginWeUoDsSAUo','Dr Pham, Alvean the nurse , Marcus the Radiology, Jocelyn the Registration, Michael the Technician, all are good people. They help to feel better.','2019-06-23 16:35:17.109000','2019-06-23 16:35:17.109000',5,'Flavio Ubadimma','https://lh5.googleusercontent.com/-SB7a_zdCF2s/AAAAAAAAAAI/AAAAAAAAAAA/w85rPjqbWbc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2XIExRhBgtAoSpjjJKDDv0hmrNW_fkLq3wxZcgDdIqEF-txTC295dFx0uugwvGL6WyNnj5qo6CK0Po24oghSxenDjTfA','Really great experience, best experience I’ve had in an ER. Got in super fast and very nice room. Many Thanks to Kim, Allison and Dr Diaz','2019-06-23 04:59:21.560000','2019-06-23 04:59:21.560000',5,'Mary Kathryn Rhodes','https://lh3.googleusercontent.com/-BPzgL-ht_TI/AAAAAAAAAAI/AAAAAAAAAAA/jOMXGDhxZKo/c-rp-mo-br100/photo.jpg','13486358490203335051',933),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2XikIJqopZcwzrH1r3sKssqtlnYEeGNVpyHXJjfevvRTuPhZn8AbOgEmJWBwa63pZ87WtQfY2iKFRnfftAvBGsc8oujw',NULL,'2019-02-18 15:24:20.669000','2019-02-18 15:24:20.669000',5,'Tiffany Davidson','https://lh5.googleusercontent.com/-aSH_439TlUs/AAAAAAAAAAI/AAAAAAAAAAA/qRA5rlokLHY/c-rp-mo-br100/photo.jpg','8626688543755174284',8560),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2xQPDeTyVXQNRBK2TIGuNB-e8f5G4faGgcDPixC3Xbw7ZLEEkOKisb-CyhxENtt4uiU1JtEb3Duhe4kz6mGQiNxtIwTM','Amazing staff ,from the moment we walked in ,getting in so quickly, treatment options and Lindsey the nurse is a rock star','2020-01-30 02:16:27.579000','2020-01-30 02:16:27.579000',5,'Rene Lopez','https://lh5.googleusercontent.com/-3DNrieeOVnA/AAAAAAAAAAI/AAAAAAAAAAA/fpUC6SY6Y30/c-rp-mo-br100/photo.jpg','8679688254631342173',14775),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2xWXirMDRZ3Rnxbut94jSKadFojr9PzPfewoBdpU0C6N5k1tkURCAXST2pE_gFgMdWAQ8AKBI06hW8kn4kOJhgpM24Z0','Came in tonight with a sore throat, and left feeling so much better. Dr. Grinblatas is so kind. Everyone here made me feel as comfortable as that could. Hopefully I won’t need to come back anytime soon, but this will definitely be my first choice.','2019-07-17 04:24:43.662000','2019-07-17 04:24:43.662000',5,'Majesty Dixon','https://lh3.googleusercontent.com/-LrTwBCW27aI/AAAAAAAAAAI/AAAAAAAAAAA/sKDY7geuhWc/c-rp-mo-br100/photo.jpg','17394740196501090048',4628),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2xyzHdCRmcvYDbaIGoRzpMo2l26LX9BhsuL0TFi3vBNxAlmfzNABfqUfONOerNtSQzE3iZzFFeeinRrmcKYWHtNxZ6jY','Melissa greeted me at the front desk with a smile and professionalism! Promptly, Sarah, my nurse, brought me back making me feel confident they could help me with my week old insect bite that had gradually gotten worse. \nDr. Miller introduced himself and had the best bed side manner I have ever experienced. \nHe was very knowledgeable about the treatment and gave in-depth explanation for caring for it with medication. \n\nSignatureCare in West Chase is awesome! I will definitely continue to build a relationship with this staff. They really care! ❤️','2019-08-30 19:48:45.006000','2019-08-30 19:48:45.006000',5,'Vicki Pound','https://lh4.googleusercontent.com/-WZ6kaKdFxOI/AAAAAAAAAAI/AAAAAAAAAAA/ALo69PJgYEI/c-rp-mo-br100/photo.jpg','12541597562633926366',445),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2y1cjAhOQG44CqfxQZvW7Jfo-qqXqFyiJIddESUTgHCCFbCs4xChrSC_dtKSFK2PrLvD2Aq7dPQ48RBSvVAqWu0iXa38','Dr. Boester, Churiah, Gina, Darryl, Jose, Lisa, Ke\'Aire.','2019-01-10 06:05:09.290000','2019-01-10 06:05:09.290000',5,'Anthony Aponte','https://lh4.googleusercontent.com/-h3HR4Boq2Vg/AAAAAAAAAAI/AAAAAAAAAAA/jUTb-UdPwBs/c-rp-mo-br100/photo.jpg','3511292162159714121',7495),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2yCbyNyVEuFYu_w68FIWr9MbG1M8ESnrdMCobfG4OQjzgt25mBGYcm-1GARJ4aDvXntlgpuuoN_iPpA_IH0s-6wd-5P4','I recently went to the Copperfield clinic with my wife and they were super nice to us. She had abdominal pain and in the middle of her process I checked in myself since I had pain on my wrist to my arm from an accident that I had the day before. I recommend this clinic and we will visit in the future when we need to. Thank you!!','2019-12-16 18:04:43.253000','2019-12-16 18:04:43.253000',5,'Javier Perez','https://lh6.googleusercontent.com/-zMD1SlycGEI/AAAAAAAAAAI/AAAAAAAAAAA/xN-LCfRI0Eo/c-rp-mo-br100/photo.jpg','17898197009688164559',5354),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YcVwylDb7dhLko3n8gVbS-gL2DPzBhAxvTeWpKVYmvHDNq44Y_hvHKaxd34PlMJHluoUGeWHMc-n0keX_EJH_eq8wxY','This place was wonderful the nurses the staff. There was no wait time I was in and taken care of and out the door feeling way better than when I got there I would definitely recommend this place to everyone!!! ','2016-12-28 20:14:55.995000','2016-12-28 20:14:55.995000',5,'Adreanna Hendricks','https://lh6.googleusercontent.com/-WHr-DbJ-ODU/AAAAAAAAAAI/AAAAAAAAAAA/xfFR6W7CwtQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1924),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YEpKdH8ZnrIIvoeXCw5m5Ps1wPjbAljjeSXiIFXC9ZcgheCbXZiVHnBJYBkmnEUWEzRhm7DKExxsaSQmASUP1oe2u7k','While visiting Austin for a work conference I got an infection on my leg. I saw the Signature Care Emergency Center website and not knowing the area or anyone in Austin I prayed that it would be a good clean facility. Wow my prayers were certainly answered. I was seen immediately and treated like a VIP. The doctors and nursing staff were exceptional not only with the medical care I received but also with their hospitality. I ended up having to stay two nights but was so very blessed and thankful for Adam and his team taking care of me! This is hands down the best medical facility I have ever been to. Thank you for everything!!','2018-01-31 21:13:53.000000','2018-01-31 21:13:53.000000',5,'Heather Knox','https://lh6.googleusercontent.com/-DCKsswpfetQ/AAAAAAAAAAI/AAAAAAAAAAA/FVD691BPFiw/c-rp-mo-br100/photo.jpg','16891069708558046635',4519),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YeWdTykbP2kh2bg9IakKRDksOnntiPHjcZ6EgGkPbxPiWReq2NK3bnWBVIhTiVhAIFguZjF7Jom9-KLqwPk1RCS6DTQ','This place is great.. Everyone is friendly and very helpfull.\nJoe and Cody explained everything well and asked lots of questions to have all info ready for Dr.\nI highly recommend this place..','2020-07-29 14:01:29.124000','2020-07-29 14:01:29.124000',5,'roxana roman','https://lh3.googleusercontent.com/-A6-9KCZNcUo/AAAAAAAAAAI/AAAAAAAAAAA/Wy0tzeq1WKw/c-rp-mo-ba4-br100/photo.jpg','2077061009497551125',22767),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YF1LgbEt-obcIhI7y3Ls163lOs8iT1gDAiYord2SQDOe_c9OqG_VB1MiN_G_aDx275TVgo1UNvlLBnKIrVhFHzGp3L4',NULL,'2016-08-25 18:37:53.613000','2016-08-25 18:37:53.613000',5,'Baudelio valdez','https://lh4.googleusercontent.com/-YiQbYbyMheg/AAAAAAAAAAI/AAAAAAAAAAA/ioPZMnaJ0B0/c-rp-mo-br100/photo.jpg','14567670160750071148',1983),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YHOTpsKSA0-MBOXMSzqZBPtgNnbK6sZ-rsgnResiC_owB4tdkjmLITJLMkN6nY1klgSZvSG-zpwjboX7Gm9L3jOkoIg',NULL,'2020-01-11 19:14:02.183000','2020-01-11 19:14:02.183000',5,'Jb Wright','https://lh6.googleusercontent.com/-ECwLYKQQKEc/AAAAAAAAAAI/AAAAAAAAAAA/5WJtaM3Yx80/c-rp-mo-br100/photo.jpg','16590124370714063921',9492),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YIT3D0tEXrErT11JTbFzCit14BlyHYG7He2lVwwFPunz3m1AVoFF4lAZkuyVGSgy7vsZLw4-zH3TkYlTqnWvJmRd98s','Good experience at least they didn\'t treat my siblings bad,they did the test nice and gentle, the nurse was polite and friendly.','2020-08-05 20:48:34.164000','2020-08-05 20:48:34.164000',4,'Griselda benitez','https://lh3.googleusercontent.com/a-/AOh14GhXL-XHT1ExA_awbXhRv5YB0_zCNQeu_SJexxct-w=c0x00000000-cc-rp-ba3','14904078213800803294',21923),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2yMzdGYz2OPVG3Kts8CuKU5GLcRU3pY9aSnpRZ0B5KKZ5rB_bPtsX_P7K6nRJuLctz8wuwffJlKKuqNutoJKqFZuhZDM','Had a wonderful experience, very fast service and also received a follow up phone call. Very thoughtful and showed compassion!','2018-03-01 20:18:31.252000','2018-03-01 20:18:31.252000',5,'Jessica Laster','https://lh6.googleusercontent.com/-sy1zNeLvTag/AAAAAAAAAAI/AAAAAAAAAAA/nd_85d2Bcug/c-rp-mo-br100/photo.jpg','17394740196501090048',4876),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YnF9v9B55kYJnfcCzYJR6Vs9j3rjcggZRZ8qXe6RFpQlN0RwN9_7qX-ZBVF3YYXHqXgtuIPLc1r7heLlriCqBKZesy0',NULL,'2020-06-06 00:24:16.393000','2020-06-06 00:24:16.393000',5,'Chloe Muna','https://lh5.googleusercontent.com/-5IH1u7mEjXA/AAAAAAAAAAI/AAAAAAAAAAA/ENpi7FG0bUE/c-rp-mo-br100/photo.jpg','2077061009497551125',22869),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2yOfDdnp2OdwSit4LjJqnggTJ2IHr6RZzkhLJbBttC9iW6xiyo8LNhnx6EAVQlTSrpUVjp2bQUv1TWjFsD7osTCMwh2Q','I literally owe Dr. Evans and the staff at Signature Care my life. They were fast, thorough, friendly, and really went the extra mile to make you feel comfortable. My radiologist Cathleen took the extra time to explain what was going on, and was so sweet! Gabe, my nurse, helped explain everything every step of the way. Dr. Evans was wonderful! She went to having to deal with stubborn me, not wanting to have any tests done. To dealing with my frantic mother over the phone 3 hrs away, and took it in stride. If it wasn\'t for them I might not be here. So this review is more like a thank you letter to the staff that saved my life.','2017-05-19 16:50:06.270000','2017-05-19 16:50:06.270000',5,'ethan essary','https://lh6.googleusercontent.com/-s1JV6FfhTb8/AAAAAAAAAAI/AAAAAAAAAAA/upleEu1LGSY/c-rp-mo-br100/photo.jpg','16590124370714063921',3985),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2YtWlons0rw3MGhJVfmWNj0xM35pKJbwrz3hkdZdBhNRYwG4IT-0XKGSc41yu8EA8ucbrCYyYRrGhaLM4HpU5D8FumXA','Maria up front was so kind and helpful. The nurse Manuel and Dr. Chambers were also very ki d, explained everything and made us feel welcome and important. In and out so quick, too!','2019-04-12 18:57:33.343000','2019-04-12 18:57:33.343000',5,'Amber Kendrix','https://lh4.googleusercontent.com/-mAvZnuYUgHg/AAAAAAAAAAI/AAAAAAAAAAA/PJ0zb_1kSsk/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8290),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2yUceHsvw_uroqBm36ZAH-cd1OWIFcn7Xd_V0DXdNyevv1cSmLE8BgpL94GI19ZGmc5urf18sKVnqgmlW8GAQ8TLBUxc','Great service. Fast stress free and very helpful! There patient are there top priority.','2020-02-17 18:53:50.937000','2020-02-17 18:53:50.937000',5,'Esteban Portillo','https://lh4.googleusercontent.com/-EV1Xlr8eIU4/AAAAAAAAAAI/AAAAAAAAAAA/4QW3L_d3V-A/c-rp-mo-br100/photo.jpg','17898197009688164559',14163),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2yuTY4hCiRyFpUKUGNwIxKDuVcPjpmcU4wqeAs1mwZSGIjfs7HjtuHEcZGU-cBQSKPe5WSrQEkvW5kOYPI8xiHZojUc0','Took my husband here on New Years day and I was thoroughly impressed. The facility was very clean. There was a complementary coffee bar offering coffee, water, beverages and snacks. The staff was extremely friendly and prompt. Dr Appiah was attentive and thorough in his explanation of the process and his medical opinion. I highly recommend this ER!','2020-01-02 17:42:47.483000','2020-01-02 17:42:47.483000',5,'Rhonda Caldwell','https://lh5.googleusercontent.com/-b2Vo-qtwlDE/AAAAAAAAAAI/AAAAAAAAAAA/hNsA1tjSua4/c-rp-mo-br100/photo.jpg','16389487648212004696',2492),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2yvGLR4s9I3mZnhMhdsPJz89TBguHYLayLS_OLvMgS7tdTEN-2VLv6nZZVgbd-X9Mpm3cRO911MXUNwE9BA3fFFBPHu0','Service was great! I spoke with Denise on the phone before I came in and she was knowledgeable and friendly which is why I decided to come. Once I got there, the rest of the team really listened to my need and took care accordingly. I was in and out in no time.','2020-05-31 14:03:20.404000','2020-05-31 14:03:20.404000',5,'Casandra Bowen','https://lh6.googleusercontent.com/-UAAdFekME5c/AAAAAAAAAAI/AAAAAAAAAAA/aerRQEZSOdQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21777),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Z5htBuGIkWzcVQSwYB42ZPZrQgzdrjmT718rkK2QLXudo1ip1Sw_gnXI1utVnA_YkR0owseM_odEEiXJW7JmSQ_jB1I','I sprained my ankle and they were great!! The staff was super nice and they made sure that you were taken of!','2018-08-22 19:03:58.654000','2018-08-22 19:03:58.654000',5,'Hannah Solis','https://lh6.googleusercontent.com/-bsEFM039JQA/AAAAAAAAAAI/AAAAAAAAAAA/nOi_dY1bFQ4/c-rp-mo-br100/photo.jpg','16590124370714063921',3775),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Z9nC8lq8GPmKa_TTeiOhtq0puVuc4Y6UBAT6AwPryDx07MxWZGgw1uVOW50Mws-swPh504vdZgxvPrDoCWDM1nsdmCA','This place completely misdiagnosed my friend. He went in with vomiting and extreme abdominal pain. His dx was that he was constipated. lol....\nI too him to the ER a day later and he then had his gallbladder removed. Big difference.......constipation vs. needing gallbladder removed.','2018-07-10 21:44:52.900000','2018-07-10 21:44:52.900000',1,'David Lohner','https://lh6.googleusercontent.com/-fV3ytlDjYrs/AAAAAAAAAAI/AAAAAAAAAAA/jVsTw0gIz8s/c-rp-mo-br100/photo.jpg','14567670160750071148',1603),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Zd5re4LJDCGTPTYlMJ7YCSwCWo3ruBxNx2MJDh-eU366Yv_b9bG6Orzpi8QziIHHnZneE6InIbSbje43ZVo_45nK21A','Love the quick convenient access to complete care .. Ashley K. Was awesome with patient care! Will be back!','2019-03-01 16:54:41.789000','2019-03-01 16:54:41.789000',5,'Linda Slawson','https://lh3.googleusercontent.com/-ft3Cyevqj1E/AAAAAAAAAAI/AAAAAAAAAAA/YP1ddJ0ADn4/c-rp-mo-br100/photo.jpg','8626688543755174284',8544),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Zf6k94n955Ep0DFX2sVWI2ESJ71SUfM4XgwWdgS2awrrZLFdm3zqZqLD5THxuNaL_LI0icJI4KVlN22r5-Qn_BtOqq4','Thanks you so much for your care today. Thanks to the front office staff Tanishia for your help with everything. I can’t wait to come back. You guys were hilarious! ;)','2019-10-25 03:21:27.712000','2019-10-25 03:21:27.712000',5,'Miwraplatino AZ','https://lh6.googleusercontent.com/-PWO8UKFBEZk/AAAAAAAAAAI/AAAAAAAAAAA/SZ-oiI-jIXY/c-rp-mo-br100/photo.jpg','17898197009688164559',5478),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2zkTMZwYui1NjKgKFpCAqTOHbH1Q6RUPy7n9F9CZsvvFsltzevNljrI75piH8uPcJO8j2ShtN_Th5cVWvXy80Mbw557c','If you in need of prompt medical attenion, I would strongly encourage you to visit SignatureCare Emergency Center. I arrived with several open wounds and the SignatureCare staff were prompt and comforting during my visit.. I was even offered a blanket! Wonderful staff! \n\nSo to Stephanie, Katy, Greg and the entire SignatureCare staff, thank you :)','2016-08-28 01:22:56.226000','2016-08-28 01:22:56.226000',5,'Keyneisha McNealey','https://lh6.googleusercontent.com/-8KXf1T5p7oM/AAAAAAAAAAI/AAAAAAAAAAA/bLP-bXbhKm0/c-rp-mo-br100/photo.jpg','14904078213800803294',2463),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2znVXuVy9ifLvMb9UJR0bdvkzX-WgPQvOtu4ZwNWnMo8ACiiJAey2oXpVjFP_7lzTV3y922xS10-gbeRRns80rsW5xq0','Awesome Dr Zheng ,Amyand Pailes,RN','2019-07-05 15:53:42.744000','2019-07-05 15:53:42.744000',5,'fabian adame','https://lh4.googleusercontent.com/-YlbPyVOYyPw/AAAAAAAAAAI/AAAAAAAAAAA/dtPMop3C3bg/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9101),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2zoLjJfFNAB1_F4uO3EductcpL9dSIwqSA0_2nfvJ78ilf8VObVAdz-8f2IZKVXh39X8sjv40nKA4igwporHQBlmm2Ok','Blake-the nurse Delicia -Reg Clark -,DrDing\nAlso Sonny -rad tech everyone was great and friendly I recommend family nd friends to come whenever they need good hospitality service at a hospital periodd....','2019-09-05 22:22:38.612000','2019-09-05 22:22:38.612000',5,'Yung Kelow_fly_kidd','https://lh6.googleusercontent.com/-WS30ytpw3G8/AAAAAAAAAAI/AAAAAAAAAAA/DPSPM95J7GQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8812),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2Zq7PNKzWyF3J7xNyj2Pta3bi-Oc2l7RDQ4OUR5XNna6YXesO6Gfbls4k0kvDUfo4SpVJvMvHpkiaPgEkBVwvOtda9aA','The service was amazing in every way. Marcus and Alvean made sure I had a great experience. They were very caring and professional. Going forward this will be the place for all of my Urgent Care visits!!!!','2020-03-02 18:36:09.947000','2020-03-02 18:36:09.947000',5,'Shameka Washington','https://lh6.googleusercontent.com/-lx2apULsfqM/AAAAAAAAAAI/AAAAAAAAAAA/h0zJIE4nEN4/c-rp-mo-br100/photo.jpg','16389487648212004696',13747),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2zS5xAHGQ2LqGtUXMdFcTou8eqdStmCmfLrp6WLMvqUTOCQNYi3guWeMRFGNs1NNPRLwc39JqH9VaSehFsyvw3Nto8mg','Very knowledgeable and friendly staff','2020-02-28 19:36:05.636000','2020-02-28 19:36:05.636000',5,'Raven Matthews','https://lh3.googleusercontent.com/-eBK93cfd9Fs/AAAAAAAAAAI/AAAAAAAAAAA/Xt4P0jH7LzY/c-rp-mo-br100/photo.jpg','3272657195432704501',14318),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ztEwZm-5kvzj334SeoxZIJecBhFv-ensMZPCl6Z-s0PDCy05M863bjb29bmaPhdmGMTYs3bGrleGELBcNcICRpNf_KA','Marcus was great he helped me laugh so I wasn’t in any pain. Alvean was very helpfully and I feel better before leaving. Jocelyn was helpful at the first desk when I was checking in. It was a great experience over all.','2020-02-26 18:15:21.072000','2020-02-26 18:15:21.072000',5,'crishon taylor','https://lh4.googleusercontent.com/-BskUIngirB8/AAAAAAAAAAI/AAAAAAAAAAA/bzYEfemwWvE/c-rp-mo-br100/photo.jpg','16389487648212004696',13761),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2ZtMtG8RvvZ50g-x3xE7z9eyaenlMJZIlitq9okofdVF3fuiWfnyXJqbjdz8CpeyCE0NHYpfe98B_UpLEtjlCZrQ0Jjo','Great service!','2017-10-27 13:50:14.779000','2017-10-27 13:50:14.779000',5,'Tina Glenn','https://lh6.googleusercontent.com/-lRT_gf3cNAw/AAAAAAAAAAI/AAAAAAAAAAA/8ajx3P-w0r0/c-rp-mo-br100/photo.jpg','8918455867446117794',9343),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2zuqY0Wz76_wZ4bxFlUu9vJkkVhlpr_H-BMmiObN-qSxr4K1vHiiwLZ3hHU_zEqpqPN-QL8EpIrV5mq-KcaSi_YsKuw8','Keera was very good and the service was quick, we felt very welcomed this place is highly recommended','2019-11-19 15:17:07.277000','2019-11-19 15:17:07.277000',5,'Kelsey Almonacid','https://lh5.googleusercontent.com/-uwapjNZihxE/AAAAAAAAAAI/AAAAAAAAAAA/Hx4ol7nH8G8/c-rp-mo-br100/photo.jpg','17394740196501090048',14073),('AIe9_BH-Y7Lwr6IxuH7aUb2G6RG2zUYtSkySwmnoiCZi8fztxCjWum79DEwtTxhAL5KSTodbWGpbkbJTP58al4RYajvgc0oMNPFlP-Z3-Vv3KPhI8AY3YfE','The staff was very friendly and welcoming, very prompt service, overall best experience in an er ever!!','2020-03-07 04:22:19.497000','2020-03-07 04:22:19.497000',5,'Krissy Deleon','https://lh3.googleusercontent.com/-0M7r692CuGo/AAAAAAAAAAI/AAAAAAAAAAA/lz-tZ05Lwlg/c-rp-mo-br100/photo.jpg','16590124370714063921',21035),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk_12uemtGe3nc4jr_b3zTUDNudjIfJvPoP26Q9dXDm9xXF61mlrRfks6UIsruz0avLYJsdA8SsxpZ66iLuBHkdrgmzBQ','I had a wonderful experience, the staff was super attentive and helpful. I was in and out Dr. Daniels nurse and Natalia and the rad tech rollie were nothing short of amazing . I come here for all me ER needs .Stephanie got me in and iut quickly and mackenzie was super sweet and brought me a war blanket ! AWESOME EXPERIENCE. !','2020-01-25 05:14:07.352000','2020-01-25 05:14:07.352000',5,'Milan Walker','https://lh4.googleusercontent.com/-I0McvLpaKlU/AAAAAAAAAAI/AAAAAAAAAAA/IPAL7pyhdiI/c-rp-mo-br100/photo.jpg','8679688254631342173',9831),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk_3MmNnEYBybMcn5wof2ZDaUzAf_iuhDylEEz1xD3UYUXPk9Lmd5WeSaDpcITYVcqk-9HJ4M0lFCnry-NHQ5upejsszQ','Excellent Emergency care center..super clean.my doc Dr Golla was excellent knew exactly what tondo for my pain n discomfort to go away.The staff is always perfect the nurse was superb no jokes.Thank you guys Karen,Wendy,Jesse,Selina and Janet.No better team in Houstin..thamks alot.You guys are good at your job..great place for care.excellent no wait','2020-01-22 18:54:03.941000','2020-01-22 18:54:03.941000',5,'Nkechi Ukoha','https://lh3.googleusercontent.com/-Z7e1iAhzIBk/AAAAAAAAAAI/AAAAAAAAAAA/flmx503TOj8/c-rp-mo-br100/photo.jpg','17394740196501090048',14043),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk_4CqB8fOcKa6-N2XoJXYd9tkr7CQLC_MRwYT_9Wamo2CvBEku_l7dq4ZITwRUAO9XKc7CWJ98whidcKEdJAgVXu-QTA','Good experience and good treatment and great stuff doctor:kotey ,md nurse :Lynn s. RS tech Fatima b , er tech , Daniel b. Registration . Tanisha w','2019-12-23 05:36:17.639000','2019-12-23 05:36:17.639000',5,'Pratik vaidya','https://lh6.googleusercontent.com/-6E4KhvUCpsg/AAAAAAAAAAI/AAAAAAAAAAA/IETJCredG80/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5335),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk_HAXHaL2G6AcsyXlPqb2xGr57a0r7_y-9G3GqL-EYm5vCvW9Rsy87gaJ7ddGOVZJ8LdGluIFPIftlsJZnA4X6eHLiBg',NULL,'2019-01-24 22:05:14.908000','2019-01-24 22:05:14.908000',5,'Crystal Evans','https://lh3.googleusercontent.com/-NR11TeeK4sk/AAAAAAAAAAI/AAAAAAAAAAA/bmG8dskN_os/c-rp-mo-br100/photo.jpg','13486358490203335051',1086),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk_o_ZH5Uh7xsSSdmJTBPfCvH18Nq1kCVNvEqepRRlhYcSAfEpiaLFuzEektK3bWb8t8l-L9hf_jLRRuI9ri-wXh86x2o','There was little to no wait time when I went in to be seen. The staff was all very friendly and helpful. My issues were addressed and I didn’t spend a crazy amount. I had an overall great experience and would return again and recommend to others.','2020-07-03 22:20:13.868000','2020-07-03 22:20:13.868000',5,'Deni Hohmann','https://lh5.googleusercontent.com/-hGrMUrlKclA/AAAAAAAAAAI/AAAAAAAAAAA/lO_wYAMoIw8/c-rp-mo-br100/photo.jpg','8679688254631342173',8828),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk-k7ORrcys6IzWxPGdLl-KSFn8xGOVG91x8eodyahlb-hmZGLYpF8IfJxzWW-j5qU4gp8Negz2mTZPnDAzfgDzev93SQ',NULL,'2018-12-13 23:03:20.658000','2018-12-13 23:03:20.658000',5,'Brigette Willis','https://lh3.googleusercontent.com/-PmdJGq3T8gU/AAAAAAAAAAI/AAAAAAAAAAA/5SMxCAtJVk4/c-rp-mo-br100/photo.jpg','3511292162159714121',7548),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk0H-1kw_tdiFwoT_5x9q8VflZVjeJvRcPG8Uf0j3RwgCdddxChArVGiQquVM9Qechd9q33lSuGfAAg9R-2VTKHH2GId8','This place is very clean and nice. The staff is completely professional,very kind and attentive. I would highly recommend this location to anyone in need and Erica at the front desk is so kind and sweet. Also the rooms are very nice.','2018-07-19 20:01:52.358000','2018-07-19 20:01:52.358000',5,'Chris Barnes','https://lh4.googleusercontent.com/-CsBQ4uT0fSQ/AAAAAAAAAAI/AAAAAAAAAAA/c3DtCJkDXjw/c-rp-mo-br100/photo.jpg','14567670160750071148',1595),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk0JBPsGzSsCHd77neC2jsQNXp6GdBqB5PDXKfsNsx1dw3vBl5VH_WLatOKMhLuzhGWyXqOW-1iQKlNi-6u3MAU5eQwLk','The atmosphere within the facility was very nice. I felt welcomed and the staff took excellent care of me. They also do their very best to get you seen and treated as swiftly as possible.','2017-08-11 08:55:19.002000','2017-08-11 08:55:19.002000',5,'Azeez Alibi','https://lh3.googleusercontent.com/-AJXEUg5EkAU/AAAAAAAAAAI/AAAAAAAAAAA/toGKNTIfILM/c-rp-mo-br100/photo.jpg','17394740196501090048',5000),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk0Ojstz57TFc3j-0IF3Xmg9lg4KlF_QAIz1BxPy7Ev3BLzO4jdLL1BO7AuX4R02EQPQfdkWQ8XggagxyZRl18wKOyL_4','Staff was friendly, wait wasn\'t long at all! Was able to get covid testing along my 4 year old very quickly.','2020-07-25 17:03:36.652000','2020-07-25 17:03:36.652000',5,'Chantalle J','https://lh6.googleusercontent.com/-iyBx-twNJX0/AAAAAAAAAAI/AAAAAAAAAAA/BRPBQ9Yd1h4/c-rp-mo-br100/photo.jpg','2077061009497551125',22841),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk0T6ztiGmZBK15jlJFtGj70uelLWwhrNcPcD8sOyvkWJ0LZwYVU94kvFG0pP5BVeTYh9GwICI9Vle_Zpzd3Ge2QLvceU','The visit went well. Everyone treated me great with open arms. Easy to talk to and very understanding','2019-09-19 17:29:52.683000','2019-09-19 17:29:52.683000',5,'Tyra Blue','https://lh6.googleusercontent.com/-A-YOP5a8n_I/AAAAAAAAAAI/AAAAAAAAAAA/E5eZr4Kycq8/c-rp-mo-br100/photo.jpg','13486358490203335051',820),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk13U-ZdpyHsB2YbBW9C1EwHVOoCehZvk9ISTimoHkjGdEIwMC1VcTbUFFkCsLVSzx875myen0pUdrtlc7dlP0r_KdpfY','Wonderful experience here. Very nice and made me feel comfortable. Irving is the dankest nurse I’ve ever met and very handsome. Christian is amazing holly is okish kinda. Dr. Garcia','2020-03-10 06:58:11.987000','2020-03-10 06:58:11.987000',5,'Lil Ke','https://lh4.googleusercontent.com/-zp_AdCkSIJM/AAAAAAAAAAI/AAAAAAAAAAA/q13pUrAXKNg/c-rp-mo-br100/photo.jpg','12541597562633926366',20914),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk1MILJ_HFzE-miYoiFuAnbhGU2gaMr-UdLxTzBM3j8bl6I2hqRZri7RYMasMCHT1a35xNXHoTHNHnpsiqJ176z0gB4ek','I’ve had multiple positive experience in the last 2 weeks for myself and my employees who needed covid testing. \nHas the process always been perfect? No\nHas the registration process changed? Yes\nAre the front desk and medical team doing their best to help people get tested ? YES!\n\nAny business offering rapid covid testing is overwhelmed with request. It can take time to work out the manual and online processes regardless of the advance planning someone did. \n\nHats off to the 24x7 team working there for ultimately providing the test that were needed.','2020-07-01 19:18:33.041000','2020-07-01 19:18:33.041000',5,'Chip Tabor','https://lh6.googleusercontent.com/-wCH5lvQifbo/AAAAAAAAAAI/AAAAAAAAAAA/hrQwXZwdddo/c-rp-mo-br100/photo.jpg','14748677429039074158',21389),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk1T5Nok_l4maeE1pMKdDP6a-9JAODZcdYy0cXgXudcQCt3raDMvuIsgzQy1wkkd80xSZJ-J-vniMYGui07LNVGlFL1Qo','Doctor was amazing! Very informative and gave me lots of good information. The entire staff was super friendly and welcoming!','2020-07-21 06:26:47.631000','2020-07-21 06:26:47.631000',5,'ashley leyva','https://lh5.googleusercontent.com/-FgXWvr3Ed44/AAAAAAAAAAI/AAAAAAAAAAA/8YWpgkigDNg/c-rp-mo-br100/photo.jpg','14748677429039074158',21639),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk1x47aMtmvNNX4g8kPYFEZnqOzy28hHIl-wLTMNbIHC3KTWUtbknmXZdMlRmXNsVbJ01ScX76CPOqGOQPLE-Kiyqef64','Everyone inside was very nice and helpful','2017-11-14 22:33:41.487000','2017-11-14 22:33:41.487000',5,'Robert Vinjolli','https://lh6.googleusercontent.com/-8BNOpL7biaI/AAAAAAAAAAI/AAAAAAAAAAA/KwFv_RplKNE/c-rp-mo-br100/photo.jpg','17394740196501090048',4933),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk26Qok-jfNdzAiJ74gqTUy8UfApSKrEq4gbyk1pjrzV63yiBiGAsNDfJLVhD-reXJ_ErIzVLzu2Y9y8BjJYFvIohATyQ',NULL,'2019-09-30 21:24:33.004000','2019-09-30 21:24:33.004000',5,'jejuan mckibbins','https://lh4.googleusercontent.com/-rdxqNUM6qOY/AAAAAAAAAAI/AAAAAAAAAAA/pn7aFtXhRqQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2873),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk2erUIOh6N-CBs3Xa1ysSkbLgMbWI1U4p3zB8fr_sltMiLZsmN3q517ldlhlQ0XerTi4zwgKy1c78RAmCB_kkssM5Lr0','The staff was very friendly and they got my wife admitted quickly. We had a great experience and would highly recommend Signature Care Emergency Center.','2018-02-23 03:15:21.383000','2018-02-23 03:15:21.383000',5,'Ryan Huff','https://lh3.googleusercontent.com/-VLcwtMrlp-Y/AAAAAAAAAAI/AAAAAAAAAAA/fwRhQPhkwG8/c-rp-mo-br100/photo.jpg','14567670160750071148',1652),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk2LyUKdGftI9hKoWwgBeDA__CJSE1kscUdCN3KWp6Vx1BHlPdAZKjNOMQ9RYmM0uBtq3MG3isuy8y853rNeHUjaUXuEc','Friendly, caring staff. They treated my daughter in professional manner. Provided explanation for what they were doing and gave next steps. Dr. Patel, Sarah, Fatima and Daniel were a great team.','2019-12-11 02:16:02.177000','2019-12-11 02:16:02.177000',5,'Kimberly Starks','https://lh6.googleusercontent.com/-SLByrwiAzKY/AAAAAAAAAAI/AAAAAAAAAAA/gLWwQ7iKebI/c-rp-mo-br100/photo.jpg','17898197009688164559',5365),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk2p_H3TsCuTkBd5SxkkQ5hlTrE0zk1wn4vNDPj7q83YYNre7Tn3tUCjEpewUtDgY7UHlsJgobo2C-ia6yXpmyu2-bkHA','Everyone was friendly and helpful. :)','2018-05-18 01:37:16.416000','2018-05-18 01:37:16.416000',5,'Paige Boyd','https://lh6.googleusercontent.com/-R4kiE1v13Pc/AAAAAAAAAAI/AAAAAAAAAAA/RAFDcqar4TU/c-rp-mo-br100/photo.jpg','14567670160750071148',1622),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk2WWZw-Gb5tKZIoHT3Sk6mqHf-yxHOwgAHLSg1MgZw4UsYrn3TrMchVuJBL5SPn326nHCRliCdfojwfuA1SJLqtBn01g','Best ER hands down!!!\nUnfortunately the ER is the last place anyone wants to be. However if you have to come I would definitely recommend here. They are very kind and caring. One nurse asked if I wanted her to run to whataburger and get me something to eat 😲! Who does that? Amazing Dr, ultrasound tech and even security guard. I will never go to a hospital ER again.','2019-03-31 07:44:49.231000','2019-03-31 07:44:49.231000',5,'Niesha Turner','https://lh4.googleusercontent.com/-n1AnhSIffyc/AAAAAAAAAAI/AAAAAAAAAAA/KsSwGtw8ajI/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9150),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk2xqrd2ZCYFbMkyz_tT72Y1Mb5M67Vel3D1ZW2hpqoxpUfynHqOKEfQpAHWiCakHqpiXxAyGg0wBpgour1RGAqdT9uvs','I have answers to my problems and I was treated better than good! Fast, caring service!','2020-01-27 03:38:09.637000','2020-01-27 03:38:09.637000',5,'Gayla McCoy','https://lh5.googleusercontent.com/-ZsS0Hrn7MLM/AAAAAAAAAAI/AAAAAAAAAAA/6idvBidfS-E/c-rp-mo-br100/photo.jpg','8626688543755174284',14624),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk3-q-tPqX4cWgpG-ODZCpRkTetJFJjLZh4GZ3hSRsIWwVzIwk6qpZ1YjXbEB0nV-nprDpSO8PP_hVmWqtSf5dy_sC0Cc','Really great service , fast , cared for me great this is my 2nd time coming !','2019-11-14 22:15:52.014000','2019-11-14 22:15:52.014000',5,'La\'Nae Lewis','https://lh6.googleusercontent.com/-VvqETe3snek/AAAAAAAAAAI/AAAAAAAAAAA/dmYPidZbPbA/c-rp-mo-br100/photo.jpg','3511292162159714121',7144),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk30cXDs8MkFR3c5UNSqFexR6B5tYGzJsY_SUwlhZZI5ZhzOjyq7gXDF7t9NUqL7GvzCxnaYxV_7hMFxM5YyE3UAidhCI','I had an amazing experience at SignatureCare Emergency Center. I went there with extreme abdominal pain and they were able to address it immediately and even have an ultrasound technician come and give me an ultrasound. I feel so lucky to have such an amazing emergency center in my neighborhood with superb staff and service. I would highly recommend it to anyone in need to immediate care. Cristina R, Cristina C, Linds and Dr. Elsbecker were all incredible. Thank you!','2019-12-01 18:54:50.858000','2019-12-01 18:54:50.858000',5,'Kelly Bazely','https://lh4.googleusercontent.com/-SbR-ZmF7Cpg/AAAAAAAAAAI/AAAAAAAAAAA/LXcLIXwtAUA/c-rp-mo-br100/photo.jpg','16891069708558046635',4135),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk31YHCSjDoqGfuyeS90PwWjNhxB6PI4LG8xUGJJSjFXHF0xWkVz3WpJZ4HJxOYVLIbLOWu9HUgB2blvQCJAG6uh9Ux7Y','I loved Dyveliz and Arielle they were great!! the RN was remington and rad was JR! loved them!','2018-09-12 15:36:51.362000','2018-09-12 15:36:51.362000',5,'Mariah Lucero','https://lh6.googleusercontent.com/-tB7B9ySLy50/AAAAAAAAAAI/AAAAAAAAAAA/eM5wBV7XQc4/c-rp-mo-br100/photo.jpg','16590124370714063921',3735),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk4p9K_B-i13oK1ihehlqkQY_x3pz4Vc9yXf7nCxpW3EtEaRFtoCPrCAYb8B_0jmsz2mGKd94DZDcwoU10wYIm63nJig0',NULL,'2020-08-02 18:41:52.449000','2020-08-02 18:41:52.449000',5,'Edward Williams','https://lh3.googleusercontent.com/a-/AOh14GgOZZczEFPAXTU_xybIc64fSP0v64tYcyoSs5MH=c0x00000000-cc-rp','8679688254631342173',22238),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk4ZwIVLKBEvLhtjrhqDbrtbDFS1uGOAtd6oMzF72TDBAmCddB_JScqi5b42DwLtFWQvfGbBhk0PNkdRQNxVqvf5nWhGg','Great service','2020-07-21 11:47:09.707000','2020-07-21 11:47:09.707000',5,'Erica Armijo','https://lh3.googleusercontent.com/-zhIH1XtO_9U/AAAAAAAAAAI/AAAAAAAAAAA/l8d1Y2pblfo/c-rp-mo-br100/photo.jpg','14748677429039074158',21632),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk5Fvd62DdpSuiQtGiH8z7im1NI-YGYoosxBjlb1Y7Sfaw-uDq5DciJH0VLTG-U9_BjzPHUolG8KpehS_Y7N0V6KLIbeg','Very effective and pleasant, Alyssa and Terra were quite nice and helpful!','2020-06-05 18:58:29.883000','2020-06-05 18:58:29.883000',5,'Lynn Moses','https://lh5.googleusercontent.com/-xhyXHOBK3FE/AAAAAAAAAAI/AAAAAAAAAAA/_aqKTFHWVZw/c-rp-mo-br100/photo.jpg','8918455867446117794',22933),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk5T2mu82MHDTbdAmvy6BpjJgpEfXsQd9C99dA5g6lZEmyhXeapJXcLlBh99pYVC_kc_jlFV0O03m98VdQjcWgXKdpXPA','Had a great experience here and excellent staff. And immediate results.','2020-07-31 14:34:33.994000','2020-07-31 14:34:33.994000',5,'Eli Aranda','https://lh4.googleusercontent.com/-LMaaP3olV8Q/AAAAAAAAAAI/AAAAAAAAAAA/aTT-fbNqd1c/c-rp-mo-br100/photo.jpg','14748677429039074158',21896),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk5W6OSS5zky_9_Zx6iiEv7sIEaWKXkodW9rAxDDYwX8Ic92hBfn5Hcj__jnAit1hEBaCghHrhyibOt6NIhhHJQKooPvc','Nice staff. I was taken back quickly and was out within an hour! I would definitely come back! \n\nAngel was nice and Susan was also sweet. Tanishia was also nice sweet and full of energy at 1AM! Lol','2020-03-04 07:06:55.693000','2020-03-04 07:06:55.693000',5,'Elizabeth','https://lh3.googleusercontent.com/-7d-h4dxyNo4/AAAAAAAAAAI/AAAAAAAAAAA/4mwOLXQ367I/c-rp-mo-br100/photo.jpg','17898197009688164559',14107),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk5yfSeJkqEvWmuyRuy3h4etoQXmIFEid4WJqk8ZGa3bGTcdTl-Pgl_dAANllZmLRqXNC9x-_emq7d7fM6tpkSyIn8e7M',NULL,'2019-03-21 23:42:05.212000','2019-03-21 23:42:05.212000',5,'Abigail Spence','https://lh4.googleusercontent.com/-bjEp3TjZONw/AAAAAAAAAAI/AAAAAAAAAAA/61szaZZbUVY/c-rp-mo-br100/photo.jpg','16590124370714063921',3493),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk6bIzxBi6fR7c-v8_VY7Qxzo47dOG93tfLDnrUCFALb4LFh50OUv3NzH01UNcmTeGG8OQl8pjHO1QjxR_dM43oOrLYrA','Incredibly friendly & very helpful front desk, nurses, and doctors.','2018-10-14 20:10:32.862000','2018-10-14 20:10:32.862000',5,'Laylah Richards','https://lh5.googleusercontent.com/-WtQx6ymfdkc/AAAAAAAAAAI/AAAAAAAAAAA/U0i1lvISAPI/c-rp-mo-br100/photo.jpg','16891069708558046635',4419),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk6SNFYPTnRNSEi_iE-4pdaXp0cM4oQw8BI6tpOeMCMVbgIcZ3TopHWf3MmOuI97V1dvNYyq2SsZLmwaSFq4zbKAUzNuU','Dr. Jaber and RN Anthony made me feel comfortable and cared for during my visit.','2018-09-02 16:56:05.187000','2018-09-02 16:56:05.187000',5,'Kenzy Posey','https://lh3.googleusercontent.com/-m48Ep2jUUvs/AAAAAAAAAAI/AAAAAAAAAAA/K2OVErvLJLE/c-rp-mo-br100/photo.jpg','16590124370714063921',3749),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk7BXd0WTAfcJ0iGwHQFuqtqk7Bt4AkevuKWIHw3Z_WwuFuyGdfcX8fMYz-mCv3btowP_QKVKmFyc0bBSFll0ibMGHnck','I visited this ER yesterday due to acute pain in my ribs which turned out to be a fracture. The lady at the front office, Teresa was extremely nice and helpful. She was very kind and comforting right when I came in. \nHowever, I have to brag on Jorge Madrigal. He was awesome! I was in pain and I did NOT want to be there. He made my visit. He was very funny and extremely kind. He walked me through everything that was going on and told it to me in terms that I could easily understand. He truly made my visit there. \nEveryone was super amazing and kind and even though I stayed there for three hours, it definitely did NOT seem like it. I was being waited on and talked through things. This was truly an amazing experience! \n\nThank you all for everything you did for me. I appreciate it.','2020-05-27 23:34:42.951000','2020-05-27 23:34:42.951000',5,'Erin Dombkowski','https://lh4.googleusercontent.com/-Rkewwxgp3DM/AAAAAAAAAAI/AAAAAAAAAAA/qsFcjHihg8k/c-rp-mo-br100/photo.jpg','14748677429039074158',21778),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk7XTBC4kILeU_es-_pXcOKv61z3PDFO2Tyb9gtnfYH7t-_LTk0VBHsaOXp4r3tf7eASok5iAlQaysm_o0tiBgRoZmc5o','Tricia/Alvean are the best','2019-05-23 14:58:56.366000','2019-05-23 14:58:56.366000',5,'Queloso 44','https://lh4.googleusercontent.com/-XCBlePgRdto/AAAAAAAAAAI/AAAAAAAAAAA/rFUhJbcGYzQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk8hwYbT_gG1MslhL7sSfyJps-Q7q5O0KDhadh6bdB8mUVhSpvLTc_Wm_loo9ajJFj3S3fgTik4g2aHfmU--zfoUqmx1Y','Don\'t t even know where to start with h Samantha, Christine, Joe, Ricardo and Dr. Jaber. They are very wonderful at there job and very caring.','2020-03-02 01:34:07.829000','2020-03-02 01:34:07.829000',5,'Niya Phillips','https://lh5.googleusercontent.com/-fdv-OxToy24/AAAAAAAAAAI/AAAAAAAAAAA/njeT_0XcUrM/c-rp-mo-br100/photo.jpg','14567670160750071148',13506),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk8jyVc4AQzgvgLi8-GCr1i4DBbP_FN3u2Fdki641rFFLJUFMP2UzTqtmW1y8SktqOrFH6sDXP6--bUuy-gLl9wmJgpN4','Staff is very friendly! Will recommend','2018-08-26 01:37:02.757000','2018-08-26 01:37:02.757000',5,'Chris Jenkins','https://lh6.googleusercontent.com/-IozCBvnUfa8/AAAAAAAAAAI/AAAAAAAAAAA/7fZ4YVwvv2c/c-rp-mo-br100/photo.jpg','14567670160750071148',1552),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk8v76XYSzFu6dgQceI8_bWfN1uAFNYWaVcQ-eOJIZEQUmHZX_i7EfiCTaxf2Hs5BIejHIGZIt5LBJS5FlQCiYZy80Wlw','great care','2017-07-16 17:16:13.452000','2017-07-16 17:16:13.452000',5,'oscar palomarez','https://lh4.googleusercontent.com/-VDoAJWT3s-c/AAAAAAAAAAI/AAAAAAAAAAA/bN1CFx9spYg/c-rp-mo-br100/photo.jpg','17394740196501090048',5017),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk9FkGNl9vOFYa7emj9nDGZC5c7rtLNNtuYQlCW7FXKkpTeCdWNJnJ4J0idckRrbURfYIvTVuGPhiIvQvab9v4QYQPBTw','Quality care.','2018-09-10 17:47:06.054000','2018-09-10 17:47:06.054000',5,'Jay Walker','https://lh3.googleusercontent.com/-CyPeougXZ58/AAAAAAAAAAI/AAAAAAAAAAA/kf-BlbkbBaY/c-rp-mo-br100/photo.jpg','12541597562633926366',608),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk9igOBGXeORBOZ2tR5cDyIWfoB7KCllJNjwD4N7wgiz6Q0zJrtdrqQUuT_HD3qgpz0agh_JwUwwH1JpkgWD7_Ou15aek','I came today and they were great, super quick! Very friendly staff, and so efficient. The team worked well together too!! Every single person from the registration desk -Vanessa, to dr. Henderson. The staff works really well together too. When I first came in Marcus the radiology specialist and Jordan the ER tech keep me laughing in high spirits even though I felt miserable! Great atmosphere and when the nurse Alvean came in she fit right in with the smiles and giggles. They were awesome and every time I come here I get different people but they are all amazing. Highly recommend anyone coming here for emergency care! The staff makes the quick experience that much more fun!','2019-12-03 20:13:03.170000','2019-12-03 20:13:03.170000',5,'Yolissa Cumba','https://lh3.googleusercontent.com/-roDZ9VCxOgA/AAAAAAAAAAI/AAAAAAAAAAA/LBdK5eQQi7M/c-rp-mo-br100/photo.jpg','16389487648212004696',2586),('AIe9_BH3gZxYpIxBZcqAOO5HuBVk9zZOSSTB1V5mDmH1vkETHDUSk_Z6-LQxNYWSuLmKrLKKw1enusuRBKBzRnk3L047S4bFJKj-RZCCmy9BgXfGfjhJQTg','I had an 11:00 pm appointment for a covid test which I stood in line the previous day for one hour to get. The receptionist said they were running a little behind when I arrived. I was finally brought in to get the test at 1:30 am. At 1:38 am the test was done and I was told 20 minutes. It is now 2:36 am and I am still waiting. I understand from the gentleman assisting us who was very kind they are short staffed. Very frustrating.','2020-06-29 07:38:38.975000','2020-06-29 07:38:38.975000',1,'Rhonda Thompson','https://lh5.googleusercontent.com/-uc1Gn4gxl_E/AAAAAAAAAAI/AAAAAAAAAAA/lSlUWBU4hok/c-rp-mo-br100/photo.jpg','14748677429039074158',21392),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkA02FPcOC8OIF84dWl0TkCwzLIj2S0rQpRC-Q0ovYw6y7PUgqH5TKj2xDTAYrvFRd4JGzfh1gf_cTMJpYoieESIsNiKI','Lorena was super nice and helpful. Gabby and Nancy are excellent nurses who did a wonderful job and made us feel real comfortable.','2020-08-02 20:31:35.997000','2020-08-02 20:31:35.997000',5,'Dominick Hernandez','https://lh3.googleusercontent.com/a-/AOh14GgupkTpaeniV3GxEPKdhApXqHuggSw9bLw1yLWojg=c0x00000000-cc-rp','6521947413723274945',22192),('AIe9_BH3gZxYpIxBZcqAOO5HuBVka1HSwd-pJzJw6rvQZC4Q1lgVUbkZja-5C8Ptni6EuCuK3mPZDjP2Pyt81IXGdpurd34W59LfvYY1vagdBb9G0OPUTbQ','Absolutely amazing team! I nearly chopped my finger off and I was in and out in about 30 minutes. They were friendly, knowledgeable and not too mention FUNNY! You guys ROCK!','2019-05-15 12:00:30.697000','2019-05-15 12:00:30.697000',5,'tieka washington','https://lh5.googleusercontent.com/-HALb6LxTF9w/AAAAAAAAAAI/AAAAAAAAAAA/sxn_4XYgHrc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkA3H4udSgYZ88XognTLDktBZnnmxtc4ApxSGVLCvtaVaTFKshLyjs76lbaOYXJrKg1rv_u6uOdvQ4Nw6_OogqbwmNUsM','It was wonderful!! Jacob was a great year and Dr Y was awesome.','2019-08-31 17:56:10.544000','2019-08-31 17:56:10.544000',5,'Abigail Brown','https://lh4.googleusercontent.com/-eJf4VY0LjgQ/AAAAAAAAAAI/AAAAAAAAAAA/LAA_VX-45NY/c-rp-mo-br100/photo.jpg','16590124370714063921',3228),('AIe9_BH3gZxYpIxBZcqAOO5HuBVka6QU6KkmSCMdmvbfKcqMGYTmueEM1ruC6owJkfWr0NmADUhXS9eDPKJKBjQxTdfBzkmfdobBf1DiQnjK8IkHb6zGHUg','Such nice people! It will definitely be my main ER from now on. They are super helpful!','2020-03-03 00:27:23.252000','2020-03-03 00:27:23.252000',5,'Lexi Caraway','https://lh4.googleusercontent.com/-ztnTM3xzbx8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucno6NlISk3xIkbMqUxrhhX92ZdrNw/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14302),('AIe9_BH3gZxYpIxBZcqAOO5HuBVka9WvdXQNFLUFqMnG5ncd2AI1MFd1nn_Ysvtar_TUWr9OXVVL4_OuWnfRFaPlPx7G0ko_IN0tlPhfSAFvqRnuzuiIFXk','Anthony and Dr. Vakey were incredible. This was my second time coming to Signature Care and it was professional, quick, and enjoyable.','2018-11-19 20:09:30.898000','2018-11-19 20:09:30.898000',5,'Morgan Sewell','https://lh5.googleusercontent.com/-tWjY14an5Do/AAAAAAAAAAI/AAAAAAAAAAA/1omMjdCuzaw/c-rp-mo-br100/photo.jpg','16590124370714063921',3644),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkadUMz2fMjynYbV_2KQzME2jLlOduzb1U3RTZMvPRv2027bAFoZnaZMHsluuY3r4ayc7Zd1-JEHu3AsV2KtdGLGtEbK8','Cedric, Karen and Delicia was very!','2020-02-27 22:41:30.371000','2020-02-27 22:41:30.371000',5,'Dahn Edson Brisseau','https://lh4.googleusercontent.com/-CmBTj2Q_ACY/AAAAAAAAAAI/AAAAAAAAAAA/SHnTxLVcu38/c-rp-mo-br100/photo.jpg','8679688254631342173',14719),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkaFSpvsTvsZo1UJHGY1FLrh6GGFOeg8lLrveFSHdGkAezDLPk19eqsLYgLq3HDn6ohseqq-QWvriHFjYt7HD2I465ZUE','My visit here was incredible. I came down with some symptoms that were similar to Strep. Initially I had went to an \'Regional Clinic\' in \'Austin\' that shall remain \"unnamed.\" After being looked over for maybe 5 minutes, they sent me on my way and misinformed me of the wait time on lab cultures while I was suffering and in pain. Nothing to help with symptoms or pain, just go home and wait.\n\nUnsatisfied with their non-diagnosis and lack of treatment, I came here when my symptoms continued getting worse. The front desk was friendly, the wait time was practically non-existent, the nurse and med tech were both friendly and professional, and I was absolutely blown away by the care of the physician Craig De Waal.\n\nHe listened to what I said was ailing me and also what we thought might have been the cause, he immediately diagnosed the issue which presented similar to Strep but was actually the Coxsackievirus. He gave me a few things to help with the pain and an IV to rehydrate me as my sore throat had made it difficult to eat or drink anything in the previous few days.\n\nThis place actually made me feel better and gave me something to help manage the symptoms I was facing. I\'m as impressed with this clinic as I was unimpressed by the first place I went to.','2018-05-18 14:59:22.129000','2018-05-18 14:59:22.129000',5,'Adrian Steve','https://lh5.googleusercontent.com/-dP3_TucejK8/AAAAAAAAAAI/AAAAAAAAAAA/IAnYC6cES4k/c-rp-mo-br100/photo.jpg','16891069708558046635',4478),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkah-1vq5G89bHnB6MKbhJL1J95BalrBJ4BrVV57S0DVcqVEPWQ4NvWwkJVutRkPQIzUystI_S1bTkH-VM5go_AZ2atEg','I want to thank everybody here from Brenda for fast past back to Tech for being patient with me Shay for being wonderful and caring! Mostly Dr.Dang for curing and healing me when my face feel like it was about to explode l! I recommend this fast clinic to the whole Houston thanks for everything!!!','2019-04-05 02:25:06.723000','2019-04-05 02:25:06.723000',5,'Taniqua Williams','https://lh6.googleusercontent.com/-ujIo4lOwnrY/AAAAAAAAAAI/AAAAAAAAAAA/MdsKM6nsv2o/c-rp-mo-br100/photo.jpg','12541597562633926366',521),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkaLOirBv0ofj2-CbL9XoqW-VYe3j2187b_XIncn9hmvdd5ZyT1lw-AhgFf7KxyNzTB2MYkc6J7qoUakyTDYcN3p0EhSA','Don’t even come here if you get in a car accident. They will charge the lawyer fees just to give them access to your medical records, and will take months to respond!','2019-07-31 22:29:49.241000','2019-07-31 22:29:49.241000',1,'Daniella Mariano','https://lh3.googleusercontent.com/-jCl68GgRmq4/AAAAAAAAAAI/AAAAAAAAAAA/DfvqCB9JG1s/c-rp-mo-br100/photo.jpg','3511292162159714121',7233),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkassdmMfxA3TWdU1r4JM9deuvpVrOBqCzOKsHC5hlv3IUAYg-TDnFKr9M_q-oU54Cwr1DqOWJs3iqFbswJuZ3oSPFRps','Kelly Wenger and the staff at Signature Care were very nice and accommodating! Got me in and out!','2020-02-01 22:58:14.934000','2020-02-01 22:58:14.934000',5,'Bria Shoemaker','https://lh3.googleusercontent.com/-1dIabkqKY1E/AAAAAAAAAAI/AAAAAAAAAAA/qKfXHUXwhe4/c-rp-mo-br100/photo.jpg','13486358490203335051',13447),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkAt1d48U_id_d96CMp7_8wk7yPfi7HQvIDRws48psOi64QPpWBDkLIc_fQr9-8jekWjovPXzRosa5bO_j8ZrtgUCj00k','I went in at around 4am on New Years day and everyon was very helpful and my issues were addressed right away. I was given medicine in the ER and everything was explained to me very well. I had gone to another clinic 2 days before when my symptoms started and they did not check me for pneumonia even though I was having trouble breathing. When I went in to SignatureCare they sent me in for testing/xrays right away and I felt like someone was finally listening to my concerns. I highly recommend this ER!','2019-03-12 21:47:18.220000','2019-03-12 21:47:18.220000',5,'Hugo Lujano','https://lh4.googleusercontent.com/-0U8yYISDjRo/AAAAAAAAAAI/AAAAAAAAAAA/W2F9mQquR3g/c-rp-mo-br100/photo.jpg','3511292162159714121',7381),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkB-kHzKOQQdgXWLxJ5QJCeW5alOsONB-JEckbyBnGs7mdDnzE8fAxPvaqCy32SRm6KxL3b6EaIJpY3VDbAtCh54NqyRs','This place is wonderful! From the front desk to the nurses and doctor. I’m thoroughly impressed with this facility','2019-06-22 17:15:48.611000','2019-06-22 17:15:48.611000',5,'Jess Gonzalez','https://lh6.googleusercontent.com/-z-Np-9gJqXE/AAAAAAAAAAI/AAAAAAAAAAA/hWq0-_JjP6k/c-rp-mo-br100/photo.jpg','3511292162159714121',7290),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkb0k-HiAa3tkVkDgJRJkmlqpS9PH3fPusGO_vsdhyGDwa24jtPlH6B7jiLcrP6CNBtoD-Cy4sG10zslMwGa6-XmPk5fU',NULL,'2019-05-13 22:21:33.128000','2019-05-13 22:21:33.128000',5,'Lonnie Seamster','https://lh5.googleusercontent.com/-iKLL2BK9yHI/AAAAAAAAAAI/AAAAAAAAAAA/a30LUXLC8p0/c-rp-mo-br100/photo.jpg','3272657195432704501',6963),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkb1QBNWeRV-KL_85b5ROY5eynaknjEhm_SuBOE32Xj9xmSMsomK1omnrGGErTi622Gn2CNF6qkpNFKK_YS-dp_Vf8obA','I was in and out, the staff was very polite and helpful, I would definitely refer people to come here','2020-08-17 01:10:49.957000','2020-08-17 01:10:49.957000',5,'tammy blunt','https://lh3.googleusercontent.com/a-/AOh14GjYRxiq_0rTI7DjeKotbY2fDCBk5uwp7KKsUIysTEA=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkB2_wqhLwiIFNv8zemDhSxiAlBDKzU3Z939kkm7bDK4lVmIktvVzrmZgCt1VvW9V7usZ1lWTldrGJ_s3wwsx6CWyxcns','Could not be more pleased with the care I received here. Was seen very quickly and the nurses and doctor were super nice. Cameron & Gabe were just amazing! Highly recommend if you roll your ankle.','2019-08-22 07:28:34.307000','2019-08-22 07:28:34.307000',5,'Teresa Alvarado','https://lh6.googleusercontent.com/-ShkUbcYJhus/AAAAAAAAAAI/AAAAAAAAAAA/__2NJwSYr6M/c-rp-mo-br100/photo.jpg','16590124370714063921',3246),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkB3wfDqNBVZAASgITe7sAYMzVxdgczXW5UE_fc2HXySssv-0piBteTzRQaXbZgWITAVtmM5phMYva0F2R3-q39TbVkSU','Staff was very friendly and knowledgeable. Wait was not long and they were very professional. Patricia was able to assist with registration and very informative of weather co pay was needed and the amount. Nurse Alvaro was also friendly and very professional. Dr Omalley was very professional and knowledgeable as well.','2019-12-28 15:51:39.646000','2019-12-28 15:51:39.646000',5,'shanekia robinson','https://lh4.googleusercontent.com/-PheBe-j_yrk/AAAAAAAAAAI/AAAAAAAAAAA/yvsvqcIHODk/c-rp-mo-br100/photo.jpg','16389487648212004696',2504),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkb4uOSTZ8xuHoSk_DSN342d4ivmaXzZiAlLZOff6mqvRIqWePizsHRFgXdlSLPRk0Odh44UWV0zyLrBJ0gvoqAobwYwg','Quintessa and Dr.Henderson were so helpful and sweet!','2019-12-22 23:52:31.268000','2019-12-22 23:52:31.268000',5,'Rocio Mora','https://lh5.googleusercontent.com/-kkA-Lconb2M/AAAAAAAAAAI/AAAAAAAAAAA/a4tbzaGVraU/c-rp-mo-br100/photo.jpg','2694018788013845459',5978),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkB5490qn7k7fwPREUyjhC9cQ6gPHtxrzp6rdBO0t-hj0xLWxuxkjpG-bYPGb3LVv-6VqTg6T6aMzuAly1ENSNrpwe7zo','Fast and efficient service! The doctors and nurses were very knowledgeable about the circumstances I was there for. My daughter left with a smile on her face and a teddy bear in her arms.','2020-06-14 20:43:25.455000','2020-06-14 20:43:25.455000',5,'Raquel McMeans','https://lh5.googleusercontent.com/-CDsVMv8tnnY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnRQhTAkmEn78_yCtf09Ox1pJbFoA/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21452),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkb6C2fZzAWRfJt1IQs2ZfnQxTT3hv7kVt3LH9VRCAgDGHVS0o2XF8-EdRKJQ_wDVX4hX0pZ5o4c1GkkdHH2Wv9vut2nE','Omg words cannot Express the gratitude of care my loved one received here. We had went too HNW Hospital and from asking for a simple wheelchair the attitude and service was a BIG ZERO. So I had noticed this location a few times and immediately left and took him there. From the moment we walked in he was taken good care of immediately. The WHOLE STAFF SHOWED CARE AND CONCERN FROM START TOO FINISH. My loved one had Kidney Stones and I give the staff Patricia Registration, Ekaterini Nurse, Marcus B Radiology Tech and Dr Cavazos for such an Excellent and effective experience. I have worked many years in the Healthcare industry from Trauma Centers too Family Practice and we all are asked TREAT YOUR PATIENTS AS THOUGH THEY\'RE YOUR OWN FAMILY AND I CAN SURELY SAY THE STAFF HERE DID JUST THAT. IF YOU ARE EVER IN AN EMERGENCY PLEASE PLEASE GO HERE THE LEVEL OF CARE IS EXTRAORDINARY.','2020-01-05 22:26:50.164000','2020-01-05 22:26:50.164000',5,'lilgoldy gaming channel','https://lh3.googleusercontent.com/-OoqXZCC2Uvg/AAAAAAAAAAI/AAAAAAAAAAA/9nDvSB-vkUI/c-rp-mo-br100/photo.jpg','16389487648212004696',2483),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkBC9YChmzyqx_N53O6zGk9AC_zetpObllinzL5qgVMYwd8l4aTDPYXf5wyD8R_o8Lo9x75Ts1IxF7gQ1e00GYo5dU3ss','My experience today was great as it has been the other times I\'ve come for emergency care. The doctors are very attentive and gentle. They make sure to take care of what ever elment that brought you in.\n\nDr. Lindsay- Very knowledgeable and have great bed side manners⭐⭐⭐⭐⭐\n\n Janie- Nurse -was pleasant and professional⭐⭐⭐⭐⭐\n\nMarcus-Radiology -was awesome he really made me feel at ease. Even stuck me 1 time and got the IV in with little to no pain.⭐⭐⭐⭐⭐⭐\n\nJocelyn-Registration- is always smiling, pleasant, and patient.⭐⭐⭐⭐⭐\n\nI definitely highly recommend coming to SignatureCare Emergency Center (Cypress Creek Pkwy) for VIP care.','2020-03-04 02:48:52.670000','2020-03-04 02:48:52.670000',5,'Latecia Rushing','https://lh3.googleusercontent.com/-JmECFCBWefI/AAAAAAAAAAI/AAAAAAAAAAA/CVbi0FJJqLM/c-rp-mo-br100/photo.jpg','16389487648212004696',13738),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkbCWt9na_tqSi5my9tzLhZ4rTx3auRIlFxhmnXwe6AfNU9JH3Rv5Z0llltbp2ll6vr95NtzFJWtUbIZbzggyrAhWzuhg','Facility is very clean and waiting time wasn’t long. Ambient environment!','2020-08-21 20:39:39.685000','2020-08-21 20:39:39.685000',5,'Elizabeth Ramirez','https://lh4.googleusercontent.com/-iL-MzrBbCho/AAAAAAAAAAI/AAAAAAAAACI/AMZuucnC7QbEfLCvZlzTOLNiuLTVxVw9HQ/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22992),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkbD6Yw6AEeWL4Cl2WaI8hSFfop-X9Uk-Udwt-m26ZY4WUAA0ShZX9d3T36hHFVUPiZ7PydXBQOlA0BrxhX8inmfYHgIw','Best emergency visit I’ve ever had. No long wait no long registrations. Everyone was extra attentive to any needs that I had. Definitely felt like the staff cared about my well being.','2019-08-05 12:42:34.266000','2019-08-05 12:42:34.266000',5,'Nayeli Morales','https://lh6.googleusercontent.com/-Oe8N-XzN8xY/AAAAAAAAAAI/AAAAAAAAAAA/eqWxC7uMlgc/c-rp-mo-br100/photo.jpg','6521947413723274945',8168),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkBjlXbxwrrx-Bs4nAZaYjnRE7Ol_drUzoRLhPjYhPcZWgMQprNr2o53kHcLxklbPfowHP8CM1tib8OiH8CITYj5lfsHY','Alvean ,Jocelyn, Marcus \nThank god I was able to take my son somewhere I’ve been calling all around for him to be seen and it was a headache, fortunately they where able to see him and it was very nice and the staff where amazing','2020-01-29 20:26:35.224000','2020-01-29 20:26:35.224000',5,'Stephanie Walker','https://lh4.googleusercontent.com/-5XeGK7tJbJY/AAAAAAAAAAI/AAAAAAAAAAA/hHjpSOSepLU/c-rp-mo-br100/photo.jpg','16389487648212004696',10158),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkBlK9tCE6ikKPnpTSmN7wbuC0aqt54Cp5jgdtMZ55KPh9wqovRQJJK0DVyMszUIau02jBP3o9AekIN3lzi89MFQiSPM4','They helped me when I had very hard poison.','2018-05-09 20:41:06.437000','2018-05-09 20:41:06.437000',5,'Margarita Ostrovskaya','https://lh4.googleusercontent.com/-4OLj85qkwxs/AAAAAAAAAAI/AAAAAAAAAAA/DFGBehheCDY/c-rp-mo-ba6-br100/photo.jpg','3511292162159714121',7704),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkBnMq8R9kDfWmNHTKYY0834AJRm7i0joNtRBwEWCBMcWkEtrFzL9LQ_Iz-8rK5ugq04CazysA3FtKYfgOJr539ez0Bis','Fast','2018-06-06 08:35:59.655000','2018-06-06 08:35:59.655000',5,'eddie & vet','https://lh5.googleusercontent.com/-A4n11KJLShc/AAAAAAAAAAI/AAAAAAAAAAA/x5VEw3q7IXw/c-rp-mo-br100/photo.jpg','3511292162159714121',7700),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkBO3KF4ZW-Jv3h9A4bOu1w9OLdlMDBn0WGW_JfTLQfOnk4DdY2rZmeuoRvdLKl1JeR5cxK8hyyJ44sZ5URXtUSocjucc','Wonderful staff. Quiet and so respectful','2020-02-18 18:59:34.387000','2020-02-18 18:59:34.387000',5,'Felicia Murray','https://lh5.googleusercontent.com/-U834ruaQL6g/AAAAAAAAAAI/AAAAAAAAAAA/kjLfqltCD7s/c-rp-mo-br100/photo.jpg','2694018788013845459',14228),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkBUcJNmfnL91dpqbsmu-KCWVZWS0mxGcJ4RVQVpnsq4gSKrWi1GLYTrFAyWU0gjtO6BHnzksOdQP_is0LHKCiSlUfMY4','Kendra checked in my girlfriend quickly and got her to the back for help as soon as possible.','2019-11-30 14:10:11.076000','2019-11-30 14:10:11.076000',5,'Matthew Streety','https://lh6.googleusercontent.com/-d54eA7NZZ00/AAAAAAAAAAI/AAAAAAAAAAA/jPgXEGSFYPk/c-rp-mo-br100/photo.jpg','16590124370714063921',3063),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkBx8zC-Y9BLOCfXrWoMMcI2gxEI4sx3pehZ1DsvBcjLx1QzGsLzogE5B6zYpsOYg9lBFZT5P6_2xhU4aMhnm1LFMYYjg','I was being seen by Dr. Daniels. She explained everything so clearly and gave her time to see if i have any other health issue. The Registration Ms. Delicia and the nurse Mr. Blake were so kind and friendly and helpful. I had good experience with them.','2019-11-05 21:19:41.674000','2019-11-05 21:19:41.674000',5,'Seema Haidari','https://lh3.googleusercontent.com/-0kiX6wNpDoI/AAAAAAAAAAI/AAAAAAAAAAA/TiBto76mX10/c-rp-mo-br100/photo.jpg','8679688254631342173',8742),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkBYGBbLx4nAByaFDqiTwebQWeAmYdIbksIFcUjI0-YzwUjBm60YIOW4EHqpxFw2-gUGCgMfziBFgyNGfiH3DWLM5Dvro','Everyone was friendly and efficient. And there was no wait time.','2020-01-06 22:20:54.044000','2020-01-06 22:20:54.044000',5,'Linda Newton','https://lh4.googleusercontent.com/-coLZI_dl728/AAAAAAAAAAI/AAAAAAAAAAA/yxMsUpAa6ZQ/c-rp-mo-br100/photo.jpg','3511292162159714121',14467),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkc_fKMI4MoKBQn-OOXPMCUvmvJtuB9H6BsWY-HpNeRVBeTyiZ4wKOxGWSpKV2uO-9ufWQaw0PLK2GhfV-uS12QodPhPc','I was deeply impressed by the services I got here. From the front dest( Jasmine) to the nurse ( Theo) and the Doctor (Dr Soli) it was all professionals.They exhibited professionalism. They were attentive and caring. I felt comfortable and impressed. The paper work was little and I didn’t have to spent A lot of time in there. Clean, beautiful and quiet environment. Thanks to you guy’s.','2018-02-03 18:26:19.044000','2018-02-03 18:26:19.044000',5,'Ola O','https://lh6.googleusercontent.com/-lU2ddXVEWuo/AAAAAAAAAAI/AAAAAAAAAAA/Irv-j2LRPy0/c-rp-mo-br100/photo.jpg','14567670160750071148',1663),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkC4ejWG6WXQR-M31AVHIOU33hhEjpJK95ADQLv8zfLBNdQ-9YcE-77psCr-xB9uvslr4dALHck-DfYHUgdy4hMGbg7Fw','Much greatly appreciate you seeing my elderly mother in this pandemic.. She tested positive and the care and procedures she received where beyond was was expected. Thank you for the great service.','2020-07-15 02:25:29.273000','2020-07-15 02:25:29.273000',5,'Luis Ponce','https://lh3.googleusercontent.com/a-/AOh14GgOi2zFK8mXgo4qJMSRwfzxZuOtt7pcYFEUIsDnAS4=c0x00000000-cc-rp','3511292162159714121',22166),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkc7gsQb1lUK3gBRoiYh7rbKv4BMXEz5BEaAPHxWb2luP5_YnuK2m36S0HJMSa2AewzI9kxVBsLfWDRw4f3Nqy4_kMLqs','My doctor referred me here to get. c-scan. They made a diagnoses and offered care for IV antibiotics onsite so I didn’t have to transfer to a hospital. The staff was smart, kind and caring. I highly recommend if you have an emergency!','2020-01-07 00:18:38.986000','2020-01-07 00:18:38.986000',5,'Cindy Witte','https://lh4.googleusercontent.com/-8Co4AsnYUCs/AAAAAAAAAAI/AAAAAAAAAAA/pyl8ZSRFmYs/c-rp-mo-br100/photo.jpg','14904078213800803294',13641),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkc9NPesbWQLKowPRptacuvR83TSS4CzPgokgsX-TGx_KT1NrFw1uK4h3KqJFoMrnby7NO1kTpRRHQW2yN0HtBYdhE-9k','Everyone made us feel at home very kind and professional thanks to Jocelyn, Alvean and Nancy','2020-02-22 22:21:50.955000','2020-02-22 22:21:50.955000',5,'DAVID SHIELD','https://lh6.googleusercontent.com/-Z7deX0t2ajg/AAAAAAAAAAI/AAAAAAAAAAA/B-vIczQRlNk/c-rp-mo-br100/photo.jpg','16389487648212004696',13780),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkcC39vA7mNwBhLg2wp8Q1moJxIx-4-awA00OGKQM4HGuV-mjeFbsWAK46jI08ZfZlPW0sOyZ18qrXkTdvBkYSish4ipw','First time here and they provided me with excellent service. Okarys in the front was very professional and also attractive. She did everything in a timely manner and the wait wasn’t long at all. Joy and Fanny made sure I was comfortable and continued to check on me to make sure everything was good. Ralph the ER Tech walked me through everything that he was doing which was really helpful. Dr. Wang the physician was very knowledgeable about what was going on with me and gave great tips on how to better my situation. Overall, I would recommend SignatureCare Emergency Center (Mission Bend) to any and everybody. Thank you for your awesome service.','2020-02-19 13:42:36.557000','2020-02-19 13:42:36.557000',5,'Daniel Adebayo','https://lh4.googleusercontent.com/-rUTBc4_s1cs/AAAAAAAAAAI/AAAAAAAAAAA/6uOnWSjxyo8/c-rp-mo-br100/photo.jpg','17394740196501090048',14017),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkcd6ko5ymgcyc88mm5iLtMqpFUM7HICDzhqr4ZcQKTLVi2XL2yNEqu_g_dIaC4vF_4_mXzRL3D0VAE_KIKXmAjLlRutA','Dr. Ybarra, nurse Blake, Rad tech Son Le and registration Delicia were all very accomodating. This was my first trip to the center. I went there as I was having chest pain and didnt want to go to the medical center and be caught up in the craziness. I researched this center and found they provide the same services and can do so without being involved in the medical center. I suggest you try this out if you dont want to wait - I didnt wait at all.','2020-01-31 15:07:33.720000','2020-01-31 15:07:33.720000',5,'Jim Lapsley','https://lh3.googleusercontent.com/-xl9-Z7KWeQI/AAAAAAAAAAI/AAAAAAAAAAA/4HV8xTurtFI/c-rp-mo-br100/photo.jpg','8679688254631342173',14771),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkCDU3UQ1zNO9FgiwaHaxA17qP9p83onGjrbDug4yfOJAw67qJPJgGO3QZHkSnQjQCouzumXa-7pdGn56fV8ktHFGpYkc','My 5 year old daughter busted her chin open and needed stitches around 1am in the morning. They got her in quickly and they were very nice. They have a room just for kids and the staff was very calming and encouraging to her. They gave her teddy bear to keep and to hold during the process. I\'m very impressed with this location and she told me that everyone there was so nice to her. I hope we don\'t have another emergency any time soon but if we do, I\'ll come back to this location.','2018-10-07 16:39:38.585000','2018-10-07 16:39:38.585000',5,'Natalie Dague','https://lh5.googleusercontent.com/-gKgq22CloSs/AAAAAAAAAAI/AAAAAAAAAAA/8TNj9GnpAG8/c-rp-mo-br100/photo.jpg','17898197009688164559',5925),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkcF36ddeRi-bPicWcnK1fMDa4z8FiTDtbXQpjd-jTDMXZW6Nv6M_WJPuxXnUW08Cp5eOnuxXKqnbsdXYhKeKsXvXSc3c','The staff here is very friendly and they were very attentive to us. Nurse Alvean and Ms Tricia (Tech) made my daughter feel comfortable. Dr. Wong explained everything to us and has a gentle bed side manner. My daughter is seven years old and was not too excited about being there, but afterwards she was feeling much better. They have special rooms just for the kids—makes them feel special to see their favorite character on the walls. The environment was just right. Good choice.','2019-03-27 21:16:10.764000','2019-03-27 21:16:10.764000',4,'Nicole Johnson','https://lh5.googleusercontent.com/-IrzTLnIOJS8/AAAAAAAAAAI/AAAAAAAAAAA/5oAjbpeaizg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkCIuqdli69IfiARKi3ZuiErMRCKBhQnczCb0QbiEqxDQDErkIFb4At_TNAXTyAitFakW2cCWIXRWVkCv3MfOTJxhvQdA','Maya the receptionist was very helpful.','2020-01-05 23:41:34.422000','2020-01-05 23:41:34.422000',5,'Alyssa Alonzo','https://lh5.googleusercontent.com/-imJlrEaWzaU/AAAAAAAAAAI/AAAAAAAAAAA/RIB2zvA7lzQ/c-rp-mo-br100/photo.jpg','12541597562633926366',244),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkCjdNuZ8ai7SbSRrBo3Ndphxio-sT1I5flVw-63lI06_d733VJ8t6eAU12O5Oo6l7jO3ALw_QWHWE1FiAx2aw3Bykfxs',NULL,'2020-03-12 01:16:01.668000','2020-03-12 01:16:01.668000',5,'Carol P','https://lh5.googleusercontent.com/-bIsPAnHLNsk/AAAAAAAAAAI/AAAAAAAAAAA/9MXoo-V3zMs/c-rp-mo-br100/photo.jpg','6521947413723274945',21171),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkcK4P1QGcSCWrCMNtE9eU_ir56-Iz9EwJ_cJMShKrdLlBC8EZqI_UqtRNd7HCjFrVBZQ4Xiab_eh86O5TWmJYYo8HyhY','They take their patient care and comfort to the next level. Every single staff member we interacted with was friendly, efficient, and hospitable. I can’t recommend Dr. Grinblatas, Julie, Niki, Bryan, JB, and Jasmine more!','2018-08-27 00:19:20.811000','2018-08-27 00:19:20.811000',5,'Nicole Zinovoy','https://lh3.googleusercontent.com/-5wyfoKzvx_Q/AAAAAAAAAAI/AAAAAAAAAAA/kFuG_N_tqE4/c-rp-mo-br100/photo.jpg','14567670160750071148',1548),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkcN2cyyJ8QzSmCJDKRiw2DcoeDA9UrYGaVTxVq3sPWV3z9Z9CSNm4SBStam6FbNtak9OALzYkHK8fwNCjss7-t_fmDA0',NULL,'2019-07-03 21:27:05.248000','2019-07-03 21:27:05.248000',5,'Pelon Cortez','https://lh4.googleusercontent.com/-fh9xtK_QpeE/AAAAAAAAAAI/AAAAAAAAAAA/CqxcurK2OM8/c-rp-mo-br100/photo.jpg','17898197009688164559',5664),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkctUwYcppfbgBhya0oDlhibD-dtmeFMSkd1xfdgta_OIjjWCsxafKmMk4kVBBjRGPPQgf69khiNRKNEgmzWYEEEZBAaE',NULL,'2019-01-17 20:36:42.090000','2019-01-17 20:36:42.090000',5,'Naomi Haynes','https://lh4.googleusercontent.com/-_OEk44jXzeI/AAAAAAAAAAI/AAAAAAAAAAA/1j7M-0jVXzQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7466),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkCYvMGWZvUzBWQU2HlsQEvLQduGE6lsJ9KzxFtSNIYXBXtW-15oaNvq8gqQr9p6y8O9rImp6mgDxKWcmv9V21xAEt4_o',NULL,'2018-05-29 10:32:10.298000','2018-05-29 10:32:10.298000',5,'Aaron Newsome','https://lh4.googleusercontent.com/-7-yb2EGQeTk/AAAAAAAAAAI/AAAAAAAAAAA/XcaHneL-naA/c-rp-mo-br100/photo.jpg','14904078213800803294',2251),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkD7_6R4zcY3EgXnS4bvDM4ecQ9QuDmzITqbg0xsyqrTLsRKZmdbyx6qEzfSnt_HUhTB3EzlQXMDHeUkpe9JS_iRqhxnI','Very nice clean and helpful and fast I absolutely recommend','2016-11-10 12:55:52.464000','2016-11-10 12:55:52.464000',5,'Shanae x','https://lh5.googleusercontent.com/-cXb5wbonywM/AAAAAAAAAAI/AAAAAAAAAAA/6r3YKa2AGNY/c-rp-mo-br100/photo.jpg','17394740196501090048',5179),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkd7SU40NKTnjVNfViAoP4nWQ5OLN2GTL23-0WhC1lLh29PR8G_QZLBe0R53RuFJ0YMArya6paxUhj6B1dqIPVlIQhkOI','I went in early in the morning because of pain in my foot. I came in after calling ahead and they were super quick to get my paperwork filled and checked in. I had a whole team take care of me for a simple inflammation in my foot. Super awesome place to have in town! Thanks Dr. Plante, JR, Jacob, and Dyveliz/Kim for all your help! Definitely would recommend. They take all forms of major insurance too','2018-10-22 03:32:36.751000','2018-10-22 03:32:36.751000',5,'William Phan','https://lh5.googleusercontent.com/-AFwt1BzdbTU/AAAAAAAAAAI/AAAAAAAAAAA/_HQQh9Zvf8k/c-rp-mo-br100/photo.jpg','16590124370714063921',3694),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkd8XzGbdJtPyERZ_qzC0kHGueBA12eFZjwqyea6C-pqmHiFohbHNtUZxXPkbx_MYweTHsq8eu7vHmavu2lAnxYn0nl4E','Everyone’s soooooo nice especially the nurses and doctors! I felt so comfy Dr. Yusuf and Nurse Leslie, Hamzah! Great Job you guys all my day feel better','2018-08-06 20:26:31.289000','2018-08-06 20:26:31.289000',5,'Shantanna Reddix','https://lh3.googleusercontent.com/-TRCfxTy4M_A/AAAAAAAAAAI/AAAAAAAAAAA/mWd7T-uDJcY/c-rp-mo-br100/photo.jpg','3511292162159714121',7657),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkdja2ClO-vYAJwHPJbvO9X2nvcbDCFh4cyLb7KiqyZte6jBYmfyGfgGaTIxl302ATUeh41rFlVYqkQwsKh03ZdWS0Oyg','I came here and they treated me very well.\n\nDr.Nweze\nAlvean A- Nurse \nTricia B- Radiology\nJocelyn A- registration','2019-10-16 15:41:11.621000','2019-10-16 15:41:11.621000',5,'Darnell Knapper','https://lh4.googleusercontent.com/-OphteTnDa4A/AAAAAAAAAAI/AAAAAAAAAAA/OFrreK20Ajo/c-rp-mo-br100/photo.jpg','16389487648212004696',2818),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkDLLYnMlgxY6_0fK940t64r2pY4-Q0z-3k12rVg1r7EeGhcRGFS9Ncsvyf_JrbsloIVGNMZOa4IcGSOdrhJkGrsYQG9I','Lorena T and Amanda C were very kind and helpful!','2020-08-01 18:11:09.270000','2020-08-01 18:11:09.270000',5,'Emily Atteberry','https://lh3.googleusercontent.com/-82PS3qzPonU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnpUEsigkjgXOvq9ovV2poqEoIZaQ/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21988),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkDPsshow_LiqrcyXHYSBFUTzdf-cXIXLu6PjJtJRtQ6uwG6MFRMnMNKW7sEA6OUAlNznseCwcUD34BFyq3f_K3Ze6WIo','Between Leslie, Dr Yusuf, nurse Hamzah, Melissa and wonderful Kelsey, other than our illness, our experience here was a very good one. I will let everyone I know that needs urgent care without having to leave them an arm and a leg for costs, to come here. Thank you all!','2019-01-05 20:46:11.245000','2019-01-05 20:46:11.245000',5,'JC Avila','https://lh3.googleusercontent.com/-lRt1deu1OyM/AAAAAAAAAAI/AAAAAAAAAAA/Lrc3o4y0S8Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7518),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkdtWJz1mNNIZ_QtLMZG8P_5yTLTT4uhyCZSEjSHUnV2JRuNZKjZWzVqSWXXRNG2JxfPtQ2Nrw5AaXMwfAxk_gO5dXy1Y','Great Place! Awesome customer service and very quick. The facility is super clean as well.','2018-01-25 15:06:52.844000','2018-01-25 15:06:52.844000',5,'Karla','https://lh4.googleusercontent.com/-PhpQrpRyG3M/AAAAAAAAAAI/AAAAAAAAAAA/pQR_W9JrAm0/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9299),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkDu36OEThp9K9oQG5vHyLT5B6abvjYHXb2y6za9XOqmuBx9zvFG6TQDV-QiwvpPJn-I81RXjJ51xR5juw_TM-7yUccls','Staff was friendly and helpful. All precautions were taken for social distancing. Kept covid patients seperate from ER patients. Thank you.\nMaeva and Katoira were extremely kind when i had to come back.','2020-07-13 15:47:30.320000','2020-07-13 15:47:30.320000',5,'Dre Rodriguez','https://lh5.googleusercontent.com/-FastLJCFAdw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckBDhdIR5nQXwT6WuIBoys4hhL0NA/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21579),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkDusQdfd8IdVMnqrCtFeXp22PfMmYJGEl9OKvp1bXXOkbzD4jYBljspiugqy_htdeLoFYqcZ8NO6OcGK7N5shazbRrc8','Great service from the front desk Lorena and Rayven, Dr. Akunyili was very kind and showed great compassion.','2020-07-30 22:38:49.483000','2020-07-30 22:38:49.483000',5,'Megan Munoz','https://lh3.googleusercontent.com/-Ai04xh3CFFs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnvh1-ZsUMifcX4T1D0I_iUjKhFAw/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21996),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkDxleH9fWsrWzk_7K4gP7yywZtL46Vpt54NnzTdG-AEO0KWHpNMf1_E-SINB3PVcMG7sY8r84pEY34QId_w_ediU-50g','Amazing experience. Outstanding staff...My husband was in so much pain and they helped him get through it. They\'re fast and kind all the time!!! Dr DE Waal Excellent, physician. Kelly, Clayton and Delfino.. very professionals..\nI would highly recommend it.. THANK YOU FOR YOUR HELP!','2018-10-13 06:50:31.631000','2018-10-13 06:50:31.631000',5,'MONICA Cader','https://lh3.googleusercontent.com/--qpXouGEf0E/AAAAAAAAAAI/AAAAAAAAAAA/rcN0oUcwarQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4421),('AIe9_BH3gZxYpIxBZcqAOO5HuBVke35Ly4bu66N4VkaMH5KLXiF12jgvn7877koyAZyfpbyd3sYgTcnbrCp5gBaP-sGvk165n5pjXdaKFykDfbIH5cswwdY','The Dr. Was very professional, considerate, attentive, observant ..the staff was amazing, the nurse Melissa was very caring, attentive, amazing. I was in my room, and the nurses, Dr. and even the young lady checking my vitals, were very considerate..constantly checking on me ..these people and place are amazing. I was there awhile and they took care of my throbbing pain , made sure I was comfortable, and had wonderful personalities.I normally go to Memorial Northwest, but I pass this place everyday. I had got hurt at work and needed immediate care , so I decided to give them a try, I was completely satisfied. The next day Nurse Melissa even called to see how I was feeling and if I needed anything ..I Highly recommend the SignatureCare Emergency to everyone this place is the best..Thank you so much for the Amazing Care 💜 I will definitely come here when I have an Emergency again. ','2016-12-07 01:54:44.140000','2016-12-07 01:54:44.140000',5,'angie leija','https://lh3.googleusercontent.com/-B7D5YImoPzM/AAAAAAAAAAI/AAAAAAAAAAA/rI20jwM8kfI/c-rp-mo-br100/photo.jpg','14567670160750071148',1935),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkE9JMfx-oSi_3tDUv8Nbb_sGlO22ivvLtl6Q6W3eHOt5U0ub0NKy4eX0T6bz_Drss3bCiOHo2lKJzXgF0wYvXBPsvkpI',NULL,'2019-01-16 01:52:05.385000','2019-01-16 01:52:05.385000',5,'Aleah Otts','https://lh6.googleusercontent.com/-NhCEQKnI9bs/AAAAAAAAAAI/AAAAAAAAAAA/TOR9k0VEPO0/c-rp-mo-br100/photo.jpg','13486358490203335051',1109),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkeaVyjXgfOb-XF1mhxtoj86BtJGtQid6pVB5hvgjF7RRpy7g8I-7nUrMPa1B9rF8RBwpi6JuIExdNksCJc4likc1D0Ls','My visit went very quickly and staff was honestly, kind and respectful. Made my visit not stressful. Thank you Signature Urgent care staff!!!! ♥️','2020-07-14 21:16:19.804000','2020-07-14 21:16:19.804000',5,'karla Herrera','https://lh3.googleusercontent.com/a-/AOh14GiIFWL9W2PufbQ2E_X2coqMbXfDAhmwWqaEl9LA=c0x00000000-cc-rp','8679688254631342173',22250),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkEg3nMwsVzX1xR2349ri7qYypMgAq7V8XY5dpsDQN8obbirpxn967J2k6j41rhzQ8b4XqgJpCqkY8jL7u040qol17C6c','Thank you for everything! Evelyn was very helpful! ✨','2017-11-27 19:36:58.382000','2017-11-27 19:36:58.382000',5,'Airianna Carrasco','https://lh4.googleusercontent.com/-vgLCTcMnAew/AAAAAAAAAAI/AAAAAAAAAAA/aVHykGxixkc/c-rp-mo-br100/photo.jpg','3511292162159714121',7755),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkeGBqrGVDEzj7NkFpXwX67eoIrohtQcNAKtLC88vk7KFmT5ho6bYHbiiMCkwa_9m1eMVTQGufp6YPf-VKlvlH7DQRWHc','First time going to SignatureCare Emergency center and my experience was great. Anar was really helpful from the time I walked in to the time I walked out. Nurse Sarra and ER tech Christian are both friendly and helpful during my bloodwork and the whole process. Both are very knowledgeable. Radiology tech Sherwin assisted with my chest X-ray and was also knowledgeable. Dr. Tran was great with giving me all the information I needed. She was very thoroughly with the exam and questions. Overall, great place to come if assistance is needed. They are very quick too.','2019-12-19 11:00:57.320000','2019-12-19 11:00:57.320000',5,'Ngan Nguyen','https://lh3.googleusercontent.com/-d8Gt9n7k3So/AAAAAAAAAAI/AAAAAAAAAAA/1nXwA_7vRps/c-rp-mo-br100/photo.jpg','12541597562633926366',334),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkEiLfgtUGwkeLQtBlvdOrDUWSfVQdM7du0k3qfZSYVBL0VOpmm5U_TUnJOrtBXTgUlx1_b4VyfdygNy9ImvaJ8B5IIYQ','Greta team . Fast and on point 😝','2020-03-12 00:26:58.487000','2020-03-12 00:26:58.487000',5,'Yomi Borrego','https://lh4.googleusercontent.com/-jMaEuIOyTYg/AAAAAAAAAAI/AAAAAAAAAAA/zKTjFhOpP_0/c-rp-mo-br100/photo.jpg','8679688254631342173',21214),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkeLYdJGTPeXcwQxagQWZBTVImalEQ1fnG1ges0m4KlJRSZ1utQGsiQWQg_QUhTDgQ98sHkpASw0RY1ju2SxnOqXJ7rn0','Anthony and Natalie were very helpful and supportive during my visit here.','2019-07-28 00:40:06.337000','2019-07-28 00:40:06.337000',5,'Rachel Guilfoyle','https://lh5.googleusercontent.com/-S_4uio9E1Sk/AAAAAAAAAAI/AAAAAAAAAAA/xY88Fo6bgzU/c-rp-mo-br100/photo.jpg','16590124370714063921',3276),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkeygekHRKiP0NT-r_8s4uxCKTxVOSCruGDuU-iHVqSoJxgwow2d8Kw6QLoWdGyg3Op7ByVL8Xq80-dpu36aCj1eRtcZQ','Great staff. Nurses Dustin and Nadia were wonderful :)','2020-07-18 17:35:17.964000','2020-07-18 17:35:17.964000',5,'Melissa A','https://lh5.googleusercontent.com/-GX0bxTdraP0/AAAAAAAAAAI/AAAAAAAAAAA/Xr35UtJXe7E/c-rp-mo-br100/photo.jpg','14748677429039074158',21744),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkF7bcr5-C3jKtCfJmjN0gK2jhI-NltYKJ4AoN7nQJ-aZZjIJ16ZA6mR_gAUjXe9fh8HYU8AoipTrhMxIl1wvZ-rAmix0','Thanks so much to Dr. Cavazos, Nurse Blake, and the receptionist Patty. They were very kind and also very helpful. Definitely recommend!','2019-06-18 13:56:24.581000','2019-06-18 13:56:24.581000',5,'Jaz\'mine Willams','https://lh5.googleusercontent.com/-rp4k7s6gm9k/AAAAAAAAAAI/AAAAAAAAAAA/AcvuJRPMhP8/c-rp-mo-br100/photo.jpg','8679688254631342173',8832),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkFB2au6jadxxWRtVFvz1zfVzohX2b0spqCk4QAwaJZ6x-_ZoDVND6rNbXIt1G7som6li1q9VUuCV7_yT3jQT69koubOU','Very friendly and welcoming staff from the front desk to the doctor and especially nurse Jessica was very attentive with my 11yr old son, she treated him like her own child. Love the smile and treatment. Thank you so much for y’all services.','2019-10-04 03:45:59.896000','2019-10-04 03:45:59.896000',5,'Emma Mendoza','https://lh5.googleusercontent.com/-XssKUTIAP9k/AAAAAAAAAAI/AAAAAAAAAAA/7gX-Qo7514U/c-rp-mo-br100/photo.jpg','6521947413723274945',8127),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkfmenEoXwBsDFIuxpgAYwFuihrbEKEthhTxik3XONxQnjBNFWEb6kOpg-AO0xFTtyVD3V1AjxjteNHbIVunj9Y2cwDas','They are fast, courteous, and always take care of us. Thank you for all you do! Lisa H, Leo Savanna , Delpha Daniel, Carolyn, and Dr. Estevez.','2019-09-09 22:02:30.298000','2019-09-09 22:02:30.298000',5,'Corina Flores','https://lh4.googleusercontent.com/-VEOGxSipYpI/AAAAAAAAAAI/AAAAAAAAAAA/60MVmz8qXno/c-rp-mo-br100/photo.jpg','13486358490203335051',837),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkFnlg7IiuejARHCtefctCMOo-2bR1u3hMKeBIKRod69vB2BRm_FtA_79hCGba4pZPOl2hHBQif3aaEX2EhqKCOhf2YaY',NULL,'2018-11-06 23:40:38.526000','2018-11-06 23:40:38.526000',5,'Nelson Nguyen','https://lh4.googleusercontent.com/-S4cCq57lfgA/AAAAAAAAAAI/AAAAAAAAAAA/VsawnRFWFEQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2199),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkFRBz5BhpMgvQYM1-9yNlZT3fOWDenz2YXiTUIymfH7_VD72VNtDO5Lzu530Haqcl-pg_Yh_vh7pGJoldP_YwWOSeIOc','I was seen at memorial city I love this place they are so so so efficient and friendly','2019-07-28 22:15:27.563000','2019-07-28 22:15:27.563000',5,'Tarisayi Daugherty','https://lh6.googleusercontent.com/-Sg86xWcxm1s/AAAAAAAAAAI/AAAAAAAAAAA/tzTqTsDVdUE/c-rp-mo-br100/photo.jpg','14567670160750071148',1270),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkFSQBAG2NWlNZqWVQxv8jZLl4NBsu-gJhxMQPQGybj12mNJrQAW5I7NScD0e2vFrXIpauALDA9gtQE_eOAgqegfDzvXs','I came into Signature Care as a walk-in patient. The registrar at the front desk, Ms. Delicia was very helpful and completed my paperwork very quickly. I was able to see a doctor in less than 10 mins from walking in the door. Dr Daniels, Tech Son Le, and Nurse Blake were efficient and explained exactly what my illness was from my symptoms. The staff is very friendly, patient, and understanding. I am from out of state and just moved here. I will definitely be visiting if I ever have anything else wrong. Thank you so much everyone at Signature Care for taking care of me at the last minute.','2019-11-05 18:35:00.472000','2019-11-05 18:35:00.472000',5,'Hannah Young','https://lh5.googleusercontent.com/-PFh7da07f40/AAAAAAAAAAI/AAAAAAAAAAA/AYGIMrcCI28/c-rp-mo-br100/photo.jpg','8679688254631342173',8746),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkfU5fw70wOM_jX3i4nk34dGA4u7qMfMhcIyG77SmHrtDmpqjL2GC3CEufqYTuvJ16HOc3lZouof8MSt-DRoGzrP2pwzk','Made me feel comfortable and answered all my questions','2019-03-22 02:52:10.455000','2019-03-22 02:52:10.455000',5,'Herman Cruz','https://lh5.googleusercontent.com/-1R8RLqpWBSs/AAAAAAAAAAI/AAAAAAAAAAA/cJ6RYYsVnkk/c-rp-mo-br100/photo.jpg','12541597562633926366',532),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkfvzh3YNled4-pKzrHrJVVMkZ_3GGVXdAybgegMnKbeVGhMxoiRMPyzdbKIpUD1G8_0pTzC23SqeJ7l2wh10KGHLDETI','I was incredibly ill and the nurse by the name of Jacob Olive greeted me right after I checked in. He gave me the best treatment I\'ve ever experienced in an ER setting. Never have I ever met a nurse this skilled, personable and caring to my needs. The staff here is awesome. Thanks so much, signature care!','2017-04-14 03:33:20.706000','2017-04-14 03:33:20.706000',5,'Natalie Riojas','https://lh5.googleusercontent.com/-fOsBQnXTp9k/AAAAAAAAAAI/AAAAAAAAAAA/straDOgJvEY/c-rp-mo-br100/photo.jpg','16590124370714063921',4010),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkFWsbepSBxFLX5m5K4Hmfuy63xzcirFhkYzA0hrJZm5Cr-b84rqx7ESNB4HZlyRCmlnoIaAVcE2_j8KwSUJtg6wXG7Ho','Dr Grinblatas and staff were very patient and comforting with my daughter. Excellent customer service! Snacks, drinks, and teddy bear were given to us too!','2020-02-06 03:53:36.252000','2020-02-06 03:53:36.252000',5,'Hieu Nguyen','https://lh6.googleusercontent.com/-P1LcEVM2Orw/AAAAAAAAAAI/AAAAAAAAAAA/jR_DCswOmUA/c-rp-mo-br100/photo.jpg','14904078213800803294',13607),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkfyvi9wathDo7BCakl1YKAmz_GRJ6t7ERk_LXP1ZkGLaw-aRNGzNzrF3NtyhVwuFazrJKGeOLkAT2bGz2yG23ilchr3s','Doctor n nurse super sweet.','2017-01-11 14:44:06.014000','2017-01-11 14:44:06.014000',5,'Juanita Raji','https://lh4.googleusercontent.com/-yIfS-LscEVE/AAAAAAAAAAI/AAAAAAAAAAA/6zR0iwkt_W8/c-rp-mo-br100/photo.jpg','17394740196501090048',5135),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkFz4P-ILRnu4vkhX24c-NivFmh_uf2q4-OnVP0JdSDn_cof0Ipeu1BgmvcUiCgOvYUIdFmKIL4pfOlbz_gcGV0CfWBXI','I am impressed of the oustanding service I received here! I took my mother here and she received very much care and friendliness! The place is very clean and organized, front staff were friendly as well, I would definitely come here again if my family or I need to, highly recommend!','2020-01-21 07:02:50.940000','2020-01-21 07:02:50.940000',5,'Jazmin Diaz','https://lh5.googleusercontent.com/-DBoG2vhXbxc/AAAAAAAAAAI/AAAAAAAAAAA/qzQSvTk4uZI/c-rp-mo-br100/photo.jpg','16389487648212004696',10209),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkg-BzEcJ3Vbnin8QY6-GFoDcpM7MoUn5iDzXQ8GjfWVvT-dQ7XDenRUj9AkDmLZT_agZrVYgtCaFT6HsI5Qf2PXMRrgM','Kendra greeted me and was very polite. She also got me in the back really quickly. Dr. Herbert and Nurse Brad were very nice and fully explained my diagnosis.','2019-12-04 16:04:36.448000','2019-12-04 16:04:36.448000',5,'Jeffrey Simon','https://lh6.googleusercontent.com/-PGGfpqS7q5A/AAAAAAAAAAI/AAAAAAAAAAA/ERRHjw1Vc4w/c-rp-mo-br100/photo.jpg','16590124370714063921',3057),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkG-iOOGauiJA2Uebu3IuMst231KXtULH6lq_wqiR9CAjVa_UX_yQEoiuMMXyPJoQRzqIV4WUp5_Xa-qJjuHn0bIiHTzQ',NULL,'2017-12-30 14:51:27.081000','2017-12-30 14:51:27.081000',5,'Amanda Baughman','https://lh4.googleusercontent.com/-qVmgGU8_-zc/AAAAAAAAAAI/AAAAAAAAAAA/8vuqyVtv14Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1701),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkG4t8G8QSXOM3D4qpoehAYpp0l37aBRFkgOJjouOFFdOl_RVMHEFc8AgIQPzJPmRneWhMSSjwgb4Bb5yGPqqTjs4cmTo','Everyone here is very caring and helped my family member with expertise and kindness. I would recommend this SignatureCare location to all of my loved ones. I met with Dr. Vaagenes, and Anthony RN and both were extremely professional and very kind.','2019-07-17 22:39:14.342000','2019-07-17 22:39:14.342000',5,'Erica Menconi','https://lh5.googleusercontent.com/-7fEBkj-X4fE/AAAAAAAAAAI/AAAAAAAAAAA/wje64NGamQ8/c-rp-mo-br100/photo.jpg','16590124370714063921',3289),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkg7_WmbSh-zzAIfgTwUV_weI4v4s2Z2sV5jzhnItxNY_3e4lIfnyGl7h72ujvpQvCUywALzuMwlF62BSwS7RvyI42Ayw','Nurse Catherine/Jessica was so patient and sweet\nThe Tech Scott was just as nice\nWe checked in with Maya who was so sweet and very patient with me being a single mom to two, active boys. Dr. Zheng was attentive and made sure my pain wen away and I was properly cared for','2020-02-09 03:26:24.640000','2020-02-09 03:26:24.640000',5,'Sydney Vincent','https://lh4.googleusercontent.com/-0zH86lw4ljw/AAAAAAAAAAI/AAAAAAAAAAA/FkaeW6sRmz4/c-rp-mo-br100/photo.jpg','12541597562633926366',22468),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgAHih2pEyt8NT-xrPKDFinqh8TOxntGFMUYAiRnvrqRfI-kB633O4DDVph_CRmDSmT4uvdufQxxFPFOd-VPT1LvLC4I','Kendra was great , very helpful','2020-01-18 20:34:53.195000','2020-01-18 20:34:53.195000',5,'Andrea Elizabeth','https://lh5.googleusercontent.com/-mkg1fjX5mDk/AAAAAAAAAAI/AAAAAAAAAAA/KL5b4cair5o/c-rp-mo-br100/photo.jpg','16590124370714063921',10060),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgbOFTSjlDnrPxQnqJIk4PNi3H5_MUqD54rnNERAly5hKiGHbC38093xsH3X2yrUn45I8Vj3SvCS9Q1oL0MwAJhjmI6o','Everyone was very sweet and helpful. Best ER I’ve been too in a while. Thank you guys for being attentive and helping my brother','2019-07-26 07:40:18.455000','2019-07-26 07:40:18.455000',5,'Genesis Ehijos','https://lh5.googleusercontent.com/-8BipJJ8ensQ/AAAAAAAAAAI/AAAAAAAAAAA/nlblCnLvgmY/c-rp-mo-br100/photo.jpg','17394740196501090048',4622),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgd6JFcswdYs0DR5kRBP6wpQ411dFsLkmIJLzqXyV5S76DPPjnEaf-XartRhaHc0W48IaOQgO9v4wM6Q2vQCMYO4floQ','Last night was our first time to go to Signature Care and we were seen immediately. They took great care of my son. Nurse Kara and Dr Yost were awesome and very professional. Grateful that they take my insurance and we’re open when we needed them.','2020-05-23 12:58:27.224000','2020-05-23 12:58:27.224000',5,'Patricia Cunningham','https://lh3.googleusercontent.com/a-/AOh14GiD6AuUKmLX_m5OxZ5Ygpf-tvA6-pFqzzW1qPQC=c0x00000000-cc-rp','3272657195432704501',22131),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkGFOqhnyXb7o353g4u0hkFpoUSWe0tQizsDebpXWGPnZcbzuME4Y9lQ8libczDWBgS9mdr5itRuaG-0X_eUibGqsoOV4','I had the best experience there from the moment I walked in love the hospitality thanks to Dr.Henderson,Alvean,Patricia and Zeik','2020-02-08 23:00:36.920000','2020-02-08 23:00:36.920000',5,'Latonya Ceazer','https://lh3.googleusercontent.com/-y8VxUu3YTQs/AAAAAAAAAAI/AAAAAAAAAAA/V6810bIn7XA/c-rp-mo-br100/photo.jpg','16389487648212004696',22602),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgGAecGZCSUOAkV3BTEwAn6PqGF10IRu_wf5waRzp1w9TU75je4nofMJQZmjHQeHlOl9boOnojidWwyMZy_yAceCcu80',NULL,'2019-08-10 01:57:47.882000','2019-08-10 01:57:47.882000',5,'Crystal Miller','https://lh6.googleusercontent.com/-AzBVEdSY0IM/AAAAAAAAAAI/AAAAAAAAAAA/b7ry1PQvWHY/c-rp-mo-br100/photo.jpg','16590124370714063921',3261),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgL11LgA3kMmvsNYHP6TVcQE-HsMsYUw4hoOx3AXRix6rrnN58TPYmpMKbFP1TAd2oZ-KvYCV3oxZammqdIdLPbKpCtE','Dalia.R and Alyssa.P was awesome very friendly','2020-08-13 23:05:23.427000','2020-08-13 23:05:23.427000',5,'LovedLockedDown','https://lh3.googleusercontent.com/a-/AOh14GgxmV64TUlryjT8oyv79gwMfa2AJJ4fsit-AhIXTg=c0x00000000-cc-rp','8918455867446117794',23083),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgNYhKLvza69tz3lcYLv6glqp0NYGevbZN6Sn9xApNEmlGB4J-EmmIvzDYeZMOXu-KGk2Ql11pcPOoMOclkd3BcSkCdI','I went to ER just now, after an emergency, and the staff there, Wendy D., Nurse Katherine F, and MD Wang, are great! I’m so glad they and the team there helped me out and Wendy even joked around to keep me calm, which is very relieving.','2020-08-24 05:34:47.632000','2020-08-24 05:34:47.632000',5,'Mairaj Haider','https://lh3.googleusercontent.com/a-/AOh14GhlJOZ_c9-VIZTHzI0tOGQhiIy5R5hMYtnFqqxEyg=c0x00000000-cc-rp','17394740196501090048',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgTaT3kvs-_p6WMsm2wWj6AFssKhLj-cxaewVb2zltsS6zhOIKE3kKaV5a0k_mDalaalifyc33LuimtL8LaE6kOuYUOM','Great staff members and ridiculously affordable. They were very concerned with my well being and I couldn\'t have been more appreciative of how much of a help they were. I\'ve been to many ER\'s and been stabbed with many IV\'s and this place was the fastest and most effective place I\'ve been. Thank you so much to Adam and Mike and all other members who work here! I will always recommend you guys and will be back if I ever have any more health problems. 💕','2018-03-17 17:09:22.679000','2018-03-17 17:09:22.679000',5,'Kate Holderle','https://lh3.googleusercontent.com/-zmLQNiBwpbo/AAAAAAAAAAI/AAAAAAAAAAA/JHJPp_s00mg/c-rp-mo-br100/photo.jpg','16891069708558046635',4495),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgWgF3d_hGyUJYUNp2Hzncg5qvSdWJ_ORDhoL-4r1OlWYl-N4qc5SpFCgkx1JXDYYV8MePn5zZ0ziGULLtSUux6ItSrE','Brought my sister here. Excellent care and staff awesome! When you walk in the door Patricia at Registration to Nurse Erika, Travis xray tech and Jordan ER tech. Dr. O\'Malley genuinely kind and patience. Bedside manner 10 plus stars.','2019-12-27 22:31:32.799000','2019-12-27 22:31:32.799000',5,'LaDarrell Hopkins','https://lh6.googleusercontent.com/-LES1PJDau30/AAAAAAAAAAI/AAAAAAAAAAA/dW5CrBIJTUE/c-rp-mo-br100/photo.jpg','16389487648212004696',2505),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkgwJYIBBAwItzEqVDveHQvZVEqCZU3Q8ygsgMaxGmBrHec965jbtzpodH7vNOCv2ZmnzD6rlHIKV2KiOpuihMh8QHOX0','Wonderful. Good fools. Kat was wonderful','2019-05-21 03:09:29.080000','2019-05-21 03:09:29.080000',5,'The Butcher Shop','https://lh3.googleusercontent.com/-Cg3Q9b9B2ig/AAAAAAAAAAI/AAAAAAAAAAA/4lbOmETNB2E/c-rp-mo-br100/photo.jpg','2694018788013845459',6152),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkH-n3XN2nhivEzpxIyllY47SlOy4OggP63WZ79pjZPACBhbbAJLWN7bjHXcowIQOp3NxoG-7IHLVNOFZPNrYS9oWF288',NULL,'2020-02-26 23:24:37.668000','2020-02-26 23:24:37.668000',5,'Maggie McGurran','https://lh3.googleusercontent.com/-deP8AR0bd5s/AAAAAAAAAAI/AAAAAAAAAAA/5LTs48S0CQU/c-rp-mo-br100/photo.jpg','16590124370714063921',13827),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkH1574axkLEyQHi7WbCLdcu04gFpqtCe2le7qU5ngmp4kJjVzKUhC7DjMZbuvg1GuSMjOLedgwhNUDnK7TAgjD3nbSlM','Very fast and effecticnt . The staff included Hendrickson, Jennifer, Laura , Angel, and Tanisha were all very nice','2020-02-19 02:35:30.653000','2020-02-19 02:35:30.653000',5,'Aidyn D\'Agati','https://lh6.googleusercontent.com/-A5_qpHRW50s/AAAAAAAAAAI/AAAAAAAAAAA/al7bv-_n-Us/c-rp-mo-br100/photo.jpg','17898197009688164559',14160),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkh1wQltf5MPw2-HNY0uTlw9hqpnNCgWWxKbRZhbC1cxntp6Tb02IFuHsAA0odDaiBmEFAlXNaXMPj_LvDeMV0zudCHJI','These people were great!! \nKimberly, Brad, and Morgan! Very nice office.','2017-03-07 23:46:28.502000','2017-03-07 23:46:28.502000',5,'Katie Lofton','https://lh6.googleusercontent.com/-nkFV76r0ieQ/AAAAAAAAAAI/AAAAAAAAAAA/-My4XoZ6Cek/c-rp-mo-br100/photo.jpg','16590124370714063921',4039),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkHbsG3OJNNUxwatcnEa-CKJrlyD7JVA9hxHz5gNhpMQEWjGnZb9L0iB66J_uN-5LKJiJ26p-FmtH8gnnjWNy6evZWNg4',NULL,'2019-05-01 17:02:38.669000','2019-05-01 17:02:38.669000',5,'Giovanni Puccini','https://lh4.googleusercontent.com/-OMZkpDNmsbA/AAAAAAAAAAI/AAAAAAAAAAA/Vc5C07KSyM4/c-rp-mo-br100/photo.jpg','8679688254631342173',8846),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkhdV5RPMog0PesH5S3fMSc0Jkx0jkHtOhQNqOkBZgbKuQhIsuQc5XBZ0kw8YYzVJ-PdAkAyNKCikOE_BEo0QuDNDFodY','They staff was very professional and friendly! Took care of my issue right away. Will use again if needed. Thank you to Dr. Nguyen, Robert, Tricia and Patricia!','2019-08-30 16:25:09.556000','2019-08-30 16:25:09.556000',5,'Bob Gobbell','https://lh4.googleusercontent.com/-Qg5AkTPYVuo/AAAAAAAAAAI/AAAAAAAAAAA/gpARTr4LXFc/c-rp-mo-br100/photo.jpg','16389487648212004696',2962),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkhHESHY3_jhE_xpNcIyB6dIDkMAwQdKX5iuM9Lcvbpm50JGvK1B-CKxB2NWL4rOexM-ukoQbzRN_15DF-2Zdg9vfHpGk','The Hospitality at this ER location was outstanding. The whole team from the Registration to the Doctor. Our situation was taken cared for in a timely manner, from start to finish. And even giving us snacks and drinks as we were walked out. Definitely recommend coming to this ER if you are close to the area. Thank you again for the whole team that took care of us —\n\nDr. Henderson MD\nNurse, Sarah G.\nRad Tech, Fatima\nER Tech, Elaine \nAnd Registration, Tanishia W.\n\nAgain thank you to the whole team for taking care of us you guys did a great job.\n(Oops wrong location)','2019-11-22 04:14:22.233000','2019-11-22 04:14:22.233000',5,'Dankynugg 98','https://lh5.googleusercontent.com/-Jxu3a4-GgrA/AAAAAAAAAAI/AAAAAAAAAAA/sAuKd5mNPOg/c-rp-mo-br100/photo.jpg','14904078213800803294',13661),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkHmN2vty9s7RWQ5aKK6kNKqNdpcgR41T59T72yhNdGv-BZFTJfJ3WF2tbNo6Hu1djL7ObrHGZ9vj7YyOKIRSgsw-Ur3k','Great customer service! Very friendly and attentive to my needs and went above and beyond to take care of me. I recommend them to anyone who is in need and is from out of town like myself. Thanks Stephanie, Hector, Hollie, Natalia and Dr. Ybarra!','2020-08-24 02:40:26.238000','2020-08-24 02:40:26.238000',5,'Aimee Branch','https://lh3.googleusercontent.com/a-/AOh14GhUjePteSBWOdYdKHZeTsOmhy2SuuVY417htngDHw=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkHoY3ZQ0TRKvT2C6m_GqiqJZVWv4KUh5evZrYhHDlhIguH3UBjiUsxVHr8Io3kSV6K2AJokmPKEI3ng8RN8GM4-HY2w0','When you\'re not feeling too well it makes it much easier when you receive great service.','2017-05-11 13:03:08.515000','2017-05-11 13:03:08.515000',5,'Ashley McCoy','https://lh5.googleusercontent.com/-Ew2W25HCdC0/AAAAAAAAAAI/AAAAAAAAAAA/xZJQVI3QCLg/c-rp-mo-br100/photo.jpg','14904078213800803294',2360),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkhzxbJCuXVO-NtAzzipqdTrtQG0Zp4lXWh7xMf9_kGTCL_JOPOo3u0RZsdL5_7RgVoWUARGaYplUr-pmAMZqL-72lI9s','Was here for medical concerns. Very professional and seemed to care about their patients. Someone was with me every step of the way. Thanks to Alexis, Kristen, and Kathleen! Would recommend if you’re looking for somewhere friendly and affordable.','2017-10-16 05:33:49.526000','2017-10-16 05:33:49.526000',5,'Quint Bayne','https://lh5.googleusercontent.com/-8h2mY1ssGtM/AAAAAAAAAAI/AAAAAAAAAAA/DNtpQPwxrhs/c-rp-mo-br100/photo.jpg','16590124370714063921',3920),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkhzxRa04SFtT8_oclRygRIxvEdLA3HJNAN-OcbXcvvDUD_aOuJGhr2quWsgEGjXLLgZrxcvLBNigMz4D-K7FIp-qE0jE','Signature Care is an awesome facility, they treat their patients with nothing but care ,also get you out in a timely manner definitely will get my service again.','2019-06-17 19:12:49.063000','2019-06-17 19:12:49.063000',5,'Alexus Boston','https://lh5.googleusercontent.com/-nnbOqfD6XNQ/AAAAAAAAAAI/AAAAAAAAAAA/diJjEA9Jn4c/c-rp-mo-br100/photo.jpg','2694018788013845459',6129),('AIe9_BH3gZxYpIxBZcqAOO5HuBVki2ZUnWau2sgknnCEwK4TPQ7vLltKMh5xiZBODdwJA7llry_1aL3AuTr2Y7Sx08N393CjOul0gQw6lGQVcdvhrefnums','Best er I’ve ever been to !!','2020-01-08 07:27:26.574000','2020-01-08 07:27:26.574000',5,'Bianca Ariza','https://lh4.googleusercontent.com/-vMwEuMkoJIk/AAAAAAAAAAI/AAAAAAAAAAA/90x204gFT-g/c-rp-mo-br100/photo.jpg','17898197009688164559',5610),('AIe9_BH3gZxYpIxBZcqAOO5HuBVki7JTtaiKVG6Q9wU9Q2AN7MCbqGW12n-X-2KwmWuKAt-LiMCkkjNYp7ewCgK7hx5NtrTv6KZxrD9Qi1kKijBFVm9hJyo','I truly appreciated my visit here. The staff were nice and helpful! Dr. Faig helped me understand why I was sick! Amy she took me straight back to the room and was very sweet and helped me within a timely manner. Irving helped me as well! They all got me in and out! Thanks again SignatureCare!','2019-09-13 01:19:15.749000','2019-09-13 01:19:15.749000',5,'Courtney Green','https://lh4.googleusercontent.com/-IK-Y5PsTDn0/AAAAAAAAAAI/AAAAAAAAAAA/8ZZ_cimA9_c/c-rp-mo-br100/photo.jpg','12541597562633926366',429),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkibHSry2s2pCptb0kT1y4AzmgtlI_wyViH3_YZhPw2Kl_YbByjN7RYsG14Mjyg0mK1sZEdCAGVVDLWuTGNhTKG1ukx1I','Terrible services','2018-12-14 16:38:25.303000','2018-12-14 16:38:25.303000',1,'Joly Aponte','https://lh5.googleusercontent.com/-FPb2IeLm9xM/AAAAAAAAAAI/AAAAAAAAAAA/499wReUn5E8/c-rp-mo-br100/photo.jpg','17394740196501090048',4753),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkiELzQrbT2GKEFl6OkxPf0DMP38uxlyfv57f9qpEtxwVc8dUO81jmj_WiNc3m1fduJcKDaOeUhDyHudiqKJUjBLsfnF4','This ER facility is very clean! I was in some pain when I got there, but I could still recognize how nice the receptionist was, how quickly I was able to get a room AND how clean the facility was. Gladly I had Dr. Daniels who was efficient and very kind. Great close location!','2018-10-12 00:23:05.436000','2018-10-12 00:23:05.436000',5,'Christian DeLeon','https://lh4.googleusercontent.com/-DR-9lFmxk4Y/AAAAAAAAAAI/AAAAAAAAAAA/M_nZ60ZdTrE/c-rp-mo-br100/photo.jpg','14567670160750071148',1473),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkihGNTXTKPvVjfPO-J0EypqvdR7QVhyEBdL3cwXBHfu5JL7noszNrqhGuyO7QNEHJ9Lwj6crsqhL8p86KNsJxavNcueM','Everyone was really nice all the nurses were super helpful and so was the doctor! Will definitely be coming back if we need to. Also I love how clean it is.','2019-10-29 02:22:34.353000','2019-10-29 02:22:34.353000',5,'Kimberly En','https://lh5.googleusercontent.com/-n4P_DJFQKX8/AAAAAAAAAAI/AAAAAAAAAAA/3nqDWfwyYN0/c-rp-mo-ba5-br100/photo.jpg','2694018788013845459',6027),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkiHV5WHvObGnj7CgRIexz1EVAuTAdEV4fYQjko8m6moYGQhgFDN9Bi1uSpbSpX-iTwLI7KPL2NamRrDN4FlFHV6YVkfw','Brought my girlfriend here because she was having abdominal pain for two day! She doesn\'t have an updated insurance policy but she was still able to be seen and not immediately turned away for emergency help ! I\'m thankful to nurses Kristina and Ray who came in to help her and are being so professional. I love the environment. And doctor Thomas is great also ! will definitely recommend to others for a visit.','2020-01-26 23:32:10.837000','2020-01-26 23:32:10.837000',5,'Dove Wright','https://lh6.googleusercontent.com/-eT7KAKLslrg/AAAAAAAAAAI/AAAAAAAAAAA/BiT5vNp8Ekg/c-rp-mo-br100/photo.jpg','12541597562633926366',10086),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkim8wwR6uktvQNXrWaA6yqwMqhxsyLsPFWWNaVKBGwoCDQ3yz1K7MOp2ZTbLLJHgd621Si-b859nXrUQm-i6ztEF3lvg','This is the place to go when you are not feeling well. They will take very good care of you and EVERYONE is so nice and caring! I’ll pass the other ones for this one......although I’ve only been to one other one. Thank you for the great care Angela, Sindy, Jesse, and Dr Lindsey. There are others that I forgot names but, I won’t forget your faces, again thanks!!!! PJ','2020-02-07 01:18:19.907000','2020-02-07 01:18:19.907000',5,'PJ Norseweather','https://lh3.googleusercontent.com/-3qTzbgRFSlM/AAAAAAAAAAI/AAAAAAAAAAA/9V4ACOhJ5ZA/c-rp-mo-br100/photo.jpg','17394740196501090048',14030),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkIMFNEuT_BIKVPM6X1Umgp-yBcd4sV5HFcIuJQa3vMkxBObife-P6rjpTIHZKFCoBAP7F5pu42Oy0yN5Kf8nCINe3Uaw','I had a severe case of shingles and my primary doctor was not available so I went to the Neighbors Bellaire Emergency Center on Rice. I found the staff friendly and efficient. Dr. Burger was attentive, engaging and easy to communicate with. My situation was quickly addressed and a plan of action was implemented immediately. I left the facility knowing I had gone to the right place and would recommend it to anyone who finds themselves in need of emergency care. ','2015-01-26 12:57:36.957000','2015-01-26 12:57:36.957000',5,'Sally Ben-Moyal','https://lh4.googleusercontent.com/-ww290HMTC6Q/AAAAAAAAAAI/AAAAAAAAAAA/ZFvT4XFyIr0/c-rp-mo-br100/photo.jpg','8679688254631342173',8936),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkiqSU9mK3NtrPs9NWMb9qxQjGmRg_dQZROQO2qD02f6ER_WR7PUOWEtnPf8jIzHAxtLs9I2ALKpwO_iylZlAgdlwZxjc','Dr. Souman was very understanding. Chris was very helpful! And Amy topped it off with the great customer service.','2019-05-27 23:49:16.733000','2019-05-27 23:49:16.733000',5,'Joshua Johnson','https://lh5.googleusercontent.com/-kWcTpXOc5B8/AAAAAAAAAAI/AAAAAAAAAAA/YW8_A4ESHEk/c-rp-mo-br100/photo.jpg','3511292162159714121',7316),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkIWKFVuEIYydCjU1Tnul-0Ohh6VKvRUU5M2ae0YOQE-z9xDvnCaRMQ2H5CIOPQZaHxCENgmKV7nX9zgdVKaRkjTcrf0Y','Front desk staff were super welcoming and friendly! Sindy and Rashad were very kind and helpful at the front when coming to visit a family member. When checking in on my family member, Dr. Wang came into the room to check in and make sure my relative was well and comfortable meanwhile waiting for some test results. Great and friendly service!','2020-02-07 03:45:16.377000','2020-02-07 03:45:16.377000',5,'Y Mart','https://lh6.googleusercontent.com/-DkxvdMLYMD8/AAAAAAAAAAI/AAAAAAAAAAA/OB9Sb6vMcGg/c-rp-mo-br100/photo.jpg','17394740196501090048',14028),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkIz6iyIbiEh0YQf3560Ws0Wp1moJFhXhWgtIe8Mfxqyq-rTtTc9vFCd20audHrKsjPsUkwIbpYZ3s1i3cAbFh73wUHvc','I was greeted by a security in the front door and then proceeded to be greeted by the front desk and kindly told me she would be right with me. I had an appointment with them, so filled out some papers and waited to be called. Front desk came out and told us our wait would be a little longer because there was 2 emergencies ahead of us. I appreciated her communication to us. The Place is very neat and plenty of hand sanitizer around the place.','2020-07-09 17:24:53.511000','2020-07-09 17:24:53.511000',5,'arlene franco','https://lh3.googleusercontent.com/-t2Uv2u4HKmA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmNRrznvb_7QhfNsioR5-9FQikH_A/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22173),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkIZfFzkXI6FXE1vWSCYihnhwMNHxmJW_j5BdyuPm9rwuQ9yP883NYWy8D7gBGLZxgsiNUsQE11DuJzzX8-jTkNxkh1iQ','THIS PLACE WAS GREAT FRIENDLY STAFF EVERYONE HERE IS GREAT!!!!','2019-07-31 22:05:09.206000','2019-07-31 22:05:09.206000',5,'Juan Sotelo','https://lh4.googleusercontent.com/-7zS8y-XYxg4/AAAAAAAAAAI/AAAAAAAAAAA/8l61Nmebxro/c-rp-mo-br100/photo.jpg','17898197009688164559',5611),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkJ8gaueMEifPS4GyoZDlQGIcxzYUW3AvjILdl73EgkZAvSyq31vZ1QBT624lBfRr6kyTlEdCjZNGhQsVkhiRYwCfJdTg','I recently visited for a broken nose, and this was the most positive urgent care experience I have had. The staff was very kind and attentive, and everything was done in a timely manner. I would recommend this location to anyone in the area who needs an urgent care facility.','2019-04-30 03:15:15.669000','2019-04-30 03:15:15.669000',5,'Lindsey Addams','https://lh4.googleusercontent.com/-sTEF0GqXawE/AAAAAAAAAAI/AAAAAAAAAAA/Zww8KNzWW5c/c-rp-mo-br100/photo.jpg','14904078213800803294',2143),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkjaY5SAiUb_u9nh7P9UtKdL7_K0aimLM_u7z7WnRGwn1AQ0I1zahwiYwbk8I4ubLDQ0nqDfAwqaELxy_I6P4mERHJlRg','Thank you Keaire for everything! You\'re the best!!!! 😊✨🎄','2017-12-04 00:37:44.811000','2017-12-04 00:37:44.811000',5,'Airianna Carrasco','https://lh4.googleusercontent.com/-vgLCTcMnAew/AAAAAAAAAAI/AAAAAAAAAAA/aVHykGxixkc/c-rp-mo-br100/photo.jpg','14567670160750071148',1721),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkjhrvodm82_oVO1Y1_vtbxPEyr2Zm5ebl8LV2vstCE9sGSOy1F6kFpeZsCrEctBGD60k_PJfvgUwvmMxDQhjSyF6HCmU',NULL,'2020-07-23 18:47:47.488000','2020-07-23 18:47:47.488000',4,'Mark Gonzales','https://lh3.googleusercontent.com/-TqKswezWXoY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnXQpa0nKt1B513pcDFM4h6gG-rhg/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21847),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkJPtSX_h1P0CvSqi6kL-8laocAvj_u2HQTZSbF4juC1cxEJXwFxy9R4ergLgKat7QOLQCrfvMoWdw8HgL5_BcjPGI-AU','Took great care of me! Highly recommend coming here! Taylor and Kelly are super helpful and kind! Chris is hilarious and made the experience as enjoyable as it can be!','2017-04-20 23:40:14.763000','2017-04-20 23:40:14.763000',5,'Ryann Hardwick','https://lh4.googleusercontent.com/-Tk9sSU9FpGk/AAAAAAAAAAI/AAAAAAAAAAA/4Mggan1Fjs8/c-rp-mo-br100/photo.jpg','16590124370714063921',4005),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkjrWRwjphn1RBctx8j71PLaV2d1Ncr-Nj2ccjJeQF_81z7H8mRzs7SI1V3H17FNJAdSs9VuFhmFL06ajSmcJbWUXM9VA',NULL,'2019-12-27 01:10:36.282000','2019-12-27 01:10:36.282000',5,'Michael Gusman','https://lh5.googleusercontent.com/-JOkYX0r0bto/AAAAAAAAAAI/AAAAAAAAAAA/QRxUUbCCGOo/c-rp-mo-br100/photo.jpg','17898197009688164559',5324),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkJuY6XmUY9abEQKsQHjdP1QBtFfFmB8ISGOv0azfhEhFep9l5Sl2UCTmzZ5fhk5xF1u4rwdOyAyFbDoU-mef55_tBp68','Wang, susan, geovanny and tanishia are the best ever, they all did their jobs right and i couldnt ask for a better staff!!!','2020-01-22 05:36:08.609000','2020-01-22 05:36:08.609000',5,'Jorge Munoz','https://lh6.googleusercontent.com/-gj1Magr9txU/AAAAAAAAAAI/AAAAAAAAAAA/2pwgxYfc_FM/c-rp-mo-br100/photo.jpg','17898197009688164559',10252),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkjVQzNQnZou2n7mi-cYcbLUSMoWrihioz7xr5NszKJMMrX0ZLZG3YNHV6Ps981TY9cH7eZU7puz2oEMtdGnVNxlu5vyU','My God where do i began!? Literally from the second i opened the door i was greeted by Mercy! She was warm and inviting, but most importantly she was caring! She made me feel welcomed soon as i stepped foot in this emergency room! The check in was quick and easy! I was in pain and she still concerned about me! That\'s excellent customer service and care! Then i was called back to the back by my nurse Kristina! She too was also welcoming and warm! And most importantly she showed great concern about me, and was very attentive to me and what i was saying and she was absolutely amazing! Then my tech came in his name was John he was just great! Introducing himself as he came in took my vitals and was verbal about everything he was doing which is great! But let me tell you why i fell in love with John, he asked me if i wanted a warm blanket‼ That literally made me melt! Lol only because i didn\'t have to ask for it he offered it before I could even think about to ask! He was on it! Last my certainly not least Dr. Faig!! He was ABSOLUTELY AMAZING! This doctor was grate! He came in the room immediately Caring for my needs attentive! And most importantly concerned about me and my health! I\'ve never been here before but i promise you it won\'t be my last! I promise you if you come here you will not be disappointed! I have found my new favorite emergency room center! This staff is absolutely amazing! And I already love them','2019-07-30 15:11:01.637000','2019-07-30 15:11:01.637000',5,'sharees turner','https://lh4.googleusercontent.com/-mu_Ifs7aN_Q/AAAAAAAAAAI/AAAAAAAAAAA/97gP0bnSqVc/c-rp-mo-br100/photo.jpg','12541597562633926366',476),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkJw6CwbjLRsaDWqZ2SaevM9ypmZagUDrEbScm_D2sgWmwBzYm7Z7XC6gbirb1ta3Y61QcJPdRsBFeHP70wevPEkIlUqQ','The Employees at 24 ercare are the most help full People i bin with in a long time the made me feel good and well taking care off. Dr.Daniels, Nurse Irving ,Radiology Tech Sherwin ,Er Tech:Shaylene also Registration: Ana I will go back if i need t00','2019-10-31 04:12:26.552000','2019-10-31 04:12:26.552000',5,'Connie Allen','https://lh5.googleusercontent.com/-RIYmGGivAFw/AAAAAAAAAAI/AAAAAAAAAAA/e0UcPcQqx1g/c-rp-mo-br100/photo.jpg','12541597562633926366',390),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkJx-VoyBC0BolbGNgz66AQbxjUc_agG6_uHWmpfr-GTiiQrneloQzwUvOFeDWHWeLoy9KKPrLV-BfhZhXQNQpcZD-_MY','Nurses and techs are friendly and Amy worked with me nice with my insurance because I didn’t know I would have to pay due to student insurance. They work with your needs!','2019-03-09 00:45:17.590000','2019-03-09 00:45:17.590000',5,'Cordelia Nwaogu','https://lh6.googleusercontent.com/-sCoPxFJOD1Q/AAAAAAAAAAI/AAAAAAAAAAA/K2v8Et4AUzY/c-rp-mo-br100/photo.jpg','8918455867446117794',9167),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkjZmTYf6IPGXs5x97x6l2G80kLeT7ch36VHb0KEuTEU8qSsk8NiPxz6QolaE2fW0L4weE2R5HOIA5A8y5crAmHdmzsa8',NULL,'2019-06-07 18:28:23.964000','2019-06-07 18:28:23.964000',5,'chloe chacon','https://lh6.googleusercontent.com/-lD44z0bwQHI/AAAAAAAAAAI/AAAAAAAAAAA/jiVoPobpdE0/c-rp-mo-br100/photo.jpg','13486358490203335051',984),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkK248ZR2ULUmt8FdnsVrgYVRczF4XwwzzK9aE_dBbBhlAoJnARBrtR9g171zUUysAervBL2O3l1V04cS0k0puDwKC3ec','The people here are awesome! I went in there for Arm injury I sustained at my work. I read reviews about this place before choosing my ER and I never regretted I choose here. I went there with my 3yrs old son. The Nurses are nice, especially Mark Kolodny, he has a dynamic way of making his patience feel comfortable. Mark & other Nurse I guess Yisroel make my Son comfortable. Dr Castaneda Carlos was wonderful and professional too. Also the other Nurse, Yisroel was cool and nice.\nTheir Radiology tech, Castille,Ryan were calm and very Nice. I will recommend to others.','2018-04-27 13:21:24.736000','2018-04-27 13:21:24.736000',5,'OMOTAYO KAREEM TEJU','https://lh5.googleusercontent.com/-hJ5WxnsP9IQ/AAAAAAAAAAI/AAAAAAAAAAA/lCgCicvqLxA/c-rp-mo-br100/photo.jpg','17394740196501090048',4857),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkKB5e0G5a15lSySn9m9mRuB3L46KD9tTo30MOBgbx4fTtMk_IcfMfKF_6yvca_2eeXl4S5bYHcjW0mXOkn1MgYCF3v4c','Thank you for saving my husband life!!!','2019-12-19 20:34:36.558000','2019-12-19 20:34:36.558000',5,'Melissa Roe','https://lh5.googleusercontent.com/-9JNO_d6HEyA/AAAAAAAAAAI/AAAAAAAAAAA/nU_DNfo5OjI/c-rp-mo-br100/photo.jpg','3511292162159714121',14483),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkKbWGlRExzd6fgWWaOa7V51zKrCJ4WK3tcQChxn500OccGt4K-25splde-1JyogwA434weOw_F15KjxlDkJMxCxx_hI0','Lorena T, Amanda C, Jeri D, Tori W, Lindsey & Rachel, and Vakey were all so nice to me! Great service!','2020-08-16 20:38:20.937000','2020-08-16 20:38:20.937000',5,'Taylor Anne Jordan','https://lh4.googleusercontent.com/-HXisULdxaGE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmguwX5ADSt3mAOrjUaq5B3I3RV6A/c0x00000000-cc-rp/photo.jpg','16590124370714063921',23048),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkkCmEWv0MIzEYtPNyfA84EEqGZwYi3VvdCZYGxQmO9dfkaD_FhqaJu-Akr3Mw5nbygnDgqSJVW3xbKdmbsjJRcq9FLyM','Staff Is so nice. Dr. Smith and Dr. Grinblates are Caring and professional. Shout out to Kelly, Aaron, Ryan, and Cynthia. You guys made me feel comfortable and relaxed to be there.','2018-09-05 21:47:22.323000','2018-09-05 21:47:22.323000',5,'Sanaee Parker','https://lh6.googleusercontent.com/-Gn98UmZ6WB0/AAAAAAAAAAI/AAAAAAAAAAA/NZMLUj3qeBM/c-rp-mo-br100/photo.jpg','14904078213800803294',2218),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkKkuWsZQajMAGfAlPLrfZQWb-XdXxAflbS79hgfoSjDRsA-Ef3tJc6ta5GXaplooV8uM0HZwB-ueqD3BF4bBd5Xf_dr8','I love this place staff is great loved it best ever','2019-05-22 04:56:17.938000','2019-05-22 04:56:17.938000',5,'Nicole Smith','https://lh3.googleusercontent.com/-SgI7yWoCfQ0/AAAAAAAAAAI/AAAAAAAAAAA/noYyEyH35Lg/c-rp-mo-br100/photo.jpg','17898197009688164559',5728),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkKLqbVYh2RKeM84CKxzvEZzWHBo_tR9EDJm30TtN4InbqdtWo5o6bRYdCA3W6WXWfocwuWrDztbtmuPN8XBS3K1zxyXg','This place is fantastic, great customer service, friendly staff and knowledgeable staff. I highly recommend Signature Care to my family and friends.','2019-12-14 06:38:43.225000','2019-12-14 06:38:43.225000',5,'Marvalyn Isaacs','https://lh6.googleusercontent.com/-IrCw1A5ih-M/AAAAAAAAAAI/AAAAAAAAAAA/97PRvG7O5Z0/c-rp-mo-br100/photo.jpg','8918455867446117794',9031),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkKOLFJYogKRi8wqQT90FrOcRcStI-uYdm4GHcgOBwSO53l4vROnyM4Q-5XmePGef0yORK36hdhS9RMfRDsUJ6cxBkEhA','Fast service everyone who worked here was so nice and helpful. We felt very welcomed. The doctor explained everything in depth. If you have emergency needs I would definitely recommend this place.','2018-07-23 07:01:54.932000','2018-07-23 07:01:54.932000',5,'Diamond Rose','https://lh6.googleusercontent.com/-LYTIPCy8Md0/AAAAAAAAAAI/AAAAAAAAAAA/C8rPQPF3ro4/c-rp-mo-br100/photo.jpg','3511292162159714121',7685),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkkoQSxyj7YfMuSH1IQYeNzzkGlWEK8TmxurkXZOWS0JSQAspiN_jWLvcY-pkNRvjMvd6bT-aFBgCkfzGP2gKC__Btmi0','Jocelyn the reception was an excellent representation of what I was to expect from the staff. Meredith was professional, concise & informative with regards to her explanation future care. \nDr. Appiah was clear& easy to understand in his explanation of my xrays. Marcus the radio tech was cordial, funny, & also informative. Overall great experience. I wouldnt mind meeting any of the staff under different curcumstances.','2020-01-29 19:09:15.422000','2020-01-29 19:09:15.422000',5,'P dub','https://lh5.googleusercontent.com/-xSVtLWgScCY/AAAAAAAAAAI/AAAAAAAAAAA/v1EllBBOsvU/c-rp-mo-br100/photo.jpg','16389487648212004696',10160),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkKuC3Dv8Spm29FhIrclZ29Gd2YebyVBkD7CuiG8GSP2Isjo_2WP6tzwdh1y7LzNthRToxNEWV93pTaw94g0h4xgBDn3M','Really great emergency care','2019-08-30 14:32:14.968000','2019-08-30 14:32:14.968000',5,'April','https://lh3.googleusercontent.com/-ijqOZ0gMKfs/AAAAAAAAAAI/AAAAAAAAAAA/lBlYd_AwnQc/c-rp-mo-br100/photo.jpg','8918455867446117794',9071),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkkX_srDo2WwZ0livIef2h5fMDGMr6BmKIv31TgVpekz1wuIjn0NOG6US5-W4iPIjjtovXFlN-ASmksA073Oeq1ZzYNFQ','Doesn\'t get any better than this. Really high quality service without judgement. I was imediately seen and my injury taken care of by Dr. Wen. WHY can\'t hospital ER\'s run as effeciently and at this cost, this quickly?! THANK YOU','2020-07-13 02:03:21.369000','2020-07-13 02:03:21.369000',5,'Reg Reg','https://lh3.googleusercontent.com/a-/AOh14GiHAq_M_8NexMTmZ-Sk0WAJQSo3rv1s9s-YhxuLkw=c0x00000000-cc-rp','3511292162159714121',22169),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkKY1XgxMR8nvOweOCZUNozFWzfdZPLqKGKGgBgSaRzhYqc9eNKNVll3WwY_T8o_z2fXP000JO6iVNj8Vm9WQ3nuBi7Zg',NULL,'2019-06-30 23:53:07.643000','2019-06-30 23:53:07.643000',5,'Destiny Valenzuela','https://lh3.googleusercontent.com/-1wOQCf7HIYI/AAAAAAAAAAI/AAAAAAAAAAA/DhniOz6rg_E/c-rp-mo-br100/photo.jpg','6521947413723274945',8216),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkL1ebRO81WuCVB3LSuurfDqqZq76Wiy6WyzP7gRkISpoZlU5QxVeOBhmaLeioayVk0lpYuME7GY-5MNawQbSyhM_ep70','On Saturday I had an accident which damaged my R eye. After the initial pain wore off I realized that my vision had been affected. The sudden change in vision was very scary so I went straight to the Montrose ER since I had heard good things about Signature Care.\n\nI was greeted quickly and compassionately by Delorees and Alyssa at the front desk. In less than 15 minutes I saw Drs. Pradeep and Huan. They were attentive and quick to provide pain relief with eye drops and got me connected with a great optometrist for an evaluation within 20 minutes. I couldn\'t believe it because it was a Saturday. The optometrist opened his office for me and did a full eye exam at 6 pm on a Saturday! \n\nOnce I was diagnosed and got my prescription, the team at Sig Care even called to check on me and helped me find a pharmacy that was still open. It\'s only been a day after the injury but my vision is already starting to improve. Thank you Signature Care and Dr. Patel (optometry) for helping me during this frightening time.','2016-05-15 16:20:20.913000','2016-05-15 16:20:20.913000',5,'Tarek Fakhouri','https://lh4.googleusercontent.com/-8BwqLeIeTYw/AAAAAAAAAAI/AAAAAAAAAAA/uAylu2sD99w/c-rp-mo-br100/photo.jpg','3511292162159714121',8002),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkl3af7e9AS66zZ7Ch6HT4hsaGmuLbL6PLk2Qbzi7YzNIqh7fY3GssOtKD6cypa5xS-KI9vJD1NEvENPlVstBQYoalKT0','Excelente place !!','2020-03-10 17:51:45.252000','2020-03-10 17:51:45.252000',5,'Hector Sanchez','https://lh3.googleusercontent.com/-3ZblV4qvcPM/AAAAAAAAAAI/AAAAAAAAAAA/WVAlW5yU9C8/c-rp-mo-br100/photo.jpg','17898197009688164559',21094),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkl53hGB_sisAoTEHgBA-_jTK0FBj248IcPbe_2EUKZ7F4dDEMUKkBQzLYSMNV5SNfocXZZKE7ZtiM58w2yQZ8Hm40nT4','Great, friendly, welcoming atmosphere. Susana and Emily are both very attentive as soon as one goes through the door. Thank you for your good attitude and spirit during these difficult times!!','2020-06-15 17:57:36.674000','2020-06-15 17:57:36.674000',5,'Fernando Castaneda','https://lh4.googleusercontent.com/-9abBGJfDbXE/AAAAAAAAAAI/AAAAAAAAAAA/37ZlEm6MSgs/c-rp-mo-br100/photo.jpg','2077061009497551125',22864),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkl96HSS2vrrgynJ2IXNNo2usEh2Wx7yQmk0nM15tAq9ourYECGLOcAmGDRq43EkNOY9b1s7t24KSEWXkuxQuXdCbvGfI','What an awesome group of people! I went in today to have a cat bite treated and the receptionist, Jerry Conrad RN, and Dr. Garcia were absolutely professional, kind, and friendly. I normally have \"white coat syndrome\" anytime I see a medical professional and I think this was the lowest my blood pressure reading has every been in a doctor\'s office. I went from the reception area to being seen and released in record time. I honestly have never had such a pleasant experience with medical personnel. The office is also immaculately clean and organized. Wonderful experience while having to deal with something not so pleasant.','2017-08-26 18:39:04.854000','2017-08-26 18:39:04.854000',5,'Teresa Salcich','https://lh6.googleusercontent.com/-llQv-TsQzco/AAAAAAAAAAI/AAAAAAAAAAA/AaZKKR82ils/c-rp-mo-br100/photo.jpg','8918455867446117794',9366),('AIe9_BH3gZxYpIxBZcqAOO5HuBVklePQ5E6MMYDtZSmdCdGsvm-1wER1tSrzXm2XtS0bG-vf8wyZ6lnoRkN8xZFVq_anyeeS4YXtE6fxrtKdrmhruSYc7hU',NULL,'2019-12-27 16:19:28.440000','2019-12-27 16:19:28.440000',5,'Carson Riggins','https://lh3.googleusercontent.com/-YaAhg9LKXjY/AAAAAAAAAAI/AAAAAAAAAAA/VQd9MZg6ShU/c-rp-mo-br100/photo.jpg','3511292162159714121',14471),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkLo62FRmo6D1bosCYoIAHgRzDrkLeRF6o08rX3ueXCJp_ndAgxLAdMfry9Gzhh66SyauSrYgC7IRIg-zzp6pY54ZJ3rU',NULL,'2020-07-19 17:23:40.703000','2020-07-19 17:23:40.703000',5,'TW MACK','https://lh4.googleusercontent.com/-3J4sJS4bEs4/AAAAAAAAAAI/AAAAAAAAAAA/3o0HwW4WasM/c-rp-mo-br100/photo.jpg','14748677429039074158',21713),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkLSbbkCkK2TExNW7fL9UShf-4AtjZ831kgx7n2wMoTGwrKSt8hduXRLuIynEWGz9MHI8tyY3IZAzKyk2lc69UchLWzMw','The staff was very nice and knowledgeable. I was checked in quickly and checked out within two hours.','2017-09-16 13:27:34.029000','2017-09-16 13:27:34.029000',4,'Paige Prince','https://lh5.googleusercontent.com/-zmEVzaofjBM/AAAAAAAAAAI/AAAAAAAAAAA/yVdI3U2aKNU/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7789),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkmEkiKO8Ta2w0i8MDbvGztojgq5kK9CHfC8MA5qhuS0G3fbuY1I7xRZ1UmbGzsqZlX2uWJREexpwREm1Sjxm4DhFFlq0','This has been a very wonderful experience. Dr. Patel, Nurse Alvesn, Radiology Tricia and Registration Jasmine has been very kind and helpful. And another thing is the wait time is great 5 minutes and already was seeing people do their jobs.','2019-10-10 20:49:42.261000','2019-10-10 20:49:42.261000',5,'Yvonne Sophus','https://lh3.googleusercontent.com/-kIXQHrHDf3c/AAAAAAAAAAI/AAAAAAAAAAA/JhPertEHaAk/c-rp-mo-br100/photo.jpg','16389487648212004696',2832),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkmIj57F4-Lzm5QvvvK_n9NldeOJunyKF_vLt0zWqL1DE7bsPIdXNfOStnJ59zxNBdfldQV97nSI8PekinTb1ynh-PIaU','This is the only urgent care I trust! The staff is always friendly and knowledgeable. I always feel the staff is empathetic and quick to acknowledge my concerns. The service is quick and to the point.','2019-09-18 05:17:01.904000','2019-09-18 05:17:01.904000',5,'Eryn Stanmore','https://lh6.googleusercontent.com/-HDcRCDkm1_k/AAAAAAAAAAI/AAAAAAAAAAA/oiuUJx-M6hQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5545),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkmpKmQYcFvXBtTueJ-iwlBZHCyj-DZ5QuFzhemMtFnIIpJyqYZgBD0EMBLW_QTstvpVC0bw22JO0ZcyiayHUFH2m-Lk0','Always a great and very fast experience here at signature care... I recommend you all to everyone! Thank you Jessica for your awesome help with my coffee this morning as I needed it badly lol 😆 and thank you Maney for your awesomeness as our nurse... you both made our visit the best!','2019-08-12 21:27:42.950000','2019-08-12 21:27:42.950000',5,'Erin Walker','https://lh3.googleusercontent.com/-GtSclSUCxgc/AAAAAAAAAAI/AAAAAAAAAAA/_9peyeFV6ns/c-rp-mo-br100/photo.jpg','6521947413723274945',8165),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkmTk1UIMXJFzCqR66iawXIeKFs2Tsp-Eop8sDBgxx2clRTSW4r83SGe7DjMMb_FOhw6iOzsyPVfWVPJx429PHNQ4HaWU',NULL,'2019-08-14 22:45:25.011000','2019-08-14 22:45:25.011000',5,'Lakeisha Davis','https://lh3.googleusercontent.com/-wNfPiWFt8ig/AAAAAAAAAAI/AAAAAAAAAAA/x5K9U9uXwcQ/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5584),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkmvTwfqe40OAJGTycsygcVaY9o9j74jqm6I_4byauRo9Lo0Pf0Owdy7XXn2WHGxkl5PhRdCYMT-5Ww0tDrxoGvMmxRB0','Everyone was wonderful and caring. They all were very concerned about my pain and well being. The dr and nurses checked on me constantly and keep me updated on what was going on. Highly recommend!!','2020-06-11 19:47:35.245000','2020-06-11 19:47:35.245000',5,'Glenda Layne','https://lh3.googleusercontent.com/-Y2lfsqQtIFQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmC_FI0R7UH_5K_-3iGxSuoxP9M8w/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21453),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkmxco0P3FvR_M5LJNlmrDoZrAm-FPFV9Bl0Bm1g2FqXZQgYOj-j641A6cdVk9OxPhbRTFiH-sTeFzSxhU_UqbNxA7Nr8','The doctor, nurse, receptionist, everything was great! I came in scared, but they comforted me and talked to me explaining everything I had, took some tests, and I left relieved. Thank you, I recommend this place.','2019-04-01 00:53:00.301000','2019-04-01 00:53:00.301000',5,'Angel Santiago','https://lh3.googleusercontent.com/-xGg3OP5iaEY/AAAAAAAAAAI/AAAAAAAAAAA/xfgKJtdnEZw/c-rp-mo-br100/photo.jpg','8679688254631342173',8857),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkn2qQWQ3KohrguG7TPliNBtJB0awSsYiFeHsUXmV5_ktROiezT94E04vp7wJA2pI9LnN4SzbrD0u77QYr-NTYEooPhxA','Service was amazing! Staff made sure patients were taken care of in a very respectful manner. Impossible to leave this facility unsatisfied.','2017-11-14 00:16:12.729000','2017-11-14 00:16:12.729000',5,'Dawson Stone','https://lh4.googleusercontent.com/-eWWSkpRnZrA/AAAAAAAAAAI/AAAAAAAAAAA/YJ5IRWGgjD0/c-rp-mo-br100/photo.jpg','16590124370714063921',3908),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkNcwAaJlF-AqQgK2zSuqnkuBgMhutEJqMsrNTQY5OOWqxkskAxESymEmZeiRh4XeM2li_CfYXS_d43BRy6vBh6X1hjjM','Such a clean and great facility everyone is so nice and caring!','2019-06-11 17:14:14.428000','2019-06-11 17:14:14.428000',5,'Bridget Hernandez','https://lh4.googleusercontent.com/-WodHdyy__tY/AAAAAAAAAAI/AAAAAAAAAAA/KnqpHidvfjo/c-rp-mo-br100/photo.jpg','6521947413723274945',8240),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkNhrKoNu0lbC__Ek2EiYJLNRRfoByP7MJEpOdCwqJZNeLoR3xYmBeHYCcg1DYCHYcSTPM_ekH37ZoHbMeEVwBBPra2p0',NULL,'2020-03-12 16:46:23.742000','2020-03-12 16:46:23.742000',5,'Reece Boudreaux','https://lh5.googleusercontent.com/-2tGM-AJ_kfk/AAAAAAAAAAI/AAAAAAAAAAA/ZEb_nVCPgKs/c-rp-mo-br100/photo.jpg','14904078213800803294',20981),('AIe9_BH3gZxYpIxBZcqAOO5HuBVknoPrIHIlCc2WtUtmSePEeKl4Bn60rUz9Pap27MLBuiDxi5izZkSd6GAKcjN3s3I9uCEpxPDUvasXYUOjxoBBRC4xG1M','This place is Amazing!! They take great care of you and make sure you have everything you need while in their care!! Always asked if I needed a warm blanket and was comfortable. They are a Five Star health Facility. Gunner their Radiology Tech was so personable and super nice!! Dr. Ashbrooks as well as the rest of the staff including Kara, Courtney and LeAnn were very sweet and professional as well! I would definitely recommend Signature Care Emergency Center!!!😊','2020-03-09 22:52:18.402000','2020-03-09 22:52:18.402000',5,'kimberly murphy','https://lh3.googleusercontent.com/a-/AOh14Gjh-mx8hvrdJkFnrVjUbTOlddBZKmG-gz7a642x=c0x00000000-cc-rp','3272657195432704501',21136),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkNV_YlW3GHHkL_v5piIBWoB2h28ioMVTjhMOyBZAH5cypbpSmCY2CuZTOmDo3AV229j6hYFsDSCQypY5oBrO4GVCxQFc','Very satisfied with the services I received! Everyone was helpful and prompt with treating me. Jasmine was quick about checking me in and getting me to the back. Bryan, Meredith and Sherri made me feel at ease and comfortable throughout the process. And Dr. Soli did a very good job explaining my illness to me. Very kind and caring staff. Hopefully i never need to come back to the ER but if i do i will come back here!','2018-09-21 02:49:34.967000','2018-09-21 02:49:34.967000',5,'Veronica Temple','https://lh5.googleusercontent.com/-2D0w7wruEdw/AAAAAAAAAAI/AAAAAAAAAAA/aOCw77uSCLs/c-rp-mo-br100/photo.jpg','14567670160750071148',1499),('AIe9_BH3gZxYpIxBZcqAOO5HuBVknWJXY2jpgMUXk35Jy-YPR0CNHfMWVdZXHl-hUEIkUCcwymBOZUIdaqghSsNS32rBp4ktfCV0RkuO0tybHCw10Eh14Cs','The care and service given was fast and professional. Very polite and friendly staff whose smiles will make you feel like you were never sick before you got there. I recommend them to all who truly need urgent care; go to them and you will never get disappointed.','2018-01-24 13:59:33.877000','2018-01-24 13:59:33.877000',5,'Kennedy Kwasi Yeboah','https://lh3.googleusercontent.com/-lkqvHQRURsY/AAAAAAAAAAI/AAAAAAAAAAA/WtTMJzAhpVM/c-rp-mo-br100/photo.jpg','17394740196501090048',4894),('AIe9_BH3gZxYpIxBZcqAOO5HuBVko0JaG-phglJs_2urtaQ6_dHlYGcHWod0EuzvIivSRgPqQyRNpWGYOHYH4bhYJEQ-P1taz4gjHaUdplHZmkBd95P31Gs','Amazing service since we got here all the staff had been so welcoming to us. Shoutout to nurses Adam, Marty, and townsman they’ve been amazing and doctor Dewall was on point!','2019-06-12 21:20:28.861000','2019-06-12 21:20:28.861000',5,'Haley Lackey','https://lh4.googleusercontent.com/-7eTJf5V8xTA/AAAAAAAAAAI/AAAAAAAAAAA/wj3Y5YpLrcM/c-rp-mo-br100/photo.jpg','16891069708558046635',4253),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkO4Xn4U28HsdZXLGDvn5A9trIkehbAezODWejTsn6qI9FWtTie9Zh1Hh6OSeOVfiKiimBnDzub-qFyvLTvsGPTrgOf48','keera. Great service and very kind people!!','2018-10-11 04:25:03.229000','2018-10-11 04:25:03.229000',5,'Haley Schake','https://lh4.googleusercontent.com/-Qs5BbK7qanE/AAAAAAAAAAI/AAAAAAAAAAA/pXBiz_Dy5Gs/c-rp-mo-br100/photo.jpg','16590124370714063921',3712),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkOBL1v1LfAmxXUKcnSLoM3zfE8gXVDdVlKoGsbKU7SVE3TtJaMyQhj_GCGHHKbXhwqk4kJt8cIXTi8V2GsrGtCsc7PtE','I got evaluated for the pain I was having and all who were taking care of me generally seemed to care about my well-being and making sure I would be safe and sound. Thank you.','2019-01-13 16:33:52.157000','2019-01-13 16:33:52.157000',5,'Mohammad Al Khajri','https://lh5.googleusercontent.com/-KmOWEBsuJlM/AAAAAAAAAAI/AAAAAAAAAAA/4OuaejK15Ag/c-rp-mo-br100/photo.jpg','12541597562633926366',570),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkOFcxvlLOH1VJ601LI1JaY3StPS1Ue1PUNOFMKXNE8_rYICAUboOXqfNE0s2TlDbjsP7wjQEVoKzFYrqXUIdU8D-v3Ks','First I would like to say thank you for the fast, professional, and compassionate care! Your care really is your signature! Evelyn at Reception, Nurse Graciela, Radiology Deim, and Dr Dang were all exceptional.','2018-09-15 16:58:17.396000','2018-09-15 16:58:17.396000',5,'bryan dilli','https://lh3.googleusercontent.com/-tfGAagYgTpE/AAAAAAAAAAI/AAAAAAAAAAA/CL3R63YewBE/c-rp-mo-br100/photo.jpg','14567670160750071148',1505),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkOFPJnM9vKhZm4voxFVpx6_avOQApIf0IYBLNeKx_GHSRd35czwCO-aWNi4ho1l_F0zz2FOufKb7Y3CWbG0xdNx8R3tc',NULL,'2019-11-13 14:33:23.712000','2019-11-13 14:33:23.712000',5,'julia guerra','https://lh5.googleusercontent.com/-XUG67w-Uf_4/AAAAAAAAAAI/AAAAAAAAAAA/06SbJ-DFmfI/c-rp-mo-br100/photo.jpg','6521947413723274945',8094),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkoHolPePC9YIx5XyLNw_aA0l4wEDS3T7TxNoPuzyi9P_Y2m3RcyOM-Gu_w7rEb8YS8EgXrlz4im3zHh-g2l_DfHmotq4','Very friendly and very helpful','2020-07-13 09:30:26.306000','2020-07-13 09:30:26.306000',5,'Marie','https://lh4.googleusercontent.com/-nNTjkb70Vgo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnpW0RvC8nI1Gi_AOAvqAKc9R1QnQ/c0x00000000-cc-rp-ba2/photo.jpg','2694018788013845459',22123),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkOlhL0h7KUzD53_t2MyqiG-fN-PWTXoVEMjRyI9j5udoq2tNQTb4d2NdT_DjIHn0sdblEUMei6epsoggn27WM6JFvB4o','The nurses and the doctor took care of me right away and treated me with respect. They got me “IN AND OUT” I appreciate everything they did for me so s/o to RN- Lucas, Kim Domanski- Registration, Kim Davidson- Radiology Tech. and Doctor Ashbrooks... HANDS DOWN ‘ Best Emergency Hospital in Texarkana!!!!','2020-01-23 02:40:01.081000','2020-01-23 02:40:01.081000',5,'Darniesha Wrightner','https://lh3.googleusercontent.com/-kVdFOm8IEP0/AAAAAAAAAAI/AAAAAAAAAAA/npCkdLI6aHY/c-rp-mo-br100/photo.jpg','3272657195432704501',10283),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkooMCpLXLaNUTVoFbkiKxrnksInrXDFWQOJDuDyzpjraxdcHvT0y2GDC44j5jPJYdFhFY9iThwc-vJwPJNd0EN9jOV_k','I had an amazing experience. I came in for my son, he injured his finger. The staff were friendly, knowledgeable, and made us feel comfortable. Dr. OMalley, Joshua, Deanna, and Ekaterim were extremely professional','2019-08-03 00:42:53.030000','2019-08-03 00:42:53.030000',5,'Jasmine T','https://lh6.googleusercontent.com/-4TPQI4NgsrE/AAAAAAAAAAI/AAAAAAAAAAA/WjR_qxMMPI8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkOPn7KTTvTcpajZ2KLaubkws95KXanz_2GIr69V3KQrvx3ZWeXDjhl8UzTDi_oXaTp-315_C1jQxCtTHvrdL5W_DHecs','I was having a possible heart attack and this place was an amazing place to be at. Instantly went to the back and they began care right away. Dr.Sofia Farooq was absolutly amazing. They transferred me to memorial Hermann for further observation and all was well. Thank you Dr and all the staff.','2020-02-12 21:27:58.161000','2020-02-12 21:27:58.161000',5,'Clint Starrett','https://lh6.googleusercontent.com/-oOrOT5ss27c/AAAAAAAAAAI/AAAAAAAAAAA/cz4pp24EDXU/c-rp-mo-br100/photo.jpg','17394740196501090048',14021),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkotvDnwRstW4wQmLyh30p92p5VscvxXERQesRwVnBcU5CbZ1C_IXuqsgt-D9AKpuzW-Cdm66yLxWohnqkQA2ZvOYp40s','This place has always been great. Thank you Heather, Shelly, Tanisha, and Dr. Lindsay for the prompt and great care.','2019-02-04 04:38:16.861000','2019-02-04 04:38:16.861000',5,'Matt Bernard','https://lh3.googleusercontent.com/-dHp8J99CelI/AAAAAAAAAAI/AAAAAAAAAAA/nO7RMe6fuN4/c-rp-mo-br100/photo.jpg','17898197009688164559',5867),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkP1H2w8Wbo8AOosOoysrv32ONkcFGtNxFlM0hNCeqdxz3KzhBchrspxNViwmfBdtZs0DKogiqetH5Af7nhQqqdIUBm-M',NULL,'2019-12-29 08:34:49.451000','2019-12-29 08:34:49.451000',5,'Amberly Melton','https://lh4.googleusercontent.com/-sC6C_j7vaVI/AAAAAAAAAAI/AAAAAAAAAAA/Nf5aBD7FYQE/c-rp-mo-br100/photo.jpg','3272657195432704501',6819),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkPcX5408lpzzRz5U0zPkIE6x4iDM01jBZl8qgMQrmp6lV1h6uoMoVzHEXymkrqo350aSHHPbtWx0UpO6X030IYnsPN-0','The whole team was amazing from the moment we walked in till we left. I truly appreciate everyone care!!! \nDoctor s. Farooqi \nNurse: Jaime O Rad \nTech: Grace K\n Er Tech:Matthew C. \nRegistratio: Tanisha W. \nAmazing Team ♡ thanks everyone for the attention.','2019-04-22 01:36:46.588000','2019-04-22 01:36:46.588000',5,'king and jr and Anthony salgadoloz','https://lh6.googleusercontent.com/-70nrLiOB9OA/AAAAAAAAAAI/AAAAAAAAAAA/ayt8OirlWJA/c-rp-mo-br100/photo.jpg','17898197009688164559',5767),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkpMf6owHKWRU2cOzBquPmTzHen8Xt-1L2CirldA1FgB_XwlFLK36v6gE07twfuOUfQ3H3G3YW7pInv3en-K7MgmguxzM','Fast, friendly, clean, efficient and outstanding patient care! I am truly impressed, the way they treated my 6 year old daughter was absolutely amazing. I appreciate you Dr. Leung, John & Alexa, Casi and Angela! From the front desk to the back you all did great! Thank you for taking such good care of me and my daughter. God bless you all.','2019-12-17 01:34:41.668000','2019-12-17 01:34:41.668000',5,'Stephanie Medina','https://lh5.googleusercontent.com/-ZnB3_KjEMdI/AAAAAAAAAAI/AAAAAAAAAAA/8mk11AOSaIk/c-rp-mo-br100/photo.jpg','2694018788013845459',5985),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkppSGn4KubvIf1FV19e2buefWBaGbLxRCj8lZp4nVmO6yjuNyeirP3vgSQo2dlFYYApkIeNOjbwAwvcxm06vAwPt5BCY','Had to come in for a rapid COVID test, the staff from the front desk up until meeting with the nurse was super friendly. Made an appointment and had no wait time & they’re definitely taking the extra precautions to keep everyone safe','2020-08-05 13:03:19.403000','2020-08-05 13:03:19.403000',5,'Stephanie Cardozo','https://lh4.googleusercontent.com/-bNeTlTVrVCI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckFiE7dk84q1qQqOhGxWZ5QwT-uEQ/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21929),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkQ45czIMret7_jrp3NeG1V7zlo4gpqctWZhDQVbhCRUdfVopcW9x62Euf8EkfTncJqGqLlY7mrWvxrGLPRvvFwAMg_LI',NULL,'2019-03-08 17:43:21.226000','2019-03-08 17:43:21.226000',5,'Karo Sawyer','https://lh6.googleusercontent.com/-25Kv8puk3Xc/AAAAAAAAAAI/AAAAAAAAAAA/XkRFrR0QyyA/c-rp-mo-br100/photo.jpg','17898197009688164559',5816),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkQ4NLBZrVQez1_2FI_TYNVnnc0GAyEe7SVIZCqkn9PcClSKeXi0g9oPHU17BEWuCAA7JI2JIpOppGoL74EZ7RJFjUvuA','Great service! Our nurse Jessica was awesome!','2019-10-07 00:27:21.152000','2019-10-07 00:27:21.152000',5,'ariana ramos','https://lh5.googleusercontent.com/-S1iUwUYVVO4/AAAAAAAAAAI/AAAAAAAAAAA/Do4rQZnI_uc/c-rp-mo-br100/photo.jpg','6521947413723274945',8125),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkqa_DZzKgRuYOCDosOhbRHtrA3c6_Y17-a0Hb-nyTTTcy7f8PDCvcitdfgzW1mBJXvyX7G4rpzIQLSY9m4SYsgMqOSV4','Excellent staff ! I wouldn’t recommend no where else ! Got me back on my feet in no time !','2019-12-10 16:50:19.633000','2019-12-10 16:50:19.633000',5,'Ebony Evans','https://lh6.googleusercontent.com/-Zc4lCr0qO6g/AAAAAAAAAAI/AAAAAAAAAAA/5VY4TtozDPE/c-rp-mo-br100/photo.jpg','8918455867446117794',9035),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkQF-8WjbuT-2el4jFccaP7udJBCQaM-hf_IwGlqSY5xDeZD6k84Ib_qq6S41QMdZ_oGp-ynpCSF45MxLXV7LLAqMENdE','My fiancé JD Carrera was the patient in need of medical attention and we are from out of town. We were not familiar with the Houston area and stumbled upon the Signature Care Emergency Center. The staff was very nice and helpful and we immediately felt welcome. Nurse Rollie and Dr. Appiah were very patient and answered all of our questions without hesitation. Tech Natalia and Stephanie in registration were very friendly and went above and beyond while assisting us with paperwork and directions because we were so unfamiliar with the city. We would definitely go back and will recommend to all of our friends in the Houston area.','2020-01-11 02:34:14.725000','2020-01-11 02:34:14.725000',5,'Heather Schrock','https://lh6.googleusercontent.com/-uRT3PUAglFo/AAAAAAAAAAI/AAAAAAAAAAA/KSCaCYq7PnE/c-rp-mo-br100/photo.jpg','8679688254631342173',9530),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkqG9h3FHlbM5rwcM8KAOFcaYUyKzB-ZDauJKoVERFY1YmB_CJNT1hUOIB5l_ABFOt0JxIoZtWUd7a5CvY_hUfJW3VwII','The facility is spacious, new and well kept. The staff is friendly and their response time is amazing. I was in and out within an hour including xrays and fitting for crutches and a boot. I had my own room and was provided with water, a warm blanket, offered a snack and was able to watch the game on a flat screen. All in all, I would say my broken foot was worth the trip to this center.','2017-01-24 20:46:04.726000','2017-01-24 20:46:04.726000',5,'Kim Cooper','https://lh3.googleusercontent.com/-Vt_GXRVW_ws/AAAAAAAAAAI/AAAAAAAAAAA/oJ0lpvp3vfs/c-rp-mo-br100/photo.jpg','14567670160750071148',1907),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkQItes7tpafAktygeiLTlPGQQSalaR-SJva_AeDm6FWrlsO-KPnBCxBuLdR1voVVEbgKaI2fwc_Fzo94XXCXtvbXSh1k',NULL,'2020-01-12 07:06:45.318000','2020-01-11 14:16:16.015000',5,'Brandon Morse','https://lh3.googleusercontent.com/-jy71BB8PtAk/AAAAAAAAAAI/AAAAAAAAAAA/5C7dU999Vp8/c-rp-mo-br100/photo.jpg','17394740196501090048',9504),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkQMREWiLKMF6rl8eCykU1RI0Wo6ps_SXcjqW4e2q2D_fhW5nt6CjlwfzrGY6BgHTgMDzw-YlFANX4R5K9J-VSmFcg7es','From the moment I walked in the door they were extremely helpful with me registering the gentleman Sergio. was very kind and helpful. The nurse was awesome she helped with everything thank you Kara RN. The doctor was in and out several times making sure I was being taken care of and he was very kind and explained everything that he was doing thanks DR Carpenter. And the Tech that took me to ex Ray was also kind and thoughtful thanks Kim. I definitely will be back here for my needs and my family needs and will tell everyone about your great service. Even the security guard walked me to my car. Thanks again.\nShirley Lomax','2019-02-13 11:22:14.195000','2019-02-13 11:22:14.195000',5,'Shirley Lomax','https://lh4.googleusercontent.com/-PlI9e1fFFio/AAAAAAAAAAI/AAAAAAAAAAA/z3YhfPTENrQ/c-rp-mo-br100/photo.jpg','3272657195432704501',7018),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkqNt5mQ_OhzhZQNg1n0w0JP3L3AsfmP_MBCwOCIfAgMFKMnjeBOv5VyMrc45xcE6K5rJSLW-2CQ3jREydGRei-mGvfhA','Took my friend here and Anthony, Patrick and Dr. Bare took great care of her!','2019-04-26 04:32:12.393000','2019-04-26 04:32:12.393000',5,'Gabby Smith','https://lh5.googleusercontent.com/-Lw2tlOXqwiE/AAAAAAAAAAI/AAAAAAAAAAA/dq9FxTq2kMQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3403),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkQQ9AD41IKePDdSops6zu5N5QrEMPDfJxYpdJyHg16AZZKdaBfhvRwE-q6amc_C5dLns48DxeFI5pShbDak0ArxAvb_Y','It was very comforting that I got in and I got out and my problem was taken care of','2017-11-27 07:06:41.567000','2017-11-27 07:06:41.567000',5,'Hadiya Ogunnaike','https://lh4.googleusercontent.com/-tgkmWF3KkiU/AAAAAAAAAAI/AAAAAAAAAAA/_cXROVFY2PA/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4928),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkQzv7OcoyDzg61st5acNGM-PvHsZtOtGmXIGSh-sAZyhtkYUEXwUBc4nHHq6IB871yX2b5ccIRaby4BBppSpP3Z7hQak',NULL,'2019-12-28 17:38:48.635000','2019-12-28 17:38:48.635000',5,'Hannah Livergood','https://lh5.googleusercontent.com/-NTKayzsBRnE/AAAAAAAAAAI/AAAAAAAAAAA/l1Cs77Iw6bA/c-rp-mo-br100/photo.jpg','16590124370714063921',3001),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkr4xs3NHdzSMVTRX8Gb6sqxFY_tZw0K4gFQIPp8rWQrWiqZZaZy_kr7yW3mwAUz1KtAEeNmww88csCuBrQgP9-0oqQ1s','Dr. Daniels, Nurse Nicole G. & Ashoka S, ER Tech Ricardo & Vanessa G. treated my injury. They got me in and out in no time. All my questions were answered and well explained. I highly recommend this center.','2020-02-02 01:20:36.166000','2020-02-02 01:20:36.166000',5,'Liliana Calderon','https://lh3.googleusercontent.com/-tn4AU4bqIvs/AAAAAAAAAAI/AAAAAAAAAAA/lNuqJDOw8Ww/c-rp-mo-br100/photo.jpg','16389487648212004696',10411),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkrcjQN3Qub7KL_En9AecKnqfpDGka4WrCdW3JZtJizScIcja7_kYehXrqIVN9Czkr5BoFXkhO8PILrhzbiKUwIM4eofE','I had a great time here. With the help of Tricia, Jani, Dr. Harjai, Jordan, and Mary Ann the visit was excellent!!! I recommend it to anyone!','2019-11-23 20:21:17.602000','2019-11-23 20:21:17.602000',5,'Christopher Hightower','https://lh3.googleusercontent.com/-ucEPA9YfR6M/AAAAAAAAAAI/AAAAAAAAAAA/oSDLCHLf-Vc/c-rp-mo-br100/photo.jpg','16389487648212004696',2636),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkrCSOdF2HbFGuOYAZXBQw7FPwp3Nzw8R2-xQAEFnxYRUjWgrSu15N4rbjFiFw547lA4mMuYGX34bjSFD2Rg_TmYNxdyk','This was my first visit here, and the entire staff was amazing! Leslie in the front was amazing she got me situated in no time. The nurses called me in, in less than 5 minutes! Jacq and Churiah were amazing as well they got everything set up and attended to all my needs before meeting with the doctor. I had the pleasure to meet Dr. Dang and he was absolutely phenomenal he treated me like family I will always recommend him to anybody!','2019-07-30 15:53:56.333000','2019-07-30 15:53:56.333000',5,'Victor Opare','https://lh6.googleusercontent.com/-tn3AiQywAfc/AAAAAAAAAAI/AAAAAAAAAAA/gQGSdAeTT9Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7234),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkrCYht9SFDq0cVV9yl7ekVwE8HlCpB1gJJ-KsT0YLcOe7NOzLElg5Lq9bczizNVlxzzQ8XO2pzbXt3JnJGZBB1ThtsMs','Really excellent customer service. We appreciate all the help of Dr. Zengh and irving, Holly, Ellen and Thelma. Great team!','2019-12-31 06:06:29.390000','2019-12-31 06:06:29.390000',5,'Sofia Ramos','https://lh6.googleusercontent.com/-jspuHCeeB3c/AAAAAAAAAAI/AAAAAAAAAAA/MfAVYcafSVE/c-rp-mo-br100/photo.jpg','12541597562633926366',280),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkrgeLZ5i7eYGDAyv2B__1V9rEoTRvUxZ7CDrvfSnbfQen2CHhY1r9BuM1UHDxAXuHW8Ly_A5nbFIpFrAPa72_Nsxlfug','I went there in October 2018 with severe bacterial infection, the staff was so comforting, got me in a room right away, immediately took action due to severity and was placed in a room directly in a hospital without having to go and wait again! I have never been treated so well!','2019-08-04 06:59:21.700000','2019-08-04 06:59:21.700000',5,'Kim Haytasingh','https://lh5.googleusercontent.com/-dOHLz5rEQ-4/AAAAAAAAAAI/AAAAAAAAAAA/rNYjj16_80w/c-rp-mo-br100/photo.jpg','17394740196501090048',4620),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkRiAtWE8yiOaEe9wqJbCTB5m-pm2dcopM_EPW9booSCm_Vubmd-sXXj6HioHavoC1Z0i8k5EgA8SZZkubES3FLZRU3PA','I was seen there on 12/9/19, wow what a pleasant pleasant experience I had there, Dr.Nylund, RN Saran ,and it started with the receptionist, Alysson, the service was very passionate and caring, they all stated that they wanted to get me feeling better and they did just that...if every in need of a doctor and can\'t make it to ur primary doctor I will always choose the Signature Care ER at Westchase,they are the best....Thank You all again.. 3/15/20 was seen here today and Hayleigh at front desk was great! Love this place!','2020-03-15 20:49:02.086000','2020-03-15 20:49:02.086000',5,'Charlene Rollins','https://lh3.googleusercontent.com/-Qm_RpNd21Hg/AAAAAAAAAAI/AAAAAAAAAAA/HwQwkakxyf4/c-rp-mo-br100/photo.jpg','12541597562633926366',20900),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkRjymUkVjCNeSuEWE2VitTXdFD2tnUWe2yLNGNjKrmW5wS-DkZhsKEMyS8QvlKoFYbwBnsv2rTVojXUFUHl61-nSAE-w','This is our second day in a row here, and we’ve been impressed with the treatment we’ve received both days. Great place to go!','2020-03-02 02:16:42.051000','2020-03-02 02:16:42.051000',5,'Misty McCleary','https://lh3.googleusercontent.com/-hNNJrp6-x8c/AAAAAAAAAAI/AAAAAAAAAAA/B0e9W9EZ6NU/c-rp-mo-br100/photo.jpg','16891069708558046635',13921),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkRkh-a12R9FNlNaUviqUSpIsuXRmqaWx8kLvsEu7yTiNHM-0rCZm1sc3zt5_Pgy3thg_9n1SBQutHEFvGmsQxHA6sCFM','Quick service and awesome staff','2019-07-01 16:33:21.652000','2019-07-01 16:33:21.652000',5,'clint jarosek','https://lh6.googleusercontent.com/-EBGwJrgOhZY/AAAAAAAAAAI/AAAAAAAAAAA/Cmh2oMrmKv0/c-rp-mo-br100/photo.jpg','16891069708558046635',4240),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkRmeiz9121SJH6nk7enbL8InBNkvLgHprrBwTY_2_egZACVvgvdXF5fjCOW12HYY_g_pu_Q6gB-ZofYejOfkfIs9cwmA','(Translated by Google) Dr. Ding excellent doctor, Amy super nice and Joseph to them of so nice people Excellent service and attention. They treated my nephew very well.\n\n(Original)\nDr. Ding excelente doctor, Amy super nice and Joseph al of them so nice people Excelente servicio y atención. Atendieron muy bien a mi sobrino.','2019-04-27 16:02:19.998000','2019-04-27 16:02:19.998000',5,'Pili dp','https://lh5.googleusercontent.com/-GxTUxQIl0iA/AAAAAAAAAAI/AAAAAAAAAAA/2IGuHvOFtbE/c-rp-mo-br100/photo.jpg','14567670160750071148',22490),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkRP6nGue5EAgAVges0VCnDaMEc-69q-COqaIxwhTvu2txJNhml6k__Mv0toVNBZmVDoLh2W9xU1i_FDlGepAUCaPDF9k','I was at SignatureCare Emergency on Saturday aftenoon and I was treated so very kindly by everyone there, from the front desk lady, Amy, to the nurse Kris, they all made me feel at ease while I was there. The place is very clean also. Dr. Rodriguez was very nice and explained everything to me. I would recommend this ER to anyone who needs emergency care.','2020-08-01 21:44:02.959000','2020-08-01 21:44:02.959000',5,'Lorena Castaneda','https://lh3.googleusercontent.com/-iM9VBejFNIU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclASjbzQDdCwbObQXr8IHBUpSEFgw/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22913),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkRX7AL5FozQwsENKnQPIkzYPxGK2nCob97mtU98_dfve23h9aYTaRoiq4oXLV2FPta6odIJV36g-UtJ1j8f1dQlP30sI','Best place! It is so clean and up to date at the Neighbors facilities. Everyone is incredibly nice and welcoming and the service is very efficient here. Not to mention they are taking great care of you! Highly recommended!','2017-03-27 14:34:23.748000','2017-03-27 14:34:23.748000',5,'Elizabeth May','https://lh4.googleusercontent.com/-3hAU2oGHaNc/AAAAAAAAAAI/AAAAAAAAAAA/h2LClQ6KdF4/c-rp-mo-br100/photo.jpg','8679688254631342173',8917),('AIe9_BH3gZxYpIxBZcqAOO5HuBVksgQNujD029lJN5zK7JqgTLBX8Hjrz6KQDHOndeA7vb1nUqHiA0l0T6XtdxkPke08I98axa0eMYDtIalegMg5EZOxy3I','Fantastic staff. Efficient service. Alison and Eizabeth were so kind. Thank you','2019-06-23 12:12:00.432000','2019-06-23 12:12:00.432000',5,'Tarisayi Daugherty','https://lh6.googleusercontent.com/-Sg86xWcxm1s/AAAAAAAAAAI/AAAAAAAAAAA/tzTqTsDVdUE/c-rp-mo-br100/photo.jpg','14904078213800803294',2126),('AIe9_BH3gZxYpIxBZcqAOO5HuBVksn67imoQNXIX2ziHg5C6tMdPompwuTiNeJd11pu3Km8vPXwyW8rch4x0S2novOHgZmI6HiCrKcaMZXzEfQQbqq3sd3U','Dr.Jaber & his team were amazing! Thank you.','2020-02-09 23:05:36.513000','2020-02-09 23:05:36.513000',5,'Christian Orz','https://lh3.googleusercontent.com/-AwEN34DBO78/AAAAAAAAAAI/AAAAAAAAAAA/HwslniWX0Ao/c-rp-mo-br100/photo.jpg','3511292162159714121',14419),('AIe9_BH3gZxYpIxBZcqAOO5HuBVksQ_IWkgi0fLZlrR-iKTRdaWoIvpRlPp2WQMw8L_gaSHe5GnZ2z-ZwJc4N98C4fOpzuGxS_-pBc2MNiBJxqmvdZdnvNA','Excellent customers service. No time wasting in see you. All the staff is lovely.','2019-12-19 20:48:20.876000','2019-12-19 20:48:20.876000',5,'Chinwe Okpara','https://lh3.googleusercontent.com/-e07Ke5E-Hz4/AAAAAAAAAAI/AAAAAAAAAAA/10r1VLaKHbA/c-rp-mo-br100/photo.jpg','8918455867446117794',9026),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkss7nknxNVcgY7f0PyHtqSxBEAPuJSuswSdjecH004CiTgZlBZHSViNuEjD0fHSgZRPX5smCqMzLjCZoYntr89FEcJY8','Doctor valet and his nurse Jacob were amazing! They made me feel comfortable and walked me through the steps! Liz with registration was so friendly! And JR was so nice! Such a great experience','2019-09-24 21:17:55.623000','2019-09-24 21:17:55.623000',5,'Emily Unger','https://lh4.googleusercontent.com/-kuBwXtdHQc8/AAAAAAAAAAI/AAAAAAAAAAA/b7NsLT9vi3I/c-rp-mo-br100/photo.jpg','16590124370714063921',3173),('AIe9_BH3gZxYpIxBZcqAOO5HuBVksU5eWp_22Nvw6WMI_89WanFQ1QcXhb3WRiBYV9mVZpds5WbVTa1d70Z94h8db1k_Y-6sqmgtEG7AUK22ZIy-Ww0Kc7M','I came in at 6am with a bad ear infection, so the fact that I had zero wait and immediate attention was worth $1,000,000 since I was in so much pain! The staff was all professional and I was in and out within 15 minutes. That being said, I deducted one star because the doctor prescribed me ear drops for pain that had been discontinued last year. I was really looking forward to these ear drops (again, the pain!) but am just grateful I got immediate care and antibiotics to treat the infection.','2016-09-22 17:30:04.670000','2016-09-22 17:30:04.670000',4,'Selene Esc','https://lh5.googleusercontent.com/-jMqWhvS7RdA/AAAAAAAAAAI/AAAAAAAAAAA/bzFtknD0mqI/c-rp-mo-br100/photo.jpg','3511292162159714121',7936),('AIe9_BH3gZxYpIxBZcqAOO5HuBVksU8evLyxQua65t9d8tpj0oU6KHQMep9CSQHBlgUbVy1GxU7NzoZ31nI6sRs1gclKm2f5xYFsDwXxDm-y1FHCS88CNtg','I received excellent service. The staff was awesome, service was efficient as there was no wait, Dr was knowledgeable, and I highly recommend Signature Care ER.','2017-03-03 15:43:12.480000','2017-03-03 15:43:12.480000',5,'Nicole Jackson','https://lh5.googleusercontent.com/-hQYbLBND7U8/AAAAAAAAAAI/AAAAAAAAAAA/JVUdTnZrpEU/c-rp-mo-br100/photo.jpg','14567670160750071148',1874),('AIe9_BH3gZxYpIxBZcqAOO5HuBVksWohTIVv48zoAkpBaAfSjSJ3ayz6sN5zYY_a9QzfEg3LhTKVWs4gNN8I2mNF2nSzOy1owFaB8yPeajWK7cT0THHfi20','Rachel and Manny we\'re awesome','2020-07-24 19:52:00.637000','2020-07-24 19:52:00.637000',5,'Nick Talavera','https://lh3.googleusercontent.com/-MPwoBJwTup8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmSQXKbJtglxwfjGD9OWLhMgYf9Jg/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22218),('AIe9_BH3gZxYpIxBZcqAOO5HuBVksZYJZSIWy85xGQu7AQwCErl3bXsbSRGHSikTBB58Gi9zZxOKxpOsn-DqXOy9T8pw9K7BqdCiffCmhtzJK1QuCQJj8Ks','Extremely clean, the staff are the nicest people ever. Would recommend 10/10','2019-11-27 01:51:48.570000','2019-11-27 01:51:48.570000',5,'Caitlin Johnson','https://lh4.googleusercontent.com/-Alg7e7PANxM/AAAAAAAAAAI/AAAAAAAAAAA/zB0kBqkh7_0/c-rp-mo-br100/photo.jpg','2694018788013845459',6002),('AIe9_BH3gZxYpIxBZcqAOO5HuBVktakLs6KKZ-6D6JOYQLnyaZvN3zbQSl5DHB3flWdBAD546hwx7bQUQ9S1DEqYZ5FYcEUyq9qflQrs7njKgU_Mq3dgChY','Everything about my experience at Signature Care was wonderful. I walked in extrusicating pain and immediately I felt at ease and all my needs were taken care of. Being in the situation I was in, I was incredibly nervous and stressed!! They walked me through every step of the way. I was never surprised and instantly felt comfortable that the staff was handling my very need. From the front desk to the doctor we\'re all professional, friendly and incredibly knowledgeable. My nurses were exceptional!! They made me smile and laugh when that was the furtherest thing from my mind. I highly recommend them to anyone.','2017-06-05 17:32:24.932000','2017-06-05 17:32:24.932000',5,'Amber Skilton','https://lh5.googleusercontent.com/-l0Msocy2eHc/AAAAAAAAAAI/AAAAAAAAAAA/XnPxyMR5GAY/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2353),('AIe9_BH3gZxYpIxBZcqAOO5HuBVktcH6Fcma57z8pLWgzBN3T5tKeqXitisBzdZRYtbetvlASJCh4poBbH90cLL4ufv-e0N3umAiqWXuR6pp9iKQQ-uJuHE','Came with suspicions of kidney stones but worried about other things. The front desk (Brenda) was very helpful and explained the process. The nurse (Karen) was very helpful and knowledgeable. Dr. Daniels listened to all my concerns and was very helpful in the path forward once we found out I had 2 kidney stones. Also Dion performed the CT scan did a great job at putting me at ease through the process. Overall a great experience.','2019-08-09 05:38:11.289000','2019-08-09 05:38:11.289000',5,'Master Warlock','https://lh4.googleusercontent.com/-QInBOv_KhMU/AAAAAAAAAAI/AAAAAAAAAAA/qlFOhM-cvRY/c-rp-mo-br100/photo.jpg','3511292162159714121',7217),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkTE-9FV9SpYH13XNhzjpx8fobTfgWrj1vFNU5kUsoA_44xIDAPvx5r1d2MswZb4gscqokBongsLAfNgEM-HauGSOqNV0','I would have given this 2 stars because the medical staff were kind. Unfortunately, the woman at the front desk made it impossible for me to give it anything but 1 star. \n\nThey administer a covid test that gives results in 15minutes. I took the test, got negative results, then took another the next day which came back positive. They mentioned nothing about the accuracy of the test. They asked nothing about when my exposure was (which would effect the accuracy of the test). \n\nI was told to print and fill out the paperwork before I got there. I did but when I got there they gave me another stack of paperwork to fill out. It took 30 minutes to fill out this paperwork. 25% of it was illegible because it had been photocopied so many times.I told them I wanted to pay out of pocket. They wouldn’t admit me unless I signed insurance forms for which several pages were missing. \n\nI had no interest in filing with my insurance so I called beforehand to confirm I could pay out of pocket. The automated phone messaging said I could, but I waited 30 minutes to confirm with a human. The human on the phone confirmed that wouldn’t be a problem. Still, the woman at the front desk insisted this would be “insurance fraud”. I left the office and called their phone line again to see if I was mistaken. They said the lady at the front desk was wrong and they had no way of connecting with her to close the loop on this confusion. \n\nI filled out the partially incomplete unnecessary paperwork and was told to wait outside for someone to call my name. \n\nI waited for 2hrs outside in 103 degree heat. Why couldn’t I wait in the car with A/C and have them call me on the phone? This mystery will never be answered. \n\nAfter 2hrs they called my name and said that a page was missing from my paperwork. They gave me a single page of an 8 page form to sign. This was an insurance form. I waited another 20minutes after that. \n\nOnce admitted, they tested me. Then, I waited another 20minutes to get my results. The results reported a false negative. \n\nI know five other people who have been here. Everyone said their experience was a disaster. \n\nMy doctor said the test they administer is “known for returning false results all the time”. The most flattering stats for the test’s accuracy say it’s 80% correct. Most stats out there say it’s about 50-60% accurate. \n\nIf you’d like to know if you have COVID right away, here’s what to do: 1. grab a quarter, 2. pick heads or tails, 3. spin said quarter in the air, 4. congrats - you may or may not have covid. \nBenefits of this method over Signature Care: 1. Instant results, 2. Equal accuracy, 3. No false sense of security, 3. No accusations of “insurance fraud”, 4. No emergency room visit during a pandemic, 5. No risk of heat stroke, 6. No brain flossing, 7. No paperwork, 8. Save $175.','2020-07-20 19:14:23.702000','2020-07-20 19:14:23.702000',1,'Julianna Scruggs','https://lh3.googleusercontent.com/a-/AOh14Ghqcmzz8bWC6tXm6pF3sjwCUtDT6PZUUBsiNPy-fA=c0x00000000-cc-rp-ba3','16891069708558046635',22034),('AIe9_BH3gZxYpIxBZcqAOO5HuBVktG3MM_oiQmX3Oezdq_GPBwTSVp7WDucQWyuxsJq7CH_acZ3g17qXuFHiRzIfhAV_lzllDTLQaEJzoVS6L97WEEmwzp8','Fast and friendly also very clean.','2017-09-20 16:16:41.431000','2017-09-20 16:16:41.431000',5,'Sonic. EXE','https://lh4.googleusercontent.com/-XQl4ifFqY4Y/AAAAAAAAAAI/AAAAAAAAAAA/YtRcGFCCkIA/c-rp-mo-br100/photo.jpg','17394740196501090048',4972),('AIe9_BH3gZxYpIxBZcqAOO5HuBVktiD98axNMU5_nWx1-78Pz5UXP1xdXNsq1iUXjpPHdyXNm452BB0iwO1js-qbknNIdmijPWZKXm-2_eKOGmjWZGTT79Y',NULL,'2020-02-09 21:23:55.513000','2020-02-09 21:23:55.513000',5,'Kel Epperson','https://lh4.googleusercontent.com/-4qOuKoIxax4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck_r_ejmEzNhzMhZpXPG14x0QjW8Q/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14618),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkTKgsMwF6qsnGftlm-YT8t6fs7HSmYgeg3OW1tC7Yu6QvFjph-i5_c2rZqyVe39pEv05Bv8cdNy0VcRbn5jd-_R7J0mo','Took my fiance there two days ago with abdominal pain. Everyone was very nice and pace of treatment was the quickest of any emergency room I have ever been to. The whole place looks brand knew and super clean. During my fiances ultrasound there was a family room with drinks, snacks and an arcade machine to pass time if need be. Sylvester took us back to our room and was very nice and professional. The doctor also had great bedside manners. I will be using this place again if need be! Thanks Dr. Braun and your team for the pleasant ER experiment.','2016-01-22 15:39:17.513000','2016-01-22 15:39:17.513000',5,'Christopher Sanders','https://lh5.googleusercontent.com/-3XYPQtCZ2tU/AAAAAAAAAAI/AAAAAAAAAAA/ZVV0aabgzVE/c-rp-mo-br100/photo.jpg','3511292162159714121',8029),('AIe9_BH3gZxYpIxBZcqAOO5HuBVku-nhaSRkS-VUboHetNQ2lHzo-uJ0DkUsdCuGPyi5Fc4fq6EqMe49ZhaY14D51fopqzKKZTvHLR0YRxm7mWQ2Vquz90U','I would highly recommend everyone to come here great service and snacks 🤗🤗🤗 Jocelyn A and Alvean A were awesome and also thanks to Dr.Patel we can go home feeling better then this morning.','2020-01-22 21:41:19.389000','2020-01-22 21:41:19.389000',5,'L BOOGIE NATION','https://lh3.googleusercontent.com/-gSXAaIZGsrk/AAAAAAAAAAI/AAAAAAAAAAA/3TFOzaILL-M/c-rp-mo-br100/photo.jpg','16389487648212004696',10192),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkU0xrxN4kIZTCZP6KW3GqPPylLRvDfmC01sHQfbkv1oF1LlwBThjp1XkDl06hY97-v0nZ5q5RqKYcK0HFFeBy92Fy8zQ','SIGNATURE CARE EMERGENCY CENTER IS THE BEST .....So nice and clean ... I love how my doctors and nurses took care of me especially my nurse Catherine she was very caring and patient .\nMY NURSE:IRVING/CATHERINE \nER TECH:YASMINA\nREGISTRATION:VERONICA\nRADIOLOGY TECH: HOLLY','2020-01-26 05:05:54.272000','2020-01-26 05:05:54.272000',5,'Dayja Rockwell','https://lh4.googleusercontent.com/-ffaZy2AEpI4/AAAAAAAAAAI/AAAAAAAAAAA/WNBn0fDr43M/c-rp-mo-br100/photo.jpg','12541597562633926366',10090),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkUaZka9EZcVVDKhrVCfq2uAegCdWmcFQs3e9scy7lyS5ZjNP7eUkZtsQn_Ljp4kYcJteY71Z-O_QjL-LpVzB8J6G_Swk','The Hospitality at this ER location was outstanding. The whole team from the Registration to the Doctor. Our situation was taken cared for in a timely manner, from start to finish. And even giving us snacks and drinks as we were walked out. Definitely recommend coming to this ER if you are close to the area. Thank you again for the whole team that took care of us —\n\nDr. Henderson MD\nNurse, Sarah G.\nRad Tech, Fatima\nER Tech, Elaine \nAnd Registration, Tanishia W.\n\nAgain thank you to the whole team for taking care of us you guys did a great job.','2019-11-22 04:15:56.495000','2019-11-22 04:15:56.495000',5,'Dankynugg 98','https://lh5.googleusercontent.com/-Jxu3a4-GgrA/AAAAAAAAAAI/AAAAAAAAAAA/sAuKd5mNPOg/c-rp-mo-br100/photo.jpg','17898197009688164559',5407),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkUjqywJYbgubW30_NKyCpD3m4JQa3fa6qEAOGbUa7IcHnsOxmK-uZnrgmZG6Ya9hB2kGjtDpDtLRDRWyHmCMOY1nZ6DM','Definitely recommend! Staff is amazing, they made me feel so comfortable I thought I was at home.','2019-04-15 12:48:42.304000','2019-04-15 12:48:42.304000',5,'B Torres','https://lh5.googleusercontent.com/-YPNu_803RgQ/AAAAAAAAAAI/AAAAAAAAAAA/FJKNC9iJn_Q/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1351),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkumTMMa_T41IL7f3r-wL6Colvq3mGp11fBrwDb-D7pUPNAR6SwmNhbBm7i7Fxd3eOm3Kk79wa62shxkWTutItaulqVC0','Y’all where great best service ever','2019-01-13 17:58:58.983000','2019-01-13 17:58:58.983000',5,'Stanlisha Flowers','https://lh5.googleusercontent.com/-AIToalHBd4Y/AAAAAAAAAAI/AAAAAAAAAAA/U7hXjCZ4ytk/c-rp-mo-br100/photo.jpg','8626688543755174284',8586),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkUMYf-cUY7wAtwIm22R-4uLnqZbu6Q_YPOGsDmkcrV_38VkL997Wvsj5uSDFIYDEUmQxf4dHVjITTS6IUZyPaFcZQLyo','They are AMAZING every member of the team Dr.Pham, nurse Susan, Rad tech Laura, ER Tech Elaine, and fantastic registration Tanishia are my new best friends! I LOVE SIGNATURE CARE!!!❤️❤️❤️','2019-12-27 05:40:10.115000','2019-12-27 05:40:10.115000',5,'Melanie Luzader','https://lh6.googleusercontent.com/-uaeGev3izOI/AAAAAAAAAAI/AAAAAAAAAAA/s5Phe3OtKWA/c-rp-mo-br100/photo.jpg','17898197009688164559',5323),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkuTBai8f0xyavW158wQQnCizU079F70cOZALJx3-dZwnoAVlke7jdur-VHZ1KJFftD_tYM3ukbh9k6oUiS-RdaZ9Ykkk','I love coming to signature care bellaire location. Staff is always warm and welcoming. This time we’ve been assisted by nurse Katrina and Dr Pham. All very attentive. Therisa with registration has been very friendly and helpful. I recommend this location to everyone I know.','2019-10-27 01:46:33.363000','2019-10-27 01:46:33.363000',5,'Sahar Bader','https://lh3.googleusercontent.com/-ejsIUuf-yAo/AAAAAAAAAAI/AAAAAAAAAAA/jbZ9l7HvtCs/c-rp-mo-br100/photo.jpg','8679688254631342173',8767),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkUUF9RX7AIaJHSSt1lbdZ57cqri45m9WFz_sym5aUczFad3v77Xajs2Q4Sdog6ftFZEo6_6pOjktqZmKvqX_5k_hobNg','Shai was very helpful, and everyone showed genuine concern and compassion.','2019-06-18 22:14:06.931000','2019-06-18 22:14:06.931000',5,'Pretty Pretty','https://lh3.googleusercontent.com/-09ooh6R2cJY/AAAAAAAAAAI/AAAAAAAAAAA/hmawjGO_Qs8/c-rp-mo-br100/photo.jpg','8918455867446117794',9120),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkuVvMgogaxSc_-xCbFsumWSkm85hRs8dROOAg-7kAWZ-z1hLB_Pfo6dmIyKV6ZxE-e8vXs82InoWlpjtDuACa2PP6CzQ','R. LEAVITT, MD, LAUREN M showed great patience and listened to me my problem and immeditely got me out of pain. My first experience with Laevitt is awesome!! i would definetly recommend Dr LEAVITT and Signature Care Emergency Center','2019-12-07 03:49:03.899000','2019-12-07 03:49:03.899000',5,'karthikeyan sarveswaran','https://lh4.googleusercontent.com/-IkiamVSTnMQ/AAAAAAAAAAI/AAAAAAAAAAA/j-Y46JJt67Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2571),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkuWZc88m7PJcdKCfJozaPJQb3F268pSRJIz6pV3j-RzN6TLBho6Gu0jTE-3Z6MiebxHS4_iu-GF1oOMe8ZLBItKVLnR0','My experience with the doctor and nurses was wonderful. They are a very caring staff and took great care of me. I will go back if i ever need to. Dr. Henderson was amazing and Mollie and Eric were so sweet and good at what they do.','2019-10-23 16:26:11.947000','2019-10-23 16:26:11.947000',5,'Erika Faulkner','https://lh3.googleusercontent.com/-Z0T-aR-Z5rw/AAAAAAAAAAI/AAAAAAAAAAA/vz5oxUJ95HE/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',6877),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkUXhp7GjkbC6BOMm5tg6QHOYsGVeJMBEEHUTHTTMaCWS2DaoZTpexoPHHrshClmKzbjRtqTjk-sDrzXnRm9wzpn6jo78','The staff was amazing! As soon as I entered into the facility they immediately wanted to help. Kendra and Dyveliz made sure they could get me where I needed in the fastest way possible.','2020-01-21 21:46:49.535000','2020-01-21 21:46:49.535000',5,'Jamal B','https://lh3.googleusercontent.com/-hLv-dZTn90A/AAAAAAAAAAI/AAAAAAAAAAA/w5mYSrdgukg/c-rp-mo-br100/photo.jpg','16590124370714063921',10218),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkveof-YA307QwfHlRSVN29oRfyd0zF5Jmfkl_sNNYmR7GueiVR8_f2BOa_fwAitg0YIc1ESel42Mp2xJwLia-0FI8Oqc','Fast and helpful! Ruby Varela went above & beyond & was able to get my husband in the same day for an appointment. Definitely will be back.','2020-06-28 15:43:56.164000','2020-06-28 15:43:56.164000',5,'Erika Sanchez','https://lh4.googleusercontent.com/-AuDmJX8cn-Y/AAAAAAAAAAI/AAAAAAAAAAA/cl-mUw5dBws/c-rp-mo-br100/photo.jpg','13486358490203335051',21358),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkVKunpir-_YKOUPF2_LJb7cgHJWCldit3WgOuDb89q2WFdszCNiFEvx9Ds-jMYD51a_BddPRV1_6ubnm7q2gaoLdxAjc','They are really fast and the lady that attended me was a very nice and and answered my questions I asked I will definitely come again Thank u Teresa M.','2020-07-16 20:54:35.921000','2020-07-16 20:54:35.921000',5,'Karina Griego','https://lh6.googleusercontent.com/-I_j63WWLou8/AAAAAAAAAAI/AAAAAAAAAAA/y4mbrTbDWPw/c-rp-mo-br100/photo.jpg','6521947413723274945',22883),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkvlH8Awfxxv0bIXacJnlJqq2JOYUW6En9i5U09AwMFRg5ox4XtEVPnQjE9ZNg19_unQBv1tIi2wVAC44N5iGkya0_YCw','These guys are very kind and quick..thank you your help Dr.Dang, Irving, Tino and Hayleigh','2020-03-09 08:43:22.349000','2020-03-09 08:43:22.349000',5,'Seda Karaalioglu','https://lh5.googleusercontent.com/-vpLbWq_p1Rg/AAAAAAAAAAI/AAAAAAAAAAA/gLZq95VoeCk/c-rp-mo-br100/photo.jpg','12541597562633926366',20917),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkVo0fmA8Nq5Qz1M54J7BE7FLEMxgMmMCc0b9Hrc_giFvvjeO6gYjfNSQUqwLI_WhFqZLVO7DidFVRinGhnU7adwXDdmw','Liz did a great job of getting me checked in quickly before handing me off to Jacob so he could take my vitals and symptoms. Dr Vakey was very helpful and explained his diagnosis thoroughly. Thanks!','2019-04-02 15:09:31.401000','2019-04-02 15:09:31.401000',5,'Erik','https://lh4.googleusercontent.com/-5FDmAzesHVY/AAAAAAAAAAI/AAAAAAAAAAA/IfTvvfbBO1w/c-rp-mo-br100/photo.jpg','16590124370714063921',3466),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkvqE1-8KuIMJ16g3lRIhj-C8pIezJaaAoRyjdLtWPNEGxz1EhyzoAtjPozo6eBIXxoUQgWxgx4ENZ6fC2HY76rpd7N5c','I went in for tooth pain and was greeted immediately at the door. Courtney was very friendly and got me back to a room very quickly and Jennifer was efficient and caring. Dr. Yost told me about a dentist I could see and helped me with my current pain. All in all, it was a wonderful visit!','2019-09-20 20:09:46.151000','2019-09-20 20:09:46.151000',5,'Randa Ford','https://lh6.googleusercontent.com/-T5EtOWaD2YU/AAAAAAAAAAI/AAAAAAAAAAA/wRNBwjMmmjs/c-rp-mo-br100/photo.jpg','3272657195432704501',6887),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkVqfadWL9__pvL-LCO9vjUsLwqUsWWdZCzd5IHVFh4LN7wo1_Vl1cePsnxfZVaWZmk1LtbP7jjJF8ks6LlVnQ6l1smUs','Couldn\'t verify my Sons insurance, wanted $500 to even see him.\nWhat does the \"oath\" say about, \"first do no harm?\"\nKids are without their parents for the first time and sick.\nThe way he was treated was appalling. \nShame on you all!','2017-11-28 21:15:04.574000','2017-11-28 21:15:04.574000',1,'melinda Schwarz','https://lh5.googleusercontent.com/-2fcKsUWLSRM/AAAAAAAAAAI/AAAAAAAAAAA/tDRWm86gW1A/c-rp-mo-br100/photo.jpg','16590124370714063921',3903),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkvrDMjALQ4cBeJONT-4uddkDsor1F4yGENSUGUJL6v-TQlAJRcLNpBBLKrjQ-faUuVJck59ceIpES_KFNkGovLJ5PQa0','Quick and easy process entire staff was very friendly including Gracie urias great and convenient place to get tested.','2020-07-16 20:53:34.855000','2020-07-16 20:53:34.855000',5,'Bobby Aguero','https://lh6.googleusercontent.com/-5g1orSov1-U/AAAAAAAAAAI/AAAAAAAAAAA/ZBni4n9rNKg/c-rp-mo-br100/photo.jpg','6521947413723274945',22884),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkwc26-q2ImF3hl9r93RXe3HTzAj8T9AyecGTBDGqyz5xAPf2VIPqWCBVnpbZu-8Q6XNVpdnr8SXnxLJd7XCEA62qmzhU','Awesome staff : Brad , Vakey , Kim ,JR and Kristen . Y’all are so cool .','2019-02-21 19:28:47.573000','2019-02-21 19:28:47.573000',5,'Tasia Rogers','https://lh5.googleusercontent.com/-FfO_WrZ1u5U/AAAAAAAAAAI/AAAAAAAAAAA/rnWy-Z_RH68/c-rp-mo-br100/photo.jpg','16590124370714063921',3531),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkWgd592mCsqZF18Gzf4aQ6EYiNMweMwZnFSYADxBkR9rkj2CARK_6uiQQC2gtQcY_IFcJc_KcdkzLw8F7kkumPCqNNdU',NULL,'2020-03-03 18:38:26.753000','2020-03-03 18:38:26.753000',5,'Daxton Johnston','https://lh4.googleusercontent.com/-Am_SMBWX-vM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucluHmqJFKHPFaygrgmA4JKn6lZ0vw/c0x00000000-cc-rp/photo.jpg','3272657195432704501',15322),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkwKEoICacwAfG_tupm9eztZ_KPA0Y4gs5fDhYv_qndZjRvxnWZewCiyPDnKvj03sMSg3S7eJCDDnEVnwXY2fILs19cb8','Kendra got us checked in super fast with no problems and all of the staff was very welcoming !! I would recommend signature care to all who live near one .','2019-12-08 19:59:50.094000','2019-12-08 19:59:50.094000',5,'Emily Malone','https://lh4.googleusercontent.com/-_XXmj8T472I/AAAAAAAAAAI/AAAAAAAAAAA/DjKc8hDsvo4/c-rp-mo-br100/photo.jpg','16590124370714063921',3029),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkwNqgaPaiWBEIS_xixRImaIOi1Hb7P6WGaSixann7iU_XabAeCFudXRqUsc6nKx0ZoZ3dBw5ZW414EHwAFydWHlBr0tA','Great ,Fast service. Everything is fine and Kim, Andrew,David, Lisa, and Alisha, took freat xare of JoshHargrove. Got dehydrated at work and wasn\'t feeling well. Glad it was mothing serious.','2019-06-29 05:44:13.586000','2019-06-29 05:44:13.586000',5,'Josh Hargrove','https://lh4.googleusercontent.com/-M4oiiY8SuRU/AAAAAAAAAAI/AAAAAAAAAAA/95o_ZxsX7TI/c-rp-mo-br100/photo.jpg','13486358490203335051',913),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkwOCDYa1Kas10caSU8Ws2oqMcVvmm7RbPP5jBeRO4Dz95TArVYHXfolOUTsGtnt8Vu9UiuOdM_a_BiZlmAhfOsOLmXkk','Leslie,Dawn, Olivia and Dr. Yusuf were great!','2019-08-06 19:44:58.865000','2019-08-06 19:44:58.865000',5,'Jessicka Fabela','https://lh6.googleusercontent.com/-zM48zyHnSB8/AAAAAAAAAAI/AAAAAAAAAAA/hm08XJq0RDg/c-rp-mo-br100/photo.jpg','3511292162159714121',7221),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkWPXb9P-apV2Vby5lO1LuSqYWluYltDoAOkJpnPQWGHo7udNa5mW7ciXu6sAGoxB0rEM12AD0jNpz3gRVD0VlXRpwV8Q','Signature care was beyond helpful. From the moment I walked in until I was brought to a room (which was very fast) everyone was nice and caring. They offered me a warm blanket as well as a drink. They made this visit as easy as possible. I live very close and never had a reason to come until now. I will be recommending Signature Care to my neighborhood and friends near by.','2019-05-03 17:50:59.197000','2019-05-03 17:50:59.197000',5,'eve brooks','https://lh3.googleusercontent.com/-3DDqTmOb8QM/AAAAAAAAAAI/AAAAAAAAAAA/ikfUtF9AXp8/c-rp-mo-br100/photo.jpg','14567670160750071148',1330),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkwuTbMGvzSj7nREzoqaSmy2FgKch1H_cOnc8NA3tpkCgsqOg1wQjMvEOQ8xqWuc1cVf_d3gXnFjBXNgsrwb6d6-MCt74','Everybody was really nice and I didn\'t have to wait long at all to be seen.','2019-06-22 01:13:36.663000','2019-06-22 01:13:36.663000',5,'Courtney Scott','https://lh3.googleusercontent.com/-2W_zrqsmr4c/AAAAAAAAAAI/AAAAAAAAAAA/hKme6isZ8i4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkwxrG4gzg8R8LteQLg_mHUtB5Wwk2z8kNxmUiL3a261vMe_WrXOX7a9s2zkqPITJvo-1hiT6joUUh4-gLCnUynZ4BCy4','I would highly recommend this place. Clean and very efficienent. They make you feel comfortable and they know what they\'re doing.','2017-07-30 15:16:55.514000','2017-07-30 15:16:55.514000',5,'Nelda Blanco','https://lh5.googleusercontent.com/-bqXg93xN9TA/AAAAAAAAAAI/AAAAAAAAAAA/IPb2VbKSvG8/c-rp-mo-br100/photo.jpg','14567670160750071148',1782),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkWYlaGpMKsUYmPIvkgjtslLWKJxT_hFw2ZMAW19VXyY07uTOXA7JoQfPEt8kxw1lMhbTRaTG-puEXNJQuXoTp0BEZbYY','Dr.H. Garcia, M.D ,Nurse Nichole ,ER Tech Staci , Radiology Tech Nicole, Registration, Genesis. War all great.','2019-06-11 15:56:02.095000','2019-06-11 15:56:02.095000',5,'Lawrence Giordonello','https://lh5.googleusercontent.com/-gI7HLmmEZmo/AAAAAAAAAAI/AAAAAAAAAAA/wTdwqxGB8SQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9127),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkxaJgk0fDH-ImxrEehnAdyMmb43rZx7f4z6hQQLfOVy1Ow2P_Y2mq_Le1BrltEvYOVlpy1C_jMnlutcMt2E2I-SvsLMw','I was pleasantly surprised at the whole experience. I came here on a holiday, expecting a long wait and a big bill. Neither happened! Great staff, service and advice. Thank you!','2018-12-18 15:25:32.749000','2018-12-18 15:25:32.749000',5,'Neil Penberthy','https://lh4.googleusercontent.com/-3ddE9kHxykA/AAAAAAAAAAI/AAAAAAAAAAA/Y5IZ_yNS0JA/c-rp-mo-br100/photo.jpg','16891069708558046635',4387),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkXcXbpdOn0r-QdwmMupfDVJbX_k76aTgRRVL09RSEcYJVH2RPM2q-HtPmQ0Mh5vAnPXTaDIlGrqGxW_DmRRhzKV7V8kY','Jani, Tricia, and Jesus were amazing !! Great customer service..... made me feel very comfortable. Friendly staff !!!','2019-06-02 17:49:55.581000','2019-06-02 17:49:55.581000',5,'jaterria brooks','https://lh3.googleusercontent.com/-IwzD275aLN4/AAAAAAAAAAI/AAAAAAAAAAA/j4rZVwhjtDs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkxd-GpsKgXIZaGuuNqCCGSRTzKjd2mxHm8do9-MhQtUHn6XjDb2w0-pLKPQZ1m8oBW0MwVORr8MCQXA_onhq6U4YsXdw','The whole staff is just awesome. They treat you with such hospitality. Dr Miller is a great doctor who showed concern for our daughter. The RNs, Gracie and Meredith, were very attentive to our daughter. Bryan and Ricardo were just super cool. The receptionist, Keaire greeted us with a smile. Just a fantastic place. We\'ve been here before and we are just pleased by the way they treat us. We highly recommend this place.','2019-01-13 04:20:41.020000','2019-01-13 04:20:41.020000',5,'Johnny Ximenez','https://lh6.googleusercontent.com/-pIEHCEg_A2o/AAAAAAAAAAI/AAAAAAAAAAA/6td6aZp1KLU/c-rp-mo-br100/photo.jpg','14567670160750071148',1420),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkXGdU6Ut4sLxJuIrrq3oYr-aa1wEHwHlbcrVnxVUKkCg67GljpJ2a1L3uuP7SazxNjOxyyIxDtMpTNfsejbbrrV8amkw','Fast and friendly!','2020-08-02 14:22:23.284000','2020-08-02 14:22:23.284000',5,'Adriel Zamarripa','https://lh5.googleusercontent.com/-jd5rcB3ogEQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmazQ8msiEgJeo5pmh_8d2Fbp8beQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22199),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkxgPJx4EjaS-2g8ZR7teWe6aonVZVcmKgVOafqoBzf2KfiUQFgIBLKHDIWTQ2MvG8P1UDp_4MetxHmbTZ1ug95q2kbvg',NULL,'2019-10-17 00:23:01.595000','2019-10-17 00:23:01.595000',4,'Mr. Eaglin','https://lh3.googleusercontent.com/-44pk5HSpdJE/AAAAAAAAAAI/AAAAAAAAAAA/wbfnM6PkNso/c-rp-mo-br100/photo.jpg','8679688254631342173',8793),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkxj1PNI1blwfE2JBXbCYaIzttUX2bTw43fWP2tXdu39BdsJktHZyEgnwby8zJVDKq3Isf1k3M6dPkBW7g25ruRFGeHnE','Came in with a sore throat got seen fast and staff was very nice and on point Nikki Calli and Dr hasegawa and Bryan and Thai very nice staff','2020-02-26 17:37:20.513000','2020-02-26 17:37:20.513000',5,'Julianna Garza','https://lh5.googleusercontent.com/-Brt2oc7RcSI/AAAAAAAAAAI/AAAAAAAAAAA/OlLVniNvt-0/c-rp-mo-br100/photo.jpg','2694018788013845459',14207),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkXtE0gc6iYdBtYo41Xo2wrFWh88mt4nm3Z7zkWsJXxxE4_ksvQGsjbn9XpdJ_1fCQt0IGX6HOxbydv61ET94NKoQFKjA','Dr. O’malley was amazing and attentive, Jani the nurse was great as well as Erick. Jesus was very nice and helpful! Thank you all','2019-05-18 15:54:05.134000','2019-05-18 15:54:05.134000',5,'Kristen Foster','https://lh3.googleusercontent.com/-_Jhl4LbGIn4/AAAAAAAAAAI/AAAAAAAAAAA/G81A3Jwt6YI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkXwAEfjk1snx31584s6Ll8h2YBa1pyvreSvvbRC6iuJ3xn8wTVSbVClpnajzY8ZtlSxojyFlowP1zvzHSRZZSZoH7bgM','Great staff from the moment front registration Linda. To when she put me in the room. Sherri the RT was great made me feel comfortable during the entire visit helped me a lot. And the Luke the nurse was great teaching how to use the boot and was very understanding. The dr. Yost was amazing explained things clearly so I would understand and double check everything from the other hospital. They did great definitely coming back again','2019-02-15 21:49:31.010000','2019-02-15 21:49:31.010000',5,'Margarita Hill','https://lh5.googleusercontent.com/-zLrrEhNZLbg/AAAAAAAAAAI/AAAAAAAAAAA/TMpjq94ycY4/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',7012),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkxwrX8mHmpw92m_yLpEGqMV6uNZZhaQwz1Mn1rtoGfh-6R-61oQsOfmY2dk-l41moLuk1c1UaqTdMw1I9Purn_2ao2y4','No one likes to end up at the ER but when something happens and you need urgent medical care, it\'s good go know there are places you can go and get immediate professional care. Thanks for the quick in/out care you have me. From the moment I walked through the door everyone was very courteous and professional. I was actually surprised my visit was only for about 45 minutes. I was anticipating an experience that would have me waiting all afternoon. You guys took me right in and got started immediately. Thanks for your prompt professional care.','2016-12-05 05:08:06.395000','2016-12-05 05:08:06.395000',5,'Robby E. Alsbrooks','https://lh6.googleusercontent.com/-LUkQaWjci-w/AAAAAAAAAAI/AAAAAAAAAAA/a4f59d9TdrQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7922),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkYD1CZLb0L3agmqFZMohJqmTdZfqg6KjnQxACLa6EuYPKnsz3J_SaxRL0jc0aEOy1dOXgDO9iqEd4iHXAn1AoKgb3diQ',NULL,'2020-07-05 23:18:38.017000','2020-07-05 23:18:38.017000',5,'CHAD MAWLA','https://lh4.googleusercontent.com/-zkyydYsJjg8/AAAAAAAAAAI/AAAAAAAAAAA/CKKyETTARgE/c-rp-mo-br100/photo.jpg','12541597562633926366',21336),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkYGmJZNfuNxL142BCeVBOJBcalU9-8nQEZZeiYCFf2XPFLqmtAW_CPNuzlKOFz8k1YqznTxpOZYc1QNWdx0ockqvM-3s','Dyveliz, jacob, and tori were amazing! They made getting stitches such an easy process! Will come back','2018-11-11 16:14:25.685000','2018-11-11 16:14:25.685000',5,'Daniela Tabilo','https://lh5.googleusercontent.com/-zJEFqRop2zc/AAAAAAAAAAI/AAAAAAAAAAA/dk8wNFcAc9Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3655),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkYhO5xos-l2USc21DGcjG-0WDO2H7U1kNe1UkmDqB8TY9pUDj8iCDZfR6RpVlGYdOLBg5Iu1x671D2MfP3OEQ-A04RpY','Great service, very fast and thorough!','2016-08-22 11:58:18.142000','2016-08-22 11:58:18.142000',5,'Mike Sadler','https://lh6.googleusercontent.com/-ISRrZmezIag/AAAAAAAAAAI/AAAAAAAAAAA/NkRtYlz2nFA/c-rp-mo-br100/photo.jpg','14904078213800803294',2464),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkyiUvmsFkZ5tQoNCdcXHAKMz5Lgl_mUN_r9zYy2-axkmIXes6G9KkRvt4ojakdxOo7l3aOf5Cw7nlXFpk8j1iC80wEhg','Busted my eye brow open, walked in got stitched up and out the door in under an hour. Very nice people working here!!','2016-05-19 19:20:50.046000','2016-05-19 19:20:50.046000',5,'Jack Everette','https://lh6.googleusercontent.com/-o7sv3h2tQIQ/AAAAAAAAAAI/AAAAAAAAAAA/JZYK0ZEzkS4/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',2033),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkYNg5qqPtwqS7rLLUwGaWjZE-_z-_W6PvIFHttfNVGo9zNTtru4I5k9vqEoNKIbVhul8fVunMEvXekYN8tqcNYJxgbzQ','The entire staff was great and the care was great too. The wait was maybe 10 min. We were out of there in less than an hour. I highly recommend it','2019-01-01 15:52:49.864000','2019-01-01 15:52:49.864000',5,'Dolly G','https://lh3.googleusercontent.com/-M8deTkTrQhQ/AAAAAAAAAAI/AAAAAAAAAAA/UuohBHCt-iE/c-rp-mo-br100/photo.jpg','13486358490203335051',1118),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkyQ3JTfE2rCF1XNLF-5HXoWzo10uQMQHTkxus_GxgGYuNpwk52K-f_C4T66L1WD_blcFiwEz5FhBVS046z_pfYKbOA6g','First time: 4.5 stars. came here because of a disruptive stomachache and I saw Dr. Pham. He is informative and mostly kind. I didn’t have insurance so my bill went up to almost $800, but he is a nice doctor.\n\nUpdate 1 month later: (1 STAR)\nI went in there yesterday at around 7/7:30pm and the lady in front gave me the feeling of as if my issue wasn’t an emergency. She was busy on the computer mainly! I couldn’t even stand up correctly because of my pain in my tummy and I needed to use the restroom. She asked if I could hold it until I fill out paperwork? Not knowing a person’s situation, and you’re telling a patient to hold something they cannot physically do? Isn’t this supposed to be an medical center for emergencies? She says if the doctor doesn’t find anything wrong the first time, they aren’t going to prescribe it as an emergency.\n\nI came here before which is why I gave it a better rating the first time around. I thought about what was charged the first time I came.. if there were going to charge me $800 for them to give me an over the counter medicine and a 10mg pain killer and charge me the same $800 for the same thing is not worth it!!! I will never go back again. Thankfully I found another place with better care and better prices!','2019-08-03 16:00:45.214000','2019-08-03 16:00:45.214000',1,'Asia Kay','https://lh5.googleusercontent.com/-8phBRX22LjA/AAAAAAAAAAI/AAAAAAAAAAA/ZprreQ_LhCE/c-rp-mo-ba5-br100/photo.jpg','12541597562633926366',465),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkyRzCOmD7ogyiFNCK4PwngUcrL9c9J3W6O7uAC2fNhqF93S0sfmR7VpNFFAwZEsVYoODJDMSPHqh_GCM3DIQcS1ItkQw','Wonderful experience! They were very friendly, and worked quickly to get to the root of the problem. They made a very stressful situation bearable.','2017-09-16 16:25:40.060000','2017-09-16 16:25:40.060000',5,'Ally Gonzales','https://lh4.googleusercontent.com/-PQQ0TWQ_9ZU/AAAAAAAAAAI/AAAAAAAAAAA/6Na8GJgyWgg/c-rp-mo-br100/photo.jpg','16590124370714063921',3932),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkYWNgRn3ZyQMgQP5AXU7-U-b79QIKTuNJYBIPK9Pe3MReM9oyvkXepvd4xa_Z9XvqsEg4xn05J-GKN3dwME8e5uQ5wOo','My son crashed my car today and they was very fast at taking care of him and giving great care to him and asking if there was any thing they could do for the family .I loved it there and very greatful for the great care they gave my son and his family.','2019-05-31 20:51:37.486000','2019-05-31 20:51:37.486000',5,'Jossate Hillis','https://lh3.googleusercontent.com/-PLcAAJwhoEg/AAAAAAAAAAI/AAAAAAAAAAA/eC_a3zGcFVo/c-rp-mo-br100/photo.jpg','2694018788013845459',6140),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkYXaBcLJyUQP3uQzg6lv12Rh283aGZzU3H2nXRmCvvYfgnN7sshvf004jODiPOeBLfD3yfzNP2WCv8kYH2imSA39G8D8','Very Clean. Friendly staff. Short wait. Modern equipment.','2019-04-23 18:38:26.101000','2019-04-23 18:38:26.101000',5,'Mark Solari','https://lh5.googleusercontent.com/-7eJ3kGCsdJk/AAAAAAAAAAI/AAAAAAAAAAA/fUH4nqE4dqY/c-rp-mo-br100/photo.jpg','13486358490203335051',1030),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkyZoz58AD5hxvQ8tTO9nDbMYCmID34pOa4sqOnJ6Ab21X2B8EF69Y7pk2OPmDkjb0PIS8YGCNLdrMC9BGiZdBexeX2Fc','Dr. Eric, Nurse Jani, Check In Amy, Tricia Tech \nHANDS DOWN TVE BEST EXPERIENCE IN EMERGENCY ROOM VISIT EVER!! THANK YOU SO MUCH FOR TAKING GREAT CARE OF ME AFTER MY ACCIDENT!! 😍😍','2019-07-22 00:21:01.184000','2019-07-22 00:21:01.184000',5,'Dana Annis','https://lh5.googleusercontent.com/-CzgTOKFuDk0/AAAAAAAAAAI/AAAAAAAAAAA/owm5c3EhDN4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkZ1Cw3DVKipN4Ji8kdOtjoR3yjbhj8YKOtnS4mN8g1jUbud6gnXtxWIOzUTQEVOrSOY0CSeSMeN54gckRfrTpWmNz0Js','Great staff very kinda and helpful. Could feel the good vibe as soon as you walk in. They took care of me so quick just as soon as I was done filling out my paperwork. They took care of me and had me go about my day. Thanks to all the staff.','2019-12-03 14:57:38.004000','2019-12-03 14:57:38.004000',5,'Jose Navar','https://lh4.googleusercontent.com/-X-4yOSAs-aU/AAAAAAAAAAI/AAAAAAAAAAA/pxgi6G9xZCY/c-rp-mo-br100/photo.jpg','13486358490203335051',709),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkZ8OiKuwIEZ6er7UEPldDDLscZpkSW-wyqlyyYO6VBaBs2W5Q5t5niwK8q5wY8MyPWZgBuS7jotn3YPLctGNKzpVs25Q','I want to thank the staff : Courtney, Jennifer, Gunner and Dr. Ashbrooks, for taking such good care of me during my visit with them today. I went in with back pain was treated and informed on my issues. Gunner was awesome in keeping me calm. Jennifer\'s bedside manner was so sincere. And Dr. Ashbrooks checked on me andade me feel easy in an uneasy situation. Thank you Courtney for getting me back so quickly. You guys are truly a blessing to me and my family. I would recommend this facility any day. Thang you guys again. Keyunte','2019-09-10 22:42:47.120000','2019-09-10 22:42:47.120000',5,'Keyunte','https://lh6.googleusercontent.com/-Bxe-NzoDCmc/AAAAAAAAAAI/AAAAAAAAAAA/taTwontLDbE/c-rp-mo-br100/photo.jpg','3272657195432704501',6895),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkz9vwaVuRoqfwHCc0rSjcXsKBvsKVe1VHVCFL5ru0ZJWxV-1sLshvQ82YnD1DaDOj4uP0NRnuZjrZhQlBQWfK3UTCObw','Rebecca V was very fast to get me through my paperwork and get treatment. Cat and Remington were extremely helpful and considerate. Stephanie and Patrick did a great job! Dr Kimball is my favorite doctor. He always manages to find the perfect way to explain what’s going on in and understandable way. Great staff.','2020-03-07 04:54:56.092000','2020-03-07 04:54:56.092000',5,'Ty Fox','https://lh4.googleusercontent.com/-J5zK9YrMCcs/AAAAAAAAAAI/AAAAAAAAAAA/LSRURL6VYZ0/c-rp-mo-br100/photo.jpg','16590124370714063921',21034),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkZI3l7d6bcdvM2S5SBd8Qc2NSc5urFUNsjxXAYxGFd0DfK3CQUW_kvHM5_DuE-i-W8R2-HgjcHLhcbWcBbTJ5ZTMEe54',NULL,'2017-10-28 17:15:14.014000','2017-10-28 17:15:14.014000',5,'alexia burks','https://lh4.googleusercontent.com/-9OGLQL3Z3KA/AAAAAAAAAAI/AAAAAAAAAAA/1mXAOXaA6Dc/c-rp-mo-br100/photo.jpg','3511292162159714121',7768),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkzqq_O9q1zkXGI0LwrJEnDuHP_EFRXR3-PWBgQmuEo_X7sahjHBue3yoEHlnLYjAWLCwLmHnBI_KQb4Cqijm3du7GdNE','I absolutely love this ER. The staff is amazing and shines so much light during the darkest time! Tanishia makes you feel like everything is going to be okay from the moment you step in the door. I will definitely be back if I need to.','2019-11-27 06:30:37.370000','2019-11-27 06:30:37.370000',5,'Deja james','https://lh4.googleusercontent.com/-Gxu-TxVZYEA/AAAAAAAAAAI/AAAAAAAAAAA/PfbYSuYhPlI/c-rp-mo-br100/photo.jpg','17898197009688164559',5400),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkZunNPN6OBv_dQOf_Efm1gcLT10tcCKrX6mhNgN6sMHcSpa3Iw6-R4P9MYkG-3WP1T7ofxyCflsfV6Ku691MFjl0EE5c','This is a very clean place with nice friendly smiling faces. I usually go to the one on Hwy 6 but this one is closer. The service was great, I was seen pretty quick and I am pleased with the care I received! Thank you!','2019-12-31 09:32:58.411000','2019-12-31 09:32:58.411000',5,'PJ Norseweather','https://lh3.googleusercontent.com/-3qTzbgRFSlM/AAAAAAAAAAI/AAAAAAAAAAA/9V4ACOhJ5ZA/c-rp-mo-br100/photo.jpg','12541597562633926366',279),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkZxj_shpAS6gF6nvDXaEtUrC6FMGmHVJY4fiEaxOuvwrgPsUGicCHFbTmjqk7vNnf38fRVWgldR2egy0LJKwo8fIMGyc','Absolutely the very experience i have ever had going to the doctor. The staff here is phenomenal. The nicest people that you could ever want meet and have taking care of you. I can\'t believe this place even exist. I will never go anywhere else. Thank you all for everything.\n\nShain Hardin','2018-05-24 17:36:04.567000','2018-05-24 17:36:04.567000',5,'Shain Hardin','https://lh6.googleusercontent.com/-ONlCfEvDIh0/AAAAAAAAAAI/AAAAAAAAAAA/Z8_QI5OqQ10/c-rp-mo-br100/photo.jpg','16891069708558046635',4473),('AIe9_BH3gZxYpIxBZcqAOO5HuBVkZXkCuxBEJr-7yNtVGwG7uymuaEQN6kgUhgyUvRV7lR2A1cKH_IwYZwiFrKjaYjct03TQHLBhKAbzvdqZ_gtBSQQl7vk','Updated review . .\nOn May 03 went in for chest pain left side. The staff went into immediate help mode. At first I was nervous but the staff was quick to make me comfortable. Lots of test and his later I was released. My pain had subsided some. Overall, my experience was 4 stars. Not five stars because I left still not knowing why I had the pain. \n\nA Previous Review .. I experiencing great pain and discomfort when I went into the Emergency Care Unit. The doctors and nurses and waitstaff took very good care of me and my son who went in with me. I had a bad reaction to some medication while inside of the emergency care room but they took very good care of me and allowed me to get a little better before releasing me. I just wish I could have stayed longer until I felt completely better. I pray I will not have to go back anytime soon but I am glad they are their if I need them. And I would definitely recommend SignatureCare Emergency Center-in Mission Bend to all my family and friends.','2018-05-04 18:24:30.996000','2018-05-04 18:24:30.996000',5,'Pandora Sparks','https://lh6.googleusercontent.com/-e0IvnUgQU1Q/AAAAAAAAAAI/AAAAAAAAAAA/XgOdK8Bk_MM/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4854),('AIe9_BH6jcgYulolfCVTXKsexALU_KKCt8On9dLdMQXWsW5Jn3Hln30bZjCQxhNFJdfIHmlFAwq9AHTRSdlfoZV7Bvw7tC44auC-WBfSYAGOp4ZhpW8_g0M','This facility is fantastic. It\'s been a while since I\'ve needed to make an urgent care visit (thank goodness), but I\'m glad I stumbled across them (literally). I was riding a BMX bike and unfortunately ate the ground. I was unable to get this excruciating pain to subside in my ankle/foot so I googled an urgent care. I came across SignatureCare and all of the other fantastic reviews so I decided to call. Considering I do not have insurance, I needed the lowdown on how this would work and around how much it would cost. The receptionist that answered the phone sounded very sincere and was extremely helpful in answering all of my questions. I ended up stumbling in a few hours later and was immediately greeted and helped upon arrival. I was taken back to a room within minutes and had 2 nurses helping. The doctor came in within minutes after taking my vitals. Soon after they decided I needed and x-ray. I was able to make it out of there within an hour or so with a prescription, crutches, a wrapped ankle, and subsided pain. I only paid $300 (without having insurance). I can\'t rave enough at how tentative this staff is and how quickly they were able to make me feel a million times better. Thanks SignatureCare and no offense but I hope I don\'t have to see you anytime soon! But, I will definitely recommend anyone to this facility who is in need.','2017-07-16 04:15:55.489000','2017-07-16 04:15:55.489000',5,'ashley cooper','https://lh5.googleusercontent.com/-FaMd_xtRoSo/AAAAAAAAAAI/AAAAAAAAAAA/ldw4ZtfJiNs/c-rp-mo-br100/photo.jpg','14567670160750071148',1793),('AIe9_BH6jcgYulolfCVTXKsexALU6VUuaW3xNclllc7a7JDpn84e0Y0cnUUKTyHho4y-XaxFpuvrq6PP6zyPMYjRxVfVmNB76Zebv7XwB-4VkM23F4JbKTY','The whole team was on it, making sure everyone is safe and taking precaution measures as far as Covid Testing. Nurse Sam explained the whole process and made the process easier. To The Dr you have a wonderful and awesome staff and love how everyone works together!!!','2020-07-19 17:39:07.787000','2020-07-19 17:39:07.787000',5,'Francisca Fierro','https://lh5.googleusercontent.com/-K80HgeIG94w/AAAAAAAAAAI/AAAAAAAAAAA/2b8-BQ9mjAs/c-rp-mo-br100/photo.jpg','14748677429039074158',21706),('AIe9_BH6jcgYulolfCVTXKsexALUBL2VtPN1qnxt4IixBEaqSf3PqQnNWdmqhoytvIQYBsyYYKV1mRuPaRdGc3zERQPrZu7v2ZPJlLFTIzvt0s3hWY7dDXQ','Great service!!!! I was in and out in minutes!! Rene was GREAT!!!!','2017-02-28 07:08:49.986000','2017-02-28 07:08:49.986000',5,'Aryanna Madison','https://lh6.googleusercontent.com/-KMrMqp93JVI/AAAAAAAAAAI/AAAAAAAAAAA/kdw1ejb5G6Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7865),('AIe9_BH6jcgYulolfCVTXKsexALUddlzY_VXSpKgRBRso9PAr0-A5ayeT9BRNsyWTRn94_fQeFQ-B5EIvjfEhQWCwnt0wJI_LHJjO4D5767B76RCtKKuhtQ','Great atmosphere taken care of fast Dr Mauldin and the nurse Jose and all the staff were alot of help','2019-09-09 04:30:29.648000','2019-09-09 04:30:29.648000',5,'Itzy Leyva','https://lh6.googleusercontent.com/-aB3VUb-7i9c/AAAAAAAAAAI/AAAAAAAAAAA/IxJiP4fFMNk/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',838),('AIe9_BH6jcgYulolfCVTXKsexALUEEWza2ohyS4ANvFD5ejyE7D5-cd-RxH1I8efoN3rAoh9DMZFU84f8NISEF2qfhMuVok04BCQYZ3rJiTpTlwRa96Z1z4','I came in with my son in pain and there was basically no wait time for the doctor to see him and I was surprised there was not much paperwork to be filled in, which is a good thing of course. All the employees were courteous and very informative. I am glad I went and will definitely be back in any future emergencies.','2017-06-16 14:12:15.804000','2017-06-16 14:12:15.804000',5,'Elizabeth Flores','https://lh5.googleusercontent.com/-qi7CEcn-ITw/AAAAAAAAAAI/AAAAAAAAAAA/BCuMtZ5LY8U/c-rp-mo-br100/photo.jpg','8918455867446117794',9389),('AIe9_BH6jcgYulolfCVTXKsexALUgpbwIUnoJ93NDeMOJWSanOsE_3LM5JPhQ43ojIEJKgmScJ20XJuih54jbCYpWb1QmL-OrtT7bpiNQer3WEZ3WVJzQRk','This is a wonderful facility. Everyone has great bedside manner! The receptionist was very welcoming and I had no wait time at all. Dr. Miller was extremely helpful and patient. He and his staff answered every question I had, made sure I was comfortable, and took great care of me. The facility itself, is very clean and decorated beautifully. It\'s a very relaxing environment, which was awesome considering I was in a lot of pain when I arrived. I will definitely return if I ever need urgent care services again. I highly recommend them! Thank you Signature Care!','2018-04-11 12:22:46.298000','2018-04-11 12:22:46.298000',5,'Mychon Deslandes','https://lh5.googleusercontent.com/-PXZfNUK-NN8/AAAAAAAAAAI/AAAAAAAAAAA/xuxIWr9P6TU/c-rp-mo-br100/photo.jpg','3511292162159714121',7710),('AIe9_BH6jcgYulolfCVTXKsexALUgxlqVd8OPq6LYhVfvUaEP7AqWwrzqV2RA-_r4CZao5MAlC0U0nQX7Awcdx8gvrztHPrCDAE64AUhesvdQKrM3NUsGm0',NULL,'2020-03-16 21:46:38.388000','2020-03-16 21:46:38.388000',5,'Cookie Erickson','https://lh3.googleusercontent.com/-TADC1zQYML8/AAAAAAAAAAI/AAAAAAAAAAA/ENk4ARVrvIk/c-rp-mo-br100/photo.jpg','16891069708558046635',21048),('AIe9_BH6jcgYulolfCVTXKsexALUhrCEGBgEfDe3ifn_WtsChEilANXDKdccVLBj24UKAt26aeMEK3NvgO-14JxDfpup1kwRpE1AGHn49ljPR0kEpia8cVA','No waiting time and good work done and exprience doctors with professional behavior.','2019-11-07 15:00:09.017000','2019-11-07 15:00:09.017000',5,'Syed Ali','https://lh3.googleusercontent.com/-lxGSvKdCzCI/AAAAAAAAAAI/AAAAAAAAAAA/4sykZNSkt0E/c-rp-mo-br100/photo.jpg','17394740196501090048',14077),('AIe9_BH6jcgYulolfCVTXKsexALUiuBJwV1mBI1LYGaeFHCjIcXBrIvjWcgE2mzoAnmbkWtRp-eNoys0k1_PlCOLQN2n7X24U2QgvYBcc_ZluD9gqOS70E4','I habe been to this loctloca a number of times due to a very long list of health conditions. I have always been very impressed with the staff and every Doctor i have had the joy to be treated by. Unfortunately I came in this morning expecting the same welcoming experience I have always had. That has not been the case.. Today unfortunately I was sadly treated as if i was a criminal and or drug addict looking for Narcotics. Dr Grinbaltas is the most airigana, incompatein and unedgucaun Doctor i have ever had the opportunity to come in contact with. My symptoms are inflammation, exxesexce diarrhea, migraine, pain, vomiting and dry mouth obviously due to being severally dehydrated. He assumed I was only in for Narcotics and refused to treat me. Like i said I have been to this location a number of times and always had a wonderful experience. So my advice is NEVER SEE Dr. Grinbaltas. I am appalled at his overall attitude and lack of communication and education. How he still is employed is beyond me. I warn any persons who have the unfortunate bad luck of him being on staff when you depend on Doctor\'s to help you in time of need.. I can only hope enough people make complaints and he finds a nother location to insult and make inncorrect assumptions. He is a joke..','2018-06-24 16:22:04.615000','2018-06-24 16:22:04.615000',1,'Lindsey Lee','https://lh4.googleusercontent.com/-jT8xPZC4RwQ/AAAAAAAAAAI/AAAAAAAAAAA/36TIiW5EuE8/c-rp-mo-br100/photo.jpg','17394740196501090048',4837),('AIe9_BH6jcgYulolfCVTXKsexALUk8veOcxoNYV_4UMFsfnxRTElwxKaSThJnDSmNmX1YdpQpHBuTErTO1pVW_VQpLyzvFuvxEuGzWzbpaGRu-ZrUhXFQRo','Dr. CAVAZOS\nNURSE BLAKE\nRAD TECH SON LE\nREGISTRATION DELICIA\nWere all great people I enjoyed visit with them all','2019-11-19 14:10:29.375000','2019-11-19 14:10:29.375000',5,'Sexy red','https://lh3.googleusercontent.com/-Z45sjAajX3c/AAAAAAAAAAI/AAAAAAAAAAA/w_fSND0fYXg/c-rp-mo-br100/photo.jpg','8679688254631342173',8720),('AIe9_BH6jcgYulolfCVTXKsexALUKZbE_c8LCBufd4PM9BBpnwvf27txkEl1BqtrO--xBRfbGHVX2lq2xmM9ILKLDoto0JUHVsDZIPKyF4KKJSjgXnAAvrg','Dr.Yabarra, Delicia, Duke and Waldo were a great team to have! Made everything quick and easy for me!','2020-03-18 17:02:25.437000','2020-03-18 17:02:25.437000',5,'Haley Bowl','https://lh5.googleusercontent.com/-DDkWeQIZN98/AAAAAAAAAAI/AAAAAAAAAAA/FjJjgfCpDys/c-rp-mo-br100/photo.jpg','8679688254631342173',21207),('AIe9_BH6jcgYulolfCVTXKsexALUMUS-_aY5f5hXkUXQLezo0ObjFgzHL0BLnocf781kPf20ySAztffBFXVlUyqtMrkaR-QLCn4anUxagy1EFCDN7W8igck','Tobie eric and mollie are the best ever. 10 out of 10 would get sick again.','2020-01-28 04:43:59.211000','2020-01-28 04:43:59.211000',5,'Donald Williams','https://lh6.googleusercontent.com/-yXl3LgSRap8/AAAAAAAAAAI/AAAAAAAAAAA/qFrbLJbcYZQ/c-rp-mo-br100/photo.jpg','3272657195432704501',10269),('AIe9_BH6jcgYulolfCVTXKsexALUqwbcTsL1M3Y7s0KuuFn-jqgYkcbzj6uSHhOJ26_e50XyBBAWQB6e1OomqQI-vZE28Kp3PhfxyVHbLkJQu21KSgbo6u0','Dr. Wang was super helpful and understanding. I was looked at in a timely manner and the staff was extremely sweet. Ashley at reception was very helpful in getting me signed in and made sure I was comfortable in a wheelchair before being taken back. I definitely recommend this place!','2019-08-14 19:11:48.702000','2019-08-14 19:11:48.702000',5,'Radha Khetpal','https://lh4.googleusercontent.com/-QfuBCnAWoCQ/AAAAAAAAAAI/AAAAAAAAAAA/acgPrtV2S6g/c-rp-mo-br100/photo.jpg','17898197009688164559',5586),('AIe9_BH6jcgYulolfCVTXKsexALUtmyLejp06HViUpBqNMcXGIx2HlKnWDGPw8hQ7ZYQYrPbZdHuZAvFl7-vua59vQ99DPtnUDffQDpqJ4wv1U9og-48shY','Great experience here at signaturecare emergency center great staff as well lots of help from Nurse Rollie , Natalia from radiology & Stephanie over at registration 💯','2019-09-09 00:33:44.843000','2019-09-09 00:33:44.843000',5,'Jose Razo','https://lh4.googleusercontent.com/-sjeU31ZfJ-Q/AAAAAAAAAAI/AAAAAAAAAAA/xvffF3Jy6oQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8807),('AIe9_BH6jcgYulolfCVTXKsexALUUzSm-9iR-cazH-pgQcf-zymm3t1_EHEJZvL5S18jnY1AtB1vgvJkezCu2gBktjc_jcJmfkvzMWBQJPeaSB4FD1cOhME','Very friendly and caring staff. I had to have Covid-19 testing for work and it was a fairly quick and easy from start to finish. I would recommend this place for not only testing but also for other emergency needs.','2020-08-14 14:51:35.593000','2020-08-14 14:51:35.593000',5,'Kimberly Brown','https://lh3.googleusercontent.com/a-/AOh14GhZ6bCMYfUp6dZOtfGlLPgBeWzVy9apsWSfaEw9i8U=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BH6jcgYulolfCVTXKsexALUYnbN9ZMinsw3BwUQzeOtfspl6v_a7EEaBmSlNwcI_r-CC4377MOSko3F1VOVqPbtuSRQD58yojxQYty5p8LHy6IePFU','All the staff was great!','2020-08-02 14:27:36.399000','2020-08-02 14:27:36.399000',5,'Nazly Martinez','https://lh3.googleusercontent.com/a-/AOh14GhBX9PBh53SJeKrNql6KeFNICi07KmnPzMPOf-D-A=c0x00000000-cc-rp','6521947413723274945',22197),('AIe9_BH6jcgYulolfCVTXKsexALUzs2QYO87OmX5rWjzyhLB9NRP-eZQPRKBeuY2G2shgqeoM3I2Zb5n7LVPE1ZGS3HL_0r8DowUV0ilAhTkQXmMxRZ26rs','There was no wait time and the staff was very friendly. I would suggest this new clinic to any of my friends and family that live in the area.','2016-05-16 19:27:43.750000','2016-05-16 19:27:43.750000',5,'Steve Ball','https://lh5.googleusercontent.com/-EhIN_CMsTs4/AAAAAAAAAAI/AAAAAAAAAAA/zqgqt1Pa1Z0/c-rp-mo-br100/photo.jpg','14567670160750071148',2034),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0_mHPF9_SeIOqAhe4uOgvyrQzqAnSd64mVNncAM2uSYYAb9LmXOrWVBiznE5B8GbJE7vcqGzSNW_w5Z927MdQMAGvBNg','awesome service! In and out!','2016-08-18 12:10:23.905000','2016-08-18 12:10:23.905000',5,'Brian Davis','https://lh3.googleusercontent.com/-q7QehI2E8YU/AAAAAAAAAAI/AAAAAAAAAAA/7IsdcI1HKzY/c-rp-mo-br100/photo.jpg','14567670160750071148',1990),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0_pFtxGzLX8m5tsUjoG7puE3fBjS-szTkzMLd5RcQLpTKypFNOewXZK9ZqICc3xh4oVmewEfjKdIW83VrvqiwdCMzD4k','Staff is friendly and caring!!','2019-05-15 16:57:56.726000','2019-05-15 16:57:56.726000',5,'Marisol Tijerina','https://lh4.googleusercontent.com/-r3JO3wEkmVM/AAAAAAAAAAI/AAAAAAAAAAA/9QPXnNcZdOc/c-rp-mo-br100/photo.jpg','6521947413723274945',8281),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0-2ie1B8BlwdIy75Zh8eiFqV3dY_WYZ4poo_Of_1gVDDbEvdVUpm_rjZ0Z5vFuAHIF79r46KbjKS2rYl82zKZ2IoycZA','The service here is exellent I\'ll recommend anyone. Mya was very helpful she has excellent customer service.','2019-12-10 19:27:47.818000','2019-12-10 19:27:47.818000',5,'Coco Handy','https://lh4.googleusercontent.com/-oeBUigdSCSI/AAAAAAAAAAI/AAAAAAAAAAA/QMEEO8SAfcg/c-rp-mo-br100/photo.jpg','12541597562633926366',355),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0-2VXYcW22UxGs_oY6T321RuFi56wPUfoE8vX6kFq-SFWoHYdifCZGSncrn910JDihMKLAC0uWD-SAy-76GjOWEUPEMM','.I received excellent care at sigaturecare emergency center. thank you vanessa g , meredith s, andrea, Dustin h, and dr dang hung','2019-12-28 03:56:59.513000','2019-12-28 03:56:59.513000',5,'Vanessa Clemons','https://lh4.googleusercontent.com/-q2thSpIPoew/AAAAAAAAAAI/AAAAAAAAAAA/OI4FRyX4tF0/c-rp-mo-br100/photo.jpg','14567670160750071148',1154),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0-AvbOVHSbFHlZE_4BsYUq_oAIABbXcLVDlpuCKveEEBUjZvK04qU6w5ZlLWgHWYWpoqSPGKHXaU2nYMyl1BPW8Jeozw',NULL,'2017-06-19 19:26:31.189000','2017-06-19 19:26:31.189000',5,'Claire Rhode','https://lh3.googleusercontent.com/-2DcTYTRIvaE/AAAAAAAAAAI/AAAAAAAAAAA/q7tTjOLJwRM/c-rp-mo-br100/photo.jpg','14904078213800803294',2346),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0-n25qGTae1bkBJZZRwT32483iSbyjTzsy07mGh3hOqBzPKAcGpnBn-taXYYcop6kk0YN1uW-uyfQOvGlweU_l-t2IXA',NULL,'2017-03-21 00:08:18.663000','2017-03-21 00:08:18.663000',5,'Maria Marti','https://lh3.googleusercontent.com/-XuWrmzh1AeM/AAAAAAAAAAI/AAAAAAAAAAA/VeQx6tbq_NM/c-rp-mo-br100/photo.jpg','17394740196501090048',5089),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0-yiORAl2I-_A5yqR2QFV4dIQlWiTYgatLDyL8mkOWpkxCN_YoCSOInb_tStKm-CmmwkeErtP2QgKj8kl1BMn0HxI4A0','The staff at the emergency center are very professional and they really helped me feel at ease with the whole process. I didn\'t wait long at all and I got out in a timely manner. Very awesome place!','2017-01-08 07:18:58.983000','2017-01-08 07:18:58.983000',5,'Whitney F.','https://lh5.googleusercontent.com/-wG2X3rdO5fI/AAAAAAAAAAI/AAAAAAAAAAA/3F4rZ7O-_Es/c-rp-mo-br100/photo.jpg','17394740196501090048',5136),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0-yusdoV9SO0O2oV_Tr6O6j7sYL5AvARBzKwEJczXN9kqyxoQzJN-G8UsGKkAuDVOhaHj01zxspucoJLLZWTEvoKCHqo','Wonderful experience, very fast and welcoming. Jessica S took care of me at the front','2020-02-14 16:05:32.157000','2020-02-14 16:05:32.157000',5,'Maria Parga','https://lh4.googleusercontent.com/-Ljws7r3xIeQ/AAAAAAAAAAI/AAAAAAAAAAA/5dkAPfN7UmU/c-rp-mo-br100/photo.jpg','6521947413723274945',14576),('AIe9_BHAFUK2tNBZL25dLQ0jVdh001Kb12NP0q9jk00Gn5wVuKIXj3q1NIOokGwgdH8fgKS3quTuszU3Q5BjciOpMjDedtxDLkMlXwzz-NArJlkoaDwXDkQ','Everyone was reassuring, kind, caring...not only to me but to my wife, as well. I\'ve never had such a good experience under such stressful conditions.','2016-07-22 15:06:18.107000','2016-07-22 15:06:18.107000',5,'Karen Cary','https://lh5.googleusercontent.com/-eEPLSh4dmxE/AAAAAAAAAAI/AAAAAAAAAAA/vE92KeBue8o/c-rp-mo-br100/photo.jpg','17394740196501090048',5223),('AIe9_BHAFUK2tNBZL25dLQ0jVdh006LT2qQSw4AGOeBDUeWhgyRsofhA-hZnE1O8sCQ1q_AAgiT-RGI3gFfsZ2ZBAd9OcAHOc4lzU9w3aGGbso88WuznAsg','The people were very kind, attentive, and answered any questions that I had for them. However, after I was clear of a diagnosis I didn\'t receive any written instruction or advice on what to do/what medicine to buy for everything that I was feeling... felt a little confused.','2018-02-03 18:27:24.528000','2018-02-03 18:27:24.528000',4,'Katherine McCrary','https://lh5.googleusercontent.com/-AaR_SyC5QWQ/AAAAAAAAAAI/AAAAAAAAAAA/Was0-bbpK7Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3869),('AIe9_BHAFUK2tNBZL25dLQ0jVdh00udhjfiaJEpdqyTkqIhnNKOgPUdZuSXHks8KKT5RYGzwiBmMnvE70w2Q_YtxBSjTUj1d90EZV1chJLKzkL9ybLZsv9g','I had a great experience a couple weeks ago, great nurse named Lisa V. She was kind, listened to my problem, and helped me how she could. She actually offered me a pillow and blanket, most places dont care. I appreciated her very much! Dr was caring and listened as well, I believe they deserve the 5 stars.','2019-06-06 16:51:23.939000','2019-06-06 16:51:23.939000',5,'Tiffany','https://lh4.googleusercontent.com/-20NMB5Ot2gI/AAAAAAAAAAI/AAAAAAAAAAA/4aT6EVOYDpQ/c-rp-mo-br100/photo.jpg','13486358490203335051',990),('AIe9_BHAFUK2tNBZL25dLQ0jVdh00wWApmQw1MD1thSkIYWQ08zEUTl2DnzrEpl65FSl4MDg6RXKiK3wY3dOiBzyFwgt0kvdYxcM7BmL_Fd9gKLHzGugpRs','Great service. Got great help from Alvean and Patricia!!','2020-02-09 17:12:34.419000','2020-02-09 17:12:34.419000',5,'Rajesh Vasanth','https://lh4.googleusercontent.com/-V_pGOBm76Zg/AAAAAAAAAAI/AAAAAAAAAAA/_Mj2o6nZ-SA/c-rp-mo-br100/photo.jpg','16389487648212004696',22599),('AIe9_BHAFUK2tNBZL25dLQ0jVdh011ZsynRtYdVNLAIoG1HWpcD4zuGKh-UPobJjoOqsSyhJqAqAf96O3FJ7e9Pl7PBBl0-9rvBlNlrK60D7FV_oVQMonaQ','They told my mother she didnt have an emergency they saw how dizzy she was didnt even touch her the nurses including doctor stood on opposite side of the room and asked my mom questions for me to translate so they could rule out what was important or not after asking a million questions they deemed it wasnt an emergency and asked for 2,000 dollars on the spot just to give her blood work and get her hydrated ... well it turns out she was about to have appendicitis her appendix was going to burst had i listenened to what the doctors and nurses told me my mother would not have been here alove and well only after i brought her back home did she continue to complain about her dizziness and later around 2 am woke from the pain of her appendix having slit open i will NEVER trust this ER place they did not care for someone who was dizzy and pale didnt deem a necessary emergency very unprofessional very dissatisfied don\'t go here if you dont want to get lied to and be forced to pay money ','2017-05-14 22:04:06.586000','2017-05-14 22:04:06.586000',1,'Kevyn Gonzales','https://lh4.googleusercontent.com/-GMZVeb1FjN0/AAAAAAAAAAI/AAAAAAAAAAA/ywAGjlSSrkQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5054),('AIe9_BHAFUK2tNBZL25dLQ0jVdh012fLYHYw1_RlE0STqLZAiG-GO6XR5tSQ4iStZbnWRu5xSNtCYdnl4qSaCATe3fCoPtZ5CCVscBoRTckaubjC0lqkwhU','What a lovely Staff!! Treated me well! Thank you Dr. Thomas RN Laura and ER Tech, RAD Tech Jacque and Brittany for all that you have done today!!','2019-01-08 21:15:54.817000','2019-01-08 21:15:54.817000',5,'Gerry Trevino','https://lh3.googleusercontent.com/-I-4cghO8CMg/AAAAAAAAAAI/AAAAAAAAAAA/Z9Z1xUUzX3U/c-rp-mo-br100/photo.jpg','3511292162159714121',7506),('AIe9_BHAFUK2tNBZL25dLQ0jVdh016Zqm6wbFGovfccQNlauvyWm3bjegquTBzRSQLhjYJp1GcM2o64q9qTNMy9_2ZzYrs2YBpyj6QHou_86xrMumAOTyiI','Everyone was very nice and attentive! They asked me several times if I had any questions. The only little glitch was they had the wrong date of birth on the radiology paperwork. I would go back if needed.','2018-12-26 16:47:43.337000','2018-12-26 16:47:43.337000',5,'CAROLINE REESE','https://lh6.googleusercontent.com/-D9PaP0l8VDM/AAAAAAAAAAI/AAAAAAAAAAA/UcH1MQMAODE/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5903),('AIe9_BHAFUK2tNBZL25dLQ0jVdh01fNHOONoOsfn9v3damOwWALAtzE307n26f7PNpKDhhFNiUQSrz6uNJLSTJRbgGJpWmjaPafKanT1O6zGW8b0LFhJbqE',NULL,'2016-06-18 11:06:32.869000','2016-06-18 11:06:32.869000',5,'Kanti Bansal','https://lh5.googleusercontent.com/-IjfEFPacmp8/AAAAAAAAAAI/AAAAAAAAAAA/5BicaH_uqVM/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2481),('AIe9_BHAFUK2tNBZL25dLQ0jVdh01lp8yhYhpYeKZp5NiI3Gdflr9SV3KHIzpQ_kdZ_xa6zlMKzoBgzzzFZjS514stvfMAs9o9rNkpGhcrc5FP7U38bsBXg','Very good staff, well kept facility! Very friendly staff and caring! Also fast service. Wait time isn\'t long at all! They try their best to work with you.','2019-06-25 21:11:01.617000','2019-06-25 21:11:01.617000',5,'Enthany Cook','https://lh3.googleusercontent.com/-0nBvj1V62Fc/AAAAAAAAAAI/AAAAAAAAAAA/V9UWo1AuIkY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh01SXHPLF6rrkyiPkDDe3vrQk8DotE2FWs_k37Bx4W2X-U-8DDldeY6IezuLnSJSNjsAR3-SWT9hqVu4cur8_Dxa3-mF4','Wait was a little long but it was definitely worth it. These people are doing a great job at giving updates. We really love what y’all are doing. Great job!!','2020-06-12 18:08:49.387000','2020-06-12 18:08:49.387000',5,'Peyton Atchison','https://lh3.googleusercontent.com/a-/AOh14GgbB2a6r70V7Uh-m5J1BPIdCU8uB3K611xOZnsZXg=c0x00000000-cc-rp','16891069708558046635',22047),('AIe9_BHAFUK2tNBZL25dLQ0jVdh01x0jMWe9WVHOfTesplab1NpQkRnOIjAWza9_w6UAgFfSpvjUwHKDoN7MyvKU_7KocDkSJnJJ1IFZC9sHueauPdoJnDk','Friendly staff, tidy premises and good quality medical attention 👍','2019-06-11 02:45:44.493000','2019-06-11 02:45:44.493000',5,'dheepikA ravi','https://lh4.googleusercontent.com/-SGaGp0S5PoY/AAAAAAAAAAI/AAAAAAAAAAA/RH-iFUq3hIk/c-rp-mo-br100/photo.jpg','8918455867446117794',9130),('AIe9_BHAFUK2tNBZL25dLQ0jVdh023J0sDY37j3cSCw88aAAqnvgsLrGslMlPDDGvEeqtO-rLl8fg_3gSGUTC2be5uy5Qv9sSJFUBoCaJZ3NJeDDZOiwdNo','My family and I came to get tested for the Covid-19, and we were introduced to these two lovely ladies named Jessica, who came to us in a very timely manner. Also we were greeted by Gabby who was very helpful! These wonderful ladies were very sweet, and I highly recommend coming here during an emergency.','2020-08-02 20:48:31.289000','2020-08-02 20:48:31.289000',5,'irisss','https://lh3.googleusercontent.com/-TqQXGoZcgmw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn0Qr5dnHOHkTOc_lVqRU6BEFivnQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22190),('AIe9_BHAFUK2tNBZL25dLQ0jVdh02lRYikkya5GXGfVSKwTsSnBOqhFsvQI2Lya85mRdIYbEmTcdGBfYPNS5ntsmUJD7Y7KYCNwDJ60b6D0PoaczUF9vEgI',NULL,'2019-06-03 22:19:00.459000','2019-06-03 22:19:00.459000',5,'Sierra South','https://lh3.googleusercontent.com/-92RINDZuI4M/AAAAAAAAAAI/AAAAAAAAAAA/N4n9ew8h1vs/c-rp-mo-br100/photo.jpg','16590124370714063921',3368),('AIe9_BHAFUK2tNBZL25dLQ0jVdh03cPWOGK6x9PhW8VeBn5q5PCfv-uIo5J1JtnWQJnYaXhue2XvvMNyx049Wwhn4CAAcNMtKB4wtr8yLUmvUBxjeaXaFpI','I have never loved an emergency center so much! The staff was lovely & kind to my 2yr old they even assured him that the visit was for mommy. Er Tech Nichole was just the best so sweet & Rad. Tech Lonnie too was just very patient in assisting me with my little one while gettin x-rays. Dr. Herman was also kind and very professional not at all dismissive he listened & just the whole process was quick & great definitely coming back if we ever need to!','2020-02-06 17:07:30.894000','2020-02-06 17:07:30.894000',5,'Nazareth93','https://lh6.googleusercontent.com/-BQDevOY9DEs/AAAAAAAAAAI/AAAAAAAAAAA/r8wOGfRCiKg/c-rp-mo-br100/photo.jpg','8918455867446117794',14844),('AIe9_BHAFUK2tNBZL25dLQ0jVdh03fkEt3d2a2DHP91oDiiVvz4VcsRTLlN89qqsP3ntubgqcS2GOXK0o7mTi0lHS0ExqgISGq7k_Id3YnMEOjfBovJtUTU','Alevean , Jocelyn and Traevis were all awesome.','2020-02-05 22:41:12.097000','2020-02-05 22:41:12.097000',5,'timothy townsend','https://lh6.googleusercontent.com/-K5w6bLzxIck/AAAAAAAAAAI/AAAAAAAAAAA/Ea1eL3ivBao/c-rp-mo-br100/photo.jpg','16389487648212004696',22625),('AIe9_BHAFUK2tNBZL25dLQ0jVdh03NCefxI15oO5rnknEZmM_e8V4e-eHJu2_VEqvvOCbE9lYEhCj6eVpJcUgyqQBHznh5oIG7L5CQtBXu7lOe_xwOis_QI','Very welcoming staff and doctor! Kimberly, Kelly and Stephanie were so friendly, and attentive. Nobody tried to hurry me out, even though it was not an emergency. The doctor gave a thorough explanation behind his suggestion of remedy, and shared very valuable information. My expectations were blown away, and I would recommend this place to anybody needing similar care!','2017-03-19 04:23:19.015000','2017-03-19 04:23:19.015000',5,'Jenny Thompson','https://lh3.googleusercontent.com/--oBEi_d5gjU/AAAAAAAAAAI/AAAAAAAAAAA/T8J8md9q080/c-rp-mo-br100/photo.jpg','16590124370714063921',4030),('AIe9_BHAFUK2tNBZL25dLQ0jVdh046ExxpkkWNeyEiUGXW-q-7qU8ygAxeChATULYHnC7CjkHq2nMACUjeKJ_MJ2migBynVq4f6zMMY82cgZC6gLyFXcO68','Fast service and very nice doctors','2019-07-29 17:19:58.000000','2019-07-29 17:19:58.000000',5,'Christopher Lofton','https://lh4.googleusercontent.com/-zOCe87hcxb0/AAAAAAAAAAI/AAAAAAAAAAA/XPZEwGNySI0/c-rp-mo-br100/photo.jpg','3511292162159714121',7237),('AIe9_BHAFUK2tNBZL25dLQ0jVdh04DnWbNRzsr5KamsavLEMe8PduvUAzzGv4nBpUuNqRXTl3qpxOyHIfN0H0cuBgMvBhh84dHabVsq6NLDRl-21XjDYkTI','Excellent hospitality as ice cold sodas, prompt service and extremely respectful they weren’t able to use my Medicare in here but the lady didn’t mind Elexiss if I went outside and was researching where a emergency care that accepted my insurance located. She was very polite about the whole situation\n\nMmmm','2019-09-01 03:40:11.173000','2019-09-01 03:40:11.173000',5,'Lucas Lewis','https://lh3.googleusercontent.com/-dB2LHthpkgY/AAAAAAAAAAI/AAAAAAAAAAA/yAUT7HKQbU8/c-rp-mo-br100/photo.jpg','17898197009688164559',5566),('AIe9_BHAFUK2tNBZL25dLQ0jVdh04RUoWj8w0l7-MVXoFQ6JEyK6MiGltN01Ihx6lNOtYhHzy_7MFEWTeZ0gFeuxcmrUnKKpLCO0OYi_YSLdCwSQS-okljQ','Super friendly staff. Wait was not long at all . Treated by doctor osiecky and Jose for ear infection and they were excellent in explaining the problems. Definitely recommend and would come back here!','2019-01-16 03:17:17.700000','2019-01-16 03:17:17.700000',5,'Alfonso Gonzalez','https://lh3.googleusercontent.com/-koNBDg6VhTg/AAAAAAAAAAI/AAAAAAAAAAA/68RrytLLgxY/c-rp-mo-br100/photo.jpg','13486358490203335051',1107),('AIe9_BHAFUK2tNBZL25dLQ0jVdh04tsQyF9k3QFJ-C3UUNd2IMvlxF4i-P4IsGHHaLb1SoVOTXFmDUAv8NZU39aERSk5-aYO71NuiVT9XMjrfqrG6dUrBX0','I went there for a Covid test, expecting to take both the antigen test (rapid results, in 15 minutes) and also the PCR (results after a few days), as I had symptoms but had not been contact with anyone with Covid (and had not been around strangers). The staff was professional, courteous, and timely; the waiting room was regulated, with a security guard monitoring/regulating who came in and where they sat; my appointment was on time; the test was performed efficiently; my results were verbally conveyed by a physician in 15 minutes (positive); and the physician (Dr. Nguyen) took the time to explain to me the implications and talk me through my anxiety and shock. \n\nI know that Covid testing isn\'t really what private ERs were originally intended for, but I\'m so very thankful that SignatureCare is providing this service.','2020-07-13 14:27:37.521000','2020-07-13 14:27:37.521000',5,'ayesha najam','https://lh5.googleusercontent.com/-BqcSHJCJZ2I/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmECwp5czpjCW1g64BE_1A_V-3PsQ/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22168),('AIe9_BHAFUK2tNBZL25dLQ0jVdh04UytvUQxRNTX0c_bULyNzhf58_zhm6IKEU2PEIayA4XKMvPIiJnWajy3LjDuXZ2e8jv8-UzaXMI03DC0hiqD4JcRWUs','The entire team was so quick to help my daughter, they were kind and knowledgeable! I will return for myself and other family members. Clean, organized, family friendly, and welcoming! THANK YOU ALL!!!\n\nDr. Wren, Shelley, Heather, and Tanishia!!','2019-02-20 00:55:35.630000','2019-02-20 00:55:35.630000',5,'Valery Square','https://lh4.googleusercontent.com/-cHFFyXGYAlg/AAAAAAAAAAI/AAAAAAAAAAA/F_dihuwGrJo/c-rp-mo-br100/photo.jpg','17898197009688164559',5844),('AIe9_BHAFUK2tNBZL25dLQ0jVdh04XQU0WiNIo8YKUdY1YNHXhU78Iy5t-y6Lm_GXajWVMAS7k8Xt1OgKr88S7r-g7rZHHL0GKeyZeXmlI3Cj9aEvcnHqoE','Service was quick. Nurses and Aids are friendly and nice. However Dr was opinionated and rude.','2020-08-22 22:40:40.935000','2020-08-22 22:40:40.935000',1,'Crissy Davis','https://lh5.googleusercontent.com/-NGiLl8CVb-E/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl1pK3GnMbeGqPmDJTVXSpW0EG1cg/c0x00000000-cc-rp/photo.jpg','2694018788013845459',22986),('AIe9_BHAFUK2tNBZL25dLQ0jVdh05c4lMXMEbSq6jhvLHQw6i9UMO-YW59VKvtqNMaLnEu_22ITRHCySy3uJmVmMwPu7xIhJE-RKbJLFx8oFAJYb5eaYiDk','One of the best places I have ever been to, gonna recommend this to everyone.','2019-03-11 04:35:19.848000','2019-03-11 04:35:19.848000',5,'C H Galvan','https://lh5.googleusercontent.com/-S7mfrmzw6kw/AAAAAAAAAAI/AAAAAAAAAAA/GZME0Ppc_X4/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4714),('AIe9_BHAFUK2tNBZL25dLQ0jVdh05tacrC5VUnOjsel0oEx-SeFZLhqRVZXOw3k7MLHKse5ZMq-37Lm2oR3Ox2qlwzIXwMA9zFsHHwT0q7NT0lgAxh4yGl4',NULL,'2018-04-04 21:02:32.181000','2018-04-04 21:02:32.181000',5,'Kanti Bansal','https://lh5.googleusercontent.com/-IjfEFPacmp8/AAAAAAAAAAI/AAAAAAAAAAA/5BicaH_uqVM/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4863),('AIe9_BHAFUK2tNBZL25dLQ0jVdh05TH2ARSTrFex1RhY_brD-G1e-OVmJYFmjKKxsyegnEc_-1CfZM4QntIerN6TcCtTOBwfWVHamh2Ha2wrGy8Fx8mx-bU','Staff was incredibly friendly, was greeted warmly and given clear instructions on how to fill out all of the information. I barely sat down before I was called in by the nurse Remington to come to the back so they could start evaluating me. Dr Daniels was informative and answered any questions I had as well as let me know exactly what she was doing as she was doing it. Very clear and easy instructions to follow after leaving. As far as ER experiences go, 10/10 would come back again if I ever needed to.','2019-11-16 05:44:27.761000','2019-11-16 05:44:27.761000',5,'Jordon Hildreth','https://lh4.googleusercontent.com/-FcpwkwCYxzc/AAAAAAAAAAI/AAAAAAAAAAA/MSjpIZ00-e4/c-rp-mo-br100/photo.jpg','16590124370714063921',3090),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0671cQoCHTtJ0W5JVv4sNLuYO2dBqL8L7Ab_jXRt-szOXgYML9m36ufwoX4b7P5jdj_GdgHfMzroi6oI2f8o-Hrdu_LY','Horrible bedside manner by Jose. The second star goes to Dr Chambers he was knowledgeable and super nice but my husband and I paid to go to the ER just to get over the counter meds. Thanks crackheads for ruining it for everyone.','2020-02-17 05:10:20.859000','2020-02-17 05:10:20.859000',2,'Brittany B','https://lh3.googleusercontent.com/-_KpUsQ7M9JA/AAAAAAAAAAI/AAAAAAAAAAA/4rpZT-K3YyM/c-rp-mo-br100/photo.jpg','13486358490203335051',13414),('AIe9_BHAFUK2tNBZL25dLQ0jVdh06933T4beJ0MVFHDBrshhGXtqN__wKZAG9j4c0Mmuos30U0M7R9GL8p3MpWNj8Yciz5tlVh7yYEe1LfNIkTiTEfLC_10','My husband experienced some serious abdominal pain and so we rushed to this ER center rather than the hospital. Best. Decision. EVER! Hospitals usually take quite a bit of time before we’re able to check in let alone receive results. The staff was extremely efficient and knowledgeable in their work. \n\nDr. Patel, Alvean, and Tricia,\nThank you for all you have done. You made our brief stay as comfortable as possible given our situation. 😊','2019-06-06 17:34:59.045000','2019-06-06 17:34:59.045000',5,'Christina Nguyen','https://lh3.googleusercontent.com/-OCCRwk0E6vI/AAAAAAAAAAI/AAAAAAAAAAA/9PgjrlZuBR8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh06DPQ60HXZn94WshvpQEeS13iPncqjNUBw1UmB68ItqnqdOBkNvS2VJzC2vT_owhOcz766Nip7MKu7Lfm-UKQg_djv0w','A very positive experience when often times trips to the ER can be scary. My nurse, Krystal went above and beyond to make me feel comfortable and taken care of. I can’t recommend SignatureCare enough. Thank you to Krystal and the rest of the care team for making a stressful experience go as smooth as possible.','2019-03-19 19:10:41.369000','2019-03-19 19:10:41.369000',5,'Brittany Lawyer','https://lh5.googleusercontent.com/-sOH-22VuTbQ/AAAAAAAAAAI/AAAAAAAAAAA/1lDyggIwiAI/c-rp-mo-br100/photo.jpg','13486358490203335051',1055),('AIe9_BHAFUK2tNBZL25dLQ0jVdh07EQ6yegYAMkhTWmlUQ2ClrAoFOzgfAK67q1TN4SUQeAPyhGvx1mGwKkky3qLMY6_5b_AEAdBFtmAEt2fDKSDGi1Rh90','Beautiful facility. No long waits. Exceptional care. Tiffany at front desk was very informative and inviting. Jesse our nurse was great! Very efficient and knowledgeable. Dr. Edwards offered a great care plan and conservative treatment options. Thank you for the great care! Highly recommend this facility!','2017-09-23 17:05:38.841000','2017-09-23 17:05:38.841000',5,'Tassie Chaoui','https://lh4.googleusercontent.com/-5J0-U74KOtg/AAAAAAAAAAI/AAAAAAAAAAA/TsmDbXsjgNw/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4967),('AIe9_BHAFUK2tNBZL25dLQ0jVdh07h1IOpYTmCbDwuIk3CUyQhOe4ZvW-X_F61ImYURII36f2Nopyfvcwlla_zAtxkJMopGqdSVtJP6ynEhUCwoOMbKT47c','We absolutely loved this care facility. There was no wait time of more than 10mins! Great customer service and the doctor was wonderful, he even called the next day to check on my husband! Not even our PCP does that!! Will definitely return for ER care!\nThank you\nRaul & Doris Aguilar','2016-07-09 18:25:43.450000','2016-07-09 18:25:43.450000',5,'Doris Aguilar','https://lh3.googleusercontent.com/-0xc3LaQiohQ/AAAAAAAAAAI/AAAAAAAAAAA/rhMbCSiiYiU/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',2007),('AIe9_BHAFUK2tNBZL25dLQ0jVdh07TgNllaoZHMomW77aX-VtKEhqjB3gSNdeHi8YrE76hIxWGqpD9HnkVUloUboy3J7LEvyv7n0ZvoifW_l-cWwBVjqWd8','The staff was awesome. Charlotte L was one of the best nurses I have had in years.','2020-08-12 08:21:59.364000','2020-08-12 08:21:59.364000',5,'Karma Wright','https://lh5.googleusercontent.com/-2oCDgJMcRFY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmex3ce3OYlIhPUKdRKYbqnsrXmyw/c0x00000000-cc-rp/photo.jpg','17898197009688164559',23063),('AIe9_BHAFUK2tNBZL25dLQ0jVdh07tu6Za7fOn3zZQNm091XTn6OOZa2Sebp2jevfiwN2u7TDbuBQ4DQmEcJTuciePM3V8ziM2f35grfWxAGmNjeicTd5og',NULL,'2019-05-23 06:29:40.394000','2019-05-23 06:29:40.394000',5,'Tasharion Callaway','https://lh4.googleusercontent.com/-nabye5FltEA/AAAAAAAAAAI/AAAAAAAAAAA/twu_VsdcX10/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh07XxyxgB0uFI5u-4f-mUyuGx_rZqq8Zsnk6bx1Ao__he6YIPzr0CSjUyoSMkrnAKlvUx16RTA5HvuttMfmoM6itWezj0','The service is awesome, no wait time from the time you arrive until time to go.\nIn / out.!!! That\'s a 5 STAR to me.\nDr. Yost is the best !!','2019-02-15 02:08:29.424000','2019-02-15 02:08:29.424000',5,'Katrina Blackwell','https://lh3.googleusercontent.com/-70r3HEDFgFM/AAAAAAAAAAI/AAAAAAAAAAA/vi9yQnom3A4/c-rp-mo-br100/photo.jpg','3272657195432704501',7013),('AIe9_BHAFUK2tNBZL25dLQ0jVdh07Yhd1NRkCIqDvTYRIlOnJGlpoBGDepNXuTZfTuyUUm56iWiiyT2NZEFVoPwlnQGJnBJY9hKpB9eTwxR73tKiBHKXfq4','Very good service, fast, professional, and organized.','2020-07-21 17:32:41.236000','2020-07-21 17:32:41.236000',5,'Erykah Elder','https://lh3.googleusercontent.com/a-/AOh14Gid9qpvHpKMPAdvFO5nTvNpXHQeIA8H0lqdakm4bWQ=c0x00000000-cc-rp','14567670160750071148',21879),('AIe9_BHAFUK2tNBZL25dLQ0jVdh08f3D5vPGRo45PR6RWNSNlcIGMvNvKaADt8y3JnV87USYhfUnnSPGdPqb88ta-hFk7JrzsFR14SIwu7UOaTkQ4L4GrcI','Hands down best ER/urgent care/medical center I have ever been to! By far the quickest, easiest and most efficient experience I will definitely be returning and recommending to all my family and friends! Dr. Chukwuma and the nurses Nikaela R/Troy B were amazing, so courteous & kind, reassuring and made me feel totally comfortable from beginning to end I left very satisfied and I only wish I would\'ve found them a long time ago!','2019-07-02 20:16:53.942000','2019-07-02 20:16:53.942000',5,'Taylor Bowman','https://lh6.googleusercontent.com/-PEWwzeIjhYU/AAAAAAAAAAI/AAAAAAAAAAA/uF2jDm7wZpQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh08k_WoiYhKmrGS88ztZOLOTsefp7FjDFCTWzXZa0ny83qDXPcskC_3q32YjJHC--7x79Ra4u4m0wAsKnDN-iHSRZ6Ua4',NULL,'2019-10-27 01:20:15.681000','2019-10-27 01:20:15.681000',5,'Alice Larsen','https://lh6.googleusercontent.com/-YnmsomvS70M/AAAAAAAAAAI/AAAAAAAAAAA/SR11XgvTZI8/c-rp-mo-br100/photo.jpg','13486358490203335051',766),('AIe9_BHAFUK2tNBZL25dLQ0jVdh08KPjsl6vHBQatbzJ7dq6tCku-CZegP_JSyEPeaRqXL8K8jzpuq7qNBR_O8QD4NwngGP8teb6Q3ZWrb3NdUHB3Hr6L-I',NULL,'2017-06-30 20:42:04.893000','2017-06-30 20:42:04.893000',5,'Jaime Meracado Mendez','https://lh4.googleusercontent.com/-2wlacaZPNig/AAAAAAAAAAI/AAAAAAAAAAA/tNy05nh7DG4/c-rp-mo-br100/photo.jpg','8918455867446117794',9383),('AIe9_BHAFUK2tNBZL25dLQ0jVdh08o6zQK9FCsz0L1sx8KTWgxUxSgJ4mBYU0V5KZ9h_xvjeUaLoKcPvNUjLcsZn3EiGcXuuUXs3cVCPv_V_RjaA5YoCbeU','From when you walk in to when you walk out the team of medical professional care about your health and the reason you are there! Dr. Vaagenes, Racheal(RN), Ashley S. and Jessica where nothing but friendly, helpful and amazing. Don\'t see a reason to go to another ER when you have a health issue and need to be seen right away! Kudos to an amazing team!','2019-01-13 16:00:44.578000','2019-01-13 16:00:44.578000',5,'Niki Nikolaou','https://lh5.googleusercontent.com/-7cGyI_rw1eg/AAAAAAAAAAI/AAAAAAAAAAA/AHT8fZFbHao/c-rp-mo-br100/photo.jpg','17898197009688164559',5887),('AIe9_BHAFUK2tNBZL25dLQ0jVdh08o9z76d7Bmx9DgEjL9FdOPVnZC-FjJc8qq0ahW6fQ7WPVAPcP5uIFuP9XdEFzhXsLZW4NXCB6k0btmdiQUGcoB-MWxU','Excellent service and staff. Very friendly and promptly assisted me in everyway and worked with you on payment options. Wait time was very short. Rebecca V. And Dyveliz registration. Brandon W nurse er tech Rebecca w Dr herbert and rad tech Cameron.','2020-03-19 02:35:38.992000','2020-03-19 02:35:38.992000',5,'Sara Thompson','https://lh5.googleusercontent.com/-TkvZdMJOy5U/AAAAAAAAAAI/AAAAAAAAAAA/_qw_v2PVIuQ/c-rp-mo-br100/photo.jpg','16590124370714063921',21023),('AIe9_BHAFUK2tNBZL25dLQ0jVdh08SNUjjhz0UsiphtP-rlMLTWp585dr5CqaL_euMI3ZpuI-45cTxRFX5eEI0J0dMSn2E0ezQ5Y9eUIhYbXK3Oyfj7WIUo','I had great, friendly, quick, efficient service during my visit today! Thanks to all of those who took care of me, Gary, Gunnar, Jaylon, Tracy, Kim, & Dr. Edwards.','2020-02-19 16:25:13.895000','2020-02-19 16:25:13.895000',5,'Mollie Watlington','https://lh6.googleusercontent.com/-Fm-2PzoosBQ/AAAAAAAAAAI/AAAAAAAAAAA/3jI8P7r6Lcc/c-rp-mo-br100/photo.jpg','3272657195432704501',14339),('AIe9_BHAFUK2tNBZL25dLQ0jVdh08uCCnjNfd8TPRO630-UgTbbBMtscMLiCeGMYDWu2wXYSNdvtcRNaPGzsVO0GhIWYp14dHoCeyWOmv7WoEapHYnUCF2g','Awesome service!! Dr. O’Malley was very fast and gave us good advice! Ekaterini, Jessica and Stephanie all stepped in to my make visit comfortable by providing good service and warm towels (And snacks). Patricia was quick and efficient with registration and was super sweet!','2019-10-08 03:37:23.716000','2019-10-08 03:37:23.716000',5,'Jasmine McKelvey','https://lh5.googleusercontent.com/-5y4CeNuG5mw/AAAAAAAAAAI/AAAAAAAAAAA/vw-5tSFlDuI/c-rp-mo-br100/photo.jpg','16389487648212004696',2847),('AIe9_BHAFUK2tNBZL25dLQ0jVdh090Hq9O7Oz7rt5v79PN8srcGr5zSL8D1qSgmzpwEUJeACH3eqEggk2aPQ-u-rgou8wwtOuofzoBjNY8JaYmDW4zTiRPA','As wonderful as an ER experience can be.\n\nI have never had a medical experience like this. The staff were all super attentive, extremely nice and explained every procedure and ran tests at the speed of a network tv show about medicine. I felt like I was given incredible VIP treatment throughout. \n\nAlso they gave me not one, but two, warm blankets.','2019-01-19 17:23:38.343000','2019-01-19 17:23:38.343000',5,'Kage Chikara','https://lh6.googleusercontent.com/-4C9jiPslq6Y/AAAAAAAAAAI/AAAAAAAAAAA/BYZoyQ5qWvk/c-rp-mo-br100/photo.jpg','16891069708558046635',4368),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0956jKtaIcVQaeUB6yE7VnluMEjrM5l7K_6tzQ5Hj9ctiKY3TacvZR2G2tAj9azBvwhcmzNRqX1psqHxiLymbPLSPnzs','Everyone here is very friendly! And they helped me right away! Dr. Ortíz nurse Alvean, Tricia, Jocelyn,Mike! All did a wonderful job definitely recommend!','2019-06-22 18:05:06.947000','2019-06-22 18:05:06.947000',5,'georgiana cerda','https://lh5.googleusercontent.com/-_O0XG7e7i6Y/AAAAAAAAAAI/AAAAAAAAAAA/Nh04fhr7NWg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh096UmmNODUlzschl5738WM177dGkTaDKWVeNJETKqdwHXPw55U31PzumcOLMusXcSANHlWXZPOFLKIebGvOh7plHJNm8','It was five star care from beginning of visit to the end! Friendly, professional environment with clean accommodations and such a caring staff. A shout out to (hope to cover everyone): Dr. Leung, Dr. Lingan, Brandon, Christina, Townsend, Carolyn, Amanda, Christina C. and Christopher. I apologize if I left anyone out but ALL were awesome! They explained all procedures and why they were doing them and gave me a great summary of what I need to do when I return home. And, I have a beautiful new robe and a nice toiletry bag full of goodies. Thank you again for taking care of me during a health scare!!','2020-01-31 02:43:30.355000','2020-01-31 02:43:30.355000',5,'Gaby Cook','https://lh5.googleusercontent.com/-hYO298y-GJ8/AAAAAAAAAAI/AAAAAAAAAAA/20afPEmo4Ow/c-rp-mo-br100/photo.jpg','16891069708558046635',13966),('AIe9_BHAFUK2tNBZL25dLQ0jVdh09DR7lg51cdbDlJd_c8Wo7mkTgdbpRt0dPMOpqqVBQrovtbzIDkEvyS6ms_jd7w7s_uOvrerCEoHF1lAPDIwSH2rgHGo','Brought a friend here and the service was so quick and friendly! We were greeted by Rebecca at registration, helped by Nurse Anthony and Dr. Vaagenes. They each exhibited service so well and immediately helped us.','2018-08-22 04:43:58.004000','2018-08-22 04:43:58.004000',5,'Brooke Cunningham','https://lh5.googleusercontent.com/-Ukiy4ZIUr5E/AAAAAAAAAAI/AAAAAAAAAAA/yjaWqhqhXWU/c-rp-mo-br100/photo.jpg','16590124370714063921',3777),('AIe9_BHAFUK2tNBZL25dLQ0jVdh09HXy1KzEdypzKdsFKGXpM9V5R_TAN4WL8cZujC4tqMdWTxNwqt8uHpKcPz3W9okZ5KDw_lxkQVJJT4TsNcAnmMz6Czo','This place is fantastic! As soon as I walked in the door everyone made me feel at ease! Jocelyn A., Alvean A., Kelly L., and Jordan N are awesome! I was in and out so quick too and felt better walking out the door! Go see them :)','2020-01-08 14:15:16.658000','2020-01-08 14:15:16.658000',5,'Misty Alvarado','https://lh3.googleusercontent.com/-oVpiDPjRjqQ/AAAAAAAAAAI/AAAAAAAAAAA/6PEoFWB68V0/c-rp-mo-br100/photo.jpg','16389487648212004696',9447),('AIe9_BHAFUK2tNBZL25dLQ0jVdh09KIzUom6CMRDMoLIsWtgozjidBtMO660TMqeOJq8cUW6Pla8RPRxhGQCrNLo7HShFxwlvB4qQSGV6XjcpmQs5RCBL9U','The entire staff at this facility are wonderful. We even had to stay overnight for observation. We were treated like we were family I would and already have recommend this ER center to my family and friends.','2019-06-05 00:37:51.385000','2019-06-05 00:37:51.385000',5,'Donna Raines','https://lh6.googleusercontent.com/-4WzAQjotjJc/AAAAAAAAAAI/AAAAAAAAAAA/9UcCeQ7oStE/c-rp-mo-ba3-br100/photo.jpg','14904078213800803294',2134),('AIe9_BHAFUK2tNBZL25dLQ0jVdh09TLEsD_WqxpJYpxuEY4U0mmQqxLYhFvMdnj1mjoWll-Vr_22KRmTHL8QRg10HxqzF6tVpydoRBsb1qaOoeonUDPtSzY',NULL,'2018-11-17 02:54:56.203000','2018-11-17 02:54:56.203000',5,'Kanti Bansal','https://lh5.googleusercontent.com/-IjfEFPacmp8/AAAAAAAAAAI/AAAAAAAAAAA/5BicaH_uqVM/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8337),('AIe9_BHAFUK2tNBZL25dLQ0jVdh09VAr2dN_DDrxoSF5jQI5KOCrOg6KbdOBETP7OltDqBM7YZIr-mxBc4YaP2GZ2BbNoA3mjgFXd7yKYJwuk12aO8WewbA','They did a great job entertaining me and getting my mind off everything. Thank you Sarah, Do, Fatima, tanisha, and Elaine. They have all been so great and i would love for anyone to come here i highly recommend them.','2019-10-11 06:14:52.990000','2019-10-11 06:14:52.990000',5,'Johnny Harrison','https://lh4.googleusercontent.com/-DBOztEm_WaU/AAAAAAAAAAI/AAAAAAAAAAA/2dfXZCcRJlQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5512),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0AdY3uToavpZ6hE1mxqlVfmMjKfJsDO0Izn4Qm5_X-DLv6yDd7xFgX72mKQPIXV55FE3fSL8TbMCqKfIuaAryBgV6iTQ','Dr. Henderson was amazing...my nurse Alvean explained every treatment...and Patricia front \noffice was pleasant','2020-02-08 21:52:04.576000','2020-02-08 21:52:04.576000',5,'Laura Coleman','https://lh6.googleusercontent.com/-aklNTBwOxC0/AAAAAAAAAAI/AAAAAAAAAAA/Yk3lTrMzXGw/c-rp-mo-br100/photo.jpg','16389487648212004696',22603),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ahpzg5d0ZFQqdqRYXa6dStfe4E7N_23xSvoImVf9SZvR9NqUS6wrpDKQhBbMQIuS_nu1NiAWQ1ikbpgCizl8mhH_QJM','Great service and fast','2020-07-28 01:00:51.238000','2020-07-28 01:00:51.238000',5,'joshua wesley','https://lh3.googleusercontent.com/-C3Rah1K1L50/AAAAAAAAAAI/AAAAAAAAAAA/NaQNTY1SYUk/c-rp-mo-br100/photo.jpg','14748677429039074158',22554),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0aK_XlB9_-RPUVIT3fqy753aNLHAqdXoXlSZInLSgvldgaUjKlBofheLbcdYRJ5zj6-y-qbpGCqXs6ki5b6uQR_lHO1I','We love SignatureCare in Texarkana! From the moment we walked in, we were greeted by Kim who got us in a room in less than 5 minutes. Our nurse Luke did a great job making my kids feel at ease. Dr Henderson is wonderful with kids, she played with them and made them feel comfortable with her being their dr. She was very attentive and listened to my concerns as well as answered all of my questions. Kimmie and Luke were amazing . You could tell they were very caring and empathetic towards the situation. Overall, this place is very welcoming, quick and has superb medical knowledge. I would recommend them to anyone. Highly satisfied with our care.','2019-11-14 11:26:32.708000','2019-11-14 11:26:32.708000',5,'Tobie Williams','https://lh5.googleusercontent.com/-Iiyr3N1EQEg/AAAAAAAAAAI/AAAAAAAAAAA/Qki8VC-GGto/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',6861),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0amFlen22mxXJ4tBcbwlBRMBcObQEWGdlS4zEXBe6zwE_HOLGRqlSDVyfri7SQ0eRePEjSiiFRxFOXvfM7b9tCQcvHKQ',NULL,'2020-02-17 04:02:19.559000','2020-02-17 04:02:19.559000',5,'Kris Kueck','https://lh6.googleusercontent.com/-aE3__g-iOHM/AAAAAAAAAAI/AAAAAAAAAAA/ABhRXWSeLVI/c-rp-mo-br100/photo.jpg','13486358490203335051',13416),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0amhz9A-2bODKYUw4A9ZDQGbMQIEg3vAm_KqStTLDa6Q8zv9lGP4I4w9Jtsa5JFt7LGBlhlw26Oc0kBTJgeyS3IixSGQ','Alexis the nurse was really nice and the receptionist shania was really awesome and very attending','2020-01-16 02:04:05.852000','2020-01-16 02:04:05.852000',5,'Noe Cervantes','https://lh3.googleusercontent.com/-mNgEIWgmVfw/AAAAAAAAAAI/AAAAAAAAAAA/Xs7FWL3iar8/c-rp-mo-br100/photo.jpg','13486358490203335051',13481),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0AUCH2f5YG-8RcRl-F1Ngy0QZD77cl2EeNrQRNvp98cfiA29FsQ48hdu9X-8xe8n_Tl3GPSxxRFfAQsBKrPbTgM8lPQY','Magali Loera and Teresa M. Very professional and also very helpful took very good care of me. Quick in and out process.','2020-07-16 18:01:21.587000','2020-07-16 18:01:21.587000',5,'Fox','https://lh4.googleusercontent.com/-HiExjds-U7I/AAAAAAAAAAI/AAAAAAAAAAA/goKZ3eqMLa8/c-rp-mo-br100/photo.jpg','6521947413723274945',22890),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0AZs-Q-sGkuPecPl_5Sgc_1k2SgUn_wMDVlCDDy18qQphT0-_NHvAj3qiYRqNcuoufKiyTpIaWlL00bEZUPfr2mLbsMM','I came across SignatureCare after my abysmal experience with Memorial Hermann N. Loop. The receptionist was not aware of her surroundings and kept asking me to give her a detailed reason for my visit. Talk about proper training. Take in mind, there was a male officer right next to her and people in close proximity. I was obviously uncomfortable so I quickly asked her for my identification card and she STILL asked me give her a specific reason for my visit. It was upsetting and I googled another Emergency Center and SCEC was only 4 mins away! I have never in my life felt complete comfort by an ER facility and staff! As soon as I walked in, I was greeted with kindness and enthusiasm! Bonded with the nurse and my new fav DOC! Definitely nothing compared to Memorial! My experience was outstanding and I\'m only recommending this center to my friends and family! Staff took care of my needs 100% and I fell in love with the atmosphere, respect, people and knowledge they provided. They truly love their community and it shows with their focus on detail and understanding, they should be renamed SignatureCareFAMILIAEmergecyCare :)','2017-08-14 04:59:56.562000','2017-08-14 04:59:56.562000',5,'Jessica Porras','https://lh3.googleusercontent.com/--cn-GQD8PxA/AAAAAAAAAAI/AAAAAAAAAAA/5cI3s_qIMjI/c-rp-mo-br100/photo.jpg','14567670160750071148',1771),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0B_WSqgfW4vazlZyNCzMAc7wWlwQen5m27U0CapDT6UD_Wk0a52iEGZkPaRsUjWdrwnCjxTj4ovaeJC1VVuJtnoVxCic','My grandson was feeling very weak as we entered the building. Someone immediately got a wheel chair and took him to an exam room. The nurses and staff immediately took care of him. \nAs he was flushed, cold, and shaking. Wow, what an awesome staff. Best of all, it would cost me the same price to take him to the hospital ER. This place is so clean and everyone is ready to go to see to the patients care. A big KUDDOS to all. Signature also has an xray machine, ST Scan, and ultra sound and ekg. All necessary things to provide awesome efficient care. THANK YOU!!!','2019-04-09 16:50:59.823000','2019-04-09 16:50:59.823000',5,'Colleen Verdun','https://lh4.googleusercontent.com/-8ddx1tt1OSA/AAAAAAAAAAI/AAAAAAAAAAA/s3DPZX4nAN8/c-rp-mo-br100/photo.jpg','17394740196501090048',4694),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0B0S5N3iQmlI_oSl_AgEMx9_51X6PasUtyPsLR3MQKYpnmVhzjiJuCxJIjuOblsC9hyf6R9FGD5l1DRvNGwgFurmNB-c',NULL,'2019-10-19 18:45:00.404000','2019-10-19 18:45:00.404000',5,'Angela Rodriguez','https://lh5.googleusercontent.com/-ONbuSHZh9Cw/AAAAAAAAAAI/AAAAAAAAAAA/TTsbVDqRVEc/c-rp-mo-br100/photo.jpg','13486358490203335051',772),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0b25Of_oEdh4hk9kvwFXph-gQK2IHjHFEi5JC2saH8DTT5FApaduJ-eZnQ25fiweTOpCm0JnRtEIalIEcqDUOUdY4gMw','The whole team was great from the front desk clerk Maya and Dr Chiang they all made my daughter feel great and gave us the proper knowledge to get her feeling better. I highly recommend.','2020-01-30 21:47:22.996000','2020-01-30 21:47:22.996000',5,'Dexter Darjean','https://lh3.googleusercontent.com/-yX1R0d6va50/AAAAAAAAAAI/AAAAAAAAAAA/WVbQE5P-j1k/c-rp-mo-br100/photo.jpg','12541597562633926366',10379),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0bawruZgpO-ww8mbyjfyNoHm6gWySEuI-FH6b07VkA2cAabsqH2Lf4evvY9zl9xWPW3JpksTlFdU43wsGKuLHJwULrWI','Thank you Sarah, Fatima, Daniel and Dr. Patel for making my wife feel like new. Dynamic job!','2019-11-12 06:16:55.769000','2019-11-12 06:16:55.769000',5,'Andy Smith','https://lh5.googleusercontent.com/-EasK-Hn7yiw/AAAAAAAAAAI/AAAAAAAAAAA/pqnGAVrr0yk/c-rp-mo-br100/photo.jpg','17898197009688164559',5440),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0bDuMNOshmppUNG6c-yvT7_KYrZS8BZ8X953Umm74FdYOZZZMoceFa-ILZQs2voLJ38hfkORpliFnHjj2B6GCtaK7i4U','Friendly staff, but whats the point of an appointment if you have to just stand outside and wait for over an hour anyway?','2020-06-22 14:39:09.445000','2020-06-22 14:39:09.445000',3,'Ben Thompson','https://lh3.googleusercontent.com/-oAg9qqM4HgE/AAAAAAAAAAI/AAAAAAAAAAA/FGmm7HQ2cjE/c-rp-mo-ba3-br100/photo.jpg','2077061009497551125',21100),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0BEecyJY3G8yzecnctzKM7UON8xBXPqwmxu8yp_zSKsXea8b9piFhZmGMC7QH1EU8CWoDfkHMo15-2nw-NgkMSLPT4xQ',NULL,'2017-05-07 11:46:02.229000','2017-05-07 11:46:02.229000',5,'Kanti Bansal','https://lh5.googleusercontent.com/-IjfEFPacmp8/AAAAAAAAAAI/AAAAAAAAAAA/5BicaH_uqVM/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4556),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0bJviLzFx30KfE03BAXbLRzHn6VIeQ_lgfT5wQEOm2lb5wB_P0HbbyuwLCkB6ht7rmQ6jeUUiPpkHKWc3LVxldz6o4XY','Impressed on how much the nurse knows about my injury','2019-11-26 03:17:53.584000','2019-11-26 03:17:53.584000',5,'Kelly Tyson','https://lh5.googleusercontent.com/-u3CEH8MKlUA/AAAAAAAAAAI/AAAAAAAAAAA/xWDCORk8PCc/c-rp-mo-br100/photo.jpg','2694018788013845459',6005),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0blmlm4Yt5ndfzRkXekOLD49BgkVYsmSt0I-z7Wd142KmJwgKClCNoiVfFV3hZ-Di8TvO_R7nb2Gvprdt8ADzzkrihGI','Dr. Akunyli \nAlvean\nTricia\nPatty\nSean \n\nVery sweet staff. I felt comfortable and got the answers I needed. Will definitely recommend','2019-08-25 15:49:16.520000','2019-08-25 15:49:16.520000',5,'Kristine Hunt','https://lh6.googleusercontent.com/-Vjj2yiIGLH4/AAAAAAAAAAI/AAAAAAAAAAA/vWv3ILXsLhg/c-rp-mo-br100/photo.jpg','16389487648212004696',2978),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0BODJdrAUG_OfvUt4zQ_5pSxjZIn7YdrS7a44wfq_bg7YD1PunQGuoSwyMRviTqJfphHcNq_Kp01g82XXOa3yWYVHkhA','This place is always amazing, the best care....','2019-06-09 07:33:30.632000','2019-06-09 07:33:30.632000',5,'dana Collins','https://lh5.googleusercontent.com/-giSkjw41AvI/AAAAAAAAAAI/AAAAAAAAAAA/0su_zwtvFd0/c-rp-mo-br100/photo.jpg','14904078213800803294',2131),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0BpODJi5cv9OUNjBjaIZhitGjiq3zlk1543SaITh9hvLylIvsIYxQwy158lewnEF_GY6CT1KYYcZRcxgZ3hCS-SXV0M4','Really enjoyed the humility and comfort provided. My wife came in and needed a full work up as it’s that’s season and out the gate Maya was courteous and inviting. Olivia was a sweetheart settling her into testing and Ms.Kristina just about adopted our son for the visit and made him feel at ease. Over all I give the experience 5 stars. Dr. Henderson got her out all healthy.','2019-12-14 22:43:19.045000','2019-12-14 22:43:19.045000',5,'chris byrd','https://lh5.googleusercontent.com/-rwE1Z0WxF38/AAAAAAAAAAI/AAAAAAAAAAA/NrT1ko5bUlE/c-rp-mo-br100/photo.jpg','12541597562633926366',344),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0buDaeDBkK86IcdIGCjXDNhNCN1HbMwUq-AqkvhSU02Lxk7PUgLziod7UtnqiRkLQnlngcflFvxgy7DnY6WTn_Fi7fJU','Had an emergency that turned out to be a bursting appendix. The staff was so caring, and everyone ensured I was made comfortable as possible. They got me in quickly and figured out what was wrong. They took care of my pain, and then got me to a neighboring hospital for surgery. The doctor and staff were all very attentive. I recommend SignatureCare. Thank you! Gina ','2017-04-07 17:21:55.961000','2017-04-07 17:21:55.961000',5,'Gina Messick Farquharson','https://lh6.googleusercontent.com/-PWdzZhmK8nU/AAAAAAAAAAI/AAAAAAAAAAA/u0dz7Oof-vw/c-rp-mo-br100/photo.jpg','14567670160750071148',1853),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0c2u4gxfnTvz0Akks4_LhVh3c5JhvQKaW_jExakmVsbO9XqzDKABYgVNJE7TBOW9-fH0MLznKDo_F0OWLgzNb25-231M','The service was wonderful. Patricia C was really friendly great customer service.\nAlvean A was so wonderful with my daughter explain everything that she was going to do with her. Zeik was really helpful','2020-02-23 18:28:08.185000','2020-02-23 18:28:08.185000',5,'Neira Lopez','https://lh3.googleusercontent.com/-RF2eqqGvT_g/AAAAAAAAAAI/AAAAAAAAAAA/0nOTAEC9Wqo/c-rp-mo-br100/photo.jpg','16389487648212004696',13774),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0c8RqpF967p7dKCgzAFfE0boiyZ5gYyWzZNRgXpHqfZonWDCBVCNUM2YzU0YqmZmbRvOv_5gf-ioU5VLQZNBOsv5Lmcg','Very kind staff, Kendra, Remington, Laura, Rebecca, and Dr Vakey were all super helpful and made me feel valued in my experience.','2020-02-02 23:40:25.630000','2020-02-02 23:40:25.630000',5,'Grayson Nichols','https://lh5.googleusercontent.com/-PcTq_IHbXEQ/AAAAAAAAAAI/AAAAAAAAAAA/SOHUnZZSYfU/c-rp-mo-br100/photo.jpg','16590124370714063921',13883),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0c8VASSn3LBc1DRhqujSgkYCstktcXQqw0-zCESgSpT_AgANSr-9PEX_VH-g7Tp4wSaScgLUFLygBDXRYXHCCEoSTYJ4','Kelly (our nurse) was awesome, the receptionists were very friendly, and they offered me warm blankets and free snapple. Great place definitely would recommend and they\'re open 24 hours which is great.','2017-01-27 07:45:19.789000','2017-01-27 07:45:19.789000',5,'Sarah Bambacigno','https://lh6.googleusercontent.com/-KU2gBgW6HEk/AAAAAAAAAAI/AAAAAAAAAAA/dWQlyZbfZWo/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',4079),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0CfKHBTERCvk2KSQb2hoy8MLTK9v7kAqow7Jk7JMV2Jsf40WikNyPa10cs29iBxG_yMuL9Cu5V9Qs3_OsubB20stcOgc','DR. Lindsay\nJani \nMarcus \nJesus\n Fast & professional customer service was great 👍🏾','2019-07-02 19:16:02.935000','2019-07-02 19:16:02.935000',5,'Von Numbersix','https://lh3.googleusercontent.com/-QP1Px19R9Wo/AAAAAAAAAAI/AAAAAAAAAAA/M1Rd_oCPSrw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0cnlC5rPqAuuxVgt2FDJQs2sRbAp9AiN_w4rH6wyXp-5beBJDEF9rM1fVUzcdpF1PSG8xTBFir8IxFBEgv-IdOGxw06U','Awesome service. Took my wife for a back pain and she was served in less than 5 minutes. Everybody provided an exceptional care. From the lady at the reception to the nurses and the doctor. They were very thorough and thankfully nothing to be concerned came out from the lab analysis and CT scan. Appreciate the service and I can highly recommend going here if you need to.','2019-01-24 19:14:35.511000','2019-01-24 19:14:35.511000',5,'Edgar Esparza','https://lh3.googleusercontent.com/-GU1_2zxxbjo/AAAAAAAAAAI/AAAAAAAAAAA/rKYISI5Py2k/c-rp-mo-ba4-br100/photo.jpg','17898197009688164559',5878),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0cXF_yn9Wd9e-Rnb-uJfj1AqqiHG5AKuldAGxYwwLTw1ag3f-mgS7UgVlnGjc6yBONK1maSqmZhSgLXTM62JS-_FUHDU','As soon as I walked in, the young lady at the front desk, Jessica, took note of my hives and immediately called a nurse to take me back. She had my husband fill out the forms for me and got my little boy a teddy bear and a warm blanket.\n\nI was seen immediately by Lia, the nurse, and she took me back to a room for my vitals. She asked a few questions and grabbed the doctor on her way to grab the IV stuff for me. Dr. Daniel was very friendly and efficient. I was given medicine right away and they grabbed my husband from the lobby for me. I got a warm blanket and the observed me for a while.\n\nOverall, everyone was very friendly, efficient and the space was clean and modern. I would absolutely recommend coming here!','2017-07-10 19:32:20.208000','2017-07-10 19:32:20.208000',5,'Therese Rook','https://lh4.googleusercontent.com/-sdKjhiWjPsg/AAAAAAAAAAI/AAAAAAAAAAA/JdzAmhYvyec/c-rp-mo-br100/photo.jpg','8918455867446117794',9380),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0d3oJB3nq3ePfTUYkANrTD732dqMqFab8991CpSBKMNR8pbIOn4HuM9jeh2Udi2TrcKoTrTZv7Q5uht6OBZbLyYqknVU','Ive had a sore throat for a few days. I woke up at 3am in some severe pain throat & neck. I started to get concerned thinking it could be strep. Ive had an allergy reaction to strep as a teen so I decided to go in. The attending Dr. was very rude, sarcastic and belittled me for going in. He didnt even swab my throat. I understand if he thought i over reacted for going in. But why be a Dr. If you\'re gonna treat people so uncaring and ugly. I left very upset and disappointed. I do not recommend this clinic.','2016-06-09 10:14:12.548000','2016-06-09 10:14:12.548000',1,'Pam Alvarado','https://lh5.googleusercontent.com/--T2vtqgDl1I/AAAAAAAAAAI/AAAAAAAAAAA/DoVtdaOKIq4/c-rp-mo-br100/photo.jpg','6521947413723274945',8361),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0d5QzoQ9NNZTdM6xiKfGH3iM4nTF9AiHylxK83odKBXTlw0NRTWjg-IvwVEphKXjY4OYhnMLv7QO8b01Xp3EUDu47KPc','Great staff and friendly service','2020-07-22 18:32:20.376000','2020-07-22 18:32:20.376000',5,'Esthela Reyes','https://lh6.googleusercontent.com/-nem3uG1xis8/AAAAAAAAAAI/AAAAAAAAAAA/64jZC0smvlU/c-rp-mo-br100/photo.jpg','8918455867446117794',22306),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0dAtLfmdadwFw5INYKBJXHhsY9UArM2VHJs7CTfJ95ZwfYuQxd4z3QyWa-3Kvh0sXoIjArWnUKK6S-lcpMSur_rNrWVI','Very knowledgeable and polite staff','2019-04-20 12:29:55.433000','2019-04-20 12:29:55.433000',5,'Deborah Rylander','https://lh5.googleusercontent.com/-hGEszaRmyH4/AAAAAAAAAAI/AAAAAAAAAAA/gEqLJLvGNEI/c-rp-mo-br100/photo.jpg','13486358490203335051',1032),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0dB5Jz-WaiPRafDgJmG4OO-zU6wr8Rvuqt085anU7m60lkc2eLlDcq9giN5bVIkR1PJSgaPiNAZNBpt6P2N5fcnNHDf4','They are great friendly & loveable Dr.patel,sarra,sherwin,Christian, Carly','2020-02-05 03:39:43.402000','2020-02-05 03:39:43.402000',5,'The life of Tatyana!!','https://lh4.googleusercontent.com/-aZ_dL8w94Ac/AAAAAAAAAAI/AAAAAAAAAAA/awIOnF-VR_k/c-rp-mo-br100/photo.jpg','12541597562633926366',10374),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0dfDnH3fu07Gi5h97Ox4lH244WYOVjgnTrokcdr9csJrQOYYaCg2tzrfKPPmH3gyjrsViSbXhCFM2DXJiRKI5peUylt8','Amazing experience again with Signature Care. Amy, Norma, Churiah and Eve were great!','2020-01-28 23:28:10.263000','2020-01-28 23:28:10.263000',5,'Anum','https://lh6.googleusercontent.com/-ur79nWMhsoo/AAAAAAAAAAI/AAAAAAAAAAA/VUMCub6pObY/c-rp-mo-br100/photo.jpg','3511292162159714121',14440),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0DhOhDhUDT-o9b4Ai_uj8Wn2fVMjLrpe2s2pFHR5xN_4BwcSc-GalO_ESou6FEINlafFqXoxmZ-LJp3oN06ZoHqIEtTc','Awesome experience. They were all very nice. Kimberley at the front is super nice, and helped me out so much!!','2017-01-23 19:41:49.006000','2017-01-23 19:41:49.006000',5,'emma williams','https://lh5.googleusercontent.com/-3OQhdjcYHZg/AAAAAAAAAAI/AAAAAAAAAAA/4__67XLu5w0/c-rp-mo-br100/photo.jpg','16590124370714063921',4085),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0dkO_iwAsBVEqhtilSJxf08N_pg-Qx42-39KMfz2Bso7hlOc1uGT7TgM7ATM2zNoR53__o-LkF7pLgbXAFP5fqoUNFFc',NULL,'2019-10-12 15:37:43.648000','2019-10-12 15:37:43.648000',5,'Devaun Harris','https://lh4.googleusercontent.com/-ypwzsW8nNZY/AAAAAAAAAAI/AAAAAAAAAAA/ujgLIcutxsg/c-rp-mo-br100/photo.jpg','17898197009688164559',5509),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0dnPN1s-DQ8JxL30yL-P7PmCtxkCQMQOkKs_1EA2O2-nJhPdKEcQlNsiVgPXPDQx8wml-Z2iCGBY3ciiuYiffw9-I2s0',NULL,'2018-08-09 18:59:48.656000','2018-08-09 18:59:48.656000',5,'Hailey Blaze','https://lh3.googleusercontent.com/-4OLkk_dv9bQ/AAAAAAAAAAI/AAAAAAAAAAA/kkpWHOMAi90/c-rp-mo-br100/photo.jpg','3511292162159714121',7647),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0DPkSiLNSaIhKLpNtRRjinUJCQTVhCjFWol4i7GDXjcyJaxxIBuex5sv9z8Vv17iZ_G7zBtpsZGWe8ZCVo6KlT-mpdpE',NULL,'2016-01-11 00:44:02.274000','2016-01-11 00:44:02.274000',5,'Kanti Bansal','https://lh5.googleusercontent.com/-IjfEFPacmp8/AAAAAAAAAAI/AAAAAAAAAAA/5BicaH_uqVM/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',8030),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Dqcr9nrE8fkKEGxSJcoccFKmWagJcYollEdhx1BmG9GBo5w-OlFGRjTRii-CTU3WvCWWtx1j-dq-zpvTFdG59ruzI1k','Kristal was very helpful! Dr was great.','2019-02-05 14:47:05.955000','2019-02-05 14:47:05.955000',5,'Jakob Hulcy','https://lh5.googleusercontent.com/-q3zDQLf0exU/AAAAAAAAAAI/AAAAAAAAAAA/TlwPq1t-SbM/c-rp-mo-br100/photo.jpg','13486358490203335051',1073),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0DQl14KB4NgAtrGX-kGI6MoFViNFO9cIy4JBagYw-lw7538hKZI_wmZGT501uqVWnrBZoZm5eKABQlhhuAqKuyxYwaS0','Wonderful staff, clean facility, top of the line equipment, knowledgeable. What else could you ask for','2020-03-05 18:28:35.297000','2020-03-05 18:28:35.297000',5,'Matt Rodriguez','https://lh5.googleusercontent.com/-OZc9Nu91GiA/AAAAAAAAAAI/AAAAAAAAAAA/-W9AwJ3m6aw/c-rp-mo-br100/photo.jpg','6521947413723274945',17391),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0DUOqMDAhE7ilo2o8UAHKRBXJrwdDcHaOE8rgAm51kXoCwwkURYAl_Orn5L32xHNCNhcBpaFHkzMyg-_bp_1xBOnXBv8','Highly recommend. Staff, Doctors and nurses were friendly and very professional','2020-07-18 19:02:12.566000','2020-07-18 19:02:12.566000',5,'Darren Schultz','https://lh5.googleusercontent.com/-1wx0a61TtcI/AAAAAAAAAAI/AAAAAAAAAAA/J9qRxJ7CDUI/c-rp-mo-br100/photo.jpg','14748677429039074158',21733),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0DymdQjcwpJqpUMJKHmS9nG52JGfF1RfSlRHYubfGVyefzkKqpQiQ6Q0mxNj9gGfdb1ey9DT_z0UuKmuA3EawYcjmAVA','If I could give them more stars I would. Every member of the team went above and beyond to make sure I was comfortable and well taken care of. I\'ve never received so much care. They took me in before I could even finish my paperwork and got me home fast too. They are absolutely wonderful!','2018-06-11 15:04:56.063000','2018-06-11 15:04:56.063000',5,'Stephanie Vitale','https://lh5.googleusercontent.com/-1bRHa9VVN0w/AAAAAAAAAAI/AAAAAAAAAAA/65YIXuuyQBE/c-rp-mo-br100/photo.jpg','16891069708558046635',4469),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0E0y0TZjrc3-vyFZjBaormbcUGnrJoYLjt6HWkxdpSJPUOimjwqq9gbl-oQTQIKR5-UY1hO9P4jCsrR7QaN8jgeHGp1s',NULL,'2017-11-02 15:20:26.367000','2017-11-02 15:20:26.367000',5,'Ammara Siddiqui','https://lh4.googleusercontent.com/-BG_AjruNf9c/AAAAAAAAAAI/AAAAAAAAAAA/DCFl7tf3cUY/c-rp-mo-br100/photo.jpg','17394740196501090048',4941),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0e3J6_k-Q-dBOs8eCj3fPCCpVnWx77g2lWRZVoJT4U4TIIY41E6boQ8cIgOHinpBNBbmXAQZOG718Hl5doOBVrrVjLCg','All staff members were caring, friendly & very professional. \nHighly recommend!','2020-03-13 16:22:29.990000','2020-03-13 16:22:29.990000',5,'Shelia Dale','https://lh3.googleusercontent.com/-F-SwUsz9XsQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmGKyhiGS7gY77rT_oGj8TrUQcdBg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21184),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0e5iIscgKGgNpHp95BllrrHB9yg9oKzuJvew-lGPPe19hHq2hGUFhSoObFDkcwLbAMEea5bbt6q8uLBBGHiY37sxPcLc',NULL,'2019-08-01 18:40:07.321000','2019-08-01 18:40:07.321000',5,'Marnie Walski','https://lh6.googleusercontent.com/-xgPzDXm8u6o/AAAAAAAAAAI/AAAAAAAAAAA/tUvmOxJwUkw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0e6E_sGXvVa6x0lvznMq0rjdxQj_6dZInVrnD-6JMqDLZrAViaiOylLc8avtIQzQS_PNwJxDMsyxj6kG6T3z7gKuupwc','Very friendly service! I was introduced to all the employees. Eve, Agnes, Laura, Olivia, Dr. Yusif and Shai. They gave me a tour of the facility and it’s very clean and updated. I will definitely recommend to my friends and family. I am interested in getting a scan here soon. 🙂','2018-08-02 18:34:51.779000','2018-08-02 18:34:51.779000',5,'Anna Duran','https://lh3.googleusercontent.com/-Ggv8WJuac0I/AAAAAAAAAAI/AAAAAAAAAAA/rTyo5Df3kHE/c-rp-mo-br100/photo.jpg','3511292162159714121',7675),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0e8DnisGxvhs_EIdNCmFZbN_TepvAuw9jQ6bgI2hvJkXr8urwt2_lpfgYyJa-U8EAlMkx-TkQFn3gIvvBRRfx0Y58ui0','I had a good experience, the doctors were really helpful and patient. \nDr. O’Malley \nAlvean A \nTricia E \nSibienne w \nBryan \nThey were all so helpful','2019-11-14 22:23:07.294000','2019-11-14 22:23:07.294000',5,'Payton tharp','https://lh6.googleusercontent.com/-rE8BvEd86Hw/AAAAAAAAAAI/AAAAAAAAAAA/1g4BAmcMETI/c-rp-mo-br100/photo.jpg','16389487648212004696',2698),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0EAU7sLsmcVtiMKNxYGXCyMhLQ455FP9kerxnxmq_A5JL0U-2QgMD2wZhitF5V7Y_XPQLtOx-vR11QDsG-5TjD0Zmyvc','Jessica S. and Jessica M were Amazing as well as the whole experience!','2020-07-17 18:11:07.576000','2020-07-17 18:11:07.576000',5,'Clint Clark','https://lh4.googleusercontent.com/-3iqeB253gB8/AAAAAAAAAAI/AAAAAAAAAAA/WumjLHnATrQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21749),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0EBk44pN4YIy5tLCg9I9P-RSZikUrjiUOX6URbTRcVXndIDW14cjIk0u6nWFwbxOYkf2Qp1CZX7T5fT69BnAowsqIZic','The Care here is awesome. Dr. Daniels takes her time to explain everything to you. Each and every member of the staff is amazing.','2020-02-23 04:55:17.162000','2020-02-23 04:55:17.162000',5,'Cynthia Burciaga','https://lh4.googleusercontent.com/-5_nO8EVtTr0/AAAAAAAAAAI/AAAAAAAAAAA/eF9X9JNIlpM/c-rp-mo-br100/photo.jpg','6521947413723274945',14557),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ef8NE8TndAL9n-uKyHh6aFRSP8E2vOCYamoLR9kz4ig4EUZEvhmzgJU508tKa_S9Z8v7UyzYh5pCATSl9Q15t7E7U9Y','I was hesitant to come to the ER but having chronic headaches and felt like it needed to be checked out today as I was having lots of anxiety about it. As soon as I walked in the receptionist Jessica calmed me as I was having anxiety. I had zero wait time when they brought me back. Araceli was so helpful as she got me settled in the room taking care of me throughout the visit. Dr Elsbecker was equally as helpful and spent the time listening to my symptoms and explaining to me what they would do and why. Daniel hooked my IV up painlessly and on the first try. And Magali took me back for imaging and explained everything I would be going through as well. This place is so clean and quiet. The entire staff has treated me great and I will for sure recommend coming here rather than the hospital ER if ever needing an emergency treatment. I will always choose this first if I ever need care again.','2020-02-27 16:19:30.792000','2020-02-27 16:19:30.792000',5,'April Kelly','https://lh5.googleusercontent.com/-70yFXZkrOuI/AAAAAAAAAAI/AAAAAAAAAAA/36fm_RnoLiU/c-rp-mo-br100/photo.jpg','6521947413723274945',14542),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ehCr8s29onM5ZBF7Psq-064fALxIE3RfGbOsGaZdQvj0Z3niX-RlYYKAx9naAVaQ9ls7viGxme5ds9xtzOfWzUWfxRM','Very quick! Kendra was very helpful!!','2019-11-23 02:50:56.008000','2019-11-23 02:50:56.008000',5,'Sarah Baerenwald','https://lh5.googleusercontent.com/-Vqepn2EzOeo/AAAAAAAAAAI/AAAAAAAAAAA/xxEDcpIxtac/c-rp-mo-br100/photo.jpg','16590124370714063921',3085),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0EP5i8p7L0o6zshJCfZHLtN-KCuSytT_JXrAP4wNYsAJRoIgeoI_a1_squLcgzdHhcsrKq29aoQDvCS9p9X3tVjmQ7Mg','Team was outstanding and professional. New to the area, and the wait time to register and escorted to the room was quick. The service from this location was much superior in comparison to my hometown. I\'m happy for Midland to have a wonder staff at Signature care. God Bless to all and continue caring for all existing and new patients.','2019-08-13 21:50:55.120000','2019-08-13 21:50:55.120000',5,'James Edward Almaraz','https://lh6.googleusercontent.com/-I_Te66JLfgc/AAAAAAAAAAI/AAAAAAAAAAA/sVULE-ER98w/c-rp-mo-br100/photo.jpg','13486358490203335051',860),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0eqfVEISz3KDdrAcqcM7djcEjYf0pKbjAIVr1udZl_uQquTFM2MfioZ0kYXbPSIiR7gzNb_xnsBaxrN00tbP5KLwkJFU',NULL,'2018-02-04 23:09:35.482000','2018-02-04 23:09:35.482000',5,'Jessica King','https://lh6.googleusercontent.com/-hLnukUdNNFY/AAAAAAAAAAI/AAAAAAAAAAA/7pjuzZmci9M/c-rp-mo-br100/photo.jpg','3511292162159714121',7727),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0f1Q3S0uWlnecPb0Pefkr7XW9Z64smVSdmR-rnFxtwj6jo1OrV4SrpLVYvkCVPXqv_35IYPYIwNE_V2nDR_XpFwf_DJg',NULL,'2017-06-12 13:11:21.060000','2017-06-12 13:11:21.060000',5,'Tolly Adebiyi','https://lh3.googleusercontent.com/-X0Z8S0isx8s/AAAAAAAAAAI/AAAAAAAAAAA/KB05uUIhi9A/c-rp-mo-br100/photo.jpg','17394740196501090048',5039),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0FaAjQaiJkbOb5uwAw_4DivkDKoB9kRO1wgY3FFVqP8GTBSxJC-f3sH5ya_SZyontmJVhDR3XGxSjeI6gaBECkjZ6MvU','I would definitely recommend this place to family and friends 👍🏽','2017-08-02 18:07:55.096000','2017-08-02 18:07:55.096000',5,'Karla Torres','https://lh3.googleusercontent.com/-wm_hMglIYe0/AAAAAAAAAAI/AAAAAAAAAAA/qhap4EyOu7o/c-rp-mo-br100/photo.jpg','14567670160750071148',1780),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0fbHIYYSBPuLRGyNR34XcjNp6RtctbfLH9hqlbB1OIAQcBZ4MKo4AXKu7dZqSV2BxgjWYY3FJ58g5xQopRnL8Nu-2jIg','Great staff... Dr. VAKEY WAS GREAT EXPLANING MY CONCERNS. JR CIENEGA WAS A GREAT X-ray tech, Jacob was excellent nurse, and Lorena was great and swift to check me in. Overall the staff was very professional and caring. My visit was on 11/29/19.','2019-11-29 16:09:03.032000','2019-11-29 16:09:03.032000',5,'Jose WilliamsPerdomo','https://lh6.googleusercontent.com/-DNYYzZ5c7Vg/AAAAAAAAAAI/AAAAAAAAAAA/BMm01gezjeI/c-rp-mo-br100/photo.jpg','16590124370714063921',3068),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0fg9umtq8j_2j0cL-zoA7pkr8REoW1YMYLYeLfPDODD88zFAFhwi4sM2yclijeutCPrVhnONb1NwMXxwt-uYTtxvhSAQ','This place was great. It was very clean and front desk is very friendly and inviting. Both nurses that saw my son were also very nice. They made us all feel very comfortable and we were seen In A very short time. We were in and out in about 45 minutes. Definitely recommend. Thank you signature care!','2019-12-26 12:57:47.871000','2019-12-26 12:57:47.871000',5,'Joanne Castellanos','https://lh3.googleusercontent.com/-DdrVgY5j7aU/AAAAAAAAAAI/AAAAAAAAAAA/No_KUB8KDAE/c-rp-mo-br100/photo.jpg','16389487648212004696',2515),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0FKwV6dKfqE4qk-k6_rp2CjjDRpxwA-TgbKQTvbu1lEKwDhZzLyB57PKpKr5veP-Vf54Qt7My-9k_vwlJR0Qu6VI40Dk','On a Saturday morning I was expecting a long wait, but there wasn\'t much of one. Everyone was so nice from the receptionist to the doctor. I didn\'t feel talked down to, nor did I feel like I was a burden to them. I highly recommend this place. Thank you Dr. Jones and everyone else for making me feel better.','2020-02-22 16:27:37.894000','2020-02-22 16:27:37.894000',5,'Jini Branson','https://lh4.googleusercontent.com/-fHIMcaQmjb0/AAAAAAAAAAI/AAAAAAAAAAA/WcsLuTKr6O4/c-rp-mo-br100/photo.jpg','2694018788013845459',14219),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0FSfF9NhOGu6AExd90HlkqOTNgCHzE7Vc7DBcyJVx0Vr6xfzcqeMIfsCcyR_NKPYKTSN7WijyzU2JpOi7bk7jA6rh_bU','Very clean environment and incredibly fast. Nurses and Staff were very kind. DR Wang was very professional, and so far best ER experience','2019-12-30 23:39:49.265000','2019-12-30 23:39:49.265000',5,'Bernadine Philip','https://lh3.googleusercontent.com/-veAsUjR-hmI/AAAAAAAAAAI/AAAAAAAAAAA/wes5BrRhMLQ/c-rp-mo-br100/photo.jpg','12541597562633926366',285),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0fsgnyssTYJwIApOw46ySO3EtLWHGZyjviqTei6OGJHvqGwotp8z6EcESDO9V1KgVe2fO-2GFNXsjwkbh-ZogA_7JVEQ','Fast and friendly team!','2019-01-11 04:02:09.465000','2019-01-11 04:02:09.465000',5,'Quality Games TX','https://lh4.googleusercontent.com/-wykLBnUHtZ0/AAAAAAAAAAI/AAAAAAAAAAA/sLcfENWZIEA/c-rp-mo-br100/photo.jpg','14567670160750071148',1423),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0fsvhbyL7kZH9MDo3T3aaO9HidIyD0lIG27XaDvf-fbpavXyBfPKolARFdDJGf3ie-4ckz2CqXAtrXS3XEQVJIyW4RRw','Awesome place brought sister. Was seen right away staff was welcoming an helpful.. Samantha front desk, Nicole and Christine the nurse always checking up to mke sure we were ok, Bryan an Miguel great job. Dr. Dang explained diagnosis in patient terms which was very understanding..','2020-02-19 01:44:02.797000','2020-02-19 01:44:02.797000',5,'saiki_m gaming','https://lh4.googleusercontent.com/-sEbb3EgxXAA/AAAAAAAAAAI/AAAAAAAAAAA/sWS9r9aGRqQ/c-rp-mo-br100/photo.jpg','14567670160750071148',13520),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0G83gFqyRm9Ltk8jCGmTswP-hqVB1BswPpI0GFbTL8cmwBlYZYiRHNlafrkoBfiyjdgCHiDMs-u5vhrEEKVPuxMIjA2c','very good experience all team members providing excellent service','2019-08-21 00:07:09.296000','2019-08-21 00:07:09.296000',5,'Ali Hussain','https://lh3.googleusercontent.com/-EKHsfvI--S0/AAAAAAAAAAI/AAAAAAAAAAA/AeFU_eGI8Ls/c-rp-mo-br100/photo.jpg','17898197009688164559',5575),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0g8ADudkVIY21AzGE9Wn0RmKfZ5KWCI_Hzgqms2mt7AVSSNmdTWgUn2lNIrrCOPmaq5fJ469LyQQOg2zn88yF314_-J4','Rebecca V ROCKS! So helpful. Great snacks.','2019-08-15 04:23:40.550000','2019-08-15 04:23:40.550000',5,'Grace Nelson','https://lh4.googleusercontent.com/-ol4xfspFsD8/AAAAAAAAAAI/AAAAAAAAAAA/-vlQtpF_ao4/c-rp-mo-br100/photo.jpg','16590124370714063921',3255),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0gf_GrPvxBWlypwUmaSJPL1p8WwMK9L-3G-7utjtpbjgRUplvL3_zgzmq_pn4TCQC6wv69pjHRivRKESGi1nDuvRHuPg','Great experience \nDr.tuke\nNurse duke \nGenesis \nSeble','2019-12-04 17:16:04.041000','2019-12-04 17:16:04.041000',5,'tyla owens','https://lh4.googleusercontent.com/-loFKSb906x0/AAAAAAAAAAI/AAAAAAAAAAA/e7E_8l_UNeM/c-rp-mo-br100/photo.jpg','8679688254631342173',8697),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0GgvQiNAZmJ1nmDqCcYl3uLy42n6HVekgBvWc9e3jZqiH_DGcNrjF0ojyGY_NYBw76X4RZOgF3OY8BxP_1R7eAIi-LwI','I was taken care of very quickly and thoroughly. Staff was nice and facility was very clean and comfortable. Dr. Appiah was great as well as Alvean and Marcus my nurses and Jocelyn at the front desk.','2019-09-20 18:02:54.830000','2019-09-20 18:02:54.830000',5,'Bella Roberts','https://lh4.googleusercontent.com/-EBXQpMO8s-w/AAAAAAAAAAI/AAAAAAAAAAA/_wt_MEFXA3k/c-rp-mo-br100/photo.jpg','16389487648212004696',2892),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0GIPuzz7UYzIfN4_ldCLUbVwrBVGvYeqZ-blTdnHV8M-JC3EWkmWcl1-IzkFcOTYZUEZxS73_c6gYtsO4LvMeioeRSu0','Great care! I was greeted and help right away and spoke to a doctor soon after, in a room. The doctors and nurses were very nice and explained things very clearly. I went in at 3:00 am and expected to not be back home until after sun up... I was back home by 4:15 am! Amazing! I would definitely recommend this location.','2018-01-25 17:19:43.729000','2018-01-25 17:19:43.729000',5,'Thuylieu Aligo','https://lh6.googleusercontent.com/-ttoMxPBOv8Q/AAAAAAAAAAI/AAAAAAAAAAA/DA5JhmlMHW0/c-rp-mo-br100/photo.jpg','14567670160750071148',1668),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0GLS0V5r1ZQlLg1b68q63G9i0Ky7SWu2IqR6qIcFxWSSDnxtFlfRMcuHa3VW-ed0TnnPPezMQdGmCs0itzda-BgmNbHQ',NULL,'2019-12-30 01:27:23.158000','2019-12-30 01:27:23.158000',5,'Becky Cranfill','https://lh3.googleusercontent.com/-g3UNiy5cPQc/AAAAAAAAAAI/AAAAAAAAAAA/8mqqLJMIEkM/c-rp-mo-br100/photo.jpg','6521947413723274945',8038),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0GmVokwUaATOCXzghQ6AZtTttUkeEdAUIMSgcjyJevAUtrTBdsuTaPWVQkneWw3qDWbnNDU6U1reCJoBa6SEe4ZApdx0','great place with awesome staff, everyone very nice and caring and helpful, thank you','2019-12-30 08:20:09.403000','2019-12-30 08:20:09.403000',5,'Bobby Shemiranipour','https://lh5.googleusercontent.com/-RzYXFvEe6RU/AAAAAAAAAAI/AAAAAAAAAAA/YMkt3HU6UxQ/c-rp-mo-br100/photo.jpg','12541597562633926366',286),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0gNeWE_5XojVTJKp3vZ3HHFkVpsDh3N2yQAEqEM6GP3Q30eCQqu6JyCC5pcFyLzBYPfJoRiLXiapD8U0fbSdTe9pLldU','Friendly staff!','2020-07-23 03:51:21.442000','2020-07-23 03:51:21.442000',5,'Taek Kim','https://lh6.googleusercontent.com/-udmjpag5Zuo/AAAAAAAAAAI/AAAAAAAAAAA/3vqkLzJTzAI/c-rp-mo-br100/photo.jpg','16590124370714063921',22662),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0GvDC8KpSZENLuDQHA-LBD80TmpEu7SJE7QwxtBOB_YTD-EqerQxghwDFlALVb4bsJfSt3UMxqpNxX4dyHHDOto_QQ1o','Awesome place was greeted a treated right away . Very clean , friendly staff ..','2019-08-05 21:41:15.198000','2019-08-05 21:41:15.198000',5,'saiki_m gaming','https://lh4.googleusercontent.com/-sEbb3EgxXAA/AAAAAAAAAAI/AAAAAAAAAAA/sWS9r9aGRqQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0H9_ikXt8Lm0LLWI_HCHSYwHkXGtrEGTYHa-AI3ChgnBmioOz3s0zW4ZB1GNp4YzOcScHudjHzCm7jLas07HQ8HZI9HQ','I had an amazing experience from the moment I walked through the door even though I felt horrible .Staff was super friendly and showed true empathy the entire time .My RN-Irving was absolutely amazing both times I came in to be treated along with the entire staff and I have to also mention Christina -RN .You dont really feel like your in an ER ..you feel like family and they try to make you feel as comfortable as possible 🥰🥰🥰🥰👌👌👌..','2019-09-30 00:16:27.714000','2019-09-30 00:16:27.714000',5,'John s','https://lh6.googleusercontent.com/-EXCl9Kbh87Q/AAAAAAAAAAI/AAAAAAAAAAA/Oe-RfbJjDq4/c-rp-mo-br100/photo.jpg','12541597562633926366',408),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0hOtk81c4v9kCrr_OMbAadBcFiUCOnOeiouUfD0u7lIDR5Ye3dbdctfqeCaCU6GV5Z0E3sm2jcfT5KQtWDZG0sZtkzno','Haven\'t been to a hospital in years. Hate hospitals but had a decently enjoyable time at urgentcare. Would definitely come back for a visit if it weren\'t medical care center. 🤣The warm blankets were worth a visit.','2019-10-25 23:45:04.374000','2019-10-25 23:45:04.374000',5,'noah samuels','https://lh6.googleusercontent.com/-wuOy78phtHQ/AAAAAAAAAAI/AAAAAAAAAAA/bjrQcasalBQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8775),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0I7w9HVgPDydUtyUatEj6HCaYsJ68eesDvhADm7yoW_WG7OJW8DdyJRqjlEphpX6LWhgQIGJIdJRrCKrM_aff1lELkO0','It was a great experience. Mr. Appiah. Mr. Daniel. Ms. Sarah. Ms. Fatima. Ms. Tanisha excellent people','2019-10-16 02:51:02.135000','2019-10-16 02:51:02.135000',5,'Lawrence Pearson','https://lh3.googleusercontent.com/-fMtZzUSxtug/AAAAAAAAAAI/AAAAAAAAAAA/PsloNapVumU/c-rp-mo-br100/photo.jpg','17898197009688164559',5503),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0I83Ux27RqKB4gtClAtFEwxRR7jod51NrjGTVMYDni6x0tg0wNBlkw4Hr8V4hRnnE1Bjb4iugp1Q71UBIqI20fNGwpng','Kendra works at the front desk and she got me taken care of immediately! Wonderful staff! Jacob the Nurse took care of me and instructed me about everything that was going on. Dr. Vakey was very considerate and passionate, love this ER!','2020-02-02 22:33:50.088000','2020-02-02 22:33:50.088000',5,'Saman Siddiqui','https://lh5.googleusercontent.com/-fjKrz5qwm88/AAAAAAAAAAI/AAAAAAAAAAA/qwZ-vESHHL0/c-rp-mo-br100/photo.jpg','16590124370714063921',13884),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0idE8aHNRUZrx40x6pS5sakcCLpUsj94oydC0q1sB0aMSXc9u6tV9gxJE3nxSNVE7Z-roTSYuajqNjzJSBycolQrw388','Very professional staff and very quick service, very top of the line in services specifically Alvean, Tricia, Jocelyn and Dr. Mauldin, the best experience ever.','2019-06-12 20:17:09.126000','2019-06-12 20:17:09.126000',5,'Jesus Salgado','https://lh6.googleusercontent.com/-UV2u4GTYpc4/AAAAAAAAAAI/AAAAAAAAAAA/i55YCaUo694/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0IDgF6DCRckSqiibXlF_OnG9uDjt-FrjqQpwAErSsqUYwe6cTzjNK3zQoxeE8Bhxnhwrp7RLsGWDPdI5MtXnwf0kNjMs','Great staff. Very caring and attentive. No long wait time.','2017-09-13 01:27:54.407000','2017-09-13 01:27:54.407000',4,'T Wash','https://lh4.googleusercontent.com/-Gmj4MFzSQKk/AAAAAAAAAAI/AAAAAAAAAAA/BbT_nVoDXsU/c-rp-mo-br100/photo.jpg','17394740196501090048',4977),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0iiH7Tc3lSWc4uS4fl0jITWGPhyIo3WcJawdOlXAsvBn3ar_9soZKdCb8e8p5_LmA3nTpn6UEYSDotOVp_QiAeLgUnFc',NULL,'2019-05-21 17:04:47.629000','2019-05-21 17:04:47.629000',5,'Geralisha LaKim','https://lh6.googleusercontent.com/-5SJglWfYmLU/AAAAAAAAAAI/AAAAAAAAAAA/3grmvQyEuPY/c-rp-mo-br100/photo.jpg','14567670160750071148',1321),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0IiMQsMPr1yS5MpHYI6OD-QvlqEd-po9YoG6yAEC37UynliIQgJXQV8kldKehJw0ZZ1wShRb35oMkbi_dNKEjur-dpd0','Having the opportunity to meet such a wonderful staff was a true blessing. Norma and Brenda were absolutely amazing. They were both so attentive, kind, and professional.\n\nI would recommend it to anyone who is facing an emergency and are seeking quality care at a beautiful, clean, professionally staffed medical facility, give Signature Care Emergency Center a try. You will not be disappointed. They are the absolute very best!\n\nMrs. M - Fort Bend County resident','2018-08-13 09:09:49.336000','2018-08-13 09:09:49.336000',5,'Music Lover','https://lh6.googleusercontent.com/-57ca4NwYnuw/AAAAAAAAAAI/AAAAAAAAAAA/L2zblb8S5Gg/c-rp-mo-br100/photo.jpg','8918455867446117794',9246),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0iIU5HTV-OQirNwBl1SXMdgpNVU8FQ0pJqL5XIerXF0mzPrztqeJGFToge3W58eu814kYero2pF-DgooKHlGECUf3Qro','Highly recommend this emergency center. Kind, responsive and skilled care!!! ','2017-01-23 21:33:38.998000','2017-01-23 21:33:38.998000',5,'Bobbi Parkis','https://lh5.googleusercontent.com/-PysoLxax9ww/AAAAAAAAAAI/AAAAAAAAAAA/UsBnl6tawY4/c-rp-mo-br100/photo.jpg','14567670160750071148',1909),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ikoNzjTVH6mdJxEP9LPjngJfVH6eoTztYa3D16F_wFXkd_QL4c0fmCx1Gw1aia9MBm4pHh-TPN_d44VJVFvodt52gjs','I highly recommend this place! Everyone here is very nice and helpful. I got out of there in less than an hour.','2016-03-25 21:46:32.852000','2016-03-25 21:46:32.852000',5,'Jessica Spires','https://lh5.googleusercontent.com/-1VyD4j1kRMA/AAAAAAAAAAI/AAAAAAAAAAA/2jjHJkB-WFY/c-rp-mo-br100/photo.jpg','14567670160750071148',2040),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Im7YHRcUk0NtR9IIxmRSP8r_13SUVoyEM-YFG0YwkPS7DUhGhCFPahL5LJBPRHH9CDaEQ4er2hjmq9a5TeATU8tRTak','As a physician myself, I know where to go when I need help. Friday night I felt a pop in my ankle while playing ball with my son. I thought I broke my ankle. When my wife got me in the car I said please take me to SignatureCare ER. I had been there before and had a very good experience with them. \nThe staff there was awesome as usual. RN Blake came out the car with a wheelchair and took me right in. Within minutes I was seen by Dr. Gadiraju. She assessed my situation and quickly got me some pain relief. RN Rollie and Natalia helped me to get X-rays and were extremely kind and gentle. RN Rollie then helped Dr. Gadiraju with placing my leg in a cast. Within a couple of hours I had a plan of care and an MRI which they arranged for me on a Saturday. \nThe facility is so comfortable. You could tell a lot of time was spent in planning the layout. They offered me a warm blanket as well as some food and water. I was given the remote to a large screen TV on the wall and was able to watch the end of the Astros game. \nI give this place an A++ and I’m a doctor myself so I know ER’s very well. If me, my wife or anyone of my kids ever need help, I know exactly where to go. \nThank you all so much for a wonderful experience and making me feel better. \nKind regards,\nMichael','2019-04-08 00:52:56.934000','2019-04-08 00:52:56.934000',5,'Alberto Mougouris Eisenberg','https://lh5.googleusercontent.com/-dOGtIWElKaU/AAAAAAAAAAI/AAAAAAAAAAA/PowiTvJAxfI/c-rp-mo-br100/photo.jpg','8679688254631342173',8854),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0inEGTQQNidLdSh4g4jibCDXbVvmh40uN0nuSuBUh8vcladCgkigAYb4lzcEzjXRkh-SwDnB-G1TzS9C0uehmxNqtO9Y','The BEST ER ever!! Thank you Dr. Harjai, Alvean, Marcus, Brian and Trae for making me feel so much better!! This ER is prompt, friendly, caring and I will not go anywhere else!!! And Elida at the front desk is the best!!!','2019-10-16 07:14:29.716000','2019-10-15 23:09:39.820000',5,'Jani G Whitney','https://lh6.googleusercontent.com/-n2teQ3JAW54/AAAAAAAAAAI/AAAAAAAAAAA/fg47NCLwTJE/c-rp-mo-br100/photo.jpg','16389487648212004696',2819),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0INIMVPj46WuqWZjGZSOdWbo9kaYXgWaK8DLAsI8ZqE9TYDcGA0HdHV18LUwlXmdhL_sbMHWxBiEni93ecJizDIxXk_c','I am never going to an emergency room again. I have been here for less than 30 minutes, I\'m already in a room, had xrays done, and waiting for results.','2017-12-19 22:50:17.333000','2017-12-19 22:50:17.333000',5,'Samantha Guzman','https://lh4.googleusercontent.com/-gReNXRNNHAY/AAAAAAAAAAI/AAAAAAAAAAA/FzpORxdBFp0/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1707),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0IOsssah6GkASFHNSqfLMzN-lCOLM3VBTSy8ntsnUqnUuZi4ACbB2z2mQjmkY_XyuRLecnIxtfNkm13eChXf_f3u45vk','Emergency rooms are never very enjoyable but at least the quick and respectful staff here make an accident less stressful the other ER’s in the past.','2019-02-02 03:24:49.314000','2019-02-02 03:24:49.314000',5,'Connor Smythe','https://lh5.googleusercontent.com/-MfCItBYstVg/AAAAAAAAAAI/AAAAAAAAAAA/hl0Wvn3SIrA/c-rp-mo-br100/photo.jpg','16590124370714063921',3563),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0iQ9iKbqT-mYwoxDC1M5-nlZ2loXsG1owRAEmk9GY34fYcMnhnf_dnHBCp77rALbnUOO2sWZny57k2gYhd6KRWxVS6ds','Alexis, Cat, and Kathleen are all a professional staff.I am very pleased with the services provided by these wonderful ladies because all of them are successful in their field','2019-03-12 01:52:04.882000','2019-03-12 01:52:04.882000',5,'Nakonia Polk','https://lh4.googleusercontent.com/-DBUq-jkNut4/AAAAAAAAAAI/AAAAAAAAAAA/CxuIVpyFivs/c-rp-mo-br100/photo.jpg','16590124370714063921',3504),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0IT_r3VmntXWBpeMveTBPufIZQig-l3wNIlXCeANJPAPN3j1ZhVkWlvgljh0RpYpWlJrSAlutqyIGCUFxh-LDCykbC5Y',NULL,'2020-07-13 21:37:58.029000','2020-07-13 21:37:58.029000',5,'Zulma Camacho','https://lh3.googleusercontent.com/a-/AOh14GiWZtEiTRVdb2AofhhQeE9iJuzZXiS0ptNz3BHU=c0x00000000-cc-rp','14567670160750071148',21888),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ivlCm7I3nYSNiZnvG6C5LxeqXyrWpbRTx8GZ4JcZzED9S75QAW8LHL_GSqs5L2a-exAhPedKLAOUIzaUL0f--COnbbc','I had such a great experience, every time I have any Healy issues. This is the my first stop all the time.','2017-02-04 17:32:13.499000','2017-02-04 17:32:13.499000',5,'Orsito','https://lh4.googleusercontent.com/-hkvcwNKUYNk/AAAAAAAAAAI/AAAAAAAAAAA/7WFaFmUu1KE/c-rp-mo-br100/photo.jpg','17394740196501090048',5121),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0J1-uUfvVWL2Avnd7EXrmTxY0ZqX8dPb1rJNuQrsj6eTRoGBsJsZZW-vvHzaO3JkLTsmmPBj0eIUkAonywtANMeQq85I','Signature Care Emergency Center is a state of the art facility. The staff was welcoming and expedited our care with nurses, doctors, x-ray techs, everyone in the facility was wonderful. Love this center and its staff','2017-09-17 00:18:19.327000','2017-09-17 00:18:19.327000',5,'Laura Guthrie','https://lh4.googleusercontent.com/-264S_ffBaCI/AAAAAAAAAAI/AAAAAAAAAAA/bXjkfss_h10/c-rp-mo-br100/photo.jpg','8918455867446117794',9360),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0J7ODhr9Hq3zerUx2sONdhA_Pw2Gm_z8XKqoEOtvhabM6rZ8EyDXaXqtlct1hNLl3JGNCMhscFk_1hWE-Te-f7HYqNB8','I had a great experience! Everything moved nice and efficiently. Very pleased with everyone’s hospitality, especially Anthony, Laura, Remington, Becca, Alexis, and Dr. Vakey. I highly recommend SignatureCare for any medical emergency you may be facing.','2018-09-15 19:04:15.770000','2018-09-15 19:04:15.770000',5,'Megan Loya','https://lh3.googleusercontent.com/-yQbMAPrGQnc/AAAAAAAAAAI/AAAAAAAAAAA/eL0HGjdVKEI/c-rp-mo-br100/photo.jpg','16590124370714063921',3728),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0jdQX_SS4sCSEQ7sVoeBVoM2-CghZ7NmPuUNSXngTFXzhq8UeScLQBl0K4z0i2WzP7baLxhDSewElc-f38bOi44FwrsQ','Everyone was friendly and helpful. Dr. Alcanter was nice and took the time to explain what was being done & my results. Blake ws very attentive and made sure I was comfortable. The facilities are up to date and clean.','2019-11-01 19:51:03.964000','2019-11-01 19:51:03.964000',5,'Tiffini Nikkia','https://lh6.googleusercontent.com/-IUWCbQFHFfE/AAAAAAAAAAI/AAAAAAAAAAA/TXv-80fXpOU/c-rp-mo-br100/photo.jpg','8679688254631342173',8756),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0JHAcQEWhAdOl_MxfH7mYOb8X6eMPk2QJszYCegRw5PtCU2LWkuwgrDZVs-R5pSLyRESH4hV37Imqn50VZQG-mJ9ie3c','Scheduled COVID testing and SignatureCare made it so easy. Filed out additional paperwork upon arrival. Friendly and efficient staff. Waiting area was set up for easy social distancing. Average wait time, but nothing like a hospital ER wait time. Got swabbed and waited in our car for results. In and on our way home with results in about 1.5 hours. Luckily tested negative!','2020-07-04 23:26:41.454000','2020-07-04 23:26:41.454000',5,'Linda Lavin','https://lh6.googleusercontent.com/-o1aanLhhYPU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclgEUKH8Oi_8NH7Z47McJAx3aaw8Q/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21423),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0jLgj_N0nkKE9FZXYQRcD_nmJA8qxDl9UxV0sEzZLyav0O5gNOdkCdKup3OKMBh5J3kHNyaXZCMBgMDwVQh7b1BzhuQw','Every time I come here it’s very fast paced and i feel comfortable here. Lizzie is very welcoming and you can tell she is passionate about her job. Olivia is also very helpful and makes the process smooth and easy for Dr. Faig. The Dr. was very kind and patience with me also answered any questions or concerns I had. Overall great service from all the staff.','2019-07-08 20:11:15.710000','2019-07-08 20:11:15.710000',5,'Diamond Da\'Lecia','https://lh4.googleusercontent.com/-2QMApZ03VME/AAAAAAAAAAI/AAAAAAAAAAA/3yHqyPvL4n8/c-rp-mo-br100/photo.jpg','3511292162159714121',7262),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0JQC6VhJLKNQkuJunXSm7gqgl9mDXOX6JWTUC2pJ_TGSGhRXuwONheUwMxVbBFSSvIxCA19dBdDMLMGJ9BBf48-GDG5Y','I went to Signature ER for Covid testing. When I arrived, I was greeted by ER Tech Leah. She was very friendly and helpful . She helped me through every step of the process including conducting the test. She has a calming influence with patients. She was wonderful!','2020-07-31 12:22:32.576000','2020-07-31 12:22:32.576000',5,'Andrew Morris','https://lh4.googleusercontent.com/-Vz8OH04SLBg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm-4_6TVYtK42JlfI2uS0T8SizOyQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21843),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0JUX-XMC4TbWkf_znA3OUwgAtv8F7o62kOd2tp1UbH2oYLkuFwCIX6bIZu1L1hLpT_663ZuyvcO-wYjAPZiSIdJlFqE0','Brought my mom here in an emergency. This place was fantastic. The staff was friendly and very informative. We were helped right away. DR. O’ Mally, Alvean, kelly and jocelyn were wonderful. Don’t think twice and come to this place.','2019-11-27 16:18:22.291000','2019-11-27 16:18:22.291000',5,'Areej Yamin','https://lh4.googleusercontent.com/-D99lFSJGa4c/AAAAAAAAAAI/AAAAAAAAAAA/MD9Xmm1nAlA/c-rp-mo-br100/photo.jpg','16389487648212004696',2616),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0JXtlavo0LFv09cb17C72THfLkLlQip3dWfPDNgLQj7_fvkpVOEuySPogqVS4DeWtzhCZF-VEQap-CZcXkCFDTrC99IA','My friend was very sick and came here by herself while i was at work. She was very nervous being by herself and the staff including Anthony made her feel very comfortable! When i got there everyone was super friendly and helpful! Highly recommended coming here!','2018-09-12 03:39:20.883000','2018-09-12 03:39:20.883000',5,'Skylar Anderson','https://lh5.googleusercontent.com/-ohmhAqZRM90/AAAAAAAAAAI/AAAAAAAAAAA/Gf4DEYSdc44/c-rp-mo-br100/photo.jpg','16590124370714063921',3737),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0k6N6hoA77Byc2FuwfjZm433jdzHOeAVqYr8wK7634earZIfRUKWQHE76v3HYrkoaM0OiXu-PFotAAFNNSaTxg_keqKs','Went when I had the flu and everything else was closed. They helped me out very quickly and their facilities are extremely new and clean. Staff was very nice and very helpful, would highly recommend.','2017-01-31 00:49:35.402000','2017-01-31 00:49:35.402000',5,'Luke Buchanan','https://lh4.googleusercontent.com/-hvrBitLeBMg/AAAAAAAAAAI/AAAAAAAAAAA/lZl2gdtAems/c-rp-mo-br100/photo.jpg','16590124370714063921',4074),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0KEqR0bU16sawtWxTZl83FQcYiyEUY7fp0xLd8HuSEf5F-SWQxi20rBGqQZ2TZxjiPKoZHb9xLzAKalMqcX1MxOLLX9s','Absolutely the most pleasant visit under the circumstances. Everyone was gracious, from reception to the discharge nurse. I wish I could have these people for my primary care!!! Definitely will recommend to all my friends.','2016-09-19 15:09:30.453000','2016-09-19 15:09:30.453000',5,'Marta Park','https://lh5.googleusercontent.com/-bjvetdLET6g/AAAAAAAAAAI/AAAAAAAAAAA/gNXBRGVxbys/c-rp-mo-br100/photo.jpg','14567670160750071148',1970),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Kfm0UV2i1ySVSEdPrtAQWIiQLXdmFeXRnPle6VLhcIl8RBAicF_GOywQLSZrdsEyIKGhFi9GyxwQ1nbcN-XeAKhpdlU','The staff is amazing! Dr. Elsbecker was very kind and gentle with his care. The nurses and techs I had (Gabe and Eric) definitely made the time as enjoyable as it can be!','2019-12-12 04:07:54.717000','2019-12-12 04:07:54.717000',5,'Bethany Beeman','https://lh3.googleusercontent.com/-7cy0pwqPFXE/AAAAAAAAAAI/AAAAAAAAAAA/1sPqJwn4l-U/c-rp-mo-br100/photo.jpg','16891069708558046635',4124),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0KnVwW8x0zV-wLQeTWwLMaP8kdi3eixwKuh7WSX5jDY1svpUEOP5a1rvNcPpV3w7Y2k5TA2SF1rubKzO3khRozWaPJao','I loved the staffs hospitality. Everyone made me feel really safe specially Dee she was very nice and helpful on any questions or concerns that I had. I will be recommending this place to my friends thank y\'all.','2019-08-15 02:38:52.147000','2019-08-15 02:38:52.147000',5,'Smalls Gonzalez','https://lh3.googleusercontent.com/-cInKqGnHMkI/AAAAAAAAAAI/AAAAAAAAAAA/s4eYTu-i7Y4/c-rp-mo-br100/photo.jpg','3511292162159714121',7204),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0kQmp5QshV3sOstng1WMSF-AkbCPG_0NH2FyLpRsfOlLvAHxfFUOjifXkVtHhuxsS9rHI4I1Pd0MV0rzb2x2GYugp2nU',NULL,'2020-07-16 22:52:42.316000','2020-07-16 22:52:42.316000',5,'Agnes Rivera','https://lh3.googleusercontent.com/-4DxZzpK6-Bs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmMz0WFxIx8pqHDRp_CsfEnxeA-GA/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22071),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0kRoQRs2cKPHknP9nfRtm8FjrdsCTZe8hTKo2k55y3zpXPkgnL5OFisKoESgDuz34IcfNnsBq0R1j_w7-CP07k5MxhTE','From the beginning to the end of my visit I had no complaints. The staff was friendly & caring and the Dr W. was comforting as well! Ebony, the ultrasound tech was patient & caring. Pamela RN was also a very nice nurse compared to others at places I\'ve been before. It was close to home & service was quick & efficiently done. I recommend signature care for your emergent needs!','2018-02-14 13:10:53.698000','2018-02-14 13:10:53.698000',5,'Ticarra Mays','https://lh4.googleusercontent.com/-o34j876v9ik/AAAAAAAAAAI/AAAAAAAAAAA/wjsy9XcJZC8/c-rp-mo-br100/photo.jpg','8918455867446117794',9288),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0kttNlzuPKEuNmPzOMkimJR4tADx7-TKUIa2_LsH98OBGAfkVKkZCV8LIK2rh-AgeyZX8Jv8eO9LlOBTiOtbcVu4_Bcs','Great experience! Dyveliz at the front desk was very friendly and helpful!','2018-12-08 17:49:27.194000','2018-12-08 17:49:27.194000',5,'Brina Whitlock','https://lh6.googleusercontent.com/-4keNsCQhPSg/AAAAAAAAAAI/AAAAAAAAAAA/GtXxYaqntls/c-rp-mo-br100/photo.jpg','16590124370714063921',3619),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0KVMIfbPpWFth6m9XVVLx2zpY7WBgOFdrKdotkrhiLed1E28_LKpQ8qa7_G58JgV-ikdR52DtUacE1K2W4YcgPX299gg','The staff were extremely wonderful and very helpful to my needs and care!! Strongly recommend to all!','2020-01-17 08:53:29.114000','2020-01-17 08:53:29.114000',5,'Shaqueta Henry','https://lh3.googleusercontent.com/-2AQOAdJkjt0/AAAAAAAAAAI/AAAAAAAAAAA/GtLQeDuIZqg/c-rp-mo-br100/photo.jpg','3272657195432704501',10080),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0LdXcAMR2Yefi6iwzO3jX5vw_U1KzXxkg6KvAprumZ4OQY1uAOVw1ba7vybU7sooYcnxWYoPgn8soPXJ0H7KOuP3wc5g',NULL,'2019-06-22 19:17:18.433000','2019-06-22 19:17:18.433000',5,'Playboyhuncho','https://lh5.googleusercontent.com/-EhvVFNuCdEA/AAAAAAAAAAI/AAAAAAAAAAA/5KCssuiQ-oA/c-rp-mo-br100/photo.jpg','17898197009688164559',5685),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0lgAj-0S-8lW_sErS5Bo7KzNf3YKecDgMpb-1V7DD8f3f8qgsgy0pwSycKTWoCIN0s3OexPo3yD9-hzhIU_t0yCwFD4U','The receptionist was amazing, very informative. Tanishia was so great and kind. She was attentive Chantele, the nurse, was so amazing. She was so caring and kind. She was informative and quick. She was kind and friendly. I will recommend family and friends to come here.','2020-03-02 05:02:29.293000','2020-03-02 05:02:29.293000',5,'Timna Viera','https://lh4.googleusercontent.com/-DJh4zTEnBHk/AAAAAAAAAAI/AAAAAAAAAAA/Af2uIiUOj3Y/c-rp-mo-br100/photo.jpg','17898197009688164559',14116),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Lghw1RwdL-P6r-ZUyZ1ZfAJ3bwXRO2gSJDxCydEvZpYSp3X5aDSWAMSstlPCqzvTafkdiUrV5mX47wdDDlzIczqxDgA','Dr. Dang \nSusan (RN)\nTanishia (REG) \nThey were awesome','2019-11-06 06:55:35.826000','2019-11-06 06:55:35.826000',5,'Jerrick Shepherd','https://lh4.googleusercontent.com/-5GxVT1bFW-M/AAAAAAAAAAI/AAAAAAAAAAA/07_nnmbtiXc/c-rp-mo-br100/photo.jpg','17898197009688164559',5459),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0LNOCu8hgkXCuiede80sJcrUBgAmCPhkoveZY2II8ujN-usC0r1xEfSLIBgU5VY6-tRxqLQZ9HI9IyswePqtOD7CInyQ','Our teenage son had a knee injury and the hospital er sounded dreaful. We tried this place and there was barley a wait, they treated him with such care and professionalism. If we need urgent treatment again we will definitely be back.','2020-01-17 14:13:51.126000','2020-01-17 14:13:51.126000',5,'Gfdsa Qazxsw','https://lh3.googleusercontent.com/-0h30etkP7zk/AAAAAAAAAAI/AAAAAAAAAAA/7VcqiVrD8mE/c-rp-mo-br100/photo.jpg','17898197009688164559',9990),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0LogWUrV_fQQcJBk5N31PIkELTFJ5V3IvaMjoYrcPnXFDeYeXPpYzPg-doEENKvk66m_2gImKLKWyV5N98DmVF9rxDN0','My experience was a great one. I’ve actually been here more than once for two different sets of issues. I was treated promptly and with respect both times. Highly recommend.\n\nEdited to reflect my most recent experience: I hate to retract my earlier review because I truly had great experiences there in the past with a Dr. Bell and one other physician. But I went here last night for a major infection I’m dealing with and was treated like a lowly imbecile. The doctor on staff (Dr. Jones I think?) was RUDE, abrupt, condescending at times and tried “threatening/scaring” me into having things done. I ended up walking out. Because after nearly two hours, nothing was done for me—nothing to treat my pain, no antibiotics, no fluids, etc. NOTHING. So I decided that if I’m going to writhe in pain, I’d rather do it at home. Sad that this doctor walked into my room with an already preconceived notion that I was a _____ kind of patient (whatever it was he was assuming about me). Even my husband thought the same thing. So if I were told that if I returned I would see him again, I would politely decline because I do not want to experience that physician ever again.','2018-01-18 14:26:07.564000','2018-01-18 14:26:07.564000',2,'J B','https://lh5.googleusercontent.com/-fexnnp28E4w/AAAAAAAAAAI/AAAAAAAAAAA/F9orwygT0aQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5935),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0lpucInZNv1njwGbeg_RvZbIurc3SoRj-5MjvblpwEVm0jQbfUhy9w87-cdz-Y4Bi4v6dfrbztWhkToT5QJx6ZF2YvKo','After feeling awful I came into SignatureCare and was treated so well. I was offered a water and a warm blanket. I was seen right away with no wait time. The pillows were also very soft and comfortable not like the typical hospital bed. Ms. Christi was fantastic and put me at ease. Overall a great experience.','2019-01-10 08:33:06.443000','2019-01-09 15:29:12.241000',5,'Maghan Rodecap','https://lh6.googleusercontent.com/-uWNuczERjtI/AAAAAAAAAAI/AAAAAAAAAAA/6s694rD5Hg8/c-rp-mo-br100/photo.jpg','16891069708558046635',4372),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0lwVvAxrJ0_GtIdDPjZlMuSL3plMfaQWdZOgbHw6flaQ4kpevQ-5JV6Q3ItTb9GzBLcpOWib97lvrnpIvPbA3uWdXkps','Friendly staff, nurses, and doctors! Would definitely recommend to family and friends. Doctors and nurses were very attentive to my needs.','2019-01-21 18:31:20.912000','2019-01-21 18:31:20.912000',5,'Strawberry Diamond','https://lh5.googleusercontent.com/-E2JbtWFh5lg/AAAAAAAAAAI/AAAAAAAAAAA/KsCZAyTx9z8/c-rp-mo-br100/photo.jpg','17898197009688164559',5882),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0lyH1JOZEkX8jMc40vNFnOjL3pGrdvz9JjNBlb_voL2L9vBz_cK12peIFJuvtcj_-KVQz4c5xEE1sJLIFPXgtEQgz2Hg','My experience here was absolutely amazing. We were able to be seen in less than 5 mins. The staff is super friendly and professional. Selina was the best She made sure everything was taken care of. & she gave snacks!!!!','2020-02-26 18:52:23.523000','2020-02-26 18:52:23.523000',5,'Miss Viper','https://lh4.googleusercontent.com/-n0tJC1m1jsQ/AAAAAAAAAAI/AAAAAAAAAAA/CyYU305dhSY/c-rp-mo-br100/photo.jpg','17394740196501090048',14005),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0m-CuQuhFUHwy2EN4aAgFJEuVp9oBAM8Pa_A4Qb-FNUzbh1aC_EbaE-LM6c4pd7n_UAe1ZFVxfLPCca4xZYo-3cUH_mA','They are the best Docs, I have been to my whole life!','2019-12-19 20:40:06.781000','2019-12-19 20:40:06.781000',5,'Esmeralda Cordova','https://lh6.googleusercontent.com/-gG3VmRIaXXU/AAAAAAAAAAI/AAAAAAAAAAA/yYNyKBZUNVQ/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',8686),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0m26WgOOOn71ISQ-Fo4bvy15IluAEk32G85cr7swUVNbCtpQWPjWruyRCk_xLkL-lNAw17F5b3bVit-fVu-M6aMomGQo','Every one was great thank you for making my wife fee better. Maya was an amazing help!','2020-01-04 18:40:07.184000','2020-01-04 18:40:07.184000',5,'Fadi Had','https://lh3.googleusercontent.com/-KwgwhcQXq48/AAAAAAAAAAI/AAAAAAAAAAA/TV6P3lRjAMI/c-rp-mo-br100/photo.jpg','12541597562633926366',255),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0m6co2IEEr_pEJMGzaRJyBIAOzGlm8Yp6I274_Z0PsqZ7UVbYu0IfDq_GEYeZc-91ZjPqZ8f6VNjDdfPs4vr_ctaC6B0','Staff is very pleasant and caring. Also very knowledgeable about COVID-19. From the registration clerk, Amy, to the nurse and tech, Mina and Brian, also to the doctor, Dr Lim, everyone was very professional and kind. I would definitely refer this ER to my friends, relatives, and acquaintances. A+!','2020-08-03 12:53:48.310000','2020-08-03 12:53:48.310000',5,'Gina McMahon','https://lh4.googleusercontent.com/-h7OxnuLg7q4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclBwpqtNATcHdrKZ1ztHxDIX55Qag/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22146),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0m6LULgQ-25W-Wbpnn_nCX12lm2Bn9QGo512434_gRDrxWJrigzf1BfA7XO0P2-sh1dqo2lctjL93hyz05Urd1vFlKyY',NULL,'2019-11-13 17:55:09.963000','2019-11-13 17:55:09.963000',5,'Jennifer Mcintire','https://lh5.googleusercontent.com/-AoEsUPA_toA/AAAAAAAAAAI/AAAAAAAAAAA/8ANhSCHTq14/c-rp-mo-br100/photo.jpg','8626688543755174284',14658),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0MdehNZRnXGYw-Dtf67sP175UcEd9HfNyIFa87pqsnkuY8XDsp8rHA_-cr8wmtVxYAv7_hYS2al4gqWtf8ro8LWpn8Eo','Outstanding.','2017-05-22 07:15:04.708000','2017-05-22 07:15:04.708000',5,'Preta','https://lh5.googleusercontent.com/-mddLgKc9j3c/AAAAAAAAAAI/AAAAAAAAAAA/BC12acsFj0w/c-rp-mo-br100/photo.jpg','14904078213800803294',2356),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0mf81pr-PA91IlIY8GLuoGLqrmrflP_AOgvATX3785Zyug4_gF1CzfhZi6gX9BpCxu2WyhVwQclXJkfZ04qzoTfxSsxY','I had a very good experience! The staff were very friendly!! SignatureCare was clean and welcoming. There was barely any wait time; I had come in initially and the staff offered me a warm blanket and a water bottle. I would like to thank Dr. Hannan and Dr. Zhang for an absolutely impressive service!','2018-08-20 23:45:57.289000','2018-08-20 23:45:57.289000',5,'Liana Alam','https://lh5.googleusercontent.com/-h5AGhv8u6D4/AAAAAAAAAAI/AAAAAAAAAAA/P5tWy9cMOkU/c-rp-mo-br100/photo.jpg','8918455867446117794',9242),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0MFzqLb0WEkN5efGDWL26LQ4P3079L5LTzBObqWPwB9XvpMdcFh9WQdiz3aQR2eMvMogXgoUtoZ12L--5PbIKnPOyXDU','Dr. Iheme, Alvean, Tricia and Elida took such great care of me. Thank you!','2019-10-03 16:19:31.809000','2019-10-03 16:19:31.809000',5,'Brook B','https://lh5.googleusercontent.com/-SILpYPjwQ1A/AAAAAAAAAAI/AAAAAAAAAAA/bAUpEIf7Ngw/c-rp-mo-br100/photo.jpg','16389487648212004696',2858),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0mh1V6PSAZ2c2EZOP8qiUnUxwe1esVt8xH1yeir1iUh3IbMX7fxzO5u9o5y3wbFk-QYw7L3-w7uOnC8wgkE3Jr3-8ic8','Honey was very good and is excellent warm and nice\n\nDr Vagenes is an excellent doctor. He pretends to me and talked to me. I really appreciated. OMG nurse Briana is the best nurse I have ever had. She is very patient, caring, the nurse that you want to take care of you whenever you are sick.','2018-05-06 06:30:45.677000','2018-05-06 06:30:45.677000',5,'Adrian St Hill','https://lh3.googleusercontent.com/-iDjL27FBjWo/AAAAAAAAAAI/AAAAAAAAAAA/-VGstY9x-D8/c-rp-mo-br100/photo.jpg','17394740196501090048',4851),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0MKzBSZgo0VckytWdpbSeM_ICf8UHosUmPOxjZb5FtT9tfFaYiIDiSGKGBbiXkeCEr8FF369wbp0jmn-Y0huYARaFo1M','The staff nurses and Dr. Yost were EXCELLENT! I was feeling really badly when I arrived but even the admissions process was easy, fast, and nice. The staff offered beverages, placed remote control in my hand, and provided me with a warm blanket. Dr. Yost was thorough and in no hurry. He explained every medication he would be prescribing and told how it was expected to relieve my discomfort. He was personable and all of the staff showed excellent bedside manners. Dr. Yost shook my hand upon meeting me, smiled pleasantly and was not reluctant to touch my skin. I say this because I have experienced doctors who were clearly reluctant or outright didnt touch me at all (I suspect due to my darker skin... just speaking honestly). I totally trusted the entire staff and felt very comfortable that I was safe and my best interest was a priority. I would definitely return and definitely recommend this facility. The space was nice, clean, organized and quiet. Very pleasant! I felt better even before leaving and Kim offered a nice exiting experience. I only wish I could remember everyone’s name. Although the names were posted in the room, badges were visible, and I vowed to remember them; I reckon I just wasn’t feeling well enough to retain as well as I normally would. I give this place a 10!!!','2019-09-13 05:29:00.155000','2019-09-13 05:29:00.155000',5,'Kemeriks Shelf','https://lh6.googleusercontent.com/-JKT4O6OmfgA/AAAAAAAAAAI/AAAAAAAAAAA/Wexm8_XA-v8/c-rp-mo-br100/photo.jpg','3272657195432704501',6894),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Mq5QWGGUjrj4JmaF9z6GDGy9hkV7DN3rgf5AGFXZ_7hsnJRD_307oysm63dTeox9G3VpADsbWqGRsL_0L0yetZgQ2Pw',NULL,'2020-06-08 15:31:10.985000','2020-06-08 15:31:10.985000',4,'Natasha Vahalia','https://lh3.googleusercontent.com/-lOUdoSPmLpE/AAAAAAAAAAI/AAAAAAAAAAA/0pJ0Zc5l1lk/c-rp-mo-br100/photo.jpg','8918455867446117794',22930),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0MsyeeAjCTCiEqM8HAnJOEKYV5lTcS0c-cbSRR-q-13raDN3qGLiObzrAxMu3Dj729_8YhB06PSmqYIrB3IIoMUv_5R0','This is a great place. Doctor is really nice and distract attention when doing the stitches.','2019-04-19 02:13:05.060000','2019-04-19 02:13:05.060000',5,'Lanchun He','https://lh4.googleusercontent.com/-WMUyg8YQCog/AAAAAAAAAAI/AAAAAAAAAAA/JnfKOc1mlW4/c-rp-mo-br100/photo.jpg','16590124370714063921',3419),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0MXSmOG583UEV9h-uArBcwA8JMJ3mKldaIiFAWVA5Fou-pgJZ-wddYKHkCNYY2FGdBPdEODh2km9IMrGcL-WTz4PvsbM',NULL,'2019-10-28 02:01:05.518000','2019-10-28 02:01:05.518000',5,'Elias A. Bustamante','https://lh4.googleusercontent.com/-gszgAviFvM0/AAAAAAAAAAI/AAAAAAAAAAA/E7pn_JeyFPI/c-rp-mo-br100/photo.jpg','13486358490203335051',759),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0N-eoopm3jTTj5Z_k5gCwszFb2hesxRjWabqRyL4QbMGyBGhFOBaLezi-sSoV1vWVemXHVKnHqsPtGXAkANuOFvaT2vE','I had a great experience here. My baby was too young to be seen at the Urgent care centers, and he was having some breathing issues. The whole staff was very professional and reassuring. We were seen quickly and got results of tests very fast. I will definitely use this facility in the future, when needed.','2019-02-26 15:39:43.407000','2019-02-26 15:39:43.407000',5,'Lauren Gonzalez-Sullwold','https://lh6.googleusercontent.com/-TyuYR9cszKM/AAAAAAAAAAI/AAAAAAAAAAA/88NgIlJEYHA/c-rp-mo-br100/photo.jpg','6521947413723274945',8301),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0N3Hweq4Pzin4DQi69O73gy4rPus-1AHbUXgCF2zDA3WypHtQVR0YqAhfZTaZN1VWmgPQHD3U9b2o6n-4VXP-UTbVVBI','I really enjoyed my experience here. The process to get seen by a doctor was the easiest I\'ve seen in a long time, i literally filled out all my papers and is was time for me to go back.\n\nWhen I met my nurse, Dustin he was so focused and dedicated to making me feel better. He didn\'t leave me there for an hour guessing someone when someone will come. \n\nDon\'t get me wrong it is extremely hard to have several different patients all with their own needs but what makes Dustin different is his ability to make you feel like you matter!\n\nIf you are looking for and Emergency Room, I would recommend this one in a Heartbeat! !\n\nThanks again Dustin!','2020-08-04 22:56:25.379000','2020-08-04 22:56:25.379000',5,'Yara Shaw','https://lh4.googleusercontent.com/-mvoMjGIe7eo/AAAAAAAAAAI/AAAAAAAAAAA/yLHn5BPyn6E/c-rp-mo-br100/photo.jpg','14748677429039074158',22527),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0N4NGmPh4o75G_xkU79pT7_h6oI--TdY-BWb15lvUYQejrrK9A7rUW4V0W0u5G00G8rULZAjKY9a8OylfmMTdFhwwVuw',NULL,'2018-11-17 02:53:47.127000','2018-11-17 02:53:47.127000',5,'Kanti Bansal','https://lh5.googleusercontent.com/-IjfEFPacmp8/AAAAAAAAAAI/AAAAAAAAAAA/5BicaH_uqVM/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',1125),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0N84mwBDUIfQeiU6kLLGYaE2uyZNRSSCpjfPf7NfZTzK0EAZrd-ZM-PSVNDgZhr7RSaPsx5bpX-E0MzMDrNLsIV_Kg6E','I made an appointment on line, showed up at my allotted time and was in and out in under an hour. The place is clean and the staff very friendly and knowledgeable.','2020-07-05 12:34:55.446000','2020-07-05 12:34:55.446000',5,'Duncan Elliott','https://lh5.googleusercontent.com/-LPgokgMSx7Q/AAAAAAAAAAI/AAAAAAAAAAA/epHDdKo8qFE/c-rp-mo-br100/photo.jpg','3511292162159714121',21470),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0n8aCynO4x4GWddKaSGYKKZ2fG7bTjdrWH6WD0_oTfthmsSiXoale-HKqbcWuu8F-SysiA9JO9xWeJdCrWgj11m3aX6c','2.6.18 Dr. Rose, Adam, Linda, Ian, Shelly, and others I may miss: these people are remarkable! They are passionate about a most vital and demanding field. They are priceless!','2018-02-06 17:57:23.124000','2018-02-06 17:57:23.124000',5,'Nan Riley','https://lh5.googleusercontent.com/-XPFHpe0_nrc/AAAAAAAAAAI/AAAAAAAAAAA/OUdURKD-U2Y/c-rp-mo-br100/photo.jpg','16891069708558046635',4514),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Na6nQC_a7EeN9sAweZibfpJTHCbRtUd1V1B9SaAcuFz2FfzdkzmEBNRoU0A2H4l21IRIi528Pr2XqTmud-1ZahuqA9M','Kimberly P. and Cecila Z. were kind and patient as my little niece chatted away. They were not rude and very accommodating as we waited for my nephew to be seen.','2020-01-19 02:32:58.871000','2020-01-19 02:32:58.871000',5,'Dee Lynn','https://lh6.googleusercontent.com/-D0m5i5jU_v8/AAAAAAAAAAI/AAAAAAAAAAA/tgoECSBWKRc/c-rp-mo-br100/photo.jpg','14567670160750071148',10030),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0NCNVbwrgMpRFG8Bcr7i4IjKVqS4a7sqQ3D2hXOMf1Uvq1bFi508fY30i3rhxHutp0Mi32ScGgv8kmPLeAjuuuSPuhTg','I\'m not the biggest fan when it comes to ER\'S, but Bellaire is not an ER, its more like an 5 Star Top Steak House, just in case some of you don\'t know what a 5 Star Steak House is (Short Definition)-They will make sure you enjoy your stay with First Class Service. If, I repeat. If you ever have an emergency throughout the night or day I highly recommend Bellaire ER, 5 Star Service. Shout out to the lady behind the front desk Miss Therisa, shout out to my boy Cheney (Rad Tech), my (Nurse) Katrina who had a dramatic patient but still took care of me and last but not least my (Doctor). Dr. Daniels for helping with all the questions I had. Merry Christmas Bellaire Emergency Center. Whenever I take a trip back home to the Bahamas I certainly won\'t forget to bring you\'ll a souvenir.','2019-12-25 03:10:25.200000','2019-12-25 03:10:25.200000',5,'D\'Angelo Young','https://lh3.googleusercontent.com/-IWYrB1hEcw0/AAAAAAAAAAI/AAAAAAAAAAA/7dSsZIhpFyY/c-rp-mo-br100/photo.jpg','8679688254631342173',8674),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0nEIK6qhBHaDbFHRmLmpaBVZ6rn1ywC4yOZwt3FOVjM-0fhpoRHiwnViZnuwFqKxiAVZ7pUl6A-sGP1fKbVnjZ7jtzRU','I don’t even know where to begin with how amazing this facility is. I came in at 1 am with my daughter and they treated us like vip patients. They were so professional and helpful. I had an amazing experience and will definitely be going back!!','2019-08-08 14:06:49.550000','2019-08-08 14:06:49.550000',5,'Chelsie Elizabeth Rodriguez','https://lh6.googleusercontent.com/-7Ypv82ZtyKo/AAAAAAAAAAI/AAAAAAAAAAA/L4Orofdo39g/c-rp-mo-br100/photo.jpg','6521947413723274945',8167),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0NfI19ZF_xA0oFg-nwl8BqaaZ67_R037Y-HXYuqoVX2ewWDovclEnxCsSXdoEZMmHuEBa9CnAkByzZISDR9bb7f_6xOk','Great experience! Thank you Dr Ortiz and Nurse Kristina for thanking care of me!','2020-01-21 16:03:25.109000','2020-01-21 16:03:25.109000',5,'Amilkar Martinez','https://lh6.googleusercontent.com/-tCPhkfVBBlQ/AAAAAAAAAAI/AAAAAAAAAAA/nPBKFvNqBDQ/c-rp-mo-br100/photo.jpg','12541597562633926366',10366),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0NlTMJMcJV-rBWNScnWYXgI-wmZxXSnjkspiRG04KYRSnGa2qBjQjvV6MxohB4W-UnNnSGwY0tLEF-2-FqJt0nMGCjNw','Theresa M and Joseph were very kind and made me feel very comfortable. I was here for Covid testing and they were quick and efficient. I would recommend signature care to my friends.','2020-07-16 22:03:08.956000','2020-07-16 22:03:08.956000',5,'Melissa Lopez','https://lh4.googleusercontent.com/-wz2Rz5zD_48/AAAAAAAAAAI/AAAAAAAAAAA/zMgxcW09_IY/c-rp-mo-br100/photo.jpg','6521947413723274945',22881),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0nN4-uuMVdDd6aABeN1YryADtI-cXbObyelGuK9wRfGLgP9jaJiT7bTRRw9paeFCGCiy_nnt_wpP4xqtvrZMi8FMRuKc',NULL,'2020-06-18 20:36:47.483000','2020-06-18 20:36:47.483000',5,'payam musazade','https://lh4.googleusercontent.com/-aaZGayBVlIc/AAAAAAAAAAI/AAAAAAAAAAA/krZFOY95hhw/c-rp-mo-br100/photo.jpg','12541597562633926366',20899),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0nqvnxW3oOGJadj9xVTkiHeeV_gbxXfBM_dBPfOtMe0ik_4nmsDnaPahBFdaSqQ8WWbxF-b1r0fdyTWu5rk4vWt3qTJY','Shelly, Ms. Miller, and Earl were so helpful and nice throughout the process. Thank you guys!','2019-06-22 23:39:59.024000','2019-06-22 23:39:59.024000',5,'Katrina Riojas','https://lh4.googleusercontent.com/-_ZemrB9KeU0/AAAAAAAAAAI/AAAAAAAAAAA/nYdUUMVoELE/c-rp-mo-br100/photo.jpg','16891069708558046635',4245),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ns7d3dIVew39w12Erey9WXd7xclaGX1gF8s75baVtHd2EJt2EKvA_-aE3qJLgYrshzH2auE943uUIaUPxRJ0xawnOkI','I have taken my daughter here twice now. The first time was for difficulty breathing that turned out to be croup. The 2nd was for a head injury with repeated vomiting that turned out to be a concussion. Both times the care was beyond phenomenal. Every single staff member from the receptionist, to the nurse, to the doctor, to the radiologist was amazing. They helped calm my daughter (who admittedly is a tough one to treat due to \"stranger danger\") and they also calmed my fears. They explained care and involved me in the decision making and made sure we were both comfortable every step of the way. I have an older son as well and I can honestly say that in all the care I\'ve ever received for either of my children (whether it be routine well checks or an emergency situation), this care has been the best hands down. I am very thankful for each of the staff there.','2019-02-04 18:01:26.937000','2019-02-04 18:01:26.937000',5,'Jennifer Way','https://lh5.googleusercontent.com/-uWcbRYIhCBM/AAAAAAAAAAI/AAAAAAAAAAA/ANXDG11iDk0/c-rp-mo-br100/photo.jpg','16891069708558046635',4356),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0nSaw242nAPVHsYZAMgivAAFwq-ljQZp6LfRCN-hDqhnD1odwpXz8c5W7M5Rj15achg0xT3ZGQGttBHZDKEJDhg1KZq4','Overall a very welcoming and caring environment! Nurse: Jacob and Dr. Vaagenes were very helpful and made sure that the information provided to me was clear and understandable. Registration was very timely and quick especially with the help of Lindsay. Great experience, would highly recommended to anyone that need immediate medical attention.','2019-04-17 18:17:39.831000','2019-04-17 18:17:39.831000',5,'Jesus Ramirez','https://lh5.googleusercontent.com/-uwF7Ae_jZMc/AAAAAAAAAAI/AAAAAAAAAAA/gu_70MDnCIw/c-rp-mo-br100/photo.jpg','16590124370714063921',3424),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0nV0dz3bpJcKNZKMn3gD7IB11tz0pCyDd5ROtuAWT7SlqaN8RY0yTH243slXF28DoLE5pSgaHrVu76bvsogzII8Z-5_o','Great Staff !!\nDr.Tran\nNurse: Rollie\nRadTech: Natalia\nRegistration: Stephanie \n\nTHEY WERE ARE SO HELPFUL AND DETAILED IN EVERYTHING AND VERY FRIENDLY! Also gave my daughter a Christmas gift ! She loves it lol❤️','2019-12-27 00:59:55.883000','2019-12-27 00:59:55.883000',5,'Hailey Blaze','https://lh3.googleusercontent.com/-4OLkk_dv9bQ/AAAAAAAAAAI/AAAAAAAAAAA/kkpWHOMAi90/c-rp-mo-br100/photo.jpg','8679688254631342173',8672),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Nyr3bWs0kyUjg-nufxio2u4Fz17Ad9Ajhixzrg85uyY4AekFrHs0lSVu1nmE61FEa76vQLNQo3tIylwQCkuz6Sw6UqY','Phenomenal facility! I didn’t expect to receive such efficient care from an ER. This place is highly recommended. Thanks to the staff of Dr. Nguyen, Alvean, Christopher, Genesis, and Jordan.','2019-11-16 21:01:36.169000','2019-11-16 21:01:36.169000',5,'martel shorter','https://lh6.googleusercontent.com/-lKUbZ5LrdOM/AAAAAAAAAAI/AAAAAAAAAAA/cbxV156BJ_o/c-rp-mo-br100/photo.jpg','16389487648212004696',2679),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Nz28e3x1_bWt9tvFJ-0vPZAkdS99QyKijKTx1SQS0uCldPX1FqDxkJcsuF25YAEp_g9qMqrfZK_YAga4HD4orkBA9d0','I really appreciate the help and information the doctors and nurses gave me...Dr.Do,Nurse Alvean, Jasmin and Marcus are one heck of a TEAM!','2019-06-25 19:30:54.795000','2019-06-25 19:30:54.795000',5,'Lakenya Ellis','https://lh5.googleusercontent.com/-3odc2CRKYq4/AAAAAAAAAAI/AAAAAAAAAAA/QulzFhuXYNY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0o-7CjE4-qf0qubhez75CIJeJt0aNeBAWuY8ZTZaqObXoX_nVTONNNpTQ9ooGl4SSpIPfTkLBrQRdZQPwlkzuW7GJtas','It is not even an emergency room','2014-11-22 21:30:30.360000','2014-11-22 21:30:30.360000',1,'Bashar Ibraheem','https://lh4.googleusercontent.com/-4BKQp8PjEuI/AAAAAAAAAAI/AAAAAAAAAAA/PWfXx4HZmDY/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',8937),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0OMARR2UIx0RCoaZUOVaxf5n6MCpMd_8dgKPF-HOu_Qh1Lz4cDgXMKahELEj0rpV6kZn-8GdZttv7OZlIArZvU0GucUY','It was great! They treated me with little to no wait! The receptionist Airianna was amazing she was so polite and took care of me!','2016-10-27 16:48:17.968000','2016-10-27 16:48:17.968000',5,'Lord Tacosupreme','https://lh4.googleusercontent.com/-R7ZDE8oTGxw/AAAAAAAAAAI/AAAAAAAAAAA/fVXHE5nx6Wg/c-rp-mo-br100/photo.jpg','14904078213800803294',2451),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0OoUMqSkkAnjE3G79RLgqbINKP7l5CVyOQT-2KCeJPmI_kUeQFTrMc2yXw1lLTBPXEIBTO0SEv6JTKPTFaIBHlxMcpoU','This place was AMAZING!\nDr Haijai and his staff Nurse Nikki, Jessica, and Luisa were very warm yet professional. They were very thorough and it took a fraction of the time a regular Er normally takes and a fraction of the cost!','2019-04-28 07:55:05.810000','2019-04-28 07:55:05.810000',5,'Jocelyn Joseph','https://lh5.googleusercontent.com/-BWgOKWuxv7c/AAAAAAAAAAI/AAAAAAAAAAA/hKNyUXv9kAY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ouIWw5vuNBVbQKQXuIEwRgpFnq5waxpRNmF-b2qkUrPbZyvhikDqUqlxyrnvlwbzA3G5iJyxWKtLm4CGyDfk-_ePSR4','This place has nice staff and they help you right away, very pleased.','2019-12-21 14:38:08.869000','2019-12-21 14:38:08.869000',4,'Brenda Delira','https://lh6.googleusercontent.com/-K7AMTd2RosU/AAAAAAAAAAI/AAAAAAAAAAA/v8PRzVYR-SU/c-rp-mo-br100/photo.jpg','16891069708558046635',4105),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0OWoSain9pMJHFASKilIMXfohsvYJQxu5DQkGMqjU_tsRzyj2qjRfsI8hw32ap5Fg3njYHIsknhdB42dypCtZO3aL7K4','The service was wonderful and quick Dr. Lindsay, Carly, Sarra,Sherwin, and Thelma was very professional!','2019-12-20 08:44:27.584000','2019-12-20 08:44:27.584000',5,'Eyekonik Lashes','https://lh5.googleusercontent.com/-m6KRSYHb0N4/AAAAAAAAAAI/AAAAAAAAAAA/Rx8MjrwZ-ow/c-rp-mo-br100/photo.jpg','12541597562633926366',327),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0OynMhdsvSD4GP9p8eo8DaFtYeem0Rp9IDUvW9djfvJQGEFod6bJM_MznJULkHmVcHLbbI2ZJIIoKGHFj3wuK0tA70r4','My experience at signature care was awesome everyone was so friendly and hopefully the staff was amazing','2016-07-21 12:41:08.408000','2016-07-21 12:41:08.408000',5,'sophia thomas','https://lh5.googleusercontent.com/-A1fy_CveuK4/AAAAAAAAAAI/AAAAAAAAAAA/ipN4VZrVKMg/c-rp-mo-br100/photo.jpg','17394740196501090048',5224),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0OyxNneddXL61ITfHmJ40BXx-173QAwUDUUk5MBj_eHKSFy9XNiiEICk-dzQXlb7Aae9hxQRbx9NDE2IltbIrlAETUw8','Amazing experience. Dr. Elsbecker, Katie and Delfino were very warm and listened to all my questions. They were very prompt and made sure to make me feel comfortable as possible. I would definitely recommend this place to my friends.','2019-05-23 16:49:15.196000','2019-05-23 16:49:15.196000',5,'Sona Singh','https://lh5.googleusercontent.com/-KtIELhHAFAw/AAAAAAAAAAI/AAAAAAAAAAA/DmVtbFu310w/c-rp-mo-br100/photo.jpg','16891069708558046635',4270),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0PJIzQKaE41UljAtyVvfd8o4jiORBrXPKuoYhXVR9wNC6OUO7ZRWqsIJreV253DKPre1v_wQYCUIK8NhEoPtfbakoJAE','Awesome place. Cody and Nydia were friendly and professional.','2020-08-12 16:57:56.895000','2020-08-12 16:57:56.895000',5,'Natalie Woods','https://lh3.googleusercontent.com/a-/AOh14GhdDn1HYJFr6byjCHioJrGy5-avTH7pxh3CafNuqQ=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0PryBO6SHg_mbFERpC3Ay7e0IvXRyO2fNF_e_02uJGiRWQhTXVzmLcNubT8-W_ZfwngFuPj0vLoTVWXv8VdUXnQ0mwp8','Dr. Maudlin and ER Tech Kramer and the nurses were AMAZING! They were very prompt, attentive and thorough. Waited only 5 minutes. Dr. Maudlin made sure to give my son the best care and made me feel very comfortable while stitching my son\'s head. We are very thankful we chose to go to Signature Care to get my son taken care of!','2019-06-21 17:04:11.577000','2019-06-21 17:04:11.577000',5,'Cadence Brandt','https://lh3.googleusercontent.com/-WwvS4V08yYg/AAAAAAAAAAI/AAAAAAAAAAA/ZAJ6RFHgTyY/c-rp-mo-br100/photo.jpg','13486358490203335051',942),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0pZF_ZWOLljX1MQsQc-rbtPAuflUfnzaNF9ctOHKZIJ6r-cUDR1EqE8TwjNxBE5yYGGRI5TTsoqYkugcWYvLJlghf3Pw',NULL,'2018-06-27 21:59:52.523000','2018-06-27 21:59:52.523000',5,'Renee Adams','https://lh3.googleusercontent.com/-dSkks8ZHKmE/AAAAAAAAAAI/AAAAAAAAAAA/jdjyOfre7V4/c-rp-mo-br100/photo.jpg','16891069708558046635',4463),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Q_pHTJ_koDMzONRVwW2Yv6oifzy5a0pl1fSDCIiAbT5TbsRXvvv9OqiSKHgLGOEpQhwReegoSaYNeEC2QPVSHh7jb-Y','My experience with Signature Care in Cypress was the best! Thanks to Alvean and Marcus so nice and made sure to make me feel comfortable and updated with information.','2019-04-28 22:20:22.354000','2019-04-28 22:20:22.354000',5,'Lakeisha Powell','https://lh4.googleusercontent.com/-QQ5JDNkLcMg/AAAAAAAAAAI/AAAAAAAAAAA/TrqHpk7nrSs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0qAnZEKjbGxnArOr0u0mHHkyM9yrRv1-SNBSjaF4M3_i_mzHe80X9tHj1gIq2FDQgk9TLz6GOHiD1iV-mDlQj07NzwwM','My experiences here have all been positive. I get taken back quickly. The nurse and doctor come in with 5 minutes and treatment is started quickly after that. They listen to you and care about you. I definitely recommend this ER.','2020-03-12 06:24:30.557000','2020-03-12 06:24:30.557000',5,'Heather White','https://lh3.googleusercontent.com/a-/AOh14GgYVhn0h4ktkX-jVpcmqvjJLxiPh7cgG5t2eOylhg=c0x00000000-cc-rp','8626688543755174284',21185),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0QEKWl50f0VGIgpn4_nH5Eha4OIZOpx-lj0LrFFQ_Z-SHytJJ5odXp_DuNlq__TrPVfUiVdvyctZwxy2n4TI0OYWzMLE','Staff was friendly and attentive. We arrived late on a Sunday evening. We selected this location because it had comparable service/equipment to an emergency room and thought the wait time would be less. While we were seen right away it was a long while before the CT scanning equipment was ready and data processed. We left at close to midnight. While the overall visit was a five star, I had to take a star off simply because I thought the wait time would be less and was disappointed that it was not less than an emergency room visit.','2019-04-18 18:49:24.742000','2019-04-18 18:49:24.742000',4,'Catherine Rodrigue','https://lh6.googleusercontent.com/-nDPrMRrEULw/AAAAAAAAAAI/AAAAAAAAAAA/Mg3L-ebKNc4/c-rp-mo-br100/photo.jpg','16891069708558046635',4301),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0qJSEKR8tRqIdH8Rtp-BLnsTItLnGiaSyy5hEpBdP0n5q3AsGvuIbafNNY_j_mekhz69xAHetB3PLWq48gL-jXyd76bo','This has to be the best Emergancy Center in town!! I was in and out in 30 minutes. The staff were all welcoming, and took the time to explain everything to me before it was done. I highly recommend this place if you’re looking for fast and friendly emergancy care.','2018-08-28 04:56:36.974000','2018-08-28 04:56:36.974000',5,'Joseph Turcios','https://lh3.googleusercontent.com/-RezX0IrGoLI/AAAAAAAAAAI/AAAAAAAAAAA/gI-41RxJ2Zo/c-rp-mo-br100/photo.jpg','14904078213800803294',2221),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0QkYO0jOu-Ms788Zy_u0g02yaoF7bLUOPKzjS5rVVv4JiqunoOYXN9hUuByGhhuvVUsVGKovE1b26974O8sN2iqeast8',NULL,'2017-09-11 05:36:20.592000','2017-09-11 05:36:20.592000',5,'Kanti Bansal','https://lh5.googleusercontent.com/-IjfEFPacmp8/AAAAAAAAAAI/AAAAAAAAAAA/5BicaH_uqVM/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3936),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0qPB5TgeoPuvHq7t92YQp74kHSUzBh6PCDS_PATipsR1Jx8KyfvbopDR86zJUW9nbJk69fzTIg4uuzjhkL0-QJcVQ4uo','I had a bit of a scare. Was seen quickly and efficiently. Thanks to all.','2019-12-12 11:19:50.427000','2019-12-12 11:19:50.427000',5,'Christopher Bennett','https://lh4.googleusercontent.com/-G3XXe7SSLYA/AAAAAAAAAAI/AAAAAAAAAAA/Q4ODWVOjWD0/c-rp-mo-br100/photo.jpg','16891069708558046635',4123),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0QSV_p24hKtwGhJGzo9HXyQDNMz_aez2eLLDtlHbX0v7ijxRJmAEGtucv4q0gAwVfcjIeJkJKZs3VNOIUqaALU699aNo','Quick, competent, caring staff/doctors.','2017-12-09 21:13:32.487000','2017-12-09 21:13:32.487000',4,'emily weems','https://lh4.googleusercontent.com/-eUjg19r2nBg/AAAAAAAAAAI/AAAAAAAAAAA/sWNyd0Ym_fI/c-rp-mo-br100/photo.jpg','14567670160750071148',1718),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0qwLykuqMaVCePUAqrQ3mp74cY9tjcz0LN5Corov6WbKfBYyjnyp8k40TNDaHkuQgVY_AJRx_3q9VPsWjaMac01emZuI','Friendly and caring staff 24/7','2017-10-08 08:42:38.111000','2017-10-08 08:42:38.111000',5,'Ray cruz','https://lh5.googleusercontent.com/-7A6puBtPmKc/AAAAAAAAAAI/AAAAAAAAAAA/JeDHiLGS8bk/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3926),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0QWy0bkM_qHdapdOFA7VLI0hclKTVeiezkq14MUiDAjcNAnJu9lSqMJGwnVhWVU6XPYYDmAsdww3oH9h81MZ7X58ZEvM','Very welcoming Erica was fast got me in an out','2020-02-28 18:40:58.187000','2020-02-28 18:40:58.187000',5,'saiki_m gaming','https://lh4.googleusercontent.com/-sEbb3EgxXAA/AAAAAAAAAAI/AAAAAAAAAAA/sWS9r9aGRqQ/c-rp-mo-br100/photo.jpg','14904078213800803294',20986),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0QY8b3IAXU6eFaflEPfzLRFhN-CeNQQSU-8MK6S8Swqd6PSYokEBJshtc66J-HpqTlrKvaz5a0fuZyKoCvx6HpuFfw3c','Christmas morning 2019 i woke up with pink eye at 430am. Found this place on google maps and headed over. Tanisha greeted me and remembered speaking to me on the phone. She made my morning easy even though she didn\'t know that i was hosting Christmas dinner at my house and would need to finish up cooking. I was seen right away, i guess i was 1 of the very few people out at this time, Fatima, Sarah and Dr. Ortiz got me squared away and made my visit fun turning my panic into a sense of relief. Thank you guys!!! 🙌🙌','2020-01-01 07:00:10.412000','2020-01-01 07:00:10.412000',5,'Ebony Nacole','https://lh3.googleusercontent.com/-hwMbv14PCuY/AAAAAAAAAAI/AAAAAAAAAAA/EoYYPtioXz4/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5313),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0R_q9-SuXezoio9Q3v4qVEzkE9GfyRGdkFhkEVBvz3t4vN_ICGuuvvg_FkFbsvz4yUt5O7didH6-iNhUtG_hqSVw9NIU','I had an excellent experience at SignatureCare Emergency Center in the Heights. The facility is clean and modern. They were able to attend to me immediately upon my arrival. The staff, including front desk, nurses, techs, ER doctors, and consulting physicians were excellent. They had on-site equipment to perform CT scan, echocardiogram, lab work, etc. All were attentive, friendly and approachable, and they tried to keep me informed as to what was going on and kept me as comfortable as possible during my 15-hour stay. Check out was a breeze. They sent me home with a discharge plan, follow up information, doctor referral, and prescriptions. They even called me the next day to check in on me to see how I was feeling. I highly recommend SignatureCare Emergency Center in the Heights. This is a top notch emergency Center!','2019-01-31 17:16:05.482000','2019-01-31 17:16:05.482000',5,'Christiana Skweres','https://lh6.googleusercontent.com/-UqUmhF9Aezw/AAAAAAAAAAI/AAAAAAAAAAA/_C8KisNf4Pk/c-rp-mo-br100/photo.jpg','14567670160750071148',1398),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0r4VM2E-AyQMEapJaAHm7ZVERktXHpjbrMHKqKjOL--qRZWpjWMbcSg_MvHKO645InslrbTHkboc4QhJGon_3n0Y2hfU',NULL,'2020-01-11 15:47:56.932000','2020-01-11 15:47:56.932000',5,'Reina Franco','https://lh6.googleusercontent.com/-VQnkPSROrMA/AAAAAAAAAAI/AAAAAAAAAAA/NLfcUlLgG6Y/c-rp-mo-br100/photo.jpg','16389487648212004696',9489),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0RDansbWwzpPvbiC7dzuWyR7vNXryMoI7BiIWJDzt3FqNfKtnZI7JOtq1leQB7n8k82MMCKxFVwO5k0Rv-ppuuPeAjkI','quick fast and easy!','2019-11-05 19:11:46.081000','2019-11-05 19:11:46.081000',5,'Melissa Adams','https://lh5.googleusercontent.com/-GclPr_xjaxM/AAAAAAAAAAI/AAAAAAAAAAA/aDXQ_kGgbXY/c-rp-mo-br100/photo.jpg','14904078213800803294',13667),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0RDUaC5TxvD_2kj6miU0wq7OYY7yOUxc4GfFxvtw7PRSW4MyEDMUOspIKOfpquDgyCUHT0vxx5Tz9mMLfKWA5ng21d9E','I just want to say thank you again to all the staff at Signature Care! Lisa for keeping and eye on my daughter while my son was receiving care to the awesome nurses Krystal and Corey you guys are the BEST! Andrew, Aaron and Dr. Huerta Thank you! This has been the best care I have received ever. Thank you so much again for helping us with our son. I highly recommend you guys!! You all are AWESOME!!','2019-06-11 20:18:14.490000','2019-06-11 20:18:14.490000',5,'Juanita Espino','https://lh4.googleusercontent.com/-IcuL5OusQ9Q/AAAAAAAAAAI/AAAAAAAAAAA/cnoPYTOstZ4/c-rp-mo-br100/photo.jpg','13486358490203335051',971),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0RFzbUAySKZkpbJJu4SkQysB_H9W9mFmYPJCu2CBXXdVSJIFYh_pA_B8UcOWmABPKrxUFnc4FgnKyn3V56B_mziAgqww',NULL,'2017-06-13 03:58:52.576000','2017-06-13 03:58:52.576000',3,'Truett Allen','https://lh5.googleusercontent.com/-xWm-Nt4_J6c/AAAAAAAAAAI/AAAAAAAAAAA/5F46hobcg0I/c-rp-mo-br100/photo.jpg','14904078213800803294',2347),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0rJNAurLpySYbNXqkXek01OwR3Kol6-qb-G97YV165JQ-uYeZq-baDWgtUiWF5TPKdGNqNLkZgkiSbdxhxdoDUHCkyW4','Kristina was very sweet and their service was very quick and Doctor Golla was great as well. He was very attentive and knowledgeable.','2020-02-26 21:57:22.333000','2020-02-26 21:57:22.333000',5,'Theoneand Only','https://lh5.googleusercontent.com/-zphzl5dNxxc/AAAAAAAAAAI/AAAAAAAAAAA/AH92NbJk_CE/c-rp-mo-br100/photo.jpg','12541597562633926366',13336),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0rNub_dlACZIYpNR8QoTuuyEITgYhGb99M0RxwNwg0JhUJRA6okOA6gNWt8Y4U4Lj07vXiilkESbqKsv_mYoAVeuJw-E','This is the best I have ever been treated by an ER/Urgent care. I had barely sat down before I was called. I received a warm blanket and my pain was treated immediately. The staff is SO friendly and professional and called an ambulance for me quickly so that I could be admitted to the hospital. I would highly recommend this place to anyone that needs immediate care!','2019-10-17 10:01:51.475000','2019-10-17 10:01:51.475000',5,'J D','https://lh5.googleusercontent.com/-qSC3caTFA5o/AAAAAAAAAAI/AAAAAAAAAAA/tA2rKb_zwH8/c-rp-mo-br100/photo.jpg','2694018788013845459',6042),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Ro9G_RDaBjQRPH9-kO3Bjna6bZhw3syPIliwXsKsdpBPQR3MZIR5CA4MtgdrpodnIKDM1y7fHSVI9ojQP6Zpz7Y92CE','Fast and friendly service upfront about how it all works not grey areas.','2019-03-27 05:44:21.893000','2019-03-27 05:44:21.893000',5,'Lorenzo Sifuentes','https://lh5.googleusercontent.com/-Od-mOeTPjjs/AAAAAAAAAAI/AAAAAAAAAAA/zlntjobCWE8/c-rp-mo-br100/photo.jpg','16891069708558046635',4313),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0rRWwuyXiNtYiB23X9HRK65X1zdAtW6DCpXcoinFd5swi306aqK5Hhfp6wxIzZ20xDHwHCRui3GA3h5UuEnHhYFyimcI','Thereasa was amazing and they were very organized and considerate. I would definitely recommend them.','2020-07-16 17:09:43.865000','2020-07-16 17:09:43.865000',5,'Annabell Gonzalez','https://lh6.googleusercontent.com/-DuEnZAf_D8g/AAAAAAAAAAI/AAAAAAAAAAA/MeNskvlaaJI/c-rp-mo-br100/photo.jpg','6521947413723274945',22894),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0RyBvbuIGHtf3wBqwdC0zc-agyACa-k1BxLTguxNhgJ8qUZ2GBkXDxSm180rGsb-Nj6O4qGU11jnzj29oJ7sParegJOU','(Translated by Google) Ekaterini, Jocelyn, Dr. Farogi\n\n(Original)\nEkaterini, Jocelyn, Dr.Faroogi','2020-01-27 19:56:34.787000','2020-01-27 19:56:34.787000',5,'Savannah Montes','https://lh5.googleusercontent.com/-yGCaVyxKyuA/AAAAAAAAAAI/AAAAAAAAAAA/tQjF0tIu_K8/c-rp-mo-br100/photo.jpg','16389487648212004696',10167),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0RyWGq45xdqVQ0R_J3i1SCt3v1GzK0b1_FmsSm5Ea2rAmXEMq89O6k77jly1yKfdZYaTC94u7ex93EY1UQ4HGZyy041w','I was treated quickly for my pain, it was clean, they staff was knowledgeable and they made me feel like they cared about making sure that I felt better and treated the root of the problem. They were very thorough. My friends recommended me here and I would highly recommend to anyone seeking immediate care.','2018-01-02 18:31:15.725000','2018-01-02 18:31:15.725000',5,'Jessica Ayarzagoitia','https://lh4.googleusercontent.com/-wK7H14cpqmw/AAAAAAAAAAI/AAAAAAAAAAA/5v7YRarSmwM/c-rp-mo-br100/photo.jpg','14567670160750071148',1700),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Sa4_XZtAoIL8a-g9_X-X98Ei3n38A7_WJ44f8ytdGLJ4oa0UPQIIHUnUk-DkQh65gz8iGE1fE_iIqTIC1F69OLCRsKs','The staff was extremely friendly and got me in and out. Naomi was very friendly, Jacob was very informative, and Dr. Singla made sure I knew what was going on with me. They offered me a warm blanket multiple times, as well as continually asked if I was comfortable.','2020-02-19 20:37:27.909000','2020-02-19 20:37:27.909000',5,'Emilie Browne','https://lh3.googleusercontent.com/-S_gn8xlxpvQ/AAAAAAAAAAI/AAAAAAAAAAA/P_IfA2MtKTU/c-rp-mo-br100/photo.jpg','16590124370714063921',13843),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0SCG-bmLKjcIg2997TNP6i_zZ3v9jGEmu5fRXIdENeND79-OTxBfbDcaEd3uD33TWaeJOlMwlalFgB12-TilaPBqWJpY','The facility is very clean and the care team was on point. Everyone was very friendly, nice, and caring.','2020-02-25 18:05:33.651000','2020-02-25 18:05:33.651000',5,'Kyndra Snoddy','https://lh5.googleusercontent.com/-PPtKXUJOAi4/AAAAAAAAAAI/AAAAAAAAAAA/53k0U1fVnN4/c-rp-mo-br100/photo.jpg','12541597562633926366',13344),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0seiKrrQol9Ozx92TvLREhNLOpYKuvmoUL-4Aivn_f4ZLoWozQZ_7gB2qrQWl-gfZn9vIX8nm2PZukRGlsATJh0DQxDM','Dr. O’Mally, Marcus, and Robert were very helpful and had wonderful bedside manner. The place was really clean and they even had snacks and a kid area. If necessary I will be returning to this location. Jocelyn was nice also during registration. Thanks for being open on a holiday!','2019-05-27 17:06:28.984000','2019-05-27 17:06:28.984000',5,'Dee J','https://lh6.googleusercontent.com/-MkZK8Yicixs/AAAAAAAAAAI/AAAAAAAAAAA/c-5QkDo2EhI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0SjSm-yTOGzEo---2-VG9f2-cppuKramjq-gqsMcTIUeuNS2OHhK3Zsc5kErzSrhXmawT2vZsac8xvdcjLDv0-VbOkj0','Dr. Huerta, Corey, Andrew and Jessica! What a amazing team. Very caring, compassionate and took really good care of my family member! This is where I go 1st for a EMERGENCY! And I am a local Midlanders born and raised!','2019-12-08 22:18:08.048000','2019-12-08 22:18:08.048000',5,'Sasha','https://lh6.googleusercontent.com/-8kOJoXy4LHA/AAAAAAAAAAI/AAAAAAAAAAA/BVgJzMFCWMM/c-rp-mo-br100/photo.jpg','13486358490203335051',697),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0SnRsBskrZI81pPpSYDZ1Q7TTEziEHuUZjbo4yreMOibaokolS_Fe-JYNKhONb7W7UfkaO5WFspiRXGeOPmK_v9NhUwo','This location should be the EXACT prototype for ALL SignatureCares in the Houston area!!','2020-01-23 02:27:05.458000','2020-01-23 02:27:05.458000',5,'Jessica Anderson','https://lh3.googleusercontent.com/-HHlgpBI6Vtk/AAAAAAAAAAI/AAAAAAAAAAA/7NLGC1yCg8M/c-rp-mo-br100/photo.jpg','8918455867446117794',14870),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0sPCPlFtY2qNvKhNgulH_SkpqNXJBaz0VxnXcORkd0BmY5IHiABdM2Sdm6s696O6BEhJK2QBcPt9mLhuEFzzvwW7WdV4','RN: Karen\nRegistration: Kim\nRT: Gunnar\nDoctor: Dr. Edwards\n\nThe staff was very helpful and comforting during our visit. My son hates shots and they helped to make him feel as good as possible. I would recommend that everyone should use Signature Care for any medical needs!!!','2019-11-27 21:17:11.440000','2019-11-27 21:17:11.440000',5,'Joshua Hines','https://lh6.googleusercontent.com/-DSt5YYMZUdQ/AAAAAAAAAAI/AAAAAAAAAAA/GomfXQ1PzXY/c-rp-mo-br100/photo.jpg','3272657195432704501',6851),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0SQKrnwAg2mVj8ckgnMc7KytVRE3RB1rOnKqZxlMKO2q9LYngCfr5vrMFk-fM0phT89baXphKCvU15k4zVO2d0q5IAu0',NULL,'2019-10-12 15:38:45.323000','2019-10-12 15:38:45.323000',5,'Devaun Harris','https://lh4.googleusercontent.com/-ypwzsW8nNZY/AAAAAAAAAAI/AAAAAAAAAAA/ujgLIcutxsg/c-rp-mo-br100/photo.jpg','16389487648212004696',2825),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0sW3DEg4KPxr5kQEq0z5HvKf0jSBw3hzDzIS5AE8OgEY4gD2BvwTEuutIC0jPOti-bBvfKxQ2KDVR4j1EJkB-lb8IEgI','My experience at Signature Care Emergency Center - Cypress was very pleasant. I’m not a fan of any doctor’s visits but felt extremely comfortable being here. As soon as I walked in, I was greeted by Melissa. She was welcoming and eased my worries right away. I got called to the back right away, and was helped by several others (Sean, Troy, and Jessica) before seeing Dr. Patel. All were very friendly and professional. They attended to my needs right away and helped answer all of my questions and concerns. Definitely would recommend to anyone in need.','2019-09-09 03:53:50.240000','2019-09-09 03:53:50.240000',5,'Cynthia Nguyen','https://lh6.googleusercontent.com/-6yMwTtwc9-c/AAAAAAAAAAI/AAAAAAAAAAA/RHWet68rMWQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2935),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0sxDMgz9eSUXzn9-NNPsK-Txz-9IM0z3dV3R5pzEqjML9AeyE-li827TmUxVgSgfwgM0C6PhX4HDjOmJCr3xHUsckHnE','Ariel the receptionist was very excellent and extremely pleasant!! The doctor Alisha Wren was very helpful in relieving me from my blistered bug bites. Thanks so much!!! Everyone was sooo warm and welcoming!','2019-08-03 02:39:11.428000','2019-08-03 02:39:11.428000',5,'Totally Netters','https://lh6.googleusercontent.com/-OVW-GG5ekzo/AAAAAAAAAAI/AAAAAAAAAAA/XdSwCr6ZDIw/c-rp-mo-br100/photo.jpg','12541597562633926366',466),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0sxEk6yZWsOQkUHXLZLSdbgeTHoIJu_ttivU8qFeZW31bsaaiuypzKD6PEYqwPRdYdEqBffId-RLd1ZdJIkpmHxrdzjE','This is the best place to bring in your loved ones. The doctors are knowledgeable, caring and go above and beyond to determine the root of your ailment. The facility is super clean, with all the technology necessary to run any and every single exam needed. The staff is warm and kind, knowledgeable and caring. During my stay I got hungry a couple of times the offered me full meals for my mother and for myself as I waited for her, also snacks , drinks and water . My mother was offered warm blankets, food and the best attention along with the best test to determine her illness . We felt like at home during our rough times. I will continue taking my family here! They are the best!! If you want a safe, clean,place with professional caring staff and want the best for your family this is the place!','2020-08-17 03:30:56.335000','2020-08-17 03:30:56.335000',5,'Flor L','https://lh3.googleusercontent.com/-8A5bYlBWGuQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck_krFbw6hOW5Fr2qlkGeiXiYpQig/c0x00000000-cc-rp/photo.jpg','8679688254631342173',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0T5MWQJqBVCSKAOSm7Jc9kieK-IWHy6SN5tZfoCI_-ktmJoTbGtKJ19alDIxFl4u-p6MViCyziPMOsH4clYqkGiTQ_X4','The ladies working registration, Lorena and Amanda, were kind, welcoming, and helpful. Everyone who helped made sure to answer any questions I had, my visit was quick and easy.','2020-07-29 13:24:10.448000','2020-07-29 13:24:10.448000',5,'Nick Viator','https://lh4.googleusercontent.com/-2qUiZY5wTTw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckWtbSX4B8il8OX3wKPLpoQJxXQyg/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22008),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0T8rVqfBnAoKLMyLIgbNMckH5LhnDWStotTEil9nBqqk8hBc6fWvofav5lbNRGlW-A7qCHctcBqLnH_of_ddAWToreDk','I had a great service they helped me so much and answered all my questions and let me know before hand what my billing would be \n\nDoctor jabar \nNurses chantel Lynn \nRad tech:Laura H\nER Tech:Daniel B \nRegistration Tanishaw','2019-10-21 06:18:51.856000','2019-10-21 06:18:51.856000',5,'Azfar Lakhdhir','https://lh3.googleusercontent.com/-6wEA_huKUdM/AAAAAAAAAAI/AAAAAAAAAAA/Jyop6QLY8d4/c-rp-mo-br100/photo.jpg','17898197009688164559',5494),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0TaD2Jb54mnurpTmgDqXvUgxcXrD9tDFuVtF5mefZf0pWogAiFdNDBhJd7g3XBTjOgEMEy5gczvD2rj1JPlzuB6UkYkM','Staff was very attentive and very professional.','2019-05-29 09:39:40.791000','2019-05-29 09:39:40.791000',5,'lisset angel','https://lh4.googleusercontent.com/-0so8bufnpK0/AAAAAAAAAAI/AAAAAAAAAAA/QKe6BS-wMAE/c-rp-mo-br100/photo.jpg','8679688254631342173',8840),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0tfZDqq7WdWoDmuBbXqqhJPxVfkuxaLwC4YxBOKHS0zsoQArxkBaN3DEtc51EJ7B7fGugCE2cS0DTLbK2-cWesFsnf9o','My experience with Signature Care Lewisville has been fantastic. I work as a Paramedic in the DFW area and get to experience many different facilities from the practitioner side of things so I had a lot of options to trust my healthcare to. Signature Care Lewisville did not disappoint. Their streamlined check-in process, their immaculately clean and sanitized floors and surfaces, and the friendly, attentive, and intelligent staff at every level gives me every confidence to recommend them as a 5 star healthcare experience. RN Neil & RN Dustin were excellent with their pt care and attitudes & Dr. Choppa and Dr. Chowdery were intelligent with their diagnostics and treatments. More important, the physicians actually listened to me and allowed me to take part in my treatment plan. No aspect of my care felt like it was taking too long or was being dragged out. I felt cared for the whole 14hrs that I was there and stayed extremely comfortable in their overnight observation room (lamp lighting, Roku TV, & grub hub food ordering courtesy of the facility!). Thank you Signature Care Lewisville for taking such good care of me!','2020-08-04 13:51:31.323000','2020-08-04 13:51:31.323000',5,'Jacob Knotts','https://lh6.googleusercontent.com/-YK8z4pkwp6M/AAAAAAAAAAI/AAAAAAAAAAA/GAuTHZ5fmRQ/c-rp-mo-br100/photo.jpg','14748677429039074158',22528),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0tICFXKseQbkHxgwLXReLMZuhhn0krOChhJW3CG9itMmqByaDLPevajdKHVHc4X0ckVZP0fn9ruEOTiivnC5Euw9HKck','Great staff, great people May God bless these wonderful people','2019-03-19 01:59:56.556000','2019-03-19 01:59:56.556000',5,'Jerry Ornelas','https://lh3.googleusercontent.com/-O7o8gtK-yPQ/AAAAAAAAAAI/AAAAAAAAAAA/pDl9yJsAm8A/c-rp-mo-br100/photo.jpg','13486358490203335051',1056),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0tLkPvJB32wf80ba1BxqQvuJJ3Q-0K4MeDAPO4roPd0VIbLyx0GJB-om5BSvB3fCk7Wt1CDvQESuMEQiIGC5WEicQIBE','Everyone was very nice and attended to me in a timely manner. Dr. Wang, Nurse Dawn, Tech Jessica and Ashley at registration were all awesome.','2019-04-12 14:47:58.146000','2019-04-12 14:47:58.146000',5,'China N','https://lh3.googleusercontent.com/-EEbn6Yvwoqs/AAAAAAAAAAI/AAAAAAAAAAA/BNfSIVHtaic/c-rp-mo-br100/photo.jpg','17898197009688164559',5774),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0tlLbXENrXTGn-5ltokKhq57VrWVHmtQu5yoi2ui3dEWAJxR1Pg4vSqFDlIDWZvMvcfek8VBvARfwaHUo0E5qMPDJusQ','Awesome place. Very friendly people especially Earl Hines who comfort me and kept me calm while my wife was getting taken cared of.','2019-05-27 18:42:18.959000','2019-05-27 18:42:18.959000',5,'TonyDejuice32','https://lh6.googleusercontent.com/-_MuNQK5A3Mc/AAAAAAAAAAI/AAAAAAAAAAA/EyL_gWUj-iY/c-rp-mo-br100/photo.jpg','16891069708558046635',4265),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Tp_h3pxPchwjcWa55gszq5d2syCqOkANtoszLtMxulREtP7sAuBy9SEyx0bfIE-Fay5mgp0dWjm9BiaZSpwQ8lqzmdU','After taking my friend to two hospital ERs and having bad experiences, it was a pleasant surprise when I had to take myself and my child to an ER and we found SignatureCare. We had a great experience. Dr. Miller and the nurses were so friendly and did not rush. The only negative thing that happened was that I was given a drug for nausea that the nurse told me would make me groggy, and the side effects were more extreme than that. But I did not have to stay overnight, so I was grateful to be treated and sent home.','2017-11-16 18:16:38.299000','2017-11-16 18:16:38.299000',5,'Robin Owens','https://lh5.googleusercontent.com/-Ztp5qLeMfGM/AAAAAAAAAAI/AAAAAAAAAAA/ZwWJZG0cF8w/c-rp-mo-br100/photo.jpg','14567670160750071148',1730),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0tVNF0CFNkwMvt5FAZYa0pOc1r6syXcAoCTUpunhPUqvP_vSVjETO5Vyv6kMgZRYAQRTBlN7OTSWZ6HYEk2nUtnkG7Bs','It was a great experience. Keera and Gabe were so helpful and kind. I felt really comfortable.','2018-08-24 05:54:53.625000','2018-08-24 05:54:53.625000',5,'Keston Davis','https://lh6.googleusercontent.com/-TQVvsYPJWpI/AAAAAAAAAAI/AAAAAAAAAAA/3vtissSN3pc/c-rp-mo-br100/photo.jpg','16590124370714063921',3764),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0TwznfHj92v0opCyT8tOr7xzhLMIqRZlCJ3AFvL68cZqQlizK7T6eIxLcq68UM0GXJ5Ri5GTDClX5R5DBSCY_3xPHJZ4','Always have a good experience. Less than 5 min wait and Kendra was so great!!☺️☺️','2020-03-05 15:26:12.514000','2020-03-05 15:26:12.514000',5,'Ashly Rains','https://lh5.googleusercontent.com/-AOr26U9d-R8/AAAAAAAAAAI/AAAAAAAAAAA/dBdCp22t1O0/c-rp-mo-br100/photo.jpg','16590124370714063921',13806),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0u6twHbOf7yNFxF9_uKDUE_x8zdBjjas0A5hoEBvaEZcmHJivE_2zRxOmZOmoRSGfDluEHELkDPTU6JIqa20YynSJ-wc','This is not my first visit to this ER, the service are fast and amazing staff, especially Dr Tran, and Nurse Alvean, also Tricia the Radiology person, and the Lady at registration Jocelyn . they took a good care of me. so I recommend this ER for everyone in need for a Emergency room.','2019-06-27 02:25:29.389000','2019-06-27 02:25:29.389000',5,'Al Nomani','https://lh3.googleusercontent.com/-N3IzisHi9OI/AAAAAAAAAAI/AAAAAAAAAAA/TtRud0z0f5w/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0u6zdXn4wxqsTQmhG2yHAw0F-nYAr4mLuyM5QQbS1XlgATwujLVaicNPykSdYjU7OnTI1ZgtviiecUPpQ6hRY_QhxHmE','My mom was feeling weak and unwell so we took her to this location. The staff was extremely friendly and doctor well prepared and professional. They identified the issue (pneumonia) within three hours and started treatment immediately. Highly recommended!','2019-03-11 03:05:18.201000','2019-03-11 03:05:18.201000',5,'Alberto Diaz','https://lh4.googleusercontent.com/-SgnB8q7Ou7w/AAAAAAAAAAI/AAAAAAAAAAA/LkJXPm6jCT4/c-rp-mo-br100/photo.jpg','3511292162159714121',7384),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0uCKdPB0S9FgsIpJoecc_olTvn45KvIFdUz5yNzyzq0TNxt77pN_7q3gPpVFzILu7qyZtVPJz41gl-JEeF-e1X937PlQ','The quality of service at Signature Care is very good. Rebecca at the front desk was extremely helpful and efficient. I was seen right away by Dr. Kimball, he ensured that I understood everything that was going on and made sure I was always comfortable. My nurse Cat was extremely helpful in getting me what I needed as well as very nice and welcoming. Patrick and Stephanie were also very helpful in checking in on me and keeping me updated throughout my visit. Overall, I would definitely go back there for future visits, I was treated right away, everyone was fast and efficient, and it was a very welcoming atmosphere!','2020-03-05 14:31:16.407000','2020-03-05 14:31:16.407000',5,'Kelley White','https://lh6.googleusercontent.com/-mTeeG1Y0LTw/AAAAAAAAAAI/AAAAAAAAAAA/BpjQ81e28CA/c-rp-mo-br100/photo.jpg','16590124370714063921',13807),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0udNDygD4z4TwCaKzxbxybnLaIS2Aq5XSi2wUSE_GUV2vIb7ddVpkfCd_EZhjP0kGDkN7sxuFy19Vdd7O_kKn22SF4-A',NULL,'2018-06-04 23:01:21.892000','2018-06-04 23:01:21.892000',5,'Kanti Bansal','https://lh5.googleusercontent.com/-IjfEFPacmp8/AAAAAAAAAAI/AAAAAAAAAAA/5BicaH_uqVM/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',648),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0UJklubdZXbjEFx8_SO3YDE3WAO6fI7mIa9EVpF6NW0PlzzCEF0Q-W4CwuvPJcKhScQbcUBL4ozc_bWI4ts-NplP4o58','I was very well taken care of. All of the staff was great! Dr Dandy, Alvean , and Jesus were the best. I will recommend them to all of my family and friends.','2019-05-31 23:23:29.337000','2019-05-31 23:23:29.337000',5,'dr sixtes','https://lh4.googleusercontent.com/-I0ikpFwxFgM/AAAAAAAAAAI/AAAAAAAAAAA/V8OOdfilrks/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ujmuPwJRSQKTj5ElL1wLxggwqjtYnjlK9T8izS7L0s8CqOmT8DFMeOvTGRLaARM-Sc79e05YWGqnZ7GmEPRv2Xkvc-8','I absolutely love Signature Care. All the staff was so nice and helpful....Facility is so clean....topping was the hot coffee and warm blanket! I highly recommend!','2019-02-08 22:39:26.504000','2019-02-08 22:39:26.504000',5,'Tonya Sirls','https://lh6.googleusercontent.com/-ZdiWdl3jv3o/AAAAAAAAAAI/AAAAAAAAAAA/0p5htcuaxHI/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9181),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0uVjvtbBbXyiyp4gwdrBYOAtTmeOyboRGcZaW8WavhWVRBae99pfnJsJ8GsajZpASspqaOxMEIKjnXFrKv6AbA0edkVo','Thanks to Lisa, Savanna, Jaime, & Dr. Chambers for being super polite & friendly. You never showed rudeness or tiredness while working which is hard to come by! You made this experience great for me although I didn’t like my results ha.','2019-06-04 17:58:08.392000','2019-06-04 17:58:08.392000',5,'Kaitlin Merriam','https://lh6.googleusercontent.com/-odLKXFpim2A/AAAAAAAAAAI/AAAAAAAAAAA/sV0sh_hnnD0/c-rp-mo-br100/photo.jpg','13486358490203335051',992),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0uW044p3eHHLS9cnB8FI0IMrMKJIeRzwvRn9JDWQATdn7tHoXvQjmEeb8DnB_CTUOvKYrWilGkrDgG7tYsybPcXyOG_E','Very professional and prompted. I had a great experience from the moment I walked in the door. The entire team that took care of me were awesome! Thank you Dr Kotey, Keaire, Dion and Gina for assisting me with my injury. I truly appreciate your attention and professionalism.','2019-06-21 01:32:32.432000','2019-06-21 01:32:32.432000',5,'Arthur Phillips','https://lh5.googleusercontent.com/-AUDZQHGbMTI/AAAAAAAAAAI/AAAAAAAAAAA/Vq_D01v_1tA/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7294),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0uYuaWi9_som7MY9lJ2m3paVwvi9_-cxOwv9uuSBITwCWn-xNSiL-xwP7IRLYht4P7j9n0snM7nsgWlv5eGkLNuUsuGQ','Very first time at a Urget Care, super friendly staff. clean environment and waiting time was short. Thank you ! Will be coming here incase of another small emergency.','2019-07-27 01:36:55.728000','2019-07-27 01:36:55.728000',5,'Nancy Rodriguez','https://lh4.googleusercontent.com/-y1e7W3UhV3o/AAAAAAAAAAI/AAAAAAAAAAA/VHDy633Biwc/c-rp-mo-br100/photo.jpg','2694018788013845459',6102),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0uzix7bjLOyJQO1KYpk3vHjPqGPk1H-JTjTkIi4cwlfAS4kBpaPmACD51wQLVD1HSBBts-X_zqKebx2I5GfDTM2melfY','I am TRULY THANKFUL for the awesome experience my husband and I had at this location. The staff was so kind and caring while taking care of my husband. THANKS Dr. Castaneda & nurse Kristina for EVERYTHING','2020-03-10 15:42:24.088000','2020-03-10 15:42:24.088000',5,'Jennifer TAYLOR','https://lh6.googleusercontent.com/-MBbW46JS9TE/AAAAAAAAAAI/AAAAAAAAAAA/Lkh0aoRDqTc/c-rp-mo-br100/photo.jpg','12541597562633926366',20913),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0V9On9RYqohqfk9k-RUyY-J4jR1fA9z3v-W_HovIqKerYVcLVTPldq4Wfz9hHdRAgcYiIkmJvz3VSbH2CswLMuSLZw3I','My friend came for stitches and Natalie and Dr.Vakey made our experience great!','2018-10-29 02:45:40.955000','2018-10-29 02:45:40.955000',5,'Vanessa Vozza','https://lh5.googleusercontent.com/-uNGh1EosFD8/AAAAAAAAAAI/AAAAAAAAAAA/xggH31rNs00/c-rp-mo-br100/photo.jpg','16590124370714063921',3682),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0VAJijjSQsksvjQV5PfxXC3hb4Hektu6zpUZjLYsyXg-Gq5xlOaMkHVzekyx0uYcFIr2eZ9ndHIfwCSjVpjwAEOt6YoE','Went to the neighborhood quick clinic. Bad idea. Price start at 175.00 and that depends on what!? I don\'t know. The young lady says it depends, could be more. Lol wow. I did not want to use my insurance. Don\'t waste your time here unless you have 200.00 plus to spend between the visit and whatever meds that may be required. Go to Family Care at 5900 Chimney Rock .Visit was only 40.00!','2019-02-19 22:47:25.100000','2019-02-19 22:47:25.100000',1,'MeMe Simone','https://lh4.googleusercontent.com/-bLI66-R_pzQ/AAAAAAAAAAI/AAAAAAAAAAA/KOiRvEBh18o/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9174),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0vBmUqOPxdUvNbR259jGuPTg4OzaARPmo9sfHRoNvaBWsD0hDMK6PJxQI6D-APrbKx9HpaMihlSXk-Copzr-HmRpPbBQ',NULL,'2019-11-09 22:44:49.575000','2019-11-09 22:44:49.575000',5,'erica kropp','https://lh3.googleusercontent.com/-XUahSfx2LRc/AAAAAAAAAAI/AAAAAAAAAAA/XtC1cF9Uu1Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3092),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0vCsUBZa6yNwnhREbhVe-9y4kHFQq5YHhJyX4Z9d0TyF-XG10MUIlDBEgrR6aBGjcbliPb4LDTEN7-SGYvfuBAXVSmEo','GREAT compared to other emergency rooms around!','2017-12-25 22:55:58.115000','2017-12-25 22:55:58.115000',5,'Skylar Dean','https://lh5.googleusercontent.com/-TeXGgxLGZs0/AAAAAAAAAAI/AAAAAAAAAAA/Pab8zDljGdc/c-rp-mo-br100/photo.jpg','16590124370714063921',3890),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0vfgXUJ-7NAJoyu98MdEnChL7nNKD7_FcuaEjxLsOpUh5e8vs2tod4WhktI28OfI69vsWn4RV3wrn1a2bCT1loegQJPM','DO NOT WASTE YOUR TIME HERE! Horrible customer service, front desk personnel is rude and clueless. They are so unorganized and unprepared. Dr’s arguing in the hallway about how many covid test to do an hour! Walked in Friday to get a rapid test, they told me to come back Saturday at 11pm. When I arrive, they tell me to go back home. They are backed up and barely testing the 8pm appointments. When I ask about a possible time to return, the response is a shoulder shrug, and maybe 2am. Never called me back for my test.','2020-06-28 14:40:48.818000','2020-06-28 14:40:48.818000',1,'Carla Esparza','https://lh6.googleusercontent.com/-Zg6-Y0RrOoY/AAAAAAAAAAI/AAAAAAAAAAA/KgXkDmadI8U/c-rp-mo-br100/photo.jpg','14748677429039074158',21395),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0VlVlOGOz9kH0hlg4ZMqAzxKiCGYGD6P7MRqtbDyt2R_ff3mWPZBpf6zjON_wIn81MHyfeX0tpnXYSKKprt8WYncqzU0','My friend had a 103 fever all day and wasn’t feeling great, signature care is open 24 hours and was very friendly and helpful. Naomi at the registration desk was friendly and accommodating.','2019-06-26 02:51:17.674000','2019-06-26 02:51:17.674000',5,'Amanda Armstrong','https://lh6.googleusercontent.com/-Mdum7CSsdlw/AAAAAAAAAAI/AAAAAAAAAAA/PBjv3b5t7v4/c-rp-mo-br100/photo.jpg','16590124370714063921',3333),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0VpT_7L6rY6G281fSnwwUhY2e1b3WuIFdaWvwVxUpR7mJb-TP1Ju7uRgnn0G9ZAJaIK2FpTXqRxjy0F_RX84hJXOtiFE','The staff was awesome at Signature Care! Everyone was super attentive.. Amy at the front was super friendly and helpful explaining the process, paperwork, and next steps. I would highly recommend to anyone needing care.','2019-06-11 09:52:01.319000','2019-06-11 09:52:01.319000',5,'Marlon Zavala','https://lh4.googleusercontent.com/-K1Fi2miYPuc/AAAAAAAAAAI/AAAAAAAAAAA/92_XlCg3l5U/c-rp-mo-br100/photo.jpg','3511292162159714121',7312),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0VVJPoJhp0qFy39Oi_aUgrOmQf00vhQipQc3uYSF-ymtFq9CcBIlhVlrlIbaQS9H8HNvOk6o5kOcdhBvV_Y2HK5gK4l4','The staff at signature care is so kind, efficient, and they honestly care about their patients. I am so grateful that they are there when I need them.','2019-09-20 08:46:00.878000','2019-09-20 08:46:00.878000',5,'Bianca Ramirez','https://lh4.googleusercontent.com/-TRSbKIpKocc/AAAAAAAAAAI/AAAAAAAAAAA/hvuThMexSVA/c-rp-mo-br100/photo.jpg','16891069708558046635',4201),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Vz06znLZznTOQVNFLSIcTb7MjdVqcRU0e6ldYCxZWXZ0jssVSJmOwbwCVLh16tF3wn4dh6haGSnomn71E5Iq4txHXG8','I brought my sister into this location and the staff was and hospitality was excellent especially the woman at the front desk brenda r and the radiologist dion they performed their job very well and I didn\'t have to experience a long wait time by the time she finished her paperwork she was already receiving treatment','2020-03-01 05:52:45.243000','2020-03-01 05:52:45.243000',5,'jermain anderson','https://lh4.googleusercontent.com/-Joru25J9aus/AAAAAAAAAAI/AAAAAAAAAAA/3HJ0y6UzsOo/c-rp-mo-br100/photo.jpg','3511292162159714121',21161),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0VZ9W8pxvBG7wghUHv2wQqNlcDwZ-FuJgkItqQqZeW7fRp-MHPqcKe8CTS5UMj6BC-eRLfH219EEz5WUVOZK_8hXiSoY','Came in in the middle of the night having difficulty breathing. They attended to me right away and didn\'t waste anytime getting me set up with a breathing machine and steroids. Everyone was super friendly and genuinely concerned about my well being. \nThey have free snacks and beverages in the lobby for whoever is stuck there waiting on you. That\'s going above and beyond when it comes to customer service in my opinion.','2019-05-02 09:19:51.605000','2019-04-29 20:56:04.268000',5,'Robin Kuemmel','https://lh3.googleusercontent.com/-1IPRmCns2FM/AAAAAAAAAAI/AAAAAAAAAAA/kJdhq7WidN0/c-rp-mo-br100/photo.jpg','16891069708558046635',4295),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0w73EzAATe620Amg10U8f1Um5wcMbO5d4LC4H1zvq9NyX8YFKQ_wkSHDCbppIk1oLln1wC9tYhledxuviT6cfJgyRoKU','great service and super quick! nurses Gabe & Remington were the best! the warm blanket was awesome too!','2019-09-20 23:55:15.978000','2019-09-20 23:55:15.978000',5,'Morgan Dunn','https://lh6.googleusercontent.com/-95TduQI3Upo/AAAAAAAAAAI/AAAAAAAAAAA/uzJ53CZFwBE/c-rp-mo-br100/photo.jpg','16590124370714063921',3190),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0wdiiJQnOERDF4DOQW0M8z8jO3AAWeCC1xG8FIIn2744EGckYPUNC9xY3xmkaBCiMoVKTV3P1JFxIP-Wremv-HjKFf00','The staff was very helpful and courteous! Jessica S, Jessica F and Maria S were so nice, I will be back here whenever something is wrong. Thank you ladies.','2020-02-20 20:11:36.719000','2020-02-20 20:11:36.719000',5,'Cheyenne Bueno','https://lh3.googleusercontent.com/-PM9iwQ4yDDs/AAAAAAAAAAI/AAAAAAAAAAA/XXODzmaFprc/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',14567),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0WE7Bgaev0AOaly2ORASKPAf93PSyJ55uEjSxLZqlE0pYCoChy1k1pbq6THp0GQ7ccaJYf6vZZYkY1TLSMv2mNTJgPSc','Very nice Facility and great staff very informative and very helpful I will refer anyone to come here','2018-07-16 15:49:45.686000','2018-07-16 15:49:45.686000',5,'Chantay Haywood','https://lh6.googleusercontent.com/-XYSCHAICJ4U/AAAAAAAAAAI/AAAAAAAAAAA/9SWhMo-B-WI/c-rp-mo-br100/photo.jpg','14567670160750071148',1599),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0wRGfyPpspvVpFVsFQK0v2RPg9kPp_hXji8bCqDID4bQahiij9n6YoM5AMQNUDfDNOTkcsSYP1fUrSJiXWCK-p1cWEho','I highly recommend Signature Care in Bellaire. Dr. O\'Malley and the entire staff are so nice and extremely caring. Tim Pipkins','2019-01-23 01:20:52.914000','2019-01-23 01:20:52.914000',5,'Tim Pipkins','https://lh6.googleusercontent.com/-PZh8UfJsWSI/AAAAAAAAAAI/AAAAAAAAAAA/J51Rm2lnyPI/c-rp-mo-br100/photo.jpg','8679688254631342173',8882),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0xEd6b4kLguYpsiiepOuDqsuxevVN8pdrpOSgksxe_0dYUOsJ8zpi-kX0NM_n7HTm1jSLYSsosXirPyq16IIhSCwsISo','Every staff member here was amazing. Christina C, Shelli, and Elsbecker were all so kind. I brought my 13 year old son and they took great care of us. Would highly recommend to all my family and friends.','2019-02-28 19:15:59.284000','2019-02-28 19:15:59.284000',5,'Linda Saucedo','https://lh5.googleusercontent.com/-13xsz4Q4iyw/AAAAAAAAAAI/AAAAAAAAAAA/lYJu67dJU1U/c-rp-mo-br100/photo.jpg','16891069708558046635',4338),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0xiS_s9JFb5ViIr8hoxT-HkxfalVTI0Ljm2LJoC5qYgMdyOPrelmjmqom6iQgvOHjobnXH60Y72CRiT3CcjDtUEzZIr8','Luke the RN, Kim Regis, and Sherri RT were all awsome!! Highly recommend. Excellent care!!','2019-05-28 20:28:31.915000','2019-05-28 20:28:31.915000',5,'Jay Byrge','https://lh6.googleusercontent.com/-2x_X88imuCg/AAAAAAAAAAI/AAAAAAAAAAA/xAXZ1E7ONng/c-rp-mo-br100/photo.jpg','3272657195432704501',6957),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0xmpOqV32rnQyGsKzJN07OSSuxwDkbjcQoLwdjzWZLpIY6B7eAbx1PhHnUPOmD-ot0lxTid0QbHeI2zUPY_k6Dso0aDc',NULL,'2019-04-05 02:19:40.875000','2019-04-05 02:19:40.875000',5,'julio castillo','https://lh6.googleusercontent.com/-sa1l1STuHeo/AAAAAAAAAAI/AAAAAAAAAAA/dMRXIhOAOiU/c-rp-mo-br100/photo.jpg','12541597562633926366',522),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Xv29-uPTDBDt9jeS1boCyHEPaX-0ZL52E3mdsPt5zlVdDONJwKfu2vwHInKd3S1dkZq5JexfNKZXOEG2aim3o4AlpGI','Nice staff and they work really quick\n\nDr. Patel, nurse Irving','2020-02-26 01:03:13.475000','2020-02-26 01:03:13.475000',5,'phuong tran','https://lh4.googleusercontent.com/-J4IlRlW4pC8/AAAAAAAAAAI/AAAAAAAAAAA/IoIN1zJ29ZQ/c-rp-mo-br100/photo.jpg','12541597562633926366',13342),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0XYHx7RAdUNmREGvs4b9q4vRidV8MUhReYx4HKPCmBPuKnPx22ADruwlXXhCgRh0D2XOyx1G0ivFc7pHIWukpRonP-J4',NULL,'2019-11-03 09:18:12.500000','2019-11-03 09:18:12.500000',5,'Jasmine Ross','https://lh6.googleusercontent.com/-t4wWs_7tNAo/AAAAAAAAAAI/AAAAAAAAAAA/2jxR-1E8LqA/c-rp-mo-br100/photo.jpg','3272657195432704501',6872),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Y_wdzCr_mgaNSBI8338WRn-s0whNiSvfs_8hnjAihv8W6egMJRRGM4vGppe2BUxByXk-QUl64mjaSgG7ln9y2mZy7s4','Very friendly and attentive staff. I was treated by Anthony and Dr. Vakey - both were very polite and made sure that I was comfortable. I always have a good experience when I come here!','2019-03-04 22:59:38.183000','2019-03-04 22:59:38.183000',5,'Allie Perkins','https://lh5.googleusercontent.com/-i2MeIuDOyqs/AAAAAAAAAAI/AAAAAAAAAAA/MyBSdQo87Kc/c-rp-mo-br100/photo.jpg','16590124370714063921',3513),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0y2TfneDhAK4wiolCD8Nuku9zH9hg0jDJ2xHfjG2uEKItEPiSLwVNk-mLpIp6rMyTG-e7R5M98Xcpm2Yhfsst8Te9jBE','Lorena and Rebecca were so helpful this for my early morning appointment. Very friendly staff and clean waiting room. I definitely recommend!','2020-08-15 11:19:38.728000','2020-08-15 11:19:38.728000',5,'Megan Zuck','https://lh3.googleusercontent.com/-Z4L4a4l2MSE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn04ouXybEQ43k00VWNZcwJM5vS5A/c0x00000000-cc-rp/photo.jpg','16590124370714063921',23056),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0y2V1d_zXig0sCwWLZc4PimS7xF-uAqQm3PDaBYlqDvrnAqhoLZHpuskvBwCgog4ZYfZS0Ab3I_itG0LbTAKOm5S7RAw','Leah, thanks for the support and help... please take care and thank you and your team for all the support and help you all offer each and every day... god bless...','2020-08-03 16:08:29.025000','2020-08-03 16:08:29.025000',5,'Joey Jaquez','https://lh5.googleusercontent.com/-4x5HjCHWQGs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclHe8eZ142xcpvc-5FTfbJ7RZzvTg/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21823),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0yCgKNDUhoEtp_Qwsr0yZb2m8Og7hU99jp4qiZRGwlJAsOnav7bkzTVHSe2CvDjfyt53iNX6C9ujo29jzBdQZ1HOqYD0','Excellent Staff, very informative and friendly. My husband was having sharp pains and we were given results and care within 1-2hrs.','2019-10-01 16:45:36.788000','2019-10-01 16:45:36.788000',5,'Julia Ho','https://lh5.googleusercontent.com/-sRw0kkf9_fs/AAAAAAAAAAI/AAAAAAAAAAA/G-IcezTlYBk/c-rp-mo-br100/photo.jpg','8679688254631342173',8799),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Yee4Vsj7KVadVy3I8g9gceZULtOcmRkX9R9_WA5Dk8qzPBwnKbn6cPZvIeVP_LKxdYQdkmoWrb7YHvD2N9bnkkn_de4','The staff is incredibly friendly and accommodating. We didn’t have to wait at all. The doctor was very thorough, knowledgeable, and meticulous. I was very impressed with every aspect of this visit. The follow up appointment was the same stellar service. We definitely have our favorite emergency center now!','2019-12-10 21:05:16.555000','2019-12-10 21:05:16.555000',5,'Valley Johnson','https://lh5.googleusercontent.com/-TXqDdOY4BeI/AAAAAAAAAAI/AAAAAAAAAAA/GnW0V25sjEY/c-rp-mo-br100/photo.jpg','3272657195432704501',6842),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0YG8hWUxAQWbnNQgayiOakiq_bdlBvk4UBo_lIi5IrNEvJDXkX6b94CbQqZjw87Qyc1qRxlWVT73-vyyXa2fuVn8sTVw','The staff was amazing especially Shaunda super friendly and would highly recommended them to everyone','2020-03-06 14:50:09.229000','2020-03-06 14:50:09.229000',5,'Allison Lujan','https://lh4.googleusercontent.com/-LaXlYy-QLe8/AAAAAAAAAAI/AAAAAAAAAAA/LP-g76AlyI4/c-rp-mo-br100/photo.jpg','16891069708558046635',13914),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0YKIvTDi7dilljw9ycgAmLoUe_469J-jiCopGYCMvtKGljsTyuax0FEinXaonN4MXdyLyLv_9CBC47rlhMgf3T0oFVeo','this place is great. i just had to tell them that! 👍🏾👍🏾👍🏾👍🏾 they were very helpful with my emergency, everyone talked calmly and nicely and they provided even food for me and my family. just awesome. Thanks!','2017-03-18 18:09:51.665000','2017-03-18 18:09:51.665000',5,'CallMe KeeKee','https://lh5.googleusercontent.com/-ezvnov37Uxc/AAAAAAAAAAI/AAAAAAAAAAA/tbD9l0KVrpI/c-rp-mo-br100/photo.jpg','17394740196501090048',5093),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ysafUT3phC5WUcaRtoQn_YBfxKtFqVX2ZzO_Q87L-XKVEdUQZdjCOw-37ltcw6yUC0Uk8HE_F-sB7lAmqELfc0sy6C8','I’m really happy stopping by here. I came in and got seen within 10 mins. My nurse Sarra was very sweet and answered all my questions regarding recommendations and my current wellbeing. The radiologist tech told me everything step by step that would happen and did an overall good job. Dr. Lindsay was very approachable and made me feel really comfortable discussing my health concerns.','2019-12-20 03:54:29.176000','2019-12-20 03:54:29.176000',5,'Madeleine Mag','https://lh6.googleusercontent.com/-XShp8hS9BY0/AAAAAAAAAAI/AAAAAAAAAAA/vJ3I7RvKYFY/c-rp-mo-br100/photo.jpg','12541597562633926366',330),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0yUJk2LUOoPpyumToVFPPxLeQlGdZiMKO_loSrpRvw1zgAHZUS2g41EsuEpbxWzetJCDhai11u4_tj00jKeOJ58rgdzg','Awesome experience!!','2020-03-01 06:26:36.401000','2020-03-01 06:26:36.401000',5,'Nathaniel Alli','https://lh6.googleusercontent.com/-6DqkB1jFW60/AAAAAAAAAAI/AAAAAAAAAAA/4w1pgOkkkas/c-rp-mo-br100/photo.jpg','17394740196501090048',21075),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0YwqnOm-NApEfX0HvtyW8xU_nHHLjozvPeWFAYOvUmFXm0QEmgVGXwpRv8EyEmkZl5jEDO7IDUo8l5I7cWdhdDgzNIiM','I found out I had contact with someone confirmed positive covid19. I started having symptoms and tried to find somewhere that I could get tested. What I found out is that this disease has everyone, everything constantly evolving and websites are not able to able to keep up. It is a confusing time especially when you are feeling sick and worried. I went to SignatureCare and I have to brag on Aaron Ortega and all the staff @ SignatureCare is Midland. They were each so nice and Aaron guided me though the whole process. 100% recommend SignatureCare in Midland !!!','2020-06-27 21:58:11.486000','2020-06-27 21:58:11.486000',5,'Belle Fitch','https://lh6.googleusercontent.com/-nINjlrzmEFQ/AAAAAAAAAAI/AAAAAAAAAAA/hTSAU8fKOgY/c-rp-mo-br100/photo.jpg','13486358490203335051',21247),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0z2zcXbtI1mf-iWmBUnz6aObRrD45IplUPKSMpil0ljVLgHrQ3_VjGU2qwgMcDoJdDwca_vfiqU6q9JbZyfUP263bi0U','Great service for a late night visit. Fast service from Dee, Tish, Johnny, and Dr. Singla. Everyone was very nice, knowledgeable and helpful.','2018-01-22 23:33:52.003000','2018-01-22 23:33:52.003000',4,'Christina Houston','https://lh5.googleusercontent.com/-hjZISNNsjEg/AAAAAAAAAAI/AAAAAAAAAAA/sKAcXiCw4Uk/c-rp-mo-br100/photo.jpg','14567670160750071148',1674),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Z3kaTJ34DGFzJFrIZE10_nrEH3vBqY0sHbtg9ODmGwXly_AdOnKvQwsu30guPmToef5kvtxV10J5DVhQGQ93V02SZu0','I have always had a great experience at this location. The team is always very caring and efficient. I’ve been here several times now and will continue to trust them for my medical needs.','2018-09-28 22:29:28.947000','2018-09-28 22:29:28.947000',5,'Orlando Herrera','https://lh5.googleusercontent.com/-Sc6eZi-_aAI/AAAAAAAAAAI/AAAAAAAAAAA/xpLAwgD8K34/c-rp-mo-br100/photo.jpg','3511292162159714121',7584),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ZGubCQEVy6WKn8Cz31QcsoFc_cFZ3hn3-Ld3_1nOBuDMP946bWsDYSTOroZNNhxSRd-YlGW6tTemtGizNFOn3LSMgik',NULL,'2016-07-25 15:34:03.898000','2016-07-25 15:34:03.898000',4,'Jennifer Gloria','https://lh6.googleusercontent.com/-edIjUDP-_QU/AAAAAAAAAAI/AAAAAAAAAAA/wqRu9d8hqLQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5221),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0zJ6WywV_rVP8CHRzd-QGTGkLzNnOODo-_e5neuX7xVCCA6ZnUio_XFpEZIODUOZvE2oiwoJkk9posbtciFyxxhXNwX0','This place took great care of me, my nurse Kristina was great!','2020-01-09 16:34:02.482000','2020-01-09 16:34:02.482000',5,'Marja Lappalainen','https://lh4.googleusercontent.com/-6TH1bbInhXM/AAAAAAAAAAI/AAAAAAAAAAA/HqMXb6bU8fM/c-rp-mo-br100/photo.jpg','12541597562633926366',9464),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ZKsAf5ZBa-HpY2AKeVBlfWHDFhOXtujmLDY6JWxvi0FV7llCfYE8rTNLXXdt-qLbU0vY6tQV3Fq4ayxJtERngUCbcC8','Very fast and super efficient! The staff was amazing and very caring!','2020-01-17 12:25:00.082000','2020-01-17 12:25:00.082000',5,'christy johnson','https://lh4.googleusercontent.com/-yuHMabgb1fU/AAAAAAAAAAI/AAAAAAAAAAA/O8YANKIIMPI/c-rp-mo-br100/photo.jpg','12541597562633926366',10027),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0zLc6_z9vcNbN-qVKILeXatjnkqQwyB1WDmlkKWusfBuG-rnjxQOTin-o_2GtX2un-ahcHFTnUlIAufhvCr1DoBbiUYA','Sindy and Rashad, as well as the medical staff were great. I\'m glad I came here, no waiting, speedy and comforting service.','2020-02-09 01:59:17.578000','2020-02-09 01:59:17.578000',5,'Nawlins Girl','https://lh6.googleusercontent.com/-psr7J5WJzdg/AAAAAAAAAAI/AAAAAAAAAAA/fjqCtD0H77Q/c-rp-mo-br100/photo.jpg','17394740196501090048',14023),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Zli2GdjB8QNPzL6jVbJ8xzR3YFe2iYOanZT5T5WNWLjV1cz6HH4tV2AMamWjoUx0hrz0fWZ_v-ck0l5hMe50cwvxtWs','Came in and staff attended me very quickly and and accommodated any needs. Super friendly and professional. Would definitely come back we in need of medical attention!','2019-05-10 05:16:47.195000','2019-05-10 05:16:47.195000',5,'Antonio Mendoza','https://lh3.googleusercontent.com/-dkUkIUM0YS4/AAAAAAAAAAI/AAAAAAAAAAA/Qgzz7afLotA/c-rp-mo-br100/photo.jpg','12541597562633926366',508),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0ZSq5O31YdNGO1eG36ZqpfkdkzMLooCIdSlTaK0wo1NRgH5A8Bg-bEYjQVR01VrQzbtZUMZW_LCzUMIFWJUSzMRpfbak','I went around 3:15 am with severe pain in my shoulder. Everyone on the staff were very nice. Elizabeth in registration made sure I was seen right away. Dr Cavazos, nurse Troy and Radiologist Joshua seemed very knowledgeable and took care of my pain rifht away - after an xray of course. I was very impressed with the facility. It was very clean and inviting. This location will be my go too any time.','2019-09-24 13:56:28.165000','2019-09-24 13:56:28.165000',5,'Nesha Marks','https://lh5.googleusercontent.com/-CtCwkybHQ_g/AAAAAAAAAAI/AAAAAAAAAAA/SvoKvMu26BU/c-rp-mo-br100/photo.jpg','16389487648212004696',2887),('AIe9_BHAFUK2tNBZL25dLQ0jVdh0Zz8VtWh29n0Cl2TxZ1aq6CrHSVrJrtO3NocXLlR4hlBIhYuok0_KBzAEFwfMUjoZsCLVz__e_pl95DlTQf6HQXK8JY0','Great experience! Friendly staff and great service. Recommend!','2019-01-09 18:36:31.423000','2019-01-09 18:36:31.423000',5,'Renae Donus','https://lh4.googleusercontent.com/-B8IHzLz6ZcA/AAAAAAAAAAI/AAAAAAAAAAA/JOv-t8EAIX4/c-rp-mo-br100/photo.jpg','16891069708558046635',4371),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F__fcCL854oa1y7sZb_2rR9a_gx7aC0GIe6PIZRKbqqVYHJE8x_BZTTEhcUw4mIDgb4lPdS1x63sBKSWuiv5V6cpTCAw','I came in because i felt extremely ill and asked to get Covid tested. My result came out negative but they were determined too figure out what was causing me to feel so ill and they did! The whole staff was so nice from the person that brought me to the room (cant remember his name) and assured me that they will take care of me, make sure I would leave feeling much better. Im so glad I came in, they went above and beyond. Thank you so much, I am very grateful! Dr. Bodige, nurse Tuyay were great. Thank you.','2020-07-23 20:54:28.671000','2020-07-23 20:54:28.671000',5,'Z Perez','https://lh5.googleusercontent.com/-P7IKUxeXdHQ/AAAAAAAAAAI/AAAAAAAAAAA/5wqidYgw_Eg/c-rp-mo-br100/photo.jpg','14748677429039074158',22573),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F_dE7-dEY8cSNG-5XmKYaBe8rEnQ0GQtXImizQxTZ8JPzKYbmxS0jnLNSw7j_HmcG19R6jZTEayqLHF7916ctDl9bvTc','Friendly and fast :)','2020-08-03 15:18:50.118000','2020-08-03 15:18:50.118000',5,'Elisa Deloeragutierrez','https://lh6.googleusercontent.com/-6iNb495QbAU/AAAAAAAAAAI/AAAAAAAAAAA/4c6Zw_pY0GM/c-rp-mo-br100/photo.jpg','2077061009497551125',22760),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F_hPxkomcHKkdCHjf9cbADprFfIedRt5qXW-lxVChRVDCnINl1Gi8uU3GeYBImAkeYNrFSuXWLFY1lc2f4Ra7XNH6MYU',NULL,'2020-07-10 15:34:43.364000','2020-07-10 15:34:43.364000',5,'Janie Maruska','https://lh5.googleusercontent.com/-5PIzw8vz6F8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclnIweVO6xj5YNPsFnR2dwwtg64Rw/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21328),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F_Qzr0-K070lFEVXtICevnZ9opwqABJ0gINfN1IShMgflTPy-B98yiln55E9BZGoTM5-FpFfTiekTZcFKsySR35AjXKE','Super friendly staff!!','2019-07-04 04:25:07.087000','2019-07-04 04:25:07.087000',5,'Novara Masroor','https://lh6.googleusercontent.com/-eMArngRNuOI/AAAAAAAAAAI/AAAAAAAAAAA/6c0bjwDkCQo/c-rp-mo-br100/photo.jpg','8918455867446117794',9104),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F_v9lUdLWQhKTE8mzsC0KT6ehc9BjA1hsM2lweUzK7DnuMNPRYHpmRdP4mStoW74GqswRrLI5pIBoqHKfEndlvzJL5MQ',NULL,'2020-02-02 03:08:01.857000','2020-02-02 03:08:01.857000',5,'Kirk','https://lh5.googleusercontent.com/-mqBQ4SMvg4o/AAAAAAAAAAI/AAAAAAAAAAA/EiW7CzFz6pQ/c-rp-mo-br100/photo.jpg','13486358490203335051',13446),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F-0ujrSVTcjGA2BDGceIVYnlmPXhnUyjHUn3gEoh3zgdUMIT67yqzUybW39Msn_amzhPUmFlaG_Tw4c-XDvCFeWrhwaY','Great customer service in this place ! Love the staff . Thanks to Dr. Mauldin, Nurse Kat , Marvin and Melissa for the great experience and patient care.','2019-06-30 03:31:54.184000','2019-06-30 03:31:54.184000',5,'lilibeth salinas','https://lh5.googleusercontent.com/-lQDsx-6tW14/AAAAAAAAAAI/AAAAAAAAAAA/kWwU8YSxPyw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F-4JM4v9uk_RePSuvlrcw6KoC3cNQSPsbssOIO2ebh3LUKyKWJ-zFDiZbD_YaQIAjzu3BrMKtCCVJqx4ZNdbYTm6m24k','Becca the ER tech took my blood and it was the best blood taking experience ever! Didn’t even hurt! Wow! First time!','2020-01-12 23:56:55.397000','2020-01-12 23:56:55.397000',5,'Big MegSarah','https://lh3.googleusercontent.com/-Q_6nOrlZHDk/AAAAAAAAAAI/AAAAAAAAAAA/7Y-zrWz6e5E/c-rp-mo-br100/photo.jpg','16590124370714063921',9550),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F-GiQLDWBQE6uNLKQuE0h_iTPxS110b1CuWXFgbutFwWklFuTeB7bZg-GkP1sXmo5ijoU0_z-a8GUaP1Vg88e_0-zZrU',NULL,'2019-04-06 22:02:11.382000','2019-04-06 22:02:11.382000',5,'Fermin Garcia','https://lh3.googleusercontent.com/-Lu2FStiwGO4/AAAAAAAAAAI/AAAAAAAAAAA/wAIF3NpfNqs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F-QnQifBWHTJIf8N8BfGzBlGcOa68RalTo987V6YEWO2ABOdzXU1Ona3I8vhMqGhljzwZ2fYfVGGH7J26WqtK-9oM2kE','Dr. Yost, Mollie RN, Eric RX, Sergio REG, Kara RN and Gunar RX is an amazing staff! Thank you for taking good care of me! Your a special group of people that actually care about your patient.','2019-11-06 00:31:43.503000','2019-11-06 00:31:43.503000',5,'Kristy Jordan','https://lh5.googleusercontent.com/-wlUvWKyffqA/AAAAAAAAAAI/AAAAAAAAAAA/lhj4gWcnI5I/c-rp-mo-br100/photo.jpg','3272657195432704501',6866),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F-rfYzc0svmEwPtDZCLSUjYtyPa5Yy4RUkSyuzJhKMdYQHMj3ECeZzz2JMB7z08Q34Hy3UWcWf9UUz1p3gAvz3Ik381k','Cody, nydia, Sam were very helpful and efficient. Quick and easy experience! Everyone was so nice and friendly. 5/5!!','2020-07-26 16:59:29.724000','2020-07-26 16:59:29.724000',5,'Jayme Clapoff','https://lh4.googleusercontent.com/-MiueLL0hWNI/AAAAAAAAAAI/AAAAAAAAAAA/pjAMDpla5iM/c-rp-mo-br100/photo.jpg','2077061009497551125',22830),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F-VUiGhYvYqnwmCCiM_is_a9jl8vexwQb4vsDurPKcGdLtRUjuwC522hWlfgNkiwhs7IVAoWzguLtH0TKHzE-bELAM-M',NULL,'2019-05-23 14:44:51.573000','2019-05-23 14:44:51.573000',5,'Stacey Hall-Gerwick','https://lh6.googleusercontent.com/-7hdFFxv89x8/AAAAAAAAAAI/AAAAAAAAAAA/6OeDTEpR-ug/c-rp-mo-br100/photo.jpg','8679688254631342173',8842),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F-WX8NK0gANIkxLRqK8naLWPgwCeGZ5VMXQYKMbZZgCP-b7er6T-qlGmLn2GTX0G7YOE0qhxwk2764ZHeWfmaXw6hpyE','We had a great experience at Signature Care in the Heights!! All of the staff was great and very attentive.','2019-01-09 03:22:52.300000','2019-01-09 03:22:52.300000',5,'Sydney Meyer','https://lh5.googleusercontent.com/-Piz4kUg_bao/AAAAAAAAAAI/AAAAAAAAAAA/3qjFVgC7_UM/c-rp-mo-br100/photo.jpg','14567670160750071148',1428),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F0AETNqnD77mn4HHpSG2KzRSN67g-KC7SjQ1iaQgMtYqZjFbPHsm2GvLW_IInuRg2Hnk-L026lBNkICaDPGNEZ2_k0JA','The best care I’ve ever received. Staff were thorough and respectful. I was seen quickly - both my nurses were attentive and concerned and made sure that I was comfortable. My doctor made sure to come in several times to let me know where we were in the process of diagnosing. My nurse also took the time to go over my lab results one line at a time and made sure I understood and answered any questions I had. Even the receptionist was kind and considerate and alerted the doctor right away when I came into the lobby as I was extremely ill.','2018-10-02 01:39:14.652000','2018-10-02 01:39:14.652000',5,'Meg Wall','https://lh4.googleusercontent.com/-ew_LRZ0k638/AAAAAAAAAAI/AAAAAAAAAAA/3N0UBU_pnmo/c-rp-mo-br100/photo.jpg','8626688543755174284',8642),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F0bhsXIedmrZ8cmQZ7bnjBNQl62iTurboArw-spBKAEaBnPhsD9myf0KOI0J8NILMBiY4xbXH3A-8rNP-NBd_PhXXiZ4','Great experience! No wait, snacks and drinks offered as well as blankets for both the patient and family. Very attentive and caring staff.','2020-03-03 02:40:57.768000','2020-03-03 02:40:57.768000',5,'Emily Braun','https://lh3.googleusercontent.com/-NQxdnq4rGtw/AAAAAAAAAAI/AAAAAAAAAAA/PkW2vLH7DeE/c-rp-mo-br100/photo.jpg','14567670160750071148',17174),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F0cFhVLaXKaIs6kmwFm84K17KJ0rOoQaDwUL_eBi6ZSiAHc_jrADz-G3sJZG-pYYmH61LRmOO4THhG5H7gKGg7dx2FLg','Amy, Dr.Chukwuma,Kat RN,Fatima \n\nThey were great and very helpful, and nice','2019-06-06 02:01:39.652000','2019-06-06 02:01:39.652000',5,'Zb 1selfpaidlilree','https://lh5.googleusercontent.com/-wcSpSQ_y5iY/AAAAAAAAAAI/AAAAAAAAAAA/2nJaCNYFh1A/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F0qfgRRU-jYV2aKQtPotMQ1n1J1n7ayLwqz890TpHvo8X1iNUtfX9V7zPYFodSyyGhS3zpKpu4OGlQVhly33JRHF8inM','Unfortunately had to go get tested for covid19. But I had a really good experience , everyone was really nice from beginning to end! Thank you !','2020-07-08 04:16:01.545000','2020-07-08 04:16:01.545000',5,'Rosemary R','https://lh6.googleusercontent.com/-lZKVEWdngko/AAAAAAAAAAI/AAAAAAAAAAA/fWbDEcHNEm4/c-rp-mo-br100/photo.jpg','8918455867446117794',21492),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F0YfpC57TBSyXK5L1tZYlNlzUttabF12fg9zfE6gJWeaLir2xdtBoh_tBReJWOOCRnsWIE64IFlHP3y6SxBJlaF9-57o','Brought my mother here and she was well taken care of. The staff was very friendly and attentive.','2018-09-21 00:19:47.068000','2018-09-21 00:19:47.068000',5,'Nidia Lopez','https://lh5.googleusercontent.com/-NUQO02jfikM/AAAAAAAAAAI/AAAAAAAAAAA/bhjoRUX-1P4/c-rp-mo-br100/photo.jpg','14567670160750071148',1501),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F0Z_fbDX-B6F1LOzzsPM3IrE7Q8kNXxELzuzzXPooCVHuGBHpQ1RQ8qh-7gWAVmnvcbADx7f5E0M0jnP1vD7tc4pUzXI','The staff were very courteous and attentive. Dr. Golla was very knowledgeable and did a great job. If I have another emergency I would go back there again. ','2017-01-14 18:11:23.649000','2017-01-14 18:11:23.649000',5,'William McGough','https://lh5.googleusercontent.com/-auDjsnJK9oQ/AAAAAAAAAAI/AAAAAAAAAAA/btgT1v-l-BY/c-rp-mo-br100/photo.jpg','14567670160750071148',1915),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F1aKJ4de24z_AQ4F0wcSdYRRtmlqgGBlJWUeNBzoVPQE-qrj08KB4MN5zolkcyezCFnXFz9wk8OKDTAwJoBwc1mwi3rA','Service was great and quick my Er Tech was Leah and right off the back made me feel comfortable. \n\nThank you','2020-08-03 14:00:31.849000','2020-08-03 14:00:31.849000',5,'Vick Lujan','https://lh5.googleusercontent.com/-97eMM-sDi2o/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm4qZ0tS2fAOIOxFrc7nY8hsR91Dg/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21826),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F1EODc2QTCCMZBleMQpZfonMCML5pdcYkMxreM_tat0UePk1jVy6N0jiSoBgx2bpnfTqahI3U9L88sZFjBYJAy3Khfsg','Dr. Daniels, BrendaM, Sara, Holly, Shaylene, Officer Perrault!!! They were totally amazing and they made me feel so comfortable & they helped get everyone needed to live a healthy life. These ladies are Great!!!!❤️❤️❤️❤️❤️','2019-10-29 07:02:22.873000','2019-10-29 07:02:22.873000',5,'Everad The Great','https://lh4.googleusercontent.com/-NyWiwV3KhuE/AAAAAAAAAAI/AAAAAAAAAAA/Ag8-bUWH54g/c-rp-mo-br100/photo.jpg','12541597562633926366',391),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F1TYkHLwT-2dMgqFzyifTxvPzwmUe01rpMuSfea9hU8r0paDOBu4MGtmVunoEPHaTJKnpVRBeRLuZIva-8R2kildU5CA','Website says no appointment necessary for a Covid test. Drove an hour and a half and was told the next slot available was 10 am the next day. Drove an hour and a half home. Thanks for not updating your website and wasting my time and money.','2020-06-29 14:52:48.088000','2020-06-29 14:52:48.088000',1,'Mike Oliver','https://lh3.googleusercontent.com/a-/AOh14GjFY2xxfnH8s6CR-8Dhj4VXexk5a8dLpiktdaa0=c0x00000000-cc-rp','16891069708558046635',21419),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F1UmWhV_DXH8IsW7gdgtt-M0RYaZInNXHi1qgQASQlhgYFpvbY6SMKcv3noNzD9qH2exB56nK4hUsnq4_rS68gouNoys','I came here after car accident and all the staff were so helpful! I was specifically treated by Anthony (RN), Natalie (Tech), Kathleen (XRay), and Rayven!!','2019-01-15 03:16:58.888000','2019-01-15 03:16:58.888000',5,'Sydney Linger','https://lh6.googleusercontent.com/-NDX0qoG8P9c/AAAAAAAAAAI/AAAAAAAAAAA/Xevo_JkCmPY/c-rp-mo-br100/photo.jpg','16590124370714063921',3587),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F2FgVpvJXiirBB8l5JB7UBenUDEGmTZYW40iifbSUauX8cEyk-FZqiAH3F_ty2SBqqQwvkhOeQzGladIPAFy7LDdY6To','Lisa H, Savanna, Audrey, Jaime, Daniel are awesome !!!','2020-03-10 20:06:09.087000','2020-03-10 20:06:09.087000',5,'Jayden Ridriquez','https://lh4.googleusercontent.com/-tERq1Kvb3T4/AAAAAAAAAAI/AAAAAAAAAAA/9yg318ebjv4/c-rp-mo-br100/photo.jpg','13486358490203335051',20926),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F2McupX90mF9uWMpMwKXstkW-xNmsjgEidwf8iJBxC4mxP_5UPqNE3cBYI6u7UpwVgNIn5lPAXq1dWy1jme0I_d37EsE','Definitely recommend this location! Was in and out within 15 minutes. Kimberly at the front desk was helpful and we talked about my upcoming trip. Dustin was very fast with my vitals! Nicole and Julie answered all of my questions and last but not least Dr. Lim!!! He immediately was able to identify my problem! Didn’t have to say much. Thank You again guys.','2020-02-15 01:04:09.517000','2020-02-15 01:04:09.517000',5,'Teocea Jacobs','https://lh5.googleusercontent.com/-S-t3FdkLX_8/AAAAAAAAAAI/AAAAAAAAAAA/UrdxNndg-z0/c-rp-mo-br100/photo.jpg','14567670160750071148',13533),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F2r6oziWCtH58D3Eh7uhRBsGUF--7WGhg5OF1tVxq-pwDjI2AzT6Bz0KibawLqTuoxllMRWZYpdUs6C7Rx_wvkNQBTHk',NULL,'2020-03-03 19:55:23.031000','2020-03-03 19:55:23.031000',5,'Caitlyn Green','https://lh4.googleusercontent.com/-9aPqIhnSagU/AAAAAAAAAAI/AAAAAAAAAAA/QqQpmDazW8w/c-rp-mo-br100/photo.jpg','2694018788013845459',21122),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F2sqlwBc9VVLJjdw6l4y3O45LsJSwvGt_Udhr5yV4DqBR8pBhYZlu3kf1MOYrZDtBZ_eNjoZBOx7JVWpWR5y8OLJ9bpo','Awesome service! I came in not feeling well, I was greeted and was promptly seen. I unfortunately had the flu but my nurse Christina and Dr. Elsbecker were awesome and got me in and out. Highly recommend this place!','2019-12-11 16:28:17.412000','2019-12-11 16:28:17.412000',5,'Carlye Jane','https://lh5.googleusercontent.com/-hB4_EBEl7dM/AAAAAAAAAAI/AAAAAAAAAAA/hnvO8N40Evs/c-rp-mo-br100/photo.jpg','16891069708558046635',4125),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F2tGKUY-skKvTCqTMJjiO_sGzY59IumGeWZcSKzHgAtbWGQotJ6BLiksNJrbd7-sJFdgNhQpQl4ojVZSw44n-yPE5pjU','Had an absolutely fantastic experience with signaturecare. No wait time and excellent doctors and staff. Doctor Golla, RN Fanny and Zinaida, ER tech Amelia, and Sindy in registration all went above and beyond.','2020-03-04 22:56:10.454000','2020-03-04 22:56:10.454000',5,'Emily Camarillo','https://lh3.googleusercontent.com/-Lyq2Zn_711Y/AAAAAAAAAAI/AAAAAAAAAAA/WrZYk_EsZMU/c-rp-mo-br100/photo.jpg','17394740196501090048',21070),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F2Z6PrJCnilLtJWleFzwRvJmmdt4TyuXb4k-8_adCHjaYUleef6NtBq57fWxB8wozNMBlxUXJ-z0oj3fZzcCW6bnoafo',NULL,'2016-08-03 01:40:12.379000','2016-08-03 01:40:12.379000',3,'Aracely Lopez Lopez','https://lh4.googleusercontent.com/-Rz2HxdRc8GM/AAAAAAAAAAI/AAAAAAAAAAA/ymfj7P-O0N0/c-rp-mo-br100/photo.jpg','3511292162159714121',7955),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3-dc60tkVge_7ZxGUfQM5_XGcCCvhWGEiBbsJDVtTbDZeJuT4DCSIe9zMTt0HV8hENYC9-AIi0X_Sr4U7rerSIlOts8',NULL,'2019-11-27 16:06:00.974000','2019-11-27 16:06:00.974000',5,'Saadia Khan','https://lh6.googleusercontent.com/-EPa8Jd9xtY4/AAAAAAAAAAI/AAAAAAAAAAA/1BXmTx2zwW4/c-rp-mo-br100/photo.jpg','16389487648212004696',2617),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F358YBrjn9_FYXWnRsvqrSQe1THkE_bRawnSf3prrNri6ubT3WUC0Vm9TUp4KmHZt-OmTnEdDs5eQd62VtBwu9THe5Ho','Best experience ever in a ER!! They got my son right in, and started working on him immediately. Very nice and professional staff and doctor. They made sure that not only my son was comfortable, but that we were comfortable also. I would highly recommend going to SignatureCare Emergency Center.','2019-05-16 16:53:40.696000','2019-05-16 16:53:40.696000',5,'Tawana Sandlin','https://lh5.googleusercontent.com/-Neyg7RKZYXE/AAAAAAAAAAI/AAAAAAAAAAA/ByYWDzWK_EI/c-rp-mo-br100/photo.jpg','8626688543755174284',8482),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3CjKbgWXeS8ATqqQm9ixYEKRhgiBx2476z0eRkFd6i3Js9H5lXCgGUX18anF1cCh-yIufYQ0r559fko4vspbeH3T-dM','I went to their drive thru to get the nasal swab covid test this week. I was so impressed with how organized and professional all the staff was. Y\'all did a great job keeping all the cars flowing! Thank you for your service!','2020-07-19 05:08:30.388000','2020-07-19 05:08:30.388000',5,'Patti\'s Door Decor And More','https://lh4.googleusercontent.com/-j2jtBq8Vi-c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclDI2fhemMDFfOge1WuRYiAwHh4Qg/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21882),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3E-VfgfN0f6LSFczOptVodG-B-UF4bFwKSdmJV772V1RuqTLIq3QivoInld2DvmjxXYN0A6akrxmSGKAy3Zk_yagOik','Jessica and Magali were very helpful. They answered all my questions and were very friendly to my daughter.','2020-02-20 21:39:55.938000','2020-02-20 21:39:55.938000',5,'Zombie','https://lh5.googleusercontent.com/-4Q1apVLfIUY/AAAAAAAAAAI/AAAAAAAAAAA/YM1JY3KbWyU/c-rp-mo-br100/photo.jpg','6521947413723274945',14566),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3G4meX8tpy7EUSZVgv0rceaSXV5m8-HCXyXJhDWtGISX2shxNQzD6f5CsAT3c5z57-dp5eZKkoGU6M5ldBjSto0NOOY','The best','2019-01-24 22:55:11.447000','2019-01-24 22:55:11.447000',5,'Nafea Almutairi','https://lh5.googleusercontent.com/-QdL_0ozHQfI/AAAAAAAAAAI/AAAAAAAAAAA/vmeknD9qVRI/c-rp-mo-br100/photo.jpg','3511292162159714121',7452),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3l9yOeIDEU95Hd-3kEY516w--LG0_dAbNZ3WtD9xsSPbsKatcbTRGv2l9dsB58OSEliW_pLreV31CnlW9gpTdobLywU','I was super impressed with my experience at SignatureCare Emergency Center as always!! I never have to wonder if my child has gotten the proper care when I leave, Dr. Edwards is our fav along with the staff Courtney, Kara, Gary, and Gunnar!! Super attentive and such a blessing to have in Texarkana. We will continue to use SignatureCare for our emergency needs!','2019-12-17 19:08:51.742000','2019-12-17 19:08:51.742000',5,'Brittny Pickering','https://lh4.googleusercontent.com/-EeniCAFpwQs/AAAAAAAAAAI/AAAAAAAAAAA/Eyo7S01eC7o/c-rp-mo-br100/photo.jpg','3272657195432704501',6836),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3nUe997uybU4pf9GtPentmBNiWzrDop5HTuc73k3TI6yf1EFfoUCQZ4OIb25PpGZ-FqkuulK6QQ9vyKrpHv1vlFZeJI','I say \" STOP \" to anyone who is looking for medical attention. Entering the facility it was state of the art, clean, with pleasant aroma the odor didn\'t start until I met Dr. Alecia Warren ( HORRIBLE). The young man Jordan was AWESOME ( I hope he get a chance to read this) he work at the front desk signing you in. The security guard Mr. Ray was just as good!!. I took my son the the Signature Center to have a full check up ( he had been assaulted) after I told the doctor about what happen her whole attitude changed and she instructed \" My broke ass\" to go the LBJ or Ben Taub to seek treatment please keep in mind I\'m strapped with \" CASH\" a lot of it and his \" INSURANCE CARD\". The rest of the staff was great except for Dr. Warren and her handy side kick ( the phlebotomist). I can\'t wait until I reveal who I am and how important it is to treat ALL people with kindness and respect especially when your license and or certificate that you worked hard for on the line. I choose this place not only because I reside in the Providence subdivision but because of the reviews...I\'m glad others had a pleasant experience........NEVER AGAIN and it\'s going to hurt her when she find out WHO I AM','2016-06-21 14:28:10.231000','2016-06-21 14:28:10.231000',1,'Stacey Mcclennon','https://lh6.googleusercontent.com/-qGnxMeVP5YQ/AAAAAAAAAAI/AAAAAAAAAAA/XnH2o3E62fg/c-rp-mo-br100/photo.jpg','17394740196501090048',5232),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3oMTvMngSvSeWMZos1y-UFrfOD7N0tUodvbRAsgxFO49BnRih6e6ce1b9jVX_04CGbA7UP-Bs0GrU-2HhtgoDiucWck','The staff are great. Very attentive and they actually care about their patience','2018-11-28 19:53:08.750000','2018-11-28 19:53:08.750000',5,'Patrice PDupree','https://lh4.googleusercontent.com/-1fWroKdNwe8/AAAAAAAAAAI/AAAAAAAAAAA/AOw_OafrDLU/c-rp-mo-br100/photo.jpg','12541597562633926366',588),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3u7_eIAH8DPPu-DXaMu4cUKqraujGmJ1kT5_mAV3nYwDDXypwl__V_6pg4yC7XWfJ9koAlqkrQYrlkEzhNPc9yMoiSI','Great place went pretty fast everyone was nice. The doctors and nurses were very helpful would come again if we have any problems','2019-07-08 02:13:36.081000','2019-07-08 02:13:36.081000',5,'Alejandro Erazo','https://lh3.googleusercontent.com/-zPYpRmhSo90/AAAAAAAAAAI/AAAAAAAAAAA/FUtKbZdS4L0/c-rp-mo-br100/photo.jpg','2694018788013845459',6115),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F3vaxG5CdhskdXl7sv0dvKf2LekWVP2GOjGh6OUacu9sHgTuD_pJ4yol02o26pY0jenJWQHQK4BLRyb3o8K5k5A61P40','Fast, great service!','2016-09-20 15:19:17.814000','2016-09-20 15:19:17.814000',5,'Jeff Martin','https://lh6.googleusercontent.com/-zJ9Z_mUMalM/AAAAAAAAAAI/AAAAAAAAAAA/xx1HiCiNtPg/c-rp-mo-br100/photo.jpg','14567670160750071148',1969),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F4bf9zsvGnOrKpLD30u3YKSUuDEi0PT6G4ONK2XC7fIYYWsK_NhR2aT9e-yPi3PdTrr0TDrCzDJFbsm08vGtyagXf7iw','My young daughter was having an asthma attack and this was the closest emergency center to my house. I arrived and we were both terrified. My daughter was admitted and treated quickly. All doctors, nurses, techs, and support staff were amazing kind and caring with fantastic bedside manner. I felt very comfortable here and my daughter is feeling much better due to their wonderful treatment!','2017-11-11 08:34:13.954000','2017-11-11 08:34:13.954000',5,'Amy Drosche','https://lh6.googleusercontent.com/-tJCjGWrt9R8/AAAAAAAAAAI/AAAAAAAAAAA/LQA4c8yfin0/c-rp-mo-br100/photo.jpg','14904078213800803294',2313),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F4fVdFaDo1kM6eDZ14DihMjJtMXYnw6iPYZ9_VAdjIBb-C6AANcepyoP_7zTgdsYrvDOeZdU_CUNN4TLWHhmQKwojaxc','Quick, friendly, and efficient. Never thought ER care could be so pleasant','2019-01-30 16:13:43.338000','2019-01-30 16:13:43.338000',5,'Bhargav Karamched','https://lh6.googleusercontent.com/-gxVIlh5EzvE/AAAAAAAAAAI/AAAAAAAAAAA/0gQpmA4zo70/c-rp-mo-br100/photo.jpg','3511292162159714121',7433),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F4Kb3ABrWpp8Pq6lHHdWEV3o5-MwA7OGHlFseWuxVXLSsNvVpq4Mfy6QnxG5oh5urCFreWudWnJOmJRbGWrYHc-JZbYg','So friendly and quick!! Made my little one feel comfortable in an already scary situation','2020-03-03 02:54:09.541000','2020-03-03 02:54:09.541000',5,'T','https://lh6.googleusercontent.com/-l53w-76bl0Y/AAAAAAAAAAI/AAAAAAAAAAA/ni59BAiBpFI/c-rp-mo-br100/photo.jpg','13486358490203335051',20936),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F4ND1epWAu4e8N8WJ-6zlLFSOUUD-ThwN2OE8QyCUGiT1e-TwNpA7B_0F2maxk5FAuVrwSEyvcxYR_KMG6piHBARSzmQ','Dr. Ybarra, greets you at the door RN Katrina give special care ER Tech Cedrick made me feel like I was right at home Rad Tech very supportive Reg: Therisa was very patient, kind, and offered good hospitality Overall they were a wonderful teaM!','2020-01-04 02:48:32.673000','2020-01-04 02:48:32.673000',5,'Blaire Roberts','https://lh5.googleusercontent.com/-NDGTRFYzMXA/AAAAAAAAAAI/AAAAAAAAAAA/VVFqVI2ic_Q/c-rp-mo-br100/photo.jpg','8679688254631342173',8655),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F4Pz6y-uVcQU0x4zcIYwZYspAyBIGSlcWUKeHWcD7vg4fDRwDDIt8Dj89sV13nVrUU3zEpR4UIjTn3tGhcmYCJ9Qxato','Signature Care is the best ER!!! I had excruciating stomach pains about a week ago. I did not want to go anywhere else but here because they are cordial upon entry, fast admittance, and quick with diagnosing issues. it is a little pricey but as they always say: You get what you paid for. thank you Signature ER for taking care of me.','2017-09-18 21:59:35.782000','2017-09-18 21:59:35.782000',5,'Aaliyah Townsend','https://lh4.googleusercontent.com/-hbFUHNFn3yc/AAAAAAAAAAI/AAAAAAAAAAA/J1ePxq4Ibzs/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7788),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F4ZR5u8pimvWQJDvDAN1ZVndkvsolZ527hdngdBLapROHsDrKo9jypcj6yA2CMDkuYBoxlRCswKkDDbjIP34UhtEsjeo',NULL,'2020-07-14 07:24:37.444000','2020-07-14 07:24:37.444000',5,'Michael Shkatov','https://lh5.googleusercontent.com/-QH4pT7RKcuU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucleteSoSayPEAU5qDootucvtf7kCA/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22075),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F56eKDt0fzkAKYEWNnV_zNXZMUzu6p2_BBwvmvf2fx6E3DlYs6kz9etnmI4rEyO4qwUA83VshNZmONsPBr7RxD9oZd70','Very fast, professional, and polite... i was in and out within 15 mins Jesus did a great job making sure i was checked in quickly and at check out he always make me laugh. Nurse Dana did a great job removing my stictches, Dr. Cavazos examined my situation with precision and fully explained what i needed to know... overall it was a great experience.','2019-06-14 22:10:22.697000','2019-06-14 22:10:22.697000',5,'Jay Black423','https://lh5.googleusercontent.com/-AvCskVbt7Vs/AAAAAAAAAAI/AAAAAAAAAAA/FPqX8nFmHrE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F5ew2xhetOQDYSouILlb0chmy2N-p_KqNpu6tWQ7WUbPEE2EnSeCfFvBcWSPg-fBAKWORhurn68obShKldbyBOyX9y3M','As soon as you walk in you feel care and friendly ness of the front desk, was taken back extremely fast, dr came in before I could finish filling paperwork out. The nurses and dr were extremely helpful, kind, and very attentive. I was being checked on very often. I am extremely pleased with this facility all around from drs, to nurses, even down to the cleanness of the place.','2019-10-30 23:08:34.281000','2019-10-30 23:08:34.281000',5,'Destiny Miranda','https://lh6.googleusercontent.com/-rTBxGdph_ns/AAAAAAAAAAI/AAAAAAAAAAA/ucdY8C7S10E/c-rp-mo-br100/photo.jpg','2694018788013845459',6024),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F5he75KqFdkEy454ijcPT7zALjHi40IgOntPNcufN13BKa6nOjIHv_1gKLAL_EIA6drIuXB-K8XTJms0C7p7UnQSKZmU','I had an excellent experience. I was seen immediately and the staff and doctor was very nice and helped to make me feel better. I would definitely recommend this place to everyone.','2018-02-01 16:54:34.745000','2018-02-01 16:54:34.745000',5,'Clair Hall','https://lh3.googleusercontent.com/-cC9wX4PR9Ec/AAAAAAAAAAI/AAAAAAAAAAA/hvynZdCagy4/c-rp-mo-br100/photo.jpg','17394740196501090048',4891),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F5kSM14GQV4lvNG1hWqSeJBLSzlp3g26qMssG2gr0P3xN58t05iVTFI0VgPEfbvZNms19M2spmDlzFBltauDZvbV6HLg','Kimberly and Dyveliz were both very helpful and friendly. They were able to get my friend seen before she even finished her paperwork. The location is super convenient and the service is great. Hopefully won’t need to come back but wouldn’t be upset if I did.','2018-01-16 19:51:46.653000','2018-01-16 19:51:46.653000',5,'Peyton Harrison','https://lh4.googleusercontent.com/-JBi74hvEEf4/AAAAAAAAAAI/AAAAAAAAAAA/2eb0kLxu6Vs/c-rp-mo-br100/photo.jpg','16590124370714063921',3883),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F5XNo1YywRnHR1WyrQlyJAjj1h6oaoT9QLuSdnuGAJGMxTVyOETr2I2bEiPMkzoDxACeonPQxtwi_Fk5ahDyRSK089CQ','They treated my granddaughter amazing','2019-10-02 22:05:15.222000','2019-10-02 22:05:15.222000',5,'PlushBeauty Honey','https://lh5.googleusercontent.com/-JT-cukkBFfo/AAAAAAAAAAI/AAAAAAAAAAA/JkXCuJPaErs/c-rp-mo-br100/photo.jpg','16389487648212004696',2861),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F6BPpyqA_251aeVA-m4AN4sJhn6xyAC9TTslA1WdlX_-cql3PwwZGu3mtu22mvSCBrZvxbeLFKx3Ve8cgkj2gA4g8_Hw','I had an amazing experience with the staff here from the front desk to the nurse and doctor.. huge shout out to \n\nShaunda\nChristina and Dr.Lingan \n\nYou guys are an awesome staff and thank you for making a potentially uncomfortable experience amazing','2020-06-05 21:51:17.071000','2020-06-05 21:51:17.071000',5,'Sia Jahadi','https://lh3.googleusercontent.com/-EmUE0FYbNsQ/AAAAAAAAAAI/AAAAAAAAAAA/dcbp6RjIEqQ/c-rp-mo-br100/photo.jpg','16891069708558046635',22691),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F6cD7ht5kBAb_0eApz47JahcbM20-MHkC5IXUv-HGOWfWzqEgZ2wivaeYwlrvSbnuMHlxbgl0Uofg_6p-TYEBbMaEZKY','Great service from Karen at front desk. Tech: Nicole H, Dr. Souman and Nurses Kelly & Pamela, I experienced great service from everyone. We left very educated on all of our symptoms. Thanks everyone for the great service!!! Keep up the great','2020-03-04 13:54:33.640000','2020-03-04 13:54:33.640000',5,'Alvaro Mayorga','https://lh5.googleusercontent.com/-m_PRlOrDsWg/AAAAAAAAAAI/AAAAAAAAAAA/n_acAO2hPUE/c-rp-mo-br100/photo.jpg','8918455867446117794',17444),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F6JKc67zhkaX9D4vrAqfKER776RvkFv_avIMYUgRL1ZDzpOLrpofdu95MszgC4xfUJ-rRZRr7W094zyNEOUnQ6TNjdbg','I was in an out the doctors are super nice and friendly. maira and andrew took good care of me','2019-01-02 22:10:39.253000','2019-01-02 22:10:39.253000',5,'Joseph Bermea','https://lh4.googleusercontent.com/-Tl64HQnpxYQ/AAAAAAAAAAI/AAAAAAAAAAA/kSv6p_z4vb0/c-rp-mo-br100/photo.jpg','13486358490203335051',1116),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F6VKF3LrJbo6iNljfyic0QwIfH-zNKoiqozbmXZ6Hh95eYdp1A8UHpBfSjRLa3giTGmXdhnW6X1uXbCOYE639jBB5ZEs','Awesome service was out quick an issue fixed','2017-10-12 20:45:46.823000','2017-10-12 20:45:46.823000',5,'Robert Cooper','https://lh6.googleusercontent.com/-RYoLsHOfK1I/AAAAAAAAAAI/AAAAAAAAAAA/1xqLKoSMum8/c-rp-mo-br100/photo.jpg','14567670160750071148',1747),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F6y6b8lU1TiyWJE4Acc7lKgvitfwDO4OqL94Bai1Ooyd6w-gmNjUS0BMkKHDjcAiUgHXMawcxC03GJaRdlelouiv9bUI','Sam and Cody were very professional and helpful. I will definitely recommend this place.','2020-08-03 21:26:51.643000','2020-08-03 21:26:51.643000',5,'michael leslie','https://lh6.googleusercontent.com/-5zsMnkTHvdc/AAAAAAAAAAI/AAAAAAAAAAA/Q9P_b6BlHKg/c-rp-mo-br100/photo.jpg','2077061009497551125',22744),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F6Yod5jV6GLBvPcySJkR_uitPSN5V6U9n7aOMxlPCDVfM7m3CI1dnPONM0rIy8Rx27b_GiCY7JMk0zwheCShDsG_5gtw','Awesome staff!! Very welcoming. Would recommend to any and everyone!!! I love this place!!','2018-08-13 16:36:48.277000','2018-08-13 16:36:48.277000',5,'TIANA clark','https://lh6.googleusercontent.com/-1cKTLtlgLac/AAAAAAAAAAI/AAAAAAAAAAA/AhD6p9dN4TU/c-rp-mo-br100/photo.jpg','3511292162159714121',7624),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F6zd2Dn29ozFFE2Qrrl_Ep_EAkvfUx2B5KYDb4nXGYUOiC-AEXhnVFOvhlTrllldLQOcjtQaaeO0I6--DQZH63xhhO88','Fantastic experience helped me with all my concerns felt as if i was at home','2019-06-22 21:40:19.515000','2019-06-22 21:40:19.515000',5,'The Adventures of Mr. Bardbas and More','https://lh3.googleusercontent.com/-bYlmxlTfEz8/AAAAAAAAAAI/AAAAAAAAAAA/9zFwJpEyO14/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2128),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F7_GZ7BQBg8UHLR8AC03HeZuR-ytNOQRJ6QQj1hiESDrGNyEy8gsJGAjLyQs-XEqTfI93S6gZnp1yDae4QqWlNDh0RuU',NULL,'2020-01-25 23:02:31.076000','2020-01-25 23:02:31.076000',5,'Haley Berry','https://lh4.googleusercontent.com/-7v3b6gh_Q5A/AAAAAAAAAAI/AAAAAAAAAAA/OviuupgLrBA/c-rp-mo-br100/photo.jpg','3272657195432704501',10276),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F76tpO7P7AjxuoaOqd1wYa6_WrjUL4MuHROf_6thsLzOeCQSyrpksr8eX7581bivc9-k90hB3tFBqBh6ya737cmjCVkU',NULL,'2019-07-09 20:58:26.691000','2019-07-09 20:58:26.691000',5,'Mayra Diaz','https://lh5.googleusercontent.com/-srrMLQ3nwcg/AAAAAAAAAAI/AAAAAAAAAAA/phsfZJ1s04c/c-rp-mo-br100/photo.jpg','13486358490203335051',897),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F7adHrd3Aw_lCrDhoN1x09T7ENYGGkDjdxOI13yo4m43gGwpbShs9iuy2wLAMu9CGgx7dLK7lvZHoMAao9KiZkIV3cU8','Great ER. Quick, friendly service, professional care, attentive staff. I would suggest this ER to anyone but especially those who are looking for quality care at an affordable out of pocket price.','2016-10-08 19:33:48.122000','2016-10-08 19:33:48.122000',5,'Hal Gailey','https://lh4.googleusercontent.com/-1ZS_6jov27I/AAAAAAAAAAI/AAAAAAAAAAA/tT12Mvtfkhk/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5189),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F7bD9x351Z-PDzlrS-uopK-hRiHOs8xWb2tfVrUFUnxH4Tpz1Gb75Qrb3n5e3bcRsiWSSI-bht2eQW1QQQxflrY183lk','I created a Google account just to leave a review. I\'ve never left a negative review, but my experience at this place deserves it. (Midland location)\n\nI was in absolute agony when I arrived at Neighbors ER in Midland today. I was sobbing upon arrival due to extreme lower abdominal & lower back pain. After being taken back to a room, I could see right away that I wouldn\'t be taken seriously. My pain level was an 8/10 and initially was given a strong NSAID through an IV. When I felt NO relief, I waited 45 minutes for my nurse to return and informed her that I was still in excruciating pain. Keep in mind that the place was DEAD. Not even close to being busy, so absolutely no excuse to ignore a wailing patient for that long. After voicing my concerns about the NSAID not helping me at all, the nurse says, \"Oh, well I\'m sorry it\'s not a narcotic. This drug helps many people and the doctor likes to start out with non-narcotic drugs and see how it goes.\" Fine. I get that, even though I never mentioned narcotics. While I understand, if the patient says it\'s not working and is sobbing uncontrollably in pain, hurry UP and go get something stronger. So what does she bring me? A (one) Tramadol. What a joke. And I very clearly stated that Tramadol is too weak for my endometrial pain. I have a prescription for it at home and told her this early on, but I was obviously ignored. Why would I go spend $100 on an ER visit to receive the same drug I have at home? I told her that I also have Toradol at home and it also doesn\'t work. She said, \"It can\'t be Toradol that you have because it doesn\'t come in pill form.\" Someone needs to go back to nursing school because that\'s exactly what I have. Grrrr! Quit making patients feel stupid. I know my body and the pain I was experiencing was AWFUL! And then to be made to look like a drug addict is wrong and disrespectful. Every time I asked for anything, it took FOREVER for the nurse to return. I\'m honestly in shock that I laid there crying for hours without pain relief. When my friend arrived to pick me up, we went to the hospital ER where I was promptly & professionally taken care of. I should\'ve known better than to choose this freestanding ER facility, given the many one-star reviews on Facebook. I thought there was no way it could be that bad. Well...you\'ve been warned. I\'ll never go back!','2016-05-28 07:12:43.508000','2016-05-28 07:12:43.508000',1,'Jen Craven','https://lh3.googleusercontent.com/-PWvia-ACuhE/AAAAAAAAAAI/AAAAAAAAAAA/Elwc_sHlrHk/c-rp-mo-br100/photo.jpg','13486358490203335051',1139),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F7GxLSTp-3J-A10gwsO2RKDm5JlI2f-Xb5KJtsftwE1_oAGZs52pN6HgtKH5BkZPleYb46Q5Ifibr7Voo286Pzhk38HI','I had a awesome care. Jessica F Was my nurse and she took great care of me and she’s awesome. Jeremy did and awesome job as well.','2020-03-01 21:39:48.730000','2020-03-01 21:39:48.730000',5,'Kurterrion Miles','https://lh4.googleusercontent.com/-840v8G7LVSY/AAAAAAAAAAI/AAAAAAAAAAA/RR21lGEyRfg/c-rp-mo-br100/photo.jpg','6521947413723274945',14528),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F7W002ME2Al9f4Su9_pQ_zccmeBs8etqvXOdPGOwglt9jZv9IsTQqiTEudF5g_fcUA3KNOaKyEmg1hyQMFKMX5b13uL8','Staff was very caring and attentive! Cynthia, Aaron, Carissa, Ryan and Dr Faig were all very knowledgeable and patient when answering any and all questions. Would definitely reccomend them to family and friends!','2018-08-29 17:30:29.154000','2018-08-29 17:30:29.154000',5,'Dololres Garza','https://lh5.googleusercontent.com/-AWiw4jdBIXY/AAAAAAAAAAI/AAAAAAAAAAA/pC83Yd1ZfsA/c-rp-mo-br100/photo.jpg','14904078213800803294',2220),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F8-ec1DzvHBIMFM4byIzSthPFf2uHxMd5QPkdfCkgAD5pJXpm4j5ttbbfbGo7s7KMjuRBvDWT8uvXcHCREs0ifxHM1T0','I was in bad shape when I finally allowed my friend to take me in, and Dr. Vaagenes and his staff were lifesavers! They could not have been nicer, more attentive, or more effective in addressing my needs and pain. The cost of care was very reasonable, and Dr. Vaagenes spent a good deal of time talking to me about my condition and the follow-up care I would need to address it. I would highly recommend this location to anyone in the area who finds themselves in need of urgent care.','2018-09-30 00:14:37.788000','2018-09-30 00:14:37.788000',5,'Robyn Brown','https://lh5.googleusercontent.com/-YAFTjrmVbk0/AAAAAAAAAAI/AAAAAAAAAAA/UMokKMQZyi4/c-rp-mo-br100/photo.jpg','14567670160750071148',1487),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F88Ksk7mw0KjHR9IW-AhhISzB9J5lzpkq683rS5E0Pm2GDX-GvpDiiixcWfxD_EmjxrlWU4driSAIfSKw46k7iyO-CoU','Came in unable to open my jaw but Dr Joseph, Jessica, Amy, Churiah, and Dr. Chukwu helped me get back on my feet!','2019-03-10 01:13:12.848000','2019-03-10 01:13:12.848000',5,'Dario De Leon','https://lh6.googleusercontent.com/-J6uXtvgy-FI/AAAAAAAAAAI/AAAAAAAAAAA/xm7iOe47M8o/c-rp-mo-br100/photo.jpg','3511292162159714121',7391),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F8bIFXvCzhJDuqrmq4-9ib-no46QGblWUqhNOm2vjVJO9IQEOdg1NpHZne6WRXANrMLsgfJmzznfjptut5YTJG2_cZFs',NULL,'2019-12-20 13:09:47.342000','2019-12-20 13:09:47.342000',5,'Roger Ashbrooks','https://lh3.googleusercontent.com/-tiq3pCTt2dw/AAAAAAAAAAI/AAAAAAAAAAA/XOgk_QeEY2Y/c-rp-mo-br100/photo.jpg','3272657195432704501',6834),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F8JnOl4qN68-kepMaKYk3_3zO1G9iTMCrvk1B-5WjeMNc5k-wwJ93h8qrGog2TqKl5get5ag32QzUKWsNv62ZfD8Uf50','I went here about a week ago, I couldn’t be more satisfied with the care I received, they front desk staff was amazing and made sure i got back quickly, when i arrived in the room i was greeted by nurse Andrew, he is by the far one of the best nurses in the medical field, he made sure i was comfortable , and made sure i understood everything that was being said to me , he was very helpful to my wife when she had questions as well.. i will refer this facitly strictly on the care I received from Andrew.. Thank you for having such great stuff at signature care!! But most of all thank you Andrew for your amazing care you provided us...','2019-01-16 02:41:53.250000','2019-01-16 02:41:53.250000',5,'Dillon Plunkett','https://lh4.googleusercontent.com/-aBkMguZjb5s/AAAAAAAAAAI/AAAAAAAAAAA/WSEu0_uEUAU/c-rp-mo-br100/photo.jpg','13486358490203335051',1108),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F8o_6QmaSCZ1_reWGjet_a5WdCEr0TF5-n2y5t-MzE9LJmUCLf-LkRBkk0SoP0BXLuxAuBpuIvqAzBxgp5yy-LHE5G8I','My experience at this emergency room was great. The staff was very welcoming especially Dr. O’malley, Ekaterini Jessica Patricia and Stephanie. They made the atmosphere a very happy one.','2019-10-08 02:15:04.987000','2019-10-08 02:15:04.987000',5,'Abeshai Bernard','https://lh4.googleusercontent.com/-hkMnUZROGvA/AAAAAAAAAAI/AAAAAAAAAAA/J9Og0epaiW0/c-rp-mo-br100/photo.jpg','16389487648212004696',2848),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F8rBiz7pHTMzkSeXCAd1lYedQEnnpt6f8yVfKkv5jaoneerqC1CNyuGMNQM-IAUiNPOXHM3JeYji4RbAABOI6OuLbsSA','Everyone is so kind, knowledgeable, and compassionate! Would recommend to all friends and family. Very happy with my experience!','2016-06-15 18:16:22.222000','2016-06-15 18:16:22.222000',5,'Lindsay McCann','https://lh6.googleusercontent.com/-Vmb7Mcp7vs4/AAAAAAAAAAI/AAAAAAAAAAA/EwZi4Vx3ZAs/c-rp-mo-br100/photo.jpg','3511292162159714121',7981),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F8U8wfThhTqZGWzgMG7y2dfv5oG10_D8aA6Zj3psvst4w4lv5IKycjbqCW1yNcR9KZTDbReV29ln3NE4EEtBxcH0T93A','Leslie and Valenceia was very helpful.','2019-06-24 21:59:28.258000','2019-06-24 21:59:28.258000',5,'H. Hall','https://lh4.googleusercontent.com/-0whaM7G3puY/AAAAAAAAAAI/AAAAAAAAAAA/x27fAD8MwjA/c-rp-mo-br100/photo.jpg','3511292162159714121',7289),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F90ZK3TGoxJToYFDujADheCTmeRMOW498r0w4fbiWezXx4G7DOxv5L8mvtycdg0TBJSFdt6cD6-XI5tgwrRlqR0wJZXE','I never have written a review for anything but the care we received was amazing and worth my time to comment on. Our son had severe pain upon landing at Houston airport and we only had a 3 hour layover before continuing on our trip. The staff at the Heights Signature Care facility was beyond incredible. From the front office guiding us from the airport to Dr Akunyili who is the most broadly experienced and skilled ER physician I have met and I\'m a physician!\nHe has able to diagnosis, treat and get us back to the airport in 3 hours. My son did great and he and his staff helped our family avert a disaster. The facility is very nice and a pharmacy is within walking distance.\nThey even sent a signed card hoping my son felt better! Thank you for excellent care.','2018-09-08 21:26:26.812000','2018-09-08 21:26:26.812000',5,'Lawtorok','https://lh6.googleusercontent.com/-dFZy_-94gUo/AAAAAAAAAAI/AAAAAAAAAAA/UfNZS60zhPo/c-rp-mo-br100/photo.jpg','14567670160750071148',1516),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F976cKdDZpOkl7ABnVVThjbocQ9rwneOmSghcYFcU6NtrrKZp3tvVV1paGFlML7BMidyoB3H__dW9YpdCGaduzHQ4TdY','I don’t go to urgent clinics often ; however , after battling with body aches, fever, congestion , cough, sore throat I quickly made the decision that it was not a cold and I needed help . My husband took me to the Signature Care Emergency clinic up the street from where we live. From the moment we opened the door we could see that this was a place of excellence. From the front desk wait staff to the physician. We were quickly served with such professionalism. This place is amazing and I will refer all of my friends and family here. Oh and BTW it is the flu and I made the Tamiflu 48 hour window for being 65 year old female this flue is frightening.','2018-02-15 18:12:14.951000','2018-02-15 18:12:14.951000',5,'Sandra Francois','https://lh5.googleusercontent.com/-6y9KC1TOT28/AAAAAAAAAAI/AAAAAAAAAAA/A-zUwE-EUME/c-rp-mo-br100/photo.jpg','8918455867446117794',9284),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F9HEYIm-whwL8oRVYuzlWT_er44ofj2cnWiaDednIBQgnfoyqvcerVzIaTpnGQJbKppRGq8sEIKmxry3ulvCc9TFR2hk','I had an amazing experience ! At first I was scared but Elizabeth was kind and caring as was Naureen she helped me and was so nice. Dr. Sueman he took care of me very greatly and made sure I got fixed. My favorite was Dion because as soon as I walked in I was scared but he made me feel much better with his positive energy and he was so funny and friendly and even gave me some souvenirs. Overall I had a great experience. Everyone made sure I was helped and taken care of !!','2019-12-29 04:06:50.364000','2019-12-29 04:06:50.364000',5,'Frankie Vega','https://lh3.googleusercontent.com/-e8tLtS438_o/AAAAAAAAAAI/AAAAAAAAAAA/EXVUh3RbLvM/c-rp-mo-br100/photo.jpg','3511292162159714121',14470),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F9iqlXMOa8A39fQBwlB6rV1TvXy5-jzaf63Xc0CZrFatTfBB-4Xa_Oc0axSm2ydL1xJgF9DwuRoq9iUof-qBysCo8r4Y','Great experience! Lorena T & Amanda C were super helpful, fast with my paperwork and very friendly !\nNurse jeri and tech Lindsey & tori we’re very nice and explained everything very well, Dr.Vakey was very patient with me and explained everything very well to me, and made sure I understood! \nVery friendly experience compared to other places that ignore you.','2020-08-16 16:24:38.602000','2020-08-16 16:24:38.602000',5,'Madelyn Green','https://lh6.googleusercontent.com/-1b3d-J5_PyY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnLfn3IV5IL5ozy1Ye1vPTcTkh_Yw/c0x00000000-cc-rp/photo.jpg','16590124370714063921',23052),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F9OcoF-rxdRSSAvG-sAKUKf4wJKFEiH0_PqP3gKJGY3BP8StITcMHvRvfGo16qKcaPqVKQ3kdkXrTlSVgN1uvlEe_SI0','The doctor and the staff are friendly. The services are good!!','2019-07-23 19:51:05.144000','2019-07-23 19:51:05.144000',5,'Huy Hí','https://lh3.googleusercontent.com/-BaWzfxBEBLk/AAAAAAAAAAI/AAAAAAAAAAA/ymk7Frt0O5E/c-rp-mo-br100/photo.jpg','12541597562633926366',481),('AIe9_BHkHJRvhG8n5BjqdcMSKR_F9y-51-mp-yL6lWXuWmaiKOKdyHUxaMDro4Xi-A1pc4oriulAbySW5fwV7ObclAYICGkTzQy0wwuMtItT3Gk6GnxNc7g','The visit was great, friendly staff. So willing to help and understanding. After a awful visit at ER. The professionals here at Signature care were able to help me with my eye infection, a big thanks to my nurse Adam and Cristina R. yall were awesome, thank you Signature Care will definitely come back hopefully not too soon lol.','2019-06-18 22:14:58.652000','2019-06-18 22:14:58.652000',5,'Isidro Uribe','https://lh4.googleusercontent.com/-W7sv53gcvnU/AAAAAAAAAAI/AAAAAAAAAAA/gp5P_eD1Sng/c-rp-mo-br100/photo.jpg','16891069708558046635',4248),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fa_8X9Z6QtS7uFl1lOlLIwrbAXvqWMqieDEdenz_TkM1w2bjblc8Ho19FkKidZ2c7CHe65v1l7iJ7427wRVNvXdtKy-w','Everybody was friendly. Dr.pham, alvean, Marcus, Jocelyn, micheal did a wonderful job. Quick past with good attitudes!','2019-06-23 19:16:40.331000','2019-06-23 19:16:40.331000',5,'Balqueis Altamimi','https://lh4.googleusercontent.com/-jeVYm4SI49g/AAAAAAAAAAI/AAAAAAAAAAA/YUNh23gZ09w/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FA_dwTn09lNI13_7JJ-znkehdWJRWuYt0azI78lKoIl69RhI88piTUcsLMYWS1o0LygwOueBFNiVrBJPUKK71hFyFFMM','Sita, Matthew, Corey, David and Dr. Huerta were amazing. We had gone to the hospital ER and were sat in a waiting room for an hour and a half before we left and came here. We were seen right away, within 5 minutes of walking in. We will definitely be referring friends and family.','2019-07-10 05:30:11.182000','2019-07-10 05:30:11.182000',5,'Nancy Robledo','https://lh5.googleusercontent.com/-HUJxziQPPO4/AAAAAAAAAAI/AAAAAAAAAAA/xx0i3Vv20WY/c-rp-mo-br100/photo.jpg','13486358490203335051',896),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fa14c5Md8RlZn0sJnyBngI6zrL7X6BV9qroAps61LcDwGRQML5dwxQaxklxZKV6DhHzlGktYJmAXOOtGJA8yhGyg1XLY','Love this place the doctors the nurses they are all so knowledgeable and helpful! Quiet, clean environment they are awesome!','2019-06-19 04:14:26.441000','2019-06-19 04:14:26.441000',5,'Dandeezie G','https://lh4.googleusercontent.com/-hkmNdE-VKws/AAAAAAAAAAI/AAAAAAAAAAA/9zFNVB3JX38/c-rp-mo-br100/photo.jpg','8918455867446117794',9119),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FA3Z_CxsUJdpFcmUFzOYKOo2hPCWjrMA9YgkNUNrj_lVAkzOvDKGEh03pIZR61yxehuIoPnpfVEldXpsJil370aDgkdI','Dr. Pattison was very patient and kind. she went above and beyond to help me with my troubles. Gracie and Joseph are the best nurses ever!!! joseph is funny and made me comfortable. William is probably the sweetest person ever besides Sindy! i just love the support and compassion that each and every staff member has here for the community..','2017-09-23 13:57:35.966000','2017-09-23 13:57:35.966000',5,'veaniqka griffin','https://lh6.googleusercontent.com/-7n1RkqfHbOc/AAAAAAAAAAI/AAAAAAAAAAA/DijWLw2RQM0/c-rp-mo-br100/photo.jpg','14567670160750071148',1753),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fa6DJRcP-No4sgGFet4zrRWfJCZbYrt3V7pR1_ZOBjBxLLZkMD2JeYbXbYWGxIzjM8_GP8fLSlFKt3eBcAO7pDp1X01U','Great service, efficient and quick. Better than the Hospital anytime. Nice staff (Dr. Singla, Trisha, Francisco and Brenda). Thank you!','2018-09-23 03:22:30.139000','2018-09-23 03:22:30.139000',4,'TigerCraftPlayz','https://lh6.googleusercontent.com/-QmdZY_XGo3M/AAAAAAAAAAI/AAAAAAAAAAA/IAORMruYA5U/c-rp-mo-br100/photo.jpg','12541597562633926366',603),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fa770SiB39NyZlw0D_xVguiIDOFCcZnjXPx8oiAFdwuQTst2nhd7lVWEzVHiJTEzVVTv5h4wOHM41JX8MqqFvnavt_A4','Laura, Gina,Nora,,Eve and Natalie along with Dr Ngo are Awesome!','2019-01-01 22:00:14.902000','2019-01-01 22:00:14.902000',5,'Rhonda Tillman','https://lh5.googleusercontent.com/-czCd11HNpxc/AAAAAAAAAAI/AAAAAAAAAAA/gfW7z1bbQsU/c-rp-mo-br100/photo.jpg','3511292162159714121',7536),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FA9_4mtUYS16zweX7v0jX-DR_yIbFJYxSiyjOwA_fnPPkAfUzh_g8akr-FxvbeDU4pTGlX_ehMSEmgTzRxx6k6G7tbdA','For two days in arrow I had to take my mom and baby to signature care and the two visits were so great ; everything is clean and all the staff were very professional and friendly and they did what they had to do so perfectly ... Highly recommended ','2016-06-19 12:31:29.700000','2016-06-19 12:31:29.700000',5,'marwah kahleel','https://lh5.googleusercontent.com/-csQsOIiFnz4/AAAAAAAAAAI/AAAAAAAAAAA/qZYGEHQAudc/c-rp-mo-br100/photo.jpg','14567670160750071148',2015),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FABor6aYh5y3VfE0Bg4nBFjCs7wC0bItdD66qmC_h2Oub4mt3fsuni0csf_WZUglLKE4Em0DjLam2h4O8FDwtO7DWpTM','I brought someone to this location to recieve medical attention and the receptionist, Rebecca V., was super helpful and kind. Definitely a good experience. Love the snacks too :)','2019-08-23 00:41:00.335000','2019-08-23 00:41:00.335000',5,'Rose Rodriguez','https://lh4.googleusercontent.com/-9TSxBIYt_bE/AAAAAAAAAAI/AAAAAAAAAAA/v9HJb2MqQio/c-rp-mo-br100/photo.jpg','16590124370714063921',3243),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fafb5VPU6lpBUEfZ0bqjauLHXhMsxf_dH1JzTin0W8skq_PT9qRJ_CVPPf3uHq0bcAUldwyu9q9mhLG6RAoNvPYZo2t0','nguyen, C\nshawn, K\ntrisha, B\nshaylene, A\nalyssa, P','2019-12-21 13:20:37.432000','2019-12-21 13:20:37.432000',5,'Gaming god Yt.','https://lh3.googleusercontent.com/-DdHcuwmewWE/AAAAAAAAAAI/AAAAAAAAAAA/Fn4yzS_jC8s/c-rp-mo-br100/photo.jpg','8918455867446117794',9025),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FaFFSgJU41CsNwOKRhR06ijaj2aCOrc3AXglBRKVEEf54EvZ4mk6py81mjAUWWtblOn9W8Y_IQ8Sa59DGMYOveiG2IUY','I went in with a two hour nosebleed. Dr. Rose and staff were kind, understanding, thorough and incredibly efficient. They addressed and resolved this recurring spontaneous nosebleed issue I had been battling for almost two years. I had seen two different otolaryngologists about this with no resolution, and Dr. Rose handled it in less than half an hour!! I learned that this clinic is a stand alone fully functioning emergency room! I don\'t have insurance, but the staff managed the financial end with great finesse. My visit cost MUCH LESS than it would have been at a hospital ER. I live in North Austin, but Dr. Rose is my new South Austin doctor!','2017-05-25 14:09:08.303000','2017-05-25 14:09:08.303000',5,'Michelle Morrison','https://lh3.googleusercontent.com/-sWhUuZCxT2U/AAAAAAAAAAI/AAAAAAAAAAA/LksZZYQDTCc/c-rp-mo-br100/photo.jpg','16891069708558046635',4554),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fai1-nKDBdeYnbKtEX_a7rYsXHdbgYxSS-bEvqek961JWVVfphP4DELAdv74OzWPjCglNiBqE3vL1E5gS7_BVLRfF0h4',NULL,'2020-01-14 11:43:19.619000','2020-01-14 11:43:19.619000',5,'Terrie Lewis','https://lh6.googleusercontent.com/-URSvs8ZEbUU/AAAAAAAAAAI/AAAAAAAAAAA/6NCWUxHDQ2Y/c-rp-mo-br100/photo.jpg','8918455867446117794',14873),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FAlEUBzAdSylrvzjb-UzZCnkmDOguJTgLEebrgx3kg86T_9SaPmLBl60OGGeOsOjPm9yBg1_FjixiWUj7sLRBtanNaTQ','If you want five star service this is where you should come. From the moment you walk in you are welcomed and the staff is highly trained and friendly. They are patient and do not try and rush you out of the door. They made me feel comfortable, addressed my medical needs, and monitored me to ensure that I felt better than when I arrived. Thanks for the hospitality and awesome service - Mercy, Thelma, Dr. Faig, and all of the others I didn’t mention.','2019-07-16 15:45:46.682000','2019-07-16 15:45:46.682000',5,'Janine Jack','https://lh4.googleusercontent.com/-l36NvtSmfxA/AAAAAAAAAAI/AAAAAAAAAAA/kTj13ESi6vI/c-rp-mo-br100/photo.jpg','12541597562633926366',488),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FalVOUYqWGP_r7xzBSe3a45gDwIRNE7UlT6xAJkVQscEd770sewGeoBsWP_5YCwJfC8O4OyVHEkop1coOgUyH5vbTutg','Made fast COVID testing easy! Lisa and Marty were great!!','2020-06-12 17:27:35.780000','2020-06-12 17:27:35.780000',5,'Lauren Haley','https://lh4.googleusercontent.com/-XoN7UpkEX2s/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclCemWIomGpwU83viBrvbNi0OH8qg/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22053),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FaMq6W6qS3-VngYBxeVGOgDWPehmKn9_-RwX9b_7zScwwBQyac9wCyC79-Bf7UOc93odKSZxW-3Q2vTxK71N1mVCX0IA','The staff have been nothing but sweet and nice during my stay! They even laughed at my lame nervous jokes, so very much appreciated and cared for my well being !','2020-01-11 05:16:40.487000','2020-01-11 05:16:40.487000',5,'Emily Catalan','https://lh3.googleusercontent.com/-kwnpOMqgDkk/AAAAAAAAAAI/AAAAAAAAAAA/xxaCVcSqf4c/c-rp-mo-br100/photo.jpg','16590124370714063921',9495),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FaOrOBrX0DcYydexnTzjMn_1UtKP5rYmbSxhT4sa8Sz4IjYWyUd6elrVuE00ZP_7VjcVH9wXDDv9od5TigqaotaYSlWg','Corey and Andrew and Dr Huerta, they were an amazing team. Andrew and Corey are incredible. Couldn’t be more thankful.','2019-07-22 18:46:58.470000','2019-07-22 18:46:58.470000',5,'Angela Wiesman','https://lh5.googleusercontent.com/-olDWVBzxfRc/AAAAAAAAAAI/AAAAAAAAAAA/FE33h_Wtpic/c-rp-mo-br100/photo.jpg','13486358490203335051',887),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FaOV6RwqP1-NbQFmwB-xhHRrIHZjQ8dFFKqfgIzp_AIX2XszzjDVJfXLNixVa-qnL7Z7OxSjGwxBw8LWa7CnRI6N19Kc','The staff was very attentive and were very nice and concerned about my grandma. They moved quickly to make sure she got the care she needed. Dr. Patel and the am staff were amazing!','2019-11-21 13:53:44.049000','2019-11-21 13:53:44.049000',5,'Desiree fonseca','https://lh4.googleusercontent.com/-1V9Ci0o4zns/AAAAAAAAAAI/AAAAAAAAAAA/nORyVvYz770/c-rp-mo-br100/photo.jpg','13486358490203335051',734),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FaOzY_hZzHmLlS9omD6P9WIDqk3opOAx_glucfZ08-FPUvQB46cW7n4Mus5tg9CoMB-MfS1BJ7F2RzOeb3ei8zkvQGBg','Pretty dissapointed with the couple doctors the last time I came in. One in particular : SHELISE EDWARDS. The reason for my visit this time ,was because the receptionist and Doctor At the time of my call recommended me to come back in to be reevaluated etc. The paperwork I was given clearly stated the symptoms where \"immediate medical care\" is needed . The medication I was prescribed (antibiotics) didn\'t seem to help my infection, with my symptoms still present. I also had a CT scan done in their office For my daily migraines and more where they discovered a large sphenoid sinuses cyst 1.8 cm and another smaller one , along with sinusitis (chronic) . The previous doctor referred me to a neurologist without bothering to explain why and to explain my results , I had to call a family doctor all the way from Russia to translate for me . When patients are coming in to see a doctor, they are already in pain, sick, vulnerable, and are generally not at their best . It\'s hard to describe what you are feeling to the doctor , as it is, but when your doctor ends up talking to you like you are stupid or ignorant ... It only makes matters worse . She didn\'t bother to even examine me . They didn\'t bother to take my temperature to see if I had a fever or not (I have a slight fever as of now ) I thought doctors were supposed to help ? This particular doctor , almost put me in tears . She made me feel like an idiot and like my pain is not worthy of her attention and care . Even said something along the lines of \" this is a place for life threatening medical emergencies \" It was completely dead inside , yet I was just such an inconvenience to her. Am I not paying for her service ? In conclusion , I was told to go purchase nasal spray over the counter . Wow ....I really like the rest of the staff there , they are very nice ,caring and welcoming . Too bad','2016-07-07 14:42:41.061000','2016-07-07 14:42:41.061000',1,'Darina Carlson','https://lh4.googleusercontent.com/-3I15NgzeEAk/AAAAAAAAAAI/AAAAAAAAAAA/dR1MWVLIF9s/c-rp-mo-br100/photo.jpg','3511292162159714121',7964),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FaP-GtidmIBmdA-uUFPLYkNr3_e6mdssoeOaJ7NeK7heRxc0jdyDrWy-CNxIs5_cMkjeV7KRaZ6_dHXNWmE_Fk337_M4',NULL,'2018-07-25 16:22:52.134000','2018-07-25 16:22:52.134000',5,'Ryan Sharrer','https://lh5.googleusercontent.com/-opWAq5uKFNM/AAAAAAAAAAI/AAAAAAAAAAA/TltbPcrEIus/c-rp-mo-br100/photo.jpg','3511292162159714121',7683),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FAzbxGkLCAEfGzqdqG1sLZbeqH9P8pejp26W8IG-0rRo1YLqODXg_iqzSy3WPjd8p_eOfd8ZHRSS-svBMOeorC3vmkTc','No one wants to be sick but if you need care Signature Care Emergency Center is my 100% recommendation. They attended to me quickly and with kindness. The facility is clean and very accessible. They were kind to my husband and offered snacks and beverages. The Dr made several rounds to check in on me and provide me with updates. Absolutely superb. I appreciate the standard of excellence here.','2020-02-12 22:37:45.917000','2020-02-12 22:37:45.917000',5,'Well Life TV','https://lh3.googleusercontent.com/-nFCpB5nbcwo/AAAAAAAAAAI/AAAAAAAAAAA/X7EGDoLbWPc/c-rp-mo-br100/photo.jpg','8679688254631342173',14748),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fb0gkhaWzKMJ156K__R8BW4O6xvjZjruE1wbUwL4AqcUMqZIQIGl7VTYaQHlt92SgDC9ZVXHADWCisqAlcNjqJpVfBjE','This place is awesome! We were seen super fast & the staff was so friendly and helpful. Really made us feel seen & heard & cared for! The facility is suppppper nice & super clean! Great care team!','2019-09-17 18:19:44.554000','2019-09-17 18:19:44.554000',5,'Madi H','https://lh6.googleusercontent.com/-uz1tevP_m-4/AAAAAAAAAAI/AAAAAAAAAAA/Z9xXOIwiQcY/c-rp-mo-br100/photo.jpg','2694018788013845459',6064),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fb5f3743TN0mxRdXjJKAmxjde1qCN3sizn5F_670P_VlUL40JnTllTvONm9pGViIx4kC4rFmS_QTy3hwGhkucPr8hBoE','The staff was very friendly and professional,\nDr. Iheme and Nurse Avean seen me very quickly. Jocelyn and Oliva made the registration & vital process easy and quick. I was finished within 20mins. It\'s the best emergency room experience I\'ve ever had.','2019-12-04 13:47:57.756000','2019-12-04 13:47:57.756000',5,'Sherterika Anderson','https://lh6.googleusercontent.com/-qio5VgHM3g8/AAAAAAAAAAI/AAAAAAAAAAA/aatGdGfzyHw/c-rp-mo-br100/photo.jpg','16389487648212004696',2585),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fb9lMy_BfcsRFtK-7zyhFAMiSeuky9I25-8gPF_R8gh3d2VyBifEZfRl6RG-0aw7umkXnMZbjNm6IffGr3hFarsPQ3Tw','The faculty is very clean and all of the staff are very nice. From the time we walked in and I did a lot of walking since I had to go make phone calls and go pick up my kids, Jocelyn was very nice and patient with all my comings and goings. Dr.Appiah was very thorough in treating my husband and trying to determine what was causing his issue. Alvean and Marcus were also amazing. Alvean was gentle and answered any question, even not related to the visit\n Marcus was amazing, just from him making the mood comfortable. Great energy is mandatory when you aren\'t feeling well and the staff today made that possible. If we ever need care, we\'ll definitely come to the location.','2019-04-24 23:09:09.934000','2019-04-24 23:09:09.934000',5,'Jazmin Payton','https://lh4.googleusercontent.com/-W_AT9VFeCnc/AAAAAAAAAAI/AAAAAAAAAAA/-6B1IaACoLY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fb9OqyeOYS-UnV5YqLeDLF6XuPvNBvjlt0WqiPr46kLbG8dlh8KcM9AXGCrJu4pI-S1OLBnK4CPfaek1KUcTjTlTQZMw','I had a great experience here! Mollie, RN was amazing, very attentive and quick in her duties. Dr Henderson was very efficient and caring with how she handled everything. I was in and out within an HOUR!!! This will be my urgent care center every single time no doubt.','2019-11-03 14:17:15.869000','2019-11-03 14:17:15.869000',5,'Taylor Surratt','https://lh4.googleusercontent.com/-ZXfEBY9Qwyc/AAAAAAAAAAI/AAAAAAAAAAA/sxneCkfdvdM/c-rp-mo-br100/photo.jpg','3272657195432704501',6871),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBC7qmW5DxLRRWgF9g1rm-m6lr-GYgCahF2w85k5kZZcC_SejUy64A5ZgNFxQohpBrRoMVdN6gO8myny6KQ8w46AigJM','I stopped in today because my primary could not see me. There was no wait and I was looked at right away. Everybody was professional.','2019-11-22 22:56:27.533000','2019-11-22 22:56:27.533000',5,'mike white','https://lh3.googleusercontent.com/--VO3qjsfiQQ/AAAAAAAAAAI/AAAAAAAAAAA/YoyoKdWu9Gk/c-rp-mo-br100/photo.jpg','2694018788013845459',6008),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBE9RiC8tYHl-Bh8SXUa-HvSJD4uZXGpUw0fw0VTHZ6sIC_crIZTA4hCPExIs-PRUaEOSPIzvwu7_EWWloBQyomEybC4','Wait was very brief. All staff were courteous and professional. Sarah & Daniel took care of me and we’re prompt, explained everything and were very thorough.','2019-11-12 03:18:21.896000','2019-11-12 03:18:21.896000',5,'Lynn Decuir','https://lh4.googleusercontent.com/-abDyLsqqh4s/AAAAAAAAAAI/AAAAAAAAAAA/86kb_qhZZuY/c-rp-mo-br100/photo.jpg','17898197009688164559',5441),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBecbmikd81yYC_IO3NyZiY8Q7g59C4KM74JbfY8ikTEKPfpepvLvzCU854lUTMGrPxXXV6G1X8c8j3ui2fYVqXr0oaQ','I had to take my son in the other day and I have to say for a very scary experience. The whole staff was amazing and made us feel very welcomed and helped explain everything that was going on. I have to give a special shout out to Jessica S. and Trini who went above and beyond with helping us and explaining what was going on step by step. I would highly recommend anyone to go here.','2020-02-13 19:08:41.754000','2020-02-13 19:08:41.754000',5,'Misty Fraley','https://lh3.googleusercontent.com/-MA8MH7qFbFY/AAAAAAAAAAI/AAAAAAAAAAA/A_CjBH2d18w/c-rp-mo-br100/photo.jpg','6521947413723274945',14582),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FbFMPNGjibrriHJ39L-__j_DI7OmCWBqyp--MYZHudqUFhVfgDwT6BKQbrb-cOagmH7Zp9SCHOQ7d2S81e28v-45tMFQ','Great service during a difficult time for family. Thank you Dr Lingan, Christina, Tina, Shaunda akd Christine for you service. Within 30 min I left served in ways that I had not been served at other healthcare facilities.','2020-03-06 17:55:53.885000','2020-03-06 17:55:53.885000',5,'Joel Guerra','https://lh4.googleusercontent.com/-loE1v2DIWQA/AAAAAAAAAAI/AAAAAAAAAAA/aeiVabk4gfw/c-rp-mo-br100/photo.jpg','16891069708558046635',13912),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBHKuP0K2do3t5yCY86mgFrp20rIJBbLjYsWr7EsmB4_nzPPd9q_-lXgZmhz-LbvJw6bW2FzjXsT949hl6idboW__Upk','Fast check in process! Kim P was so welcoming and nice. Definitely recommend!','2020-01-25 02:20:16.537000','2020-01-25 02:20:16.537000',5,'Cecilia Zelaya','https://lh3.googleusercontent.com/-GIAbGSOf5Iw/AAAAAAAAAAI/AAAAAAAAAAA/1ICPSsCyDu0/c-rp-mo-br100/photo.jpg','14567670160750071148',10128),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fbkhqw3jv0O-fyuS612XWBb6TLKMI7MQWktpJ0uGYQH6E5iKj-n22GOkGiMvIwLMXsNoey69ztpwq6oyD86RY5W6IY2Q',NULL,'2019-01-09 22:39:21.706000','2019-01-09 22:39:21.706000',5,'Mike Wetmore','https://lh5.googleusercontent.com/-a9oViHbMDrc/AAAAAAAAAAI/AAAAAAAAAAA/wkpt6z2GCI4/c-rp-mo-br100/photo.jpg','3272657195432704501',7062),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FbKpuf8umNViXs8zHA7r97PvOY-iYFZ_FUGPsC38Bxf6HItEeCDdduIrG0lP28-8EYpDdlN2ENeEnyzmBxrAdNyeDE0A','Clean, Professional, FAST, proficient! The only hospital in Killeen that i will use.','2019-10-28 21:51:07.402000','2019-10-28 21:51:07.402000',5,'Jakeshia Sweeting','https://lh5.googleusercontent.com/-3r45R8W-RmE/AAAAAAAAAAI/AAAAAAAAAAA/ichYIfoAHz8/c-rp-mo-br100/photo.jpg','2694018788013845459',6029),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FbPc_nLgj6ACEAceLuGaQzMFTO2is5bx4BKJXedtoh5V3UzaIqMywlsG4rvr1fCFfoQ2-K09Zpoiik7I1lCMG_KXiLwo','They are always fast and attentive, Great Job guys.','2018-12-31 18:13:50.962000','2018-12-31 18:13:50.962000',5,'Donna Lee','https://lh5.googleusercontent.com/-ET9mMeTYQgs/AAAAAAAAAAI/AAAAAAAAAAA/_JYZ-N5jzUY/c-rp-mo-br100/photo.jpg','3272657195432704501',7075),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBpPqa5ahx2UztX6_j5vD-rCfQCcVJvO1Q1uPm0eSJi6rZC_UYGz6RMRRlQ85Lv_ukHlHBD19eqXRwmP2OAQ8Pc-_h2Q','We were in and out in less than an hour with my son who needed stitches/glue for his chin. He was super scared and nervous but the staff was patient and so nurturing. Everyone was helpful and friendly. We will definitely go back if we ever have a need to go again. Highly recommended.','2019-08-04 23:11:21.487000','2019-08-04 23:11:21.487000',5,'Allison Strickland','https://lh6.googleusercontent.com/-dJx__PCPGSg/AAAAAAAAAAI/AAAAAAAAAAA/8napPZUC5us/c-rp-mo-br100/photo.jpg','13486358490203335051',868),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FbsgjEvFI9q8HrU_rDkPYWtwTjJlyFic3qw1OApFjtTEn_OJ2w1hN3LtEMKB0qqqlr1uoO94mEki7D1yYtD4ohWiXGIY','The ladies Yeovil and Amy was very nice and they explained every step on the visit...','2020-08-15 14:25:24.149000','2020-08-15 14:25:24.149000',5,'mary Contreras','https://lh4.googleusercontent.com/-cjmiXhQoMqw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclqQntJPO1rBbvnLCLMnfJ72Vq-UQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FbSU13c0f4WJdfW_yOdza9v2-Piw2MaTPQGzfbnEpPhEg-vb0i_IJqrof7FbkyxLEc6Feu2casFIRsjk14Vr7NTtz-SM',NULL,'2020-07-26 20:07:17.960000','2020-07-26 20:07:17.960000',5,'Rocky Butcher','https://lh5.googleusercontent.com/-xNgAF4D-8Xg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclC5aQDtgRRkz_s9nTKRkehorIbGA/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22204),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBuLmZDM0hZXaOgIdd_i3UWaSIA9EvnfQoxOXJyx-n2J1idB67F8OcGS21Y1quhhiJjxe0hWpWNX8WvFvsFA88fxW-mA','Dr. Souman is a very compassionate doctor and he made my 8 year old daughter feel comfortable while she got taken care of. Churiah, his assistant was also very sweet and helpful and treated my daughter with great care! Even the tech was great! I highly recommend this facility!','2019-01-16 02:15:12.091000','2019-01-16 02:15:12.091000',5,'Magdaline Puentes','https://lh3.googleusercontent.com/-hhye_yevH8Q/AAAAAAAAAAI/AAAAAAAAAAA/AjjOi18Wgu0/c-rp-mo-br100/photo.jpg','3511292162159714121',7474),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBwS2vReKi6W8ogWiRwo8-y7oSxsesQ8StTxbyIw_Y2LDyk841jpkH430JudWWUdyHcONO3GBS0x4I_-WtMk-a88xQb0','Fast, clean, friendly, and knowledgeable staff. Lucas was very kind and caring. The ER doctor had a great bedside manner. Will definitely be back!','2020-02-03 17:41:25.703000','2020-02-03 17:41:25.703000',5,'bennie de witt','https://lh5.googleusercontent.com/-Mr3lJJ53t3A/AAAAAAAAAAI/AAAAAAAAAAA/Q_CxYjKcFt4/c-rp-mo-br100/photo.jpg','3272657195432704501',14372),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBya16lIdWh4gxRUJxrqynUbX15ursbu5k22ABYDkpUInInMCyxgikAiNS9BhLPCpB66zMYnacE6SsNE_MAaY9RyI_BM','Excellent quick service with a super friendly and professional staff expecially Shaleah! Thank you all!','2017-05-19 22:32:15.736000','2017-05-19 22:32:15.736000',5,'Joshua Marks','https://lh6.googleusercontent.com/-mh5KJd-5xK8/AAAAAAAAAAI/AAAAAAAAAAA/8kk0R06qnrM/c-rp-mo-br100/photo.jpg','14567670160750071148',1822),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FBz8lXddpYZuuctTf--BFCQRrMhndfdAUdz6HwnjWaMASRXr0v8fYEFASQCthlLH8jdOPX4v0bAj8wfjw4VlDLPskH2M','Best ER experience! The facility is modern and stocked with snacks and drinks, the rooms are large and private, the front staff were very nice and accommodating, and Doc and nurses couldn\'t have made me feel more cared for - I didn\'t feel like I was being shuffled through a system and out the door! The whole experience was great and I wasn\'t made to wait! They even called to see how I was doing the next day! Highly recommended.','2017-05-22 18:15:58.934000','2017-05-22 18:15:58.934000',5,'Stacy Ramirez','https://lh5.googleusercontent.com/-BJIb84W0Vzw/AAAAAAAAAAI/AAAAAAAAAAA/3ghS3D7UQok/c-rp-mo-br100/photo.jpg','8918455867446117794',9399),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fc-340lp39gqBaEaZGzItstRL5o_XdgbXzy0GhO7Y5BQT_vmWLvIcOUUWVSl8zlbUuBhL8Nj9BChYQ1JDRljJzjlxTPg','I paid $100 for a false negative then had to go to Methodist. be in ICU for 9 days and extensive hospital bills now. I got to this location 6/17/20 coughing with 104 fever and they refused to help me 🥺🥺. I came the following day at 6 am to make an appointment and came back at 7:00pm for my appt at 7:30. They had me wait outside in a long line while I was nauseous, coughing, choking, 104 fever and not myself. What is the point in appointments? The staff is beyond nice and made me feel like I was important but I didn’t leave there until 1am!!!!! I drove from Katy to RiverOaks thinking I’d get quality service.','2020-08-13 17:15:05.740000','2020-08-13 17:15:05.740000',1,'Jesus Espinoza','https://lh5.googleusercontent.com/-EFrj6X_xxyY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckmF1jg7tamGBmwsF7Ronjr8nB5hw/c0x00000000-cc-rp/photo.jpg','3511292162159714121',23074),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FC1z0PFZvyLi8SfC1_0cuP9iFGYGiqK5n9CNCbCM8WeqNtDzo1BbGIWip2k2tRRwlK_ONcx5weUuaN0ZL3Y5ihNhKjBY','Lisa and Chris were great. These guys are hard workers and know my whole family by name. They are the one of reasons why we continue to come here!!!','2020-06-12 16:52:26.739000','2020-06-12 16:52:26.739000',5,'Alonzo Campos','https://lh3.googleusercontent.com/-2gJd0FZFvlk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmCRDyL2t0FuEPie5CDa1HXvcT5Ng/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22055),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FC2GrWByzyz1j-sgSxRXLUjSWfQWDslKtFX2rYov3-wjG5h7jQF9fjB3HyqPjJ8qQzKDuuBMpwKM8unKsPrjNoP98UMs','(Translated by Google) Thank you for all your attention Angel and Dr Pham, and Tanishia. Thank you.\n\n(Original)\nGracias por toda su atención Ángel and Dr Pham, and Tanishia. Gracias.','2020-03-04 06:39:14.055000','2020-03-04 06:39:14.055000',5,'jose buendia','https://lh3.googleusercontent.com/-NADiQhhflho/AAAAAAAAAAI/AAAAAAAAAAA/AEGMNltxmKE/c-rp-mo-br100/photo.jpg','17898197009688164559',22701),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fc39WjsJDx87BnfOmIIfgoCbXfoRwxhcqZamGiD5Tgof_nv2pHLsxxgBECVOwKkaDKXNOlq7SGKPMV9Ia3yOwiV69c7s','The service provided was very good, they were very helpful and polite. Dr. Henderson, Alvean, and Patricia helped me! Really recommend this place!','2020-02-08 20:54:29.199000','2020-02-08 20:54:29.199000',5,'Elsa Piña','https://lh5.googleusercontent.com/-EgakBo5E3n8/AAAAAAAAAAI/AAAAAAAAAAA/C9CQtJ91hj0/c-rp-mo-br100/photo.jpg','16389487648212004696',22607),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FC3wMXmWJpV5_ljtye6AKPgy7ylDQDTNCPPyEarK2A9uSYpLosqhCjPxeDYn6yRQOOQi-kJ27ft04hcueMRE9N1r6jKc','Great care, very attentive staff, frequent checks to see if I was in any pain or needed blankets etc. and best of all NO WAIT TIME to be seen by the doctor! I would definitely recommend SignatureCare for your emergency care needs!','2017-12-25 18:00:23.786000','2017-12-25 18:00:23.786000',5,'Luke','https://lh6.googleusercontent.com/-WE3WDATuhLw/AAAAAAAAAAI/AAAAAAAAAAA/mukQXD8pf-Q/c-rp-mo-br100/photo.jpg','3511292162159714121',7747),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fc4NAgSNSJLnw_A4J7vZZWqYuA2Qg7njHng41bYmIagN0tAmS_aFPaaL4hJ-8uqzWhrHdqagJ66kh9zkuNQlIL_cmygw','I recommend Signature Care Emergency Center. Great Customer service, Staff and Doctor. \nWe only waited 5 minutes in the waiting room then put in a room and the Doctor came in within minutes.','2020-01-06 12:21:20.774000','2020-01-06 12:21:20.774000',5,'Anna Soto','https://lh3.googleusercontent.com/-dlttlWuiuAs/AAAAAAAAAAI/AAAAAAAAAAA/QFHpX3b1I6Y/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',22485),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FC5RrQ7IqpRs_HSqU2-npNfG3g7zZL7JPBzZCP9bHZtUYKqfPvaBF1lnZRIWbb8gIqzHMVBV0PzucEZrWIiaD1ZpXoqc','Thank you Jennifer RN, Dr Ashbrooks, and Kelly with registration for taking care of us today. I highly recommend Signature Care to anyone! We were greeted at the door with smiling faces. The visit wasn’t long, we were in and out. Great care! Great place! Great staff! Thanks again:)','2019-07-25 23:01:16.192000','2019-07-25 23:01:16.192000',5,'Kayla Townsend','https://lh4.googleusercontent.com/-NVuLiFjF26M/AAAAAAAAAAI/AAAAAAAAAAA/aErz9uGiPGM/c-rp-mo-br100/photo.jpg','3272657195432704501',6925),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FcbyYZC8HxRxKkoA6ZKPh3GtNXCX0HkvNG64PMN9aJU1_QFZUjEHzvNFs_V8uorpMwZuwLq0xopORbYzWcnnrrvwmju4','Kim, Corey, and Andrew were awesome !!! Thank you!!1','2019-05-02 01:34:38.534000','2019-05-02 01:34:38.534000',5,'Katelin Payne','https://lh5.googleusercontent.com/-ehK0SZnYMQI/AAAAAAAAAAI/AAAAAAAAAAA/WpaXPLe88II/c-rp-mo-br100/photo.jpg','13486358490203335051',1024),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FcDMdohdob2VHQsuMu5OaN7UR-6jB5esoWgcxnBO7TZBQUhts_G8Q9sLbejILbu0X8AlDs6Lxjq9p0u9Y-OYyGBfVI24','SignatureCare is a pleasant contrast to other ER or urgent care facilities we’ve experienced in the past. They are caring, attentive, and really make it as comfortable of an experience as possible. Dr. Miller is fantastic, as well as RNs Sherri, Meredith, Barbara, and other staff members Radiology tech Bryan, Ricardo, and receptionist Jasmine. Thank you for taking such good care of my husband!','2018-09-22 03:49:09.439000','2018-09-22 03:49:09.439000',5,'Jennifer Mez','https://lh5.googleusercontent.com/-KBhBHXNFkX4/AAAAAAAAAAI/AAAAAAAAAAA/CwW7UaOryak/c-rp-mo-br100/photo.jpg','14567670160750071148',1496),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FcFKkA1PXgUWh50JLYNNvSC5b9RG1Tp1PDVMo9kbJ2TUdHRaSdOcgFjergSfpQ4yweKT3vkjSMbnv8YRIevMwgrlmLlE','This was my first time at Signature Care Emergency... my first impression was positive due the the clean environment. Once I met the staff, my first impression was proven to be spot on and confirmed. Every Team member was focused on a positive patient experience and quality of care. They were focused on my wellbeing, they listened to my concerns, kept me informed by communicating throughout the process. \nNo long wait times to be seen by the Physician\n\nI would highly recommend Signature Care Emergency!!!!','2019-06-11 15:12:21.468000','2019-06-11 15:12:21.468000',5,'BlackIceMusic & Film','https://lh3.googleusercontent.com/-Omg_mPf7rR4/AAAAAAAAAAI/AAAAAAAAAAA/EJxNtbGAoHE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FcGM6x6ncOZt5zDdluO0q5sqCBQ5VuY7EVn40lgO8bkcwLXkstTMMqcgHZkuUBNjPwGMMgnKR7_cfAZ8DamewLgHxgEo','Very helpful','2019-06-04 14:53:48.154000','2019-06-04 14:53:48.154000',5,'Alan Lopez','https://lh6.googleusercontent.com/-4x8CkRscbn8/AAAAAAAAAAI/AAAAAAAAAAA/BzoGMlsDlMU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FcHlGokoCAvu9O5zXnjy3FiM0L8mti8WSPKmuN6NxoNz67QX5PlW-212S4cn-RQkF26vJdle-J-ytGyG7tRb82TFAjJI','Dr.Omalley\nAlvean \nClarissa \n Fast service and amazing nurses and doctors.','2020-08-15 21:11:36.748000','2020-08-15 21:11:36.748000',5,'Lauren Cavazos','https://lh3.googleusercontent.com/a-/AOh14GjTayUgXBtH57u2uDUiXF6NMQUfqwLdvk4P-iqL7Q=c0x00000000-cc-rp','16389487648212004696',23045),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FCmv3J2tbW7FOmpDjaJeB6p9VtSaauGbADPshDLkiX1W62xGUReAZuYHGbnClIk62VOUaa3a9EETFKOIh2eyzTZxSgyg',NULL,'2019-01-29 22:47:03.036000','2019-01-29 22:47:03.036000',5,'rejina williams','https://lh6.googleusercontent.com/-UsivbzByb6Q/AAAAAAAAAAI/AAAAAAAAAAA/g9h0emnxaBY/c-rp-mo-br100/photo.jpg','3272657195432704501',7036),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FcqLz_kL_1JEr6YOgqTJyrvELuTJsTVBL3UxyQonpZ-6ppDV3S8VyfJWyhoGRZ4g-wUxX6uwbbK1DwtIYHfuQalGOPnA','Excellent care from Dr. Daniels, Breanna, Irving, and Holly!! I was really appreciative of the way they took care of me!!','2019-11-17 07:36:32.946000','2019-11-17 07:36:32.946000',5,'Courtney Gunter','https://lh4.googleusercontent.com/-cFS3jbR0xMI/AAAAAAAAAAI/AAAAAAAAAAA/Jtwxdls2CMI/c-rp-mo-br100/photo.jpg','12541597562633926366',381),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FCR94diHwUVwZNUg0pfpIEuGFt-PTJaoTxv-tWGBd0Ny8X1T5VvTwXXIwYTWIG8EtpSpBQvJ1idzlCRP36lkSrN1dV2c','I was attended very promptly for my allergic reaction and taken good care of. cant complain at all! very neat and spacious location.','2017-05-09 16:16:47.995000','2017-05-09 16:16:47.995000',5,'ISHAN RAO','https://lh5.googleusercontent.com/-tXCCRrbStEI/AAAAAAAAAAI/AAAAAAAAAAA/iQS2NhbKAbY/c-rp-mo-br100/photo.jpg','17394740196501090048',5061),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FCWzX1dny2HaIwWLBrG-fXm4lzdmqT5qtiEwBqzJqKGFdhUL7j63nh-FDyrdAuI60MD61Zxm4Ny0D01d1HOf2Cm8N9vs',NULL,'2019-06-11 14:36:41.782000','2019-06-11 14:36:41.782000',5,'Don C','https://lh3.googleusercontent.com/-RtJ125syo8E/AAAAAAAAAAI/AAAAAAAAAAA/CeXCnRPkhjw/c-rp-mo-br100/photo.jpg','13486358490203335051',974),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fcxw1f9bHOouY-Cl5hMxe4kOkczb9JocfWZFbBTKSI8a4eTyMApPHCUEJzVQFCuQwXHBuC2qM9qsxllH6trIS-JpvE64','I appreciate that they treat you good. My nurse was Kristina and she was really good I appreciate all that she did. Registration was Maya realized I was in a lot of pain and made my registration go so smooth let\'s not even talk about Dr Faig he was perfect he explain everything down to a T where I could understand it','2020-02-22 18:01:03.845000','2020-02-22 18:01:03.845000',5,'Janet Patterson','https://lh4.googleusercontent.com/-nSRIoCtdxQo/AAAAAAAAAAI/AAAAAAAAAAA/HUbAA7LPo2A/c-rp-mo-br100/photo.jpg','12541597562633926366',13355),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FcyE35x9azdlUZ0EvCLUaWzoTuwkQSkbcWi9t7qSjBK1AenBvfrHiXsA11CopKLdUPu0dp7-APgXBHWCE6d2n9dvX-EE','This place helped me feel good after i got hurt. They are close to the house and gave me fast help. Thank you to Melissa E, Jose P, Jennifer T, David B, Sean H, and Dr O\'Malley!','2020-01-28 02:06:21.428000','2020-01-28 02:06:21.428000',5,'Bram Duffee','https://lh5.googleusercontent.com/--aQt05g3Ht8/AAAAAAAAAAI/AAAAAAAAAAA/Q-F3O-R7DOc/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',10165),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fd2bSQw1hwL0fauA-_0RhCqL90raYow3BocC35NcBMan0mldNS1K-Cqm_e3M7BY-8yXJj0blTAPrrBDUDmj4A2efdM9s','Maria greeted us with a warm welcome. The check in process was efficient. Savanna, David, Erin and Jose were great. Dr. Huerta was professional and kind!','2019-05-31 19:15:58.593000','2019-05-31 19:15:58.593000',5,'Lynn Huerta','https://lh4.googleusercontent.com/-PsuIWTr9RyM/AAAAAAAAAAI/AAAAAAAAAAA/anvehyFyAYk/c-rp-mo-br100/photo.jpg','13486358490203335051',993),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FD9NwX6ikXSfT6gC4aa-qZoy8YgA2-yHDcAmkkLMwTQ7tPwQBd6_dp6SaC2QoqxTeEMLN3aKDp8zzZbmiCiXkKmrh2ks','Great service!','2020-03-17 19:27:04.899000','2020-03-17 19:27:04.899000',5,'Veronica Ramirez','https://lh5.googleusercontent.com/-uoDx30dm3XY/AAAAAAAAAAI/AAAAAAAAAAA/nEfwVTSYPvg/c-rp-mo-br100/photo.jpg','16389487648212004696',21009),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdAlPF3AeX4Lne8RifXtDOLRb-3ZdkfhhgB8g_lUUkK5WWvh5aVHn4n4b1fwZHWp9Sq28YU68N2Md2Et-AeuqyTvRREM',NULL,'2019-05-07 19:23:39.257000','2019-05-07 19:23:39.257000',5,'dianellys frias','https://lh6.googleusercontent.com/-25XWGU-E4Xk/AAAAAAAAAAI/AAAAAAAAAAA/dl5WznhYuYk/c-rp-mo-br100/photo.jpg','13486358490203335051',1014),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdBagM8n7p23u5m0lqyMfXXdu7a-oqEqn_PJ5d-PiB2IetdtoqPzaTIn7mZmP8R1d92nd1d_22tEx9ELvRhpbVLfIha8',NULL,'2018-02-12 15:34:16.651000','2018-02-12 15:34:16.651000',5,'Amanda Curry','https://lh6.googleusercontent.com/-b5vyPnyYCVE/AAAAAAAAAAI/AAAAAAAAAAA/ELH1cJPM_tM/c-rp-mo-br100/photo.jpg','17394740196501090048',4883),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FDBVcKkOs3c508nuChZL5jDB4aMOIjv7d4u8h0MQiAk7aDcCx2hNPl8YFMtLLl4wmLnS_MU02KYx90YWJZyOChXP1wak','Staff was awesome. If I need ER care again, this is my go-to! Thanks Amy, JD, Dr. Hasan, Dr. Leung and Nicole\n-Ronnie M.','2020-08-05 15:38:21.907000','2020-08-05 15:38:21.907000',5,'Ronnie mullins','https://lh5.googleusercontent.com/-LC4YNdyFfzQ/AAAAAAAAAAI/AAAAAAAAAAA/kDvi44tGfW0/c-rp-mo-br100/photo.jpg','2077061009497551125',22729),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FDBXwTGNbysJ14NxwnT2Y1wiqKZ9OGUGhLBq3ddfGvn_M5ALr0POn80mU5PU_4QVeg6acScPoFKtwKCjApHSXiEVcxeA','Deanna was an amazing person to talk to even in the late night hours!','2019-08-29 03:07:02.282000','2019-08-29 03:07:02.282000',5,'Daniel Cavazos','https://lh4.googleusercontent.com/-iOMAIr2UhIw/AAAAAAAAAAI/AAAAAAAAAAA/DxiS3eQQckQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2970),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FDEW4Ksrr6IqG78Yf89bgFD2g0grUSTsvXUpWE6-OoXQ_3UToQ1JaGy_LPTAQdSbyEKhA_6V7Wfl7FR-JS1IJsZCm4kM','Had a knowledgeable nurse on staff and awesome doctor. Dr Akunyili and his staff melissa colton, guna churiah and keaire made us feel welome.','2018-08-15 21:06:22.630000','2018-08-15 21:06:22.630000',5,'Benita Jones','https://lh3.googleusercontent.com/-mGFIONcXfUc/AAAAAAAAAAI/AAAAAAAAAAA/EXXspdBCq9M/c-rp-mo-br100/photo.jpg','3511292162159714121',7617),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdJTylgPFMGX2oficMJtP_heuN_VR-BiE1ElPtN7yPZHGkHahDiU6RVOBv4XRgLiK5v2j30MBN_Nr5qrRDKZP8Ie5DX8','Overall great experience. I was nervous due to the pain I had but the receptionist Amy, nurses (Regina & Natalie ) & Dr Henderson was really helpful & informative.','2020-01-18 22:03:32.585000','2020-01-18 22:03:32.585000',5,'Dejanae Eleby','https://lh6.googleusercontent.com/-prS02vBpUrE/AAAAAAAAAAI/AAAAAAAAAAA/B_f0QOsHzEg/c-rp-mo-br100/photo.jpg','14567670160750071148',10032),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdlesmIexgj37pA53DNhLG8adPleZQWSiRRi-h2UvE7GFsGeumUgjag5MJM27jjGYdZhq85hiCphlYmFHjteg6exfEOE','Took my husband in for severe abdomina pain. Must say from checking in to checking out the service was excellent. The nurse he was fast with meds and tech was excellent. Dr Dang explain everything very. I highly recommend this urgent center. Took us no more than 3 hours.','2019-12-26 16:51:03.655000','2019-12-26 16:51:03.655000',5,'Angie R','https://lh5.googleusercontent.com/-rgdXq_xR8EM/AAAAAAAAAAI/AAAAAAAAAAA/_Vr9RmkZEWk/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1160),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdlQY3D-z6jFdMgwnjmMNrWMxzbURqNmCL7uOk6uw4udywvb0vZNpF2rB6E9zF8lT4TYdDfKRX2uHpnpJZAAbYoD-I64','Always fast and professional. Doctors listen carefully to complaints and tests are done quickly!','2019-10-03 06:31:16.833000','2019-10-03 06:31:16.833000',5,'Rebecca Dildy','https://lh3.googleusercontent.com/-vaUKlkcXXNc/AAAAAAAAAAI/AAAAAAAAAAA/-o8so20pihQ/c-rp-mo-ba4-br100/photo.jpg','8918455867446117794',9066),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdlXRDaGR5VPP8rpv2RkVTIwH8I--F-cHbSnJHwHA0iaDu5LaAEn5kFjQNbV2jQJHECIDa4wArZ9zs5vx4hJ1yMR4T28','Really love this place!! My second time in and it was amazing! Thank you to Dr Smith and Amy you guys helped me even though I didn’t have the money to pay! Will be returning for any future treatment!','2019-03-09 06:00:54.617000','2019-03-09 06:00:54.617000',5,'Jayron Bpston','https://lh3.googleusercontent.com/-vvWn7rr-CRo/AAAAAAAAAAI/AAAAAAAAAAA/_Ab8oZtHitw/c-rp-mo-br100/photo.jpg','8918455867446117794',9164),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdMRNB9VREq_5WUf0dnZuS690y7ZHwNBeMj1FGQ8kodgDa-g5CBIUB12fH-iByYIUBpyFAx-qoU-efIDgGQdMmTc6F78','This place is absolutely amazing! I felt like I needed to be pinched to be reminded that this was a real life ER experience. Very clean facility, attentive staff, thorough medical attention and information were given by Gabriel and Dr. Lingan. I am really happy to know I have this place in my back pocket. I wish all ERs were like this. We are blessed to have this kind of care within a few miles of our home.','2020-02-13 09:33:16.237000','2020-02-13 09:33:16.237000',5,'Candice Escobedo','https://lh3.googleusercontent.com/-ILQ5ma9zu3I/AAAAAAAAAAI/AAAAAAAAAAA/nkm5VB-02_A/c-rp-mo-br100/photo.jpg','16891069708558046635',13951),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FDotdfxzeW_6rajYabpMMFKNU6Cd-3_UF35tqhSd3z2vuBVp1hy9ia1vuInGsM-ytanWG3vE6pZ2hLZZAuMYfkI9Yuak','Excellent place/excellent staff. Thanks to Lisa H., Maria s., Matt, Savannah, Kristina, Jamie, Dr. Huerta','2019-06-12 20:31:57.949000','2019-06-12 20:31:57.949000',5,'Willie Valencia','https://lh4.googleusercontent.com/-WdEMNunlS0Q/AAAAAAAAAAI/AAAAAAAAAAA/Ms0s2PflJVg/c-rp-mo-br100/photo.jpg','13486358490203335051',965),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdOtfngYnNvxlMr_qjCE5FRJPwwBVbd88TR6OpWsRFxUAyQfQyNBMEhy61hLOobzCg-_IxgHGmwHOB7y-m7-7lKe82vQ','The team did a great job... thanks team and Alvean Marcus Patricia 🥰','2020-02-06 14:11:34.320000','2020-02-06 14:11:34.320000',5,'Queen Season','https://lh3.googleusercontent.com/-MHrNM_T3Lwg/AAAAAAAAAAI/AAAAAAAAAAA/CyPUI3u5_Dw/c-rp-mo-br100/photo.jpg','16389487648212004696',22622),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FDp4EeVEsvE_ZJ7lmj06yqpZNxdrwtTOmA9OUglZeNFVjyzXgBN2uVK1F7XkEtOSDPjOtqiB_yiB6BrWQ0WFfPwHDgyY','After driving around town for an urgent center on Christmas Day, I am so glad we ended up here. They are very welcoming and made us feel so comfortable. Dr. Dendy & the nursing staff are amazing and informative. Although I hope to never visit a emergency center again but if I do I’ll be sure to come back here :) Thank you all for all of your hard work! Merry Christmas!','2019-12-25 15:03:12.169000','2019-12-25 15:03:12.169000',5,'Maiya Muhammad','https://lh6.googleusercontent.com/-g09SHA3w0n0/AAAAAAAAAAI/AAAAAAAAAAA/3XbMgYogOJM/c-rp-mo-br100/photo.jpg','16389487648212004696',2516),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdqVi-VgTbMjj80srhhsqXJd3iliXfj9-knKXm-FvQ9hQlLh8piPKXxfHvwwBSKCDWL7wJPTGeOeyD6plwy295p8iqRM','Dr. Yost, Lucas, Sherri and Kelly have been amazing. They took the time to explain and answer all my questions.....they didn’t rush through my treatment. They all made me feel like they truly cared.','2019-05-26 21:13:44.112000','2019-05-26 21:13:44.112000',5,'Kamille Davis','https://lh6.googleusercontent.com/-EiKMZDrrJSA/AAAAAAAAAAI/AAAAAAAAAAA/FtLWEAkHWSk/c-rp-mo-br100/photo.jpg','3272657195432704501',6958),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FdyWUiQVJsC8BVJjh8pnqyX-GEgouVjJ6YbtbA5XIAQhKXAPEK4suow0sfy0jQx8wP1UFp7mJjYanAhZWB_VtFexfQ8M','Dr. Chowdhury was very helpful as well as Adriana. The front desk is extremely sweet and they got me in quick! The place was very clean, I definitely recommend coming here.','2020-07-24 03:09:40.925000','2020-07-24 03:09:40.925000',5,'Ryan Current','https://lh4.googleusercontent.com/-sU8qndcjPLI/AAAAAAAAAAI/AAAAAAAAAAA/yhV4JD-3VKo/c-rp-mo-br100/photo.jpg','14748677429039074158',22569),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fe-cD2KtudnX3NLHZoptSuK7C2i57PNHW70VEog_30_SB5x2O9VDaOgpKTKYMPaxjoeoPSV3HZhKt6o2K_3ryi-ZpIvQ','Very Fast and no wait. The doctor explained everthing very good.','2016-12-31 15:55:55.580000','2016-12-31 15:55:55.580000',5,'Mauricio Medina','https://lh4.googleusercontent.com/-IW3vh5_ucRI/AAAAAAAAAAI/AAAAAAAAAAA/hPhLYLRZQso/c-rp-mo-br100/photo.jpg','17394740196501090048',5142),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FE0qwFZU1skr2uQACsaMV1pjxZZY_O9KnJe64M6PscxMVZs-ZouP7UQBXSUfFTUiXLrpZWStxwLiVdyyxHGMlXopzj5Y','This is the best Emergency Center ever I mean the best. Now I came in not feeling so well but from the front desk to taking you to the back this team has all there focus is on you and your care and making sure you feel comfortable through out your whole visit. I thank God for putting me in this emergency center and using the doctor and the nurses to help me. God bless each one that works there. I came out of there feeling much better and by the next day all my symptoms had gone away.','2019-12-30 17:54:36.223000','2019-12-30 17:54:36.223000',5,'Sarita samaniego','https://lh5.googleusercontent.com/-8t9ckiXjCoA/AAAAAAAAAAI/AAAAAAAAAAA/k8g0VF8e0SE/c-rp-mo-br100/photo.jpg','14904078213800803294',13645),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FE2h9fXZxO8t5qb8opJRAkw9PRR1SrV0J-jabIgYdFLZlr8BH9kB6etdejnD1UOWWyEuCH3eH5OVc8phlByx-NZcAsEw','The care at this location is excellent. It is my third visit and I have always been satisfied with my treatment and client service..','2019-02-12 20:08:09.913000','2019-02-12 20:08:09.913000',5,'jennifer hovas','https://lh4.googleusercontent.com/-2GKKtUwZyyo/AAAAAAAAAAI/AAAAAAAAAAA/YIuqIooGPiQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7407),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FE3MMV8dAJvknEjQ-akC3oSr7O62BOfEUd6wDA5OqnG3QW_Zlvrvf5oLtktJu1IKtNSeRcYUT8epK30idhcyaLD2niPE','Great service! Efficient and professional! Anthony, Natalie, Naomi, Laura, and Dr. Anders were fantastic!','2019-03-23 19:10:24.064000','2019-03-23 19:10:24.064000',5,'Avry Howell','https://lh4.googleusercontent.com/-hqForzRYiy8/AAAAAAAAAAI/AAAAAAAAAAA/iHphAieJDLk/c-rp-mo-br100/photo.jpg','16590124370714063921',3489),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FE5fmEFCMuNV9178KXGYLeAweuMND2ovJLAqTucR32_x9-SWpVdqqwptZskA-OGj7UbbosV5z-7pfdRnE5ti4IM8JAEA','Everyone was super friendly and nice. We received great care. Would definitely recommend! Nurse Kim and Dr. Appiah were great and reception was very quick.','2019-07-31 05:48:37.531000','2019-07-31 05:48:37.531000',5,'Krystle Vodron','https://lh6.googleusercontent.com/-5CgD89C-ta4/AAAAAAAAAAI/AAAAAAAAAAA/x4FYm3xlTL8/c-rp-mo-br100/photo.jpg','13486358490203335051',875),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FEBOhH40a5jgXnE10uZgM4HpdOM5d_txzccXalGXFmLLXdRz24zoqN-k7y1I_Re-OzaWzRpLUpfGHO9VErylMML99v8M','Greeted as soon as we walked in, everyone was very inviting and had a smile on their face. The whole staff rocks at this location and we really didn\'t experience any downtime. GREAT JOB!!!!!','2019-11-18 12:49:53.567000','2019-11-18 12:49:53.567000',5,'Tim Anderson','https://lh3.googleusercontent.com/-hkSzx6g1mN0/AAAAAAAAAAI/AAAAAAAAAAA/rVOU8E3h544/c-rp-mo-br100/photo.jpg','8626688543755174284',14657),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FeCWQj8w4UcOcJCjRNyjWqkl3iYrEnSmXN4ZvAuY0t13qcMPoo-e8mUnKhPlrSfCL6TvuW7FFjAXHhPYaUNo9HwNra4I','Was here with a friend! Staff is very friendly!','2019-04-04 14:06:09.836000','2019-04-04 14:06:09.836000',4,'Kendall Johnston','https://lh5.googleusercontent.com/-zlWsu6YLdsg/AAAAAAAAAAI/AAAAAAAAAAA/fx1VOxdWoG4/c-rp-mo-br100/photo.jpg','2694018788013845459',6173),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FedQqyPAY4nHbsmjFXCFpD2swkkoV2XtL6btVoqAFcA2aakMpMRy3are3XiU185s4jVktkm9r-CTbnfAVaSktfNi0QJ4','Very nice and warm environment. Sibienne was very nice and courteous when checking me in. My nurses were awesome as well as Dauwal, my radiology tech. Dr. Zheng explained everything I needed to know in detail. Definitely recommend!!!!!','2020-02-01 04:33:58.415000','2020-02-01 04:33:58.415000',5,'Katrena Drumming','https://lh4.googleusercontent.com/-IYyDXZ3NMkA/AAAAAAAAAAI/AAAAAAAAAAA/eb70h2T12QA/c-rp-mo-br100/photo.jpg','8918455867446117794',14857),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FEei4Ds2guy2CZWMJ2T2HX0awUUONOGwc0jZZNJ69Lx0-Y8nkag9S4coIjVyPoC2otgr099PfsU5U4CE-aZhOoGuDxWs','The whole staff was awesome and fast starting with registration with Ana, Irving, sherwin, shaylene and Dr Daniels','2019-10-31 04:24:31.617000','2019-10-31 04:24:31.617000',5,'Edward Phillips','https://lh4.googleusercontent.com/-nrpLy23frxg/AAAAAAAAAAI/AAAAAAAAAAA/gWjhuUegxbc/c-rp-mo-br100/photo.jpg','12541597562633926366',389),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FeizYVNGjIJBTW7a227cEEzNMwpSZj0ByhVRWNUk_TBTQbx7YjztNR-csKW7mL7n1qcZfiUcD88BJ8W1KGwclh-4xrjI',NULL,'2019-12-29 05:28:55.672000','2019-12-29 05:28:55.672000',5,'Panama Rose','https://lh5.googleusercontent.com/-ntAT_GITC4o/AAAAAAAAAAI/AAAAAAAAAAA/tg3u5e3OH_s/c-rp-mo-br100/photo.jpg','17394740196501090048',14062),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FEMW0WvtuLm-x_WGvfIUR2TVAhlON8IdMe3HViKBMGiCdusGo8uaqGRtpMurOPi2LAKs-07kE1NEHPY82WYuHrqxEqZ4','(Translated by Google) Alvean, Marcus, Thuy An, Jocelyn very friendly.\n\n(Original)\nAlvean, Marcus, Thuy An, Jocelyn muy amabables.','2020-02-12 17:12:28.653000','2020-02-12 17:12:28.653000',5,'Daniel Narvaez','https://lh6.googleusercontent.com/-fs5tQvST_oM/AAAAAAAAAAI/AAAAAAAAAAA/NTyQJYKkUxA/c-rp-mo-br100/photo.jpg','16389487648212004696',22589),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FenbE4EW2FEGc7GKiw-RKgDdDj0Gres_boIcp-2VIfussZMVkmUEz66jnv-6f8iJadz1DHOfm8pE8feOM3WyKGms8Uyk','Cut my bare foot on a dock nailhead and realized I needed a current tetanus vaccination. Having received mailers advertising their community events, facilities, and services; this center stood out. The staff was very accomodating and professional. After Kimberly conscientiously addressed my insurance questions, Sam and Bryan D. promptly had me in a comfortable exam room. Niki G. and Dr. Yusuf looked at my wound, gave me the vaccine, discussed care to avoid complications, and sent me on my way with an RX for antibiotics. I was in and out in less than an hour!','2020-01-15 15:02:22.932000','2020-01-15 15:02:22.932000',5,'Tina Burgos','https://lh5.googleusercontent.com/-dKVGkqOzH7s/AAAAAAAAAAI/AAAAAAAAAAA/H5hYoAeXCSU/c-rp-mo-br100/photo.jpg','14567670160750071148',9695),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FEODpowNCRdNRkZLPA9TpW_baxJhh6gEYwZu7bDaYoGl0Xg20JM8rX5cV8-Cig49PAC5F5LltE6LhESc_qttOuCfl6ic',NULL,'2020-07-24 18:42:54.047000','2020-07-24 18:42:54.047000',5,'Debi Mcnerny','https://lh3.googleusercontent.com/a-/AOh14Gh-lBECzVD_qTvyttCX5L1AXi6FZdAgXyej_W3w=c0x00000000-cc-rp','3511292162159714121',22152),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FEPKCgqgga5ao_rkxeJmIcFAtsJXayXS0Z1q-oHna3N81jKJrYuI02_nAfHbHhp0gm1J1XY3EH_WqMK2jg7ZnnDd0988','Brought my wife in for her infected big toe & this place was awesome! They were very helpful & informative. Dr. Appia was very professional. Plus they gave me a CapriSun for free!!! They are 5Stars all the way.','2019-10-16 05:02:04.399000','2019-10-16 05:02:04.399000',5,'Jose Garcia','https://lh5.googleusercontent.com/-_Q6_8usKr34/AAAAAAAAAAI/AAAAAAAAAAA/NaTyq7mmkW0/c-rp-mo-br100/photo.jpg','17898197009688164559',5502),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FeRNuvv7H68uhOjVutpRc8po4XU_HjDP98E3Zp0ayPdHs9Fe9DnKWVNBE6yEwiscHj8g5jYVnF9q0-80qrKqHDHUIihg','Everyone was so nice, I did not have an appt so being a walk-in they were able to squeeze me in! Nydia, Brenda, and Sam were all great helping me through my visit.','2020-07-26 18:46:42.352000','2020-07-26 18:46:42.352000',5,'Brittany Cool','https://lh6.googleusercontent.com/-b4jIN9Ry1NM/AAAAAAAAAAI/AAAAAAAAAAA/SZW6uguqV1o/c-rp-mo-br100/photo.jpg','2077061009497551125',22827),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FERrImZrEkDwk_TvvzPHhqx6EwxSNnQcaEexR8_CxqYdJNniyJGdz9PyjX6RRobsnA80Jclx2-Wvv8jbjtOFb2Oou1hU','Dr. Do, Keaire, Olivia, and Agnes, took great care of me. Thank you signature care','2019-07-04 07:36:21.903000','2019-07-03 23:30:06.110000',5,'Daniel Lawson','https://lh4.googleusercontent.com/-Wg6BFyvSr0U/AAAAAAAAAAI/AAAAAAAAAAA/I2CBRsfp2ik/c-rp-mo-br100/photo.jpg','3511292162159714121',7277),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FETaXriqxtul7x4f08cxN_4B9HhVChaWp54CGFa9SYWU2iww5RBDqXm7dMCia7i0UYbAir2c-N7wdwVgxh-6rYDTdU4Q','They took care of my eye, got the splinter out. Dr Boester is the man, great bed side manner. Front desk took care of me immediately and support staff made sure I was comfortable. Awesome facility and people.','2017-06-16 17:23:24.657000','2017-06-16 17:23:24.657000',5,'Ted M','https://lh4.googleusercontent.com/-ZkkTccb0qL4/AAAAAAAAAAI/AAAAAAAAAAA/rGPHnsPmJKk/c-rp-mo-br100/photo.jpg','14567670160750071148',1809),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FeuFNOAxE2DoLEDI52yhmeDF-0CCtnU_PkF2Tb0uF1pApTjhGzYBgL33dGUus0zZrGMkolkSIXo9hlWPRLYE5LcZsTw0','Amazing from A to Z. It is refreshing to see an organization pulling great customer service on top of great service. Do not hesitate to go to this location.','2018-06-16 18:58:58.562000','2018-06-16 18:58:58.562000',5,'Kyle Mani','https://lh5.googleusercontent.com/-TfCluTUzuK8/AAAAAAAAAAI/AAAAAAAAAAA/jWFWQXzkhTU/c-rp-mo-br100/photo.jpg','8679688254631342173',8898),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FewU0t-vVzO83xF9ckgiKAVgzHgVvhZMfjSfmlxbo5yMZZjHhQYnwgpbfyDDqlkVt7PKbTPdfmZcWFQttdEQeg5PQdA4','Great experience on New Years Day! Dr Rose was kind and knowledgeable. The entire staff was fast and friendly - kudos to Barbara and Tina - and the nurse Christina gave me a shot that was painless. I’ve brought my kids here before and will continue to do so for all of our Emergency Room visits. They can do everything a bigger, busier ER can do, with all the labs, meds, CT, etc... they just do it better!','2019-01-01 14:54:53.371000','2019-01-01 14:54:53.371000',5,'ctd','https://lh3.googleusercontent.com/-DQln9BNX6sM/AAAAAAAAAAI/AAAAAAAAAAA/fVRysvSOQ_I/c-rp-mo-br100/photo.jpg','16891069708558046635',4383),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FexBjd9vqJVoLQ3MxEyOqTzEXFvI5s8dnI38-1BuW2fHXDKBXAFtGUdxXe3QKtygmxQ1mQHT1v-q6z2JL1KXMIebwic0','Amazing Staff!!! Was quick and easy. I am very happy a friend recommended me here! \nDr. Ortiz, BrandonW and Samantha were amazing start to finish!','2020-01-31 13:20:37.454000','2020-01-31 13:20:37.454000',5,'Ashley Rodriguez','https://lh4.googleusercontent.com/-37BopnNMiaY/AAAAAAAAAAI/AAAAAAAAAAA/5sZdRWBqvQE/c-rp-mo-br100/photo.jpg','14567670160750071148',13573),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FF5is1iIotnY6fIsZpBN0kbvsjqMvJdl3eb8evcRpoGzo25WnY8yXdEtwWyZZFJDdN7mNDQwoeanWC-Cz_bIVR-qSJ1E','Great experience and was done fast and informative','2019-10-11 23:51:41.973000','2019-10-11 23:51:41.973000',5,'R Bushnell II','https://lh5.googleusercontent.com/-l8I6Kz7TuyE/AAAAAAAAAAI/AAAAAAAAAAA/9cCAxLqJpPA/c-rp-mo-br100/photo.jpg','16389487648212004696',2826),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ff8MyasFhF_4ZwRehxVlMpy-b6V3zvCNI9n00GWuiroxhlIGTLSw1j-qTeIKPdNNSH-iKV-LY0cVR7rop0lJcm09tNcc',NULL,'2017-10-17 00:41:55.104000','2017-10-17 00:41:55.104000',5,'DeErika Canady','https://lh6.googleusercontent.com/-BU68ZZLMts8/AAAAAAAAAAI/AAAAAAAAAAA/dTcOhEMwOoA/c-rp-mo-br100/photo.jpg','8918455867446117794',9345),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FfC2lECc7JLe2aCs4UlrFzVe09o-BqTDlFcXpTXM1UA_B_ELwn7XxzdfA_yLHT6S-QiRd7n30pW0rd1aNrx7y2aMdKw0','I came to signature care, cuz I had swallowed a diamond bur I was terrified by what could\'ve happened, I soon as I walked in there the Receptionist Patricia , greeted me with a smile, she took my info and rapidly took me to see the doctor she was very professional and she really look that she cares about any patients the hole staff was incredibly amazing I\'ll recommend my family and friends to come to this awesome ace..','2019-10-05 03:44:00.640000','2019-10-05 03:44:00.640000',5,'Raul Salgado','https://lh6.googleusercontent.com/-Lm_MbJIBmN4/AAAAAAAAAAI/AAAAAAAAAAA/nRdCtoAGylc/c-rp-mo-br100/photo.jpg','16389487648212004696',2852),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FfDonHBI7YBFO97RJfPp2fXYdBGpBJH4mjh5kJ9mqU2smcbSwjey51JEt4psUSGdRqFQanAx1afnAeAJz2AtaoOz74jw','I really enjoy the service here. I\'ve actually been here twice and highly recommend. From the time I check in, the entire staff is very courteous and helpful.','2020-02-04 16:43:31.799000','2020-02-04 16:43:31.799000',5,'Ezzie Martinez','https://lh3.googleusercontent.com/-22APIt6Kywg/AAAAAAAAAAI/AAAAAAAAAAA/UE4xvCyTnxI/c-rp-mo-br100/photo.jpg','3511292162159714121',14428),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FFh3W0dubrd_MquVKlKGUC_lpekWGoERdzspFzJjFQERBd6IxO7XfQ7cp3izhS2Pmb30qbxFTODkGPiAQaxGnPpufoLc','Came here for covid testing. Very easy to schedule online and the process was smooth! In and out with my results in less than an hour! Nurse Sarah was great! As a health care provider, I will recommend this clinic!','2020-07-01 21:50:24.480000','2020-07-01 21:50:24.480000',5,'Saba Khan','https://lh4.googleusercontent.com/-Zghm1kqvmLc/AAAAAAAAAAI/AAAAAAAAAAA/rHUm_VNV-II/c-rp-mo-br100/photo.jpg','12541597562633926366',21343),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ffj-1Wlyru2Q1dqL2OsvC-ly70n9XCb1e0LEuvf8KiKo_9y9FOCFm2WBGCwnN-2-yeXA0Ahtb_qpa_jlV5IjfpJD0sJs','Our RN Anthony and tech Natalie were incredible!!! Also, Dr. Vakey was outstanding! When we came in the room to see our friend, she told us how kind and caring he was toward her. We appreciate that more that they will know!! They were always asking us how they could serve us and our friend better! They did a fantastic job at attending to our needs at all times, and making us feel comfortable and cared for!!! 10/10 would recommend these people!!!!!','2019-02-18 23:47:40.411000','2019-02-18 23:47:40.411000',5,'Kayla Bailey','https://lh6.googleusercontent.com/-BUwSlfuxIRk/AAAAAAAAAAI/AAAAAAAAAAA/_ckIpE4WiXE/c-rp-mo-br100/photo.jpg','16590124370714063921',3545),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FFoput2Q7uwWHSHrdJ-7oYugpKm6WDRXJecif5wzqBYieK3LdZXhEIIevWwQ91WuCYSDLT3sywsembsTIyTWN8y4ngqA','Our appointment with Nydia was quick! She was very friendly and sweet to our worried 3 year old. Cody worked to get us our results fast.','2020-08-12 18:56:39.497000','2020-08-12 18:56:39.497000',5,'Chris Walker','https://lh3.googleusercontent.com/a-/AOh14GjzXbxFsXYmkmftuzubLhGU_TZnVuezylD9sbP86g=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FFqfkQWJanQAxhW4bcprZNnG32CiN1Mz9dAaX7pNar0_bUbZuKSxkIGtS6IwFPXehEa1m1jlDp_C26SF6t81OHLGtSwg','Jocelyn a , Jani W, Selina V, Brittany M and Dr Omally were fantastic!','2019-11-09 22:34:44.534000','2019-11-09 22:34:44.534000',5,'Ms. Pat Fulford','https://lh4.googleusercontent.com/-KQxok8CcwT4/AAAAAAAAAAI/AAAAAAAAAAA/bVJB1GNv9C0/c-rp-mo-br100/photo.jpg','16389487648212004696',2718),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FfR8YbwPt-fjPUOvNqtU97l_ViiUzfr5QBFItfSjgxg0Hmj6lgkGYIlHCZWlh9pO0094bVPXFEl1qt4aHnzQLVM8mJc8','Recently I had to visit the Signature Care Emergency Center in South Austin. I was dreading having to go to an Emergency Center to be treated. As soon as I walked in the door, I was greeted with great care by Edward at the front desk, and within a few minutes being cared for by Katie the nurse on duty who was fantastic, and less than 5 minutes seeing Dr. Rose who was amazing. My visit was handled very professionally and with such personal care, it made me feel I had been a patient for a long time.\n\nI highly recommend this Emergency Center and the staff that make it such a great place; in the event you have to go to an Emergency Center. \n\nThank you, Dr. Rose, Katie, and Edward.','2018-06-19 16:36:32.776000','2018-06-19 16:36:32.776000',5,'Ron Parker','https://lh6.googleusercontent.com/-ounNFOmcBoU/AAAAAAAAAAI/AAAAAAAAAAA/iXu5rXIJLYk/c-rp-mo-br100/photo.jpg','16891069708558046635',4466),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FfRVzdvR-giZCEsKuhkSHVvKnR_TwEq6Rv3HA31PPtCvcK3XlEy9vY412N087lIXgpx-7ZA75tB1B1DgMIx3N0Lx5ARY','Dr. Yusuf, Churiah, Joey are the BEST!!! We came in for my son’s 2nd degree burn. These guys are the absolute BEST! They truly had us in and out in less than 15 mins!','2018-08-13 05:06:10.530000','2018-08-13 05:06:10.530000',5,'Trista Kendall','https://lh4.googleusercontent.com/-VUW--YkuXYA/AAAAAAAAAAI/AAAAAAAAAAA/Gsl0Dd7BR_U/c-rp-mo-br100/photo.jpg','3511292162159714121',7625),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ffv521qlziII3cZbxW8NgQA1Wl4VCYneSVXVi02TA1DJOq0Aez_RuSEC0o8nvCzStvbaETmADZoyjVSeDPz9VaU3R5Cs','They quick seen me in no time been here tgree times with no wait I check in and less than 5mins I was headed to the back when you come here ask for Dr. O\'Malley he\'s a great doctor and is very knowledgeable...and for Ms. Ekaterini she\'s the nurse and she\'s good, she took my blood in a quick sec didn\'t feel no pain while administrating putting the needle in....and ask for joshua the radiologist he took all the steps needed to make me feel concomforta... and last but not least Ms. Deanna the registeration lady she\'s good to got the paperwork together while I was in the back getting work on...by the way if you new you have a process to go which doesn\'t take but your second time going after it\'s quick and easy....tell them Victor love sent you thanks...','2019-08-03 06:16:29.445000','2019-08-03 06:16:29.445000',5,'victor love','https://lh4.googleusercontent.com/-WCxwFvLsiwk/AAAAAAAAAAI/AAAAAAAAAAA/8RT7j7OcXms/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FfvOmuUT7zIkb-v-4yt-SMvfZZdTHvm9LjNCbYZsgjqf7Aw9mC2IyIinYMXoQwooKrxDYl7lqR4ta42HLvKOo_Bupczw','Was recently seen most staff members were rude, and snobby. Decided to make a quick phone call to ask a few questions regarding my most recent visit. The lady who answered was very unprofessional paid no attention to the questions I asked and was rude to no end. Overall I would not recommend going here unless it is an actual emergency.','2018-10-06 22:00:29.016000','2018-10-06 22:00:29.016000',1,'Jeremy Strickland','https://lh5.googleusercontent.com/-Hd7VibpyMEI/AAAAAAAAAAI/AAAAAAAAAAA/w0kpmWB7pB0/c-rp-mo-ba4-br100/photo.jpg','6521947413723274945',8338),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FfXp-lc41XwUquPUcKbW7DKvTWUkSFuKcChMajpejjM6QDgGs8yWa6kW4MdgNIlLAiLgs44jnp2XHvKMBL0kw4nKZNSg',NULL,'2019-08-13 18:54:59.591000','2019-08-13 18:54:59.591000',5,'Tamara Gaines','https://lh3.googleusercontent.com/-tJARuPR6rL4/AAAAAAAAAAI/AAAAAAAAAAA/BL9EiZLUdK4/c-rp-mo-br100/photo.jpg','6521947413723274945',8164),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FFXrd2RVOTHx6wT54cjlpl9TG4V_IHy9BXyqs869gP7OzJu3CYBp9Cn7xje_ytu5gEOTQQ2889cRid57r5i4X4sWwiWA','Excellent staff, from beginning to end everyone was very kind and welcoming. All very informative and they even offered me a warm blanket! Was the perfect touch! Thanks guys!','2018-06-06 19:56:20.245000','2018-06-06 19:56:20.245000',5,'Evett Tello','https://lh6.googleusercontent.com/-twewjOMrxY0/AAAAAAAAAAI/AAAAAAAAAAA/PCvDMg0W244/c-rp-mo-br100/photo.jpg','14904078213800803294',2247),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FfYq0AbblPL780gWtTYjC3x-MVxnKhrY4WqucbyXy3A5507M4reHmLsh6m9mD-p8WRoJJkCn1RDj61lHuq_SEDcTGOTU','Thank you to Dr. S. Edwards, Nurse Racheal, Rad Tech Jessica N, ER Tech Courtney G. & Registration Kayla W at the copperfield location for being so kind and patient!!!:)','2020-02-07 17:03:40.046000','2020-02-07 17:03:40.046000',5,'Alexis Davis','https://lh6.googleusercontent.com/-pfTq9Y2E_qU/AAAAAAAAAAI/AAAAAAAAAAA/8GFycIH-sp4/c-rp-mo-br100/photo.jpg','17898197009688164559',14183),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FFZpP-hGkuypkSK4PcWtOe3ER3qLLqpXV9au1RUeA-gX_6JiUR3futz-5kLL9qpxkLPP31rSRANO0hFGrvo7_jvLZeac','Dr.omally\nTroy\nJessica\nMelissa\nEveryone was great to my husband cause he don\'t like doctors visits','2019-07-16 00:45:02.771000','2019-07-16 00:45:02.771000',5,'Tricey Mitchell','https://lh5.googleusercontent.com/-MzhmSLQLFck/AAAAAAAAAAI/AAAAAAAAAAA/5COoYO4221Y/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FFzs683lnhjgUq4k-fWo29JOd-xqrKtb-1lMi0TPrCWdxDQUd4_blwRnrmp3llmO1x_7djoXlt_kaFKZyM3GnYr1t-iE','So friendly and nice once you walk in. Jocelyn at the front desk made the paperwork process so easy and quick. Not even 10mins when we get called to be in a room. Alvean and Jose are kind and professional, makes you feel like family members.','2020-02-22 22:48:05.708000','2020-02-22 22:48:05.708000',5,'Yenifer Ortega','https://lh6.googleusercontent.com/-oPGWP8DlfTQ/AAAAAAAAAAI/AAAAAAAAAAA/0ACR1hlMNOQ/c-rp-mo-br100/photo.jpg','16389487648212004696',13779),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fg1-ItflYw86U-sVbDmhb4fCTBlNFfNdgxyun8mh6KkeQ23q82eaoxmjlTvmA4BVG3-4KQzvGfdaG2Zj4cZddvZqQZ1I','This Was The Best ERcare I Was In And Out They Treated me a with Care','2018-11-20 06:59:21.709000','2018-11-20 06:59:21.709000',5,'Tenill Wilfred','https://lh5.googleusercontent.com/-Wf7CJy65vF4/AAAAAAAAAAI/AAAAAAAAAAA/3W0R5kEoKVo/c-rp-mo-br100/photo.jpg','17394740196501090048',4761),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FG7Y2Qwbexp15E1y5ofpU_t_Ac48LaD_8h3dJbtmSKbMZ2C26kSy3UB7v01KDFCBw0ed-NYq-TinrBuUZfMgXlQ8b1bo',NULL,'2019-02-05 00:19:47.001000','2019-02-05 00:19:47.001000',5,'Maiya Morris','https://lh5.googleusercontent.com/-8jlT9P2zfiM/AAAAAAAAAAI/AAAAAAAAAAA/AbzbuIENrRw/c-rp-mo-br100/photo.jpg','6521947413723274945',8313),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGB5ZbGF5n-nCKkzipQpIJGPvqr64ZpE9WWMrnlNVJVj03wVcm61F6e7ma5Q-Bk2hqoinoF9fv6ygITMRz0eJCYGs0l4','We receive excellent service when we came in after being involved in an accident. Stephanie, Natalie, and Rolli were very nice!','2019-06-28 02:23:52.847000','2019-06-28 02:23:52.847000',5,'Guadalupe Bustamante','https://lh6.googleusercontent.com/-avTduVnXJgw/AAAAAAAAAAI/AAAAAAAAAAA/gnvaZZxJbTc/c-rp-mo-br100/photo.jpg','8679688254631342173',8829),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGBGx_Ke1uFgCez5ZTF91OB3lBFcZ7snNSwrU_k6qWxljM0S6vJpr3yj0nIDXTvZ51sRbTVIN6-209ERggqdFnynIvng','Dr.Pham and nurse AlveanA, Trica -B,Radiology and Elida Jasmine- Registration and Aurora -Er Tech They\'re all are very nice and professional.... I recommend everyone to come and see them..','2019-11-26 16:03:38.510000','2019-11-26 16:03:38.510000',5,'Connie Blanton','https://lh4.googleusercontent.com/-KZ-1tWaIXfY/AAAAAAAAAAI/AAAAAAAAAAA/ePtbmHAycIk/c-rp-mo-br100/photo.jpg','16389487648212004696',2626),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FgBQaOeS7JMvB11WvAlEOQ7Kd0OvIYckz92SavwFhpPUPCW_Uv47iS2Ilsn2BdZHLePa1Qn__1Q8hPz0H3006znx5-U0','The staff here is very friendly. The facility is nice and clean well maintained. The doctor had i had was very knowledgeable and catered to my questions and concerns. I would definitely recommend a visit if looking for an urgent care clinic.','2020-08-01 20:30:43.726000','2020-08-01 20:30:43.726000',5,'joshua orona','https://lh3.googleusercontent.com/a-/AOh14Gg9y8cElLVDmjcAzOV75Rd_NNyDZwFC8OBdnVgwkQ=c0x00000000-cc-rp','13486358490203335051',21834),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGdwAwZzct3_CpN2cV_uqoGMe2p5xXgrf4ohYsf89qozshoiRue4W_uUDlXHBD-WaiZnOLPuUIBUB53qKyUKG2v_haa8','No wait at all!! Rachel, Ralph, Monica, Koley, Fatima, and Sable are extremely friendly, warm and informative. The whole experience was smooth and well organized thanks to this amazing staff!!!!','2018-09-01 22:06:17.625000','2018-09-01 22:06:17.625000',5,'Cali Jay','https://lh6.googleusercontent.com/-U2uwV6D32gU/AAAAAAAAAAI/AAAAAAAAAAA/XRCNw2tRjJw/c-rp-mo-br100/photo.jpg','17394740196501090048',4807),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FgIAjkBkiOY16i2dgOkc7oaIkGIC6MZUVpt3IqLi0pqWD6TSTIl_1Axs-yETduhB-sDtuuH5YI2QhJg4uYGp_O3G3W0I','Went into SignatureCare for some swelling and dietary issues. I was immediately taken care of. I was in and out within 2 hours considering all the processes I had to go through. Christina C was so welcoming right when I walked in. Christina R immediately took care of me and was so kind throughout the process. Then I met with Dr Lingan followed by Chelsey, Christina K, and Adam who were all so nice and really cared for my health and concerns. All of my questions were answered and I felt a lot better after leaving their care.','2020-01-14 19:42:39.620000','2020-01-14 19:42:39.620000',5,'Kacie Gilmore','https://lh4.googleusercontent.com/-0FAiWakFeOA/AAAAAAAAAAI/AAAAAAAAAAA/LTMUywlsZ7s/c-rp-mo-br100/photo.jpg','16891069708558046635',9767),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGIdyNifVtz6wwrpvYBgXg2aVCuk4hP6Dpyk0oYSm3Gwl-gjIPmaPbG5MsksnsdTbJ8-pIvI-M8jtjeNi_i4scwVFFNE','Great service, attention to detail, comfortable environment and great facility to be cared in. Thank you to the staff, nurses and Dr. Signla for the work that you do.','2018-08-16 20:50:10.165000','2018-08-16 20:50:10.165000',5,'G B','https://lh6.googleusercontent.com/-9OXnscFfcCA/AAAAAAAAAAI/AAAAAAAAAAA/IdYLjLJmgzo/c-rp-mo-br100/photo.jpg','3511292162159714121',7615),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGjDt0qRva9nklyFBIO_rYo9SlXfHqfZwLSTwvpP6T5mXNb0Ww063FjN-GvcMaUHNm8s3Bq9cyxY6YolYE2WQK0cqWkQ','This facility is top notch! Staff was knowledgeable, friendly and professional. Dr. Elsbecker, Adam, Linda and Jennifer took unbelievably care of us. If you need an ER this is the place to go!','2019-11-25 14:47:14.996000','2019-11-25 14:47:14.996000',5,'Lee Riley','https://lh6.googleusercontent.com/-E64-tfjkXd8/AAAAAAAAAAI/AAAAAAAAAAA/LkvHYVmTwoc/c-rp-mo-br100/photo.jpg','16891069708558046635',4141),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGLXq5cPc_cYO9l5SiVri31LYNIlQLPpLtAqDFDOsO2pd-DLlYEuvJxOJhRuni_YLiRRx7SWqaLFN_N_c8oy0j1M2EXE','Dawn, Norma,Jacque! Are soo helpful and nice! They are very smart!','2020-01-21 12:28:49.151000','2020-01-21 12:28:49.151000',5,'Rashad Punch','https://lh6.googleusercontent.com/-GvXYN4JHeXU/AAAAAAAAAAI/AAAAAAAAAAA/0zcKVZVGxHU/c-rp-mo-br100/photo.jpg','3511292162159714121',14454),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FgN4G5x2VDeHEXECtskBndiv4VPdQr7Tx96TLLCfqD44jlIz-kAh5LXKY8J9P2819HTnFNNQ4LbjXLXwG9YieNXQa7Pc',NULL,'2019-12-29 03:59:27.278000','2019-12-29 03:59:27.278000',5,'Frankie Vega','https://lh3.googleusercontent.com/-e8tLtS438_o/AAAAAAAAAAI/AAAAAAAAAAA/EXVUh3RbLvM/c-rp-mo-br100/photo.jpg','8679688254631342173',8665),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGQbjzdmsVVnph3ip4yA3F51je8EGOM_UJr2n3nd2ssB8lhBmA0fTq_lIZ8EgMLfd3Jp-hbANzJQgg_ZoMY_pPvKMZZQ','Truly the best ER experience I could\'ve imagined','2019-06-11 19:34:00.431000','2019-06-11 19:34:00.431000',5,'Grace Peters','https://lh6.googleusercontent.com/-w8CSOYFo96c/AAAAAAAAAAI/AAAAAAAAAAA/mdj-R7K_LSI/c-rp-mo-br100/photo.jpg','3511292162159714121',7311),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGScQQ2xGyEaM1gu5SVHFx_9QwBsi2N4cKx7HQEeT1GEawPP9HOWiyRVn8cajAbrK525HhEQ16HVj0ke28PVgZNu92fo','Very helpful and friendly staff. Ashley was very welcoming the second you walk in she makes you feel comfortable.','2019-02-08 15:27:20.186000','2019-02-08 15:27:20.186000',5,'Fabiola Chairez','https://lh4.googleusercontent.com/-GF_iwpOgmTc/AAAAAAAAAAI/AAAAAAAAAAA/ko3zyfuOvUw/c-rp-mo-br100/photo.jpg','17898197009688164559',5861),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGvOxVFmiTCZEjExty670uMKDR3JDTGynU2F49oO2PI0Z9rSlF1P06P4wmTUe4FQPJEa3sNFfWTVr1Hk_d8XcuaVwQN8','Excellent attentions from all the staff. Dr. Kotey, nurse Angel C, Rad Tech Carolina, ER Matee R and Tanishia W from registration, everyone very nice, friendly and explained every procedure and details about my condition.','2019-03-27 01:34:08.478000','2019-03-27 01:34:08.478000',5,'Monica del Pilar Garcia Cantu','https://lh5.googleusercontent.com/-uCcKr4j4wZ0/AAAAAAAAAAI/AAAAAAAAAAA/Nvhtbo0QbI0/c-rp-mo-br100/photo.jpg','17898197009688164559',5792),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FgwhFVXZ_H_2wihccKxwjdDBOCzSMpB_s7IO5DGaYico-Hlhny-qd4mhf3Y30xuA73fTC1RPEI8qGFr8bPzkHCGjEHjQ','Excellent facility! We came in on a Sunday and the staff was extremely attentive and made us feel comfortable and at ease! Liz at the front desk was kind and helpful. The medical staff Melissa, Matthew and Dr. Braun were all very knowledgeable. They listened to our concerns and addressed everything.','2016-06-12 19:04:25.126000','2016-06-12 19:04:25.126000',5,'Lauren Steger','https://lh3.googleusercontent.com/-zm49e_slIB8/AAAAAAAAAAI/AAAAAAAAAAA/kdyNBAHCO7E/c-rp-mo-br100/photo.jpg','14567670160750071148',2021),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FgwPORwzlEbdqSJmO1l3a2Q-0v2FBbL91OCTVqnpt3DrtHRtKI4W9FoSlFJAh_ge1_j2hVi_I0R6YJH4-Lm5QzFaPowk','Registration Lorena & Gracie\nER Tech Brancroft\nNurse Theresa B.\n2 thumbs up... Thank you for everything','2020-07-26 15:33:37.103000','2020-07-26 15:33:37.103000',5,'Angela Flores','https://lh6.googleusercontent.com/-NcTqUDFvK_A/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclLO9VRO6O2aQcUPwUUZUJOC5I92A/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22211),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FGx7BCTUgoxcxGR8ek3bUah-atUbEZOnVDdEPLL1okW_SMlF-NDeyHunOPllf00Cv4lkUyUpCZx17KNQSTTy_WTFGuYc','My drive thru covid testing was very efficient, even in the pouring rain. Everyone working there was polite and kind! Great work y’all.','2020-07-26 20:55:49.463000','2020-07-26 20:55:49.463000',5,'Shelby Morris','https://lh3.googleusercontent.com/-3JWZ1xp3XVI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn-YiFmTO54rs2iVhyrmBim_N_iBw/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21865),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fh-4EsGz8DAy90CZ5fRFwAvPUGfpl71lZ-GbeYnYdr6WMGj3F46oa0n5MzIAE-I-jbRk8HdRWtzYjKQOy3oh4ZH668tU','Nurse Alvean was very nice and welcoming, the Radiologist Tricia was nice aswell. Dr. Alloju was awesome and knew exactly what to do.','2019-05-11 13:06:46.378000','2019-05-11 13:06:46.378000',5,'McKenzie DeFoe','https://lh6.googleusercontent.com/-ksEUaMY3Qwk/AAAAAAAAAAI/AAAAAAAAAAA/g5JECQ5p9lM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fh-j8LQAiYXcEJ9tTpTYGjmoGz7Pqi9m707zKFXuNJ9_vbkXdlYdedP2EID2SvOZIxCggTCLtCYB883aj7bXlfNIizuY','The staff is so friendly!! Brandy and Natalie went above and beyond to make me feel comfortable. Dr. Dendy was fast and prompt.\nThanks for the great service! \n\nTodd','2020-08-08 15:02:29.528000','2020-08-08 15:02:29.528000',5,'Robin & Todd Alston','https://lh6.googleusercontent.com/-Qk7MnJwuZok/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckNM1tq4lJhdDy34UO0XbiexqObiw/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21910),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FHbcaLilVNe3vydt6zvPwaqnXBnOILXaJI_w67vGWLuNKwAzxTSzBkL-uzReZuRbVAzlTwogGHxXbX3rk-kLMsj-fdP4','Staff was excellent... wait wasn’t too long & they are very attentive','2017-12-16 18:56:59.541000','2017-12-16 18:56:59.541000',5,'Jasmine Felder','https://lh3.googleusercontent.com/-5QGXJ3XdsVE/AAAAAAAAAAI/AAAAAAAAAAA/Zf_jkM07UxA/c-rp-mo-br100/photo.jpg','14567670160750071148',1711),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FHdNunFivvskdw4Rmu3BV-6t0Dxk_sunWm_6YqgPGZufF2d-R2vpXuDVdSj4GeP4-vMjcRMj049RJByIvfmypbk5k3no','Signature care ER award wonderful i called before i arrived and they are 24 hours and the entire staff was overwhelmingly wonderful and warm. The building is very nice and super clean and well maintained. Dr G was very caring and he listened to me and told me exactly what the problem was right away. If I ever need emergency care or need to refer this will be the place. Also I went here due to an abscess and toothache under temp tooth.','2017-12-27 16:29:32.396000','2017-12-27 16:29:32.396000',5,'Alexis SS','https://lh6.googleusercontent.com/-6ruVD9yxKO4/AAAAAAAAAAI/AAAAAAAAAAA/37OZ_msGTxI/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4912),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fhgu-hPpQsYTzI4yrDO4oEuwLujN_uDVl8nhiE9jjv-T-L6C2FzGbpyUm_41QUTIfU4gK5IvFmdzNDmY9jPau6S1BFGU',NULL,'2018-11-05 21:03:13.268000','2018-11-05 21:03:13.268000',4,'Grace Gunnin','https://lh5.googleusercontent.com/-3bqeRkWRnN8/AAAAAAAAAAI/AAAAAAAAAAA/3SrSYt8mfY4/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4407),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FHHKQqcgJVoi_DwP7q_g7GmV9bMZmVdIH4T5J7dMiIlVGK6oPy2IeKk0I2jXOjP-PJRQ3QrBwTnHnjmRo-nG2shD63n0','The experience at this location was excellent we had great service coming from Dr. Castaneda, (rn) Miss. Katrina, (ER.Tech) Miss. Yasmina, (RAD Tech) Miss Cheney, Miss Therisa and also the security.','2020-01-03 03:33:02.001000','2020-01-03 03:33:02.001000',5,'Ka\'Mia Greer','https://lh3.googleusercontent.com/-vZVdIjH6NGQ/AAAAAAAAAAI/AAAAAAAAAAA/u2p1xB9hOUI/c-rp-mo-br100/photo.jpg','8679688254631342173',8661),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FHJJ74ancpPKHnOSn8yzJmWJMrLTq6upKalIZOC1LCL0KfbZz1Hp-BB0mepRR27DuL97sFEkb8psrQdfZ9Pvjzhgn9CE','First time here and I had an awesome experience. Everyone from Dr. Iheme, Nurse Alvean A, Marcus B - Radiology to Jocelyn A in Registration were very warm, welcoming snd friendly. My visit was quick but thorough. Will definitely be back. Great experience overall.👍','2019-04-01 22:51:01.802000','2019-04-01 22:51:01.802000',5,'Maria Ortiz','https://lh5.googleusercontent.com/-Y11PMR6KIgU/AAAAAAAAAAI/AAAAAAAAAAA/8bfLHsSA_gE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FHK32zOsvyLH_7DQDTpJVYQduMa3dxxkOwhcGMkh4isnj8IbPInZYJJ6m67K8MkN8zaEFQttO4VtwEfJydYLlWtiXO2c','I am absolutely in love with this place I was admitted Monday night for pain...the nurses and doctor and even the radiology guy were very friendly helpful and made me more comfortable because I was in there for a really uncomfortable reason...after the doctor determined that I needed to see a surgeon I was moved into a more comfortable room were the nurses and doctor came in and checked on me more than I needed them too...just my overall experience was wonderful','2018-01-11 19:22:59.122000','2018-01-11 19:22:59.122000',5,'Azzi Sanders','https://lh5.googleusercontent.com/-rZCZebSOZm4/AAAAAAAAAAI/AAAAAAAAAAA/eJl4IQHFYsI/c-rp-mo-br100/photo.jpg','17394740196501090048',4901),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FHM7tPiwQXBFvDUTX4SIJuRXoKz993ahmmxw1cBbAaiUxe06xzLhLEDnzG1A3mx0jmT5P3WlFRzqdIBNOIadRd2fJdZ0','My experience at Signature care was amazing! Linda, Christina and Nylund were very helpful, informative and friendly, and I’d recommend this place to anyone seeking attentive care.','2017-10-13 23:32:01.266000','2017-10-13 23:32:01.266000',5,'Kyla Barnett','https://lh5.googleusercontent.com/-TDRLkKpcafw/AAAAAAAAAAI/AAAAAAAAAAA/4Hx0PDTmIvc/c-rp-mo-br100/photo.jpg','16891069708558046635',4537),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fhoe3d7wsIL8Ok7dOuzqe9qXy6mq2NQTYbmsNdrpGU9mwtLRxdmdY0yyB34IrNTZYh3U-0_qqXKOTcgtVtf6Hc1PRSIo','Had a great experience at signature care as always. Best bang for your buck as far as medical care goes in killeen. They are always quick and caring. Shawnda at registration took my info and got me to the back quick fast and in a hurry. One of my favorite nurses nurse Amy was there to patch me up after my fall and Dr. Nguyen was very through explaining my aftercare. Always professional.','2019-10-06 16:34:31.800000','2019-10-06 16:34:31.800000',5,'ZoeLynn Kittrell','https://lh6.googleusercontent.com/-3hj2qGNPJno/AAAAAAAAAAI/AAAAAAAAAAA/dKo_OwbEheM/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',6055),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FHueZzSGFmRgpV5BiG3-fvidLk9QLt1uEKDtn9Lbt5kF2Q0ASLJbLEsRp8LbzvwGNIfNi3OII-XdOEsU-qhFkdhiuCQw','Dr.Appiah. was very nice and helpful and made my pain go away and the whole staff was so nice i highly reccomemd them .','2019-04-24 19:05:22.094000','2019-04-24 19:05:22.094000',5,'Lisa S.','https://lh4.googleusercontent.com/-WHsajxhOxSE/AAAAAAAAAAI/AAAAAAAAAAA/5xXwetHf--E/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FhvRcclKOI6Bk4v6_Iz74mzTdraddfX11Mufm70FouetInj_LuV1hiTaIpO0C2ONVaO0S1SIvOxJfYB4zMf1CO9NMsc8','Literally the best experience I\'ve ever had at an emergency room. They gave our kids things to play with and snacks to keep them busy. I saw a doctor within 10 minutes and the entire place was super clean and everyone was extremely friendly! ','2017-05-19 18:39:46.396000','2017-05-19 18:39:46.396000',5,'Calyn May','https://lh4.googleusercontent.com/-QAn-efQe8DU/AAAAAAAAAAI/AAAAAAAAAAA/fcqmOrPRMKA/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9400),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FhWDkl8P57oyJK3e-znHQ5037OVQKycOib5ukbCnvnZTXsyuGSJYvhQLsOMvnHivhAWFfQFnUrnJUVV7uTh87Jf74cww','Dr.Faig, Gina and Dee were great! Excellent service and they even when the extra mile to make sure I was ok!','2018-11-03 22:32:37.825000','2018-11-03 22:32:37.825000',5,'Ajeenique Payne','https://lh6.googleusercontent.com/-d_ljr_YDPyA/AAAAAAAAAAI/AAAAAAAAAAA/JHDMD7MLH68/c-rp-mo-br100/photo.jpg','3511292162159714121',7562),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FhwJXtgwfIm_1-j9MVfyh4FQ4EvTyziZb9CTHfUFBe-YykGVUkkHBa_i9asbrfvFIGnFOP5QGzqAp9MTappV6f69-NRE','Great staff!!! There was a very short wait, and very informative and friendly staff. It also helped that they had complementary refreshments!!','2018-02-06 21:25:53.762000','2018-02-06 21:25:53.762000',5,'THERESA TERRY','https://lh6.googleusercontent.com/-a_L4doVL4ns/AAAAAAAAAAI/AAAAAAAAAAA/-t5y8q3XG2g/c-rp-mo-br100/photo.jpg','8918455867446117794',9292),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FI16EEqsyuX_LfIMa0ZLyohc_HLmBoh5XjKgSWLzqHNDkynyodTZrmwAAnhsS1xzOyivnmrl8Z7cXekgHsYqDqXiVrb4','Great staff very friendly and helpful Dr O’Malley, Alvean and Patricia is awesome and made me feel very comfortable ❤️','2019-12-01 16:53:04.173000','2019-12-01 16:53:04.173000',5,'LaTondra Brown','https://lh3.googleusercontent.com/-vHYZ69iCfOs/AAAAAAAAAAI/AAAAAAAAAAA/wTbrwr3S-3k/c-rp-mo-br100/photo.jpg','16389487648212004696',2597),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fi67Kb8X92GewkyBVjd0-VfI3A_XNQZqxJoELy237q14QnY6KM43IZKoDdKgo3Nf3LAZ5uxDGuuB40w4_AMgu-gITd6s','This establishment is the best in town hands down, I brought my bestfriend here , and the entire staff was friendly , what I love the most is their kindness and compassion for others \nTHANKS YOU GUYS FOR YOUR HARD WORK!\nCourtney - Registration \nKara - RN\nYost- DR.\nJaylon- RAD Tech','2020-03-04 06:13:21.810000','2020-03-04 06:13:21.810000',5,'Ash J','https://lh3.googleusercontent.com/a-/AOh14GhXoKMU3kIx0r1aqA7IdKciWYmDtkX6M3-BcG94qg=c0x00000000-cc-rp','3272657195432704501',21142),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FI84TzHSuHs4IOyrsE5_2KsViBFhsDiAGXltk5EBVVKA67VGVN-H8A0M1E3DxNt0MaXjhmpqWB3v1b8aUMwABg_Rdf6s',NULL,'2019-08-17 12:13:20.281000','2019-08-17 12:13:20.281000',5,'Ja\'Meisha Bonner','https://lh5.googleusercontent.com/-z2IV6H2-zWo/AAAAAAAAAAI/AAAAAAAAAAA/SDu4Wvjv5ug/c-rp-mo-br100/photo.jpg','8918455867446117794',9079),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fi8p89tNSwwJy2A5FiypUfNnmAVsEFM5ADHLfABmkUsrdONQFEGG0zKb3bBYKKuUbsE2u5qXvDf8grkIqDwSGie1B5zM','This is my second visit to this clinic. I went in with breathing issues which is extremely scary, however I was immediately acknowledge and taken care of, thank you Leslie and Steven. No wait time, I couldn\'t imagine waiting and not being able to breathe. RN Churiah greeted me and calmed my worry, she was attentive and patient. Dr. Souman was pleasant and easy to talk to.\n Both were kind, clear and informative. The clinic is immaculate and very comfortable. The entire staff was professional. Thank you Eve for your gentleness and Thuy - An for checking and making sure I was good.','2020-02-27 18:12:08.156000','2020-02-27 18:12:08.156000',5,'Marissa Jackson','https://lh3.googleusercontent.com/-TM_caDwXTF8/AAAAAAAAAAI/AAAAAAAAAAA/7wtMru5uoMc/c-rp-mo-br100/photo.jpg','3511292162159714121',17369),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FibqO0D9Xh8LxKyK8pwzIVvg-3LyGDITfLS49y9d1_mmNZMyXr6e9GOVpKGeON-73tcU70P-H8PH5Hbn3wZ54uOcFdu4','Staff and doctors are amazing. \nDefinitely recommend this center !!!!!','2020-01-24 18:33:13.996000','2020-01-24 18:33:13.996000',5,'Rebecca Mendoza','https://lh3.googleusercontent.com/-Fe9bJ4TPcZ0/AAAAAAAAAAI/AAAAAAAAAAA/88lvYX9LnrI/c-rp-mo-br100/photo.jpg','14567670160750071148',10132),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FIdTeeDri9d81YzBZGAl3bvp-hmwDE7sv2Rmz3D4X3wCf82e2csR-xXnwgjEp423LBcy7mjuAQ_yOKWPiw3NIEw2Gv0s','Great service !','2020-02-17 07:46:04.107000','2020-02-17 07:46:04.107000',5,'Viridiana Gonzalez','https://lh5.googleusercontent.com/-Dt8rqbc_9eM/AAAAAAAAAAI/AAAAAAAAAAA/T7onCDqlLOk/c-rp-mo-br100/photo.jpg','14904078213800803294',20994),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fif0w5d_xgyyOa3TcsXORqjEhLmUy8DQNyohlhJFqbFs612bkeMXaY8iyt0kSVYsf13AsNdCwaCotUOzLOLYBY-4o938','Super great staff I wanna send a big thanks to nurse Dawn to the tec Eve and the Doctor Yusuf','2019-10-10 14:04:22.182000','2019-10-10 14:04:22.182000',5,'Keke Bedford','https://lh3.googleusercontent.com/-CNCSR2brv0g/AAAAAAAAAAI/AAAAAAAAAAA/v-AH8VIli2o/c-rp-mo-br100/photo.jpg','3511292162159714121',7162),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FifCxtwduz0jSwU30FkMWnEhtmArRpA2HZgE8YWZJEwqM6XZFdJcrNLIt0dQ8odYAJwImrQoWMOwyWfqeyciM-DhXoAE','Love this place! Rebecca v. was great!','2020-01-31 06:21:16.450000','2020-01-31 06:21:16.450000',5,'keltcy schuchardt','https://lh3.googleusercontent.com/-mQQf2OPUbjY/AAAAAAAAAAI/AAAAAAAAAAA/4wTIBS5ODCo/c-rp-mo-br100/photo.jpg','16590124370714063921',3143),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Figg2DwZZ6Poz89CKUjdNUnjRNZurna7neheVTsY8gOui4bJxRNUreyEx9fUUFvcmkEMQYdFEkN6vqFEYgomgAdHOd2o','Great job Awesome doctor and best all the staff and I really appreciate their good work and efforts.','2019-03-09 17:17:35.665000','2019-03-09 17:17:35.665000',5,'S H','https://lh6.googleusercontent.com/-d4l_OVzi5Po/AAAAAAAAAAI/AAAAAAAAAAA/D2nITs5fo3g/c-rp-mo-br100/photo.jpg','17394740196501090048',4716),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FiHcxPZAeW6e5X9CDk37-UlWZPzLOqZ3oIj_YBJiCLaeND0mqSHACFE_FRrpRdaCMjTU86WT28XaWRDNk7F_mWTNKw0g','Aaron, Krystal and Dr Huerta were amazing! They were very fast and went out of their way to make us feel comfortable.','2019-06-07 17:42:40.672000','2019-06-07 17:42:40.672000',5,'Makailey Pittman','https://lh5.googleusercontent.com/-FjzZJo1IiDg/AAAAAAAAAAI/AAAAAAAAAAA/dSt3W60M3k4/c-rp-mo-br100/photo.jpg','13486358490203335051',985),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FiijO6o0Z3Kev0j6w3N-yBgK0VLNg3xxhyiOVGfZHWyjgIrzXREeuDukPVhQriDCi9MOIbHBcCqPCZzKBAlTE05UXFmo','Very helpful and staff is amazing.','2019-01-14 00:23:06.617000','2019-01-14 00:23:06.617000',5,'Tyler Hargis','https://lh3.googleusercontent.com/-zPp0DBsDXeE/AAAAAAAAAAI/AAAAAAAAAAA/0IBsmw-be20/c-rp-mo-br100/photo.jpg','6521947413723274945',8328),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fije4pnG1DqldWf3LgWWZykPU_eNO4oRIC_56YeO6D06GMrT9qsXa7eqU9ripWVn4VBfh5huP7DR0ijmeEhRhqt6NFlU',NULL,'2019-03-12 23:17:08.672000','2019-03-12 23:17:08.672000',5,'Delores Hunter','https://lh3.googleusercontent.com/-bzrc88HU5E8/AAAAAAAAAAI/AAAAAAAAAAA/34tYuuOTKUc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FIkiBYV4fWIi7NK6oINK_yNTgF0And875NjFtJQje22rfg7fP1I8PJE5hVvO22MMXt4ED5kTa5ThJ9iv3z-yuF9bwkNA','My child was very sick and all of the staff at Signature Care were exceptional at taking care of him. The wait time was nothing, we got back immediately. We were offered a blanket, snacks, and checked on regularly. My son was happy and clam the whole time. I will be back.','2019-06-07 18:48:03.689000','2019-06-07 18:48:03.689000',5,'azared lazcano','https://lh6.googleusercontent.com/-971X3-HwhvY/AAAAAAAAAAI/AAAAAAAAAAA/y7i87MOJTJY/c-rp-mo-br100/photo.jpg','8626688543755174284',8460),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FILuRNz34frTlECeBMmZddUG4oCbwKwpTZZ8OluOxleB6AgbDxXzrwhCvuRNOVymuElIAGWIM0C-IMyDUTjEVHqztS4k','From the moment he walked in the door my husband was treated quickly, efficiently, respectfully by all the staff. They controlled his pain,gave him appropriate antibiotics to get him on his way. I️ would recommend this ER to anyone needing care.','2017-12-11 14:23:28.004000','2017-12-11 14:23:28.004000',5,'Paula Huff','https://lh3.googleusercontent.com/-W3oOc2bZXlE/AAAAAAAAAAI/AAAAAAAAAAA/8YcIXzCg9jM/c-rp-mo-br100/photo.jpg','14567670160750071148',1715),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FIN_hu2ekkmx0IpcWMFBLBMYNqFT_GqPGBdXmIzuUqA9A6tyAUqMYfWKevgOYwfPjy42iWtlbSVj2lecBU0sQyBi5teA',NULL,'2020-07-26 16:15:00.672000','2020-07-26 16:15:00.672000',5,'ervin centeno','https://lh6.googleusercontent.com/-CqtoZmvs5nw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnvh1CMLH3hmkU2NRm9AbwiOpsgcQ/c0x00000000-cc-rp-ba2/photo.jpg','14904078213800803294',21945),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fioqrmdo6slzmLYRGNYBs3l-2G_eXeTVJjJ22hZaV3EZCp_009Sg3sOn4wcVBbNz-LMIAoAEmQT-_g6eWSuk_27n13wY','Dr. Lindsay\nJani \nMarcus\nJocelyn \n\n Very Clean, Professional, and Friendly.','2019-06-10 15:49:12.168000','2019-06-10 15:49:12.168000',5,'Mistah JV','https://lh6.googleusercontent.com/-U2m1QldH5EA/AAAAAAAAAAI/AAAAAAAAAAA/2hOMSCHMPZw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FipcnN1jg16y8IYCIP_w6ud1-NyKSnsK2inoEQA3pZDvdcoggpjNeVid8zA5DtIvY1H6Arv7BEZo9lbRMVRG9mA-VQSs','Super fast and the nurses/doctors are so sweet.','2019-06-08 22:25:06.686000','2019-06-08 22:25:06.686000',5,'Holly Garcia','https://lh5.googleusercontent.com/-M3K1HSgk-C4/AAAAAAAAAAI/AAAAAAAAAAA/W6yko9Cf1Wg/c-rp-mo-br100/photo.jpg','16590124370714063921',3364),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FiTbULMYhiGlRWse_xS8caYnnHab3YoAdx-8k1aCr6CRenHMO4NJGA90htLKrSB7WdVAHmTbmIbPUAKM4lIIwge7EPQk',NULL,'2019-09-09 08:34:28.858000','2019-09-09 08:34:28.858000',5,'Marcus Washington','https://lh4.googleusercontent.com/-WMOh0PY4vsY/AAAAAAAAAAI/AAAAAAAAAAA/AAakzt_2-yI/c-rp-mo-br100/photo.jpg','17898197009688164559',5554),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FiUgY1IQus8dnWMgdaOiWbyBmR6ejLGFTpo-Lt2bC1ZLbHUvvYSyT9rZCoT4di9MXQgg4WwHnrjaqktiwx4zbLexzBwc',NULL,'2019-03-04 23:06:11.822000','2019-03-04 23:06:11.822000',5,'Lori Smith','https://lh6.googleusercontent.com/-gAbGiVca2vE/AAAAAAAAAAI/AAAAAAAAAAA/u26ZbG3lyHA/c-rp-mo-br100/photo.jpg','6521947413723274945',8298),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FIvm9qttQjTuBTR7hOREOANnyEZk-_5WI5_PpiiWECAk2Q_jtrsOCHvwM3dFQ7COuY9VvkoXkpqbmDWL8iAhJIG6noyg','Dr. Wang, Keaire, Olivia, Jessica V were great. Very helpful and made my day much better :)','2019-08-31 22:39:25.720000','2019-08-31 22:39:25.720000',5,'Frederick von Mame','https://lh6.googleusercontent.com/-uQsw_d1GMLY/AAAAAAAAAAI/AAAAAAAAAAA/2O4QLsFaGB0/c-rp-mo-br100/photo.jpg','3511292162159714121',7183),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FIVyB_gBMFgX7q-U1VTZmgDh2tfjB4Xqn4VhyzZ61PCIyh06aZbvupQt0OoIkUzfsUqgxtvbgGMEA2jrP7CsrFltIzbQ','This is not an urgent care. They bill themselves as an ER - it would be cheaper to go to a REAL Emergency Room. They do not credential themselves with insurance plans, they are always out of network. Expect a big bill - $5,000 for a virus. This is the kind of predatory practice that is killing our health system and praying on people that don\'t understand our country\'s insurance billing system.','2019-02-18 17:24:50.435000','2019-02-18 17:24:50.435000',1,'Mary Ellen McEvoy','https://lh3.googleusercontent.com/-QHzNM2lHKc0/AAAAAAAAAAI/AAAAAAAAAAA/tjRqLaXSyvc/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1385),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FiWb_TnNaMtKVoO9xJpaM8Uiqmz9YTvawwLgGnxJDSJ_Co3t_yZHfQoO2SM_oI7KSl2SUBx7r-tUViqePxY3xoCHTM5M','Very friendly staff!!','2020-07-29 10:46:46.364000','2020-07-29 10:46:46.364000',5,'Edit LOPEZ','https://lh5.googleusercontent.com/-4uoKTyiYdcQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck0MYBTY8y0GUUGx6YwCMcxLzbYnw/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22277),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FIxiKEtpKm8LujPd8THe3sgPZR-E-SiyAfW_OxNyICXGKAjxN4mTjdk3swn1Q2JHtB8fGPYYnY855ewUf2fI9hLecsd4',NULL,'2019-12-15 06:42:17.342000','2019-12-07 14:57:26.327000',5,'Katherine Wilson','https://lh4.googleusercontent.com/-I3kTADrCjyM/AAAAAAAAAAI/AAAAAAAAAAA/3eERES_U1eM/c-rp-mo-br100/photo.jpg','3272657195432704501',6844),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FJ_E462GLf97L8w63WQn9Zexiebqpgcbw9fu-rVi8eBbGhAgcto4-9OvH2Jm2QbjHj3kVEIFFIfsw1poyLXTkGcHJjAE','Love the staff!','2018-07-14 21:05:07.912000','2018-07-14 21:05:07.912000',5,'Sacha Flynn','https://lh4.googleusercontent.com/-6-swyih-y9E/AAAAAAAAAAI/AAAAAAAAAAA/1VKnGOJlqy8/c-rp-mo-br100/photo.jpg','17394740196501090048',4832),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fj7YlPXtOXNLPx2gquiNOZ6NOGkVJ_ZW2BwfNKz_-V6DsHXQKnfeDXvHHzjDjdvfHdn8gVV5v9vPp4sBH4tlJ1DKvqtI','Maria, David, Savanna, Jose, Aaron, and Dr Huerta are amazing and helpful!','2019-05-31 19:06:09.144000','2019-05-31 19:06:09.144000',5,'Mary Huerta','https://lh6.googleusercontent.com/-rg5X0cJPnRY/AAAAAAAAAAI/AAAAAAAAAAA/cMxYEgT-tVI/c-rp-mo-br100/photo.jpg','13486358490203335051',994),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FjB-JCyp7LtD0YDSTlrXNshOXeIqTvHDgBspSpuKtyUka_YE-QEcLMDVtuO11c6nBeUA2PKqTvnjaMIBudZpV0YjNOzY',NULL,'2019-06-11 19:13:23.980000','2019-06-11 19:13:23.980000',5,'Brittney Stevenson','https://lh6.googleusercontent.com/-dAWaxroUGlU/AAAAAAAAAAI/AAAAAAAAAAA/Smd01Q7pq7s/c-rp-mo-br100/photo.jpg','17898197009688164559',5704),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FjJlEe0OAlJvXrE6tiJE8Fm34Swg5CO1JY3SVHg-1LmKgVfKW1z39Vw9_qalPJ-MychQn0gzbkw_jHlI2BHdjaot5L0g','Dr. DAS IS THE BEST! This place is a great fast covid 19 test!','2020-08-07 19:38:33.601000','2020-08-07 19:38:33.601000',5,'lucas pereira','https://lh3.googleusercontent.com/a-/AOh14GjTcqbyqd_8-6ZbO-3po1-Ww1GuKkai2S5jQ2Rfpg=c0x00000000-cc-rp','14748677429039074158',22512),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FjmMd82nOXy2FkbAoB_UcTI1Pvof1Wk4PxDv6wG0DMtPjG_cMX4KCSHdAwACBi5JfxPWSAURwk-N2gpEc00f-3NC1gz4','Great Stafff !! Every time that I come to Signature Care the nurses & doctors treat me with great hospitality.','2018-12-18 14:32:59.401000','2018-12-18 14:32:59.401000',5,'Kylie Kay','https://lh4.googleusercontent.com/-BO0XPn1Z3d4/AAAAAAAAAAI/AAAAAAAAAAA/yWoNQnVpAHE/c-rp-mo-br100/photo.jpg','8626688543755174284',8629),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FjoY0biLvxn3HB-70QlTsD7P-6YHxDrEqiokcnjNQs6GOi-1xGtyU2o5UcdEL_kcDhTdNeFPCGsv7fGTA_kU4f31cJQc','They are the sweetest people ever! Very efficient and well managed.','2020-08-16 20:12:57.655000','2020-08-16 20:12:57.655000',5,'Kaelin Connor','https://lh3.googleusercontent.com/a-/AOh14Gh3pT1LQ5h_LLrbiz8--bVszIWcFzxEKK_t4FqMDA=c0x00000000-cc-rp','16590124370714063921',23050),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FjSf_TP69-EG02oSu7RYuhTdxSnKtXrzCVdV3wmmEHv_5IyLsNaAciZqITXB3RcdjVcM4AOPuaPHmXCqNYq6PRyp4DcQ','Immediate response. The fast treatment. The smile, courteousness and care. Yes I will go back. But I can not conclude for now until.......\nYes the reception was great.','2017-03-11 20:02:06.679000','2017-03-11 20:02:06.679000',4,'Glory Taboh','https://lh5.googleusercontent.com/-CWTv921wnb0/AAAAAAAAAAI/AAAAAAAAAAA/tGwxP7it144/c-rp-mo-br100/photo.jpg','17394740196501090048',5098),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FJt9zePmpD15E_e0nicyiF5tlAYYRlRfu1a1f1_V1xwqR3mDiL4MF1DmlvE77LdLJCpeF13TcpsG7Y3loZx-awRNy2tY',NULL,'2020-01-15 14:10:46.051000','2020-01-15 14:10:46.051000',5,'Gina Barriga','https://lh6.googleusercontent.com/-2QN48aJlkcw/AAAAAAAAAAI/AAAAAAAAAAA/GELh6m0uiTI/c-rp-mo-br100/photo.jpg','6521947413723274945',9826),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fjx3yJCESk30gg039QV_xuHiG0LI2bVybZh568Lj6onQY627mun8ukqsDeZ5wYnyL1GjzScJRfNMbURPyEJ6ijF2He_Q','Clean place, friendly staff, fast and professional.','2017-04-14 01:35:56.394000','2017-04-14 01:35:56.394000',5,'Juan Bustamante','https://lh4.googleusercontent.com/-XaI6jU7GL_A/AAAAAAAAAAI/AAAAAAAAAAA/S5R6971w8lg/c-rp-mo-br100/photo.jpg','3511292162159714121',7843),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FK2pYTMsB1Bc_d8DUX2rBVbmUWrLElKJnfJMBTRXsxUkDBiO-mAeOqN1R_Z9dIwUSKfRyYuuO1KbSsW2ProyK6_kORVw','They are quick to help answer all the questions you have ...and it\'s super clean and staff are super friendly and kinda','2020-02-21 21:40:27.109000','2020-02-21 21:40:27.109000',5,'Annastasia Morton','https://lh3.googleusercontent.com/-3fXlVAgpnBE/AAAAAAAAAAI/AAAAAAAAAAA/tPfL7aZ-sUY/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',13517),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fka2wY1zS9mTG9K-9ZYREWAR610ritbhrFEkIEbRLAvBcfQtVpUHAhDrkKHPGCGpxnCiVYCEtlY9O5ucydAFhza2YpnE','Great staff, run very well and smooth. Thank you dr.harhai, nurse kat, Selina, & Melissa keep up the good work!','2019-03-07 02:34:04.054000','2019-03-07 02:34:04.054000',5,'Christina','https://lh5.googleusercontent.com/-x2HmP9hABcE/AAAAAAAAAAI/AAAAAAAAAAA/LvhLtIoQUXo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FkauAEGut6WG0wOUfz7ZihPFcravs7YQ93jKse_IklGiFdhjV_BM9nS2l2Sf1WFdqp0u3bLb2m1K8xhqGLo_ylP5GUss','The whole experience was pleasant and fast','2020-07-19 18:45:12.374000','2020-07-19 18:45:12.374000',5,'Don Turnage','https://lh6.googleusercontent.com/-UYz7s-tjAMY/AAAAAAAAAAI/AAAAAAAAAAA/2ikJ_pBQ9FY/c-rp-mo-br100/photo.jpg','14748677429039074158',21702),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FkekjUp4nkpKJ6kbUw-pachuVxmtIQdnTpy6qCZjyNEXI4eprlpJnHWqquZb-N282nzEqAyf8IFJ792i_eKJqN2Qx1hA','patel,sarah,jennifer,fatima,daniel,briseida they were excellent and they were helpful','2019-12-10 04:45:11.140000','2019-12-10 04:45:11.140000',5,'Melanie Hodges','https://lh3.googleusercontent.com/-6yi2DVjiYPk/AAAAAAAAAAI/AAAAAAAAAAA/6VEUIRwFzrU/c-rp-mo-br100/photo.jpg','17898197009688164559',5366),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fkg_e3oW4GxIMcq4W07xubDv9DNTjxGEMsD6PIR61TlGG701BBirdnJkkdxlPgWIHMFDvNis02LCYk4--cjE8C3xZXRU',NULL,'2020-07-06 16:45:59.834000','2020-07-06 16:45:59.834000',5,'Bladimir Amaya','https://lh3.googleusercontent.com/-udg4r0uQBIA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck14V8aPDK79DLHAwyMVgO9-cFnqA/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21312),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FKH2vKR8w0C89LvDQ1sKT_oqeMQN_yYGxqqMZ2a1Aquoy0yDlZjp0aY1CkZP0ieyQPYIxKPWiXyObqVcrFbpr5V2zY3c',NULL,'2020-01-26 21:47:02.622000','2020-01-26 21:47:02.622000',5,'v craig','https://lh5.googleusercontent.com/-Wd0rftFvT74/AAAAAAAAAAI/AAAAAAAAAAA/Z7-yegUHI6U/c-rp-mo-br100/photo.jpg','3272657195432704501',10275),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FKhb96Qk2UgbFQvwmyDtH0SmqhFjcK-zH0W56iTln6z0thMjDKRpOpyw_ezO4Q8-cjEFjXtOK3CoJBgPPBWRmzJa1tx4','Called to confirm covid tests were available and was told yes, come on in. My wife and I arrived to be told they weren\'t doing any further tests today. That\'s mildly annoying considering how far we drove, but would have been fine if they could have answered any of our questions on when we could get tested. Instead they called my wife a liar and that she must have called the call center. We immediately called the same number back trying to get more info for the same woman we just spoke with to pick up. She continued to insult my wife instead of answering any of our questions. Times are hard enough, please tell your employees to treat the customers with the respect they expect for themselves.','2020-06-14 00:56:31.392000','2020-06-14 00:56:31.392000',1,'Melanie Davila','https://lh6.googleusercontent.com/-g0eV_P4O0YQ/AAAAAAAAAAI/AAAAAAAAAAA/I5nt6AvmPsM/c-rp-mo-br100/photo.jpg','14904078213800803294',22578),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FKQZ_o-tkRozChy0w6E6QRYqN8Y3iPxXCO0Xomd0D-XXN70ivDrFJVh61jolu8_FBBosuukWNeUwXcKvhkEbEzvdGGJY','Great facility. Amazing, friendly staff. Made us feel at home and were willing to help with anything needed.','2020-02-18 18:58:40.016000','2020-02-18 18:58:40.016000',5,'Cody Clark','https://lh4.googleusercontent.com/-EXWAuY6rS2Q/AAAAAAAAAAI/AAAAAAAAAAA/i-IpHN6LarI/c-rp-mo-br100/photo.jpg','3272657195432704501',14342),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FkROv9Dq-bwm9IgIIKu8E1IDS0Q5Ixa854fJjpFBBAsaOsowxmqOgoREhicc8GOi-hl8KXTq20oBVhAiM4uQ4LGmQ_Pw','As the spouse of a first responder I selected SignatureCare Emergency Center based on the fact I knew I would be provided with free health care services. That being said, my experience at SignatureCare Emergency Center exceeded my expectations by far! The receptionist Shaundra was so pleasant and the entire staff made me feel so welcome. My nurses Lisa and Shelli really went above and beyond to ensure I was comfortable for the entire visit. Dr. Dewaal was knowledgeable and efficient. I was in and out in no time and all fixed up!','2019-08-30 00:43:40.966000','2019-08-30 00:43:40.966000',5,'Lauren Henson','https://lh6.googleusercontent.com/-EJwz4LDA1Ro/AAAAAAAAAAI/AAAAAAAAAAA/AVTj8fv93iY/c-rp-mo-br100/photo.jpg','16891069708558046635',4210),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FkxwNfbuvubTkZyvGrqpsIq4iA0ugc3DJwAqHq_wF5rr75-TO0c92PgNturIaP5KSGvtnRvq-YhcyfN-nrTYxwfI9e_Q','Amy was very helpful and friendly! The place was very clean! The staff made us feel at home! The brought out a wheelchair! There was no wait!','2019-03-09 01:51:54.224000','2019-03-09 01:51:54.224000',5,'Steven Mauricio','https://lh4.googleusercontent.com/-au_ny9FTv0M/AAAAAAAAAAI/AAAAAAAAAAA/Bt6fKk83t7E/c-rp-mo-br100/photo.jpg','8918455867446117794',9166),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FL_iYFh8MeKs1z1IklFYCQaAAWDbWxt8kmLQtRLHZVL4l9iIgc7-Bh90srwlPiNNJhk7zE99fiukHzzieu9f_hqJhN_E','The doctors and nurses and the front office people are very nice and very professional. I would recommend to others and they dont take long to have you seen.','2020-07-19 18:12:27.554000','2020-07-19 18:12:27.554000',4,'Maria Fuentes','https://lh3.googleusercontent.com/-TMvYi9qkVZc/AAAAAAAAAAI/AAAAAAAAAAA/Sbn-64NS77Q/c-rp-mo-br100/photo.jpg','14748677429039074158',18851),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FL1ifTDdIefTEBEa3WA5QrwZiA61V_01rLqq6HXOV_9oB2MFLCOQBQf_NKhRW0UcIX1Uq2f6m5TRKpyzwvcc1y5wPAHk','Excellent facility! Very compassionate and attentive. Dr. O’Malley is absolutely the best doctor in Houston. Nurse Jani, and Nancy provided excellent treatment, they were thorough and very professional. The front desk lady Jocelyn was very helpful and hospitable. They all went above and beyond to make sure I was treated and made me feel very comfortable. I was seen immediately. This is an excellent facility to go to for an emergency issue. I hope I don\'t have another emergency, but if I do I\'ll be visiting and recommending Signature Care to all my friends and family.','2019-07-25 15:09:59.474000','2019-07-25 15:09:59.474000',5,'Alex Fawaz','https://lh5.googleusercontent.com/-4FkSkudwL3A/AAAAAAAAAAI/AAAAAAAAAAA/A76Ks30uigA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FL4kzqCXcrbAgAy6wJlGsrPyNENTeVMzE4BsUH1ixmA_6LZVHABoZLCpHBRS9-jOg_omY0OEULsijnG7j5SXiPOR-jZw','Dr. O\' malley, Alvean A,\nTricia\nSibienne W\nBryan','2019-11-14 15:17:34.821000','2019-11-14 15:17:34.821000',5,'Anthony Rodriguez','https://lh3.googleusercontent.com/-u2IHvS60tbU/AAAAAAAAAAI/AAAAAAAAAAA/XGilHV5Mxag/c-rp-mo-br100/photo.jpg','16389487648212004696',2708),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fl8NWShpZn2Me-WDElD1qNjDLOpG62-HJueAuCmMLjYoKkdS24scVUjWto-GvJw557UvA_Mb6zgy7HoYLc3vy04vEUNA','I’m in from out of town and am having an allergic reaction to something. I’ve had this once before and a steroid shot cleared it up within 24 hours. The reception desk asked me for my insurance card then explained that they have no relationship with any insurance companies. Odd, but ok. She went on to explain that they would try to file then handed me a form that explained that the median cost of a visit was over ten thousand dollars and that there was a payment plan available. Then i asked if there was a self pay option and she said yes, it starts at $175. I thought, ok good, I can do that. Then she explained that it could be much more if i was considered “emergent.” I asked her to explain what that meant and she said I would need to see the doctor. It was too risky for my blood. I’ll just wait until I get back home tomorrow to visit my doctor. It seems like such an odd way to do business.','2019-09-02 00:20:51.926000','2019-09-02 00:20:51.926000',1,'Cary Bohn','https://lh3.googleusercontent.com/-xIC1Ptdv8us/AAAAAAAAAAI/AAAAAAAAAAA/tQXPYBxkS1I/c-rp-mo-br100/photo.jpg','16590124370714063921',3219),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FLa3KaXNcFINVTPBcwXPiktJ4zkQ6tmhEYFxUh8BwqKhYD7jxZ91cAc8-jCN2ZRLLuskfy59L8w5CQ__2_9CYrXaK2CU',NULL,'2020-01-19 18:55:32.722000','2020-01-19 18:55:32.722000',5,'BlazingHype','https://lh3.googleusercontent.com/-sfyOn2xztlU/AAAAAAAAAAI/AAAAAAAAAAA/3dPgMsXfyWw/c-rp-mo-br100/photo.jpg','3272657195432704501',10005),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FLb4h1ZomWz8emEeNrkFnRlhO6fYqgpCGc-QuAK-xVU9NRw_xU-PICwxHHqG6RT9KWX3qZEL0Ck2IQ3_ST8vJI7z5N38','Everyone was so helpful (Kendra, Remmington, and Dr. Daniels) and I was in and out quickly. Highly recommend.','2019-12-08 16:04:59.747000','2019-12-08 16:04:59.747000',5,'Elizabeth Hoffman','https://lh6.googleusercontent.com/-Hg6YSEnpq6k/AAAAAAAAAAI/AAAAAAAAAAA/Lfa-U7v1uhw/c-rp-mo-br100/photo.jpg','16590124370714063921',3034),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Flej0fl71QiKORACQCJRcYX_eFRhu5JNen0w-qxJGSF0wCwFNIP9W-WB_H5RuHMocENC3utWW9cWim27F7bR9rNiqV5w',NULL,'2020-06-16 09:05:18.695000','2020-06-16 09:05:18.695000',5,'Adriana PenaOviedo','https://lh3.googleusercontent.com/-Q5p82iQd4VQ/AAAAAAAAAAI/AAAAAAAAAAA/2Dypg-4xJ40/c-rp-mo-br100/photo.jpg','14567670160750071148',20942),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FLjDUe_EKbWsPi1UhUtIxTF4svlgrBDxM7xr9WqmgnCugFdo5Wq-MfYxGlqSLeYEuPxCacnUxk8nN4LTFII4j7sRdsnc','rude check in staff, appointment at 3, was told an hour wait and by 6 went home to wait for a call. nothing all night.','2020-06-27 01:44:17.532000','2020-06-27 01:44:17.532000',1,'jake troy','https://lh6.googleusercontent.com/-qXpovar0AHM/AAAAAAAAAAI/AAAAAAAAAAA/a45Nq8HzCdA/c-rp-mo-br100/photo.jpg','14748677429039074158',21257),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fltl3xW_xvBnpeQrzi6AxSHyh7Z6lBnpk9QBPJ8on6YkpckOOZPxvPFDI91c3ytTm87DDB55rBnyO2nm1SvtQYV7p15o','There team is AMAZING! They provided excellent care Dr.Miller and Victoria were great with handling my daughter who has autism. They explained in detail what was happening and the provided her quick and sufficient care! I am forever grateful for there help.','2020-08-16 17:06:14.708000','2020-08-16 17:06:14.708000',5,'Jacqueline Pirtle','https://lh3.googleusercontent.com/a-/AOh14Gh4TJNRrcPdh8rMXF4YILoyn6JM16nkUgi6KLErkuY=c0x00000000-cc-rp','12541597562633926366',23001),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FlWiW9f6copvmh0cuyAbffDx9mQLX_imdUHvZ4r-FoQWQdzEHTXJTUUCjrao3U9EIDqy7b67G-xjA-9VyapVJO8RU1eA',NULL,'2020-07-23 18:08:10.785000','2020-07-23 18:08:10.785000',5,'La ufo Vlogs','https://lh5.googleusercontent.com/-7WjnuJRHPNo/AAAAAAAAAAI/AAAAAAAAAAA/nsnfDHK3umU/c-rp-mo-br100/photo.jpg','8918455867446117794',22298),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Flxr6iFwK1lHeFbnJCahAK5WBUiQF7DvKId-D6CaoWekpRFQbL74TtfpacPWYU9rHAGM22bt4C-rsn0-FLzS_Go-8y4U','Dyveliz and Arielle are so sweet! And Remington and JR were very helpful.','2018-09-12 15:38:55.852000','2018-09-12 15:38:55.852000',5,'Madison Kuhn','https://lh4.googleusercontent.com/-EsQkEBjkV5k/AAAAAAAAAAI/AAAAAAAAAAA/bXcqRXZtlK4/c-rp-mo-br100/photo.jpg','16590124370714063921',3734),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FM_gaBUH9U46RaUaSVjcDRyvNuMQ2DpQxDe3BhTljKLTuBBRPvlSw_taYmxS5CMk9Jps1c7XZufM_65uc88LVjBiyRyA','Very friendly staff. The staff makes sure all of your concerns are addressed..All of the nurses were friendly Brian, Bryan and Brandon. Doctor Estevez was very thorough','2020-02-11 03:47:45.075000','2020-02-11 03:47:45.075000',5,'Latorsha Smith','https://lh5.googleusercontent.com/-ur4BeU6xqGY/AAAAAAAAAAI/AAAAAAAAAAA/wZkcemGC-c4/c-rp-mo-br100/photo.jpg','14567670160750071148',13537),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fm6rxrC4kf6SREgigDRmrew9EPyO0DEoXHJTzfVKwtoftp8KV78vtTJwrDGQ_WcW02dtb7kWQlNLqg9Efx6wNSJLZiLw','Everyone here was very friendly and generally concerned with resolving my concerns. The facility itself was very clean and well taken care of. I was in to see someone in less than 5 minutes and out the door with all of my problems addressed in a timely manner. I definitely recommend this facility to anyone in need of emergency services.','2017-11-02 15:50:15.807000','2017-11-02 15:50:15.807000',5,'Mark Silberberg','https://lh3.googleusercontent.com/-PnmPkGoWOCw/AAAAAAAAAAI/AAAAAAAAAAA/5oOdfBzunbk/c-rp-mo-br100/photo.jpg','16590124370714063921',3910),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FMbuXemhnpTb3GvkOfat86hubXwrxAUxfxCj-HDUGHM-aS3Zku_intKs2vJ2AXbP4Vd609uBO3HlHLDa6sR1tTtBbJIY',NULL,'2020-07-19 18:25:30.665000','2020-07-19 18:25:30.665000',4,'Monica Garza','https://lh6.googleusercontent.com/-kz_h6p84ekk/AAAAAAAAAAI/AAAAAAAAAAA/lLciM__w0rg/c-rp-mo-br100/photo.jpg','14748677429039074158',21703),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FmCeOypEbQ552NYclskKxYEIcE_qTTwio9qpeDOKg1IGotfqzBzGDMALEG8JA9zoKY6OQ38lk7ZR-5rXqY5EWItBur0Q','Everyone was awesome and quick as always.','2020-03-09 14:32:44.705000','2020-03-09 14:32:44.705000',5,'monique bridges','https://lh4.googleusercontent.com/-jqlIH_ElCDA/AAAAAAAAAAI/AAAAAAAAAAA/SpFPBzSqNxA/c-rp-mo-br100/photo.jpg','16389487648212004696',13719),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FMd9sl9AkTUzpDeD4oI4na_J_2Yb4HJE1nZl6ptSXZOLRbFLavOTvRDIHHqqbZQg3tj-1GAugF6PDz3UX_wC0fkVlnuI','Very good urgent care facility. Amy in registration was very helpful in getting me the insurance information and discharge items necessary; Both Dr. Boester and RN Kelly were fast, but efficient. Having the flu isn’t fun at all. But should you need to stop in quick when you can’t make it to your primary physician, I strongly recommend this facility.','2019-03-24 23:30:36.673000','2019-03-24 23:30:36.673000',5,'Guy Williams','https://lh4.googleusercontent.com/-ga7Ksmk1R-c/AAAAAAAAAAI/AAAAAAAAAAA/qLB050pnZmc/c-rp-mo-br100/photo.jpg','3511292162159714121',7371),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FMHxxi3G48YfcubR1ow9cgn4QGNwYikF3qrFKDaPG0J-n3ylw_dvYj2qa3iyVizPt7JnpZ1a8YEk-cjSHXnf0Y0hJ-BY','Everyone was so caring and thoughtful. Amazing service from Dr. Nilang Patel, Nurse Kayla B, Rad Tech Jessica Nguyen, ER Tech Norma T, and Registration Jessica Rojas. Fractured wrist feels so much better than when I came in. Thank you guys!!','2020-02-22 15:59:53.079000','2020-02-22 15:59:53.079000',5,'xenia chavez','https://lh4.googleusercontent.com/-d0dJMt6seDk/AAAAAAAAAAI/AAAAAAAAAAA/V0YwMo56NjU/c-rp-mo-br100/photo.jpg','17898197009688164559',14138),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FMifXLRSJ-iOy68Ueqt8A8gUWb3Uq7yUdnW_qG2v68rqLKdXv2J0JQlJLAom0L7yNpIVcJvBUwtZchXQNRB3RC3dyktQ','Racist, rude, unprofessional!!! Would give them zero stars!!','2020-05-31 23:33:35.473000','2020-05-31 23:33:35.473000',1,'Jay G.','https://lh3.googleusercontent.com/a-/AOh14GgD0Ki5L8EiW2dIpInzLeICo5XBxuRXy9U6epwVBw=c0x00000000-cc-rp-ba3','17394740196501090048',22083),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fml9iibLfEvcjtKBjGc-Z0siiYn6DRS1zvucuZZtEcJ2FIQO6u56UUbKrnsYnFCn8vVru85dKfRLKIBkEXqzpGEZgb9M','Very friendly staff & fast service ! Stephanie greeted me and assisted me as soon as I walked through the door. & RN Rollie and RAD TECH Natalies as well as Dr. Daniels took very good care of me. I recommend this place 100%!','2020-08-12 03:43:48.346000','2020-08-12 03:43:48.346000',5,'Diana Santarosa','https://lh3.googleusercontent.com/a-/AOh14GgSqJJ8AV_GAVYE-R0paBZyG976TOLw5Bk4vT2coA=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fmm-EqGvZwVexzzb5HE4LeigpJQzYXhSECrlYV2wXMUDNKjDFjhhT34QC8LHwMN-Xd0CQ4JIh6BH7a0R9KmpkLJVZudk','Best care I have ever had','2019-10-22 15:06:16.610000','2019-10-22 15:06:16.610000',5,'Kyle Kinsinger','https://lh3.googleusercontent.com/-pHWIAyyaE8s/AAAAAAAAAAI/AAAAAAAAAAA/H7orZxyJz9U/c-rp-mo-br100/photo.jpg','16891069708558046635',4175),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FmncnqOFC-F2OfFR-Lb3UFVzhaQRUU9Beji8raxWjSBWGEtFqMPCTiUUYBvhbwtZiQk_m1sx5FxlBgXAxpXNyhtVw3eE','(Translated by Google) Everything was perfect they made me feel better and they are very kind since you enter\n\n(Original)\nTodo estuvo perfecto me hicieron sentir mejor y son muy amables desde que entras','2018-09-14 04:37:27.131000','2018-09-14 04:37:27.131000',5,'Ana Gutierrez','https://lh6.googleusercontent.com/-aanUai8gHNQ/AAAAAAAAAAI/AAAAAAAAAAA/JNIOaoxKV3M/c-rp-mo-br100/photo.jpg','14567670160750071148',22493),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FmoGlOQWTyA8Zic1fDj-YIKPAWjyyS27LgYMkaHEwYhk2-Ab9ALH4AhOaF8GxOwh7wYXm2SJTBRJvv4Q-7dfToBEJ4mk','They were great with my little boy!!! Dr. DeWaal, Nurse Christina, and Christina in registration we\'re professional and patient with him!!! In and out quick!!! Still got to have our pool party afterwards!!!','2018-06-07 17:38:14.448000','2018-06-07 17:38:14.448000',5,'kathryn breaux','https://lh6.googleusercontent.com/-MV252yaUogI/AAAAAAAAAAI/AAAAAAAAAAA/utT3l-oYk7U/c-rp-mo-br100/photo.jpg','16891069708558046635',4470),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FmoXITVp1Zj6YkSLjMO7LbTQ_l0X3r0QJwOPUPQlQUJKWLBPGH1GR6rPg1rrYhOnh0H0LwwCdesc-tYN3yt92juKgA94','Came around 7am in the morning to get a rapid results Covid test as I traveled recently internationally. Check in process was seamless, the ladies in the front office were very friendly, paperwork took only a few minutes to fill out. I didn’t have an appointment but they were able to fit me in and I was seen within 10-15 minutes of waiting. Very fast testing process. Facility is very clean (& cold, bring a jacket). I came to this location when it was under a different name 7 years ago and I can tell the difference with the patient care and facility. Will visit again if needed.','2020-08-05 12:36:32.917000','2020-08-05 12:36:32.917000',5,'Mishu Ullah','https://lh3.googleusercontent.com/a-/AOh14Ggpyzln9FMdfuM0K06W04uFvwvuwLn-sVB8L1oeiw=c0x00000000-cc-rp','14904078213800803294',21930),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FmUv5g8LccR55dZl8VPbs-5RrjUL7YYwxb91dR6QmpBwkYkF-z87XFDApjSBEdcVPX6J7WSNx6xUp-Rm4boORimFIA9U','Jacob, Rayven, and Lorena went above and beyond with my care today! I’m extremely grateful for them!','2019-12-21 13:26:49.194000','2019-12-21 13:26:49.194000',5,'Listen to Tk','https://lh3.googleusercontent.com/-pnDqcPAXYPk/AAAAAAAAAAI/AAAAAAAAAAA/QWpuo_tXFCQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3015),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FmWMfA3x_VhVRWcOHopUl_HmFgPHcYU3ygYmSzI6XT9JZ8cqYZywIg8irh7slMRfDxFDqs09hE9_ao6IG6HUR3210t40','The professionalism at the Cypress location was excellent.The bedside manners of Nurse Alvean and the technician Thuy Ann made us so comfortable.Mr Marcus the radiologist was very informative...and his smile and kind demeanor put us at ease. Last but certainly not least Dr Cavazos was was the icing on the cake.He was professional..direct and truley informative.I would recommend this 24 hr ER to anyone that I know. Thank you all......The McCarty family','2020-03-17 19:41:28.741000','2020-03-17 19:41:28.741000',5,'Alexis Mccarty','https://lh5.googleusercontent.com/-DyG8Qic4PNc/AAAAAAAAAAI/AAAAAAAAAAA/wov61EKiEq8/c-rp-mo-br100/photo.jpg','16389487648212004696',21008),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FN41EpZ9IKTn7C95Ga1EKEr5Fzj7xBh3KAKjsA4zsW7rVNFviX_yF0RnvoB-Cw15M7kndvkbb5k6rqHoHTxQxXkCVcy0','I can’t say enough about how great the experience was at this location! Fast , affordable and very nice staff ! Will definitely be coming back. \n\n-Henry Cartagena','2019-07-13 02:39:09.054000','2019-07-13 02:39:09.054000',5,'Henry Cartagena','https://lh5.googleusercontent.com/-wqf4E_0cnv4/AAAAAAAAAAI/AAAAAAAAAAA/m65X_k_k4xU/c-rp-mo-br100/photo.jpg','8918455867446117794',9091),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FN912NcPDGw3bcYhi_GQUPQSDXQizSjEV5xpejyHCsu2Ud5vAHRb063UrHIXSUu0dMZv4AgGpXi0JRSNoPtmG4x-JS2E','Great experience at SignatureCare Montrose! The staff were friendly (including the young woman at the front desk) and made me feel comfortable from the minute I walked in to the minute I left. My nurse, Marie, was incredibly warm and took great care of me while we were waiting for the doctor. Dr. Bansal had a very calming presence and took the time to explain what exactly was going on with my injury and what the next steps for treatment would be. Everyone was very efficient without making it feel as though they were rushing. I felt well taken care of and am glad that I made the choice to go to SignatureCare.','2016-06-03 15:14:34.749000','2016-06-03 15:14:34.749000',5,'Naomi Gonzales','https://lh4.googleusercontent.com/-pyP_WrkhM4w/AAAAAAAAAAI/AAAAAAAAAAA/OG5F11zC0Is/c-rp-mo-br100/photo.jpg','3511292162159714121',7993),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FnDXm5bkUHFHwLHnZL5_ZdLN12LxLedBUl6nLqHfNIFiQtMmtvziKqL4WQI_1jpygZkTj5z0DA-9RLrWO3qtGxB23Y6k','Dr. Nguyen, Nurse Kristina, Radiology Tech Tino, ER Tech Nelson, and May at registration were all superb. The staff is very personable they take your situation seriously and they treated us with respect and we did not have a very long wait. The examination was very thorough and we didn\'t feel rushed. If you have an emergency situation you\'re much better off going to SignatureCare then to a hospital\'s emergency room','2020-02-29 16:52:14.522000','2020-02-29 16:52:14.522000',5,'Staci Cherry','https://lh6.googleusercontent.com/-Mv9hWLdBoRw/AAAAAAAAAAI/AAAAAAAAAAA/eW1O6ft9MVQ/c-rp-mo-ba4-br100/photo.jpg','12541597562633926366',13326),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FNHbxnL2Q-Wxs91mg6dL01xUB7hjTVY2_qfE6Ub7uOeE1rAqq6YvPE4YviY5I-H8I8DvvYS-qk7buWMpm1kW2sfhtybs','Quick and very friendly service! We’ve brought our toddler here several times and have had nothing but great experiences. Very kid friendly. Adrianna, Theresa, Magali and Dr. Elsbecker were amazing this last visit! Thank you guys for having such a great facility!!!','2020-02-28 18:13:38.215000','2020-02-28 18:13:38.215000',5,'Maternity Chic','https://lh6.googleusercontent.com/-i4tB4rG0Z7A/AAAAAAAAAAI/AAAAAAAAAAA/vN7XEI_DO70/c-rp-mo-br100/photo.jpg','6521947413723274945',14532),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FNl5NcudOTMFRWheDKrwgRKBayrcTvn-lSI5Gz6jDfZtySU5cdxaFPC14wlRukPbgw-iwEbeZ6RG7uNBcCmnqMIpCZtE','I’ve been to Signature Care in College Station twice within a month - the first time for strep and the second for an injury to my foot. Both times I’ve been completely blown away. The staff has been nothing but phenomenal, always making sure I had everything I needed. I would reccommend this location and clinic to anyone! Special shoutout to Alexis, Anthony, JR, and Dr. Ortiz for helping me today with my foot injury!','2018-10-04 19:01:29.865000','2018-10-04 19:01:29.865000',5,'Leah Rhyne','https://lh6.googleusercontent.com/-BUckYwcyvmU/AAAAAAAAAAI/AAAAAAAAAAA/9MiU2c5Hm1U/c-rp-mo-br100/photo.jpg','16590124370714063921',3714),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FNNGDbLFBTU4qQFcd055sb3I-UUOjaV5M6x0GqKZ2y3PdwN-cD3kv9djDvYizqzQgG22_JSPMk9P8JWLksG8krI-zp54','I had to go in & be seen yesterday, & they got me right in!! Jennifer D, got me registered & set to be seen, & she was very helpful & friendly!! My nurse was John & Val did my I.V., blood draw, x-rays, etc!! They were both on top of things!! Made sure that I was ok, asked if I needed anything, & just made the whole experience very Awesome!!! If you need urgent care, I would definitely recommend them!!! They care about their patients!! I can\'t remember the dr\'s name, but he was Great!! If you go to the er, you\'re lucky if you see the dr once!!! But, he was in & out to make sure that everything was good!!','2019-03-05 13:45:06.558000','2019-03-05 13:45:06.558000',5,'Martha O\'Brien','https://lh6.googleusercontent.com/-uiNCrMs_jAY/AAAAAAAAAAI/AAAAAAAAAAA/PnpzwForSkI/c-rp-mo-ba4-br100/photo.jpg','8626688543755174284',8540),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FNnWhNKftQ0r-IaoK2BXsHa_Y8ZKg1bgP_6A96l0amzJbf3ExFAHwsnIE1f6d3O8UoiR4pfK2QpiE4SjRytZxaVnpdHM',NULL,'2018-01-17 21:52:35.977000','2018-01-17 21:52:35.977000',5,'Erika Thawley Caldera','https://lh5.googleusercontent.com/-BC1z0jIvktI/AAAAAAAAAAI/AAAAAAAAAAA/lGZF1thLcZs/c-rp-mo-br100/photo.jpg','14904078213800803294',2290),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fnp8e8U3-UoPh1ALiaDO0UeP-1VrXyGTA71Y_mKpq1O3wMYr6utS444FPrNkM3E3cWu0qB0MbHX7qKnyuUbuU5b3GUXg','Clean facility great team of people really focused on my wife\'s health.','2019-03-28 21:13:00.997000','2019-03-28 21:13:00.997000',5,'Alika Hairston','https://lh6.googleusercontent.com/-4K4KKUwu0sk/AAAAAAAAAAI/AAAAAAAAAAA/9mU12LFmeow/c-rp-mo-br100/photo.jpg','2694018788013845459',6176),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FnPR2doKLonr6ecAQfi0o0x9UjswvjvyD-FPPZ7yRfIr3UWjiFHZgHHdkUWraXXRLBEFJ5bY3yStV_lqxLXXxn8qFaes','This was my first visit and I\'m glad I chose signature care for my emergency. Everyone was polite and very accommodating.','2020-03-18 00:43:56.956000','2020-03-18 00:43:56.956000',5,'J R.W','https://lh3.googleusercontent.com/-E8qvlHvRkbA/AAAAAAAAAAI/AAAAAAAAAAA/qK_XsEpGcoY/c-rp-mo-br100/photo.jpg','16891069708558046635',21046),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fnq4C_JjNyL5oVDEZWiWJRTk3PIrv8iW5EWW0mIikhMx1pIcil3KyvG4wpKzzBn4rjPilIz6RKrr0sbqmUgapbcNIlVw','Fantastic, fixed me up good. Kim, Anthony, Rayven, and Keera were all great!','2018-09-13 00:58:30.508000','2018-09-13 00:58:30.508000',5,'Matt Hafer','https://lh6.googleusercontent.com/-w-Dug0OX-X0/AAAAAAAAAAI/AAAAAAAAAAA/5yt0D072STE/c-rp-mo-br100/photo.jpg','16590124370714063921',3732),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FnTZNZ0E9q0ugeUFc4HRRe_cGvAIVt9O0KL9rnQj2bflbTJ7Qrwj8xALXEYxagOOkbFyCAHMfDvTLT0nBTFo7kqan49Y','Wonderful staff, very welcoming atmosphere, everyone greeted my crew members and I with a smile. We were offered a tour of the center as well as snacks and drinks while waiting to transfer a patient to another hospital. I would definitely recommend this SignatureCare Center to anyone in need of medical attention.\n\nThank you to Dr Yusuf, RNs Gina and Hamzah, Er Tech Olivia, RadTech Dion and Genesis in Registration!! Y’all rock!!','2019-02-03 21:30:39.697000','2019-02-03 21:30:39.697000',5,'Amelia Merchant','https://lh5.googleusercontent.com/-WmMI4ynorl0/AAAAAAAAAAI/AAAAAAAAAAA/1cSeQ1HHsRg/c-rp-mo-br100/photo.jpg','3511292162159714121',7415),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fnw-FVozqS8XiVMR9ucvF75atee9dvpppSBbF4etmfPGym0L6ftE6u4j71JCn9Vaq0mjL6gh-NesGtiGajNdUB1wV6R0','Great place, very clean and efficient. They all work with the customers best interest in mind shoutout Cody and Emily are great! Highly recommend for rapid COVID testing!','2020-07-29 17:22:22.192000','2020-07-29 17:22:22.192000',5,'Sarah Weathers','https://lh5.googleusercontent.com/-tlJESNc5QDM/AAAAAAAAAAI/AAAAAAAAAAA/gy1mEwgytW8/c-rp-mo-br100/photo.jpg','2077061009497551125',22955),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FnY68dOJLEx4Cd94NDkDGuIXnpHreKgFfYJ89Ztz9KFaC4aRc7XWysX01UhNmyE3Fz0uuKVAlFzoeHy3tP68pO1ii_Qg','Great service, staff is very friendly, Doctors, Nursing Staff, and Receptionist are very professional. In and out in a timely manner and generally no wait. This place is very clean and comfortable environment.\n\nBeen at the Memorial City location three times and highly recommend this place. Thank you SignatureCare Emergency Center.\n\nThanks Scott Blanchette','2018-05-26 10:54:30.262000','2018-05-26 10:54:30.262000',5,'Scott Blanchette','https://lh4.googleusercontent.com/-fU2hAbIp0IE/AAAAAAAAAAI/AAAAAAAAAAA/IJ4vnATgVoY/c-rp-mo-br100/photo.jpg','14904078213800803294',2252),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fo9O3J34rPFoK16HsbNg2chXMGh9hadkQRzYS48bCXLy6c4WrK4SCcrm2ElGGVjLokWJieeu-SpcCUULMPtA-SXEBOlY','Been here once myself. It was good. Husband came here once- it was terrible. The Indian doc should NOT be practicing medicine. PERIOD. ','2017-04-25 15:53:36.789000','2017-04-25 15:53:36.789000',2,'Reb Beavers','https://lh5.googleusercontent.com/-DJO30ieBYwM/AAAAAAAAAAI/AAAAAAAAAAA/BLIfH9Fvhm8/c-rp-mo-br100/photo.jpg','14567670160750071148',1838),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FO9Xi6AW27Q-jr55xzzoG2cq-W4sCt04nzPunAdOk8iR2sO_c86kmhrqDxzed-8ZIEax_qqoOPpyfL1vh_nO0U0OXYCs','This place is great. Went in a 5 in the morning with severe abdominal pain as well as other complications. The nurses and doctors were incredibly friendly, and made me feel 10 times better. I would recommend this emergency care to anyone. They really take care of you here. I received much better care at Neighbors than any other hospital ive been to. ','2013-07-16 02:04:11.252000','2013-07-16 02:04:11.252000',5,'Rebecca Sims','https://lh3.googleusercontent.com/-nWPJlZRhvKM/AAAAAAAAAAI/AAAAAAAAAAA/NSEtyxXTfrA/c-rp-mo-br100/photo.jpg','8679688254631342173',8948),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fobsnv1nrJ7YZG2ATKrFPJkrV7ThL-ojuQze1yKrdoPs4UytfrYuKxw7EA9Y0gNi0HFcYp6DLZhye82UtaSYm1l8vogg',NULL,'2019-11-11 15:26:12.110000','2019-11-11 15:26:12.110000',5,'Shelby Darnell','https://lh5.googleusercontent.com/-q9MsNq0FKBU/AAAAAAAAAAI/AAAAAAAAAAA/ocARUcc8HpM/c-rp-mo-br100/photo.jpg','8626688543755174284',14660),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOBX-TtWjbkTbAU1F0R2oMJygaxm2rfdJNLHeoI09vhoNHG5JYZJCG_s3DCZM66QcatA_pkUsBT3aogBArYxhdmNBrS8','The entire staff was friendly. Dr. Yost was wonderful .','2019-07-22 17:04:13.612000','2019-07-22 17:04:13.612000',5,'Vontrisha Washington','https://lh6.googleusercontent.com/-ivbUDoHPfsU/AAAAAAAAAAI/AAAAAAAAAAA/25DLqbMw0YU/c-rp-mo-br100/photo.jpg','3272657195432704501',6936),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FoDKP6t2RXXxlipzgUY3-zkv8sAHGF4hj1RKYlOQJbhG4ZynseZoBzLLOw7rQ_3AELXhkJ9B4Xf_2ZTg9g4n5QT-nohs','I am a first time at an emergency and the whole staff was very knowledgeable, concerned, and friendly. I will like to thank Dr. Daniels for her patience and creating a worry free zone and Radiologist Bryan for letting me forget i am in an emergency room. He was so funny and friendly he lets you forget that you are in pain! #signature care #awesome','2018-08-30 06:06:11.772000','2018-08-30 06:06:11.772000',5,'Terrika Turner','https://lh3.googleusercontent.com/-vb_zIfWD7UA/AAAAAAAAAAI/AAAAAAAAAAA/XfSxed9AZck/c-rp-mo-br100/photo.jpg','14567670160750071148',1539),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOIEp1CWP7mvHS01Od8EWTwpCFlZ7mye-SHXeq5ykIUMozQgcIEL_H57sWwUeNaHB5hoatFijMapsKwpKhozPoHZSgyI',NULL,'2020-07-20 14:41:48.121000','2020-07-20 14:41:48.121000',5,'April Witten','https://lh4.googleusercontent.com/-UsytMnmOjGc/AAAAAAAAAAI/AAAAAAAAAAA/edrjvyHneag/c-rp-mo-br100/photo.jpg','14748677429039074158',21673),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOj-g3Th8p6MX5ZENmPz2DpDIJ1GGScWUuowbYmIsaG8CgABASwAGIZWCIISLVJq4vwpQ-surRHXBmzXVKBRzIQxCsTw','Dr. Patel, nurse Sarah and Tamisha were AWESOME. Seriously awesome. They were very knowledgeable and had great bed side manor. I got in and out, in under an hour and was properly diagnosed and treated. \nI am never going to the hospital E.R. again!','2019-11-08 03:00:41.775000','2019-11-08 03:00:41.775000',5,'Audrey Cooper','https://lh6.googleusercontent.com/-5qtgr4gYRAU/AAAAAAAAAAI/AAAAAAAAAAA/VOMOxS6V3CQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5455),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOjTMQ4p5x0Q8JNNsCs8SPqNf-f_bc7Gi-1e6JWf3NwNNzWaFm5ILdoq7Aw1nAErDUPHuEh0--azgNrd5_SEXZN_2ESc','1st visit here! Very happy with how fast and friendly the entire staff was.','2019-05-20 20:26:16.688000','2019-05-20 20:26:16.688000',5,'Tim Armstrong','https://lh6.googleusercontent.com/-W2jJU4zJsEM/AAAAAAAAAAI/AAAAAAAAAAA/TkxKn-pi6wE/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3383),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOlrx7rB5hihcDGi3filo1Qjxb0kBtDARDRj8Ax1NVz2hmJZXQB0_ouEWDycEwcQ_trkNgdRgBwagjhDQKctr720oy_s','Great service, fast and friendly. The Dr. takes his time to go over everything and explain in detail condition and relief. Thank you for the great service!','2020-06-30 16:20:42.335000','2020-06-30 16:20:42.335000',5,'Derrick Black','https://lh6.googleusercontent.com/-l-Ku7nVDY9Q/AAAAAAAAAAI/AAAAAAAAAAA/SrQwXvbycuk/c-rp-mo-br100/photo.jpg','13486358490203335051',21355),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOORUx3MFQJUThfX7mexv6H9jH-bht-Rw2Td1Jh7uipSMGJ00mhM-4ndjBwWw7e7B27Sprtj8e2ad3yjFfD0rJFdxvp4','This facility is extremely clean and smells fresh despite being an ER. Staff worked quickly and efficiently. The doctor and nurses are professional and attentive to patients. They made sure that I was as comfortable as I could be, considering the circumstances. They offered warm blankets, listened and sympathized. They addressed my concerns. I\'m grateful for the staff who helped me recently: Registrar Malissa, RN Kristina, and Rad Tech Quyen.\nUnfortunately, a few days later, my experience with Dr. Castaneda was extremely poor. He is extremely arrogant and unnecessarily aggressive. My husband and I were not pleased with his behavior. He argued with me in front of my sick daughter who is 2 years old.','2019-05-25 22:28:04.420000','2019-05-25 22:28:04.420000',2,'polarbear442','https://lh4.googleusercontent.com/-n8k_z7PhN0c/AAAAAAAAAAI/AAAAAAAAAAA/9AWj1uEGEx0/c-rp-mo-br100/photo.jpg','12541597562633926366',502),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fop76QmEXVqeDnxpYt1Y1W-_JFtHiHcXXa_ve7jbuho86NyeVCSGHi3IB55sRyDCwHt4k69YsG09dxJMQ9OqAr0RvJwc','Everyone was very friendly and quick. Sita, Kim and Allison were very kind. I would recommend to everyone.','2019-08-07 08:07:46.740000','2019-08-07 08:07:46.740000',5,'Bridgette','https://lh5.googleusercontent.com/-0Hw608nCeb4/AAAAAAAAAAI/AAAAAAAAAAA/varpxRbnobs/c-rp-mo-br100/photo.jpg','13486358490203335051',865),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FoQI4_yN64tL6doRW4iRz_wYTxcxDOR9wZq2ozbVPySE5HBkpFQ0sLRgPcJ6WWqujVuRs0KhWldLZUBfFJPqJaN_I3UA',NULL,'2019-02-03 15:10:25.737000','2019-02-03 15:10:25.737000',5,'Stefani Castillo','https://lh6.googleusercontent.com/-t_xvfCQaK-I/AAAAAAAAAAI/AAAAAAAAAAA/LeIoIiO4Ey0/c-rp-mo-br100/photo.jpg','17394740196501090048',4724),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOS4AcO665_ZEz4BdaM2OhEjyWB9WIxdVbwZE_psyIypCwfG52F4sVe1uZWq7ldL0jAUnTcBTh1iI-AEWQ7qhw1vEGTc','Was great!! Really fast and nice','2019-09-01 03:13:30.574000','2019-09-01 03:13:30.574000',5,'Megan Adams','https://lh5.googleusercontent.com/-DxZwUB2nsyk/AAAAAAAAAAI/AAAAAAAAAAA/opMW8pjur4I/c-rp-mo-br100/photo.jpg','16590124370714063921',3224),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOSdFvUkM3SIgdu37GYmOSONCKI1JMsFAZ4anL3wdJ2_kgfRrXOOOjXhPs8AaPyL-HIWTvUCvNj_8oizKPrg-azzuTx8','Clean, polite, fast and professional','2016-04-10 21:07:16.508000','2016-04-10 21:07:16.508000',5,'Donna Hodge','https://lh6.googleusercontent.com/-ZY9ztDQ-AXM/AAAAAAAAAAI/AAAAAAAAAAA/LHDxw1Sptxg/c-rp-mo-br100/photo.jpg','17394740196501090048',5267),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOSobSG4__sLitv9lKPoH5EkTQvesXwtv1brsiJ58UMWu_XjhkJw8Y6hhfgLDXZf_9yoShqot0GeJ2Vt1qf5orRKZMgs','I visited the emergency center for a cut that required stitches. The staff was great! They were professional and personable. The service was quick and the center was clean.','2018-02-22 14:01:11.495000','2018-02-22 14:01:11.495000',5,'Cindy Breed','https://lh5.googleusercontent.com/-ZUHVSafe9xo/AAAAAAAAAAI/AAAAAAAAAAA/bNGAwKG-Wpk/c-rp-mo-br100/photo.jpg','16891069708558046635',4508),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOtMEOPHeU9MgGA_fa9xqqhCGsulcfZ9q2DdPTW-Z6ITf7j1bT3gAwmsI2vJd4hzKNpvZP9iJUtCmZtp5G-QWBCLc_8I','First time using them and of course, it\'s only been a week since my visit, so I still have to wait for the financial shoe to drop😄. Either way, the visit overall was a great experience. It\'s flu season in the worst way and I was ready to get the worst news. They checked me and gave me good news overall. The doctor explained the medical attention (meds) would be for preventative measures, at that time. They gave me meds right there and monitored me, to make sure I was okay,. The attentiveness of doctor and staff was very comforting, better than any hospital ER, I\'ve been in.\nIf need be, I wouldn\'t have to think twice about going to SignatureCare Emergency Center again. Thank you very much!','2018-03-04 15:55:49.342000','2018-03-04 15:55:49.342000',5,'Jermaine Lynch','https://lh4.googleusercontent.com/-zciS_zpbTAg/AAAAAAAAAAI/AAAAAAAAAAA/VbfeueE2swo/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4874),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOtvyL2gtgiJN0aXSQ9ALcOpUIIVImJfyb5PJnFJUY9VGQOzvkEHTxuVGh5M7CaNsoEhfqgx2V1SLstlmnKhjqFkL42M','Quick service and amazing nurses amazing work\nAshley s','2019-07-10 18:55:48.165000','2019-07-10 18:55:48.165000',5,'Jeimi Sorto','https://lh3.googleusercontent.com/-WBHPmQjj8xc/AAAAAAAAAAI/AAAAAAAAAAA/Iykwb2qUYNc/c-rp-mo-br100/photo.jpg','17394740196501090048',4633),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FOy5Ir8R8auin9OYigA2UV_YK5MElLFv8M3NLXn8Z4-qiNHcSMByaxGC9wZBwOihV2kHM7oN0plo44YV81t2nWqeItVw','This place is very quick and has a great staff. Highly recommended for top notch quick care.','2016-08-26 13:51:13.351000','2016-08-26 13:51:13.351000',5,'David Alldredge','https://lh3.googleusercontent.com/-0FEQwvRBXmE/AAAAAAAAAAI/AAAAAAAAAAA/N5jqjbT6RTc/c-rp-mo-br100/photo.jpg','3511292162159714121',7945),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FoyB2hgeGxY5chCsbVHrp1S-sa_8cmLDUD84ZujjJPOrd4wGVTUo-AQAiZJepnmZyXCraOYqQ6zrGARpIXh_JSC4lLu0',NULL,'2017-01-16 16:33:01.930000','2017-01-16 16:33:01.930000',5,'Erin Robertson','https://lh6.googleusercontent.com/-OkUkj5aRftM/AAAAAAAAAAI/AAAAAAAAAAA/o85_qNvROy0/c-rp-mo-br100/photo.jpg','3511292162159714121',7901),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FP_G1wDlWLrA3fHHinOlHwiJR06i6-09E2elhk2xEL2LidrIJBaUNGX4M424gLNPbC0CHG2e5G5RE6Ak_H-JOHpIwUjo',NULL,'2016-08-22 00:30:17.550000','2016-08-22 00:30:17.550000',5,'Dolly P','https://lh5.googleusercontent.com/-razYsxrSCww/AAAAAAAAAAI/AAAAAAAAAAA/h9DAoDCwaUw/c-rp-mo-br100/photo.jpg','17394740196501090048',5212),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fp1mIKVEywe35Gt5YTvqsr8e1tRtc-dyUOAEMpl1ZfNNNnLNWtW-aH_UhhW1h39rvYAzSBBtANaKVJDUwpR6iYuQP808','Very dependable and fast giving good quality care. Maya the receptionist was a great help! Highly recommend!','2019-12-23 21:03:19.089000','2019-12-23 21:03:19.089000',5,'Geovani Ramos','https://lh4.googleusercontent.com/-PCJ-0S0p7Q0/AAAAAAAAAAI/AAAAAAAAAAA/gNfCY5CtW5w/c-rp-mo-br100/photo.jpg','12541597562633926366',316),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FP2v6PPFEhJSHen_O7rf1PkychB-XfeWs_sMpccBB_L7h4eu5EEiXXpv1aqPBukX2H5y-AUKhHFptqgyJWdDd0OPM6OM','My MIL had an allergic reaction to some medication that were prescribed to her. We came to this location around 10:45 pm. The moment we walked in we were greeted by the ladies at the front desk in a friendly manner. We were checked in and sent to the back immediately. The staff, Dr. Harjai, nurse Ekaterini, and Kay were all in the room immediately to check out my MIL. Everyone was so pleasant and extremely friendly and made the anxiousness of what\'s going on with my MIL that less stressful. I highly recommend this location and I hope everyone gets the opportunity to be taken care of by the staff members.','2019-07-04 04:38:56.880000','2019-07-04 04:38:56.880000',5,'Julie Reath','https://lh4.googleusercontent.com/-goVII1m4q6I/AAAAAAAAAAI/AAAAAAAAAAA/k0S1KaUQhpk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fp3hEvRzvXoSmPi0WL-M3HBeGvsqBqvxA4Oo39tcVkzI_iU3y7PNCoUdMqvGJpG2SKBmxhha1W1VzvPqcnOZopEQ4StY',NULL,'2019-01-03 17:47:48.289000','2019-01-03 17:47:48.289000',5,'Preston Jeffery','https://lh6.googleusercontent.com/-dwkcF9iMQ7M/AAAAAAAAAAI/AAAAAAAAAAA/uZ05rqcbMJg/c-rp-mo-br100/photo.jpg','8626688543755174284',8615),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FP3Zm1oX9TGV-Ug_L_Uof9LNWBKd4XZ3JTsGkIieytmMLr-t7xRz69XsLUqa1XBBDoabMDXga9KWOk0htX0aHxn0U5Ng',NULL,'2019-12-03 04:06:34.700000','2019-12-03 04:06:34.700000',5,'Laura Montalvan','https://lh3.googleusercontent.com/-u-GtvDuAkDw/AAAAAAAAAAI/AAAAAAAAAAA/K6yOXf4vSqA/c-rp-mo-br100/photo.jpg','3272657195432704501',6847),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FP77OcysJueSUZK2FptLBN3kY9Gxjb7EE3_0lmRgVzLzaMxWIPHm0fh5Nfat0G4TmTL4ruTerKicp3rfrUmoepKHEGbw',NULL,'2019-08-30 19:29:20.863000','2019-08-30 19:29:20.863000',5,'Mathew Kkd','https://lh5.googleusercontent.com/-VR1BRgyH7ro/AAAAAAAAAAI/AAAAAAAAAAA/0aObZNQjwPo/c-rp-mo-br100/photo.jpg','17394740196501090048',4612),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FpBDLXdBOt_nOkxwBh9GUVVI1Qw9c96RjdPBXsSkxhhI4QJSCeQJk3N6nl3Oow2cagL-t-GUTnGtfgBvy4X0SZK-e12A','I want to thank you for taking care of me the last 24 hours. This was such an upscale facility and was treated like a princess. I would highly recommend Signature Care (Bellaire) and come back but not under the same circumstances. This was a better place than I have been to when it comes to emergency rooms or hospital stay. To all the staff my nurse Karen, Ms Delicia, my doctors Dr. Alloju and Dr. Ybarra for your patience and care. You made me feel better by explaining my condition and treatment where I was able to understand fully what I needed to do once I left you’ll. Thank you to Max and Jessica for also checking up on me. Thank you again for your care','2019-11-04 16:54:12.520000','2019-11-04 16:54:12.520000',5,'gloria molina','https://lh5.googleusercontent.com/-EWt1z3AZwlA/AAAAAAAAAAI/AAAAAAAAAAA/XCr_gJhTxUk/c-rp-mo-br100/photo.jpg','8679688254631342173',8751),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPbHLm3zzg0hthZeGKkhYcLvVclLrUzSRp1909-iRa18eJpKN3T5eVTA1pP4llPgLVx_cxUynOKBw5S6iTtOc0BNva_E','I was in Houston for work and needed urgent help for an asthma attack and sinus infection. I googled and found Signature Care and was SO grateful for and so impressed by the level of care and experience I received. The doctors and nurses were experienced and kind. I hit in very quickly. I was able to get an X-ray in site and all the treatments I needed to get my asthma under control on site. And I was able to spend the night in a private and comfortable room. Thank you Signature Care! I wish you had branches in The Bay Area where I live. It would upgrade my quality of care.','2019-04-05 15:46:34.311000','2019-04-05 15:46:34.311000',5,'Karin Gornick','https://lh3.googleusercontent.com/-4GX7D46F6yo/AAAAAAAAAAI/AAAAAAAAAAA/XGAwrI6hpjQ/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPc4ti0xuh_5LqPa26AcVw2gWHme9uAfOjHzUq23fxBU0MGwDBRdPHgqbDkVQ9Dwao85AK0l3g0SoAejCtHd3PlQF3bo',NULL,'2019-10-24 18:41:13.725000','2019-10-24 18:41:13.725000',5,'Wafe Fayad','https://lh4.googleusercontent.com/-m2HFJ141498/AAAAAAAAAAI/AAAAAAAAAAA/cJe7B_EHYuI/c-rp-mo-br100/photo.jpg','16389487648212004696',2779),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPD_mFV1aUdiBvjAeu4KK5Cu8KVLNythxdlPddT0ZZ3ZebC83QmPJ2_nZnz1F6NUaKVO2mQNc8jin7OEZM5JOORKW2fU','This is definitely the best ER. Dr. Golla and staff treated me from the moment I walked in as if I was the only patient in the facility. Like most of us do, I diagnosed myself before I went in. Thinking antibiotics would solve my problems. Dr. Golla suggested lab work, a CT and an ultrasound. All were performed within 30mins. Test results were received just as fast. Unfortunately, the results were not good and I would need to have surgery. I assumed that I would have to be transferred and admitted into a hospital. That wasn\'t the case. Dr. Golla called a general surgeon over to see me. They were able to get me into the Operating Room the same day. Their physicians have continued to follow up with me since I\'ve been home. I strongly recommend SignatureCare and definitely will go back if me or my children have another medical emergency. ','2016-02-01 04:12:35.434000','2016-02-01 04:12:35.434000',5,'Angela Mendiola','https://lh4.googleusercontent.com/-HXj2pWEyi2g/AAAAAAAAAAI/AAAAAAAAAAA/d092Y6pQJ4Y/c-rp-mo-br100/photo.jpg','17394740196501090048',5289),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FpFAQr70CXBzFP9AMY-mwI4NIEKFvR5h-gBn51uspndiV5fHrHIE8yHo76lTY8-B6eDsjUnpmPkTG6fTG5p88arq8Hgw','I went to this facility with the thought it was going to be a bad experience. I have been to other freestanding but this was nice and clean. I felt really crapy but when the receptionist, Torie, greeted she was so kind and got me back to the nurse so fast. The nurse and doc we fast as well. The nurse even walked me back to the front were the receptionist was who asked me if I felt better which showed me she care. I hope I don\'t have to go back to an ER but if I do this is where I\'ll go forever!!','2016-06-19 20:03:38.906000','2016-06-19 20:03:38.906000',5,'Tom J','https://lh5.googleusercontent.com/-EMyridQlOkg/AAAAAAAAAAI/AAAAAAAAAAA/DdpR6HVsjd8/c-rp-mo-br100/photo.jpg','3511292162159714121',7977),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPHEI_vzf5Mpn7klKnbJPizHM8nJVYApl5-hwiTTsHDWLiewo3xl17eo4uv0h9T531xsBITOusc-ryx1HecrCNL6GnwE','Always quick and quality care. Chris is amazing whether he’s at the College Station or Austin location. Freddy was amazing and provided outstanding care. Best healthcare facility in Austin. Super clean as well','2019-03-26 03:51:54.498000','2019-03-26 03:51:54.498000',5,'April Strub','https://lh3.googleusercontent.com/-MMDnBLPyiAw/AAAAAAAAAAI/AAAAAAAAAAA/PdtHzITil5A/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4315),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPIwHBvrE0TDUtHWRNfJ3KDyYC_nvNDHgheC_IpQuL0t8x7o9-g8mhdWfwv1C7vU4e0uagjsKFWP_lSY2GooBfwzrVmM','Nice and friendly staff!! Doctor Chukwuma MD, nurse Shelly D, rad tech Heather G, er tech Danny and of course the Tanisha W at the registration they were all super friendly and helpful REALLY RECOMMEND!!! Thanks alot!!!','2019-05-10 05:52:37.760000','2019-05-10 05:52:37.760000',5,'Marisol Lozano','https://lh5.googleusercontent.com/-06KY-af939c/AAAAAAAAAAI/AAAAAAAAAAA/qVfyK2G65nE/c-rp-mo-br100/photo.jpg','17898197009688164559',5744),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPKXoUbRMzQVayR945D76MObePCk8z23fRyoFgHmgSB-xDDr06rhOs6VNNLwPie9mt1KKWSSBBKZA1XRGFEdWe7OjCp4','Thanks for everything. You guys were awesome like always. Thanks Sarah and Tanishia and Dr. Lindsay. You remembered me from my previous visit and that was appreciated. Personal.','2019-12-06 00:49:46.936000','2019-12-06 00:49:46.936000',5,'qioanna','https://lh3.googleusercontent.com/-B_q1Iq_W3cI/AAAAAAAAAAI/AAAAAAAAAAA/7eo9LfL1ISg/c-rp-mo-br100/photo.jpg','17898197009688164559',5378),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FplP8CQO9u7TjVyaCiBMbyfOYy3Vx7ZEASk08FBJIckoXGmU_71QoP1_ahnShZE3PdVmUHVC5gyutOz_pJnQVIIV4Zxw','This experience today is the best I have had in years Dr. Harjai, Alvean, Tricia, and Jocelyn were great. Very patient and help. They all took care of my daughter from the time we entered the front doors entering the back and leaving the facility. This is the place to be even with an injury.','2019-09-18 22:05:15.373000','2019-09-18 22:05:15.373000',5,'Kenya Young','https://lh6.googleusercontent.com/-Lmg6AE64ALA/AAAAAAAAAAI/AAAAAAAAAAA/NlZYH0mnvBc/c-rp-mo-br100/photo.jpg','16389487648212004696',2898),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPmwJjikc7hRWSCf95JzdiNaN2FdX4aHe7e0Ja9xXBjA0b_OIrnXu5V48uInkTP05OBwsJGomEknpIlw9dAdeFxC1WqA',NULL,'2019-04-03 17:54:02.327000','2019-04-03 17:54:02.327000',5,'Hannah Ratcliff','https://lh5.googleusercontent.com/-rLcwYuwXMVw/AAAAAAAAAAI/AAAAAAAAAAA/nHztUu4Nq8Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3459),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FpPS5-lBor0K69CTIu58HImI4Y76Cu3Fq7FM6eKYIpe22mteyp_JO5RwRUzEZ7fMLfpEkb_Z35jyZaefE8IMa83lxkMM','Awesome service. Dr. Ybarra was amazing! Fast service. And the staff was nice and friendly.','2019-10-30 02:29:41.918000','2019-10-30 02:29:41.918000',5,'Joy T','https://lh4.googleusercontent.com/-fnaSjoCOdPI/AAAAAAAAAAI/AAAAAAAAAAA/RPtpaTLrZAg/c-rp-mo-br100/photo.jpg','17898197009688164559',5471),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FpRRFK3vwti4lymKhZXzJmD-NBEsjkjiRQMLSKeFHcM1hjnOt4CwfI3vsrEDhvR08Boba9WDaZTkjCQHiZnALZ7SBkok','Robert is extremely rude, uncaring, and needs to find a profession that does not require him to deal with people since it seems to be entirely too taxing on him. People are at their most vulnerable state in the situations that bring them to an emergency room. You greeting them with all kinds of hostility, making them feel they have done something wrong just by being there, then you need to reevaluate why you are in a profession that requires compassion and concern for humanity. I\'ve spent plenty of time in the medical field and know for certain, this only makes things worse. Patients, especially in an emergency situation need to know they are going to be ok and safe at your center. It requires a special kind of person to do this type of work. The way the staff apologized for his demeanor tells me this is an ongoing issue that should be remedied. LOCATION SIGNATURE CARE MISSION BEND HWY 6.','2019-12-31 14:30:23.434000','2019-12-31 14:30:23.434000',1,'Jodie inTexas','https://lh5.googleusercontent.com/-fpVmxDGeC9M/AAAAAAAAAAI/AAAAAAAAAAA/3cc-mTTH4vI/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',14060),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FpsRwbr8jyY7Y62oqbfVATMiH9OVoCUO3DheDkSilPrGBRTs1nob7BkVwnv0Ti1h_7W21La7goBIMvU1gufi7dfFxJ2g','Dee Saldivar always has such a smile on her face and is makes coming into an Urgent Care a breeze!!','2020-02-17 14:59:48.115000','2020-02-17 14:59:48.115000',5,'Amanda Washburn','https://lh4.googleusercontent.com/-p7kqErAhqOE/AAAAAAAAAAI/AAAAAAAAAAA/45PKByc1iOI/c-rp-mo-br100/photo.jpg','3511292162159714121',14413),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fpv8J7eSizHmdEer2hGeKnJCwuCn8TtPYf_GEHZuD3R4mYLB1PBHbIgYrKFTSHJiEdVLkmPlV8CSKP-rBYkbqpIQD9sE','Very clean, fast ,nice staff very professional','2016-05-08 20:02:33.324000','2016-05-08 20:02:33.324000',5,'Jorge Ocampo','https://lh3.googleusercontent.com/-lrihtFp8kTs/AAAAAAAAAAI/AAAAAAAAAAA/w6aCY-yUQsM/c-rp-mo-br100/photo.jpg','17394740196501090048',5256),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FpW4TANuVXpWMtA-Qa2U4frZWu_aWG3QPgNAQnHMpcN6cmmwUawPAg3acKkCtf-mC8lXQLZLgK5l5vTnuJDhbT12jMPI','Fast, friendly staff. Highly recommend. Love signature.','2020-03-08 02:59:29.233000','2020-03-08 02:59:29.233000',5,'Savanna Silvas','https://lh6.googleusercontent.com/-DQBcNrkvrDs/AAAAAAAAAAI/AAAAAAAAAAA/g4Kwzq2TfT8/c-rp-mo-br100/photo.jpg','6521947413723274945',21178),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FpX_00i592bGw19guHRANvrM32Q-YQBOVPSAHgXXjheeLS9LfbGMztTlD7Kc7sAl8v6_UB19T9Id8N0RpmnhLRFQGjIk','Great, quick service... diagnosis and meds in no time! Patricia was able to check me in with ease and compassion and Marcus was very personable and efficient.','2019-12-08 16:21:02.671000','2019-12-08 16:21:02.671000',4,'A M Clark','https://lh5.googleusercontent.com/-YzGC-q96Wzc/AAAAAAAAAAI/AAAAAAAAAAA/KPi1TBc5Ldg/c-rp-mo-br100/photo.jpg','16389487648212004696',2565),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPYyGD44Xlt8y_AUUybf-1W-0kjqxjW7MC_iY6CMyWY3yfjfLLq65PfSel9duCEwFs3DbkAceZ2hpzlipk_N3MXvKup8','being an overprotective parent like I am.. I took my 6 year old in at 1am. Thank god they have coffee! Everyone I spoke to was so patient and polite! I would recommend this place to EVERYONE. The doctor there was so nice and caring! we were in and out way faster than other ER\'s I have been in. This Facility is 6 stars! ','2015-04-25 00:18:09.241000','2015-04-25 00:18:09.241000',5,'Leah Bryant','https://lh6.googleusercontent.com/-oWO72XjNQ_g/AAAAAAAAAAI/AAAAAAAAAAA/HqniMVe-TgE/c-rp-mo-br100/photo.jpg','17898197009688164559',5955),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FPz84ibUzbUPoGwdAX1fJbVdLB9pAvrmLmJsq2VVUPwJrdkxxoWrCIdZw4k2pKfk7uqwUJHnYdRJqJqyVqLYSk66cpw0',NULL,'2020-03-15 18:02:45.741000','2020-03-15 18:02:45.741000',5,'Lucas Morales','https://lh4.googleusercontent.com/-wPCYkCM4pas/AAAAAAAAAAI/AAAAAAAAAAA/ClV216akgBU/c-rp-mo-br100/photo.jpg','14748677429039074158',20969),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fqbg6oTXQ6I1RqZCeOPY2m18mjjoMRQ8HSvRseSjH7rF_--kyQCLT-XcoPRPX56mh8dX_X1JMMVuEprHKg2Be1W1Vi2o','I was attended very fast when I got here. Amy at the front was really nice and helpful. The tech, nurse, and doctor were very attentive during my visit. I would recommend anyone coming here.','2020-08-01 15:41:21.368000','2020-08-01 15:41:21.368000',5,'Joanna Santos','https://lh3.googleusercontent.com/a-/AOh14GhTLVOPqR-UngKWDQLWOT5HFKS0tdYJC62JGz3-Fg=c0x00000000-cc-rp','8679688254631342173',22367),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fqbt4ka0EPQoSClA2Jv2XrZhYFt7vg0l05_nsy-dnYH0rCS4srjh1-VxvMN_PnCAi8zj8He-vhenpiRUrlfEcYJ3iziE',NULL,'2018-02-27 17:02:05.556000','2018-02-27 17:02:05.556000',5,'Aida Vigil','https://lh3.googleusercontent.com/-e3ZmCw5RpvU/AAAAAAAAAAI/AAAAAAAAAAA/OTLTt5UzXU0/c-rp-mo-br100/photo.jpg','14904078213800803294',2277),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fqc-igsGk0YwEdrPi9N8ZsA5mKlWm53vNaW1_ahU22ep285nKg5Qwa9VNx5lD4doZR6o0lGN95qORfwtVO8_vXWCT0wM','Very clean I was seen immediately everyone was very helpful kind professional and courteous they even gave me cheese and orange juice for a snack while I was waiting for my test results the doctor explained my diagnosis very clearly I would definitely recommend this location to anyone in need of medical attention thank you for all your help and kindness \nDr. Soli \nNurse: Robert \nRegistration: Cindy C \nRAD: Fatima','2019-09-27 02:07:39.160000','2019-09-27 02:07:39.160000',5,'Gina Frank','https://lh6.googleusercontent.com/-UNAh_p-qS3E/AAAAAAAAAAI/AAAAAAAAAAA/PmUHbUINnJU/c-rp-mo-br100/photo.jpg','17394740196501090048',4593),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FQE2hfUsGpUGsSMxYSwNfoeWIHeCd_RWPtuvfPlm84F6qfkjQQe-ZMu7Cp0xJXW0qwsPffCsPOsBNqfokrUiq8C9lRhU','Came today for testing, had all the paperwork emailed to me to print, fill in and bring to my appointment. I wasnt in the facility for more than 10 minutes, got my test and waited in my car for results. Cody and Jd took great care of me. This was my 2nd test. First at another facility and this was a much better experience overall! Definitely recommending to others for the rapid test!','2020-08-03 17:14:20.437000','2020-08-03 17:14:20.437000',5,'Katie Moore','https://lh3.googleusercontent.com/-8KEfT-5PH4U/AAAAAAAAAAI/AAAAAAAAAAA/R22LKI0h8xI/c-rp-mo-br100/photo.jpg','2077061009497551125',22752),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FQfe8EC90yzo2NUSrFGNZpN67X2OsuPYfmO8FGFfNftPoWTRnhIBwXWxItehAlD7nyERI4dWDEy7b2ieN95TGXi7ULbo',NULL,'2020-07-31 13:51:13.392000','2020-07-31 13:51:13.392000',5,'Casey Bradford','https://lh6.googleusercontent.com/-ZtKZ2Tykq68/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm-lexXrOkZZdpCCYh2Pave8U83SQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21842),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FqhmTHEMrgHJJ3M8hNm-B6brvoeLpkQ4_vRI7ZFq-4SSvJEC9AVrI9bFjIXgkc-6pQsnY-2qHMm-r7zIsATZebkkX4gQ','We were helped by Kendra, Jeri, Cameron, and Dr. Patel today, and they were efficient, helped explain everything that was happening, and answered every question we had. Very good experience, would come back. Thank you!','2020-02-12 16:59:48.401000','2020-02-12 16:59:48.401000',5,'Student MacKalyn Rendel','https://lh4.googleusercontent.com/-FbrqmoLaphs/AAAAAAAAAAI/AAAAAAAAAAA/akJyn_J4-Hc/c-rp-mo-br100/photo.jpg','16590124370714063921',13859),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FQIzn6KyJFCzu8_X_eIGQQAAkjW_IMAn6Brp14XWLjYNYGNf76KYIvq6iVLkC3kIIvG3gbwsEv1z2dVcb0Pyu48HU7Xk',NULL,'2018-06-23 03:50:26.472000','2018-06-23 03:50:26.472000',5,'Emma Crane','https://lh4.googleusercontent.com/-8EkdeLZIyYA/AAAAAAAAAAI/AAAAAAAAAAA/kBqTagN-koY/c-rp-mo-br100/photo.jpg','16891069708558046635',4465),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FQki8pr3KWOtFeJL9FvvMdm6CJJ5w9L6OT1b4grRAFSpO-4bw5A6yeYW-XuU7W2D4hlvjtH04vH5O-bk9fFBlcXQhQKA','Alyssa P, Karen C, and Shawn K were the best and nicest!!','2020-01-24 18:45:59.591000','2020-01-24 18:45:59.591000',5,'David Suarez','https://lh3.googleusercontent.com/-1769Pu5UA8Q/AAAAAAAAAAI/AAAAAAAAAAA/kww365v18ig/c-rp-mo-br100/photo.jpg','8918455867446117794',14869),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fqmz-q16Ao1_QYmXN_O1Q75is23kkjlBi9n2ABXpmnntAa5x8YgatuFAZZ0Jo_5J_XXbj7gc3C9EMcWLJl4osKfOa40s','My daughter broke out with some sort of allergic reaction. As soon as we walked in they took us right in. My daughter was very uncomfortable but they gave her some Easter eggs and stickers and she was able to calm down. They made us feel comfortable from the moment we walked in. All of the personnel that took care of my daughter were very kind and caring. They gave her medicine, allowed us to give her a shower, and they wanted her to stay a few hours so that they could continually monitor her. We also had our two year old son with us and they had snacks, drinks, juice, and other things that could accommodate him so that he wasn\'t fussy. Our overall experience here was great, and everyone treated us wonderful.','2017-04-04 17:34:59.087000','2017-04-04 17:34:59.087000',5,'Victor Cardenas','https://lh4.googleusercontent.com/-6NoEYbZBlJg/AAAAAAAAAAI/AAAAAAAAAAA/hxxL5n5IGC0/c-rp-mo-br100/photo.jpg','3511292162159714121',7852),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FQp8nnKirW_kfqlBu6VvnZrFEJTdWD9RyaJr0hVFnEt2ZAR_syI6UbGB-NyHMzWYqTTwc3qfFjxSD3bt3zpYeJHKpIeM','Service was fast, caring, and friendly','2020-03-12 21:47:21.577000','2020-03-12 21:47:21.577000',5,'Adriana\'s page','https://lh3.googleusercontent.com/-UdSqXWK5xBQ/AAAAAAAAAAI/AAAAAAAAAAA/20boNcVL098/c-rp-mo-br100/photo.jpg','2694018788013845459',21115),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FQposiiOUaAFtGvSashoj06cqaoYlc6AAQfv_AVzT-FHoSrQmoJsNQxj9ogYLSdC541VPsBz7Lq6Q1YU6ZcoVQk5Yq5Y','Unfortunately I had to make a trip to ER, but thankfully I chose the right place (Copperfield location). Everyone I dealt with, treated me with professionalism and courtesy! Thanks to Dr. T Lindsay, Nurse Dawn S. Rad Tech Nanci B. ER Tech Bekka W, and Ashley S in Registration, who was the first person I came in contact with. Thank you guys for making me feel taken care of and showing me such kindness.','2019-04-22 20:20:37.006000','2019-04-22 20:20:37.006000',5,'Marlon Blair','https://lh3.googleusercontent.com/-KL-ZU4daGUM/AAAAAAAAAAI/AAAAAAAAAAA/tNMBJZ7YEGk/c-rp-mo-br100/photo.jpg','17898197009688164559',5763),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FqpuZvINJAsQupmDaAdP0FdG1L5VW9RMGE9UFrEZ2716Q5KR230BRpsHoRpQ6ORbLS6L-Z4jsg4iwmT8E6WIRb48Qw3g','Welcoming and everything was made great by Dr. Patel, Amy, Josh, Joey, and Jessica!','2019-05-06 06:00:13.610000','2019-05-06 06:00:13.610000',5,'Celina Barron','https://lh5.googleusercontent.com/-QUqvMs0UcJc/AAAAAAAAAAI/AAAAAAAAAAA/cgrgtFM4-jk/c-rp-mo-br100/photo.jpg','3511292162159714121',7339),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FqU1JVEn4ReFLanQkibadoQIeSwhhJk_Q9V-LbgFz4MNT3UbWezdmOpgME6SVJIWUfocOjGfCMwwhf20vgm-cGvbdVN0','Everyone that works here is very professional and friendly. I did not have to wait very long. The doctor and the nurse were very good about explaining everything. There was a young man at the door named Carl - and he was really helpful and calm (even when a few people were rude to him) Definitely a good experience','2020-07-25 20:12:23.826000','2020-07-25 20:12:23.826000',5,'Mary Kegarise','https://lh3.googleusercontent.com/-95yxvSB9WOg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnZhbszxseHE4q5t8hpctzNG0t2Nw/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21946),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fqv_MJCtK21ANyKXxRpm6JJZz_Q9jHqFNo-EhFHVXl1Oj0-noQwGFD4Zr25jDpd190ARAShDja-zJ_LMokDPPs7oGY1Q','Luke,Kim and Sherri along with the doctors I saw were amazing. Highly recommend Signature ER!','2019-05-23 14:12:55.042000','2019-05-23 14:12:55.042000',5,'Stacey Hall-Gerwick','https://lh6.googleusercontent.com/-7hdFFxv89x8/AAAAAAAAAAI/AAAAAAAAAAA/6OeDTEpR-ug/c-rp-mo-br100/photo.jpg','3272657195432704501',6962),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FqWuKI-04ryAxVTPhh-lBgw4u1RgLGJu9ABdAWu1lYJ4dfwPma5Z9dIPs7IQFsRPZRNXBVa38HlKsMvTnA8IF7iCuycI',NULL,'2018-12-18 22:44:32.077000','2018-12-18 22:44:32.077000',5,'Rae Alexis','https://lh4.googleusercontent.com/-TpFXBmwVEhc/AAAAAAAAAAI/AAAAAAAAAAA/UolkFdi0ri8/c-rp-mo-br100/photo.jpg','3511292162159714121',7546),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FqxIDpvTn6f9sw0_8c6nyTkprUdmvi1Me9cyR33jp9wTORxlhkC7Nw0i-U_9CrdnY_OJtUiztZEP8y9Ino8GcvunRSMk','The care we get here is always awesome. Jessica was great. Dr.Eisbecker was very knowledgeable.','2020-02-27 18:49:20.964000','2020-02-27 18:49:20.964000',5,'Erika Willis','https://lh3.googleusercontent.com/-MvsemgYOvbc/AAAAAAAAAAI/AAAAAAAAAAA/9JS0sWUiE8I/c-rp-mo-br100/photo.jpg','6521947413723274945',14538),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FQXvgYtyJqfXE8H_yOMStY69fJIAIlmn0gOtRD0sw94hYNHa3abqAW5OVgbAJxeDonK1rPBus8AOhONijlU6lEQgDE2E','I reccomend this location staff is very friendly and super clean location. Samantha greeted me once I walked in with a friendly smile. Nichole was my nurse and she was very nice and checked in on me making sure all my needs were met. Dustin and Dr. Souman was awesome as well..','2020-03-01 01:08:19.524000','2020-03-01 01:08:19.524000',5,'Erin Steverson','https://lh5.googleusercontent.com/-Pu9oa9KKTJM/AAAAAAAAAAI/AAAAAAAAAAA/Qe6Jdzmmr4Q/c-rp-mo-br100/photo.jpg','14567670160750071148',13508),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FQYxJXMqHuspz0btmCP1hddr0e9nrG2pExQKYWtI2t489P04xKOwTscemLDSXv6WxY6YWiH0Kth_Jf91HVyELa-3gTAQ','Everyone at Signature Care Cypress we’re extremely helpful\n Patricia C & Alvean A','2019-12-26 21:48:47.820000','2019-12-26 21:48:47.820000',5,'Lauren Smith','https://lh5.googleusercontent.com/-f-iVWpNpczs/AAAAAAAAAAI/AAAAAAAAAAA/s5FDncicZPw/c-rp-mo-br100/photo.jpg','16389487648212004696',2510),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fr-a6DttP7HpwQpFnzIHjhAEOdQokjXEqAaPZSIfrzd7Rh-mAiGSYr2CqIMF864Vl6rsSIYZTfxmpMlLob0fTjJtMajI',NULL,'2019-03-23 04:03:58.333000','2019-03-23 04:03:58.333000',5,'Jill Snelson','https://lh4.googleusercontent.com/-gHPCRpabUoc/AAAAAAAAAAI/AAAAAAAAAAA/NBw_PYAJG94/c-rp-mo-br100/photo.jpg','13486358490203335051',1053),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fr-zu4sUY_IcQR2-4yCBOUwGIdjJ4BvwKaFQUul-iJ8LBio9j_CIUQ7NLGfsIcoEkLc7oBpZ_-0vf9E2_q-e-XCx-OaY','Literally the best urgent care er in CSTAT. The receptionist Kim was super nice. My nurse cat, and doctor baker were helpful and made sure I was comfortable. I’m usually nervous about X-rays and ct scans but Kathleen made me feel less anxious. I would def recommend!','2018-04-11 01:26:02.720000','2018-04-11 01:26:02.720000',5,'Taylar Perez','https://lh4.googleusercontent.com/-yOWYFjzQdNo/AAAAAAAAAAI/AAAAAAAAAAA/daLW0PYy__Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3842),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FR0fTRKOeXqUSyP67cE-tF2_kIRaScrCLtNK9cbq9xKmlnNkqCK3sJyZvA2kTfsXxoeE1gMuBszgvnqr4rrHAcNoXqcE','The staff was very helpful and very friendly, the receptionist Deanna answered all my questions I had. I would recommend this facility to anyone of my friends ot family members.','2018-07-04 05:17:59.707000','2018-07-04 05:17:59.707000',5,'Daniel Cavazos','https://lh4.googleusercontent.com/-iOMAIr2UhIw/AAAAAAAAAAI/AAAAAAAAAAA/DxiS3eQQckQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2243),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FR3bCRc4eWpdNrQ56fkS5EyL5bOiACe6-9MA0lKdQCf48Ihl5H8UB_PrWfgiWWJynwrzbDgn-CAIfYjgQyPj8PSy_4CI','Fast service and professional treatment!','2017-06-08 00:33:14.518000','2017-06-08 00:33:14.518000',5,'Joy Jolley','https://lh6.googleusercontent.com/-fWzOs_PoMY4/AAAAAAAAAAI/AAAAAAAAAAA/yudH8Pa3Wto/c-rp-mo-br100/photo.jpg','14904078213800803294',2351),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fr51wbi0IW7FZRZfvB8yBGqdL815woJLrncvKn639MbOYbR31x-HtoqDL4zxPaHPGzvt8HTNplOeHgs_Bb3BAkDwWP94','The whole staff at Signature Care was very helpful and prompt. Aaron made sure to check up on me and the rest of the staff also.','2020-01-23 15:41:18.527000','2020-01-23 15:41:18.527000',5,'Jackie Chavez','https://lh5.googleusercontent.com/--k4GyORksP0/AAAAAAAAAAI/AAAAAAAAAAA/e_uIlvd6tU8/c-rp-mo-br100/photo.jpg','13486358490203335051',13458),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FR5HKEV_uCLC9ESYPNhTle5AXBh_fvO9v98eMr7d4SFZA2FhQZ8ttGTwEfXcH5iOI8zzqxjUR4bxJQAnEY88LMsBmGOE','Jessica s and dr patal were awesome all the nurses were the best good ppl thanks','2019-08-03 04:15:49.210000','2019-08-03 04:15:49.210000',5,'rene larreau','https://lh3.googleusercontent.com/-2DiG2v4kJz0/AAAAAAAAAAI/AAAAAAAAAAA/wMo2SOeCsjg/c-rp-mo-br100/photo.jpg','6521947413723274945',8169),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fr5U8eIu1133skuoG6Oh3a5EJBOfL3ZImKo4TOjcxGwG_6r_vfwGGp64r4eV50Us2Q5sregsYPfl_vszW4VSq-RIblFw','Great customer service! Dr.Harjai is great at answering questions and got us in and out in under 30min!','2019-09-13 21:37:00.292000','2019-09-13 21:37:00.292000',5,'Abraham Shaheen','https://lh3.googleusercontent.com/-7jDFRnLTCHQ/AAAAAAAAAAI/AAAAAAAAAAA/yOamDfZkIog/c-rp-mo-br100/photo.jpg','16590124370714063921',3212),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FrLEGrGOwlNkXgKL8Lo3tQv-aYoKbvOdlTReYceU9nPdxllQvAcsZQCA8m7H_3anSFyt6Xl-LirG1z3pi5oV2_unfllU',NULL,'2020-08-17 18:20:12.033000','2020-08-17 18:20:12.033000',5,'Sinthia Caballero','https://lh6.googleusercontent.com/-UgNBLI-7Djk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmJWSHUHY73hlqsc2pQgb75WKy_Fw/c0x00000000-cc-rp/photo.jpg','14904078213800803294',23035),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FrQOBdcS6chn-dOwhApbEEba6kF46XcMZN4m1hxfo9x-SCus6Hj3NTGiTePvFMaTlCrGF_9Gnv7PL13kDkxis2jT6y2Q','My husband and I was treated with thee upmost care here, staff was exceptional , very attentive. Overall the best ER hospitality and care received in Killeen thus far','2020-03-17 12:57:27.007000','2020-03-17 12:57:27.007000',5,'Carlonieshaya White','https://lh6.googleusercontent.com/-H8r6YER0LGg/AAAAAAAAAAI/AAAAAAAAAAA/0wN0uze5cuA/c-rp-mo-br100/photo.jpg','2694018788013845459',21110),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FRUSWkm6KOtkfROn5uvQIyb5yeXrm44uUcadSGRkMxOobhjuUPgLzhoUhKH08iOea7l_hW0hodAEJ4XJjQTcVCPM9rrk','The Dr. was very attentive. He explained everything tgouroughly. The nurse was great! The front check in person was helpful. X-ray technician was gentle. \nDr. Ybarra is a wonderful doctor. He and his staff were very professional but down to earth. Would go again!','2019-01-27 16:52:06.216000','2019-01-27 16:52:06.216000',5,'Rebeca Guajardo','https://lh5.googleusercontent.com/-bctBPO027kc/AAAAAAAAAAI/AAAAAAAAAAA/ViEgiMGzLW0/c-rp-mo-br100/photo.jpg','8679688254631342173',8881),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FRv2Zl-7T_EG5CImu_BjiHghxnb5TFoO45Dy46tZBwdJc-Hr9LTzdWSe6h5Y3O9w5V6jF9NlbNr8c5DgJ_lLWlzvk8_k','The employees at this location were so helpful during a difficult situation. My nurse Austin was attentive and very professional and Tiffany got me in so quickly! I will definitely return for any future needs.','2019-06-10 02:03:55.204000','2019-06-10 02:03:55.204000',5,'COURTNEY MATHEWS','https://lh4.googleusercontent.com/-9k_mDc610Z0/AAAAAAAAAAI/AAAAAAAAAAA/5unb3kfjHqI/c-rp-mo-br100/photo.jpg','8626688543755174284',8457),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FRvj3atRb9tUatQOBXCJXJ-PQ6cWPmnHi3onAV5TU3rL5i9ohR1Kr72-st7efldW7rOocSMCdlcnsxWY6PgspK-OfF80','I had a wonderful experience at SignatureCare emergency Center. The staff is very professional and efficient with their check in process. The doctors on site are very knowledgeable and made me feel comfortable immediately. We were In and out in an hour and were feeling great.','2019-12-09 03:23:14.488000','2019-12-09 03:23:14.488000',5,'Ashlyn Dunkley','https://lh5.googleusercontent.com/-8c8xsY0Fwr4/AAAAAAAAAAI/AAAAAAAAAAA/3CtukAzq7dU/c-rp-mo-br100/photo.jpg','14567670160750071148',1180),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FRVsH_VObhJO9HpEaFtkkEs8VQf1LbQc2UmSH25TCSYrexso3NAtukbalmkDFtx_mvPuT-dCqNEh80TwrX84zrvcWFds','Quick, fast, and the Best ! Nurse Nyke and Thai were great with my son. Diamond and Natasha were so fast get him checked in and to the back. Definitely recommending !','2019-07-10 23:06:17.327000','2019-07-10 23:06:17.327000',5,'Roberto Wells','https://lh4.googleusercontent.com/-_LVgZ81AWU4/AAAAAAAAAAI/AAAAAAAAAAA/gsFT0haMU5s/c-rp-mo-br100/photo.jpg','2694018788013845459',6113),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FrY8YnAxZ2C_5UQeAt96tZNhesQ0c-q6fWMfCcudG6hoTwIaf0dEVTLynJOZOKMIC8iPvcPkNyPwv6dBtOz6ZCowjEjE','Some of the most wonderful staff i have ever met! So caring and nice. In and out pretty quickly. They try to make you as comfortable as possible. Very clean. Glad i chose this place for the issues i was having! They’re amazing!','2020-07-20 21:38:21.120000','2020-07-20 21:38:21.120000',5,'Josie Bandy','https://lh3.googleusercontent.com/a-/AOh14Gg-_t72-HAiC0oH8K0obduQW7RoE5m-YeomEHOVyw=c0x00000000-cc-rp','2694018788013845459',22118),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fryug5DsETYuAV0kcnNm9J3JUN2EUhsVCOP2TnmPLZMZRvHwhyN-5cno5sRWO9okoYSGNTv6lcRoHt5Fxb2hJUqJLw2M','It is never fun having to have any medical procedures done in the first place. However, the professionalism of every staff member from beginning to end was top notch. They certainly made our experience stress free and were very attentive to our specific needs. Wish they had been there the last time we were in need of an ER!','2018-04-03 21:50:08.661000','2018-04-03 21:50:08.661000',5,'Niki Steiger','https://lh3.googleusercontent.com/-6EsF8dOQ89c/AAAAAAAAAAI/AAAAAAAAAAA/QyVB3t2bLYU/c-rp-mo-br100/photo.jpg','8918455867446117794',9273),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fs-58urfVZNN8ucUKSc--ueCEYbINkYM29jrauBcAO6PZVscCchPepKHCNhRUXsnLK1cG6yVq8O2XGwYwRvsAL9W7PMs','The RN Anthony and Dr. Pham were superb. And the edible arrangement up front was most delectable.','2019-02-23 19:54:54.087000','2019-02-23 19:54:54.087000',5,'Mitchell McDonald','https://lh6.googleusercontent.com/-mWnk3eFvq0I/AAAAAAAAAAI/AAAAAAAAAAA/-1fb_PB0-pI/c-rp-mo-br100/photo.jpg','16590124370714063921',3526),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FS3-bfcg6_AvrCLXCQSYM7nheA_2HQvYMlapB7fraYqO8ls2aREKkz211lBEs1Va8sqT-6AEnq_t7jMf6ZUp76V2qby8',NULL,'2019-12-27 22:24:12.732000','2019-12-27 22:24:12.732000',5,'Keyla Lain','https://lh6.googleusercontent.com/-z-RZ5ZVVbAs/AAAAAAAAAAI/AAAAAAAAAAA/qJ10Z6E5pOU/c-rp-mo-br100/photo.jpg','17394740196501090048',14063),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FsAyQrV_rzQQrMWsPuNjD40fRkUIZZOSF2OUgRBXmEuiNQgq0akw_SoPtm-_CNVYrwc2z0nXuufYQva3--0qJ-yogYb0','The staff at SignatureCare in Colleges Station went above and beyond to help me and my daughter during our traumatic visit. Dr. Daniels was extremely thorough, patient and kind. Anthony, RN was the most attentive and the calm in the storm. Becca- Tech, Kathleen-X-Ray Tech as well as Cat, RN all were also caring, professionals! I highly recommend SignatureCare ER and will never go anywhere else in town.','2019-06-30 02:56:10.035000','2019-06-30 02:56:10.035000',5,'Oralia Vela','https://lh5.googleusercontent.com/-wZkxw-li9T8/AAAAAAAAAAI/AAAAAAAAAAA/NAT8ZqGFe-4/c-rp-mo-br100/photo.jpg','16590124370714063921',3329),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FSBUNk333RpU-5ZPAWcF-QDV6pLEbnLjsxAnNDffhjeBLLp9-QLdI7uJTKMOPR3IagX99mjoO-WKWJsgeWA0fbneMFlc','(Translated by Google) Dr. Miller, Nurse Meredith, and radiographer Bryan treated me very well. The best part is that you do not have to wait many hours! But take into account that maybe they charge you like a hospital.\n\n(Original)\nEl doctor Miller, Enfermera Meredith y técnico de radiografías Bryan me trataron muy bien. Lo mejor de todo es que no tiene que esperar muchas horas!!! Pero tome en cuenta que quizás le cobren como se estuviera un hospital.','2018-09-29 02:12:52.208000','2018-09-29 02:12:52.208000',5,'Sandra V','https://lh5.googleusercontent.com/-mSgPvkaJh3c/AAAAAAAAAAI/AAAAAAAAAAA/bza6xJKO1L0/c-rp-mo-br100/photo.jpg','14567670160750071148',22491),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FSd-wKikV9loiY7RMU0ct_LHIq0hXICSCDJcf1-6ixDOUBkoyt-BbZ2ta4J3c8taNMxZOKs_SF2R8hDqRrmoWW-sDvms',NULL,'2019-03-31 17:43:11.847000','2019-03-31 17:43:11.847000',5,'Alden Howard','https://lh4.googleusercontent.com/-mLfRTZifB9I/AAAAAAAAAAI/AAAAAAAAAAA/2zq1tRlIvh0/c-rp-mo-br100/photo.jpg','16590124370714063921',3470),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FsGmFS23nvzKrE7PsxxDh-YXPGCQcmJFnLqfb3dFl8j7XLo_QbbDk6sREQMeXh8bbJjSc0KOnEtAzuMwct_6hjIccNZw',NULL,'2020-07-22 16:03:27.510000','2020-07-22 16:03:27.510000',5,'Tania Escobar','https://lh3.googleusercontent.com/a-/AOh14Ghb6C3q3uGNS4tplXANFrqsxe4UIFYeQEbwOBfaiA=c0x00000000-cc-rp','16389487648212004696',21958),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FSK2X5mVqMVXSIRjbSOBTf2HrHhzEVGN_ev4CKfo-NNeTvI-N2Cp_k1qaK8w39pc91brAYN5N4Loebck2hcG6E4vo6rA','I had a great experience with the Doctor as well as the staff. They were so helpful and nice. The receptionist Christina was welcoming and the nurses Shelli & Linda were nice. My mom had a rash so Dr. Elsbecker suggested an over the counter medicine. \nIn the past 5 years I have never come across such a helping and wonderful Emergency Care Center.\n\nThank you so much!','2019-06-24 03:39:28.758000','2019-06-24 03:39:28.758000',5,'Manisha Dondapati','https://lh4.googleusercontent.com/-HuhQQW2N-Rs/AAAAAAAAAAI/AAAAAAAAAAA/mIwP7v7E5Rg/c-rp-mo-br100/photo.jpg','16891069708558046635',4243),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FSkjQh5K2hfut7VM93HLm_WZcC0hxZo9JT41LyDZzEMvpXte8Kz_WxVITuuvS2P5lmA3UNKFMAD4hxEMMo2qe0tFwrq4','Amazing place! Their service was excellent and all their staff were very friendly and professional! Finally an ER that we can trust and be seen very quickly! Receptionist was also extremely nice! Totally recommend to anyone looking for a great ER experience!','2020-01-14 05:22:00.666000','2020-01-14 05:22:00.666000',5,'Adrian Pardo','https://lh3.googleusercontent.com/-bG_ut4t2Ac4/AAAAAAAAAAI/AAAAAAAAAAA/3efE90w1UcY/c-rp-mo-br100/photo.jpg','16389487648212004696',9732),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fslr4dMfxjELeRVLiQroOrQPNWJPqkxO5O30NHHzt6kXy0QmhkMqZW0HuWP_XfpZ1597pvqD4MPlq7uWC_IM1VOTFoUo','This is our second time coming to Signature Care. I am very impressed with the staff and doctors we have encountered. Savanna B. and Andrew C. were attentive, informative and very kind to my son. The facility is also very clean and there was zero wait time. I highly recommend SignatureCare.','2019-10-03 22:15:39.876000','2019-10-03 22:15:39.876000',5,'Stephanie McSwain','https://lh4.googleusercontent.com/-e_TWapk-2CM/AAAAAAAAAAI/AAAAAAAAAAA/J44kxFj_bs8/c-rp-mo-br100/photo.jpg','13486358490203335051',793),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FSM84Y099fi_IZ_3hvcMLDvz4xifmPIKgsAnugmpaHLzPi6jzyiyZ3vBH6FHZceVFMG68euw36tR0AmZrVUjKV_4EubA','Lisa H was great so was Krystal and Caroline🙏','2019-09-30 13:08:02.912000','2019-09-30 13:08:02.912000',5,'olumide joseph','https://lh5.googleusercontent.com/-v3nGtssI644/AAAAAAAAAAI/AAAAAAAAAAA/om53cgYSwo0/c-rp-mo-br100/photo.jpg','13486358490203335051',798),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FSN3WnrfgPBSXfze-v4xSi6fAzCnx7iDXfCIyw0hcK_tfqfI0FeUtJyk9Vmg-fBkKu6wFfOWyX7Vk7Tzc1nH-0163fzI',NULL,'2017-03-01 05:32:03.319000','2017-03-01 05:32:03.319000',5,'Colton Rembert','https://lh4.googleusercontent.com/-KDrFd9eNK6s/AAAAAAAAAAI/AAAAAAAAAAA/N5HkIJUuyqo/c-rp-mo-br100/photo.jpg','16590124370714063921',4046),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FsotbUC3Nfix2Dn8vsrVDNAnkMUbrWaVphoFgh-zfRge9L9HUnUZoMdSPjNGTg4CXTIoOlHGxDneSNp9mtdtbfTHYkhQ','The receptionist was awesome, fast, and efficient.','2019-07-23 19:52:16.892000','2019-07-23 19:52:16.892000',5,'Nhan Nguyen','https://lh3.googleusercontent.com/-HycJclhc1fM/AAAAAAAAAAI/AAAAAAAAAAA/1QE9ABYM-eI/c-rp-mo-br100/photo.jpg','12541597562633926366',480),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FsRnH5xdKCUP5X5rcghFpU2aj49TC4P_HVkUx3KyPuma4VjtWxZ6gbpfF_k6O2R6IgfHVa_e0796bJSj1-SoFolpw8SY',NULL,'2019-07-15 17:51:26.303000','2019-07-15 17:51:26.303000',5,'Jorge Godinez','https://lh5.googleusercontent.com/-z7_J9nG0a4M/AAAAAAAAAAI/AAAAAAAAAAA/1AMrgU7dmmE/c-rp-mo-br100/photo.jpg','16590124370714063921',3294),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FsukDrOOzNisLz6Wwz2YgdqWWMzDiE0B9V3HTvfpF9J3DN3210n4Bode7Twh3cV7K87bp3Z63vzJOlBDB6F26_3oGr7E','Great service. Really fast reception and the staff was great. The doctor identified my problem immediately and solved it in a couple hours.','2018-08-27 02:41:22.252000','2018-08-27 02:41:22.252000',5,'Pedro Pablo Arriagada','https://lh6.googleusercontent.com/-zq4q5HpgT6U/AAAAAAAAAAI/AAAAAAAAAAA/A0VbA_lBClc/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1546),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FSxcm2dwwUA6xtE-ayiQGlugTmCafI8hz60zFgyTBxTjHMLV_kK3wE1i6NfL2dMY4Kxg1yBy_4Wro30yu9mTUe1iBRKI','Maya the receptionist was so nice and amazing! I was in and out quickly','2020-02-14 22:45:59.586000','2020-02-14 22:45:59.586000',5,'J Jordan','https://lh5.googleusercontent.com/-7N2qzzxISk8/AAAAAAAAAAI/AAAAAAAAAAA/Z-yegQhsOCI/c-rp-mo-br100/photo.jpg','12541597562633926366',13373),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FSYM4SJmIgGQofDGAsBQIIQLv6W3SzEYQ7ZSTFbV1xz8I1C-hzvsn0Ja-fVj4ttSgmOTzn11HQD7d7aLyeC5wwpT9c6w','Terrible. The doctor was ordering food while I was waiting to be seen. I spent 4 hours there just waiting to be seen by the doctor. My husband had time to go file his taxes and come back before the doctor even spoke with me. Then at the end I was charged 500 for just sitting in a room. Terrible service and terrible people. I will never go there again. Lucking I\'m not suing them for stealing my money and providing poor service ','2016-06-06 17:38:30.469000','2016-06-06 14:44:07.365000',1,'Taryn Mansour','https://lh5.googleusercontent.com/-ydHOSDDNd7M/AAAAAAAAAAI/AAAAAAAAAAA/vWmHNQPNQPM/c-rp-mo-br100/photo.jpg','14567670160750071148',2025),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ft1vNFGhSEd5nOrFbos2Ta23b9RftXYyZeo_17IyZ-jMRY3PfPv-uYhePGOaD29ngQ-6M5vnFNRUmBar5g05kw4l2ttI','Great experience very helpful and fast. I was helped by doctor dang, keera,Jesse, and christine. Recommended greatly.','2019-06-20 14:05:03.169000','2019-06-20 14:05:03.169000',5,'Joshua Medrano','https://lh5.googleusercontent.com/-lJz23GDfHfs/AAAAAAAAAAI/AAAAAAAAAAA/tpW5Nq_7hSY/c-rp-mo-br100/photo.jpg','17394740196501090048',4660),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ft2fnE5hnJVO9n5ZYvQZByBPyxScqF6zlu6yLhjojnhI0Qzrm6vDa1imokKbc9oG8r7DAMTwoI_rqBYQcBGuoVUkm138','Marcus and the whole staff was great!','2019-10-09 23:32:50.754000','2019-10-09 23:32:50.754000',5,'Rachael Davis','https://lh4.googleusercontent.com/-Lde5GN0MXd8/AAAAAAAAAAI/AAAAAAAAAAA/O4yDG8nBkNs/c-rp-mo-ba4-br100/photo.jpg','16389487648212004696',2837),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FT46cwtIPeLj_Sulflrd6kPQkM1HSUzqX89ax7uFeJzm37nOwUgx3lDxpnxfPyV1ndA_BTD1lW45KTSixsAzGeXqhSqM',NULL,'2020-02-20 01:41:30.332000','2020-02-20 01:41:30.332000',5,'Kristina Martinez','https://lh6.googleusercontent.com/-v92a7-i250E/AAAAAAAAAAI/AAAAAAAAAAA/DjVXfCm1dr8/c-rp-mo-br100/photo.jpg','6521947413723274945',14571),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FT46UeP0KVvs-_ihQng9SUVQJLbtvBlECtmXI8nam586qolMWlKQwQk_3CU7yuwApQkn_w88TibadkhEybMRvAtI1dqE','Very attentive and knowledgeable staff that go above and beyond to ensure your comfort and safety throughout the course of your treatment. I would highly recommend to anyone seeking emergency care, thank you for what you do!','2019-06-05 13:47:03.305000','2019-06-05 13:47:03.305000',5,'Gianna Jacovini','https://lh5.googleusercontent.com/-tjAhtZ_Z48c/AAAAAAAAAAI/AAAAAAAAAAA/IEdKXyrJch8/c-rp-mo-br100/photo.jpg','16891069708558046635',4258),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ft5t8CKAvUx8DkWR5E7XTKvaT5qm6wP2RGZy_c5o7EfoVNq7n0VarWgPXN9DXyYpz9IDTAmUuGnqrnwhREO19pfCIVkk',NULL,'2020-02-16 16:56:01.429000','2020-02-16 16:56:01.429000',5,'BRandie Holt','https://lh3.googleusercontent.com/a-/AOh14GjLWcrIkcDt1FDflILanQIs5VhZ87ZEm99fr4pa0g=c0x00000000-cc-rp','8626688543755174284',14612),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ft7FUFaZFgCxGr4QMgpFTl8w4bXVQjCT-X2fvgqJ7ZhBqQN3ApVRyVnZMgKse6VuyRpjAsuKvH71rYpD6S48bE81Qm6M','Kendra was quick and helped me get care as fast as possible.','2019-11-08 21:24:30.944000','2019-11-08 21:24:30.944000',5,'Hannah Lieber','https://lh6.googleusercontent.com/-8N7eMkD8gh0/AAAAAAAAAAI/AAAAAAAAAAA/LZzUa8ii3Dg/c-rp-mo-br100/photo.jpg','16590124370714063921',3095),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTcHYJ_jtvOW8kiHNKNBDHobSG0NcyxQVyMLyt0vJqOuR4NKsY3YAC4NiuaohtGZfLHbkx0qQAVbQxcXiZvlF2Rfd2F8','The staff was extremely friendly and professional.. keep up the good work guys 👍🏾👍🏾 Dr. California, Laura, Maya, John, and Fahmen were awesome!','2019-12-24 16:53:33.728000','2019-12-24 16:53:33.728000',5,'Chadwick Ward','https://lh3.googleusercontent.com/-Kuueo-I6BBs/AAAAAAAAAAI/AAAAAAAAAAA/XGzYaUrcqJI/c-rp-mo-br100/photo.jpg','12541597562633926366',309),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTeF4qEFQH14f4wYRd-NTS2b4-JIJBz0FDrH4v1LPHtnRrSVj0U0-_ACGfR6hPQ8MqKcrpoxMLUzuMgLDyx5_bUrwIhk','I had a great experience taking my daughter here, the staff, Shanna, Trini, Ben and Dr Anders were very welcoming and attentive to my daughters needs. Thank you very much!','2019-12-16 00:55:09.083000','2019-12-16 00:55:09.083000',5,'Brittany Hudson','https://lh3.googleusercontent.com/-lajKJ9IVVgE/AAAAAAAAAAI/AAAAAAAAAAA/5faYQ4PssR0/c-rp-mo-br100/photo.jpg','6521947413723274945',8059),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtEp5fwtFWUSnNRKfjtY9GCKYEYF_UngKs0LqT4pQSTF9YTGiP0dAm0_fD60Z8QKgEvq2VLLazanlsjBFZ46pVz7vBVI','Very quick and super nice! Would recommend to anyone. Dr. Vakey is quick and kind, while Kendra is very welcoming.','2020-02-11 18:39:33.433000','2020-02-11 18:39:33.433000',5,'ob Shoccer','https://lh3.googleusercontent.com/-iul7UKxznaY/AAAAAAAAAAI/AAAAAAAAAAA/kv1PhI-YzM4/c-rp-mo-br100/photo.jpg','16590124370714063921',13867),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTf2q-2et301NUwBrPvv7gfnqkEIqTetXizU4vR2xcswEDe0VHIkJlS11wfMjZc007LezHfPU8VQAGrxgDTsbp9SBv4M','The staff here were very welcoming and great help. My experience here was excellent under the care of Cody and John. I would definitely recommend this urgent care center.','2020-08-17 16:04:12.802000','2020-08-17 16:04:12.802000',5,'Arturo Gonzalez','https://lh5.googleusercontent.com/-Jg0ereamQtk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckc_EuOFNILAof8WI2MK-LUK66K3w/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtF7TzZkeAT1FO0sEKU_nXAAqn9cxN7Zf9bSRqCPEmte3mQfddyP7DOH2z5DlHBeYgOr1RQipe-Pwm1kmasYX7cgi95A','Don\'t even think about going here even if you have health insurance!! I was charged $22,500.00 for an overnight stay and a couple doses of IV antibiotics. Insurance denied the claim saying it was entirely my responsibility!','2019-09-12 04:25:30.877000','2019-09-12 04:25:30.877000',1,'Ronald Baldwin','https://lh5.googleusercontent.com/-Bqc9jet1oL4/AAAAAAAAAAI/AAAAAAAAAAA/QkRqLAmYcYY/c-rp-mo-br100/photo.jpg','17898197009688164559',5552),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ftfo3UHyAKMHn5rrqyKGhpD-qUAOPWwQ1clHrHVXbKKlkEj2Xx1qrKxnWp8d90loyFS7FiHfXzKEG8eGGwdUMUpVBo-c','The staff is incredibly thorough and kind. The care received here is excellent. I recommend this place to anyone!','2019-02-02 04:23:51.622000','2019-02-02 04:23:51.622000',5,'Zoe Tenenbaum','https://lh3.googleusercontent.com/-wTBK_v6SLgs/AAAAAAAAAAI/AAAAAAAAAAA/-QVanhpzNG8/c-rp-mo-br100/photo.jpg','3511292162159714121',7421),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTGe_uvU-t3_p_a5zoa-G-TqGv4aw3QnWy_yl84kQG47HGfwqVjJe8CV8hOaBFODn3lV8-Ze7_HHSzCfWztLXq6ZNaFc','Awesome facility and Staff taken care off immediately upon arrival. And treated first class.','2018-02-03 03:05:18.881000','2018-02-03 03:05:18.881000',5,'Giaberto Vanzant','https://lh4.googleusercontent.com/-eTpGcJ-Sii0/AAAAAAAAAAI/AAAAAAAAAAA/L3Q_CxZeFS0/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4889),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtIFPrYUuYOVzdOCPn4z3shHa6WAj3x3c9yiozl7Qi8VV7W5Oe5zJzpSFiL-lL1dpvFKOKK_Rd8IfajSJdMqhPVCramk','Great experience. Very clean and inviting. This has been the best E.R that I have been to. My daughter was comfortable throughout our visit. She loved it. Tanishia handled our check in very quickly. Sarah did a great job taking care of my daughter. Fatima and Elaine were amazing throughout our time here. Dr. Henderson was amazing and explained everything to us. We will definitely reccomend those that we know.','2019-11-22 05:42:44.148000','2019-11-22 05:42:44.148000',5,'Veronica Flores','https://lh4.googleusercontent.com/-QTgiHqmoEgQ/AAAAAAAAAAI/AAAAAAAAAAA/hk1ZI-I1p5Q/c-rp-mo-br100/photo.jpg','17898197009688164559',5406),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtJ1JOgqkwUSUfPXTUK2dgLsCSxanLjWreITpryX6A_FX3d6bhtajnIUtt4sPRoG5ukjs967xOOkXvujmNhjwb1eq5fk','Super fast admission. When I say super fast I mean super fast. I didn\'t even finish filling out my forms. Came in and got greeted. I did search on google for a facility near me. It is definitely cheaper to come to any of these locations and get the same treatment at being in a regular hospital. I couldn\'t drive to a hospital and I honestly refuse to sit in a waiting room for hours before being assessed by anyone according a pain chart or level of urgency. Their website is what lead me to this location. It clearly lists what they take patients in for on the webpage. The staff was super sweet, attentive and very well mannered. The facility was clean. Climate was well controlled and the walls weren\'t paper thin where you can hear patients next door. Although there were kids in the facility and I heard a cry here and there. It didn\'t bother me none. I would definitely come here again and would definitely refer anyone who wants fast service at a fraction of hospital costs. I was a cash paying patient and their rates were very reasonable.','2017-04-09 12:54:32.730000','2017-04-09 12:54:32.730000',5,'SynSyn Volen','https://lh3.googleusercontent.com/-cR8gpSkPu_I/AAAAAAAAAAI/AAAAAAAAAAA/NbW4VhmqmrI/c-rp-mo-br100/photo.jpg','17394740196501090048',5079),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTJsru4era-91kJVAbJUVR6sr3QS6V9iGMe5TZjQ86RH13jsy6Rcs7qzOmQ9-rDPXP7IviH1p8EmXKB4rzXimYcmLJjE','Great service had Brad as an RN and J.R for Radiation both were super friendly and able to get me seen quickly to get my test started for the Flu. And made sure I was feeling better before I left Dyveliz was the receptionist and she was so lovely will definitely recommend','2017-12-20 20:01:58.413000','2017-12-20 20:01:58.413000',5,'Lillian Wendt','https://lh5.googleusercontent.com/-ybpt4qrqz6g/AAAAAAAAAAI/AAAAAAAAAAA/0JErht5c7f8/c-rp-mo-br100/photo.jpg','16590124370714063921',3894),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTMULnkU3eabjCc5oTqOrk8Yxndgi11Q_cCd0lmmtmmkCtT5I9b69CvhwHti7zDsqTYb0AJTK-SvvPsAgDt2K1wGceQE','I can\'t say enough good things about the care I received at Signature Care Montrose - From the moment you check end friendly helpful staff wonderful nurses and doctors and fast service.','2019-01-28 17:11:41.779000','2019-01-28 17:11:41.779000',5,'Amanda Mills','https://lh4.googleusercontent.com/-KfQrPz2kGq0/AAAAAAAAAAI/AAAAAAAAAAA/UZ5dUO2Ih8I/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7445),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtOjdDLR12C6Q0vUPL9UpcQ3NApbotNahnwZR1QdDC39wBNZrn8T1RDpoY_XLQrM6cG8Z8dnmBldQiLBkJjxJQweltKY','Brought my son in on a Sunday for a busted lip that required stitches. Dr. Yost and Nurse Karen took such care with talking and calming my son down. Very quick, effecient and personable. I would definitely recommend Signature Care for any future ER visits.','2018-11-19 14:12:48.553000','2018-11-19 14:12:48.553000',5,'Carla Rowton','https://lh4.googleusercontent.com/-87b7LbyY03I/AAAAAAAAAAI/AAAAAAAAAAA/uAcNdWUE0bc/c-rp-mo-br100/photo.jpg','3272657195432704501',7101),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtP9oVe_lrGnjOyenrnfZ0ZzJwOfdK51_NUtiQ7oYEnoxK_xDLDfbwFZk4WZ69ZtKbkRXE55gipgFOPnQPPCGDNrcZSU','Dr. Siddiqi, Delicia, Blake, Cedric, and Sonos were excellent! I would recommend this location to everyone! Thank you guys!','2020-02-20 18:34:31.102000','2020-02-20 18:34:31.102000',5,'Alfred Bongato','https://lh6.googleusercontent.com/-Jgw273pUlvw/AAAAAAAAAAI/AAAAAAAAAAA/MHx5EJsk5Bg/c-rp-mo-br100/photo.jpg','8679688254631342173',14745),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtQ-O8uMUn-IOTxxfKuZPwz7GHDv8UIkEBDbEAxebeQC7jDaxNz0INL6J6lmd1LK4bfQpP4ZdYnTGm4IV_pDQx30A_KI','Friendly, caring staff. Very informative on all aspects of the visit.','2018-08-11 00:21:50.712000','2018-08-11 00:21:50.712000',5,'V W','https://lh5.googleusercontent.com/-3zga5-luu-U/AAAAAAAAAAI/AAAAAAAAAAA/cNMczEta-QI/c-rp-mo-br100/photo.jpg','3511292162159714121',7638),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTTmOAjTe4_syqVfO1caghuntTHtrXLs0S1s7Eu05FkT_YqMV-b0gh6vYgTJjwRWw8fugrJQDj1P2t8--_wTDfzawotA','Very great hospitality. Dr. Miller and nurse Gracie are great at explaining everything. I would recommend this place to anyone. Keaire really makes you feel welcomed. God forbid but if I ever need medical attention I’m definitely coming here. Tech Ricardo was really nice for offering me drinks and snacks as well as RAD Bryan.','2019-01-13 07:42:07.588000','2019-01-13 07:42:07.588000',5,'Esteban Carreon','https://lh5.googleusercontent.com/--Eu7H5c-TIA/AAAAAAAAAAI/AAAAAAAAAAA/POB0_rtCM70/c-rp-mo-br100/photo.jpg','14567670160750071148',1416),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtU27APf6INbbeYlh8J4m75bOxQYnHjbF02FpzY_X8E0TTCXlJwgomNzzWYjM26YDP1nv_8oH1luRU62hVpuexeZbOuA','I love the staff there. Everyone is so helpful and caring. I know they were trying their best to find out what was going on with me, but the doctor and myself were confused. But my experience there (when i do go) is always positive. Thanks SignatureCare ER. My favorite thing is the warm blanket...I wanted to take it home! lol','2017-04-13 14:09:17.466000','2017-06-12 06:24:27.971000',5,'Adrianna M. Coronado','https://lh5.googleusercontent.com/-07zRxxIhvx0/AAAAAAAAAAI/AAAAAAAAAAA/Qc-mYsCipwA/c-rp-mo-br100/photo.jpg','3511292162159714121',7813),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtU2RnGZrr8lbmCUUSqfDX3IgC4qML9r8ikjN9bwVH-OjBsw_ORf8zSDmMIrqznTHPx-W-S-FTtTcr_BppkH6lwVzWXY','Given the circumstances, they did their best and ensured that we were treated with quality service. They gave us water and snacks multiple times during our wait. Lisa B was great!','2020-06-12 23:14:23.609000','2020-06-12 23:14:23.609000',5,'Mary Hoffman','https://lh3.googleusercontent.com/a-/AOh14GgKqDJGMSVvC4sCbilfhxiAvAdNZvLGAxOUITYW=c0x00000000-cc-rp','16891069708558046635',22045),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTuD164dH5QdhfxlMnKm3E_eUVv6LyKmX0U0V6MCc2qzWqB9dbZu-Sa4HZ583UaKQofjASovNX5kfKEZv4U8SAFO6xyo','Nurse Alvean was so kind and professional.\nDr Do made me feel comfortable and relax.. Very easy to talk to! Thanks y\'all','2019-06-25 18:42:24.196000','2019-06-25 18:42:24.196000',5,'Hector Sauceda','https://lh3.googleusercontent.com/-YCP-VFR10Ts/AAAAAAAAAAI/AAAAAAAAAAA/f-d3y1kB-Sw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTwCkcKMwje-Vqz2kQZdqHIHS9y8fF5GHUQXlDj54opvLOnngMplO3aR1Dh8T2op_l-OjZznnt4yKvRMnz2dZ56wVisY',NULL,'2019-09-18 19:36:36.382000','2019-09-18 19:36:36.382000',5,'X Gordon','https://lh3.googleusercontent.com/-B90pRYw5A-o/AAAAAAAAAAI/AAAAAAAAAAA/AaRkCc1gNgw/c-rp-mo-br100/photo.jpg','16389487648212004696',2900),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FtYj0qItpazp3egl3ywesNS_7B7493_ZARTk4VMlkLLqSd5XQsrfMQzILvB0vCibVw5jGIe1dwAj0tdAosj_4s5SoPhU','Friendly and caring team. Fast response to injury care. Clean and spacious lobby. Sindy expressed heartily and sincere sympathy... Thank you for providing a great health care service.','2019-10-26 17:56:57.068000','2019-10-26 17:56:57.068000',5,'Ed Saldana','https://lh3.googleusercontent.com/-XHIMQXmVRBc/AAAAAAAAAAI/AAAAAAAAAAA/jVqW3aIdzlE/c-rp-mo-br100/photo.jpg','14567670160750071148',1207),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FTZYHCSmOepxuMhb75h09z2MFMVxG_FJNTAh_J-om8gG0FB28cUpCnFNcnrKZRY18h8hhWSjoPh4ilrIMNpysjpSfjws','I came as a walk-in and didn’t even have to wait 10 minutes! This Signaturecare Emergency Center is really nice and clean and Dr. Edwards and the nurses were all friendly and helpful as well. I would recommend this place to anyone.','2018-09-01 19:43:38.432000','2018-09-01 19:43:38.432000',5,'Carmen W','https://lh5.googleusercontent.com/-GfbrY3RD1z8/AAAAAAAAAAI/AAAAAAAAAAA/DK70e6rM4Xw/c-rp-mo-br100/photo.jpg','17394740196501090048',4810),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FU_VxTtNNYe_MaWGJ2GmkR6zK18BmcoHyO9h16qUUzlyu_gtaM-Rg2uGGzVwLyJ-H_rJWTgCBJsea1Rw7J-vHvCaF2Hk','Front desk staff, nurses, and Dr.’s were all fantastic and made us feel very comfortable. The facility was modern, clean, and hi-tech. Almost no wait time. The Dr. was very thorough, and took extra time explaining things to my wife and I. We wouldn’t hesitate to come back again if necessary.','2018-11-26 16:36:19.457000','2018-11-26 16:36:19.457000',5,'Michael Horne','https://lh6.googleusercontent.com/-k__1LU4E6vM/AAAAAAAAAAI/AAAAAAAAAAA/crEGzbcFvFI/c-rp-mo-br100/photo.jpg','14567670160750071148',1456),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FU1euUVCWw94PxpOFU1WEMdrDkpodIy5kbBQ3vF4s1Ew1Iuyck6zlUnYwOS3ex_RwepYk9Y5LZR0hwY4h4BLqYjCbD_Y','Great friendly neighborhood Care Center. I highly recommend this location for anyone who is looking for a quick urgent visit.','2019-07-15 00:55:15.669000','2019-07-15 00:55:15.669000',5,'Janny Briceno','https://lh6.googleusercontent.com/-Pha2GmxOBgo/AAAAAAAAAAI/AAAAAAAAAAA/VGSwBJ1thm4/c-rp-mo-br100/photo.jpg','14567670160750071148',1276),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FU6G1Q6rWJ8Px8KTskC_e2vq-Q_L7DeZpkvp1N1quTusX3gYVnBgaUkfstf0jlagq5JrpxwSVTXZqab4EDbI92sVImCk','I went in very late at night for chest pains and was immediately taken care of by Doctor DeWaal, the Nurse Kate Kelly, the Radiologist Chad Yokum and Earl Hines from registration. They were all warm, friendly, and comforting and were immensely helpful to me when I was quite fearful for my life and health. This place gets 5 stars from me any day of the week.','2019-05-05 13:28:52.061000','2019-05-05 13:28:52.061000',5,'John Doe','https://lh5.googleusercontent.com/-_X01elclz7A/AAAAAAAAAAI/AAAAAAAAAAA/uWfBhgHm15Q/c-rp-mo-br100/photo.jpg','16891069708558046635',4288),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FucjlC-dvzUpgzzWZpCzhwXAJhJmC0-HEtqkY3A35ZwJ38tU8L4J6xUVHpN4GHDSfaHCDZ_OmeN2fcF-q5Pyd6Tk2ONk','Great staff here!! Rebecca V. was so patient with us even though we came super late and with a large support group.','2020-02-02 07:03:47.071000','2020-02-02 07:03:47.071000',5,'Chioma Mordi','https://lh6.googleusercontent.com/-BODQ1l0nKHs/AAAAAAAAAAI/AAAAAAAAAAA/GKQWa952LZg/c-rp-mo-br100/photo.jpg','16590124370714063921',10428),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FuD-YyVrKCy2VLWvRBzlpR7BROBxwsvtL02HWCJ5NTZqd8V2yG6qB833hkoDItIaKNV9WuDiqv9sLKR-KvfnyixXPQfY','Amazing staff! I was in and out! Everyone was very nice and helpful!!! Thank you Chantel, Dr. Thomas, Fatima and Tanishia!!!','2020-03-09 03:57:26.195000','2020-03-09 03:57:26.195000',5,'Amanda Vazquez','https://lh4.googleusercontent.com/--jxAEPfYbgw/AAAAAAAAAAI/AAAAAAAAAAA/xvZz0sfMbHQ/c-rp-mo-br100/photo.jpg','17898197009688164559',20064),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FUEZknvEIeMKLQmkwDwoWjqqJ5kPpl0oKaUsWB8nmHgq-rPQEbi7suzzR3cxfMrrOjoxrndRgaxF5SNmTJ1c715292ic','I wasn\'t sure what to expect when I got here. From start to finish the entire staff was very professional and welcoming. They made me feel as comfortable as possible. I believe I received the upmost best care during my visit and I would definitely recommend this place to others.','2020-07-08 00:09:18.365000','2020-07-08 00:09:18.365000',5,'Aprile Contreras','https://lh4.googleusercontent.com/-whiUjLYUqDY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckouSWLDGi8I3OSYKCSTJXUyg7nkw/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21414),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fugyu0iDMWnU4GfYmOPhcfRLo-lHJL28u31DN17wuYlXD-p9t6c9drGF5UBMAngAubDd4M6YTPL7kMBhLPJTya0Ki9vE','It was very clean!!! Carla was wonderful at checking me in... Dr. Yost was very understanding ... Lucas was awesome on giving the shot... Theresa helped with an nice warm blanket... Jennifer was excellent at taking xrays...','2020-02-01 21:32:52.751000','2020-02-01 21:32:52.751000',5,'Patricia Nichols','https://lh5.googleusercontent.com/-Maorh1Gvrhg/AAAAAAAAAAI/AAAAAAAAAAA/h-oxQYtcl4s/c-rp-mo-br100/photo.jpg','3272657195432704501',14382),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fuh7gvXWFI4m1s7dTc16U0bnMAT2wr33NFGLFTF6el74sDOO8e9Xac7sFh6XyRsK9xWgNEDN0-5tK41xG92bzmD6Uq9Y','Excellent experience. They are very patient to explain everything to me. They provided great services. Doctor Dang, Reg. Cindy, Nurse Tammi, ER Tech Juan.','2018-09-22 21:32:10.373000','2018-09-22 21:32:10.373000',5,'Happy Fish','https://lh5.googleusercontent.com/-S7AMcFoFimA/AAAAAAAAAAI/AAAAAAAAAAA/th4g_-fI2p4/c-rp-mo-br100/photo.jpg','17394740196501090048',4791),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FUjg_MNaG0dPOlgy8GMELAeLuufUvqUZG7SEr9iENO0L2ARFj_C8_xvLNmTs1lgZGVtSrscY6Wr2EDb-t4fAX2t4v0zY','This was a scary visit for me. I had a post op catheter that needed to be removed and was very apprehensive about it. From the front desk all the way to checkout the team at this location took amazing care of me. They put my fears to rest and the catheter was out painlessly and quickly. The employees were so knowledgeable and helpful. If I or my husband ever have an medical issue after hours again this will be the place we go.','2017-05-19 04:07:31.381000','2017-05-19 04:07:31.381000',5,'Angel Morella','https://lh3.googleusercontent.com/-7NmmScIZEBI/AAAAAAAAAAI/AAAAAAAAAAA/oennlNAROXE/c-rp-mo-br100/photo.jpg','16590124370714063921',3986),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FUjx6bCUhMkoeZxX42pTQ4oBzOV_W2u-xKN60P21YxHYkX35LCOojIa-soYSBEKVMohzgK2yPRqgt4ap2wgETAHp-1F0','1st time at this location, overall great experience! Everyone was friendly and explained everything well. The staff were prompt and the physician diagnosed me quickly after reviewing my labs. I highly recommend this place! If I’m ever under the weather again, this will be my 1st choice!','2019-09-10 03:34:07.525000','2019-09-10 03:34:07.525000',5,'Lynn Jones','https://lh3.googleusercontent.com/-iKaX_w8IAl0/AAAAAAAAAAI/AAAAAAAAAAA/Z4Tcy-NEtmo/c-rp-mo-br100/photo.jpg','14904078213800803294',2096),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FUKexn2jaFJqPlnoj2618f1z_zRFVJ-NvZaXWMTdhxhhX0BOMNfGYtCW4Rhe6C6Vsz19HLTo5F7TXP43OxPzSHY3F2Xo','This is my second time coming to SignatureCare, They will get you in and out quick and they also have the best team that takes good care of you. Nurse Kristina, Doc Tran, Tech Scott , and Laura where so Awsome!!','2020-02-07 13:54:31.383000','2020-02-07 13:54:31.383000',5,'Britney Hill','https://lh5.googleusercontent.com/-iEXA3P7-eDE/AAAAAAAAAAI/AAAAAAAAAAA/yun_qHFU0U4/c-rp-mo-br100/photo.jpg','12541597562633926366',22473),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Ful4P7wq2R27YPBGzs_3J_cLgAzK6AeB0ZShGOUbJ5PVYnX80HhseMvsRsNwkmXFUc3sKdWgBSqrAiMojvNRZ8oPewik','I came here because I had a staph infection. I was so scared coming alone since my mom wasn’t in town. I am coming here for every emergency I have. Everyone is sooo nice! Dee and Brittany at the front desk are so sweet. I felt so cared for. They reminded me of like those kindergarten teachers that make you feel protected lol \nDr. Sylvester attended me and he was so sweet as well! Made sure I was not going to die like google had told me!','2018-12-19 16:45:51.624000','2018-12-19 16:45:51.624000',5,'Paola B. Castle','https://lh6.googleusercontent.com/-GP7uB0yK5Z0/AAAAAAAAAAI/AAAAAAAAAAA/-fayuALl9YY/c-rp-mo-br100/photo.jpg','3511292162159714121',7543),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FuLlLBNW13g3fRs7PQovZIpLP2RSVfZY-yfnlvJwcU-o5FqIHPkMFz9FrzQE6PAcFd7ASHuMpAAdlX38w81hnLSeTvjE','Worst location ever i came 3 times so they can tell us come tomorrow we out bands and there nurse really rude worst worst location !!!','2020-06-25 00:46:27.731000','2020-06-25 00:46:27.731000',1,'luis romero','https://lh3.googleusercontent.com/a-/AOh14Gjrx3xsGYW9Fz7XcRBx_5K-MZ34vMFe5RCApWB-=c0x00000000-cc-rp','17394740196501090048',21281),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FUlPAW6woVUiGX7Bd-4vLuqKkLOBWqjgpfnHeYrrtaws_qofa6zqj_Iqhoq2If1A2NUADcnCGv2KM3GsbPmNCEls40fE','Fast and very helpful staff. Would recommend to anyone.','2019-09-25 06:06:46.207000','2019-09-24 16:24:54.042000',5,'Cole McCoy','https://lh5.googleusercontent.com/-rqaAwb9_yig/AAAAAAAAAAI/AAAAAAAAAAA/dlVGO7EMKYQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3176),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FUOGiP_FTk8vewlro6poxh9t1kaxO4yu-yUlZyIvkGrRUS9DPcf3szLFHO-OUqPnzlC7wZVMYcJxK06M5_XcsSev-594','My experience a Cypress Signature Care was awesome the wait time was quick \nDr. Patel was the sweetest Doctor very patience with me very knowledgeable and showed so much concern.\nThe Nurse Alvean was very sweet also and very kind and attentive to my needs \nMarcus was just awesome all around Radiologist \nJocelyn was very Receptionist\nThis whole team was just super great to me on my visit on June 09, 2019😘👏.','2019-06-11 02:35:05.541000','2019-06-11 02:35:05.541000',5,'KARIMA ABDULKADIR','https://lh6.googleusercontent.com/-j6Z9baOtUVk/AAAAAAAAAAI/AAAAAAAAAAA/DQIIdf5u0zA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FusbUl6Mg8cfhjLCnNR2T0HJxSkWPjrHZqTBP0U9eFMDzPcbgDdsKRXaxuJkYrPul5uHGqZOuk0ibxyE1hf4zKcuzZ3M','The staff are always very friendly and knowledgeable. I appreciate their attention to detail and clean facilities. I would recommend this ER to anyone no matter what brings you in!','2019-10-26 19:41:35.475000','2019-10-26 19:41:35.475000',5,'0-60Videos','https://lh6.googleusercontent.com/-x80MVAYqy4U/AAAAAAAAAAI/AAAAAAAAAAA/ONYd8c9YjV0/c-rp-mo-br100/photo.jpg','8626688543755174284',14663),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FV21dOyY5uQfONUtN3W8duhItwCJuAu-0aFhE7ursoBqDXkK9MrDypRrARtqojrmoXVFhLthdlCU5Fu6E0S78rVqKehg','AWSOME staff','2019-10-14 00:25:09.784000','2019-10-14 00:25:09.784000',5,'Rosa Garza','https://lh3.googleusercontent.com/-VKloof5cnME/AAAAAAAAAAI/AAAAAAAAAAA/sFJ7nlfXfQQ/c-rp-mo-br100/photo.jpg','13486358490203335051',781),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FV8LRCOwejj65DTbGOXdKtCdtlAanlCdVEmqNbZQrWOal_SEBywug_ULNWsNWaO8zxMxfyixEu3piMAOn49DIbTULAp8',NULL,'2017-10-23 11:28:44.713000','2017-10-23 11:28:44.713000',5,'Dulce Soto','https://lh5.googleusercontent.com/-n3IXlbU_Bng/AAAAAAAAAAI/AAAAAAAAAAA/Lhda1yQqiNs/c-rp-mo-br100/photo.jpg','14904078213800803294',2315),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FViH9F0PZ-zm2i3fbs2A34KngC82nr85GxyxeyFVh8YjtMIBlxz5qoqQ_Whqvachli0UoWI0kPl4Qp1BXeJsGKmW5JTc','The staff there is amazing! Dr. Miller saw and treated me she was amazing and answered all my questions. Her RN Shelli was great made my shot very painless and Eileen at the front desk was very helpful when it came to filling out paper work and where to sign. Adam the Nurse manager at the facility was so great they got me in and out when I had a flight to catch! I would use Signature care anywhere that I found one. These people are the greatest!','2019-07-10 06:14:12.510000','2019-07-10 01:18:48.963000',5,'Robert Bratcher','https://lh5.googleusercontent.com/-gv0bzsXnJDQ/AAAAAAAAAAI/AAAAAAAAAAA/nuUrluW_kxw/c-rp-mo-br100/photo.jpg','16891069708558046635',4237),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FvJS3fvraCz7ywBgZrCyw2FbJeLg1GgpQYWPTBXz6S4zFWLQ5Z5urWSYqazm5_etDr49rmm1L0HlEy3WIwfIBeiqICLM','Signature Care was prompt and friendly getting my test. Would use them again.','2020-07-24 23:31:52.736000','2020-07-24 23:31:52.736000',5,'Gracie Fuessel','https://lh4.googleusercontent.com/-VM7X92RS4Vs/AAAAAAAAAAI/AAAAAAAAAAA/M2SW5tcUxzA/c-rp-mo-br100/photo.jpg','2077061009497551125',22847),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FVMI5p09CoRLuyg1TO9qzT6ksMTIuIFyRGGfB6yio6L5MpmWr2w_jqD36FhNU4LtTBrprqKzKowgKMs2fC-hGZuu7_1Y','Great experience and I was very comfortable and everyone was very helpfully.\nDr. O’Malley, Alvean, Kelly, Jocelyn.','2019-11-27 23:28:44.974000','2019-11-27 23:28:44.974000',5,'Rob C','https://lh5.googleusercontent.com/-VMBo0uHi8eE/AAAAAAAAAAI/AAAAAAAAAAA/4o4aA5aoLYw/c-rp-mo-br100/photo.jpg','16389487648212004696',2614),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FVnEZ96YO4AtEl7krZ4C1NP47MiPFEuKC3E5jJ_T8IuAdcdEMyVxtYKHOFnSwa16x2ELDuF1Sr4dDxvGqOaGEfRF_zTE','One of the worst experiences I’ve ever had with a 24-hour “”Emergency Center.”” Our family tried to get a loved one in for COVID-19 testing due to similar, progressively worsening symptoms and were outright refused by the women at the front desk (despite calling in advance since we were located 2 hours away). We were informed when we called the location that morning that there was no need for scheduling an appointment if he was brought into the ER to be seen, and he would be given a COVID-19 test given the symptoms he was having. However, they refused us upon entering + explaining the situation and would not even let him be seen unless cash was paid *even though we provided proof of valid insurance*. This is clearly a business that looks to cash in first and provide care later. The front staff was completely unsympathetic and turned away multiple other walk-ins with similar situations & symptoms while we were there. Absolutely unacceptable service for a facility in the business of providing healthcare.','2020-07-05 01:13:40.251000','2020-07-05 01:13:40.251000',1,'Sam Cypert','https://lh5.googleusercontent.com/-ugib_h9O4-A/AAAAAAAAAAI/AAAAAAAAAAA/VJIdw-Rv5Tc/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',21375),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FVOkr7fc8avjSZjCheQBl6wp0XCP5XGqewaSY-C5ILwPe9VgB5LsbF209FLvOyT90HPvRRHDcuBmZQwFXGJBZm2rN9Ps',NULL,'2020-07-19 17:24:56.824000','2020-07-19 17:24:56.824000',5,'J H','https://lh5.googleusercontent.com/-pQpdTbxI7ww/AAAAAAAAAAI/AAAAAAAAAAA/DkofSoqFhVo/c-rp-mo-br100/photo.jpg','14748677429039074158',21710),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fvq-DvcHDEot78wPEQb69e9-Ao5jYM4RusU6llYCx2cwFANcOJ0mtXKDb2YD7Me8-b1Fs9MLOAJG8Kv5XFHRZze1WTi4','Dr. Jones was very informative about what and why he was doing what he did. The rest of the staff was very caring.','2019-01-23 01:10:02.610000','2019-01-23 01:10:02.610000',4,'Kristy Perkins','https://lh4.googleusercontent.com/-obZj2Lv_xBY/AAAAAAAAAAI/AAAAAAAAAAA/m3lB_99Fki0/c-rp-mo-br100/photo.jpg','3272657195432704501',7045),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FVQowXXmeYo19h1d6WJ6vH7V2teCQ3CFRP0bOzbp25L-nYpCgV0B8fb0h1qxbDBSPV3kBCxnOnsxAPo-Rb6b26D3kqYU','Everybody was very nice. Everything was very clean. We didnt wait to be called. The dr.was very profesional. Very good staff and service.','2019-10-24 14:33:39.001000','2019-10-24 14:33:39.001000',5,'Irazema Torres','https://lh5.googleusercontent.com/-t8gMvF5cb_M/AAAAAAAAAAI/AAAAAAAAAAA/J5nht6ImxB8/c-rp-mo-br100/photo.jpg','2694018788013845459',6034),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FVQV2tekcJaHDy8JRR3JY1SFdF7w4jLPTkKdxwMjmDTC0JyLk2KsOrDxk5hqXsZrIXB_nFZ_dhhrOWMIh1odsCwefEQo','Ok, if you need urgent care and you are in this area then this is the place for you and anyone you care about. Dr. Wren and staff were incredibly patient, caring and attentive. The nurses worked as a team and were all on the same page. While everyone was extremely professional, they also understood that people are human and you are there because you are sick or injured. I am afraid of needles and needed an IV. The nurses took extra time and care to make little things like that as painless as possible despite the conditions. I would highly recommend this facility if you are in need of urgent/emergency care.','2017-10-18 22:29:19.662000','2017-10-18 22:29:19.662000',5,'Vincenzo Cox','https://lh6.googleusercontent.com/-dh-hn0F3EBc/AAAAAAAAAAI/AAAAAAAAAAA/b9tGf54FGtk/c-rp-mo-br100/photo.jpg','17394740196501090048',4946),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FVtlzTiyaqtJtnioRFqcrWPc5aH-df8xujzBYENKoLxIVgjwMO6gr6me4PYS1RpyygC9bcvloRpkHWy5c_Hgo_BantK0','I think they had great service \nThey were informative quick excited \n\nMaya at the front desk was so sweet \nStephanie was our nurse she was very helpful \n\nDr Singla was very helpful not a long wait at all','2020-01-23 20:56:06.977000','2020-01-23 20:56:06.977000',5,'Rachel Cabrera','https://lh6.googleusercontent.com/-uylEyl6cVks/AAAAAAAAAAI/AAAAAAAAAAA/y8aIc7R3Pvc/c-rp-mo-br100/photo.jpg','12541597562633926366',10104),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FVULUqemfm7WjAoBVdo-SAs6g_lMEs02Npq7jdjOLuUCnSvLrdHpKkA_8Lx5v086Br6WoSoOUEmqr1-6ueLLONMXmCu8','Wow first time here and forever. Best ER in cypress by a long shot. They take care of you right away, within minutes of checking in and super easy! The techs, Fatima and Daniel were sure I was feeling confortable and warm, honesty made me feel at home. Doc Nguyen took great care of me and told me my xrays show I got a strong back. And nurse Sarah gave me my shot for pain which she warned me it was gonna sting, she didn’t lie. Over all great experience and will come back next time I fall ill. Thanks yall!','2019-10-01 01:35:21.279000','2019-10-01 01:35:21.279000',5,'Rafael Medina','https://lh6.googleusercontent.com/-jImxMR4XexA/AAAAAAAAAAI/AAAAAAAAAAA/naeU1X5_T14/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5530),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FvwQS3vRKzjbpErcIZ57F90_0MVOc059-ihNjBYZiJa4FyNXDUmIirG_3_OPQFxoys1RZhug46gZs7VUSdH7qjZeTUFQ','Everyone here from the registration to the Dr and in between were amazing! The wait was great, everything was done in a timely manner. We laughed, talked ad ate while waiting on my results! I absolutely love it here and so does my family! Thank you for all that you do and keep up the good work! I would definitely recommend Signature Care-Mission Bend to anyone and I will be back whenever I need to be! 😀','2018-10-20 01:08:06.735000','2018-10-20 01:08:06.735000',5,'Cale King','https://lh3.googleusercontent.com/-Xkx0NcIITMs/AAAAAAAAAAI/AAAAAAAAAAA/tMK5JxPVEz0/c-rp-mo-br100/photo.jpg','17394740196501090048',4771),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fw_4AJHrFFbjRS0krgw8KoFc8yi46FX5Du6H7yT3huf4DmX4gV5tZ74222TNMpswOMZsWOFa0khJ-2lalucgvoY15g1I','Excellent service and excellent care Dr.Iheme was very patient with me, and very knowledgeable, I was treated with excellent care, from Tricia,Alvean,and Elida. I soo please with the medical care. I highly recommend,Signature Care at Cypress. Thanks for everything.','2019-10-03 15:37:58.665000','2019-10-03 15:37:58.665000',5,'Sabrina Seals','https://lh6.googleusercontent.com/-Q01wt19-ucs/AAAAAAAAAAI/AAAAAAAAAAA/IfqSkoUzbbw/c-rp-mo-br100/photo.jpg','16389487648212004696',2859),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fw3a154Yri_kYPXpFrqmpkLsmZIvareizInY-AWvo7GxZplZ-uh72ynjG8pExoix2567Md9h4aGh1oFyQofEU_w34a2E','The Dr and staff was really nice and prompt with taking care of me.','2019-06-17 11:15:35.136000','2019-06-17 11:15:35.136000',5,'shelley062004','https://lh3.googleusercontent.com/-mG4nwgEqioY/AAAAAAAAAAI/AAAAAAAAAAA/qemnFCZyNRQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5694),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fw7Ypkc3LxcJBTfDETiqcMyg8lfzLPlkJBNtLsevSh26o7GpPpne1Kw5Gp1MeC4_i4Xq4w9MsXzR9Bc7itJjoGRLV2dw','I had a very good experience at Signature Care. Courtney got me checked in quickly. My nurse, Jennifer, was kind and attentive. The doctor, Dr. Ashbrooks, was very thorough and got me meds and all I needed to be on my way. Thanks again!','2020-02-25 19:34:18.128000','2020-02-25 19:34:18.128000',5,'Emily Thomes','https://lh6.googleusercontent.com/-H3ebxhH-qyw/AAAAAAAAAAI/AAAAAAAAAAA/D1kwXsgnkms/c-rp-mo-br100/photo.jpg','3272657195432704501',14328),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FWASHufZdEFTsasuILt1ID_HB4tm2dYkQiEMaWzmDKxRueYV4esZgswh7CwusZIKiCeqFom6N_zIoMhv9l7ZSV74Fs-A','Very quick, nice & comforting. The nurse, Sarah G. was very kind. William M. was very professional & Elizabeth was very sweet & helpful.','2019-09-26 02:40:21.241000','2019-09-26 02:40:21.241000',5,'Melissa Loera','https://lh6.googleusercontent.com/-TDxOaUi5FK4/AAAAAAAAAAI/AAAAAAAAAAA/9jflmW7qbCw/c-rp-mo-br100/photo.jpg','17898197009688164559',5538),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FWB1os9ofx7T-yaz8mZN2uLlKWtQSd4ao8c6LYYZc1BkIe-tncMGMXYOKFtVZrW-fHawdfDACjkACKmlgrjHrir6ewts','If you are seeking medical attention I recommend you come here. Everyone from the front staff ( office ) to the doctors & nurses are very nice & work in a timely manner.','2020-03-03 16:05:27.114000','2020-03-03 16:05:27.114000',5,'Terence Robinson','https://lh3.googleusercontent.com/-b-WU7dIvE5g/AAAAAAAAAAI/AAAAAAAAAAA/MatPAqSaldo/c-rp-mo-br100/photo.jpg','12541597562633926366',13318),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FWBRY4KynaT-NSDRDmusp56pbXyoFi-oemFuq6ywOHrYECoCRMLZmIPG_NywtFS1p4ReANyBbHPWkKbkXeWUxMyogE-M','Do not get COVID testing here! Got a PCR test for COVID at this facility. Labcorp had results after 3 days but did not post them on the Labcorp website because this facility incorrectly entered my info. Tried calling SignatureCare over a dozen times and was told they were not responsible. Security guard finally let me speak to someone at front desk after 14 days and I got my results. Facilities like this, holding up COVID test results, are why we are having an outbreak in Houston.','2020-07-17 22:50:52.379000','2020-07-17 22:50:52.379000',1,'Ben Mescher','https://lh3.googleusercontent.com/a-/AOh14GgVaeGK7RhQT574zIhBgja7GlNektIQc7TzzUjBhg=c0x00000000-cc-rp','14904078213800803294',21948),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FWCH1SoZFhPCtUKX729LzMKtLVQlfdx-5S-yw9wd3crx7TyIJNZU1TgW1FvORiPUJRo198L4sfQaCpsNStery7w4KacQ','Had chest pains that I didn\'t know how to treat,and as soon as I walked in, reception was very welcoming which is always nice. Staff were very quick and helpful, and did everything efficiently. The doctor effectively diagnosed​ my issue. Would definitely recommend!','2017-04-15 02:39:08.082000','2017-04-15 02:39:08.082000',5,'Guadalupe Rodriguez III','https://lh6.googleusercontent.com/-OrFV1ykFoQU/AAAAAAAAAAI/AAAAAAAAAAA/_K_9gUTGvhY/c-rp-mo-br100/photo.jpg','16590124370714063921',4009),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FwFaNOqx611Vtu9Shpp3Jm4hDNOR7jO5TQAaxiXXaBnnAT_4YY25KX_3gilpB5XAH06zJXfUjAaxgd6cJtsWyLG627NQ','The staff were great. Nurses Kiera and Sadie were awesome.','2019-10-27 02:28:35.917000','2019-10-27 02:28:35.917000',5,'Michael Scown','https://lh3.googleusercontent.com/-8GiLG5vTEcs/AAAAAAAAAAI/AAAAAAAAAAA/wz94OzqVeQw/c-rp-mo-br100/photo.jpg','6521947413723274945',8105),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FwjK1ZEEARSD70IGoNgMbbB2sp0orIwQTZJI-b-av1RI1V1hOkDqxklVQTN4bcrtPgKyapVOG7AgeeTl3bCNEi8E4_-c','Awesome','2017-04-17 04:02:42.725000','2017-04-17 04:02:42.725000',5,'Valentina Doss','https://lh4.googleusercontent.com/-z2stBCU9h8M/AAAAAAAAAAI/AAAAAAAAAAA/AXnbstY9_0s/c-rp-mo-br100/photo.jpg','8679688254631342173',8916),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FwMFnwpAdt72bZU3nDeGx4zg5jYO8xuna7O7PTebB8Zsn5ymp8q9osQdokM1R7Vfd9gmrZpBFnwFDH_D2ymZhVMfMZqc','Very nice and professional group of people. I have been there a few times and always got treated promptly and professionally','2019-12-29 18:44:53.447000','2019-12-29 18:44:53.447000',5,'Tmoney God','https://lh4.googleusercontent.com/-4Zqr6oItJA4/AAAAAAAAAAI/AAAAAAAAAAA/F4xF5hr3OXg/c-rp-mo-br100/photo.jpg','2694018788013845459',14283),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FWnx1xXBwfXBG235hXbMvOU7c634c-opPpW-xFz2HYNLVQmvZrersP6AYaw2Z2NDhScX2_xYYR6h1rSSKYJlfutTv5rQ','Because of this facility, my appendix did not explode, and I am still alive. If that isn\'t worth 5 stars, I don\'t know what is.','2019-04-05 21:16:56.141000','2019-04-05 21:16:56.141000',5,'Gary Bacon','https://lh5.googleusercontent.com/-Cr7a5pKt6jg/AAAAAAAAAAI/AAAAAAAAAAA/CIsV19VyFdk/c-rp-mo-br100/photo.jpg','16590124370714063921',3452),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FWPB0oXq7UPoZXvW17VS3NDmblE5Q3NRrU5mfyMxPFUXDEHPQ52o7j-Qe-uGznpUT76G2-M70zMwsg5IMWwLhPCH3vhw','Staff was friendly and professional. Lisa .H was great to deal with and doctor and staff were very attentive.','2020-02-15 14:42:23.832000','2020-02-15 14:42:23.832000',5,'Kyle Wein','https://lh5.googleusercontent.com/-mQV2TLGtJFo/AAAAAAAAAAI/AAAAAAAAAAA/Y6CJ1PuXsXQ/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',13421),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FWq52--NKcSmMZIeh2wUSC0yWzTi1FIljQ1IfOkxOpx0WL-38mMI9SAG4LxEjlBkR1TN4bEh0bhkd0uqI9etAwZVRyqY','Couldn’t be more pleased w my experience here yesterday! From front desk, to the nurse and the doctor everyone was so kind and beyond gentle w me. The place isn’t freezing cold like a hospital, the offerings of a drink or snack was a nice touch. Even the prices for my procedure wasn’t astronomical. If we ever need an ER again this will be our go to place! Thank you all!','2018-04-20 14:00:23.941000','2018-04-20 14:00:23.941000',5,'Kelly Encalade','https://lh6.googleusercontent.com/-sWsXJ4slM1o/AAAAAAAAAAI/AAAAAAAAAAA/hSiKD6YfTuY/c-rp-mo-br100/photo.jpg','14567670160750071148',1632),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FwqyupMn9XN_s3SaIbRlDq7yuUmh-YXuXMoSjni5KYzKpJ3D5N7pQt2nL8_NJ5_QbqrkU7q_ZioIn3TU56rSu78NoR8E','I went at night with a very strong headache. Everybody was prompt to fix the issue BUT the male nurse that was on that night shift, was really unprofessional asking several times what happened to me when everything was already written in the clinic history. But the way he asked was really rude and even I was trying to explain him why I wasn\'t answering, he was very incomprehensible and rude. So just imagine the picture, you are with a really strong headache and the nurse pushing you to answer because he didn\'t understood. Come on!','2019-09-19 18:29:19.001000','2019-09-19 18:29:19.001000',3,'Jose Gabriel Rosas','https://lh6.googleusercontent.com/-EwJLHg0kNbI/AAAAAAAAAAI/AAAAAAAAAAA/8BfiCAyf-rQ/c-rp-mo-ba5-br100/photo.jpg','12541597562633926366',417),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FwRyLhJbMNlQ2zJ9G7hhxbFswtWY5T0gge-cG9gVJzsL-TTbF-bYMWyJotE0HYzHOsMSi0-LVu_um6q1nyzjvvLL2Xm8','I went to SignatureCare for lower back pain. My experience was great the whole time I was there. From the front desk to the end of my visit. Diana at the front desk, Andrew I believe manages this location, Pam the nurse, Dr. Akunyili, Sebie did my x-ray. Also Kelley, she was not my nurse, but was very nice to me. Keep up the good work guys.','2019-11-18 23:18:25.380000','2019-11-18 23:18:25.380000',5,'Nneka Isibor','https://lh4.googleusercontent.com/--Duteo2q1Rg/AAAAAAAAAAI/AAAAAAAAAAA/AunN9Mzl5wk/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9047),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FwS4lpPbusBJE8L9X0soB1E6CjeKREyf-wtDpT5JCB_9yLkGWoipPRgqilQRuh1QAMvQ157f2WyueSW4_OQ4_2k911M0','Awesome service as always. Karen, Delicia, Dr. Ybarra and Rick were very welcoming and pleasant ❤️','2020-01-31 23:04:56.616000','2020-01-31 23:04:56.616000',5,'TIANA clark','https://lh6.googleusercontent.com/-1cKTLtlgLac/AAAAAAAAAAI/AAAAAAAAAAA/AhD6p9dN4TU/c-rp-mo-br100/photo.jpg','8679688254631342173',14770),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fwu2g7ewo8U9dxWOtUz_F7CaLeRIXbR6v1F9oDzWsoYFXtzt2FYjc7au-MLT8rNSaujEXfGS6K7lUw1OjfrwcBHZC__U',NULL,'2020-03-13 15:39:24.414000','2020-03-13 15:39:24.414000',5,'richandra justice','https://lh5.googleusercontent.com/-FoDHZcj7XfU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmScNC1l5I0kPqx9npUT0Zhw4pQ-g/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21090),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fwwt5KmTBneeD_TVwEfXyHpL8vKmWQyqR24V-odNUfKCfdAnmbwP9zRE-qlcfwBfH1nJozwf-AcLoHTN-BHvl8fXAIfk','I don’t recommend this place at all. They charge me $10 for COVID-19 test reservation. I arrived there to take the test but there was 10 people in line. They keep you in line outside in 100 degrees and no social distance. My appointment was at 11:00AM but I waited outside until 12:00PM while there were still three people in front of me. Finally regretted it and left. These people are taking advantage of this situation. They give appointment to 20 people at same time to make more money.','2020-07-09 17:11:34.400000','2020-07-09 17:11:34.400000',1,'Sina Bazargani','https://lh3.googleusercontent.com/a-/AOh14GgWSqy1E31yJSHRrfHXuedGAvIRnhs041sYECdf6w=c0x00000000-cc-rp','12541597562633926366',21810),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FwxVxapmx5sR9x6BYqZUuB14Hm2HsZErjdcEtbJ21Is1LzdG_Z4xa2RgZah7FkpqDz_WBdkfXGGzBRmgYPHkzMka3220','I went for a check up and I had a quick results from my exams of my problem all the team are nice there.\nThank you to Dr Harjai and his team \nAlvean A\nTricia B\nElisa Jasmine','2019-10-31 20:29:45.243000','2019-10-31 20:29:45.243000',5,'Ramiro Mondragon','https://lh3.googleusercontent.com/-BcsNYUfdXaw/AAAAAAAAAAI/AAAAAAAAAAA/AlKn7b_OEIw/c-rp-mo-br100/photo.jpg','16389487648212004696',2746),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FWZgQ7JBwNksLDhiCb_3yK3s65hR56anXus6TxFREz860KlZaFTd9mHdoYUEmGLb5wZw9Lp_7KD6VbiLGKE38wBaxALE',NULL,'2020-03-16 23:05:29.998000','2020-03-16 23:05:29.998000',5,'megamanx6541','https://lh5.googleusercontent.com/-1Kxu325JEfw/AAAAAAAAAAI/AAAAAAAAAAA/YHSbqwi6oU4/c-rp-mo-br100/photo.jpg','6521947413723274945',21165),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FX-l8MmNXBW53lVHBWtdZ7bITegNAysjUGEvNV22INg5b_yIQzJQ2yySrqAT1o_Y9NBq3gmrzLjiOINJPicb8NV-6yyA','My son was seen very quickly! Thanks! \nRegistration: Maya\nDr Singla\nNurse Mayra','2020-03-12 19:55:07.075000','2020-03-12 19:55:07.075000',5,'Tonn Rak','https://lh5.googleusercontent.com/-XE1AUXxRRMc/AAAAAAAAAAI/AAAAAAAAAAA/aWaIUodN9e8/c-rp-mo-br100/photo.jpg','12541597562633926366',20908),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fx0PXlRwKzqqDX6vzkqtVlj2lwOl3vS81Ft4vU2awP34RHNu8wJUJKbwZLMg7XBxphiqR86ewb6vNsZuwB9_wzBTGkdc','The front staff was very nice as well as Anthony and Dr. Vakey. Very professional and addressed all my concerns in a timely fashion.','2019-07-08 13:27:38.661000','2019-07-08 13:27:38.661000',5,'Haylee Parker','https://lh5.googleusercontent.com/-jZxWAZUiWnY/AAAAAAAAAAI/AAAAAAAAAAA/dMf3tSTue2A/c-rp-mo-br100/photo.jpg','16590124370714063921',3309),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FX4h0nNIjoaJCXLlaLm4bXt-sd5KiVnvIpFDcZZEiBbczoVZUjaulJfRaMaKVJC7APOHlATE_SsLuI8cToSMnIRFzplM','We were helped quickly and the staff was very friendly. Rebecca W. was excellent.','2019-08-31 22:09:09.675000','2019-08-31 22:09:09.675000',5,'Ross Beazley','https://lh3.googleusercontent.com/-zSoivweDjOI/AAAAAAAAAAI/AAAAAAAAAAA/DXKrTngYyQw/c-rp-mo-br100/photo.jpg','16590124370714063921',3226),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FxBgOmyYO6HckcdtkHrc9oNZkD-nc4eBzQs9Sjob_QuusRXAlqnE2fAT0KATHIV-J0cF3B_f9oZOMKWC0lhD3Y-dxcOQ','All the staff here have the best attitude great personality, very sweet personal exelente xare thanks to Mrs tanisha W,Daniel B.LauraH.SarahG Dr,Henderson, mid. Thanks for the best services','2019-10-23 01:34:12.127000','2019-10-23 01:34:12.127000',5,'Berta Aguila','https://lh4.googleusercontent.com/-h_zXBZneraI/AAAAAAAAAAI/AAAAAAAAAAA/fcI6zedwyjE/c-rp-mo-br100/photo.jpg','17898197009688164559',5491),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FxbkW0xhDV9sDDPOnfFgH3nsXqTxbqqva1f4rWsoKn-DXLu60tzwx646kkhuLNdkkv14rqvDdWE_eeOfLfpAzU7PFjRk','Service was quick and efficient. Was greeted with a smiling face and assurance that they\'d have me feeling better. Dr. Chen was amazing. He addressed all of my concerns and was sure to explain my treatment every step of the way. Had I not felt better I even had the option of staying overnight to he observed. All of the nurses and staff were very friendly and attentive. And by the end of my visit I was feeling better. When it comes to emergency care, it doesn\'t get any better than SignatureCare.','2017-11-05 14:41:34.968000','2017-11-05 14:41:34.968000',5,'brittney mcgowen','https://lh3.googleusercontent.com/-PFmhmfBWwDI/AAAAAAAAAAI/AAAAAAAAAAA/CNTGkGh-fG8/c-rp-mo-br100/photo.jpg','3511292162159714121',7764),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FXfQ-VTP3L7ktlDKvHnvec9qoLZbV2LyrilSexLAH5VbV9Oh3PggRjuudwZDcmGwrvv0JfRr3EJI8D__hwQxkUnBT9pM','The best location!!! Keep up the good work👍🏾','2020-06-05 16:59:45.138000','2020-06-05 16:59:45.138000',5,'D Stevens','https://lh3.googleusercontent.com/-xVnOM4dnn5s/AAAAAAAAAAI/AAAAAAAAAAA/Ytsi2EDBq3I/c-rp-mo-br100/photo.jpg','8918455867446117794',22934),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FxilXl4c9vCqQjVeREQQ3LvbAqs9hm_l7Nk2bFeVv9Qlw_w3QQFdZbvMhx4U10unicC8fWW7HhEGMcrS_PaMMCZUqY7Y','Doctor Nguyen, C DO was an amazing doctor who was super nice and was able to find answers i was looking for. \nRadio Technologist: Fatima, B. Was also an amazing person who was super nice and friendly. \nI just want to say Thank you SignatureCare Emergency for taking care of my wife.','2019-12-08 04:28:17.009000','2019-12-08 04:28:17.009000',5,'Jesse Rivera','https://lh6.googleusercontent.com/--HYABzE6uKM/AAAAAAAAAAI/AAAAAAAAAAA/DpbGeMIOkyg/c-rp-mo-br100/photo.jpg','17898197009688164559',5372),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FXMFFfkONu-z4K7uSNTgtJk7GjGQrKldqVuzuAklnpjM8hD1AZ5m_ZF4vsG_PjAm3L0NQwaR9V5ViWUVYBMdMBvJA98Y','Leslie, Rollie, Nantalia, and Stephanie were all absolutely lovely & awesome. I arrived in so much pain and they were quickly attending to my needs while making me comfortable at ease. I highly recommend them as your er!','2020-01-15 04:19:14.919000','2020-01-15 04:19:14.919000',5,'Terrika Turner','https://lh3.googleusercontent.com/-vb_zIfWD7UA/AAAAAAAAAAI/AAAAAAAAAAA/XfSxed9AZck/c-rp-mo-br100/photo.jpg','8679688254631342173',9835),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FXpV-n8ap80eGdwkZHnnfCNlN7RxZJ6U0f9FVha0lbrPQgw0Sug3cSe4yyyAC1abYOS9SmbFZ8HV6Yo9ppy5mWQPYiJU','Fast! And very friendly staff','2020-08-22 16:00:49.237000','2020-08-22 16:00:49.237000',5,'Rosa Garcia','https://lh3.googleusercontent.com/a-/AOh14GjMqGkNPV_NduvlG4l_6VlIAiwVHgUg8YVIm6Ev=c0x00000000-cc-rp','17898197009688164559',22989),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FXrKrkYMDi53LmuIUOzzbq5GN1abm0NBSeJ_yU5z2lObd19-xA12bIE82uuZUEGAGhmSHwybKqHoB1hR9KhsQ3tk2-J8','(Translated by Google) Excellent service and attention from nurse Alvean and Patricia.\n\n(Original)\nExcelente servicio y atención de la enfermera Alvean y Patricia.','2020-01-27 00:09:13.322000','2020-01-27 00:09:13.322000',5,'Eva Jazmin Gonzalez','https://lh4.googleusercontent.com/-njeTAdLmczM/AAAAAAAAAAI/AAAAAAAAAAA/JEtZ7pI441Y/c-rp-mo-br100/photo.jpg','16389487648212004696',22633),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FXS-55MZS9iWVnks__3n3OyBPnbbh_wWIIex74fZjDTlhdUuyAMO30UwxmifOr-5SrEOqxV-gyxdc65qJl3Wyveftt_A','Friendly staff and prompt care.','2019-07-12 02:48:22.126000','2019-07-12 02:48:22.126000',5,'Mary McEwin','https://lh4.googleusercontent.com/-8NmKCL_bSGw/AAAAAAAAAAI/AAAAAAAAAAA/z7rJ-GDhzyY/c-rp-mo-br100/photo.jpg','6521947413723274945',8203),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FXtb3Z2e0ulTIV4FBFSsUO4GCNoSaZBkKDGPzqVdzMqrG-a6FeMrAjetwk3LZvKKFSnbjUQdv-Lj52p2WoXzxlVjKf0U','The staff took very good care of us after our 5 year old daughter fell of her hoverboard; they calmed our nerves and made our daughter feel very safe. Thank you!','2020-01-06 03:10:58.784000','2020-01-06 03:10:58.784000',5,'Vc_ease','https://lh4.googleusercontent.com/-uS8nkM2PGgk/AAAAAAAAAAI/AAAAAAAAAAA/RMsUSs905Ag/c-rp-mo-br100/photo.jpg','13486358490203335051',649),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FxuMaMi_IBF53ykqsz6Nea6MyQD1vs4GZcpqa0xfntWDE6Pg3Qib_7nsnjf9YHDiRhOPqGOugYbZLMotCCW-_FNg0sak',NULL,'2018-10-11 11:51:11.202000','2018-10-11 11:51:11.202000',5,'Virgie Gabriel','https://lh5.googleusercontent.com/-k9b2uitxXiY/AAAAAAAAAAI/AAAAAAAAAAA/Pu2jiclZO9Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1474),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FXus5Xmy2ZqxGxviroBrcSUeD_TQ80kKMlr4MNWqyyuuU-vC_URlv94hjTrOuRVfgl-XP_uuZ-C7jwhqfKL2rFzsz6OY',NULL,'2019-01-21 23:18:02.746000','2019-01-21 23:18:02.746000',5,'Diana Torres','https://lh3.googleusercontent.com/-31YrV-0gFqM/AAAAAAAAAAI/AAAAAAAAAAA/swefWLCkYog/c-rp-mo-br100/photo.jpg','13486358490203335051',1098),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FxwKXs5cRWmNnR72leWURPN5i0pyvHwAOVV8cvDOrh8FKrGN08mQvu3swIVbOTl4ScYxQhdPxfuOhPbamtJkk_Gxs1Z0','Tiffany, Tammy, and Brooke were amazing!! \nExcellent help and proper care.','2020-01-03 03:29:55.482000','2020-01-03 03:29:55.482000',5,'Kendall Searles','https://lh5.googleusercontent.com/-uRiMqaBDUCg/AAAAAAAAAAI/AAAAAAAAAAA/BthRofZ5kng/c-rp-mo-br100/photo.jpg','8626688543755174284',14631),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FXxbXa3cfrm8ZpRDJO9pzrAqhzT64opswzGofIrlDkDWqOIo0pkzDZByzNaIgO-82jAojU-yO6AoQADVD4lCy3VjELrw','Jayron (security officer) and Amy (front desk) were thoughtful, patient, and professional. I would recommend Dr. Smith to any and all-he was efficient and helpful. Shabba was sweet and my fiancé and I felt comfortable.','2019-03-09 07:23:47.060000','2019-03-09 07:23:47.060000',5,'emily sandberg','https://lh4.googleusercontent.com/-ZKCdb68CfDQ/AAAAAAAAAAI/AAAAAAAAAAA/YiU4q0QlJk8/c-rp-mo-br100/photo.jpg','8918455867446117794',9161),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FxZ0QvgAyuqst2pxTTsxpGStsZGTnjTkgeBpLJgse5LgtfjjTm9-gNNfZ4pgrpVHBG8ExvnsEUFb7LuXg13AyzxaKc-s','Staff was really amazing during my visit \nThanks Dr.Lucas','2019-04-01 19:15:18.825000','2019-04-01 19:15:18.825000',5,'Calvin Jackson','https://lh4.googleusercontent.com/-CkeiqGap4OA/AAAAAAAAAAI/AAAAAAAAAAA/cAyeXQOY4R8/c-rp-mo-br100/photo.jpg','3272657195432704501',6981),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FY-SwVhd8Am3P7LuqlAOBwQIFdUY6jjD1r_hIDHC7_ZSwzIB5oYabUNDGSv6Xc79PxeBRKYnDwtyQ5D3S_R7mT6qNZLs','Dr. C Nguyen M.D answered all questions and explained.\n\nNurse Dawn S. Explained all thing concerning medication and follow up procedures. She was extremely helpful.\n\nRad tech Jessica N, completed the Xray very effectively with no repeats. \n\nER tech Ashly S. Was very prompt and helped get all billing and insurance information through and we incurred zero expenses.\n\nOverall I highly recommend this facility for urgent care.','2019-06-21 18:28:40.544000','2019-06-21 18:28:40.544000',5,'martin luther','https://lh4.googleusercontent.com/-8UbJ9q3ikkU/AAAAAAAAAAI/AAAAAAAAAAA/LQIPeoLNYdM/c-rp-mo-br100/photo.jpg','17898197009688164559',5687),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fy3ambgM6HNti82oS2tN0mXUgs-8ZJPP0_-A3146IHA817hu6RwYdW2aRZodmAFd0jS_ULy6a3hPcVOiWgaamntnX7F8',NULL,'2019-09-29 06:33:53.210000','2019-09-29 06:33:53.210000',4,'Marina Wood','https://lh4.googleusercontent.com/-meifNjTow_0/AAAAAAAAAAI/AAAAAAAAAAA/LD22RJTGv2k/c-rp-mo-br100/photo.jpg','13486358490203335051',803),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fy4bdK1QjVRB3Mcpagyc7r5FUgf7rUMFh_ladb2HGPczfejwwpGmWkLGOJap5AaEX_tShDv7EumvAj2_UFTRSeYwp9og','Just recently went in for a kidney stone. From beginning to end the service was Amazing!!! Alicia at the front desks what’s one of the kindest ladies, and the staff throughout the visit were so caring! I want to thank Dr. Simmons, Erica and Ashley for being so attentive and kind. I highly recommend this facility!','2019-05-25 19:58:39.413000','2019-05-25 19:58:39.413000',5,'Cecilia Case','https://lh5.googleusercontent.com/-j_KJdQv3_SQ/AAAAAAAAAAI/AAAAAAAAAAA/Vgzun30J7ok/c-rp-mo-br100/photo.jpg','8626688543755174284',8474),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FY6QZXvfz5YIYLuLqZ31SIh8DBLH72dX5VC5wHFUtNcG3aEGLNY5hHBDbTYICE3RwPAkCFH8clVH36w8KCCl_9rwqRmU','Wonderful place. Personable and very knowledgeable staff, quick response time and comfortable environment. Best possible experience, highly recommend.','2018-11-03 06:07:04.516000','2018-11-03 06:07:04.516000',5,'Hannah Kirst','https://lh5.googleusercontent.com/-L-d9911MV4Q/AAAAAAAAAAI/AAAAAAAAAAA/G_zNh3sV0is/c-rp-mo-br100/photo.jpg','16590124370714063921',3671),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FY9_sZ9Jz6jm1kHMuwgI-poMlnIjPB9TlofC2CQpxvEBAuU6TZRE14BNJlnH46PvPw1UjqHUkx8mWuhtNSneQjatA6zc','This is an amazing clinic! I had the best caregivers; Dr. Vakey and RN Anthony. This is by far my favorite clinic in college station!','2018-11-29 20:04:53.115000','2018-11-29 20:04:53.115000',5,'Meghan Mabe','https://lh3.googleusercontent.com/-jmp7Z-yv7zk/AAAAAAAAAAI/AAAAAAAAAAA/xltY5LUKqa8/c-rp-mo-br100/photo.jpg','16590124370714063921',3630),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYCPGHZYy_6nP1lvSYfjxgeiXsOQiIoDz72K-Y13FedQfL7HDg6HbQa-1xTqGMhV3JGCAEHT57_bnIghp2c_9nrNEFIo','I\'m indigent with a fixed income and was unable to pay, yet they still helped me with my heart issue. Thank you for everything.','2020-01-09 23:59:49.909000','2020-01-09 23:59:49.909000',5,'O. M. of IU','https://lh5.googleusercontent.com/-GtmEjsV7v18/AAAAAAAAAAI/AAAAAAAAAAA/3jxQK5Dgg9I/c-rp-mo-br100/photo.jpg','8918455867446117794',14878),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FyCuP73nafMj4GwzuwuS8amRXz9dJHlmvjV8sYf5Wo_POqxTv9bBcK5Luc95bEPm54l_kiPqi0qijdneH4YDUXYoz7L0','I had a great experience at SignatureCare in Pflugerville. The staff was extremely friendly and professional. Cody, Sam, and JD made me feel very comfortable, like I was chatting with friends. Highly recommend!','2020-07-28 13:12:29.599000','2020-07-28 13:12:29.599000',5,'Kellie Payne','https://lh4.googleusercontent.com/-slZ-ijYuka8/AAAAAAAAAAI/AAAAAAAAAAA/sDD0PGhosmI/c-rp-mo-br100/photo.jpg','2077061009497551125',22800),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FyDG8yC3CMsCvTpAfSECTeY3MrBupQ58dDMRtpTTVpLBT9N7O4zfiQKzPa9OO3VNFayUUhroD4olnKUXPDb2k5vU79tA','Great service! Front desk, Jackie, was very sweet and helpful. Glad you guys are open 24hrs.','2018-01-09 15:35:46.219000','2018-01-09 15:35:46.219000',5,'angela mendiola','https://lh3.googleusercontent.com/-hAuEpDbCUtI/AAAAAAAAAAI/AAAAAAAAAAA/HMMjC-G_mCs/c-rp-mo-br100/photo.jpg','14567670160750071148',1690),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FyGXx8oNMyFekJbCGNDeyrso0QzYSqEW902WfoVZRgP51ue_RWhzQD0Rj9xH1ZFcxs5HkSTbnejXzK5hNFheYSViyP5Q','They did an amazing job! They are very attentive and the doctor even called the following day to see how I was doing and how my event turned out. I have never had a doctor care that much.\n I highly recommend them if you need emergency care.\n\nThank you,\nCody Williams','2016-05-22 06:04:11.674000','2016-05-22 06:04:11.674000',5,'Cody Williams','https://lh3.googleusercontent.com/-0IogX8RN5Pw/AAAAAAAAAAI/AAAAAAAAAAA/ok3F9douoNA/c-rp-mo-br100/photo.jpg','13486358490203335051',1140),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FyHJYOyd4xiDSxV3n-7N86KRMr0xbTB4DgXBoXjCAuEbnAOGq9sGgugRA_Q_xpToLG9TmfiVdEFcfhLHvv-__iJskSzs','This is by far the best ER ever the staff is friendly and quick I recommend this place to everybody.','2019-12-01 22:52:10.497000','2019-12-01 22:52:10.497000',5,'Tissa White','https://lh6.googleusercontent.com/-j1ZbKRMOOJo/AAAAAAAAAAI/AAAAAAAAAAA/m56hyAqLPjI/c-rp-mo-br100/photo.jpg','2694018788013845459',5996),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYhSowppoUG2nG678WNTOK1BO8-JbQCNLx1dKRItcZKeSxvruR1kXib214PSKTk6gD2qsyhg5Kc_CB0jRN6adyjyTm1s','They have done it again. I just pulled a muscle in my back and i was brought back immediately. I so love the staff here. Dr. Nguyrn, Alvean, Tricia, Jocelyn, and Keith B were all amazing. I recommend them for your emergency needs.','2019-10-02 15:01:13.532000','2019-10-02 15:01:13.532000',5,'monica norah','https://lh4.googleusercontent.com/-GaTR6K4uZIA/AAAAAAAAAAI/AAAAAAAAAAA/51I_LhawaXI/c-rp-mo-br100/photo.jpg','16389487648212004696',2865),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FyIJRSQVPBRL5dLjFxpo18POU16b5I-jzX89frzJk84-ZCBBTZHG0_SgdbPsAloGC6IJa1U-Ia9hKkYovAa_Zn1LYTXQ','We had a very good experience with them, they were all kinds and very attentive... Have us plenty of care and was very prompt...\n\nThe staff are as follows\nRegistration is Ashley S\nNurse is Blake H.\nRad tech is Dr. Ding\nER Tech is Rick F.','2020-02-01 23:49:17.826000','2020-02-01 23:49:17.826000',5,'Randall Hicks II','https://lh3.googleusercontent.com/-OtWd45-UXV0/AAAAAAAAAAI/AAAAAAAAAAA/lzf6HHj38Bo/c-rp-mo-br100/photo.jpg','8679688254631342173',14767),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYJfKnsgbVFwKYyUnDihDeIggfIYK4KNTtut0MSiyCGIAuscFJKj3_t0FPEc58E63E8_CQ77QDHJtzXT1129wAG0M4B8','Super friendly! Super clean!! Super caring!!! ps Ashley S, at the front desk is the best=)','2019-08-21 22:49:39.158000','2019-08-21 22:49:39.158000',5,'Adrian Harrison','https://lh4.googleusercontent.com/-2mZE3db4CiU/AAAAAAAAAAI/AAAAAAAAAAA/8EhHKGNCtsI/c-rp-mo-br100/photo.jpg','17898197009688164559',5571),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYLP49BWeL8UPjSBKuFnARrLV4zprEIBqgmLlj16vQJub3jcUkbYobMXShSrGiP6YmrLQ1LKfX2Iarl-qN4qjRmhBDr4','My nurses Erica\'s were amazing they took such great care of me and got me in and out thank you so much for you quick service','2020-03-09 16:14:17.575000','2020-03-09 16:14:17.575000',5,'Amber Muldoon','https://lh6.googleusercontent.com/-UoCSVXBsHcY/AAAAAAAAAAI/AAAAAAAAAAA/I03uygFLdJU/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',13717),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYnbI1e2VdQtzpbcBO24IMKXA70u5NihQSZTzSRJFhfwHbiYxG50Ew6hsz7ibbwTMRRg9S2yZRrpuwYxwwDmJRCCAcoE','Good people nice service and fast dr. Do nurse :Irving and Sheraton and cristian','2019-12-27 07:54:45.659000','2019-12-27 07:54:45.659000',5,'imran2mane','https://lh3.googleusercontent.com/-h1oVdmRgQdY/AAAAAAAAAAI/AAAAAAAAAAA/eqj7gve2ZWI/c-rp-mo-br100/photo.jpg','12541597562633926366',297),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYoUuzGZierWkzLYrJAoz1nbzZwtYzX_8XT4EW_jFyRABpk2Ar47dgMN118H-Fsk1iRjpCPdLDmwLFGkZ7loQOYMs2Bc','Rene and Dolores were extremely helpful. Could not be more satisfied with my experience!','2017-02-21 21:25:14.792000','2017-02-21 21:25:14.792000',5,'Southern Spots','https://lh4.googleusercontent.com/-c_XeQgGv5Go/AAAAAAAAAAI/AAAAAAAAAAA/gAMu6GQjfsE/c-rp-mo-br100/photo.jpg','3511292162159714121',7872),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYQM9vWBzaJx4NFToB5saXNenAhERMEVigsIPGYsS1Jjps0HpgWtLVaIX9v-uIJj4deLqNss6bBZf6NZJS2NYcmgdNlY','My nurse Nichole was so helpful and great. She did everything in a great timing. Genesis was great with checking me in and my radiology tech Nicole was great and very caring.','2019-06-11 14:17:28.725000','2019-06-11 14:17:28.725000',5,'KRESHAI THEBEST','https://lh4.googleusercontent.com/-DKE8yYwA_EM/AAAAAAAAAAI/AAAAAAAAAAA/ql9rIHfMN_U/c-rp-mo-br100/photo.jpg','8918455867446117794',9128),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FysLLgtNm335sC9Zx_nKpiShUJsz3amkE2LDdHgR3hk4MyIR7s5LVtNWn7gUIYfUz76Hb4ibqb0Ah2G2AzWLJNOYL0j4','Thank you so much to Dr. Smith for the amazing care and to all the other staff too. Alevean(nurse), Tricia (radiology), Jesus (Registration), Sean (ER teach), you were all wonderful! & thank you to Jocelyn (registration) for the referral! You all made sure I was comfortable and warm especially with the warm blankets!','2019-07-13 18:50:28.462000','2019-07-13 18:50:28.462000',5,'Maricela salas','https://lh5.googleusercontent.com/-gKV4ClGkXkY/AAAAAAAAAAI/AAAAAAAAAAA/2ZrEHcF5T2g/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYTHs4LGED3k4j7BziO4u9D-dZZquwfcjUgPv9MxR33Ki_EuvbT-KhhTnrmYVKJvpn1YMkeIaclE9bZgsWs9i5r8EU0I','I live in Circle C and both kids suffer from pretty severe allergies that result in breathing difficulties. This place has been a godsend. During our most recent visit, Christina at the front desk was very friendly. \n\nAdam, the nurse manager joked with the kids and made them feel at home.\n\nLinda took both kids back for x-rays. She’s a pro and very friendly.\n\nDr. Rose was amazing. She clearly cares about her patients and went way beyond a typical MD visit. She had some great suggestions that would complement the traditional approach and everything was based on evidence based research.\n\nWe were seen quickly, given warm blankets and treated like guests. \n\nThis is a great place with great people.','2019-05-20 15:12:56.619000','2019-05-20 15:12:56.619000',5,'Jennifer Butel','https://lh4.googleusercontent.com/-ExHEotC_OrU/AAAAAAAAAAI/AAAAAAAAAAA/ftcbhaBbFVg/c-rp-mo-br100/photo.jpg','16891069708558046635',4274),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FyvFC7HOx1UANo8ZCv3G01VzLoqbknG1syZJ07FSHX4lr1k3nePq48AXO3lE1bUKLgmTpt1BkhEFfXahOtOacypqPfoY','I was able to get in and out quick with my mom. The staff was so kind and John was a great nurse. I will visit again and I will definitely recommend.','2019-01-02 03:10:31.614000','2019-01-02 03:10:31.614000',5,'Ericka Savage','https://lh4.googleusercontent.com/-zUHfO1sFlL4/AAAAAAAAAAI/AAAAAAAAAAA/aS8DU8L_CyY/c-rp-mo-br100/photo.jpg','8918455867446117794',9201),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYYz0TEB-utqNiJspfkSBqbFvYU920b4_4mBZDnyyiDpGokWsK2kff4G-1AdApc6xkVA-AppKKcw2ey25RV09PpIlwNQ',NULL,'2020-03-12 17:49:48.527000','2020-03-12 17:49:48.527000',5,'Bek Parker','https://lh4.googleusercontent.com/-WL-7kCwLu4I/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmq0R0JRd_G_G7nEVUceY8J9A4Q7w/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21134),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYzPD5xUwkPIfWuoMGn2AtAJ5bqozlHaWCXhAGJpbW6xtmZCDKn1rLyMXsNlf5e2qTZaXLk8OoHyb84igsR-TJKNZGsc','The entire staff was amazing! Ashley made checking in and out easy. Manny and Pete were so kind to my daughter. Dr. Patel was patient, compassionate and thorough. I appreciate the staff and everything you all did to take care of her!!!!','2019-06-18 03:15:01.790000','2019-06-18 03:15:01.790000',5,'Kari Cantrell','https://lh5.googleusercontent.com/-oEsD1nlF7oQ/AAAAAAAAAAI/AAAAAAAAAAA/qDS6MU24-TY/c-rp-mo-br100/photo.jpg','6521947413723274945',8229),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYZUpdFfqclm-HJHtPRuWPflqV7bwuQqHPb05_b8rRFLGwpYxO1fZxrDY5Z_qKz0XJp0DXh3k6HJL0WxRhyDIaCe-yLs','Th Er we very nice and kind and welcoming they also talked to us and made us laugh and enjoyed my experience with the new place I’ve been driving by. I had a lovely experience.','2020-01-13 01:05:05.634000','2020-01-13 01:05:05.634000',5,'Dianna Belt','https://lh5.googleusercontent.com/-ANUUY-svtdM/AAAAAAAAAAI/AAAAAAAAAAA/n4PtMQMTM-c/c-rp-mo-br100/photo.jpg','3272657195432704501',9559),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FYzZF9lm9f7yAXA3uue2Tpv6SHau9avx4bMJBg7Eib2p8GFMZHqwzkN208maq14f3fK3inVA4Tba4hnU-06y0iRaA-Vs','Everyone here was very kind and caring. Dr. Elsbecker, Nurse Shelli, Radiologist Tech Linda and Christina at registration were all wonderful. I felt I was in good hands and being cared for by a team of true professionals. Since most bad things happen at the most inconvenient times, its good to know there\'s a place open 24/7 that can help.','2018-02-11 14:59:03.679000','2018-02-11 14:59:03.679000',5,'Ann Jordan','https://lh4.googleusercontent.com/-ZyAEYyduPts/AAAAAAAAAAI/AAAAAAAAAAA/kEEuPTQL2NI/c-rp-mo-br100/photo.jpg','16891069708558046635',4511),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fz3wl9A5H62XjH5VRPKGo35JK3MWe0o-WfAonyQ1gy2w6T6aNE39FnFc4LvcQzBOyinb0oJAFgw8jiDIsiwu8Q0v1bP4','My mom had an accident over the weekend and was in a lot of pain. We came to the Stafford location and ended up receiving the best attitude and care that you could possibly want. Many care facilities are so busy and not trained properly so you hate to even think about going bcuz you don\'t wanna \"go thru\" the norm. But these professionals were amazing with us and I would recommend this location to everyone, no matter the distance. A little driving for great service is definitely worth it.','2020-02-04 17:12:11.846000','2020-02-04 17:12:11.846000',5,'Lakisha Scales','https://lh4.googleusercontent.com/-yLc5nTbIqcc/AAAAAAAAAAI/AAAAAAAAAAA/X3jE4_G4QpQ/c-rp-mo-br100/photo.jpg','8918455867446117794',14849),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fza_2Qr8rTMCaj_B9D5VVp81zHQ9_WXpGzBeTTey4GY0Qd-X-_sZekYx98_vfGYoeVWEbNNUkSS-lJAS0j9Kfa0TQpiE','Lorena, Dr.Akunyili, Jeri, Becca, and Morgan were so helpful and made our visit super quick and painless!!','2020-01-12 23:46:33.120000','2020-01-12 23:46:33.120000',5,'Kathryn Kaimana','https://lh3.googleusercontent.com/-5pOHQXUkuDw/AAAAAAAAAAI/AAAAAAAAAAA/3wMF4N8BqcI/c-rp-mo-br100/photo.jpg','16590124370714063921',9551),('AIe9_BHkHJRvhG8n5BjqdcMSKR_Fzd2CeUM2vGVmx4ko5GuGhM7Z2mpc_GC1zcPbdJ3vQfVUm4y2UyLJPNVyUyTrQW6T384PqtvLXsiymLPiyjzCihYznaQ','Had a really great experience. I was calm and felt heard. The snacks and warm blanket are icing on the cake.','2019-12-16 21:14:24.660000','2019-12-16 21:14:24.660000',4,'Rae Alexis','https://lh4.googleusercontent.com/-TpFXBmwVEhc/AAAAAAAAAAI/AAAAAAAAAAA/UolkFdi0ri8/c-rp-mo-br100/photo.jpg','8918455867446117794',9029),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FZedFDO4A0kapG3ntQXBpbHyMnRqGLrnz8q68T2JGlQHsh-mbIX1ivp1No-KaVjSd5kYa1Ms49oYnzvZlH_67ZFVueqI','Everyone from the front desk to the staff who provided care were extremely friendly. Dr. Levitt came in minutes after my husband was called in and consulted him. RN Tony came in minutes later and provided care needed. Over all we had a wonderful experience.','2019-06-18 01:11:02.645000','2019-06-18 01:11:02.645000',5,'Diana Amaya','https://lh3.googleusercontent.com/-qdk9n6E27Pc/AAAAAAAAAAI/AAAAAAAAAAA/TPGDiMFuQMQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1296),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FzH-FoaVmyYsn666zjg7gk4nTax6ihcsCqd7I5YAZNZZR1QYbi9g4TjBu3uFmA-gKDtRvukbR1-hTzhcCL3QcnU8jbLY','Leah was very quick and professional. Everything went smooth during our testing and was less uncomfortable than previous tests. Also, the hand sanitizer they provide smells wonderful.','2020-08-04 20:19:46.509000','2020-08-04 20:19:46.509000',5,'Tamara Griffin','https://lh3.googleusercontent.com/a-/AOh14GjDfe_IEWG0kjjzC-J2lsByraz5aYWqCAr7LXoY=c0x00000000-cc-rp','13486358490203335051',21817),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FzOMZtW6XZUO9rRPj7Xi_oOSTBvFzmuWqHCwX0D4zjIsN7In5hj58mVyTzhgf-MPUOTpT97ef3KofzByyU8SSs7D9oYI','Fast and great costumer service . Thank you Maria (in the front) Adriana, Magali , Pete and Dr. Patel .','2019-12-20 18:00:42.015000','2019-12-20 18:00:42.015000',5,'Eunice Leyva','https://lh3.googleusercontent.com/-myg5N3kT-RA/AAAAAAAAAAI/AAAAAAAAAAA/yGeHIS1hBSQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8044),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FZqCcE8ZEUE2BQUHd27RzsCCKu_GjCDnEW8Eu_LWZtdY_whBhJxmhtF5pvdc9-GuTvMs9-IG6j9cxmoptJuv5ca0A8Es',NULL,'2020-06-15 15:02:30.989000','2020-06-15 15:02:30.989000',5,'lisa Marie','https://lh4.googleusercontent.com/-TxooSqEv0BA/AAAAAAAAAAI/AAAAAAAAAAA/UWK24OIVp78/c-rp-mo-br100/photo.jpg','13486358490203335051',20919),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FzR1gg0IWg5fPKCQGbGePVHJju3mgLZ3jTpI1RIFFik3PURzMYNFU-OO8mYszvRXTGHIX7FOAeNdsjRpwDN2IFyO9WYo','I cannot describe how thankful I am , 2 weeks ago my mom became really sick,everyone was really nice the waiting time was like 3 hours because they had to run some diagnostics , they were busy that day but well organized. Thank you once again .','2020-07-22 17:49:05.638000','2020-07-22 17:49:05.638000',5,'Alexis Guevara','https://lh5.googleusercontent.com/-TNIUIQTdCFE/AAAAAAAAAAI/AAAAAAAAAAA/nv9Mu1Hd1vY/c-rp-mo-br100/photo.jpg','8918455867446117794',22916),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FzrsYQPjVM_6tZQK8GtM9f2qZSqgBcpBkZj7L0wy3g02mTakSDyz8oSYBxzzWv9k_NfRTC1RMGM1TD1r8HyDjcyehklk','I found my new home. The staff is super friendly they explain everything in detail and plus they are really quick. The facility is in immaculate condition and very clean.','2018-02-14 06:24:03.474000','2018-02-14 06:24:03.474000',5,'nadine myres','https://lh5.googleusercontent.com/-qqSd0Ru-Yiw/AAAAAAAAAAI/AAAAAAAAAAA/FJdav_AL9_0/c-rp-mo-br100/photo.jpg','17394740196501090048',4881),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FZTjFDT8hcdcy1Ft_5HZ0n2fBu-pbc-5EyA31fO8SuNQx8gp3akxO-4rTS7OFuPvoZA7bI4ehzb75hB3FxhIibYFhNiY',NULL,'2020-01-19 14:44:33.516000','2020-01-19 14:44:33.516000',5,'Rannisha Elijah','https://lh6.googleusercontent.com/-QahK-NX7ulI/AAAAAAAAAAI/AAAAAAAAAAA/l0TeI9OTrzo/c-rp-mo-br100/photo.jpg','3272657195432704501',10006),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FzTzBGJZy8Esk-oMr2e41gIg08ph6OR9uvcXyD1NUtC-NgCp_rHF4hz9ykrrDuY-oi8g_9lZx6kAyk6q5b6YXymAHqik','I went there Saturday early morning with severe stomach pain. Wait time was less then 5 mins and turns out that I it was my appendix. They made me feel comfortable until the ambulance came for me to take me to hospital for surgery. The staff was amazing! I was there visiting Houston and unfortunately this happened but my experience here was absolutely the best.','2017-11-20 01:53:41.581000','2017-11-20 01:53:41.581000',5,'Christina Castillo','https://lh4.googleusercontent.com/-ObpfJ5Q3qqI/AAAAAAAAAAI/AAAAAAAAAAA/yd9PQm6ohjE/c-rp-mo-br100/photo.jpg','14904078213800803294',2311),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FzVZPk_y2R1_7yOpJ9YUtzsuj5aMgr5O203hykvlPfig9ldcUu5wZYpvjEgk5SjpnINsxmfTI2fLfdufnhHtpqS4-jTE','This place is amazing they took very good care of my husband. Better than either of the hospital\'s.\nMOLLIE-RN\nRAD- ERIC \nREGISTRATION-TOBBIE\nDR. HENDERSON\nTHESE PEOPLE TOOK REALLY GOOD CARE OF MY HUSBAND AND ONCE AGAIN. WE APPRECIATE ALL OF YOUR KINDNESS.','2019-11-19 06:18:55.877000','2019-11-19 06:18:55.877000',5,'Yorketha Williams','https://lh6.googleusercontent.com/-C7pi80ZcFEk/AAAAAAAAAAI/AAAAAAAAAAA/DbA_oXRz5hg/c-rp-mo-br100/photo.jpg','3272657195432704501',6859),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FZwfitFi1Fq6Ifg25oEMNNvC7fJpmb7w1arxhBNjUk-h-rC5pQLbFB-ou-H_MPksOoBXxT88PBCzJXYzxFstMOObsRTw',NULL,'2020-03-03 19:56:16.264000','2020-03-03 19:56:16.264000',5,'Caitlyn Green','https://lh4.googleusercontent.com/-9aPqIhnSagU/AAAAAAAAAAI/AAAAAAAAAAA/QqQpmDazW8w/c-rp-mo-br100/photo.jpg','14748677429039074158',18856),('AIe9_BHkHJRvhG8n5BjqdcMSKR_FZYj5kTTBdwdBg2D_90cCpRRWVJOKib9J-T9u45otCAUERvGT2qYjpu9dgGvmKIhmuZAwyx-cTAcRwdsIGrn9ut9U6-Y','Very fast professional service!','2018-08-21 01:45:34.659000','2018-08-21 01:45:34.659000',5,'Charletta Jones','https://lh3.googleusercontent.com/-jqZQ2VviOeA/AAAAAAAAAAI/AAAAAAAAAAA/i5nsX0_wGRI/c-rp-mo-br100/photo.jpg','8918455867446117794',9241),('AIe9_BHknFajYLCY9NfgBafSx8bi0rw42DUyrV8AnSNnWtmYVEX7mBkfCkHZ9TDlnMzWmeYFoe9BbURkLNeixfXKgTkfprBE5N2cTWDexOySMCPSm5MdpJE','Dr.Patel and Nurse Alvean treated my grandson very well! Had such a great experience and amazing facility!','2019-08-07 15:04:12.682000','2019-08-07 15:04:12.682000',5,'Elvia Medina','https://lh5.googleusercontent.com/-3u6s8xKCdCE/AAAAAAAAAAI/AAAAAAAAAAA/QRun0tDC6BU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHknFajYLCY9NfgBafSx8bi2mIVAeU6q0bOA72CzMFZbtZbbEDaaBrNVjnUFdWOKX8SAA8wVAWTvZukhdJRtSry-LaaUHYf63yk1lCGpx2KeHd7aaI','I was greeted by Kendra early in the morning and she was very kind and welcoming. My treatment by nurse Brad, Dr. Harjai, and Stephanie was excellent. I felt respected and always enjoy coming here when needed!','2019-12-26 14:38:09.939000','2019-12-26 14:38:09.939000',5,'Tiffany Truong','https://lh5.googleusercontent.com/-vA7ipacu5AY/AAAAAAAAAAI/AAAAAAAAAAA/mPD6ioJFV5I/c-rp-mo-br100/photo.jpg','16590124370714063921',3006),('AIe9_BHknFajYLCY9NfgBafSx8bi5k8n437SRSKV0uMpsSFn_vhi1OJkwc2Ho7O5613xX8UqXdSeROm-prRE2E1tSdPjp-jFI3qAlh-mlNtJ2TMzbJWSoB4','The Staff is extremely friendly. They truly care about your needs. When you go you will be seen almost immediately. You even get a warm blanket. I would highly recommend going here. Especially if you don\'t like waiting my in an ER.','2019-12-18 12:55:42.325000','2019-12-18 12:55:42.325000',5,'Barrett Moebes','https://lh3.googleusercontent.com/-mXLX-qCzpGA/AAAAAAAAAAI/AAAAAAAAAAA/UGtCq40mO_U/c-rp-mo-br100/photo.jpg','2694018788013845459',5983),('AIe9_BHknFajYLCY9NfgBafSx8biauy8cUtBnPoJ_KjAf6nT47JctiGL2V6QJEyQAjJYAig18m29umldt46Sor9r2Vj3hDIOHdghNHI_Xpmls8tI3v2sRuo',NULL,'2019-12-24 21:09:11.592000','2019-12-24 21:09:11.592000',5,'Preston Ross','https://lh4.googleusercontent.com/-mJl3hf9ghXs/AAAAAAAAAAI/AAAAAAAAAAA/x4XjRhQN73w/c-rp-mo-br100/photo.jpg','8626688543755174284',14637),('AIe9_BHknFajYLCY9NfgBafSx8bic8sZOwF1U4vR4MPiFnmyVmX9ezgZkX-Y7rsxqCSKMOZnkt9yysDoE4wReNumjwjQeVgG0jPJDqhF2d-Lr3osZuGJIVc','Dr. Tan and her staff was amazing truly professional and caring with me and my daughter ❤️','2019-12-19 02:48:15.978000','2019-12-19 02:48:15.978000',5,'Brunilda Porter','https://lh3.googleusercontent.com/-KOwFj2eClRI/AAAAAAAAAAI/AAAAAAAAAAA/4DStsuHKFSw/c-rp-mo-br100/photo.jpg','12541597562633926366',338),('AIe9_BHknFajYLCY9NfgBafSx8bifaGybhLa9GV6KfqCI6AS1rUW79xyQOTtRNkFf6w1FHnOz1aArrIQ-tfkOdFRVhEg_u-ovJrLV-Ks4Z7RQtA0BwLpUeE','Lisa jamie krystal Savannah are amazing!!!','2019-06-26 19:08:29.355000','2019-06-26 19:08:29.355000',5,'Todd Edwards','https://lh6.googleusercontent.com/-2Rc1LIu-LQA/AAAAAAAAAAI/AAAAAAAAAAA/0LlAOB6693Q/c-rp-mo-br100/photo.jpg','13486358490203335051',919),('AIe9_BHknFajYLCY9NfgBafSx8biGvKJ6RAwCg7H_97EhmNErTFexumr-aZtmZhrP04_grJFAYnWfkqHJqtfYdUOZQU4ZK0QHn7IDK_NJFeHyjEQAfqZaX4','Awesome nurses. Very helpful good doctors. Receptionists at front desk were very professional and completed my paperwork very quickly. Funny and made my stay the best I could have at an er. The blonde receptionist is not 35 she is 28. Staff is very nice. Cant wait to come back.','2019-01-15 04:16:53.046000','2019-01-15 04:16:53.046000',5,'Dustin Alexander','https://lh4.googleusercontent.com/-FX68m2bVG1k/AAAAAAAAAAI/AAAAAAAAAAA/Vivo0-_G1JU/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',1115),('AIe9_BHknFajYLCY9NfgBafSx8biHmmpamJmc11qsEuDPd82voNCotDvIMXQqVu-l61ZONTgPsjTXE9jsQcFT3AcFKQoJ1GTMSB0HdViPfcJxPC4S0-_UwE','Came in with a head injury Terresa and Rebecca the nurses where amazing and.genuine. the doctor Chambers was funny and very thorough with the exam','2020-03-11 15:20:48.001000','2020-03-11 15:20:48.001000',5,'Bernadette aka Bee Roberts','https://lh6.googleusercontent.com/-ynrQAGMdGIo/AAAAAAAAAAI/AAAAAAAAAAA/wx6XYaRFmCA/c-rp-mo-br100/photo.jpg','6521947413723274945',21173),('AIe9_BHknFajYLCY9NfgBafSx8biHvIjTfYGHuFbfLzsEsWFt7s4dVQ8YB-zn7mCl-rBDhdLCZAsgT_ulUasQLOkv8IlWVwlEzknAgfZf1sEZhCGV9Bewmg','The ER TECH L. She is very nice. Had testing done. Very easy going.','2020-08-03 13:13:30.606000','2020-08-03 13:13:30.606000',5,'Robert','https://lh4.googleusercontent.com/-X9PUDK3JBn4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnjGP79EY1rGWN3Ascg9dH2ZK39DA/c0x00000000-cc-rp-ba2/photo.jpg','13486358490203335051',21828),('AIe9_BHknFajYLCY9NfgBafSx8biiar8y1oSui4brsM73VAMoLVaHo1iXZ7fduhhDQjjqM-NOxGKRyCfbGIN7sHl0BkqFIQts6s9tON6Pq3lp5pGVupaMhU','Great care from Alexis and Gabe. 10/10','2019-03-05 03:43:53.347000','2019-03-05 03:43:53.347000',5,'Venkat Reddy','https://lh5.googleusercontent.com/-jiL5XVo2BuU/AAAAAAAAAAI/AAAAAAAAAAA/wkXvdwm5peo/c-rp-mo-br100/photo.jpg','16590124370714063921',3512),('AIe9_BHknFajYLCY9NfgBafSx8bij38QcyIJAiIKBuADlghCsi4SUhNeDtwSuJFF4MCRk3cjbnfHxBnA4Lg-bjbU0SWcMwoHExr6xJiH79N3PjsXrN62Nn4','I was feeling awful right before going out of town and literally waited maybe 3 minutes. I know what I had wasn\'t very exciting but the staff made me feel so welcome and comfortable. You guys even gave me a phone number and address of a 24 hour pharmacy to get my medication before going out of town. This place is definitely cleaner than any other hospital ER that I have been to and that is appreciated! Thank you!','2016-12-29 17:13:01.150000','2016-12-29 17:13:01.150000',5,'Leighanne Rodriguez','https://lh5.googleusercontent.com/-NOXiHtdsE4A/AAAAAAAAAAI/AAAAAAAAAAA/sLk4Z6AOoS4/c-rp-mo-br100/photo.jpg','3511292162159714121',7908),('AIe9_BHknFajYLCY9NfgBafSx8bijdq7j7NM09ljFkqw8IjhZtPYP1Z3r_vV6YwrhGOlxW4sTnisuNQpBc5fGvS4DRLJHz0jlNEdgsxMsv13H4YyzkZmf6s','The whole team was so nice and quick the front was nice and welcoming \nSarah , FATIMA,James Alexis \nVery great people thank you','2019-08-07 04:36:17.381000','2019-08-07 04:36:17.381000',5,'Network Resources','https://lh4.googleusercontent.com/-NkXoNs9FegI/AAAAAAAAAAI/AAAAAAAAAAA/IKYX5z-aNA8/c-rp-mo-br100/photo.jpg','17898197009688164559',5600),('AIe9_BHknFajYLCY9NfgBafSx8biJkQ2BTnaVG-ayRZmDu8lpIs3puEeAzhAQc2jsEWTFXzpdGy78h8vL3xZM5V85dihWZtmDbz7iflS87PvKmVCcO-ZXg0','I didn\'t wait long to see the doctor. Both staff and doctor were very professional. If needed, I will be going back!','2017-07-30 02:19:52.001000','2017-07-30 02:19:52.001000',4,'Alex Montoya','https://lh6.googleusercontent.com/-IPealDyGmgY/AAAAAAAAAAI/AAAAAAAAAAA/0WiaKcYA_nY/c-rp-mo-br100/photo.jpg','14904078213800803294',2337),('AIe9_BHknFajYLCY9NfgBafSx8biJv7OP9ZU89FwHwDwwg6UkbONfN9nuZGvyxczBdEfutkzlAky6VXHJuHAJWwFBSA5ExQlmxz1xvXCmGhJSDJWK3h-Pno','First time I’ve ever been to this location and overall I had a pleasant experience. The staff was very friendly and the everyone there was informational and extremely helpful. I’d definitely recommend it to anyone in need of medical attention of any sorts.','2019-03-06 08:46:18.654000','2019-03-06 08:46:18.654000',5,'Tai Phung','https://lh4.googleusercontent.com/-R6otaVqICmY/AAAAAAAAAAI/AAAAAAAAAAA/qXyHXeKptdQ/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHknFajYLCY9NfgBafSx8biJVJJDEa6JqimZJQrEF_-mgY2c4rh_xz7_iSFYVnTd31wQ9IuLIWf7GKEHClhNvkp2B_CbCy39UV6uzVJ99WnK1NNrK8',NULL,'2016-05-25 00:17:51.039000','2016-05-25 00:17:51.039000',4,'Alicia Rincones','https://lh6.googleusercontent.com/-o7SfYifhDz4/AAAAAAAAAAI/AAAAAAAAAAA/tr7ZbIbuRBQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5251),('AIe9_BHknFajYLCY9NfgBafSx8biKQSY7wYTMWnC9bVmUn7_BTodqUEuQXpq03YZfPzD42bj5wuvyI7D7wt6EsKv66UCMayI1fog4vyjhuy5u1o5jnEQfzY','Excellent Service.\n','2017-01-22 17:06:15.648000','2017-01-22 17:06:15.648000',5,'Knorr Cardoza','https://lh4.googleusercontent.com/-kFauDazgjjo/AAAAAAAAAAI/AAAAAAAAAAA/qWvnd_-oN3A/c-rp-mo-br100/photo.jpg','14567670160750071148',1911),('AIe9_BHknFajYLCY9NfgBafSx8biLyvPfDQWx3VX4C4BBON-QadTDKrWYhwLRGfXzM2xXyxdW5tTdIVNCxXyZYPSNQI3zLLo5NurFiwd9wUyOsj2uMrwzr4','This place is extremely clean! Patricia and the other staff are very polite and you get taken care of right away. They really make sure you get taken care here.','2020-02-17 23:14:47.349000','2020-02-17 23:14:47.349000',5,'Diamond DeMatteo','https://lh3.googleusercontent.com/-6jI78HBBlbo/AAAAAAAAAAI/AAAAAAAAAAA/pde4WdBnniU/c-rp-mo-br100/photo.jpg','16389487648212004696',10875),('AIe9_BHknFajYLCY9NfgBafSx8biNFiuDBqRGXW5wsQ7Q_niXvomQkjIPlylpnJj2uFkAsGDWjmI1xtotFklrwBmybtKHYUEssY9W2YwV80QqQpgMdkb94c','(Translated by Google) Very good service, friendly, professional service dr.Iheme, nurse Alvean, radiology Marcus and jocelyn in the registration area p.d grazas all for your attentions\n\n(Original)\nMuy buena atención, amables,servicio profesional dr.Iheme,nurse Alvean ,radiology Marcus y jocelyn en el área de registracion p.d grasias a todos por sus atenciones','2019-04-01 23:11:08.934000','2019-04-01 23:11:08.934000',5,'Antonio Rodriguez','https://lh6.googleusercontent.com/-jAqtz52jOfc/AAAAAAAAAAI/AAAAAAAAAAA/ErG_cXJcgfM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHknFajYLCY9NfgBafSx8binhbzLljFklDx3Oet6GDEH_OG8_B4-7d0UjdKUXbeCzJSU6PxxnoX3HWZYiaK6CzO6pnLwLEhsoqFrX5hh68VJU_XWQ0','Fast and awesome care. Very friendly and helpful. Dr. Toni and her staff where super nice. Would definitely go this place again of needed.','2018-03-18 15:17:54.923000','2018-03-18 15:17:54.923000',5,'Esmeralda Ortega','https://lh5.googleusercontent.com/-YKakffpqYB0/AAAAAAAAAAI/AAAAAAAAAAA/Na14nL25_Bk/c-rp-mo-br100/photo.jpg','3511292162159714121',7717),('AIe9_BHknFajYLCY9NfgBafSx8biNTXB30774_BxvGB8bZLlIsFTWqsFLURckOdwjavk6b3B2J-91ZEBVhBXVfBhUqBFlomJG-SQCr9dR8ybpp-XQUTtkao','Run. You would think an emergency room wouldn’t try bribing patients with gift cards for good reviews. Most businesses let their work speak for their reviews. Do not go here. You should be paid by this ER for the services they provide.','2018-09-23 02:22:53.579000','2018-09-23 02:22:53.579000',1,'David','https://lh3.googleusercontent.com/-BZIYbrdV8V8/AAAAAAAAAAI/AAAAAAAAAAA/fJ2JrfmXodQ/c-rp-mo-br100/photo.jpg','12541597562633926366',604),('AIe9_BHknFajYLCY9NfgBafSx8biqB5F81RVtGHqT2yG9HEthcEvNbyqT9Cu1XRIdoGZpJri2CpH6XMyY-p7x19yXSBXVBc6fQKy1x_3gyjDjithsqoFbA4',NULL,'2018-09-22 00:41:39.585000','2018-09-22 00:41:39.585000',5,'Jason Ferguson','https://lh6.googleusercontent.com/-i1iqAktMyvQ/AAAAAAAAAAI/AAAAAAAAAAA/ldCkQOSDThI/c-rp-mo-br100/photo.jpg','14567670160750071148',1498),('AIe9_BHknFajYLCY9NfgBafSx8biR3Hc7sPMr3B8HEAfZpuR09i6iFR5OcxcK8vCYXNMrzc7Z0Ef7bWedyPgArrBNqP4Qn__IzTQWv3dpziPWHIZZZIzAH4','Amy dr faig and holly','2019-09-12 23:40:47.750000','2019-09-12 23:40:47.750000',5,'Emily Rodriguez','https://lh5.googleusercontent.com/-Qin8RXhFIq0/AAAAAAAAAAI/AAAAAAAAAAA/FhowLhjq0Lc/c-rp-mo-br100/photo.jpg','12541597562633926366',431),('AIe9_BHknFajYLCY9NfgBafSx8bir6rr_NLzpDfTDh48qfT9OO1iSNLW8hkUrGYpqIhvlVsHKkL7mcx1eUrL602wvW32TIYgN59gq3CFooul1e_XI1Di-yQ','Awesome customer service from Tanisha W, Thomas W, Geovanny, Sarah G, and Laura H 😊','2020-01-17 03:45:16.255000','2020-01-17 03:45:16.255000',5,'Adrian Garcia','https://lh4.googleusercontent.com/-2iK725jO5S4/AAAAAAAAAAI/AAAAAAAAAAA/kBBq8TOfLBg/c-rp-mo-br100/photo.jpg','17898197009688164559',9996),('AIe9_BHknFajYLCY9NfgBafSx8biSIF3PDFZ98G_cxcp1bnYftx1HmWS4i80EeG5wkaUDPLwXoWMZsH5Ea6xO1jjmldEYYs-xvVinWBcI7DmR4ug0cdjysU','This was such a great experience! From the check in to the care. Alvean A. Was very nice and answered all my questions. Patricia C was also great. I would definitely recommend this ER care to anyone!','2020-01-16 20:19:39.187000','2020-01-16 20:19:39.187000',5,'Alexander\'s','https://lh4.googleusercontent.com/-beJbNyvk6-c/AAAAAAAAAAI/AAAAAAAAAAA/ubYoQFln1Bo/c-rp-mo-br100/photo.jpg','16389487648212004696',10056),('AIe9_BHknFajYLCY9NfgBafSx8biSkRLGf4ygoq9_imD2BUgfSKMI_GHjMqwSeWM0RyCiaJvG4hdEISqNCFXZDaCOj-mpEGysH98zQ0KG_mR7jcra74-Wfs','Amy, Rollie, Natalia and dr Patel are the best staff in the Houston area. Very professional and great at what they do','2019-07-03 04:51:46.006000','2019-07-03 04:51:46.006000',5,'Robert Lowery','https://lh4.googleusercontent.com/-DjKcDTuzEQs/AAAAAAAAAAI/AAAAAAAAAAA/a9Afsxf4P3U/c-rp-mo-br100/photo.jpg','8679688254631342173',8825),('AIe9_BHknFajYLCY9NfgBafSx8biSl6eg1bENvf3Wg7fuabBsSgblV8aZrwouOLMa9drpBMyD-Ij7QSzcyVtWmKScUjpujsHsCoCXtxWIj1wxHeelaW351w','Excellent service from Dr.Cavazos , Alvean and Joshua!','2019-04-14 20:26:50.696000','2019-04-14 20:26:50.696000',5,'Yolanda marie Brumfield','https://lh3.googleusercontent.com/-2tVeIbQZdDM/AAAAAAAAAAI/AAAAAAAAAAA/2JyW_5lsNo4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHknFajYLCY9NfgBafSx8bitoocDbO5eZpBS1mZ7iP3b85RQBcsSd4J0KKPwJ0wLA0xh8S6JRm7h3eygSQp_lBbATilnhUn6kXpNUEu7wlVL6o6klM','The doctor and nurses are so nice! Bretnie was the best!','2020-03-01 19:27:46.770000','2020-03-01 19:27:46.770000',5,'camryn keeble','https://lh6.googleusercontent.com/-vCyOQfH7muk/AAAAAAAAAAI/AAAAAAAAAAA/RXOzQi9U9Hs/c-rp-mo-br100/photo.jpg','16590124370714063921',13813),('AIe9_BHknFajYLCY9NfgBafSx8biUQJZgMfObLseFh2qeuCek9CHxrOef8q1eNpIs6RluZPUtw3Wes9nsnHtzM5Rro2Dzpkvd7fMA7LkGqJ7WU1ZCsP32mE','These people are awesome humanitarians 😁','2019-01-18 02:40:24.865000','2019-01-18 02:40:24.865000',5,'Mario Lechuga','https://lh5.googleusercontent.com/-CBffvAtZEjg/AAAAAAAAAAI/AAAAAAAAAAA/tY78nhvqu_o/c-rp-mo-ba4-br100/photo.jpg','16891069708558046635',4369),('AIe9_BHknFajYLCY9NfgBafSx8biVRY-M3wiWC1mJRawahzoa2Hg257d58UkLmdwfRaSZ_3SSzHSfSJ033JdkE_b5iI3yWd9ieDt6aWMVJmU6rRsQX5tkNw',NULL,'2020-08-07 21:41:32.546000','2020-08-07 21:41:32.546000',5,'Kokeb Okbamichael','https://lh5.googleusercontent.com/-xWZvzqexql4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnR-b0mUAwi9SEN7z3PF1CYrot-Jg/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21916),('AIe9_BHknFajYLCY9NfgBafSx8biwBNIGATzM6TxlBCG0up70YOWMc5YkWSEGsH5q8UOl4jCbl-xVmcC_OfXnoQqFljgdjfvgnMAFCZSxPYwBfT_siTL15s','Came in tonight for a small cut. They were quick and helpful. Front end staff all the way to the doctor were very friendly. I highly recommend and appreciate their care.','2020-08-08 04:57:46.062000','2020-08-08 04:57:46.062000',5,'Jacob Richards','https://lh3.googleusercontent.com/-OaBoEOfNZI8/AAAAAAAAAAI/AAAAAAAAAAA/0eb-OtsHw38/c-rp-mo-br100/photo.jpg','2077061009497551125',22723),('AIe9_BHknFajYLCY9NfgBafSx8biwC2bZ569Z2eRJSYX7bXuntgHP9_vuHGMQPvhvTM3lNWow80H1XvncCngw6FEtZ-10bRgFzqfXJGKm22VODgYWc44yZc','I really was taken excellent care of by the staff at signature care in Texarkana. I am very impressed and if I am ever in need of medical attention again will use no one else.','2019-05-01 13:53:37.885000','2019-05-01 13:53:37.885000',5,'floyd wright','https://lh3.googleusercontent.com/-JWiK802ZGrs/AAAAAAAAAAI/AAAAAAAAAAA/yQIEKHW5DwQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6971),('AIe9_BHknFajYLCY9NfgBafSx8bixehn_lEhRPogC71k4btW1jATbCWR-3QZMbEyVN8IDGyDALYQrMVxdIML_3P-UOH-zOmdY7ouxi19JY8R-5mUjRyXzDg','Rene and all the staff provided excellent customer service.','2017-03-14 01:49:35.476000','2017-03-14 01:49:35.476000',5,'Knorr Cardoza','https://lh4.googleusercontent.com/-kFauDazgjjo/AAAAAAAAAAI/AAAAAAAAAAA/qWvnd_-oN3A/c-rp-mo-br100/photo.jpg','14904078213800803294',2388),('AIe9_BHknFajYLCY9NfgBafSx8biY6ugbxseiGQqZv5ArGtMthGs7z_EE-_JVbmyjyFFcFHQzN6hENBsvJOE4ef1h_2IOp0oXitfd94ojeWmiNym6CtDdBI','The team has been fantastic in helping me out.\nRegistration from Mercedes was quick and easy\nAnd the nurse Kristina made a great job in explaining what I had','2020-02-03 05:55:48.605000','2020-02-03 05:55:48.605000',5,'Quentin Lefrere','https://lh5.googleusercontent.com/-GJKV9H9Gt10/AAAAAAAAAAI/AAAAAAAAAAA/jSRlMyY8rWg/c-rp-mo-br100/photo.jpg','12541597562633926366',10368),('AIe9_BHknFajYLCY9NfgBafSx8biygPvTLpOpz7miYDku6RoQGBl95vlDH3bZLez4JmJmvPgGYxEufrgt4ArhhkLPRF3Lmo2ML6VdZmABQz_1GakPcuHuBY','Everyone was nice and made me feel so comfortable and seemed to be concerned with my issue..I really recommend for people to go there when you have an emergency. They really take care of there patients..','2017-11-07 12:07:41.920000','2017-11-07 12:07:41.920000',5,'Flor Avellaneda','https://lh6.googleusercontent.com/-Ap8Ohhgx9zc/AAAAAAAAAAI/AAAAAAAAAAA/FK8UYv3aGJ8/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',4937),('AIe9_BHLL0SiLaI6k5lM0e-mp-rUMVv9WMbae9XXf9VOjxgOXuUDUtKJr6GWztIFV6pl7GLwe0GL4PYXtusYOT9ExL3Pn2Q9DZLcsgcdYT-PoJniZeKu0yY','Dr. Hehman, Jessica, Ellen, Guss, and Samantha all were amazing. They\'re a great team they treated my girlfriend with the utmost respect. I was impressed by how well they handle the situation. If ever have another emergency I\'m coming here. Amazing amazing people','2019-10-14 10:23:07.805000','2019-10-14 10:23:07.805000',5,'Jamboree Gomez','https://lh6.googleusercontent.com/-OzmDhV7gza8/AAAAAAAAAAI/AAAAAAAAAAA/axSOSSrJyZA/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9057),('AIe9_BHQjprpOXGeqmXihYBIHmua1RMAbSRXJyVfDP-5N1WWOJqwakr728zjBu9nGY6j8QGDl6DjN-9r6FZgA0CZCGuhYUm2vHLus31f12dXOAExjcWsvRs','Green, Brad & JR were all extremely helpful. They made my visit quick & easy :)','2017-08-17 21:10:11.524000','2017-08-17 21:10:11.524000',5,'RYANE LEA','https://lh5.googleusercontent.com/-nH1C9cJXpu0/AAAAAAAAAAI/AAAAAAAAAAA/U7a2azI-2ck/c-rp-mo-br100/photo.jpg','16590124370714063921',3961),('AIe9_BHQjprpOXGeqmXihYBIHmua2pmx7KT_8XVgoutYk5Nw25eVwDs1CpRYP145-eUStG1KaxbVwobRH92XL4pqGCRY385zMtXhqXj9fUUR2Q_0Qgu4FFI','Honestly, this was one of the best experiences I\'ve had at any stand alone ER center. The staff that assisted me so well was Ms. Briseida with registration, Dr. Wang, C helped me with everything... he\'s (AMAZING), Nurse Charlotte and my ER Tech Geovanny was great!!! SignatureCare Emergency Center is definitely my go to! I would highly recommend them to all my friends. The urgency they have is top notch! Thank you all!!!','2020-02-20 23:21:47.048000','2020-02-20 23:21:47.048000',5,'Lakessiah Neely','https://lh5.googleusercontent.com/-n5A-HJ3_pD8/AAAAAAAAAAI/AAAAAAAAAAA/lwGp3NYAZ2I/c-rp-mo-br100/photo.jpg','17898197009688164559',14149),('AIe9_BHQjprpOXGeqmXihYBIHmua36D6plHQTVgMMaQQpzEx-cApm3iVCjYsDqAjSOOBcXLJX1isDUSIWwyEQ_NQ0adrU4R2_EZW7wmZRR4uKRGLKxtNGJI','Excellent care. The receptionist Kim got us in quick. The nurse, Jacob, was very caring and helpful. 10/10 recommend !','2018-08-30 14:28:44.598000','2018-08-30 14:28:44.598000',5,'Brianna Calabria','https://lh3.googleusercontent.com/-hyFR16_g5_E/AAAAAAAAAAI/AAAAAAAAAAA/k0kIhfiUL1I/c-rp-mo-br100/photo.jpg','16590124370714063921',3758),('AIe9_BHQjprpOXGeqmXihYBIHmua3KwmIMW-YfW_C9yiBv93ldgMBJ-ThCJ6ZTc5eL-yKFdY9NZcAxCC1d4UTBdn0MOEt_ZEB-Z-J_ycDqmTd5gOlTCgq3k','Dr.Patel\nAmy\nDion\nRaj\nJosh','2019-11-16 01:01:34.109000','2019-11-16 01:01:34.109000',5,'Andrea S','https://lh6.googleusercontent.com/-Zg8JijHNuRw/AAAAAAAAAAI/AAAAAAAAAAA/PMz4FQ479mo/c-rp-mo-br100/photo.jpg','3511292162159714121',7142),('AIe9_BHQjprpOXGeqmXihYBIHmua5B9cxFTHOMg03vcE20YKw47KrbvzAfp6F9e1wxmWO3rl9eoU9IJn_4dVQLLRxtN9fAIRgC1s8i7WuuzyPMU3sPka71w','Seriously the fastest ER, wait no, literally the fastest medical visit I’ve EVER HAD. The staff was very friendly and knowledgeable. They saw me right away and had me out of there in no time. The facility is modern and friendly. The staff made all the difference in the world.','2018-06-15 23:02:18.234000','2018-06-15 23:02:18.234000',5,'Franky Magana','https://lh3.googleusercontent.com/-ZU7oIhoCxj4/AAAAAAAAAAI/AAAAAAAAAAA/vfHwvvnsdSw/c-rp-mo-br100/photo.jpg','16891069708558046635',4468),('AIe9_BHQjprpOXGeqmXihYBIHmua8d-IoYUd8xzKcmsUrU9GbL5_wxFDqaK7U8i28WUz-PRBvBu94_LvQAGnGWyg4A6ovZN4nb9Qz0anRbsvlKDueMlTU3o',NULL,'2020-03-04 14:41:36.996000','2020-03-04 14:41:36.996000',5,'Lily Ejeh','https://lh6.googleusercontent.com/-F3XW9QSnM10/AAAAAAAAAAI/AAAAAAAAAAA/PlaUw9TBU9c/c-rp-mo-br100/photo.jpg','6521947413723274945',14507),('AIe9_BHQjprpOXGeqmXihYBIHmua9HxuwzQQ5SMlslb7zzl7uG1-dY6tMJ4oCfA1K5wrTssZVAlJh11OzjYehiSLrzJI6-6fxSEhj5okr98trykG1w7qmZo','Very nice and friendly and very professionals I will defiantly recommend this place','2019-09-11 21:01:53.880000','2019-09-11 21:01:53.880000',5,'Leticia Rubio','https://lh6.googleusercontent.com/-crE8WvLk8yg/AAAAAAAAAAI/AAAAAAAAAAA/T3rg44j2YyU/c-rp-mo-br100/photo.jpg','14567670160750071148',1246),('AIe9_BHQjprpOXGeqmXihYBIHmuaa9o_3DzP_Oeyt5jYDpmFuH1IRYh4Xm7YX21mmAeAytuWSS85Iygtdb7eo4Vdw2YP95vpj5nSicBYARKFPnHJLNlwqMQ','My experience coming here was the best experience I’ve had yet with any emergency room in Houston, Texas. The doctor was very thorough, and checked my daughter from head to toe. The staff here are wonderful and the bed side manner was amazing. Lizzie at the front desk took care of us quickly and smoothly. Lizzie, the nurse’s, x-ray technician, and the doctors were just the best. I will recommend everyone who is not feeling well to come down so that they can take care of you as well.','2019-10-30 00:50:30.340000','2019-10-30 00:50:30.340000',5,'Marisol Vega','https://lh5.googleusercontent.com/-sM3X7TPNYxU/AAAAAAAAAAI/AAAAAAAAAAA/l0BnhRhigbo/c-rp-mo-br100/photo.jpg','3511292162159714121',7152),('AIe9_BHQjprpOXGeqmXihYBIHmuaAzYWTL7i1qyzd0BkkMY7tUGqgy4Arw_z4BvJ9hXS0UYAL1JmOSviTZzJ215Sc4uD1CThCQ4nHXXfIy8rlD9nYSIOMLY','Leah and Erin did good','2020-08-01 13:55:19.914000','2020-08-01 13:55:19.914000',5,'Ashley Lagos','https://lh3.googleusercontent.com/-CHbw1Lhf-M8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclHtrXrMQyZJx5MHhKPdYzpw-UM3w/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22202),('AIe9_BHQjprpOXGeqmXihYBIHmuaB5Mk_7rvFg_CVfpMJnOlXQKwtExiExp0sGZLEzeyJLiPzGKwvjWhno4tYWh9LzEOhhK6E9dpdPZCogn-eYCT8b9Vl34','Wonderful facility! I felt so warm and welcome and I will be recommending to everyone I know . Very clean and very helpful !','2018-08-22 00:36:16.330000','2018-08-22 00:36:16.330000',5,'Nadia Rodriguez','https://lh3.googleusercontent.com/-urpUrg42W1o/AAAAAAAAAAI/AAAAAAAAAAA/yQMvlSg8GrU/c-rp-mo-br100/photo.jpg','14904078213800803294',2224),('AIe9_BHQjprpOXGeqmXihYBIHmuaBMI_rv46RX76q42i4Sj-mjAS9fRA00MSvvUUbHghxsnhrOuF-4fMzzwCyBhqetFeFMEjhmtHYj_SodpraIFPayvqvwQ','Went in at 11:38 pm, the staff was so helpful! My 2 year old son had a little head injury. He was fighting them like a crazy but yet, they were so gentle and kind! Very patient! They took amazing care of us! Definitely would recommend! Thank you again, Jocelyn, Lisa V., Allison and Dr. Huerta!','2019-10-12 06:25:28.365000','2019-10-12 06:25:28.365000',5,'Jessica Gomez','https://lh3.googleusercontent.com/-6AZevt8LNXs/AAAAAAAAAAI/AAAAAAAAAAA/h9cuwEvKuL8/c-rp-mo-br100/photo.jpg','13486358490203335051',783),('AIe9_BHQjprpOXGeqmXihYBIHmuaBuGI_ABVn8c4-jczkesTosGk4RJotqTF_UjJviKRN_IVxtDQoiwXatqXB1i4-eW9yjeTpLF6imizVT8o1J6y3EoJHjk',NULL,'2020-06-06 16:09:27.916000','2020-06-06 16:09:27.916000',5,'DeLissia Britton','https://lh6.googleusercontent.com/-tw8fiSfI0tw/AAAAAAAAAAI/AAAAAAAAAAA/GCluPhgmDcg/c-rp-mo-br100/photo.jpg','16590124370714063921',22672),('AIe9_BHQjprpOXGeqmXihYBIHmuaETwXnaw14zGp7szyCG8erchq8a7lh_7Ruw4enZH_otqR7qR4iGaMPDZKVC7RxreawMtzFx_uDZqq98Yt9-UiijWupPQ','Dr. Gola and their team (Kristina, Laura, Scott and Maya are exceptional, there is no wait and I got treated like a vip client. They don’t overcharged like other big hospital. I really appreciate my life got rescued many times at all of their locations','2020-02-26 22:36:10.494000','2020-02-26 22:36:10.494000',5,'Hong Nguyen','https://lh6.googleusercontent.com/-sudPCass3qA/AAAAAAAAAAI/AAAAAAAAAAA/kmB7VWi29i8/c-rp-mo-br100/photo.jpg','12541597562633926366',13334),('AIe9_BHQjprpOXGeqmXihYBIHmuaFYchvu3osr9al3dRqKD5DwNi7WVbwx5bl34AFVYhWP_Jd4RLuDfUbyZCGpmEqYQiBGDQMceLbxQ7ODNWtfZanNeuDvE','Very pleasant experience. Dr. Smith, Remington, Itia, Rebecca and Victoria are a great group of staff and were very helpful during our visit.','2019-08-24 21:50:54.557000','2019-08-24 21:50:54.557000',4,'Alejandra Garza','https://lh3.googleusercontent.com/-_VT8-89dznc/AAAAAAAAAAI/AAAAAAAAAAA/c3_joTBD3i8/c-rp-mo-br100/photo.jpg','16590124370714063921',3238),('AIe9_BHQjprpOXGeqmXihYBIHmuaJKkrO6XHrF3hVA5yk3XNxXGLvQg_HRndBPJrT-Mz3cmP-8OqX2h7ERu1dGBpQIW79bJWc8RirO4aCRTUW8qjJ20JfD8','went in for a covid 19 test and was put on a waiting list, gave them my information and was told they would call me in a period of 18 to 24 hrs, to this day 3 weeks later I still havent received their call.','2020-07-19 21:06:35.869000','2020-07-19 21:06:35.869000',1,'Daniel Diaz','https://lh5.googleusercontent.com/-Xvil2N3zi2c/AAAAAAAAAAI/AAAAAAAAAAA/Nf604FpET9E/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',22668),('AIe9_BHQjprpOXGeqmXihYBIHmuakhnlqD5LB5x6opczVT_CjpHwklWwE6uSS2PG8d2mlqitj6Bkc7-8anP7vTm3VOa2F9AnuYHIu_Mxr5v0CDh-AKWMFtU','Came in with husband had a great experience and delicia at the front desk was nice and helpful would definitely come back! :)','2020-01-22 21:18:35.472000','2020-01-22 21:18:35.472000',5,'denise chavez','https://lh6.googleusercontent.com/-Z_CvFmWlDuE/AAAAAAAAAAI/AAAAAAAAAAA/w7yxoV3wSaI/c-rp-mo-br100/photo.jpg','8679688254631342173',10345),('AIe9_BHQjprpOXGeqmXihYBIHmuanNSDZMfG2Z0eFg8_-Mt08YPfddySFWI-BTqgphx20tEL3WYp4ZVgAzbXOOmDK8BcnDtn0yKxGM6a1iSv0q_ulxRcXWs','I recently have had the opportunity to visit this place TWICE in one week - lucky me! Both visits, I was greeted by a very friendly front desk staff member, shortly after I was greeted by a few more nurses/office staff who just happened to be working, and then I was quickly offered a beverage or snack. WOW - not to mention this place was SUPER sterile and organized. I was taken to a private room and given a WARM blanket as I waited to meet the Doctor. Both Doctors who I saw were very professional and took the time to explain everything that was happening, some preventive advice, and how to heal. Overall visit was very quick with little to no wait time at all. I highly recommend this place!!!!!!!!','2018-12-06 00:31:07.694000','2018-12-06 00:31:07.694000',5,'Shea Tidwell','https://lh6.googleusercontent.com/-5u54GdGYRIE/AAAAAAAAAAI/AAAAAAAAAAA/FQ0nxbIpscM/c-rp-mo-br100/photo.jpg','16891069708558046635',4394),('AIe9_BHQjprpOXGeqmXihYBIHmuaP4ZH1LCJ7ZNjLpAHghP4JtPIIcbTkD2JU6qZPhJLWAEB45u5DLGcRGIwL4E1m-IhxMt2J5qOnwuDJ6NWVodLj7Hwxqw','Each time that I\'ve visited I was treated well. This was my daughter\'s first time there and the staff was friendly, helpful and thorough. I recommend this ER to everyone seeking medical attention .','2017-08-08 15:41:48.085000','2017-08-08 15:41:48.085000',5,'Kaveri Crawford','https://lh4.googleusercontent.com/-vE7eksQ7vUw/AAAAAAAAAAI/AAAAAAAAAAA/i5B_ayidavE/c-rp-mo-br100/photo.jpg','17394740196501090048',5003),('AIe9_BHQjprpOXGeqmXihYBIHmuaPuzwrQzJsF5nnYkXjPM6aZLfT7YG8p5lZEKpMLEhYm4jLb_oTLDgPpbZOV2S8kUxtcxlImP-ujNZO4a5fxNgJAPblAI','Very friendly and welcoming people. Overall great experience and would recommend! Dr. Harjai and nurse Jacob were incredible and had me out of the ER very quickly!','2019-09-15 17:14:42.599000','2019-09-15 17:14:42.599000',5,'Seth Boleman','https://lh6.googleusercontent.com/-EI2bMIkow1A/AAAAAAAAAAI/AAAAAAAAAAA/YnsGTQ6iLJE/c-rp-mo-br100/photo.jpg','16590124370714063921',3207),('AIe9_BHQjprpOXGeqmXihYBIHmuaQ0H3B-B0poOs1Vf4Z8kPBtFxCQw9J86u5hp0ZeKkufE_lJ77VvkZMbWNEy6wcEAPGctvvVaUg8kG2BC2C2bDutstwZc','Had a pleasant visit.Nurse called to ask how I was doing and after informing her that medicine did not help, offered to speak with doctor on my behalf to try different medication.','2017-10-09 15:15:39.836000','2017-10-09 15:15:39.836000',3,'Golden Creeks','https://lh5.googleusercontent.com/-r8iaGJRyFTg/AAAAAAAAAAI/AAAAAAAAAAA/Gu6n2xOP03A/c-rp-mo-br100/photo.jpg','3511292162159714121',7780),('AIe9_BHQjprpOXGeqmXihYBIHmuaqungP1IQCyWdIx7QVHB5WTHFSB40_Y_tjl50EixDSXt7x-pRtVICDuF073iyjORyZyrM5eYvxVU5pscm8hTWuybEW1E','The team at Signature Care saw my 3 year old son this weekend, they took amazing care of him and us as well! If you\'re ever in a situation where you cannot get in to see a physician and do not want to wait long, go see the guys there at Signature Care!','2019-12-09 13:50:36.201000','2019-12-09 13:50:36.201000',5,'Erin Davis','https://lh6.googleusercontent.com/-WOM6OaiJXOw/AAAAAAAAAAI/AAAAAAAAAAA/otJo5YnA0gs/c-rp-mo-br100/photo.jpg','3272657195432704501',6843),('AIe9_BHQjprpOXGeqmXihYBIHmuaQxBQQ-trBUB04WOM48sP9KALiZDOXs9-m4dQS8Op9APn2oL38imacG4nD9vvf-4GihT3NCUcSNckMrE1Sgjss3YKt-w','The service was quick and efficient when I brought my daughter in with a high fever. Thank you to the doctor and nurses for all your help!','2019-01-27 02:10:21.367000','2019-01-27 02:10:21.367000',5,'livingright87','https://lh3.googleusercontent.com/-lT6pulpXklQ/AAAAAAAAAAI/AAAAAAAAAAA/o93mSYzYURs/c-rp-mo-br100/photo.jpg','8918455867446117794',9188),('AIe9_BHQjprpOXGeqmXihYBIHmuaR9use2lWwUnjL3TR8uQtZ1qwC0wLcT-XCUA0sVB6-mgu3khR1sJAFyTpIE9YQHj_s5jZMvjElt9f8-nYL2LPvB3aR-k',NULL,'2020-08-16 22:00:30.650000','2020-08-16 22:00:30.650000',5,'Kaneez Mowla','https://lh3.googleusercontent.com/a-/AOh14GiKQlQ4uJsg85rBrCfw3ewebUYfbq9qTubcB4ME=c0x00000000-cc-rp','14748677429039074158',23016),('AIe9_BHQjprpOXGeqmXihYBIHmuaROaUVt6Dv1yHWGa4T0NsvwdFl2QyLlktV_ZuEM6MwTrwNMyFcOhQ04jWYPyJ95zo1j5jNrtMN-Wec6lwy-jv70N7xXc',NULL,'2020-02-19 20:06:42.479000','2020-02-19 20:06:42.479000',5,'Tron Talton','https://lh4.googleusercontent.com/-nD5-cAIHT7M/AAAAAAAAAAI/AAAAAAAAAAA/bLWmVVGfTZg/c-rp-mo-br100/photo.jpg','8918455867446117794',14816),('AIe9_BHQjprpOXGeqmXihYBIHmuas0uIb1pfAvTIhNOtkkDCdQUZrUU3lSJ-zQLk8dBftl1RS8oEEASHmZkL7LiB_Cp5zTICxm0TPOTHzv2pNPwxfdG4Xp4',NULL,'2020-02-19 17:15:50.518000','2020-02-19 17:15:50.518000',5,'mary latimer','https://lh5.googleusercontent.com/-ouCEmXQmQXE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmVifbLTtE_OksTGPg3TFMngqTD5A/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14608),('AIe9_BHQjprpOXGeqmXihYBIHmuasEt4hnC7gPy1mWublq1CG11mdI5_Bbj0M6oo-v3D3cvF3DXKHlT_C1RpSzzwFAFcSREzrX-8WIAl_BkZc89v9A7pDws','Went in with my mom after she got into a wreck. The staff was all so friendly and pleasant! Dr. Thomas, Jeff, tanishia, and Fatima were awesome and provided quick service. \n\nThank so much for the amazing service!','2020-02-12 04:34:43.893000','2020-02-12 04:34:43.893000',5,'Sharon P','https://lh5.googleusercontent.com/-X1qJBYwcUis/AAAAAAAAAAI/AAAAAAAAAAA/i44-2YYDT6I/c-rp-mo-br100/photo.jpg','17898197009688164559',14177),('AIe9_BHQjprpOXGeqmXihYBIHmuat0DqbzYg6HgdUR5D0i9O-92hKmNOiqTZF7vZG5jyf_dt6ZNExTNbb5MmLIfYDIxkoJedLyXLM8sifgoJGdTVkv82rn8','Everything was on point from the moment I walked in. Very friendly and professional staff. Got me back to a room and checked out immediately. Would definitely recommend to friends and family.\n\nAn extra thank you to Dr. Rose, Edward, Shelli, Freddy and Linda for your amazing care.','2019-05-01 17:32:38.239000','2019-05-01 17:32:38.239000',5,'Leah Parisi','https://lh3.googleusercontent.com/-VrUMqqCozn8/AAAAAAAAAAI/AAAAAAAAAAA/GLeNGdvdSSg/c-rp-mo-br100/photo.jpg','16891069708558046635',4291),('AIe9_BHQjprpOXGeqmXihYBIHmuaXnQLN3UX89nqErW3tLohqt39TGg7YmIMhp0pVhtdRB4GPugS4zCNTI1FxD2T4kZXyl00EbOuIFFEEBjpqRkwBcG9lC8','Quick, helpful, gave me options for my treatment','2018-09-14 08:14:58.482000','2018-09-14 08:14:58.482000',5,'Nike Blue','https://lh3.googleusercontent.com/-J_yef_dOu_I/AAAAAAAAAAI/AAAAAAAAAAA/ijyHsTyjeBU/c-rp-mo-br100/photo.jpg','14567670160750071148',1508),('AIe9_BHQjprpOXGeqmXihYBIHmuaZS9FoRXpMEySrsDySMcANF480lEE9j1CK93Rp_xOPo_z4WGznGpzNVKynOsu31KukGK1zQDi4FsNj_iuzJazLOWbih0','The staff is very friendly. The Dr. Found the reason for the pain in sons ear Very quickly gave us the prescription and we were on our way.. \nI would definitely reccomend Signature Care to my family & friends.\n\nReturned to this ER bc my daughter was sick. The doctor & staff took very good care of my Daughter Audrie was very friendly and patient with My Daughter. Thank yoi guys so much for Doing auch a great Job.','2020-01-20 04:24:36.257000','2020-01-20 04:24:36.257000',5,'Danica Salazar','https://lh3.googleusercontent.com/-PgMsD6AEWII/AAAAAAAAAAI/AAAAAAAAAAA/YVwONheINSg/c-rp-mo-br100/photo.jpg','13486358490203335051',13464),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdN1Lpc4EJdoWr6kQWCpqHKLS48DDbuI361mmn9hJKZ71KGhnFmKB8bIrUTeoIymt5AMamuZ9iv3FDLAJUJxeqlVDbrSD8','Perfect place to go and great care! Jennifer D was excellent','2019-07-10 18:47:40.006000','2019-07-10 18:47:40.006000',5,'Presley Crawford','https://lh4.googleusercontent.com/-U3imHjR2vfA/AAAAAAAAAAI/AAAAAAAAAAA/2_uO5ZaB674/c-rp-mo-br100/photo.jpg','8626688543755174284',8437),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdN1TegEtpR7X8ZfvJprBOITesiZp4aYow072jIFdGs_Cq4KWiDxyaYVdwW7ZFkCLb0DpIjwO-8hnXHN8eeF1KSERuqiTE','My visit to SignatureCare Emergency center was a great experience (aside from my underlying reasons for being there). I hurt myself during a crossfit workout and needed to get stitched. The facility itself is very clean and comfortable. The check-in process was effortless and there was no wait to get me into one of their rooms. During my stay, I believe four different nurses stopped by in the room to make sure i was doing okay, see if I wanted anything to manage my pain and to offer me food / drinks. Everyone was very friendly and helpful. The attending Dr. did a good job of explaining what they were going to do and why they were doing it beforehand. I would definitely recommend these guys for anyone in the area.','2017-12-05 17:11:10.101000','2017-12-05 17:11:10.101000',5,'Stephen Tribou','https://lh4.googleusercontent.com/-ylb_BYJJrds/AAAAAAAAAAI/AAAAAAAAAAA/IYYuprxmsRY/c-rp-mo-br100/photo.jpg','14567670160750071148',1720),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdN56EOU-9URkDFswp1vOWH25wFEMEZ0YgZZaATrBv426AnYnRpC8fOAgKxGG612p-a_S9PpLYXA0ZK12StYDsg42wBjTk','Quick, professional service.','2020-07-09 12:44:22.847000','2020-07-09 12:44:22.847000',5,'Cara Cunningham','https://lh5.googleusercontent.com/-IgVwzCoh4Zw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnDRIUYLJJJE_joUTravgiulTazMw/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21811),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdN6uRk9AEdaGIbb2cdBf_aYJCHuJIbKITQ9nCDJX0hYBGIxuSfuNjkLx2kkwRAwP3iIQUF27WLqEVk8csOsOsoMgX7FUs','I came in last Saturday due to a fall I had to get stitches when I tell you these people have the best hospitality I’ve ever experienced at a hospital I was well taken care of thank you dr smith , my nurse ma Alvina and Jesus was excellent with registration ! This is the best place to come when you have an emergency I wish I could give more stars !!!!','2019-07-27 23:02:02.728000','2019-07-27 23:02:02.728000',5,'GLAM BY GLAMORAE','https://lh3.googleusercontent.com/-FCN0Ex6XD0k/AAAAAAAAAAI/AAAAAAAAAAA/OcfDWhXlnf0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdN9lYQcS0ZRoK9Rt0IcUl0qYSFvojqeOOhVECEKqQS7bngAS1bp5jk9NyGidFKuqQIcBB7I6nRwVsFeaTJnc8gO427Cjw','Great service','2020-07-18 17:38:23.088000','2020-07-18 17:38:23.088000',5,'Eleazar Garza','https://lh5.googleusercontent.com/-n-1j3RfQR7I/AAAAAAAAAAI/AAAAAAAAAAA/Rqg6ioG4Iag/c-rp-mo-br100/photo.jpg','14748677429039074158',21743),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNbsyLHMuQkhg-vJW-tAcodAo2qIMFdd9Sz7-vrFL_sscruV2XDR9L84S15V1-c3yVzbZyXcfhQgKYBrISiM95WB-TuKg','Took my friend for an emergency visit and was absolutely blown away by the experience. Staff was over the top nice, facility was exceptionally clean, and the whole experience was great even for myself who wasn’t the patient.','2018-10-15 02:42:51.737000','2018-10-15 02:42:51.737000',5,'Emilie Jacobs','https://lh3.googleusercontent.com/--9UCt2yZwJo/AAAAAAAAAAI/AAAAAAAAAAA/Y7q1AoQNJi4/c-rp-mo-br100/photo.jpg','16590124370714063921',3705),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNdUR0NAreEoRdY3BjGXjQgLnp8a_NjmZz-Ekvvlr99tX_tpQIJ9Xpiz6hqD3cMSnPTy8D9V8kvUjTU3cjhNwxElNKNzY','Wait wasn’t too bad, bring food and pee beforehand','2020-06-12 17:51:53.979000','2020-06-12 17:51:53.979000',5,'Lee Payne','https://lh3.googleusercontent.com/a-/AOh14Gg4ve4JH8HKUWCBdiPwB5SbjFrbGfriodZjmzf37g=c0x00000000-cc-rp-ba2','16891069708558046635',22048),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNecDfZ2zUo20KLYwePMmAiQy87BSJzwmjRPkgkct4YiTrwTn3PPPo-rhGE2uSI922irvOCMVWS71GjlBZgBAsdUdhYn8','Great service. Quick turnaround but it was not high traffic time. (11:30PM on a Tuesday night). It took a too long to get results back from CAT scan but that is out of SignatureCare\'s control','2017-01-25 18:33:41.220000','2017-01-25 18:33:41.220000',5,'espound','https://lh3.googleusercontent.com/-mVEFIDcnvuI/AAAAAAAAAAI/AAAAAAAAAAA/_OT6lkEvRQw/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',4082),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNiE5W5pXQAUWgqpB4Vabm88UM7EVlI-eQE4MOtaJOEPidSrDVK49CVqXUmUvGXSVaCbQiO8jLvsC11cKimesuwOR7Cpw','Dr. Lingan and Dr. Elsbeckr were great during the Covid - 19 rapid test. Thank you for offering this important service!','2020-06-10 22:13:56.609000','2020-06-10 22:13:56.609000',5,'Beth Zerdecki','https://lh3.googleusercontent.com/-csxFndUhLbs/AAAAAAAAAAI/AAAAAAAAAAA/tBwhxxdXWaE/c-rp-mo-br100/photo.jpg','16891069708558046635',22062),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNLlLQ7a0xIxbau7-wW1L9kde6xztiCsO8zMUgK9n0S-GCrKkjiUCujrZwzY4xvmbCAM0Tj36cGcdJNOVger1mAj0bwVc','Mercedes and Allysa were very helpful in the registration process and Shawn K. was very helpful and caring with the testing process. Highly recommended 👍🏼','2020-06-20 19:56:11.096000','2020-06-20 19:56:11.096000',5,'Noble Babu','https://lh4.googleusercontent.com/-etXNpCGDqJc/AAAAAAAAAAI/AAAAAAAAAAA/pBmmaSTLwNA/c-rp-mo-br100/photo.jpg','8918455867446117794',21229),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNlq4Q6nMWAPumOEfu3M9twSQyhUm8fOs_3EzAINuXnAjynLL_AGJ5JQFHH9LrmmXdmNfhG_hmG0VQBPavzdmWkdG5VUU','Very professional and caring staff. Was quickly seen. Doctor Smith was thorough and clear on next steps and options.','2020-02-11 13:13:40.248000','2020-02-11 13:13:40.248000',5,'Denise Robinson','https://lh6.googleusercontent.com/-E_ipV35B31A/AAAAAAAAAAI/AAAAAAAAAAA/64ELUfHYFUw/c-rp-mo-br100/photo.jpg','14904078213800803294',17213),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNo8uCkXUQynqNWftxn5I2vtL5cIBwXp3lfbsNUx0X-re4zJaBn3e5JrZ5pOTQdEToH5L003rr1Xuv6HlgV2aNirCDvFA','They are always so welcoming and make each visit so comfortable! Lorena, Laura, Jacob and Dr.Vakey are the best. I’ve been coming here all 4 years of college & recommend them to anyone in the BCS area.','2019-12-21 19:13:51.995000','2019-12-21 19:13:51.995000',5,'Isabela Hadad','https://lh5.googleusercontent.com/-FBPUr_vKNc0/AAAAAAAAAAI/AAAAAAAAAAA/4hvz3XR__80/c-rp-mo-br100/photo.jpg','16590124370714063921',3014),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNOFQA-6L3WOesKA7XodB94XpfxHTpeFKWjkjM4cS0-s-Crxy4TSWKHgu9ppUhqwpt7v7Y1HsxLLFed03W4wyShQiN7-I','It was an EXCELLENT sevice as soon as we stepped inside.. My daughter had a dog bite and they attended to her before charging for the visit... I could not pay for all the services and i was still helped, sure did pay what i could and just have to pay the rest with no interest or extra charges of any kind.. From the receptionist to the doctor it was awsome services and kind assurance.. Unfortunately in the AM shift was not as helpful as the PM shift.. They said any problems within 24hrs. Will be a follow-up and no extra charge... But as I am returning the nurse upfront way different from before with attitude and no help... All she cared about was to charge $175 again... Sad how the difference in shifts changes and the service provided... ERIKA should not be part of the team to service people or be the 1st person to encounter... Unless they are asking for you to walk out like I did and take my money some where else...','2019-06-30 13:29:09.804000','2019-06-30 13:29:09.804000',5,'Erika Garcia','https://lh3.googleusercontent.com/-OWb8VWb3YYo/AAAAAAAAAAI/AAAAAAAAAAA/VlWS4r2aHG0/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1280),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNoW-UAaT2NLiA3-8UaE9gsjwptEMLmAkqjkVq4Zlww7LjTILc9Oiu3SiTapO803Rw9rPPVqGj_BtSI7hh5B1LjfXCMJc','RUN - DO NOT GO HERE. LOOK FOR ANOTHER URGENT CARE CENTER.\nFraudulent billing practices. \nI came in due to stomach pains and was worried that it was my appendix. I asked the front desk if they took my insurance. They took it and ran it, didn\'t really say anything and just gave me paperwork. I didn\'t think much of it at the time because I was concerned with my health and was not thinking clearly. When they took me into my room I thought, ok good - they do take it. As they are hooking me up to the IV, they got confused between the morphine and IV flushing fluid they had in their hands!!! I honestly should have walked out at that moment but I didn\'t because again I was worried that it was my appendix!! They ended up convincing me to get an MRI. They then moved me to a private room as I waited for someone to read my scan, only to be discharged a few hours later... I left being told it was not my appendix and to follow up with my Primary Care if the pain continues. They hit me with a 15K bill because guess what?! They were out of network! I later found out that they are \"an out-of-network provider for all health benefit plans.\" This is not ok. When I asked the front desk point blank if they took my insurance, they should have told me that they are out of network. This information should be on the forefront of their insurance information page but it is not and this is wrong.','2020-01-21 18:20:15.537000','2020-01-21 18:20:15.537000',1,'Lisa','https://lh4.googleusercontent.com/-LHYipb6L77Y/AAAAAAAAAAI/AAAAAAAAAAA/W4fd51QS5Tk/c-rp-mo-br100/photo.jpg','12541597562633926366',9939),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNwDY8-iKWLsw-k6daVR65u_C2biLbNdIBjtMnTcbRANbM-mj-7e5bxsxhBTfcepEjTFB5SoWW5Bsxx2vAOoXgjrSDuSI','The staff was great very helpful and fast was in and out and caring thankful for the care!!','2020-08-11 18:46:13.617000','2020-08-11 18:46:13.617000',5,'ahreli galvan','https://lh6.googleusercontent.com/-dZye1WOuoZw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmI6eISids8nS1d-JDi2JJk_uScFw/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23030),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNWMZo5Y-Gx0kDRdY6Hg-TSaI4mz42RnM8fuE6DkpvPYuI3coS93PMnqajn9HMQ2_JJ-T1Kk8Eb64yOuvNEmGr5B-QzWQ','Took my husband in to the ER here and everyone was so kind, caring and thorough. Also a very nice/comfortable ER if you have to be in one. Thanks so much to Adam, Chris, Linda, Aileen and Dr Leung for all your kindness and compassion. Wonderful team!','2020-02-25 02:23:26.977000','2020-02-25 02:23:26.977000',5,'Lacy Conrad','https://lh4.googleusercontent.com/-acURod2v2Y8/AAAAAAAAAAI/AAAAAAAAAAA/JCt_MmSNyGo/c-rp-mo-br100/photo.jpg','16891069708558046635',13929),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNxLeJyTK344XykgPxv6kjMXSqiilxxXvTLUbRrSVCIXGahbn1LSsWqjciswMfzCErkQGTB9nlpTpquOCeqyppVT4ShFg','Had a great experience! The staff was great and made us feel very comfortable!\nDr. Nweze, Alvean, Tricia, and Jocelyn thank you very much!','2019-10-16 18:42:42.214000','2019-10-16 18:42:42.214000',5,'Hector Sanchez','https://lh4.googleusercontent.com/-AnXT2nS3tYU/AAAAAAAAAAI/AAAAAAAAAAA/IM-gWg5WubI/c-rp-mo-br100/photo.jpg','16389487648212004696',2813),('AIe9_BHQRY2ZSwEqF8wFOgAU7mdNz9LWMqdXmSTYULaipYvkOhFR2s7ygvQfYuCPWnJY2V559uJV9I8_B4KklsEFKHvYyWQYTTZl4dLWC5kqFA31T2AG7zE','This place is so kind, clean and welcoming. I’m from San Antonio and none of the ERs here compare. I was visiting family and this place took very good care of me during the scary time I was having with thinking my pregnancy was at risk. The bill wasn’t outrageous either. I’m very pleased and will recommend to anyone I know in Paris. They even called to follow up and see how I was doing once I got back into San Antonio.','2018-10-07 23:44:24.563000','2018-10-07 23:44:24.563000',5,'Melinda Sanchez','https://lh5.googleusercontent.com/-hwJaJBqPzok/AAAAAAAAAAI/AAAAAAAAAAA/QpG50zXqafg/c-rp-mo-br100/photo.jpg','8626688543755174284',8641),('AIe9_BHR7p0hPy1flx1br0TYdEUB_7O_TiY8qKzjyKge95Nc0Vta6FHKLJ4Cx4dwQ25kkQYZzdEYLPg7zgNqqiQARh1BhvcYOHxUo-cSxFntLn6gdhE0UwI','Quick and easy ','2017-07-04 12:27:18.284000','2017-07-04 12:27:18.284000',5,'Chelsea Oakes','https://lh5.googleusercontent.com/-swkXLmxZX74/AAAAAAAAAAI/AAAAAAAAAAA/il5akOOiAXw/c-rp-mo-br100/photo.jpg','14567670160750071148',1801),('AIe9_BHR7p0hPy1flx1br0TYdEUB_BBPOBRg9f1yElr6c1Q8PFjpelCjJDguTNPKa9gNbth41dACcjS6vEl-Xk1R2KGyB76KR9oT_Mvz21LjJJCfaso3o7I','Me and my husband went first time there and we had great experience. The inside environment was super clean and the nursing staff was very nice and friendly. The front desk lady (valinceia) was really good and she guided us everything.The dr (noor jaber) was very prompt, proffesional and friendly. We both recommend their awsome services.','2020-05-28 01:07:38.038000','2020-05-28 01:07:38.038000',5,'Urooj Naz','https://lh6.googleusercontent.com/-QIklG1UFF2o/AAAAAAAAAAI/AAAAAAAAAAA/OZZUdYhOXHw/c-rp-mo-br100/photo.jpg','8918455867446117794',22939),('AIe9_BHR7p0hPy1flx1br0TYdEUB_BxfzCkBFJfY-w_Wq6lX32lqNDR4I91d-ISMcnGDCN8zDzN-32sQ79goI5-m5Sg94AkHPrEyUwk3gbimYY3i5gLY7Tg','Best staff and I felt very confortable. \n Thank you!!!','2020-07-06 07:52:15.237000','2020-07-06 07:52:15.237000',5,'antonio gutierrez','https://lh4.googleusercontent.com/-NJfjokzgb8c/AAAAAAAAAAI/AAAAAAAAAAA/L-qwRj1C5zc/c-rp-mo-br100/photo.jpg','8918455867446117794',21496),('AIe9_BHR7p0hPy1flx1br0TYdEUB_koMfLxqdPuqF0BPCMZL9iaBXvI9Z_Rf7NEoufU3g3Go8gUJjBYSSK0GHPSb0PdgXS1a5LRv1ayW1AEOnNUYnncYlW4','Very sweet people, very caring','2020-07-29 20:49:10.541000','2020-07-29 20:49:10.541000',5,'Cheyene Owens','https://lh3.googleusercontent.com/-dCXhv8JgFJM/AAAAAAAAAAI/AAAAAAAAAAA/mdC2FjFwFS8/c-rp-mo-br100/photo.jpg','14748677429039074158',21902),('AIe9_BHR7p0hPy1flx1br0TYdEUB_lmCsxAqfAUrC-o4ZiKsCdz27sjeFO_t-qR2rhSJjdZeW-1-XF7ZBnCQ2RX7lA4yKUCQ80nJ2Z16nYk6lgobaUMaVi8','Keli and Donna are so sweet and patient. Eased or worries and was very informative.','2020-05-27 01:42:43.134000','2020-05-27 01:42:43.134000',5,'Jacqueline Finch','https://lh6.googleusercontent.com/-vLRrhjKgXMo/AAAAAAAAAAI/AAAAAAAAAAA/jXyNzI5czKQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21780),('AIe9_BHR7p0hPy1flx1br0TYdEUB_OOi7xov8Zh8UfUx0BbDh2XKbyTvyz21_idEGJW2Q9oAdiRnquy269B6UXnL4to0Utqiha71bunXz2LT7ypBxmZa-VY','Luke, Kim, Sherri and Dr Ashbrook were great! They were very fast and super attentive to every need!','2019-06-25 21:19:53.755000','2019-06-25 21:19:53.755000',5,'Jennifer Elledge','https://lh5.googleusercontent.com/-uybIhtYGZA0/AAAAAAAAAAI/AAAAAAAAAAA/gnmLefJFlmY/c-rp-mo-br100/photo.jpg','3272657195432704501',6945),('AIe9_BHR7p0hPy1flx1br0TYdEUB_sIFI3AfWkz3Bl5YPhgP28vOufrzHNaUGmPlOTNijLbma0b2aWC4piUzNiPBb8tuIjozyFkeAtwgaRGagx45R-D9bvw',NULL,'2019-05-10 07:27:22.168000','2019-05-10 07:27:22.168000',4,'Kris Oliver Bondoc','https://lh3.googleusercontent.com/-mdC4RHxm8zs/AAAAAAAAAAI/AAAAAAAAAAA/VWukmnBqgWg/c-rp-mo-br100/photo.jpg','17898197009688164559',5743),('AIe9_BHR7p0hPy1flx1br0TYdEUB_YoUfIiqYOJCu9w4bhlArRAjr_pC9E8jqBVY_K4hnajk8mh7lk9gXzTv7VoJoivSLgoCWKcfyhpsSfS-G5VYa2q6rDw','The staff was nice and friendly. They made sure all of our needs were addressed.','2017-05-12 15:20:53.003000','2017-05-12 15:20:53.003000',5,'Renita Crutchfield','https://lh4.googleusercontent.com/-cngCIOviQSU/AAAAAAAAAAI/AAAAAAAAAAA/8L9-bTT5kQs/c-rp-mo-br100/photo.jpg','8918455867446117794',9402),('AIe9_BHR7p0hPy1flx1br0TYdEUB-bdjqFJ9fqngxx9Sn2uv3V375KYw0tjR_e2gC2AtTVUUNWrO1sCkGd8rzeqKGPn5tUMSh2QrUJCSgNmgjx2BfznpAs0','Great staff and care. Warm and inviting as soon as I walked through the door. Very thorough and would recommend to anyone.','2019-02-08 06:45:41.532000','2019-02-08 06:45:41.532000',5,'The Shepherd fam 09','https://lh4.googleusercontent.com/-dizovmRJERA/AAAAAAAAAAI/AAAAAAAAAAA/ByWwIIGxg1k/c-rp-mo-br100/photo.jpg','12541597562633926366',554),('AIe9_BHR7p0hPy1flx1br0TYdEUB-DatsM0pkVKajqRBmABsZHKpKo4s9rzpf9Xq4TWXC-DIGFIdHm6LTte5d8BA-iD_AveBZQBiVkEkX9k_D_FRYUDJGpg','(Translated by Google) Dr O’Malley\nAlveanA\nTricia\nPatrica\n\n(Original)\nDr O’Malley \nAlveanA\nTricia \nPatrica','2019-11-30 17:56:49.552000','2019-11-30 17:56:49.552000',5,'sophia lue','https://lh6.googleusercontent.com/-3SpT-7aY6dY/AAAAAAAAAAI/AAAAAAAAAAA/YF0RLRUS9aQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2606),('AIe9_BHR7p0hPy1flx1br0TYdEUB-dl2ch9biMueedCkMtEspdV3ppugKJPPEJuG5vPdyXYs9Zt0vdvX-GY0Lzp_7tR4CQhBx7LOnnW8aKC3nku_1ME3vP4','DO NOT GO HERE. YOUR MEDICAL BILL WILL BE ASTRONOMICAL IF YOU GO HERE. \n\nThis is not an urgent care center, the name is misleading. I went here 4/15. I thought this was an urgent care center that takes insurance, meaning I would have had a $35 urgent care center copay. NOPE! Because they are a free standing ER, they overcharge insurance, your insurance won’t cover it, and then you have a $1,000+ bill.\n\nThey don’t tell you this when you check in, and you don’t have sufficient time to read the forms they give you to find out that it is not an urgent care center. I had NO idea that this is not an urgent care center until AFTER I had been seen by a doctor when I was reading the forms I was supposed to sign. I didn’t sign them but it was too late then. \n\nIf you want to overcharge people for medical care because it’s convenient, fine. But TELL PEOPLE instead of HIDING IT. This should be illegal.','2019-05-12 20:18:45.301000','2019-05-12 20:18:45.301000',1,'Jessica Rollinson','https://lh3.googleusercontent.com/-Cjs9I4_Tyxo/AAAAAAAAAAI/AAAAAAAAAAA/B6NOQaRWGZY/c-rp-mo-br100/photo.jpg','16590124370714063921',3389),('AIe9_BHR7p0hPy1flx1br0TYdEUB-hDVaLndY1y-Ljacn5PTbgJAVtk25kl3qDgEi-OGBceNsG5M7uoBhu8zXBjpFoGj__LM71W_-d9JoiOz34Or0LjN5AA','Excellent service!','2019-11-30 05:29:17.591000','2019-11-30 05:29:17.591000',5,'Natallia G','https://lh5.googleusercontent.com/-ezlHsPAlFRo/AAAAAAAAAAI/AAAAAAAAAAA/i1ExSGpl-x8/c-rp-mo-br100/photo.jpg','8918455867446117794',9042),('AIe9_BHR7p0hPy1flx1br0TYdEUB-l8zJr44ECIohnMmG1fEyh9AnwlQ8Q50CZGHjGJOcVHwupe8YYoLl8fLglP4rbmLFQpyXYQup_QJ1ykYag4Q4d5jXPc','Very thankful and appreciative for the phenomenal care I received at Signature Care from Dr. Yusef, Tessa RN, and Ruby US Tech on 7/12/19. Being an RN myself, I know that they went above and beyond for me. They effectively and efficiently treated me, all while making my comfort a priority. Dr. Yusef has impeccable bedside manner, is compassionate, and his genuine concern for his patients is evident in his practice. Kudos to this team!','2019-07-16 23:12:37.675000','2019-07-16 23:12:37.675000',5,'Jency Mathew','https://lh4.googleusercontent.com/-CkUKg2J_QEs/AAAAAAAAAAI/AAAAAAAAAAA/iQ5yF4WiH6Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7249),('AIe9_BHR7p0hPy1flx1br0TYdEUB-TLnJu3wpcdtYejlJpx2m9PekVvnqEWYYhHl8TBufVOI2YnjBE4nDvSNc4GLP1it87CnglFa87Z3x9Hxl692XZOwgBE','Very quick and friendly service','2019-01-17 20:38:05.309000','2019-01-17 20:38:05.309000',5,'karina Hudson','https://lh3.googleusercontent.com/-fLTDvTJcR1o/AAAAAAAAAAI/AAAAAAAAAAA/fb50c_-iAZ0/c-rp-mo-br100/photo.jpg','14567670160750071148',1404),('AIe9_BHR7p0hPy1flx1br0TYdEUB-VLang571nwmIDQVboswjzS9v-2DSP95WpFIQ_4wT-DwDVwg78QE_Os0prfGFCt0dDKrPdjdx1WDB4rggPleN2JUOeA','Awesome staff, very friendly & knowledgeable','2019-03-18 02:13:26.767000','2019-03-18 02:13:26.767000',5,'MrBobbyg2709','https://lh5.googleusercontent.com/-N1dLebVd1wM/AAAAAAAAAAI/AAAAAAAAAAA/0gGvsIu5exg/c-rp-mo-br100/photo.jpg','16891069708558046635',4323),('AIe9_BHR7p0hPy1flx1br0TYdEUB-WZDThaoPZ3p6WcinNKqjJYRvTii0HBQe85caQA4vAV8savBVZ5xI8RO7J7jtRlNIfA4Re25fqr5iZRyy19oBJZ7LRc','Best ER experience ever! Check in was quick, less than 5 minutes and serviceand staff were great. \n\nHands down the cleanest, friendliest, and best ER experience I\'ve ever had.\n\nThanks Alvean and Patricia!!!\n\n','2020-02-09 16:55:52.285000','2020-02-09 16:55:52.285000',5,'robin williams','https://lh4.googleusercontent.com/-aECkWTU0lu0/AAAAAAAAAAI/AAAAAAAAAAA/Gi8S5QNLfg4/c-rp-mo-br100/photo.jpg','16389487648212004696',22600),('AIe9_BHR7p0hPy1flx1br0TYdEUB0_8Z6lfD5Qm3WwuYB71X5tK6euh6S5gTMvoxPC5gSLo0QYo9VUv2HTdqYwCDmYUdjDeiL6KC_B68P46i1hOYl67LUFg','I had to find a place to bring my 5 year old daughter on a Sunday afternoon after she got a big splinter lodged in her toe that we were unable to remove at home. The snacks in the waiting room were a nice distraction for my daughter, and the staff was very friendly. I was very impressed with Dr. Elsbecker, who was so kind and thoughtful with my daughter. He explained what he was going to do and established a great rapport with her. He even went out of his way to find pink gauze to wrap her toe with afterwards so it would match her shirt. The facility was clean.','2019-04-24 16:04:36.727000','2019-04-24 16:04:36.727000',5,'Amy T','https://lh5.googleusercontent.com/-4dmwUrGwc7A/AAAAAAAAAAI/AAAAAAAAAAA/7DwEdJ4FcFk/c-rp-mo-br100/photo.jpg','16891069708558046635',4299),('AIe9_BHR7p0hPy1flx1br0TYdEUB07LGZIB7e4G61r0_M9CGAlF7x-pGQJqbGz69EEMHWv-RdIsnlYeip1fuuXAkD8qBa9GhmtIjEj-YiD6nwqc6DY8dvKk',NULL,'2019-03-25 22:23:11.002000','2019-03-25 22:23:11.002000',5,'Jordyn Brechler','https://lh6.googleusercontent.com/-08jf9wqr3S4/AAAAAAAAAAI/AAAAAAAAAAA/VoGSaTS5UOY/c-rp-mo-br100/photo.jpg','16590124370714063921',3482),('AIe9_BHR7p0hPy1flx1br0TYdEUB0AWw-mTlERDhXGNUH0m4f7K-ptPWBx6mnhuOxctz1kaVpIjtXhFPJrTyNjU1Jv-Yv93-Xbhugcq5R2e9n7lSablPKaI','The team at Signature Care took great care of me. The stay was comfy and they had me in and out in no time. If an emergency ever happens again, i know where to go.','2018-11-15 00:41:08.256000','2018-11-15 00:41:08.256000',5,'Frederick Mallari','https://lh5.googleusercontent.com/-4ydATcmxGQA/AAAAAAAAAAI/AAAAAAAAAAA/JyzNsc20eDQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7557),('AIe9_BHR7p0hPy1flx1br0TYdEUB0EaU6dUWVsQ4mKYVAB0RWkj_DT6z7hjgyDZQXgzf2XUQrgeRVIRjz6wsX9bpqLtICxcUo2QvROmEQfxFQG2zVwsARis','Thank you John Bell and SignatureCare staff for taking such great care of my granddaughter on today.','2020-02-25 19:51:43.031000','2020-02-25 19:51:43.031000',5,'Cathy Porchia','https://lh4.googleusercontent.com/-pNnp7y61Bts/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnOFAtofnQHDBP5uQnUaqovt2Y1cg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21195),('AIe9_BHR7p0hPy1flx1br0TYdEUB0hr5zhDNk-OmRv8pI_5SaJzNeOId5ad7DAQdJuoq2dYXnGNPpXpRqAZHnEwEeLxm3beQq1AfhEp4JDampEKo749VThk','Amazing service. I cam in with horrible pain and they got me comfortable immediatley. Come to find out i had a kidney stone! They kept me overnight to help me try amd pass it and kept me comfortable. The nurses and doctor were absolutely nothing but wonderful. I felt safe and at ease and was able to rest peacefully. Defintley come here if u need to.','2018-08-20 16:54:28.205000','2018-08-20 16:54:28.205000',5,'Lori Orosco','https://lh3.googleusercontent.com/-A-LmAHA-pjs/AAAAAAAAAAI/AAAAAAAAAAA/ZHYfK8yLMLM/c-rp-mo-br100/photo.jpg','16891069708558046635',4444),('AIe9_BHR7p0hPy1flx1br0TYdEUB0rl0pg2bbeksEVPcGhxtqJO22eU9bNPXWf1W7HId35tfli_iJl08mRTSEDh27ubURIEwcxDWO_rIRa6XtbwKt9q0G-g',NULL,'2020-05-29 01:33:36.172000','2020-05-29 01:33:36.172000',5,'Larry Henry','https://lh5.googleusercontent.com/-BeQFpqs3WCg/AAAAAAAAAAI/AAAAAAAAAAA/4cm_BP-lA_U/c-rp-mo-br100/photo.jpg','12541597562633926366',22459),('AIe9_BHR7p0hPy1flx1br0TYdEUB0UoemwPbmlMGu-SN9pzenj5whRgWGA7hbf38TKHKHzdsq1EU8uWnldnp_XdfX6_fqx-IFehOVpesN1HH6_BJyzsrjMs','The entire staff was very professional and friendly. I was seen quickly and there\'s virtually no wait.','2017-05-29 19:07:13.386000','2017-05-29 19:07:13.386000',5,'Alexander Howes','https://lh6.googleusercontent.com/-N-9Mv7cUnvQ/AAAAAAAAAAI/AAAAAAAAAAA/QygxHJwPKw8/c-rp-mo-br100/photo.jpg','14567670160750071148',1816),('AIe9_BHR7p0hPy1flx1br0TYdEUB0VTWWs-61RxPXPlCJnese3F0FXTPKzjuF_XabIvIsIXEi4V26hLxH65DzkRsnCBN85BBtwuL_cKk0azo9zcg0fUiKlo','Had to go with the patient and watched him receive quick and great care for his abdominal pain. Both nurses, Jose and Erin, were great and worked well explaining what was going on so that way we didnt freak out anymore. The doctor, Dr. Mauldin, was great and explained everything clearly. Overall it was a great experience and everyone else we encountered were very helpful and kind.','2019-06-21 06:16:15.683000','2019-06-21 06:16:15.683000',5,'Melani Anguiano','https://lh6.googleusercontent.com/-rNb3w4B23LU/AAAAAAAAAAI/AAAAAAAAAAA/mRNtJvLopJQ/c-rp-mo-br100/photo.jpg','13486358490203335051',945),('AIe9_BHR7p0hPy1flx1br0TYdEUB0VUGU_J2zzZ9nar9i5Cgz0zOqKjIDAft_A_MqhYTQ0dBIcuxeGmEXoB71j4PvAy48Y5Sl0dVlAo__LTxAFsRS-CrZFo',NULL,'2020-07-12 02:32:28.927000','2020-07-12 02:32:28.927000',5,'Cyndy Chavez','https://lh3.googleusercontent.com/a-/AOh14GhX50ptukhFsE2o4mGyMk-nSQlxrRoUKpooFVubuQ=c0x00000000-cc-rp','17394740196501090048',22077),('AIe9_BHR7p0hPy1flx1br0TYdEUB12BgfS9y6VJo5iU7CFoN80WpQZpd-fnkLZ90xF4Txw82mGprCbtqQWythAqkgdr_Nx_CJu0u60Vmfgc6V2NDWFH4YBE','What else can I say but wow! This place is amazing. Staff are all super friendly, knowledgeable and helpful.\nNo wait at all, walked in sat down and stood right back up again to be taken to a room. \nHighly recommend!','2018-10-03 01:51:24.099000','2018-10-03 01:51:24.099000',5,'Derek Mumford','https://lh4.googleusercontent.com/-tlOFinqK8bw/AAAAAAAAAAI/AAAAAAAAAAA/rQ6OvVoBkBk/c-rp-mo-ba4-br100/photo.jpg','14904078213800803294',2211),('AIe9_BHR7p0hPy1flx1br0TYdEUB14DMA18T_8TVhf-iOY_LBXzkAMGnBh9iI8T_7C-i3EIGOpAUbENN-Ar17SqeRDUe7Bwb_L_eJhWs512uzxw-5Wi9sBo','Great experience! Very quick and had great service! Lorena was fantastic at the front desk and the dr and the rest of the nursing staff was awesome!','2019-10-27 17:55:23.875000','2019-10-27 17:55:23.875000',5,'Tyler Nelson','https://lh5.googleusercontent.com/-e8ekRxt1Q2U/AAAAAAAAAAI/AAAAAAAAAAA/Q3k56bIjfkw/c-rp-mo-br100/photo.jpg','16590124370714063921',3118),('AIe9_BHR7p0hPy1flx1br0TYdEUB14HbyfQUQ-MqKjGcUwrV0MIZfV5h73eMfcIdwscoZkjLua9tmj2-JnHr_umXFqnqozPmyXD7gt-eTQcFtvuK4BqD_og','Super fast service. I came in at 11:30 PM and had a 0 minute wait.','2019-08-29 04:42:38.680000','2019-08-29 04:42:38.680000',5,'Matt Anderson','https://lh5.googleusercontent.com/-HhkHkWL7OR8/AAAAAAAAAAI/AAAAAAAAAAA/uodpn2Zf4q0/c-rp-mo-br100/photo.jpg','16590124370714063921',3233),('AIe9_BHR7p0hPy1flx1br0TYdEUB1Ci5iCiD6Kv0I2-B0NGEi6RYf8Gdeu1sC_W5HZ3RQOIaiEeS554UKOA9Xftg1tU4ElG7HoqaWkEAaBGzt9bhqm-XaKM','Thank you nurse Adrianna and rad tech Magal.','2019-08-02 23:17:03.863000','2019-08-02 23:17:03.863000',5,'Elisangela Patterson','https://lh6.googleusercontent.com/-UQISmPliNqM/AAAAAAAAAAI/AAAAAAAAAAA/HKvEJneWD_s/c-rp-mo-br100/photo.jpg','6521947413723274945',8173),('AIe9_BHR7p0hPy1flx1br0TYdEUB1JHyx58xiRLyM2DOKnpFnRVl6cR4K5S9KPu7-Y7vQ7TPtm0kyiRiS1zvDbFT8ts8MxIDjFiUXG-jutyJQOVm5KHxG3o','Thanks to Dr Mauldin, Laura, Tanishia, Sarah, and Daniel. God bless you guys. First time coming here and you guys were amazing. You guys for so nice and welcoming and very concerned and i really appreciate it.','2019-08-14 04:23:55.273000','2019-08-14 04:23:55.273000',5,'Lisa Thompson','https://lh6.googleusercontent.com/-G5uExBl63jM/AAAAAAAAAAI/AAAAAAAAAAA/CHfsqvXF43s/c-rp-mo-br100/photo.jpg','17898197009688164559',5589),('AIe9_BHR7p0hPy1flx1br0TYdEUB1N3zyoEd3Ty5-qebLzkjNvPyPFXCJzMptLgLr-aqv0PqJFphtpUiEtK521ZNoNofAVBEaP3waq20-kzZxdKYLMf5Fo0','Anthony was super helpful and made sure I was comfortable and well taken care of the entire time I was here! Definitely made my experience here a great one :). Dr Harjal made sure to explain everything to me and was very informative and efficient, Kim was very friendly and Becca was helpful and sweet even though I was getting a throat swab lol','2018-11-13 20:29:20.023000','2018-11-13 20:29:20.023000',5,'Jensen Von','https://lh4.googleusercontent.com/-31SqR5CLHEo/AAAAAAAAAAI/AAAAAAAAAAA/383wmVJAc_0/c-rp-mo-br100/photo.jpg','16590124370714063921',3652),('AIe9_BHR7p0hPy1flx1br0TYdEUB1Y5EIbaNSyqSEk7bYmpftaJ0xb-4qXsBOnHSReqYVFzavtGlcNcux6fLPf_usksd78DPXL61Ft78lsS0GhwtqmiDFIY','This is my second time to visit this location in less than a week and I\'m really impressed with the high level of customer service shown. All staff members are really attentive from the time you enter the facility and throughout your treatment. I have never had to wait long to be seen by physician.','2019-06-19 13:54:30.847000','2019-06-19 13:54:30.847000',5,'elise green','https://lh6.googleusercontent.com/-hKp7sH_StGw/AAAAAAAAAAI/AAAAAAAAAAA/ZLBjjdhMIvU/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUB1z0xyCyHTAE8kAg8ilJIjoGOFN9UdGGiFPAV5Djjm1cRADlG5T-YB23PiOs_aAGy5Y_c6V5ZO-bSzrX1S49-sFagy6M','Dr. Harjai, Erica, Marcus and Patty were all nice and helpful.','2019-09-25 16:25:07.662000','2019-09-25 16:25:07.662000',4,'Ryan *','https://lh4.googleusercontent.com/-H_RRS9fvG5Q/AAAAAAAAAAI/AAAAAAAAAAA/un-xopJ-jS8/c-rp-mo-br100/photo.jpg','16389487648212004696',2880),('AIe9_BHR7p0hPy1flx1br0TYdEUB22jLafFXBd7x7GZHVMAdKZfPeyq19fJDFvALUEnaTTdDauwKnFkJqdwgqtD0aUqHqkLCMzFqhY9jtqa4HgDowbRdD6A','This is my second time going for myself. Everyone was polite from the front desk down to the security guard helping me to my car. The process was quick. No long wait time. I really appreciated that due to me being in pain.','2018-04-02 11:16:56.468000','2018-04-02 11:16:56.468000',5,'ebony jones','https://lh5.googleusercontent.com/-gF2T1HyvFJg/AAAAAAAAAAI/AAAAAAAAAAA/s1S93x1LYpo/c-rp-mo-br100/photo.jpg','14567670160750071148',1641),('AIe9_BHR7p0hPy1flx1br0TYdEUB24uRinLCrqMtlQQ0kd1Y8-vintQhkJUgPLEWxCJKq6CD4wOME0IhbSuMKhku409Wl2qWDd4m_Edl7htuaazzPFS9cfk','I have been here a few times and it’s always been a great experience','2019-03-08 14:34:05.536000','2019-03-08 14:34:05.536000',5,'Elle Jordan','https://lh6.googleusercontent.com/-GBvx00q2ves/AAAAAAAAAAI/AAAAAAAAAAA/C3DjZQ5jxUk/c-rp-mo-br100/photo.jpg','14567670160750071148',1374),('AIe9_BHR7p0hPy1flx1br0TYdEUB2CZ70yh_hUvMvZDnHgsTRf4dPk18CA3dscF1e1fmmCzOYPqFg8VDHa5NEDsOhN5NBYb47UVBmApUmvBNGzERoM0c010',NULL,'2019-10-12 03:25:08.959000','2019-10-12 03:25:08.959000',5,'Negin Reihani','https://lh3.googleusercontent.com/--hJBk2zD-qM/AAAAAAAAAAI/AAAAAAAAAAA/Sfs7a6qwMIs/c-rp-mo-br100/photo.jpg','17394740196501090048',14084),('AIe9_BHR7p0hPy1flx1br0TYdEUB2D3GAiGCPCFSWgyJt3fLdZ-3hxclUxUfoBX-64GvxiPuaOWhTyp1_XivvbxLgKwJw5tP1ZSA4nhxXSCtvbKXQxAmnsc','This is hands down the BEST ER ever! No wait time, lovely and beautiful, caring staff! I wouldn’t go anywhere else in the world! KIERA is the sweetest and efficient, GINA is so compassionate and knowledgeable, NORMA is so bubbly and funny, and EVE is so friendly and kind! They were all great with my son as well even when he wasn’t the one being treated. Best team ever! Dr Thomas was quick and didn’t waste any time, yet was sure to ask all the questions. LOVE THIS PLACE! ❤️❤️❤️❤️❤️','2019-09-06 17:32:08.280000','2019-09-06 17:32:08.280000',5,'Lizzie Torres','https://lh6.googleusercontent.com/-y0VvGdz-8xA/AAAAAAAAAAI/AAAAAAAAAAA/LxF-2-VCg-4/c-rp-mo-br100/photo.jpg','3511292162159714121',7181),('AIe9_BHR7p0hPy1flx1br0TYdEUB2gih6271P1TQv441dO2PzXv8zd01K0-NQFUGdJepCoQhyuIvnS72uUvBClzakPmza1wxoehg7LPNIaPnBLt9jfvwWfw','Took great care of diagnosing me with pneumonia and giving me clear instructions and care Dr. Nguyen and Jani were great, the X-ray tech Kelly was nice and quick, and Jordan was good too.','2019-12-20 18:12:14.744000','2019-12-20 18:12:14.744000',5,'Chrissy Auer','https://lh3.googleusercontent.com/-R-G3MuDwoxQ/AAAAAAAAAAI/AAAAAAAAAAA/6YWnDR5biSg/c-rp-mo-br100/photo.jpg','16389487648212004696',2524),('AIe9_BHR7p0hPy1flx1br0TYdEUB2IVp3weHIA21J-PI3BGImEz-FR9nIiFcyh5traC4M8yEWUkNmup6b3Lozldin2lUcxKojBP3efk3iwZZnp0ISvP43RI','Thank you Lucas Kim and Sherri','2019-08-15 19:41:47.621000','2019-08-15 19:41:47.621000',5,'Scott Tharp','https://lh4.googleusercontent.com/-lek3KPvmgmQ/AAAAAAAAAAI/AAAAAAAAAAA/YCOL4m84xbs/c-rp-mo-br100/photo.jpg','3272657195432704501',6909),('AIe9_BHR7p0hPy1flx1br0TYdEUB2PXpubI_ajsXMnv2WqJwwbSOk1WdVfgAKRZcL4cY774OmUD-tYfdIpwBQSDINtpK425DMb6Ob5f2s45Umr6UEDy1vT8','I was in and out within an hour. Everyone there is nice. It’s a very nice atmosphere.','2019-02-21 03:03:46.005000','2019-02-21 03:03:46.005000',5,'Annette L','https://lh6.googleusercontent.com/-JkUkxJ0GNRM/AAAAAAAAAAI/AAAAAAAAAAA/ppOvQP_1PA0/c-rp-mo-br100/photo.jpg','13486358490203335051',1065),('AIe9_BHR7p0hPy1flx1br0TYdEUB2Spdua0-RLMbptK30vPZD6NrFxErheE0SFzBX9qmmLWnYbWr-DcG786gB8GgZHvrsJiZxXxwSJabktZnhB_PwBLccQE','Came in at 5am barely able to stand with a kidney stone. Dr Thomas, and the nurses Laura’s and Gina were great! Excellent care through a bad experience.','2019-01-03 14:30:11.297000','2019-01-03 14:30:11.297000',5,'Garrett Clark','https://lh6.googleusercontent.com/-Sr3aJ38PFdQ/AAAAAAAAAAI/AAAAAAAAAAA/LvlG8e5K4cw/c-rp-mo-br100/photo.jpg','3511292162159714121',7533),('AIe9_BHR7p0hPy1flx1br0TYdEUB2ZD47q9bcGSqsi6gE1XkbdCN8R5hokehgx9KH4vqG4u01ZFh-T5umZDdZ_EE3TVzCa4bTejz1DlmjWB92L_y3iHSgo4','Service was excellent. Nurse Blake was extremely helpful. Dr. Dan was very professional. And Mercy did a thorough job explaining all the documentation and insurance information and requirements','2017-03-10 20:56:00.406000','2017-03-10 20:56:00.406000',5,'Julian Miguel Pilares','https://lh4.googleusercontent.com/-cs-t6Jh7twU/AAAAAAAAAAI/AAAAAAAAAAA/EQap8rG-_7Y/c-rp-mo-br100/photo.jpg','14904078213800803294',2393),('AIe9_BHR7p0hPy1flx1br0TYdEUB31ga0_VcEDfyrw3PyiVMSxK0UDygdrzyGxGsTKDi_SkVPC5YoxgtCmrwBJ3bcPKepHvnMPoYQAddSR41E84n8bbyuTQ',NULL,'2020-02-16 08:12:24.251000','2020-02-16 08:12:24.251000',5,'Paula Wood','https://lh6.googleusercontent.com/-FUDXPIkHJlU/AAAAAAAAAAI/AAAAAAAAAAA/TiQq299NGb0/c-rp-mo-br100/photo.jpg','16891069708558046635',13949),('AIe9_BHR7p0hPy1flx1br0TYdEUB31r9TbR2Y6VeSyXEqqpQGDHQ4Y-g3eGnQhsaua5XDBuxGgtuatK25exHdEpQSyA8DSUxS7x8lsDkovSh5J0Xwc7lcHM','Everyone was very friendly and very hospitable. Thank you Dr. Thomas, RN Sherri, RN Toni, RAD Bryan, Tech Ricardo and Rec Amanda. #dreamteam','2018-10-18 02:10:51.567000','2018-10-18 02:10:51.567000',5,'Julie Sirianni','https://lh3.googleusercontent.com/-UKHJOYMuW7Y/AAAAAAAAAAI/AAAAAAAAAAA/ySrI33ZWDr4/c-rp-mo-br100/photo.jpg','14567670160750071148',1470),('AIe9_BHR7p0hPy1flx1br0TYdEUB32apTjLFkLRGn0kfvtoQqPZlsnRwNpwgzr_5cLdVB-92PB5NgnWYnovsOVrydpaRnLpgIOxIPRofHWlzKhn0RXx9Iz4','My vist was wonderful and quick','2019-08-17 13:50:37.375000','2019-08-17 13:50:37.375000',5,'CONNIE JOHNSON','https://lh6.googleusercontent.com/-lhWcZwrCd-c/AAAAAAAAAAI/AAAAAAAAAAA/qXF40q-QF68/c-rp-mo-br100/photo.jpg','2694018788013845459',6082),('AIe9_BHR7p0hPy1flx1br0TYdEUB35g9nCDt1mlgYMN7vO0DaGlQoKQI0Sow_bejdQqde-HVsON1CiAcmLdjDzQ21b-N9X8ZZvo_nWbxeKDgG9x498qG0HA','Loved the experience!!!! Everyone on the staff is AWESOME!!! I absolutely love it! Tanishia W, Dr. Henderson, Security guard, Susan, Laura and Angel — ALLL AWESOME!!!','2020-02-19 03:53:13.449000','2020-02-19 03:53:13.449000',5,'Michell Carriere','https://lh5.googleusercontent.com/-efOYWr8HEiA/AAAAAAAAAAI/AAAAAAAAAAA/9rWqykSap2U/c-rp-mo-br100/photo.jpg','17898197009688164559',14158),('AIe9_BHR7p0hPy1flx1br0TYdEUB3BXXQJ6kRHF9i31S8g1vxPEHsrqckrjZfd0zA0Vge0FQ3qUIT3GuZ0KkAhm1ItiFCraY7fWvSjzMi7COmMJO-o-IK9M','The staff was very friendly and super efficient. I was talking to a doctor within minutes of my arrival and I would recommend going back. Patricia was very helpful in facilitating care.','2019-12-26 15:21:32.174000','2019-12-26 15:21:32.174000',5,'Ronel Duran','https://lh4.googleusercontent.com/-iDJ40BsEY0A/AAAAAAAAAAI/AAAAAAAAAAA/2PCoLXXSGOQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2514),('AIe9_BHR7p0hPy1flx1br0TYdEUB3FZpVahNbdUZzuV8lOnd7UrGTF0YsygS6kWSIMq8K4wccNcesgHMKiQSfoGH9j8MN6P3cfx2qemhu1i_7Y3Ip95z1Gs','Cannot say enough great things about the care I received! I had to seek emergency care 11/9/19. From start to finish, the care I received was amazing and excellent. The most important part is the fact they asked the right questions, knew how to address my emergency and helped me. They ran the right tests and were so very on top of their game. That alone is worth 5 stars! The facility is SPOTLESSLY clean, everyone from check in to check out treated me like a person, not a number and treated me with care, compassion and concern at every step. Everything they did was explained to me, they asked me if I had questions, made sure I was warm and comfortable...you name it, they did it. The doctor who treated me checked on me frequently...the nurses and techs were available within 15 seconds if I needed anything. I was seen within 5 minutes of being admitted. Special shout out to TOM, who got my IV started on the first try (I have weird veins; so that never ever happens) and thanked me for being cooperative. He even gave me a choice between purple and pink wrap to hold everything in place. That seems like a minor thing but when you feel awful, little things like that go a long way. One thing I especially appreciate is that I was not hustled into a hospital gown immediately (of course if I needed one, it would happen). It just gave me some dignity. \n- not only was it spotlessly clean, the ER had “spa like” decor. That’s not a necessity but it made me feel less frightened. \n- they have an area with coffee, snacks and drinks - that was great for my mom while she was waiting with me. \n- they offered to have a neurologist (an off site one) come in and do a consult. Who does that? I opted to wait and see my regular neurologist but wow...what an option!\n- one thing that I thought was so kind was that while I was waiting for the IV to do its work, I fell asleep. Dr. Giancarlo (can’t recall last name) came in to check on me and turned the lights out so I could rest comfortably. So, so appreciative of that!! \n- discharge instructions were clear and thorough. The number to call if I had any questions was prominent. \nLet’s face it - no one wants to go to the ER. But if you have a choice, choose this one. It’s better (way better) than any ER I have ever visited. They hit all the marks...absolutely flawless care by people who know what they are doing, do it quickly and obviously care about each patient. \n(This is a REAL REVIEW. I do not work for this company, I was not “incentivized” to write it, I just think when you’re treated well, you should spread the word).','2019-11-10 12:56:05.986000','2019-11-10 12:56:05.986000',5,'Kelly Greenwood','https://lh5.googleusercontent.com/-3bV-1TWGT3Q/AAAAAAAAAAI/AAAAAAAAAAA/J5uDuxcA7DM/c-rp-mo-br100/photo.jpg','12541597562633926366',384),('AIe9_BHR7p0hPy1flx1br0TYdEUB3L5-qYXj9DD5TprFg4CMp9VC1EkkcUORImcu3q-G01PZ5M0dY_yBo89xUf3ifCh2CjQdLl1MUDNOOU2I2TvhQd7-7Eo','I was helped by Adam, Linda, Chris, and Dr Leung, who were all excellent and helped me relax during a 13-hour stay. Great staff, great rooms, chill atmosphere.','2020-02-25 02:23:25.434000','2020-02-25 02:23:25.434000',5,'Adrien Conrad','https://lh4.googleusercontent.com/-4WZQ-Ohan1E/AAAAAAAAAAI/AAAAAAAAAAA/D8pfp-q19Zc/c-rp-mo-br100/photo.jpg','16891069708558046635',13930),('AIe9_BHR7p0hPy1flx1br0TYdEUB3YoX2suHXeuaQVt-8Y6t_iME-P0Soc_DpHvn3XMhUil_SeMdArVeBF-Ah4Q-Na1RpvCtwdq4b_rrmzeJ89bVayBOatE','Compassionate health care.','2018-04-21 06:18:03.803000','2018-04-21 06:18:03.803000',5,'Veronica Martinez','https://lh3.googleusercontent.com/-Im10JzepK-o/AAAAAAAAAAI/AAAAAAAAAAA/m8N9SwyfE18/c-rp-mo-br100/photo.jpg','16590124370714063921',3833),('AIe9_BHR7p0hPy1flx1br0TYdEUB40CSRMC5l3dordgztAF70jGAi7aHjMmx7JLWbR842NU4Usqzz2lVit3Nr9RFXNO6yDSi0mdMyEbrqlqGS_r0qgNtNzY','I’ve been here twice for different injuries and have had fantastic service both times. The staff are kind and professional. Very fortunate to have them in the neighborhood.','2019-04-21 14:25:18.044000','2019-04-21 14:25:18.044000',5,'Robert Trout','https://lh6.googleusercontent.com/-pmUi0ojNe5g/AAAAAAAAAAI/AAAAAAAAAAA/lXsTd_zqiBs/c-rp-mo-br100/photo.jpg','16891069708558046635',4300),('AIe9_BHR7p0hPy1flx1br0TYdEUB4BzwsMQDGbYCrtieL9SJ5tN8HUN6ehx6DkpqjFz-3dTw0P4T1KFjWmLYEg5LfLOXCxOo2y0pFHFfI5NFYjMPXZm232k','Attentive staff really helpful, friendly and most of all very professional service. I am very pleased with the attention I got from them, keep it up you guys rock.','2018-07-20 09:51:56.226000','2018-07-20 09:51:56.226000',5,'Pedro A. Valencia','https://lh3.googleusercontent.com/-x3CAl7jJIv4/AAAAAAAAAAI/AAAAAAAAAAA/k5lwKU5_ajc/c-rp-mo-br100/photo.jpg','3511292162159714121',7686),('AIe9_BHR7p0hPy1flx1br0TYdEUB4fL_l4WMb-FYEp2oWxNg6k3MeHyYBF6oLGXMDeAV7IWtAOtN9HIaSipClFBF_lr6KOW2xZTqm3NRmS2HjQj20QldWN4','Delpha and Lisa V were great. Fast and thorough care.','2020-02-12 00:52:30.212000','2020-02-12 00:52:30.212000',5,'Monica Guerrero','https://lh3.googleusercontent.com/-LhcnpoqBd6w/AAAAAAAAAAI/AAAAAAAAAAA/ZiWiw3cdJYk/c-rp-mo-br100/photo.jpg','13486358490203335051',13426),('AIe9_BHR7p0hPy1flx1br0TYdEUB4pWjkOrcz2CXBiedrohKtVC_YuCxDsXtjBPkbbULao0X5kZ5iE3MUp-YSbPeEfeorJu2B53cSCs6FV39DkIZeCZWx4s','The staff here is amazing. Tricia and Jani are extremely attentive. Jesus in registration is very thorough and easy to work with. Dr Smith is awesome and it’s evident he cares about the patient. He asks lots of questions and listens very well. The facility is very clean and I would recommend them to anyone. Keep up the great work!','2019-06-27 21:58:29.361000','2019-06-27 21:58:29.361000',5,'Courtney L Knight','https://lh6.googleusercontent.com/-VN4R3c8XQZk/AAAAAAAAAAI/AAAAAAAAAAA/I41CW3jZfag/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUB4QUYidHTfMWwJuOneq-8k1_pePmSpecBWvjUajurdzvp_dEy2-dw4zXwJs14XqZFyoEofZMFIGgwYr1qPBvbAi9U3OI','I don’t even know where to start with how\nImpressed and grateful I am with the care I received here. The staff is top of the line and treats you not only like a human but as a VIP. They care and it shows. From the radiology staff, nursing staff and the phenomenal care they provided. Dr. Huerta is one of a kind and truly cares about being thorough and making sure you are taken care of. I can’t thank him and the wonderful staff enough. Thank you over and over again. I would HIGHLY recommend this facility to anybody at anytime.','2019-07-26 04:05:25.802000','2019-07-26 04:05:25.802000',5,'Joey Ramirez','https://lh5.googleusercontent.com/-e5H0_74RBqQ/AAAAAAAAAAI/AAAAAAAAAAA/GsNmG4HUxPc/c-rp-mo-br100/photo.jpg','6521947413723274945',8179),('AIe9_BHR7p0hPy1flx1br0TYdEUB4SQunuaEEy2R9z9x4US4mG6JEgQGBjobZNTVmluEFKceTNzF6p-Ctvxi5m9mZp9g4iEDktp-gvY-jyMPU5JZCHW7NIk','Very friendly and offer snacks','2020-01-15 01:49:08.487000','2020-01-15 01:49:08.487000',5,'JuWanna Smith','https://lh4.googleusercontent.com/-MHqXgFXiHVc/AAAAAAAAAAI/AAAAAAAAAAA/lHwqz_nQBIc/c-rp-mo-br100/photo.jpg','3272657195432704501',9815),('AIe9_BHR7p0hPy1flx1br0TYdEUB4xyxoLFfJdb446SWj_TtzikBt0M76ve5_-IE2nr3mCm1FOmEkHOcprcmByxc3SaOMxkK1lACmsO6R05QY88JJ3MEa0g','There was no wait at all they took us in right away. They took really good care of us and treated us very well. Thank you Sindy at the reception area made it really easy to sign in! Also thank you Gina and Kelly and Dr.Souman for all your help!','2020-01-11 16:57:16.595000','2020-01-11 16:57:16.595000',5,'rubi cabrera','https://lh4.googleusercontent.com/-sWNY4wEHSp8/AAAAAAAAAAI/AAAAAAAAAAA/dVC6hEouU3c/c-rp-mo-br100/photo.jpg','14567670160750071148',9472),('AIe9_BHR7p0hPy1flx1br0TYdEUB56GuTfsvV72SzcDfSL9PY1x_6LlM68Zd0M5NTL77NvGhO8qlC5CB36RPpljGvfBLfXDioPRuZ7kCx1DBcvtwPAureqk','Very professional and caring!!!!','2020-03-09 18:29:48.687000','2020-03-09 18:29:48.687000',5,'Barbara Martel','https://lh6.googleusercontent.com/-TopwylTFhew/AAAAAAAAAAI/AAAAAAAAAAA/TtxjS-QgtXE/c-rp-mo-br100/photo.jpg','8918455867446117794',21238),('AIe9_BHR7p0hPy1flx1br0TYdEUB5a_Y2w_A4A0-aLenw1dFEyMoiPXkHhP-3e4n1IANvHnqUDYJ91Y1bP3fRLMa0B1RZ0Q6qaUDA9pOqS48HzD15ON9W6U','Place is clean with friendly staff','2019-01-16 02:59:28.348000','2019-01-16 02:59:28.348000',4,'Lecia Vacciana','https://lh3.googleusercontent.com/-sa6kaxBeqwI/AAAAAAAAAAI/AAAAAAAAAAA/RTMfEOtlug8/c-rp-mo-br100/photo.jpg','8679688254631342173',8886),('AIe9_BHR7p0hPy1flx1br0TYdEUB5dqsSzdeiVGmQgTADV-4oocoVTiMQieoTOdab5cGt6idC_suf82-5u1n5sK7I62K-CyngUrnlX2QRucZ9RAtzlPGt2M','I really was not feeling well at all and the staff ensured I was as comfortable as possible!\nThank you Dr Vaagenes, Amy, larhonda, and Shareasa!','2020-02-08 22:18:46.602000','2020-02-08 22:18:46.602000',5,'Katie Lopez','https://lh3.googleusercontent.com/-jZwBU8riIXs/AAAAAAAAAAI/AAAAAAAAAAA/6QHqxGzb8_I/c-rp-mo-br100/photo.jpg','14567670160750071148',13547),('AIe9_BHR7p0hPy1flx1br0TYdEUB5eb2CtGPUaXoZxozZEXZDFoF4QbYVSuiHM_nLN9GEATsJywxAma-amPqAY8wYcEh9yNskJh8Zi1But99CsPVEn7jDW8','Is my second time here and I like the attention here everybody is nice and helpful Dr.Cavazos Mackenzie Delicia Blake, and Son le explained everything and they all make a great team','2020-02-21 19:31:35.789000','2020-02-21 19:31:35.789000',5,'Will Gray','https://lh3.googleusercontent.com/-1VLIAWeYkRQ/AAAAAAAAAAI/AAAAAAAAAAA/7e5ZngY7T44/c-rp-mo-br100/photo.jpg','8679688254631342173',14743),('AIe9_BHR7p0hPy1flx1br0TYdEUB5GZzr9F0smQzXRJ8sbkvoc0HnVEkbzg5EYyql184Qsl9DdT10BANtkD-2tvTQIqMZoIAMB-25oZJ03Re5kAsTyqE23E','They were way faster than the regular hospital and they were very nice I want to go there again','2020-02-29 17:15:56.520000','2020-02-29 17:15:56.520000',5,'Kendall Henry','https://lh5.googleusercontent.com/-XqJxkickdqw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmc35IOm7SLIZuHvQUeC8CVqV1f7A/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21193),('AIe9_BHR7p0hPy1flx1br0TYdEUB5ivXkoafQm1q76tdzC8b1-R1GgePRKQaX5zFIzNdzkgdqYw4gK3WZm5vdERoHGgl7qT3B_guL6LIIpgOGfvb51URUzI','Dr elsbecker is such an incredible doctor along with his incredible staff; Freddy, Linda, Shelli, Natasha, everyone provide such exceptional service and has a smile on their face and has ability to make you feel loved, welcomed and comfortable! The best service in town!','2019-01-23 23:38:06.564000','2019-01-23 23:38:06.564000',5,'Cammrynn Stith','https://lh5.googleusercontent.com/-Fu4EReLeZ0A/AAAAAAAAAAI/AAAAAAAAAAA/2WPuVigs6RM/c-rp-mo-br100/photo.jpg','16891069708558046635',4365),('AIe9_BHR7p0hPy1flx1br0TYdEUB5JLBSSB2P7BHE-ZTEqAqP646qiyYyTdQPryBA6b_Tg7pV-uEZKufjxnlHs7LCD3vR24q-8WKvOJyN-S1Z9WukiVBh8M','The Staff Was Very Friendly, And I Was In And Out. There Is No Long Wait At All . I Highly Recommend This Place To Anyone .','2016-08-10 13:28:30.678000','2016-08-10 13:28:30.678000',5,'brittani harmon','https://lh3.googleusercontent.com/-9qN5zVBMbCM/AAAAAAAAAAI/AAAAAAAAAAA/G-vanVYN7eY/c-rp-mo-br100/photo.jpg','14567670160750071148',1995),('AIe9_BHR7p0hPy1flx1br0TYdEUB5kj3UIrUQ_Q0WFKSr34M3KHnY8uzqvl0UJ6GP9iqtMvIBonY7NQ46UMn1r7KdX_UYZ4desBtCOjKb1BCk4hR_sPhphw','Great experience. Clean, fast, friendly and safe.','2016-05-12 15:21:56.630000','2016-05-12 15:21:56.630000',5,'Matt Gannon','https://lh4.googleusercontent.com/-T60WshbNIjA/AAAAAAAAAAI/AAAAAAAAAAA/pBKOoU-yucI/c-rp-mo-br100/photo.jpg','14567670160750071148',2037),('AIe9_BHR7p0hPy1flx1br0TYdEUB5Kj9QKgWNGdMMCt4Gl0h0mnkMNTsu8BORF3tQ0-Dyq_t4hkqOwm7AhxDmHPQPyCRJ_sk79TrS6cxEp9K5C7LXzf_1yI','Had a step throat and bad ear infection and pain was like 10/10 and they took care of it and staff was very friendly i would highly recommend.','2019-05-18 02:19:27.369000','2019-05-18 02:19:27.369000',5,'NAWAZ SAYANI','https://lh3.googleusercontent.com/-JKwx9sxaUns/AAAAAAAAAAI/AAAAAAAAAAA/q-vybhTvcFE/c-rp-mo-br100/photo.jpg','8918455867446117794',9141),('AIe9_BHR7p0hPy1flx1br0TYdEUB5RKLk0On3bRTu4xy1bUH4fSeDvB_HYCqjaIYRQIRIUWv6ALoKdMbs4be4AIrjDQOi25y9BAcRp6itLP6wnKEmxW37Uk','Dr Smith and his staff were very nice and professional. Alvean,Tricia and Natalie made me feel very comfortable. Thank you guy!','2019-08-08 19:05:57.131000','2019-08-08 19:05:57.131000',5,'Dameon Wesby','https://lh3.googleusercontent.com/-r7oQY0UNWhY/AAAAAAAAAAI/AAAAAAAAAAA/ffccdp0HQdg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUB5SGFy2weBNfYrzA97PzO4Dbi2PZ2RNjXRW27-xJQMCe7tqxTrVOusW_wiWwQk9sHL-XegfgfsV5fwXvSwk5r5r60e_k',NULL,'2019-01-09 04:08:24.806000','2019-01-09 04:08:24.806000',5,'Ricky Cummings','https://lh4.googleusercontent.com/-Iaoxyfhd-qE/AAAAAAAAAAI/AAAAAAAAAAA/TJw2TDRyz1s/c-rp-mo-br100/photo.jpg','14567670160750071148',1426),('AIe9_BHR7p0hPy1flx1br0TYdEUB5YNZcl4zEKOLk_jPkqW3Uiv7c1YgJvFZUggLvq-L7QL-bn7hZA4Sl6z9f2620mfK-TpEmiJClulAKq7o3yFLq2oAkZw','I had a great experience, everyone was so nice. The nurses Alvean and Marcus were amazing. Doctors Iheme was awesome as well.','2019-04-01 15:00:41.054000','2019-04-01 15:00:41.054000',5,'Surprise Toy Adventures','https://lh3.googleusercontent.com/-9JvhpZeDVuI/AAAAAAAAAAI/AAAAAAAAAAA/f7-VsD-OTDY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUB5zO90xrWt8KJhKTBjE3VR67ywQ6CzxmHZPRePbt4vgAvQv0he0duHASzNHvZwsKrRtYU6DqG00rDpz7iQfQC4AktRxQ',NULL,'2020-06-30 18:10:56.928000','2020-06-30 18:10:56.928000',5,'Catherine Garcia','https://lh5.googleusercontent.com/-LeSRzdz7jBc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclP-qKJbvxYfPgWGnRj8NcCDUgYpQ/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21429),('AIe9_BHR7p0hPy1flx1br0TYdEUB6cJKs22UcnJZhTBdzDi7JBbBUx1tdjXn163S8EoQfCf3zXp3aT8frRiacEUpAK5EqJlhTwfCz73EvPHPtc-V7r-SFf8','Great service & location, Patricia was excellent','2020-02-14 22:30:31.462000','2020-02-14 22:30:31.462000',5,'Terrick Hubbard','https://lh3.googleusercontent.com/-NdoII_9kDCE/AAAAAAAAAAI/AAAAAAAAAAA/8MVLR5_xKoE/c-rp-mo-br100/photo.jpg','16389487648212004696',10878),('AIe9_BHR7p0hPy1flx1br0TYdEUB6D64vA1V0pwIu0GJpexNubm_sds-2Cc1wJRAjY7I18OLI-ICzLxAt_95unUd5gtI5Shn2P8UoPePklO9nuvoi-ke5i0','Great emergency room ..great staff and services!!! The receptionist sindy was very helpful!!','2019-09-20 16:12:17.348000','2019-09-20 16:12:17.348000',5,'Robert Jones','https://lh6.googleusercontent.com/-78YTaw6-L14/AAAAAAAAAAI/AAAAAAAAAAA/wMjkD58i1-U/c-rp-mo-br100/photo.jpg','14567670160750071148',1231),('AIe9_BHR7p0hPy1flx1br0TYdEUB6djROfJtYqJDU9s0KSFMtIWyLBNaOnbLpfm1StSQBXruCL4lnIwde9VKGbJhyk_vr3T_ciguYQeDa9ka94V7VnRsX4c','Excellent service, I was helped by Nurse Calli and she was outstanding!!','2020-06-03 19:25:09.505000','2020-06-03 19:25:09.505000',5,'Aniyaa Carter','https://lh5.googleusercontent.com/-QYkJUMfMTZI/AAAAAAAAAAI/AAAAAAAAAAA/z3_PLTFfAAA/c-rp-mo-br100/photo.jpg','2694018788013845459',22124),('AIe9_BHR7p0hPy1flx1br0TYdEUB6fEHiibm4rfdIQgozSFtdTRZlUR38Pr_ltM-5Y5VLovCtffotmraUThRV6EyU7No0j6CfZkiNOzCtT2a6y6Zo1WC4N8','Great experience and very friendly people','2019-07-10 05:06:33.343000','2019-07-10 05:06:33.343000',5,'Rosibel Bolanos','https://lh5.googleusercontent.com/-2OE-vEH1_1c/AAAAAAAAAAI/AAAAAAAAAAA/B2Ty-ArR640/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUB6gTK9gZV2UgyDoWNWzPp2zhdaojYi_gpzYPkIPpBgw75BgeJhWWe2RZwxFL6VvtAdVxWVNnnbVJ4IiXj1ahKZm7AOyk',NULL,'2019-12-20 17:37:52.991000','2019-12-20 17:37:52.991000',5,'Jose Moreno','https://lh3.googleusercontent.com/-cuU651d3zH8/AAAAAAAAAAI/AAAAAAAAAAA/nn4Kahh2NW0/c-rp-mo-br100/photo.jpg','14904078213800803294',13653),('AIe9_BHR7p0hPy1flx1br0TYdEUB6kpm-RZfH23q4Ywa0rVsn30A5LU4xUUhBo7hj5qoqzZioDMr_pSxSGkdVWkMw5yHDm_nQYhfRaSxC6Q7PCyCTqzofqQ','My Signature Care Emergency visit was wonderful, even though I was not feeling well. The location was very easy to find. I was seen right away and my care was thorough. My care team was awesome. Thank you DR. TRAN, TRAN M.D., Nurse: Conrad,Jerry Clifford, Front Desk: Rojas,Jessica Rae Sanchez, and also the fellow (I forgot his name) who did the CT scans. At my follow-up appointment, my regular doctor was also impressed that they provided me with copies of all the tests results and medications prescribed.','2017-07-05 16:23:38.234000','2017-07-05 16:23:38.234000',5,'Marilyn Cassidy','https://lh5.googleusercontent.com/-vmwwZnMCBPY/AAAAAAAAAAI/AAAAAAAAAAA/t89MhvuTXFo/c-rp-mo-br100/photo.jpg','8918455867446117794',9382),('AIe9_BHR7p0hPy1flx1br0TYdEUB6QB3Y-miX1W2OmxckyKum6pW3ML4Z4BC700zAg5VMnBCO-OcyD6AUrMtUfYTTtXvoef9PELkrPUw3aGXQj5aWqNgEB8','Good with kids, fast treatment, excellent service. Chris and Linda were great.','2019-11-25 17:44:46.867000','2019-11-25 17:44:46.867000',5,'Kari Cozzens','https://lh4.googleusercontent.com/-Z5cPnbXxe3U/AAAAAAAAAAI/AAAAAAAAAAA/EdlSN1sWf9c/c-rp-mo-br100/photo.jpg','16891069708558046635',4139),('AIe9_BHR7p0hPy1flx1br0TYdEUB6s9S0VWCTR_4suJjyDCKuaLWSeMbyDHG9fDqlmiIwhmtAgmDCZGzTsUn-IqNYgmXsmrVIjDOLUIuizsO_vR52S5e4oo','The staff greeted us as soon as we walked in and were very attentive. They were quick and precise about getting our friend checked in. Rebecca V. was generous as we waited in the waiting room; she offered us drinks and snacks.','2020-01-18 08:00:29.010000','2020-01-18 08:00:29.010000',5,'Rudi Marie Martinez','https://lh6.googleusercontent.com/-o7OfHJlqrXA/AAAAAAAAAAI/AAAAAAAAAAA/xy1bNkhZ6U4/c-rp-mo-br100/photo.jpg','16590124370714063921',10063),('AIe9_BHR7p0hPy1flx1br0TYdEUB6xmpwSq5FTAtkwiHtzpmpdatco5ckLHILRpihzCXwgJto1MmrCFRd0pd9zg3krZR6kOzO7Z0s61Y6gEhehHB5UUYuns','Highly recommend this facility! The service is great and the staff treats you like a priority.','2017-04-21 02:40:40.773000','2017-04-21 02:40:40.773000',5,'Christie Cruz','https://lh5.googleusercontent.com/-2zhkHPPLuWs/AAAAAAAAAAI/AAAAAAAAAAA/pgjQePMFYng/c-rp-mo-br100/photo.jpg','14567670160750071148',1842),('AIe9_BHR7p0hPy1flx1br0TYdEUB7D3XxanywNaNTU42ZVRVJ3syUKmn81Ch6zC2UoSpMWXhjIpijQQqzvQwNOZjncDasyeCG9dmQ28XBqtBMb9cU_q89Sk','Special thank you to the nurses Michelle and Konya! And to Dr. Elsbecker. They were very polite and courteous. They answered all of my questions, & made sure that I was comfortable during my visit. Was out in 1.5 hrs!','2020-02-23 17:02:25.549000','2020-02-23 17:02:25.549000',5,'laquelle Spencer','https://lh5.googleusercontent.com/-QMNcNnnGgjM/AAAAAAAAAAI/AAAAAAAAAAA/kmHDIr20krk/c-rp-mo-br100/photo.jpg','2694018788013845459',14214),('AIe9_BHR7p0hPy1flx1br0TYdEUB7Df1tUqq4WkR9ReL5iE5x0VhfNeizEOpbBL8l_WMKEyKfzBHyWjChlT-8HYP3an2orC64KU71qcrkDGYLzcWZznUP-I','Staff was efficient and friendly. Knowledgeable and caring. Check in was quick we were seen, cared for and discharged within an hour! And as a bonus they have complimentary beverages which was great as it was a very hot day!','2019-09-03 15:31:56.282000','2019-09-03 15:31:56.282000',5,'Ericka Danforth','https://lh3.googleusercontent.com/-1AVh3oSSJmg/AAAAAAAAAAI/AAAAAAAAAAA/3cXhmDnB6vQ/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5562),('AIe9_BHR7p0hPy1flx1br0TYdEUB7E_-TwsI0rZhhiGaFOQKixe09E7zxZyrlpVWmkrj_RqSOhOT4h1isAU4QlBtesrDJa38zHdKDAlNYCW_Kn9XeBOq_Fo',NULL,'2020-06-25 04:05:32.443000','2020-06-25 04:05:32.443000',4,'Roberto Jaimes','https://lh5.googleusercontent.com/-FtpQIoJcH3c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmBXu7kFw7QwtsW3Wl5TzSq4QNUvg/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21275),('AIe9_BHR7p0hPy1flx1br0TYdEUB7fZLDUTdZ86MbR8SS8ev7hqzkCD_EWsPwbnLpBXirb3l6wnDzJlTQIJeXHSqE0TD_yHG8Pl3M_BrrSFPxl2uTmpIWGM',NULL,'2020-06-01 23:50:28.657000','2020-06-01 23:50:28.657000',5,'Devin Campos','https://lh6.googleusercontent.com/-PQK7eiT1Vy0/AAAAAAAAAAI/AAAAAAAAAAA/6WMVmR-dFLY/c-rp-mo-br100/photo.jpg','2077061009497551125',22870),('AIe9_BHR7p0hPy1flx1br0TYdEUB7gcfUEztYzS8pM_u47p0xDQXAjAN7RJdvn0DfrRjY-vXzMUGZ7K9JYzNd2i0TmR6Pqfw0yUduek6TzjOEoBE17wh-Xo','Ariel the receptionist was great. She was really polite and attentive. Dr. Nylund was very personable and was involved with all facets of the care. My nurse Sarra was really nice as well. She held friendly conversation actively listened to my issues','2020-02-04 03:43:08.386000','2020-02-04 03:43:08.386000',5,'Maurice Stewart','https://lh5.googleusercontent.com/-arMyxFXZHyU/AAAAAAAAAAI/AAAAAAAAAAA/KhMP_qhbKNc/c-rp-mo-br100/photo.jpg','12541597562633926366',22479),('AIe9_BHR7p0hPy1flx1br0TYdEUB7ldPWaG6ngoGeYAea--PK8oerVCpnionTD-2WdjYLtje1Z5fIUlXeRurrzlsI698YD4dgEjHImabejG7hIm-E7WJqyY','Great team! The team, Doctor Henderson, Nurse Sarah, Laura, Daniel, Tanishia was super kind and friendly. The facility was clean. I would recommend this place and team at the Copperfield location.','2019-10-24 00:14:14.819000','2019-10-24 00:14:14.819000',5,'Latoya Taylor','https://lh3.googleusercontent.com/-UH7wALBUF8I/AAAAAAAAAAI/AAAAAAAAAAA/xQ-ClJuQvLI/c-rp-mo-br100/photo.jpg','17898197009688164559',5484),('AIe9_BHR7p0hPy1flx1br0TYdEUB7pHFAjfZZm6IgUOJzPJ31War-_mcRGQ03NfNnSu5A1IM3zRZjWxv_zqO5WqXIZYUa75DXVqpsQYLDjYvs9I2Z9JxZSE','Good service best dr. Iheme n Alvear and tricia nice customer service i love it 😍','2019-10-03 15:23:44.430000','2019-10-03 15:23:44.430000',5,'Rey Santana','https://lh3.googleusercontent.com/-FWv48UkxdhA/AAAAAAAAAAI/AAAAAAAAAAA/MNLiZmtoNns/c-rp-mo-br100/photo.jpg','16389487648212004696',2860),('AIe9_BHR7p0hPy1flx1br0TYdEUB7tDP-13DkeV5MsYjCzF8opFZau24HKRluMLnEq-2qnUs_pKP9MxnxoNW9bPsKnWApBOTV5Fql--G1K4DNb9Kr4X_C4g','Excellent staff! Doctor Provided detailed information and was very attentive. The nurses were very professional and made sure my needs were taken care of. I recommend this location to anyone in need of urgent care.','2020-02-22 15:05:31.432000','2020-02-22 15:05:31.432000',5,'A. Phillips','https://lh6.googleusercontent.com/-l7FxcrZxsoo/AAAAAAAAAAI/AAAAAAAAAAA/BFh2XN5dmkA/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',11061),('AIe9_BHR7p0hPy1flx1br0TYdEUB7tU4pSRaLnPk8wQJ3TsIGpzKX5texhnxddSb76pQpiNZRDL65oluCzcKc-L8POCMAD0Z1LWYBzCcv4d6Lx3tJl57p7c','I went to the facility on yesterday morning with an extremely elevated blood pressure and massive headache. Let me first say the facility is SUPER CLEAN! My nurse, Tammy and Dr. O\'Malley and the rest of the team did an EXCEPTIONAL job while i was there. Everyone had superb bedside manners. My treatment was for several hours and they were EXCELLENT. While I was not feeling well at all, one just can\'t ignore the IMPECCABLE LEVEL OF CUSTOMER SERVICE I received. Thank you. Thank you. Thank you.','2019-10-27 11:12:47.780000','2019-10-27 11:12:47.780000',5,'Lorraine Leday','https://lh5.googleusercontent.com/-Edcp_yRqtyk/AAAAAAAAAAI/AAAAAAAAAAA/7rBaYGsWjfs/c-rp-mo-br100/photo.jpg','17898197009688164559',5474),('AIe9_BHR7p0hPy1flx1br0TYdEUB7WBq_rW8lDqnbUlbQXj520cOErI6B64NXoMqpb9QuCEr9J49cXZwICm6dMryVqUqjuw3D4HWQHxKN0g55l33OQRde-4',NULL,'2019-06-10 15:30:03.043000','2019-06-10 15:30:03.043000',5,'amy Johnson','https://lh6.googleusercontent.com/-YRVEuUiM0Mw/AAAAAAAAAAI/AAAAAAAAAAA/nm-eYzX1UQ0/c-rp-mo-br100/photo.jpg','6521947413723274945',8243),('AIe9_BHR7p0hPy1flx1br0TYdEUB7X3lHUCHicoc0TphxYsQP9bxdNcVXtTVYiHzzyD7zGgQf4TGsYxFlHaTVM69UGSqAIkSC_1o8H3meD7O3BFD1KzdQL8','I was very pleased with the service I received when I took my three year old daughter into the Baytown location with another croup flare up. They took her back immediately and worked hard to treat her. They were friendly and hospitable. The facilities are nice and well maintained. They also offered complimentary snacks for us as we had to stay for eight hours. ','2014-10-18 18:15:51.223000','2014-10-18 18:15:51.223000',5,'Music with Ms. Erynn','https://lh5.googleusercontent.com/-4DrgKEzRdHQ/AAAAAAAAAAI/AAAAAAAAAAA/LIXyXIQFIrM/c-rp-mo-br100/photo.jpg','8679688254631342173',8939),('AIe9_BHR7p0hPy1flx1br0TYdEUB8-kOjmUJ6gtEeu40ZlnLMzZC6spb4caiEu43fSbX3JJviL1iBJWyBT9oPmNMgwxcVNkNwIEhIggwMW94UhDoYwl_Rgw','Great experience. Dr. Rose really listened to me when I explained my symptoms. No wait and was in and out in 90 mins. ','2017-07-21 13:38:42.975000','2017-07-21 13:38:42.975000',5,'Michelle Rowe','https://lh5.googleusercontent.com/-xZ6_UTaz_WM/AAAAAAAAAAI/AAAAAAAAAAA/pBqG5mBOq1Q/c-rp-mo-br100/photo.jpg','16891069708558046635',4545),('AIe9_BHR7p0hPy1flx1br0TYdEUB81C2ZP2_QIvKkyfP15Zl2tbtbnDhtWTppxKrE6rn27EddQZvBqMVCvTsRnt7ZlPIwkPpYRFeLF68nuAoxox9r-_pAO8','Just amazing. I was very lucky to see Dr. Sylvester. He helped me immensely, he was extremely patient with me, and had a wonderful bedside manner. He went over and above what I would have expected from a doctor. Thank you!','2018-02-10 22:06:17.550000','2018-02-10 22:06:17.550000',5,'Jennifer Fagen','https://lh5.googleusercontent.com/-X7SYCcK3LpQ/AAAAAAAAAAI/AAAAAAAAAAA/XjFI4doIHTc/c-rp-mo-br100/photo.jpg','14567670160750071148',1657),('AIe9_BHR7p0hPy1flx1br0TYdEUB82lWLkknL39qZRozQDaD26J_kTF1_1y5T6lY4XoIEUejwSYPM1_kt9qbXHFDhVClDv_BiqT1zDBj6i4chjeyahNckIk','Nurses and Doctors were great! Every step was explain to me. The wait was minimal. I was very impressed.','2020-07-20 12:38:18.905000','2020-07-20 12:38:18.905000',5,'willie mae mcgee','https://lh3.googleusercontent.com/-SYURifkw1l8/AAAAAAAAAAI/AAAAAAAAAAA/7ETxDyFaHlI/c-rp-mo-br100/photo.jpg','14748677429039074158',21682),('AIe9_BHR7p0hPy1flx1br0TYdEUB8AvGPPUgVqdxZ9nGLB0Wk2x0JnxO2F9uvXZ8HDEVQvFpbLp4yITFCjpfjuZgyMBeGI7FU6lZBY0ZlOye8gg01hVi0S0','Dr. O’Malley was very caring and knowledgeable. Ekaterini, Stephanie and Jessica were all warming and i felt very welcomed and taken care of. Patricia made the check in and check out process quick and smooth sailing.','2019-10-08 03:39:16.579000','2019-10-08 03:39:16.579000',5,'Eddie McKelvey III','https://lh6.googleusercontent.com/-5tid3j5M-T8/AAAAAAAAAAI/AAAAAAAAAAA/xwcKXTp2wNQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2846),('AIe9_BHR7p0hPy1flx1br0TYdEUB8caP7YE68uUa6meG5mtozeDyBfS45K59MqsYFStBzgJq2fOfFTpD5BBepW4mmrcp_cccs1oysgpHr7o8jmYwt64oPIs','Great experience! Excellent staff and everything thing was done very professionally!','2017-06-21 20:36:26.876000','2017-06-21 20:36:26.876000',5,'Kyle Horstman','https://lh6.googleusercontent.com/-9Wzcq0BxLvQ/AAAAAAAAAAI/AAAAAAAAAAA/CHgiZwCg6eY/c-rp-mo-br100/photo.jpg','16590124370714063921',3973),('AIe9_BHR7p0hPy1flx1br0TYdEUB8CfchkH3t1pSQcMpKMt075peSPl0pjnUlBG3yqJjkeMtPCkwRgWOJpS_9DV9J18nM9h53Y2aeFay_zYVSq2vT1-6joo','Dr Braun got me feeling dandy in no time! :)','2016-05-29 11:54:06.651000','2016-05-29 11:54:06.651000',5,'Victoria Aguillon','https://lh6.googleusercontent.com/-52jqIn4eXDA/AAAAAAAAAAI/AAAAAAAAAAA/Jx9sC5OE5XQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7994),('AIe9_BHR7p0hPy1flx1br0TYdEUB8CgBh6sNSErEu_zUj2oHF53Er7TQAo8ux_0AV4IIzt4LuFdFAB9Eaormh-LSbu5DdS7uoXymTUCfM70HgnConSJgisw','Me ams my girlfriend was here on 10/4 because of the paon in her back. They was nice fast and kind and very helpful. It was very clean I will bring any of my family members here. What a great job guy\'s. Dr.Dendy, Alvean, Grace,Ayesha, Jordan thank you cypress location💖❤💖❤💖','2019-10-04 19:05:09.714000','2019-10-04 19:05:09.714000',5,'Krystal Billups','https://lh4.googleusercontent.com/-4dufMB6R7mI/AAAAAAAAAAI/AAAAAAAAAAA/Dnzc19V_Yr4/c-rp-mo-br100/photo.jpg','16389487648212004696',2855),('AIe9_BHR7p0hPy1flx1br0TYdEUB8CiKo_BU9anp-gAGnVTjz_hPEo9DM40aK56QZT4WD6rSu99meVTUtMqd0-vPyXcFVbYPyeRrzVXg5y8WhyqvHqDEve4','The best! quick easy & fast! :)','2016-05-29 11:51:06.537000','2016-05-29 11:51:06.537000',5,'Victoria Aguillon','https://lh6.googleusercontent.com/-52jqIn4eXDA/AAAAAAAAAAI/AAAAAAAAAAA/Jx9sC5OE5XQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5248),('AIe9_BHR7p0hPy1flx1br0TYdEUB8gadBZMucjuFbNza8CFM7lpe33R9yiVr44pJqgsCfphdsnd7AljBf3nFa8x01ePJ3pdObdzQwSJyz4BfUUVWBUdKEqQ','Brought my husband here and a soon as you walk in they attended my husband real fast he was in and ouy thanks to Dr.cavasos Mackenzie Delicia Blake and Son Le thank you all for your good service','2020-02-21 19:37:17.696000','2020-02-21 19:37:17.696000',5,'Lili Olivares','https://lh4.googleusercontent.com/-A7HPgVHYUew/AAAAAAAAAAI/AAAAAAAAAAA/ajxJdFpEKCk/c-rp-mo-br100/photo.jpg','8679688254631342173',14742),('AIe9_BHR7p0hPy1flx1br0TYdEUB8mMRwryjtU45hPOxl6gLIuldhaFsAbqQCP56dqYlN3G1tRhUqhbap-_e7mgRteKNWbyMwZMnqYndFyVqZxnfMCz8khs','Care was quick, professional and efficient. I will definitely return if I ever need to. The staff was friendly. The most valuable part of this service is its proximity to my home.','2016-03-22 15:08:31.246000','2016-03-22 15:08:31.246000',5,'Amanda Cambron','https://lh5.googleusercontent.com/-fhM3uKCWUoc/AAAAAAAAAAI/AAAAAAAAAAA/Hq9VQCJKtyU/c-rp-mo-br100/photo.jpg','14567670160750071148',2042),('AIe9_BHR7p0hPy1flx1br0TYdEUB8NP3ZzkoJBmb74ktoIM9hUWRL4L7et3Ai2oTKzKs-M7hSTilzl2Z0619sTgFOV3Ao3Qm0vr53aEN4T-iWvumKz60DIk','Had a great experience. Was in and out in less than 30 minutes!!! The entire staff were friendly and very informative','2019-10-31 20:33:44.543000','2019-10-31 20:33:44.543000',5,'erin richey','https://lh6.googleusercontent.com/-tnl4QTgHcgk/AAAAAAAAAAI/AAAAAAAAAAA/AO_WwJRbWGw/c-rp-mo-br100/photo.jpg','8679688254631342173',8757),('AIe9_BHR7p0hPy1flx1br0TYdEUB8Qic_iS_iBGoXTfUZmYVcnpFHZGFW0I-kqYPtArC0ZealIu8YS-6cc-d4IkVErmBhHHkYuLAXDqzVIqdx8IJahPXkCs','I was checked in and brought back to a room within 30 seconds. Very friendly and every one care about my well being like I was one of their family members.','2020-07-22 03:39:39.348000','2020-07-22 03:39:39.348000',5,'Vince Leon','https://lh3.googleusercontent.com/a-/AOh14GjchEX1iz9cJ6RQtODe-euVgvaQJyW4TQ5FL-q-ew=c0x00000000-cc-rp','13486358490203335051',21849),('AIe9_BHR7p0hPy1flx1br0TYdEUB8vLp4pk1VUQsPY5FuuGPfOdbM-mhOKRBGCDn_ioCSZ_5cC7OK1grCqlISoGq8S40Ye0rryzjR3RQi1NEoOMbNEci_C4','I appreciate the way the staff assisted me with care and in a timely manner.','2020-02-04 14:24:41.879000','2020-02-04 14:24:41.879000',4,'Jd Rosevelt','https://lh5.googleusercontent.com/-XMS4fAP-RiI/AAAAAAAAAAI/AAAAAAAAAAA/ttTVYwbcSuk/c-rp-mo-br100/photo.jpg','8918455867446117794',14850),('AIe9_BHR7p0hPy1flx1br0TYdEUB943zeYFlD6ZJMEX60qdTcpGoEdRYF_SHYrgLzxVaxuWxOlZVQ_UwPDwHwIo7WvklO76Iz_y-YStLRKAF2TtVr8XeM-Y','We brought my son, with a knee injury, the doctors, nurses, radiologists and the front staff was very friendly, helpful and quick. \nThanks to;\nNancy Rey\nMarcus and Randi (radiology)\nTheresa (RN)\nDr. Miller','2019-07-25 01:20:41.389000','2019-07-25 01:20:41.389000',5,'Karina Ramos','https://lh6.googleusercontent.com/-kxBnJNsGtKE/AAAAAAAAAAI/AAAAAAAAAAA/mZ2wSYnRFPA/c-rp-mo-br100/photo.jpg','6521947413723274945',8182),('AIe9_BHR7p0hPy1flx1br0TYdEUB97FyxBOVsy20cTSdJ5huPK5V8UORvK_fuoJeakJbMg4uQ78f6Rkfbc_wqRZM7z2X6t6nuSyQ_1fbmX29fJJ77WJbiEA',NULL,'2019-11-03 18:23:36.821000','2019-11-03 18:23:36.821000',5,'Wiley Gregg','https://lh5.googleusercontent.com/-A1z9joque1k/AAAAAAAAAAI/AAAAAAAAAAA/c8yIPe9Cl7A/c-rp-mo-br100/photo.jpg','6521947413723274945',8101),('AIe9_BHR7p0hPy1flx1br0TYdEUB9CXJgizpBt8sM_G9qOSFC72kcaP8nQ0pAg1QjMQjCi9hLp9xuw6c61hQyjpgZ2eUFsb4dTIDJ1lnRr9mvYLIR5xq6X8','Service and staff were amazing! Thanks Angel and Tanishia.','2020-03-18 01:15:06.241000','2020-03-18 01:15:06.241000',5,'paul flores','https://lh5.googleusercontent.com/-Y0OQdQUCt5U/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclz3zVy7qvbs2xufzHuao6tpj9hGQ/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21087),('AIe9_BHR7p0hPy1flx1br0TYdEUB9GFXapQyGEbHrplgT3fCVPhHyVAKquYFp2ghrGmDnuojxhUVdj4m3FFgrUYgWHAg42aaQ0kueJRtHmaoAlhAewu52tk','I really enjoyed the experience here. It was fast and efficient. I want to give special thanks to Dr. Faig, nurse Jennifer,er tech Elaine and most of all Tanishia. You all are the best. Thanks for rocking out with me.','2019-12-20 08:13:59.448000','2019-12-20 08:13:59.448000',5,'Damien Duren','https://lh6.googleusercontent.com/-lsQwTP2La3c/AAAAAAAAAAI/AAAAAAAAAAA/DHFXK9lDA_w/c-rp-mo-br100/photo.jpg','17898197009688164559',5345),('AIe9_BHR7p0hPy1flx1br0TYdEUB9Jz9o3dcqefavG6u3d5q7OL_tionSnuXkIEiPGXzM5TXeLzmKwrRZYcf0q-oRn4b63YA9zXDr18Gd4O7xAf_qPSWoHE','Probably the best experience I ever had in doctor\'s office. Great staff. And they really care about you and your health. Great staff\n\nNurse: Brittany, Lisa V, Rhonda. Great job\nRadiology Tech: Allison\nER Tech: Randy, Kramer\nDoctor: DR. Vaagenes\n\nAll did a great job and take great care of everything \nThank you','2019-12-23 01:48:43.546000','2019-12-23 01:48:43.546000',5,'Kevin Jones','https://lh3.googleusercontent.com/-_1ylHchUnqk/AAAAAAAAAAI/AAAAAAAAAAA/xRk2x6o44qE/c-rp-mo-br100/photo.jpg','13486358490203335051',667),('AIe9_BHR7p0hPy1flx1br0TYdEUB9x85B6c9ztjGO8WbiM_PBxeoVgHfWun3BtUyovB11VccV-oh2wjzy_QKgnsgI5DXsM6-vgS8yU_nhVFsstqbiIHxaFo',NULL,'2019-02-16 01:12:48.647000','2019-02-16 01:12:48.647000',5,'Steven Velez','https://lh3.googleusercontent.com/-zv5Pa75Tkz4/AAAAAAAAAAI/AAAAAAAAAAA/YRxYvQe41ys/c-rp-mo-br100/photo.jpg','6521947413723274945',8306),('AIe9_BHR7p0hPy1flx1br0TYdEUBabCFH56eJ5cL497X9h1wG5Gj5kxFKUqETDGKLo_6uuncPAD9vcgBKlHaOJsBUEtDw5NYLUD0al7qO2DN2Pmdln3tM2Y','The team did an amazing job yesterday. I could see 1 person after another come in for COVID testing while is was there. I can only imagine how drained they employees, Nurses and Dr. ‘s were. However, they were still kind, professional and genuinely cared. Thank you for all you do! Keep up the good work.','2020-07-24 02:24:30.932000','2020-07-24 02:24:30.932000',5,'Shawn Sanseverino','https://lh4.googleusercontent.com/-iAYOQYnpsBs/AAAAAAAAAAI/AAAAAAAAAAA/7-K6fB5v4mI/c-rp-mo-br100/photo.jpg','14748677429039074158',22572),('AIe9_BHR7p0hPy1flx1br0TYdEUBahLwwnlROzMXP1-3vZz9YEDtbnkM1wj7AJXC8NKE0U2IytPeC05aW6pxmGFfjFHsFBZLCpHotJB9IsfK10FHJ5gYcZc','Friendly staff, clean environment with state of the are equipment. Would recommend for anyone needing quick helpful service.','2017-04-10 23:11:17.123000','2017-04-10 23:11:17.123000',5,'Emoney P','https://lh4.googleusercontent.com/-BqBqpAvLkdQ/AAAAAAAAAAI/AAAAAAAAAAA/5SprTo7z6zM/c-rp-mo-br100/photo.jpg','14567670160750071148',1851),('AIe9_BHR7p0hPy1flx1br0TYdEUBaIxyB9NarGMUylQ-bkEoTCIJdXcZNctPIyXnYtOVwXMHnnzMTwMBCZ8rc2XrUAiJWU0KryZxlQocMH18WvoSIMTK5r0','Absolutely terrible. Here for seventeen hours and they put us on a wait list. You dont to this to sick people. Can you pick no stars?','2020-06-30 04:55:04.342000','2020-06-30 04:55:04.342000',1,'Michael Brown','https://lh5.googleusercontent.com/-jfQcSgdsHe0/AAAAAAAAAAI/AAAAAAAAAAA/hhxruPedjYA/c-rp-mo-br100/photo.jpg','3511292162159714121',21477),('AIe9_BHR7p0hPy1flx1br0TYdEUBajVLyIz3KurDvGDixM1NfmXxI0t_vRgXgcjUa0EUIFVLemhxteHwOu_DmR6I-M6xexOIBLGKGBS-s3gMGeY5TTbpQOc','Had a great experience. Friendly staff, prompt service. Highly recommended ','2016-07-31 14:53:18.435000','2016-07-31 14:53:18.435000',5,'Taylor Blake','https://lh5.googleusercontent.com/-ZQSLaXQ1GoI/AAAAAAAAAAI/AAAAAAAAAAA/blPyIJuoTHk/c-rp-mo-br100/photo.jpg','14567670160750071148',2001),('AIe9_BHR7p0hPy1flx1br0TYdEUBalqDXnCZFFkthJIs0EX4AbgDcHnoy0xxBYcYkUkMVC39qQsAV6qVdDERMD5Y51qyIOoj_BGKz7GNh5-0GrYkzxP6Wr4','Dr.\'s and nurses were very helpful. Got me in and out quickly. Highly recommended.','2020-08-07 20:28:30.041000','2020-08-07 20:28:30.041000',5,'Jason De La Rosa','https://lh4.googleusercontent.com/-wYeukw2ozRM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn-CZLJXWDPqo0cLkPRwlYqOoaeTQ/c0x00000000-cc-rp/photo.jpg','14748677429039074158',22511),('AIe9_BHR7p0hPy1flx1br0TYdEUBAPpFiSFGyH2LA4FIuObVFr5ebiIy5WeU3eJKs7CQ6l7d61dt2nPReORPfySQF1qxFrCX1VjIop_8UFpT3BBJvOuIAa8','Quick service - I made the appointment and was called to come in on time and had no wait time once in the room. The staff was courteous, thorough, and very helpful. I felt safe and taken care of. Strongly recommend for an easy and well cared for visit!','2020-07-30 23:46:09.568000','2020-07-30 23:46:09.568000',5,'Kelsey Reid','https://lh5.googleusercontent.com/-O3cSkSiEeEw/AAAAAAAAAAI/AAAAAAAAAAA/07qc2W5pBv8/c-rp-mo-br100/photo.jpg','14748677429039074158',21898),('AIe9_BHR7p0hPy1flx1br0TYdEUBaS5fddDm6V_ysA5Y0vhDBJH696QFA1m4QSsp4t6yVN9aUclykHemvl6ZjEeWBkM8_ii2w3310lZpWwr6aHj8UwswoiQ','Brought our daughter in, running a 104 fever. They got us right in and took very good care of our baby. This is not our first time here and we have never had anything less than the best care. Highly recommend.','2019-10-25 01:11:33.148000','2019-10-25 01:11:33.148000',5,'Willie Ambriz','https://lh4.googleusercontent.com/-a1KOhxLFOsQ/AAAAAAAAAAI/AAAAAAAAAAA/ATooA7PiaTM/c-rp-mo-br100/photo.jpg','13486358490203335051',769),('AIe9_BHR7p0hPy1flx1br0TYdEUBAt647Z8urYGs7nYAlyl_ncfxgrC7ceaMFxELGDzOiISC2QE4qY2G36xcl7V-kMSTfKuuy4n55h33FVUE5NDiminE3og','Alvean,tricia,Dr.faroogui best people here very friendly and quickly','2019-11-01 22:07:12.853000','2019-11-01 22:07:12.853000',5,'Alex Treviño','https://lh4.googleusercontent.com/-V-0Jl2yFO44/AAAAAAAAAAI/AAAAAAAAAAA/LgR5O2AF4nQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2738),('AIe9_BHR7p0hPy1flx1br0TYdEUBAThv9NFag-uKDFr4XkDZ-IglIXQ_nLx4ij6Aq9wM-ibgubeFRJJXPRlWYRfOLH1nt6_ftDS8zHFjAi4voF7g5ZG8E0U','The staff along with Dr. Jason were very friendly and professional. Last night was my first time at this facility, and if I ever need emergency care again I would choose them hands down! No wait, thorough explanation of injury, and caring staff!','2017-07-05 21:56:52.464000','2017-07-05 21:56:52.464000',5,'Sheila Cook','https://lh6.googleusercontent.com/-h5JPh9S0i6Q/AAAAAAAAAAI/AAAAAAAAAAA/kuVdmMB5CQ0/c-rp-mo-br100/photo.jpg','3272657195432704501',7108),('AIe9_BHR7p0hPy1flx1br0TYdEUBAud1zheRVMoWBqnydvwdGfhrsoFAlwt_ZnS1Yrm3SDhWV5uHwTH06j_hf-mnLZTMhKSQu-axEH-_1VWxSKeN-wh1SXA','Dr. Hehman was really nice and understanding of my concerns. Nichole, Alyssa and Staci were all really nice as well. I’d most definitely would recommend my friends and family to this location. 👍🏽👍🏽','2019-06-06 22:16:22.628000','2019-06-06 22:16:22.628000',5,'Jaymi P','https://lh4.googleusercontent.com/-E4ZASSJL4uI/AAAAAAAAAAI/AAAAAAAAAAA/CeQz9rrGj_k/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9133),('AIe9_BHR7p0hPy1flx1br0TYdEUBauvAP5QY_uhGP2hdG9DxSG2_GVv-MOYW4gCpwlz4OKh-LPKtlj0zbMHZojw9iaiMRphsA_EueJSI7org3bOMkiQyqW0','This was my second time visiting your facility--superb! I returned for the speedy COVID antibody testing and the amazing customer service. Dr. Lingan and Chelsey rocked it! And yes, the blankets are very warm. Thank you!','2020-06-10 19:13:39.386000','2020-06-10 19:13:39.386000',5,'Ricky Aguilar','https://lh5.googleusercontent.com/-BPh0bbXFGVo/AAAAAAAAAAI/AAAAAAAAAAA/Yq08W1a8dXU/c-rp-mo-br100/photo.jpg','16891069708558046635',22688),('AIe9_BHR7p0hPy1flx1br0TYdEUBAUYePS8lpxlDlb9UVQ6g-sq6fgPfrXynMkZpdC0ORzMvR6YeeTnbk0as0QP_gNpKKisre2CHBnt4DFaIfxKrdGB0Wcw','The staff is very friendly and you are in and out within reason. Lisa H. Is help full at the front desk. Jaime and Savannah are the two smiling faces in the back.','2019-07-29 13:27:42.693000','2019-07-29 13:27:42.693000',5,'daniel chagolla','https://lh5.googleusercontent.com/-YaPry4I5A9g/AAAAAAAAAAI/AAAAAAAAAAA/x7Qy-0mRtVs/c-rp-mo-br100/photo.jpg','13486358490203335051',878),('AIe9_BHR7p0hPy1flx1br0TYdEUBavS3-NgHAYEszXNyQOKlXeLER_0moV2GHupKxcog6FBgn5byLk9jtXPwrRzlmdNRX4cRo_799wp5ygmhKHDNGMEQ-CM','They took me in fast and the employees were super nice. No rush at all they are super genuine! Thank you too shania,kim jose, allison, Daniel. And dr Huerta!','2020-01-04 07:17:06.654000','2020-01-04 07:17:06.654000',5,'Hini, Jiyong','https://lh6.googleusercontent.com/-aH6Be2rRm8s/AAAAAAAAAAI/AAAAAAAAAAA/sIXfH-LoufU/c-rp-mo-br100/photo.jpg','13486358490203335051',651),('AIe9_BHR7p0hPy1flx1br0TYdEUBawXEVEYjnG_y8doI-43ao0Eoo6T-Sc5oy12u-yEV4LIsAks_8Q1zXBiplKmn3PqUdpzUUE4-EbAnqCCom4-SedumQz8','DR. GRINBLATAS and his team is really great. I asked all my questions and Dr. patiently answered them all. They are very quick. Also, Less paperwork, less wait time.','2019-06-24 03:14:51.744000','2019-06-24 03:14:51.744000',5,'Kübra Akbay','https://lh5.googleusercontent.com/-jT6TfSp34NI/AAAAAAAAAAI/AAAAAAAAAAA/yuZv4wIUguI/c-rp-mo-br100/photo.jpg','17394740196501090048',4653),('AIe9_BHR7p0hPy1flx1br0TYdEUBaXcETUTu75EAPOj-YM-bgHrjeagAJmMNXYBxZ8FUHbrwd5stRGov0tzUicmUJoB12iMZftFK3s3DaXfFMVTFPOl2t4c','I came in for pain and i was greeted fast and frirndly by Hida .. The treatment was fast and awesome','2017-01-04 03:42:37.446000','2017-01-04 03:42:37.446000',5,'Jupitersqueen_','https://lh6.googleusercontent.com/-M0LrS38CdW8/AAAAAAAAAAI/AAAAAAAAAAA/uWLZ-7fXr8Y/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5137),('AIe9_BHR7p0hPy1flx1br0TYdEUBay8QDllUM69AUkonqVgHEKfkivtkno1OcHCP7-az3lI_h2UzdGuF5tBAw-b568k5qoiLTB7orIxbs10Dwn6KGeOloo8','Had to come here for extremely high blood pressure and was extremely nervous but the staff was wonderful. Thanks to RN Sarah, Dr. Pham and the wonderful Tech Elaine for helping me feel better. The staff was very patient and caring. Even the registration with Brisada was very simple.','2019-11-09 05:28:39.617000','2019-11-09 05:28:39.617000',5,'K2 Montgomery','https://lh6.googleusercontent.com/-M0vCl3iBnMs/AAAAAAAAAAI/AAAAAAAAAAA/Yovq8nUgsfM/c-rp-mo-br100/photo.jpg','17898197009688164559',5452),('AIe9_BHR7p0hPy1flx1br0TYdEUBb6OXlc7Iue5S1uG-C7VqYAaujmNziwZwqFBhvJ-qBotpdQ56ue2wJ6wGKXWksJpsdOddJkM8GsVEZJ_XHbm8ZrDI1jo','Thought the time I was here, Shanna was a huge help! She was kind and very helpful. These circumstances weren’t that great but she did a great job at making sure everything was taken care of.','2019-12-16 02:30:22.058000','2019-12-16 02:30:22.058000',5,'Mercedez Mendez','https://lh3.googleusercontent.com/-4xZtQJ4ASVs/AAAAAAAAAAI/AAAAAAAAAAA/MqB1vdDwdwk/c-rp-mo-br100/photo.jpg','6521947413723274945',8054),('AIe9_BHR7p0hPy1flx1br0TYdEUBBeiOw65rrSl5h5oeUa9YKogxvrsg6SEf8byXkikSmqckHCIzRNWx2iuqzPhYn0pZG_pGsysA4nEt1E1MeFQbr8AyzHk','FAST, friendly, and amazing care received here!! I will NEVER return to a regular ER at a hospital\never again!! We are blessed to have this place here in our small town!','2019-08-13 13:09:40.435000','2019-08-13 13:09:40.435000',5,'Michael Yoder','https://lh5.googleusercontent.com/-XJIBz_XsCRo/AAAAAAAAAAI/AAAAAAAAAAA/NxghTlgm8Ak/c-rp-mo-br100/photo.jpg','3272657195432704501',6916),('AIe9_BHR7p0hPy1flx1br0TYdEUBbfgjU0uxJzcyqopRJt4npN6zVZlyzqcSo3lCSHopv0KM2rZmvC1dEeZ3VNS0Ahaq02AoajLbJzncqGGhd5K_dTtRB_I','I always a have a good experience when I come here. The lady in registration, Maya J, was really professional. My nurse Catherine was really sweet and helpful, she made me feel at home. Scott, the ER tech is amazing, he gave me helpful pointers about my diabetes and even shared a recipe that I could try at home. Lastly, Dr. Spangler is a really good doctor, he was really efficient, made me feel comfortable, and even made a few jokes with my fiancé. I would definitely recommend this hospital to anyone.','2020-01-17 00:16:31.526000','2020-01-17 00:16:31.526000',5,'Chris & Christina','https://lh5.googleusercontent.com/-wQhW4kufffo/AAAAAAAAAAI/AAAAAAAAAAA/daCk0h2zxp8/c-rp-mo-br100/photo.jpg','12541597562633926366',10029),('AIe9_BHR7p0hPy1flx1br0TYdEUBbIoITRnlBIUeOVYCZ27GCoW2hzycxdPtbw7nDuZkfh2CZJW7OXYo1IkfDeTLPfBtJRNo02LvS0yrhZScgY_QYf-3NhI','I was very skeptical about coming here but it was close to home. Went in and the registrar Genesis was very nice and quick. Check in process was so fast! Dr. Jaber, nurse Stephanie, E.R tech John and staff was very professional,nice and attentive to my needs! Thank you all! The place is nice and clean as well! Glad to know i have a great ER close by! Highly recommended!','2019-12-09 17:40:07.535000','2019-12-09 17:40:07.535000',5,'Nisha Davis','https://lh4.googleusercontent.com/-ZX9tW_jVMSA/AAAAAAAAAAI/AAAAAAAAAAA/SmRx14QqMFA/c-rp-mo-br100/photo.jpg','12541597562633926366',357),('AIe9_BHR7p0hPy1flx1br0TYdEUBBKkaBHQQAGYcSV09621XMHa_Gn94LL7VSs2uI4Tpa35lZNvu8Cx9n6ybnC1q3r0n7agku7-AOJjJaAYAqE-Bfps7pcY','DR.Golla was great and super friendly .Made me not stress out about my whole experience.','2017-11-18 18:59:35.352000','2017-11-18 18:59:35.352000',5,'Jay Tay','https://lh6.googleusercontent.com/-V_W-t0-D6W0/AAAAAAAAAAI/AAAAAAAAAAA/0nk658qB6Og/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4931),('AIe9_BHR7p0hPy1flx1br0TYdEUBBl_Wgxbk0MMIZt5nEeWeVgeDV0a5YKii_dWoQWECTMVXsiB4oTTr3xB64rJRr4EUp_cPpAfFhlB_JjsBJ3JzoqT-Xkg','I needed to get 20+ employees Covid-19 tested last minute and had zero luck anywhere else. Thanks to Theresa at the Odessa location, all of my employees were taken care of the next day...that\'s what I call premium customer service. I highly recommend the Odessa location.','2020-07-16 16:50:54.012000','2020-07-16 16:50:54.012000',5,'Josh Lejeune','https://lh3.googleusercontent.com/-0zTfi9BYF5E/AAAAAAAAAAI/AAAAAAAAAAA/65riPYFEbBU/c-rp-mo-br100/photo.jpg','6521947413723274945',22895),('AIe9_BHR7p0hPy1flx1br0TYdEUBbNwTwt4L1CKtP4a9DDnDFOFInrenWJkTjLRmqHGEaRY6CJJO39MDX84-JyTshCUdEg2DNB89D5MASJYcAGU_h7tinUs',NULL,'2020-02-29 00:14:44.861000','2020-02-29 00:14:44.861000',5,'Kc Chambers','https://lh5.googleusercontent.com/-Uiwt_Qhj_Sw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclWp1vXlgYOaTKpehgvecKAmKFGhw/c0x00000000-cc-rp/photo.jpg','3272657195432704501',14311),('AIe9_BHR7p0hPy1flx1br0TYdEUBBPkyXPhtImekNKvSwDVTsMYWiOJOvHcmo44C0RHR2M4arNcr_N5oR_QKJCpmmAJiLdQSRomWh7Yad1YedCQ0wjJiVLQ','fastest emergency room experience ever. straight to the back almost immediately and very clean and professional. staff was kind and informative. would return to this facility again if i had anything going on because of how efficient and fast help was when i arrived. thank you, patricia, alvean, brian, and traevis!','2020-02-27 16:21:21.976000','2020-02-27 16:21:21.976000',5,'Kate Cox','https://lh3.googleusercontent.com/-l0RGNCs9694/AAAAAAAAAAI/AAAAAAAAAAA/zyef0BFSinc/c-rp-mo-br100/photo.jpg','16389487648212004696',13758),('AIe9_BHR7p0hPy1flx1br0TYdEUBbQRGvriwUKexbBKHquii5h3QI_Chsf5d_edvunv2dpMJ1U_7uYFId5DXimzb9q1LQa7frQT7hfIdVG2bgWaaX7YttXc','excellent care, no wait. immediate treatment. caring & friendly staff! my official go to.. i will never visit hospital er if I can help it.','2017-04-21 15:34:00.525000','2017-04-21 15:34:00.525000',5,'Vanessa M','https://lh3.googleusercontent.com/-OO5qNGHpODE/AAAAAAAAAAI/AAAAAAAAAAA/clfi3X0K_fE/c-rp-mo-br100/photo.jpg','14567670160750071148',1841),('AIe9_BHR7p0hPy1flx1br0TYdEUBByjsICaKmakviKotMQgmuWAukUHrT28f6vK-QGnfb2JM_o6v8FelywOAbRZ4b5sbeZGn7BZtF4Odh7UnzSps90WUzok','I had a great experience at the Stafford location was very fast and I was in and out very clean and they made sure to sanitize the seats great experience overall my nurse was Marcia she was awesome I know if I have an emergency I can come back to this location and be taken care of.','2020-07-23 03:26:16.741000','2020-07-23 03:26:16.741000',5,'Marcus Vredenburg','https://lh6.googleusercontent.com/-S_XdMThlldc/AAAAAAAAAAI/AAAAAAAAAAA/msVM1sVH9mw/c-rp-mo-br100/photo.jpg','8918455867446117794',22299),('AIe9_BHR7p0hPy1flx1br0TYdEUBc6V-e55iqfSqdg63BLC7x-Vqd91sf-TJt0gfsJTKTMsRklk7_7rbVJ7G1g67gigNbA9mqDv0b1RHm14IvHwj2GgEZDY','The nurse Brenda and the doctor Dr.Garcia are very nice and helpful. They did a good job. Highly recommended.','2018-09-26 01:48:52.549000','2018-09-26 01:48:52.549000',5,'Ramon Galang','https://lh3.googleusercontent.com/-067GMkPMBIs/AAAAAAAAAAI/AAAAAAAAAAA/TJXH7B2P6wM/c-rp-mo-ba2-br100/photo.jpg','8918455867446117794',9232),('AIe9_BHR7p0hPy1flx1br0TYdEUBc9BCZxihCXRqvDUHBh9GC6D2ZlZN4WvheJSVaYapPbfqAbp6ESMmz5ogEnsQZb9V6wyvA-yEVewh7KO51KGj8p7vmBI','Fast, helpful. Took care of my infant\'s head trauma. Friendly. Thank you.','2016-08-12 00:49:24.450000','2016-08-12 00:49:24.450000',5,'SnD Moore','https://lh3.googleusercontent.com/-xPxQBX9TZc0/AAAAAAAAAAI/AAAAAAAAAAA/VfyGk_zsUpg/c-rp-mo-br100/photo.jpg','14567670160750071148',1993),('AIe9_BHR7p0hPy1flx1br0TYdEUBC9noJIkNvEhsR8GjSUIg1M9SIUmUuNf5PsVHN4zKsnbETvQNZ-eA1wQ4QNRj5Hd3v0P9U-15wXTNvMP1spyfrQjLx08','Came here because my mom had a really bad allergy reaction and Tanisha was super friendly and helpful! Translated for my mom and was so friendly! Constantly checked up on us! \nDr. Zhen was so patient and explained everything to my mom! She was so kind and sweet and amazing. She listened to my mom and was attentive. It’s really appreciated when a Dr. is patient and listens to the patient! We noticed that and appreciated it. \nEveryone overall was so amazing and friendly!! Thank you guys for everything. Very quick and easy!','2020-01-20 03:13:11.968000','2020-01-20 03:13:11.968000',5,'Brigitte Velez','https://lh3.googleusercontent.com/-J1WtZKZjy38/AAAAAAAAAAI/AAAAAAAAAAA/IlU0MW0hClk/c-rp-mo-br100/photo.jpg','17898197009688164559',9987),('AIe9_BHR7p0hPy1flx1br0TYdEUBcAN_vLAZJmqb9u5DsILkjzvDq9ElJ1tzWeHdccidIQmMb78AlJTWJO0nsW7n_oOEtpAFeBK3GcWLilGSHNYw159E8QM','I usually don\'t leave reviews but this place deserves one. I had to take my son after he had a bike accident and everyone from the front desk to the nursing staff and doctor was great. They were very caring and paid great attention to my son. I would definitely recommend this urgent care clinic to my family and friends!','2017-11-02 20:48:11.999000','2017-11-02 20:48:11.999000',5,'John Todaro','https://lh6.googleusercontent.com/-pjVIIEK0fqg/AAAAAAAAAAI/AAAAAAAAAAA/hSd0n_5qCx0/c-rp-mo-br100/photo.jpg','13486358490203335051',1129),('AIe9_BHR7p0hPy1flx1br0TYdEUBcbm71-T2auJAH8h6CktNi4NCuri71iIj_mEzgCV21QGjNYQGJb0-jKeibD2ZPKErkakEUqgJOmGvlOcUrFv5YM0vzaM','Great service, quick and efficient...','2020-02-26 08:49:37.550000','2020-02-26 08:49:37.550000',5,'Dariana harris','https://lh4.googleusercontent.com/-cS0Pw_0nqrU/AAAAAAAAAAI/AAAAAAAAAAA/mFT5o9DtTr8/c-rp-mo-br100/photo.jpg','6521947413723274945',14543),('AIe9_BHR7p0hPy1flx1br0TYdEUBcBuyvj4F59oW_eK_-XIuRVcVmFVYoE60nDi-s7NTvPSyKqZrAIEJR0Dg5sG83-swAVX0GRNzQ3gNuvCYY2CjeSmwwco','Had a great experience! Dr was fantastic!','2020-07-19 17:28:56.966000','2020-07-19 17:28:56.966000',5,'Misty Shelton','https://lh6.googleusercontent.com/-HdTnzxAaVoQ/AAAAAAAAAAI/AAAAAAAAAAA/KaPaIyZGhT4/c-rp-mo-br100/photo.jpg','14748677429039074158',21707),('AIe9_BHR7p0hPy1flx1br0TYdEUBCcw5TyLA4THARqLP7lYIoaZCRKcbdsVBLF9VOZuOhHLgghtT0iiyCV7FlNrLYQbXqdQhGcPlOZcxULccI-0uEpOdRpc','Very good very caring would definitely recommend ! Thanks Kimberly Jacob JR!','2017-03-11 22:58:48.915000','2017-03-11 22:58:48.915000',5,'Justin Young','https://lh5.googleusercontent.com/-nW759K9-WYo/AAAAAAAAAAI/AAAAAAAAAAA/XWVYxN4wfh0/c-rp-mo-br100/photo.jpg','16590124370714063921',4033),('AIe9_BHR7p0hPy1flx1br0TYdEUBCEMh26_jSDaJiSd8sw9GBGGkgE4hLZIGY1W_Cquwxl0LrsjfgihLD8P4tWBznAxaPpOVLiYjMAFhgOwxT-8CJD3o5ds',NULL,'2016-05-02 12:59:47.113000','2016-05-02 12:59:47.113000',5,'Nonya Business','https://lh6.googleusercontent.com/-5UfUWo5-MiE/AAAAAAAAAAI/AAAAAAAAAAA/n-fB9HeH8HI/c-rp-mo-br100/photo.jpg','3511292162159714121',8012),('AIe9_BHR7p0hPy1flx1br0TYdEUBCi6gGwabFCuMq-1spi_Lp6IvNGju1pkW_XsJt8kJOz-M1sOXmVOmqQXusH7IaeU7h_pssK1yPNEAz25fACceUeS5R70','Natalie and Dr. Vakey were super encouraging to my friend getting stitches. We had a great time and learned a lot about the process!','2018-10-29 02:45:15.056000','2018-10-29 02:45:15.056000',5,'Whitney King','https://lh5.googleusercontent.com/-SEfbqMZ46r8/AAAAAAAAAAI/AAAAAAAAAAA/t3wU4UMrnpc/c-rp-mo-br100/photo.jpg','16590124370714063921',3683),('AIe9_BHR7p0hPy1flx1br0TYdEUBCIF-_jJX0ShLEukzWBhHu-SWZRgCzHACtGiR_PDy-Q2Y6ysgaLxvgiTxCAngYIpvD8bOdyjzA-d32cnXTZBHscjcuTw','Manny, Magali and the Dr.Plante were very friendly and helpful...','2019-06-21 19:16:59.956000','2019-06-21 19:16:59.956000',5,'Stephanie Ray','https://lh5.googleusercontent.com/-OBpJVaGe7GA/AAAAAAAAAAI/AAAAAAAAAAA/y_ZIu_W_Q7A/c-rp-mo-br100/photo.jpg','6521947413723274945',8222),('AIe9_BHR7p0hPy1flx1br0TYdEUBCKeEjB7SdprAkZ0C8ceV8_A8UlgMijuwEYMVfXrUiVI9c2E-rResUtj_KJYMFOWIzgvWV1DFvqtqVqaRoDlx5gWXvWs',NULL,'2020-08-03 16:48:53.148000','2020-08-03 16:48:53.148000',5,'Kim Karacz','https://lh3.googleusercontent.com/-ISix5n29dLw/AAAAAAAAAAI/AAAAAAAAAAA/jwRzZOxDutQ/c-rp-mo-br100/photo.jpg','2077061009497551125',22981),('AIe9_BHR7p0hPy1flx1br0TYdEUBCKkBQLJdIFKTDp5ov2o1ol8t61ltC2UeybczEh9RDePZ5EkYCRubTW05y3JraAi5Dz0FXQf5zU-Yk9NdneJrcwN_NTw','Receptionists , Itza and Dyveu’z, were friendly! As well as Brad and JR, plus Dr. Harjar were fast and efficient!!','2019-08-01 17:49:40.348000','2019-08-01 17:49:40.348000',5,'Emily Frausto','https://lh3.googleusercontent.com/-bVNQ_JD89ss/AAAAAAAAAAI/AAAAAAAAAAA/JKNHw9ne1E0/c-rp-mo-br100/photo.jpg','16590124370714063921',3269),('AIe9_BHR7p0hPy1flx1br0TYdEUBCOG3g-x9djEmf7o-P9O8bWBUG3Ckea8DYjFSP1FyQ0JQM-vNZatiZcx_BTQD_8-gLw_pzHkU8Zz1zmvCbycwMdBGc5s','Came to the Montrose location due to the flu and I was very well taken care of. Ms.Jocelyn who was the front Desk Rep was very helpful with check in and very outgoing and fun. The nurses there were also great. Highly recommended.','2018-02-03 14:15:06.116000','2018-02-03 14:15:06.116000',5,'Erick Green','https://lh6.googleusercontent.com/-6qxC4zZ0K1M/AAAAAAAAAAI/AAAAAAAAAAA/PfwC0_IDP4k/c-rp-mo-br100/photo.jpg','3511292162159714121',7728),('AIe9_BHR7p0hPy1flx1br0TYdEUBCoz4yP0mqd55GUIcEgre9V1vWkOYSksjT9l--DB0jcctbNdgsdqhnI0iRdE_2uCGfhsLuGwEjwaas-KuR7HZQMd4QTo',NULL,'2019-10-11 20:39:04.703000','2019-10-11 20:39:04.703000',5,'Toya Brooks','https://lh5.googleusercontent.com/-xn49j397M50/AAAAAAAAAAI/AAAAAAAAAAA/0GB5Yo8C3nk/c-rp-mo-br100/photo.jpg','13486358490203335051',784),('AIe9_BHR7p0hPy1flx1br0TYdEUBCQgiNbztxHgKo8UsrMKJ55vOLHyLmIlgiB9pDINpek6D16-sjQiJ1SU18ZFpAdokFsQbZOVOoyinR8eqfW5AsHrzK8Q','Kendra at the front desk is so sweet and helped me so much during check in!','2019-11-23 02:52:57.634000','2019-11-23 02:52:57.634000',5,'Camille Moller','https://lh6.googleusercontent.com/-LCEkbv_Zkyg/AAAAAAAAAAI/AAAAAAAAAAA/UhhYkSQLbTM/c-rp-mo-br100/photo.jpg','16590124370714063921',3084),('AIe9_BHR7p0hPy1flx1br0TYdEUBCwppfcL3sjXvOml4iZjMW088QjhLiiGENwk3HxSVZ4QWbnNTrz-7u3CNIRkcLQ2IAkAxppwRuOuECjhazjErzw-VmsA','I\'ve had three great experiences at SignatureCare. Jennifer got us checked in quickly. John, Erica and Valerie were very professional and went above and beyond to make sure we were comfortable.','2019-01-04 00:51:34.359000','2019-01-04 00:51:34.359000',5,'Lanelle Arner Polak','https://lh6.googleusercontent.com/-NRepAt5UKuY/AAAAAAAAAAI/AAAAAAAAAAA/9i34Ln_qEj4/c-rp-mo-br100/photo.jpg','8626688543755174284',8612),('AIe9_BHR7p0hPy1flx1br0TYdEUBCxaGXX9ApIceQwxGpwkEMnCDWx9D5AY2yovEcyUepiyPHFMb5XCYdJqK_hdIHWEK_-WikDdEhdcoLwEdrIo1rjXhZQo',NULL,'2020-07-24 18:25:20.492000','2020-07-24 18:25:20.492000',5,'Jean Hughes','https://lh6.googleusercontent.com/-5f4PIB1pnVs/AAAAAAAAAAI/AAAAAAAAAAA/ff7vDxQ_cyU/c-rp-mo-br100/photo.jpg','14748677429039074158',22567),('AIe9_BHR7p0hPy1flx1br0TYdEUBCXqthzYXjEmmx5S1Ch-qk-iPJWwC4lFOZH6n0XfHhnw5BnZ45skqZ7-Xo0FzNqEMEABaGIejRAlogRkABQRC_aORyRg',NULL,'2019-03-20 06:50:11.027000','2019-03-19 20:49:41.532000',5,'Negin Reihani','https://lh3.googleusercontent.com/--hJBk2zD-qM/AAAAAAAAAAI/AAAAAAAAAAA/Sfs7a6qwMIs/c-rp-mo-br100/photo.jpg','8918455867446117794',9153),('AIe9_BHR7p0hPy1flx1br0TYdEUBczE-9P7OGQ9BwVYk6yGB6G1FUky1EBvuJYlpdu_I410vfIRv17aRPmGh_aSbDsk_CDF1fEjwimMMP8Z36WQAiQClNcM','I received a greeting when I entered the ER. Melissa was very nice and professional. Dr. Appiah, Kristina, and Laura were all very helpful, patient, and attentive. This was my second visit and I very good experiences. I would recommend this ER to others. Jennifer James.','2019-09-20 16:16:52.943000','2019-09-20 16:16:52.943000',5,'Jennifer James','https://lh3.googleusercontent.com/-usWDw5f0WZA/AAAAAAAAAAI/AAAAAAAAAAA/xeG3tDL4uBc/c-rp-mo-br100/photo.jpg','12541597562633926366',416),('AIe9_BHR7p0hPy1flx1br0TYdEUBczzFEnuRGaNGEwmFJiV_wOGxBCMwu3f7X0MdlA0jVgeb1_twpzpBcJYApwJSbdOVpflZ00Zako2-6Kkj_4-1SIXxuk8','We came to Houston for vacay and had to use your emergency services. From beginning to end Patricia, Alvean, Olivia and Dr. O’Malley treated us like family.\n\nThanks!','2019-12-01 23:18:24.291000','2019-12-01 23:18:24.291000',5,'Tairi Rosa','https://lh4.googleusercontent.com/--vV81w-Yy8s/AAAAAAAAAAI/AAAAAAAAAAA/loJpfcjEjRM/c-rp-mo-br100/photo.jpg','16389487648212004696',2590),('AIe9_BHR7p0hPy1flx1br0TYdEUBD414qPbJpazopJ8gL5uHbA0mqFj1avcZEL6dPHEP-jxuRufclDz8wVlYwFDPndPkvFEzkjFwchIM9BmKoe6O7RSeqp8','staff is very friendly and welcoming. the facility is very clean.','2020-02-22 23:06:59.689000','2020-02-22 23:06:59.689000',5,'hollie green','https://lh5.googleusercontent.com/-7qykbCULv4Y/AAAAAAAAAAI/AAAAAAAAAAA/P-Q3YY2sLvE/c-rp-mo-br100/photo.jpg','13486358490203335051',13411),('AIe9_BHR7p0hPy1flx1br0TYdEUBd6717QZvutYV18qoinnwL0hDkWLjFuMJjjpGsAQOBeW02Quv0gJcKXrh-3k0vspixq7Mqt-DNoavVZKs9aRFcnNcHsE',NULL,'2020-02-23 05:18:57.525000','2020-02-23 05:18:57.525000',5,'Madison Carter','https://lh3.googleusercontent.com/-4UQa124l7i0/AAAAAAAAAAI/AAAAAAAAAAA/163hfo2MiIQ/c-rp-mo-br100/photo.jpg','17898197009688164559',14136),('AIe9_BHR7p0hPy1flx1br0TYdEUBdBYKoRRdCZSpcVWRAvEUx0zjARAfJO5FSPjmDU1bcd5blX4mKZ46EszuLHgwy8ST5Dk1LJNcIPtgF9zCi-TY2vjf_Qg','Second time coming here and let me just say, never have I ever felt so welcome in to a emergency center. Came in with intense abdominal pain which had me a bit nervous but with the smiles and welcoming from Edward, all my nerves started to go away. Then I met Dr Rose, who really shows she’s here to help by asking enough questions to understand how severe the pain is and makes sure that her patients go home feeling a lot calmer and feeling a lot better. I also had the pleasure to meet nurse Linda and Shelli, who were very caring and fun to talk to (best way to distract the pain.)\nSo seriously guys, this is the place to come when feeling pain, they 100% are here for you and your health.','2019-04-29 23:27:38.380000','2019-04-29 23:27:38.380000',5,'Vicky Ramirez','https://lh5.googleusercontent.com/-S0F5d6ejDq4/AAAAAAAAAAI/AAAAAAAAAAA/ksCtuwEzm9g/c-rp-mo-br100/photo.jpg','16891069708558046635',4294),('AIe9_BHR7p0hPy1flx1br0TYdEUBdd3WO3qZ1eA-nF4X1eBP5L8O8dMZEqdPTkMO9UYiNi67oJ7Km-5cQsMN_LaCJcmAnfmWmgSJypD5k8NQD5WA6sVaJg0','Alvean A and Patricia C were awesome. Not having to wait was wonderful!','2020-01-02 20:22:32.570000','2020-01-02 20:22:32.570000',5,'Fallon Smith','https://lh4.googleusercontent.com/-pgtruWiABfc/AAAAAAAAAAI/AAAAAAAAAAA/-P6sKM980q0/c-rp-mo-br100/photo.jpg','16389487648212004696',2490),('AIe9_BHR7p0hPy1flx1br0TYdEUBDdeoj-LnbjtXiv3B2lCvELyyw41E44JY716ohFIEXKdRxOxSAjZlFet6GoUiEGH8OYyHEgwXgwOkI2jXy_SnPcF4qPM','The doctor and nurse were very helpful during the visit. They took their time to really address what was going on with my daughter and I was very satisfied with how extremely nice everyone was. tanishia at the front desk was very informative explaining the insurance co pay and deductible information for us, and doctor Do was very attentive to my daughter. The nurse Susan was also super quick yet careful with my daughter which i appreciated.','2019-12-18 04:05:39.046000','2019-12-18 04:05:39.046000',5,'eduardo torres','https://lh3.googleusercontent.com/-nqP8X4e83A0/AAAAAAAAAAI/AAAAAAAAAAA/W9nT5gxmbuc/c-rp-mo-br100/photo.jpg','17898197009688164559',5353),('AIe9_BHR7p0hPy1flx1br0TYdEUBdfKOaC9cpkZt3sPo4L7vv3uEcbMEY1NKcWTxEG_rkeXb_cwtzWaSjYYIEW8V6eZyrKTY2OPoYPTEHjYEp0EabrCakuk','I had a wonderful experience. I was immediately greeted by Tatiana at the front desk and I didn’t wait very long to be seen. The staff was very attentive. Nicole and Brandon made sure I was comfortable in spite of my alarming situation. In addition Dr. Esrevez was able to answer and address all of my concerns. In my opinion this facility comes highly recommended.','2020-01-12 05:20:47.262000','2020-01-12 05:20:47.262000',5,'Ashley yzaguirre','https://lh3.googleusercontent.com/-fu2_B5n8FPQ/AAAAAAAAAAI/AAAAAAAAAAA/rRkA22og4ts/c-rp-mo-br100/photo.jpg','14567670160750071148',9469),('AIe9_BHR7p0hPy1flx1br0TYdEUBdMiJrjmkSqbG4PSylxep_91awhmi_1Ol-EfziU9yYti-1Ongbzd5H2vg6dqzoMm-8tHcLZc6RS02IqjhvZ0wIu08BN8','I had a great time here everyone was nice and respectful. Dr. Nilang was respectful and makes you feel comfortable.','2020-08-02 20:52:22.031000','2020-08-02 20:52:22.031000',5,'Nat Baeza','https://lh3.googleusercontent.com/-HjfFhn-E-p8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckfrnW56ProZjJEppNMj3PkkGbzTQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22187),('AIe9_BHR7p0hPy1flx1br0TYdEUBDwvGZguJTM5ePvKGceyrzRoR6_XDNZBKTN-CZI7UWkpoD0bVGDHK5C3CiA30kpxT_lf8MAgNfzGdw0ty2crg1BSbEOg','Extremely helpful and attentive. I was taken care of by Dr. Kimball with the help from his staff, Rayven, Gabriel, Natalie and Kathleen. Everyone made sure I was comfortable and were super attentive while making sure I got all the care and medicine I needed to make me feel better. Really appreciated everything they did for me.','2018-11-27 07:48:39.463000','2018-11-27 07:48:39.463000',5,'Hayden Wood','https://lh3.googleusercontent.com/-2-6mRpS4MlI/AAAAAAAAAAI/AAAAAAAAAAA/X9vL1FhtyYg/c-rp-mo-br100/photo.jpg','16590124370714063921',3636),('AIe9_BHR7p0hPy1flx1br0TYdEUBdzdemt-3TWvqfkeLtp8uRQ7sOOjIRgkJemXG9-fssGYbddQZ8YfAAQGylvs7Ad39LB5Sz08NTZeQ64JR4tTTt81v-aA','Both Alvean and Patricia were very nice and provided a wonderful experience. I think coming to this location is a much better choice than going to a major hospital because they will see you much quicker and can still provide the same exceptional care the larger hospitals can.','2020-02-13 20:46:51.563000','2020-02-13 20:46:51.563000',5,'A G','https://lh5.googleusercontent.com/-HzmdVmBHBkI/AAAAAAAAAAI/AAAAAAAAAAA/FhThUdg9WMw/c-rp-mo-br100/photo.jpg','16389487648212004696',10882),('AIe9_BHR7p0hPy1flx1br0TYdEUBe0F-ctFuy-LMObiBaNqtBYqVZA9nF_ag5X47duX49CzxrqKEjnrJgT1j2jCy5cAOlpfGW4a5BGru5dujod8vGM1L7vE','Jocelyn was so friendly! Great care facility.','2018-08-29 17:38:23.992000','2018-08-29 17:38:23.992000',5,'HBTLJ Recruitment','https://lh6.googleusercontent.com/-PEnoMI8Jqc0/AAAAAAAAAAI/AAAAAAAAAAA/7p2-gE4lWSg/c-rp-mo-br100/photo.jpg','14567670160750071148',1544),('AIe9_BHR7p0hPy1flx1br0TYdEUBe2EfdX4ISjJd1qsEUBJM4tLmKZBf2X0U5yxd8o1OAgUg5IKoCrH1zfDXG-vt7dCIaTyhlnMaSJyEKIBaE_Ea7Dy0M60','Staff are incredibly friendly and the facilities are pristine and comfortable. Came in for some emergency tests and they helped provide some much needed peace of mind every step of the way. Would absolutely recommend if you need emergency care. Very accessible location at Montrose and Westheimer.','2019-01-17 19:13:45.397000','2019-01-17 19:13:45.397000',5,'Samantha D','https://lh6.googleusercontent.com/-VzHs7TpMr-0/AAAAAAAAAAI/AAAAAAAAAAA/itpLcjLZJlY/c-rp-mo-br100/photo.jpg','3511292162159714121',7467),('AIe9_BHR7p0hPy1flx1br0TYdEUBe2oqxynHmx-QQqUK5JEfT9qCNYwosy7omeaTAtl5dXFMmLhqoJVWDWChxw00dzcKNgQAvJZ9vPXJli0OjiU0Fhtf9tQ','Excellent service, and very welcoming.','2019-12-24 01:47:11.234000','2019-12-24 01:47:11.234000',5,'Gianella Mendoza','https://lh6.googleusercontent.com/-4LH_qSzZvHw/AAAAAAAAAAI/AAAAAAAAAAA/1q203p6DtqM/c-rp-mo-br100/photo.jpg','8679688254631342173',8679),('AIe9_BHR7p0hPy1flx1br0TYdEUBe8_DOfCITwPaOajzvbfUSdo6YNS54rh7z6yUi8RvJtHtIOFRTRyCSIeRtuZ8w0AzwlH-_jEv6Jat3ynkEt1vy7yPOZY','I had a strep throat and low grade fever and went to the Signature Care Emergency Center (T C Jester) location on today, and was very pleased with the receptionist, to the nurses, to the doctor. And feeling better since I been home. I was able to get in and out within a hour. Keep up the good work team/staff.','2018-03-16 22:49:58.392000','2018-03-16 22:49:58.392000',5,'stephanie chetlin','https://lh5.googleusercontent.com/-PoNhOAOouxE/AAAAAAAAAAI/AAAAAAAAAAA/PrF2HFXb340/c-rp-mo-br100/photo.jpg','14567670160750071148',1646),('AIe9_BHR7p0hPy1flx1br0TYdEUBe8umgLJEAG09-5sz_GLj-Pm8idXQJvoLRsth9gjoJi7GJGBP-_6wdwjvQtbmIdHRFNWeLGOi3H_svNqGPGAf9jo6F78','My son was not feeling well and we realized he was very dehydrated. I drove him there at 12:30am and the quickly starting taking care of him. He was given IV for liquids to hydrate body. The bedside manner of everyone there was great and I felt so confident he was going to get better. He did. Dr Sylvestor, nurse Rommel, Adolfo, and Jonathon were wonderful. I would definitely reccomend Memorial City Signature Care Emergency Center.','2019-03-09 01:20:44.647000','2019-03-09 01:20:44.647000',5,'Jennifer Denny','https://lh3.googleusercontent.com/-G2XYM7JvY6o/AAAAAAAAAAI/AAAAAAAAAAA/sVf7TJ98b5U/c-rp-mo-br100/photo.jpg','14904078213800803294',2160),('AIe9_BHR7p0hPy1flx1br0TYdEUBE9v_ZHtJL3RUORK3AoBA8AUqleCzVCu0DRIcLnRrUXVnJoS3FojcW2Xh597fMAjDuIqRkoI-t3uOFrY0GDurQp7AK-Y',NULL,'2018-03-14 21:22:07.532000','2018-03-14 21:22:07.532000',5,'Tihiti Johnson','https://lh4.googleusercontent.com/-JNcP2BkiyTU/AAAAAAAAAAI/AAAAAAAAAAA/5wXA7BazJJY/c-rp-mo-br100/photo.jpg','8918455867446117794',9279),('AIe9_BHR7p0hPy1flx1br0TYdEUBEb5diB6eK3oatFtr2CxD7Rn96BbCBnw1-iIgQ083qxF6MAneVq3AWtOBHQ0hK2zSrBvKpXxz8IkXIvKj7gi2u3GicB8','Ive been here twice so far and its my go-to for urgent care. They\'re quick to take you in and see whats going wrong. All of the staff ive interacted with have been very nice too. They do all the testing you\'d expect from a \"real ER\" just much fast and much more comfortably.','2017-07-22 23:51:45.875000','2017-07-22 23:51:45.875000',5,'Adam Lowell','https://lh3.googleusercontent.com/-RUJWEzs3duk/AAAAAAAAAAI/AAAAAAAAAAA/UKk0JKNDKD8/c-rp-mo-br100/photo.jpg','14567670160750071148',1788),('AIe9_BHR7p0hPy1flx1br0TYdEUBEcspArK4bSjUthWkQxi7djwwmOX-Tr6HIyE_sLsb6yj-llo-5NMQu5ZByJYAO0O265pfZOz5RZUVK70XOfHWw0m4Ji8','Dr.Eisbecker was knowledgeable about my issues.','2020-02-27 18:54:18.717000','2020-02-27 18:54:18.717000',5,'Skyler Willis','https://lh6.googleusercontent.com/-ExLElbUbrc0/AAAAAAAAAAI/AAAAAAAAAAA/NqmKUQ7holU/c-rp-mo-br100/photo.jpg','6521947413723274945',14537),('AIe9_BHR7p0hPy1flx1br0TYdEUBEevzDQBRJu-6XUh9MwMtwsNA7zlQT0tJEw-LBZTDYRJCy6D6TtYjQKUNngMHLUBnllI6foFFErZ9o8aNalWePJust-E','The staff and doctors where so amazing and very attentive!!','2019-10-01 02:00:00.145000','2019-10-01 02:00:00.145000',5,'Cyndy Santos','https://lh4.googleusercontent.com/-ocuRttW1Ygw/AAAAAAAAAAI/AAAAAAAAAAA/kU9dYEMvSJw/c-rp-mo-br100/photo.jpg','17898197009688164559',5529),('AIe9_BHR7p0hPy1flx1br0TYdEUBefQ9svl9SXM0CGB4OpDy9bSBOLu6SeXGUAXL5xw6FeuK3Z2wtFRQMOi-Td4RQLwE4wHf3jnFLx2tJ9h_QhJLtS9Ccgw','The staff was amazing! All were very caring and took good care of my son that had a sprained ankle. Will definitely recommend to family and friends!','2018-02-19 15:32:26.667000','2018-02-19 15:32:26.667000',5,'Juana Olivo','https://lh3.googleusercontent.com/-qMvOY_T8rCw/AAAAAAAAAAI/AAAAAAAAAAA/ICYB9UPDM0w/c-rp-mo-br100/photo.jpg','14904078213800803294',2280),('AIe9_BHR7p0hPy1flx1br0TYdEUBehqk8bTmHfLHSul-maLQzHIv3BEzIXrWZJ08H9Jr3X71G1D8VOSpbOmkl1SRBAmEcB7NIQZXz08TH0fkHoQR4HkC8Ws','Great experience, the staff was very nice, clean environment. We are definitely coming back if we have an emergency issue again, which I hope not any time soon. Nurse offers us water and my 5 year was also happy because he got apple juice and stickers (he was not even the patient). Thank you to the doctor\'s and front desk staff (Aaron)','2016-07-11 15:17:22.665000','2016-07-11 15:17:22.665000',5,'Paola Benitez','https://lh4.googleusercontent.com/-gs3m7QuPFOs/AAAAAAAAAAI/AAAAAAAAAAA/10IOF-Z7178/c-rp-mo-br100/photo.jpg','17394740196501090048',5225),('AIe9_BHR7p0hPy1flx1br0TYdEUBEIeY3HwqZcZ92_BCyMSaU9NTV7_YWDyNqz4avxeWxN6IOMVgItSuJ7Ls6lyclY12DUxS3eEP8VbuE9NOnDvcHxb49qg','Dr. Boester was extremely helpful and friendly. It put my mind at ease to know that I was under the care of qualified professionals.','2018-11-18 03:19:52.864000','2018-11-18 03:19:52.864000',5,'ofaas','https://lh6.googleusercontent.com/-8a1omh4xEuI/AAAAAAAAAAI/AAAAAAAAAAA/dqXEG83B7cQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7556),('AIe9_BHR7p0hPy1flx1br0TYdEUBeJnedpPdHdZBiNJbS5MENIRvhZuYap0DAu42hQ-aL0TDDX7gqZnvLnLz9DLxI5uslgQ6pgBEmroCkIXQFOlqFh5aaKc','Very nice facility.','2017-05-08 23:20:00.511000','2017-05-08 23:20:00.511000',5,'Rita Franklin','https://lh4.googleusercontent.com/-btx4fRN1wQA/AAAAAAAAAAI/AAAAAAAAAAA/RCwNTEExsk4/c-rp-mo-br100/photo.jpg','14567670160750071148',1828),('AIe9_BHR7p0hPy1flx1br0TYdEUBeJYvh3Zv-583sNsldD8USw5UHJNlSX7wM8nbsyWCVlUF9zfrlodUqOjyF7x811vvSq-RwNPAfOEZ5ohJxCvqAmgyWHo',NULL,'2020-07-13 10:43:03.053000','2020-07-13 10:43:03.053000',5,'Lizzy Sanchez','https://lh6.googleusercontent.com/-BlXSgE8Pzlo/AAAAAAAAAAI/AAAAAAAAAAA/tYtcWBFA-K8/c-rp-mo-br100/photo.jpg','8918455867446117794',22925),('AIe9_BHR7p0hPy1flx1br0TYdEUBEloG4UeYt1VqNrrftpD31Y81qpxPwHpQHaLdd20nicSL1lH4n7tzMbDvx2DjyHPJWJ_hmMw6zZGR2OmBOCv6za5hInY','They are amazing people. They made sure we got everything we needed from care to question. They went above & beyond with us. Thanks for everything.','2020-01-25 22:11:11.921000','2020-01-25 22:11:11.921000',5,'Junior Galindo','https://lh5.googleusercontent.com/-ty8NDtlijps/AAAAAAAAAAI/AAAAAAAAAAA/tk0cloGJc2o/c-rp-mo-br100/photo.jpg','13486358490203335051',13455),('AIe9_BHR7p0hPy1flx1br0TYdEUBeLpk_T7cOyZulywT3nbMYP9co1A8Hx_3BR-MwJxwwePa4WpjUuwuqDXUOrnNUFsZw76rbU9Pv65DYOGjfe5jT3yJIV4','Dr.Harjai, AlveanA,TriciaB and Jesus Are All Awesome They Were Very Attentive And Help Me. Thank You❤️❤️','2019-04-11 16:13:17.208000','2019-04-11 16:13:17.208000',5,'Keisha Lee','https://lh6.googleusercontent.com/-ybawOI3zHxo/AAAAAAAAAAI/AAAAAAAAAAA/Ow5jy2iFFuI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBENJG0jsfDSZoqg2S54NA1FLcj6bErrkMbZGbqlC0JCjh9YDUcnZafkdf-UH-JfgchEoNjPa_jq9aMFE8h4PNcg4LlnQ','Evening, First time coming here. the atmosphere very pleasant and warming. I had the pleasure of meeting this awesome team today. Dr.Edwards , Jocelyn , Ekaterini S , Marcus And Brian. Keep up the great work team . Exception service .Thank you all so much.','2020-01-13 19:46:22.860000','2020-01-13 19:46:22.860000',5,'Starlene Hayes','https://lh4.googleusercontent.com/-CNfiEuWwJzg/AAAAAAAAAAI/AAAAAAAAAAA/LQbR6e7ZpEY/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',9734),('AIe9_BHR7p0hPy1flx1br0TYdEUBEOsaBa_1mBBHT37igjao1xZx5Kn-HqEVYB8OZQ9J4z8LeFBN-nxXIXHyFqmJlepCCGts0ytJBScSWvOxq-Ql0MaJxqI','The staff members were very disorganized and disrespectful. How on earth do you tell a patient you do not get paid well enough for your job just because the facility failed to organize check in time.','2020-07-21 18:28:44.589000','2020-07-21 18:28:44.589000',2,'Ambe Ayinwi','https://lh3.googleusercontent.com/a-/AOh14Gh8LHmNHNeGBMowa4-3CMjy5yPgEn6p3Ds99OejaQ=c0x00000000-cc-rp','12541597562633926366',21803),('AIe9_BHR7p0hPy1flx1br0TYdEUBEpDdeLNQf3a4jHlQvC8hXWBoCzZ1tLfIGlyw9D3TiwIFZU76bCug7fY5C9CoxSoG9A3qrRz1TDF7YiohVbzo2M9tAzY','I was totally satisfied with the entire staff.\nThey made me feel at ease with the procedure. \nIf need be, I will use this facility again','2016-08-17 13:41:23.541000','2016-08-17 13:41:23.541000',5,'Dennis Crump','https://lh3.googleusercontent.com/-9GJjMVsMl9c/AAAAAAAAAAI/AAAAAAAAAAA/Wx5VaZctRac/c-rp-mo-br100/photo.jpg','14904078213800803294',2468),('AIe9_BHR7p0hPy1flx1br0TYdEUBeSmxbqlcmJtuAfEkc6fT0uwrc5CukWR5jeMUvKvv9AaRQzk5GpOHxrrd2fM5zWh9Fn5-DLy5jMxaRNZ5ldallFBs7g0','Sarah is the bomb!!!!\nTanishia was very helpful, profession, understanding \nDaniel was friendly \nDoctor Henderson was quick!!','2019-10-23 04:35:39.678000','2019-10-23 04:35:39.678000',5,'Stephanie Diaz','https://lh5.googleusercontent.com/-wPcVnilyLVU/AAAAAAAAAAI/AAAAAAAAAAA/TlL_gpbsVUY/c-rp-mo-br100/photo.jpg','17898197009688164559',5487),('AIe9_BHR7p0hPy1flx1br0TYdEUBexUbHuP9rytt5SRnLOrS8QfWLwn6U9fEEIc5OBwJROqjkTdeTPanemd8aBPBORv0dgkGLwO59ROnAOJ1Scv7InAoIsA','Super friendly staff! Dyveliz answered all our questions and was super eager to help us. I\'ve been there a total of 3 times with friends and every time they\'ve done a great job!','2018-01-20 22:11:53.611000','2018-01-20 22:11:53.611000',5,'Casey Burchfield','https://lh4.googleusercontent.com/-frsbBj9rYDQ/AAAAAAAAAAI/AAAAAAAAAAA/JUU0BuiPoz8/c-rp-mo-br100/photo.jpg','16590124370714063921',3876),('AIe9_BHR7p0hPy1flx1br0TYdEUBeYKXWRLYfe458cpGhaqDjLHEMPebMxhELxpxPg_nlvgoPbjDxzQbjNpIS20WUl6BlxWWTphosQxKIhDmB_hymVIqxtA',NULL,'2018-08-08 17:24:50.531000','2018-08-08 17:24:50.531000',5,'Martha Tabe','https://lh5.googleusercontent.com/-fklJV-MbwBo/AAAAAAAAAAI/AAAAAAAAAAA/KBFyekYHIsA/c-rp-mo-br100/photo.jpg','17394740196501090048',4817),('AIe9_BHR7p0hPy1flx1br0TYdEUBF_JpsGw1JPWiVyW0r0KDX5H015hzrEwZ5xxTySeOi2ckzkp_ebSW0DWJ5nfrJdwlhcXfZhshY7lwLAk7ojiiWAej_YU','dr. Ding amy and chris took care of mg wife exceptionally','2019-04-27 21:02:23.880000','2019-04-27 21:02:23.880000',5,'Michael Geronimo','https://lh4.googleusercontent.com/-yU3PAOv7Eiw/AAAAAAAAAAI/AAAAAAAAAAA/KyqXdc-fMkI/c-rp-mo-br100/photo.jpg','14567670160750071148',1337),('AIe9_BHR7p0hPy1flx1br0TYdEUBfeHmNorqlseJ2zZxtGWwrW4_1fO0e8JbAws-6-PFFFmSvKc7W0ti8se8ysFteTyNEsfILJ2g08TDn4IJ1wB8M9JX6aU','Came in the ER ... I was greeted friendly and fast... My doctor and nursea were amazing... Dr. Thomas checked me out fully. And my Nurses were fast and cool LIA and Trisha along with Shay all showed concern. Thanks ladied','2019-02-22 03:22:10.797000','2019-02-22 03:22:10.797000',5,'Jupitersqueen_','https://lh6.googleusercontent.com/-M0LrS38CdW8/AAAAAAAAAAI/AAAAAAAAAAA/uWLZ-7fXr8Y/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',547),('AIe9_BHR7p0hPy1flx1br0TYdEUBfEX6Wft1Q5tPyJR6eYaO6fBJLnTxlDiect9kqfEIyJ-vi5TgtXXFbl15Tvn96oonyQes0r5iuY0LSv872IVL3Rd7sl4','This emergency center has outstanding service and Brenda R. Was very helpful in helping me sign paperwork since I was involved in a car accident other team members are very friendly and know what they’re doing!','2019-05-07 04:57:14.098000','2019-05-07 04:57:14.098000',5,'Jacqueline Solorzano','https://lh5.googleusercontent.com/-IKLL1bZkIG4/AAAAAAAAAAI/AAAAAAAAAAA/5ajEnca_3pg/c-rp-mo-br100/photo.jpg','14567670160750071148',1326),('AIe9_BHR7p0hPy1flx1br0TYdEUBfgZNV8UuhfyJXVRsVfafhwXrIUwWjXRE2kpfF8WVXeYzesIgEaXSYsBiltJX_Jtk3jbxhCMFEkZdS8fiN51N8QPQnbY','We came for a post accident treament got immediate service. Nurses were nice and patient and kind and caring .','2019-04-03 10:58:53.851000','2019-04-03 10:58:53.851000',5,'Andrea B','https://lh6.googleusercontent.com/-APvOlBI1Ugw/AAAAAAAAAAI/AAAAAAAAAAA/XACPOApWi7E/c-rp-mo-br100/photo.jpg','8679688254631342173',8856),('AIe9_BHR7p0hPy1flx1br0TYdEUBfIbr6mE7UsZ1UNGrN6akw7cO9e5Wfj5m5anGNerHVgu8nPkZAE6A7AHLV-lCy0vsLgcgb0X9anbVp6UK1oJH6eXpgAQ','Everyone that I encountered on my visit was caring and extremely nice. It was almost as if I was visiting someone’s home and being shown great hospitality! The doctor was through with finding out my problem and was able to put my mind and pain at ease. I want to thank everyone who took care of me: Dr. Curtis, Jennifer-Registration, Susie-Nurse, and Matt-Tech. 🤗','2019-12-22 17:31:21.876000','2019-12-22 17:31:21.876000',5,'Michelle Giles','https://lh3.googleusercontent.com/-XCUNTDCG7NM/AAAAAAAAAAI/AAAAAAAAAAA/j_1A19d5i6U/c-rp-mo-br100/photo.jpg','8626688543755174284',14638),('AIe9_BHR7p0hPy1flx1br0TYdEUBfmd0kAjD8PxV-WStrXLEhaitfk2Nl8K45K4wwg3IJ7v-Upm7kOHlLh_BvJhkJWj7DGX1_jZ7TYt5Bvk6x9VbhHaUS3s','Great place! I came in with an allergic reaction and everyone was so reassuring and I was in for about an hour and they gave me a prescription and I got to studying later on! Nurses and doctors were great!!!!','2018-09-06 17:01:46.040000','2018-09-06 17:01:46.040000',5,'Gia Valles','https://lh4.googleusercontent.com/-Q9RjHFiH8qk/AAAAAAAAAAI/AAAAAAAAAAA/NZrhj9iAc6U/c-rp-mo-br100/photo.jpg','16590124370714063921',3742),('AIe9_BHR7p0hPy1flx1br0TYdEUBfpI6LZP7h7nxY2kSQZl8Aneu8WMlHusSoxGmaV65iLnrlAIl2ahn9DzSR5xBiz7bx7FQSr4bQ1RVBcFnOgGPdpCL_w4','Excellent care providers! I checked in and was taken back in less than 15 min, and had aCT scan and discharged. Thank you for taking such good care of me!','2019-10-22 20:54:22.970000','2019-10-22 20:54:22.970000',5,'Kat Quintanilla','https://lh5.googleusercontent.com/-pqp_Fz_oZZM/AAAAAAAAAAI/AAAAAAAAAAA/SnSI8CGb7jU/c-rp-mo-br100/photo.jpg','2694018788013845459',6037),('AIe9_BHR7p0hPy1flx1br0TYdEUBFPpE5GFQyfH06ItLJ8jJFxe5lcLIslBYuipuabJ2C9uN3AhI6metxEIrNoNF8bl7hedzU9eFIkIC0h-xv3xIBjFq22o','Excellent customer service! Friendly staff from the moment you walk in and everyone you see! Highly recommend this ER!','2019-12-23 07:55:24.578000','2019-12-23 07:55:24.578000',5,'Tonya Wilson','https://lh3.googleusercontent.com/-ix5POw_mkgo/AAAAAAAAAAI/AAAAAAAAAAA/gYHTtrh5rE0/c-rp-mo-br100/photo.jpg','3272657195432704501',6832),('AIe9_BHR7p0hPy1flx1br0TYdEUBfqlqQoInVwMXxoJ3v0J4qoQuvTr4yGD_MUttttdNxkt-nq_ZUYyzct4UqbUVmbzJ8--Xk-v1zlclKADvt65hUQvKqPs','all the staffs were kind and they made us comfortable','2017-12-11 15:05:59.250000','2017-12-11 15:05:59.250000',5,'박규병','https://lh3.googleusercontent.com/-M3RXVStt74I/AAAAAAAAAAI/AAAAAAAAAAA/xxJcQK__YH4/c-rp-mo-br100/photo.jpg','16590124370714063921',3896),('AIe9_BHR7p0hPy1flx1br0TYdEUBFqNifUvFBBFl68IO0cACbq2k9IXL7f3CF7XMPNl2ZaMLNzkjiT82zeM7M1Ov-vcA6w0oZV0XOxWS5GAnC-njvMlUnmk','Skyler, Tammy, and Brooke did an amazing job! They were very informative and nice.','2019-09-06 03:47:32.357000','2019-09-06 03:47:32.357000',5,'Uhh Ashlyn','https://lh6.googleusercontent.com/-Vy-81XZ_23U/AAAAAAAAAAI/AAAAAAAAAAA/af5s5O8xi-w/c-rp-mo-br100/photo.jpg','8626688543755174284',14680),('AIe9_BHR7p0hPy1flx1br0TYdEUBFqWIXrlcMvGnT1-n2VojOEPKvep0r-jMcGTg-UyFFKk5kQRHmkSNJmS2oerepgXYHgZQF_lc6IoXXqBTjbtu2j-x3A4','Every staff member that assisted me yesterday were more than candid; they were all so very kind and sympathetic while remaining professional. \n\nThere are three specific nurses and/or technicians .that were exceptional with their individual skills and care. Nicole and Daniel were incredibly attentive to accommodate my needs. Chastity was my ultrasound technician. She truly was sensitive towards my ailments, impressively knowledgeable and all with one of the most pleasant and courteous bedside manners I\'ve experienced. \n\nThank you to the entire team at Signature Care Emergency (Heights) for making an incredibly scary, painful and humbling situation so comfortable.\n\n-Laura Hargrave- ','2017-03-08 08:10:41.611000','2017-03-08 08:10:41.611000',5,'Laura Hargrave','https://lh4.googleusercontent.com/-2jjQSblQ9Vw/AAAAAAAAAAI/AAAAAAAAAAA/nJbIYtnsU_0/c-rp-mo-br100/photo.jpg','14567670160750071148',1872),('AIe9_BHR7p0hPy1flx1br0TYdEUBfr9AwgfNbve5LPGEbp8XLFfTHxf4ulgwiRF17SZsfn0KM7dOTk4f7xr0AtnoJ-8mnQHmTQ-hVvqJUG8yaIC-cCPecWs','I came in super early for an allergic reaction. This staff was very attentive! Got me in no problem no waiting time. Nurse Savanna was very comforting always checking in! So was radiology guy Aaron. Dr. Starr was great he asked plenty of questions and heard my voice in what was wrong! Highly recommended in any emergency!','2020-02-08 13:41:15.374000','2020-02-08 13:41:15.374000',5,'Celina Villalva','https://lh6.googleusercontent.com/-vND3xJibVi0/AAAAAAAAAAI/AAAAAAAAAAA/flvYcJ0uQBg/c-rp-mo-br100/photo.jpg','13486358490203335051',13432),('AIe9_BHR7p0hPy1flx1br0TYdEUBfTMsYXuwYMx03_b15RsxsFNFOS7KBQoXKJ7UdI87OIba6h8xag-xnUmA7c5lDP9rrodSt-s5pb54k9UQhXkntLXFepc','Excellent service! And thank you Keaire!!! Great staff.','2019-09-08 20:35:31.516000','2019-09-08 20:35:31.516000',5,'Jamal Haqq','https://lh5.googleusercontent.com/-O3m6FtOT2VQ/AAAAAAAAAAI/AAAAAAAAAAA/tfBuN_awvbY/c-rp-mo-br100/photo.jpg','3511292162159714121',7179),('AIe9_BHR7p0hPy1flx1br0TYdEUBFTq672ixsDLWUZ8D5yc5ayMwKmFLlWXJkZB8p_slSqrs4j52PVZu-asjZjCTtlcLhGANZpevO52tNvHyoyw_5Bj22b8','It\'s a clean facility. The nurses and doctors were very informative, attentive, caring, competent, professional and courteous.','2017-09-12 13:53:23.445000','2017-09-12 13:53:23.445000',5,'brenda guillen','https://lh3.googleusercontent.com/-Xx3gqqbUuws/AAAAAAAAAAI/AAAAAAAAAAA/r_sSOTc9FPM/c-rp-mo-br100/photo.jpg','14567670160750071148',1757),('AIe9_BHR7p0hPy1flx1br0TYdEUBfvZW_KPA-bzXmPOy6y3WvzWBpVgXW59WuXyA3DoEYg3zNbU27YYVytoatOTi8oWZwgTcVIuDPELfbzZmoHl-7VS9V34','I love this Er location ! I’ve come here for any of my emergencies and they treat me like family !! Love Asia and monica at registration and love the muses Anna and Fatima and today’s visit geovanny was great !! Fatima does great and always lightens my day whether I’m feeling sick or not !! I recommend this location','2020-08-11 03:45:22.262000','2020-08-11 03:45:22.262000',5,'Abiel Cruz','https://lh6.googleusercontent.com/-MMcmeNvq2ZM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn3q0HaSXxKy0urKHbdf3ml0pkpGA/c0x00000000-cc-rp/photo.jpg','17898197009688164559',23064),('AIe9_BHR7p0hPy1flx1br0TYdEUBfWCOqf2GQup1X10WstbBABPjNgaSFJfx2s7OEw0PT3HK4O7SAZJvNP47BSEapZjH1iKinFO7t5UqH9ZUmwA5KWG-dCg','Dr. Yost took amazing care of my husband tonight. Amber and Gunnar were amazing with his IV, EKG, and other testing. Also a huge thanks to Tobie who got us in a room within 5 minutes of walking in. Y\'all are the best!','2019-07-18 04:43:13.525000','2019-07-18 04:43:13.525000',5,'Mary Powers','https://lh5.googleusercontent.com/-Fot9yAWwovA/AAAAAAAAAAI/AAAAAAAAAAA/-y_WpsGHUxU/c-rp-mo-br100/photo.jpg','3272657195432704501',6941),('AIe9_BHR7p0hPy1flx1br0TYdEUBFY8ZTrGnlmSEU0FD9pEhdflI4vnE94-Nrtae_Mvc0s-Cbz-VmgKdgOBpIaHL8Gtx_kSb-1jojldgPDcx3U0LxvCejQk','All I wanted was to get covid tested for my family and I. The online process to book an appointment is too complicated, but was handed a slip of step by step how to set it up I was confused and Carly at the front took the time to walk me through it and she made my experience better.','2020-07-22 06:37:50.074000','2020-07-22 06:37:50.074000',5,'M Turan','https://lh5.googleusercontent.com/-Vt4M3zMIo-s/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmcrqk53GDvskVp0yCV8raOLwQbPQ/c0x00000000-cc-rp/photo.jpg','12541597562633926366',21801),('AIe9_BHR7p0hPy1flx1br0TYdEUBFYEBSUBLP43p5PmUHEiEKq7JQCaeAxl26hQqzGgnKKWp9pjCnEA9YeA-vtS52bAPD5-B1jhK6u57CEOPJbtJBekBjPQ','Excellent staff, super nice and friendly. Overall great atmosphere.','2019-10-21 00:23:31.795000','2019-10-21 00:23:31.795000',5,'J W','https://lh6.googleusercontent.com/-e8hmEBLiYFw/AAAAAAAAAAI/AAAAAAAAAAA/9-Z9g_86lok/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4177),('AIe9_BHR7p0hPy1flx1br0TYdEUBg2CovCIeB6TLvDkWDYmt0PHbLzGM7DJ24ul13_OG-cj23YI8DSjibEimYDsUxrDTBcqmbzyScPnQk9RQlLZUGgjd1Vg','Everyone here was extremely nice, very helpful the doctors was very informative, I would recommend this facility to anyone. Thank you Dr.ortiz Brenda,Hamzah, Jacqueline, Lisa and Gina you all where so nice !!','2018-09-02 16:44:18.424000','2018-09-02 16:44:18.424000',5,'Porsha T','https://lh5.googleusercontent.com/-deY7Q__3Hp8/AAAAAAAAAAI/AAAAAAAAAAA/ofqDjleVuRs/c-rp-mo-br100/photo.jpg','3511292162159714121',7604),('AIe9_BHR7p0hPy1flx1br0TYdEUBG4_weCdAoXjaZw2qgHj5q1wVohvmM7OjZd_4RKS5_5lYCkYzd2RhiwFz-2FiJKq6KoSMk_GlXh67JvjDX2K4DZy0joE',NULL,'2018-10-29 15:23:57.353000','2018-10-29 15:23:57.353000',5,'Raquel Moore','https://lh6.googleusercontent.com/-Wu4poQ-Bwo0/AAAAAAAAAAI/AAAAAAAAAAA/dMzW9euds3Q/c-rp-mo-br100/photo.jpg','17394740196501090048',4770),('AIe9_BHR7p0hPy1flx1br0TYdEUBg5CuIVraE5wS87YX1ITqrmZyuQTSlovAuRo1qiuC60XiAqCJdmSF3i5S5mbhy6YRer7ksthcyHsMQb517ZbcWIbcrkY',NULL,'2020-01-23 16:31:38.070000','2020-01-23 16:31:38.070000',5,'MFTIC King','https://lh3.googleusercontent.com/-70doA_swgNI/AAAAAAAAAAI/AAAAAAAAAAA/NP3KnMD5t2I/c-rp-mo-br100/photo.jpg','8679688254631342173',10342),('AIe9_BHR7p0hPy1flx1br0TYdEUBGAeIYYmrWD-DjJCM2uERkTps7XBxoXv1Mc79kOZvxDI7FqlJXUlWEVwTlah4wgZW2ps3IGmWzyBWrZzgcuwC5sSQUWo','My roommate had a medical situation and was addressed rapidly and in a very kind manner. Anthony was the RN helping him and he was extremely kind and entertaining for all of us that were there, making the whole experience much less concerning. Thank you!','2018-11-01 02:05:45.573000','2018-11-01 02:05:45.573000',5,'Dylan Siegers','https://lh3.googleusercontent.com/-u-LP9AKlsV4/AAAAAAAAAAI/AAAAAAAAAAA/xApq4okfQtI/c-rp-mo-br100/photo.jpg','16590124370714063921',3678),('AIe9_BHR7p0hPy1flx1br0TYdEUBGB6Ds6Cvbh-0L9mi0ymtv7G-NYhL-KqpsICp-J7jVaDrrakxIxRVAqzA5SjiSQGHT-i1lFTgBSjvqhjkZJRWutMzW4Y','Very friendly staff, very helpful. Definitely would come back. Our nurse Brad was awesome and Kimberly at the registration desk was very nice. Morgan in radiology was very nice.','2017-03-07 20:34:59.975000','2017-03-07 20:34:59.975000',5,'Samantha Holle','https://lh6.googleusercontent.com/-1d1g0nV2HvY/AAAAAAAAAAI/AAAAAAAAAAA/rt0tqeDU25s/c-rp-mo-br100/photo.jpg','16590124370714063921',4040),('AIe9_BHR7p0hPy1flx1br0TYdEUBGcmChvL9mOXJ9coIsNdmh2AZ3tPz8iy6mdTrMgaGwvZxtRkMN9k_Ai-CidG8cAVJto6nyHT7TQYS4y25LGlxrr3mWhw','They took good care of me and I was in and out no wait','2019-09-22 14:34:59.452000','2019-09-22 14:34:59.452000',5,'jeromey richmond','https://lh3.googleusercontent.com/-kQmF16eVUJk/AAAAAAAAAAI/AAAAAAAAAAA/ya8ClvvkBYo/c-rp-mo-br100/photo.jpg','6521947413723274945',8132),('AIe9_BHR7p0hPy1flx1br0TYdEUBGgHv9zFN4j4WpM47SQ11u6bViakYxSXtVjRce-ip_V9DdBYVnvAMdUhKkvagaANgnwaxm9pl2OqV1efeztB0-J1kMDg','They save my life. Thank you so much.','2019-03-09 22:15:10.392000','2019-03-09 22:15:10.392000',5,'Shibata Ayumi','https://lh6.googleusercontent.com/-DEf3n-5xlyc/AAAAAAAAAAI/AAAAAAAAAAA/odQuO-9K4cQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8864),('AIe9_BHR7p0hPy1flx1br0TYdEUBgSLwCBBiI3CXK-rrR09nijWXuLT12AxAw22B1zrDo2WlL8zOjfdgMET0cV-XpK3tg02oEuV5_arU137LoXI-Hm0EjaY','Been three times for different family members and each time was a great experience given the situations we were in. Treated and cared for like one should be when sick. I highly recommend for all ages.','2017-09-11 01:50:46.462000','2017-09-11 01:50:46.462000',5,'Jacqueline Allen','https://lh3.googleusercontent.com/-NW3s8J_3ebU/AAAAAAAAAAI/AAAAAAAAAAA/gsTtavf5DNs/c-rp-mo-br100/photo.jpg','16891069708558046635',4540),('AIe9_BHR7p0hPy1flx1br0TYdEUBGTOWBGogDRdyFftwXbkwAsfgC-pup2gfwpJAN2S2cvEqezcL5E65ncfYgtkIhWu6yw9PZpiDxEMvlYfP5CtOMw4sELs','I came in today for an asthma attack and the staff was amazing. Dr. Estevez was very understanding and made sure I had everything I needed and answered any questions I had, My nurse Stephanie was very attentive and made sure I was taken care of, Quen & John are the best! As soon as I came in they both got all the information and vitals, Genesis was very sweet, I didn’t have my insurance ID on hand but she gave me the convenience of emailing it to her.','2020-03-02 16:08:54.375000','2020-03-02 16:08:54.375000',5,'paris j','https://lh5.googleusercontent.com/-qx7OMa9NPo8/AAAAAAAAAAI/AAAAAAAAAAA/F0ldByL5yig/c-rp-mo-br100/photo.jpg','12541597562633926366',13320),('AIe9_BHR7p0hPy1flx1br0TYdEUBGxfH544t7nQllIo9eMI9dgdP3mK04byo1NRUpaqVqKDa3f7KZT8ibwzPKNm-9KGoHePDvKR3JJ_uHLCN4UaanWyHEl0',NULL,'2019-01-03 02:17:25.311000','2019-01-03 02:17:25.311000',5,'Victor Ramirez','https://lh5.googleusercontent.com/-w7PVTxbxq5Q/AAAAAAAAAAI/AAAAAAAAAAA/ioneKV7YFYI/c-rp-mo-br100/photo.jpg','16590124370714063921',3599),('AIe9_BHR7p0hPy1flx1br0TYdEUBgxVLoFhs4WcajSwLTCxR6N1iKq0WjWeTVPuXbSvBg1ys7SvLCL0UOvEE4LgtbMy3TYYxpA95VYd9bSwts3zXz2R6muw','I came into this location due to some back pain. From the moment I got to the parking lot, Nicole and John were there to assist me, escorting me to the registry. Deanna was very quick to get my information and insurance in the system. Dr Patel took excellent care of me. The service was quick, easy and painless. Overall, the staff, especially Laura, was caring, friendly and a joy to talk to. Her Spanish speaking ability made it very useful to communicate to me and family. I highly recommend this facility for any medical needs.','2018-09-08 21:56:31.085000','2018-09-08 21:56:31.085000',5,'Oscar Portillo','https://lh3.googleusercontent.com/-DcCnQ-lLirU/AAAAAAAAAAI/AAAAAAAAAAA/Szc3MRnjjCQ/c-rp-mo-br100/photo.jpg','12541597562633926366',610),('AIe9_BHR7p0hPy1flx1br0TYdEUBgZhrGx3KM1SGCRYMhtvoJNmpQOx3_CS2vPEhJbzUirEQFCiMsmlCoaf5zd4feT-Tkj6hU_kNT8Jb2KGGi0s82_mpoOw','Came here for my first time and I was a little nervous because urgent cares are sometimes not very nice, but these people are AMAZING! Delicia, Blake, Sonle, Mary Ann, and Dr Omalley took great care of me and I will be back again. Highly recommend coming here!!!!','2020-08-10 13:02:12.841000','2020-08-10 13:02:12.841000',5,'Kennedy Garza','https://lh3.googleusercontent.com/-Etb_vC3PKaY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucluJSwqBLM_Z69EdyCWaKsV9YFDNQ/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22909),('AIe9_BHR7p0hPy1flx1br0TYdEUBgzLhCtz50yNyqtaedEL_hZRDE2IhFL_0BpPOQAHovN3OaiMMMmyLXUja-80Dd336wLd3aJFw6bYjCZ1VljJat0hEcB8','This center was so great! We had to take our one year old to get tested for COVID and the nurses were so sweet and patient with her. The nose swab is not fun but the nurse waiting a few minutes after to help her calm down. Definitely recommend for all ages!','2020-08-09 14:25:17.482000','2020-08-09 14:25:17.482000',5,'Jaclyn Trimble','https://lh3.googleusercontent.com/a-/AOh14Gho68nJStRySpFFq0MUGQaBVgR-Qp9xPVT2E9tj=c0x00000000-cc-rp','13486358490203335051',21813),('AIe9_BHR7p0hPy1flx1br0TYdEUBh_CmrWiPrDu2TRuakjBENrNwe-4LeRYCjWGl5YEoCFSxAY2nW6tmCpNtuOpmLOFIIABhEJXF-_r5oCpIYIdC2a0ij-M','Thank you Robin, Jennifer and Valerie for taking care of my mom. They was so fast & efficient when we came. Have an emergency, I would highly recommend visiting SignatureCare','2019-05-26 04:17:09.316000','2019-05-26 04:17:09.316000',5,'Tx CxBreadx','https://lh5.googleusercontent.com/-VuM8vOqAGaI/AAAAAAAAAAI/AAAAAAAAAAA/zo-gE9p8v4Q/c-rp-mo-br100/photo.jpg','8626688543755174284',8472),('AIe9_BHR7p0hPy1flx1br0TYdEUBH3gle_Lx-cIMPAEGUePfgP2Ia1p21pHQLsDI3bXaBOby8fNIh8nXXOEeS-A7TEt5xvP1y9fBr-msl0xHALMtXCCpRdk','(Translated by Google) Very good attention///\nTanishia W\nDoctor Henderson, mD\nLaura H\nDaniel B\n\n(Original)\nMuy Buena atención/// \nTanishia W\nDoctor Henderson,mD \nLaura H\nDaniel B','2019-10-23 01:39:18.208000','2019-10-23 01:39:18.208000',5,'Fredy Jovel','https://lh6.googleusercontent.com/-QNxFBX803JQ/AAAAAAAAAAI/AAAAAAAAAAA/wGgpdGLUAUI/c-rp-mo-br100/photo.jpg','17898197009688164559',22713),('AIe9_BHR7p0hPy1flx1br0TYdEUBh7UEN0w7BLQts68-5TheOQ2JFLHFbkbkmUf9W6a5Zzo78MswvjuHupyl29BsBxtFbw8Zu8f69Tet_955KBhH-l17oeE',NULL,'2019-05-19 13:12:08.827000','2019-05-19 13:12:08.827000',5,'coleman carrico','https://lh3.googleusercontent.com/-ZQyEWFMWPlY/AAAAAAAAAAI/AAAAAAAAAAA/LycGofqMKQc/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBhbwJaemK1hbR-7RtqergAJmVURILn6y_FrdyIkakLKuNp73Nu_VV0u2APoeDEZkNt8ipd88ZAdYtxzfdavgltFPQ8Ww',NULL,'2019-05-15 16:38:07.785000','2019-05-15 16:38:07.785000',5,'Elyse Moore','https://lh3.googleusercontent.com/-0J_w3A2qKjA/AAAAAAAAAAI/AAAAAAAAAAA/Li6DSFj_0u8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBhjHBbViNSfE-IPXNs6E4WZlWgqV7Sn-Zm-xSqbTOqqiY5wUsKNKkfMviBwGyZBHFyVgyE5xuulEEBhulYIirrrCjErs','ASHLEY S. Was amazing upon arrival! Everyone was very helpful and provided snacks and drinks.','2019-08-14 22:21:57.868000','2019-08-14 22:21:57.868000',5,'Kelsey Davis','https://lh6.googleusercontent.com/-XYR15oV10ZM/AAAAAAAAAAI/AAAAAAAAAAA/Puv7OSOlqyw/c-rp-mo-br100/photo.jpg','17898197009688164559',5585),('AIe9_BHR7p0hPy1flx1br0TYdEUBHKZ8xq5qIRRnl7wfV0jFiw9hDgp6cvSy3t9aN3bnVr3ciIdSJrpjsUeTY4fPyWBAsmak6sSUv04nugn0JhtsdLKsJrg','Fast service no wait time and the have snacks. Thanks Nikaela, Jessica and Luisa for the service.','2019-05-27 00:17:32.722000','2019-05-27 00:17:32.722000',5,'Jacqueline Salgado','https://lh4.googleusercontent.com/-BnCNOK9aTMw/AAAAAAAAAAI/AAAAAAAAAAA/WENMpmp0G9w/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBhoFkWMdL88IcTTEQStFRWNfCHPt8eOELp9DKWPewCrfTLVBlfYXkfEu8SNs4u_VUYZXMQ7Uj4scQD7dV3rLx6HxWhaE','Lizzy rocks!','2019-07-29 03:27:02.726000','2019-07-29 03:27:02.726000',5,'Rory Higgins','https://lh6.googleusercontent.com/-NVe_3v4O_lw/AAAAAAAAAAI/AAAAAAAAAAA/vN9slCRuh8I/c-rp-mo-br100/photo.jpg','3511292162159714121',7238),('AIe9_BHR7p0hPy1flx1br0TYdEUBhPcwNuVhiqB_tBuPq1v-YwyF0uYNq7p8ZO3WdJhTfAIMppaiB-ku9CInFiUnCRXDgQtJFkzPH4OtbM6VHOTWypelY6g','Went in late at night and was seen immediately staff was very nice and very thorough','2019-07-27 01:25:00.549000','2019-07-27 01:25:00.549000',5,'Kandra Gonzales','https://lh5.googleusercontent.com/-9caXbqLY4X8/AAAAAAAAAAI/AAAAAAAAAAA/Abp1P-7xrvQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9085),('AIe9_BHR7p0hPy1flx1br0TYdEUBhPzz8uDiuCgICSYwDnblFtkBhtP2JYxZCCljstoyLYxAGDgz62df_LTfs-yHN2MhYXjjQKPA3vchyeuQYwR1CFTqf88','I was nervous about coming in because I was worried it be be something minor and I would waste my money, but I’m glad I came in because I ended up having acute appendicitis and caught it before it ruptured. The front desk ladies were nice, and all the staff had a great attitude and made me feel okay being there. I was given medication on time and they were all very attentive. Nurse Hamsah was super nice and gave me a robe a teddy bear. I was berry happy about that. Also, my EMT: Amelia was very nice and we had a great conversation during my transport to Memorial Herman. Both doctors at this ER location were very nice and compassionate, but I forget their names. Overall I had an amazing experience and will recommend this location to friends and family. 5 stars! Bravo. Also thanks for the Starbucks gift card!','2018-11-13 22:00:39.492000','2018-11-13 22:00:39.492000',5,'Eliza','https://lh6.googleusercontent.com/-9UkUw305_X8/AAAAAAAAAAI/AAAAAAAAAAA/cFPivYBO7jY/c-rp-mo-br100/photo.jpg','3511292162159714121',7558),('AIe9_BHR7p0hPy1flx1br0TYdEUBhQbIC-HG9s6EAFZ9GEOm0Vtxz86r9hG6eaLnyDxXdolkC-jUEY9pEHkdQp3RXx3JOhjMXaCMFhW_SKcQ8rhBLoyrqqk','Called to see how much it would be without insurance to come in and get a strep test done. (I had strep earlier this year and am pretty certain I do now again). Lady, at the front desk, said they wouldn\'t give me any pricing, nor an estimate or ball park figure for a check up. She said I would “have to get seen by the doctor” and then they’d give me pricing “UNLESS he found my symptoms to be an emergency ...and then I’d be forced to get treatment.” according to how she made it sound... I’d be charged and treated without regards to my to consent nor my ability to pay.\n After reading the reviews, I see multiple people on here complaining about their billing practices...with some owing tens of thousands of dollars after their insurance co-pay for minor procedures... and even one person claiming to being billed 8K for a flu test and antibiotics. \nGlad, I didn’t go seems like something fishing going on there, but, these are just my opinions from calling them and reading the reviews on here.','2020-03-13 06:08:04.257000','2020-03-13 06:08:04.257000',1,'Niki W','https://lh6.googleusercontent.com/-yodawmAMuwQ/AAAAAAAAAAI/AAAAAAAAAAA/uPnw9YPKDIw/c-rp-mo-br100/photo.jpg','3511292162159714121',21156),('AIe9_BHR7p0hPy1flx1br0TYdEUBhQHqR5GYqVzIHRQX7EaZXee1Rm-MdOAuPZVdKAXlVj-8kTg0ZPwedwhp-hqpIKh_AcVUyl34spaow7Uan1wI_unmPPU','Best ER experience I’ve ever had! They treated me quickly and figured out the problem within a matter of minutes. Even though I had to be transferred to another facility, I’m so grateful for the care I received. I was taken back immediately to a room and was greeted by a smiling, very warm nurse Melissa. The other nurses that took care of me were good as well and so were the physicians, techs, and registration people. I highly recommend this place!','2020-02-19 09:39:27.807000','2020-02-19 09:39:27.807000',5,'Jordan Alexander','https://lh5.googleusercontent.com/-UBD2OIxFOSE/AAAAAAAAAAI/AAAAAAAAAAA/Xdx-dGTAplk/c-rp-mo-br100/photo.jpg','3511292162159714121',14409),('AIe9_BHR7p0hPy1flx1br0TYdEUBHqQPr1ZC05dEb5-X6N23tNX4aQbme_w0m1cp3e_1_jyFVuL3kku4nXf75Xbpy3eDKo6koA67k31ek1L4d_x4H2oB4HU',NULL,'2019-01-30 14:48:11.977000','2019-01-30 14:48:11.977000',5,'julio fernandez','https://lh5.googleusercontent.com/-1DSMLn73kTA/AAAAAAAAAAI/AAAAAAAAAAA/yKJhuUdsIVY/c-rp-mo-br100/photo.jpg','3511292162159714121',7435),('AIe9_BHR7p0hPy1flx1br0TYdEUBHrajAVyXPAC1bS1bst3bspLOQifn5YT-ko_Cs9gGonMGEH5uUNeM6PljkqWDQDlFLx48mOA9B7WFRMSMm9Cs6e9A35E','Dr. Leavitt, Alvean, Traevis, Amy and Keith were all more than professional and really gave us ease and peace of mind during our visit','2019-11-17 18:32:39.210000','2019-11-17 18:32:39.210000',5,'Kevin Kline','https://lh3.googleusercontent.com/-NxYx3fzZjMs/AAAAAAAAAAI/AAAAAAAAAAA/OCfrSr0nxtM/c-rp-mo-br100/photo.jpg','16389487648212004696',2673),('AIe9_BHR7p0hPy1flx1br0TYdEUBhYSb2o-fqTKpPXW4FJeVkbzcox1BImMITQvrjpKcUSh6Ztlj86DEpukqU1bNXF4zTAHwgICMPylF_HujySp1qHO1YMU','Great place to come','2019-08-07 18:57:21.754000','2019-08-07 18:57:21.754000',5,'Aracely Chavarria','https://lh4.googleusercontent.com/-XWK_OwKTei4/AAAAAAAAAAI/AAAAAAAAAAA/uvZ2tlIvklY/c-rp-mo-br100/photo.jpg','13486358490203335051',862),('AIe9_BHR7p0hPy1flx1br0TYdEUBiAW-foPIdO7nJF98bmqAEevobgzmiudZCd8maiDkqq1ifYyti5PV7QJpaI5_Hk02GqQIJU9Zs_kMoEphZaZlmCf9ym4','Amazing staff and super clean and nice place. They took my insurance and made sure it would cover everything before they went ahead with tests. these people are caring and kind and didn’t make me feel like my symptoms were invalid; unlike many other ERs. I definitely recommend this place if you need urgent care of any kind. My nurse was Brad, my register person was Kendra, my radiology tech was Morgan, and my doctor was Ortiz. If you get any of these people I promise you’re in good hands.','2020-02-05 21:58:08.699000','2020-02-05 21:58:08.699000',5,'Haley VanWagner','https://lh6.googleusercontent.com/-awemiOjtD-o/AAAAAAAAAAI/AAAAAAAAAAA/eK0RgWkySDo/c-rp-mo-br100/photo.jpg','16590124370714063921',13879),('AIe9_BHR7p0hPy1flx1br0TYdEUBIAYsGC8JyAZ3qLXxt7x9WINZaxV8ilDwV3jgAtZogi7bM_8JZynAOQBL6rLXjhl8BMiZh05ix7myJa-bS1AAq-Vwkf8','Fast and very polite service!','2020-02-14 19:04:58.184000','2020-02-14 19:04:58.184000',5,'d w','https://lh4.googleusercontent.com/-d5Pqo9VXMDQ/AAAAAAAAAAI/AAAAAAAAAAA/0BNUnu_4TBY/c-rp-mo-br100/photo.jpg','16891069708558046635',13950),('AIe9_BHR7p0hPy1flx1br0TYdEUBiBXiPaifZw4GVcnS9ivVAFdaUEGaRWUwoTItXT8SVipZGkzAnQAxq8FkAaeX31xabi2tZ8p37ZxOl6To7wd8jnx9RcM','Dr Huerta, and his staff Krystal, Cy, Audrey and Maria were ALL TOP NOTCH!!!! Very effective, very courteous and professional. I will definitely return. All Dr Offices should be like this one. Keep up the good work!','2020-01-18 01:12:51.080000','2020-01-18 01:12:51.080000',5,'Ed Parker','https://lh5.googleusercontent.com/-NnrfZ1Rvh_M/AAAAAAAAAAI/AAAAAAAAAAA/FYRHr1eKGoE/c-rp-mo-br100/photo.jpg','13486358490203335051',13475),('AIe9_BHR7p0hPy1flx1br0TYdEUBILdGc4IpqxR9pZQU8bCl0qZN-GoVzDZ_JCaX-qUvnApGpy-92hp9U9R9ndSnasAiM0Rcy85E8YYqoZlbwC-FWiaNQrg','The staff was very friendly and professional from the moment I checked in all the way until I was discharged !','2019-04-01 18:43:00.328000','2019-04-01 18:43:00.328000',5,'Ariane Sumlin','https://lh6.googleusercontent.com/-dU_GwxC62vk/AAAAAAAAAAI/AAAAAAAAAAA/iyCXsTqCjM4/c-rp-mo-br100/photo.jpg','17898197009688164559',5785),('AIe9_BHR7p0hPy1flx1br0TYdEUBIrNnQWehHuQgmIVMdhXwN6ctqr66FVfgI5nfj-LaEsGzovV9tzM6dTYqlaqy5kLaKAn1ItZJjTP8lm5fn3E1--Il9-w','Dr. O’mall Has great bedside manner. He made a complete 320 in my care at the ER. He went above and beyond the norm. Everyone including Alvean, Tricia, and Jocelyn made a difference in the healthcare. \nDaniella Archie','2019-04-10 19:41:34.484000','2019-04-10 19:41:34.484000',5,'Daniella Smith','https://lh6.googleusercontent.com/-6XY1hlUwqh8/AAAAAAAAAAI/AAAAAAAAAAA/mKx6btAWCVg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBirxgZ87jNpiMrbtWrMF9iG5AiPB7qaPL6uXdUz96LCsIrulSErF_TDysp9XWc5GxR27nKxUFMzK7O4dbgzTjtfajs2s','I had a great experience with Ashley Burton it was very pleasant being there','2019-03-13 16:42:49.343000','2019-03-13 16:42:49.343000',5,'William McClain','https://lh5.googleusercontent.com/-cpI5zbSiq84/AAAAAAAAAAI/AAAAAAAAAAA/nPTYzkhGAx0/c-rp-mo-br100/photo.jpg','8626688543755174284',8531),('AIe9_BHR7p0hPy1flx1br0TYdEUBIsol8ori1QR42PiD_YHMLt4OcqtP23a_hRhHjsuhYRTe4YVXtBTwG9omBs9xGCHv8YVZ-TSfq0DHMq4sx3nAEvEaQm4','Dr. Chukwu was pretty patient and was helpful in understanding on what is going on. Alvean Marcus, and jocelyn were very friendly and helpful','2019-06-05 18:50:28.134000','2019-06-05 18:50:28.134000',5,'Esmeralda Ca','https://lh6.googleusercontent.com/-Z8QWgiUnNXc/AAAAAAAAAAI/AAAAAAAAAAA/deIs2L-hXd4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBiTiq2eubQeWRbovkyVEgkS00n_hCZIV4QzatH4nPXmcCPOi-rSt7uxrNex2a5hQUrHPBdakF0zKzMGkfF2A-dYE2V-U','I would definitely recommend coming here. It was a clean environment and fast service. Hayleigh at the front desk was nice and helpful. The doctor and nurses were patient and attentive as well.','2018-08-29 05:21:23.214000','2018-08-29 05:21:23.214000',5,'Courtney Caldwell','https://lh3.googleusercontent.com/-L0vYDoi-ty4/AAAAAAAAAAI/AAAAAAAAAAA/-iV-rpOsmfs/c-rp-mo-br100/photo.jpg','12541597562633926366',616),('AIe9_BHR7p0hPy1flx1br0TYdEUBIW9Zchm-LmxoRoPBLdeGGz8ZhCX4a3juGtRf9uPsaNqMIqDxGy9Y-pYJuHWpWNs3kQcLJSGAiRxTGqmaw2KzF1--0Qk','Fast service','2020-01-10 16:23:27.569000','2020-01-10 16:23:27.569000',5,'Komla Richard Hemedzo','https://lh4.googleusercontent.com/-e6xUAUu1PQM/AAAAAAAAAAI/AAAAAAAAAAA/6CPVhRSbdNA/c-rp-mo-br100/photo.jpg','16389487648212004696',9490),('AIe9_BHR7p0hPy1flx1br0TYdEUBIy3ABOrdGzUdGWNblwNTqJ2Og7dGzS16k5JS7amctSHe4Oudp8mgYzc53wQbSwHGCKauKwzZe2SvoxrJ4IqeVa5_bTo',NULL,'2019-06-10 07:29:03.352000','2019-06-10 07:29:03.352000',5,'Magen Trent','https://lh4.googleusercontent.com/-NKohbcfZv1E/AAAAAAAAAAI/AAAAAAAAAAA/D0WPhnbmg5Y/c-rp-mo-br100/photo.jpg','13486358490203335051',976),('AIe9_BHR7p0hPy1flx1br0TYdEUBJ_T3SJEeNqio6q1X4d4vKz1tor2ahGDEtvdxI_wcOkCkcAgjePB0TnO3G6xRNMovcc9Kj-nNIAGzzIJK0G3EylQrr6A','I can’t began to tell you how caring professional and attentive everyone was during my visit. I checked out of memorial Herman and Beechnut due to the staffs rudeness and lack of care. I then came to visit signature care on Westheimer and experienced a total difference in the staff. Thank you Kristina a, queen, Scott, genesis, and dr king for saving me. You guys are awesome.','2020-01-14 15:38:09.776000','2020-01-14 15:38:09.776000',5,'Starlett Carrier','https://lh5.googleusercontent.com/-NnHxoQIXceU/AAAAAAAAAAI/AAAAAAAAAAA/hkos8NIpz3g/c-rp-mo-br100/photo.jpg','12541597562633926366',9660),('AIe9_BHR7p0hPy1flx1br0TYdEUBj4y6M3gNKPiSyPZddB278lki0TXlFOKpakLV4KDdGSzvYiw1o9xueLKnModI0erbcu2Fz3O2Hkv-v9RJXFMA7i4_quY','Clean,fast service,took the best care of me during my stay,the only ER in Paris,TX I\'ll go to again! Thanks Ashley B.','2019-02-08 23:11:41.574000','2019-02-08 23:11:41.574000',5,'Laura Garrett','https://lh4.googleusercontent.com/-Vi1lXo3ZFgI/AAAAAAAAAAI/AAAAAAAAAAA/nCnLauJ5Y24/c-rp-mo-br100/photo.jpg','8626688543755174284',8570),('AIe9_BHR7p0hPy1flx1br0TYdEUBj5RmjlD-6fCayre35CJVbaTI-YMjeiI6thSMMHzBlmYGPQF_thlchIbBkTaNxAFLQSu5jb8oN-PXU4Q2Iq7popB1wRo','I sprained my ankle pretty bad and tried my best to tough it out...when that didn’t work, a few of my customers at work told me about SignatureCare ER in Killeen Texas. So when I got off work I called up there, they were so kind and caring, asked to get my name so I could be seen faster. Once I arrived, Angela greeted us and help answer any questions regarding paperwork and payments. We were in the back and I was being seen within 15-20 minutes. Dr. Jones was amazing and very knowledgeable. I will always choose SignatureCare ER over any hospital ER!! We were seen, had X-rays, casted and released within 2 hours.\n\nThe care team that took care of me was:\nDR. JONES, MD, RANDY E \nNurse: Michele C T \nRadiology Tech: Zeida G F \nFront Desk: Angela K H\n\nThank you all for for truly being so caring and kind!','2019-08-08 01:38:42.304000','2019-08-08 01:38:42.304000',5,'Mareshah Pettorini','https://lh6.googleusercontent.com/-dq1JciRDgw0/AAAAAAAAAAI/AAAAAAAAAAA/NPkyjSN8H98/c-rp-mo-br100/photo.jpg','2694018788013845459',6091),('AIe9_BHR7p0hPy1flx1br0TYdEUBj65izBBL16TYUjn5utMgKpDA8mai6VzFhRhbPma5-lr6ZCYv7YN7XbiMzIVNp5ZDQ2u5hZMSSpfd_R3nNt1t3--kLE0','Amazing service! Fast, efficient and friendly. The facilities are very clean and staff was great :)\n2 Thumbs Up!','2016-02-15 04:37:54.370000','2016-02-15 04:37:54.370000',5,'Alex Santiago','https://lh3.googleusercontent.com/-p64X8CvNk2Q/AAAAAAAAAAI/AAAAAAAAAAA/isW3XctYBRQ/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',5285),('AIe9_BHR7p0hPy1flx1br0TYdEUBj7ouOHnhV4UZdwNUW3ozcagvc73yM_5TVXKZmxZUu8Apqj3ExbIq9JJ0YtaZgiNaWtJBvTrxUJe9MPza9fs8n2Yn9jw','The Heights Signature care facility and staff are excellent and treatment is immediately done within minutes of arrival instead of the hours we would have to wait at hospital emergency room. I am so grateful for their service.','2018-09-30 01:18:07.334000','2018-09-30 01:18:07.334000',5,'Angela kelley','https://lh5.googleusercontent.com/-NcKnJ_qhNOQ/AAAAAAAAAAI/AAAAAAAAAAA/eel2-aXx6X4/c-rp-mo-br100/photo.jpg','14567670160750071148',1485),('AIe9_BHR7p0hPy1flx1br0TYdEUBjDxZYKtzR0iKCdv74rEenYDq_k4ftP2kQ3h8hMcCcivEpi5BxvLAmP6_u2O9z4iehNL5sY3jgUWc_JAo196Y2IKMjuc','The staff was amazing! The minute I walked in, the front desk greeted me and immediately got me checked in. Within a couple of minutes I was called back. Literally a minute later the doctor was in to see me. Dr. Rose was awesome! Very kind lady. The nurse was excellent. They all made me feel at ease. They explained everything in detail and made sure I was comfortable. Very attentive group of ladies. I definitely recommend Signature Care!','2018-09-30 20:18:45.238000','2018-09-30 20:18:45.238000',5,'Jessica Davila','https://lh5.googleusercontent.com/-5AyzzikoTRg/AAAAAAAAAAI/AAAAAAAAAAA/yL8szyLp9oE/c-rp-mo-br100/photo.jpg','16891069708558046635',4424),('AIe9_BHR7p0hPy1flx1br0TYdEUBjg4pvUPB93Gb_Br0PzALxa9XdxTV4xnUJ3A-gmkmyDlGgj7ASwG9dTS-Eq5m6ds2g79MGe73kdxnd33bFF8HzFYvNCA','From the moment you walk in they treat you with such kindness and respect. I went in for a ruptured ear drum and was in so much pain. They explained everything to me in such a caring way. Dr. Smith and the nurses were all so wonderful. I am so glad I choose to go their instead of some hospital. Thank you for taking care of me.','2019-09-28 02:49:42.084000','2019-09-28 02:49:42.084000',5,'Negin Reihani','https://lh3.googleusercontent.com/--hJBk2zD-qM/AAAAAAAAAAI/AAAAAAAAAAA/Sfs7a6qwMIs/c-rp-mo-br100/photo.jpg','14904078213800803294',13683),('AIe9_BHR7p0hPy1flx1br0TYdEUBjhEd7fCHfqb4fllh7U-Lal18NoX2r5VhJeZb2j17Bn8jV_1dNtrVkibVRMcE5y6tEgQD0sLkxv5y6W3S4uMqLEeEViI','Great staff and an amazing doctor. Would recommend and I will for sure be back is ever sick again','2020-03-13 17:04:31.013000','2020-03-13 17:04:31.013000',5,'Dermont Laws','https://lh5.googleusercontent.com/-wvQTWp9rF40/AAAAAAAAAAI/AAAAAAAAAAA/sN6C3umwwLY/c-rp-mo-br100/photo.jpg','14748677429039074158',18841),('AIe9_BHR7p0hPy1flx1br0TYdEUBjhLPFdkZvLLlnEdlZOuaEcc0HzItHo_8sVAkwfrIJiSTe6a68fyoISxOdfL62CmCK430QJfcIi17pr8Bz_g5GNXDxJE','I\'ve visited this location twice now...once for a sick baby and just a few days ago for myself. Both times I was seen almost immediately and given incredible care. Everyone working here was so kind and answered all my questions. On my visit a few days ago I came in with abdominal pain and was soon given pain relief while they tested me. It turned out to be appendicitis and while they called a surgeon to come see the CT scan results they moved me to a bigger room and made sure I was comfortable until they transferred me to an ambulance that evening. I can\'t say enough good things and I would definitely go back (I\'m sure with 2 small children I will be back soon enough)!','2016-06-10 20:17:30.763000','2016-06-10 20:17:30.763000',5,'Kelin Ward','https://lh6.googleusercontent.com/-4c2WA1AB8Hw/AAAAAAAAAAI/AAAAAAAAAAA/A0NGF9Tomwk/c-rp-mo-br100/photo.jpg','14567670160750071148',2022),('AIe9_BHR7p0hPy1flx1br0TYdEUBJHUuncJ_8Af2UrXwGqEE32IA9RH1mgWdj_ywXk6UeJnbER0BYQYwvKZBN-7fnaSlcMKHOylCrzjhvioP1Rp7v6zaXBM','O\'Malley,Tricia,ALVEAN VERY INFORMATIONAL,CARING I WOULD RECOMMEND THIS FACILITY TO ALL HOUSTON TEXAS RESIDENTS AND OTHERS VISITING.','2019-12-11 13:20:38.044000','2019-12-11 13:20:38.044000',5,'Evette 45 Evette','https://lh6.googleusercontent.com/-NHaest1q5NY/AAAAAAAAAAI/AAAAAAAAAAA/rvJGIe5YVrs/c-rp-mo-br100/photo.jpg','16389487648212004696',2557),('AIe9_BHR7p0hPy1flx1br0TYdEUBjTQ06GAyeh7vmnVQvzIIs0Q7GdjWBlmYJPhlWqIMwbnytnbPR06PNbPRMp8lFcCj5DPUtBsQZZ-oVQGWjnrD_vN4LBg','I’ve had great experiences here and the staff is amazing! Thank you Alyssa for being so fast at check in. 🙃','2019-08-29 14:20:47.774000','2019-08-29 14:20:47.774000',5,'tayler evans','https://lh3.googleusercontent.com/-VfVt5TNvb-w/AAAAAAAAAAI/AAAAAAAAAAA/0FKhnkXiZs0/c-rp-mo-br100/photo.jpg','8918455867446117794',9073),('AIe9_BHR7p0hPy1flx1br0TYdEUBJY2K5YsVouNL417HEbGlgDY81SdGDXBMYGOBo3xDQxVo472al4lgtE0ryGVqfjE0tcIflrhO_3n2-G1gtZ79W3UhYP0',NULL,'2020-03-05 11:58:11.724000','2020-03-05 11:58:11.724000',5,'Nichole Granado','https://lh5.googleusercontent.com/-9SbRv30VPxc/AAAAAAAAAAI/AAAAAAAAAAA/B3G1jIkWesU/c-rp-mo-br100/photo.jpg','13486358490203335051',20931),('AIe9_BHR7p0hPy1flx1br0TYdEUBk_2DPjdL2oKpC1sAZuFoZENtURlxRlv3br2N4bQykuguMuosJ-M0SAfCR0vEfL6VmH1fPDStu0680R6tAOFrIlBbc7E',NULL,'2018-12-19 21:28:42.714000','2018-12-19 21:28:42.714000',5,'Haver2323 colton1414','https://lh3.googleusercontent.com/-wqRFU4NwEvI/AAAAAAAAAAI/AAAAAAAAAAA/OnwRxYgQdrk/c-rp-mo-br100/photo.jpg','17898197009688164559',5910),('AIe9_BHR7p0hPy1flx1br0TYdEUBk-asvZCs0a1gIPGP-txDhPbZxC3EJCNku9cIpKxExv-L2klWoMg1ZduEkaeD2ZR50d9_3pjUIi3wP2CWUM7JmZGoGdY','While the wait was long, I was okay with it because nurse was personable, kind, and caring! The facility was very clean which is very important. I would definitely return and recommend!','2020-07-08 23:26:30.765000','2020-07-08 23:26:30.765000',5,'Amy Schneider','https://lh5.googleusercontent.com/-WzIfarG38mI/AAAAAAAAAAI/AAAAAAAAAAA/fCAR_t5v3jI/c-rp-mo-br100/photo.jpg','14748677429039074158',21380),('AIe9_BHR7p0hPy1flx1br0TYdEUBK1z7nZbI5FpyMBwhKgoCJolk30BOqhOonHArRlFpjmK8YjiYz09QYcUONqwN9Pilto2iDEYmqj3UfkfRTa-5VruXZek','I like coming here. Facility is very clean, staff always approachable and kind. I\'ve had to come here 3 times and all there were good experiences.','2019-12-27 21:19:23.161000','2019-12-27 21:19:23.161000',5,'Nakisha Mitchell','https://lh4.googleusercontent.com/-2CWeyOXqphI/AAAAAAAAAAI/AAAAAAAAAAA/OPKqgxemf7g/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',14064),('AIe9_BHR7p0hPy1flx1br0TYdEUBK22GFvdgft6Rkw_0SYos_2_mpVvm0rP7821NtlTKmmnZyYFtke_kat5tUXavjKkEqYzcDAxadDrXb3sSeBxc560FhzM','Very professional and FAST!','2018-09-16 21:43:17.681000','2018-09-16 21:43:17.681000',5,'Brenda Andrews','https://lh5.googleusercontent.com/-WL38hIC-NRQ/AAAAAAAAAAI/AAAAAAAAAAA/vsFHZ_JzlFg/c-rp-mo-br100/photo.jpg','3511292162159714121',7595),('AIe9_BHR7p0hPy1flx1br0TYdEUBK3xYRKhVuanyekY0cjZQrurTv8OUNisTYrH7tR_SumFoUaTjq8fYhUauYgtwNt5p1As3iU1o1DxfxVCIbJ7-N2lc6ao','Such a great facility!!! Leslie was very welcoming and great . Olivia was very friendly and nice . My nurse Gina and Dr.Yusuf were very caring and informative!!!','2019-01-16 19:46:17.279000','2019-01-16 19:46:17.279000',5,'Jose Flores','https://lh5.googleusercontent.com/-9N4TgvhzxCg/AAAAAAAAAAI/AAAAAAAAAAA/PUQwy-cdbu0/c-rp-mo-br100/photo.jpg','3511292162159714121',7471),('AIe9_BHR7p0hPy1flx1br0TYdEUBK4Eob1z0QoxC6Nj492SnjooWxW7kectJ1mYKFGgFxUJOBmPbKSxsPfkDDTzDvAlVqOeyFVfBFLmofOQdQt3iVPxTtLE','Today was my second time having to visit here. No one wants to ever visit an ER but the staff here were very courteous and respectful which helped make both experiences as easy as possible.','2019-10-15 18:52:17.943000','2019-10-15 18:52:17.943000',5,'Nathan John','https://lh6.googleusercontent.com/-iazvmU0fCv0/AAAAAAAAAAI/AAAAAAAAAAA/AWWdzkTm9BY/c-rp-mo-br100/photo.jpg','16590124370714063921',3138),('AIe9_BHR7p0hPy1flx1br0TYdEUBK77sZe0uD0VtZIWYeGCHs1NcMJOZka2PphXR9zbyAKcHLatHpxYyfJhfYJbljDeSzIFkJPj57GrA7AlrYjr0NbK9fiY','Nice staff, very polite and professional. Broderick R and Elisa T helped us and gave us everything we needed and informed us on what we needed to know.','2020-07-29 06:31:39.954000','2020-07-29 06:31:39.954000',5,'Julianna Tesfay','https://lh6.googleusercontent.com/-ZbbdbLkEnEQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm8ovCvCR2cAaq544OojKbs9otw0w/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22278),('AIe9_BHR7p0hPy1flx1br0TYdEUBkbUxUjEwAcXrN9vk5ox_ljX4q-igtU9B0xfs0DOx3f4M0Ye40DpoKVnZ5-XNIe7JWkif6qj8G15gehxDvWMzvgQqI4w','Setup was easy. Came in did my paper work waited in my car. Within a little over an hour. I was seen by the ER Tech Erin. She took away all of my fears. The COVID test did not hurt at all. This is fastest and easiest place to go to get tested for covid and one of the only places opened 24 hrs. I made a 7:30pm appointment and I am leaving within a reasonable time frame.!Great staff','2020-07-28 02:48:06.753000','2020-07-28 02:48:06.753000',5,'Goldie Bailey','https://lh5.googleusercontent.com/-5eXLdH_K43M/AAAAAAAAAAI/AAAAAAAAAAA/XWCZMYrih6w/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',22546),('AIe9_BHR7p0hPy1flx1br0TYdEUBKDCi2rDEtVrQFhA8ByZJe5QkL5_GJkHMv1M4g97AGsghAMUsH3MZcOMqQ62gqzQ3Ys17sSQMqG_BVS0JxFLAEmo3qGU','Very helpful and informative','2020-08-05 13:13:04.583000','2020-08-05 13:13:04.583000',5,'Alex Ledezma','https://lh6.googleusercontent.com/-befKaF6jAmA/AAAAAAAAAAI/AAAAAAAAAAA/ZhWwA6aiR4U/c-rp-mo-br100/photo.jpg','2077061009497551125',22730),('AIe9_BHR7p0hPy1flx1br0TYdEUBkKe002Y-YgrD2ITqXcgpMyW8d4804K9gDcn8BxiwZ55M5lw6wXBYVn1qKsAnCsN18aWkSq5UIsPfdBS39qMd51X8S6Y','Patel, Sarah, Fatima, Daniel and Tanisha I just want to say Thank you. They attended us beyond Excellent and we\'re super nice to my family and I. I want to Thank you for everything you did for us, made us feel comfortable!!..','2019-12-09 16:48:15.636000','2019-12-09 16:48:15.636000',5,'Michelle Garcia','https://lh6.googleusercontent.com/-ZqRCiCN-lqc/AAAAAAAAAAI/AAAAAAAAAAA/3782fnduOdg/c-rp-mo-br100/photo.jpg','17898197009688164559',5367),('AIe9_BHR7p0hPy1flx1br0TYdEUBkL9aiizxvv1M6APs01s2qWGiSnbjGofU7H6fC1C_3QubfTqt25XEXcdVWsv0MDQzP4VoF0dLMd3WhqEq_tr67xXLbiU','Great experience really made my child feel safe and okay even gave him a bear! Nurse Alvean, patrica c and doctor Nguyen are recommended.','2019-12-20 20:36:31.572000','2019-12-20 20:36:31.572000',5,'Chasity Salcedo','https://lh5.googleusercontent.com/-Yio-xy2_XvE/AAAAAAAAAAI/AAAAAAAAAAA/JSIrB33d77Q/c-rp-mo-br100/photo.jpg','16389487648212004696',2520),('AIe9_BHR7p0hPy1flx1br0TYdEUBKl9NE9dRQmG1CB6vf3pf_UXASrufV2L9TJA2-_Ea8butWr_wV95iLyY6b4GJHCFVeAm4zRUxaduWRU72O9GUdaA1DF4','No wait.','2020-03-01 22:58:17.870000','2020-03-01 22:58:17.870000',5,'Cheryl Smith','https://lh5.googleusercontent.com/-zD6ar_M45qM/AAAAAAAAAAI/AAAAAAAAAAA/5_k2fYeCXd0/c-rp-mo-br100/photo.jpg','2694018788013845459',16998),('AIe9_BHR7p0hPy1flx1br0TYdEUBKObsMBtQqe6n-LcxawFKAEaV0CA7teUM3jVXTrAShkIYzfDe497ciB_yNg-ShhOzXbSXEZZxjAnUC8TvuJjmZoVBjZA','This was my first time visiting the EC. Wonderful staff, great hospitality, and awesome M.D.','2019-10-25 14:34:53.773000','2019-10-25 14:34:53.773000',5,'Bridgette Harris','https://lh5.googleusercontent.com/-o8GgyPDagiU/AAAAAAAAAAI/AAAAAAAAAAA/gDrWf3Iywwk/c-rp-mo-br100/photo.jpg','16389487648212004696',2773),('AIe9_BHR7p0hPy1flx1br0TYdEUBKoWensVzseJ81QI6aTQV-OinMojoOK1lHCHetd0xgVikDtP-pog7SU31Ml16thIoylBhLo8W8T-h_TcMkjpVmgD86XQ','I had a great and super fast experience at this location... Everyone is friendly and they are willing to work with you if need be. I would definitely recommend this to friends and family in the area','2019-12-20 17:20:59.638000','2019-12-20 17:20:59.638000',5,'Brittany Young','https://lh6.googleusercontent.com/-DFodUyzF5CU/AAAAAAAAAAI/AAAAAAAAAAA/MIYK9cOlad8/c-rp-mo-br100/photo.jpg','16891069708558046635',4106),('AIe9_BHR7p0hPy1flx1br0TYdEUBKpuDmwyNfk5PPO-m7ftFbm3i4L76wllvAq1Z8WOlx5vRKj-iO_M2yoG09eEFr2z6yW3F4tHbfA2KjPyWDj5JO2a6XWU','Dr. Elsbecker (Physician on staff that day), Christina R (Nurse), Tina (Radiology), and Christina C (Registration) were wonderful. My husband was in-and-out very quickly for a procedure that needed to be done there. We are incredibly grateful for the staff and beautiful facility. THANK YOU, THANK YOU!!','2018-07-25 16:14:34.521000','2018-07-25 16:14:34.521000',5,'Christy Johnson','https://lh3.googleusercontent.com/-IR5Ei3O_1EM/AAAAAAAAAAI/AAAAAAAAAAA/_2oLi-XM9ko/c-rp-mo-br100/photo.jpg','16891069708558046635',4457),('AIe9_BHR7p0hPy1flx1br0TYdEUBKS2u8QEMH_Bl4tEDf4HBfJ2n3dSTQaAfIsSh5D2NHCWmAqiRvUOoP9OkgGRGtQVFZ6YRkiZAchuheKWMvbSR6Hl6y5M','Dr Jones Lucas Kim and Sherri did an amazing job taking care of me!!!','2019-02-18 20:02:39.976000','2019-02-18 20:02:39.976000',5,'Courtney Brewton','https://lh5.googleusercontent.com/-4eOPXbzRH2k/AAAAAAAAAAI/AAAAAAAAAAA/6ukTCFTTxbc/c-rp-mo-br100/photo.jpg','3272657195432704501',7008),('AIe9_BHR7p0hPy1flx1br0TYdEUBKXR3mUz1Rh0YpmhMbnoIFRnAQMOF6R-A0kYFi2VVPPW21eWNxttDwZJjh3acPrwcVa7Ddn3-ed4J1MbyVq-hn5yYj9k','Lisa H was awesome so was Kristina the nurse and Patty the Rad tech👏','2019-09-29 14:27:34.610000','2019-09-29 14:27:34.610000',5,'Jose Barrera','https://lh5.googleusercontent.com/-OcpeYCchk3E/AAAAAAAAAAI/AAAAAAAAAAA/6l_4ifADzxU/c-rp-mo-br100/photo.jpg','13486358490203335051',802),('AIe9_BHR7p0hPy1flx1br0TYdEUBl3oDQncCBWk8SGNL0MJ7HXi_cXAHMkRqWyeKB4iTTOBHCuGPnlOuHuYgGZoLyqBwoMLb8kZhOcfV9YoR_MbNyIIIS_Y','The facility is very clean and the staff is very welcoming and accommodating as soon as you step in. The staff offered me a warm blanket and a cool rag while I was waiting in between lab results. Overall a very good experience while I was feeling under the weather!','2018-06-05 17:21:25.743000','2018-06-05 17:21:25.743000',5,'Samantha Swanson','https://lh4.googleusercontent.com/-G1gvkiTdlEg/AAAAAAAAAAI/AAAAAAAAAAA/uXruTTXj7bI/c-rp-mo-br100/photo.jpg','16590124370714063921',3820),('AIe9_BHR7p0hPy1flx1br0TYdEUBLbDNrW_VXNynyZsoezRTP9MsC8OWEOtI7Xd0UAXTWyhRIYYC6IOitcHHgm7LkYg_mRYOnsg0QLOdMfAXz1TpLXalXbI','Everyone was extremely welcoming and kind from the moment I walked in until I checked out. The Doctor was extremely thorough and friendly and so were the RN’s. Loved it here! Thank you Rashaad for the great customer service and the kindness','2020-02-28 06:59:11.525000','2020-02-28 06:59:11.525000',5,'Nida Sid','https://lh3.googleusercontent.com/-E5zs09EHy40/AAAAAAAAAAI/AAAAAAAAAAA/EDurHAbFKc4/c-rp-mo-br100/photo.jpg','17394740196501090048',21077),('AIe9_BHR7p0hPy1flx1br0TYdEUBLbNjT0weo5KcVWNaT2CBcrNA5caI65J0juJjkKalrrTkkzTjtCL61C_NIl5A2TgNxlVi9GMmilXEWtoyaqsez2-XECU','Last Saturday I came down with flu-like symptoms and was taken here by my wife after the family, including a daughter who is a pediatrician, insisted I go to the ER. We chose this one and I\'m glad I did! Excellent caring staff who tended to all my symptoms well! Turns out it was strep infection and my severe asthma. Thanks for your prompt care!','2018-02-07 14:08:48.296000','2018-02-07 14:08:48.296000',5,'Poppa B','https://lh3.googleusercontent.com/-Lr8osMlo64M/AAAAAAAAAAI/AAAAAAAAAAA/HmIkCMA54SU/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9291),('AIe9_BHR7p0hPy1flx1br0TYdEUBLcMwHjW_tg_QVnMDmzS5LcQWcbvPKfhInHU9UBqya2eeWGnxotGEBQo32QYaWXneQuLr2uvMvAKZD5hqqg7FUW_cl6Y','The staff is AWESOME! Tanishia W. is always welcoming and I must add a friendly approach to patents!','2019-02-27 05:20:50.009000','2019-02-27 05:20:50.009000',5,'Cicely Jacobs','https://lh5.googleusercontent.com/-Yp1QrbJMYcg/AAAAAAAAAAI/AAAAAAAAAAA/c2Iv0MgHVYY/c-rp-mo-br100/photo.jpg','17898197009688164559',5831),('AIe9_BHR7p0hPy1flx1br0TYdEUBLcRc7BQRu0N49GeA6aX9iMLxyw_PRZaF8zOqEm3KJBKhagjztjYna1B28VXzGqbWGDsjc8_Rn6caiDSMEos49UhBmLE','Dana H., Kimberly P. and Ricardo C. took great care of my daughter!','2019-10-15 19:29:11.922000','2019-10-15 19:29:11.922000',5,'Cathy Darrell','https://lh3.googleusercontent.com/-wupnR29HPPg/AAAAAAAAAAI/AAAAAAAAAAA/L8KDnMBzbuM/c-rp-mo-br100/photo.jpg','14567670160750071148',1217),('AIe9_BHR7p0hPy1flx1br0TYdEUBlCTfK6e09i_zhF4CRu5wo1uTYZlwiWfY7fOSV_jzbwGEjO7I81HbjB6Hj0mewsW_NMVGVSp-B3qy7RKaHS8ZmuGZkMU',NULL,'2020-01-05 05:22:44.892000','2020-01-05 05:22:44.892000',5,'Karis Miller','https://lh6.googleusercontent.com/-eP7Ikr0Jreg/AAAAAAAAAAI/AAAAAAAAAAA/7w71HwYV1DY/c-rp-mo-br100/photo.jpg','16590124370714063921',2988),('AIe9_BHR7p0hPy1flx1br0TYdEUBLElCSkclSz6uTxfCloP6yWAx8tMS_wausMctfKLPbhm8WFmPRgGo2ewN_mYryKvN7doQHQk1-5Yi9dyfTT5tRr3PhnM','Dr.Thuy, Alvean, And Patricia were all great to me. Offer me a warm blanket, drink and made me feel comfortable, and most importantly they listened and helped with my problem. Thank you guys so much.','2020-03-03 18:44:22.191000','2020-03-03 18:44:22.191000',5,'JaVionne Jones','https://lh4.googleusercontent.com/-XbWXeRuYq88/AAAAAAAAAAI/AAAAAAAAAAA/CLEv5dMABeY/c-rp-mo-br100/photo.jpg','16389487648212004696',13742),('AIe9_BHR7p0hPy1flx1br0TYdEUBLG19BBqJiuIDZObKbFJQG7w2AF7hng54qkttE1I5e2apXrkNvShUlfPKWp9zj0RPNgtbl-C1sY7dTC5cdseYFEdBRCU',NULL,'2019-06-21 01:54:59.817000','2019-06-21 01:54:59.817000',5,'Lauren Taylor','https://lh5.googleusercontent.com/-CtAZmHWhx5c/AAAAAAAAAAI/AAAAAAAAAAA/auGHfhGJ4Vc/c-rp-mo-br100/photo.jpg','13486358490203335051',947),('AIe9_BHR7p0hPy1flx1br0TYdEUBLghrSxnwghylf97Q3ReWj9LkLuX9iAza3V7TJrynGorMt6pyTBBu22CnHE1qjvFEa44eOJN5H1qRPE6rIHLb6z_fdt0','Fast service. Everyone was nice.\nDr. Patel\nAlvean\nTricia B\nPatricia C','2019-10-24 17:25:14.002000','2019-10-24 17:25:14.002000',5,'Teairra Richardson','https://lh4.googleusercontent.com/-zNIZKW595lE/AAAAAAAAAAI/AAAAAAAAAAA/GMJLNUuW4Oo/c-rp-mo-br100/photo.jpg','16389487648212004696',2781),('AIe9_BHR7p0hPy1flx1br0TYdEUBlI9DQKE3_AOwhIKYlVrUzMB0nU3dTo5BOy41N1pPZr5kLgCJHnTWBUmtuBE7SOCkGvlEAQjJIdao_WUyDvFfkSory_k','Staff is extremely nice and helpful!','2020-07-18 02:21:26.362000','2020-07-18 02:21:26.362000',5,'Lyzette Brockington','https://lh4.googleusercontent.com/-lCNF6haywXo/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn15vw-AdcLVOezWqT4VisldNOv6w/c0x00000000-cc-rp-ba3/photo.jpg','13486358490203335051',21850),('AIe9_BHR7p0hPy1flx1br0TYdEUBlpqznkjKHhOieZznTgnp8ABu46SRsRg2l1L1qHTq1PLovqL5VeCaCnw6jfmwxKZAdtUBFMzF3R6lRb8-4mh7YFUyrh4','I cut myself pretty badly at work and was taken care of quickly. Everyone was awesome and helped me calm down. Clean facility too! Definitely recommend!','2019-05-13 19:00:53.106000','2019-05-13 19:00:53.106000',5,'Karen Lopez','https://lh6.googleusercontent.com/-TGZTCP3ijwk/AAAAAAAAAAI/AAAAAAAAAAA/UF1SHI1IBJ8/c-rp-mo-br100/photo.jpg','17898197009688164559',5740),('AIe9_BHR7p0hPy1flx1br0TYdEUBLQlzWboU5zwnsZ-A0RkAIm4-7L2o_UqQNYtrbYMRucYBBVjZhJahW375J5eTYB_fnJv1yUxlf--5jWluNaingDp074I','Great patient care. Very clean and efficient','2019-07-17 18:47:30.453000','2019-07-17 18:47:30.453000',5,'Alexis Gooch','https://lh5.googleusercontent.com/-vXffLC7ETTY/AAAAAAAAAAI/AAAAAAAAAAA/bi6bZheBKps/c-rp-mo-br100/photo.jpg','16590124370714063921',3290),('AIe9_BHR7p0hPy1flx1br0TYdEUBLU9Yu3kBSSD9U2q7MifhnNL-0883W9ETcjZQ-gr0yCd-Tws6_Dg4alsqSiYD0uu4uSuOF8oDTi_NmzpoN6Bz_iJVyes','Great visit. Dr.jones, Brenda, Calli, and Nicole were really friendly and helpful. I would recommend a visit if you need good service from good people','2020-08-08 14:53:11.737000','2020-08-08 14:53:11.737000',5,'Armando Fernandez','https://lh3.googleusercontent.com/-1VcQvw_v0sE/AAAAAAAAAAI/AAAAAAAAAAA/5lMjVmM3OiQ/c-rp-mo-ba3-br100/photo.jpg','2077061009497551125',22721),('AIe9_BHR7p0hPy1flx1br0TYdEUBlWOmChoMPxYpc22mHGDPicc4B6YtK3ni-qfN12_bb5sTIYg83qCVvzTTU0M9HjoKj68Avnftrdk60besaVLvkY7YPVM','Lisa at the front was very kind and helpful. Over all the entire staff was great and kind.\nWill come back if needed.','2019-01-16 14:35:20.121000','2019-01-16 14:35:20.121000',5,'steven kendrix','https://lh6.googleusercontent.com/-XToHwP53jUw/AAAAAAAAAAI/AAAAAAAAAAA/Nu3zMQlPMmU/c-rp-mo-br100/photo.jpg','6521947413723274945',8325),('AIe9_BHR7p0hPy1flx1br0TYdEUBlXBfXPBI4Bdg68QZIjozyfR9cIsuOa9yoVXWJTyJtOlO6FLdpObgXb7uTb2ICn7JkxO3y5V43Cwb_SlBEUKX6YOAXxE','this is my second time at this facility and as always, I\'m thoroughly impressed with the friendliness and professionalism of the staff here I feel like a person not a patient. Highly recommend','2019-01-27 23:57:52.740000','2019-01-27 23:57:52.740000',5,'Brandon Akridge','https://lh4.googleusercontent.com/-NweD-pdN1_U/AAAAAAAAAAI/AAAAAAAAAAA/clGiiymjgck/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7446),('AIe9_BHR7p0hPy1flx1br0TYdEUBlZC8EhjTvJFMGsFzs8i6IVEZ-UGY9Prmzfrf8VuhBg6hMS_2c4RvfmJ5LPDf26hig99IpQW9qdPUJXqGbtCxmv5Nrnw',NULL,'2020-02-04 16:11:18.608000','2020-02-04 16:11:18.608000',5,'Anthony Rice','https://lh5.googleusercontent.com/-TCtQVlUeqR4/AAAAAAAAAAI/AAAAAAAAAAA/d8aXTPzAdjg/c-rp-mo-br100/photo.jpg','14567670160750071148',13563),('AIe9_BHR7p0hPy1flx1br0TYdEUBm-4XhbRe91Rl4cUu0OCAVEYkZZNwC0aaNyAOunMcNC7Fx8nREImoRg8D9gunGzcPWe1inuJQaLr_fJXbAJppC7RO4i8','Best place! Everyone is very polite and friendly. Would highly recommend for anyone wanting quick and eficiente service. -Benjamin','2020-07-29 03:08:31.691000','2020-07-29 03:08:31.691000',5,'mayracruz1980','https://lh5.googleusercontent.com/-ciWzNNz0T1s/AAAAAAAAAAI/AAAAAAAAAAA/XX2t-bxMhVM/c-rp-mo-br100/photo.jpg','2077061009497551125',22775),('AIe9_BHR7p0hPy1flx1br0TYdEUBMAJCzYGr5XvLIvDqBknf4BiT5kYIabgpmFfh_TrHNubigEtPk3yNIWtrkn7TfIFvVmAB7RHyhiRzmPTE6Uj-9olfR3U','My mother wasn\'t feeling well, she had high blood pressure and other symptoms. From the moment we got to emergency center we were greeted by Tanishia very kindly and efficiently, we did not had to wait and were attended immediately. The staff in general was very professional, and Dr. Henderson was very reassuring. We actually felt very comfortable and grateful that we ended up in such a high quality standard facility. I definitely will recommend this facility to my family and friends. Excellent standard of care!','2019-02-20 23:01:50.599000','2019-02-20 23:01:50.599000',5,'ivan acuña','https://lh6.googleusercontent.com/-yjEyKbVhNEs/AAAAAAAAAAI/AAAAAAAAAAA/8aHYv3JePM0/c-rp-mo-br100/photo.jpg','17898197009688164559',5842),('AIe9_BHR7p0hPy1flx1br0TYdEUBmC85jB_nZubWQsHjgRdNs9wYyqgm38mFdRXlEMwlBKNquShKKYi3GKIITqyx3-V4T48CA5nw6hskQQC9h5onSJaosMQ','I had a really good experience with everyone that attended me! I would highly recommend this place to all my friends and family.','2016-10-21 15:43:34.782000','2016-10-21 15:43:34.782000',5,'Abigail galvez','https://lh4.googleusercontent.com/-Y0UxMYnN0MI/AAAAAAAAAAI/AAAAAAAAAAA/PrydTQNm86M/c-rp-mo-br100/photo.jpg','14567670160750071148',1956),('AIe9_BHR7p0hPy1flx1br0TYdEUBMdnWf5D1q-ecRH4xGcKXpQUc5V0GeuCjpUiTpBB4GgFhX9VSLRsvlPrXh0kbFNJybYHnLuL7uemh9lRla49wxPdj6x4','Dr. Dsiecki along with the staff took great care of us and was in and out quick thanks to senida, Ashely and Delpha.','2019-07-19 04:36:47.775000','2019-07-19 04:36:47.775000',5,'Matthew Zubiate','https://lh5.googleusercontent.com/-qVSy0HX4_XM/AAAAAAAAAAI/AAAAAAAAAAA/eF5G1FaFuuA/c-rp-mo-br100/photo.jpg','6521947413723274945',8189),('AIe9_BHR7p0hPy1flx1br0TYdEUBmEEyCMOK3EqFIEPH46jwQuaESnXJAOIE95xFRWPJ9q0_YDCA6yTsltn2hQQjT37XkFkQadCUW0Hr70qsejcFRHljhCE','Signature Care in Lewisville, Tx. Is amazing they take very good care of their patients special shout out to Kevin for taking special good care of me. COVID-19 NEGATIVE!!','2020-08-18 15:41:57.742000','2020-08-18 15:41:57.742000',5,'Kalen Etheridge','https://lh3.googleusercontent.com/a-/AOh14GhYZrOix5Dy46MbixKDCImIUMif3v7NP2G5C5qKdw=c0x00000000-cc-rp','14748677429039074158',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBMinSn6RqPlyLiKyysRxq6bx6cRmyuPzdm-o-cEk-vIVsUt8APUOVwxJcDITSabaA3H3tNTaEKKsQhkhktZU9v7AvRds','Very friendly, best service I\'ve had yet. The snacks and drinks are very convenient no charge for the snacks and drinks! Very easy and simple.','2019-10-30 18:41:38.604000','2019-10-30 18:41:38.604000',5,'Jeff Sheets','https://lh4.googleusercontent.com/-hwE7RE5y-yY/AAAAAAAAAAI/AAAAAAAAAAA/jsXlBV3T4wM/c-rp-mo-br100/photo.jpg','16891069708558046635',4168),('AIe9_BHR7p0hPy1flx1br0TYdEUBmIvoCINhUPgJADYWkVddZ2vNnFvKnwEryH0fkVe-AFWB-Q_I4gXi1_txeg8WTyLvyFJscwTbPlZtLbKGl-DQ8gSqfaM',NULL,'2019-05-15 15:12:07.425000','2019-05-15 15:12:07.425000',5,'George Sampson','https://lh6.googleusercontent.com/-4pCFNTdVfYo/AAAAAAAAAAI/AAAAAAAAAAA/jz7uh0rpYnc/c-rp-mo-br100/photo.jpg','17898197009688164559',5738),('AIe9_BHR7p0hPy1flx1br0TYdEUBMJesEVv-G9zoXMNonksD8gR2Ct1CnfGOLYE4Up3MBAB8Hxb28JypQxHBU2XmQjoXGtHhLyu39ZdN_Qh0LrE3hQJk6os','Great People everybody nurses doctors and assistants were very nice.','2018-01-22 20:21:10.109000','2018-01-22 20:21:10.109000',5,'Alvaro Cabrera','https://lh3.googleusercontent.com/-WN-IF01OqkQ/AAAAAAAAAAI/AAAAAAAAAAA/RxfVeh0shMQ/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',4895),('AIe9_BHR7p0hPy1flx1br0TYdEUBmn1Jx82zQSeWq2VjrGQBwcKFW_0QqBvZP9-iQPppREuxntbSSS-hOTw4tNb_7Zbk4s7892w6f6B4RcTuDSkLhiBuP1I','Our experience was unforgettable. Staff was very caring, helpful and attentive. I have recommended your wonderful services to all my family and friends. Thank you again for taking good care of my mom at a crucial time. I\'m forever grateful.','2019-04-02 03:26:24.393000','2019-04-02 03:26:24.393000',5,'Melissa Cabrera','https://lh5.googleusercontent.com/-MKyTVnB1Diw/AAAAAAAAAAI/AAAAAAAAAAA/9kumIDR9EEA/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1354),('AIe9_BHR7p0hPy1flx1br0TYdEUBmo0-BgsxU6d5vzPhaLgCJE_4YFr8FoXwC4hJhDkFAPiOKdNMgJpyzQk2tTkytmBAbWb-rMgP9UzGMdM_y_WlBS2ynao','Came at 3am for a laceration. Dr Sylvester and his staff were all really nice and helpful, especially paying mind to cost and insurance concerns which is greatly appreciated. Couldn\'t have asked for a better experience for a midnight emergency. My first time writing a review cuz they deserve the 5 stars. They\'re open 24 hours btw. And they took my Obamacare marketplace insurance (united healthcare EPO). ','2016-12-21 10:52:57.939000','2016-12-21 10:52:57.939000',5,'Anon ymous','https://lh3.googleusercontent.com/-RXkfjZ1OtGk/AAAAAAAAAAI/AAAAAAAAAAA/MhFWotWGgmU/c-rp-mo-br100/photo.jpg','3511292162159714121',7913),('AIe9_BHR7p0hPy1flx1br0TYdEUBmoBDmWxmRgohYEyAOX_HubRdmOTTXwvCxYIEuM-UEhnG4uFCtGyomcxR4_n-nNLUhc6Cx000u-ewRK-DcNo5n2fHkrI','I was very well taken care of by Alvean, Tricia, Natalie and Dr. Farooqi. Walked right in, was triaged immediately, always felt comfortable and was able to laugh despite the pain and anxiety I was feeling!','2019-11-01 14:36:36.057000','2019-11-01 14:36:36.057000',5,'Maddie Murphy','https://lh5.googleusercontent.com/-5tgfN9k8Zlk/AAAAAAAAAAI/AAAAAAAAAAA/3tUwHP-IYs4/c-rp-mo-br100/photo.jpg','16389487648212004696',2741),('AIe9_BHR7p0hPy1flx1br0TYdEUBMOvuk6y6vWrihZruxMsi_KjQVKO9Pspd20Y7TfMr5wtNz5gRsH6ETP3mzRsrRxzhjbCzXM-GeyFz8b4VDqchb3mmgVs','We were treated quick with fast results. Professional as always. Best place to come in Midland when feeling sick','2020-02-10 17:44:52.143000','2020-02-10 17:44:52.143000',5,'Jade McLean','https://lh3.googleusercontent.com/-gljO_yh2ahI/AAAAAAAAAAI/AAAAAAAAAAA/DaHaOiTyk4s/c-rp-mo-br100/photo.jpg','13486358490203335051',13429),('AIe9_BHR7p0hPy1flx1br0TYdEUBMQvDCLXdaMLoc0V4ew7BtLk2jzsMO4_HbBOj5wfdutS6Wf3S4PmffflI913rMTma2rXUdjiw5VB6DompFu-M6WkJIns','Thank you for your care today to all the staff at Signature Care!! I will be glad to stay on my feet, but if I fall I know who to call! \nDR. HARJAI, MD, JOGESH \nMy Nurse: Jacob\nRadiology Tech: Nick\nFront Desk: Kendra Gray\nSpectacular crew!','2019-12-12 05:31:07.596000','2019-12-12 05:31:07.596000',5,'Chrissy Brannan','https://lh6.googleusercontent.com/-YzuJ4vGVCUA/AAAAAAAAAAI/AAAAAAAAAAA/xHRzPIMr4cs/c-rp-mo-ba4-br100/photo.jpg','16590124370714063921',3022),('AIe9_BHR7p0hPy1flx1br0TYdEUBMsymtZpxzRvIHG0n5gh1KhhdSW9sbe4KLNOPDVjbm23DB0EU5kdKCRS98SKu3hG-te2Z3raelFGIKWoxFGR0XZKDpyI','Have been waiting for 5 hours in line outside in extreme hot and humid weather to get Tested for Covid19. Poor management!','2020-06-27 17:02:34.924000','2020-06-27 17:02:34.924000',1,'Rasoul Pourebrahim','https://lh5.googleusercontent.com/-LKiP-Wx2mr4/AAAAAAAAAAI/AAAAAAAAAAA/m0vzi6g5kaU/c-rp-mo-br100/photo.jpg','8918455867446117794',21251),('AIe9_BHR7p0hPy1flx1br0TYdEUBmtG37IDT6KMrrg9lHUEW905x40J-cVXPJ38pXWe_i1AuEileave8MBg_fM_lkdTCPsAa1n7NoqNjJxmhAWedbRzTlrg','My experience at this emergency Center has always been great, everyone their are always so nice and work fast to help with any kind sickness I come in for. My recent visit was so great as well I want to thank everyone who helped me that day. I want to say thank you to Christina R and Ashli W for helping be as comfortable as possible, as well as Christine the ER Technician , I want to say thank you to Dr Elsbecker for providing me with everything that I needed to get better , Thank you to Christina K and Shaunda for making check in and check out fast and efficient and especially thank you to Adam P for always going out of his way to help in anyway he can . You guys truly are the best ! - Valerie . C','2019-12-14 03:16:17.246000','2019-12-14 03:16:17.246000',5,'toonanime08','https://lh4.googleusercontent.com/-xju_VTllpRE/AAAAAAAAAAI/AAAAAAAAAAA/8uw3ivLKgzI/c-rp-mo-br100/photo.jpg','16891069708558046635',4119),('AIe9_BHR7p0hPy1flx1br0TYdEUBmV4QV4X1uzMIcABMpnI8Mh49TOHA6QX-O_QHme_nufOeo8tpjoSv0-mCevMeZEgb-FfuU5kbD_8um_wbnAOYFWANdmA','I needed to get COVID testing done, so I booked an appointment online for noon. I arrive at noon and fill out my paperwork.\n\nI am then told to go wait in my car for them to call me. Meanwhile, the nurse is coming into the waiting room and calling people who were told to return to their cars. It’s utter chaos.\n\nI wait for OVER THREE HOURS. Meanwhile, people who arrive after me are allowed in to be tested. I go up to ask what my place in line is. I’m dismissed incredibly rudely by the woman working the front desk, who by the way, is not wearing her mask.\n\nUnprofessional staff, unbelievable wait times, and just a dehumanizing experience nobody should be forced to go through. \n\nDon’t go here.','2020-07-07 20:44:36.566000','2020-07-07 20:44:36.566000',1,'Evan Westermann','https://lh5.googleusercontent.com/-agsI5NuahXA/AAAAAAAAAAI/AAAAAAAAAAA/82oyG_6wWYI/c-rp-mo-br100/photo.jpg','14748677429039074158',21382),('AIe9_BHR7p0hPy1flx1br0TYdEUBMVrE_KqcWDf1_Y3s4foe-fX8c6GechagWRapbrYRLdeXw92vxzrE0bsa4bh0zm-4wbEGyXpltYglT3Mot8SUo7bEQKo','Everyone was so nice and caring, from the doctor and everyone I had contact with. The housekeeper gave me a warm blanket with a smile. Dr. O\'Mally my nurse Alvean A Tricia Jocelyn and Keith took exceptional great care of me. My boyfriend name is Keith lol 😆. Make me want to come back just to get this awesome service. I will definitely recommend this location. I\'m glad to have such good people as neigjbors!','2019-12-11 15:59:52.643000','2019-12-11 15:59:52.643000',5,'Lisa Perry','https://lh6.googleusercontent.com/-eodnSRZKAvw/AAAAAAAAAAI/AAAAAAAAAAA/uRG1JrX-eQQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2555),('AIe9_BHR7p0hPy1flx1br0TYdEUBmxi10v1VwZWLM-9zaXiGQn2iKRVywaCHOuI6f2a4U_m0oacqKk8-8jUNHNG0GCiE0drHfcVzV5zeXCyBEbcgR2b0VnY','Absolutely fantastic care given here. From Raven the registration person to Nurse Pam, to Dr. Pham, to Technician Nicole, every last person was genuinely friendly and you can tell they all really do care about you and making you feel better. I would recommend this location to anyone.','2019-06-15 16:16:56.505000','2019-06-15 16:16:56.505000',5,'Robert Craig','https://lh5.googleusercontent.com/-n7JDigk3CJQ/AAAAAAAAAAI/AAAAAAAAAAA/MhlFR8lqquE/c-rp-mo-br100/photo.jpg','8918455867446117794',9123),('AIe9_BHR7p0hPy1flx1br0TYdEUBmyWinf-Jeb6pwRw2a4w9NdZLnVAfYimERoXY4hZQiawV14ZU9Autc1mnlYPfIbtBIvk8jN7fS2ZAe0eOP1QkG9JXRJw','I would recommend this place to all my friends and family. It was very clean and nice. I didn\'t have to wait long to be seen. The facility was really nice to me . Loved it :)','2016-11-30 22:31:28.668000','2016-11-30 22:31:28.668000',4,'The Journey Of Finding Niysa','https://lh6.googleusercontent.com/-YQOGQcUjxgc/AAAAAAAAAAI/AAAAAAAAAAA/dfsTkXWuOiw/c-rp-mo-br100/photo.jpg','14567670160750071148',1939),('AIe9_BHR7p0hPy1flx1br0TYdEUBN55wtxUJ139Z1m-dpYSgEjy538QElFhUwvdN0gGW3ZjwKTNaUGJDR_aDGkSkuVKoJdVdUELmRbHPLW9eK38avV73oVs','Great people/Great care!','2017-12-15 16:52:06.593000','2017-12-14 20:00:33.235000',5,'Nathan Cohn','https://lh4.googleusercontent.com/-n22X7jh-pnY/AAAAAAAAAAI/AAAAAAAAAAA/W7mguvjWkaw/c-rp-mo-br100/photo.jpg','8918455867446117794',9324),('AIe9_BHR7p0hPy1flx1br0TYdEUBn77GUn1udJufHYcZf0OSJ9owDdpQ2Idnrw6GozuHUzos4zE6lxwtJdB2jddxa0dIkNVNS5oBb_ALoi9radgybixLZtA','I was greeted by friend staff and a nurse. I was braught into a private room and we discussed my problem immediately. I received my x-rays and ultra sound in a timely manner and both technicians were super nice and super awesome! Dr. Ashbrooks was an awesome Dr. and went into detail of my problem that was much appreciated! I would highly recommend them to anyone!','2019-05-04 01:47:48.786000','2019-05-04 01:47:48.786000',5,'Haskell Head','https://lh3.googleusercontent.com/-cRVwM5dY1QU/AAAAAAAAAAI/AAAAAAAAAAA/aQTm3WTdU_I/c-rp-mo-ba3-br100/photo.jpg','3272657195432704501',6968),('AIe9_BHR7p0hPy1flx1br0TYdEUBN7qULQZFHErmsQQ8S1vc847DiBO5mmWw2sDnrdBQCc9GHmXfnGwTzCAnZD14oUjf2VIDmdd2fffEW6eDftmngaASyBM','The staff of cypress location were so helpful and nice and very quick I was in and out in under 30 mins!','2019-06-07 16:18:29.239000','2019-06-07 16:18:29.239000',5,'Torrey Novak','https://lh5.googleusercontent.com/-asTqHXqgzzY/AAAAAAAAAAI/AAAAAAAAAAA/x7YzdCK3K6Y/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBNakb3nF0JgYQa7N0cKShTCDuNE_-aGzQPGpTlL1OXTqFqbpFA8fjIPnsSTKHL2CxdwtqOHiQkYgBcbkq7hs3a8dhTG8','After being diagnosed with a brain tumor approximately 3 years ago and having received numerous services at all the hospitals in the Houston area I have found that this Emergency Care facility was the best I\'ve been to, bar None. I\'ve experienced seizures, infections and other maladies unfortunately...hard to imagine but great staff makes poor health problems at the time go by more readily. I came into this Signature needing an explanation and treatment for my low left flank pain. Turned out to be a kidney stone, it passed, I didn\'t know it. The communication was top-notch, triage was fantastic, all aspects of customer relations and patient comfort/care provided was expressed/explained/given fully. They controlled my pain, my nausea, providing refreshments at the appropriate time, a CT scan, diagnosis and prognosis. I got a script for needed pain medication and all ancillary follow up documentation for work and my visit back to my PCP. All in 2.5 hrs. \nShout to Dr Jolly, Wang, RN Christina!!\nForget Hermann, forget MD Anderson forget Methodist, even though this place is not as big a name it was fantastic for what they do. Additionally and I can\'t stress this enough, they were kind, sweet plus damn outstanding!! Hurt me baby!! I missed some of the other people\'s names please forgive me, everyone was wonderful on this allstar team. I used to be a mental health therapist and I understand continuity of care quite well. I understand delivery of proper services. You should go to these guys if you\'re sick, plain and simple.\nGeoffry','2019-01-05 09:46:08.039000','2019-01-05 09:46:08.039000',5,'Geoffry Feinberg MEd.BA.AA.','https://lh6.googleusercontent.com/-p1V1M3BHbAs/AAAAAAAAAAI/AAAAAAAAAAA/-onzog39toM/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',576),('AIe9_BHR7p0hPy1flx1br0TYdEUBNCT6Ij8jEcBx9udjd7PwZ7hY1SG19B2rx9yDfOhaKNDmNfDBLdkvpHfGxCoPj3DTgzGAfwRENEyq-l6ftffQm136zf4','Great customer service very helping . Thanks to Kendra & Okatys , Nurse Gabe & Herry , Dr Daniels & Rad Tech Stephanie W .','2019-12-07 01:58:56.415000','2019-12-07 01:58:56.415000',5,'SHALYNDRA FREAR','https://lh5.googleusercontent.com/-pDbuatFQiUY/AAAAAAAAAAI/AAAAAAAAAAA/5ffD5D9WhDc/c-rp-mo-br100/photo.jpg','16590124370714063921',3048),('AIe9_BHR7p0hPy1flx1br0TYdEUBNDh_RDHbjIswNC9Bs5y2AF51PQkRmu1lMGPy3yH5ONwF2vkL9NUyMNiunpcMUr-ecekB3i9Aq24L69Q9yD-TSx72YSM','Fast service!! Friendly knowledgeable staff!! No waiting, I was in and out quickly. Very clean and comfortable, I would return anytime I need their service thanks!!','2016-10-24 21:25:38.774000','2016-10-24 21:25:38.774000',5,'Martinez D','https://lh5.googleusercontent.com/-CgUZyCHcEG8/AAAAAAAAAAI/AAAAAAAAAAA/_V_QVpqEF3k/c-rp-mo-br100/photo.jpg','14904078213800803294',2453),('AIe9_BHR7p0hPy1flx1br0TYdEUBnKW_cm2I1oX9P20D1TGf9oQyGt7Am-QYMCfx3Os9zwyyw2bvLyCv8XRvJ3_Heivt_UKVrrxuMVsnboqRsNeENhL5Ci8',NULL,'2020-03-04 05:56:57.093000','2020-03-04 05:56:57.093000',5,'Mandy Love','https://lh5.googleusercontent.com/-M2hHhyosD6c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclHZhpXmDpOWG29oETkcqD1ly9cBA/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21143),('AIe9_BHR7p0hPy1flx1br0TYdEUBNlRLn8J8UkG7tXxvD5QHMn2kPIW3d1w_5Qh8q7n_74jzL-tYz9ar5tCIToWAOw3DjomomQ49Z5-4XSfIGx0ymn1e7PA','From start to finish this Clinic was very well organized and helpful, I came in to get a knot on my leg checked out and within minutes I was checked in by Leslie at the front she was very prompt and helpful I was then taken back to the room where it was very neat and clean, as well as quiet Laura was the nurse who greeted me and she was extremely nice and friendly Jackie took my X-ray and was very nice as well. Dr Thomas was very knowledgeable he walked me through the entire process which was bery helpful and told me what to look for as far as alert signs after leaving the clinic. In all I will return here as well as recommend this location to others in the area.','2019-01-03 16:11:48.038000','2019-01-03 16:11:48.038000',5,'Brittany Davis','https://lh3.googleusercontent.com/-x5Tf2JPVsac/AAAAAAAAAAI/AAAAAAAAAAA/iYPl4VACqxo/c-rp-mo-br100/photo.jpg','3511292162159714121',7532),('AIe9_BHR7p0hPy1flx1br0TYdEUBnm1mA17atJhL1QOuw73OAOOkp6feLOZ2IMnps7zjXRBhi1VhBeTU33ifYhIDJrEMbpDuiKTZfEkqOTKyXB6XohJbUYY','Great staff, very friendly love the snacks! Shaunda with registration was fast and friendly. Dr. Lingan was quick and Christina R was caring and so was Tina.','2020-03-06 19:40:52.436000','2020-03-06 19:40:52.436000',5,'Rebecca Herrera','https://lh6.googleusercontent.com/-oBtXkiNcRP4/AAAAAAAAAAI/AAAAAAAAAAA/fJtCPuL6bkQ/c-rp-mo-br100/photo.jpg','16891069708558046635',13911),('AIe9_BHR7p0hPy1flx1br0TYdEUBNorVkhDrouxK4rg8fyJyJCIwgs5gwLtaUi6_afQaBk0xfTl9DSWMsSHpCY0ZQVX-fIo2KZ95I10Xnn6XEVnFyAjDJO4','Its never fun to have to visit an Emergency Center - thankfully my visit was super pleasant. \n\nThe staff was very attentive and provided great service - I am good as new this morning. Dr. Boester and my Nurse Jessica were especially great. \n\nIf you aren\'t feeling well - this is the place you should visit. \n\nYou\'re welcome.','2019-04-21 14:27:25.398000','2019-04-21 14:27:25.398000',5,'carlos amador','https://lh4.googleusercontent.com/-au7AUmf3Zg0/AAAAAAAAAAI/AAAAAAAAAAA/OXMypQXiCr0/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2146),('AIe9_BHR7p0hPy1flx1br0TYdEUBNpGyw4cOY9IL7h8OT234QdMK6UqIalnLSbN_R2DMbVPNGRFegdb973eOkx3-IM52UU6DlreqY-oKna1MOwE7JHRtlNI',NULL,'2019-12-06 03:26:44.739000','2019-12-06 03:26:44.739000',5,'GeorgeAnna Grissom','https://lh3.googleusercontent.com/-5p2hnASZDtM/AAAAAAAAAAI/AAAAAAAAAAA/42BU0hpq-DE/c-rp-mo-br100/photo.jpg','6521947413723274945',8076),('AIe9_BHR7p0hPy1flx1br0TYdEUBnSas6KvBECBXQYmycIhSbldfFYTGTVekXPvClPE1GFFgEeodXeRA2uQYFLkfltiig4SkiwlLqIfa9Yp5qitgQ26joM4','Very professional the staff was quick and efficient and I got my Covid results back in a timely manner. Dr Das was excellent and I would 100% recommend coming to this location for testing. 5 stars.','2020-08-01 00:07:23.127000','2020-08-01 00:07:23.127000',5,'Jalen Smith III','https://lh5.googleusercontent.com/-1yD8HrUgqVo/AAAAAAAAAAI/AAAAAAAAAAA/kHF9G_a8FIk/c-rp-mo-br100/photo.jpg','14748677429039074158',22359),('AIe9_BHR7p0hPy1flx1br0TYdEUBNsO2CX0vVuns9bn7fSAYiNywC2wapxtlwIuVYJFwh5nK8yEA1QQvFzKPRiiMEt-Nb7j3pt-90PHEF-TmeootXB7xhUI','Their service was great, and fairly quick. The reason for 3 stars instead of 5 was due to their billing department. They billed both my husband and I for the same service, however it was different amounts. It took over a year to resolve this, but thankfully it was indeed resolved.','2019-02-21 19:06:22.333000','2019-02-21 19:06:22.333000',3,'Betty Taylor','https://lh3.googleusercontent.com/-gyoEQ8E5tkY/AAAAAAAAAAI/AAAAAAAAAAA/iEkLb__dxiI/c-rp-mo-br100/photo.jpg','8679688254631342173',8869),('AIe9_BHR7p0hPy1flx1br0TYdEUBNYS3KnTSZEu-epi_3A5FPLKYhl2sqOY0F6JFmPv3NMbWytqXHmSNENFPLUP_RGmGjz-2e67U4Q2dSRzkakjVmvOW0pM','So friendly, clean and fast. Dr. Long, nurse Shelli, and Shaunda were amazing. Very high level of care. Night and day difference between here and hospital ER. Hopefully I don’t have another emergency but I we do this would be the first place I come.','2020-03-12 20:44:11.267000','2020-03-12 20:44:11.267000',5,'Kelly Espinosa','https://lh3.googleusercontent.com/-3G4p1cEC7bo/AAAAAAAAAAI/AAAAAAAAAAA/2L9NbIeNTIQ/c-rp-mo-br100/photo.jpg','16891069708558046635',21054),('AIe9_BHR7p0hPy1flx1br0TYdEUBO4uD2r4WFDxe94u-bOkGFJHhYvtwXLXZ5h6yPAMfiTvmON3N3LX1CZj74bOyhkxPHqE6TLwGuuGnZuwRXQUZh4gst0I',NULL,'2019-05-08 16:18:40.111000','2019-05-08 16:18:40.111000',5,'Latonya bayonne','https://lh6.googleusercontent.com/-plqeFJYgz4A/AAAAAAAAAAI/AAAAAAAAAAA/sMMBUvLjFWY/c-rp-mo-br100/photo.jpg','3272657195432704501',6965),('AIe9_BHR7p0hPy1flx1br0TYdEUBo5_gzm44MNmMKIAfMZGgyBuTaMgiZsFiRsQt0CB2anL-JxMPeotjt9NwtT5hlos4B0Yi6FnjzjsJ6UMAYCW0_3OnRX4','I recently moved to Houston and was very reluctant on going to see a doctor here because I don\'t have many contacts/references to ask. However, I didn\'t regret my choice for a second. As soon as I walked in, front desk staff were welcoming. The wait time before I was called back was about 5 minutes- the fastest I have ever been seen by any doctor!! The nurse, ER tech, doctor & radiologist were so kind, caring and warm-hearted. They made sure they were thorough in the tests they performed, and they asked me constantly if I needed anything to make me more comfortable. I am 100% likely to come here again if I ever need, and definitely would recommend this place to anyone and everyone in this area!','2019-11-18 16:10:07.038000','2019-11-18 16:10:07.038000',5,'Anmol Patel','https://lh4.googleusercontent.com/-fqYRWSJDMyc/AAAAAAAAAAI/AAAAAAAAAAA/Ykv1ej8Bubw/c-rp-mo-br100/photo.jpg','17898197009688164559',5425),('AIe9_BHR7p0hPy1flx1br0TYdEUBO5U-toUUJ3khS2apueH8XmofZu9BBrIrKBczkujl_bY1dKFGSJwICpiYOD8zj2E7IMH-e9a3QVoqWpdJxBa_duYznb8','All of the staff here are so friendly and welcoming. The doctor in the navy blue scrubs with the blonde hair is really hot too,made the process so much easier 🙂Y’all are great,thank you ! (Blondies a keeper)','2020-07-09 21:54:29.911000','2020-07-09 21:54:29.911000',5,'Melaine Cooper','https://lh4.googleusercontent.com/-u2CN5NKeL4U/AAAAAAAAAAI/AAAAAAAAAAA/v6FrJuEbosg/c-rp-mo-br100/photo.jpg','2077061009497551125',22862),('AIe9_BHR7p0hPy1flx1br0TYdEUBo8MPNHWgtbxUz2XRXkm75jjK3JaCguqSz9hPnH_GEFyWlMVPkZwsppgJxK-gpFvRZBntQyuTXokfKqKFjY7TkmkW96I','One of the best ER room in houston, very lovely and very friendly, the human touch is always present since you enter trhu the door till you leave the building, number one in cleaning and very helpful, i brought my cousin with a broken leg and they send a nurse with a wheelchair to my car to pick him up so i could park the car, within 10 mins of arrival he was already been attended, i would definently recommend this place','2019-07-21 22:59:13.977000','2019-07-21 22:59:13.977000',5,'Jose Tubens','https://lh6.googleusercontent.com/-jgP0-aP1utY/AAAAAAAAAAI/AAAAAAAAAAA/EaJtCPjcmCc/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',484),('AIe9_BHR7p0hPy1flx1br0TYdEUBOb2xLObW06XFDk1fLAL1QLkW_zXEaydYA6-JDrmHs8EGKfR8s2UKYEfX5tvpg1sDnn4fay9U8vaqQAX2fUiz1sqCS9Q','This urgent care was great! Great staff, the front desk lady, Amy, was very friendly and helped us get checked in and checked out. My friend had to come in due to a cut from an exacto knife and the customer service was great and super helpful. The doctor, Dr. Wren, and the nurse, Chih were both great in helping the process of helping her fix her laceration and begin the healing process.','2019-04-21 05:31:22.926000','2019-04-21 05:31:22.926000',5,'Priyanka Gandhi','https://lh4.googleusercontent.com/-kzB3Y9358H8/AAAAAAAAAAI/AAAAAAAAAAA/bcaK8lTFP-Y/c-rp-mo-br100/photo.jpg','3511292162159714121',7358),('AIe9_BHR7p0hPy1flx1br0TYdEUBolfLw-rgJj4RqaY7Za4T7RLemj5H_lVPZnu0kzOJP6SVmbWVhL7syNx4oXqHUEyRnuIW-Diuudj0CAOU9NJPLs8D2Q0','The E.R. Service was amazing . Front customer service Samantha was nothing short of exceptional . Staff nurses and Dr were super friendly and very helpful.','2020-01-21 05:28:56.820000','2020-01-21 05:28:56.820000',5,'Pedro Vargas Jr.','https://lh5.googleusercontent.com/-HYDC9MuS-sY/AAAAAAAAAAI/AAAAAAAAAAA/iu5vc-CNCNk/c-rp-mo-br100/photo.jpg','14567670160750071148',9966),('AIe9_BHR7p0hPy1flx1br0TYdEUBOm9sjaoDZl4AvosLiZiNDUDPxfah58NXLRCtQwaa3L7lAsLagunIrvkBqQlxOQiMOvXLvvv0rcovVh3iCMlEkhVzxzU','Thoroughly enjoyed my visit (even in pain). Jocelyn was lovely with check in, nurse terini was exceptionally caring, thanks signature care :)','2020-03-06 16:56:36.196000','2020-03-06 16:56:36.196000',5,'Chloe Smith','https://lh5.googleusercontent.com/-f5X3hewc-Y4/AAAAAAAAAAI/AAAAAAAAAAA/lrtFufVnRoQ/c-rp-mo-br100/photo.jpg','16389487648212004696',13723),('AIe9_BHR7p0hPy1flx1br0TYdEUBomwdqQ4Y2vdISsgDfAf_Wo7ZyPmIqpL16xfPpqXUXq0sNeNHkvYmedCKDdBLcM0-OQcPqvfCGdUyausMeMel1G1t5Bw',NULL,'2019-06-28 22:34:18.059000','2019-06-28 22:34:18.059000',5,'Phuong Khuu','https://lh5.googleusercontent.com/-8cmYsdJ-ick/AAAAAAAAAAI/AAAAAAAAAAA/oA1mqZUJFRY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBOnLSuJubpSmEmxJAKG3U67O2X3AcfewUAzrk3fQk1NNmnsmT8LZp15sriBn_kzkusy9brDxez8cV-7Rr8LIiPpFswO8','We had a last minute issue and had to go late at night! The service was fast and easy, and they had complementary snacks and drinks. Waiting room was very clean, and the receptionist, Rebecca was so nice!!','2019-09-19 05:13:13.753000','2019-09-19 05:13:13.753000',5,'Sarah L','https://lh3.googleusercontent.com/-mE930klt2KU/AAAAAAAAAAI/AAAAAAAAAAA/me22Y6WTkYY/c-rp-mo-br100/photo.jpg','16590124370714063921',3199),('AIe9_BHR7p0hPy1flx1br0TYdEUBoPKBHNmTlOoaaMh9rCuWwQ8dKdMu1oj_FTlIYjpzWGRGCXSAEdBdI1zRxjkMXIeY2Hwx-hx2aCGDYWFGdN2A6fK30ko','This staff is incredible! They are so thoughtful and thorough! And it\'s so clean in there - made the experience so much better honestly. This will be my choice for ER care going forward no question about it!','2019-12-20 03:25:30.273000','2019-12-20 03:25:30.273000',5,'Natalie Miller','https://lh6.googleusercontent.com/-inJ3gKUl1FQ/AAAAAAAAAAI/AAAAAAAAAAA/mPEOY1oi7d4/c-rp-mo-br100/photo.jpg','16891069708558046635',4107),('AIe9_BHR7p0hPy1flx1br0TYdEUBoQ63ue0jEHfQAlUP51FGWiCvoBaeV83i8j1kFuoqh7pXrDeDbI_1TEyFPX86ri2yVuP-HGqf4mq9tQQkh0qwd5BLwig',NULL,'2020-02-21 15:00:37.239000','2020-02-21 15:00:37.239000',5,'Aaliya Mixon','https://lh5.googleusercontent.com/-vlQAQvk09c0/AAAAAAAAAAI/AAAAAAAAAAA/9JYTr67iF5Y/c-rp-mo-br100/photo.jpg','3272657195432704501',14333),('AIe9_BHR7p0hPy1flx1br0TYdEUBOSqohhCnim_ST7fnNWvIWONZ-ZLkfHEMclEaEZimPGnP8cdUP6uOyndyUlFEA642ZcGlkXKM52Xpcd3n8TcZ3pQnqdk','Lisa V was very helpful','2019-10-24 20:33:42.216000','2019-10-24 20:33:42.216000',5,'Aubrey Jade','https://lh5.googleusercontent.com/-Q_Ni4jr7n9E/AAAAAAAAAAI/AAAAAAAAAAA/-AUpcO1AIT8/c-rp-mo-br100/photo.jpg','13486358490203335051',770),('AIe9_BHR7p0hPy1flx1br0TYdEUBOTYW4ve2Gq18y26Iqyr2vu73c2kV23YihX4u4pc7nyZo0ItonY_8B8M2mKnR59I6-Age1hHPDf2nb2yq8p5qTEKA44A','This has been the best medical facility that I have ever visited. Not only did they solve my problem but they also went above and beyond to make sure I was comfortable and had something to eat and drink. I have never experienced this at an Emergency center in my life.','2020-01-17 04:12:00.583000','2020-01-17 04:12:00.583000',5,'Fatemah Younus','https://lh4.googleusercontent.com/-kDTOPiht_i4/AAAAAAAAAAI/AAAAAAAAAAA/BjeEBTkrlWU/c-rp-mo-br100/photo.jpg','16590124370714063921',10068),('AIe9_BHR7p0hPy1flx1br0TYdEUBoValzdkg6h12L_69l2i1JYNS5xQizeFVoOXxv7dB0hIE8rXuVT-H6CSIoa5pN1OOe0vswNq3gMrgpyEZJq7Gna2Ft-Y','Definitely recommend coming here. It was really quick in and out. Everyone is super nice and are very helpful in answering all questions. Anthony, RN J.R.-X-Ray and Dr. Hariać Kim- Reg provided me with with excellent care and I left feeling way more informed and confident about what to do next.','2019-03-01 18:53:24.994000','2019-03-01 18:53:24.994000',5,'Zane Morris','https://lh3.googleusercontent.com/-eS9Mfwy6B-g/AAAAAAAAAAI/AAAAAAAAAAA/c0P9FTwc3tk/c-rp-mo-br100/photo.jpg','16590124370714063921',3516),('AIe9_BHR7p0hPy1flx1br0TYdEUBovGAC5DGWWXzDAL_TrrWvm0FS65c6SEdqjKzhqIv_SZHrXO7KQoDcCl9u60TzfKtyTWWoAsP2KI82nGmrAwaIYOxc2Y','By far the most amazing staff ever Dr. Ineme, Alevean, and Patricia were very professional','2020-03-12 15:24:42.589000','2020-03-12 15:24:42.589000',5,'Terra McAdams','https://lh4.googleusercontent.com/-IqG5og2JfFk/AAAAAAAAAAI/AAAAAAAAAAA/tbAEOScciGM/c-rp-mo-br100/photo.jpg','16389487648212004696',13708),('AIe9_BHR7p0hPy1flx1br0TYdEUBOwEz_UCAZ3kOkCZAMA2Nd_HhkVQR-jxoWQ76vVppZOxhYmzZw4aayrd9R9UYTAtR_OHCqvOH8FDV3cNgwVI1nRcRpWE','Great staff. Very clean and comfortable. Brandi, Lucas and Kara are amazing and do everything possible to help.','2020-01-31 18:12:18.016000','2020-01-31 18:12:18.016000',5,'Kara Lannom','https://lh4.googleusercontent.com/-DRoyfLd3lTU/AAAAAAAAAAI/AAAAAAAAAAA/qtzgxONquyQ/c-rp-mo-br100/photo.jpg','3272657195432704501',10461),('AIe9_BHR7p0hPy1flx1br0TYdEUBOXoQk832xFzrcYEhXTH3X4F9A0P7qksYshkoe_oF0NKlydhgYBO743f4alQuZidlZSpFNe3rk7BcWCh83bTqGRuURPM','Amazing team that took care of me while I felt my worst. They were uplifting and attentive without making me I was just another patient that was waiting.','2017-11-03 13:08:52.811000','2017-11-03 13:08:52.811000',5,'Vinh Tu','https://lh6.googleusercontent.com/-pXYaCrF_MEA/AAAAAAAAAAI/AAAAAAAAAAA/YDDhLUxeNng/c-rp-mo-br100/photo.jpg','17394740196501090048',4940),('AIe9_BHR7p0hPy1flx1br0TYdEUBP0u28LLjc0G_1nhhVGLzgD3TMq26FV2hF-Oo2nd_Mnj1VR9NBnxPcygN5TtOOJkcSW1uMS7ljSh4m4R64GVcp3GEmno','This ER is the best place whenever you need to a doctor on short notice. Everytime we come by we are always immediately greeted and get checked in ASAP. Tonight we had wonderful help from Amy, nurse Gracie, and Dr. Wang. We were in and out in no time.','2018-11-19 04:53:54.689000','2018-11-19 04:53:54.689000',5,'Cristina Perales','https://lh4.googleusercontent.com/-MpNcIfrFc7g/AAAAAAAAAAI/AAAAAAAAAAA/pm5MZsrFAJo/c-rp-mo-br100/photo.jpg','14567670160750071148',1460),('AIe9_BHR7p0hPy1flx1br0TYdEUBp37sxXuMlQJRt46nybzQPIgBJD2LsVjqw-4Q_HdkZdzLCjJUzTxy9Cl7ZouUz88zffUgas5nWwmcSkzlIHjC2PHLInU','Jasmine did an amazing job as well as all the other staff members. By far my best ER experience to date. Very clean facility, adds to a great experience. Thank you so much! ','2017-03-14 05:32:49.635000','2017-03-14 05:32:49.635000',5,'Kyle Duncan','https://lh5.googleusercontent.com/-LPh6GWKr-YI/AAAAAAAAAAI/AAAAAAAAAAA/DVuplAJwyeM/c-rp-mo-br100/photo.jpg','14567670160750071148',1867),('AIe9_BHR7p0hPy1flx1br0TYdEUBP7Pri1aBbmDJ3B1poIgzIgT44qDWSUAaZOuquVqLPdSm8ubPZcAgcUu9_yfQ2AfsbRm7Le6orcIGpVJy9KbteorDZr0','Had a needle stick injury at work and I was sent here, best care I was ever given, and the fastest, Lizzie was so sweet and Great, definitely would recommend this Place again, thank You Guys so much. Had all my questions and more answered. thank you!','2019-08-30 23:32:49.962000','2019-08-30 23:32:49.962000',5,'Vivian Castillo','https://lh3.googleusercontent.com/-6dG0wLtCFrM/AAAAAAAAAAI/AAAAAAAAAAA/bFd0bOLzbXo/c-rp-mo-br100/photo.jpg','3511292162159714121',7184),('AIe9_BHR7p0hPy1flx1br0TYdEUBPbmYOXWIpOVa-6-oA8kjZgZ-aKfe3IeqxTl8NmqBgDj0RJchoI9i_mjaMMsIv-fYSgfyLwgeKpgpdUf8J0BFTsIKK74','Amazing care! thank you so much Adrianna, Eliza, Magali, Jessica S and Dr Miller!! best ER anywhere!','2019-12-23 19:29:09.237000','2019-12-23 19:29:09.237000',5,'Jacee Boydston','https://lh5.googleusercontent.com/-xCk99E1UAiQ/AAAAAAAAAAI/AAAAAAAAAAA/_X5lujsg1LU/c-rp-mo-br100/photo.jpg','6521947413723274945',8043),('AIe9_BHR7p0hPy1flx1br0TYdEUBPDi0PXyfYunJRRLFsgR7y3iv50Xs5IdJToZ6GmZZt-BMSU6JyTth4rreRJRlEpfFyj-a1w1qcsdpTAdVZNj-NhYWg3o',NULL,'2019-02-22 20:24:46.909000','2019-02-22 20:24:46.909000',5,'Joseph Villarreal','https://lh4.googleusercontent.com/-dsNSZPrgeJU/AAAAAAAAAAI/AAAAAAAAAAA/yfh_wxee0rs/c-rp-mo-br100/photo.jpg','8626688543755174284',8547),('AIe9_BHR7p0hPy1flx1br0TYdEUBpDTHovsCc2zp8JhtqxMgct_uvfxVY_8Wm1Gs8CgsT_gTUKQHLFHtjVAo71Q6n9xxuQqGLH5BgPwBE66Z5PYvROIqkxY','Dr. Daniels was very kind and friendly. She knew exactly what to do and had a smile on her face the whole time. Nurse Rolllie, Radiologist Natalia, and Registrational Stephanie we’re all very welcoming and friendly. Amazing place to go to, with a perfect location!','2019-09-06 04:19:51.004000','2019-09-06 04:19:51.004000',5,'Isabella O\'Malley','https://lh5.googleusercontent.com/-Z6EX8nkSIdY/AAAAAAAAAAI/AAAAAAAAAAA/OVJ1O5v2NtE/c-rp-mo-br100/photo.jpg','8679688254631342173',8809),('AIe9_BHR7p0hPy1flx1br0TYdEUBPfHLUViiM55IkdcEsHMNj3h1O7uWT2gljYqjdX-hXSeGfEWzt_QZosW0wrL9qneiVgjXJ-52qtZSYnx6tZ7cx212IpU','Great customer service even over the phone. Dee was very helpful','2019-06-19 00:24:52.916000','2019-06-19 00:24:52.916000',5,'Stro Zone02','https://lh5.googleusercontent.com/-PhsuErAxqF4/AAAAAAAAAAI/AAAAAAAAAAA/d2c74qyTKxk/c-rp-mo-br100/photo.jpg','3511292162159714121',7301),('AIe9_BHR7p0hPy1flx1br0TYdEUBPgThiCn6csN5jV48hcMruGBCakrjaZGvN0LHy1WDQBgii0utYWPjSw1ms79wk22GkNobU0bHoYU97kbv_UscpfiLlAE','Upon our arrival we had a very prompt greeting by Luisa. She was very nice and thorough. We didn\'t even get to fill out the 1st line on paperwork before we were called back. Oh and the facility itself, incredibly clean and very very nice. Snacks, drinks, coffee etc. When called back by Jessica, the radiology tech, she was very personable leaving us feeling calm and reassured we were in good care. She offered me, not being the patient, a warm blanket. So nice! Nikaela, the nurse, was great. She drew blood and my husband is a fainter, he didn\'t even break a sweat. She also was very knowledgeable and put us at ease. Then there\'s Dr O\'Malley. Wow, he really went out of his way to explain every possible diagnosis we could be looking at. He was not rushed, we felt as of we were the only patients in the er. He truly made us feel like VIP patients. He even text a colleague about our situation to confirm what our next step should be..and got us in for a follow up quickly. I can not say enough to describe how pleasantly surprised we were with our visit. What was a nerve racking situation in the beginning, turned out to be a better than we could have ever expected. Thank you to all the staff at Signature care er cypress.','2019-05-28 04:17:13.093000','2019-05-28 04:17:13.093000',5,'Christina danley','https://lh3.googleusercontent.com/-xhsp7L1Gwic/AAAAAAAAAAI/AAAAAAAAAAA/wNz3uj-kOWg/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBphwa91m3BYTvNG00xoJjxQLgEIBq6RUFeZv9_ohjxSs-2NrZmumIZgOBqnWkfIQI7RILBx4wLyvkHbGIohUl9BAN4r0','This place is short of amazing!!!! The staff DR. Appiah Nurse Susan Rad Tech Laura ER Tech Matt and Reg Alexis were all so amazing 😉. From the minute I stepped in the facility I was greeted with warm smiles and concern for my visit. Not even moments the nurse came and got me took me to my room and shortly after I was doing xrays spoke with the doctor and on my way home all of this in less than two hours!! I absolutely love this place ❤️❤️❤️❤️ And it so clean!!! I won’t go anywhere else','2019-07-13 01:28:40.362000','2019-07-13 01:28:40.362000',5,'Janis Haynes','https://lh6.googleusercontent.com/-OWt9-RB6gQ0/AAAAAAAAAAI/AAAAAAAAAAA/lSTyGP83i-Q/c-rp-mo-br100/photo.jpg','17898197009688164559',5634),('AIe9_BHR7p0hPy1flx1br0TYdEUBPi9TmQQT8zxX-ZMMgcerE6fvFnqg7wDChawIV0Pu5fiOTK8Gc7lNjxWxAtL7nRHKG2GajW3CS0vf5XkUnr8Mwvhy-ZU','Dr Castaneda should be ashamed of himself. Telling a mother of a sick baby that she didn\'t need to bring him to the ER with severe diarrhea, unable to take in food. Stating he and his wife force feed their child when their child is sick and not wanting to eat. Never again with this Doctor and I hope others steer clear of him. Severe diarrhea leads to dehydration quickly. YOU GET PAID BIG MONEY SIR! WHY DON\'T YOU FORCE FEED YOUR CHILD AND LET ME MAKE SURE MINE IS GOING TO BE OK. Unbelievable. A mother fears for her child and a doctor talks to her any kind of way. Shame on you, shame on this hospital for allowing it.','2019-06-23 23:25:55.358000','2019-06-23 23:25:55.358000',1,'Justine Van Sickle','https://lh6.googleusercontent.com/-2y-1X-qv8gE/AAAAAAAAAAI/AAAAAAAAAAA/dJOVM6ayHHc/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',492),('AIe9_BHR7p0hPy1flx1br0TYdEUBPkx3OsN1kVCDF5XpV6YdM6JN5KKw4FRrkHOUKC3DNC-_SeYOS2w6HjZxmj1f6ZcVuzcFHY4rTgWXIP1BTgLE9KZXqvI',NULL,'2018-12-05 04:06:19.133000','2018-12-05 04:06:19.133000',5,'Lance White','https://lh5.googleusercontent.com/-CU-AK1RsqSk/AAAAAAAAAAI/AAAAAAAAAAA/-UxSqMX8DJ8/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3625),('AIe9_BHR7p0hPy1flx1br0TYdEUBPoGPaU3deTm25vn-FoCwosRhD6jjYy1QuK3rbMeG3LXc2uFjQb6_eBRUIlEIgaHldIL1B1e8SvaZFiVAenXLFHAB5Zo','Had an excellent experience at Signature Care Bellaire. Highly recommend!','2020-08-17 01:32:09.124000','2020-08-17 01:32:09.124000',5,'Debbie Lucas','https://lh6.googleusercontent.com/-b9ukunS4Xm8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclzxOVK0c-4oHVM3t6M9sJi7kJKjw/c0x00000000-cc-rp/photo.jpg','8679688254631342173',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBppEx9MshwdltskAsosBM0nKp6cfAkXeJazW3osLnlMMA6UYApRjhre6VXSgmXn3HMLekuV8RnO7bTcRS5huBzty7Q88','This visit was EXCELLENT!!\nDr. Henderson\nSarah\nAngel\nLaura\nTarishia\n\nWe’re all great and very helpful. I will definitely recommend this facility to others. \n\nAlicia Krumrey, BSCJ, MEd, LCDC','2020-02-14 07:28:48.815000','2020-02-14 07:28:48.815000',5,'Shawn Krumrey','https://lh4.googleusercontent.com/-V8GgjVuzBLM/AAAAAAAAAAI/AAAAAAAAAAA/XnkE27ejeJ4/c-rp-mo-br100/photo.jpg','17898197009688164559',14171),('AIe9_BHR7p0hPy1flx1br0TYdEUBptT9oirvSTXR92Ol3HAPQ6Hv7TIjkXLxZX9-C_fRqjFgDBz_CBwzHSoG44JkXn1EKZcHiN2V5OLc7P2pwFDYxMK78b8','Dr. Faig, Amy, Jessica, and Dion were all very helpful, caring, and welcoming. They took care of all my necessities, made sure i was comfortable, and made my Signature Care visit simple and quick.','2019-05-05 04:15:16.947000','2019-05-05 04:15:16.947000',5,'Malik Wheeler','https://lh6.googleusercontent.com/-icNIPD4poxM/AAAAAAAAAAI/AAAAAAAAAAA/ZfZBGcoTYCc/c-rp-mo-br100/photo.jpg','3511292162159714121',7343),('AIe9_BHR7p0hPy1flx1br0TYdEUBpVAl60PibMq_J7Nre29DJDP25JU6CR2Spo5LPdbVJw4XTvIxyeZBKMGI6t-pJYqBcxkzBo1nC9LbGxnaC_noqj4wl0E','I had to bring my husband in for a major sinus infection that had him in so much pain, and our team of nurses, Shania S. , Lorna L., Jose S. were amazing and very attentive. The techs Corey C., and Allison L. were nice and quick in and out with our treatment plan, and Dr. Patel was great!!!!! Thankyou guys so much for everything!','2019-09-21 02:52:54.200000','2019-09-21 02:52:54.200000',5,'Alexis Stover','https://lh3.googleusercontent.com/-33UPffLdRO8/AAAAAAAAAAI/AAAAAAAAAAA/bwm59Nw5yAQ/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',819),('AIe9_BHR7p0hPy1flx1br0TYdEUBpy5JYQNTyH_jI6Ys7ZfU4mNHrCQj6JO-uF390I6x7L-7R1NfEKBYHIzXPVQbmSQIokaoCKB3B9CZDQ-8qekA5P4ezHI','Jake and Alexa were great with my 2 year old twins! The room was very clean. We had cartoons and snacks that they provided to keep the twins occupied.','2020-07-12 20:56:10.271000','2020-07-12 20:56:10.271000',5,'Adiah Coleman','https://lh5.googleusercontent.com/-1PnDe-kZl1c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckKtT9tc4Gs5Az-d5l4cqZWqcT1lA/c0x00000000-cc-rp/photo.jpg','2694018788013845459',21578),('AIe9_BHR7p0hPy1flx1br0TYdEUBPzXsU2ExyGRMIW6wp5LemlLHy1HNztX3akZFRCUYsVHtfm_e8Z9QHHjXAxU2Pi73DmnMm07iWMiKflpW45AatyfRKVQ','Had a great experience at Heights Signature Care. Quickly taken back to room (before completing paperwork), and almost immediately met with nurse then doctor. On-site diagnostics helped pinpoint medical issue leading to clearly described treatment. All staff (office & medical) were professional, knowledgeable and friendly. I’ve been to this facility several times with family members, and the level of care and treatment is consistent with this visit. The warm blankets are also a nice touch.','2018-07-21 14:18:22.689000','2018-07-21 14:18:22.689000',5,'Andrea Rey','https://lh4.googleusercontent.com/-pa7_0lNizHE/AAAAAAAAAAI/AAAAAAAAAAA/QEG7YwElzlY/c-rp-mo-br100/photo.jpg','14567670160750071148',1589),('AIe9_BHR7p0hPy1flx1br0TYdEUBq-E5dDVFCCa7z1dh4BEIUZOoxuWoD6tCtnVZDIao-WpRccU487CHHcFGMRRaLzLqTArhWBzttRjBZSxg7a0PqbBoR24',NULL,'2017-07-29 10:19:54.519000','2017-07-29 10:19:54.519000',5,'Jennifer Godwin','https://lh4.googleusercontent.com/-LP7vwV3yKWQ/AAAAAAAAAAI/AAAAAAAAAAA/spLm8CZU4_U/c-rp-mo-br100/photo.jpg','17394740196501090048',5012),('AIe9_BHR7p0hPy1flx1br0TYdEUBq-IyVsQ5Z9yCH_TtLaJ0zc2b_e4Le8N12WdhU9ah3kESgF5GHDbg1Z1BIaCrJb22Be8Dko4xKNut_zLWPG4VQ5qrsVc','Took my granddaughter and she was given excellent care from every member of the staff.','2019-07-17 04:28:25.275000','2019-07-17 04:28:25.275000',5,'janell mcclelland','https://lh4.googleusercontent.com/-ME-l8-UeukE/AAAAAAAAAAI/AAAAAAAAAAA/X9i5NIw4XW0/c-rp-mo-br100/photo.jpg','17394740196501090048',4627),('AIe9_BHR7p0hPy1flx1br0TYdEUBQfn3gezyfnLUh7ZhjipnH57b5gJyGAKKcpMehXFbbfh-XFaU62roSFj0zA5aVfOIeJcwOFrf4qTvPJEso_XIwckmAyY',NULL,'2020-03-04 16:55:44.574000','2020-03-04 16:55:44.574000',5,'Launa Henson','https://lh5.googleusercontent.com/-08D7i2eEo7k/AAAAAAAAAAI/AAAAAAAAAAA/rSsbeNtkze0/c-rp-mo-br100/photo.jpg','13486358490203335051',20932),('AIe9_BHR7p0hPy1flx1br0TYdEUBQkVzEJoZkqFiW-XXhFqFD5tgBQbeYprM3A4xaK3BgJNId_GPa11_RU9l1_o8X9Z3SHtBVrOkVmtB4171ban1gYmsplM','The staff was extremely friendly. Particularly Lindsay at the front desk and Dr. Ding. Lindsay has a great personality and is very friendly. Dr. Ding was very informative and straight to the point.','2020-02-08 22:31:36.615000','2020-02-08 22:31:36.615000',5,'Jacky Gonzalez','https://lh5.googleusercontent.com/-Q6JqaeyPNQo/AAAAAAAAAAI/AAAAAAAAAAA/f5UxepAKZnk/c-rp-mo-br100/photo.jpg','16590124370714063921',13873),('AIe9_BHR7p0hPy1flx1br0TYdEUBqLjA1LRhPnt81Mn9m_Viq_X7Jq7ZfERTc4Ldc977VmWrvtiS3vuIQsN_OL4gsAnmSq7cQOO24ZjEpCrCEv4QSzAfUy0','Very Friendly staff! Dr. Kotey was quick and efficient! Sarah, Fatima, and Tanisha were all so nice! Really appreciated the care we received here.','2020-02-21 04:21:05.920000','2020-02-21 04:21:05.920000',5,'Julie Loreto','https://lh4.googleusercontent.com/-FqAAXCPHHy0/AAAAAAAAAAI/AAAAAAAAAAA/W6c8ChljXgw/c-rp-mo-br100/photo.jpg','17898197009688164559',14148),('AIe9_BHR7p0hPy1flx1br0TYdEUBQOcbcjzHWLtB6BnuY_evnmETVoFXU_7xP0iHPWTcvA9Fx45Z-Ykdh8xfY3bVg6PPOC69ir_qLtLYtogVqvA_sg8HObA','Thank you Keera, Jesse and Dr Golla for helping my dad!! Very nice and friendly people!','2019-06-25 17:44:35.192000','2019-06-25 17:44:35.192000',5,'moyosore sosanwo','https://lh6.googleusercontent.com/-c9DPntC8H8Y/AAAAAAAAAAI/AAAAAAAAAAA/W8Q5oZvTSmo/c-rp-mo-br100/photo.jpg','17394740196501090048',4649),('AIe9_BHR7p0hPy1flx1br0TYdEUBQoKQaOq4PzRj4GrsddSGDUIeQYcVumuGp2R7_PGDS51ChFgJ_0qwzAs8Ql1uxWYLi03KhKEejym9K4aANvKcvJ-IkxE','This is a wholehearted review for the S. Austin location of Signature healthcare. I have 2 4yr. old high energy sons. Signature has been there for us multiple times. You go in, no long waits....we were made comfortable right away. We didn\'t wait long. They were able to run an amazing array of diagnostic tests too. Recently on of our sons had to go and get stiches and the team was great. We saw RN Martin, Dr. Uyen Nguyen and Tech Christine. We can\'t say enough good things about Signature. Go see them!','2019-08-15 00:46:44.267000','2019-08-15 00:46:44.267000',5,'Elizabeth St Paul','https://lh4.googleusercontent.com/-iYSdtTjCQvk/AAAAAAAAAAI/AAAAAAAAAAA/VRBoyDY8QF8/c-rp-mo-br100/photo.jpg','16891069708558046635',4220),('AIe9_BHR7p0hPy1flx1br0TYdEUBQqiX6Tku1RsJCgOgRFQMKav8wwnKYJHaG6PkoKZ4h6deWtVQ9D7U4aXsFUwbltVVx0M-R902Xgk1zWLqSKd_Txit6lA','So professional your always in and out taken care of instantly!!! Robin B, Jennifer C. and Brooke G. will definitely accommodate with any of your health issues. Great place !!','2019-05-16 09:20:18.576000','2019-05-16 09:20:18.576000',5,'lashema steward','https://lh6.googleusercontent.com/-qc5Dv-0G46U/AAAAAAAAAAI/AAAAAAAAAAA/o-AowpOlgyY/c-rp-mo-br100/photo.jpg','8626688543755174284',8483),('AIe9_BHR7p0hPy1flx1br0TYdEUBqQqck1-c8isCh0NYjK61GpPJCnlqtRaMjkZjYS9IS3fKRk5guF_reSDnOD8xOTMvq_ZAbTnOZLizJfleI38ZOx8l36I',NULL,'2018-08-12 14:08:34.983000','2018-08-12 14:08:34.983000',5,'Robin Frion','https://lh5.googleusercontent.com/-vphxnHOW3Oo/AAAAAAAAAAI/AAAAAAAAAAA/0zR3OG9KXLQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7626),('AIe9_BHR7p0hPy1flx1br0TYdEUBqr7rSMDQgmm5VMwCgb05_wIkk_enaQZmJSwxFvs21-c1ZTTWT9WtlHnBa5OC5l9szqVM7wkBUiN9y865rXP-5bSDTkI','Nothing worse than getting sick in a city from home. Nothing better than the treatment and kindness shown by everyone at Signature care!!','2017-05-03 16:00:34.148000','2017-05-03 16:00:34.148000',5,'Jordan Modell','https://lh4.googleusercontent.com/-ogpa3My-ULA/AAAAAAAAAAI/AAAAAAAAAAA/XdaEfqOBaRg/c-rp-mo-br100/photo.jpg','14567670160750071148',1833),('AIe9_BHR7p0hPy1flx1br0TYdEUBQXC50MJh2BwZv4-ofljjG0DtQLUiZGuIrHkRpKwN3Igbebp4XZkPwT_tkc2zDwFRHC-ASlJjzKYF5dyBLQI4Se8BCIU','Registration: Lorena, Gracie \nER tech: Brancroft\nNurse: Theresa B.','2020-07-26 18:46:10.903000','2020-07-26 18:46:10.903000',5,'Michael Jensen','https://lh3.googleusercontent.com/a-/AOh14GgEZGI-KX5vOqCyxB5YMEeqKFunPCGFfwLyz59B=c0x00000000-cc-rp','6521947413723274945',22205),('AIe9_BHR7p0hPy1flx1br0TYdEUBR5U_gat_CpdXYHYRtksjhB2ikSefspCiVkL52pydxkAJEtBaLsn2f93dn7QjdeokiZsMlTBbmLeOga98XdXMYjpHvVk','Really enjoyed my stay at the signature care everyone was wonderful Dr. Ding and my RN Chis and also on the way out Amy at the registration desk was really helpful','2019-04-27 16:20:25.528000','2019-04-27 16:20:25.528000',5,'Ghost_DC4L Gonzalez','https://lh5.googleusercontent.com/-ZuX8eQ0rBZc/AAAAAAAAAAI/AAAAAAAAAAA/soMXYyyi86E/c-rp-mo-br100/photo.jpg','14567670160750071148',1342),('AIe9_BHR7p0hPy1flx1br0TYdEUBR8PyuE4RmyA5OaH0I_L4Huvv1UJth8w0Vc1LyitHLUh8InV-nBVTZMaBfjMbVK7Im1mdNnoafXhtHyu1CuTOfYFS9fk','We arrived at this particular location at 1:30 on a Sunday. We did know that there would be a wait as we are unfortunately in Harris County. Someone my husband works which is currently sick and a recent client has requested that they have testing for the COVID-19 and wanted immediate results so ended up here. What we did not know is that this particular clinic would allow certain people to go in, approximately 30 has been my count as I am sitting in my vehicle watching, yet my husband has been in the line for 5 1/2 hours. It would appear that the majority of the people that are going in are white and my husband is not. My husband has been standing at the front of the line for two hours now. Now I would like to believe that this is not the reason that my husband is not in there but the line that my husband is standing in is mostly African American and Hispanic people. Those people have been standing out in the hot sun all day, some older and a couple are pregnant. I also acknowledge that you can make an appointment so that may cause delays waiting for appointments to be addressed first. When I asked a question about the two lines, the security guard at front said that the difference was one line was for first responders here for testing and the other line was for everyone. Well the line that was allegedly for first responders had been empty all day. It just filled up with people within the last 30 minutes as I’ve been writing this. Also no one is practising social distancing here yet all of these people are here for COVID-19 testing. No one is making sure that they social distance. So if one person in this line has COVID-19, they will all have it, because masks provide a very false sense of protection. I would definitely not recommend this location as I also, upon entry, did not see social distancing and cannot be sure if they’re taking all the proper precautions to protect people who are entering this establishment.','2020-06-29 00:14:38.762000','2020-06-29 00:14:38.762000',1,'Genevieve Garcia','https://lh3.googleusercontent.com/a-/AOh14GjO7-L2XoJPHfqOqCblrlJtQiDq_lsDT6pm187o=c0x00000000-cc-rp-ba3','16389487648212004696',21410),('AIe9_BHR7p0hPy1flx1br0TYdEUBrBgFqsORnCro6gcR9uTaaiMWzxIdq9RRBwc-gRxXAeXtK4gPEOm6-pUMpsMnie1ku7A0d9S5XTLP0BqlwUrnC1pzSV8','All staff was friendly and made me feel comfortable. I will definitely come back to this location!','2018-04-19 16:11:17.780000','2018-04-19 16:11:17.780000',5,'Shoun Collins','https://lh6.googleusercontent.com/-8Eas2EUQljY/AAAAAAAAAAI/AAAAAAAAAAA/yKSnrREqh1A/c-rp-mo-br100/photo.jpg','14567670160750071148',1633),('AIe9_BHR7p0hPy1flx1br0TYdEUBRFsSvdkRYv7naUxNnatQ5W2owok3rYpnnzVfg_7X15lcfPg-ffFjdDq7AG57Klk7JMdej-viLEkXOJtNJvpADvi6fVY','The most experienced and efficient emergency service rendered by a considerate staff. From the time you sign up until you are released by the attending physician, your needs are addressed with prompt and effective treatment. The staff work in unison to ceate a flawless and fluid experience during your stay. Dr. Daniels, Bryan, Kelly and Denise worked together to make this ER experience a success. Thank you.','2018-08-04 05:50:26.746000','2018-08-04 05:50:26.746000',5,'Jillian Cloud','https://lh3.googleusercontent.com/-1NNRsqqqn_c/AAAAAAAAAAI/AAAAAAAAAAA/82g4Mo1Q3NE/c-rp-mo-br100/photo.jpg','14567670160750071148',1575),('AIe9_BHR7p0hPy1flx1br0TYdEUBRh7gFo_LiFXk8QITjYjhH2KaOeqZLtonx1lQVX_GP_LyTPSUT5yjuuT__c71NjePm1kdUJRF1w1flGfd0ox8KbFu6_w','Allison, Lisa V., and Jocelyn has been super friendly and helpful with my medical needs. I would recommend this place for an emergency.','2019-08-30 02:17:56.042000','2019-08-30 02:17:56.042000',4,'Alyssa Carr','https://lh4.googleusercontent.com/-O8xpcA7wuYo/AAAAAAAAAAI/AAAAAAAAAAA/ApxN7A8HVFA/c-rp-mo-br100/photo.jpg','13486358490203335051',842),('AIe9_BHR7p0hPy1flx1br0TYdEUBrJMWf6jbdw_dp-0_aSQU5XUOCo1pFVDmbqgoqe9cp3u6-IjhNwWN3cjOyn9qGcndj_Ia7VTRZ4nMJfA80EmvMlXF1hM','This is my second time here and I was really worried about my son’s fever and they took excellent care of him and put my worries at to ease, Jocelyn and Alvean was very helpful they were absolutely the best with working with children . I’m glad they’re close to my home .','2020-02-19 18:29:08.424000','2020-02-19 18:29:08.424000',5,'Tramelia Encalade','https://lh3.googleusercontent.com/-MohwLNTpr5Y/AAAAAAAAAAI/AAAAAAAAAAA/K_0TiS3JWzc/c-rp-mo-br100/photo.jpg','16389487648212004696',10866),('AIe9_BHR7p0hPy1flx1br0TYdEUBRll878NQMLKrJypu9qTZtdnT7uB6jnJaTonlBLsF8wwgDuy5Ql1gMYUnz4QcrOewkgTHLH9fkBOTXgMGVMRFC1BCSaQ','Everyone who I saw during my visit was very hospitable and assisted me promptly. I really appreciate the great care I received from the nurse and MD, and was relieved my shoulder pain was managed before I left. If I have to choose and ER again, I won\'t hesitate to go here again!','2019-03-26 22:12:50.644000','2019-03-26 22:12:50.644000',5,'Myra Miguel','https://lh4.googleusercontent.com/-36OT0uHHhJA/AAAAAAAAAAI/AAAAAAAAAAA/RLfm8z4MLXM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBrNd_UxSv4NavMGHoGLek3VrHjfUxNIuwgbjZ5-6wNv_DfOUUimDF7IhHM2iPsqg7b-rjdStX_WyI4gGfuReINJAHWqk','Service was amazing, great people working at this location. Highly recommended 😅','2019-10-10 02:36:19.156000','2019-10-10 02:36:19.156000',5,'Steven Parra','https://lh5.googleusercontent.com/-YjN_ddgJRg4/AAAAAAAAAAI/AAAAAAAAAAA/o49B5HaEqr8/c-rp-mo-br100/photo.jpg','8918455867446117794',9060),('AIe9_BHR7p0hPy1flx1br0TYdEUBrpqNVDKMH9AP8CuwtdoW7EhLrndIu_DAW8buS0uqvdmx0npk9Na5qTdqMAi-gVz9nE4vTDL3rLjwnEhUcI0-sEgzU70','Very great staff from the registration to the doctor very caring folks. highly recommend','2019-12-22 02:45:08.942000','2019-12-22 02:45:08.942000',5,'J Williams','https://lh6.googleusercontent.com/-cd5Fa4W91Tg/AAAAAAAAAAI/AAAAAAAAAAA/afdaaT6poEU/c-rp-mo-br100/photo.jpg','13486358490203335051',672),('AIe9_BHR7p0hPy1flx1br0TYdEUBrrqyCDJZs6awJNZlWUQwnkmf1VPkftQR7mrD0dtoDnj2_kGlZ7Y0CukUTGocKBRdB4kf-3VPvHZyxGf1AEUwdnJ3IO0','SignatureCare Emergency Center Memorial took my husband immediately upon arrival. There was no wait. Doctor Jolly and the nurse Mark (aka Yisroel) were fantastic. Very skilled, informative, patient and caring. This is our family\'s 3rd time at this location and we have had a great experience every time. Deanna with Registration and Julia in Radiology were both efficient and kind.','2019-02-28 19:38:44.045000','2019-02-28 19:38:44.045000',5,'J H','https://lh3.googleusercontent.com/-vj6r9hM0_TU/AAAAAAAAAAI/AAAAAAAAAAA/PnWfAZaB9cA/c-rp-mo-br100/photo.jpg','14904078213800803294',2162),('AIe9_BHR7p0hPy1flx1br0TYdEUBRvppVzS1WJwjd5PM_hz89XMqcacXH_8CsNDtf1aQLw6yLGaHZG5EVBBoUOXyCy3JP0twJoXruZ0nVnFNaDLa4TGFR8Y','Worst customer service ever!','2020-06-30 10:52:48.248000','2020-06-30 10:52:48.248000',1,'isabel Juarez','https://lh6.googleusercontent.com/-eEnyG-AWxwU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckxrhsrgUPBvPSWRphaio-1O671SQ/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21437),('AIe9_BHR7p0hPy1flx1br0TYdEUBRwUvfoouVx_8kk968TFYkeaBBIUzbMusbnYDdVOPhIIfwNgB7XTrOM8vVhULmVa2uAPgV9sQdNlgpDH3f7R7JTODcdY','Dr’s and Rn’s were so nice!! In and out fast.','2018-10-04 00:17:15.886000','2018-10-04 00:17:15.886000',5,'Kris Guerrero','https://lh5.googleusercontent.com/-YW7n5KWXE2o/AAAAAAAAAAI/AAAAAAAAAAA/DS326niSPtw/c-rp-mo-br100/photo.jpg','14567670160750071148',1482),('AIe9_BHR7p0hPy1flx1br0TYdEUBrX-sODRUdQfn8gW45X7knpqyrbxxRV2-J0NsIXL-D8bgO7gOxfrV1Z0RveTA7VZzfEpzrqT6rGK37qQ43TuG0PAgUwI','Very friendly staff, clean facility. All the staff have been great, Lucas, Kim and Eric.','2020-02-18 15:23:13.699000','2020-02-18 15:23:13.699000',5,'Jessica Bruner','https://lh5.googleusercontent.com/-JWrDE7nJkWs/AAAAAAAAAAI/AAAAAAAAAAA/Z2pt-NbBXXM/c-rp-mo-br100/photo.jpg','3272657195432704501',14345),('AIe9_BHR7p0hPy1flx1br0TYdEUBrXD6j75hNE37YeOEd0X6SOZvIY4UrmQ6XUCTkZCt81aTDcYH7iBKdlQ7WkPuFTAvsvFes5FXq-i0RjzSUaDPwMNIb-s','Had a wonderful experience here! It was a super fast and easy visit, and all of the staff were superb. The facilities are amazing. I would highly recommend going here if you\'re feeling under the weather. They will definitely take care of you!','2017-06-02 17:01:34.195000','2017-06-02 17:01:34.195000',5,'Connie J.','https://lh4.googleusercontent.com/-j-CEKijeq6I/AAAAAAAAAAI/AAAAAAAAAAA/QwVvl_irYHE/c-rp-mo-br100/photo.jpg','16590124370714063921',3978),('AIe9_BHR7p0hPy1flx1br0TYdEUBryK_HOhks5sQ_clkc3vWJBsWZTPBXELgxmdNVtFkUSVsrhHOp7I-9yKoqhaIlPhgQD8rxyYrGbJDMdFuj8XHBSEncZI','Josh the tech and Josh the nurse are amazing at what they do. They answered all the questions in detail and made sure we understood everything before leaving','2020-01-10 01:07:37.698000','2020-01-10 01:07:37.698000',5,'Darveon Trahan','https://lh4.googleusercontent.com/-HCxmTUbdPhk/AAAAAAAAAAI/AAAAAAAAAAA/JlM5rRh09Ck/c-rp-mo-br100/photo.jpg','3511292162159714121',14465),('AIe9_BHR7p0hPy1flx1br0TYdEUBrYVZpk6n3W_-A4fZdRFoykDQC8SVuprr23QXKhQwy69MtFylNc8hbJnwmTIFgS99e44THH6ma1Ex1LT8akaDtoq7K0k','Very nice and caring staff. Was in and out very quickly.','2019-03-13 22:34:25.482000','2019-03-13 22:34:25.482000',5,'Rhonda S','https://lh4.googleusercontent.com/--L2Ani9Ecw0/AAAAAAAAAAI/AAAAAAAAAAA/-RJoOuXYsKE/c-rp-mo-br100/photo.jpg','3272657195432704501',6992),('AIe9_BHR7p0hPy1flx1br0TYdEUBS8lYyAqYsfJF-QmbMC0f3qnYsBX4jxI4k8h4XVkLu1IlOVP6tbOX67THpSUpeZOFqwOQiyqhVVuADLJkpWR4CgtHVRk','The staff Rebecca V ,Jeri, Dr. Harjai was all very friendly and helpful.','2019-12-27 01:17:36.855000','2019-12-27 01:17:36.855000',5,'Leslie Budaus','https://lh4.googleusercontent.com/-qiAWcaQpwCs/AAAAAAAAAAI/AAAAAAAAAAA/KsbW32pAd3o/c-rp-mo-br100/photo.jpg','16590124370714063921',3004),('AIe9_BHR7p0hPy1flx1br0TYdEUBSaRbB0PswcY-DKiAlCLObadjiBUE8uBfjkPaOwuRLe3Z0cH97jTjhXYscor68qJHpQPJfy8Ht88xiMpsaiUBleRZAN4','Fast service - Very friendly\nSita was sweet\nKristina and Lisa were fantastic \nDr.Diaz was very receptive \nAllison, Andrew, and Leah were great too!','2019-11-27 06:39:52.849000','2019-11-27 06:39:52.849000',5,'Jodi Sprinkle','https://lh3.googleusercontent.com/-523jEs-eTi8/AAAAAAAAAAI/AAAAAAAAAAA/2gorjO8uCQI/c-rp-mo-br100/photo.jpg','13486358490203335051',714),('AIe9_BHR7p0hPy1flx1br0TYdEUBsdFqTZuVDSwnJNcFikUgJWAE9D4lpg5SuSB_lukjzAHdoIAhmajVOt9RTdeKVr3BA7dV-B40esw6OtutsLfdtiz674c',NULL,'2020-07-22 15:38:20.664000','2020-07-22 15:38:20.664000',5,'Jenna Mullinax','https://lh3.googleusercontent.com/a-/AOh14GjwUG9QSelAJ2Qad5Sn2fwtsp_M8HRq7fi0y5UH=c0x00000000-cc-rp','14567670160750071148',21874),('AIe9_BHR7p0hPy1flx1br0TYdEUBsGDp4Ul_VGSquLTDAyN5-ugMqRWYhzjh8jEgwMWs7L1q_0fR928d8Pepl6XlzdNuLYAU2eEppseBQpQNvuqoey_x5h4','I love this place they\'re like magic I was feeling so bad and on top of that I had my very active 14 month old daughter w me but from the time I walked in Ms Karen could see me stuggling and handed me a mask and speedily checked me in and let me finish paperwork in the back, I had Ms Kelly Vance, RN take care of me when I got there and she was so helpful and kind and started my IV with all the wonderful medicine I needed. I was hydrated and feeling better in hours after suffering almost a week. Thank you all! And Andrew!','2020-03-06 14:25:48.071000','2020-03-06 14:25:48.071000',5,'erin calhoun','https://lh6.googleusercontent.com/-pdz8FpPMY44/AAAAAAAAAAI/AAAAAAAAAAA/hKfNKoFtbPs/c-rp-mo-br100/photo.jpg','8918455867446117794',19517),('AIe9_BHR7p0hPy1flx1br0TYdEUBsgf1fTW2TORXYpEebQpdBgsOTm09asDMnlRD3O2d6ceFqjchCqaK9a8Z-K_eGJjlFvyCJnXB5zCnJ1sgnRgaskwy7mk',NULL,'2017-01-30 14:23:45.034000','2017-01-30 14:23:45.034000',4,'Kevin Hicks','https://lh3.googleusercontent.com/-ZTW-4qR9krU/AAAAAAAAAAI/AAAAAAAAAAA/gI-zfWxgbVs/c-rp-mo-br100/photo.jpg','14904078213800803294',2421),('AIe9_BHR7p0hPy1flx1br0TYdEUBsJkjAFSy1cuy4vKNpRdsAObrfb677_0RI0MEvTfqBAu3ZvV6DFadnwoNP3g7bDhhCPnpUlFSDOer6uZ_Mmd_vWdJEa4','Friendly staff, helped reach a resolution for a difficult medical problem by the end of the session.','2019-03-07 17:30:22.209000','2019-03-07 17:30:22.209000',5,'Damon Printz','https://lh3.googleusercontent.com/-trAOZOHDIDc/AAAAAAAAAAI/AAAAAAAAAAA/sgzZb2ihKZw/c-rp-mo-br100/photo.jpg','16590124370714063921',3506),('AIe9_BHR7p0hPy1flx1br0TYdEUBSJL0nntTDUUViQ1QyzXurLGf6PQGrih6zMZ-JjrcPjAN_Yrt_sd4MeQW9-fJ3YV46c6EHF3PfIGISRcaei3tQiQPflI','Exceptional care by all staff. Earl the receptionist was patient, professional, and timely. Nurse Ashli had an exquisite rapport while as being professional. She was highly skilled, timely, and compassionate. There was not a thing she could of done better. Dr. Lingan was compassionate and thorough. He really listened and treated all of my symptoms. He was smart, proactive, and treated me like family. Dr. Lingan even went over my medications as I was discharging. I feel a lotbetter. Thank you!!!','2020-03-12 06:23:10.131000','2020-03-12 06:23:10.131000',5,'Audra Hoffman','https://lh6.googleusercontent.com/-FfyidOKqo-8/AAAAAAAAAAI/AAAAAAAAAAA/G1PqKZv48VQ/c-rp-mo-br100/photo.jpg','16891069708558046635',21055),('AIe9_BHR7p0hPy1flx1br0TYdEUBsKUpKW9sxp0HBSKjVR5qO2utanaoJ9li7JaKNTnuqqbPfS9aEuLO7dE8daLNGlk_k_D15oVHG1xwgvvAehg664zgsTs','Great experience it was quick fast and easy all staff was awesome very professional, they took care of you from beginning to eand.','2018-07-23 21:59:50.179000','2018-07-23 21:59:50.179000',5,'Emmanuel Huerta','https://lh4.googleusercontent.com/-V45IFAcjMsg/AAAAAAAAAAI/AAAAAAAAAAA/GQFaykKCOPE/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4825),('AIe9_BHR7p0hPy1flx1br0TYdEUBSmhY5Nneiq9CJ0jI7aSWYKfEg1amzpLE7m9pTpeUy58uiEqvACvxf-Vfu7d4Se-FZszXCiD-Q2hfdgGwBVjSk9eU95M','I came to this place and they were super good no waiting time and they check on me quick and I was off in about 1 hr the nurse and the doctor we\'re professional and alvean and Jocelyn were very nice !!! if I needed I definitely will come back over here!!! thank you','2020-01-08 23:53:00.183000','2020-01-08 23:53:00.183000',5,'erykha\'s adventures Gomez','https://lh5.googleusercontent.com/-rcT_Vfk58aY/AAAAAAAAAAI/AAAAAAAAAAA/q_3Tvzi5S5M/c-rp-mo-br100/photo.jpg','16389487648212004696',9443),('AIe9_BHR7p0hPy1flx1br0TYdEUBSO5aVUF0A18TTJ7JbnvwIDWZxtnGuPgwEYfi8UZ-dX23Rm-ZZYUDlSdD754ejLzrdBgS1JthZXVWPKAQmbumomLZnro','my overall experience was pleasant however the scheduling of my code 19 test was a nightmare I planned on visiting my parents over the weekend and started looking for a test on Monday The best I could do was get in at Thursday at 2:00 p.m. when I showed up for my appointment I stood in line only to hear that all appointments were backed up 2 hours and they would call when available other than that my visit was pleasant and the staff was very professional','2020-07-03 19:08:24.069000','2020-07-03 19:08:24.069000',3,'Tom Straughan','https://lh6.googleusercontent.com/--4kPBz7c3Us/AAAAAAAAAAI/AAAAAAAAAAA/ITb2y_c5wgI/c-rp-mo-br100/photo.jpg','12541597562633926366',21340),('AIe9_BHR7p0hPy1flx1br0TYdEUBsO9A0hw07-lcb-1iatrhkSJdoVBix9_wMamh941BOnPyqLmsueHLPk016B1Il4N9yhKU08YKHmnz9N82i6CgH_75qaM','Thank you to Sarah and Tanishia for your help. Everyone was amazing! Thanks again.','2019-11-01 05:07:06.190000','2019-11-01 05:07:06.190000',5,'David Herrera','https://lh4.googleusercontent.com/-hxjDcl_yAcs/AAAAAAAAAAI/AAAAAAAAAAA/KkZ1OUyiHY4/c-rp-mo-br100/photo.jpg','17898197009688164559',5467),('AIe9_BHR7p0hPy1flx1br0TYdEUBSpLq9SJWB15allY4-YCjW1P-t8yNJ7XB3IyfPtI57gEi64w388Ufij5l6aVNJ_nExFLnl7ko4WZptDVAjLu1mJxH4SU','The staff here is wonderful. They were so nice and so friendly. Made the experience that much better.','2020-07-06 12:22:39.387000','2020-07-06 12:22:39.387000',5,'Kelsey Rogers','https://lh3.googleusercontent.com/a-/AOh14GhNPzB6cAnPvMHWV-2SeiHe17n56dAXNZEaMyxIgg=c0x00000000-cc-rp','16389487648212004696',21316),('AIe9_BHR7p0hPy1flx1br0TYdEUBsqCDvTA8OJO1vPcRZ8L1mgkI829X6ULk8qDN2OMD_eRgL6WiV1AMSLOU9pi45UeNoISqy8k7xc48pfGnO58QJtknQWc','My husband can in suffering from heat exhaustion very uncomfortable in lot\'s of pain they had him feeling better in no time. Not to mention I had a issue with my insurance the receptionist was so respectful when she deliver the information . Dr. Booster ,RN\'s Nikki and Sherri, Bryan, Brandon and Erica','2018-08-02 01:31:36.000000','2018-08-02 01:31:36.000000',5,'montray norris','https://lh5.googleusercontent.com/-5EU652TfEKo/AAAAAAAAAAI/AAAAAAAAAAA/CUX5uq39E4Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1577),('AIe9_BHR7p0hPy1flx1br0TYdEUBSxJ0hVsrFvg_tOSjtnYCKeSkCg-1yMEPwhcn-1bS8sUJvhWYK8iTraUCmP_d2YOfeTaRdiM9QnliTLhhtD9PER4RJqk','Dr. Pham and the rest of the staff took care of me and got me the prescription I needed for my ear infections. Definitely recommend.','2019-06-23 22:25:00.115000','2019-06-23 22:25:00.115000',5,'kevin harris','https://lh3.googleusercontent.com/-km6s6VSp73g/AAAAAAAAAAI/AAAAAAAAAAA/RqyqFb0x2_c/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBT-FY5m9jj07uf2UNd8VxZ-_6FxVpXn7sW7AFolejBLFV7EWymA1Pv20x2Hcbu5pYbB8bYbUSZFOGDevoM1R0B9t5qFY',NULL,'2018-02-18 01:05:25.582000','2018-02-18 01:05:25.582000',5,'Kyann Cook','https://lh6.googleusercontent.com/-CXgRIvUH5sE/AAAAAAAAAAI/AAAAAAAAAAA/cuwYrfOqWHM/c-rp-mo-br100/photo.jpg','16590124370714063921',3860),('AIe9_BHR7p0hPy1flx1br0TYdEUBt-yXsd84oHzN4IZT6fC81xlDVVOWKLJ0kmJvXEbBFxbl9JgA1plU7BzV5xnLrhfEEyjB703V15CXYt--kHfsKT-Q4Tk','Excellent Service.','2018-08-18 14:42:46.774000','2018-08-18 14:42:46.774000',5,'Mark David','https://lh4.googleusercontent.com/-EJSmICcm0BA/AAAAAAAAAAI/AAAAAAAAAAA/V1Bls39CTCA/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4445),('AIe9_BHR7p0hPy1flx1br0TYdEUBt6PE0U25sq0qrubA-MDtof_sDipMI4I0bCPF50XYE4T7f4y5f773e3ZqmEsZIGiVsrvyg4KUKG1ARurokTGh1LCDxnQ','Very helpful and professional.','2019-01-27 21:41:39.466000','2019-01-27 21:41:39.466000',5,'William Jackson','https://lh3.googleusercontent.com/-UiYGBA_5dUk/AAAAAAAAAAI/AAAAAAAAAAA/H0dkP2zeOLk/c-rp-mo-br100/photo.jpg','3511292162159714121',7449),('AIe9_BHR7p0hPy1flx1br0TYdEUBT6sH5PhbdlGXtJYtEM6sZKfsBWfeFzE814tBSm8G5Uj2ywC2S47Tr0fl3iX-d9PG73F3TGQjTeJ4yy9nohwjs6XEuFk','Came in severely dehydrated and my stomach overwhelmed from complications from medications taken after my oral surgery.\nFinally came in to Signature after 4 days of lying in bed and getting worse with no food or fluids.\nDr. Garcia, Tristan and the rest of the team took care of me within minutes with IV bags of nutrients and liquids. The next day I was back to eating food and by the next day my stomach acids were balanced.\n\nVery impressed with this clinic. Way better than going to a hospital ER.','2019-02-23 01:34:17.749000','2019-02-23 01:34:17.749000',5,'mark adkins','https://lh3.googleusercontent.com/-xBJ4bDJxNzI/AAAAAAAAAAI/AAAAAAAAAAA/5TSAmhq_Dqk/c-rp-mo-br100/photo.jpg','12541597562633926366',545),('AIe9_BHR7p0hPy1flx1br0TYdEUBt7igniwZHW7R39QTULf0rX-_kgrzxpuc3KQL0s2lB2cXY23WdeKQ5cJlG-SDGddOmFv2UWh0o_sAfBuV9sfAH9Mfz-E','So they are so awesome and you took care of me and made me feel very comfortable. They made sure I had something to drink and even something to eat because I hadn\'t eaten all day. They were very nice and easy going to talk to you it\'s a great place if you ever get sick nurse Kat and radiologist Bryan are awesome people they deserve five stars themselves','2019-02-28 02:02:19.093000','2019-02-28 02:02:19.093000',5,'Kamesa Smith','https://lh5.googleusercontent.com/-Vm55cLamEBM/AAAAAAAAAAI/AAAAAAAAAAA/N2JsmdWf4yY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBtbUWjlCSHOfdZmOBrpYQUeoLXz59S1FfHwSdhLLgXxbxmB_cs_gKe0RYzmFvnpw8B9EDabdas9LoD5DZPgNYrvaB17I',NULL,'2020-07-20 21:00:42.835000','2020-07-20 21:00:42.835000',5,'Kate McIlvain','https://lh4.googleusercontent.com/-0KSSWCXiGUQ/AAAAAAAAAAI/AAAAAAAAAAA/2l7JdPVwqrg/c-rp-mo-br100/photo.jpg','14748677429039074158',21659),('AIe9_BHR7p0hPy1flx1br0TYdEUBtBWDfwVNUYXw6SLmg0SSI3K5Af7Qj2ZdS_XtFqI8mjE7AsOwgRnM2SWHHG13Zetg8bldOd0THLG6B69QYuxsf2440q4','Waiting to see the doctor. Very clean and friendly staff! Was back in my room within 5 minutes. Will update after my visit!','2019-01-16 22:27:08.714000','2019-01-16 22:27:08.714000',5,'Michaela Lamoureux','https://lh3.googleusercontent.com/--fuxwlGVRaI/AAAAAAAAAAI/AAAAAAAAAAA/Q3h2YbWNcxc/c-rp-mo-br100/photo.jpg','3511292162159714121',7469),('AIe9_BHR7p0hPy1flx1br0TYdEUBtDVSl6vnwK-DzCO67l-26xZP30jzIbtD0WVylBTjzQ0F8U89vRwXV0xthhfjv4sBtgNz51mLS0_HJqJIw3s5hioLofY','Signature Care Er care 24 is an awesome facility the staffJoshua,Ekaterini, Deanna and Dr Wang are wonderful care takers. No wait time in and out in less than an hour. Thank you for your service.','2019-10-17 02:09:45.909000','2019-10-17 02:09:45.909000',5,'Susan Langley','https://lh3.googleusercontent.com/-oUrHO4hTKBI/AAAAAAAAAAI/AAAAAAAAAAA/Na737txl7Ko/c-rp-mo-br100/photo.jpg','3511292162159714121',7158),('AIe9_BHR7p0hPy1flx1br0TYdEUBTix94Pyh3YYCS-UI_mKlfE84qq-e5fbbkOCMaGx8QopZoozBXdwYIDp55pv1q-uHMYNdNcLmvYZ_Ku3t8Wgm8eqOAi4','Dr.Ding was a good doctor!!! Nurse Chris and Amy was at the front desk! Was a good stuff!','2019-04-27 15:48:50.392000','2019-04-27 15:48:50.392000',5,'Lacreta Hawkins','https://lh5.googleusercontent.com/-P1Y6u-_BpQo/AAAAAAAAAAI/AAAAAAAAAAA/rW6EEpozhUw/c-rp-mo-br100/photo.jpg','14567670160750071148',1345),('AIe9_BHR7p0hPy1flx1br0TYdEUBtniJm_9T0xeKzcsXm7kgS963sd_jC_QAGb3w3FiPAZX_U3h2NkvicPoEXJjiAKKKoe-_BPFvhRf8AOVEBHqinmmNmxk','Hollie was super nice and funny. nancy and Gabby were sweet and didn’t hesitate to help out in anyway they could. HIGHLY recommend !!!','2020-08-02 20:48:53.233000','2020-08-02 20:48:53.233000',5,'Adriana Zapata','https://lh5.googleusercontent.com/-OHFc_BunL1g/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucndO5kPEHr7j6t97dq6VSOjq6KFlw/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22188),('AIe9_BHR7p0hPy1flx1br0TYdEUBtPSDVfdYm_rd26B4OiJDYHgpa-344Kc0qRfOoT28qaj8VewD_1zOc-Pwg1AyNjCMZ_AaJvjmQA_Xdn-poWCHE2nB-VQ','Had an appointment at 2pm didn’t get seen till like 320pm. Waited for a long time! I understand with short staff but also let people know you how long you will wait for. Overall it was cleaned but as when people were coming in, No one came out to sanitize the seating area. \nI would recommend if you are trying to get a COVID Test result, this place will give you the results the same day.','2020-07-07 22:01:39.078000','2020-07-07 22:01:39.078000',3,'Jessica Cruz','https://lh5.googleusercontent.com/-dbGBoV5GqmI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmL969qTdEMtAyD5ASyiC_rBMbm1w/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21420),('AIe9_BHR7p0hPy1flx1br0TYdEUBtSATDYk7jpiwkXhqdVQKERS6ZhEH0eSyBAUaM4BuJt2xizOEtjmW_-4S3w3tvhArdup0Fcp-0seWlj0U0d-dD03MBZE','This was the most cleanest awsome service emergency hospital i have ever been to The people are awsome beautiful spirit got me in and out quick Dr pateo is the man with the plan awsome guy i would suggest this place to anyone 5 star service','2019-11-29 21:08:41.949000','2019-11-29 21:08:41.949000',5,'Byron Mitchell','https://lh3.googleusercontent.com/-s28IVrDK-bg/AAAAAAAAAAI/AAAAAAAAAAA/DFF0p7Y-S9s/c-rp-mo-br100/photo.jpg','17394740196501090048',14070),('AIe9_BHR7p0hPy1flx1br0TYdEUBtSDY9fDjGDHnLNrschyVwh6nZh9vSt03-mhNJeuHmD47heEs4X2xWyK5PlCyhbtJ1LdzqeMqjEnP647IKqDJcxiJPaM','Fantastic experience- highly recommend. I broke my arm by the Toyota center and googled ‘emergency rooms near me’ knowing that I didn’t want to deal with the crowds in a big, standard ER. I was promptly checked in by Brenda R, who helped me out being I had limited abilities with my arm. Naureen was my nurse, and called me back before I could even finish my paperwork. She was wonderful- very gentle and patient with me. My room was very clean, modern and had a comfortable chair/couch for my daughter, who was with me. My dr. was Dr. Sylvester, who I also highly recommend. He immediately helped me with pain management, seeing how miserable I was. He quickly ordered x rays, which was performed by Dion. Dion had his work cut out for him given how much pain I was in trying to get x rays. He was extremely patient with me and helped me the best he could. Dion also did my CT scans and helped me through that process. \nOverall, I was very happy with my experience and would recommend and go back myself without hesitation.','2019-09-02 13:01:20.581000','2019-09-02 13:01:20.581000',5,'Cindy Mcenaney','https://lh4.googleusercontent.com/-gHsU8atZchA/AAAAAAAAAAI/AAAAAAAAAAA/ugRn_4TSiH8/c-rp-mo-br100/photo.jpg','3511292162159714121',7182),('AIe9_BHR7p0hPy1flx1br0TYdEUBtSIhgrBkAtROZyqFqxhvGK6YPH2yKb8Wd64obfJTNpNhLbDdO-w5KVaUyuS7760GWyHgs21-qXQzWpcY8b5-qt3Nus8','Mercy, Aaron, Laura, and the super sweet red-headed nurse whose name escapes me were all very attentive and caring! 10/10!','2017-02-23 22:49:15.712000','2017-02-23 22:49:15.712000',5,'Cindy McKenzie','https://lh5.googleusercontent.com/-gMUSoA8fXqk/AAAAAAAAAAI/AAAAAAAAAAA/XvdjAUzzgWA/c-rp-mo-br100/photo.jpg','3511292162159714121',7868),('AIe9_BHR7p0hPy1flx1br0TYdEUBTXGHb-umQA9sZeHo57NpF0kJNQdr1rgtNuxAKw8p40O9eSDeh60uOOH_OjJV811jWUrqqdgw96MciawYtM2zb42TNwA','This was beyond the best experience i ever had at a 24 clinic, Tory checked me in soon as i walked in the door, she handled me quickly and i was in the back in no time, i would definitely be back and recommend this place','2017-02-22 01:54:21.009000','2017-02-22 01:54:21.009000',5,'Laquita Johnson','https://lh6.googleusercontent.com/-zy7mKxMPOjg/AAAAAAAAAAI/AAAAAAAAAAA/ibyeqxKyg6g/c-rp-mo-br100/photo.jpg','3511292162159714121',7869); INSERT INTO `review_review` VALUES ('AIe9_BHR7p0hPy1flx1br0TYdEUBtzRHkJ93CP0zNjTSvwmqdP2pkoGp4r4A7OjiVFbkMsnvYnH-0fdV3aZRvSPhJX605nZ47dS1xPmOuMDqztq6wIEZP9I','Very friendly and fast service. Highly recommended to anyone. Thank you Dr. Smith, Remington, Rebecca, and Victoria for such great service 😄.','2019-08-24 21:51:42.609000','2019-08-24 21:51:42.609000',5,'Katia Garza','https://lh5.googleusercontent.com/-_9EQXWUfUDk/AAAAAAAAAAI/AAAAAAAAAAA/6oW01wUocXE/c-rp-mo-br100/photo.jpg','16590124370714063921',3237),('AIe9_BHR7p0hPy1flx1br0TYdEUBu2-xVUwEfqU8bKeBvhoyUv4veHr2g2P_zLtw4gvVn6HGlwluOougr071YPaButDPAGE4OUL6LXVqfqlerNBk9VB8Nc0','Very friendly and professional staff. I appreciate their hard work in the heat!','2020-06-12 17:49:51.086000','2020-06-12 17:49:51.086000',5,'Emily Bowen','https://lh3.googleusercontent.com/a-/AOh14GhzohNLjs4sU0-vqoAD4dAOmrmtUo05n_hNE_v4hg=c0x00000000-cc-rp','16891069708558046635',22049),('AIe9_BHR7p0hPy1flx1br0TYdEUBu3lTZ8fasVyIsnEUtA8WKbR3YzAhty6khflJLcX0YKBUUj_XbFD857XxAHebC4Aa82LrONNHUVTKOGM5PyIpIjyAC5o','Signature Care is run and operated at the highest quality and standard. Alexis (reception) and Gabe (nurse) where both amazing and made me feel so welcome and heard. I had no wait time at all. The staff is highly respectful and understanding. The facility is clean as a whistle. Most importantly the staff from check in to check out are very clearly trained, experienced, and gunuinly care about what they do. If I ever need to go to the ER again it will most definitely be signature care.','2018-04-15 02:36:55.354000','2018-04-15 02:36:55.354000',5,'Megan Morgan','https://lh5.googleusercontent.com/-4fLRE-22N8U/AAAAAAAAAAI/AAAAAAAAAAA/CqvvhhEViO4/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3838),('AIe9_BHR7p0hPy1flx1br0TYdEUBu3YD-WEtdfp3Exd93jfVHzowy-WgL-Xw_8s9Tc3Ay4LeneLKjIaXERJb1-TcNkSa0Fu_J6ga5Vzt8UEU1-599h-9nCk',NULL,'2016-06-07 07:29:06.513000','2016-06-07 07:29:06.513000',5,'Ashley Filippi','https://lh6.googleusercontent.com/-W1xaGCqYF30/AAAAAAAAAAI/AAAAAAAAAAA/u_c6S-GvVLQ/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7992),('AIe9_BHR7p0hPy1flx1br0TYdEUBU4rG7Ysst1n6WJXqyS7vUfHu2NAFLJbU3j4n-HkB_dQKHOUVxjKDb0DpdehgOJOIn_XiR86zZZQUBSrUXCPl2tUBTeg','Very clean, nice facility. Staff is attentive and caring!','2018-08-11 15:28:06.717000','2018-08-11 15:28:06.717000',5,'Hannah V','https://lh3.googleusercontent.com/-QOVeUPM9XHk/AAAAAAAAAAI/AAAAAAAAAAA/1PZp_at-SvI/c-rp-mo-br100/photo.jpg','3511292162159714121',7635),('AIe9_BHR7p0hPy1flx1br0TYdEUBU7f5mHtU4g92dkgBAIMltUoVBCsM-kk3bjB89hnG2NIkF2Efst9Kk4P0s4Zufe_uT4AIHX_VWB5QyBxTUCb1ik8p_PU','Oz helped me out! He was very helpful. Ask for him every time!','2020-07-24 02:41:33.105000','2020-07-24 02:41:33.105000',5,'Nery Rodriguez','https://lh5.googleusercontent.com/-6KPk-oNs86c/AAAAAAAAAAI/AAAAAAAAAAA/gSHOa1-1xvA/c-rp-mo-ba3-br100/photo.jpg','14748677429039074158',22571),('AIe9_BHR7p0hPy1flx1br0TYdEUBuCBLx7gkzj2Wv434NHRBrG_802UT6EGI8YqBM4_V206-7QgfJABlH4-pNNb1IAUyoGtrGw3878jnUdFp4CE03S60jsk','The entire staff from check-in to seeing the doctor were phenomenal. They were caring, courteous and very professional. I would highly recommend that you see them should you need ER services as you will get the best care possible.','2019-06-27 20:14:38.021000','2019-06-27 20:14:38.021000',5,'T Jones','https://lh4.googleusercontent.com/-wKc6FW9V6aU/AAAAAAAAAAI/AAAAAAAAAAA/RyG--z1yiZk/c-rp-mo-br100/photo.jpg','17898197009688164559',5675),('AIe9_BHR7p0hPy1flx1br0TYdEUBuDt48Kt8cBNz2BlFc2reixtHUsFvTRh5yqMCWCsFaroEdaZ0u536I3XomOrRN7T8wBjnFN70YL4i3va2GayX8gCwuAo','They are fast and have good bedside manners.','2017-04-11 15:19:37.850000','2017-04-11 15:19:37.850000',4,'Eve Lluv Joii','https://lh5.googleusercontent.com/-J7O4Zsoeq3Q/AAAAAAAAAAI/AAAAAAAAAAA/zrthIj6kWko/c-rp-mo-br100/photo.jpg','14567670160750071148',1850),('AIe9_BHR7p0hPy1flx1br0TYdEUBUF7IdhkvRhnczuQYZmpgdRAH_0tb5iWEdhqPkBfTgoy7rInm6Ee0fZazMNGNuhzWjMVS-vhk0d5okZ-lpEXpyArbtTY','Dr O’Malley , alvean, Tricia, Natalie \n They were all very friendly and helpful','2019-11-01 23:08:40.111000','2019-11-01 23:08:40.111000',5,'jimena alamilla','https://lh4.googleusercontent.com/-muROkH18nnA/AAAAAAAAAAI/AAAAAAAAAAA/n9ITfpo9e88/c-rp-mo-br100/photo.jpg','16389487648212004696',2736),('AIe9_BHR7p0hPy1flx1br0TYdEUBuhJsONVYgrij70bCogfGveYJukAJhUv33HWnwW3Ze1yzgnFuYVwDtWjGkQBG7914eS32gcuGB-sRtTtI26nBIqcIXkc','Everyone was great with our 2 year old when she started complaining nonstop of arm pain. They were fast and good with her. Kristina and Leah were perfect with her.','2019-11-27 06:21:06.299000','2019-11-27 06:21:06.299000',5,'John Hord','https://lh5.googleusercontent.com/-yIIcmRyTHGQ/AAAAAAAAAAI/AAAAAAAAAAA/u2SGAcbzCqg/c-rp-mo-br100/photo.jpg','13486358490203335051',715),('AIe9_BHR7p0hPy1flx1br0TYdEUBULD1hJGGuttsebLaWf4AxPTW1wkiu0TG3antxEeCYo3SZhbHMsFZM8WQVrhskDgb2Xoy_2Vrg-t-ioTHmP0XoQacw2o','GREAT place','2019-11-13 00:51:37.814000','2019-11-13 00:51:37.814000',5,'Blake Davis','https://lh6.googleusercontent.com/-irHCe6-Rgnc/AAAAAAAAAAI/AAAAAAAAAAA/JvtdIOrgdso/c-rp-mo-br100/photo.jpg','13486358490203335051',743),('AIe9_BHR7p0hPy1flx1br0TYdEUBULFTSeNtVDkqRREC0rNu68ov9gjsDYo0lP8N9BGdfNVCcUY4IvQFtr8sunANMNpZjvTlnnD6rR5DPWypPH8yT0I4I38','I had a great experience and it is an excellent place to visit when you need urgent care. It is clean well maintained ER. The staff was so friendly so helpful. Thanks Dr Lingan who was so professional, Thanks Nurse Gabe who was so helpful and friendly all staff was very nice thanks a lot for helping me.','2020-02-17 19:49:18.262000','2020-02-17 19:49:18.262000',5,'Rana Damaj','https://lh5.googleusercontent.com/-NYDgzfdbtgc/AAAAAAAAAAI/AAAAAAAAAAA/FgOKxilWFnE/c-rp-mo-br100/photo.jpg','16891069708558046635',13946),('AIe9_BHR7p0hPy1flx1br0TYdEUBulNkDhJKnaeSvcz2JVEJh7xqn6pQYhGl6onB8DhCBfUHjRMUhMvH8-WoYKIox0stTsxDccnpvSjMjaMQuQHnzKfqjME','Everyone was so kind and attentive not just to my husband who was the patient but to my daughter and myself as well. Truly caring and genuine. They were on top of it. Mercy was so sweet and considerate. Thank you guys so much!','2018-04-26 00:28:17.982000','2018-04-26 00:28:17.982000',5,'Adelita Dabbs','https://lh4.googleusercontent.com/-jw3gSX-AWy4/AAAAAAAAAAI/AAAAAAAAAAA/aAILozpYSks/c-rp-mo-br100/photo.jpg','3511292162159714121',7707),('AIe9_BHR7p0hPy1flx1br0TYdEUBuocKYDVhhB-SOL9Wsuhbei0DC0S0fXgIjRuQc_Gxek-Ewj37nhxoYNO5LX8s8IrekvhWnUwl5zbuz13Srs7A9iCU51g',NULL,'2017-09-26 21:47:37.607000','2017-09-26 21:47:37.607000',1,'Nathan Nanson','https://lh4.googleusercontent.com/-j-ZTHPiFyAw/AAAAAAAAAAI/AAAAAAAAAAA/II7fnf0i_Vw/c-rp-mo-br100/photo.jpg','17394740196501090048',4962),('AIe9_BHR7p0hPy1flx1br0TYdEUBuU2HFtDaDFz6u3xpCdr0jPAVci0uJX__gLHYpEeCcuF_M4VqfsVyzLO5oVz4HHgw1tQArbEQ35vRV4NSGCNQV58H1ms','Very attentive and compassionate care! Thank you!','2020-06-04 07:22:04.863000','2020-06-04 07:22:04.863000',5,'John Borden','https://lh4.googleusercontent.com/-Ado6slgGOPE/AAAAAAAAAAI/AAAAAAAAAAA/8idn-PcZGGM/c-rp-mo-br100/photo.jpg','14748677429039074158',21774),('AIe9_BHR7p0hPy1flx1br0TYdEUBUur_N_6Zy23Ibk8nu0TGzdO1Z5mcoFJ0ZMbnk1vKZveDPdIRi1kaK18kZ6UqkpoddQrSZCBMqdq8ctyGQIr9tyswnEE','Super clean, super friendly and super quick. I went in thinking sinuses but came out knowing it was Flu B in less than an hour all together. I will definitely recommend.','2020-02-04 16:05:33.353000','2020-02-04 16:05:33.353000',5,'Robin McGee','https://lh3.googleusercontent.com/-sW0BAlZWdok/AAAAAAAAAAI/AAAAAAAAAAA/J-skb61bHrA/c-rp-mo-br100/photo.jpg','8626688543755174284',14623),('AIe9_BHR7p0hPy1flx1br0TYdEUBuwmRwV-nZq1vrsbS9PN4B31SZZWgDs6qBbr4hBCCWtvdkbYrk5RI-536sS-cdb7zSEeAnN4oxxjbwIEOHblrdsL61DI',NULL,'2019-03-20 03:34:20.684000','2019-03-20 03:34:20.684000',5,'matt wellwellwell','https://lh3.googleusercontent.com/-hRw5Ssogh5U/AAAAAAAAAAI/AAAAAAAAAAA/YgQNJrbJ6po/c-rp-mo-ba5-br100/photo.jpg','8679688254631342173',8859),('AIe9_BHR7p0hPy1flx1br0TYdEUBv3fiARblrEcTNu3FgCfnk4O20YJ9ZYE9JPJ3cRam-If4yMqfK9DXiT8iBps3pTAozOqVJMlDzMU1490t9HTQmCTRTbY',NULL,'2016-07-02 07:29:02.847000','2016-07-02 07:29:02.847000',5,'Lauren Nwegbo','https://lh6.googleusercontent.com/-Icyyd8-Wwuw/AAAAAAAAAAI/AAAAAAAAAAA/HTyWmCMAQeY/c-rp-mo-br100/photo.jpg','3511292162159714121',7968),('AIe9_BHR7p0hPy1flx1br0TYdEUBVDwM8qTjPApIFfxQ1jFta9z9_4QzYtr_UWKbrnXj8uBHCH23x2lP65FzSS-xV8XW49mjrVuIXjZw_1Bllu4bD7Sdn5I','I felt they were all very professional here at Er Care on Grandview in Odessa. I really loved the staff Jessica the nurse, Ashley the Front receptionist, the tech Eliza, Megan the radiologist. They were awesome. I would recommend.','2019-11-04 00:56:37.508000','2019-11-04 00:56:37.508000',5,'Lidia Picazo','https://lh6.googleusercontent.com/-wMoxd_cHgS8/AAAAAAAAAAI/AAAAAAAAAAA/nkXOy_8Zke4/c-rp-mo-br100/photo.jpg','6521947413723274945',8099),('AIe9_BHR7p0hPy1flx1br0TYdEUBvHTI-RlOzU68e4C8oOBKUoIGgvPOwOa60L02iZ3hLXbqQbf0uoeJSlpCW9PUfWWI8A2NXjQMAC2yeG5p8Vb73cZ0lxU',NULL,'2019-01-31 16:01:39.210000','2019-01-31 16:01:39.210000',5,'Karen Ply','https://lh4.googleusercontent.com/-drwpTiZvZb8/AAAAAAAAAAI/AAAAAAAAAAA/cSx0MehBMEM/c-rp-mo-br100/photo.jpg','3272657195432704501',7033),('AIe9_BHR7p0hPy1flx1br0TYdEUBvl-J_GrhfJmLwhR5CzmG6TUoIErB9lAs0eN4y5sIAfASyxJM15uH85H99w9gZ4IheWCYIOY7LUVwHnHa0KpbRR73B8Y','Came here when sick. Alvean, Jose, and Tricia took extra care of me. I was seen immediately amid quickly assessed for my illness. I would recommend to anyone who may be sick','2020-03-12 21:16:44.324000','2020-03-12 21:16:44.324000',5,'antony morin','https://lh5.googleusercontent.com/-61nCuawA8L8/AAAAAAAAAAI/AAAAAAAAAAA/5h8aztct9DQ/c-rp-mo-br100/photo.jpg','16389487648212004696',12121),('AIe9_BHR7p0hPy1flx1br0TYdEUBvNFzKXPI3lPrwZIGTy01bHEVpow3kqEi1fE4U4VdDaNr3WSf_yUhMtFPNIjmZ5LB_ikhbuQFP47DakwxT-TAEw0FUnI',NULL,'2020-08-02 11:38:37.982000','2020-08-02 11:38:37.982000',5,'Anna Noel','https://lh4.googleusercontent.com/-egFdZ0irsxE/AAAAAAAAAAI/AAAAAAAAAAA/VvDzHCIuWbk/c-rp-mo-br100/photo.jpg','2077061009497551125',22979),('AIe9_BHR7p0hPy1flx1br0TYdEUBVNxQWW_Mj6aJPzJs92BKM1CVMCbNyNb_9hotbVjRBqO06syJub-jgaT6a7ar-F255wuyMiUu5EcSelaLAcp3DjzUF9o','Nurse Jacob and Doctor Vaagenes were super sweet and helpful. Every time I come to this place I receive the best care.','2019-04-17 15:38:38.998000','2019-04-17 15:38:38.998000',5,'Sarah Gallaher','https://lh6.googleusercontent.com/-Q3pRgVdMiQc/AAAAAAAAAAI/AAAAAAAAAAA/kYosOaocmWU/c-rp-mo-br100/photo.jpg','16590124370714063921',3426),('AIe9_BHR7p0hPy1flx1br0TYdEUBvqfyqM8Aza3rOFJ39ESCfuQt3EVmFL9bGcYpdTEdaLHXGEBNkeOYgySyj0OFdJ2emDn1ffb2KiHTeu86jrehVJ-x9o8','I\'m usually skeptical of ER centers, mostly due to bad prior experiences and generally poor reviews from friends/online. However, I needed after hours care and did not want to deal with the long wait time at the hospital. So after seeing the great reviews of this place, I gave it a chance. By far the best hospital/clinic experience I\'ve ever had. From the front office staff, to the nurses and of course the MD. Everyone was very courteous and professional. The facility is extremely clean and well laid out. I was checked-in and talking to the Doctor within 10 minutes of arriving. My procedure was quick and painless, and I was out the door in no time. I had a few follow up courtesy calls the next day. If I ever needed similar services, I wouldn\'t hesitate to go back.\n\nFor reference:\n\nDR. VAAGENES PETTER D.O. \nNurse: Hernandez, Johnny Keith \nRadiology Tech: Rojas, Vanya Joy Sanchez \nFront Desk: Rojas, Jessica Rae Sanchez','2018-02-23 21:44:29.505000','2018-02-23 21:44:29.505000',5,'Michael Juarez','https://lh5.googleusercontent.com/-PR9xtSM_CUQ/AAAAAAAAAAI/AAAAAAAAAAA/gNoWYMky7EI/c-rp-mo-br100/photo.jpg','14567670160750071148',1651),('AIe9_BHR7p0hPy1flx1br0TYdEUBVQiY2M2oqHYMy5AQ8Ec7GBo3Mf3An2-vxsVloh0CyTVS6hs9AvVVhiSs6-FNIni69yLhqgXeFkKkumpbN95jbhbrU8w','Very clean, fast \nThe staff and the doctors are wonderful..\nI recommend it to all my family members.','2017-02-07 12:33:20.134000','2017-02-07 12:33:20.134000',5,'lp reveiw','https://lh3.googleusercontent.com/-nqE4xjyfKNg/AAAAAAAAAAI/AAAAAAAAAAA/hEKY0xgpEyQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1892),('AIe9_BHR7p0hPy1flx1br0TYdEUBVRkbRzRavOREzmODT29YyicWLWanUkZrm1mYBtmd_lvNpb4O9KH884VUI94h_GYBmsBlJXjP44HJsusN3blQEupOjGQ','Lorena and Victoria were very helpful and friendly while I checked into my appt. Rachel was very professional and gentle while doing myCOVID test. Highly recommended!!!','2020-07-26 21:41:06.952000','2020-07-26 21:41:06.952000',5,'Kasi Wright','https://lh3.googleusercontent.com/-NPXPS0MgL2A/AAAAAAAAAAI/AAAAAAAAAAA/X4q0oi5V_7A/c-rp-mo-br100/photo.jpg','16590124370714063921',22017),('AIe9_BHR7p0hPy1flx1br0TYdEUBvShESAhLMfpL_LW3eGEODphrTPZ3N4O2InVgaDCGNI2Jptxj4DPMizvLNF4ZsM3Vr0SBVHGuBm6YP9Rh21tz9JfjyYw','OMG so glad this place exists. First off the wait was non- existent. The doctor came in right away. I think everyone there attended to me at some point. Dr. Zheng, Dr. Hehman, Nurse Nicole, Brandon, sorry if I forgot your name like the lovely EMT lady. They meant what they said, we were constantly checked on and updated. My hubby was even offered a warm blanket and snacks. Almost wanted to stay longer with such hospitality lol. Then Sibienne sent us off with a gift bag. To crown it all, while I was waiting on hubby to bring the car around since it was raining, the security guard showed up with an umbrella and walked me to the car. Amazed!!! God bless you all!!!!','2019-02-04 14:30:43.824000','2019-02-04 14:30:43.824000',5,'Million Airess','https://lh3.googleusercontent.com/-xRaUHnRGpn8/AAAAAAAAAAI/AAAAAAAAAAA/nnQvB6msCaQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9183),('AIe9_BHR7p0hPy1flx1br0TYdEUBVxwlfkKB9AsnvTQHxpOEkb-9io_tslA_O4n9tdnAvthY0jDIo6um8jUr94NJx-MPrhkBNLioDzXofHto6DXUwlILMok','I have never been in an emergency room where all of the staff, including the doctor, were so friendly and so respectful to their patients. I feel better after the visit and loved what I saw. I really wish I had known about Signature Care before. It has saved a ton of pain and even saved money compared to a hospital! My wait time wasn\'t but a couple of minutes! Why can\'t hospitals do that? Thanks so much SC for your service to us in the community.','2018-04-24 22:53:18.266000','2018-04-24 22:53:18.266000',5,'Kevin','https://lh4.googleusercontent.com/-j379GQUFWvA/AAAAAAAAAAI/AAAAAAAAAAA/g0BOcS_hPbM/c-rp-mo-br100/photo.jpg','14904078213800803294',2259),('AIe9_BHR7p0hPy1flx1br0TYdEUBW_dMtAKt1Jm7kqitvxS6vjdv3HLm8BsZshO_IrwtJui3IKGDzJBLXQ8q_jV2-KnXffNvPh0UN-9lJF6Nrskm05ttQf8','Staff is very friendly and informative. Speedy check-in! No lines= no wait time! Was seen and discharged in less than an hour. Highly recommend! Thank you Dr. Pham, Alvean, Marcus, Vanessa and Keith for taking good care of me!!','2019-11-19 22:57:01.498000','2019-11-19 22:57:01.498000',5,'Sharon Garza','https://lh4.googleusercontent.com/-vi0JZ0gjlC8/AAAAAAAAAAI/AAAAAAAAAAA/TyDSw1YBHgA/c-rp-mo-br100/photo.jpg','16389487648212004696',2658),('AIe9_BHR7p0hPy1flx1br0TYdEUBW040DJbUTXkHPAfMnQUAP6KbfEPscTs8A6ybwc0RHnlzQlPOAEWrAQ0LRvrLWmbYHS1LtuW7re0ZvRPBCavfeSnvyzI','I Will always go back to Signature Care because how I was Treated. All the staff was amazing. Thank you to Earl, Ian Rn, Dr. Lingan, and Linda the rad tech. I could not have ask for a better team of health care providers.','2018-07-25 12:46:02.364000','2018-07-25 12:46:02.364000',5,'william morse','https://lh6.googleusercontent.com/-niWoZhvh9pQ/AAAAAAAAAAI/AAAAAAAAAAA/He_Yn4soCOk/c-rp-mo-br100/photo.jpg','16891069708558046635',4458),('AIe9_BHR7p0hPy1flx1br0TYdEUBW1AfVfGFF4tz7rIgdP2fNJos_3fM1GhtZ-UxKWe22TdsIQ4_V8adbqVIGf3vkuuQVSS1Isc2Y4gUpQtlxDeXW9b5Bic','I was taken care of very well and everyone was extremely friendly and helpful. Dr.Singla, Jerry, and Rebecca were awesome!','2017-02-22 03:53:40.967000','2017-02-22 03:53:40.967000',5,'Noah Perales','https://lh3.googleusercontent.com/--PbrTA0tnkA/AAAAAAAAAAI/AAAAAAAAAAA/H_rJy-a3kbY/c-rp-mo-br100/photo.jpg','16590124370714063921',4051),('AIe9_BHR7p0hPy1flx1br0TYdEUBWbrwbWeHV32GBYwacXSnW96GiA-h9D9ACRrzx0dJ_MIkM1SLfgy1cIluKQXKbuDMnYOGwkmDSJRsuh-3xYUBpbu7VLc','I came in for ear pain and everyone was so nice! \nTanishia was great, super helpful, and funny!! 10/10 would definitely recommend coming here!','2019-09-30 02:55:03.385000','2019-09-30 02:55:03.385000',5,'Edith Grimm','https://lh3.googleusercontent.com/-7wU-5s_6dNg/AAAAAAAAAAI/AAAAAAAAAAA/4IeoZROwzwE/c-rp-mo-br100/photo.jpg','17898197009688164559',5532),('AIe9_BHR7p0hPy1flx1br0TYdEUBwbuN8tzEyRPZQXUk3V5J7Um1ZTPckqdO84FQEwCTXX6Qhw1s6tEL7OHP-dCkzy1hDNf68alt3_B-BLTkWztGcgxHaCY','Dr. Wren and all her staff were amazing during my visit on 1/9/19. I appreciate the love and care that was shown from each individual. From the front desk to the back. Thanks Signature Care.','2019-01-11 17:46:19.791000','2019-01-10 16:24:27.719000',5,'Jerrod Roland','https://lh5.googleusercontent.com/-QllR-eVjj44/AAAAAAAAAAI/AAAAAAAAAAA/j9L74IlAzP4/c-rp-mo-br100/photo.jpg','8918455867446117794',9194),('AIe9_BHR7p0hPy1flx1br0TYdEUBwhO16NVONhoVML3BbBjKu2xjciofke0u0XS6AF1kgbcmsUGeem3ctL6asdINRY6j_P9_3rtoUsSBg5SlIgPJfl39CaY','Very caring doctors and excellent service !\nThank you Dr. Tran , Nurse Troy, Sean, Marvin and Jesus!!!','2019-09-25 02:58:30.403000','2019-09-25 02:58:30.403000',5,'Monique Salinas','https://lh5.googleusercontent.com/-u6STMK9IzFg/AAAAAAAAAAI/AAAAAAAAAAA/9kRotEATLs8/c-rp-mo-br100/photo.jpg','16389487648212004696',2885),('AIe9_BHR7p0hPy1flx1br0TYdEUBWIY_y8JnLNA6IpgNQZ-Cj7414MzHhk7VQ_wonZ1q0227mRTlmw4hW6mqom_CuJF_hA6MCdHFwBoizrKlSdPCN2npbyU','From the time I walked in, to leaving everyone was very respectful and had compassionate care. They were very prompt with my care and kept me updated. If my family or myself needs urgent care in the future I will be coming back.','2020-01-25 20:03:08.120000','2020-01-25 20:03:08.120000',5,'Camille Beaver','https://lh3.googleusercontent.com/-vj0j-3ZweW8/AAAAAAAAAAI/AAAAAAAAAAA/rywY8OTVkvc/c-rp-mo-br100/photo.jpg','16891069708558046635',13974),('AIe9_BHR7p0hPy1flx1br0TYdEUBWk9GZFJ1JddwwJ7zDVVmUl8WwDVtBS4hlcDQfBhjuLfwxDEvYxQ5TEvO8FOnFTCTIWJ5m1GSb2GG7wLJjWC4lEAvbao','The service was outstanding, a great place that highlights the fun and good times of what being a doctor consist of ... the nurse Gina, ER tech Olivia, and Dr Grinblatas definitely made it better with their smiles and great vibes.','2019-07-15 23:01:42.297000','2019-07-15 23:01:42.297000',5,'It’s Tahjk','https://lh5.googleusercontent.com/-D4TzFgsocpg/AAAAAAAAAAI/AAAAAAAAAAA/Y_78by70h_4/c-rp-mo-br100/photo.jpg','3511292162159714121',7250),('AIe9_BHR7p0hPy1flx1br0TYdEUBwlRs8U6FJa0ckHLF0yiAJoeqtJIGUzthYNI6yNqrOqYwSN9XlF_5A782OddW_W2rx7rZRDDzZtnQcnuE-Gz-B5WaQig','This place is all over amazing. Kim, Dyveliz, JR, and brad were awesome and super fast on helping my friend get her diagnosis.','2018-08-22 19:04:55.487000','2018-08-22 19:04:55.487000',5,'Sarah Stephens','https://lh4.googleusercontent.com/-RQK49C9x6n0/AAAAAAAAAAI/AAAAAAAAAAA/1tgKIIO0uC4/c-rp-mo-br100/photo.jpg','16590124370714063921',3774),('AIe9_BHR7p0hPy1flx1br0TYdEUBWOS90wO7GscPekmdLR0iC22SLqK7O-4PmPAJ3j53ATqy9399y5uKsqz9vD6ZldNi85Qa95hM1tP7By3E-kGNRGpMFZg','Very positive experience at the Emergency Center at Montrose. The lobby was very clean, an attendant was continuously cleaning and strilizing seats and tables. The staff were friendly and efficient. The nurses that took my vitals were also very friendly, kind and very thorough. Test results were returned very quickly,l. The doctor providing my results, was able to answer my questions, was relaxed in spite of the heavy workload waiting for him. Glad I made the drive','2020-07-19 13:35:55.169000','2020-07-19 13:35:55.169000',5,'stephen bailey','https://lh3.googleusercontent.com/a-/AOh14GhLfwHXq7Aowd46qg4iHmQ-e7OGlzLuWBhxWf4beg=c0x00000000-cc-rp','3511292162159714121',22160),('AIe9_BHR7p0hPy1flx1br0TYdEUBWOYLIWq6gRqTrVsHJSC-HWYmSm9LUChB9mSLUGw7rvAWx1yuCyTZ7s1JyFa90RdJUdlFoi6LgX8qljCQwPol5RxMh1Q','I had a great experience.. It','2019-12-17 01:35:41.725000','2019-12-17 01:35:41.725000',5,'Braylon Jefferson','https://lh3.googleusercontent.com/-1MqLPY8T3P8/AAAAAAAAAAI/AAAAAAAAAAA/BCKn7N9CdA0/c-rp-mo-br100/photo.jpg','3272657195432704501',6837),('AIe9_BHR7p0hPy1flx1br0TYdEUBwPMHyMZyqDKDorjb3fiboVZfIRm_mlmmHbJhfPYyQxbP2kMheLt8a8-jVwocla2s5amKfsBZbDUdVucynK_464PEq94','Visit to an ER is never under good circumstances. I had an ankle sprain and wanted to confirm that it was not anything bigger and visited Signaturecare based on online reviews. I found the staff very courteous, facilities were clean and i was able to complete the whole process within 2.5 hours on a Sunday evening.','2016-06-13 13:09:18.329000','2016-06-13 13:09:18.329000',5,'Anush Nambi','https://lh4.googleusercontent.com/-7XjnApHhJcw/AAAAAAAAAAI/AAAAAAAAAAA/yXrPrK-1Uxk/c-rp-mo-br100/photo.jpg','3511292162159714121',7985),('AIe9_BHR7p0hPy1flx1br0TYdEUBWRB50UxhE5J-_JZNIuvJmArukZN1fFdWuShR6iRC37O3QIlML94aJuR3RzuYVdGxfObomR__LpuYvDszepislsqfp4I','Jennifer D was so helpful at the front desk \nShe greeted us, made us feel at home!','2019-06-16 14:33:34.565000','2019-06-16 14:33:34.565000',5,'Jasmine Hill','https://lh5.googleusercontent.com/-_gH6rlEt_fY/AAAAAAAAAAI/AAAAAAAAAAA/mtysyVR6dtw/c-rp-mo-br100/photo.jpg','8626688543755174284',8446),('AIe9_BHR7p0hPy1flx1br0TYdEUBWrvDXPkPI-ONb1u0qsiMTKixb30LXrgccl19SpkP3CyIrLisLmNhKw7bEbqn1svpCs2RZnpAwIqnL436QrF3DyUJqg4','Signature Care has a wonderful team! They called my Mom back quickly and were able to diagnose her in less than an hour! Thank you to Dr. O’Mallet, Nikaela, Marcus B., Bram D., and Patricia.','2019-11-28 16:58:41.658000','2019-11-28 16:58:41.658000',5,'Crystal Calhoun','https://lh5.googleusercontent.com/-D3nGoK77rrk/AAAAAAAAAAI/AAAAAAAAAAA/Sdr--ZkfzWc/c-rp-mo-br100/photo.jpg','16389487648212004696',2613),('AIe9_BHR7p0hPy1flx1br0TYdEUBwVBRy_arb_MSSNPlZuhutNPw69YR0pK_JubocriUZwXcoxCmFGIejklTEQbWKLcMJe9wL5iBSNiSHJCfLn_xGCO9AtU','I am an RN and suffered an episode of chest pain while in College Station. The care i received was EXCEPTIONAL! I can’t thank the team at Signature Care enough. This clinic comes HIGHLY RECOMMENDED from this nurse! Thank you again Signature Team!!! You guys ROCK!⭐️⭐️⭐️⭐️⭐️','2018-08-12 23:33:57.218000','2018-08-12 23:33:57.218000',5,'Moosefeller 101','https://lh4.googleusercontent.com/-ZhW3ruEz9Mo/AAAAAAAAAAI/AAAAAAAAAAA/pPJce3KOg7Y/c-rp-mo-br100/photo.jpg','16590124370714063921',3794),('AIe9_BHR7p0hPy1flx1br0TYdEUBX3wBWgnhphwTIMW5wl-n8qNPP9mjdEZD02gT71sbXhk_L1QI2dI8T_hTWzbhZqRHBen2mKDzY-VumpLUB3xvc25HQnw','The staff at Signature Care was excellent especially Dr. Leavitt. I went to another ER center earlier that night and they failed to address my life threatening wound. However, the decision to come to Signature likely saved my life. I\'m so thankful for your help. God bless!','2019-06-21 06:45:19.237000','2019-06-21 06:45:19.237000',5,'Brian Jackson','https://lh6.googleusercontent.com/-HAQFIh87JO4/AAAAAAAAAAI/AAAAAAAAAAA/zue9lfMxF0g/c-rp-mo-br100/photo.jpg','14567670160750071148',1291),('AIe9_BHR7p0hPy1flx1br0TYdEUBXAJezqA67imT4XVaFm5s0TEQvV27sZIedv6FkRLty9l__1YmAfdWknt9ANDUWFDLe0XI0RpcBJua_0AmZJbD4G8FVlU','These people were very helpful today \n\nRegistration: Kimberly \n\nNurse: brad\n\nRadiology: Morgan','2017-03-07 18:58:33.068000','2017-03-07 18:58:33.068000',5,'Nicholas Bregenzer','https://lh6.googleusercontent.com/-2M9bVm68TFo/AAAAAAAAAAI/AAAAAAAAAAA/TqrZHva8o9I/c-rp-mo-br100/photo.jpg','16590124370714063921',4041),('AIe9_BHR7p0hPy1flx1br0TYdEUBXbTXfNS0ByO4SwFqTjiSM6l5YaijJ6PeAB8s8OqBSg87DlZR1TRKEvA8EXbQvLNod8lc_sfdyLX6AXN5VDeB_wznLqA','Dr Hehman is very professional and he listens to your concerns.The nurse Shawn was very nice and theygive good customer service! THANKS TO KAREN FOR YOUR HELP!','2020-03-13 01:36:40.868000','2020-03-13 01:36:40.868000',5,'Victor Almestica','https://lh4.googleusercontent.com/-x3BxZK58TgA/AAAAAAAAAAI/AAAAAAAAAAA/UUe2U0cX4fc/c-rp-mo-br100/photo.jpg','8918455867446117794',21236),('AIe9_BHR7p0hPy1flx1br0TYdEUBXdE5WL14QCNnGD5Hm3czMmbw2WATsW56K4MuyhoC5xndYX-f5Wrz6TZUE4DfwR9GbhJV-Rkic-w2FPa-Sfd_wv_T3bA','Always provides excellent care! Thank you Henderson, Angel, Susan, Laura, Tanishia.','2020-02-19 02:21:45.803000','2020-02-19 02:21:45.803000',5,'Cortney Spruill','https://lh5.googleusercontent.com/-UMHfM5ynXm4/AAAAAAAAAAI/AAAAAAAAAAA/2DlV4TngcgI/c-rp-mo-br100/photo.jpg','17898197009688164559',14162),('AIe9_BHR7p0hPy1flx1br0TYdEUBXDSgVr2R-PnJ0yca5yRy_2tcOGMr55tcZkz8BSLkdNEbTXreLP4xM8bF6hIDTUBQByPP-sHjj4MDWZb4mCfIOboAr0E',NULL,'2016-11-14 12:32:34.551000','2016-11-14 12:32:34.551000',4,'anita wordlaw','https://lh3.googleusercontent.com/-dm_DNl_LDaU/AAAAAAAAAAI/AAAAAAAAAAA/pRfjCGYHVtI/c-rp-mo-br100/photo.jpg','17394740196501090048',5172),('AIe9_BHR7p0hPy1flx1br0TYdEUBXiGu_yoyAl6rYYqhQFZodKBCaUtVKIjsyYQbUGZxmDUjV62BKd3ffdtNxz7PZdjsZfaenbRvl4ukv4R4RrtCwvozSNU',NULL,'2018-04-23 22:48:34.302000','2018-04-23 22:48:34.302000',5,'Kesia Barrows','https://lh3.googleusercontent.com/-9SWPcm361ec/AAAAAAAAAAI/AAAAAAAAAAA/1zmhJ0WwvyA/c-rp-mo-br100/photo.jpg','3511292162159714121',7708),('AIe9_BHR7p0hPy1flx1br0TYdEUBXJivxdfV6vgX0inkj44n7W30noCxGYbo6ogKw6XC5YyOPiqso-pVB9CBHa9uYF2wYk-0vXiPrk_E_S_NgXhCDTFxwN4','They are really nice people they get you in and out.','2019-01-20 21:21:34.461000','2019-01-20 21:21:34.461000',5,'Randy Shavers','https://lh4.googleusercontent.com/-_4qVjzfWqKU/AAAAAAAAAAI/AAAAAAAAAAA/ppqA9MxG5Lc/c-rp-mo-br100/photo.jpg','3272657195432704501',7049),('AIe9_BHR7p0hPy1flx1br0TYdEUBXKYLZg5nAnzYRKl8jzxM3buo_n2BOtJ7vRIu5_1jT88ZmJQi3qEnxkovWRKP_MmnCgG_4nE5ebkRZVRz87l5ZUU1e6I','This place is by far the best ER! Jessica S. Is the most sweetest girl! Thank you Jessica for getting us seen and back to work!','2020-07-18 02:04:35.147000','2020-07-18 02:04:35.147000',5,'Young Scout','https://lh3.googleusercontent.com/-Xp-bmM160ck/AAAAAAAAAAI/AAAAAAAAAAA/UU2qD8dMdSQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21747),('AIe9_BHR7p0hPy1flx1br0TYdEUBxlOOBJTG4T1FU2L4lCQtLLitsz8bifK4vGqO3bUteNTSEkN2emb10lvSPAPrhp1PUgKRa_fpX-oa4xNFb-5s92eNZxk','My wife came in with a split eyebrow due to our toddler throwing a blunt object at her. Everyone greeted us with smiles and our nurse Marcus B was the best and funny. We loved him','2019-06-18 23:02:44.160000','2019-06-18 23:02:44.160000',5,'Chance Hughes','https://lh3.googleusercontent.com/-5ahLNxUKD_Y/AAAAAAAAAAI/AAAAAAAAAAA/-KaN0lA07VE/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHR7p0hPy1flx1br0TYdEUBxmm_HM1EGIHKLD_pnRH-Um8cwC6mHhbsqxFcbGxAmYHUodenli6ZUYuO1CMBtyIf8vJSoiV4hVybLOcNL5-XRXXC0gU','I was taken back very quickly and the staff was so helpful. Itza, Dr. Vakey, Rebeca, nurse Jacob and Laura did a great job. I will definitely come back here if I ever need to again.','2020-01-20 22:15:34.429000','2020-01-20 22:15:34.429000',5,'Hannah Carrillo','https://lh6.googleusercontent.com/-KPjHfETEiYU/AAAAAAAAAAI/AAAAAAAAAAA/JodG0RoahMY/c-rp-mo-br100/photo.jpg','16590124370714063921',9972),('AIe9_BHR7p0hPy1flx1br0TYdEUBxRbG65arIeUhn7bE_ncmNIaJnjxp8Q0NkhRVTw7A-1KD4OsF96S4tFN79oqKOcP3C6XNUZJwpqM-qfYgj0uWD0WG5kc','This facility is excellent. I was taken care of in less than an hour. The staff is very kind and resourceful. I am very satisfied, I will never go to a hospital ER again.','2017-05-17 20:29:31.503000','2017-05-17 20:29:31.503000',5,'King Monkey','https://lh6.googleusercontent.com/-EEVnkr1X0_0/AAAAAAAAAAI/AAAAAAAAAAA/03nndz-lxDI/c-rp-mo-br100/photo.jpg','17394740196501090048',5052),('AIe9_BHR7p0hPy1flx1br0TYdEUBxuqA4RA9_gzFCcowdrL5mgRwkP2aKLKh0lHuGkDy83GUrr3Xc6ZJ3mgF8PSc1Cw4iqONV_d9GPn_VgtpzYxrOBA7gLo',NULL,'2019-10-09 04:06:42.100000','2019-10-09 04:06:42.100000',5,'L2thenester','https://lh4.googleusercontent.com/-vz5qiwDlJ7Y/AAAAAAAAAAI/AAAAAAAAAAA/RndyOUF5LEo/c-rp-mo-br100/photo.jpg','3272657195432704501',6884),('AIe9_BHR7p0hPy1flx1br0TYdEUBxUZsV1bvGuaE46-N6Ql6KDiuhZnn6So-cEYDsvEkCjpFiYG4ZTdwKfVFmIYCJENq2jK4kmONI_zu3thXGeEYM94gY9I','This place is awesome. Honey at the front desk was welcoming and friendly. My first choice ER is Signature care for sure.','2017-02-11 07:10:41.588000','2017-02-11 07:10:41.588000',5,'jaison mathew','https://lh3.googleusercontent.com/-mcNt6o4u8nM/AAAAAAAAAAI/AAAAAAAAAAA/An0gKCOGPGw/c-rp-mo-br100/photo.jpg','17394740196501090048',5115),('AIe9_BHR7p0hPy1flx1br0TYdEUBxX4BsUVLF1Y2GMeTpP6DEJlCQwCin9MY5CChH5F6R6chTESkjuVQyB-aM8X-AGo8NJJdIicZ62sEooudUzG3AC42R3Y','MEGAN C. THE BEST ! Covid-19 was easier with her. Thank you','2020-07-21 19:59:02.018000','2020-07-21 19:59:02.018000',5,'Daniel Warden','https://lh6.googleusercontent.com/-ACrP4GpeFSQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckmt2hRcDUJfJkKV6xDVMrU0WyO0Q/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22221),('AIe9_BHR7p0hPy1flx1br0TYdEUBy0k-nsfDFyI0jrSuYjXb5fJvlZjn6N0xtL6t9C5W85fdn83i4xj4vE8-Kti0RY4-bbK56qulRNyMxB4iF-KgsWEGqGs','Doctor Kimball, Nurse Jacob & Morgan were all a great help with my injury. Costumer service was A+!','2019-03-31 16:22:01.912000','2019-03-31 16:22:01.912000',5,'Mason Lewis','https://lh4.googleusercontent.com/-vAryVBmjc98/AAAAAAAAAAI/AAAAAAAAAAA/mCjYh1yXymM/c-rp-mo-br100/photo.jpg','16590124370714063921',3473),('AIe9_BHR7p0hPy1flx1br0TYdEUBY131RlhHVYNzuLn06-adK1EaUHI8e-Ed_v8KMJYomUzw3BJrIwZwlkJKrwJBg4OHU_enuXPFFR_k9c5_5u5iC0JYJT4','Dr. Alloju, Nurse Blake, Delicia , and Tech Sonle are so amazing and very welcoming . They made my experience at signature care very comfortable. Thank you all ! You guys are amazing !! If it wasn’t for Delicia I would have left and gone to urgent care and not receive such excellent care !','2019-12-02 23:05:44.394000','2019-12-02 23:05:44.394000',5,'Nayy Yupp','https://lh5.googleusercontent.com/-3msxQZpIZOM/AAAAAAAAAAI/AAAAAAAAAAA/HaLJe62QEV0/c-rp-mo-br100/photo.jpg','8679688254631342173',8700),('AIe9_BHR7p0hPy1flx1br0TYdEUBy4LtXUGo0htxFacFgudhVYhHHEEqmCr38gEIXbQ3M1iDsUnEx3nKa-Q8eKvBNjZUdRo5gFDTZFW5OnOOP4RFfMJ3K34','This place was great! We were called back before we could finish the paperwork, which was amazing. Our nurse Sarah did a very fast and painless IV stick on the first try - which something that is always hard to do with thin veins. The whole staff was super attentive and friendly. Thanks to Fatima for making our first CT scan not so scary. And Tanishia at the registration is very welcoming.','2020-02-07 05:05:07.410000','2020-02-07 05:05:07.410000',5,'Mike S.','https://lh6.googleusercontent.com/-vXpOjEBkdn0/AAAAAAAAAAI/AAAAAAAAAAA/1xFQhicSWWY/c-rp-mo-br100/photo.jpg','17898197009688164559',22704),('AIe9_BHR7p0hPy1flx1br0TYdEUByDgBonFsLZkeMi5hLzLPuaMAqusYsZzSW6DL_EEqfkQP6Yh9AEEXs3lrqttbO8ajcGs-tRD__d4zV5d7OY-X52yoXEY','Dr. Patel, Amy, Rollie and Natalia were amazing!!! Very friendly and fast service!','2019-07-03 04:49:50.248000','2019-07-03 04:49:50.248000',5,'Kristi Lowery','https://lh6.googleusercontent.com/-91Hgg-PPXcg/AAAAAAAAAAI/AAAAAAAAAAA/ZPj0tTrLrEU/c-rp-mo-br100/photo.jpg','8679688254631342173',8826),('AIe9_BHR7p0hPy1flx1br0TYdEUBYfJ09IWKmob_HX9KINpsqAwFE-H8UZOmkKfa4uZhROqaXAF6-95y2eUtWx2o_cID8S3JZEDL3zZGX7CIuKlsqqLcQ0o',NULL,'2017-01-12 08:03:45.152000','2017-01-12 08:03:45.152000',5,'Life As Ezinne','https://lh3.googleusercontent.com/-nrty_shPhMg/AAAAAAAAAAI/AAAAAAAAAAA/CxKoYUdrJd8/c-rp-mo-br100/photo.jpg','17394740196501090048',5134),('AIe9_BHR7p0hPy1flx1br0TYdEUBYj8NbNxq3fEIiGPpyH-liVHdvP877rLrqf5Rw6jMbNKOe_SntAMPo120tOIcaTIM0-ZlWeTXvIrdP4TRJRJOlU4_A7o','I was seen immediately. I had to get scans about a misaligned jaw, my nurse was Gabriel, physician Lingan and radiology tech Townsend. They were all very very kind and knowledgeable. I highly suggest this ER.','2019-10-20 06:50:01.767000','2019-10-20 06:50:01.767000',5,'Carrie Chelich','https://lh5.googleusercontent.com/-rG3n47ksEM8/AAAAAAAAAAI/AAAAAAAAAAA/451BxHw3CYA/c-rp-mo-br100/photo.jpg','16891069708558046635',4179),('AIe9_BHR7p0hPy1flx1br0TYdEUBYlKYQ-pR2bKL2-CbErCjFzSfkJUg7Un2qgHMBPVmYOTwnJUMNRbUvWGpPOiD2T-eQHIof8bNdHmbv55E-6PAtQsghac','Showed up around 11 at night because sw memorial hermon waiting room looked like a zombie apocalypse and were incredibly rude and people waiting for hours . My dad and I remembered a some what new emergency room on rice and the staff was incredible I had just came from Mexico and have a virus and they genuinely wanted me to walk out happy the nurses were really nice and doctor as well . They give you a warm blanket and checked on me while getting fluids . This place is amazing I never even wrote a review but they have this place 10/10 . I would come back and totally recommd to anyone the staff definitely deserves all my respect thanks','2019-03-18 17:58:04.185000','2019-03-18 17:58:04.185000',5,'Noah Estrada','https://lh4.googleusercontent.com/-Z-d0COLHmD8/AAAAAAAAAAI/AAAAAAAAAAA/prZraBe89bQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8860),('AIe9_BHR7p0hPy1flx1br0TYdEUBynOMKvx7KRPctQlVQkEzo8gyiwur509fKifbFQ2IpPdsiSakQLRAbqRHSDKADhICQGngCK-x_K7BeuV9VpSxYxtwEqY','Great facility, no wait time! Doctor and nurses are awesome and compassionate, especially Nurse Staci. \n\nFar better than any other ER!','2020-02-04 17:49:34.810000','2020-02-04 17:49:34.810000',5,'Nathan Cohn','https://lh4.googleusercontent.com/-n22X7jh-pnY/AAAAAAAAAAI/AAAAAAAAAAA/W7mguvjWkaw/c-rp-mo-br100/photo.jpg','8918455867446117794',14848),('AIe9_BHR7p0hPy1flx1br0TYdEUByPl6btkbDJOrY656ksiGg2k6OkRCbDE3R-oflwdhYz73pF7lzgRusVab1BM4GIbfTImi3uJ6NjWGQSMCXL7nziQ3ow0','Had the best experience here. Dr. Sylvester and his staff (Robert, Rachel, Ralph and Amelia) were all nice and professional. I recommend everyone to come here when seeking medical attention.','2018-09-12 08:32:14.498000','2018-09-12 08:32:14.498000',5,'Emili Castro','https://lh6.googleusercontent.com/-XvVFvLeqZRw/AAAAAAAAAAI/AAAAAAAAAAA/Dk5izcJW69A/c-rp-mo-br100/photo.jpg','17394740196501090048',4798),('AIe9_BHR7p0hPy1flx1br0TYdEUBYu--eiq7uFOX8RBxAfANFOZ7W8eIOKx_k6jn_vUMWY4hMGwXDTYtI4LXh14KbcF7GTE3dfVpP5UqQskJHmloJwtSOXQ','I was just discharged from SignatureCare Emergency Center Montrose. I wanted to publicly take a minute not only to suggest the center for anyone in need, but to thank the Doctors, Nurses and Staff. I was suffering from a previous rib injury and was violently hit today on the Lacrosse field. I was in severe pain, having trouble breathing and speaking. Keep in mind I am the polar opposite of a whimp. the second I walked through the doors at SignatureCare I was welcomed by an Incredibly friendly and professional receptionist. From then on the Nurses and Doctors took care of me as if they had known me for years. Long story short, go to SignatureCare if you are sick or injured. Two thumbs up, five stars and many thanks to the Staff.','2016-03-14 01:39:03.895000','2016-03-14 01:39:03.895000',5,'G. Smith','https://lh4.googleusercontent.com/-Mzy-w8Fuzyg/AAAAAAAAAAI/AAAAAAAAAAA/Y05uwrxlVj8/c-rp-mo-br100/photo.jpg','3511292162159714121',8021),('AIe9_BHR7p0hPy1flx1br0TYdEUBYUcylKkbpFKAkv19iG8Up2ZsdEKLUuuBv0ymBkX3HUB-O11SAxGIpN4MFWPtXvoa9B4SnrB0ekbOJzu265XeNx9nSCE',NULL,'2020-07-22 12:08:34.490000','2020-07-22 12:08:34.490000',5,'Taha Alam','https://lh3.googleusercontent.com/-rfAG-jKG66E/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn8OQXOFwerVbn1iqC74HBp_UhjKQ/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22246),('AIe9_BHR7p0hPy1flx1br0TYdEUBYvuKrbORF_ClHFgrG_y3KTX5xQcvkUhNoWHroyO18OnEIem65Q-olqp8xuHy_-ZaFgwnSjdunWgOcVZOmnteyqW37j0','THE BEST PLACE TO GO FOR HEALTHCARE OUT HERE. I\'ve been here for simple medical needs to more important (prenatal care). From the moment you walk in everyone\'s fantastic. The ladies at the front desk to the nurses and doctors. Not to mention the facility is so modern, beautiful and CLEAN!!! This is my go to whenever I or my family needs care.','2020-02-10 08:12:23.746000','2020-02-10 08:12:23.746000',5,'Nicole Clark','https://lh5.googleusercontent.com/-Lxt7ojf0I40/AAAAAAAAAAI/AAAAAAAAAAA/EOSgfTL1G1w/c-rp-mo-br100/photo.jpg','2694018788013845459',14244),('AIe9_BHR7p0hPy1flx1br0TYdEUBYymNNj6eKs6dwJ5yUmVKOxDGfIJE_FZka_8jt_CGdEb3XVVj-DsjJhNjQl6kaqpAizuRplnDitgXYrLbpWppsulJZBI','I have literally never received such amazing 5 star care from a urgent care ever. They treated me with such care and attention. Dr. Garcia was/is amazing. He made sure I was able to get the medication I needed before I left and never once made me feel like just a patient but almost as if I was his own family member. The nurse Robert, was super awesome, very knowledgeable, listened to everything I had to say, never made me feel rushed at all. I can say I feel blessed to have found this place, really and truly. Thank you all Dr. Garcia, Nurse Robert, Allan, Raven and Kelsey!','2018-07-16 22:54:01.288000','2018-07-16 22:54:01.288000',5,'Carron Pearson','https://lh5.googleusercontent.com/-uFClqHQtNxw/AAAAAAAAAAI/AAAAAAAAAAA/E8w9giDaMkM/c-rp-mo-br100/photo.jpg','8918455867446117794',9258),('AIe9_BHR7p0hPy1flx1br0TYdEUByzLjAv7hflZ5aTzGupHe-Fx4mtjpOyJmsrSNK8udhVtSymKgce30g93pmsdbkw9eQ9VtTY5WQJOfTWQlH8LAxRx7vn8','SignatureCare was able to see me right away which was great because I\'m a very anxious person - I was taken into a room within 10 minutes of arrival and my evaluation began immediately. They were extremely kind, sympathetic, and thorough. I left with my mind at ease and feeling much better. Thanks for your help!','2016-04-06 13:46:35.070000','2016-04-06 13:46:35.070000',5,'Dana LeStrange','https://lh6.googleusercontent.com/-an3QJVzdpIM/AAAAAAAAAAI/AAAAAAAAAAA/pN_2urHpjIA/c-rp-mo-br100/photo.jpg','3511292162159714121',8018),('AIe9_BHR7p0hPy1flx1br0TYdEUBZapk6nOAOARUbWmaQqeUUoB4oJXxVNstsxygXPyBj54kYxVrRUB34dpvEgT5PdyGVHX6SoOcWwOoTmnij776Oz_ekzk','The staff was extremely nice for both of my visits. Doctor Vakey and Nurse Jacob made me feel welcome and I could tell they genuinely wanted to help me feel better.','2019-04-30 16:09:31.501000','2019-04-30 16:09:31.501000',5,'Hannah Herring','https://lh5.googleusercontent.com/-hCXcqKkRXxU/AAAAAAAAAAI/AAAAAAAAAAA/br8Aq-UxkTU/c-rp-mo-br100/photo.jpg','16590124370714063921',3400),('AIe9_BHR7p0hPy1flx1br0TYdEUBZeYEwL1XG67_nTjFSFa8yfIUZrc_gOPLuhQCVJdvjPkkjBx5eLYI0Ms1jgDd7rHf31ppSqBwaRN1ir-Bf01soBlmqQo','This ER was the best one I’ve been to I loved how welcoming Tanishia was when I walked in and loved the nurse Susan and er tech Daniel Rad Tech Laura and most definitely the doctor Nguyen every one was very sweet and caring and I loved how the doctor took the time to sit there and answer all my questions and explained everything to me','2019-12-04 07:37:14.760000','2019-12-04 07:37:14.760000',5,'Ashley Rodriguez','https://lh6.googleusercontent.com/-OWeK7vE-me4/AAAAAAAAAAI/AAAAAAAAAAA/tQpyWNf5UgM/c-rp-mo-br100/photo.jpg','17898197009688164559',5380),('AIe9_BHR7p0hPy1flx1br0TYdEUBzHkjjLxwH7GUTYzKMUBdQWfM-gjWhAIlcPw2CfuOvTwrb4RNm-qHIZvA6H9lcmk_gM0jI3V4OW753qwXQTWo1QiqKH0','It was a nice easy time','2019-01-17 17:14:04.123000','2019-01-17 17:14:04.123000',5,'Edith AKAKPO','https://lh5.googleusercontent.com/-Q2ldLHe2eZY/AAAAAAAAAAI/AAAAAAAAAAA/1OcGDrQKLeY/c-rp-mo-br100/photo.jpg','13486358490203335051',1105),('AIe9_BHR7p0hPy1flx1br0TYdEUBZn2G4p3b0HpzYg0KyIEMn4Z8kF9ciTsxVvAWIYyUf4IsHty3wWZBojdx9uuQ-lv1WoLGsROryCleqB4PMV4gYfs4ZYg','Was very pleased with the service provided at this facility. They took good care of me. Thank you guys so much y\'all are awesome.','2020-02-21 18:41:17.800000','2020-02-21 18:41:17.800000',5,'Leslie Arellano','https://lh4.googleusercontent.com/-PPAIZ4-18R4/AAAAAAAAAAI/AAAAAAAAAAA/JCUw763PT_I/c-rp-mo-br100/photo.jpg','17898197009688164559',14141),('AIe9_BHR7p0hPy1flx1br0TYdEUBzPynqhL7bvBGT94nj_sagV5ljLV3WQtwpFjFB7tJuvdkW7QI58TexWXIaTa6MXsNB0gVS5OGQVF87E7GluoEEJ9NIyc',NULL,'2018-01-03 13:35:50.158000','2018-01-03 13:35:50.158000',4,'Andrew Stephens','https://lh6.googleusercontent.com/-JeEGO0V7zqA/AAAAAAAAAAI/AAAAAAAAAAA/0Y9g4BaBh9U/c-rp-mo-br100/photo.jpg','3511292162159714121',7741),('AIe9_BHR7p0hPy1flx1br0TYdEUBZsLQBlv8rV5xB8LdkDK53MEi5tZUTRoTTUNpqaLTSv9XEoAd4nJaDBCMhBB83V7ugLkus7EoDQ1GBS_P-YQq9HuwYCQ','Quick treatment, friendly staff... should definitely recommend to Anybody!!!','2018-12-22 03:58:47.949000','2018-12-22 03:58:47.949000',5,'Kimberly Allmon','https://lh4.googleusercontent.com/-G_0NmmuvUiA/AAAAAAAAAAI/AAAAAAAAAAA/tZ3T7NU2Y6Y/c-rp-mo-br100/photo.jpg','8626688543755174284',8626),('AIe9_BHR7p0hPy1flx1br0TYdEUBzumuGUzv_f3vtabsZ6m8_SGPxLzyGZgsFjrqUBcUYwkT1Omu5HRGU4y9oXnESIFkS0GlWMhzGZWvdAGAaAwJne8IBUM','Very friendly staff, and they got me in very quickly! Anthony was very nice and funny, and made sure I was comfortable throughout my time here. I would definitely come back here in the future and recommend to friends.','2018-06-06 23:42:20.057000','2018-06-06 23:42:20.057000',5,'Audrey Winking','https://lh4.googleusercontent.com/-M_u_bKCstBk/AAAAAAAAAAI/AAAAAAAAAAA/FoV71fncsYg/c-rp-mo-br100/photo.jpg','16590124370714063921',3819),('AIe9_BHR7p0hPy1flx1br0TYdEUBzVgfV6dWA-KUXoWY-lwk0z6eN2shoT8ri8H2_dtMfDRR3IfCR8rF7T7vUbOJfDvZaUwq5l4jekqQi-N6aHtx26mSVmQ','I’ve been here a few times and have always been helped in a timely manner. In and out and always feel taken care of. Nurse Jacob was friendly and so was Kendra, the receptionist. Dr. Vakey was great!','2019-12-28 19:02:59.968000','2019-12-28 19:02:59.968000',5,'Katelynn Munoz','https://lh3.googleusercontent.com/-nPaZH_FMSvg/AAAAAAAAAAI/AAAAAAAAAAA/XXQX44uY5Sk/c-rp-mo-br100/photo.jpg','16590124370714063921',3000),('AIe9_BHR7p0hPy1flx1br0TYdEUBzVIQ9M2BueFFqslv4ykLF-q2v-wfyVkVsIvL6gPMtiTu1QjTxCXuoj6YAg4D9rFlMOK_QMwjTEpFUjITp7mGFxwD-3s','Great customer service by Sunday and Agnes','2017-05-20 02:27:17.308000','2017-05-20 02:27:17.308000',5,'Randy G','https://lh6.googleusercontent.com/-_zpjAWzUf20/AAAAAAAAAAI/AAAAAAAAAAA/JK2GlYVKeWs/c-rp-mo-br100/photo.jpg','3511292162159714121',7818),('AIe9_BHR7p0hPy1flx1br0TYdEUBZwmLpIUscJUN7lhvNRdZPyrkOQCoEUi7HH6tWD91V62ZB1C0x7LKAFn43WU901nIz8MFM0xAbIcySYv4mcbiq_veZwU','Professional! The receptionist Jasmine was extremely helpful and fast with the paperwork. The doctor and nurses were very knowledgeable and made you feel very comfortable in an uncomfortable situation. Ohh, and the blankets...aaaaahhhhh😴 My neck feels so much better!!','2016-08-20 08:43:45.292000','2016-08-20 08:43:45.292000',5,'Sameka Scott','https://lh6.googleusercontent.com/-lNnbcVW1MFc/AAAAAAAAAAI/AAAAAAAAAAA/t09aHtUG6m0/c-rp-mo-br100/photo.jpg','14567670160750071148',1989),('AIe9_BHR7p0hPy1flx1br0TYdEUBZzbESLRb4l-bWa-BBrTXsj1S7Re-XznyfdLvmtCDMj4HeEAuthqI0WyNQ01xR8Szq-Ke1N08C-JxAf-0J4ZvSIlS-Qo','Fast, excellent and caring service with a smile from Keera and Cat!','2018-09-23 08:20:31.078000','2018-09-23 08:20:31.078000',5,'Jeffier Dawson','https://lh6.googleusercontent.com/-6y6E_2i3Teo/AAAAAAAAAAI/AAAAAAAAAAA/5JYV26bhvSU/c-rp-mo-br100/photo.jpg','16590124370714063921',3719),('AIe9_BHrWISkj5yJg3Mm8Kf_x3la-NIKNWvLYj-sPMKjQm01C3KL6bRfMaPvNveaxVYehDRAntivk3aJcxoXvrwkpYgbNUA9uQ','Came in late on a weekday, we were seen almost immediately with a less than 5 minute wait. The staff was very knowledgeable and attentive. Samantha did a great job at the front desk answering all of our questions and explaining insurance details to us.','2020-01-08 02:54:50.947000','2020-01-08 02:54:50.947000',5,'Ashley Williams','https://lh6.googleusercontent.com/-VHCMiw0-5gw/AAAAAAAAAAI/AAAAAAAAAAA/rHl2G7K6H9k/c-rp-mo-br100/photo.jpg','14567670160750071148',9419),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_3nXsh3G0K_TJnhMyG5lAHUpHnQoCl7iE1g67QMCeo3HPSRDaiW8NjANTSyGb9FB14W1RizFfPL5BqnThLfFLY2SoLk','dr.omalley, alvean, tricia, sibienne, bryan are very friendly/ caring and helped my bff get better!!','2019-11-14 22:24:02.652000','2019-11-14 22:24:02.652000',5,'madi bryant','https://lh4.googleusercontent.com/-V_FTHZb72IM/AAAAAAAAAAI/AAAAAAAAAAA/wCszOfT8oPo/c-rp-mo-br100/photo.jpg','16389487648212004696',2697),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_esL1bCt8NzxXG_XB6hVN91zJUmULqv-QHgvqk6EIIFwB6xp25CDbVEoRUIw2ME_yzsLOm_CJgXi3yir9w7j-HS3muk','Do NOT go to this place for a rapid covid test. They are not dedicating people to actually administering it and are squeezing people in between regular patients from my experience, so your advance scheduled time slot goes completely out the window. Got there at 6am for a wristband and a time slot at 7pm. Arrived at 6:30pm and still could not get the test at 10pm. I had to leave bc there seemed to be no movement at all. The excuse was that they had regular patients to see. Then what’s the point of acting like you had a schedule at all?!?\n\nI put myself more at risk in that waiting room for the 3-hour wait for the (non)test than what brought me there. After 1.5 hours outside in the sun. \n\nFelt like a money grab from a place that wasn’t prepared to offer the service as advertised.','2020-06-19 19:49:09.634000','2020-06-19 19:49:09.634000',1,'Lam N','https://lh5.googleusercontent.com/-PwKyKO12M1g/AAAAAAAAAAI/AAAAAAAAAAA/qwyB2kSNtJE/c-rp-mo-br100/photo.jpg','3511292162159714121',21147),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_h-D-_-ZOJlb7Y_-vNhnSgaskLkYCXpJ9rFb63M65dXXUiQKKGWJGZ69VqwLgjzGOjKgTwK7FC8rirLEFBXdrhxCJhc','Dr. Janet and nurse Rennington were super helpful and friendly and i was in and out of there really quickly!','2019-04-07 19:08:19.894000','2019-04-07 19:08:19.894000',5,'Caitlyn Baker','https://lh4.googleusercontent.com/-yVoX1k7S6is/AAAAAAAAAAI/AAAAAAAAAAA/_qyuixoL3T8/c-rp-mo-br100/photo.jpg','16590124370714063921',3444),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_hiesn6csfik5NGtgUPP8o0raCQoxrWk1gJTJfs47ZYwQq1NODuA6Qkbo19zu8R4W9u-4qp-BYcEfZyfRMDfg3VV1-o','Very nice and friendly help out quick and I will recommend anybody here. U come and get sent back ASAP','2019-10-28 09:53:11.961000','2019-10-28 09:53:11.961000',5,'Colby Jones','https://lh4.googleusercontent.com/-oz40Rrzg6l8/AAAAAAAAAAI/AAAAAAAAAAA/HXQQjO4Qeeo/c-rp-mo-br100/photo.jpg','16389487648212004696',2755),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_LvJXTXLTXZ_vD0dhARAsZquga1ryBUDCKz5xAUMsD51ZcK-cEhm7z9P1O1B73upobqYzhpEOe5Fagylmr9hZIYgboY','The front desk clerk was very inviting along with nurses and staff. Dr. Miller was very nice explained what exams he wanted to run and when results were in he sat down to go over them with me. This place is very nice and clean. Thank yall for everything ','2016-09-09 22:28:28.719000','2016-09-09 22:28:28.719000',5,'Brenda Mendoza','https://lh4.googleusercontent.com/-rUFGW2E-HEo/AAAAAAAAAAI/AAAAAAAAAAA/cIa6B5XoGs4/c-rp-mo-br100/photo.jpg','14567670160750071148',1972),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_Mc7WlvFnhV_b5MbAY1UvnBVZTWwmGWpfHbr9bHUnr2u5JbULmyzYGqXMQJOmfCKSLyFnJt8xAFqF0gDWm0zBB5D6Do','Everyone from the receptionist to the attending doctor showed genuine care for my son. The whole process from check-in to check-out was quick and painless - except for my son, who was injured. I would highly recommend this clinic for emergency care.','2019-08-20 23:18:39.726000','2019-08-20 23:18:39.726000',5,'Obi Wan Kenobi','https://lh6.googleusercontent.com/-HLZz6D9YehA/AAAAAAAAAAI/AAAAAAAAAAA/i-uEmqaP0mg/c-rp-mo-br100/photo.jpg','17898197009688164559',5576),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_nja4bkA8kJMWvQzg1p1T_gTsiNEQaQ_yDCS0hk6tGbPEDx41lsp0TFqYuHWHmNsxodjVV1zvnw9oJIEJ2qBL3WjwyI','I highly recommend this place to anyone in need of care! The staff here is so amazing at their jobs, and make you feel right at home. I want to say a big thank you to Dr. Jaber and Tanishia for taking such good care of the patients here. Keep up the amazing work!! (-:','2019-10-21 03:06:42.976000','2019-10-21 03:06:42.976000',5,'richard marin.','https://lh5.googleusercontent.com/-cD29FcVoaWk/AAAAAAAAAAI/AAAAAAAAAAA/LTbhQZ9UkVo/c-rp-mo-br100/photo.jpg','17898197009688164559',5496),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_PAN-ZWHitiZmcybfu90EfGvGcHg3aUk2dSMd6PzI9HBGbOxqLjAPSYLfv6Liv_MxC1ERHfyAEpW3qYoCX7xGMXhxbE','We came up for a football game and my daughter wasn’t feeling well. We decided to stop at Signature Care and from the moment we walked in the door and met Lorena the registration clerk, our amazing experience began. Nurse Jacob called us back super quick, he was very attentive and was extremely caring towards my daughter. Dr. Harjai came in immediately as well and made us feel comfortable. Laura the rad tech also was very helpful and extremely caring. Truly, everyone there was so amazing, caring, and skilled at their job. Would definitely recommend!!','2019-09-14 23:25:18.084000','2019-09-14 23:25:18.084000',5,'troy beasley','https://lh3.googleusercontent.com/-049Rdv3--Zo/AAAAAAAAAAI/AAAAAAAAAAA/RP2jokrG5F4/c-rp-mo-br100/photo.jpg','16590124370714063921',3211),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_qitPDldtMPZpJSflzcDetmE7USpxW6v0hEd9LwMG3PI1RYSA8VXt1yGsFrFcAMQMk4o2-eqpC384MYWNKqaWfiWGDQ','Everyone was very efficient, from the woman at the front desk, to Brenda who administered my COVID test. I’m very thankful I had a quick and close location to go to get a test. Thanks Signature Care!','2020-07-25 21:37:15.934000','2020-07-25 21:37:15.934000',5,'Samantha Halstead','https://lh6.googleusercontent.com/-Ja7NKIRbhrw/AAAAAAAAAAI/AAAAAAAAAAA/2Vlo-USADqI/c-rp-mo-br100/photo.jpg','2077061009497551125',22840),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_xLWETBUNk29SVX0nZnud74XSyZbxoj2U5_ocHL4SCXSV6S4theVIbkojiWch2_XPbSf15AMpBnZADdyNHA3ZWp-QGY','Everyone is very nice','2018-08-03 09:56:00.613000','2018-08-03 09:56:00.613000',5,'Qualon Nash','https://lh4.googleusercontent.com/-5M1ivzDRAS0/AAAAAAAAAAI/AAAAAAAAAAA/LNWCEpQ_LvU/c-rp-mo-br100/photo.jpg','3511292162159714121',7668),('AIe9_BHVBnWjBJvk55vq2QEm0wl-_yZev0CbMPAMus_VDCXZYx0giD8zphkKhe553y0-X9L6OIJB0TBJdY_l5AtxcPh4UYZPn3Rzo_B4pmA3bISX3LyIniw','Ashley was great help super welcoming and helpful!','2019-07-08 21:23:11.988000','2019-07-08 21:23:11.988000',5,'Braylon Herman','https://lh5.googleusercontent.com/-A2jcVEMn4JM/AAAAAAAAAAI/AAAAAAAAAAA/gS9JxQQ0p2I/c-rp-mo-br100/photo.jpg','17898197009688164559',5653),('AIe9_BHVBnWjBJvk55vq2QEm0wl--_exN6GGYJ3P4uhL__lIZp06sE7egSpxPCHAzQKA4oIJlD2bSqErUW6rpcT_uKJUHUhSoj43GcBwXfkhxwENzmyLVRE','The info on the website is far from accurate.No one answers the phone and the staff has no clue what is going on. My husband will have to go back for a 3rd time tonight because of their incompetence. I\'m still waiting for a manager to call. Do not go here for COVID testing!!','2020-06-18 18:26:16.627000','2020-06-18 18:26:16.627000',1,'Danielle Tavera','https://lh6.googleusercontent.com/-mFjJw0QAoxQ/AAAAAAAAAAI/AAAAAAAAAAA/qgEnDBqRPnA/c-rp-mo-br100/photo.jpg','14748677429039074158',20961),('AIe9_BHVBnWjBJvk55vq2QEm0wl--0gbgfnRValA_eU7sdL_gJFM5qDVxD64fvDNCk2Wai6pJPQBjWX9AteX6BML-qZBdN_qTpZyaAmtfbJCp1RpKvw-0Ds','After 2 recent visits I have only good things to say. My team of Dr. Bansal,nurse Gracie, tech Will, and Dee made my visit a pleasant experience.','2018-02-06 00:51:31.159000','2018-02-06 00:51:31.159000',5,'Kim Navarro','https://lh3.googleusercontent.com/-Cnn_io_SJZ4/AAAAAAAAAAI/AAAAAAAAAAA/jxKyNfn8DnU/c-rp-mo-br100/photo.jpg','14567670160750071148',1661),('AIe9_BHVBnWjBJvk55vq2QEm0wl--0TP0P3XdugTiPHOzqP0EywMv-WFhogf0kqFPps4o8mdHk6Pk1FtJJ2JZW10vdajPrmz37_fjhFn5xDAuBcs5LzgzXU','Great care ! The staff was amazing and helpful! Gabe was my nurse and was amazing ! Dr. Harjai was so helpful as well!','2019-10-04 21:53:49.198000','2019-10-04 21:53:49.198000',5,'MadysonShea','https://lh6.googleusercontent.com/-3e_KT4qAYc4/AAAAAAAAAAI/AAAAAAAAAAA/gQRQ8YOEoFM/c-rp-mo-br100/photo.jpg','16590124370714063921',3156),('AIe9_BHVBnWjBJvk55vq2QEm0wl--CDARlWQ2ePTaaD3HU4tpN_Gc83n5Qyn15AMXA9h51V9GMkB6BKlqqWGXzJgu3S2crMXh2MgeWBRtYBMek2hAFMpTX8','BY FAR THE BEST ER I’VE BEEN TOO SINCE I MOVED TO HOUSTON. GREAT AT HELPING CUSTOMERS UNDERSTAND EVERY SINGLE DETAIL BEFORE ADMITTING AND ARE QUICK WITH GETTING PATIENTS IN AND OUT ! THANK YOU NURSE DEE FOR MAKING OUR VISIT A GREAT ONE!','2020-03-17 15:38:49.118000','2020-03-17 15:38:49.118000',5,'MALIK JOHNSON','https://lh6.googleusercontent.com/-DqLztFhJo58/AAAAAAAAAAI/AAAAAAAAAAA/4QbGwBFGNLA/c-rp-mo-br100/photo.jpg','3511292162159714121',21151),('AIe9_BHVBnWjBJvk55vq2QEm0wl--HOr7kIIPtiyv2D5LCccZkAMYSSc-vs12Wm7GnozSBcw4F-L8l-ENG20HSe8WKTqoQ-QdWw5dyc8ygXB-mf9EIEuB7w','Really appreciated the quick and easy service. My nurse, Laura and Dr Thomas we’re both very attentive.','2019-01-08 13:08:45.797000','2019-01-08 13:08:45.797000',5,'Ruby Rodriguez','https://lh5.googleusercontent.com/-wA8Dd005oc0/AAAAAAAAAAI/AAAAAAAAAAA/XwtYrbmZAow/c-rp-mo-br100/photo.jpg','12541597562633926366',574),('AIe9_BHVBnWjBJvk55vq2QEm0wl--oQUwYo_QabI0dHLdCgnxsPNvnalKmkcWPeAvVyfEGDBDwVlvZxpE-spjoyPeyYgmBgWJ4_is32TCbMd41P9NDn54PU','Staff was friendly and great service\nDr. Ybarra\nRad tech: Natalia \nNurse: Rollie\nAnd Nurse: Stephanie:)','2020-02-11 05:15:11.554000','2020-02-11 05:15:11.554000',5,'Rob Swiss','https://lh3.googleusercontent.com/-VGNM33bsD6U/AAAAAAAAAAI/AAAAAAAAAAA/VRuznWJCN6M/c-rp-mo-br100/photo.jpg','8679688254631342173',14751),('AIe9_BHVBnWjBJvk55vq2QEm0wl--S1dYoH07PjGmCoBxUNLCXNkgjk9pRkuZplUsQMzF5KIGw2ij5Nu7Sci0rugRkteWNDoPv_mTxC8THBihzRqoXQU9hY','This place is awesome! The staff greeted me immediately and throughout the entire process I was kept updated. Everyone was nice and friendly and reception helped me understand what my insurance covers.\n\nThey are ready and willing to assist in need of car with a smile. I was serviced by the below staff.\n\nDR. FAIG, MD, OFER Z\nNurse: Sarra E A\nRadiology Tech: Sherwin P B\nFront Desk: Carly E B','2020-01-13 05:12:42.245000','2020-01-13 05:12:42.245000',5,'Kentrail D','https://lh3.googleusercontent.com/-qbbLQ0gMHfg/AAAAAAAAAAI/AAAAAAAAAAA/Q-rIs18dVBw/c-rp-mo-br100/photo.jpg','12541597562633926366',9536),('AIe9_BHVBnWjBJvk55vq2QEm0wl--SB2W4B62oOhnj1Bo6ckWPzByJ64USGG6ruV4NBLIZMVWYRYDYU-rzITQQIpaajHJ0kpEvbigJFLo5BTzPK6ZiTqPsY','Very nice facility, the staff was extremely helpful and friendly. I was seen immediately which is amazing when you’re in pain, I would highly recommend coming here!','2019-12-27 02:18:34.838000','2019-12-27 02:18:34.838000',5,'sheni11','https://lh3.googleusercontent.com/-EQA4cXJ2dpE/AAAAAAAAAAI/AAAAAAAAAAA/WzcBQ5FKJGc/c-rp-mo-br100/photo.jpg','12541597562633926366',298),('AIe9_BHVBnWjBJvk55vq2QEm0wl--SrNG9t-ln2Lusw7q1jJLuwdcNcJh-mwKwAMM6YqOLvlPcgnhoodxnxKAuCEOiRbQJYmig-P4E2OUM1ZF5V8JdPb6ZQ','I had to bring in my little one for a bad cough he had for almost a week. The receptionist Alexis was welcoming. The back staff( Jessica Nguyen, Tammy W., Giovanni A.) that attended to my baby were really AMAZING and SWEET with him. He smiled the whole time there. Dr. O\'Malley was real thorough with the exam and answered all my questions and concerns. I would bring any ogmf my kids here and recommend to family and friends.','2020-01-14 02:24:36.396000','2020-01-14 02:24:36.396000',5,'Briseida Martinez','https://lh6.googleusercontent.com/-vAz9tixWdP8/AAAAAAAAAAI/AAAAAAAAAAA/ATZPBAzMlwQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5475),('AIe9_BHVBnWjBJvk55vq2QEm0wl--SvIrsmLQFDz-BSh9-zxJv379IMKhUjbvUE66-EPYrHZOjudC0fs2PZb1s0O9y8q6zxxBb8jrwiuZ-o7LBV9SbEnHz0',NULL,'2020-03-09 21:20:32.847000','2020-03-09 21:20:32.847000',5,'Maria Aguilar','https://lh3.googleusercontent.com/-lM3EuZWBxT0/AAAAAAAAAAI/AAAAAAAAAAA/tvJKPQVXpmQ/c-rp-mo-br100/photo.jpg','8679688254631342173',21217),('AIe9_BHVBnWjBJvk55vq2QEm0wl--tEmo4nHfcLLN1rsE2udcSprkYqaBebXpLMCrtuxSgg0-fn0SRNjQMj6eQqzNW1qjYGak48DxkLk126RGuCYemApnQM','I visit Signature care, I was pleased that way they handle\nmy case, I was treated there and see by the doctors. and released same\nday with my new prescriptions.\nnurses around really care for you situation.\nalso the people in the from office.\nthey are ready 24 hours a day.\nthank you Signature care for been reliable.','2016-11-28 20:14:04.716000','2016-11-28 20:14:04.716000',5,'Angel R Quinteros','https://lh5.googleusercontent.com/-kduVQNdugMI/AAAAAAAAAAI/AAAAAAAAAAA/4qQ4UC7PH-I/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5157),('AIe9_BHVBnWjBJvk55vq2QEm0wl--tKPBYio-7otu_s9AgEyszkV-U5FPr1FSLJxVKzTwFR-8RqfpvnwuxM582kTewPA3E9DG_IC73qb_v8XFy2hvKufr0I','Fast services','2020-07-10 13:57:46.931000','2020-07-10 13:57:46.931000',5,'tuan nguyen','https://lh6.googleusercontent.com/-l39MQF7BOH4/AAAAAAAAAAI/AAAAAAAAAAA/K-ggaUkZlaM/c-rp-mo-br100/photo.jpg','14748677429039074158',21765),('AIe9_BHVBnWjBJvk55vq2QEm0wl--Ttv3-L1oiPjk6Ng9yMJ4p1Z6KA0xuxywOGldlhBLAzwJit3EcfwrsgPTrozyCcBSl9Wol0t6BKmPCFxQqyN_3zAwnM','Everyone here was SO nice. They brought me back to a room and everything was so fast from the minute I got there. The complementary snacks and drinks are such a plus too! I will for sure be back for any emergencies I have in the future.','2019-09-03 16:31:13.869000','2019-09-03 16:31:13.869000',5,'Darbi moore','https://lh3.googleusercontent.com/-r3ZWpaAUeAM/AAAAAAAAAAI/AAAAAAAAAAA/npU7Bckp2BU/c-rp-mo-br100/photo.jpg','14904078213800803294',2097),('AIe9_BHVBnWjBJvk55vq2QEm0wl-09eJdYYiEO61-IedE_r5KRoVXnKO39Qjb2HVJTMNQmBO0NH0GVyuOjaaXuxvuCpyiR9CgwlQNcs4lgAf3MgJWCwo3IE','The experience was great the staff is so sweet and helpful!','2019-01-30 19:49:24.758000','2019-01-30 19:49:24.758000',5,'Paige Castella','https://lh4.googleusercontent.com/-o4jRGTbm3ro/AAAAAAAAAAI/AAAAAAAAAAA/PvGv-xqSsOg/c-rp-mo-br100/photo.jpg','3511292162159714121',7431),('AIe9_BHVBnWjBJvk55vq2QEm0wl-0B4teSnr5kIW8cqyIWGYPCam9EpNobxidf7ZMdLVIiDVh4FQZB0eL5HGGldCKfDXdIsXJ8SFBAskJ9m0dP2g7PLxxlk','I made an appointment around midday. When I arrived I walked to the front to handle my paperwork. I handed the front desk the online forms you need before you arrive. Kathy handed me additional forms. I finished within 5 min. The whole interaction was friendly and pleasant. I waited no longer than 5 min after the paperwork was completed. My nurse April was very kind and attentive to my visit. She was friendly and we had a lovely conversation while I was in the room. Dr. Choudhurey was very patient and listened to me explain my symptoms. Everyone I interacted with was very friendly. It was overall a great experience for having to go get tested.','2020-08-12 18:12:08.988000','2020-08-12 18:12:08.988000',5,'Dax Collison','https://lh3.googleusercontent.com/-EIvBH8x_8t8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmwMOCJU9Ad1dgNWQOSDQvllPZBdQ/c0x00000000-cc-rp/photo.jpg','14748677429039074158',23027),('AIe9_BHVBnWjBJvk55vq2QEm0wl-0lyJ2vCv4dSGwjNBHFeVYQdKpYDGsRnwKv1gWMZ-GVMGqslDD9z78hdLntwdKNXOZNiO4LlJNnW421ibAXeJnK3uDCg','Signature Care Was very helpful. I didn’t have to wait very long and the staff was very warm and compassionate. Brenda especially made me feel very comfortable as I was in a lot of pain and made sure the process was smooth in seeing the doctor.','2019-06-11 20:05:42.281000','2019-06-11 20:05:42.281000',5,'Brandon Williams','https://lh6.googleusercontent.com/-IsdQUIaMEzk/AAAAAAAAAAI/AAAAAAAAAAA/YXhUVPCv-zo/c-rp-mo-br100/photo.jpg','3511292162159714121',7310),('AIe9_BHVBnWjBJvk55vq2QEm0wl-0opmLxYysOvnLgxkNpP6mBdQadRcU-_jgHE6OFv9Zc5sQYGWXay0rlOBom6B4vQ0BDa336RMkOEPK9PgJFdybfIu0rQ','Signature care was professional, quick, and thorough. The nurses, doctor, and staff were friendly and helpful offering warm blankets and drinks while I waited for test results. I would definitely recommend this emergency center.','2018-12-30 18:17:50.166000','2018-12-30 18:17:50.166000',5,'Sarah Kalfayan','https://lh6.googleusercontent.com/-ee3DQwo5gWw/AAAAAAAAAAI/AAAAAAAAAAA/sz0KXyU-wY4/c-rp-mo-br100/photo.jpg','14567670160750071148',1442),('AIe9_BHVBnWjBJvk55vq2QEm0wl-0qTggnRjZnmfiso3roP4GKNF-tf5L3lQdmEuqdaSNpbtWwLHDGHrewKcAdQP-UOn0vaWyljxS39VY8huq1VazJhwSiM','I was going through a lot of pain and I have been in and out of the ER for the last 3 years. By far, this was the most enjoyable and wonderful experience I have ever had. The staff was so friendly and super knowledgable. If i have to go back to an ER, this is the first place I\'m going. It took from start to finish about 30 minutes to get in, get an IV, and get a CAT scan. Never has all of that happened so fast!!','2018-06-08 02:58:36.261000','2018-06-08 02:58:36.261000',5,'Christine Moore','https://lh5.googleusercontent.com/-nfn2NFdJSCE/AAAAAAAAAAI/AAAAAAAAAAA/gbqgS2UOD_E/c-rp-mo-br100/photo.jpg','3511292162159714121',7698),('AIe9_BHVBnWjBJvk55vq2QEm0wl-1amBPoRm76go29hvoFamNHZ1b7MixEdtmN4cFcP4ATwVAiyNcvAa-HKMeyWcg9ctHTiCUBFleraAa_UBEVUMpPCRPZ0','Dr. Souman, Amy of registration, and Agnes the RN were very nice and helpful today. Would highly recommend to anyone!','2019-05-04 23:34:26.556000','2019-05-04 23:34:26.556000',5,'Brianna Malbrough','https://lh5.googleusercontent.com/-aOV56lKU9bs/AAAAAAAAAAI/AAAAAAAAAAA/dsRK-kj3ckw/c-rp-mo-br100/photo.jpg','3511292162159714121',7348),('AIe9_BHVBnWjBJvk55vq2QEm0wl-1BFzUDfApEHv8H2uKNMvWXQOFSW_qCh62m3aoUaTJHfGINdVGg_ap1Rsizm5podW8bDHjCNACd7416C9D1JFBjjLAj8','The front staff Brandi is attentive and caring, she offer me something to drink for cough. They gave a copy of all documents.','2020-08-10 19:32:22.479000','2020-08-10 19:32:22.479000',5,'ZHCOWBOY','https://lh3.googleusercontent.com/a-/AOh14Ghw6VH78N-9ljb6Xr3EXnYqUfzH5eo0tZ6YoHynLw=c0x00000000-cc-rp','14904078213800803294',23039),('AIe9_BHVBnWjBJvk55vq2QEm0wl-1ShpDZzLnu3YrO9lGKCUilaP3eRk6yCnKkNetxhPUkyHg72eLOqt3xiLbd0JxTXNjUJcDvd2jJNOn91LZFqtiMjcK-o','Great staff! They were very attentive and made sure I was comfortable for my entire stay. Highly recommended!','2017-11-27 01:26:56.974000','2017-11-27 01:26:56.974000',5,'Scott Palmer','https://lh3.googleusercontent.com/-7Mtdt8i0vCw/AAAAAAAAAAI/AAAAAAAAAAA/qusAWfwJ_VY/c-rp-mo-br100/photo.jpg','3511292162159714121',7756),('AIe9_BHVBnWjBJvk55vq2QEm0wl-1srTERy5u5MO_xKUCbpey5M8A5iZZo68nwu1IB_ZW4yhHoe3pZuhMqnaBddZU6huegmAhd3LpYADpmx5UfH1wInKxm8',NULL,'2019-02-08 23:03:56.558000','2019-02-08 23:03:56.558000',5,'Tamara Hickman','https://lh4.googleusercontent.com/-XbXI71TgzJk/AAAAAAAAAAI/AAAAAAAAAAA/e2nqGRL8-5k/c-rp-mo-br100/photo.jpg','8626688543755174284',8571),('AIe9_BHVBnWjBJvk55vq2QEm0wl-1X2L3DwwhmoyA4vwE1psiGk7PZ79d_E3bI3ZP-iyhqT1RWLJ7qe5waKRcDr02jf61oQV_WM6dDtE4HebN5uso8THX7g','Fast. Courteous. From vanessa at front desk to nurses Gina a, . Nicole, tech\'s Brandon and Dustin everyone was great. Doctors are knowledgeable, clear in their communication and offer choices. everyone was pleasant and helpful. Drs and all the front desk staff and nurses make the Emergency visit a good experience','2020-01-11 02:03:46.859000','2020-01-11 02:03:46.859000',5,'Marilyn Christensen','https://lh4.googleusercontent.com/-_ZM9uPHH6D4/AAAAAAAAAAI/AAAAAAAAAAA/3JLs9cV5qxc/c-rp-mo-br100/photo.jpg','14567670160750071148',1953),('AIe9_BHVBnWjBJvk55vq2QEm0wl-1yL46OJpZtIC8FP0OAIHMOiQl3LIwDx-qkdOCXjpGKXyUvw73RiA0CvsDyMzlwuSwa3yzBI1d5v5sBemYYFw79zqBtA',NULL,'2019-02-04 05:38:19.806000','2019-02-04 05:38:19.806000',5,'Miguel cerda','https://lh6.googleusercontent.com/-p-qw6SKOiBI/AAAAAAAAAAI/AAAAAAAAAAA/fqNp6ZsXqhY/c-rp-mo-br100/photo.jpg','14567670160750071148',1395),('AIe9_BHVBnWjBJvk55vq2QEm0wl-21PCpoijLtAwB2PiltzGYmOfzi7eIB3DePxX1jQW9Zy2BTGQIZA1E0SWTrSZ9l3Pkawyrj1jDQSzGaoPv6o9o9m46do','Dr. O’Malley ,Nurse Nikkie, and Rad.Tech Jessica did a great job.','2019-04-23 07:42:03.980000','2019-04-23 07:42:03.980000',5,'Lorene Mitchell','https://lh3.googleusercontent.com/-r7mNQ9L_Qc4/AAAAAAAAAAI/AAAAAAAAAAA/fpU-17wZ8no/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-24EKy5MIi_iyFx3pfWsERJgtnHSGOuGkFFnunAUfSsG-JXwrwcegztGRb-2dv4QLwxUYpPlMJUrRZR_r0cO_rzbN3yM','The team here is great. O\'Appiah, Kat, and Joshua thank you all for your great service!','2019-05-23 00:58:21.390000','2019-05-23 00:58:21.390000',5,'Desiree\' Castille','https://lh6.googleusercontent.com/-VdiXoulKbdk/AAAAAAAAAAI/AAAAAAAAAAA/565ik8b9_Fw/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-28pYg-VAYg6RePv35_DlZpYK3ketzQZgVc72BXsrtsj2IoNSR-GYxj4sPSqziXYs8polAy3xlVPRPGqdYy3qUDf5pS8','Very fast and professional! Can’t complain about anything!','2019-08-15 03:41:16.262000','2019-08-15 03:41:16.262000',5,'katelyn hall','https://lh4.googleusercontent.com/-0tPIEV-tEBQ/AAAAAAAAAAI/AAAAAAAAAAA/lfS91PeO1Jw/c-rp-mo-br100/photo.jpg','2694018788013845459',6083),('AIe9_BHVBnWjBJvk55vq2QEm0wl-28rm9RLEGIdeftjMfcIh9A0ifhNKSi1iz0VIS4FaHn_Dr58hSCGdubO7O4x5KlfGSWcLwSalcqtVsQSbpg2MWuGGQK8','Great experience for my first time here for Covid19 testing.\nStaff was awesome.\nLizzie T\nDion\nAlanna\n& Security Guard \n\nW arrived at 2am - first in line\nWrist bands handed out at 5am\nTesting began at 6am','2020-06-24 10:55:20.744000','2020-06-24 10:55:20.744000',5,'Sonia Ruiz','https://lh6.googleusercontent.com/-9dVCdUcMQRY/AAAAAAAAAAI/AAAAAAAAAAA/VDMwL1r0H-s/c-rp-mo-br100/photo.jpg','3511292162159714121',21293),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2e_YjyGSKPiWJOFdi19N1SuQsawvNdBhIFksb-IGjKUdcVl_ez1d4F6w1RJrezYqu_2BAl-6elPhWi4qUJNXb2LsyQM','Great service and they took good care of me while answering of my questions! \n\nAll of the staff: Karen, Mackenzie, Ricky, MaryAnn, and Ybarra did a great job!! 👍','2020-03-16 21:48:27.492000','2020-03-16 21:48:27.492000',5,'Cordelle W','https://lh4.googleusercontent.com/-M0IsuRSsSik/AAAAAAAAAAI/AAAAAAAAAAA/lHsTN85QOYg/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',21209),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2eNPgsc7Cyo9c6Xv5QeWxcNk5ni0PNGSPglovw2vsTiJ9aSM2bo6mqKuyCk5W_RI9CNCi81V0LBvrdA8EfYgxIWe0D0','They are some very nice people\'s their . They are so caring. I will continue too go there.','2020-02-02 15:17:59.540000','2020-02-02 15:17:59.540000',5,'Teresa Mason','https://lh3.googleusercontent.com/-VFgSVzPZK8E/AAAAAAAAAAI/AAAAAAAAAAA/MZ1oIXYQ8hU/c-rp-mo-br100/photo.jpg','3272657195432704501',14379),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2ixJsiN4uU6NczwvKiP4TjsAdNDu6Vo1-MyTV6hkNIe6s-p2fnEFd5GRWv0qNPSgqkoh8KPpCaltJRVqI6WLN0_tstg','I love it they are nice and I was comfy to talk to \nPatricia c and Jani w','2019-12-30 19:36:53.663000','2019-12-30 19:36:53.663000',5,'Life As Elida','https://lh3.googleusercontent.com/-D92H7g35Rqs/AAAAAAAAAAI/AAAAAAAAAAA/F2eP9q-re7o/c-rp-mo-br100/photo.jpg','16389487648212004696',2499),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2mLylxUM4SpNetJ6ZWSN_iYtHNeEcUVakumtBmL6FgT5_KvAqV7t9WN8ZQQ70UT0689RYoJxFzwaKkMHNacRIWn94I0','The staff reassured me that i had made the right decision by coming in and not waiting until the week started. Every player was polite, asked questions and listened thoroughly to try to find the correct diagnosis for my problem. My nurse Racheal and the physician Thomas were both very attentive and addressed my concerns. Ebony, my radiology tech, was the sweetest of them all, talking me through her procedure to keep me informed and calm.','2019-01-26 20:34:08.697000','2019-01-26 20:34:08.697000',5,'Amber Perry','https://lh4.googleusercontent.com/-I9cSx2lgic4/AAAAAAAAAAI/AAAAAAAAAAA/x0-NEWfgyho/c-rp-mo-br100/photo.jpg','17898197009688164559',5876),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2n0L89rXeOvgUkCoYZ_lHAUYeY0T-tE_ixdaD8zXxs29-CoIW6k3efL5vkeEAgh9ujaXYI2BT8LQIpkqI5UucKRKR3E','As of 6/25/2020 THEY ARE NOT ACCEPTING WALK-IN COVID TESTING!! \nI understand everyone is trying their best and this is an unprecedented stressful time. However, they could AT LEAST update their website for those (like myself) driving in from out of town!\n After being told I needed an appointment.. I spoke to a SignatureCare representative over the phone and was told I could “wait without an appointment in the event someone cancelled.” I went back to the check-in spot and was told that wasn’t possible.\nThere is some obvious miscommunication between corporate and the Pflugerville location.','2020-06-26 01:25:48.734000','2020-06-26 01:25:48.734000',3,'Meredith McGee','https://lh3.googleusercontent.com/-fYZvodwdyE8/AAAAAAAAAAI/AAAAAAAAAAA/URnjUSsIXus/c-rp-mo-br100/photo.jpg','2077061009497551125',21267),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2t1otm2_amItZjc5CLRLCaeuBJjpsCRIAiEwiFdej2rCjlYbPR8u7N555HtYGMmytug9ZUT0iVD5ZlL5cjpxNGvxTjg',NULL,'2017-12-19 15:11:06.976000','2017-12-19 15:11:06.976000',5,'crystal mata','https://lh6.googleusercontent.com/-v-U12AIszdI/AAAAAAAAAAI/AAAAAAAAAAA/4CL8zHrS1x8/c-rp-mo-br100/photo.jpg','14567670160750071148',1709),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2TrFj6bvgj56nvpvS_G2nhW3PSUbnEBnbDULuWncLqLL8unOUwaB1QPM1hmLoGF_lGf_FquZf30hxx8kRedxLe4x-C0','I brought my son into the office to get an evaluation, I was very pleased with how friendly the staff was. Denise got us signed in quickly and Kanyon very nice to my son. Would definitely recommend this care facility.','2020-03-14 22:36:02.525000','2020-03-14 22:36:02.525000',5,'Jason Cantu','https://lh4.googleusercontent.com/-n5rWghZgCT8/AAAAAAAAAAI/AAAAAAAAAAA/zM1BEbKn9iA/c-rp-mo-ba2-br100/photo.jpg','14748677429039074158',20973),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2xdA84TGian8Ap8yAeP1i4txq48LYNBFxJGnKG1BrkQUQW2ZbPbBg4F9wSEMBL6oZ7SmTL4ZqaEQun_cZDNaqXKFZmA','I will never go to a hospital ER again. No wait time, they called me back before I even finished my paperwork. I work in the medical center and have only gone to hospital ERs in the past. I will be only going to SignatureCare for my emergency medical needs. I was truly surprised how large the facility was once I entered and was brought back into a room. The facility was the cleanest medical facility I have ever seen. Everyone from the receptionist, to the nurses, to the doctor were just outstanding. You could see that they genuinely cared and would do anything needed to help me get better. I felt like I was in the best hands from beginning to end and am so thankful for everything they did to help me. I couldn\'t have asked for an easier more comfortable experience.','2016-02-01 05:01:37.584000','2016-02-01 05:01:37.584000',5,'Risa Chosed','https://lh4.googleusercontent.com/-6HTNuJuVcBI/AAAAAAAAAAI/AAAAAAAAAAA/-5ad5arsT-w/c-rp-mo-br100/photo.jpg','3511292162159714121',8027),('AIe9_BHVBnWjBJvk55vq2QEm0wl-2ZrXZItxeDYUUCaKDeMAkSQ7WALdElrWcmJPUNYIjW84fx5tk2H7YbYdsphOUZ9KbBhv4K6-4RqIB295hRsLDsKn_w4','It was awesome my son was sick but the Doc and staff serve us very well','2017-12-30 22:44:09.164000','2017-12-30 22:44:09.164000',5,'Ghulam Khilji','https://lh4.googleusercontent.com/-Qfds_xXnMUY/AAAAAAAAAAI/AAAAAAAAAAA/nq7m_sFY0rY/c-rp-mo-br100/photo.jpg','17394740196501090048',4908),('AIe9_BHVBnWjBJvk55vq2QEm0wl-3-7JuEg1w-KnHCF-cQICRN5H2LvJjgMX9cGf0etFyEdwkKsxPKin5YQY0JqYcleEonQ_Dxbh2j-UaUPJfZQspG-7CNg','Dr. Faig, Amy, and Holly','2019-09-12 23:41:30.089000','2019-09-12 23:41:30.089000',5,'Maria Rodriguez','https://lh6.googleusercontent.com/-T6hShe7Qrvk/AAAAAAAAAAI/AAAAAAAAAAA/EasdiWJRQj4/c-rp-mo-br100/photo.jpg','12541597562633926366',430),('AIe9_BHVBnWjBJvk55vq2QEm0wl-3AksYS3b9VUMXKUb2nofrebPLWicoQv7fYfcEDVjkVKO47wGoyu5aQW-FrZye3Ig15F6ZJjlvmcQM9GrjbB9cJFnT8I','Amazing ER! From the receptionist, Nicole, to the nurse Calli, to Dr. Nguyen...everyone was so friendly and knowledgeable! I am pregnant so I’ve just been super nervous and checking on small ailments, but they did not minimize my experience at all. I got a COVID test and that was super intense by nature, but Ms. Brenda who administered it talked me through it and tried to make it as calming as possible. If you want an ER that is caring, friendly, and quality...choose here!','2020-08-22 17:22:00.163000','2020-08-22 17:22:00.163000',5,'Zamaria Venzant','https://lh3.googleusercontent.com/a-/AOh14Gi4wtIzmxd3odhqtAF4iul46XUHgCd4IgKx4Lmy7Q=c0x00000000-cc-rp','2077061009497551125',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-3B5ljbF_Co15PyMaXoc-1c9hYlwHL0FxdZg3n4CRHEwWhs8EMiPUvm9K3zR_cnqmAlSY5ijgBfjqSUfScX0hOceTurg','Great nurse and team!','2020-07-31 20:30:52.012000','2020-07-31 20:30:52.012000',5,'Maria Morfin','https://lh3.googleusercontent.com/a-/AOh14Giq0UxMYqyjUkTD6x5lped96IQ3oPyxc6381gPVfA=c0x00000000-cc-rp','8918455867446117794',22270),('AIe9_BHVBnWjBJvk55vq2QEm0wl-3cIck6wOuEKxIrQLNOG2iL3WZCKkZyS2rOB4JmiPy7Txex8t8bF5k-f-n8d20rXZXb9FYKRSgKOeprERgEvfgIBE3tI','The staff was very friendly and knowledgeable. Dr. Osiecki was professional and knew what she was doing! Aaron took very good care of my daughters wounds and her xrays.','2019-01-17 20:48:29.715000','2019-01-17 20:48:29.715000',5,'Ashley Avery','https://lh5.googleusercontent.com/-CYKO1jxFxbY/AAAAAAAAAAI/AAAAAAAAAAA/eZAVMVZZUCA/c-rp-mo-br100/photo.jpg','13486358490203335051',1104),('AIe9_BHVBnWjBJvk55vq2QEm0wl-3N733fpGyBhZbM4U8dIAPMzr9GUsLAKAwATqnpnvvPZkFUKVya-DE2hP2_Fc7-bzAYENbJDLlI3aQLKiW-0ok2o5c2w','Chanelle and Alvean were very caring and friendly.','2020-01-21 20:16:04.506000','2020-01-21 20:16:04.506000',5,'debra Palms','https://lh6.googleusercontent.com/-23kngjtP7KQ/AAAAAAAAAAI/AAAAAAAAAAA/Srprwbli_0Y/c-rp-mo-br100/photo.jpg','16389487648212004696',10201),('AIe9_BHVBnWjBJvk55vq2QEm0wl-3T_9AFGOM4JimBCoTF5hu4cvtw28Upon7kTRst4qknvpAnIoqplYiVxHd5q-8Xp-tbk0N25Gy6QSCdiwuuZJwMpgoGE','great staff','2020-01-29 20:49:51.095000','2020-01-29 20:49:51.095000',5,'roberto martin del campo','https://lh4.googleusercontent.com/-N4t4dLFuWA0/AAAAAAAAAAI/AAAAAAAAAAA/N0w1PKKN97U/c-rp-mo-br100/photo.jpg','14567670160750071148',13582),('AIe9_BHVBnWjBJvk55vq2QEm0wl-3TNxWGUzEfwbRTZvC6kl0bsePFlWMVvzbfGtEyjZNIziDbHme60U7KSXOSwVzNALJl1n9ohv_7U9QCbyHY2k34qU42g','My best friend was admitted to Emergency Care here in Bellaire. I tell you I have to say I was very impressed with the service, registration❣️, facility and most of all the staff -especially(nurse Karen❣️, tech Son Le, Delicia❣️and of course the doctors Dr. Alloju Dr.Spangler , and Dr.Ybarra. Thank you’ll for taking care of my bestie and having the top notch accommodations which allowed me to stay overnight with her. My friend was so afraid of her condition when she arrived and you’ll have eased her mind with your care and instruction. Pictures say it all, please see the VIP recipient of health care excellence. Pictures attached of my friends condition from yesterday to today’s State of mind. Thank you, Thank you❣️','2019-11-04 15:59:34.392000','2019-11-04 15:59:34.392000',5,'Tammy Rodriguez','https://lh4.googleusercontent.com/-O-wXISquPDo/AAAAAAAAAAI/AAAAAAAAAAA/B8YOOBgB6tU/c-rp-mo-ba4-br100/photo.jpg','8679688254631342173',8752),('AIe9_BHVBnWjBJvk55vq2QEm0wl-3v9kSi4xEdH54gQ9fXILSw7Yb7XjiA0hJQLfL01bZBtA6aUJkVce1CnhbJCm0xy63qxZwdTOfoQvb20rlfqHsieIDWY','I had a good experience. It was great care hands down. Ashley in registration was sweet and Doctor Wang was very attentive. My nurse Racheal checked on me regularly and when Can the Rad Tech got there she was very polite and my exam didn’t take long. Thanks y’all.','2019-03-15 05:23:31.695000','2019-03-15 05:23:31.695000',5,'Erica Castro','https://lh3.googleusercontent.com/-7TQcVgYq_jI/AAAAAAAAAAI/AAAAAAAAAAA/2J_-Mf_Ky9s/c-rp-mo-br100/photo.jpg','17898197009688164559',5808),('AIe9_BHVBnWjBJvk55vq2QEm0wl-4-VKGTanek_IUDVmv0jTug7iR9jBHwQIOpjv8J19uNXnZLxmVpsnbci5XxGO5p6_iE0JqSDWHwuhr4qYSIfG8pQrrE0','They provided speedy care along with a great staff.','2019-12-14 16:14:23.463000','2019-12-14 16:14:23.463000',5,'Fatima Ali','https://lh4.googleusercontent.com/--aFNrCtFhNQ/AAAAAAAAAAI/AAAAAAAAAAA/uUj3LMcLziA/c-rp-mo-br100/photo.jpg','17898197009688164559',5356),('AIe9_BHVBnWjBJvk55vq2QEm0wl-42XQLSkzohcSmrfaDwnRn6G_LMr1Pe19QI9YencRjD_cGkrmtR-Lp30IzoaFgUDay_gPU7t6pECG4OJAofXuegtED4s','Nick Harrilal has been an absolute blessing. SCEC is lucky that they have an individual that represents the company so well. I give these guys a 10+ in terms of service, empathy, and results. I was expecting to leave with a huge dent in my bank account. I was shockingly surprised! These guys went well beyond what I expected and I was charged way less than I or anyone else would have imagined. ++++++++ Of course, they resolved my challenge!','2018-08-01 03:16:04.782000','2018-08-01 03:16:04.782000',5,'Vern Miller','https://lh5.googleusercontent.com/-EfFCOqwnGyw/AAAAAAAAAAI/AAAAAAAAAAA/uqmFZ6BtFr8/c-rp-mo-br100/photo.jpg','3511292162159714121',7678),('AIe9_BHVBnWjBJvk55vq2QEm0wl-497fllZZiFqZ4CW7E9E0ziLV5Kd-O9eV6eAK03GNGRd5bU1qm2LbGpcweKPgKMlZpHisa02VM_pmUhIfXy3mvjxVZNE','The staff was incredibly nice.\nDee in registration was a sweetheart and our nurse Dawn was very gentle when inserting the IV.\nEveryone was very kind and understanding during our visit and help make me feel really great.','2019-06-25 19:56:43.875000','2019-06-25 19:56:43.875000',5,'Julie Palomares','https://lh6.googleusercontent.com/-2Wxvir8xDPw/AAAAAAAAAAI/AAAAAAAAAAA/L0D242_AG_s/c-rp-mo-br100/photo.jpg','3511292162159714121',7286),('AIe9_BHVBnWjBJvk55vq2QEm0wl-4cwvSJe4pWsqmg7qL71SuZPuCFaynaxcbdwXuE1fVRcyPVEUO06srPSK5GhpKY21SLWz-9t99oMzs9fXtXOXEWh10ok',NULL,'2019-10-17 16:29:19.452000','2019-10-17 16:29:19.452000',5,'Toke tochoke','https://lh6.googleusercontent.com/-FDPQI1qa0Ec/AAAAAAAAAAI/AAAAAAAAAAA/FYqAIDjd7nE/c-rp-mo-br100/photo.jpg','16389487648212004696',2806),('AIe9_BHVBnWjBJvk55vq2QEm0wl-4d55MoBg2z3pROnu_9sksyHoU_cmNEbi21Y50p4R7nhLVcMTXJna8wDaYXg-acpNxzMZg_FuJWrnDlMXEClxrFW5yiQ','This place is taking great care of not only myself but my entire family. Their staff is super friendly and super knowledgeable very quick low wait times in-and-out with in an hour hour and a 1/2! I will be using signature care For all my urgent care needs in the future','2017-09-10 15:12:22.726000','2017-09-10 15:12:22.726000',5,'Thomas Wyszynski','https://lh4.googleusercontent.com/-FIk1LR1RfaU/AAAAAAAAAAI/AAAAAAAAAAA/RCcuGSbMqLc/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4979),('AIe9_BHVBnWjBJvk55vq2QEm0wl-4GoEklthTjhiQRaLd7zva7Os4HNuq4bfdVzddCASjZHTRERoLCil90vneZTSWeB6PVQVjKgL3lPSj09kcG60VvbGQzg','Everything was great. took care of the problem went well. \nthank you !\nDr. Harjai\nKelly L\nMarcia D\nPatricia C','2019-12-06 22:17:35.634000','2019-12-06 22:17:35.634000',5,'Areon Trammell','https://lh3.googleusercontent.com/-ybSe6Lwoofg/AAAAAAAAAAI/AAAAAAAAAAA/2G9J0t91GCA/c-rp-mo-br100/photo.jpg','16389487648212004696',2572),('AIe9_BHVBnWjBJvk55vq2QEm0wl-4OmwpF3d3DPjZLjlErhLd1ZD919cPBEOuh-fcpRuX3jELsuntinBtMGgfvBcX_dF2-jXiKoNPJ04uKbP7tQbF27CcVI','It was a great experience, have been there 2 times and both times and they are very nice, respectful, fast and great attention to detail to make sure they find the cause of the problem and treat it properly','2019-10-08 16:10:22.547000','2019-10-08 16:10:22.547000',5,'angelica cuartas','https://lh5.googleusercontent.com/-UUPhYhz_VyM/AAAAAAAAAAI/AAAAAAAAAAA/8vsyjBTS7u0/c-rp-mo-br100/photo.jpg','14904078213800803294',13678),('AIe9_BHVBnWjBJvk55vq2QEm0wl-4pdW0cyf2NRSb9-n3Qpd9PPcBBb6qtLJhg1mQNoFb74d7qROmJiDb_d0VGQS5d6zSlz0285I_p1vg99FtDu7tXk3YF8','The registration ekxtraordinaire, Maya, was so incredibly helpful! She went above and beyond, not only helping with checking in, but also took time to even look up contact information for a follow-few up that was needed. She made the experience so efficient and was so unbelievably with everyone she helped! Would definitelbsqcq. We can JJ I miss\nacrn to this location again!!','2020-01-25 23:46:24.577000','2020-01-25 23:46:24.577000',5,'Jordan Meredith','https://lh3.googleusercontent.com/-SSzhrwjjmKw/AAAAAAAAAAI/AAAAAAAAAAA/C7xVuP_Na8g/c-rp-mo-br100/photo.jpg','12541597562633926366',10093),('AIe9_BHVBnWjBJvk55vq2QEm0wl-57IuUAfMDfgqPQjOkS8SY65nbMVYIgq3dWlV_JULF2Z57SchMnQkQGDM_OwR_Oy_BISxDOMTY-X1QJ_LMQEGG7wYLVo','Great staff! Quick professional and caring! Lisa Krumer and Allison are awesome!','2019-08-20 01:20:32.487000','2019-08-20 01:20:32.487000',5,'Korey Stone','https://lh6.googleusercontent.com/-7FVpNFhHVtg/AAAAAAAAAAI/AAAAAAAAAAA/5th4fdNVG8M/c-rp-mo-br100/photo.jpg','13486358490203335051',850),('AIe9_BHVBnWjBJvk55vq2QEm0wl-5DScmxW66vc_9BhaBTHePzOQTZ1IzcQ7PGYaKQ0EgTXoZzKOv8IEGlnFBYtkqvUXNlYjvT_-QRIfoRm0FyuO5x1NGCE','I made a apt. online while i was at work. This was fast and convenient. When we arrived i was greeted and was back in the back in under ten minutes. All the nurses were great and the two Drs i saw where also great (shift change hours). They made me fill like everything i said was important and real, not just some person freaking out. They even had snacks/drinks and warm blankets! Overall i was very pleased with all of the staff members, time spent, and services.','2018-08-11 23:18:59.561000','2018-08-11 23:18:59.561000',5,'Chelsea Koutroulis','https://lh6.googleusercontent.com/-GGAOdWn7ouc/AAAAAAAAAAI/AAAAAAAAAAA/zPyTPpMpTAk/c-rp-mo-br100/photo.jpg','14904078213800803294',2228),('AIe9_BHVBnWjBJvk55vq2QEm0wl-5F-8KQ2DdLeB8pX4BqMvOaj3hU5QUjdN6PFVv94wV7Nsj4wWapiKsvH04yZ2zD8QeOGs4gsHKG-ip5MKA5ndggOwS-Q','Super friendly staff!!! My 2 month old had a fever and wasn\'t feeling good, we took him to this facility around midnight and we\'re taken care of at a timely manner. The staff and Nurse Rachael Reyes was great with out little one.','2017-08-01 18:48:55.679000','2017-08-01 18:48:55.679000',5,'Lili Majano','https://lh4.googleusercontent.com/-RJRse25om6Q/AAAAAAAAAAI/AAAAAAAAAAA/aMDZMf-JIUA/c-rp-mo-br100/photo.jpg','17394740196501090048',5007),('AIe9_BHVBnWjBJvk55vq2QEm0wl-5gY_Zecz_dYeIih_6gsILYkCto4LPkqwDZnpXTf0Zr7g_sDrQW2o2WLcwx0VXuELrJxHNHqO6GXkA0AG0Zlumpm5QMY','Went in to take my mom, front girls started off the experience with a smile, quick service, Sita was training someone I think latisha and they were great!! So caring! Then nurse Vanessa treated us, along with dr Huerta, David was great too!! Two thumbs up, will never forget the complete care they offer .. 🙏','2020-02-27 05:14:23.268000','2020-02-27 05:14:23.268000',5,'x BowDownPeasant','https://lh4.googleusercontent.com/-nz-GD-bhGEE/AAAAAAAAAAI/AAAAAAAAAAA/5eYxk3DgKUg/c-rp-mo-br100/photo.jpg','13486358490203335051',13409),('AIe9_BHVBnWjBJvk55vq2QEm0wl-5ooUmnjbF5MoZTP7ibMD3rwSgqrmjsIYTar-jM3_rIzZ-S07fPgXNM11gSFgUctpoc8SavV6NN-5k-ybC94D3I-0zK8','i would recommend you come here it’s fast an the staff of very caring!','2019-11-15 01:36:44.186000','2019-11-15 01:36:44.186000',5,'Aja Rios','https://lh6.googleusercontent.com/-qEexXFLwC34/AAAAAAAAAAI/AAAAAAAAAAA/q75oLaLGkZ0/c-rp-mo-br100/photo.jpg','13486358490203335051',740),('AIe9_BHVBnWjBJvk55vq2QEm0wl-5PXCZ1Zzwx8bDVa_avnuRi0Qm1hKYj7-dHmqgOI4HjqtX4RPszLp0fMa85fpS4heFqSto8_cjqqI3OkFHf1iTyYCPrY','Great service Dr. Wren, Hamzah RN, Norma so nice they all took care of my wife no waiting time. The experience was absolutely great!','2018-12-09 16:21:50.251000','2018-12-09 16:21:50.251000',5,'Moussa Tamboura','https://lh4.googleusercontent.com/-MBKEZdsSEuw/AAAAAAAAAAI/AAAAAAAAAAA/5MrcM-hiO-U/c-rp-mo-br100/photo.jpg','3511292162159714121',7549),('AIe9_BHVBnWjBJvk55vq2QEm0wl-5vG2cEiTe0q8NtqWE4LtpME6S0cAomu-eFB55CYKnhmcZ7oUvoU0LzLwZCHAg4HOWkYW7Dw0GS7jCIEY0RlE34egohE','SignatureCare ER is fantastic! Great facility for your emergency medical care. Staff is super helpful, knowledgeable, and nice! Facility is very clean! Rooms are comfortable. They can do anything here, right down to X-rays and labs! Open 24 hours! No need to go anywhere else! I highly recommend SignatureCare ER for your medical emergencies!','2020-01-23 17:41:20.654000','2020-01-23 17:41:20.654000',5,'Samantha Duncan','https://lh6.googleusercontent.com/-f2xzVq6XzLM/AAAAAAAAAAI/AAAAAAAAAAA/06p2np4I5zM/c-rp-mo-br100/photo.jpg','16891069708558046635',13977),('AIe9_BHVBnWjBJvk55vq2QEm0wl-5wc8JmzP0DJVjg-1uviz6AMM3zZSbPipaKWYXZuLs7TWsFIOtShkC7958s4uI0rqsfZdiiDFRcB2tKGiM3kiImBXmUs','Amazing, simply amazing, best medical service I\'ve ever had, would recommend in a heartbeat. Kimball was very friendly and really did care, I don\'t see this level of professionalism anywhere else 10/5','2017-10-15 17:57:28.495000','2017-10-15 17:57:28.495000',5,'Aaron Angert','https://lh6.googleusercontent.com/-havrgNe5zxY/AAAAAAAAAAI/AAAAAAAAAAA/KYCKxkZT02Y/c-rp-mo-ba3-br100/photo.jpg','16590124370714063921',3923),('AIe9_BHVBnWjBJvk55vq2QEm0wl-5xbmU3rzgGUUNZ3q8O5YQWdiOnoli5hPJ3VBvqdLWhbSJe-f7Ww8r8SAUbBUZw2fJdYBAFNmxFzzEwI6Ay0ttJs1-NU','Dawn and KeArie were awesome\nVery comforting','2019-09-28 13:21:12.113000','2019-09-28 13:21:12.113000',5,'Jake Nagel','https://lh3.googleusercontent.com/-VqkiopJE5JA/AAAAAAAAAAI/AAAAAAAAAAA/dGLqmKbqfLw/c-rp-mo-br100/photo.jpg','3511292162159714121',7169),('AIe9_BHVBnWjBJvk55vq2QEm0wl-65oIJuiw6tl0uM5GyXmpGTR8mU5921OXaY6fr7qh38H2_mPwKCv7IEt6yaUIchBppyfPAciGqEzNuzPdUTtn1v5rdEQ','Dr. Morrical, Nurse Irving, Rad TecH Holly, Holly/TecH; Lisa Registration Aerial W were all very professional, courteous and caring ... they made my visit very pleasant','2019-09-16 08:48:41.163000','2019-09-16 08:48:41.163000',5,'Dana Robinson','https://lh4.googleusercontent.com/-xNefmzQDsYQ/AAAAAAAAAAI/AAAAAAAAAAA/NmSxuoB7Saw/c-rp-mo-br100/photo.jpg','12541597562633926366',420),('AIe9_BHVBnWjBJvk55vq2QEm0wl-67HoB_XrJGO0mbDlsVo90boqjYHZAUNLsUzLl69D-DWcAr5TMlYS1bedSxstlzVSeHz5tMYRi8FWsLruG2fkhOeeEn0','Yesterday i wasn\'t feeling well so i came here let me tell you THIS PLACE IS AMAZING !!! FROM THE TIME I WALKED IN TILL THE TIME I LEFT THE STAFF HERE ARE WONDERFUL THE FACILITY IS VERY CLEAN AND QUIET I WALKED IN AND WAS SEEN IMMEDIATELY THE BEST EMERGENCY CENTER I HAVE EVER BEEN TO THANK YOU ALL SO MUCH!','2019-10-25 14:22:52.016000','2019-10-25 14:22:52.016000',5,'Chloe Ross','https://lh4.googleusercontent.com/-YXFvCT7kuzE/AAAAAAAAAAI/AAAAAAAAAAA/tTcB3zVdsyI/c-rp-mo-br100/photo.jpg','8918455867446117794',9053),('AIe9_BHVBnWjBJvk55vq2QEm0wl-69r5rppVF9ZLOcEbhUfrKB5wximrxTlrhVKtBrAIFCh3gxNGMwBbcfDdxjuLNl-ZmPAMzucv6xAK5rCUzj-DBpYlp0g','Great place very modern. Great pleasant staff . Dr. Patel, Alvean, Kelly, Joycelyn and Erica were very professional.','2019-08-07 21:17:09.743000','2019-08-07 21:17:09.743000',5,'Wendale irons','https://lh3.googleusercontent.com/-W9XbUy9C-Dk/AAAAAAAAAAI/AAAAAAAAAAA/4Ph6SqxYz34/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-6cacOcVzCqUgp8Rmeo6kMburo966f5ftSB9dzWhzz2R2vU3y2ZrfCRIKJAk9QaRDVipzqT2h6FHaSuSPdoUz0dWDs14','Very friendly staff, short wait time, knowledgeable staff. Will definitely visit again if needed!','2020-02-25 04:04:14.281000','2020-02-25 04:04:14.281000',5,'Shannon Thames','https://lh3.googleusercontent.com/-QQ7eoyaWwjU/AAAAAAAAAAI/AAAAAAAAAAA/uNb1Yh75eLs/c-rp-mo-br100/photo.jpg','6521947413723274945',14547),('AIe9_BHVBnWjBJvk55vq2QEm0wl-6Qa2yEWBAoNiiT8xDBaHfDc3FGDDj3idqauf9DAUicQhqwLqjT75iQRUMqO5Mke_wXKPIwbQmDfjiTVBqxJ-oPcwN0E','Such a caring and helpful staff. Thank you so much for the pleasant and speedy visit. All of you really put this Momma\'s nerves at ease.','2016-03-28 22:08:37.963000','2016-03-28 22:08:37.963000',5,'R Tuang','https://lh4.googleusercontent.com/-GaVXDG325DM/AAAAAAAAAAI/AAAAAAAAAAA/pjFObgA-efY/c-rp-mo-br100/photo.jpg','17394740196501090048',5269),('AIe9_BHVBnWjBJvk55vq2QEm0wl-6u7ttou3IiyvRV4V-G4Lc53OXReI51XSTAC1PY3M7fwgYH64orTOU1FZ40qP6RxqPajjXJkGVTovqBJd0sYtYf5XzBQ','Thay where very good','2020-02-29 20:03:42.939000','2020-02-29 20:03:42.939000',5,'Lakrisha Richard','https://lh3.googleusercontent.com/-e-P85TEquho/AAAAAAAAAAI/AAAAAAAAAAA/yiy3YMLcqBo/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',17448),('AIe9_BHVBnWjBJvk55vq2QEm0wl-6yRaVJxV_8Pfk1C8671I9s86sdrN2JVFZj29Glrz6CyLt52JIEupXngj1lFItLo87rKpPu8DmOUht38fCHynCd8ysh4','Very quick and efficient. Staff members are caring and very helpful.','2018-01-18 16:38:02.741000','2018-01-18 16:38:02.741000',5,'Logan Van Booven','https://lh6.googleusercontent.com/--BHXupM8Dfk/AAAAAAAAAAI/AAAAAAAAAAA/oo8XxVZkwXI/c-rp-mo-br100/photo.jpg','16590124370714063921',3878),('AIe9_BHVBnWjBJvk55vq2QEm0wl-7FapFj0wJe9MGdSAD1PCO1_8rhRfsDXCxbu3qsQdJJmZPd7mDOrONGgMkLXR23Rt0JqIpcj8sbpRrmWI27I0xk_TnoM',NULL,'2019-12-03 12:53:30.462000','2019-12-03 12:53:30.462000',5,'Isabella Sanchez','https://lh6.googleusercontent.com/-iZBKgZX-XKs/AAAAAAAAAAI/AAAAAAAAAAA/4p28_jJH-Dw/c-rp-mo-br100/photo.jpg','16389487648212004696',2589),('AIe9_BHVBnWjBJvk55vq2QEm0wl-7G_0ATm6j9rDmXO5RtLLY6V0EYp9etMPn7V2EcdvdWqSrxn-k1wBhO12e85jRMxLGiTjS_sUeaOZOpsoTNy0dmprVvs','I will definitely go here instead of the hospital ER. Very quick. You can make an appointment. Staff is friendly and helpful. Very clean.','2019-06-07 13:14:37.338000','2019-06-07 13:14:37.338000',5,'Laura Texas','https://lh3.googleusercontent.com/-E4kF7JgB5lE/AAAAAAAAAAI/AAAAAAAAAAA/JMzOImPzdHw/c-rp-mo-ba4-br100/photo.jpg','13486358490203335051',986),('AIe9_BHVBnWjBJvk55vq2QEm0wl-7nzDLqUkMBHEmaNV0hjwXca7R4nh3QSRW6OW_Ae17F8ownjdwLfN2hkfcAqDugCimVrT8lUMmbvPY1CW2YE9fEnmrJ4','Very friendly and compassionate! Genuine care! Highly recommend them!','2019-01-02 00:27:06.668000','2019-01-02 00:27:06.668000',5,'Maryann Oyoque','https://lh3.googleusercontent.com/-O9Iz8ViLfSU/AAAAAAAAAAI/AAAAAAAAAAA/_P8bqgl7ESw/c-rp-mo-br100/photo.jpg','6521947413723274945',8332),('AIe9_BHVBnWjBJvk55vq2QEm0wl-7VSIOeIFQUz_Bn4QhVW0Z8mh-EreclfD4jUZX6v4GkTTP7pd3ntDXButIZyZI-FRMNN3sILge_j7i3TLQ9u6j7PAOY0','Incredibly nice and clean facility. Exceptionally kind and attentive staff. Jasmine at the front desk was incredibly kind and helpful!','2017-03-14 05:34:53.264000','2017-03-14 05:34:53.264000',5,'Lizzy Vernier','https://lh5.googleusercontent.com/-d7aVO0KHits/AAAAAAAAAAI/AAAAAAAAAAA/9HOJrdyAOWI/c-rp-mo-br100/photo.jpg','14567670160750071148',1865),('AIe9_BHVBnWjBJvk55vq2QEm0wl-80wlzQDDFaZho1D-O43WolftPtMFEf4kLztIVORV1ic-HbD_1pjuJLnZkU4ghv3OyJJ27J5_82JP-x9yDdL8Vhd4nhE','The employees Keera and Cat were very helpful with my roommate. The service at the front desk was very fast and Keera was able to give my roommate good advice on how to deal with her illness.','2018-09-24 04:22:12.141000','2018-09-24 04:22:12.141000',5,'TheOneWithTheServiceDog','https://lh4.googleusercontent.com/-ijgGmbx-7QU/AAAAAAAAAAI/AAAAAAAAAAA/COtPGeysIyA/c-rp-mo-br100/photo.jpg','16590124370714063921',3718),('AIe9_BHVBnWjBJvk55vq2QEm0wl-86HXLrluoojdq3J0BXqGlvedFvStND3K9OdydiFTK0eXqMMZL7n32AksrW45va0tuKqT-ivpDYawdgtjwuActbmv0WY','Called before I went because I was broke to make sure I wasn’t gonna have to pay anything the woman who answered the phone told me that the doctor would see me and since they didn’t take my insurance once the doctor saw me then they would let me know how much it’s gonna cost and we can make a payment arrangement which is fine granted I told her I have five dollars in my wallet right now I mean it’s Christmas time like I’m broke and they don’t take my insurance so I get there I wait talk to the nurse talk to the doctor then the same woman comes in to let me know it’ll be $175 because I am level one that they didn’t consider me an emergency and that I had to pay the whole thing before the doctor would do anything even though the doctor had already looked at me had already decided what I was going to be prescribed because it was checked off in the little paper I had to sign saying that I was going to decline having medical care done there which I mean they should’ve been an option for The truth that I was lied to so I would come in. how do you trust a doctors office That lies to you from the very beginning I even offered to give them my bank account information so they could charge me on the first when I got paid and they’re like no you have to pay today so they’re liars so if you like people who lie then they’re perfect for you and since I wasted my time there the urgent care clinics were all closed forcing me to go a emergency room. And they are not urgent care, google and they’re ad says they are but they are an emergency room, it’s a scam. Which I should have known when they said they didn’t take my insurance. \nSorry using voice to text so probably no punctuation in this','2018-12-16 05:03:20.382000','2018-12-16 05:03:20.382000',1,'Shele House','https://lh4.googleusercontent.com/-pGqKU-Kereg/AAAAAAAAAAI/AAAAAAAAAAA/zHy6rppEK3g/c-rp-mo-br100/photo.jpg','16590124370714063921',3608),('AIe9_BHVBnWjBJvk55vq2QEm0wl-87IZts41YFZBGuMn8rpcnsP5cunmBB3dgUbyxCORclKihom0UiYP6Ow-3lvI8F-QQQosn1yVOMi0jOSRfC2L7Z6Htx8','Service was Fast and welcoming the lady Tanishia at the front desk was Awesome would recommend anyone there','2019-07-26 04:50:08.101000','2019-07-26 04:50:08.101000',5,'Dynasty McCray','https://lh6.googleusercontent.com/-bPeSBqpnRGk/AAAAAAAAAAI/AAAAAAAAAAA/YeFNgveSCSg/c-rp-mo-br100/photo.jpg','17898197009688164559',5624),('AIe9_BHVBnWjBJvk55vq2QEm0wl-8FaoopCEdZyC_ffJozrY_1onNCuNKraCpQ0-8yYR230E3OaeBko0y284ARenlWpbW40UkVMtYWfv0_FHzMUhpO8VQBQ','Great experience with SignatureCare! Staff was friendly and courteous. No wait time, got checked in and taken to a room within minutes!','2018-02-09 23:19:56.283000','2018-02-09 23:19:56.283000',5,'Jocelyn Moreno','https://lh6.googleusercontent.com/-st6kAq1mXfY/AAAAAAAAAAI/AAAAAAAAAAA/1k--MbZLDNE/c-rp-mo-br100/photo.jpg','8918455867446117794',9290),('AIe9_BHVBnWjBJvk55vq2QEm0wl-8IjNC_-bKVHAy2eVJMr2hWZZRIsUOfMT6y94YFd_ZxpKjX-pRIhRR4ns17YSli9JJZ_ULXXDxXo6upPk7AYt-ZX9uo0','Dr. O\'Malley\nAlvean A - Nurse\nTriciaB - Rad Tech\nJocelyn A\nRobert','2019-12-11 21:22:53.299000','2019-12-11 21:22:53.299000',5,'Carlos Gonzalez','https://lh3.googleusercontent.com/-0JT3OGNoHdE/AAAAAAAAAAI/AAAAAAAAAAA/4oOQxxAIGZ0/c-rp-mo-br100/photo.jpg','16389487648212004696',2553),('AIe9_BHVBnWjBJvk55vq2QEm0wl-8J1DRD6rtuef-DWcGZJjHsJNw_1DTjji06V742x7k313wGUI5RGgNmWAPhNO772mdm3rGiO9GGK7dxP_fyRiy9VIw68',NULL,'2018-12-26 06:32:59.970000','2018-12-26 06:32:59.970000',5,'Ashleyann Cobb','https://lh5.googleusercontent.com/-QcJseVUvxXs/AAAAAAAAAAI/AAAAAAAAAAA/h4b6DSPqlcs/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',7083),('AIe9_BHVBnWjBJvk55vq2QEm0wl-8kVXPMLz_PpdN_D-OmCXcZzBt2CVpOkWrJ_Pl_RJGXl-v0DxyiWiKIXOGWpbqFT-IGAZxuPijNUnIhbdecnRTQgbve8','Was very clear on the testing procedures and worked in a fast manner.\n\nRegistration Lorena- Gracie \nEr tech- Brancroft\nNurse- Theresa B','2020-07-26 15:18:12.510000','2020-07-26 15:18:12.510000',5,'Cristian Santivanez','https://lh3.googleusercontent.com/-IXtgWyCDlpA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclWXwzXwVYiSj4wIeayZMhPhRwuqA/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22212),('AIe9_BHVBnWjBJvk55vq2QEm0wl-8L1xtkeC1lwwDbCWVZt8BwpqVSAieT93rXMRViKNcmEWc8nwU4eDfDfAtmL2gWSm-9_JcoG69jRrQftkAaDSs6J92e0','Very informative practice. Everyone was nice and cared about my health. Highly recommend Doctor Singla, Nurse Marcia, ER Tech Teresa, RAD Tech Melissa, Registration Brenda R.','2018-11-23 20:52:17.999000','2018-11-23 20:52:17.999000',5,'Kylia Neely','https://lh4.googleusercontent.com/-mSq6hMy3Vs0/AAAAAAAAAAI/AAAAAAAAAAA/nSuenRKFUvA/c-rp-mo-br100/photo.jpg','14904078213800803294',2196),('AIe9_BHVBnWjBJvk55vq2QEm0wl-8wXMe4tz-RrSTf-D4TSflrH20YRRAmFBbXOYnPxm3yAtNR6PzpTJ_Ck8yWhUvxPkknThfvQEqtUkUPRtWTGIAaGykGk',NULL,'2019-03-22 21:27:49.832000','2019-03-22 21:27:49.832000',5,'Kathy Carroll','https://lh4.googleusercontent.com/-ZyryfEdCBcM/AAAAAAAAAAI/AAAAAAAAAAA/4dNEOnJqVlk/c-rp-mo-br100/photo.jpg','3272657195432704501',6988),('AIe9_BHVBnWjBJvk55vq2QEm0wl-9_Pv6yMivnZxOxC5sv9Aue16FuDVPsJX7pTGVRvObkNC2sncDE6f2M04-OBViGJmXgQIvvhkLAV6vH5Ex2l8myKG99c','Very professional Group. Attended first by Lorena and Grace. Then the ER Tech Brancroft got us in eventhough we came in as walk in. Nurse Theresa was very professional. Thank you','2020-07-26 16:30:43.413000','2020-07-26 16:30:43.413000',5,'Noemi Baeza','https://lh6.googleusercontent.com/-puagQOgVTeM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckjgDlXgAJ7Cl9oNRfMJe7YW4uzkw/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22209),('AIe9_BHVBnWjBJvk55vq2QEm0wl-96kwVVBBDg7c9XLVhPJBwFgLDogZ0iKcNrjoIiNMqL0Gkqw4q-DiBNzgCmfG7062e6H2bIA0Y4bBEGS3-iA2ZwXsj60','Brought my daughter to emergency a week ago and they treaded her so well the beginning we got here. Now I came too, and they also treated me great too! The ladies from the front desk to the nurse, the doctor, the RT they are ALL really nice! Definitely a great ER to come!','2020-01-28 00:15:57.630000','2020-01-28 00:15:57.630000',5,'Maria Hernandez','https://lh5.googleusercontent.com/-GLDR4maRvMU/AAAAAAAAAAI/AAAAAAAAAAA/9WQX1iIGY9I/c-rp-mo-br100/photo.jpg','14904078213800803294',13618),('AIe9_BHVBnWjBJvk55vq2QEm0wl-9cnNbld9AoYdl-TloGgeZXkSKzOy0R_GMWCBTHCuwMOcNcb6VcQLilbGG76lY0bnOdWgh69ddmn98AVBVEJrX5Uw5KE','Very helpful and caring !!! Can\'t forget about Norma , Amy , Dawn , Eve ! & Dr.Leavitt they were very helpful just love this place in and out','2020-02-02 20:31:32.681000','2020-02-02 20:31:32.681000',5,'Taylor Hudson','https://lh3.googleusercontent.com/-8N3K2Aqd-Sw/AAAAAAAAAAI/AAAAAAAAAAA/yxAK807piVM/c-rp-mo-br100/photo.jpg','3511292162159714121',14431),('AIe9_BHVBnWjBJvk55vq2QEm0wl-9Gr-XMWDy34Ku0xT_aPmzQiJoaTE3Fj6MHIC8ZCRQv6yRRQjxRHSx58rWTxLXuXjb_6tKY5nQkis0qsySMKqEAhd28Y','The care I received From Dr. Miller, Kristina, Jennifer, Laura, an John\n\nwas beyond amazing. I could barely walk when I arrived, within an hour\nI was 90% better. Just wanted to say Thank you, To all of you from the \nbottom of my heart.','2019-11-22 20:42:22.434000','2019-11-22 20:42:22.434000',5,'slim frank','https://lh3.googleusercontent.com/-LI_kLBCM238/AAAAAAAAAAI/AAAAAAAAAAA/bV_4Aht7W7E/c-rp-mo-br100/photo.jpg','12541597562633926366',373),('AIe9_BHVBnWjBJvk55vq2QEm0wl-9k_ZLSJ16qfC4-xOo7uNUwmMs476pTU6MSYNTVfwaYmHcI1quIWNEc9S8GyGpIxKBruVMWH-LS1CR4v2_f5T0tWrsqg','I went to get my COVID 19 testing and surprised the guy who did the test want ware a mask or gloves I was a little nerves I didn’t asked him why but later on I called the office asked to speak with the GM to tell him about the issue','2020-06-29 05:39:22.813000','2020-06-29 05:39:22.813000',1,'Allen Tan','https://lh3.googleusercontent.com/-0Ezb5t0wyXk/AAAAAAAAAAI/AAAAAAAAAAA/KDUx-0X0ftc/c-rp-mo-br100/photo.jpg','13486358490203335051',21357),('AIe9_BHVBnWjBJvk55vq2QEm0wl-9P0z3eoOmcpxkQUotlzuHrhodS_2-NhcGaSjZzYAOC_lcs-dHEffMl4WuYcheAM1HRwUpZ5EXDBmbYbj-Jy0ZWG19MM','Very quick, straight to the point! Good service.','2020-02-08 22:34:34.182000','2020-02-08 22:34:34.182000',5,'Cristoff XV','https://lh3.googleusercontent.com/-3qvfx4Hsdf8/AAAAAAAAAAI/AAAAAAAAAAA/CQZreMfqh38/c-rp-mo-br100/photo.jpg','16590124370714063921',13872),('AIe9_BHVBnWjBJvk55vq2QEm0wl-9YeRd7R78zngFW6JUkW_0jEHbORG4piMgrA64828AYjxXeCfrTbnn-MqYdJNrJEJFEchXTkQ7xykbk8cyEHMS3Klw5k','Aaron Ortega squeezed us in due to being high risk after being exposed. Very professional and friendly. Highly recommend.','2020-07-04 14:31:46.645000','2020-07-04 14:31:46.645000',5,'Samantha Lindsey','https://lh3.googleusercontent.com/-EUC_tGgoXTc/AAAAAAAAAAI/AAAAAAAAAAA/_5GDFBMOkLM/c-rp-mo-br100/photo.jpg','13486358490203335051',21350),('AIe9_BHVBnWjBJvk55vq2QEm0wl-A_vjf-TqzCGLOjQl8DMLzmQNvLJ79stj_bYLMpBltiT8oIDtlYDa0JlsTbhvAP4OC7NU6KIEFH-LE1yJu3_X1MESxRk','Wonderful experience!!!','2020-02-09 18:42:12.732000','2020-02-09 18:42:12.732000',5,'Tiffani Crawford','https://lh3.googleusercontent.com/a-/AOh14Ghk25U6PijngOD-AY1aVDt_5rFbFrYy14clxAJnGA=c0x00000000-cc-rp','8626688543755174284',14619),('AIe9_BHVBnWjBJvk55vq2QEm0wl-a0ABM4PZhujDt2Qn-WE7Rwv_u41PT87u7OVEtcnonOqSxEuLCXwdTaAzYcZ_G7TndxQ5vXD6G11jpXbc712m39hRlO8','The staff is very friendly & helpful. I would recommend for your urgent care needs.','2016-03-08 14:03:44.891000','2016-03-08 14:03:44.891000',5,'Sandra Christian','https://lh5.googleusercontent.com/-kLtSkZ2nbQM/AAAAAAAAAAI/AAAAAAAAAAA/a1ghEFODKvg/c-rp-mo-br100/photo.jpg','14567670160750071148',2049),('AIe9_BHVBnWjBJvk55vq2QEm0wl-a1I4oBsU2gOK3hqygYUWUjAn0ZcN35lPZaWBDbAgmB5HDxZrHD_hr7N_drluPX4kfftf7dScUzpuzIweg19qL0LtH2Q','Always friendly at this place. Never had a bad experience while there. Only once , I called them the next day, I needed additional help with medication that didn’t help. That’s when it gets unpleasant. U won’t get much help than. However, while u are there, very pleasant. Especially Tatiana G D... the receptionist. Overall, this facility, while there, is extremely good.','2020-02-22 04:14:29.656000','2020-02-22 04:14:29.656000',5,'Sylvia Salinas','https://lh3.googleusercontent.com/-xxq4w1OovBQ/AAAAAAAAAAI/AAAAAAAAAAA/IpcLk2N2d0s/c-rp-mo-br100/photo.jpg','14567670160750071148',13516),('AIe9_BHVBnWjBJvk55vq2QEm0wl-A5rj-Ul5QPpnzkq0RVec1OvDAvZBeinQf3qeZ-mBg6pyijd2ZKMjtD3OSDTTQL0-T-49gEs2ADTEwmNLBeX5OCYfGbQ','They are all very sweet','2019-06-06 22:26:44.731000','2019-06-06 22:26:44.731000',5,'Sam 31','https://lh5.googleusercontent.com/-8XtOp-1NH0g/AAAAAAAAAAI/AAAAAAAAAAA/8aHm410SQ30/c-rp-mo-br100/photo.jpg','6521947413723274945',8248),('AIe9_BHVBnWjBJvk55vq2QEm0wl-a9pD79IUqi-99AHQqyYsdPj1Nf8FZnMuQIfo0J4AqeQQdy0aNZ2tVOTLvUhlsNJGWYE698nRyZrfYD_ds96u6-c2w90','Everyone is really nice!','2020-02-24 14:34:30.553000','2020-02-24 14:34:30.553000',5,'Ashlyn Williams','https://lh6.googleusercontent.com/-ytEx3maw9mw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmL0-Tng-gzzACdu3o3Hqwq6RbjqQ/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21198),('AIe9_BHVBnWjBJvk55vq2QEm0wl-a9wxfdQ7Tysev4HR-iWSK-vGxEDrL_usTGIBC8BHcyBxg2dde5JyFXQmmWvtCoNwD2gJTM7qyMXd36hFFhWI0QAcbj8','The staff was friendly and the doctor was personable and efficient, just what I was hoping! Thank you!','2017-08-19 18:43:56.108000','2017-08-19 18:43:56.108000',5,'Drea Smith','https://lh3.googleusercontent.com/-gwoF3GpIIYg/AAAAAAAAAAI/AAAAAAAAAAA/kcDMb-Kx-eo/c-rp-mo-br100/photo.jpg','16590124370714063921',3955),('AIe9_BHVBnWjBJvk55vq2QEm0wl-aDgRxXceiQ50m0bKN16kQdmAyDQl1xljAJB5XoeGZNe7Gm3Ktdgd0_wGp4tkBcGJBlPHPniV3S_n4Aj8EQsceSuP7I8','Extremely clean. Professional and friendly staff. Dr. Miller is knowledgeable and fantastic.','2019-01-31 18:21:31.431000','2019-01-31 18:21:31.431000',5,'percy ly','https://lh4.googleusercontent.com/-YHk9P6GxG6o/AAAAAAAAAAI/AAAAAAAAAAA/aOZ2IiG54v4/c-rp-mo-br100/photo.jpg','3511292162159714121',7427),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Ae9JYfTCccuaZzHOoPPmUWh9cz5F6-fJYrf3pMy7KiseluUUIZ72nPDhCzDjg8akvxhcaciccPr5jAzBcyQTBulEqxE','Experience was amazing and will always keep coming back. Amy and Tony are the best!!','2018-09-17 03:24:48.732000','2018-09-17 03:24:48.732000',5,'Dexter Singleton','https://lh4.googleusercontent.com/-Nb6HIzBXq3w/AAAAAAAAAAI/AAAAAAAAAAA/HN20NuUYtdI/c-rp-mo-br100/photo.jpg','14567670160750071148',1504),('AIe9_BHVBnWjBJvk55vq2QEm0wl-aEkj99_ztmuSXPb-0P7vBoQKDGDL2FXroqvzIMoITDXFwlWuDRsAdteEtk3zV1nyp5obYtBp4s2dHynHK7eaygw6k3M','The right place to go if you need to be seen quick','2019-06-26 17:08:43.468000','2019-06-26 17:08:43.468000',5,'Sonia Soto','https://lh6.googleusercontent.com/-lxk5M098Fe0/AAAAAAAAAAI/AAAAAAAAAAA/9nIfHKn3s-o/c-rp-mo-br100/photo.jpg','13486358490203335051',921),('AIe9_BHVBnWjBJvk55vq2QEm0wl-AeTvv32GzQdnA1Tr7GsLvJRRBJ6xDcZF8irCYC5LVxWHwcFaxZo1zgvJ1jCb-FKKP-nzad-GbQpaA98H7yubZOaPUQQ','If I had to pick one word describe the staff, Amazing. I was really nervous when I showed up to the Stafford location. I was there to get a covid-19 test. I will never forget Alyssa P, Trisha B, and Shaylene A. What an amazing staff. They quickly put my mind at ease. Although the test was unpleasant, the ladies at this location were professional and courteous. Keep up the great work ladies.','2020-06-22 15:07:38.571000','2020-06-22 15:07:38.571000',5,'Aris Saravia','https://lh4.googleusercontent.com/-eKETBwNDBzQ/AAAAAAAAAAI/AAAAAAAAAAA/ftN2yLG2I-o/c-rp-mo-br100/photo.jpg','8918455867446117794',21221),('AIe9_BHVBnWjBJvk55vq2QEm0wl-agt5tuU-PbdoWGmdj6Yo7ra3GGiQ_UHX-C2ZZkScxNbbXqr-EoeEkkMvlJFO3x3OM0SkcBODr98BbjU6spPqqcY0qD8','They were excellent in all aspects! Extremely professional, fast, efficient and friendly. We had a wonderful experience with everyone we encountered from the receptionist to Dr. Thomas. First class service!','2015-02-07 02:01:56.044000','2015-02-07 02:01:56.044000',5,'Salwa Melki','https://lh3.googleusercontent.com/-9q95sM0pzVg/AAAAAAAAAAI/AAAAAAAAAAA/fbUXXnAMsTU/c-rp-mo-br100/photo.jpg','17898197009688164559',5959),('AIe9_BHVBnWjBJvk55vq2QEm0wl-AHyGr4izfryHTbUiWl62qkcl2U_J6ZU8XGPpKCFEDvL0t-VSiTQir3-VosA_Sr0d0j3cL9ARamMw3NZkIepstZjOgkU','They staff here were all very helpful and professional. I would recomend this establishment if you need any medical assistance.','2017-09-07 12:54:33.668000','2017-09-07 12:54:33.668000',5,'Braden Mathews','https://lh4.googleusercontent.com/-dRXVfl1kXNo/AAAAAAAAAAI/AAAAAAAAAAA/8X2MfgaGmEM/c-rp-mo-br100/photo.jpg','3511292162159714121',7791),('AIe9_BHVBnWjBJvk55vq2QEm0wl-AipRZKX9bXWqSwywiFdrdKdWJePKYlOnAas9Gdvoi2zWVjOfBSN6S4WFT-mRn55EgjjrYBgpGHqDUtiB5-shapZfdQ8','The wait was a little long but totally understandable with everything going on! Everyone was very kind and patient, the process did not feel rushed but it was efficient.','2020-07-26 02:37:26.488000','2020-07-26 02:37:26.488000',5,'Mariam Harutunian','https://lh5.googleusercontent.com/-vp4vWHkMQXo/AAAAAAAAAAI/AAAAAAAAAAA/q5SlzvnnXkY/c-rp-mo-br100/photo.jpg','2077061009497551125',22836),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ALADZB2HTJtyhlaL5MZdHB6-qa4zkv7b9x3BzOEsa-fK90CtNBA0BgfJnXSIKDuAm76deybcHEYjEbFKyo_797TKeE8',NULL,'2020-01-30 16:24:55.360000','2020-01-30 16:24:55.360000',5,'Jaxson Dillard','https://lh5.googleusercontent.com/-BaW1dku3cCE/AAAAAAAAAAI/AAAAAAAAAAA/yOX21vFt85w/c-rp-mo-br100/photo.jpg','16590124370714063921',10434),('AIe9_BHVBnWjBJvk55vq2QEm0wl-AMvyz_l__tOpHWut1mqrvz82TPpdLjvgl12y5mSd2vpj83Sa9AWaoSSTAV6zIwrxH7JzjKox4WWYPUAS8_3vgP5C_4Y','This clinic was quick, clean, and professional. They even had snacks! Dr. Siddiqui, Leslie, Churiah, Gina, Olivia, and Jaqueline all made this experience worthwhile. I will come back here for any emergency needs.','2019-12-17 18:21:22.317000','2019-12-17 18:21:22.317000',5,'Miles Indest','https://lh3.googleusercontent.com/-iCHoBYC69io/AAAAAAAAAAI/AAAAAAAAAAA/s36hVh-xeNM/c-rp-mo-br100/photo.jpg','3511292162159714121',7129),('AIe9_BHVBnWjBJvk55vq2QEm0wl-aNy3WlrooaUvvtBApSMCSI-k4reXAi0VMIuMmYAbeFlYAgsuA-dKRylakfeUV92W2miPVrZhmIDCx3JcI3B-v3zyk6w','Quick and attentive really counts when your toddler has a high fever. They took us in within 5 minutes of arriving and were surprisingly good with kids. If you don\'t want to sit and wait for hours before someone even speaks to you in the ER, I highly recommend this place and their attentive staff.','2017-03-06 05:27:58.873000','2017-03-06 05:27:58.873000',5,'Audrey Suarez de Medrano','https://lh4.googleusercontent.com/-K-P812RbmKY/AAAAAAAAAAI/AAAAAAAAAAA/6r9mbHZgWBQ/c-rp-mo-ba5-br100/photo.jpg','14567670160750071148',1873),('AIe9_BHVBnWjBJvk55vq2QEm0wl-AppN-xdQG_lxsXc8WfsQ6xaJuGtVVX-LFr2sLC_7DJnGZrIB9rOGkHfjnbhBvYk0T6BAKwJ4aKmNGGdQrtSnaZ0vrGM','(Translated by Google) Dr. Souman, Cris, and amy antendieron me excellent\n\n(Original)\nDr. Souman, Cris, y amy me antendieron excelente','2019-04-19 08:48:18.561000','2019-04-19 08:48:18.561000',5,'Geisi Morales','https://lh6.googleusercontent.com/-85RTAb9NRhE/AAAAAAAAAAI/AAAAAAAAAAA/nwb5NDhbtQs/c-rp-mo-br100/photo.jpg','3511292162159714121',7361),('AIe9_BHVBnWjBJvk55vq2QEm0wl-aVacf2jp6PifV8-kjRXkvKa-HhTwWc9fH1y9nKXV8DHDR4vWs5h47ym44ltScWAZi6Bv2Nhr05_itYYd708aSRBpquE','Great place to take care of all of your emergency needs. High Tech equipment. Easy payments. Great friendly staff from the first phone call to my exit. The Receptionist, Jocelyn was very welcoming and polite. Dr O’Malley has great bed side manners and very entertaining. My nurses, Jose and Alvean, were a tag team sensation. Marcus and Jordan were extremely polite and upbeat. Highly recommend.','2020-03-02 21:54:03.614000','2020-03-02 21:54:03.614000',5,'Tara Criner','https://lh3.googleusercontent.com/-YQwD8WLX39Y/AAAAAAAAAAI/AAAAAAAAAAA/Fe967eevYPc/c-rp-mo-br100/photo.jpg','16389487648212004696',13744),('AIe9_BHVBnWjBJvk55vq2QEm0wl-b1F0iDAlHj5iMYpDIRZEuk6q4l6o1LkIBSuKwPLPnuGq2-1JsRq3bgcsHCsogPp__3MLOdAPoWp3S1L90cKotS9Jon8','Nice staff, speedy service, smooth process!','2020-07-26 19:34:53.046000','2020-07-26 19:34:53.046000',5,'Candice Hull','https://lh6.googleusercontent.com/-zSWVTqlHjBQ/AAAAAAAAAAI/AAAAAAAAAAA/Tg82CBzQOVc/c-rp-mo-br100/photo.jpg','2077061009497551125',22823),('AIe9_BHVBnWjBJvk55vq2QEm0wl-b4AL5XNnu9EFHgvq_BLupMNo6xLincL_Vbj6drCrm91FUSQniAJojcwZsDp_Te_rSbcwB4t993fOocs3JdGGOpRaahY','Wonderful staff, very helpful. Had to bring my father in for abdominal pain after sitting at midland memorial for almost 2 hours without seeing a doctor. We left and came here, they got him a room in 5 minutes and had a diagnosis in less than 30 minutes.','2019-08-21 05:07:48.426000','2019-08-21 05:07:48.426000',5,'Darielle Arnstrong','https://lh6.googleusercontent.com/-zNOg2YepclM/AAAAAAAAAAI/AAAAAAAAAAA/uYn1FxLZl8I/c-rp-mo-br100/photo.jpg','13486358490203335051',848),('AIe9_BHVBnWjBJvk55vq2QEm0wl-b5XAx21G9C0ZtN4LTVhnyWejQYpLgkPW0uQd_FtaAVo0VYADKvdo89bo82Gn2Cj_KpdqLZOgVaxXE71sJ2zqbK4L8d8',NULL,'2020-01-26 21:25:07.568000','2020-01-26 21:25:07.568000',5,'Brittani Collins','https://lh3.googleusercontent.com/-PMnwsArP02g/AAAAAAAAAAI/AAAAAAAAAAA/zDNwe4vIEhI/c-rp-mo-br100/photo.jpg','8918455867446117794',14864),('AIe9_BHVBnWjBJvk55vq2QEm0wl-B6APeJ7u_7xAYrL-O1vCe2O8I93eTQlIImwk3o1f1QpMAjemjfqnpzm5n5mRcRq2PJxd126EqESNTq5W2TPP50uG8QA','Awesome','2020-02-03 14:50:07.250000','2020-02-03 14:50:07.250000',5,'Sam Wakim','https://lh5.googleusercontent.com/-5fi4vHenx7Y/AAAAAAAAAAI/AAAAAAAAAAA/Ehpf3YDN57I/c-rp-mo-br100/photo.jpg','3272657195432704501',14376),('AIe9_BHVBnWjBJvk55vq2QEm0wl-betoNvwtjKyCn29ch8RhhqgDElCJmEobDUbEg9Tnp1ehp7ZVlMHwFJb_8stn5gwImeh4A48Oz1qsURMnIs3h75O7cI8','Very good staff. No wait at all. Staff is very helpful.','2018-09-29 01:53:41.720000','2018-09-29 01:53:41.720000',5,'Ramon O','https://lh4.googleusercontent.com/-EZV4jdC2It0/AAAAAAAAAAI/AAAAAAAAAAA/OyT6zfjbiMA/c-rp-mo-br100/photo.jpg','14567670160750071148',1490),('AIe9_BHVBnWjBJvk55vq2QEm0wl-bEUuqpLPS24QI8Zor2XaD_aflfCAdbgYa33q96xnEMR4xn8pEyF0OFHzCtM3G28DCWNl53cP6juhKqipPwYTYhe5700','The experience was very comforting and friendly especially with RN Anthony And Dr. Kimball , real nice professionals. Made me feel at eased. No waiting, was in and out. Thanks will recommend anyone to go in case of emergency or don\'t want to wait. Alexis was also friendly greeter check in overnight shift.','2019-04-24 05:23:43.189000','2019-04-24 05:23:43.189000',5,'Gabriella','https://lh4.googleusercontent.com/-aM2U5GSud9U/AAAAAAAAAAI/AAAAAAAAAAA/SPso71s7f9I/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3407),('AIe9_BHVBnWjBJvk55vq2QEm0wl-BfJ5iWF8YXegmcXGpo7ARs8_9wkf-4e56NB0XMIYDIuW6dLYsAIDbX1H8pjL2rK865wuLmBPDGuU8ylXFRAHy-YeMb4','I took my husband here after he complained about severe abdominal pain for hours. The front staff were extremely kind and helpful. The doctors and nurses were also amazing and kind, and always offering us warm blankets, and checking up on us to make sure we were okay. They seemed to know what they were doing, and did whatever test necessary to figure out what was causing his pain, as well as gave him as much pain medicine as it took to make the pain stop. \nThe front staff was also very understanding of our situation being that we had no health insurance. Cost was not as bad as we expected, and they helped us with a payment plan as well. \nIf we ever have another emergency situation, we will be coming back to this hospital.','2018-12-12 16:25:23.639000','2018-12-12 16:25:23.639000',5,'Sharon Christodoss','https://lh6.googleusercontent.com/-ENIKxSjyk6M/AAAAAAAAAAI/AAAAAAAAAAA/QvFgjEclYY4/c-rp-mo-br100/photo.jpg','8918455867446117794',9208),('AIe9_BHVBnWjBJvk55vq2QEm0wl-BGzz3kino-MUjXMx0Xf3UZA3MttsKODbKbN5-AnlLKGmwVVuesW84astTwLOfaelCJFIhxMDyO9M3zYE58VBMMCdeYI',NULL,'2020-07-24 18:25:46.092000','2020-07-24 18:25:46.092000',5,'Dawn Gerard','https://lh6.googleusercontent.com/-FzxL704JCKw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucklyKk1JAT7QShIXwECfEHa47N_vg/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22293),('AIe9_BHVBnWjBJvk55vq2QEm0wl-BrceIj1S5uDhRv9MTFvGa45GnQAW-lFkcqwLksnwD0iDXvA-JVd520fR7omB9y7nIfrWlvqCPz7UQqoB3R3I-R2SD5Q','Amazing services! Arrived and was almost immediately taken to the back and seen. No wait time to get a room and no wait time in the room! Had CT scans and solutions for comfort really quickly! I am so glad I chose this ER versus the one at the hospital that was insanely busy!','2019-04-11 08:42:47.401000','2019-04-11 08:42:47.401000',5,'Luis Javier','https://lh5.googleusercontent.com/-i0kVBJ6Xl_8/AAAAAAAAAAI/AAAAAAAAAAA/NHLWipJQf4A/c-rp-mo-br100/photo.jpg','17394740196501090048',4693),('AIe9_BHVBnWjBJvk55vq2QEm0wl-bRQdNHOQ5xvN49h1y1E6aAw9FvblWZmZPyw2HxU41DHvUxIaW3gZguWxaCAsw3op0CmXMssErdqYB2FebcaeldJ9qdU','One of the best facilities I\'ve been in. It was very clean and the personnel was so awesome and caring. Their hospitality was very top notch. The wait time was very minimal. We didn\'t get to finish filling out the first page of the paperwork and they were already taking my son to the back to be seen. They did the necessary tests and even had to have personnel that was on call to come in and even that didn\'t take long.\n\nI have actually found a new ER Center to utilize. You don\'t receive this type of care at other ER Centers or Hospitals in the area.\n\nThanks so much to the staff for all of their greatness. It made me want to employment in this facility.\n\nStacey Hart/Christian Wilson','2016-07-09 04:32:18.969000','2016-07-09 04:32:18.969000',5,'Stacey Hart','https://lh3.googleusercontent.com/-bGvtrUuZKp4/AAAAAAAAAAI/AAAAAAAAAAA/021DVBVtnPo/c-rp-mo-br100/photo.jpg','14567670160750071148',2008),('AIe9_BHVBnWjBJvk55vq2QEm0wl-bTWzksGdVYZ8UlkNBAyROPaRPFyvoOkenS1EdHdH5_YFvVXaA830JaK23FuiOUH3Ic-VCXiSmM_llJl4TlK_5lnSNzw','Maria G. At the front desk was very welcoming and helpful! Thank you for catering to my daughter and getting her stickers and a coloring book!','2020-02-10 03:44:18.218000','2020-02-10 03:44:18.218000',5,'Gavi Gonzales','https://lh6.googleusercontent.com/-nDcQYKspPh4/AAAAAAAAAAI/AAAAAAAAAAA/kSKJA3K1XCs/c-rp-mo-br100/photo.jpg','6521947413723274945',22906),('AIe9_BHVBnWjBJvk55vq2QEm0wl-bUmNBHeBMSZ7BNsUxHy1_vctgRw1DrJX6hTik3ZX6ymg-LlNDyyfJRoTHOudk2YLJaMRpQ6AaWFyXUbdeVRYftx6LIE','This was my first visit with SignatureCare and it went very smoothly. Upon my arrival, Delicia greeted me promptly and after taking my information, she explained and highlighted the fields on the form I had to fill out. I was seen by Dr. Cavazos and the nurse Blake within minutes of filling out the form. After telling my symptoms to the doctor, he explained what he was going to do and what may be the causes. Blake was very kind and did my blood work, offered water, and a warm blanket. After that, the tech Sonle took me to get complete my CT and guided me through the process. Luckily, my symptoms weren’t serious. Dr. Cavazos went over my lab results and and made me feel so much better about my situation. Would recommend anyone here! Now I’m hoping my insurance is nice to me.','2019-10-31 16:52:11.290000','2019-10-31 16:52:11.290000',5,'Susan Ho','https://lh5.googleusercontent.com/-4QMviUZA7zI/AAAAAAAAAAI/AAAAAAAAAAA/1X3FaFCqb_I/c-rp-mo-br100/photo.jpg','8679688254631342173',8758),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Bz2T6Pm0ANcRP-UApLJS-KluMxlL00GdPmrNpfaiW6opWMgwkfVzm6q4ZyYj0UczYYWFFGFoAA5IAtqeCH5QTr6N5zk','The staff at the front desk, the nurse, and the doctor was incredibly nice and helpful. I went in to get my COVID testing. Sadly it came out positive, but they did not treat me like I had a disease. They treated me like a normal human being and gave me information on the next step to better care myself. I highly recommend this clinic. It was easy to schedule an appointment online. The process to admit and see the doctor was quick and organize.','2020-07-07 01:06:57.400000','2020-07-07 01:06:57.400000',5,'Kim Tran','https://lh6.googleusercontent.com/-OUqRW1diQF4/AAAAAAAAAAI/AAAAAAAAAAA/0EgE8d-M7yI/c-rp-mo-br100/photo.jpg','12541597562633926366',21302),('AIe9_BHVBnWjBJvk55vq2QEm0wl-BZLK-F2KlLSRw9ut7mkMqvt0vDKD8ctunD2duhh25H6uG2BMYWyuABZrsa0aDf0b27aOtI10F8w8_Naf40psLjN4zsE','Very friendly staff, I was seen very quickly after arriving. Everyone was very nice and professional which made my visit very comfortable thanks again Alyssa','2019-11-27 01:43:28.818000','2019-11-27 01:43:28.818000',5,'Monique Gingerich','https://lh5.googleusercontent.com/-qyUMPx2tdk0/AAAAAAAAAAI/AAAAAAAAAAA/i5GgV1CQeI8/c-rp-mo-br100/photo.jpg','12541597562633926366',366),('AIe9_BHVBnWjBJvk55vq2QEm0wl-c_yl7JRpd7I_dIhOECJoUX0VQcA3bdGMzvmXjvPpC8fgeoGQWh_aXdphl72hCmNQuBFQIW2xAV-f4_34t_7QixAYf_8','My experience was awesome! I would truly recommend others to use your emergency services...thanks for taking such good care of me in my time of need 😊\nDaphne Saunders','2016-12-21 11:35:07.925000','2016-12-21 11:35:07.925000',5,'Daphne Saunders','https://lh5.googleusercontent.com/-Nu4I4giUNiA/AAAAAAAAAAI/AAAAAAAAAAA/nsSJxhLGPAw/c-rp-mo-br100/photo.jpg','17394740196501090048',5146),('AIe9_BHVBnWjBJvk55vq2QEm0wl-c1CWwURzX7RyQhe_r3fRr6sQoD1cX-5dmSSZBNdQuJ9Cg5u-bkDgRu0cRtfvSklGmlTmxItO9jdtISnsseEkR7YnzI4',NULL,'2019-07-17 01:22:28.454000','2019-07-17 01:22:28.454000',4,'Raullo Ledezma','https://lh5.googleusercontent.com/-BFJqtMU_LbM/AAAAAAAAAAI/AAAAAAAAAAA/KunPrhB3GoU/c-rp-mo-br100/photo.jpg','6521947413723274945',8192),('AIe9_BHVBnWjBJvk55vq2QEm0wl-c6q4eVu-aLpWVXMbjCDTHJgMkg4FOKiBJLEyfmggqnoX6ohhiVVCDG359SD1YzI2RwL8_4yf3YeqfJN401ihepfpsE0','One of the best experiences I\'ve had at anyplace ever. Everyone was friendly, knowledgeable, and frequently asked if we needed a warm blanket or water. Their bedside manner was top-notch; I felt at ease and not-so-focused on the pain I was experiencing. Simply wonderful.','2017-04-15 22:02:54.066000','2017-04-15 22:02:54.066000',5,'Florence Wilder','https://lh6.googleusercontent.com/-M_4cIy_5vAs/AAAAAAAAAAI/AAAAAAAAAAA/WDBJ3g229dQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7842),('AIe9_BHVBnWjBJvk55vq2QEm0wl-c9R9Zi6n7zTHXQFG4klw3RjwmSJPM0PqV9pVsBb8TV2QRu0GXUyh67aD74vXxPNqDcrTXIus0y03KXaqCXfp-wdOIa0','Jennifer is always so helpful! John and Debbie are great nurses and matt is wonderful! Always fast service and with a smile! We need more places like this! With people like this!','2020-02-06 01:43:53.617000','2020-02-06 01:43:53.617000',5,'chrissy thompson','https://lh6.googleusercontent.com/-Kh9kgBIdpP4/AAAAAAAAAAI/AAAAAAAAAAA/LF0MTMGh92c/c-rp-mo-br100/photo.jpg','8626688543755174284',14622),('AIe9_BHVBnWjBJvk55vq2QEm0wl-cc2Ihh1iYmzR9K6oZx48tGcfWell6RrVmlt8b1ptq2Ruf4X3Xt_egFk2zUX2pt5k_BSvCao55zNYooxbf4Z1pvgLRU4','Hands down the best service! Brenda at registration was very friendly. The nurse Shoba and Tech Brandon were very attentive and Dr. Zheng was very helpful in getting me to understand exactly what is going on and what medicine she was prescribing. I’m sure I’ll be feeling great in no time!','2019-03-14 03:55:34.573000','2019-03-14 03:55:34.573000',5,'Patricia Calvillo','https://lh6.googleusercontent.com/-D8s95vsHVHU/AAAAAAAAAAI/AAAAAAAAAAA/uRlsbNeiftY/c-rp-mo-br100/photo.jpg','8918455867446117794',9157),('AIe9_BHVBnWjBJvk55vq2QEm0wl-cel2J6kp0-oK-ZOq7BiEUk_-6MTmPye7ZFcM7abUyuZUTxg1HqOaYYojC-UNve2kG2sepZvwMpRX5Ui4S7n0uWZZpv4','In for pain and swelling near a broken tooth. Got there ~7 or 8pm. In an out pretty quick. The place was super clean, everybody was friendly and conversational. It\'s a good place, I wish all ERs were like this.','2019-09-24 04:44:20.502000','2019-09-24 04:44:20.502000',5,'Theo Holiday','https://lh4.googleusercontent.com/-Wb6fRUzXL-o/AAAAAAAAAAI/AAAAAAAAAAA/0V8bMMkC3lI/c-rp-mo-br100/photo.jpg','2694018788013845459',6060),('AIe9_BHVBnWjBJvk55vq2QEm0wl-CeP70x89TmIIQ4aFbUKzauqwaG9mgI1y_S0QDeVQkXPf5zrARSjL90SJNe3vygfUYJ9DGaN2u1baTObmBfKiB4vcQOI','Everyone was extremely nice and there was barely any wait!','2019-10-10 18:09:53.996000','2019-10-10 18:09:53.996000',5,'Lyra Angel','https://lh3.googleusercontent.com/-LQJbHiZUlwk/AAAAAAAAAAI/AAAAAAAAAAA/bJIPZZ_cJp0/c-rp-mo-br100/photo.jpg','16389487648212004696',2835),('AIe9_BHVBnWjBJvk55vq2QEm0wl-CfgdxDdx1KHiSStCn5bOKPihfMHV-ODbZpaY0T1DmtbJoQzDpzPSfxOINflNaFmEpKCj2zFW8kQjdALNcP2ETTyJdi4','Chelsea and the staff are extremely cheerful and polite. Very professional and highly recommend if you need medical attention. Thank you, SignatureCare @ Slaughter lane.','2020-07-31 00:58:04.473000','2020-07-31 00:58:04.473000',5,'Mitchell Schwartz','https://lh6.googleusercontent.com/-EJEF4zJOhEc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckylA6WPOJzQoKmK01tddwZy5jPYw/c0x00000000-cc-rp/photo.jpg','16891069708558046635',22031),('AIe9_BHVBnWjBJvk55vq2QEm0wl-CiXMHeb7k3VMeIM1WGIhv97kP3ouHlfA8Q3jTqqCtI3cBhFsmg7I6jutVUcGGsOxs7On3QD-LSYHJPCNqk8PhG7FREA','Selena was great, really nice.','2020-02-06 18:55:11.337000','2020-02-06 18:55:11.337000',5,'Julio Pina','https://lh6.googleusercontent.com/-fD78PlDUdZE/AAAAAAAAAAI/AAAAAAAAAAA/fuXMK0jYSdI/c-rp-mo-br100/photo.jpg','17394740196501090048',14032),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Ckdc6zwlSnoJF4JfAFrBQ1XXCW6r8o8c2ZPYRUmswA1B3n9sCKwvE9awaM3WLYLJ3pnjuYHmM94_rRcQirTy7Y2AdD8','The staff was really nice. Robin, Billy, and Courtney did great. Got in quick with no wait. Will go back. Great experience.','2019-05-22 06:08:06.206000','2019-05-22 06:08:06.206000',5,'katrina 160','https://lh6.googleusercontent.com/-c2Lx6EgmXaM/AAAAAAAAAAI/AAAAAAAAAAA/lNNr5HAhjE8/c-rp-mo-br100/photo.jpg','8626688543755174284',8478),('AIe9_BHVBnWjBJvk55vq2QEm0wl-cO3eEvTT6T2C6YeMiDAM1LvIPjIEJxIhqi1bTxzs4MgyYIof6ItVatXLLOdjI9F7Fh4Mq4NQLNKyBxDodLwMU0u5eS0','Signature Care is by far my favorite place to take my family. The staff are wonderfully kind, knowledgeable and thorough. Every time I visit, I can be confident that my family is in good hands!','2018-12-26 19:04:24.707000','2018-12-26 19:04:24.707000',5,'Melody McConico','https://lh5.googleusercontent.com/-nWNStNXSJYo/AAAAAAAAAAI/AAAAAAAAAAA/eODmHCiAsGw/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4385),('AIe9_BHVBnWjBJvk55vq2QEm0wl-CpjUg_IF-0ROfBeDTDqAqJ3hdrJFVBAq-MM2TXTCf6C6PbPAXmd5oJCsb1f2TfFxsQtUJ0aRxryJN7dlsmE8HgcjPEw','Thank you Magaly for taking care of us and being on the front line!','2020-08-01 15:54:52.996000','2020-08-01 15:54:52.996000',5,'AJaquez Analiyah','https://lh5.googleusercontent.com/-cKyTTnNJRxI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl28IHEkjQt__Hzjh-kKi_qNHDUDQ/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22200),('AIe9_BHVBnWjBJvk55vq2QEm0wl-cSaQhePOOETy7AS02GXzgEY1BzSgH0s-C3yNbQuB5Ghk3M1aPrx4MOLyk3AFlEPKLj6w0aOzjktaW2oScsokiE-_RrU','From the moment my daughter and I walked in to the time we left we had exceptional service. My daughter received 3 stitches under her chin the staff was very prompt with giving her the attention she needed. I want to say thank you to all the wonderful staff that made my daughter and I feel very comfortable. 🤗☺️','2019-08-22 12:27:23.621000','2019-08-22 12:27:23.621000',5,'Monique Smith','https://lh6.googleusercontent.com/-vLOgV6I3LSM/AAAAAAAAAAI/AAAAAAAAAAA/i8YV-ygiJ1I/c-rp-mo-br100/photo.jpg','17898197009688164559',5570),('AIe9_BHVBnWjBJvk55vq2QEm0wl-cT8EQ7I4SF1i54xEgC7pD6H8XvP5jcwx0hONWHIOuTom84xG7-rIxn3RMScN74Bg7giUehlTaOcZBScW0Xg_bacd8gE','Quick Service, Amazing and Personable staff, Explained everything to me and made sure I had all my questions answered about everything, including all the tests that were done, what medications I would need after and when and if I should ever need to come in if my condition worsened. Would highly recommend them!','2018-01-21 03:09:29.363000','2018-01-21 03:09:29.363000',5,'Justin Jet','https://lh5.googleusercontent.com/-WFwRnH0_Buo/AAAAAAAAAAI/AAAAAAAAAAA/9V0x66T91-U/c-rp-mo-br100/photo.jpg','16590124370714063921',3875),('AIe9_BHVBnWjBJvk55vq2QEm0wl-cuup1_m-R1-57EPfgRvCu1SM4ItJR5_Ll2DZ9cG3FXzTx2VZxShRkYOjazrqwL-ox9UPIvY-hsIZxN17yqJgy4Xcd3s','Great and very fast service. I went in the morning and Kim, JR, and Brad were so helpful and kind to me when I was sick. I would highly recommend this facility to anyone!','2017-02-03 21:35:39.783000','2017-02-02 14:55:39.544000',5,'Courtney Atkins','https://lh6.googleusercontent.com/-RtjU50cgLQw/AAAAAAAAAAI/AAAAAAAAAAA/tr96F3TZJI0/c-rp-mo-br100/photo.jpg','16590124370714063921',4072),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Cvd2o7MfQI_yQEo1tnhgilptP_Kr3kfSoA3nyySOBMt6-33uW4xmGYLbmBwFfPD78Hjx_kW8M3aFeeYdE-Jb2VGiLMA','Lisa H at front is super nice! Jamie, Krystal, Savanna are awesome,,, thank you','2019-06-26 18:47:40.532000','2019-06-26 18:47:40.532000',5,'Julio Marquez','https://lh4.googleusercontent.com/-LimD5EZJEWc/AAAAAAAAAAI/AAAAAAAAAAA/w3hD_8CLNa4/c-rp-mo-br100/photo.jpg','13486358490203335051',920),('AIe9_BHVBnWjBJvk55vq2QEm0wl-cwuSRc69eDBnth2NWHqIFfgnqfDAqtXsGmTazK45LG01DDbWnS-WEABKVKfOxswNUmfTaV7R-yCAFEut8V-fpSmRAu8','It was awesome! Not being able to breath and out of state they really listened to what I had to say in order to help me. They were very friendly,caring, and helpful. I would go there again if I needed health care again while away from home.','2020-02-09 18:34:20.739000','2020-02-09 18:34:20.739000',5,'Beth Johannes','https://lh4.googleusercontent.com/-UR1i_Dj8_yQ/AAAAAAAAAAI/AAAAAAAAAAA/-aUk6qo1lFs/c-rp-mo-ba4-br100/photo.jpg','2694018788013845459',14246),('AIe9_BHVBnWjBJvk55vq2QEm0wl-dBLKeCXmv_bMVEEckh00ugSFlyXljLwcCzWSYALzjqCNgDFTBwtcljosWtd-UVi4wd1I5m2eWZrR3xg5GzvggkjG_tI','I felt miserable and nervous about coming in to a new place, but EVERYONE I had contact with was awesome. They kept the mood light to take my mind off my sickness and were very professional and helpful.','2019-01-06 19:20:34.217000','2019-01-06 19:20:34.217000',5,'Christen Roberts','https://lh5.googleusercontent.com/-TXHHkfVc9RY/AAAAAAAAAAI/AAAAAAAAAAA/-7OfcHVXlzU/c-rp-mo-br100/photo.jpg','3511292162159714121',7514),('AIe9_BHVBnWjBJvk55vq2QEm0wl-DGuVOPL2dU6u5jGRd1fIx0_ELAeNScUQJPCOBsBC3ASl0lJLi8KG2VxDUnj2eMBT698Q7igPq4JPTZ65czthnf92A_s','This facility is very thorough and will get to the root of your problem. Sindy assisted us quickly and the ER physician took several tests to cover all bases.','2019-10-23 21:14:14.683000','2019-10-23 21:14:14.683000',5,'Charlene Rosser','https://lh3.googleusercontent.com/-Ebs4DKMMBFw/AAAAAAAAAAI/AAAAAAAAAAA/AEYIrzfyfgw/c-rp-mo-br100/photo.jpg','14567670160750071148',1209),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Dk-41dDW7Ae9wozpzY8ghUq97tYvmsS31HSHTGkNatwmx8Y8AkTmnnE-RuUX2xqNokWLdnNpKQ5MLlteTOm0DVRAVwU','Quick and efficient service. Got me in right away!','2020-03-15 06:58:26.815000','2020-03-15 06:58:26.815000',5,'Marcus Tate','https://lh4.googleusercontent.com/-HjJUJpGnll0/AAAAAAAAAAI/AAAAAAAAAAA/CJY8Y2FvdU0/c-rp-mo-br100/photo.jpg','14748677429039074158',20971),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Do2nAi8rjNnHK031zn3wirRNV-x07iPYCKkOfGmqdEG2ShufPqAxi4HDZmAPrAZceTdksRiCAglR9-vKFyxm8M9bVug',NULL,'2016-02-17 00:35:06.160000','2016-02-17 00:35:06.160000',4,'Juliet B','https://lh5.googleusercontent.com/-CEHJoQpRFDU/AAAAAAAAAAI/AAAAAAAAAAA/vv90b9WjHPQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5283),('AIe9_BHVBnWjBJvk55vq2QEm0wl-dq4Cji35GvnpvuhNUzCOnxoNNxNZ2IQfO8qwD4nAPJ6Xdr7jCKAbdq9OOU7SwykiN2XZ_RhM5rVixkLJyezV1lV8cYA','Had a great experience, Nicole Gilchrist was very helpful and made sure I understood everything that was going on throughout my visit. 100% suggest this emergency center!','2019-12-08 09:48:02.500000','2019-12-08 09:48:02.500000',5,'Adriana Pena','https://lh3.googleusercontent.com/-vjjFSwHZp3o/AAAAAAAAAAI/AAAAAAAAAAA/_tvAvzoXcXY/c-rp-mo-br100/photo.jpg','14567670160750071148',1182),('AIe9_BHVBnWjBJvk55vq2QEm0wl-dqwPcC3mcJ-8zub5QM--KkivrxWJi273EnK40d6EtXh0-0pj4LebMphtrjREjOnr2rZ9juHQPGQKj4JnRVTmqFbGQVQ',NULL,'2019-11-23 19:16:12.539000','2019-11-23 19:16:12.539000',5,'Ross Loth','https://lh5.googleusercontent.com/-6yD_FfHoCA4/AAAAAAAAAAI/AAAAAAAAAAA/DheRd1LQCQc/c-rp-mo-br100/photo.jpg','16590124370714063921',3078),('AIe9_BHVBnWjBJvk55vq2QEm0wl-dRoO74wHddgFimasUCxd9pQvQobclYf6_fjDafkY95rARE8ExQIaKHj_1GPuOTao0gzeN9SUMNgZiBwXGZ1VPA-IoxU','I Came And Patricia Right Away Helped Me And Answered All Of My Questions. Very Friendly And Made Me Feel Welcomed. I Came To The Back Right Away, Little To No Wait. Alvean Helped Me When I Came To The Back. She Made Me Feel Super Comfortable And Made Sure I Was Okay. I Strongly Recommend Them.','2020-01-30 16:22:26.203000','2020-01-30 16:22:26.203000',5,'Karma Marie','https://lh5.googleusercontent.com/-lUwumZILPGo/AAAAAAAAAAI/AAAAAAAAAAA/fuhXKTGEz1A/c-rp-mo-br100/photo.jpg','16389487648212004696',10418),('AIe9_BHVBnWjBJvk55vq2QEm0wl-DsH9zJ0W6XF3wbJRuoU3CJn6r_22akFMEG0dLglgfB-Nt6yYQLFAS993AJ28Du7Ko97i2xg4YEGIsDd6l4VO2UChTwg','The staff is great!','2020-01-21 16:20:11.730000','2020-01-21 16:20:11.730000',5,'Kayla Graham','https://lh6.googleusercontent.com/-nh6w0I-jUeo/AAAAAAAAAAI/AAAAAAAAAAA/aWpY1AAHZRM/c-rp-mo-br100/photo.jpg','3272657195432704501',10293),('AIe9_BHVBnWjBJvk55vq2QEm0wl-dT6u7_rag52hvd4tgmIrOo73f2dg2um1JvmtCEQ49w2KuQqcwqK4Jkr4dYBs5CcGVhbqGyjI4fvWqj0idR5oOqbZm2I',NULL,'2019-01-19 22:50:57.300000','2019-01-19 22:50:57.300000',5,'Melissa Camarillo','https://lh4.googleusercontent.com/-UIBjq2XECKs/AAAAAAAAAAI/AAAAAAAAAAA/gjI0XxsgdwU/c-rp-mo-br100/photo.jpg','3511292162159714121',7463),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Dv2Bt-rrAbSa1wjcDpvb1MJNI3xqo9rPPGutiMh9wkVcjEP236hAf3RDVvXX3uZ_w7hI7Eiy-Crl-arwWN5dLa2Zm6w','Alicia, Erica ,and Ashley K was great! Was in and out in hardly a wait.','2019-07-04 14:48:54.732000','2019-07-04 14:48:54.732000',5,'Charity Ferguson','https://lh5.googleusercontent.com/-Qgydg91X1dE/AAAAAAAAAAI/AAAAAAAAAAA/jAazhqQK23k/c-rp-mo-br100/photo.jpg','8626688543755174284',8440),('AIe9_BHVBnWjBJvk55vq2QEm0wl-E3hLfsi4-q9SEuwPh-ZkMRD3PGuGh7CqrbI8e8td3EzMn5cV1HWLMwjNT9mHoUYOYtxrsR4ReXG3S2hd7_SBxUwfA6w','Sindy was welcoming as soon as we walked in and Melissa the RN was great w my daughter! Great experience, in and out and NO WAIT!!!!','2019-10-25 15:06:11.175000','2019-10-25 15:06:11.175000',5,'Amanda Garcia','https://lh3.googleusercontent.com/-d23Kz0TAMlI/AAAAAAAAAAI/AAAAAAAAAAA/DJfYoctxqd8/c-rp-mo-br100/photo.jpg','14567670160750071148',1208),('AIe9_BHVBnWjBJvk55vq2QEm0wl-e3p3cscvLJQ-Mswk9BJn76OZMiwoS57bnUIk_ZYExYmjhl5DpnImQDNmkUU8imkHcct_3DPAtNBcfhQPOKokJ41wJUM','Prompt service.Great,friendly staff','2017-03-13 20:02:13.706000','2017-03-13 20:02:13.706000',4,'Aaron Parson','https://lh3.googleusercontent.com/-PhkmJpSad2w/AAAAAAAAAAI/AAAAAAAAAAA/iHdM--Z_VFA/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7859),('AIe9_BHVBnWjBJvk55vq2QEm0wl-E3TL07qeWfShNTbug0kWH5CCQuUiHxFveB7xaN3_Kwz8opFOwE_crbplNjnIGukAHSC4zu1KRZaqeTby3cfm2EJqNxo','great','2017-01-02 20:03:33.423000','2017-01-02 20:03:33.423000',5,'Lily Molina','https://lh4.googleusercontent.com/-sqCgAIX0gh8/AAAAAAAAAAI/AAAAAAAAAAA/BMzALx0s3ro/c-rp-mo-br100/photo.jpg','17394740196501090048',5139),('AIe9_BHVBnWjBJvk55vq2QEm0wl-E7WR7RoNKuV-FDdUst9ocj0-zxoU4gg7bSU_gPZ1AdJKbdtODPoYRNSr_Vm9zESH6hSxjmmXpTFOxcD4yfgBsoHOxtA',NULL,'2019-05-19 01:09:13.563000','2019-05-19 01:09:13.563000',5,'Ruth Nastase','https://lh3.googleusercontent.com/-7gWokzzptHo/AAAAAAAAAAI/AAAAAAAAAAA/sjo3JHrXozk/c-rp-mo-br100/photo.jpg','6521947413723274945',8274),('AIe9_BHVBnWjBJvk55vq2QEm0wl-EDs7-Wl7iMoGBg1onKjFfnIFtTYyAgZ7hBo8T53d7zpWT75wTO5C8hA8FHNn93YdOafwv9kGakjw2zHAYPZIrojIAUA','The service was incredible. They treated me so well I will not go to another er. The staff was very professional and warm. I will be recommending them to my family and friends.','2019-03-21 06:11:08.376000','2019-03-21 06:11:08.376000',5,'Tomitra Dawkins','https://lh6.googleusercontent.com/-7cxGiH0DayM/AAAAAAAAAAI/AAAAAAAAAAA/MEDjFVwuhXQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1359),('AIe9_BHVBnWjBJvk55vq2QEm0wl-egerfqvBH9DiJSWc91QepzFz30R_1q4EaQIv267CJpRK3DhJCuc_lRws3PF-nnQfeEEDNwaB8MjLPmz9HGTVmhJFif4',NULL,'2018-11-28 07:16:38.171000','2018-11-28 07:16:38.171000',5,'Tristen Babineaux','https://lh3.googleusercontent.com/-9seK3_AfsDQ/AAAAAAAAAAI/AAAAAAAAAAA/AM0aUTD2yh4/c-rp-mo-br100/photo.jpg','17898197009688164559',5920),('AIe9_BHVBnWjBJvk55vq2QEm0wl-EgsRGrzd05tHacun8ro98FSAHA51f3fHRehuSNH1hS5778fusPdCr3uieQAhF-SJFULYQ-RZD06qRRUm4sfHdAY6TKI','It was good and the people there were very nice','2017-01-17 23:34:39.603000','2017-01-17 23:34:39.603000',5,'Jordan Encarguez','https://lh3.googleusercontent.com/-uU26uVuFVok/AAAAAAAAAAI/AAAAAAAAAAA/k6MkDYvNV-0/c-rp-mo-br100/photo.jpg','17394740196501090048',5130),('AIe9_BHVBnWjBJvk55vq2QEm0wl-EIfUdYzNmw1mAy9-s7jtF6mDr6vvLtkcIzCn0kJxXoaYcZmE5CZOsk3-h_juXHzl_IUdaTcJDHRCbjx3VUdRz0cOMcg','Great service! Excellent care, and good snacks','2019-12-02 04:15:00.232000','2019-12-02 04:15:00.232000',5,'Lo Marie','https://lh6.googleusercontent.com/-eShNcNLr7v8/AAAAAAAAAAI/AAAAAAAAAAA/s2IG2998xoU/c-rp-mo-br100/photo.jpg','17898197009688164559',5389),('AIe9_BHVBnWjBJvk55vq2QEm0wl-EjfgDve6gesaE-NR6L0BSAp4VyV8xzt2kS22W_b3eoxVMzAwm2Ov6wUJiJnBz3EXqouA-s4KrNQ8WY2wDdo5z7btIGk','ABSOLUTELY AMAZING! I’ve never received such great care so fast. No appointment needed and got seen right away. Angela, Nykessia, Brad and JR were terrific at their job, and super fun and friendly, making me feel relaxed and calm. I can’t praise this place enough! Great facilities with everything needed to provide the best service. \nI would highly recommend them to everyone!','2019-01-04 07:36:31.957000','2019-01-04 07:36:31.957000',5,'Tasha Heggem','https://lh6.googleusercontent.com/-MDE3N9XBlqs/AAAAAAAAAAI/AAAAAAAAAAA/aZepmnNsSAc/c-rp-mo-br100/photo.jpg','16590124370714063921',3594),('AIe9_BHVBnWjBJvk55vq2QEm0wl-eKKSZv3PcA9O_PgtJ4gIytCe1d6NDKWEEXG8-7aByRKgwxDQ0-iP4jAVn-rB6NtGUVCZmVpu_bR2fevNYmDnIMvw5hs','Very experience and nice All the staff was very respectful and helpful Dr . Dang , Amy the registration the nurse Kat s . The Rad tech kat K .','2019-09-12 05:13:43.559000','2019-09-12 05:13:43.559000',5,'Lifeof Ebony','https://lh5.googleusercontent.com/-BaLncfrcKEI/AAAAAAAAAAI/AAAAAAAAAAA/SS-MCIr75XI/c-rp-mo-br100/photo.jpg','16389487648212004696',2916),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Ekt6FTyCpVLzt6vVDoc3SpUQHEH88W78Lja_PYq3sJTNYeI7Mg2RQ6vfK_OcY1k1qMuLbmf4S1S0BWy5r8iAaBU5glk','I had an awesome experience here. The doctor and nurses were very caring and quick ! I don’t have a primary doctor here as i have just moved . I think i will be choosing the doctor here because of the care i received . Thanks again for making me better !!','2018-04-20 14:37:43.533000','2018-04-20 14:37:43.533000',5,'Marquata Mcmiller','https://lh4.googleusercontent.com/-hIBMpiU6sBA/AAAAAAAAAAI/AAAAAAAAAAA/g6990d5iTUQ/c-rp-mo-br100/photo.jpg','17394740196501090048',4858),('AIe9_BHVBnWjBJvk55vq2QEm0wl-eMY2RrUJ9aTeqM30EdkZjAxWYnOw0hILRkxwbZ3XopEbXigCSDEyalRlIA4fZvBAkiMbwnQavSZpYcjGj8YKnXYiEKM','Great professionals that helped me quickly and explained everything.','2020-03-15 09:24:20.714000','2020-03-15 09:24:20.714000',5,'Lee Mitchell','https://lh3.googleusercontent.com/-ks8ynv9ScJA/AAAAAAAAAAI/AAAAAAAAAAA/FM_ghRDnsGI/c-rp-mo-br100/photo.jpg','14748677429039074158',20970),('AIe9_BHVBnWjBJvk55vq2QEm0wl-eqkKdI_bcCQ_Vnk2avDzxbHMt1Xw5M0nRfii4AcJgJ2VmtUYIJh2rTsPDOuyhot-QZrkdmLwSEYSbXi91Q7j3aWdNJQ','WOW ! What an amazing place ! Beautiful facility ! Great Staff! Really a pleasant experience overall! I definitely recommend SignatureCare Stafford before any other ER or hospital. They are warming , caring and get you in and out ! From the registrar to the Doctor , they’re amazing ! Dr. Tina Chiang , Genesis, Natalie, Brandon, Nichole and Staci were ALL truly amazing ! Excellent customer service from every angle ! Recommended to ALL... Thank you so much !!!','2018-10-10 21:36:44.650000','2018-10-10 21:36:44.650000',5,'Raven Webber','https://lh6.googleusercontent.com/-b_kThFW8FBM/AAAAAAAAAAI/AAAAAAAAAAA/dPQEmKSov2o/c-rp-mo-br100/photo.jpg','8918455867446117794',9226),('AIe9_BHVBnWjBJvk55vq2QEm0wl-eRYkhI6lfX3B1FqgHD3XuscDo86PNBwm4W9IBFjSDBI-0ahVtrphIfAS7WDd_qq2Il6x4bIzUQa1fOj555EP_IPxZO0','Tikiko was very nice and made me feel comfortable.\nRecommending this spot to my in-laws. 👍','2020-07-21 23:41:14.899000','2020-07-21 23:41:14.899000',5,'William Plascencia','https://lh3.googleusercontent.com/-22C3uJUP988/AAAAAAAAAAI/AAAAAAAAAAA/SpB1tWBCpzI/c-rp-mo-br100/photo.jpg','14748677429039074158',21612),('AIe9_BHVBnWjBJvk55vq2QEm0wl-eSivFADYr15TO3UnIxPNUZD5n9Q6j_VtdctIbRfEvHaUFAYV9zOsMIuFJ-GYGhYojMZ_J6MoNeP7SMtQmR6PB2qzPdA','Team was very welcoming, nonjudgmental, and extremely helpful. The entire facility was clean with great lighting, lots of space, and great refreshments. Everyone was extremely professional and it was an overall quick and easy experience.','2018-12-16 01:49:51.262000','2018-12-16 01:49:51.262000',5,'Brian HowellJr','https://lh3.googleusercontent.com/-mHicWD-b1xU/AAAAAAAAAAI/AAAAAAAAAAA/ora2Bz6_3EU/c-rp-mo-br100/photo.jpg','8918455867446117794',9207),('AIe9_BHVBnWjBJvk55vq2QEm0wl-eTw3u88h83vaBxE9EsANe1CzyTfC770zFu_Oj9DIIa5vPX6kTBkzvOL0cKjuRped-8UqdKk_SVz6BHrLCe9EtXFbf54','Best experience with everyone here! Dyveliz& brad were amazing and made me feel so much better. Definitely recommend this place! Quick And clean.','2017-09-13 16:08:09.314000','2017-09-13 16:08:09.314000',5,'Sara Espinoza','https://lh3.googleusercontent.com/-fH0KpFdb0_w/AAAAAAAAAAI/AAAAAAAAAAA/dD3ZPFroNoo/c-rp-mo-br100/photo.jpg','16590124370714063921',3934),('AIe9_BHVBnWjBJvk55vq2QEm0wl-EWiI0IyJjFo1PEqEIfjg2QoD47EFq9N0Sf3-5mFQg1nxTZCi25i3wO6nPe-RM6NN6iGeG0XJhrf4hFxzsLKuEb2PyvQ','Awesome staff thesd people actually care about u and ur health! I love them fast and caring!','2020-01-24 18:27:56.750000','2020-01-24 18:27:56.750000',5,'Angel Redd','https://lh6.googleusercontent.com/-6wT7gRMfVpU/AAAAAAAAAAI/AAAAAAAAAAA/BUQktjUD7jY/c-rp-mo-br100/photo.jpg','14567670160750071148',10133),('AIe9_BHVBnWjBJvk55vq2QEm0wl-F2WaO-sj3bxqcnPv6rVi03CU7z0fKj6ao0cv1XwJOAWviOQ3uvdc7IlNU9Wa3-GDlO9Y5i9pdGX2T3Dw2vfLC-0JLLM',NULL,'2020-03-04 09:01:50.602000','2020-03-04 09:01:50.602000',5,'Shanice Shaw','https://lh5.googleusercontent.com/-OoF_4TzhrY4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck6x8ODfwBZLpIWNOcQZVyqqxvpug/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21140),('AIe9_BHVBnWjBJvk55vq2QEm0wl-f8DaUc3Ow33VyZb494HP4UusUdPARjpkWUoafbgO4EwHiEiG8mgrumfYYztj8qIMDjtQe8MUalqRPU7m49pE8fDPNV0',NULL,'2020-08-02 14:37:52.450000','2020-08-02 14:37:52.450000',5,'Paula Eckel','https://lh3.googleusercontent.com/a-/AOh14GhfWmkaxss_y5NOgCN50hepmOuacz1pZQEi-dzQJA=c0x00000000-cc-rp','6521947413723274945',22196),('AIe9_BHVBnWjBJvk55vq2QEm0wl-fdFohzVERaLghz1bZWJijdOPm87ikelmPDVYa9UqWL7r5xpiDJLPlqVQPC2xEdlBFGdURO-A8SvmSpHrNy1GPHucHZo','This place was great far better than any emergency room that I’ve ever experienced. From when we arrived Sindy was supper helpful and efficient. Reginna our nurse was very knowledgeable, and Dr. Golla was very kind and humored us since we were so nervous. I definitely recommend and will come back here.','2019-12-27 17:06:08.746000','2019-12-27 17:06:08.746000',5,'Karla Martinez','https://lh4.googleusercontent.com/--J1hqrnCfPc/AAAAAAAAAAI/AAAAAAAAAAA/0P0BHbh7mn0/c-rp-mo-br100/photo.jpg','14567670160750071148',1158),('AIe9_BHVBnWjBJvk55vq2QEm0wl-FeWYb1DLFm_Q7GwmnmLz5sYrOGATi2AO1Yu-F8_tsP8iTpXBP779TJHKM1IyQV6cl5iGGWIfotnoDVBmI5HGHSQ3xws',NULL,'2019-09-01 19:06:28.659000','2019-09-01 19:06:28.659000',5,'Matthew Chen','https://lh6.googleusercontent.com/-Rz0qrdYlrGE/AAAAAAAAAAI/AAAAAAAAAAA/UA557n39G0k/c-rp-mo-br100/photo.jpg','16590124370714063921',3221),('AIe9_BHVBnWjBJvk55vq2QEm0wl-FgA3UCpwAnHLRCLrkMiXchWZctX2WqcIPs7PlzAT_EG-uzklWePqMg2N0nB1rR_i-YLSZoPCAod0_6ifqbmKRXSMA7g','Amazing staff and excellent service. Very tentative and caring.','2019-05-03 07:48:40.494000','2019-05-03 07:48:40.494000',5,'Tom R','https://lh3.googleusercontent.com/-1z5IvMG6KMw/AAAAAAAAAAI/AAAAAAAAAAA/FDjHiPJy44Q/c-rp-mo-br100/photo.jpg','3272657195432704501',6970),('AIe9_BHVBnWjBJvk55vq2QEm0wl-fI9I9us-XbNpQVpSegd0jeB9No133W45h0MeNK27XCrJGhegtJRUk1UuvJyu3TTSl6jQbFPHi6DbSyGIzOP6LsgDN5k','Great experience! Tanisha made me and my family cared for. I highly recommend anyone fo this location! \nThank you the team at Copperfield and Tanisha.','2019-12-04 07:43:56.132000','2019-12-04 07:43:56.132000',5,'A&A FH Videos','https://lh5.googleusercontent.com/-yVZGUU5iivk/AAAAAAAAAAI/AAAAAAAAAAA/dm9OPfUwza8/c-rp-mo-br100/photo.jpg','17898197009688164559',5379),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Fjlqc-v7Ai7uMm9GpbVVc7StD-YvX608v4Igjuvf_ZTN-NaoBE58CqtCPUwZzkNPFeQ11jUR5xC_jqsd2cfoTyf5rhU','My experience at Signature Care Emergency Center was great! There was no wait. After I filled out my paperwork, the nurse, Karen, was ready to see me. The doctor, Dr. Yost, was very friendly and thorough. I give Signature Care Emergency Center 5 stars without hesitation.','2019-01-13 19:20:25.005000','2019-01-13 19:20:25.005000',5,'Franshicka Banks-Brown','https://lh3.googleusercontent.com/-HQKbLVRkfnU/AAAAAAAAAAI/AAAAAAAAAAA/t755TsrAaB8/c-rp-mo-br100/photo.jpg','3272657195432704501',7058),('AIe9_BHVBnWjBJvk55vq2QEm0wl-fKE6WcvgeW_uVoXnwAFi6ApFU3hMwOexPvwWxHxlNINyZl8h2T1kl58V3nVFCwnfMm8CLD-QFai6DRajS_F1YdmrZgc','Everyone was very professional and friendly. Would recommend them to anyone.','2020-08-05 09:18:49.824000','2020-08-05 09:18:49.824000',5,'Mitzi Mullins','https://lh4.googleusercontent.com/-2W7zT_H16uQ/AAAAAAAAAAI/AAAAAAAAAAA/FMHwnzkyIjM/c-rp-mo-br100/photo.jpg','2077061009497551125',22731),('AIe9_BHVBnWjBJvk55vq2QEm0wl-fN2LqZxeb7RxftUru23XokS45RXTARXYdU279oLy0rg3JKmuy3mcxQm0fsj-vO0oZRqD0XaCmD09nCbwfnpm7Ly0Jes','Kim and Dyveliz were awesome! They put on the movie the Intern while we were waiting for our friend who was super sick. The clinic was super clean and friendly. They offered water, sodas and snacks! Super nice!','2018-08-14 19:07:37.471000','2018-08-14 19:07:37.471000',5,'White Creek TAMU','https://lh6.googleusercontent.com/-CMQq6hlLD5w/AAAAAAAAAAI/AAAAAAAAAAA/004LQaIrpi4/c-rp-mo-br100/photo.jpg','16590124370714063921',3792),('AIe9_BHVBnWjBJvk55vq2QEm0wl-frb3rLpoDyopB2y7tz-XxacBG6nXNZXezBkoAVKrZqhw0PpL5iO7Ur4kxjYsF_4OJ-MDOxJtdWctC53qCzCzZkqtLE4',NULL,'2019-03-27 05:32:36.351000','2019-03-27 05:32:36.351000',5,'Kenji Fujioka','https://lh4.googleusercontent.com/-lO79QnwL4RU/AAAAAAAAAAI/AAAAAAAAAAA/RqyNfsS_-LE/c-rp-mo-br100/photo.jpg','3272657195432704501',6984),('AIe9_BHVBnWjBJvk55vq2QEm0wl-FVaPgkRQBtnloxArioBRFgAth_0ViDTKuoB-hEiF3G1khQPSRmWK_XvAr52FSAIdV4MoWldBlAQFZqjv-I4e8mVtLnE',NULL,'2019-04-16 20:57:08.213000','2019-04-16 20:57:08.213000',1,'Kisha Arora','https://lh3.googleusercontent.com/-QsRqEHwrvLw/AAAAAAAAAAI/AAAAAAAAAAA/49DndnEi1Nk/c-rp-mo-br100/photo.jpg','14567670160750071148',1350),('AIe9_BHVBnWjBJvk55vq2QEm0wl-FvY1hne3nubwPNfPC93CKxzlqRUVbgNACmTlS3kRsEONKJy-_YX0P6hQdS1QNjnfEg2bfgVgMkwr6Qx4TdiOrAqqxEo','Absolutely the best urgent care I\'ve been to. Very clean facility. Staff is great! This place is my go-to when we\'re not feeling well.','2019-10-29 16:13:20.804000','2019-10-29 16:13:20.804000',5,'Teresa Herrera','https://lh3.googleusercontent.com/-O8XnrX_jgoY/AAAAAAAAAAI/AAAAAAAAAAA/W2o90k2zsBw/c-rp-mo-br100/photo.jpg','2694018788013845459',6026),('AIe9_BHVBnWjBJvk55vq2QEm0wl-FvzdAuDilRwA4JI14Y99HukCdW118xL17mnxHCY8huxRDNoQ6wHs0A2DqfGD0EffPAviOwEF2aDQ_wAvY9bknTZxjDA','In and out in no time at all! Very positive experience.','2016-06-17 14:35:38.971000','2016-06-17 14:35:38.971000',5,'Sarah Monigold','https://lh3.googleusercontent.com/-5zyX8aPE5P0/AAAAAAAAAAI/AAAAAAAAAAA/mJk8WO4LzTM/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7979),('AIe9_BHVBnWjBJvk55vq2QEm0wl-FXvSpoq-niOZt3jfmlf0_ciqsOqjHHKlPHwyCPLvnxoDdKf0CbwRMZtAp8noFUGVZNMpDYtttdeKTHOt5PODGrMd7lg','Kim, Gabe and Stephanie were super nice and helpful!','2018-10-13 10:04:39.855000','2018-10-13 10:04:39.855000',5,'Alyssa Zuzu','https://lh3.googleusercontent.com/-W50aRPwv6CQ/AAAAAAAAAAI/AAAAAAAAAAA/CEEPMaH2ayw/c-rp-mo-br100/photo.jpg','16590124370714063921',3709),('AIe9_BHVBnWjBJvk55vq2QEm0wl-FYYa7SxeS2ZJxB5z-1usd2H40GwCkRxDPURGlda7AxoeZE1o7NbObzggR30YvmYuKA5O8fxl_4XWOiOyQEE1hlpwOlM',NULL,'2020-05-28 02:24:35.179000','2020-05-28 02:24:35.179000',5,'Jeff Deese','https://lh3.googleusercontent.com/-O1rzciDA-yY/AAAAAAAAAAI/AAAAAAAAAAA/31Mga6m937U/c-rp-mo-br100/photo.jpg','16590124370714063921',22680),('AIe9_BHVBnWjBJvk55vq2QEm0wl-g2vTxmOFwAL9QlKWf4pGR5xLduWkf1fQIS8g0PMqi1DwOk0AfjEb6-PiW8Iym_T_8gptHidWWDvuGMIM-HvL7fjcOLM',NULL,'2019-12-26 17:42:29.575000','2019-12-26 17:42:29.575000',5,'Rod Stwrt','https://lh6.googleusercontent.com/-N-Pk2q4pCnE/AAAAAAAAAAI/AAAAAAAAAAA/8mSmqRGM1ks/c-rp-mo-br100/photo.jpg','3511292162159714121',14472),('AIe9_BHVBnWjBJvk55vq2QEm0wl-G2Wm2nn_YEwh-nS6eZLXXwMA0A7Odc0cCmagJuoqMtQf78aWWsq4KMsVXh1CPlkI3KIqH4V-PIZ4sKpr4O-uCslbXMY','(Translated by Google) Very good!!!\n\n(Original)\nMuy bueno!!!','2018-09-07 03:12:48.563000','2018-09-07 03:12:48.563000',5,'Robert Ruiz','https://lh6.googleusercontent.com/-TICJ_HMFh9M/AAAAAAAAAAI/AAAAAAAAAAA/KEiqsOC9mR4/c-rp-mo-br100/photo.jpg','14567670160750071148',1524),('AIe9_BHVBnWjBJvk55vq2QEm0wl-g7zfo_ztFQGLBsgEX6bOnKgutcaWPtSJ3y8Y-5Hn1yeV3-PSELom4HlaVOh5vdzut7XS8KtZbf3sQqFrwhb7xefs9ek','I had a great experience with the Signature Care in Texarkana. They got me in a room quickly, everything was very clean, and every person I dealt with was very attentive and caring. My kids were asked several times if they wanted breakfast, a snack, or a drink. I was diagnosed with a vitamin deficiency that two other hospitals overlooked. I started on the supplements discussed and I have been improving every day. I would definitely recommend Signature Care and it will be our 1st choice in emergency care.','2019-11-21 15:25:48.889000','2019-11-21 15:25:48.889000',5,'Amanda Horton','https://lh5.googleusercontent.com/-Jut1UCrH1xM/AAAAAAAAAAI/AAAAAAAAAAA/LfTay7GxxfI/c-rp-mo-br100/photo.jpg','3272657195432704501',6858),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gAIt0I4JQcmbw5Qr6goVH2jSSSlno4wzA3vKWNUBJH_IvPkx9XczHrkG7ccImnnPx_65w5Fd_kSkfKHr-Sll54Xwyv4','They claim no appointment is needed for Covid testing but when I got here they said it’s appointment only? Very frustrating and I see nowhere on the website to make an appointment.','2020-06-24 16:30:54.877000','2020-06-24 16:30:54.877000',2,'Hunter Imler','https://lh3.googleusercontent.com/-kVzpKk4CPJE/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclQPk3v4up-Rh3SiDfB3fVfp3Kvpg/c0x00000000-cc-rp/photo.jpg','17898197009688164559',21288),('AIe9_BHVBnWjBJvk55vq2QEm0wl-GapNJLQqOxeJH1A0Y_K3qalhCw9HmgAnsSKmTWyhGRLUuoAqzA4lNgODPBRjn_ocZkgxZVrr4_l8_Mu9YtMMIvPq5zA','Went in, no wait, immediate welcome! Paperwork was easy, Dr was prompt and was in and out in 30 mins. The staff was very professional and the facility was very nice.','2019-03-14 16:15:03.977000','2019-03-14 16:15:03.977000',5,'Peter Alvarado','https://lh5.googleusercontent.com/-NqdsML2tryc/AAAAAAAAAAI/AAAAAAAAAAA/eOTW0KvGJXY/c-rp-mo-br100/photo.jpg','8918455867446117794',9156),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gexE5iztxA96_8qxpce2Hoi5AewQhR7Ks49Ao-P3uT-haAVY_UFGzWX9VV-TaXiXQ7TDdH4dUDvFG5x7Rmi5Swmn3VQ','Very nice and friendly staff, very clean and quick.','2020-08-05 16:51:20.470000','2020-08-05 16:51:20.470000',5,'Brian Mulero','https://lh3.googleusercontent.com/a-/AOh14Gg6kGXM5bpSoDU-6jxhMMin1XLf6oAhI0wFrWWNew=c0x00000000-cc-rp','14904078213800803294',21926),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gi-GyVT2mMXdjghMc3P5eyIooSKCie3x76HcJ-iriT962eZbqh0DaOgHIUonTxG1DsSrNSkL4EArSZ22Fg4hNuvAfjU','The staff is amazing and so caring. Dr. Patel was so patient and understanding.','2019-07-25 15:05:46.232000','2019-07-25 15:05:46.232000',5,'Misty Webb','https://lh6.googleusercontent.com/-bJ_rrJHIg-E/AAAAAAAAAAI/AAAAAAAAAAA/opMU4iYM_HY/c-rp-mo-br100/photo.jpg','13486358490203335051',881),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gj3A5ctJdswLKaFfVcDvTrYz9hYlO5OA-JAOSdA3GtA-7P8N-XWJweOqmoScSR8YAhAPOZ3FrL9s5fJULdarDZrjFVw',NULL,'2016-08-06 03:31:58.915000','2016-08-06 03:31:58.915000',5,'Afrad Abdellah','https://lh3.googleusercontent.com/-4ZD7noD4vuU/AAAAAAAAAAI/AAAAAAAAAAA/9x2VhgGTU1k/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1998),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gJKGlq3LYcv72pu7GSvTCh--UScg6E10JAU6QEzhts7xaHE-pRp75-24yaXJ63Uc9eJN39IFN_cRpoWY4IRZN1riaqo','Always excellent cutomer service when my wife or I need urgent care. Today\'s experience was no exception! Delicia, Karen,Sonle and Dr. Alloju were phenomenal!','2019-12-14 15:08:09.270000','2019-12-14 15:08:09.270000',5,'Stee Frank','https://lh3.googleusercontent.com/-HJ6WZ8X-3vg/AAAAAAAAAAI/AAAAAAAAAAA/PSXPKfuUKgY/c-rp-mo-br100/photo.jpg','8679688254631342173',8690),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Gm80rVR0iNTcaqyWDN32u_6QiXyfwx5UudVobCjCeDFCf9ILKkfxAlcNNDhiH3Euo4yO0qtuKLVnX4SEiKVSNURbwTU','The people here take good care of their patients. They are fast and easy to deal with. They have helped me a great deal.','2019-04-05 14:21:00.237000','2019-04-05 14:21:00.237000',5,'Don Fogel','https://lh4.googleusercontent.com/--tHomoEMU_g/AAAAAAAAAAI/AAAAAAAAAAA/Hy5H3yPGxzQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2151),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gMAsP1bOcy-kfWqMpkPjjFcnYJgo93c_IhmAa92FvfbO8ATQwxBJvgovz05p48xzfnTily7Icp5SBuFz2vpP3qF8R3A','Very fast service !','2019-10-11 01:08:22.163000','2019-10-11 01:08:22.163000',5,'Alejandra T','https://lh3.googleusercontent.com/-cw99tm3U4Mg/AAAAAAAAAAI/AAAAAAAAAAA/Q3JzWfEvWRU/c-rp-mo-br100/photo.jpg','13486358490203335051',785),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gONRWK5YgC3TIARb-dvhcAf1HWtW1-29Q7Vfl8lLgY2RvBMNGluCGLquLQ6Jy12kJXmQGkJThaV6ayVcMdwLY25h_Ck','Signature Care is always a good experience! They are great listeners and always urgent to your care .I would like to thank the staff Cecilia ,Gina,JB ,and Dr Ding','2020-03-07 14:47:52.202000','2020-03-07 14:47:52.202000',5,'Jaimee Cole','https://lh6.googleusercontent.com/-sgR2rDC8tX4/AAAAAAAAAAI/AAAAAAAAAAA/8iVEhBL7kXk/c-rp-mo-br100/photo.jpg','14567670160750071148',20952),('AIe9_BHVBnWjBJvk55vq2QEm0wl-GqETiYtwFv7AQFPuJSpq6XSF7AxosG8s8WCeZ433U4juKAOiMO2Uk5NJ863oj2rODkGVzKD2ZPpkoU0p5QuyvU5EeNk','1. I came in with the COVID questionnaire saying that I was displaying symptoms and that the MDLIVE said I need to get tested. The receptionist didn’t even look at my questionnaire that I was on a plane in the last 14 days and I had symptoms but rattled off that there wasn’t any available appointments until Monday afternoon and I would have to book an appointment . The door said if you display symptoms you need to be seen right away so I had to resummarize and the girl next to her asked what my symptoms were and said I could be seen. Not a great first impression. \n2. Not all of the paperwork was given to me so I received a clipboard of papers to fill out in my car. Okay. Filled them out and came in. I was then told to go back out in my car and fill out papers that my insurance is out of network and “this is a paper that advocates for insurance to become in-network because yours (BCBS) is out of network”. Blatant lie. It’s asking to release limited information so coverage will be considered for this one visit and to release any applicable medical records that you deem okay. Wording by your receptionist was not okay. \n3. I went and sat in my car for 40 minutes, could be worse. I get the call to come in and 2 things happen: the woman that called said, “You and Erik can come in”. I wasn’t with Erick, I was alone. HIPPA violation, I saw who came in after me. When I walked in, your receptionist is using air quotes when talking to a man, maybe a nurse coming on shift? saying “we tell people there are “-appointment times” even though there’s not....and we locked eyes. Super awkward because they almost turned me away for a lie. Really cool. \n4. I was told that you only do the rapid test by the nurse. When I received the results back, it says this is not an FDA approved test. Your website says you offer 3 different types of test 2 present and 1 antigen. I was never offered an antigen test either which was odd. \n5. When my test came back negative, no diagnosis was done to close the gap on my symptoms.','2020-06-29 02:22:15.304000','2020-06-29 02:22:15.304000',1,'Courtney Gusie','https://lh3.googleusercontent.com/-08exN8KxnjQ/AAAAAAAAAAI/AAAAAAAAAAA/LdKpsWZlM80/c-rp-mo-br100/photo.jpg','14748677429039074158',21394),('AIe9_BHVBnWjBJvk55vq2QEm0wl-GRh2e2lCRiczvSTrjEhyl-gHx2zfls2ILwifG2-kvHVQbAPRehmebdaeOhd5s0d4C4O3qdVBSqE6_ndM9RWSJah4LWo','I’m not one to go to the doctors when I’m sick but I felt super crummy and my normal physician couldn\'t get me in, this was my last resort. And let me tell you I’m glad I did! The staff here are so friendly and accommodating. From check in with Jennifer and Shaunda to the nurses Christina and Christine, not to mention the physician Dr. Elsbecker. I’m so glad I came in. I couldn’t be more happy and please the way they treated me. Highly recommend this place!','2020-01-15 15:16:01.253000','2020-01-15 15:16:01.253000',5,'Cassidy Byers','https://lh3.googleusercontent.com/-xg9ss67eFZY/AAAAAAAAAAI/AAAAAAAAAAA/15FUbhVSDhQ/c-rp-mo-br100/photo.jpg','16891069708558046635',9764),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gWO5aZpugFi-83Znd_ql_1TKlSVx_r3_uflQc7UmnXCvsdVlE2m6eLGUUTX7CyJ43ZkVAlwAXwg4hwMhi5g8HbOVs6U',NULL,'2019-09-30 14:36:23.977000','2019-09-30 14:36:23.977000',5,'Patrick Harris','https://lh5.googleusercontent.com/-R269TByWzt8/AAAAAAAAAAI/AAAAAAAAAAA/QTUf-euo9s8/c-rp-mo-br100/photo.jpg','13486358490203335051',797),('AIe9_BHVBnWjBJvk55vq2QEm0wl-GXiauu9y1vx3w5k9zd2kCPhHZX1NCROaYHt-fZnv4BZQDv7_Pf4PxebAXoXpJDIU8ldg8Q1GAdgSDIM21jj_0v6frew','Great service and very friendly staff','2020-07-28 02:50:19.444000','2020-07-28 02:50:19.444000',5,'Jonatan Mendoza','https://lh4.googleusercontent.com/-SkK65y3FPKM/AAAAAAAAAAI/AAAAAAAAAAA/xCq96jpi97c/c-rp-mo-br100/photo.jpg','2077061009497551125',22802),('AIe9_BHVBnWjBJvk55vq2QEm0wl-gXP8g7k8kQTAVrn2oyohRrGmMLJ9iiWtIGWonJ3o5OwTx0Wd-L55KJEWctw9A_y3UO52UpTS5bh3wY71h9ba4ZoKpEo','I was in and out of there in an hour—got 8 stitches! I am self pay and it was extremely fair priced—only $300–and this is an ER!! Staff from front door to the nurses and Dr. were all very nice and quick !! Highly recommend !','2020-06-06 04:11:25.218000','2020-06-06 04:11:25.218000',5,'Cassandra Corgey','https://lh4.googleusercontent.com/-WpkaJl9oO9I/AAAAAAAAAAI/AAAAAAAAAAA/jFFf0zYzRik/c-rp-mo-br100/photo.jpg','16590124370714063921',22673),('AIe9_BHVBnWjBJvk55vq2QEm0wl-H2gw0IZIRBeuwMkwmKn4ZeCLcpSDKd9wcjpTskSCTWwxFtNVf29mEwWkIER5K0m3PRPjJoKlcvEYbK8sKKzXIafVb9g','Awesome staff! Great service!','2019-02-01 05:07:35.418000','2019-02-01 05:07:35.418000',4,'Tam Watts','https://lh6.googleusercontent.com/-r6CATolB-mw/AAAAAAAAAAI/AAAAAAAAAAA/6xqXDnLyq80/c-rp-mo-br100/photo.jpg','8918455867446117794',9185),('AIe9_BHVBnWjBJvk55vq2QEm0wl-H5NvJgdXR4GDiwYltjx_Z779UHOxSm0SqkA2iloK32uVyXtaD9Qxbqn7opgKfjOv-r1OVCHA1FsTXNvzpFTprMT54LA','I had a very positive experience and am grateful for the way I was treated by my neighbors at SignatureCare Emergency Center on Rice Ave in Houston, Texas.\n\nDr. Appiah, Nurse Karen, Radiation Tech Sonny, and the young lady who greeted me and helped me Register, Ashley--were all very kind, patient and professional. Thanks again for being there when I needed you. God bless you all.','2020-05-28 21:57:07.108000','2020-05-28 21:57:07.108000',5,'brianbdotcom','https://lh3.googleusercontent.com/-Lvg_e-LFYuI/AAAAAAAAAAI/AAAAAAAAAAA/-37_LDf-QeQ/c-rp-mo-br100/photo.jpg','8679688254631342173',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-h8GysO8NLUMIvfi9gFEfFDTvl_vgvkRyuJ0A6F0QWXpFA8Kj5VfuhCkniiHbEFIK6Zm48ioEud-JJqPvf2j0hRjzHfs','I took our 3 year old here for a finger injury yesterday. The facility was clean, modern, and had snacks/drinks available in the lobby. In the patient rooms, my son was offered a warm blanket and Disney junior on the television. He was completely distracted from his injury while eating Doritos and watching his favorite shows. The staff was caring, kind, and great with kids. Dr. Elsbecker explained what he was going to do in a way that made my son feel comfortable and at ease then he also answered all of my question. Mr. Adam chatted and joked with my son. He explained all of the billing to me and the price for the whole experience was really reasonable. Without hesitation, we would absolutely come back here for anyone in our family.','2019-10-03 15:57:08.705000','2019-10-03 15:57:08.705000',5,'Lyndsi Parker','https://lh4.googleusercontent.com/-O2hQ5nbkWu8/AAAAAAAAAAI/AAAAAAAAAAA/avyVJBo8u54/c-rp-mo-br100/photo.jpg','16891069708558046635',4191),('AIe9_BHVBnWjBJvk55vq2QEm0wl-hez6wC6Yno9WudIQbZwVcaHTMK8i3iTf_qQWT2iuehE53umQOWFdE5slzNTmRm2x5KkQxIzfp_SuMI4S4dkEe2l-aNw','Awesome. Quick. Great Staff.','2019-06-09 18:46:48.404000','2019-06-09 18:46:48.404000',5,'Amanda Garcia','https://lh3.googleusercontent.com/-d23Kz0TAMlI/AAAAAAAAAAI/AAAAAAAAAAA/DJfYoctxqd8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-HFrllHOzVidqUq2ZLRQAAtoeaxKY7ot2BwhWKuCIRh6KHr1xcLgVyfJkqstiPOOGX2OfqxGhKHebPJRWnbgaB7AV9mI','I came here with a pretty big problem with my wife and the people here are absolutely amazing I took care of us made sure we were warm and took care of our problem immediately. Definitely recommending the service here . Front receptionist Sibienne was extremely professional and very nice upon getting here. Nicole and chen I also took great care of us thank you so much for providing great care.','2019-06-10 13:36:47.894000','2019-06-10 13:36:47.894000',5,'Mario Salazar','https://lh6.googleusercontent.com/-J-h-N6Ydb54/AAAAAAAAAAI/AAAAAAAAAAA/0H31kMv63UU/c-rp-mo-br100/photo.jpg','8918455867446117794',9131),('AIe9_BHVBnWjBJvk55vq2QEm0wl-HImM8W-PN07tRH6JPQHFk-hptL5teZxMTSqTvSvcnqg6caTjP_kmgur7o6Q5xWEI_KkB7-3RpCWlWIyfiuFs-Da7Mtc','Great service! Fast nice COVID-19 testing and Comfortable Cody! for helping us','2020-07-29 16:50:33.416000','2020-07-29 16:50:33.416000',5,'Lisa Escalante','https://lh5.googleusercontent.com/-nCsOeSFoAsQ/AAAAAAAAAAI/AAAAAAAAAAA/5NI5hf6ZRsg/c-rp-mo-br100/photo.jpg','2077061009497551125',22953),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Hinv9xiVcLFGLo09OwC0mG-bdXujlTt7L8_7aiVbR2a_AhuJrLFZ-O4YytqQCvaYGWN4xAE65C4l3ha8Ea7TFLFPmJk','At first I was hesitate to go to ERcare but I am so glad I came I keep putting off the pain... Dr Appiah checked me out fully unlike going to the doctor Alean the nurse I assured I was comfortable everyone here is polite and caring.. so glad I came','2019-10-09 23:03:30.295000','2019-10-09 23:03:30.295000',5,'AmandaJ','https://lh4.googleusercontent.com/-eMBnlkK3QWg/AAAAAAAAAAI/AAAAAAAAAAA/cdN4p0h2dvU/c-rp-mo-br100/photo.jpg','16389487648212004696',2838),('AIe9_BHVBnWjBJvk55vq2QEm0wl-hmkM-mwQvhUJzU4mK3AkYK-h9C_TTnjW9zQTRg0jov7D5Y2Rt3HSE5dm-UmSzI5c7SpNFUzVEwtTiUYJP8MF7v9TEHo','Very nice and helpful staff. They work fast and efficiently. Overall I had a good experience there.','2017-04-16 13:34:12.181000','2017-04-16 13:34:12.181000',5,'Geoff Beto','https://lh4.googleusercontent.com/-XgcnXQsIhdY/AAAAAAAAAAI/AAAAAAAAAAA/hI2GRyxbxlE/c-rp-mo-br100/photo.jpg','16590124370714063921',4007),('AIe9_BHVBnWjBJvk55vq2QEm0wl-hmu_pBv-vSO3uQOU2BVhXAAtyvuHUaa22Ctkcw3uIXmlkXGINhFylWkNim-KAcs5mRbLDO-m6iD7HYDi1PxCk7gdLU8','As a first time patient, the service was fast. I didn\'t have to wait long to get treated. FD Brandi, RN Lucas, Regis- Kim Domanski, RT Kim Davidson, Dr Jordan and rest of the staff are very friendly and professional. They answered my questions and explained the treatments etc. I would recommend them to anyone that needs emergency care.','2020-02-02 01:20:36.340000','2020-02-02 01:20:36.340000',5,'Jay Ayle','https://lh4.googleusercontent.com/-FzAX-6rzbwc/AAAAAAAAAAI/AAAAAAAAAAA/75RTsxwtKN4/c-rp-mo-br100/photo.jpg','3272657195432704501',14381),('AIe9_BHVBnWjBJvk55vq2QEm0wl-hP_DktENxQ5C7f_7LqxTQKdmu3x4ocoUFKZhcoPZgUCAJPc5Kj__1HOtH6dc_8DlX8DF1goMRsx0KFRDztRm0Kk3il8','Clean, timely and wonderful staff. Knowledgeable and kind. Dr. Lindsay, Shola, both techs and Tanisha @ registration were wonderful! I highly recommend this facility.','2019-05-20 03:15:44.504000','2019-05-20 03:15:44.504000',5,'salyntha elliott','https://lh5.googleusercontent.com/-BDKMdZtPd4o/AAAAAAAAAAI/AAAAAAAAAAA/WTMokNSaKME/c-rp-mo-br100/photo.jpg','17898197009688164559',5732),('AIe9_BHVBnWjBJvk55vq2QEm0wl-hpRRauBOfCuWhcXZMY9WegU-U5eP0k6FWOzKUsVxEQLYk3qeTEZP1UOCXIzGlFt_t-0j5PFj6fF2j0BBa_xc5bjkCWA','Very nice and helpful people! Such a good experience','2018-09-13 04:06:18.553000','2018-09-13 04:06:18.553000',5,'Heather Harrison','https://lh6.googleusercontent.com/-sYq86Iw0k_Q/AAAAAAAAAAI/AAAAAAAAAAA/04BtBBL50YI/c-rp-mo-br100/photo.jpg','16590124370714063921',3731),('AIe9_BHVBnWjBJvk55vq2QEm0wl-HrjHmUevCcV_ADnvQeuoi59h3Dsr2zwe_e9vhKue6UQkupBztUDTcBf9rhItyLOaFzrNplfcfsybVDu6SrIrJRL52Ds','Dr cavazos alvean','2020-03-17 17:18:45.415000','2020-03-17 17:18:45.415000',5,'Kelly Rivera','https://lh3.googleusercontent.com/-59njmflozdg/AAAAAAAAAAI/AAAAAAAAAAA/2bSos7o7-oI/c-rp-mo-br100/photo.jpg','16389487648212004696',21010),('AIe9_BHVBnWjBJvk55vq2QEm0wl-HrnVmLn_HhI_a7GJIldsRRnpmR1oX5mTY1DLPy9_3X98BX6R6kTC-ergRzQpEQIcpKXqdW1AXnr14O3a5NPeHJFnlF8','This was a very friendly atmosphere. The staff was very attentive and accommodating to myself and my kids . The facility was extremely clean. The facility also offered refreshments to everyone while you wait, without the vending machine price. The overall experience was grand if I have to compare. Most importantly I was able to make an appointment unheard of . Not, that it was even needed because the service was super quick. But it was definitely a great feature to be offered.','2018-01-24 16:48:30.266000','2018-01-24 16:48:30.266000',5,'Joycelyn Arnwine','https://lh6.googleusercontent.com/-f2Y5rQnrWpg/AAAAAAAAAAI/AAAAAAAAAAA/nK2EDywG2pk/c-rp-mo-br100/photo.jpg','8918455867446117794',9300),('AIe9_BHVBnWjBJvk55vq2QEm0wl-HZTBRHpZ4gdWEK3DuFbfKcf6NghaoNBH6--rQAsnu7Lv2oBepscnPPqyG8amSY3McsLUkwo0JX0_QOZHiJw2vyd_H4g','So the quality of care was fine, and it was rapid. However, I was there on February 18, 2016. I sent them an email a couple of months later asking when I could expect a bill and received no response. Today (16 August 2016) I finally received my bill. It is extremely difficult to have something like that pending for 6 months, and aggravating that they did not see fit to respond to me. As for the charges, they charged me $9.73 for a prescription drug without prescribing nor giving me anything. They charged $9.18 for a pair of sterile gloves, which is nuts. I am uninclined to use them again.... if I had a situation serious enough to warrant it, I\'d just go to an ER properly attached to a hospital.','2016-08-17 00:06:35.847000','2016-08-17 00:06:35.847000',2,'William Harlow','https://lh6.googleusercontent.com/-c134xaUm4H4/AAAAAAAAAAI/AAAAAAAAAAA/Jrgedi8i3B0/c-rp-mo-br100/photo.jpg','6521947413723274945',8359),('AIe9_BHVBnWjBJvk55vq2QEm0wl-i-NI7Rib5oDo_ZYYy8-A_OzCTSADGs2Dy7tacLg467kir1BPtg2AKVlP_bvCacayGzgiNcI02joXKgdpr7vVi5mGI5E','Walked in and was immediately greeted by smiles. I was prompted to fill out some standard paperwork and was offered snacks and beverages from the mini fridge which I thought was awesome; I helped myself to a Gatorade. I was called back shortly after into a quiet and clean room with a warm blanket which at that point my experience couldn’t have gotten better. Saw the doctor, was discharged and they gave me an ice pack and a refillable ice bag for my swelling (as I had just gotten my wisdom teeth removed). Everyone was super friendly, I loved that the facility was clean and even before heading out I was assured that if I had any other questions or concerns that I was welcome to call in or stop by as they were open 24 hours. If anything ever comes up again, this will be my first stop. Thank you guys for making this experience smooth, quick, pleasant and warm!','2018-02-03 15:32:13.043000','2018-02-03 15:32:13.043000',5,'Bianca Elias','https://lh6.googleusercontent.com/-nHISgM5ovm0/AAAAAAAAAAI/AAAAAAAAAAA/FIxR9lftdRI/c-rp-mo-br100/photo.jpg','16891069708558046635',4515),('AIe9_BHVBnWjBJvk55vq2QEm0wl-i27QaokZHm_U575FaeglzPOrNv7qPd_oMQ5CMP8Xw1-aRD0f32A5gLznQvdnfEtHkiid0xw_0SS-LF6oBIwOKif6wvI','Amy, blake, Dr. Rodriguez and everyone was lovely. They treated me well and nice and the service was excellent and I appreciate everything they\'ve done for me.','2020-08-01 15:52:00.930000','2020-08-01 15:52:00.930000',5,'Cherlyh Hill','https://lh5.googleusercontent.com/-Ur98iyOL_Pg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckb9NOZuU4pXpgSxrNdqDoSdJUR5g/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22366),('AIe9_BHVBnWjBJvk55vq2QEm0wl-i2EEALDs9BDbZBOT39PZv0TMn-dJZepzVe890p-RLjzMgPB4AHLPFezpTo-L9dphLuEFUUI0Suls7ZKRJPX6az3C20I','I came in as a sick patient not feeling great. Turns out I have the flu. I was in within 5 minutes and was seen by the doctor in less than 10 minutes. I was seen by Dr. Vakey who was great and was able to help me. Anthony, my nurse and Natalie, my ER technician were great. The entire staff let me know what was wrong, what they were going to do and helped guide me to make the best decision for my health possible. I will definitely come back here if I’m ever this sick.','2018-11-06 01:15:10.935000','2018-11-06 01:15:10.935000',5,'Brock Pugh','https://lh4.googleusercontent.com/-MRZW9bCDFo8/AAAAAAAAAAI/AAAAAAAAAAA/1ipxy54VXms/c-rp-mo-br100/photo.jpg','16590124370714063921',3667),('AIe9_BHVBnWjBJvk55vq2QEm0wl-i3x3Uff83U5u0xHMWEOgtueRvo9U4spsSnULhouMVy5goPpMLw1CHVhvRFP3dharSmwf-uzcYZSWTsmEfexLHaN8ixs','Everyone was very accommodating and service oriented. I was able to get in and get out quickly!','2020-01-10 12:34:17.199000','2020-01-10 12:34:17.199000',5,'stephanie oguchi','https://lh4.googleusercontent.com/-n5k4Eu-CTQQ/AAAAAAAAAAI/AAAAAAAAAAA/7tygl-WIjHc/c-rp-mo-br100/photo.jpg','17394740196501090048',14058),('AIe9_BHVBnWjBJvk55vq2QEm0wl-i6VEIc2vV-QpwidVLF7VsKomXrDIkC52M3Ek8XMGDqOJmxKTtIg22DVkAjxVBuClNUzuyotJdjU-BgTynOvzCCZgkbU','This is unfortunately tbe second time I have had an emergency and FORTUNATELY Signature Care was there! I had the best experience when I arrived at the Westchase location. At first they thought that I was there for Covid testing and wanted me to stand in line but as soon as it was learned that I had medical issues,I was immediately taken care of. From the evening ER doctor and tbe evening staff, I received nothing but compassionate care. Night nurse Marissa was so caring and patient and made the stay seem pleasant ! She catered to my needs and it didn\'t seem like it bothered her. \n\nThank you Signature Care staff! If an urgent situation comes up, I know where to go. The day crew was amazing too!','2020-07-09 22:43:06.198000','2020-07-09 22:43:06.198000',5,'Marilyn Knight','https://lh4.googleusercontent.com/-JZ0KEPBmxe0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclpoNdTh700uxxzI7QDW3A7MnuPrw/c0x00000000-cc-rp-ba2/photo.jpg','12541597562633926366',21809),('AIe9_BHVBnWjBJvk55vq2QEm0wl-IAU_PX0mOfFwoDKSJOfzXLQ3WtGbiJRH7EWd-TiHy0LaKIWOpR_1WSrCdi3LLJbja_ZEAmoAbe4ukUXOi2008V7xS4s','The staff is attentive, friendly, and fast! They got me in and out and feeling better in less than an hour. Best emergency room visit ever!','2017-04-04 22:22:12.422000','2017-04-04 22:22:12.422000',5,'Tae-ahj\'hsha smith','https://lh3.googleusercontent.com/-CQkFHuFhW0I/AAAAAAAAAAI/AAAAAAAAAAA/MImhmcACqPo/c-rp-mo-br100/photo.jpg','14904078213800803294',2374),('AIe9_BHVBnWjBJvk55vq2QEm0wl-icyeesI2yD9bywgyT1DeXr9IW6iM6MIGEnbAsDk59TfDRmzU_p6HF0R0rEj6OcbwN1-1cFzxkFYbefj0ocpMR6qCvGk','Great staff everything went fast and well! \nThank you to the front desk -Tanisha','2020-03-20 04:45:47.593000','2020-03-20 04:45:47.593000',5,'Amalia Umanzor','https://lh3.googleusercontent.com/a-/AOh14GjMTlUFwYu7K_zW9MqVrKLdnOt0bs62TlztfirCww=c0x00000000-cc-rp','17898197009688164559',21083),('AIe9_BHVBnWjBJvk55vq2QEm0wl-IDW0OmLnqkzeUE_jgQJr17MK4sQfZXnCHxCfe5nSeXzFdIeB0V7bc1a2wA61u9sYVpwqKPanxDBqR5oTHqOAlNAWqLs','Awesome experience, thanks to the Dr, Nurses and Staff who took care of us and made sure our experience was world class. ','2015-06-24 15:49:46.863000','2015-06-24 15:49:46.863000',5,'Pedro Rodriguez','https://lh4.googleusercontent.com/-Je2zI3QK6w8/AAAAAAAAAAI/AAAAAAAAAAA/GLlXklC5lJQ/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5296),('AIe9_BHVBnWjBJvk55vq2QEm0wl-iGHRa3XikJPz_3iTWHlpZBwuA-2R0BfkjReeILgH9_LXNm1cr37WpsMUmvXrnAJ5aSOqZPzkOoz8vGuNozuUYNxwcS4','Wonderful experience even when I was feeling ill. Front desk is super nice and straightforward. No Wait! Meredith the nurse was considerate of us and funny too. Dr. was direct, formal with good manners addressing all concerns. This place has a real fancy look and feel to it, the individualized care juat ties it all together. They have one of the best lobbies I have seen yet, with coffee and cookies.','2019-08-03 02:03:57.604000','2019-08-03 02:03:57.604000',5,'Nayeli Lee','https://lh5.googleusercontent.com/-ta9lYmw2iXw/AAAAAAAAAAI/AAAAAAAAAAA/slsm2KS_SbE/c-rp-mo-ba4-br100/photo.jpg','14567670160750071148',1260),('AIe9_BHVBnWjBJvk55vq2QEm0wl-iKlfUYrfDPtLHXtJgHVldoDYIYHm1i1xvNyDZp5uz9AYxGWXGkCfGdVDzRrptwJ682n5HWT94ZuhwO4eprqmxwpUyfk','Jani.W\nTricia B\nPatricia C\nDerek P\nThey are great people.','2019-12-07 14:58:37.203000','2019-12-07 14:58:37.203000',5,'Jasmine Bowie','https://lh5.googleusercontent.com/-OUcJ4ynoLzc/AAAAAAAAAAI/AAAAAAAAAAA/4l2IHBbeKd8/c-rp-mo-br100/photo.jpg','16389487648212004696',2569),('AIe9_BHVBnWjBJvk55vq2QEm0wl-IN9th605_bd7vYFZaGwL37kqZhf3WHfbnjhfNBzX-K7mJ7p2M6XDbocByE1cW490iZU5ffzA9QP1RJ53NFEZZ4lCPx8',NULL,'2016-06-10 23:23:24.718000','2016-06-10 23:23:24.718000',5,'Lisa Hughes','https://lh5.googleusercontent.com/-NEU5yF2NKcU/AAAAAAAAAAI/AAAAAAAAAAA/xLGK1tCsKZA/c-rp-mo-br100/photo.jpg','3511292162159714121',7988),('AIe9_BHVBnWjBJvk55vq2QEm0wl-iOqT6V6TXYqsyTFFkUVQn5-tPI_0aeVcS3CllexohtDZKKMuanArqsBO9btappKR3L7oroonhYsGa_89qhby7i9GqVQ','I am from out town working on hurricane Harvey relief work, I got strep throat and I was seen by Dr. Garcia at signature care heights office, what a wonderful Dr. And staff I couldn\'t have asked for a better care. Jocelyn at the front desk is an absolute angel. She is very kind and helpful. Thanks for everything guys.\n\nMr. Gordon Traxler','2018-08-14 21:49:31.385000','2018-08-14 21:49:31.385000',5,'gordon traxler','https://lh6.googleusercontent.com/-ZXL-1bFglTE/AAAAAAAAAAI/AAAAAAAAAAA/bvcwPGhvQT0/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1567),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ip6-PtqvOsvFBXMbNl8eIa3OrhrPN-xN-MdvqsW9O7lMKJc8F-psNNCpKE7oeLVqEEYa-JNSgPnbTNqiGJoATrcDQ5M','Good place.','2020-07-25 03:13:57.929000','2020-07-25 03:13:57.929000',5,'Andres Almendarez','https://lh4.googleusercontent.com/-cfSeK6rvuKY/AAAAAAAAAAI/AAAAAAAAAAA/ioVSlRk5V74/c-rp-mo-br100/photo.jpg','2077061009497551125',22843),('AIe9_BHVBnWjBJvk55vq2QEm0wl-iPmwSvHmhwQcz_zIpdYll2xU0UbIOsw1cdIF0O42UW5MLx3URPQH1i2KhU49sHDXvtB7jhjYHUzWVSwz-wWEiojthZQ','Fantastic, expert and friendly service and experience!!!','2016-10-04 23:01:00.439000','2016-10-04 23:01:00.439000',5,'David Uthe','https://lh5.googleusercontent.com/-Khs9yC2xVJs/AAAAAAAAAAI/AAAAAAAAAAA/yanBlyXArjE/c-rp-mo-br100/photo.jpg','14567670160750071148',1962),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ipZBK5Aeg5HKWOlWg-JVyIlhN5VYgMjQ6D-kR_rjUKXmG-baKqqvguoUxwo7-FNzvgnWEoRrFC4N1_oWWwuCPgHZh1Y','I drove my friend here to get staples in his head and they had a huge TV and a ton of snacks! Would definitely drive another friend here to get staples in their head as well.','2020-01-24 12:54:10.310000','2020-01-24 12:54:10.310000',4,'Max Bartee','https://lh6.googleusercontent.com/-NbaCCEnL9s8/AAAAAAAAAAI/AAAAAAAAAAA/2GCxxtpakrA/c-rp-mo-br100/photo.jpg','16590124370714063921',10215),('AIe9_BHVBnWjBJvk55vq2QEm0wl-IT8oSzdO-mW7MU3QrX1SG8NK5m4TEPAonnbOx0ttqOwOFf-bVWzfezTg4JQwQ9XMkrwwwM4mRoNsXceg0EZVM4AywMU','The staff here at the neighbors ER Texarkana had to be the best around. From the front Austin to the nurses Lucas and Sherri to the Doctor, Dr. Jordan. Such a pleasant experience on Christmas day.','2018-12-25 20:39:10.643000','2018-12-25 20:39:10.643000',5,'stacey sharp','https://lh4.googleusercontent.com/-3z0Zy6zehC0/AAAAAAAAAAI/AAAAAAAAAAA/iT1DCA8EiYk/c-rp-mo-br100/photo.jpg','3272657195432704501',7086),('AIe9_BHVBnWjBJvk55vq2QEm0wl-itFzzqw6lpnYuWrYs0UoZndADxK-X5tNX_Tpw0jbBwMYdwxWh2jO6Lxi3H5_g2Z61AdqpJT6fzk_Y6KCto5QD8na874','This place was so helpful, my nurse Anthony was fantastic! I recommend 10/10','2018-04-19 22:06:01.103000','2018-04-19 22:06:01.103000',5,'mallory hall','https://lh3.googleusercontent.com/--7p0Kdx-6wE/AAAAAAAAAAI/AAAAAAAAAAA/gSjf2n0r-Hk/c-rp-mo-br100/photo.jpg','16590124370714063921',3834),('AIe9_BHVBnWjBJvk55vq2QEm0wl-IUpH63RIYw8PvVEwGAgkgft70NtFkJjpzF8Y1b7a3C3V-FJMWicHAe8P0rtxlWbxDDZ3B0bX4_pjz97UTZHh5fRu0yA','Open 24 hours? Nope.','2020-02-11 09:30:38.744000','2020-02-11 09:30:38.744000',1,'Scott Fleming','https://lh4.googleusercontent.com/-rMNisVE0jQM/AAAAAAAAAAI/AAAAAAAAAAA/AeoUZ9_izqE/c-rp-mo-br100/photo.jpg','8679688254631342173',14749),('AIe9_BHVBnWjBJvk55vq2QEm0wl-IuukaDqVqXOtKYh2w3q1yiPqQh_29SK_OY4Xl34f5hu6YJlx0Jeu5f3heSTAQwvEZn98Cv9WHjtUI5vNSZQ-gex0lCA',NULL,'2020-01-19 13:38:44.241000','2020-01-19 13:38:44.241000',5,'Amanda Hicks','https://lh3.googleusercontent.com/-0BR9w3jF2P4/AAAAAAAAAAI/AAAAAAAAAAA/6DR0aQvufZg/c-rp-mo-br100/photo.jpg','16891069708558046635',9983),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ivOznhWIDPng3nWChJDahy3aM4RLUM-8LKnJGpkZZPb7xo6PXvEHJusI3Pef-1jPYF8Oc9r4CnzH49SnujpfFcGlMAQ','Jacob (rn) and Sarah (np) were very nice and helpful when giving me my covid test. recommend scheduling an appointment for these tests ahead of time to minimize wait time. Still had to wait but overall good experience','2020-07-25 16:39:04.109000','2020-07-25 16:39:04.109000',4,'McKenna Jackson','https://lh4.googleusercontent.com/-QfC5b2Dvsb4/AAAAAAAAAAI/AAAAAAAAAAA/Ue4cie98g80/c-rp-mo-br100/photo.jpg','16590124370714063921',22646),('AIe9_BHVBnWjBJvk55vq2QEm0wl-IWA3h16FuvspQHo0WeMRLS-Qb968_jkDdjng5l3XW4UC-lYypkc7zsP-sdyPDZDjxcbyQBBrAdCmWBuzLyeuNQ7WKhE','They were very fast and efficient with my care. I appreciate it very much.','2019-11-07 22:35:36.122000','2019-11-07 22:35:36.122000',5,'Tess S','https://lh3.googleusercontent.com/-4fYUGNRdr_I/AAAAAAAAAAI/AAAAAAAAAAA/vFZA6pCDJZY/c-rp-mo-br100/photo.jpg','16389487648212004696',2721),('AIe9_BHVBnWjBJvk55vq2QEm0wl-iWGg9xYAcnKk_j9LvhoibwkwmS6VrvmrVJSLtcFIAeBoY31tg4rRH58g-LsjHaPmNm9f24phHC03T5E0QwzqavptBG4','Husband hurt his foot and we had to go in - no wait time and everyone was very helpful and responsive - Dr. Tran, the Nurses Meredith and Regina, the Radiology Tech Brian, and Sindy at the front were all great!','2019-06-17 02:20:30.924000','2019-06-17 02:20:30.924000',5,'Jasmine Taillon','https://lh6.googleusercontent.com/-me0fsNJah7Q/AAAAAAAAAAI/AAAAAAAAAAA/M4KJG7YC8io/c-rp-mo-br100/photo.jpg','14567670160750071148',1300),('AIe9_BHVBnWjBJvk55vq2QEm0wl-IXEjrJbG9cqHQJDi4jCUW8iJvmBkwW4D1sE2EbkyKoFkbrzH7-flWNZgNdGHbOJTVbywqQjti_Y3NTtoB8O7AQANc2o',NULL,'2019-07-12 00:03:45.694000','2019-07-12 00:03:45.694000',5,'Daniel','https://lh5.googleusercontent.com/-Y7feRrjSsyQ/AAAAAAAAAAI/AAAAAAAAAAA/e-_tOdoOsLA/c-rp-mo-br100/photo.jpg','6521947413723274945',8205),('AIe9_BHVBnWjBJvk55vq2QEm0wl-JcBC7O_Lx7ACSmyjyt9GfA47zkEVUaOa7QZ8Eo47HfuzDJxSaekUJ_5mPiotYOy2VZJnJzckfVFnuP_RgdH8HuKrtWc','Everyone was great ! Polite, understanding, and answered my questions..everyone did a great job !','2020-07-02 17:35:47.196000','2020-07-02 17:35:47.196000',5,'Alice Ortiz','https://lh4.googleusercontent.com/-e4uaeXCyllU/AAAAAAAAAAI/AAAAAAAAAAA/1gmoEgeYFAM/c-rp-mo-br100/photo.jpg','14904078213800803294',21398),('AIe9_BHVBnWjBJvk55vq2QEm0wl-JgWd7SpA3LIfs1-hV2ukLS2TSv96JQ5dv-5nOOWYPvSV893EM8Yuo6iwREkCetG9wMKATo5WkTcFMuzI7HOZv_AvLDs','Been here multiple times great service. Helpful and very equipped with the best machines and nicest staff! The registration with Okarys, Dr. Herbert, nurse Gabe and Rad tech Stephanie were amazing','2019-12-07 09:04:32.069000','2019-12-07 09:04:32.069000',5,'Michaela Dylag','https://lh3.googleusercontent.com/-UcLMSI6OMv8/AAAAAAAAAAI/AAAAAAAAAAA/DvgOaQdk95s/c-rp-mo-br100/photo.jpg','16590124370714063921',3042),('AIe9_BHVBnWjBJvk55vq2QEm0wl-JIbXUrcwqmr2wkWl6Od-JMZsAhPIePNNZowBKZ3uNEb8RPsVfJD88sAQvR7QY7i9e0wuiNoHmhVfS9dav2brFrad8fk','This was a wonderful experience from beginning the end. Raven and the other staff had some of the best customer service I’ve seen in a long time. \n\nI’ll definitely recommend this location to anyone I know.','2018-08-25 19:17:22.677000','2018-08-25 19:17:22.677000',5,'steve jones','https://lh3.googleusercontent.com/-QIMCEPCj76Q/AAAAAAAAAAI/AAAAAAAAAAA/eTE59srju3Y/c-rp-mo-br100/photo.jpg','8918455867446117794',9239),('AIe9_BHVBnWjBJvk55vq2QEm0wl-JJcF1sltey942neHxOzk10tsHRIg3XhsyvSUtOXJPic9DkuJ9uyTu3qpf_e8Fu3yn3iRCSbYtpqoAgeUoqX7azx5pQk','Quick, easy, and amazing service from Kendra, Jacob, Laura, and Dr. Vakey.','2020-02-02 21:35:50.059000','2020-02-02 21:35:50.059000',5,'Jason Norman','https://lh5.googleusercontent.com/-K_2uHtijEKo/AAAAAAAAAAI/AAAAAAAAAAA/yXDFcEmdRbY/c-rp-mo-br100/photo.jpg','16590124370714063921',10424),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Jl0A4GqPoasqjWz1iRhSbkWr3zJmVXe9ZIMZmpMx2MjpGHkhKp0UzrM9nv_LJy5zvEubwlr2_7nezH7alh61eKaTS6A','Kind and polite staff! Great people!\nFront desk really helpful, patient and nice: Naomi and Liz!\nNurse really helpful: Remington!','2019-06-24 23:41:14.348000','2019-06-24 23:41:14.348000',5,'Andrea Nunez','https://lh6.googleusercontent.com/-4pMOXZjOhDU/AAAAAAAAAAI/AAAAAAAAAAA/OM1kZVjovNE/c-rp-mo-br100/photo.jpg','16590124370714063921',3337),('AIe9_BHVBnWjBJvk55vq2QEm0wl-joPOEoBuV9Huh0FCHBL9N_W2F0AItWI92Vtp5jy2yYrGEjRgAiz3Quu_EbWvSzGZ7X-ekaRPK5NVOIEAq2jYkRNb_eg','I had an amazing experience with SignatureCare 1960. It is the BEST service you will get for Emergency Care in a freestanding location. No wait at all when I went and everyone treated me like a king. I will return if I am need of their care again!','2019-09-17 16:06:59.668000','2019-09-17 16:06:59.668000',5,'Sean Holt','https://lh3.googleusercontent.com/-dg4ToAYM7Kw/AAAAAAAAAAI/AAAAAAAAAAA/mh4w1udlwFU/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2905),('AIe9_BHVBnWjBJvk55vq2QEm0wl-jPmDUFR2qnycwvGSgAtJFYgxGM0CTrb0ONDROgjlLVv5yg-1MV1pjz2VcVlTyMkpJFpggdB202LQGxcDjcOKNU4UfMw',NULL,'2018-12-08 02:17:59.224000','2018-12-08 02:17:59.224000',5,'Ashley Morrison','https://lh4.googleusercontent.com/-aXNOWcq5qF0/AAAAAAAAAAI/AAAAAAAAAAA/1MyK3dEBT4A/c-rp-mo-br100/photo.jpg','16590124370714063921',3621),('AIe9_BHVBnWjBJvk55vq2QEm0wl-JrmbxX80iKyuFArhkvcB61IaCaRly1rTnmQCKXYmjFyX_fjzfFnZBalnxg8Vfe66Ek9EmJWwuNnAXVTXUb-ksR7B28w','Quick, helpful and courteous','2020-02-12 02:19:35.519000','2020-02-12 02:19:35.519000',4,'Desiray Rodriguez','https://lh5.googleusercontent.com/-9wuQ_3moR6s/AAAAAAAAAAI/AAAAAAAAAAA/yxsVgFFl8eI/c-rp-mo-br100/photo.jpg','2694018788013845459',14239),('AIe9_BHVBnWjBJvk55vq2QEm0wl-JuxZrVNakEKFJV5wmL4wTFbtMZwWfoIu1hLMplYB49BJfAlyezWLB7AL4CRMi33PM4cc3AFXzEUUZewHFXDVBorVNE4','Excellent and very thorough service!','2020-01-30 12:07:14.079000','2020-01-30 12:07:14.079000',5,'Liliana Luna','https://lh3.googleusercontent.com/-80MlsZPtdiE/AAAAAAAAAAI/AAAAAAAAAAA/EeBBJ1kvLlc/c-rp-mo-br100/photo.jpg','3272657195432704501',10473),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Jybv-dr_yUVy_OjHs4GghEutkUKwLYzwyT4PSQULaGPD9j-TWGlrMi2Po5bak_BwN-pLFzarid0UHEdgBHk0z6NTLro','Everyone was super nice and quick!','2020-03-08 06:59:30.751000','2020-03-07 12:27:25.549000',5,'Joseph Huerta','https://lh3.googleusercontent.com/-DYuXkEl5ru8/AAAAAAAAAAI/AAAAAAAAAAA/8fczijDelRU/c-rp-mo-br100/photo.jpg','16891069708558046635',11504),('AIe9_BHVBnWjBJvk55vq2QEm0wl-jZ6FCS5cZ26uXDoHlTbYV-yxuZ3nwnRi6Yu7W86iViIAOYnoZXUzwAQ3lxyFQSEUTi_AbZ6wnaOdJrZMBPamQrYEPRE','Awesome Hospital love the staff n the doctors, ur in n out n they take care of u n your family , hands down the best hospital ever','2020-01-17 21:49:03.025000','2020-01-17 21:49:03.025000',5,'Rechelda Stewart','https://lh5.googleusercontent.com/-MbzoKMIV5v4/AAAAAAAAAAI/AAAAAAAAAAA/Ygmy8TSXOoM/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',10020),('AIe9_BHVBnWjBJvk55vq2QEm0wl-K_AyM2pnXLPpevSm5FbzFTbRT3Ku4HIqBPaqWPa1ad6ByNrOm5bi68PEUpuSFGbt8vIhw5FgR31ScNZIRyV4A4Ey_ho','This ER Care Center is one of the best I’ve ever been to! Elizabeth was very helpful from the moment I walked in. Dr.Souman was very helpful and helped me with getting results fast and easy.Joey is one of the best CT doctors! The process was very fast here. I would recommend anyone to go here.','2020-01-26 05:57:16.529000','2020-01-26 05:57:16.529000',5,'Isa & Dez','https://lh5.googleusercontent.com/-qRm8vys4ouA/AAAAAAAAAAI/AAAAAAAAAAA/zIoHpl0dnCc/c-rp-mo-br100/photo.jpg','3511292162159714121',14445),('AIe9_BHVBnWjBJvk55vq2QEm0wl-k_boUB6dZMCfb2gNpnQvh_bIZjt5i2qD_aQ5FLVsGSWL1SMYENjvMrhXarMKDigu2JRsW2xyb5VLzXXt_CJ9GxuQtoI','Patricia C and nurse Alvean were very nice and helpful','2019-12-26 20:23:59.886000','2019-12-26 20:23:59.886000',5,'Fred Harrell','https://lh4.googleusercontent.com/-InTxU1MUWEc/AAAAAAAAAAI/AAAAAAAAAAA/iVXiODrnvhI/c-rp-mo-br100/photo.jpg','16389487648212004696',2512),('AIe9_BHVBnWjBJvk55vq2QEm0wl-K0o10P20L7dV5XLDxc2AD2wtqVIyWCNGmuriAOp77L3YD_ps1BcRc0vj_aL-aMEldNwLv0Bv0CTaJ5rifCs69uFtSi4','Quick but accurate care we always feel welcomed.','2019-01-30 15:05:45.699000','2019-01-30 15:05:45.699000',5,'Shevon Green','https://lh6.googleusercontent.com/-6c7toabfbgI/AAAAAAAAAAI/AAAAAAAAAAA/Ne7jlyCotlc/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',1079),('AIe9_BHVBnWjBJvk55vq2QEm0wl-KbBQk8y2uvrV52ldIF6OAk_CmA_gNbDeXt--5t9DIWomLc7CFbI2-1_1QNJOdqL1l5kFMJHnpoH_Bow7bdltU2EehTs','I greatly appreciate the help I got at this location today. Marcus was extremely helpful during the tests. Alvean, Jocelyn, and Olivia were also extremely nice and helped me remain calm. Thanks again to all of you for helping me get through it','2019-12-04 18:19:44.213000','2019-12-04 18:19:44.213000',5,'David Outland','https://lh4.googleusercontent.com/-T9v15EteYw4/AAAAAAAAAAI/AAAAAAAAAAA/6dZbOu4aRrI/c-rp-mo-br100/photo.jpg','16389487648212004696',2581),('AIe9_BHVBnWjBJvk55vq2QEm0wl-kF87pn7XuwMPpJIpVQ-otf76OhL5mzeuDBgVTXjZe8vNaiuvCkyiO7Q2gNM-Hxest_AH9mmlifiLVVqcytNYvZJbyQw',NULL,'2019-08-19 18:09:41.641000','2019-08-19 18:09:41.641000',5,'Laycee Gibson','https://lh6.googleusercontent.com/-SVa26LaLHJs/AAAAAAAAAAI/AAAAAAAAAAA/7BpBPvqbITw/c-rp-mo-br100/photo.jpg','16590124370714063921',3248),('AIe9_BHVBnWjBJvk55vq2QEm0wl-kMXD88xgXYc3ChG0hOtO-EqCbICEeBKbQNvsPMoYIQRpAXi84wkVLO7YbHfPRGxZX5sUiSihq-dY_p2c5z3M1Qx_8Bw','Lisa, Thoresa, Tabitha, and Ector all took very good care of us. Definitely the best care we’ve ever received. Everyone of these people have a great bedside manner. God willing we’ll never need an emergency room again, but should something happen this is definitely the place we’ll go.','2020-01-23 21:56:59.969000','2020-01-23 21:56:59.969000',5,'Claire Darnell','https://lh6.googleusercontent.com/-XylTQ4kg-98/AAAAAAAAAAI/AAAAAAAAAAA/PYnfSuK5m1s/c-rp-mo-br100/photo.jpg','6521947413723274945',8136),('AIe9_BHVBnWjBJvk55vq2QEm0wl-kN9pzZHfkq5E07F_jxEkpclhYmr5hrMHyT2j8gwF8NJgS6czd_utk6i3pFRmwQszf9Wx9dKkbzsubc3lvkPDbRVVMMc','Came into the center and was helped right away. Staff was super friendly and polite. I totally don\'t like hospital but if i have to make a trip I\'m definitely coming here first. They were fast to help with pain meds as we found out i have a kidney stone. Thank you so much for the help today.','2020-02-25 03:30:02.166000','2020-02-25 03:30:02.166000',5,'Bobbi Manchester','https://lh3.googleusercontent.com/-CPMIR9ThS9M/AAAAAAAAAAI/AAAAAAAAAAA/i0rbCi5VdKM/c-rp-mo-br100/photo.jpg','6521947413723274945',14548),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Ko5cJoM5yGA18MC1RIHNf4S1hVL4-tT6KLhAzyayDHgjUMGzQwhaN1jrOLOE5wodtAQw_IfHfxM_0uwHzIWxveJU5Wg','Wonderful experience at Signature Care. From the moment I walked in the took care of every problem I explained, the lab work took under thirty minutes the nurses and doctors were wonderful, Dr. Ding, Gabe, Dyveliz and Stephanie were awesome. Overall very helpful','2017-04-07 05:43:48.800000','2017-04-07 05:43:48.800000',5,'Macy Smith','https://lh3.googleusercontent.com/-e7flz0loV-E/AAAAAAAAAAI/AAAAAAAAAAA/jJytQfALcOA/c-rp-mo-br100/photo.jpg','16590124370714063921',4013),('AIe9_BHVBnWjBJvk55vq2QEm0wl-L3rMNVVQFVqFfJp2UKZ4d4k9M9quR-2ysmhFV_dZTvOeUcKPt8HMuzsksTMMR3yoYTGDuMrzgANYrvT1aNxuxtieGKI',NULL,'2020-06-17 18:44:20.671000','2020-06-17 18:44:20.671000',5,'Adrian Guillen','https://lh6.googleusercontent.com/-tm_lYrZZrM8/AAAAAAAAAAI/AAAAAAAAAAA/IzP2EWvAZpU/c-rp-mo-br100/photo.jpg','8918455867446117794',21231),('AIe9_BHVBnWjBJvk55vq2QEm0wl-l3sRPW7z8HwwNUkY8kIASZQjMlHFUIwGrGcbDdshFtFvpzZCW6UY_d8cAqpKHdo1Sj5QDg0EGKuYLlmVk8znsivhuhY','Was a great experience, very helpful, thanks to Dr.O\'Malley ,Alvean, Marcus B.,and Jesus.','2019-07-17 22:30:33.773000','2019-07-17 22:30:33.773000',5,'Silver Fox 72 Gaming','https://lh3.googleusercontent.com/-FE218yLXriY/AAAAAAAAAAI/AAAAAAAAAAA/TmE1ZBgHx9w/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-L5nXlT78-meJ7HmIbiuEIG15tk4uECvXZkqlKmyKPHSskShtHf6ESgpHOjAV3aR5jWalsT8kIHmQv7sK9lSEC8VL9xY','This place is amazing. There was no wait time at all. They took very care of my mom & gave her everything she needed. The staff was very helpful. Dr. Ortiz, Nurse Dana, red tech Marcus, Jocelyn, and er tech Jordan made us feel welcomed and gave great information. Definitely will be coming back here.','2019-12-16 16:49:35.575000','2019-12-16 16:49:35.575000',5,'Veronica C','https://lh6.googleusercontent.com/-9xq-9JBuTk8/AAAAAAAAAAI/AAAAAAAAAAA/1CH1FfF9HeU/c-rp-mo-br100/photo.jpg','16389487648212004696',2542),('AIe9_BHVBnWjBJvk55vq2QEm0wl-lEGY7pus4YX15UExnA1mngys_nveKm6pGAp2JG6Pzmxd8TKeJXBTVlrKzydekBpwZ3Dh4G3GIREDN99tWxfWePVD7u4','Very prompt service. Didn\'t have to wait at all. Ashley Burton was very nice & courteous when I came. Ashley was very gentle when drawing my labs. Erica was a very polite nurse that kept checking on me & ensuring I was comfortable.','2019-03-15 20:42:53.568000','2019-03-15 20:42:53.568000',5,'Mizz Independent_selfmade','https://lh4.googleusercontent.com/-UwuGr971oB8/AAAAAAAAAAI/AAAAAAAAAAA/Xwv7lWikM50/c-rp-mo-br100/photo.jpg','8626688543755174284',8526),('AIe9_BHVBnWjBJvk55vq2QEm0wl-lG8yPYaztSRDDtdSQBbztAab5faAEnh40aR1Clixy2iLjtxu2vvW9OS3xO_1Hbv-eySdFWUnH2vUubny8xHnpOdyJEE','Dr. Pradeep Golla and his staff were AWESOME! Very efficient and friendly. I\'m was very pleased with the whole visit, from Jordan at the front desk to Holly my nurse! Keep up the great work guys!! Thanks for everything.','2016-08-11 00:02:14.282000','2016-08-11 00:02:14.282000',5,'kelly ministero','https://lh3.googleusercontent.com/-To43b02LXvo/AAAAAAAAAAI/AAAAAAAAAAA/3abAMMwVey0/c-rp-mo-br100/photo.jpg','17394740196501090048',5215),('AIe9_BHVBnWjBJvk55vq2QEm0wl-lheUK9pKblEGZBmDhw2vIsCV7knrL9arGDmyQp5_q_4zsenl7N0kNvk-2E-6CoanFc1LrsqC2GyVYfF-cJe4af6t4Dc','Came in at 7am with severe stomach pain balling my eyes out and they treated me like gold. Staff was so nice and friendly! I’m so glad they take TriCare!!','2020-01-23 19:24:56.043000','2020-01-23 19:24:56.043000',5,'Desiree Bonavita','https://lh5.googleusercontent.com/-9S7PIRdYgYs/AAAAAAAAAAI/AAAAAAAAAAA/UPUIEH-tMDI/c-rp-mo-br100/photo.jpg','2694018788013845459',14267),('AIe9_BHVBnWjBJvk55vq2QEm0wl-liUnzcUDlr3qJ6nZSmvOqH0MUrK_ijebxyarb6gnyg5USXSUz7HaGHxdErZZUONYXlE1aavUafP6-2dK5f3FCg4xo88','My husbend got here felling nasea they took him fast .finding out what he has by test.\nThey friendly drs.taking good care of him.','2019-03-06 20:25:06.291000','2019-03-06 20:25:06.291000',5,'rachel lugo','https://lh6.googleusercontent.com/-7ggK4l29SYE/AAAAAAAAAAI/AAAAAAAAAAA/f_D0NQEAxLs/c-rp-mo-br100/photo.jpg','17898197009688164559',5820),('AIe9_BHVBnWjBJvk55vq2QEm0wl-LjE_h5H5uZ0tihcIUCSk951k1qnF8rs0kk5vRe544OHJNGGcUt0iK9MkJOg_nuSDsjG2qTunNiLbtFIlXE-Br2Bai-w','Visit was great keera was helpful too','2019-05-30 22:22:33.126000','2019-05-30 22:22:33.126000',5,'Yolanda Williams','https://lh6.googleusercontent.com/-Nshu1PABJ2Y/AAAAAAAAAAI/AAAAAAAAAAA/uTjb0Mpyb7E/c-rp-mo-br100/photo.jpg','17394740196501090048',4675),('AIe9_BHVBnWjBJvk55vq2QEm0wl-LLeka3xATr9ZhxKakOMK66Swdhhai4A59cYmLtlwhGMkVgk3lViXXaW0yC8xsiYhXXFjoOC0e8fq1LDNuCMoN2aratY','I have never been to and urgent care, emergency room or doctors office that provided this kind of care. The entire staff was awesome especially the doctor!','2016-07-27 15:16:02.420000','2016-07-27 15:16:02.420000',5,'Tiffany Coleman','https://lh5.googleusercontent.com/-9qkPiBcJy7I/AAAAAAAAAAI/AAAAAAAAAAA/0yFABsblr3E/c-rp-mo-br100/photo.jpg','17394740196501090048',5219),('AIe9_BHVBnWjBJvk55vq2QEm0wl-lQD4JMIs23vE57ebFN38Rs-l3ow9YVPHB_CfvO-ArU4xiSBip_5wcUd_KwtjvQhC2TyZHXP-95DZuI2zmRDFbm3TlW4','Dr Yusuf and the team was excellent','2019-01-05 14:55:41.495000','2019-01-05 14:55:41.495000',5,'Jennifer Rochlis','https://lh6.googleusercontent.com/-eYj-kd4ylQs/AAAAAAAAAAI/AAAAAAAAAAA/Mo6GFY2jPwM/c-rp-mo-br100/photo.jpg','3511292162159714121',7519),('AIe9_BHVBnWjBJvk55vq2QEm0wl-lqf_f-HM1ObYCKRhYsqP97BzW5VYh0gF8FTTDzPOP7S0ajiJkcbqeH22ltSq_SeUTMWOuQu3eEoWTJ-BrMyn3Hddv6U','When I first got to college station I would go to an emergency center in Bryan if something was up, but honestly I stumbled across them and was wildly surprised. Waiting room is always full of snacks and drinks for you, they get you in quickly and there’s no crazy wait time. I think the best part of it all is the friendly staff. Obviously you’re going there because you’re sick and probably really unhappy, but they always make you feel at home and give you a warm blanket. It’s almost as if your mom was taking care of you and making sure everything is okay. Love the staff they’re amazing and I will Continue to use this facility ! 🙏🏽❤️\n\nSo sorry, my doctor was Dr.Werzanski, Rn was Jacob, Becca was the tech, Lorena was at the front and Laura did my RAD. All were really friendly and eager to help! 😊','2019-06-08 19:24:01.866000','2019-06-08 19:24:01.866000',5,'Christina Hammami','https://lh3.googleusercontent.com/-Q2ZbZh0f2js/AAAAAAAAAAI/AAAAAAAAAAA/hV0K812TNEo/c-rp-mo-br100/photo.jpg','16590124370714063921',3365),('AIe9_BHVBnWjBJvk55vq2QEm0wl-LUQbeikHc90hQwWu4e3GRT_CbY4ESwb8CIkrZyQkUyWe-_7d-rAZwwWiX2RL8AHL5UgShXleK7lprS3SLpHI12OllXE','Had a very easy process thanks to the help from Cody, Brenda, and Nydia. I was in-and-out in no time.','2020-07-26 20:19:24.817000','2020-07-26 20:19:24.817000',5,'Eric Boecker','https://lh3.googleusercontent.com/-44v4qPJD-q4/AAAAAAAAAAI/AAAAAAAAAAA/oGxbn90k6Q8/c-rp-mo-br100/photo.jpg','2077061009497551125',22821),('AIe9_BHVBnWjBJvk55vq2QEm0wl-luqKSlTpUvBRT6H4SVEEC_6Cg-EXJmEY6hW-MceKMLjpYAnpEUMTEyK8LTwrX5tybTxAAIhvcC4WqqpjNDg4ZBylN6Q','Awe nurse Manny , and tech : Rachel. Very nice and friendly made me feel comfortable!','2019-01-06 22:13:36.770000','2019-01-06 22:13:36.770000',5,'Beverly Natividad','https://lh4.googleusercontent.com/-CEvCa00dLbQ/AAAAAAAAAAI/AAAAAAAAAAA/hYM6fnkMDZI/c-rp-mo-br100/photo.jpg','6521947413723274945',8331),('AIe9_BHVBnWjBJvk55vq2QEm0wl-M2xORFpvaSGKldH76cditRDS7rSssPU2CBXPfrdz-gaMr0X72jMhsHhRtL_sTTnk9oTut6XJYXi5ir9MTQMd3Sq3r1Q','Very clean Facility, Delicia was awesome, my nurse Blake was very professional and Dr. Ybarra was very thorough. To top it all off the bathrooms are super clean and the wait time was super low.','2020-01-24 15:39:54.650000','2020-01-24 15:39:54.650000',5,'Sa El','https://lh3.googleusercontent.com/-IH-2Ps3eHrE/AAAAAAAAAAI/AAAAAAAAAAA/CxL-U3f7pp8/c-rp-mo-br100/photo.jpg','8679688254631342173',10341),('AIe9_BHVBnWjBJvk55vq2QEm0wl-M5ibthwYCDOOO3wdM4V0bBzuIVKjXKXZeIS9y4xJlBtk4kS68J0P12wbmpVtmeisP0jNu8_PZjyIxdZXuB3sDJSO9Jw','All the staff was professional, efficient, kind, and ...well, Caring in a Signature kind of way! Thank you to Olivia Rey, Dr. Wren, Andrew, Aldolfo, Danny, and anybody else I forgot to mention who was at work behind the scenes!!','2018-04-21 15:31:00.475000','2018-04-21 15:31:00.475000',5,'Nathanael Hagens','https://lh3.googleusercontent.com/-cnzp_wf9bEk/AAAAAAAAAAI/AAAAAAAAAAA/PWyNL8pMU3g/c-rp-mo-br100/photo.jpg','14904078213800803294',2261),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mA4zPvFero4AJSdWNi-rfrbDxcknJKYjnU1PahT5_YxgHAX9QLzWC53-VhM1ekvFO1DMN2fZgBHnrEJm5aNLqCjUOrY','Love this place! I’ve never had to wait longer then 5 minutes to be seen and the doctors are so friendly here. I had the nicest rn Anthony and such a friendly pct Kirsten. 5 stars for sure!!','2019-04-17 20:44:03.815000','2019-04-17 20:44:03.815000',5,'christiana cole','https://lh4.googleusercontent.com/-ZH88Dt6mUKk/AAAAAAAAAAI/AAAAAAAAAAA/itv4IBxph8Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3423),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mBMU0CeXZ8JhNT3pQpPa0iEFPaaJimynydW2dA8dMOeZNzqUb7ZWEr3q_fWObrbMwVLIQAS7exY8E7sn2Pg3jjbRbVI','This facility is beautiful and most importantly, comfortable and free of fluorescent lighting and every hospital noises. In a moment of crisis, it was valuable. The waiting room was complete with refreshments, couches, charging stations and artwork. Great care great physicians. Thank you.','2019-04-28 01:01:41.756000','2019-04-28 01:01:41.756000',5,'Rachel Sill','https://lh4.googleusercontent.com/-PnY3ilQlb80/AAAAAAAAAAI/AAAAAAAAAAA/yIK5DtfC1wg/c-rp-mo-br100/photo.jpg','16891069708558046635',4296),('AIe9_BHVBnWjBJvk55vq2QEm0wl-MC_H5mZ9p0f2KdQFghLRvLJzVoftlyqGntVMX4WFyrK9pqOQ9huwTlgdLSwa1bMkEaEz0j0BPWQatq1mw0sk-SfaeNg','After stressing with several calls and no answers I finally got a call back from a very helpful young man, Aaron Ortega. He was efficient and quick to get me the appointment that would fit my schedule. Thank you !','2020-06-29 16:58:57.859000','2020-06-29 16:58:57.859000',5,'Karen Munsell','https://lh3.googleusercontent.com/-AwlhxXPGhSU/AAAAAAAAAAI/AAAAAAAAAAA/cM17BnX9N-s/c-rp-mo-br100/photo.jpg','13486358490203335051',21356),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mClq283JXIIVyzAiLsiLMDCt1dWwtw3y4L6M88IWTStMbFFM98QP3Kp1CmYKpz8WIkonFBpHzjOmmMIcTMVVgUy3q9s','SignatureCare T.C. is the best! Natalie checked my daughter in very quickly. Gina A & Vivienne N treated her with patience and helped her feel comfortable during her stay. Dr. Miller is very passionate and professional.','2020-01-30 17:02:32.557000','2020-01-30 17:02:32.557000',5,'Ed Adkison','https://lh3.googleusercontent.com/-civlNnbpYz4/AAAAAAAAAAI/AAAAAAAAAAA/JD33f5wSdt0/c-rp-mo-br100/photo.jpg','14567670160750071148',13579),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Me42e7SxFC5IpiD0ClTRcdw8F1OtUUdcvjK6TxuiFYm85jlQTxlej7XR2AGNl2Lvv2zkIGAdW7ma20neHNHY9pBLF28','Everyone was so professional. The visit was quick and efficient. Jani W was a great nurse. The radiology tech, Tricia, the Registration Person , Elida Jasmine were exceptional. There was very little wait time. Just a great experience, the best ER visit by far.','2019-12-05 20:04:06.961000','2019-12-05 20:04:06.961000',5,'Sharon Pryor','https://lh6.googleusercontent.com/-U39ZP5zlY4k/AAAAAAAAAAI/AAAAAAAAAAA/1ui-YsH3Cj4/c-rp-mo-br100/photo.jpg','16389487648212004696',2575),('AIe9_BHVBnWjBJvk55vq2QEm0wl-MEpUTIkxecEoBgsKjMTdJAu_qDel4HP9k8t8ju4J0jp-ZnEZuyAFne0U7Jxtgm9P513Rl4X5zabF_xQQQJtvIcKjKPY','Super fast & friendly service. Dr. Ortiz, Irving, Holly, Thelma & Channell were all very friendly and informative. Definitely the place to go for great service.','2020-02-25 10:42:22.914000','2020-02-25 10:42:22.914000',5,'Mizziz Petty','https://lh3.googleusercontent.com/-MxkaKuWfiYs/AAAAAAAAAAI/AAAAAAAAAAA/_q_UmwsX0sg/c-rp-mo-br100/photo.jpg','12541597562633926366',13345),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mEsrLPP55C2c-VfnUAleY2MvsoE_hfkrociYW4zk-8dIeBhROgItshnmTW-5KY9MinY-KXty26PnQEl53HBZKykfmSs','Quick friendly amazing service... will refer and return😃','2019-09-20 19:56:27.933000','2019-09-20 19:56:27.933000',5,'Monica Sheree Garrison','https://lh4.googleusercontent.com/-uDxtypthbKw/AAAAAAAAAAI/AAAAAAAAAAA/4N_hN47uhi8/c-rp-mo-br100/photo.jpg','3272657195432704501',6888),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mGeeQgUqchU0EbJPg9u8X1cRc8BRXtEk-2hXO546ONujqurbBmxkSkeQChABWaGjLWhbh23ngIINkdkphakZVh3FOZ8','Fantastic place, my daughter wasnt feeling well brought her and had her seen\n Friendly people, very through. Clean and super fantastic care. Went above and beyond to be helpful and make me feel at ease. Highly recommend.','2019-11-11 09:20:21.132000','2019-11-11 09:20:21.132000',5,'Melinda Daniel','https://lh4.googleusercontent.com/-OHP2xaiNo4o/AAAAAAAAAAI/AAAAAAAAAAA/We4OYjYx7zY/c-rp-mo-br100/photo.jpg','3272657195432704501',6863),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Mi2VGvtvhmcHwj9r3-lu5_lC5RqrQZWYtj7Pj7ysuoM1lMs5o1olpqUMAnNnkgQbpbcs1a97MD3hUpeKCwCNA5jBTUw','Great experience!\nDr Patel,Sarah,Fatima,Daniel,tanisha were excellent !\nHouda Benamar','2019-12-11 04:21:07.394000','2019-12-11 04:21:07.394000',5,'Houda Benamar','https://lh4.googleusercontent.com/-rPbx1ibZRPE/AAAAAAAAAAI/AAAAAAAAAAA/af6ctPKO-10/c-rp-mo-br100/photo.jpg','17898197009688164559',5364),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mk-gRtRBXbt9yUc7rkzINnROhpRvZdg7mPDidquu5-lhu9RQ5c4PoPGUj20yUasVrd3CZxhSf5LprZ_9Q7ElCLcB1Ng','The Staff was great and very helpful .','2020-01-16 18:14:53.871000','2020-01-16 18:14:53.871000',5,'Tramaine Hayes','https://lh4.googleusercontent.com/-9mpoC8pGzHE/AAAAAAAAAAI/AAAAAAAAAAA/4gC1XBowS_k/c-rp-mo-br100/photo.jpg','16389487648212004696',2588),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mL6Py8HwRVkxhLpXsfZlXMHqsBz2lOTSnpRywSuagQg_ZJt_A3qAiFBdaNeQojyXc0PN1aOyxFWa6J7myF9_xZoy-_Q','I had a great experience at Signature Care Heights. Jocelyn is the best she was very nice and professional. They took very good care of me. And answered all my questions and concerns. I strong recommend visiting Signature Care Heights if you every feel sick. The nurses and Doctor are the best.','2018-08-14 18:04:48.426000','2018-08-14 18:04:48.426000',5,'Michelle Gordwin','https://lh4.googleusercontent.com/-8zpNSjDMJwc/AAAAAAAAAAI/AAAAAAAAAAA/HgHhIhws358/c-rp-mo-br100/photo.jpg','14567670160750071148',1568),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mQhymmf1ooPR-teOJiM7VAWrpMXNqeJH8Dp1rOxTGLugPIRVfHo6hWbtcELH28hzPJi_ImFnh4YuzZ6K4VlTBVOF4sU',NULL,'2020-03-09 21:21:27.331000','2020-03-09 21:21:27.331000',5,'Maria Aguilar','https://lh3.googleusercontent.com/-lM3EuZWBxT0/AAAAAAAAAAI/AAAAAAAAAAA/tvJKPQVXpmQ/c-rp-mo-br100/photo.jpg','13486358490203335051',20927),('AIe9_BHVBnWjBJvk55vq2QEm0wl-MVlI6Fvd8RYoqXJMyfurR2xW8tVc30VbwC38jnTla2otCIWQmAES9QDfTft_rTAlq_l7ou3KxQkG-AyTUSyz6z5DXJ4','This place has a great system going for Covid 19 testing. Check-in was quick and easy, staff was professional and received results in approx 15','2020-07-26 01:11:19.181000','2020-07-26 01:11:19.181000',5,'Alex Paz','https://lh5.googleusercontent.com/-33tpO-gMELY/AAAAAAAAAAI/AAAAAAAAAAA/jVDx6cvyzrU/c-rp-mo-br100/photo.jpg','2077061009497551125',22837),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mx2xVwW11QVnbVrScjAJzWtCAShA6VnNQjr8-BSEDLwk4t7SPkV8YZGoQtZ-SEYxI-f_1zPSSR0C4qUluND9gPnVLMw','Fast friendly service. Nice equipment. Floor could have been cleaner. I noticed dirt and food crumbs in my room. ','2017-08-07 16:10:39.639000','2017-08-07 16:10:39.639000',4,'Scott R','https://lh6.googleusercontent.com/-39kjVyarhDE/AAAAAAAAAAI/AAAAAAAAAAA/pInope97kj0/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1777),('AIe9_BHVBnWjBJvk55vq2QEm0wl-mzaBEHGFK0h99QAQdNr8I2JGIB2TbBE5_vA0STsOtkuUYYbkBTr16LPLSDksR2V2C6vQ56hmHW1y57hZp4cVV7smKY8','Great staff and operation from my experience!','2020-08-07 19:13:47.229000','2020-08-07 19:13:47.229000',5,'John Burk','https://lh6.googleusercontent.com/-1yNpqXa6Ec8/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckLXjXxN-JzVh9iqocUJbzPL1LF3w/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22258),('AIe9_BHVBnWjBJvk55vq2QEm0wl-n14rWP3Sw0-Zy6E6dSlh_Ed77RKGpc4dc1Kxm2a4u2qVR73CSdgqrZVAl_w-gim-7k4yg9tfje2dQOEL_rn_ea0O2FI','I had a wonderful visit very nice lady assured the comfort of the test Theresa m','2020-07-20 20:04:48.241000','2020-07-20 20:04:48.241000',5,'James Mckinney','https://lh5.googleusercontent.com/-UybpLJoz3PU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm2vb3kNEl13UQ8fQig2GHt3381lg/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22224),('AIe9_BHVBnWjBJvk55vq2QEm0wl-n1JUe_-sv_gVrs1acE0PM0U9fVSlWpSM5HWOIa_EYgQE3lkykMcvBwWjjYwyU0mowa6mFyW3YKopx_TzhDYtfbsQhUQ','Thank you to to staff at Signature Care Center emergency care off of Montrose. Yesterday, I came down with some virus that crushed me. My fever shot up from 100-103+*F. It takes an awful lot for me to go to the ER. \n\nThis staff was nothing but professional from top to bottom. My dad came down with 18 blood clots, and the months I spent in ICU with him, I’ve seen so many nurses this year. Not to mention that my brother is a top floater nurse in San Antonio. So I know a thing or two about hospital nurses and doctors. \n\nThis group was abosolutely as good as it gets. I don’t know who manages this place, but every single person below deserves a raise. This is what you call top level medical services. This younger staff has a bright future in the medical field. \n\nThank you all\n\nDR. YUSUF, DO, SAMAR \nNurse: Hamzah J A \nRadiology Tech: Marvin A M \nFront Desk: Natalie S G.','2019-01-07 16:18:47.551000','2019-01-07 16:18:47.551000',5,'Mark Weathers','https://lh3.googleusercontent.com/-VKSWUDpLIh8/AAAAAAAAAAI/AAAAAAAAAAA/CTsqC5exows/c-rp-mo-br100/photo.jpg','3511292162159714121',7510),('AIe9_BHVBnWjBJvk55vq2QEm0wl-n52yk0NZbSdsZdR9NxNM30ITEskHTq5fmXTVIXHcycZbcDO4m2syAillyCxoaqUnLTR1APtxU7a2CSlOTB-9TX7ZY7o','Dr Estevez was so thorough and helpful. Alvean and Tricia were so caring and comforting while I was in pain. I will definitely recommend them to my friends.','2019-07-25 23:13:31.349000','2019-07-25 23:13:31.349000',5,'Heather Smith','https://lh6.googleusercontent.com/-UgG6Nh6iWVM/AAAAAAAAAAI/AAAAAAAAAAA/hBQ119HjvTk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-n9zD-ABsQMI02-_9oQtdahXPsn5Kmhfy9ghhAw7uFktGLA1JQKEbxPNq1wDSxLACHaDmGxOzmiineQHeoZgWyLk8ZDw','I had to come here while on vacation. And they were fast, and very caring and helpfull. Id recommend over urgent care anytime.','2019-03-07 17:11:55.960000','2019-03-07 17:11:55.960000',5,'Jeffrey Fredrickson','https://lh3.googleusercontent.com/-JjP2tpO-bTE/AAAAAAAAAAI/AAAAAAAAAAA/AztsDrrn4SY/c-rp-mo-br100/photo.jpg','16891069708558046635',4329),('AIe9_BHVBnWjBJvk55vq2QEm0wl-NcJhFqg71z68q0S7DeBFqEbp9_Q5fBUa2yQzuCZiuwJ3ea3tcp8q_fSeH-OfVroldYX7qFjuqKJv-OmWg_yY-hqXM8U',NULL,'2020-01-18 03:50:23.570000','2020-01-18 03:50:23.570000',5,'Eduardo Villarreal','https://lh6.googleusercontent.com/-aJ_SGe0rb8g/AAAAAAAAAAI/AAAAAAAAAAA/cTwHDPz_9B4/c-rp-mo-br100/photo.jpg','13486358490203335051',13471),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ngAmMNAebF0NTBOmdw368HN8z3d2Wvd0oA4El4_bv0KLn-ET4-x2HaPw1gxGcuJWZekoGU9DtG5BGYoJUAFv4zjbph0','The staff was very professional, patient and super friendly. Sita, Allison and Leah made me comfortable and explained what they were doing. I will recommend Signature Care to all my friends, family and colleagues','2020-03-02 02:56:23.934000','2020-03-02 02:56:23.934000',5,'Zonjia Jackson','https://lh3.googleusercontent.com/-M3EejfiEav0/AAAAAAAAAAI/AAAAAAAAAAA/YR1uhRfgrpU/c-rp-mo-br100/photo.jpg','13486358490203335051',17155),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Nm1OilFhqefECDi2sJPfgZOdZRwHfYLCphfS-ARjInhIO4umjAUkx8atoVmWVb50iK6rTheBgIWXpt0zFEAwHjx2yp4','Dr. Ybarra, Karen,Sonny,and Delicia made our experience so comfortable. I am grateful for their professionalism and service','2019-12-27 20:25:38.816000','2019-12-27 20:25:38.816000',5,'Sherrel Lemon','https://lh6.googleusercontent.com/-LL6iw4Ssj0I/AAAAAAAAAAI/AAAAAAAAAAA/Q3WQMh3qkTo/c-rp-mo-br100/photo.jpg','8679688254631342173',8667),('AIe9_BHVBnWjBJvk55vq2QEm0wl-NnQlaEdLPVBnYFTZg15cZO8kIsbO6gTGyIvjNsaeW_6m4MBXwOJ1QMYtSKZ2P5Yj4GgiHHwFY80sSaUSS_Xwo4rD0mA','Very thorough and friendly! Thanks for the great service!','2016-12-21 22:40:07.290000','2016-12-21 22:40:07.290000',5,'Natalie Pappas','https://lh3.googleusercontent.com/-pnlJJJ8nBps/AAAAAAAAAAI/AAAAAAAAAAA/Lckc3D-vTcw/c-rp-mo-br100/photo.jpg','3511292162159714121',7912),('AIe9_BHVBnWjBJvk55vq2QEm0wl-NteNMpQm5XrehUTjOufT0DFkHm8Z_v-1BvyTMxtHKWe2vQQk7oP5XRYWgT5xLu6Mpmptj-Q_R--KgyFWsoeeAeZdhA0','We brought my daughter in with severe abdominal pain. They had to stick her 3 times to get an IV started. The doctor examined her and said that it wasn\'t her appendix so he was ordering an ultrasound. He was very abrupt and they kept us waiting even though no one was doing anything in the entire place and she was the only patient. We got out of there bc she and I were both very uncomfortable with the care she was receiving and she ended up having emergency surgery the next day to remove her appendix. Had we stayed, it likely would have ruptured because of the initial misdiagnosis. We were there less than an hour and they only did labs that they ran in the office and we got a bill for $2226.00. Even if they find something, you\'re going to have to go to a real hospital anyway so avoid this place.','2018-10-23 12:56:16.944000','2018-10-23 12:56:16.944000',1,'Caroline Roberts','https://lh5.googleusercontent.com/-gviidq96BaM/AAAAAAAAAAI/AAAAAAAAAAA/OI1Hp2OC5Y0/c-rp-mo-br100/photo.jpg','16590124370714063921',3691),('AIe9_BHVBnWjBJvk55vq2QEm0wl-NUnoV105W-Nx2Wv2-6Wd2ADV-9vucjIAdjKOa8n9ZLz0xCrxJd9-QeSPjw7WPtsrlJFdTv5fwIICrbYdRSeGdAYKvJI','Very kind and quick service. Love the style inside amd Doctor Zajack was super nice and Ria was a sweet heart. They worked with and treated me regardless of no insurance. Would come here again over any other ER. Would most deffentaly recommend coming here!','2019-05-24 19:10:14.928000','2019-05-24 19:10:14.928000',5,'Billi Dean','https://lh4.googleusercontent.com/-Kqyki_JF2Mc/AAAAAAAAAAI/AAAAAAAAAAA/ox7c2EWBNdg/c-rp-mo-br100/photo.jpg','2694018788013845459',6145),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Nv1SPESKp1WSr_U_chdozKT8I-aXoNBVspONEKceDBbV9Lk5IqUOqwV7jb_fSg6ivoiGDkKe1gxQV5lPmWs4nAwHKuw','brought my boyfriend in this morning for throat pain and fever and his pain was addressed immediately. lorena, brad, morgan, and dr kimball got us in and out so fast!','2019-12-31 14:36:14.579000','2019-12-31 14:36:14.579000',5,'Beatrice Altiner','https://lh3.googleusercontent.com/-sSR877onvdw/AAAAAAAAAAI/AAAAAAAAAAA/8UoSQeAHWOA/c-rp-mo-br100/photo.jpg','16590124370714063921',2998),('AIe9_BHVBnWjBJvk55vq2QEm0wl-nvjrRiw-CwRKTHZL1DJkaIZwV0AqUR3FUAPkXbFs1dLG8xYZKZXKZ0U92aBeCsd1ughIjysiGyR-jvlyPQKfokWkS1M','Signature Care was fabulous! Went in for a rapid Covid test and the front desk ladies were extremely friendly, as well as the doctors and nurses that tested me. Results were fast and they were able to answer all of my questions. Thanks so much Signature Care!!!','2020-08-07 22:21:42.318000','2020-08-07 22:21:42.318000',5,'Marissa Vasquez','https://lh3.googleusercontent.com/a-/AOh14Gi7FQGw3bsHTH-PJ3Rivh82uZCFIB8rQx63Vnru=c0x00000000-cc-rp','16891069708558046635',22028),('AIe9_BHVBnWjBJvk55vq2QEm0wl-nyTaHONiblFu2c8_KptcpK5RHCBxfDFtZM2BXNxGp1vFJShM1W13YxUGEthb2dDMh1uVBpPc2mQcsRYxKFZ-RUuk9bI','Very good experience at this ER. Service was fast and the staff (Dr. Estevez, Racheal and Kyla RN, ER tech and receptionist) was very friendly and knowledgeable. Highly recommend','2020-03-01 21:05:05.708000','2020-03-01 21:05:05.708000',5,'jasmine sandesara','https://lh5.googleusercontent.com/-Ucne1Zk1XqI/AAAAAAAAAAI/AAAAAAAAAAA/I_-cpKU3pQk/c-rp-mo-br100/photo.jpg','17898197009688164559',14119),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Nz5kADd6-Pq_Y9-ijtO3udCwudurP2dHS35ORZDIAitE7e2l8RTKaAUwkiNr52YkOVBoWRJNXL7iP1HLXkPHzNZQrak','Great doctors and staff, fast service','2016-12-31 17:50:26.738000','2016-12-31 17:50:26.738000',5,'LaLa Notorious','https://lh3.googleusercontent.com/-1nXSAaxJi4c/AAAAAAAAAAI/AAAAAAAAAAA/v1bzKQmXBRY/c-rp-mo-br100/photo.jpg','3272657195432704501',7111),('AIe9_BHVBnWjBJvk55vq2QEm0wl-nzxC0LqBffcGfmLcMBXhlNwgn1ZkMb_e3ha5HNUdEQOkiByF02lwg4F60OFCML0KUM_tLi-6YVdDqthsT8TvJ05EqBM','Love this place, my wife has come several\nTimes for different reasons and the service is amazing the staff are friendly and the facilities are beautiful! Dr. O’Malley is incredible! Rn: Dana was so sweet and very nice to my wife during her stay here! 5 stars would definitely recommend again!','2020-01-25 03:03:36.859000','2020-01-25 03:03:36.859000',5,'Andrew Bujan','https://lh4.googleusercontent.com/-RbfQm7w06OI/AAAAAAAAAAI/AAAAAAAAAAA/Gtepy79MKYY/c-rp-mo-br100/photo.jpg','16389487648212004696',10183),('AIe9_BHVBnWjBJvk55vq2QEm0wl-O2bTNU0YFplWxwP1yUu_7vqMv_oo96iNXlPG2eNgtnffqpHumARC77KgV0EXBmeJ84EwqmER1UgWOEJfCzT1IkCTCz4','Awesome ER. Was brought back right away. Front office Christina was very welcoming. Tina and Cara were great. Super friendly. Dr. Lingan saw we quickly and very knowledgeable. Great experience all around.','2019-07-12 15:32:54.384000','2019-07-12 15:32:54.384000',5,'Carli Holt','https://lh5.googleusercontent.com/-0fVOutSatzE/AAAAAAAAAAI/AAAAAAAAAAA/ujC1psmF1II/c-rp-mo-br100/photo.jpg','16891069708558046635',4236),('AIe9_BHVBnWjBJvk55vq2QEm0wl-o7PFtJzkWoL14N7ru74vdft_5Lj6fdJQMpa0dN_b3yw59xX-jfZwLZYbRYAvLAB7aFnLXWSveNGqlUTfoKX-2yMwqrg','Everyone at signature care was so wonderful and took great care of me! Even though I was in a lot of pain from my broken leg I still enjoyed my time at the Montrose signature care center! DR. Patel, Laura M., Richard, and Brittney were all so sweet. Thank you!','2017-01-23 15:17:54.513000','2017-01-23 15:17:54.513000',5,'Cayla Lynch','https://lh3.googleusercontent.com/-qtBe40bCMYQ/AAAAAAAAAAI/AAAAAAAAAAA/OtkOs-9q4bQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7895),('AIe9_BHVBnWjBJvk55vq2QEm0wl-obQx76Tve9Z55dqrb8cqIGEfvLXEERPPnup9SBz9eU2yT0Dl5UUpAvAJn-LmghY2TyafzrXCf4K2IHtdf6w3RbGBdLg','This was the best clinic I have ever walked into. Super clean & efficient. Everyone treated me with respect, concern & kindness. Very fast treatment. I was in & out with medication in about 30 minutes.','2019-04-30 18:21:54.516000','2019-04-30 18:21:54.516000',5,'Robin Klement','https://lh6.googleusercontent.com/-rj_OdG6q1ZQ/AAAAAAAAAAI/AAAAAAAAAAA/5aucb4yA9Es/c-rp-mo-br100/photo.jpg','8679688254631342173',8847),('AIe9_BHVBnWjBJvk55vq2QEm0wl-oC55BNoevsqYnGyPKT-LBm6PtNBgltsO6phLSL1xJ_TGPDct166DOPfTDKQbjpvanwGEHIIbbf6sXFtAzGVow-fp50Q','Awesome and very easy experience. Great staff! Dr. Morrical and Nurse Ricky were great!','2020-02-29 00:56:11.755000','2020-02-29 00:56:11.755000',5,'Tony Clark','https://lh3.googleusercontent.com/-rYkNvC76d7Q/AAAAAAAAAAI/AAAAAAAAAAA/mi1X1cmSrAg/c-rp-mo-br100/photo.jpg','12541597562633926366',13328),('AIe9_BHVBnWjBJvk55vq2QEm0wl-oifdQJi0b4Ym2y5UdVG4XUuyWvq9YEejZ4QSq_MeW66y5GhOV1oYh09jtWCe-FG3PtnPzDRsIkrKJb8BRhhqHRoySdI','It was a pleasant and funny visit considering the circumstances of my visit. Tanishia greeted me and made me feel welcome.','2019-07-31 02:47:58.098000','2019-07-31 02:47:58.098000',5,'Tyler Junier','https://lh3.googleusercontent.com/-j3UtmxxcfdA/AAAAAAAAAAI/AAAAAAAAAAA/qBZrignCiWI/c-rp-mo-br100/photo.jpg','17898197009688164559',5612),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ojUwWP0Nt6gxcfEh-BwW0A0plvpMN1IT0_1JRSI1kQugEgnBZdcv9dUrt6O3FYqNtzBZptwoSxqkh0IzeMUayz1FBzc','So I was having a lot of pain in my hip and leg and I was skeptical about coming at first. Glad that I did. Ana waS very nice and cordial at check in. Christian was friendly while getting me settled in the room. Her and my nurse Sarra even liftted my legs onto the because I was unable to do so alone. The radiology tech, Holly also took great care in handling my painful areas during imaging. Lastly, Dr. Daniels was very knowledgeable and friendly. Great experience here and while the painn may still be around, they definitely helped while I was in their care.','2020-02-02 02:33:18.728000','2020-02-02 02:33:18.728000',5,'Gary Hill','https://lh3.googleusercontent.com/-Or61tgWcGIY/AAAAAAAAAAI/AAAAAAAAAAA/YvR9BzCR4qc/c-rp-mo-br100/photo.jpg','12541597562633926366',10375),('AIe9_BHVBnWjBJvk55vq2QEm0wl-opuW8lvDcIxFZQa1PG577YosL6eY7NVfFNQSScqskAaAqh9ahfpR7tHnt_1vVnZh3sc_caPCvosXxtnrrJ7VFV42s9k','This experience was great! Staff was very friendly, and was overall a smooth visit. Would recommend.','2020-07-28 03:58:47.483000','2020-07-28 03:58:47.483000',5,'Katherine Mankin','https://lh3.googleusercontent.com/-v1QWzm8DrGk/AAAAAAAAAAI/AAAAAAAAAAA/PjOyWGXGD88/c-rp-mo-br100/photo.jpg','14748677429039074158',22542),('AIe9_BHVBnWjBJvk55vq2QEm0wl-OqQFFA0pUKMZ6wV1qbvmiH5XCiby7voAN39NK63q3VtlL0ItxB2HsCtIJOlqxP5tR0-zoe6EL6Z1nTdMZ_RxjuQ5PQE','Fast, efficient, friendly service','2020-07-30 13:40:34.986000','2020-07-30 13:40:34.986000',5,'Audrey Hu-Gonzalez','https://lh5.googleusercontent.com/-hEQ7WaP7tfc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnVI8jA3ggCHQ5PVAPWECCK6mGFhQ/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22274),('AIe9_BHVBnWjBJvk55vq2QEm0wl-OWoeYFnB2UPr1azBtsPWPl-HwWHmdw-m1GAiBgLVSvb8ff-XLJYCPapEC6p_mjrBKiGNvzA-GYHfTkEX_Y7x_m8snY8','The staff was completely friendly and courteous. From the time the I stepped in the Front door I was seen immediately. I appreciate everything that Dr. Miller, Nurse Laura, Ms. Denise, and Ms. Eve had done for me. This is wonderful crew and would recommend anyone to this facility. Thanks guys you all are the best.','2018-10-09 17:03:49.260000','2018-10-09 17:03:49.260000',5,'Lady Shay','https://lh4.googleusercontent.com/-8gcCF6ZmnSU/AAAAAAAAAAI/AAAAAAAAAAA/7UEHqSf9JGA/c-rp-mo-br100/photo.jpg','3511292162159714121',7574),('AIe9_BHVBnWjBJvk55vq2QEm0wl-oy6uLFlUVanKtx_MegV3A5alBRu-Di0SbpQ_-9vRgliRtXuNio6pbswZwI5JzAAgXWoY3TI_Y1XSMI2evvkzZxQrU3k','Excellent service.','2019-05-08 19:07:18.824000','2019-05-08 19:07:18.824000',5,'Enilie SM','https://lh6.googleusercontent.com/-e0-pwRhdsXk/AAAAAAAAAAI/AAAAAAAAAAA/mOuzpyy8zjo/c-rp-mo-br100/photo.jpg','2694018788013845459',6162),('AIe9_BHVBnWjBJvk55vq2QEm0wl-OYIO-97HvEvV3eb5MUnvB5rqIQ7TOILOIV_bAwdFu_zUpG-yL_oUqpk44huX2wUowzum0_9bP2LQPwJLzG4yPiNabP4','I really enjoyed how nice everyone was, the doc was very helpful. We were in and out with no problems. I would go again!!!!','2017-02-24 23:49:10.292000','2017-02-24 23:49:10.292000',5,'Amanda Gonzalez','https://lh6.googleusercontent.com/-ByTgiTMUTTk/AAAAAAAAAAI/AAAAAAAAAAA/VjVNQ0_h9kE/c-rp-mo-br100/photo.jpg','14567670160750071148',1879),('AIe9_BHVBnWjBJvk55vq2QEm0wl-oYkPTfqDJPleUZ49S_HwYa-LrLb6gL-VIyfMBEoemmGA3wvqIDFDraFBLcWgz4EJwC-q60o70d-xo_Dk43QXQrk8pbA','Excellent experience.\nHardly any waiting time with through examination by exceptionally qualified doctors and staff','2017-07-30 07:55:34.257000','2017-07-30 07:55:34.257000',5,'Tooba Jawwad','https://lh5.googleusercontent.com/-U3JYlKLZWJY/AAAAAAAAAAI/AAAAAAAAAAA/kiVkgbpBTPg/c-rp-mo-br100/photo.jpg','17394740196501090048',5011),('AIe9_BHVBnWjBJvk55vq2QEm0wl-OZ4slgTFLNeOMY336bVOawpThfnxgDiRYpRpR0mikXIKjxNRUh4sQ8W_L8BFjagZ2Vnh2_QJ_dxX9QxB14zdwP5WE9I','I only went because they told me it’s quick service. So my husband went in for laceration in the face and needed stitches\n They put us in the room once we got there but we waited hours in the room for the doctor(dr Chen) to finally come in and put simple stitches, it seemed like he didn’t know what he was doing half of the time when putting stitches, we were the only patients there that night and they billed me for 8 gran towards my insurance. Should of just gone to the hospital emergency room and they would attended to us quicker and put the stitches on quicker and of course the bill would of been less. I would of thought as an emergency/urgent care center would be less. Then they had the nerve to call months later and nag over a pending bill, when we never received nothing. I was actually waiting for it but I thought since nothing came in I thought the insurance covered it all. Maybe they put the wrong address in the system after we gave them the ID with the accurate information.\n\nWould never ever go back to this place','2019-08-01 03:18:55.380000','2019-08-01 03:18:55.380000',1,'Elizabeth Gudino','https://lh6.googleusercontent.com/-Dgm4NbQdmQQ/AAAAAAAAAAI/AAAAAAAAAAA/vfT3uS73znI/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9082),('AIe9_BHVBnWjBJvk55vq2QEm0wl-p3CwBeKBPCjbK_3itvbqvqGkVVGQYnLMpUm0kEGipXrlkOFpkmoNmYTw_KdLS_1l0L51VSkq15FZm8rvogF88sbCC5s','Nice clean and friendly staff! I would bring my family anytime it’s needed! Thanks','2017-11-16 19:32:47.745000','2017-11-16 19:32:47.745000',5,'Princess E\'myiah','https://lh4.googleusercontent.com/-ehNOcxc55XQ/AAAAAAAAAAI/AAAAAAAAAAA/FMBVIKDvKMU/c-rp-mo-br100/photo.jpg','8918455867446117794',9338),('AIe9_BHVBnWjBJvk55vq2QEm0wl-P3xDXvuFVbRhpBDqvV2Zx3y-ZmGNzrscEebpW7dF8dbh7fivNu14rdYGhCM1OwyzGR03yBY60dQuW5lOUJWyZUlpBKs','I was visiting from Florida when I had severe belly pain. The staff put me at ease and treated me like family. Thank you Dr Wang, Jenn, Shay, Trisha and Ariel for making my visit great.','2019-05-11 10:22:23.866000','2019-05-11 10:22:23.866000',5,'Ricky Bobby','https://lh5.googleusercontent.com/-o3wjPBhkwAE/AAAAAAAAAAI/AAAAAAAAAAA/1VwCVxuyG6E/c-rp-mo-br100/photo.jpg','12541597562633926366',506),('AIe9_BHVBnWjBJvk55vq2QEm0wl-P7KbD8rDwlsuVXt4hkZGjebkjQJJ_PjqNfVMQai9Zt3nTcjt25oghKuxx_vU9yKT-RWfcOcVhetpR9guKMl8XQeLILE','We had a great visit with Dr. Appiah. The registration, Tanishia, was very pleasant and quick getting us registered. The nurse Chantel was super sweet and saw us really fast.','2020-02-24 01:31:27.092000','2020-02-24 01:31:27.092000',5,'Dominique Perez','https://lh4.googleusercontent.com/-0q45VD8lsbg/AAAAAAAAAAI/AAAAAAAAAAA/cAn2caMV1Ik/c-rp-mo-br100/photo.jpg','17898197009688164559',14128),('AIe9_BHVBnWjBJvk55vq2QEm0wl-p7RUR_hXclyNA0_LLP0ITs6gh72ZKZf4udolu9jD7c9fc5J6ZrTywM2Nlo-LoPuluSoXEx-zpUTiCzHVryCLixAEnec','A chemical burn on my eye was what brought me in. Tanishia was wonderful in the check in process and it was a very expedient visit. I was treated very respectfully the whole team that took care of me, Angel, Nurse Lynn, and Dr. Cavasos.','2020-02-17 04:54:12.232000','2020-02-17 04:54:12.232000',5,'Lene Bruheim','https://lh4.googleusercontent.com/-ED4Ct6ZQ6tU/AAAAAAAAAAI/AAAAAAAAAAA/GSeksA9xBQE/c-rp-mo-br100/photo.jpg','17898197009688164559',14165),('AIe9_BHVBnWjBJvk55vq2QEm0wl-P9PdPHrp3EZel1dZ1Cgy11LjFomwS1JTCeNGt09CUi6nMs97267XDpXU_08zDa9reG8kE-JsMm9DPDq8Fja6-HIpuSs','Amazing visit! Jessica S. was so nice!!','2019-12-06 04:25:18.022000','2019-12-06 04:25:18.022000',5,'Martin Rico','https://lh6.googleusercontent.com/-0PvY0zzlLk0/AAAAAAAAAAI/AAAAAAAAAAA/dF3Ls0YvzBE/c-rp-mo-br100/photo.jpg','6521947413723274945',8073),('AIe9_BHVBnWjBJvk55vq2QEm0wl-PCQ7hyRYBUs8UQSnmcK7z_5VLmIrLmwQYKxizokcS_P5P8IIR4L3e66XOwdSBf4StQn_-S8xNOcytyIPXikdEKWJrwc','I was given maximum attention and care. I felt at home and properly helped and It was absolutely satisfactory. Thank you very much and God bless','2017-08-07 02:15:14.898000','2017-08-07 02:15:14.898000',5,'Lilian Likhaya','https://lh3.googleusercontent.com/-QC210VJTREo/AAAAAAAAAAI/AAAAAAAAAAA/MUOkVt63VYA/c-rp-mo-br100/photo.jpg','17394740196501090048',5004),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Pd84re8kjCb9-ly8coQW7ai-0Tkj8hIZeVoKcLlutOp7LfVxfHZcq2SOvXWd9DU4eTotu4MQl46qMCn6xEO9EUh0AZo','Had an amazing experience both times I went . They listened and were really patient. Sindy Selina Jesse and dr Duano were amazon . Loved the front reception she’s always friendly and nice','2020-03-07 21:13:31.579000','2020-03-07 21:13:31.579000',5,'Adeleke Adekoya','https://lh3.googleusercontent.com/--C27poq8_lc/AAAAAAAAAAI/AAAAAAAAAAA/hcJMW0Iv7i0/c-rp-mo-br100/photo.jpg','17394740196501090048',21068),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Pdv1C099F2d5t27TiTiwR4NVDiZdJV-YrPt_hv3L_Ny6YDNeQqbH-BWTI8XZ2oWLSQvUaiNJk2z4fpOPWtrXOLN_cGQ',NULL,'2020-02-08 03:18:04.778000','2020-02-08 03:18:04.778000',5,'Mrs Madison','https://lh5.googleusercontent.com/--sTJzvkGU2A/AAAAAAAAAAI/AAAAAAAAAAA/KV9IOVLX8wI/c-rp-mo-br100/photo.jpg','3272657195432704501',14367),('AIe9_BHVBnWjBJvk55vq2QEm0wl-PiIPFQIvzivJGjOZwaSYzujmU1xLVILYIXsZ1qp5s_3srN3FXX6YqSAs-_aQsZuJJK0gU05Sc4rU22dxd2ChIqK0YI0','Dee and Leslie were the best! And Signature Care does provide you the best care!!','2018-11-08 14:51:33.844000','2018-11-08 14:51:33.844000',5,'Melanie Fridgant','https://lh5.googleusercontent.com/-dhFvkv5wWTA/AAAAAAAAAAI/AAAAAAAAAAA/bywa4--HeVM/c-rp-mo-br100/photo.jpg','3511292162159714121',7561),('AIe9_BHVBnWjBJvk55vq2QEm0wl-pknqgx1AeFhXMim7WKHTtrG5BA5tzNohihXL27GE6RGOU24LLWTac_65pr4R8bSFM6DPxpl7EPcB6TKjrDUubKkQ3ag',NULL,'2019-09-19 03:09:36.154000','2019-09-19 03:09:36.154000',5,'Ben Orona','https://lh4.googleusercontent.com/-vd4YoB9L58Q/AAAAAAAAAAI/AAAAAAAAAAA/fwGFhhD6Cag/c-rp-mo-br100/photo.jpg','6521947413723274945',8138),('AIe9_BHVBnWjBJvk55vq2QEm0wl-PnfVs63k4Hr89jBU1JmtEu35vlDE7RbrQNsQYSssfl7napKqduQGGRxUWRDhwWZ5kch0_t1A-3ULxhCe6cmgCvwy-xY','I love it here, would DEFINITELY come back. My wait was literally 3 mins. The doctor was AWESOME! I love it here. Both the nurses Alvean and Kat were super attentive and kind I LOVE THEM. And the doctor, Dr. Mauldin he was super helpful answered all my question, did everything possible to make sure I left In perfect conditions. And also the radiologist that first helped me when I went into the er was super kind, kept me calm and relaxed. And Jocelyn the lady In the front was super kind, explain everything to me in the front made sure I was taken care of before I went in. Thank you so much for everything y’all did for me, I wish mother but blessings and everyone of y’all that work here. May God bless y’all forever ❤️','2019-06-12 23:52:52.419000','2019-06-12 23:52:52.419000',5,'Karina Phillips','https://lh5.googleusercontent.com/-5tQdZ-dJxJo/AAAAAAAAAAI/AAAAAAAAAAA/FBttIl40DQY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-PS7OJ62J8bFVWwoYlbix7mou8Vw-LVb9jS3KnqJn5bCDJxMZJTjNpQah09I4kOhB6w9M5JsbNzgtEkCvDVdg44qhVTo','Dr.Dendy,Delicia,Duke,Sebler were awesome and caring','2020-02-26 15:33:58.829000','2020-02-26 15:33:58.829000',5,'Shamica Williams','https://lh5.googleusercontent.com/-8P2XBoCLm2U/AAAAAAAAAAI/AAAAAAAAAAA/hh7CXlTWIes/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',14726),('AIe9_BHVBnWjBJvk55vq2QEm0wl-PsruHmrtp0FTtHoK98SvM2xm87DEEbkm70oXMW4X1sFiNCDL5xeV96YW2ZQy3R0GAK74KDutq7qVnRyzFuk8MsZP1ME','I went in for some chest pain I have been experiencing and the staff took care of me very fast. They were all very friendly and professional, I definitely recommend this place to anybody needing emergency care without the wait of the general hospital','2019-11-05 17:43:45.140000','2019-11-05 17:43:45.140000',5,'TOMAS DELGADO','https://lh4.googleusercontent.com/-qZIcsNsMZjs/AAAAAAAAAAI/AAAAAAAAAAA/yVNFNiOC1DU/c-rp-mo-br100/photo.jpg','6521947413723274945',8097),('AIe9_BHVBnWjBJvk55vq2QEm0wl-pUunIWZu-ZXEzrRlAKQ2W2CKCZ4pvljhsBT2nUQpgwibCtteESGwf4bANFdP7D4MpNvs-xp1cucthUHPWZyS5BxJ3x8',NULL,'2016-10-03 20:32:29.306000','2016-10-03 20:32:29.306000',5,'Earl Paul','https://lh3.googleusercontent.com/-ixcSTCfbwt8/AAAAAAAAAAI/AAAAAAAAAAA/k6IHAW9lW2U/c-rp-mo-br100/photo.jpg','17394740196501090048',5194),('AIe9_BHVBnWjBJvk55vq2QEm0wl-pyfUmN82d1vf4dsosdYxggPvYN6TFd7bsTrHdy7s_fhQpqguKYWUl2MCawQ3WJmgxOU2ZYwsjszvLFu5T6QC30SVy0A','Everyone was so great here. I injured my neck and couldn\'t move much so the receptionist helped get my insurance card from my wallet, the doctors immediately addressed the pain, the RN was friendly and knowledgeable, just great service at every step. Thank you Dr. Son Le, Dr. Daniels, Delica, Parbika, and Blake!','2020-01-23 13:28:56.880000','2020-01-23 13:28:56.880000',5,'Rebecca L Silva','https://lh3.googleusercontent.com/-uW4Soff0tvs/AAAAAAAAAAI/AAAAAAAAAAA/0-n9PkrA6uQ/c-rp-mo-br100/photo.jpg','8679688254631342173',10343),('AIe9_BHVBnWjBJvk55vq2QEm0wl-PYu0ZMgGRdzBhsZsOZ9eS12VuEeg_etIHOwOKKPKdp4rx4Q9fEzRE6VhdqleiN2TK7JNuAmiDtUY-m60r_lvvPPrhgc','Great service!! No long wait in the lobby and everyone is really kind! Going forward I will only come here!!! They have restored my faith in the healthcare system!!!!','2019-06-17 18:42:26.497000','2019-06-17 18:42:26.497000',5,'Lanie Galvan','https://lh5.googleusercontent.com/-ywYB3J4r1q8/AAAAAAAAAAI/AAAAAAAAAAA/qNOsf7pcpPg/c-rp-mo-br100/photo.jpg','2694018788013845459',6131),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Q_HLYSX8R4zT4Fj6cySsB44hbfVzymeNNtHKiS5Mqk2AZmoO57F5w_ryjMGstxL6eeNuOi4-eYbsvFV31Cffmlyasak','Patricia, Jani, Kelly, Marcia, and Dr Harjai were very pleasant, professional, and got me in and out and still alive!!!','2019-12-06 13:12:24.510000','2019-12-06 13:12:24.510000',5,'DeAndre Jones','https://lh5.googleusercontent.com/-v9oewlliCbA/AAAAAAAAAAI/AAAAAAAAAAA/BllBsTPqUGw/c-rp-mo-br100/photo.jpg','16389487648212004696',2574),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Q1bj_vo7FEpRIRD9Pb7kdQKPD62Ksd4VmSbTgrl0aK3g23bscugTYYo0isENZL19k4il_G-wxvm6QGl5pihif620Mxg','Quick, clean, responsive and professional.','2018-04-08 09:23:43.746000','2018-04-08 09:23:43.746000',5,'Carl Wilson','https://lh3.googleusercontent.com/-1rfxSWm9My8/AAAAAAAAAAI/AAAAAAAAAAA/_PoBFUprrmc/c-rp-mo-br100/photo.jpg','14567670160750071148',1636),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Q3imgzkjd8B2DNLBnclrohw_lvlfDFSsIhMUeqn0gfjMboEy2SH9LOTyUJ1ACVnVJizjs7o-CnmoDtRfWqg5r1VJ41s','I had an awesome experience here. Huge thanks to the staff for making my visit as comfortable as possible : DR. LINGAN CHRISTOPHER C, Kathryn Joan K , Townesend   T, Earl J H. Ya\'ll keep it up!','2019-02-14 18:25:36.783000','2019-02-14 18:25:36.783000',5,'lane boydston','https://lh3.googleusercontent.com/-ZUR_fDzM-KE/AAAAAAAAAAI/AAAAAAAAAAA/_DWYOfCHfZs/c-rp-mo-br100/photo.jpg','16891069708558046635',4349),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Q78NAIQHzs1ePB0CHrQj3fZkHf9ewImOyAVaLlseYPVsp2YmocJf-EpUN8UbvKjgGpY7cpOXaXGgSPQZjZdbfutV1Uk','I fell yesterday at Kroger\'s parking lot on Wirt. We went to SignatureCare. They got me right in. They didn\'t take my insurance plan so I was worried about how much it would be. They did a good exam. They even did a cat scan. We went to check out and we were so shocked! It was very reasonable. My vet for the dogs would charge a lot more. If I every have any more stupid accidents I will go back.','2017-07-24 17:39:09.855000','2017-07-24 17:39:09.855000',5,'Bobbie Huddleston','https://lh4.googleusercontent.com/-u0E-U6z8Jas/AAAAAAAAAAI/AAAAAAAAAAA/Ez_CHGi-ojU/c-rp-mo-br100/photo.jpg','14904078213800803294',2338),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Q8gaAss_M03nv7DwvG7Xz5zKlsRtrePaLgCSsqiveptfNOBmzAqQ2dUjM7JAwFTQtvsqhK9tsHTZIgxdpaV52Uy6Nlw','Dr.Daniels \nNurse Rollie \nRad tech Natalia\nRegistration Stephanie :)\nThey were fast and gave us valuable information 😄','2020-03-09 01:44:37.133000','2020-03-09 01:44:37.133000',5,'Leah smith','https://lh5.googleusercontent.com/-Hi7K39ob9HU/AAAAAAAAAAI/AAAAAAAAAAA/IMrCLh0R8xQ/c-rp-mo-br100/photo.jpg','8679688254631342173',21218),('AIe9_BHVBnWjBJvk55vq2QEm0wl-qClTCRE1oGrRvywLfTeDn-eHHorbXjZFMgwGjX2a3Ygbw8m2k5kj3Xgg9Qe0jftwY9sO5XCDzZANwbmd7RRn8w_MPo8','Amazing staff and was able to help with my situation! I had an emergency surgery when I was out of town and they were able to help me with my incision if I needed my stitches removed! \nAnd not only that they snacks and drinks and great coffee while you wait! ❤️❤️','2019-12-11 00:14:33.580000','2019-12-11 00:14:33.580000',5,'Melissa Lopez','https://lh4.googleusercontent.com/-j5pDJCe5rbU/AAAAAAAAAAI/AAAAAAAAAAA/vMFtogZuKEo/c-rp-mo-br100/photo.jpg','14567670160750071148',1178),('AIe9_BHVBnWjBJvk55vq2QEm0wl-qD8BpTrzjUGcUgGhoGmitejw6dDD9O614QLRM6hFd-sXb4w7-7iF55qc6iLi7s9DKBQMwUPLM63oLdEH_tCiAf_gSuE','Dr. O\'Mally was great. He was professional and friendly. I am from out of state and I stopped in with a concern about an ear problem and an upcoming flight. Everyone on were helpful & friendly. Highly !','2019-11-28 21:18:25.899000','2019-11-28 21:18:25.899000',5,'Lisa Burke','https://lh3.googleusercontent.com/-wbkQ42GjaXg/AAAAAAAAAAI/AAAAAAAAAAA/otAly-v3XLs/c-rp-mo-br100/photo.jpg','16389487648212004696',2611),('AIe9_BHVBnWjBJvk55vq2QEm0wl-qEirrjehlx7kuJJ2QKetcPFexy806YwybpcoFrE7Fhv34W7N2Ry5c5i3-St87AmzjUvVVjbOpfGBBA7PwTirLGoDBxI','The staff at Signature ER is very professional. . Tiffany is great. She kept us informed and explain what is going on with the patient. The place was comfortable and clean. Thank you, Signature ER staff and Tiffany for your help today.','2019-05-01 02:19:45.784000','2019-05-01 02:19:45.784000',5,'Theresa Ricks','https://lh3.googleusercontent.com/-uF59kSCduUg/AAAAAAAAAAI/AAAAAAAAAAA/zDaEZoN-Yp4/c-rp-mo-ba4-br100/photo.jpg','8626688543755174284',8497),('AIe9_BHVBnWjBJvk55vq2QEm0wl-qF346J-ASDlX9xaChFvwKMr-tyN7FnKT3Wx-d4yRH7JNAJtpvmkaQ2dyfVzDjLqGexxxbtJjhGW8GVkrVzA-DsLU1KM','Amazing facility and staff, Dr. O\'Malley was kind and very informative and the nurses and techs, Alvean, Tricia, Sibienne, and Bryan were great with my daughter, very considerate and patient. Thank you for everything. Definitely recommend to everyone .','2019-11-14 23:02:20.697000','2019-11-14 23:02:20.697000',5,'Jessica Clark','https://lh4.googleusercontent.com/-6Q_ptlYdefA/AAAAAAAAAAI/AAAAAAAAAAA/ABacJqZHLQM/c-rp-mo-br100/photo.jpg','16389487648212004696',2695),('AIe9_BHVBnWjBJvk55vq2QEm0wl-QLUItUCTJyrWrXQ5Rso5RrrqxSLXBBnXdyWpRAQQTUSU6RuxM3dRxKe1p-CkM2DzeIQfuHOd9mpWjb1LAVEYGxawCqM','The staff were awesome. I had a great experience for the first time ever in an emergency room. As it has been said doctor\'s make the worst patience this can be said for anyone in the medical field I know that I am one of the worst I know how to do it the correct way and I will not mince words or sugar coat how I feel in regards to the care I am receiving. I did not have to say anything except for why I was there. It was GREAT!! I will be going here for any medical emergencies I may have in the future I hope that I won\'t need them but if I do it will be them I choose.','2017-03-14 20:15:48.467000','2017-03-14 20:15:48.467000',5,'Jeri Thorgaard','https://lh5.googleusercontent.com/-pDbEZSMDQWE/AAAAAAAAAAI/AAAAAAAAAAA/kgXw-OM942Y/c-rp-mo-br100/photo.jpg','14567670160750071148',1864),('AIe9_BHVBnWjBJvk55vq2QEm0wl-QmgOrkaeJpCIv867-HY9nyS8HrDMjTBlCgHlzLw7tc46dW-e0fx-NSNNn1xWdAcMiEkYIt4WhgtYLU-L7x-VpCJ-1Bo','My wife went in with multiple cuts from our front door glass. Dr. O Mally was awesome in how he made the sutures!!! Very capable and completely competent doctor. The best that I\'ve seen in my life... I\'ve had nothing but bad experiences at hospitals in this guy changed my perspective. Great work, Doc ! Thank you so very much! Sean the nurse was also great too!!! These are two guys whom I gladly would pick in a critical situation... The nurse, Graciela R was a complete wonder, great person. I was not allowed to the back at first with my wife and was almost panicking with worry for her. I went to the back and she completely understand my situation. All around the best experience that I have ever had in a hospital situation. These folks are the \"bees knees\" of ERs.., They are the best!!! Thanks again guys!!! God bless!','2019-12-07 07:56:42.824000','2019-12-07 07:56:42.824000',5,'Alfredo Garcia','https://lh6.googleusercontent.com/-dvTx_mmGyyo/AAAAAAAAAAI/AAAAAAAAAAA/XBdDNezt7OQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2570),('AIe9_BHVBnWjBJvk55vq2QEm0wl-QmguQWHNQUz76zuKEVSwI7KHOrpb2IjNh7QnJG928lEdIuiGw7w96nLMf9VYFIGJ8-LeFmcYhqIwBnjyKgvXahuE-r4','Very professional in and out! Great service and friendly!','2019-10-11 00:21:07.549000','2019-10-11 00:21:07.549000',5,'Rebecca Hoffman','https://lh3.googleusercontent.com/-kYH1bwc-X6M/AAAAAAAAAAI/AAAAAAAAAAA/STyOf6Z5TfI/c-rp-mo-br100/photo.jpg','6521947413723274945',8122),('AIe9_BHVBnWjBJvk55vq2QEm0wl-qpXcv0KpV7Jnau-r3kGCMb5BkZSoIpI0igMtsgseAbO2NtJ7_d4wFGznDuSpIONsQniTMKnhg_yEihE5ZF5-ainYbsU','Free snacks and drinks! Was asked many times if we needed anything. Great care, would come back in a flash.','2017-03-14 05:33:44.625000','2017-03-14 05:33:44.625000',5,'Ben Muir','https://lh3.googleusercontent.com/-arBm1SB1Sag/AAAAAAAAAAI/AAAAAAAAAAA/eYSuVt4kB_M/c-rp-mo-br100/photo.jpg','14567670160750071148',1866),('AIe9_BHVBnWjBJvk55vq2QEm0wl-qQ1-EJV1ajcuxQyvn3uQHD0Ts-v_DG0lLU2cSdTD0gKEFaDmrXw4-OM7eQsxGzp4GZ7YJGRZuGX7uFPTrIcYn2DuhDU','SignatureCare is great! All the staff are fantastic, everyone from the nurses to the techs to the front desk staff are all welcoming and nice. I was seen by Dr. Elsbecker who is very kind and knowledgable and was able to help me and give me all the information I needed and even extra information I had mentioned in passing. Even the manager, Adam, stopped by my room to introduce himself and see if I needed anything. I was also brought back and seen immediately after checking in. Overall a great experience and would highly recommend to anyone in the south Austin area and beyond!','2018-12-07 19:14:07.230000','2018-12-07 19:14:07.230000',5,'Kesley Huffman','https://lh3.googleusercontent.com/-XK5s1fTe4IA/AAAAAAAAAAI/AAAAAAAAAAA/VDn1EUw5OQM/c-rp-mo-br100/photo.jpg','16891069708558046635',4393),('AIe9_BHVBnWjBJvk55vq2QEm0wl-qTUExJchVVBL5xwAmtMowOolDa97QAft03GIINS9NmWLxkT4Ux3H43ZxIeuT9BdkmGQp5_bDd4VD-9-eJc1tvBH21Hc','Everyone that I came in contact with was friendly and very professional! Melissa my nurse kept checking on me to make sure my pain was under control after I got back from getting my MRI! Thank you SignatureCare for taking care of me!','2020-02-28 10:05:28.978000','2020-02-28 10:05:28.978000',5,'Rosa Zamora','https://lh4.googleusercontent.com/-lAvKxW2pI7M/AAAAAAAAAAI/AAAAAAAAAAA/gJwREdwC6oM/c-rp-mo-br100/photo.jpg','3511292162159714121',20819),('AIe9_BHVBnWjBJvk55vq2QEm0wl-QUxAe1jhyFBijVJU8PxR6Te30JtRBF1HnHJL4QE_Av8swIQCGh2dMpoZks5hWI6owT4vnqwAPfBoIT-ZYLzQgVgLEBw','I had a very good experience here! They were attentive to my medical concern as soon as I walked in. It was not busy, so I’m sure that played a part in the quick service, but all staff and the doctor were caring and did a full work up to make sure I was actually healthy before sending me on my way. No idea what the bill is going to look like, but I felt way better cared for than the couple times I’ve had to go to St. Joe’s. Assuming that the post-insurance is comparable I’d come here again for ER care.','2018-06-11 01:36:57.729000','2018-06-11 01:36:57.729000',5,'Amber Rose','https://lh6.googleusercontent.com/-MR5CzTuobdc/AAAAAAAAAAI/AAAAAAAAAAA/nC27ZYcOSzs/c-rp-mo-br100/photo.jpg','16590124370714063921',3816),('AIe9_BHVBnWjBJvk55vq2QEm0wl-quXDDTSQjPlQzGXay1GgnuEn1-6V2UxLDk1SFH-UfEVpRfRPjVuOp7LPzFvcQqyG4Xxwg28psdvUhi5D1iTO3YtMjX0','The staff is so nice and understanding, thank you to Dr Patel, Alvean, Tricia, and Patricia for making my daughter’s experience easy and wonderful!','2019-10-24 22:16:51.369000','2019-10-24 22:16:51.369000',5,'Deapsa Abuqartoumy','https://lh6.googleusercontent.com/-veXPBE8d8Gc/AAAAAAAAAAI/AAAAAAAAAAA/sJGCbGUxlYA/c-rp-mo-br100/photo.jpg','16389487648212004696',2775),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Qz4f5SG-pnJHc94vPcjbkdndqo9EJrT-T_KJsYf5fscyjCRnurYyDk29mItAi_SDIXVM8WSKmujEW6F03TJ4vQ41CiA','They are seriously the greatest place to go when you\'ve got a serious ailment or injury. They can do imaging and labs on site, there was no wait at all, and the doctor was one of the most knowledgeable and approachable I\'ve ever met. I can\'t recommend this place highly enough.','2018-12-03 13:43:37.673000','2018-12-03 13:43:37.673000',5,'Catherine Waltrip-Lesch','https://lh5.googleusercontent.com/-kLQeoiH_JXE/AAAAAAAAAAI/AAAAAAAAAAA/oKrIwQtamf0/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2192),('AIe9_BHVBnWjBJvk55vq2QEm0wl-r-hvX72hgaA5RIKcuVf8_7WuiVA94EIR8kr2l9qB319xvVGdcDoQihOCiJzsEEx68eW9GmDMUpbwb1hco4OzovXzjV4','(Translated by Google) The nurses Cody and Nydia gave great service, if you need an exam I definitely recommend this clinic\n\n(Original)\nLos enfermeros Cody y Nydia dieron servicio genial, si necesitas examen definitivamente recomiendo esta clinica','2020-08-12 19:15:27.395000','2020-08-12 19:15:27.395000',5,'Izzet Escoto','https://lh4.googleusercontent.com/-ARHzZne_hpg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclPb4f5yS7gwwKYyvW7ER_SoRZBQA/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-rADbBC1SBCkgRlrTNWwjoQNiT7DVSfQ2_Jx1DDFatP9fBCq08kXT4RfIlafECWQmNHaq0gpPAlQmhOzVwyJPQrOzayA','Very friendly and helpful. Fast service! Cecilia was welcoming ! Great place to get tested','2020-08-07 21:08:51.340000','2020-08-07 21:08:51.340000',5,'Diana Martinez','https://lh6.googleusercontent.com/-OcdHx_LBxOI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnsZi-eHZDxweZq9U82zpkyq8oIeQ/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21857),('AIe9_BHVBnWjBJvk55vq2QEm0wl-raOhdxHm9orW1sk6FuW9bIeYwU3mzxlvIFNGbpVAHcIeSCc8okhOkZtgJHrE09uRD-SzOsGIYXYYrvBGv2-_MZimEO0','My experience there was wonderful the staff took good care of me a the wait time was fast thanks to alvean,Patricia.and thuyan','2020-02-23 19:49:52.378000','2020-02-23 19:49:52.378000',5,'Shelley Walton','https://lh4.googleusercontent.com/-QUTAIOYI04c/AAAAAAAAAAI/AAAAAAAAAAA/BMA9WEo--fs/c-rp-mo-br100/photo.jpg','16389487648212004696',13771),('AIe9_BHVBnWjBJvk55vq2QEm0wl-RcDk3vFA74AU1faBrIsNR1UjpaxLFAnjy50VZ4esDWUEbJ-51v7SqJd5TA_Evm4SK0YBrzICUaIHqWEmCA7QiCcQZNk','I had to go to SignatureCare for a minor emergency and the staff was absolutely amazing!! Dee helped answer all of my questions and made my situation so much better with her courtesy!! I definitely recommend SignatureCare to everyone!! Thanks for everything!!','2020-01-29 16:38:06.382000','2020-01-29 16:38:06.382000',5,'Crystal Moore','https://lh6.googleusercontent.com/-5FE1chlBkdE/AAAAAAAAAAI/AAAAAAAAAAA/iPdZ7ogpsrk/c-rp-mo-br100/photo.jpg','3511292162159714121',14439),('AIe9_BHVBnWjBJvk55vq2QEm0wl-RdeTHVVHHqw-68rFor6diyz9xShANIYncdjdJhEG4ebJtceYcwvFLGLg0EGgigJ5_h5HbsVukvW_4HWLlhuzqM3_2u0','Visit was decent, receptionist was very welcoming and polite, nurse was also nice and helpful as well!','2019-06-24 18:01:51.734000','2019-06-24 18:01:51.734000',4,'Damion Johnson','https://lh4.googleusercontent.com/-659Le4EFG7g/AAAAAAAAAAI/AAAAAAAAAAA/FJtDqOc8xrM/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-recbi_dUp_wpCmUBMcNmMhIi5uUaxkuBNSOxYB5DeBqn7KgkX3FSAKXzD2A_5xIvkzsim9CmgCX2o91QnG6S9a22cIc','The entire staff was caring, friendly and professional. Thank you Lorena, Victoria, Bretnie, Matt, Tori, Lindsey and Dr. Cabaniss. All my questions were answered and they even followed up 2 days later to check on me.','2020-07-28 20:45:02.720000','2020-07-28 20:45:02.720000',5,'Lori Jones','https://lh3.googleusercontent.com/-5y3MT64_ifU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclnNOJg6xzvjGzTQuDnKH2Br3Xwqg/c0x00000000-cc-rp/photo.jpg','16590124370714063921',22010),('AIe9_BHVBnWjBJvk55vq2QEm0wl-rllnr_9pKBH9DeRZVEZ5GKa3oTxullgTTh9r7LBXAN5S4J9lFCfc5qq6UtOR-YCbHkxUmI5B9ZaynPw2l-S_da2h9sk','I found myself frantically trying to find emergency care on a Saturday night. I chose the first result that popped on Google and this was the place. It is on the corner by the highway and easy to find. We walked in and had a warm welcome with free refreshments. Though I wasn\'t much in the mood. We were promptly taken back to a private, clean, well organized room. The staff was warm and shared their own anecdotes regarding experiences they had gone through. \n\nWhen you go into a scary situation...the experts you are working with should want to teach you. Share knowledge with you every step of the way. This is exactly what I got at signature care. I\'m home now and my mind is at ease. Thank you.','2018-06-17 15:29:35.334000','2018-06-17 15:29:35.334000',5,'justyn lizbeth','https://lh6.googleusercontent.com/-eAuOX4u5hsE/AAAAAAAAAAI/AAAAAAAAAAA/NhQOkOkMi_o/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4467),('AIe9_BHVBnWjBJvk55vq2QEm0wl-RM6nMqSlARBaT0QWc_omH7UOwYn4DCpfM05Qq6mJAWhWwcaT84WgWJzdfdaL8LRgFqvcTkjJ7kKCxx1Bn1-4QEcN4x0',NULL,'2019-02-27 15:23:20.918000','2019-02-27 15:23:20.918000',5,'Camilo Correa','https://lh3.googleusercontent.com/-eo-OY9jZaKc/AAAAAAAAAAI/AAAAAAAAAAA/40eys-miLBQ/c-rp-mo-br100/photo.jpg','8679688254631342173',8866),('AIe9_BHVBnWjBJvk55vq2QEm0wl-RmHv8AjT6b_ALd_NZyQmVY7a6vYFF0yfODlmW2oCInWioeiKgWnEkx_j0gnH9erTo7Wt2HblmBCqU_5NHwsVjz8KxQk','Quick and timely patient care! I\'m am pleased with Dr. Richard , Natalia, Stephanie and Rollie for helping us get out quickly','2019-11-16 06:52:25.602000','2019-11-16 06:52:25.602000',5,'Andres Ortega','https://lh4.googleusercontent.com/-kyhGcKvv55A/AAAAAAAAAAI/AAAAAAAAAAA/hRTitd3pweE/c-rp-mo-br100/photo.jpg','8679688254631342173',8730),('AIe9_BHVBnWjBJvk55vq2QEm0wl-rNr8ZVVEtgDkSt4IAv8eLsH72y6xYQd2Akc62UUfF4U0hFVKvoatiz0sQWMn7y2ImDL-QhdLcVxEJK6rSyAb8TyFGt8','Facility was very clean. Jocelyn at the front desk was very welcoming and nice. Alvean and dr Daniels were really cool and insightful. Ask them to be your nurse and dr .','2020-02-26 14:49:03.197000','2020-02-26 14:49:03.197000',5,'shae stewart','https://lh5.googleusercontent.com/-rkVyxR-_hwQ/AAAAAAAAAAI/AAAAAAAAAAA/p9YEliKEj4k/c-rp-mo-br100/photo.jpg','16389487648212004696',13763),('AIe9_BHVBnWjBJvk55vq2QEm0wl-RolbUMkcDLuL0OxMCNmoQgyYz3EsoVz2YSq6ujK47bplsFtoZZo4yWnPHdTuXwiz5ZbAOjEPfhyGBtcoffFSf7TT1tc','Marty Lewis hooked it up with a speedy test, came back negative. Thank the lord','2020-06-09 20:35:30.723000','2020-06-09 20:35:30.723000',5,'Joshua Bleess','https://lh3.googleusercontent.com/-W0N1CoF5Q1k/AAAAAAAAAAI/AAAAAAAAAAA/AO9MtJhqus0/c-rp-mo-br100/photo.jpg','2077061009497551125',22868),('AIe9_BHVBnWjBJvk55vq2QEm0wl-rTkGNPlQ1XiVxXlPeXRbEn-VkdIWD8Sl0mXcytdiVrIEQeZcDjpraH5XmAXwnDOHTaLuZd49UNk8k6Qj1kuOTwk33Vk','Great place thank you shania, kim, lisa and Dr. Miller.','2019-08-17 07:04:50.063000','2019-08-17 07:04:50.063000',5,'Rosemary M. Rubio','https://lh3.googleusercontent.com/-ptceO5D2_TA/AAAAAAAAAAI/AAAAAAAAAAA/34TqqMWlMws/c-rp-mo-br100/photo.jpg','13486358490203335051',854),('AIe9_BHVBnWjBJvk55vq2QEm0wl-rWX15UAfPupzSaAOTa1bpiSPn0DkJMHroBrN_toWq36qwiT0AcRxkxYLixQeUDOmt0nP96ORCLBFP1lwB6lu5_4Plb8','Very friendly and helpful staff — Dr. Anders, Senaida (RN), Sidonie (RadTech) were all very professional and helpful. Recommend.','2019-06-20 01:06:19.982000','2019-06-20 01:06:19.982000',5,'CreativElement Studios','https://lh5.googleusercontent.com/-NbLIGk-2uyE/AAAAAAAAAAI/AAAAAAAAAAA/9qGJE1zBCUU/c-rp-mo-br100/photo.jpg','6521947413723274945',8227),('AIe9_BHVBnWjBJvk55vq2QEm0wl-RZlYPq0P6bwPXsl-zfq6F2RnoqiR7muSzoqR_MRKvlFCkLJjqCVilSUN4VFb-6U12QqO9ITAtvh0cJ9WhwSdKaeryA4','Very friendly staff. Erica and Ashley K were very helpful in figuring out the cause of my husband’s back pain.','2019-08-02 16:14:43.896000','2019-08-02 16:14:43.896000',5,'Katie','https://lh3.googleusercontent.com/-0qtpx7ioPsc/AAAAAAAAAAI/AAAAAAAAAAA/oe8SRoOY0p0/c-rp-mo-br100/photo.jpg','8626688543755174284',8420),('AIe9_BHVBnWjBJvk55vq2QEm0wl-S1G9PPXGZghYcxvBw2lAcIcJSOqTy8FwLazSs4fLNY01rIdoEVo1JT_2FMY_JFSOITZN9JRDtKs-j0NoInPYfNnXDEk','Great quick care!','2016-06-09 16:21:40.355000','2016-06-09 16:21:40.355000',5,'Colin Dooley','https://lh4.googleusercontent.com/-RDUVuC7UbFU/AAAAAAAAAAI/AAAAAAAAAAA/lZFjIwiXN04/c-rp-mo-br100/photo.jpg','3511292162159714121',7990),('AIe9_BHVBnWjBJvk55vq2QEm0wl-S1OXxu1NYGYllW41-DecabyReaTmVY3Jvv0EFh7600Z3eIUUzHgXGWNq-XEBeFiK4jxO8PLBfM2M8x8aiskiqMsxTMo','They are very professional. There was hardly any wait time. I highly recommend going here.','2019-12-24 14:57:39.017000','2019-12-24 14:57:39.017000',5,'Lenno Tha Boss','https://lh4.googleusercontent.com/-RGLNJSj5keM/AAAAAAAAAAI/AAAAAAAAAAA/93bRGyBjzLk/c-rp-mo-br100/photo.jpg','2694018788013845459',5976),('AIe9_BHVBnWjBJvk55vq2QEm0wl-s1p5Hre0UN1ckZgvHoFO5yp9n8sAT-HnEW0PEO9lCSGOYo3WKqa8bwW23BGqOhw8sTumK2q9qJ2mcTWvJGGSdDX28jE','Oh wow what a place to be. Great staff(Adam Penion) Dr.Elsbecker was the best!!! In and out with a diagnosis and meds. Very painless and a wonderful experience. Thanks Signature Care 💃💃','2019-05-01 22:30:09.060000','2019-05-01 22:30:09.060000',5,'Chasidy Sherrell','https://lh5.googleusercontent.com/-0FYiwJSRv8M/AAAAAAAAAAI/AAAAAAAAAAA/QSPTszSBZYQ/c-rp-mo-br100/photo.jpg','16891069708558046635',4290),('AIe9_BHVBnWjBJvk55vq2QEm0wl-S4GQjYLEWT5weWCFEQNJMKud2BQzCTksO8HjW6wD4QDjZ2rZiaJ_EyIRbtGJCgGFS7YDlp4w2xtDI_jbUhGHOfWj7Ls','Very professional and informative. From the greeting and helping with paperwork from Kimberly P, to the nurse Regina L checking in and making I was comfortable couldn’t have been better. John A. My doctor explained what everything was and gave me options to choose from for best treatment. Highly recommend this ER they make an uncomfortable situation way better','2019-10-22 13:34:36.610000','2019-10-22 13:34:36.610000',5,'Trevorcc Glynmjnvjt','https://lh4.googleusercontent.com/-qrPVn-uguYc/AAAAAAAAAAI/AAAAAAAAAAA/MiH2-cZxrtQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1214),('AIe9_BHVBnWjBJvk55vq2QEm0wl-s4HbwrebZkocWG9waQYbCNUmpIWSlznwOMHTJIvJiV49eVFoNdx4f1XAyIdQFk3TD5A2pnzFE_lfMJdmulx7YK43X8c','Everyone here is super nice and understanding. The rooms are very clean and organized. The nurses and other employees are extremely nice. I would 10/10 recommended this emergency room. They even have TV\'s :-).','2017-03-04 04:24:35.889000','2017-03-04 04:24:35.889000',5,'DORALENE Wiggins','https://lh6.googleusercontent.com/-iA7u0HwgHt4/AAAAAAAAAAI/AAAAAAAAAAA/MLemzMkn-ls/c-rp-mo-br100/photo.jpg','16590124370714063921',4042),('AIe9_BHVBnWjBJvk55vq2QEm0wl-s51iuQsoYIIOzC4ngC-pf6aIZln_tDlZRQu4wUlM3ed5vcg74iq_RfePM40J5LAnnNxctcGTXP0smQi6O1OdKSyHPX8','All the staff were friendly, helpful and caring they were fast at there job I feel so much better glad I came here shout out to Dr. Soli nurse Lia Brenda M and Dauwald they were all great','2019-03-23 08:20:19.660000','2019-03-23 08:20:19.660000',5,'Kimara King','https://lh5.googleusercontent.com/-LwkBkMDFQsM/AAAAAAAAAAI/AAAAAAAAAAA/2I4-M1CsVsU/c-rp-mo-br100/photo.jpg','12541597562633926366',530),('AIe9_BHVBnWjBJvk55vq2QEm0wl-S6d8QqTPt0UHb0OWAdMoMzD0SRB0W6G3Q_D8xHPQQrqb0JzecjBBbjtAcBfQUlfGERY8znmWpLnK9qCIxiVgmJoR4xc',NULL,'2019-06-03 15:39:08.630000','2019-06-03 15:39:08.630000',5,'Shania Harrison','https://lh4.googleusercontent.com/-7heUSb1qE5w/AAAAAAAAAAI/AAAAAAAAAAA/2UM9a-xwFc4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-s8AnwoyXSEDfZcmpUhrAu-pPyp9pefAJSkwhV76ZtK_ELdgvFQ-YuADQK4E6hb81QLTPYfOiE3b-ed7XFdxtdaWgI80','Jessica took great care of me!!','2020-07-20 16:37:59.602000','2020-07-20 16:37:59.602000',5,'Dream Finders Club','https://lh5.googleusercontent.com/-X9cUsdDjFGc/AAAAAAAAAAI/AAAAAAAAAAA/WPmonZgwsHM/c-rp-mo-br100/photo.jpg','14748677429039074158',21664),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sB4h8XYYKf0WYese0QfuQPyKyM_MUZoLAJ7-NQoswNzxC5DCXZIH56Z8SDUJO_k42PEWcksFYUjHY7oiXPaABXBGil8',NULL,'2019-12-01 04:12:03.217000','2019-12-01 04:12:03.217000',3,'Kandy Arcos','https://lh5.googleusercontent.com/-zI4oLwOuYzs/AAAAAAAAAAI/AAAAAAAAAAA/jQ-EEwS4esI/c-rp-mo-br100/photo.jpg','14567670160750071148',1188),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ScV71QDV3scaPQDsLAqgP27t6XtWtY1tooLR2yeKyRuPl4Wpl71TFZ_GQQrqFCCeuQc3b-oTWstiT3TIXVRUgkXQG8M','Very nice place staff was very polite and helpful.','2019-12-21 15:21:18.615000','2019-12-21 15:21:18.615000',5,'Herman ValdeZ','https://lh4.googleusercontent.com/-iIfR1EA-80o/AAAAAAAAAAI/AAAAAAAAAAA/UlA1oS6_-uQ/c-rp-mo-br100/photo.jpg','8918455867446117794',9024),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sDalLgEr80gzbCJ9WFAuMw3JrfmarxBZfNZdR1Wc0G378vxVPPZwBG1Gcf27S8hbbNgQUYWD11ArflVdnGB5Si0Hbe8','Dr. Vakey was very calming and understanding. He explained everything thoroughly during the check-up and told me how to deal with my symptoms. Jacob gave me antibiotics and a doctor’s note for class without me needing to ask.','2019-04-02 16:36:12.336000','2019-04-02 16:36:12.336000',5,'Kayla Lombard','https://lh5.googleusercontent.com/-6bZav7nMg1w/AAAAAAAAAAI/AAAAAAAAAAA/3j8KSL-XTXM/c-rp-mo-br100/photo.jpg','16590124370714063921',3463),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sEDHvBy5WOUL4pREDHrSz5K6rXVWh8a-KyYhI5kmAo0Z-eabDb_0JZcE4KtO13sx1EGkUfxcQsSWWyjYA-7yFOkh99s','Dr. Miller was respectful, compassionate, and thorough; perhaps the best doctor I’ve ever interacted with. Nurse Rachel was so kind and easy to talk to. The technicians and staff always made sure I was as comfortable as I could possibly be.','2018-02-14 05:06:10.658000','2018-02-14 05:06:10.658000',5,'Brooks Cook','https://lh4.googleusercontent.com/-SFOhLVe9WaI/AAAAAAAAAAI/AAAAAAAAAAA/xK4YlTpupGE/c-rp-mo-br100/photo.jpg','14567670160750071148',1655),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sFJBGGr74lc0e6KvHq-vxMvPx3CD603Jq-xdk-3FQyA-gU_A3svMKwzwjDSh6Ella9nEB10KVKKJSlYVedoyP6iq1gU','Violation of HIPPA Act by the nurse named Laura. Insurance fraud for insurance having been billed for services not rendered. Repeated attempts to resolve matters ended in being treated nasty by administrator Larry Deitrich. Requested a face to face with owner and never got it. Definitely going to report the HIPPA violaton and insurance fraud to the Texas Medical Board of Health and Inspector General.','2017-02-16 14:35:30.839000','2017-02-16 14:35:30.839000',1,'Chad Russell','https://lh6.googleusercontent.com/-8B4Xmd9LcHE/AAAAAAAAAAI/AAAAAAAAAAA/X-Td3oOnm6k/c-rp-mo-ba4-br100/photo.jpg','3511292162159714121',7879),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sGDZ-ryIGGYfnAZblYeb7dIjo_SLpBEQ4W6dKDJQPYnLxiFHQtjR9TKziM3niw8SAYLqztB5mevbkOkd9fOw8BajA84','It is a great emergency room I was made to feel comfortable in the room from the moment I stepped in and i was in and out in a timely manner, I would recommend it to all. Doc really was welcoming and i felt comfortable with his professional advice and taking the time to address my needs..','2019-06-13 23:08:13.306000','2019-06-13 23:08:13.306000',5,'Raw Truth','https://lh3.googleusercontent.com/-QBNB45PFOsc/AAAAAAAAAAI/AAAAAAAAAAA/U6BeQ3qMJis/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SHJ34QXTyR1x6gUyJaUaM2Q83-EYFZOF1HBk-caERoqpnqC-K3KyPuuDt9yDakrQ3sDfRuCifsaV_T2sFxqGYMiXyKg','Very prompt and knowledgeable','2019-10-24 18:53:07.542000','2019-10-24 18:53:07.542000',4,'Kim Fitzgerald','https://lh5.googleusercontent.com/-C05zC4ZvbZU/AAAAAAAAAAI/AAAAAAAAAAA/QSHCfMhHgEw/c-rp-mo-br100/photo.jpg','16389487648212004696',2778),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SImlI7tCJ_vclsrjAsCyQT4MF3IfhbUSj30Wze92PEtgRoz7Hl5WwluVDQay8YFRDjR8BMh_8S_iPR_y-BAx3rBuedA','Great experience very caring and responsible staff thank you to my nurse John bell and registration ashley b and Tiffany','2019-04-02 22:54:32.487000','2019-04-02 22:54:32.487000',5,'kayla ashley','https://lh5.googleusercontent.com/-GY84HgtCUP4/AAAAAAAAAAI/AAAAAAAAAAA/kpLuuHZrJ6I/c-rp-mo-br100/photo.jpg','8626688543755174284',8511),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SJLxAzFkFMuaik4IF136L0VBai0XhLGqa3cyGGUZfhWTrZ2gvCmDjP5nIKcOxVUtJkIkg4Qlzfxz22nPvMaBo-jQ5f8','Comfy, quiet, clean. Big rooms and a very friendly staff. Highly recommend.','2020-01-22 22:50:21.369000','2020-01-22 22:50:21.369000',5,'jlshelton83','https://lh6.googleusercontent.com/-6NAa_3fjAZA/AAAAAAAAAAI/AAAAAAAAAAA/LgQuEiRDl6o/c-rp-mo-br100/photo.jpg','16891069708558046635',13980),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sJosNM8MmT4UK3obf8x-VfZf7x4uqXZ9gh9Q7cHeL1KtKTjrAdKrgJqFNpHK88m6_53EQylURqEsNlchZ3GTTvrrzVw','I brought my daughter here at night. We were called within 5 minutes. The nurses and the doctor were very much so attentive. They address all my questions & aIso made my daughter feel very comfortable. I very much recommend & give them 5 stars! Thank you everyone!','2019-10-18 04:23:35.982000','2019-10-18 04:23:35.982000',5,'LaRhonda Goatson','https://lh3.googleusercontent.com/-Jc89yFgVhDw/AAAAAAAAAAI/AAAAAAAAAAA/K1mjQ37ixPg/c-rp-mo-br100/photo.jpg','6521947413723274945',8116),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SkhxwQhuuvHIIS2Fj0vg_BAiXREr97glOyUu-3o7_4FxWvAhUjYkLUhQrNMV0lqC3nVJDd7QXelvSQy7HcbOl8hfOqI','Great service! Ashley is so helpful!','2019-07-03 21:16:22.517000','2019-07-03 21:16:22.517000',5,'Carrie Hendrix','https://lh6.googleusercontent.com/-f21jsXpml4k/AAAAAAAAAAI/AAAAAAAAAAA/3BIx1QcyuMs/c-rp-mo-br100/photo.jpg','17898197009688164559',5666),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sqESUc3yaIEOicFx-1p8kSruYL-WtkErQ5fhqaiYPSu9grzt8x2lQmUBJLbjclAsqrUwK4mkbfuhddAcxohYC8thf7E','No wait time fast friendly service...Ashley was great at answering our questions','2019-02-18 03:17:46.482000','2019-02-18 03:17:46.482000',5,'Karen Burton','https://lh4.googleusercontent.com/-i1bMsTG5lM0/AAAAAAAAAAI/AAAAAAAAAAA/iuy5qMcNMbA/c-rp-mo-br100/photo.jpg','8626688543755174284',8563),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SQPlG4yH79EInDULlCCIDgS3s1-JRF6GQ-8Z3LEo91Dcl-NPwPOXVqiWPaEoJd5UXjoZRjA9vtaPpCLKEjbP5r5ugsA','took good care','2017-08-31 20:20:54.607000','2017-08-31 20:20:54.607000',4,'Johanna Eve','https://lh5.googleusercontent.com/-8uQQ9f907Oc/AAAAAAAAAAI/AAAAAAAAAAA/Zt7RBni8yaA/c-rp-mo-br100/photo.jpg','17394740196501090048',4987),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SrbrBz3QI9hvuVTvYCLCQHSFuWWmfdTKcjnzEYv7d54P3ypKeRs4OCFe2xYgTD0xcOnja3dE3svzPDHSyUUC0iT_g5w','It is becoming rapidly & alarmingly obvious that my original 4 star review was premature on my part. I have been in contact with the facility this morning and am allowing a reasonable amount of time to elapse so that the ultimate and final review I post/provide is both accurate in nature and a fair & factual representation of what took place and the ultimate resolution.','2018-07-24 15:29:32.080000','2018-07-24 15:29:32.080000',1,'Marla Bean','https://lh3.googleusercontent.com/-2SemGQox33E/AAAAAAAAAAI/AAAAAAAAAAA/ljQxi4OGhl8/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4823),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SRGBGq_ILC_5QMEt3cTz7qw02iuEj8Bm49K4ucaqvl8bMQDfmZEny9RDYT0cM-B4Z4HZB7A_Jh0BHZ5VMMJU3xCbULo','Vanessa, Marcus, alvean, thuy an Great Experience!!!!','2020-03-17 20:19:50.501000','2020-03-17 20:19:50.501000',5,'Nina Washington','https://lh3.googleusercontent.com/-JxVxqAW2wco/AAAAAAAAAAI/AAAAAAAAAAA/IelWlz0Ooew/c-rp-mo-br100/photo.jpg','16389487648212004696',21007),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SRvw-4PItXvVo2vSG21YnD00ZozT7b5vXGBbjYjCfLMunm9Z42E54-b_qHUuQEmWoQwV6QcBeW6Zh-BxRRGJkEAaY84','Very kind toward my kids and I was very happy how they made my kids very secure. Thanks guys.','2020-08-01 02:57:18.924000','2020-08-01 02:57:18.924000',5,'patricia chapa','https://lh3.googleusercontent.com/a-/AOh14Ggi2YR3241NEvYJ0VSpl4YLS6GzrrMQp-AbtonI9A=c0x00000000-cc-rp','14904078213800803294',21944),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SS6-FAmS_0AfV39L_UtfOXj2vu4TkPHuyBhbNRv1YSet72pXAzAJQWkiUf9mCStSkKvxPfdx5A7Q7iSEnCfdX6sRlkU','Doctor pham and his staff were awsome. Cindy the receptionist was awesome and made me feel very comfortable and at ease.','2019-02-10 14:55:26.367000','2019-02-10 14:55:26.367000',5,'senita gill','https://lh5.googleusercontent.com/-citniVZTH4U/AAAAAAAAAAI/AAAAAAAAAAA/FOJ1Yb5ZH5Y/c-rp-mo-br100/photo.jpg','17394740196501090048',4721),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Sv426ZzPIvTNqRHiAKEwwS_OUKXquwhFq-aoLNeo8a5t5bR0QbAJuvMGDzKy-tNz86bJoGYiWgMEz8Jg_m83Ru4UHF8','Fast and amazing customer service! Great staff including Dr.Patel, alvean, Brian, Jocelyn and Jordan made us feel very comfortable. HIGHLY RECOMMEND','2019-10-23 20:29:27.763000','2019-10-23 20:29:27.763000',5,'Cecily Garcia','https://lh6.googleusercontent.com/-dDGRnHaI7vI/AAAAAAAAAAI/AAAAAAAAAAA/361rrCQQNhI/c-rp-mo-br100/photo.jpg','16389487648212004696',2788),('AIe9_BHVBnWjBJvk55vq2QEm0wl-SYzdfl4M2IL4San5HePyqUcAB4Ix_i4g5mWbmia7IF_fsA08uCD-DT1Ro3cwMMBUmZZqNNSE-J-y2ClXch2fT1jyLlY','I came in for a injury to my ankle and the staff tended to me pretty promptly. The Doctor tending to me was Dr. Harjai (if I spelled that right) and he did a great job diagnosing me. The other staff members, Anthony the RN, and the Tech, Rebecca did a absolute fantastic job making sure I was comfortable and made sure I had all the knowledge I needed to a safe and fast recovery. They were quick to assist me in anyway I needed and in the event of an unfortunate accident again, I will definitely be coming here. They treat you right and with respect. Service with a smile is always a win.','2019-08-01 23:57:43.412000','2019-08-01 23:57:43.412000',5,'C pecina','https://lh5.googleusercontent.com/-IoQICuHkwI8/AAAAAAAAAAI/AAAAAAAAAAA/XVUPJoy4IjQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3268),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sZa_rUOfLT2wpWxZ5338pPJ9sWd9p0BFCo3LgWenOSc-aqyS8WjeOVl1EU-24RGx6X1KNGo6sjOEk6-nZ90QChlVarE','Staff was very friendly during our 1am visit. My wife was very nervous and we were greeted by Tanisha at the door. We didn’t even have to sit down and wait while we filled out paperwork. They had us in a room and with a nurse in 10 min. Doctor Thomas was extremely thorough and explain everything a couple of different time to make sure we understood what was happening. I don’t remember an urgent care staff being this friendly from the ER Tech (Elaine) to the nurse Jennifer!','2020-02-12 10:43:49.739000','2020-02-12 10:43:49.739000',5,'MARCUS CARLIS','https://lh3.googleusercontent.com/-U8Hf2P6xQCI/AAAAAAAAAAI/AAAAAAAAAAA/0bZoiJLKqoA/c-rp-mo-br100/photo.jpg','17898197009688164559',14175),('AIe9_BHVBnWjBJvk55vq2QEm0wl-sZqxHHveAZdfi1g4XPhEPCUl_etC39GdrtEeR-GLxSPbziEG11flYUnpQLAyc6Dq1SGHXuh7zDOGf-TPSr-fVUejoMw','A minor emergency but the service was top notch from the front desk, nurse and the doctor.','2017-07-18 17:55:06.476000','2017-07-18 17:55:06.476000',5,'Rose Fuller','https://lh5.googleusercontent.com/-vl7tutspo9U/AAAAAAAAAAI/AAAAAAAAAAA/2YtCsxEo4pw/c-rp-mo-br100/photo.jpg','14567670160750071148',1791),('AIe9_BHVBnWjBJvk55vq2QEm0wl-t-TB5vdPkx37xGPo2ppRcAOZIfc-O19iqwkwtrhgYn-zhhaetWiqPqtzAvbJB_2Ms-oGs11JeJJWJ6MNXJUcXNHJZqw','Quick and awesome service. Also, the staffs are very friendly! Including the receptionist Ashely S. Highly recommend.','2019-07-10 18:54:37.233000','2019-07-10 18:54:37.233000',5,'Yanci Sorto','https://lh5.googleusercontent.com/-ELA9l6RZk7I/AAAAAAAAAAI/AAAAAAAAAAA/zDJb-7o30N0/c-rp-mo-br100/photo.jpg','17898197009688164559',5644),('AIe9_BHVBnWjBJvk55vq2QEm0wl-T0wjqxHMLlEe3xp8_bCtklX-J0E8_xh9iEPvS3257SJiM1cSZvfomiD1aMXpX41Wcaxgz3fgXGxNdM0suqj9PZFPEuw','Horrible experience front desk people were so rude not only that ! I SAW A FEW NURSES COME IN WITH NO MASK AND MOST FRONT DESK LADIES DID NOT HAVE MASKS I WAS HORRIFIED!!!!! YOUR GOING TO TELL ME IN THE PANDEMIC WORKING IN A ER YOUR STAFF ARE NOT WEAR MASKS????? \nGo to Methodist emergency Er they took care of me nicest people and WORE THERE MASKSSSS!!!!!','2020-07-04 19:09:42.578000','2020-07-04 19:09:42.578000',1,'Ricardo Arturo','https://lh6.googleusercontent.com/-oLdn5Dw1erk/AAAAAAAAAAI/AAAAAAAAAAA/QJg8UgIBqQE/c-rp-mo-br100/photo.jpg','8679688254631342173',21486),('AIe9_BHVBnWjBJvk55vq2QEm0wl-T24jbVLWCKL9S-hoKfvR_zEuLovMduHjp3RAfMS6dSE_hJap4VDwwp2dz7wAwNyqPqI6-mdttDjUI_iBzjSwimiOp64','Today I had a very pleasant experience I’m always very nervous when going to seek medical attention of any sort. The staff here really was informative, patient,and friendly! I appreciate the comfort and the smiles provided by Ellen R .','2018-08-05 02:42:49.096000','2018-08-05 02:42:49.096000',5,'Isha Redmon','https://lh6.googleusercontent.com/-LVRw1kWCWDA/AAAAAAAAAAI/AAAAAAAAAAA/k3XBeVTMT_o/c-rp-mo-br100/photo.jpg','17394740196501090048',4818),('AIe9_BHVBnWjBJvk55vq2QEm0wl-t2h0qKo7dd3J9DKx0qq8eSJZI_DbD1xq-7nwu-I0jQtn2paKTldCKSXXDoOS7d16Rq1t0Cg4WjVpR4eBRbTzvgcrClE',NULL,'2020-08-08 01:57:37.682000','2020-08-08 01:57:37.682000',5,'Karina Moreira','https://lh3.googleusercontent.com/-t9cc-_q9BTA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmB8ZWpx5repw49cskvLrLjEJGB4w/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21913),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ta1japW_V8_x8M2Bp1vzgNcP4YHsnI11olCJPxzond8NFO53yHWfAiAwRuaSl0Ym0R4O55GcgD4Xj2bj1QXCiLKHfPQ','Very kind and polite staff... From Dr. Lim to Carly in registration. Thank you','2020-02-12 06:43:13.813000','2020-02-12 06:43:13.813000',5,'Joey Gonzalez','https://lh5.googleusercontent.com/-Stjshp4lHyo/AAAAAAAAAAI/AAAAAAAAAAA/RSoAxpAEICs/c-rp-mo-br100/photo.jpg','12541597562633926366',13380),('AIe9_BHVBnWjBJvk55vq2QEm0wl-TEKgl2QNeblGEfy9f_y2zfC2iCPyWkeVTjTXfkZReB8oy9RWvRcjYyUu4kpOSv5QW34m6EmyIfH7qnNLKWiNicTRKe0','This place is amazing! The staff was nice and the doctor was super friendly. I was back in a room before I was finished filling out the registration paperwork. The entire time I was there, walking in to walking out, was less than an hour. That’s great when you feel awful. Thank you for helping me out!','2020-07-05 00:44:07.225000','2020-07-05 00:44:07.225000',5,'Stacey Marquez','https://lh4.googleusercontent.com/-dZob4vziAlI/AAAAAAAAAAI/AAAAAAAAAAA/8JzAjjgVtAQ/c-rp-mo-br100/photo.jpg','6521947413723274945',21478),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Tk3AZNaMUifW4GOqijlARZfFtuAEMxUss29ICodUwFoV7i1jxwiTXfOYVL9iemkdA0YB_lMJYFD7nyV6FdPbnizIICM','Extremely fast and efficient. I was met by Lizzie who sent me back with my paper work in a flash, had my vitals checked by Ms.Dawn, seen by Dr. Faig, and had my IV put in the span of 25 min. I’m astounded by the professionalism and the care given at SignatureCare Montrose location.Thank you guys for your service!','2019-07-08 20:18:22.305000','2019-07-08 20:18:22.305000',5,'Hunter Smith','https://lh6.googleusercontent.com/-pRTycbSgDl8/AAAAAAAAAAI/AAAAAAAAAAA/SUKhYmCrm9E/c-rp-mo-br100/photo.jpg','3511292162159714121',7260),('AIe9_BHVBnWjBJvk55vq2QEm0wl-tKyTzOwq3dolO1F9lcyikQZl_Zcq4qzD9XiXL5tEZ2pmeEIobkrHHHf18KGmre2H7gME-xOYGNtcuEO9dV7QA1sNTgk','Bretnie and Jacob did a great job getting me in and out of the clinic in a timely manner. They were very friendly and helpful!','2020-07-24 18:59:44.982000','2020-07-24 18:59:44.982000',5,'Zach Stovall','https://lh3.googleusercontent.com/-QVAEwxEEFPM/AAAAAAAAAAI/AAAAAAAAAAA/kECze0nuTpQ/c-rp-mo-br100/photo.jpg','16590124370714063921',22653),('AIe9_BHVBnWjBJvk55vq2QEm0wl-tLSjpAbEMWByoSkaxZqsJoO4FD5uk8Y8p6L25Dr0M8VcOozMEsRzwcbVpDOBUZpKNYjq-Mb5HXAY-7uV5FE2mZup7LY','As soon as I walked in , Jackie greeted me and gave Prompt attention. The facility was clean and the team was caring. Received a thorough exam and communication from the MD. I have never received such well - rounded care before in an Emergency Center. Highly recommend.','2017-06-21 02:39:02.670000','2017-06-21 02:39:02.670000',5,'Jenna','https://lh3.googleusercontent.com/-S3ha44D1t78/AAAAAAAAAAI/AAAAAAAAAAA/C4cmLjQ6B0M/c-rp-mo-br100/photo.jpg','14567670160750071148',1807),('AIe9_BHVBnWjBJvk55vq2QEm0wl-tmQnlshfiCOoytGWhmar7CQbh_44TAoOjoxIWhO4gDu8IGy0IfYy8SjPSxvAayv0zC5nBO2WUNrLnl4k1d7jFQvZB7g','Their website states that they offer rapid Covid tests to all patients 24/7 and no appointment is necessary for those experiencing symptoms. However, after driving 45 minutes- I was turned away by the front desk staff saying that they didn\'t have any more appointments available.','2020-06-30 13:29:21.154000','2020-06-30 13:29:21.154000',1,'Lisa Howell','https://lh3.googleusercontent.com/a-/AOh14GhlxgCIn8I0IdviQ3QEyM4fqUkQO21I10Y9dju9iw=c0x00000000-cc-rp','16891069708558046635',21418),('AIe9_BHVBnWjBJvk55vq2QEm0wl-To7C_zJNmWW7EXH_bcuB7FVGenFN_pBtSMPa89cdc2zpj_SEGVmdDJUfZb2kG-_VqJBLnB-vAZNMDpUkAkmet2p8ptM','I was seen here today in the ER and I cannot Express enough how impressed I was with the care I received. The staff here is phenomenal. I was greeted immediately by Dee and Brittany at check in. I was taken immediately back to an exam room where I was taken care of and treated like a king. Nurses Dawn and Gina were so knowledgeable and caring a long with the rest of the team Norma, Eve, Jackie and Dr. Yusuf!! I could go on and on about how great they are here! My family and I will ONLY come here for our medical needs! Thank you guys so much.','2019-07-18 01:20:22.431000','2019-07-18 01:20:22.431000',5,'Lee Lewis','https://lh5.googleusercontent.com/-Zt7bR6ic8vs/AAAAAAAAAAI/AAAAAAAAAAA/R-Uu-wGIV_8/c-rp-mo-br100/photo.jpg','3511292162159714121',7247),('AIe9_BHVBnWjBJvk55vq2QEm0wl-tpzi_IYacNc071xBKcM3QXw1ZXKaygKQvTe3nzsTrdA29TH7ixbB9H-juOQ3YIT0RCOphFdsQU5kmgW2swv252wiMtI','This is always my go to for minor emergencies. Quick service, everyone is very friendly and accommodating, and they even have snacks.','2017-03-13 04:24:25.899000','2017-03-13 04:24:25.899000',5,'Emilio Medina','https://lh3.googleusercontent.com/-Y0aN5UZUR4I/AAAAAAAAAAI/AAAAAAAAAAA/BZY7rC3TrFc/c-rp-mo-br100/photo.jpg','14567670160750071148',1870),('AIe9_BHVBnWjBJvk55vq2QEm0wl-TrYw_QQ_qBhZ3sa5RRCCQ9QZi07uETgrEuPQ421nSUx2f-DnhTkVxbJ9oYXPnBJ7-T96X_Bvla-aeAh8k4FSwUtWQAw','Staff was very kind and friendly . They explain everything very clearly . Recommend this Emergency Room! Dr. Alloju, Nurse- Karen, Rad Tech- Son, Registration- Patricia','2019-11-16 20:15:13.189000','2019-11-16 20:15:13.189000',5,'Evelin Chavez','https://lh4.googleusercontent.com/--vT43E3uTnk/AAAAAAAAAAI/AAAAAAAAAAA/lc0yr5iQbws/c-rp-mo-br100/photo.jpg','8679688254631342173',8727),('AIe9_BHVBnWjBJvk55vq2QEm0wl-TseYVLaUAgluOHMnTmpfBIxmm2b5qnKN8E4FiestTjQhb72u2gjcnKzobxEoIeou389kLahSmmEJncUwcBmTxVCGoC8','I’m very impressed with everything and the cleanliness of the building, the caring staff, and the quick service.','2019-11-15 20:57:31.297000','2019-11-15 20:57:31.297000',5,'Barbara Dalby','https://lh6.googleusercontent.com/-D7r5mDwbEuU/AAAAAAAAAAI/AAAAAAAAAAA/vEdKJf50tso/c-rp-mo-br100/photo.jpg','6521947413723274945',8091),('AIe9_BHVBnWjBJvk55vq2QEm0wl-TSV2eee8icGRibbAPeC7Xrxrgq2O5iIx9_QJhAhmBkkwsC7-0EiF_FrVKZTCToedWbxbU4zQVYe14YVdCzuxbusFlSM','I found SignatureCare Emergency Center perfect. Everyone was very compassionate. The staff took their time and were very helpful.','2016-12-16 15:31:58.936000','2016-12-16 15:31:58.936000',5,'Rachelle Park','https://lh3.googleusercontent.com/-Vv9gbiUKDRA/AAAAAAAAAAI/AAAAAAAAAAA/be-VAKSwobs/c-rp-mo-br100/photo.jpg','14567670160750071148',1933),('AIe9_BHVBnWjBJvk55vq2QEm0wl-tu4bcQhCRjJ1RpuiS4l2B7W32g_tNFDP-KrwdEjH5X8ljFWnUtxgH2SZMKOdcwtger4l1yd1cV-T8dhfglvxdDtAtws','I had a great experience today ! Shaunda was very helpful with educating me about savings on RX prices . Aileen was friendly at check in and checkout . Chris and Tina were great ! Dr. Rose and Marty made the visit pleasant! Thanks and keep up the great work.','2019-10-09 23:03:50.758000','2019-10-09 23:03:50.758000',5,'Patrick Griffin','https://lh4.googleusercontent.com/-kKN-X8ud8DY/AAAAAAAAAAI/AAAAAAAAAAA/hkbuaVXgDAM/c-rp-mo-br100/photo.jpg','16891069708558046635',4187),('AIe9_BHVBnWjBJvk55vq2QEm0wl-tVlL4jQ8_1BU3QrcgnV7oc2yXCLP8QbcoRrcHRzpNXO-fCqC-Bw1-RpK0zFZC4pwKbI23F6qfn9G-zEwgbmW2sLgACs','Staff was very friendly and prompt. They got me into a room as soon as I arrived. Everyone made me feel comfortable. I had a great experience there.','2017-01-21 00:05:19.497000','2017-01-21 00:05:19.497000',5,'Milody Tran','https://lh3.googleusercontent.com/-uHoQdCU8Bqc/AAAAAAAAAAI/AAAAAAAAAAA/xbxs1-LwVks/c-rp-mo-br100/photo.jpg','3511292162159714121',7898),('AIe9_BHVBnWjBJvk55vq2QEm0wl-TWahP-FkONoxpDaNMeWuFUqo-mTnyiQaiWLnlnmIsZb6J4sd0QgfxYziI3Xilu4v_jkecLXMEtWEZ3FtGUilhQg_rMc','Great service at signature care!!!! The staff was very nice, yet helpful.\nDr. Ybarra\nNurse Jani\nTricia B with radiology and PattyC. \nWill definitely recommend this place to my family and friends.','2019-09-13 18:58:40.698000','2019-09-13 18:58:40.698000',5,'Nathan Miron','https://lh4.googleusercontent.com/-AkLtN3mFsbM/AAAAAAAAAAI/AAAAAAAAAAA/NW4BeqXPyV4/c-rp-mo-br100/photo.jpg','16389487648212004696',2912),('AIe9_BHVBnWjBJvk55vq2QEm0wl-tWs1gENp5I5PNEiW7YrtwsKey4pl19Tj40q-A_KaxznGveves35sm-xSoqa-Ymu7zeLmQeKkfGCv-xdFN5vLrJxZQ4Y','This place is amazing!!! Thank you to our care team Dr Smith, Alvean, John, Jesus, and Olivia. We appreciate you all very much.','2019-07-27 20:18:30.396000','2019-07-27 20:18:30.396000',5,'Greg Healey','https://lh6.googleusercontent.com/-gS1WFvlcJJY/AAAAAAAAAAI/AAAAAAAAAAA/74aBrPZMd4Q/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-U62mc9WvChTNOlknWUsKKVitN0BUvYzBw3CT0WQ-kuzj3701GkIzEVF5rxuRaizjwK-Fwi8DYd5MtG9ixGjmA_BYAR0',NULL,'2019-08-09 05:27:09.321000','2019-08-09 05:27:09.321000',5,'Carol Curia','https://lh4.googleusercontent.com/-POZ4p0aSMIw/AAAAAAAAAAI/AAAAAAAAAAA/RegUxCTuCHk/c-rp-mo-br100/photo.jpg','16590124370714063921',3263),('AIe9_BHVBnWjBJvk55vq2QEm0wl-u7Lhk3Gi4Ahv9HuiJ7oQo6i6xvJmrVFIymDTzlwgr7M4tUFsalZiOwYTDmWNfqMf9bYMA5uDx07YiGyd0O5erH-oPS8','Signaturecare is wonderful. I called them before I got there to make sure they were open, and the friendly receptionist gave me the address and information, she even text\nMe the address. As soon as I arrived there was very little wait time (like 2 mins) before they called me back. The nurse, Jesse, was very polite and knowledgeable in what he was explaining. And Dr. Boeing ( I think was his name) also was very knowledgeable and had great bedside manner. Also, the place seemed very clean and sterile, which I greatly appreciated. I had to stay the rest of the night for observation and the staff that came in periodically were very friendly and attentive. I had never visited an Emergency Center before, besides an actual ER, and I\'d definitely come back here and recommend it to my friends.','2016-07-04 13:25:28.469000','2016-07-04 13:25:28.469000',5,'N Santos','https://lh4.googleusercontent.com/-qXohiv0Ytdw/AAAAAAAAAAI/AAAAAAAAAAA/mY6Am9ysNV0/c-rp-mo-br100/photo.jpg','3511292162159714121',7967),('AIe9_BHVBnWjBJvk55vq2QEm0wl-u8xmumtZewMp9QhTRZYZtCW3i67sO9eIgsEXQwNDAE0x8GeQi4fBG2ieLxrUk-CVDz5P0I1AGcN20DvgrDdE6lFnbYA','I love the whole staff mercades,Kristina,quyen, and Hong was magnificent staff and I will be back all smiles and 5 stars','2020-02-02 22:24:38.933000','2020-02-02 22:24:38.933000',5,'Luke thabarber','https://lh3.googleusercontent.com/-qLSDgU68ANE/AAAAAAAAAAI/AAAAAAAAAAA/sWiQ9WOglJM/c-rp-mo-br100/photo.jpg','12541597562633926366',10371),('AIe9_BHVBnWjBJvk55vq2QEm0wl-uatmsCSEQHVS5zQxXYGvgCiFds1j6n4bnWW8bjA87NJPk9E2iqgR1xrt5z1ecP89cQkvitNN-TlzZD4HItxRjYDres0','I\'ve been here a few times and always receive the best treatment. The staff here cares about their patients. From the receptionist Genesis to the physician Dr. Faig everyone was very attentive. The ER techJohn and Nurse Kristina were great as well. For any emergencies this is where I\'ll be coming.','2019-08-18 12:21:27.272000','2019-08-18 12:21:27.272000',5,'Eric Portillo-Lopez','https://lh6.googleusercontent.com/-H30XjWOXOAk/AAAAAAAAAAI/AAAAAAAAAAA/0_Bb0t51Tmg/c-rp-mo-ba2-br100/photo.jpg','12541597562633926366',456),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Uax0bKHTrVm1fm7vYcTcz3iRoMuci4frSWcWyBdCAkMeuOTn23Md4UB0VRQbfed09d0IE3-JTXe5zJ_GMhHbhBJyAp8',NULL,'2020-06-10 22:23:02.558000','2020-06-10 22:23:02.558000',5,'Delta Gonzales','https://lh6.googleusercontent.com/-Ob39sEKuCMk/AAAAAAAAAAI/AAAAAAAAAAA/d9yA_cN9FmA/c-rp-mo-br100/photo.jpg','16891069708558046635',22060),('AIe9_BHVBnWjBJvk55vq2QEm0wl-uD3gn1Nu39wnUWUJYa_yMgWPCdg-XOW0_9qgSuKF4MDuj8jzlrZZzmqyrqGeZm7NjV1aWuk0c52bNvf-eSwqSBYywyE',NULL,'2019-12-29 08:59:38.255000','2019-12-29 08:59:38.255000',5,'Nikki Scott','https://lh5.googleusercontent.com/-PakiFSYRQgM/AAAAAAAAAAI/AAAAAAAAAAA/4HiGZ4VKGho/c-rp-mo-br100/photo.jpg','3272657195432704501',6816),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Ue1vgeT1nkTo0ArkQzI86mXE1SgIyTrXzFU0DtVARmuuQH4Zx5Bzj57WkuLnTHnKividKirDvuHNijPqBshMrPtbf0w','Dr Curtis was super helpful as was the rn, Lucas. It was a quick and painless experience. Highly recommend','2020-01-16 19:02:45.713000','2020-01-16 19:02:45.713000',5,'LaLa Notorious','https://lh3.googleusercontent.com/-1nXSAaxJi4c/AAAAAAAAAAI/AAAAAAAAAAA/v1bzKQmXBRY/c-rp-mo-br100/photo.jpg','16891069708558046635',9763),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ug_IDwLtb8yutyB9FgZnE02dyk-2W8x8YfmQup821EEKWi4P0XhzwVqGmCaSSlUBzjy0TaS88dEHmJvECI-IJ6NNL-k',NULL,'2019-06-24 22:00:28.098000','2019-06-24 22:00:28.098000',5,'Juan Castillo','https://lh6.googleusercontent.com/-dp85kQSV6zc/AAAAAAAAAAI/AAAAAAAAAAA/co-EyC2UtI8/c-rp-mo-br100/photo.jpg','13486358490203335051',927),('AIe9_BHVBnWjBJvk55vq2QEm0wl-UgWrchmtPVkRMzWFZAX9K6TvrUojlGfhoOC667lRvbxVT_Z_vj1C7wcnE8iWLYcibvlhh_RYyb6fO7QoQOls2leKzzw','Unbelievable care , best er visit we have ever had !! Facility was very clean and nice decor! Jennifer at the front desk was very welcoming and nice ! Christina R was our nurse , she was Very attentive and seemed to really care ! ( which other er hospitals seem to treat people like a number —- NEXT!!! ) Chelsey took hubby’s vital signs , offered warm blankets and pillows, all with a smile and bubbly personality. Even the X-ray tech Christina was nice and very professional. Dr Elsbecker was amazing , listening to our concerns he was very knowledgeable and understanding! Overall I would give 10 stars if I could !!! And definitely would recommend to family and friends!','2020-02-21 20:14:40.986000','2020-02-21 20:14:40.986000',5,'Erika Folger','https://lh4.googleusercontent.com/-8QCHap6dcEQ/AAAAAAAAAAI/AAAAAAAAAAA/sMEt-Yc-qR4/c-rp-mo-br100/photo.jpg','16891069708558046635',13936),('AIe9_BHVBnWjBJvk55vq2QEm0wl-uMdK8wEjkxyybHIGxzmjCTF2WgXt9tdvu6RHHMXetca4v9Yxv-Y3R7Rpywa6GABK8YX-G-eFdJvBypUa9ZU62SIos_U','I’m so impressed with this er very organized and cleaned faculty. First time, never heard of them till I google dental er care. They were so nice to me from the lady name Jocelyn in registration to the nurse Alvean to Dr. Tran even to the radiologist Tricia. Even though it wasn’t much they could do for my toothache, but I appreciate they did all they could do in my time of need. Thanks Dr. Tran and Nurse Alvean for being patient with me and helping me. I really appreciate it.','2019-06-26 12:00:02.249000','2019-06-26 12:00:02.249000',5,'Pennie Davis','https://lh6.googleusercontent.com/-nQRiIZ7JYa8/AAAAAAAAAAI/AAAAAAAAAAA/NwTTgjUJdEI/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-UouOFK34AOL3l7H08717SxKUPbZ0tQvvjxj-byzXowFupPkq-G86D_4tCh4gPyyBUPshtbPfM83qaoPx3N5UCiNFXjA','Great experience. Service was fast and friendly and the facility was very clean. Highly recommended!','2017-01-09 18:18:04.354000','2017-01-09 18:18:04.354000',5,'Stephanie Wilson','https://lh3.googleusercontent.com/-aA0W6Zz5dmI/AAAAAAAAAAI/AAAAAAAAAAA/-MyBXsUa64A/c-rp-mo-br100/photo.jpg','14567670160750071148',1919),('AIe9_BHVBnWjBJvk55vq2QEm0wl-uPwnWkkt3hlb0dzCpjRAYErp0GZHuyi2h9enzm5rLXaShs6EyL-MNp-Yy1ajqJngZhKUkDk5h-rhQJz_D5_B_CXih9w','Dr. Mauldin , Kat S, Marvin, Melissa are very friendly. The Doctor and Kat S \"Nurse \" took their time and asked all the important questions so the could figure my issue. And they made sure I was comfortable while waiting for test results ,and meds.','2019-06-30 02:01:24.080000','2019-06-30 02:01:24.080000',5,'D J','https://lh3.googleusercontent.com/-8nun1TNu6Bs/AAAAAAAAAAI/AAAAAAAAAAA/zzJ8nZUMVzs/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHVBnWjBJvk55vq2QEm0wl-uQ1WdYasEqx1PRsHxIqaC7W_ovuJfWu7oZLAR_u14Cztvl0Fn_DW9DiHhzstg3Eq3k2euG1sNycHKzCJHdww18l3aXY','This place is awesome ! The building is brand new and the staff was very quick and friendly. The environment very enjoyable 🤔','2019-09-15 03:23:46.217000','2019-09-15 03:23:46.217000',5,'ILovePlnkTac0','https://lh4.googleusercontent.com/-eGNHM70UjR8/AAAAAAAAAAI/AAAAAAAAAAA/HKuotoml3Fs/c-rp-mo-br100/photo.jpg','2694018788013845459',6065),('AIe9_BHVBnWjBJvk55vq2QEm0wl-uqmUo3PDZFCcxt9RRpS74gkS53owfLmlGLOHEnrWquBkRo9SzKqkiI9twV8gY1kZBJ33MdQSxnPNl4nT9dYb3OJQ4lE','Super friendly and attentive staff. Thorough explanations provided of everything happening and needing to happen. Attention to making the patient comfortable and at ease definitely prioritized! I recommend Signature Care Emergency Center South Austin very highly! I hope I will not have the need to come back but if I do I know I’ll be in excellent hands.','2019-02-03 09:31:18.359000','2019-02-03 09:31:18.359000',5,'jessica rattray','https://lh3.googleusercontent.com/-9KcNTVT04LY/AAAAAAAAAAI/AAAAAAAAAAA/DG-iW1jDGkI/c-rp-mo-br100/photo.jpg','16891069708558046635',4357),('AIe9_BHVBnWjBJvk55vq2QEm0wl-UR0hYdeKQ8QQsT8x7AiEg1ytY91vnUkDsXzU0mJnhOP1JOZwFTtKbMsYxFr5LQBjx46Au7ltaqdrSqsOMyEaZvqW--k','I have used this facility a number of times for emergencies and most recently for Covid 19 testing. Staff is always pleasant and they do a great job taking care of you when you are ill. Highly recommend this place when you are in need of an emergency exam','2020-07-07 00:04:50.717000','2020-07-07 00:04:50.717000',5,'Mary Francis','https://lh6.googleusercontent.com/-vwjfM9GirmM/AAAAAAAAAAI/AAAAAAAAAAA/kPbLwgYrm-Y/c-rp-mo-br100/photo.jpg','8679688254631342173',21304),('AIe9_BHVBnWjBJvk55vq2QEm0wl-uRp_dQ4WwnYmbTCwElDlRJBb_PPejb3gJNfEKiwQJIr0q-BKzCt4sAIGgKjG6PmsdWzgm9CTnj0fD88Y5xQTioH0QVg','Had to get tested for Covid and while I didn’t schedule an appointment, they were able to see me extremely quickly and all the staff were very nice and helpful and took great care of me. Will definitely be going back to this location if I have another scare or for future medical related emergencies.','2020-07-23 20:08:17.883000','2020-07-23 20:08:17.883000',5,'Leila McElroy','https://lh6.googleusercontent.com/-5ZJ3jhqZ5nA/AAAAAAAAAAI/AAAAAAAAAAA/nSvEnO4jGjA/c-rp-mo-br100/photo.jpg','2077061009497551125',22853),('AIe9_BHVBnWjBJvk55vq2QEm0wl-UUYlixpj1d8geqjt7dQ3eIXz4SkzTAFNmMuDyKdXXzMjMlVhU1wVhBt74BP8YF1Jz9cX8YYJb8hzuKeLGVRoPtdY6q4','I went here last night because of a major headache I had and fever. Let me start off by saying that the lady at the front desk was really nice. And the nurses who took care of me were excellent. They made me feel at peace. The reason im giving this place 3 stars is because of the doctor. He was rude and very unwelcoming. He was very cold. He didn\'t answer my questions. He was more concerned about getting me out of there quick. No compassion. This place would be better if they had doctors who really cared. And he didn\'t even check on me only the nurse did. I think I saw him a total of two times and I was there for a long while.','2019-01-19 09:42:25.319000','2019-01-19 09:42:25.319000',3,'Vero C','https://lh3.googleusercontent.com/-WKou6VaM3ss/AAAAAAAAAAI/AAAAAAAAAAA/2zSRjS1liH4/c-rp-mo-ba2-br100/photo.jpg','8679688254631342173',8883),('AIe9_BHVBnWjBJvk55vq2QEm0wl-UVlLkod8tB-5JuZo5Eb6A_7hMVUQN1jgw9JrfHMAb3K13nk74fzWKFHBm3KsMJkBP2IuYqx1pu57Id9CQPZwDl4CqcM','My experience was absolutely amazing! The staff made my family feel very comfortable and were so sweet. Edward, Kelvin, Michele and Dr. Paul were so amazing from the time I walked in to the time I left. They helped make me feel very comfortable and kept me smiling despite the pain I was in. Thank you guys so much for the awesome service!!','2019-03-16 06:39:17.039000','2019-03-16 06:39:17.039000',5,'Kia Ware','https://lh3.googleusercontent.com/-_2d2gmeKXl0/AAAAAAAAAAI/AAAAAAAAAAA/ypLWb95APyc/c-rp-mo-br100/photo.jpg','2694018788013845459',6178),('AIe9_BHVBnWjBJvk55vq2QEm0wl-UYbNJIoAB8SrUWvhqGEbMYxBBXHCFV9_R7U2Va4OqnhozPm1kxwknzI4jVmUY4iF9JxqVdPD9O4zcR-F_xII0T91_5U','Staff was very helpful , and caring , took us in right away and assisted','2020-02-17 17:48:40.998000','2020-02-17 17:48:40.998000',5,'Hakeem Magee','https://lh5.googleusercontent.com/-nH0ysb9J-TU/AAAAAAAAAAI/AAAAAAAAAAA/QiTqHBAMNrI/c-rp-mo-br100/photo.jpg','12541597562633926366',13368),('AIe9_BHVBnWjBJvk55vq2QEm0wl-uYcdkygqt3o89R_GHj1hEkCNKsdM_YXbI9r60lFapcUtqFNCatKSN_Gv2sUO-FiQUXR7G9q8a8QrNjZiTy8gCm6xZQ4','Visited this facility a couple of weeks ago and its customer services is the best. Dee was very helpful.','2019-06-19 20:30:46.165000','2019-06-19 20:30:46.165000',5,'Marcial Jimenez','https://lh5.googleusercontent.com/-gbnoxbL2km4/AAAAAAAAAAI/AAAAAAAAAAA/slt2oxVbsbA/c-rp-mo-br100/photo.jpg','3511292162159714121',7297),('AIe9_BHVBnWjBJvk55vq2QEm0wl-v01jGmMh4pAc1HpdvBaodxepGV2iWKWf4pdBxLVtjsIMXxKQZdKVHydaYWW-rCmyyL_8Gpk_evrJIhjB38Z-ZjxP4zY','Great experience! No wait and the staff were so friendly. Kendra and Jacob were awesome!','2019-11-07 22:29:14.069000','2019-11-07 22:29:14.069000',5,'Este Musil','https://lh6.googleusercontent.com/-zoOhHwwsLM4/AAAAAAAAAAI/AAAAAAAAAAA/Gehdf6vQIvs/c-rp-mo-br100/photo.jpg','16590124370714063921',3096),('AIe9_BHVBnWjBJvk55vq2QEm0wl-v8yfrKd19UNwFAeNVyCZrNJAt1qBVqgKuaiC3guS7jnlLOi09y3qm675LDzWwNyTUpu1fNi36qMRCrWQH9YXP9Qs2C4',NULL,'2019-06-24 01:21:33.962000','2019-06-24 01:21:33.962000',5,'Jose Martinez','https://lh6.googleusercontent.com/-LmB6jmWHNIQ/AAAAAAAAAAI/AAAAAAAAAAA/9nAyiy4gmkc/c-rp-mo-br100/photo.jpg','13486358490203335051',929),('AIe9_BHVBnWjBJvk55vq2QEm0wl-vc5XabDMWkvexmZYtqluWpxyfytnRbxK5xR_6NyIQ_WtghFWv8TCa3y34-Erxmw9y3gEa7I4S9X_4_qAjHWpVJbTv9s','Theressa was very helpful','2020-07-16 21:10:24.303000','2020-07-16 21:10:24.303000',5,'Fatima Tamez','https://lh6.googleusercontent.com/-vyJCWGYJfKU/AAAAAAAAAAI/AAAAAAAAAAA/kT_thpHWlvc/c-rp-mo-br100/photo.jpg','6521947413723274945',22882),('AIe9_BHVBnWjBJvk55vq2QEm0wl-vCn61_0S5f_RrywC8zhAzs27Cc9AuAePJ5vFcsjKFvfbxFlDhTrMjhk7DgQx0grFTYjX_FQklbpxxtKHH5VEXqkzZh8','Wonderful staff everyone was friendly and understanding. Dr Miller took great care of my child.','2019-11-11 04:20:04.455000','2019-11-11 04:20:04.455000',5,'Miranda Carrasco','https://lh3.googleusercontent.com/-o9ehPgBMOGg/AAAAAAAAAAI/AAAAAAAAAAA/YntmlEqWDt0/c-rp-mo-br100/photo.jpg','13486358490203335051',746),('AIe9_BHVBnWjBJvk55vq2QEm0wl-vdDU5v36KJFDkzoT8UzoaxyN5jnVr_vDV_RrmS3fi8qqL8VaywHex6v8wR2NVpwliMCOIT1-4kiZ-NzpgPCwqhQHwDw','I really enjoy coming here the staff is very quick to help you and meet your needs. I highly recommend this place. The service I receive is always excellent.','2020-01-10 01:18:50.736000','2020-01-10 01:18:50.736000',5,'Tatyana Campbell','https://lh3.googleusercontent.com/-G3LJ4HxwEjg/AAAAAAAAAAI/AAAAAAAAAAA/U2q5AKeKsjY/c-rp-mo-br100/photo.jpg','2694018788013845459',14273),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Vedspdbxz1ZA6Sfs2ui5bj5HHkGFjU2xRjqZ2X9iCsAIO5mryHPIyCx9t0rTN7CTnDDiSsGDvVgu5Z_uETQq2-AU9F4','I had a great experience here! I was immediately taken care of and I feel like I had a very personal experience with the staff. I will definitely be recommending this place to my friends and family.','2019-09-18 16:40:59.223000','2019-09-18 16:40:59.223000',5,'Mary Grace Fletcher','https://lh4.googleusercontent.com/-wU19fzsDIqI/AAAAAAAAAAI/AAAAAAAAAAA/lBqkprIaqok/c-rp-mo-br100/photo.jpg','16590124370714063921',3200),('AIe9_BHVBnWjBJvk55vq2QEm0wl-VEu_JNj_0ec7ONjBGCzF8sodWv79KRk-10Er8-qkfQnkWEHD9WolNdDcXq7boBHULwnJE4xRDG9bpD5PPm2TK2mqcYg','My girlfriend was short of breath, and within 5 minutes she was in a room with a doctor, a paramedic and a nurse, followed shortly with her first breathing treatment. She was scared and everyone was very reassuring that they would take care of her. They made us both feel welcome, checked on, and cared for.\nAnthony was her nurse and made sure she was comfortable and explained everything he was doing as he was trying to make her calm. Tyler (paramedic) started her IV with one stick and minimal amount of pain, and Morgan (X-ray) was very helpful in assisting her to prevent a fall and obtain a good xray. \nAll in all a very pleasant experience.','2018-09-04 23:31:20.843000','2018-09-04 23:31:20.843000',5,'Darren Bates','https://lh3.googleusercontent.com/-UmcQFAHtmbc/AAAAAAAAAAI/AAAAAAAAAAA/Wd9EUPyMoZ8/c-rp-mo-br100/photo.jpg','16590124370714063921',3747),('AIe9_BHVBnWjBJvk55vq2QEm0wl-vkloFR9ZS8ihIiuVcsRQ_YFps8Ujt3CKSQArSr64J1pdwtEDKnOBGbxPfrlWoIXFcm2au0DjMUbZi1YzikDf9Haj86Q','The front desk staff, the nurses, and the doctor were excellent','2018-09-15 05:41:43.242000','2018-09-15 05:41:43.242000',5,'Alice Gray','https://lh4.googleusercontent.com/-qiPvJDTLfzs/AAAAAAAAAAI/AAAAAAAAAAA/ZxuJN56W2ow/c-rp-mo-br100/photo.jpg','14567670160750071148',1506),('AIe9_BHVBnWjBJvk55vq2QEm0wl-voFCg5PKsxV8-8I_92V-n_G1lzfSYr-A20iPy_kImwhQS-TS6M1zf03khP082EbZ950Ef7wkz7bN0Bv8p-KZ-XISneQ','Great experience. Jennifer D at the front got us in super fast and Dr Simmons was wonderful','2019-12-13 15:54:33.498000','2019-12-13 15:54:33.498000',5,'Jennifer Hudson','https://lh4.googleusercontent.com/-CgB97rqvJMU/AAAAAAAAAAI/AAAAAAAAAAA/6ZhitzY6IRE/c-rp-mo-br100/photo.jpg','8626688543755174284',14650),('AIe9_BHVBnWjBJvk55vq2QEm0wl-VqADrfrCB2t9e09ylptuSIAXfC6XtfnPDSNItEo5HcxxD78RBxwpSEXgOcUVh7C2aTXwRVxW8AEE8R2tN0XDCmKRA7E','Amazing service. Attentive, knowledgeable and friendly staff. Dr. Henderson Answered all my questions. Nurse Susan made me feel comfortable. Technician Angel was helpful. Tanishia at the front was welcoming. I recommend this place 1000%!','2020-02-19 03:41:47.620000','2020-02-19 03:41:47.620000',5,'Melinda Veracion','https://lh5.googleusercontent.com/-y_sZ3vP4Pws/AAAAAAAAAAI/AAAAAAAAAAA/SXk9O1_QnEI/c-rp-mo-br100/photo.jpg','17898197009688164559',14159),('AIe9_BHVBnWjBJvk55vq2QEm0wl-VrChbSk2e4N9IOdehuWke2YJsfZ_wrqi7437i63Moe49KvcgeMYNgizu6mqcYPa7ErYW1vE41VoDwXRAGOnFt77P9us','I came in for a sore throat and within an hour they addressed the pain and told me what was wrong! Thanks to Lorena, brad, Morgan, and dr kimball it was fast and effortless','2019-12-31 14:48:54.836000','2019-12-31 14:48:54.836000',5,'Gavin','https://lh5.googleusercontent.com/-9ZZRA34yPqI/AAAAAAAAAAI/AAAAAAAAAAA/e9zT-RfWBA4/c-rp-mo-br100/photo.jpg','16590124370714063921',2997),('AIe9_BHVBnWjBJvk55vq2QEm0wl-VuJZaWbUs-54Ti-R6-6UJ11rWGb31Sk_b3HTgl6TqUbDaHUrwK-zPXhZlk-5s_q62hinMcub_7Zpz-C53O93BFbbp68',NULL,'2018-08-30 05:30:25.485000','2018-08-30 05:30:25.485000',5,'Casandra Mendez','https://lh4.googleusercontent.com/-yFllfZZALto/AAAAAAAAAAI/AAAAAAAAAAA/Yuyr-ogVN9Q/c-rp-mo-br100/photo.jpg','14567670160750071148',1541),('AIe9_BHVBnWjBJvk55vq2QEm0wl-VWZ5mEBVDiMFBsHdcw70isslip4cHu7zEM2X08ov-Wsf_hMHT3KftxDCb2OtlcC2XKVWLVQkYeln9PLdFeSkwekzJ40',NULL,'2020-02-11 20:11:30.698000','2020-02-11 20:11:30.698000',5,'Lauren Szymanski','https://lh3.googleusercontent.com/-xWALWXoMmTo/AAAAAAAAAAI/AAAAAAAAAAA/87tPkBvrjpk/c-rp-mo-br100/photo.jpg','16590124370714063921',13866),('AIe9_BHVBnWjBJvk55vq2QEm0wl-W0M3UoGzUwKqRMrxVrTlIE1U9vVGch2ncTYjOjqGHWzeFC5S8YszCs2HGpMrBeGSGvod-24N4XcFA3K6Z23sHyGSA9w','Good','2020-02-15 17:47:19.091000','2020-02-15 17:47:19.091000',5,'Kyrstin Nieto','https://lh4.googleusercontent.com/-IkcS6ZS-imo/AAAAAAAAAAI/AAAAAAAAAAA/55nFAjMqqqA/c-rp-mo-br100/photo.jpg','13486358490203335051',13420),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WAchT79xMxxB68WVB5SRvtfnk4-nah189iiOEIfdWe4c0I56DU2BcCM9hMe6LMCO8wNr113y3cbbZNr1-XvSXAX_NgY','After hearing horror stories of 24 hour Er places I was scared but after taking my son I was truly impressed by the kind caring staff\nAll the way from Maria of registrations to Dr.Huerta\nThank you and we’ve found our new ER','2018-12-26 23:21:51.236000','2018-12-26 23:21:51.236000',5,'chris bolton','https://lh4.googleusercontent.com/-FG1H-qYxka4/AAAAAAAAAAI/AAAAAAAAAAA/iawvmnNOZkg/c-rp-mo-br100/photo.jpg','13486358490203335051',1120),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WBDC8MLPpwbFBntOcFrUy1WYdjTCogxNOFelYf5s87VbVLZ8Sy4KYjC4NLN9beFvAtGlqiwgJi_FPBkJS4H-OmMJHco',NULL,'2019-02-24 18:57:02.504000','2019-02-24 18:57:02.504000',5,'Cassidy Gray','https://lh5.googleusercontent.com/-VRENorbOc4A/AAAAAAAAAAI/AAAAAAAAAAA/GkcVT3Vo1Dg/c-rp-mo-br100/photo.jpg','16590124370714063921',3524),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WbtO6VXtX9Qfw0LCedu5Wwn7zjGQviM2wqQFL7XHCx6ChI8CF5iTZt8zdIVVu6VMRu5yB--oVYgDsYU2YrlL9oKn2_s','Keera, Jesse, and Doctor Golla it was a pleasure once again.','2019-06-25 20:49:07.562000','2019-06-25 20:49:07.562000',5,'Edrena Lyons','https://lh4.googleusercontent.com/-mrsuVw958b0/AAAAAAAAAAI/AAAAAAAAAAA/PB5zTzCdkfU/c-rp-mo-br100/photo.jpg','17394740196501090048',4648),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WcNL062RM0MshWbKyXm1v_Ke27itEiK6qfiswARbg2SDfswiQGIPlOmBGmeqNQ865e5Mp6Kdt0hHi8-LcxhjsSg6fCw','I was very satisfied with service from Dr. Nguyen Nurse Robert Tech Tricia and the person greeting me Patty. Wonderful staff excellent service','2019-08-30 13:13:19.571000','2019-08-30 13:13:19.571000',5,'Lashekia Williams','https://lh6.googleusercontent.com/-Ksx97bqxrCk/AAAAAAAAAAI/AAAAAAAAAAA/Afhzry3FXxc/c-rp-mo-br100/photo.jpg','16389487648212004696',2965),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WDs9rrf4NGvV3XQaoyvm6_06YrLce5CrobqjQt-Z5ephzdkcSlnLNBY818B4JHS44vfb32voHKff0phEWQIwu7UmQl4','I come to the signature care ER in the heights all the time it’s near my house. They always take such good care of my family and I no matter How we’re feeling! they take great care of us, I would recommend them to everyone!!! It’s always so clean and everyone is so friendly.','2020-03-11 17:45:25.741000','2020-03-11 17:45:25.741000',5,'Dejha Wiltz','https://lh6.googleusercontent.com/-cCK4YhTq1Ng/AAAAAAAAAAI/AAAAAAAAAAA/ZPMifWVTeo0/c-rp-mo-br100/photo.jpg','14567670160750071148',20948),('AIe9_BHVBnWjBJvk55vq2QEm0wl-We2UiWlA4yy079oYv9aG1FQ9o-abEprtDySviBQQQk6_ShPGVFSuzqFNsFp51dVr6nxUl8zJSZP4bTBbtsuSTFNAqxw','Amazing facility. Free food and Alexis was amazing at the front desk.','2019-02-14 04:48:59.135000','2019-02-14 04:48:59.135000',5,'Bryce Adams','https://lh5.googleusercontent.com/-VCWit1EWBek/AAAAAAAAAAI/AAAAAAAAAAA/kO6DSH34ws0/c-rp-mo-br100/photo.jpg','16590124370714063921',3550),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WhDMT61KfJe6kBXNBaiE2XApx-psxNpjCsJ5ugto-9E5tY4zq-keRXLY-cFT1zsgS9QZFqy1XLJ2iy4P0zM0eJuCRsQ','I had a great visit reg Rashaad and Sunday was amazing. Dr hung, azizi and tech miss Fatima. Definitely will be back','2020-02-21 03:05:51.269000','2020-02-21 03:05:51.269000',5,'Francisca Nnabuo','https://lh6.googleusercontent.com/-5_qOP2ljacU/AAAAAAAAAAI/AAAAAAAAAAA/yRa3tR_xTjg/c-rp-mo-br100/photo.jpg','17394740196501090048',14013),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WjmZ4e_3k-cgFs5n9YvHgS99bdwTq6YGVZ61mxhsftQ3KBHJsYdbiopp7kzbM6zREjWLPOokgViwMJZU7whGBFCN588','I came in yesterday for a truly awful pain in my lower back - I could barely walk or bend my waist when I arrived. From the second I limped in I could tell that the people there truly cared about my wellbeing. The facility manager Adam runs an exceptional team of amazing doctors and nurses. Dr. Rose couldn\'t have been more understanding of my pain and she offered me several options, as I am not a fan of most medicine when it comes to pain relief. The alternative therapy she offered me was exactly what I was looking for. In the end, I walked out so much more comfortable than when I arrived, and I want to thank the my nurse Christina and Shaunda in reception for helping me through it!','2020-01-10 22:32:02.231000','2020-01-10 22:32:02.231000',5,'Hunter Wilson','https://lh4.googleusercontent.com/-fmjVJTJT6Gw/AAAAAAAAAAI/AAAAAAAAAAA/jLtLSJtygpE/c-rp-mo-br100/photo.jpg','16891069708558046635',9501),('AIe9_BHVBnWjBJvk55vq2QEm0wl-wKKmVjMfXlhjjl8VEWbB81UANuoR7p0Nkq4eOSkojdiZ6njAtwNX-1-vWWSqlOSNnzPW1NVfAq_6nWDYdRnxiuhVKmA','Kristina was great help, my friend was taken care of, stitched up and was ready to go back to the game. \n\nRadiolog ... Allison\nEr tech.... Julie\n\nGreat team and thank you for the care','2019-10-28 01:12:53.155000','2019-10-28 01:12:53.155000',5,'Adam Acosta','https://lh4.googleusercontent.com/-8UQFFBMbjiY/AAAAAAAAAAI/AAAAAAAAAAA/YpPo_churjg/c-rp-mo-br100/photo.jpg','13486358490203335051',762),('AIe9_BHVBnWjBJvk55vq2QEm0wl-wl7Z78lXcHF7HmNh0gHBhuscs_7qBK8k1C_xfteF1A5LUebAeVE6mmBv52iOMSPEVy1ZhazwGE_FTuWBeWWllZnliQA','This place was amazing! I would recommend this place to friends and family even people i dont know. My nurse carissa was just the perfect example of what a nurse should be. She was so sweet and attentive. She was great with the needles as well. Another gentleman nurse had taken my xrays was also super nice. Their front desk staff ms.dee was the best. She got me to the back quickly helped me with my paper work and with understanding my expenses. I even had to call back after leaving to ask for medical advice. Dee remembered me and promptly transfered the call to carissa. Who was again so helpful! Thank you guys for everything! Even the security guard was nice! 10 out of 5 stars!','2017-06-07 18:27:41.921000','2017-06-07 18:27:41.921000',5,'Briana Salinas','https://lh5.googleusercontent.com/-7D1jGavpi9Q/AAAAAAAAAAI/AAAAAAAAAAA/lCBbJ7wkJeA/c-rp-mo-ba2-br100/photo.jpg','14904078213800803294',2352),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WPfZzZmKAJlK_SEHvWV8pxF_k4HFPOnbbyCzuZeCrHKq5duAB2plj0WAHTeYW4xVKOkvrVSH1gGj5E9DprwXPA2ketM','I had a great experience here, everyone was so attentive and caring. The visit was super quick and I will recommend this location to all my family and friends. My nurses Nicole G. and Brandon W,Dr.Dendy, the tech Andrea, my radiologist Dustin H. and the register Vanessa G. were all great and helped me have a wonderful experience!','2019-12-22 03:10:36.038000','2019-12-22 03:10:36.038000',5,'desmond nelson','https://lh3.googleusercontent.com/-6PKY35JsaHg/AAAAAAAAAAI/AAAAAAAAAAA/jWoZfr1cTzs/c-rp-mo-br100/photo.jpg','14567670160750071148',1167),('AIe9_BHVBnWjBJvk55vq2QEm0wl-wVAYMLrkWa7Ygv8tPLkM-R_Ra9G3mOUNFSBwgAAOZtQR_jUtClvvzWrKD0XqJdrn0LNGLia4ynjqxQUWLdXDXBqXre4','Alvan , Marcus, Patricia and Dr. Nguyen were all great and helpful','2020-03-03 19:55:53.652000','2020-03-03 19:55:53.652000',5,'Wolf of Gotham','https://lh3.googleusercontent.com/-lF9yLhjuzRg/AAAAAAAAAAI/AAAAAAAAAAA/7wZBbTXT-kQ/c-rp-mo-br100/photo.jpg','16389487648212004696',13740),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WwON9YftGNBG1u0cVcnPKSgImbGxczvIywBr1_C1JOdDK_HTBa7HFoNTHica5pSaP8jlDozPkA7ne44UXQhueN5GxWo','Dr.Henderson\nJennifer,RN\nGunner,TX TECH\nCourtney,REG','2019-09-19 17:50:20.868000','2019-09-19 17:50:20.868000',5,'Life with CC G','https://lh4.googleusercontent.com/-q_UHZEGT2Uo/AAAAAAAAAAI/AAAAAAAAAAA/nxoobpqJFbI/c-rp-mo-br100/photo.jpg','3272657195432704501',6889),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WxYug652NOU11X6nFV8u1u_nlzuNSTIeDFynOMETnRDr9A_mI2GN4v3m02hczcwGFc4lKE_RpbudGCrNiS8huQlEtZ8','Good service and fast and friendly Dr. Daniels,Rollie,Natalia, and Stephanie','2020-01-25 06:15:57.918000','2020-01-25 06:15:57.918000',5,'Coast n\' Bay','https://lh3.googleusercontent.com/-mfXINIkpaWM/AAAAAAAAAAI/AAAAAAAAAAA/6TaAw_ccdck/c-rp-mo-br100/photo.jpg','8679688254631342173',10334),('AIe9_BHVBnWjBJvk55vq2QEm0wl-WyBy9-75ajJjWskYRLQkpa8XsurDuF9FBiKSV5QnWFQ8TdSlb5hYr-eCJ-9yZxKTUXq0Fw3o-Jupx421X_E8nyhqWO4','My experience was amazing Tanisha the registration staff she was attentive caring and got me into the back in less than 2 minutes. Dr. Thomas was very thorough he was very very sincere. I would recommend signaturecare emergency Center to all my family and friends.','2018-11-21 06:59:34.446000','2018-11-21 06:59:34.446000',5,'Tanya Brown','https://lh3.googleusercontent.com/-Od4CMnfr01s/AAAAAAAAAAI/AAAAAAAAAAA/AGYe6i5dfJo/c-rp-mo-br100/photo.jpg','17898197009688164559',5924),('AIe9_BHVBnWjBJvk55vq2QEm0wl-wyCWpRGmODVHGoyop27eGj8hrubVq6WYl_uy5GNGLdpoUeVBYf4Yhm8j362_eswh3bqm54lPK3MfAtxahCQtQ2BfZqU','Went Saturday morning 11/10 with severe cough, congestion, fever, chills. Outstanding experience. I was going to triage before I finished my paperwork. Staff very efficient. Had chest x Ray, breathing treatment and tested for the flu. Was diagnose with Acute Bronchitis. Dr Hehman took his time explained the results of he tests, negative, and wrote me 4 prescriptions. Highly recommend','2018-11-11 14:55:43.663000','2018-11-11 14:55:43.663000',5,'Duane Lee','https://lh5.googleusercontent.com/-Xs2uiez5298/AAAAAAAAAAI/AAAAAAAAAAA/9BVlOwsyE-o/c-rp-mo-br100/photo.jpg','8918455867446117794',9216),('AIe9_BHVBnWjBJvk55vq2QEm0wl-x41lQtP07OuxcuHubg7h-XE1-OUTb1KZlPJIRf4yDvlePsCD7ozN-ErO3GVrO7DVHsLcQfz3Ies3IznyoJjDb44uHk8',NULL,'2017-02-23 19:06:55.353000','2017-02-23 19:06:55.353000',5,'trichy rockz','https://lh3.googleusercontent.com/-BNIel8VFUck/AAAAAAAAAAI/AAAAAAAAAAA/ftON01csg3Y/c-rp-mo-br100/photo.jpg','14904078213800803294',2405),('AIe9_BHVBnWjBJvk55vq2QEm0wl-x49yxD0ajt6J2dOXy2YspH4zSUgjtwaNmfWdXnM8QjULEjzsICBgrs9VLgZriW9kx6D21t6yeMSif3XSh88jqn5wMiw','I had to go to the emergency room today for stitches (avocado accident, careful cutting avocados!) and the staff was so wonderful. I was in and out in about an hour, and they were so kind and accommodating during my visit. From the front desk (Jennifer), nurses (Christina and Chelsey) and the doctor (Dr Elsbecker). Of course you always want to avoid having to come to the ER, but if you live in the neighborhood- highly recommend!','2020-05-25 00:59:40.027000','2020-05-25 00:59:40.027000',5,'Krissy Carter','https://lh6.googleusercontent.com/-K8ifuOtxlE8/AAAAAAAAAAI/AAAAAAAAAAA/_tOjlNNE0ps/c-rp-mo-br100/photo.jpg','16891069708558046635',22697),('AIe9_BHVBnWjBJvk55vq2QEm0wl-x5bW9QFmrMaiK9XTi3RrGRwHvUbevZZNY5BZYE38MIIyipTOMl5lCzuzMdw1-YgS1_irwvaKgaQS3zKhjftzKxV-PTc','Dr Nguyen, Racheal And Ashley were amazing!','2019-08-16 19:59:34.286000','2019-08-16 19:59:34.286000',5,'Destiny Harrison','https://lh3.googleusercontent.com/-bWefR0Yc3ko/AAAAAAAAAAI/AAAAAAAAAAA/vf2ccTtBpZ8/c-rp-mo-br100/photo.jpg','17898197009688164559',5580),('AIe9_BHVBnWjBJvk55vq2QEm0wl-x6ahSh03FBw3CEvHLuNYHHbj5lU69xYyrcLDgh56TwIzavJRKgWy9Vt_ExAKzub8e4X0nId4AocX5kRlSW_WHh44ffc','Dr. Patel very good Doctor and was helped fast.','2019-11-07 19:49:00.125000','2019-11-07 19:49:00.125000',5,'Javier Orta','https://lh5.googleusercontent.com/-dNJVOiAG8ds/AAAAAAAAAAI/AAAAAAAAAAA/qx1OcMvgNsk/c-rp-mo-ba3-br100/photo.jpg','13486358490203335051',751),('AIe9_BHVBnWjBJvk55vq2QEm0wl-X8jgB0sBy6onsZeQCq6-AH8HexPJumpv0deWo6BYBGcluqZHugJwFbhZsXdGIOt5EMTPytYGzNbugDz6Z4C6aIzhEuM','This the most amazing urgent care center I’ve ever been too .they treated me so kindly and made me feel real comfortable and they took there time wit me they were very helpful I would like to thank the whole staff Dr. Appiah , Nurse Alvean , Radiologist Tricia, Registration Ayesha and the ER tech Jordan.. the whole staff was amazing .','2019-10-11 15:32:14.586000','2019-10-11 15:32:14.586000',5,'Ikhea Huery','https://lh4.googleusercontent.com/-FJiu7i4rTfo/AAAAAAAAAAI/AAAAAAAAAAA/AD5N_Nmqcbo/c-rp-mo-br100/photo.jpg','16389487648212004696',2828),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Xa0o75aGf0AUrnwB1dyv_B9FOqrq3eIQxctP75yQW-x_ONyhhA2EJ--s5UMoNthIQDFSylnk3FXeC3kaMH55QdWuYUo','I\'m currently in the ER and I can say for a Fact that you will loved it here if for any reason you need to come in. I came for a rapid test and when checking my vitals JD got concerned and went to talk to Dr. Hemerka and got me into one of their ER room and they all have been so sweet and attentive to me. I can guarantee if you get seem by Dr. Hemerka, Paramedic JD and nurse Amy you\'ll be in great hands. I was telling my husband that next time our kids need to go to the ER we are going to bring them here because they treat you so good and get all test done so quickly that even the kids won\'t feel like they were in the er. Also, I have seem Dr. Hemerka multiple times during my visit, more times than what I\'ve seem my primary care physician in many years 😅. Dr. Hemerka is great 👍🏽.','2020-07-30 22:35:51.765000','2020-07-30 22:35:51.765000',5,'Karol Vasquez','https://lh4.googleusercontent.com/-gwP2aGdAIbw/AAAAAAAAAAI/AAAAAAAAAAA/nKje1ENXHW8/c-rp-mo-ba3-br100/photo.jpg','2077061009497551125',22969),('AIe9_BHVBnWjBJvk55vq2QEm0wl-XE4Qjb1Nel93sxq2jFrd6mGvyWCxETg9mGzxJHIV48CzExpcQTlHKhCIjrZHXH_r3k8TFoXqXu9BVeO939NSg5KqR8w','We came to this place for the first time. The place was clean and the staff provided amazing service. Erica, made us feel comfortable and made sure we were taken care of at the time of our visit. Amazing Staff!!!!! I definitely recommend this place to anyone who needs medical attention!','2020-03-09 21:42:27.289000','2020-03-09 21:42:27.289000',5,'Claudia Moreno','https://lh6.googleusercontent.com/-tq7q_Xmr12M/AAAAAAAAAAI/AAAAAAAAAAA/GyFMU8nf83g/c-rp-mo-br100/photo.jpg','14567670160750071148',20949),('AIe9_BHVBnWjBJvk55vq2QEm0wl-xeB-l7IjM1KA71myFAUUmGuJQ6Ndzl2Cnkp6y2IUrHTWIryVtl3mmwH4WSVzGDJCXGy6GQgEobrXU9VjD7cSAdXyxk8',NULL,'2020-07-19 21:01:45.601000','2020-07-19 21:01:45.601000',5,'Kirstyn Schultz','https://lh4.googleusercontent.com/-ZjfjhmZxwD8/AAAAAAAAAAI/AAAAAAAAAAA/hUcnJaUjI_g/c-rp-mo-br100/photo.jpg','14748677429039074158',21693),('AIe9_BHVBnWjBJvk55vq2QEm0wl-XemcpkMbHSVuPArXBXUVlornuVNSCVj3zL6Ix6Ub_y4ZD3uEB8kk3cyFwiK_7l4n67Pu8aW0Dd0awjDJ37FQuTmpokA',NULL,'2019-08-15 23:32:23.881000','2019-08-15 23:32:23.881000',5,'Yolanda Parramore','https://lh3.googleusercontent.com/-EgUz2ss2x6w/AAAAAAAAAAI/AAAAAAAAAAA/EAHOm8HbkFM/c-rp-mo-br100/photo.jpg','3511292162159714121',7203),('AIe9_BHVBnWjBJvk55vq2QEm0wl-xGDx-As2TaLR20KAhYnLa48sybAi51DB2q8YEBYLy_9nojGeGl_ZAGpqx8_82TcWtFb36RnGWStK-8_4aWoriMrovtc','Shawn K was very professional from the beginning he treated me with ultimate care. Mercedes and Brenda made the process of checking in very fluid and easy!','2020-06-17 02:23:30.821000','2020-06-17 02:23:30.821000',5,'JOBIN’ FRANCIES Ima','https://lh6.googleusercontent.com/-7a-1HAMfexM/AAAAAAAAAAI/AAAAAAAAAAA/CIANItEtAt4/c-rp-mo-br100/photo.jpg','8918455867446117794',21233),('AIe9_BHVBnWjBJvk55vq2QEm0wl-XqwMLC2C7Ac9o5cVFlSSf20GkQ3lNrWB1E-3YFmLNwMkTpg4KnZ4p60Q_kEo_iXOodM2SdVr9DCngIsJnSnUUR6LMlI','I original called one of the local urgent care to see if they would see my son for a possible ankle fracture...the wait time was 1.30-2 hours. So I decided to go to SignatureCare in Texarkana...the best decision I made. I was out of there within an hour...the service was top notch and the facility felt very welcoming. I would definitely go back if I have an emergency. The entire night shift staff...Dr. Curtis, Nurse Kara and Desk Clerk Sergio were EXCELLENT!!!','2019-02-12 22:04:54.745000','2019-02-12 22:04:54.745000',5,'Tim Bickham','https://lh5.googleusercontent.com/-LcN8lqWQVHg/AAAAAAAAAAI/AAAAAAAAAAA/g4fDAUL2Kgg/c-rp-mo-br100/photo.jpg','3272657195432704501',7019),('AIe9_BHVBnWjBJvk55vq2QEm0wl-XRBuWtx7tNa4YWrYd7NiEDKuVHiI77zouxCFfj7Xnxg56eJQhi83AGE0nRF7lDkogyeQxA','TORY IS THE BEST EVER !!!!!','2017-01-09 03:58:15.015000','2017-01-09 03:58:15.015000',5,'jazzmine Wesley','https://lh5.googleusercontent.com/-H146Mku5tZk/AAAAAAAAAAI/AAAAAAAAAAA/Ki80rm8_L44/c-rp-mo-br100/photo.jpg','3511292162159714121',7906),('AIe9_BHVBnWjBJvk55vq2QEm0wl-XtOoeSBmNKA0mSRnvytWCi9SQ5RGO8bs3RGpdGaHeKgaCQWrK3020YrfYCUa9F6ojqAM9JrlIvqQZuOQY9FMFvU-N6c','All of the staff were excellent. Robin in registration was very kind and quickly got me registered. The nurse Austin was very good about keeping me informed and checking in to see if I needed anything. The tech Brooke was very sweet and took great care of me as well, during the CT and X-ray she made sure to keep me as comfortable as possible. Thank you Signature Care ER for a wonderful experience during my time of need.','2019-04-25 05:51:22.130000','2019-04-25 05:51:22.130000',5,'Kristin Yosten','https://lh4.googleusercontent.com/-LyWpevAii2g/AAAAAAAAAAI/AAAAAAAAAAA/qr74gVxlYbk/c-rp-mo-br100/photo.jpg','8626688543755174284',8503),('AIe9_BHVBnWjBJvk55vq2QEm0wl-xu2K_xqMZcKtoH7loMNIDUKoIxi91QZdPDC4A02uOOwWU1kAKpX3RTInPkVqS5BZFfB828XKhEskrkOIrg-iuLbRKtI','Fast and prompt service, thanks to Theresa ,Marcus ,Nancy , randi and dr Miller','2019-07-25 01:17:56.890000','2019-07-25 01:17:56.890000',5,'Edgar Luna','https://lh3.googleusercontent.com/-RqEqCo9pdk4/AAAAAAAAAAI/AAAAAAAAAAA/rph_6_yPSw0/c-rp-mo-br100/photo.jpg','6521947413723274945',8183),('AIe9_BHVBnWjBJvk55vq2QEm0wl-xvxYvvvI-e9baVvGZe9XTE32kKmGvCbVdxg7M0a_VX1oyEZOJy0A7jfP7i9qA4frSEJA0A49SFwZiv7BLI536FzFvqA','Went to SC in early AM severe abdominal pain - after a series of tests including a CAT Scan - they diagnosed correctly that I had acute appendicitis - moved me by ambulance to Memorial Hermann Memorial City where I had successful surgery\n\nThe staff & service were brilliant - highly recommend utilizing this faculty again','2018-07-27 07:49:51.688000','2018-07-27 07:49:51.688000',5,'Tom Rollinson','https://lh5.googleusercontent.com/-DHRxZ5-LOV4/AAAAAAAAAAI/AAAAAAAAAAA/rXFdkIail74/c-rp-mo-br100/photo.jpg','14904078213800803294',2235),('AIe9_BHVBnWjBJvk55vq2QEm0wl-xZNGdaNuZokHBdxBrrBCWTJumfxSoLTvRRrkPmGXnvIaJxZXiL4EiABQW276SmOFgT7-fNIJi0aAcO_C57JkldqQq0Q','When an emergency arises, there\'s no time to waste. That\'s why my first choice is SignatureCare, whenever crisis finds it\'s way to us. \n\nThankfully the are in my insurance network, however they have many payment options in place and seemed to have a large array of patients. \n\nDuring our short, 2 hour stay, we were taken care of satisfactorily. There was nothing spectacular about it, aside from them correctly addressing the issue. THAT is what matters most, nothing else. \n\nHowever, the nurse can was hot \'n\' cold and it was stretched out a bit. Loud laughing was heard for a portion of the stay, which wasn\'t putting our serious situation in a better mood. One nurse started undressing my wife, and ended up hurting her. It wasn\'t serious, but it wasn\'t nice. The other was fantastic, but it shouldn\'t be such a balancing act. \n\nI would recommend and feel comfortable coming here the next time, heaven forbid, we need to return. I\'m confident we would get the same, signature care as the first time. ','2016-10-18 02:33:29.030000','2016-10-18 02:33:29.030000',4,'Joshua Place','https://lh5.googleusercontent.com/-GF9kalZVD9U/AAAAAAAAAAI/AAAAAAAAAAA/rf6YR0sK6bA/c-rp-mo-br100/photo.jpg','17394740196501090048',5186),('AIe9_BHVBnWjBJvk55vq2QEm0wl-y11Q3KX2xF2nR7QGFgk1oWtBfTMluZjjiNpDtFfsTUFAl6JVuJUeebsZlMYzFQS_9asCZVYkPCOvC1lZNF9Fm44r-2U','Really great service, got me in and out in time for me to make my flight. Very personable and considerate. The made me at ease despite my discomfort.','2019-12-23 04:49:15.995000','2019-12-23 04:49:15.995000',4,'Leonnya Elmore','https://lh4.googleusercontent.com/-3ExUgWBLc_Q/AAAAAAAAAAI/AAAAAAAAAAA/TqZ2NxezdfM/c-rp-mo-br100/photo.jpg','12541597562633926366',320),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Y6s6I9shmevwrYou7E8fLd3t-J6A6Yw8nNIXaeWROXabReJvrTxYA_-m07AvZ6RiMmJuYgpqI2cmshYGNYCpof3EsIA','SignatureCare will take care of all your needs. They know your time is valuable and get things done in a timely manner.','2020-01-14 17:13:33.243000','2020-01-14 17:13:33.243000',5,'Angela Guzman','https://lh6.googleusercontent.com/-B4769caujY4/AAAAAAAAAAI/AAAAAAAAAAA/taZkeApV8w8/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',14459),('AIe9_BHVBnWjBJvk55vq2QEm0wl-yavzn9pCNqSeBaal1Nz_eWPs3TV8horOsgg-n5_RCW1e-ZxNqXkvval1nS-j9lIIFGYXjWARGAJ4soUHfZStMU_-uF8','There was a very short wait time, we were able to be seen quickly. A diagnosis was given promptly. My only complaint is that we had to come back multiple times, the first was to get a different pain prescription. The one that was prescribed was not carried at any of the pharmacies. Then the nausea medicine that was prescribed need pre authorization (which they don\'t do) then they forgot to give my husband his strainer for his kidney stone. \n\nOverall the Dr. we saw was very courteous and kind and went out of his way to make sure we could afford the visit since it was out of network. Good experience but it could have been better.','2016-11-08 15:05:23.700000','2016-11-08 15:05:23.700000',4,'Team Schafer','https://lh3.googleusercontent.com/-ZbdlcVo6mQY/AAAAAAAAAAI/AAAAAAAAAAA/tATvxjalzwc/c-rp-mo-br100/photo.jpg','14567670160750071148',1946),('AIe9_BHVBnWjBJvk55vq2QEm0wl-yaX70NXA2m0TobkrYtThMBGZLVxkkJ280QiR7MzbT9DvntqB3YDck-E17GuALb1D-sLmffGp92yoz9CmVU5jDbv5yAk','Great service, they make me feel so comfortable great doctor sourman all the staff Leslie, churia, Agnes and the lovely receptionist Amy 👌🏻','2019-06-15 23:18:19.817000','2019-06-15 23:18:19.817000',5,'Dulce Gomez','https://lh4.googleusercontent.com/-dNWhUpTHZYg/AAAAAAAAAAI/AAAAAAAAAAA/d5_aC1m8VX8/c-rp-mo-br100/photo.jpg','3511292162159714121',7305),('AIe9_BHVBnWjBJvk55vq2QEm0wl-YBnJhrScA6KuiWc2F4MMvsC4r43e2TMs-8Ue72Jg-i3nSqMNgf-AMO_Si-4HPAFlToW8t7Ql5wkeKXozWAhmHFZ6FPE','Gabe (RN) was extremely informative and helpful :-)','2018-04-04 06:38:19.790000','2018-04-04 06:38:19.790000',5,'William Patterson','https://lh5.googleusercontent.com/-34H7daIhqp8/AAAAAAAAAAI/AAAAAAAAAAA/0dcMt6-dIms/c-rp-mo-br100/photo.jpg','16590124370714063921',3843),('AIe9_BHVBnWjBJvk55vq2QEm0wl-YESA_2V2nxCLBpoUfk9S71E_JMY_sjxmA9dfPZe4I4g4N6ImvfOsSXJpbRWqlREhUBWpLF5LardocuR3Oh23_j4L9gw',NULL,'2019-07-29 21:46:16.793000','2019-07-29 21:46:16.793000',5,'Shania Harrison','https://lh4.googleusercontent.com/-7heUSb1qE5w/AAAAAAAAAAI/AAAAAAAAAAA/2UM9a-xwFc4/c-rp-mo-br100/photo.jpg','17898197009688164559',5616),('AIe9_BHVBnWjBJvk55vq2QEm0wl-yKI5bqa409lr8dCQZsMlxf28PneDUHYjQELU1Z75ZP6eeMAzPGIZlqCIxs38OXGu3qukhbs2FX-dnTETNkANkhWui7g','Have been here several times , love the compassion of every employee from the registration nurses all techs the drs everyone we come in contact with os great . They are very thorough but also dont keep you waiting all day. This is always are first choice . Jennifer, John, Matt were great today !','2019-06-16 15:46:22.072000','2019-06-16 15:46:22.072000',5,'Dusty Nicar','https://lh3.googleusercontent.com/-0Hnf7VAE55w/AAAAAAAAAAI/AAAAAAAAAAA/EMQqj4BwSyo/c-rp-mo-br100/photo.jpg','8626688543755174284',8445),('AIe9_BHVBnWjBJvk55vq2QEm0wl-YTu4QTJD918si5Jg1qHX6jt4wHxkKFUZtrOcx1JWWvOYnbOqEpQBLxGJtDV-qXp5jbXzN6_k7_6Evgv_INtWJ6duUro',NULL,'2020-02-27 18:44:58.289000','2020-02-27 18:44:58.289000',5,'Skyler Willis','https://lh5.googleusercontent.com/-4bon7hwXwos/AAAAAAAAAAI/AAAAAAAAAAA/tHTB3cWRV0s/c-rp-mo-br100/photo.jpg','6521947413723274945',14539),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ywtaDiRE5A0gTq_qKLNaxDjeAcpDULaFMQhEcwLWJuzQvipPamHs5dn0rTERrr9ACyLZNOZwwa3ZCfN2DITOTiiSCNk','Went for Covid testing and the directions online were inaccurate. Do not go for testing! Completely disorganized!','2020-07-10 17:33:19.461000','2020-07-10 17:33:19.461000',1,'Stephanie Irwin','https://lh6.googleusercontent.com/-CHYNvRJTHBA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckV-NufjDJuvPQkDmtirRwxjnkllw/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21597),('AIe9_BHVBnWjBJvk55vq2QEm0wl-Yx00vJV9gcoNKRzWZqYnbakUR8IsyJ26iXQIf22NOrGiKbTfAsD1kIxq6BDIgc65J7oBm9kjfnSC49GU5y2flEM4RDM','My nurse Gabe was excellent!! So kind and so caring. Rayven at registration was so kind and so helpful. Such an awesome experience!!','2020-02-12 05:35:14.204000','2020-02-12 05:35:14.204000',5,'Shelby McManus','https://lh6.googleusercontent.com/-SiXzB4QG4AI/AAAAAAAAAAI/AAAAAAAAAAA/k9GDQtK1AyM/c-rp-mo-br100/photo.jpg','16590124370714063921',13860),('AIe9_BHVBnWjBJvk55vq2QEm0wl-yyNraCknWrssO8XhrLAT7CpyjKga6kSL6K_cFvw82zSd10bpFDG5Xm_FOXifBQLzH1cMLHTBBwNu6tN4UmeiV23t6ko','This is the best free standing emergency room we have ever been to. I wish they had taken Medicare so we could have stayed there instead of being transferred to a hospital. Jessica, Erica, Dr Spangler, Teresa and Ryan were fantastic. I would give them 10 stars if I could! Thank you all so much for the wonderful care you took of my mom!','2020-02-21 19:32:07.756000','2020-02-21 19:32:07.756000',5,'Tracey Garza','https://lh5.googleusercontent.com/-nmmrKG018Co/AAAAAAAAAAI/AAAAAAAAAAA/8BKoD9r-M1A/c-rp-mo-br100/photo.jpg','14904078213800803294',20992),('AIe9_BHVBnWjBJvk55vq2QEm0wl-z-Vz3y4Vb3LZrf7U-xA5mTsFlsF39k85JdOIqdZLZEfRDqbQ7RJJfW2JrPFJOl6U_mNmDkbvrOb2QeK-eESoe9Mb6qo','Went in for a Covid screening. Diane answered literally every question I had. Her and the nurse were extremely friendly and helpful! Appreciate the amazing service they provide!','2020-07-27 02:26:02.290000','2020-07-27 02:26:02.290000',5,'Ryan Schlieper','https://lh5.googleusercontent.com/-hO8tTO35JNQ/AAAAAAAAAAI/AAAAAAAAAAA/c06IuVljMLg/c-rp-mo-br100/photo.jpg','2077061009497551125',22813),('AIe9_BHVBnWjBJvk55vq2QEm0wl-zbKrvedL5qc9FOb3cy0k1-0xFJ3QftR9IEHhy31a7PpZK_fQKw63SQuVb-Sb8Xjd1NpAOdnGfpgiyEwzEM_GQnutuhs','They are fast and friendly. Patricia is very accommodating.','2019-12-30 19:55:50.159000','2019-12-30 19:55:50.159000',5,'Jahren Salazar','https://lh5.googleusercontent.com/-Z8zNBlwcrGA/AAAAAAAAAAI/AAAAAAAAAAA/EvbFpE-I-3U/c-rp-mo-br100/photo.jpg','16389487648212004696',2497),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ZCK4dfe2Fb9nLLQ1CgSeoNLZSMkgIbWOmP6-oJsEQo527bl6PBLcwzPx6sMFsh50W5gKggdYIGA5HzKg1dx6pUYihHE','Great job','2019-01-23 01:41:49.042000','2019-01-23 01:41:49.042000',5,'Reginald Stewart','https://lh4.googleusercontent.com/-kAbl3JkNgbA/AAAAAAAAAAI/AAAAAAAAAAA/ve9b61i0sOA/c-rp-mo-br100/photo.jpg','3272657195432704501',7044),('AIe9_BHVBnWjBJvk55vq2QEm0wl-zCOWVwKKjOZxtxHPNURU7pErhr2aIVXfb8E3iNeAT75yllh4yoLIHrzuBM6Ld8zsONyxiEUspXowTOJRto7uRqn_UiU','I don’t know why anyone would go to another ER. Always fast, friendly and attentive. Dr Patel was very quick to come in to examine me following Zek and Alvean’s assessment. Never left around waiting and wondering when someone would see me. Not only is the Care fantastic but this is one of the cleanest and best looking ERs around. A comfortable environment leads to faster recovery and Signature care takes that to heart.','2019-09-07 18:44:46.429000','2019-09-07 18:44:46.429000',5,'Philip McCrackin','https://lh4.googleusercontent.com/-xuLEke257HI/AAAAAAAAAAI/AAAAAAAAAAA/pUSOmk3UySk/c-rp-mo-br100/photo.jpg','16389487648212004696',2944),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ZG_-DBdDeMi_sfYL5fkxBVNzM3eirS3KcHesvG7s8b08UkWXlFD2d-4XMfkoZsXdfRCGbQh28OnmzuBvTMc78_VdZoQ','The staff was friendly, attentive and welcoming. They did everything to get me in quickly and make me feel as comfortable as possible. The stand out for me was the attention the Doctors gave me. They actually spent time with me which is rare these days.','2020-02-06 15:05:44.044000','2020-02-06 15:05:44.044000',5,'Gene Griffin','https://lh5.googleusercontent.com/-ALdiN9AcmiU/AAAAAAAAAAI/AAAAAAAAAAA/J1U3NIi7pec/c-rp-mo-br100/photo.jpg','16389487648212004696',22621),('AIe9_BHVBnWjBJvk55vq2QEm0wl-zGiqxJJJZqpeEwpTGKxw0ZPL32wVvHbptSWnnAia_aNKQC0-QtcEaDxZg-nAuEJ19GBaE-7MxO35GNxoHp5POLKUw7g','Place is amazing. They treat you well and are extremely professional. The place is spotless. They will guide you through your stay and explain clearly what is going on. If you have a quick care need that needs a personal touch, go here.','2019-09-12 06:06:26.991000','2019-09-12 06:06:26.991000',5,'Christian Hoppe','https://lh6.googleusercontent.com/-r-ySuHDu8kk/AAAAAAAAAAI/AAAAAAAAAAA/RpjAviY4IkM/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4204),('AIe9_BHVBnWjBJvk55vq2QEm0wl-zHz1FOM3kFkyIjlLbSvcZVRL1cf1uFwjNb2Gpr8nLznpTpLGA15KFHdbcJCHBVyKD2b19At60DEASKjBD0f6Qv4YBOw','nice staff and no wait at all','2017-04-08 21:24:12.821000','2017-04-08 21:24:12.821000',5,'Mache Samuels','https://lh6.googleusercontent.com/-Ki7xc9gW6XY/AAAAAAAAAAI/AAAAAAAAAAA/Ux4FpHfsmEw/c-rp-mo-br100/photo.jpg','3511292162159714121',7848),('AIe9_BHVBnWjBJvk55vq2QEm0wl-zkx4QuvaEurNrlQKcS9Fr6UPXS5S0tnYPVRQe8b4Fea21BjibZVP1Zvw8tA6xdBbiGjmWbIbAjVPnS4OoAelTv8GN7A','The staff was amazing very attentive.','2017-07-14 23:33:36.875000','2017-07-14 23:33:36.875000',5,'kristen womble','https://lh3.googleusercontent.com/-cmn9dtBg3x8/AAAAAAAAAAI/AAAAAAAAAAA/tE1CWeM-Ne4/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9378),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ZntmZm0kVg0cRWdWgv8W9wij8UQxu7UKrlj2PDjIT9kCZ-7eiAr0ybLsvxfpas6he0Ud9qvVCKlefoJ4KquxZUyAW9k','Great environment and friendly staff. Nurses and techs check in regularly to make sure you’re doing ok until the doctor can see you. Quick service as well. Best urgent care clinic I’ve been to in the BCS area.','2018-08-11 16:57:14.891000','2018-08-11 16:57:14.891000',5,'Gabriel Lozano','https://lh5.googleusercontent.com/-U6THgAYDI8c/AAAAAAAAAAI/AAAAAAAAAAA/qaFd3846izY/c-rp-mo-br100/photo.jpg','16590124370714063921',3797),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ZO18mqGY437m_2_NaAvyzqW5F5kJJR1PBy9uZygLR8XW-9rzcgBpEXPr5dxG4gjrD25El5wY-A6URC0w6BU1jVYJMjY','Honestly, I have never had a more PERFECT visit to an emergency room. Service was awesome, I was taken care of, and got to go home within 1hr and 30 mins. Plus, the facility is so clean!','2019-02-03 17:15:15.564000','2019-02-03 17:15:15.564000',5,'Sparkling Chelle','https://lh6.googleusercontent.com/-flhmSgkgv6A/AAAAAAAAAAI/AAAAAAAAAAA/ez0TDT7_7ro/c-rp-mo-br100/photo.jpg','12541597562633926366',556),('AIe9_BHVBnWjBJvk55vq2QEm0wl-zrozDk7Zrykg9CHJrpDnLSHz34cXT2Qk-fWFiiiCAe408izebgMobvFpGkYzXTaBbh9yG9fBUYuJhc-gQHWhlD1RaKU','As someone naturally leery of emergency rooms, likely due to long waits as a kid, I went into the Austin Signature Care location expecting a similar experience. Instead, I was welcomed by a responsive intake agent, with the nurse in less than 15 minutes, evaluated by the doctor 20 minutes later, and on my way in under 2 hours (for a pretty serious injury that required x-rays). The best parts? Heated sheets for while I was waiting in the private room for the results of my x-rays and snacks for while you are waiting. Great experience, end to end.','2018-05-15 18:40:05.016000','2018-05-15 18:40:05.016000',5,'Michael McLatcher','https://lh5.googleusercontent.com/-m7ql-EwepGA/AAAAAAAAAAI/AAAAAAAAAAA/PABkgWeX0iY/c-rp-mo-br100/photo.jpg','16891069708558046635',4480),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ZSXkRXxs_H53UrafbYchR11INZTg5twlVEr-9KymuUIJmUTEZxSCMibKhoxdV3A76Z8geQkS91EQhqAxzJsfj4ItUUI','Lisa H; Jair; Krystal; Jaime; Dr. Bose.\nWe’re all awesome!','2019-06-11 22:45:52.723000','2019-06-11 22:45:52.723000',5,'Karla Grado','https://lh3.googleusercontent.com/-_lQpGE5xKpg/AAAAAAAAAAI/AAAAAAAAAAA/WlxCNNuPI7Q/c-rp-mo-br100/photo.jpg','13486358490203335051',969),('AIe9_BHVBnWjBJvk55vq2QEm0wl-ztoU1zl1uqQHvlU7TR52thNYg4Zxbckjw-5DGBwrszvgPhhJA98ftIrAFjZ5HSq7iopCj1vdImWWBeYH_K5PDqZQKzQ','Anthony was so awesome and they made me feel like I was home','2018-08-08 05:35:39.406000','2018-08-08 05:35:39.406000',4,'Jazmin Franklin','https://lh6.googleusercontent.com/-AH1foOrXpnQ/AAAAAAAAAAI/AAAAAAAAAAA/he2FUTUUJEo/c-rp-mo-br100/photo.jpg','16590124370714063921',3798),('AIe9_BHVBnWjBJvk55vq2QEm0wl-zvJ7vXD3s--Ll6mj4RTjFkr-fsOGFKUefkj78wIFNJT0GzX5J7JTd0UFn5cT8k5Yvii3Ow3hYye_quz-hQPjMSanPOs',NULL,'2016-11-22 18:06:36.004000','2016-11-22 18:06:36.004000',5,'Michael Morrow','https://lh5.googleusercontent.com/-rTkPSpM4TGw/AAAAAAAAAAI/AAAAAAAAAAA/iE16FJWyttY/c-rp-mo-br100/photo.jpg','17394740196501090048',5162),('AIe9_BHVBnWjBJvk55vq2QEm0wl-zz8DUQQAzCOfx96WiH4MwRC0vIdZZYGndHNlEZavAjYOxNsxtuK9zeVmKBvhI0_1rK3Uuief4BZa2TjezhH0B88al74','Absolutely TERRIBLE!! They say they take your insurance but three months later you will get a huge bill! AVOID going here at all cost because you will be charged an extraordinary amount! Nice staff and facility but terrible insurance policies!!','2018-04-23 20:22:51.997000','2018-04-23 20:22:51.997000',1,'Bree Salsbury','https://lh4.googleusercontent.com/-YV2YzbTaZq0/AAAAAAAAAAI/AAAAAAAAAAA/JBckeOrdbMw/c-rp-mo-br100/photo.jpg','16590124370714063921',3831),('AIe9_BHwxLBgMZixVqR0iz9pb52y9hlBAlo7f-ca46HWE4Dhjm9VhC8FtA4z4lVVjprPLgWAI5c-InTzxLzwu7Wj-IWop19xUGWrL6fSwXP-1Dk4d7lR234','Keera and Jeri made my visit super quick and as painless as possible .','2018-10-11 02:08:12.973000','2018-10-11 02:08:12.973000',5,'Blueeyedtreefrog1','https://lh3.googleusercontent.com/-fEo-3v09T3U/AAAAAAAAAAI/AAAAAAAAAAA/jD3BL6WWFZg/c-rp-mo-br100/photo.jpg','16590124370714063921',3713),('AIe9_BHwxLBgMZixVqR0iz9pb52ydcvlEA2y5STHMPmX0xXCJwPmPLW6KbpKaoAHRUyo7JqULmNJ2HA8mBZ8oPdu0Ssr7PdQ2r9QgbrQ0tVWbLpNYkBcL_k','Excellent service .. really friendly. Nadia & Dr Chowdery Great.😀✝️','2020-08-05 20:51:58.176000','2020-08-05 20:51:58.176000',5,'kristy deaderick','https://lh3.googleusercontent.com/-JvZ3qaOHrKg/AAAAAAAAAAI/AAAAAAAAAAA/c6zpJcEuGX0/c-rp-mo-br100/photo.jpg','14748677429039074158',22523),('AIe9_BHwxLBgMZixVqR0iz9pb52yUHM3ENCVysRM1G4FY2eHyHw2__1bQFjrJRfN62vC2IrLqDkNPP1xJkO0VRubNQpxajahIxvjFK3j4ohRbW9o1-J24kM','I could not have asked for a better experience. The staff was very friendly and knowledgeable. The doctor had terrific bedside manner. Everything was done with a lot of efficiency and care. I would highly recommend this place to anyone.','2020-02-21 14:08:51.172000','2020-02-21 14:08:51.172000',5,'Amy Rizkallah','https://lh4.googleusercontent.com/-xnlnYCjnUWg/AAAAAAAAAAI/AAAAAAAAAAA/8XoOy72rd0Q/c-rp-mo-br100/photo.jpg','8679688254631342173',14744),('AIe9_BHx9wW5OAXpNIH08blLdli0_iZTslTpUwjvHZTK2vd3--tNa23XOmkT7xBPwYKBNld5rV7dtcEj3D9T2Wej-Pm8F83VGAoQLo3YPCymyf8LGsvsKPc',NULL,'2016-11-27 11:55:29.848000','2016-11-27 11:55:29.848000',5,'Alison','https://lh4.googleusercontent.com/-f-64itkkneQ/AAAAAAAAAAI/AAAAAAAAAAA/0N3E7Z4U2Bw/c-rp-mo-br100/photo.jpg','14567670160750071148',1940),('AIe9_BHx9wW5OAXpNIH08blLdli0_l3cWImsnENJU-6bryLW-z44fePy_VyuN69rbApRpvSdYPZc5qyRZh6hwqm55-cV64cyLxWShzq8Mi4BE64PCma4Kh8','Website says \"tests anyone for COVID-19, no tests, no appointment.\" I waited 3 hours on the phone to see if they would take my insurance and talked to them at 2:30am Saturday morning and was told that Saturday was booked. How are you booked with \"no appointments necessary\"?\n\nI have a flight on Sunday to see my grandparents. I have called them for the last 3 days with wait times over 4 hours to speak to someone. \n\nFalse advertising. Manipulative practices. I will let people know.','2020-06-27 07:41:20.517000','2020-06-27 07:41:20.517000',1,'Nick Mecca','https://lh6.googleusercontent.com/-_ZXarpXNaTM/AAAAAAAAAAI/AAAAAAAAAKE/AMZuucmCtOXNkzPGt8B9bPDvVrRsRwASmA/c0x00000000-cc-rp/photo.jpg','16891069708558046635',21255),('AIe9_BHx9wW5OAXpNIH08blLdli0_spKcbCtBfgwIeXIbWiX4n0n1J2YRBgklqMi5rO3SlZ_3a3jJeNdD1TX9UgSx7PQCjZMHTd-uhsZ1j4V2hkvdyyKm58','Absolutely great! Staff very prompt and attentive.','2019-02-14 14:26:03.470000','2019-02-14 14:26:03.470000',5,'Robin Johnson','https://lh6.googleusercontent.com/-_0tGjv6q4xo/AAAAAAAAAAI/AAAAAAAAAAA/2hooUcVSdec/c-rp-mo-br100/photo.jpg','8679688254631342173',8870),('AIe9_BHx9wW5OAXpNIH08blLdli0_Tjchhue3yWA-YmaNfIoDLE9MT8Ou84mIZY0fXAIvplS4vppz8xP4aE_sIY72pUzoJeS79j81x7jh26HTfolA-KtTrA','excellent service!!! specialty dr GOLLA PRADEEP very professional','2017-12-31 12:23:20.660000','2017-12-31 12:23:20.660000',5,'froylan naranjo','https://lh4.googleusercontent.com/-B1yiFgk7sCU/AAAAAAAAAAI/AAAAAAAAAAA/f2fScFXUJlo/c-rp-mo-br100/photo.jpg','17394740196501090048',4906),('AIe9_BHx9wW5OAXpNIH08blLdli0-689t5e_NHFctBoS2kW1K06G2dQoLTmj5fxH22-ip-zmKBVPggvk52aHF-ikwNSPwD_swmdaFCxollbEpsSXKhfoMeA','Great customer service! Register Delicia was very welcoming, and very helpful. Dr. Alloju was very informative, and nice. Tech Son Le was nice and patient. Nurse Blake was nice and very helpful as well. The staff is awesome! Made us feel at home. Will be back! Highly recommend!','2019-12-02 16:20:24.957000','2019-12-02 16:20:24.957000',5,'amanda ruth','https://lh6.googleusercontent.com/-75e6DYrY6Ao/AAAAAAAAAAI/AAAAAAAAAAA/4FM1vDJOob0/c-rp-mo-br100/photo.jpg','8679688254631342173',8703),('AIe9_BHx9wW5OAXpNIH08blLdli0-nJFcuu97RTmUZZIjf_QUzJasrHvwBw_LmlfzQjeJL4-EOr9Ek_SmEI84yMy-JnHmwxbbrfLqsea948kjNbYUwShvvg','We own our own business. For what I am going to explain please do not hold this against what we do, we just had a semi-bad experience.\n\nMy husband cut the tips of his left hand index and middle finger off!! I know you are thinking pain just like everyone else that has heard this story. They were very nice and speedy getting us to the back since we were the only people in there. The admissions girl waited until an appropriate time to bring the paperwork. The doctors and everyone started working on him ASAP. A nerve block was done and shot of morphine was given. X-rays were done as soon as the pain was under control. No bone was cut thank goodness. The ends could not be sewn back on so it was left completely open, which I understand.\n\nHe was bandaged up and then told to take Ibuprofen. Now as a nurse, I know how much that hurts. I asked if they could get him something stronger? It was Friday at 2pm so the doctors office he goes too was closed and a possibility of an appointment would be Monday at the earliest. Of coarse we were told no. So at 3am on early Saturday morning, I called the ER and asked them if they could please get him something stronger. They asked me to wake up my children and bring him back in to have another nerve block done that would have only lasted maybe 6 hours. After explaining that we tried to prevent this from happening, the doctor finally gave in and wrote me a script for Tylenol 3. Being a nurse I know with an open wound that size and hitting the main vessel in the finger, it is going to bleed quite a bit and adding Tylenol will only increase that. I wasn\'t going to argue though considering he was in terrible pain. I went up there and got the script. This is the part I almost lost it..... The nurse came out and handed it to me and said \"If he is still hurting that bad, which he should NOT, he needs to be seen again\". So cutting the ends of your fingers off should NOT hurt and missing it isn\'t a problem enough, I don\'t know what trauma they themselves have ever experienced. My reply back to her \"Have you ever burned your fingers on your curling iron?\" Her reply \"Yes and it hurts very much.\" My response \"Now cut the ends of them off and tell me it should not hurt. Also as a nurse myself, you are taught in nursing school and at any facility you work at, besides this one, to never tell a patient or anyone else, they should NOT hurt EVER.\" I grabbed the script and walked out.\n\nI was very infuriated by her demeanor, response and her ability to think she was above me. Now I am not saying everyone there is that way because they are not. I also understand that pain medication can not be given out like before because of the state laws and yes it is a hassle now for doctors to have to write it out. But use your logic, his fingers are going to be in severe pain when the block wears off and may need to keep it under control so it doesn\'t get out of control like before. The dressing change the next day caused him to pass out.\n\nMy son had to go there because he had pneumonia and they did a very excellent job with him and I had no complaints. Even when we had to go back because he was having an asthma attack while sick. The care was excellent. That is the only reason that I took my husband. If it is for small things it is great but for large illnesses or injuries, I would think a few seconds longer before we go. It is all dependent on the severity.\n\nI wouldn\'t give it a one star just because of one person and there pain management protocol but it is not a five. I know the state had to tighten the requirements on narcotics but there should be discretion on prescribing them. It\'s not a horrible place by any means but there are areas with the staff that need to be addressed.','2016-06-06 20:22:28.225000','2016-06-06 20:22:28.225000',3,'Texas Made Graphics,LLC','https://lh6.googleusercontent.com/-WHVLvdnZxkY/AAAAAAAAAAI/AAAAAAAAAAA/7AwrL58_4lM/c-rp-mo-br100/photo.jpg','13486358490203335051',1137),('AIe9_BHx9wW5OAXpNIH08blLdli00-eqbvlQvmHNZnO0Q-hBgkUjmnIrjmPKxZHTgRxHsnrabKwjwRQRvAXkXw6-kX1nXKaMG64iQS1N0xsu9osvDAzZPNo','Our visit was very quick and the team is very professional. Service time was quick. We was educated on the procedure that was about to be done.. 5stars... Thank You Thank you','2019-11-16 05:36:47.078000','2019-11-16 05:36:47.078000',5,'Nika George','https://lh6.googleusercontent.com/-S1EBxo9g4Oc/AAAAAAAAAAI/AAAAAAAAAAA/DSb3vtc7MeA/c-rp-mo-br100/photo.jpg','16389487648212004696',2685),('AIe9_BHx9wW5OAXpNIH08blLdli009LeSnAQXyx4bMi2_cuImOP9DOUJj9yVJsVc_cSq_B90tzILr1W0B-s0HTsPPc-Hk6GTVbQQvwkHXb8965Mp1cx1Rp0','If only I could give this 100 stars! Georgia was fantastic and made me feel comfortable with the test. I certainly do not feel well but she made me forget how I was feeling prior to walking inside. The ladies at the front desk were quick and answered all my questions! I would recommend this place to anyone who needs a test with same day results.','2020-07-27 20:25:21.555000','2020-07-27 20:25:21.555000',5,'Erica Wells','https://lh5.googleusercontent.com/-E6owIWJqvS4/AAAAAAAAAAI/AAAAAAAAAAA/MP8RdtOrr2c/c-rp-mo-br100/photo.jpg','14748677429039074158',22558),('AIe9_BHx9wW5OAXpNIH08blLdli00HP-6CWxq_I5NDZPpTrE4f6XxTSsg5jSZfmDSCvUhfHLX3x_CUeZPOSrysWEUY9Ys3XpdScDrrMar49svogC9PTt9sw','I had as wonderful an experience as one could have at the ER. The entire staff was extremely polite, professional, and helpful. They checked on me regularly and kept me updated on wait times and talked me through all the tests and procedures they were doing. They kept me comfortable while waiting for a transfer and bought me dinner. Even though the wait for everything was still pretty long, it did seem to be faster than a large hospital ER. Thank you everyone at signature care for making an unfortunate day a little bit better.','2019-10-30 21:30:39.802000','2019-10-30 21:30:39.802000',5,'Chanell Dawson','https://lh5.googleusercontent.com/-58JXhsxXDL8/AAAAAAAAAAI/AAAAAAAAAAA/jW-E84Yq01s/c-rp-mo-br100/photo.jpg','16590124370714063921',3116),('AIe9_BHx9wW5OAXpNIH08blLdli00riU4lzE3S8jjmZmJJm2dRgrAwZOtyTGPdwljDX5C4Deq3SauwIVU0KXU9wukf6PXH3a6Si1Gl2FyT7jEu2VumA46D8','THE BEST PLACE TO GO FOR HEALTHCARE OUT HERE. I\'ve been here for simple medical needs to more important. From the moment you walk in everyone\'s wonderful. Dr Jones has a high level of respect and fantastic bedside manners. Not to mention the facility is so modern, beautiful and clean. This is my go to whenever anyone needs care.','2020-02-11 18:58:55.637000','2020-02-11 18:58:55.637000',5,'Kierra Kemp','https://lh6.googleusercontent.com/-By7-n_uYvVM/AAAAAAAAAAI/AAAAAAAAAAA/gfbEVmt9Q-M/c-rp-mo-br100/photo.jpg','2694018788013845459',14240),('AIe9_BHx9wW5OAXpNIH08blLdli014xlL2qBgEnKvPEvjG-QbRrsbdSBsSPs7lXIIKXzOd74lWsMQ0C-z-hKgUESqHxPVSQ_7FkaFSJF-LI4q2zSg5tZQUQ','Awful abusive staff.\nI had gone to the ER because I had a minor cut on my left hand and they wanted to take advantage by asking me a million questions and kept me in the waiting room for about 20 minutes. \n\nAll i needed was to be cleaned with alcohol and put a bandaid on. They proceeded with excessive steps, unnecessary items, unnecessary wait and overall awful quality service.\n\nI disliked the service so much I simply walked out. I wouldnt recommend thus place to anyone.\n There were at least 7 staff anf nobody helped.','2019-12-25 22:42:02.933000','2019-12-25 22:42:02.933000',1,'OMG Trades','https://lh3.googleusercontent.com/-XHwFNQz_YXw/AAAAAAAAAAI/AAAAAAAAAAA/MkNyPYRKZzY/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',14473),('AIe9_BHx9wW5OAXpNIH08blLdli018nlLzKkmKC0wUEyQ2lZWlaVY8D8B9FnmDGhFMfX2B18qTkCpCQVrfsWzRcNOiufcyxmxqyW_ef7wCJID2E0dheBatI','Excellent experience. No waiting. Very professional staff. Took care of problem first time. Would highly recommend','2019-02-18 13:49:56.174000','2019-02-18 13:49:56.174000',5,'Trevor Cusworth','https://lh6.googleusercontent.com/-A63WjFXe1ng/AAAAAAAAAAI/AAAAAAAAAAA/N7M3dFhKcv0/c-rp-mo-br100/photo.jpg','14904078213800803294',2167),('AIe9_BHx9wW5OAXpNIH08blLdli01eujdxXlq_8sX5ZEHxOao2x_pqN2P7Vx0kNz_U-ARDZaqT2ybt96sL1mkN6DFRZqtMZuXq01hoohfM4OX2dg8HQ4BDc','What a wonderful experience. Staff members are AWESOME!! I highly suggest this ER CARE!','2019-10-10 02:31:29.344000','2019-10-10 02:31:29.344000',5,'Linda Perez','https://lh4.googleusercontent.com/-wFrDrPjZBnI/AAAAAAAAAAI/AAAAAAAAAAA/_8febPuRmLY/c-rp-mo-br100/photo.jpg','8918455867446117794',9061),('AIe9_BHx9wW5OAXpNIH08blLdli01Jbi28vugm5SHiJDPGg-GQA666swPTQjvQkOO84_Oa5e6aX7vFmTx1w9cbJ4IdIAnsv0wMmO7ijFcj4nHsSHGIyKSns',NULL,'2020-06-10 21:43:22.327000','2020-06-10 21:43:22.327000',5,'Sibo Niu','https://lh4.googleusercontent.com/-hKPZLBXqb2c/AAAAAAAAAAI/AAAAAAAAAAA/tdlKr9Cp8Dk/c-rp-mo-br100/photo.jpg','16891069708558046635',22685),('AIe9_BHx9wW5OAXpNIH08blLdli025HoKzbo-z5EgGejHddWMukvB4xVqNwpyAUPo-CwjeaH4kW-qcmMXeFudtiK2la-bbojEveUZL6Zg7EUA3hhwS8GfQU',NULL,'2019-09-02 18:10:33.558000','2019-09-02 18:10:33.558000',5,'Ginger And The Boxer','https://lh5.googleusercontent.com/-aPoGHYT9YhU/AAAAAAAAAAI/AAAAAAAAAAA/HDLIO-bkWa8/c-rp-mo-br100/photo.jpg','3272657195432704501',6900),('AIe9_BHx9wW5OAXpNIH08blLdli02BU5v-YKeZ4tT_MEZyCOdN-3h3dZOjlZ2sYF1LkAcHJ937zzU-cFonSchyzSv6aRtlz0fxAjSxYGhwTWhkgC9RQdPL8','I had a great experience at Signature, they took care of my illness in a timely matter. Gabriel and Kimberly were incredibly helpful and made everything easy to understand. Highly recommend!!','2017-04-23 05:56:09.965000','2017-04-23 05:56:09.965000',5,'paige hoelscher','https://lh3.googleusercontent.com/-ABKjTk4H8yQ/AAAAAAAAAAI/AAAAAAAAAAA/ng-dGYSRT0w/c-rp-mo-br100/photo.jpg','16590124370714063921',4002),('AIe9_BHx9wW5OAXpNIH08blLdli02JiLjbawYBw4TMHPHgjsLXT2IPaytKRPMtCrrQgeJosCA_zdFvtCG8Hbd-TQuMkziA2xQSCBpRPEvC-Nd8SCDoN3wfA',NULL,'2017-01-22 17:14:50.079000','2017-01-22 17:14:50.079000',5,'Azeem Meruani','https://lh3.googleusercontent.com/-bypnXraApPY/AAAAAAAAAAI/AAAAAAAAAAA/hqStOw1t4aY/c-rp-mo-br100/photo.jpg','14567670160750071148',1910),('AIe9_BHx9wW5OAXpNIH08blLdli02PhRzF0mvGH_H06sB0HPs4D7Z-2EEP6Vt11GaU0jyiJ6SlY1pl4B1tvZwtyTqz0s-4VckoyeWxGpCle2NMKzN-ncmY0','Cody and Joe were so caring and understanding to my needs! Was in and out super fast. Would highly recommend!','2020-07-29 12:50:52.431000','2020-07-29 12:50:52.431000',5,'Samantha Weber','https://lh3.googleusercontent.com/-iTNz2eeJ5GE/AAAAAAAAAAI/AAAAAAAAAAA/cbGG1ONsME0/c-rp-mo-br100/photo.jpg','2077061009497551125',22771),('AIe9_BHx9wW5OAXpNIH08blLdli02UBbcrNQFv-m_ZBJEUfKkxjjOZnhlgRr_ctGzjWQ4C2H4FymMcj6vjIokaurZVqeVL0z5J34H2co_09lhsL1enSwbis','My experience was wonderful from the start. We called ahead of time to get a better understanding of the wait time and the receptionist/front desk, Rose was great. She even texted us the address to make sure we were able to find the place ok. Rose was very efficient at check in and we were seen immediately. Dr Chen and Roy were able to see me in a very efficient manner. The staff was very friendly and welcoming. I haven\'t gone through the billing process yet. Once I have I will update my post.','2017-06-30 15:01:30.851000','2017-06-30 15:01:30.851000',5,'Aji George','https://lh5.googleusercontent.com/-0szQRoMoPo8/AAAAAAAAAAI/AAAAAAAAAAA/b-jbj4pvVpU/c-rp-mo-br100/photo.jpg','8918455867446117794',9384),('AIe9_BHx9wW5OAXpNIH08blLdli03lztsVdvmPU6NzI-_v6IpU7VSfw_nmLpxLu3Hi7bqDxz3LArXFp4ySgSfsFuvjeiCiHTlqDvnYjMRbBpYiQeVBqUbwA','I went in today because of a slight issue I wanted to make sure that was nothing, everyone was so warm and welcoming when I got in and was very attentive and made me feel comfortable when in reality doctors offices kinda scare me, I want to thank Jacob, Becca, and Dr.Kimball for such an easy and fast visit','2019-09-01 17:23:51.630000','2019-09-01 17:23:51.630000',5,'Alisha Naik','https://lh4.googleusercontent.com/-a7w5radLkrI/AAAAAAAAAAI/AAAAAAAAAAA/4WITDrC-tg0/c-rp-mo-br100/photo.jpg','16590124370714063921',3223),('AIe9_BHx9wW5OAXpNIH08blLdli03tvM3tqIx28Ck-tgO65tQqY71t0lZxcUczB1PC5AHS7z2SPz0-sp2l-nTTDHBwnPJBDESRFwjC0btHzm90TtcT23sdo','Everyone is so friendly here! Ms Alvean is awesome! Brian was very sweet, Jordan was very professional and Jocelyn was very sweet as well. \nRooms were spacious and comfortable.','2019-10-23 20:33:13.507000','2019-10-23 20:33:13.507000',5,'Stephanie Colorado','https://lh4.googleusercontent.com/-n2cm6P6KL1Y/AAAAAAAAAAI/AAAAAAAAAAA/OwXdTL_pG_g/c-rp-mo-br100/photo.jpg','16389487648212004696',2786),('AIe9_BHx9wW5OAXpNIH08blLdli03YUfQ_Iinnrf66a9Lv37dOgXp8GrfzHNYvzD6tu7ohp8frtgf4KbCPFWpkaGOVETRhT99RU67R2-QfzE9NO2g_gGgQk','I’ve only had great experiences here. Dr. Dang, Nurse Sherri, RAD Bryan, Tech Richard, and Erica in reception, Thank you for the quick and comfortable care.','2018-08-25 04:12:16.152000','2018-08-25 04:12:16.152000',5,'Paul Kremer','https://lh4.googleusercontent.com/-MUX6h7MKVn0/AAAAAAAAAAI/AAAAAAAAAAA/5K7kphUQsT4/c-rp-mo-br100/photo.jpg','14567670160750071148',1555),('AIe9_BHx9wW5OAXpNIH08blLdli0416ZwoMv673ZUoDHDj0JGPsKdqpC27BHKLURrBr8x6gbokz_liZxmqUh0hjLcZWuDWd8JrAzL2gWLN3bAeDb1SoyKdk','The phone system has covid. Plan on driving several times since you can\'t get through via the phone. The canned response is not helping your business. \n\nI finally reached the center and they advised to drive to center...they advised the center will not answer..my spouse went to CPL and results in 48 hours...signature care has been 16 days..your life might depend on a timely test..\n\nMonth later, still no results...for my experience. This place is a rip off. Took my money immediately..','2020-07-17 14:03:42.577000','2020-07-17 14:03:42.577000',1,'lester romero','https://lh5.googleusercontent.com/-KIDOFBCvM6w/AAAAAAAAAAI/AAAAAAAAAAA/qhgqZdXeqeI/c-rp-mo-br100/photo.jpg','2077061009497551125',21300),('AIe9_BHx9wW5OAXpNIH08blLdli044ZiXZnCBfLym22aCVi9BlbbxFshbroi7K-GSF_P-GcM7GvSDuCBmOLdj2B77CoA6gvf3xYr5rwD6T3vDo_UG7YqmWY',NULL,'2019-07-17 03:05:10.913000','2019-07-17 03:05:10.913000',5,'Kandace Moree','https://lh5.googleusercontent.com/-L1GVhbHgSCI/AAAAAAAAAAI/AAAAAAAAAAA/DdTDQUDLMdI/c-rp-mo-br100/photo.jpg','8626688543755174284',8429),('AIe9_BHx9wW5OAXpNIH08blLdli045j0lLd3DKdXiSTCEHFizJCeH9s4F9vUhO163Ng_aYBnIO0v_nTzwXiBHLcbYiDmq_Z7NfZ_3k5IByylFd26doxz5LE','Amy\nKat, rn\nDr.thomas \nMarcus \nThe best','2019-09-11 23:49:25.724000','2019-09-11 23:49:25.724000',5,'vianca soto','https://lh6.googleusercontent.com/-4KJrOZqst9E/AAAAAAAAAAI/AAAAAAAAAAA/LQqQQExIoGE/c-rp-mo-br100/photo.jpg','16389487648212004696',2919),('AIe9_BHx9wW5OAXpNIH08blLdli049leGEk4cUfPaBuAUjH0qcieOXmsMpLEr0_-_eo1Lhz-E-CeUeTEKB1sbF1KJOtP9iiYyZWJowwDxXeSceVbTYqKyiM',NULL,'2020-07-06 04:40:54.318000','2020-07-06 04:40:54.318000',5,'Jocelyn Moreno','https://lh5.googleusercontent.com/-i64naehz3wU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclrDhgGq2rZrs7oqSdfCpNPuUDulg/c0x00000000-cc-rp/photo.jpg','17394740196501090048',21317),('AIe9_BHx9wW5OAXpNIH08blLdli04I7hXuf3bqV34y0h7fi1vys6C0ggpPJr2XL-7CrYMXT8YsoBT6qj7lxJVoay7m1jnBmaVrsqCFiwhZPua5c-Ars1iow','Jessica S was awesome! Will definetely be back.','2020-07-19 20:19:24.492000','2020-07-19 20:19:24.492000',5,'Kristina Taylor','https://lh4.googleusercontent.com/-pkw0BT16OQk/AAAAAAAAAAI/AAAAAAAAAAA/A7-Si9Bopr4/c-rp-mo-br100/photo.jpg','14748677429039074158',21697),('AIe9_BHx9wW5OAXpNIH08blLdli04sjUs_x3VwQ8acK6PqsJKb9BHktC0ad14Md-0LwyHHL-D9GmfAphisb0EBW71ri1INPuycCvowFMeCvo4GBAlg1Myz4',NULL,'2017-02-03 03:52:14.581000','2017-02-03 03:52:14.581000',5,'Katherine Body','https://lh5.googleusercontent.com/-J1MMqPInx6E/AAAAAAAAAAI/AAAAAAAAAAA/7e4P9whfddc/c-rp-mo-br100/photo.jpg','3511292162159714121',7888),('AIe9_BHx9wW5OAXpNIH08blLdli04Xr4BI-7ln3n-H5TaZljIo6USVV7r7ktDfOHc6xtPQXRJGdL2F_j39qZ4BgkCpbdg20UqZe9Il15WPfcKHouLe4lrS8','Aerial was welcoming the staff was great we come again.','2018-07-14 05:27:23.333000','2018-07-14 05:27:23.333000',5,'Leslie Smith','https://lh6.googleusercontent.com/-jMrfJrb9r8c/AAAAAAAAAAI/AAAAAAAAAAA/XiPOq8E1OeY/c-rp-mo-br100/photo.jpg','12541597562633926366',632),('AIe9_BHx9wW5OAXpNIH08blLdli05_olP0HS0jzzP3WIOUEu3m6s2ekx59N_GBAJEXWPNUhttkXm47fSgaSYQsSxXDp6tgvCLKHfvk337SkovJ_4ueSTOH8','I was seen back on May 11th for a sore throat. The staff was amazing. The nurse Senaida and Dr Nilang Patel took amazing care of me. I would definitely go back! Quick and informative.','2020-05-29 07:08:01.412000','2020-05-29 07:08:01.412000',5,'Adrian Ramirez','https://lh5.googleusercontent.com/-KILBf-lF1n4/AAAAAAAAAAI/AAAAAAAAAAA/Iq20P78U0sA/c-rp-mo-br100/photo.jpg','6521947413723274945',22903),('AIe9_BHx9wW5OAXpNIH08blLdli05Dz2D2uAk_etRGnVckfpcHWlAA5-y4dHkAkiB-X__agyDV6Wql8YF6_YnyWojfyU6-sV3VafZMNaJb6LYuLQQ-tDgXg','Had a great experience here. Lindsay in the front made it easy to register and I got back in less than 5 mins. The nurse Remington and Dr. Morrical really care and helped find the most affordable treatment for me!','2020-01-23 16:38:28.922000','2020-01-23 16:38:28.922000',5,'Frances Sissamis','https://lh5.googleusercontent.com/--l4kWtzWw1s/AAAAAAAAAAI/AAAAAAAAAAA/_Ucxfx6GDeQ/c-rp-mo-br100/photo.jpg','16590124370714063921',10217),('AIe9_BHx9wW5OAXpNIH08blLdli0679QUiVl4BJ0S30xsbCVSj7tY-06N-9jY1pbBgGCIMzL2pWImooa2Qbe1HTdf08SqYccNxFmpvl6zr_LWMgGV3cGY7g',NULL,'2019-06-29 17:36:54.925000','2019-06-29 17:36:54.925000',5,'Veronica Calderon','https://lh3.googleusercontent.com/-B1L_u1wiTD0/AAAAAAAAAAI/AAAAAAAAAAA/DBYP_2ghXIw/c-rp-mo-br100/photo.jpg','13486358490203335051',909),('AIe9_BHx9wW5OAXpNIH08blLdli06E_7LzpZ5rhMsyYXZaKba1ClBux5z1JPqfNNVm9q_jv4nUswmiTzG1j7JxKl4o9Fv77CUx4ANICTmKhmbqETwVVmhFQ','Cody and Sam did a great job.','2020-08-12 13:49:36.879000','2020-08-12 13:49:36.879000',5,'Tripp Transou','https://lh5.googleusercontent.com/-C3VfqgEr4QM/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck2Q8zaZjXvkcoc_VtWM4WddWEaKQ/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli06EbSy-xTvkccQNLl2eQhUClZ0JRGnRykrcVHLKYZJ92VDM3rx0aXRGBx5gl5PEHSrEUS8XEGbj1q7omwdhdFpMWkdYQ',NULL,'2018-08-19 17:03:43.983000','2018-08-19 17:03:43.983000',4,'Peter Patel','https://lh3.googleusercontent.com/-eBSgDn4ed_A/AAAAAAAAAAI/AAAAAAAAAAA/BC5x_4nIpw4/c-rp-mo-br100/photo.jpg','14567670160750071148',1558),('AIe9_BHx9wW5OAXpNIH08blLdli06FO4g-4kY_YDjzZ4Bp58YpDjBOgfrol6vtw02XevZs4G0UeGbbFjILcsWU5B3nBgH4HxqLT-LG8i3qhfEXX7-87KaJE','Great experience.... In and out results for COVID Testing...','2020-07-26 17:04:20.789000','2020-07-26 17:04:20.789000',5,'Ronald Smith','https://lh5.googleusercontent.com/-QgoN4oD5gqI/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnZtm_4MK46iFDiGQYVxt1rZktaJg/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22288),('AIe9_BHx9wW5OAXpNIH08blLdli06IGpN6BoSkECGKwhyMaNeQtp14aKQfY_-Pvg2qA6GRQa4cS7annyVQ_I-PxIkpXs_rWN3YBNAJAQwU8Zsj3uXFdKgEI','They have a excellent staff fast friendly caring service. I thank you for serving me and helping me what I need. I thank you Dr. Ashbrooks, Luke -RN , Kim -Regist and Sherri -Rad Tech.','2019-02-01 23:16:43.849000','2019-02-01 23:16:43.849000',5,'Rochelle \'Roe\' Graves-Henry','https://lh6.googleusercontent.com/-UldSvPpgCgg/AAAAAAAAAAI/AAAAAAAAAAA/MAmnJv1L_y8/c-rp-mo-br100/photo.jpg','3272657195432704501',7031),('AIe9_BHx9wW5OAXpNIH08blLdli06NFxc_NAOI9dqf3Lw5ke4k6xvkflI-O4fzzSwGkIn5D2gRh393P5pqB8sPklrivBqFYA47eXArbyGGz7shCwgUZgL7Q','I came into SignatureCare a few mornings ago in excruciating pain (passing a kidney stone). Within seconds of my entry, the staff had brought me a wheelchair and rolled me back into the exam room to take my vitals and begin pain management. They were very quick, professional, and incredibly sympathetic to the fact that I could barely speak. It took fewer than 10 minutes for them to provide me with pain relief (something it took St. Joe\'s over an hour to do with kidney stones 3 weeks before). The doctor and nurses were amazing, and I cannot thank them enough. Hands down the best emergency room experience I have ever had. You guys are amazing!','2017-08-11 18:00:53.982000','2017-08-11 18:00:53.982000',5,'Chelsea','https://lh5.googleusercontent.com/-mPRzrEzbn5I/AAAAAAAAAAI/AAAAAAAAAAA/TPG1g20KUR8/c-rp-mo-br100/photo.jpg','16590124370714063921',3967),('AIe9_BHx9wW5OAXpNIH08blLdli06z5fAMHP--uu1AyStQlwJ9PLprdikRZITD4E1Xo1KhCBP3r4RI6buDLygTW1QCk9ZTIKwLjhO-ket7ieGrg-gt1VGIg',NULL,'2019-11-20 18:27:33.741000','2019-11-20 18:27:33.741000',5,'Sunshine Mathis','https://lh3.googleusercontent.com/-oOhegaLFY4k/AAAAAAAAAAI/AAAAAAAAAAA/v6WzgJc-KZ4/c-rp-mo-br100/photo.jpg','12541597562633926366',377),('AIe9_BHx9wW5OAXpNIH08blLdli071oZXRcuOR-UCTQjD_e-ZdOkGHtoNrV6HRxQho6vj8ouQtGFZV_lwiS24308efJ7j6eUSbQovEcnpc4nd282eiiZfYA','Coming into an ER with all the COVID issues is scary. I can not tell you how great the people treated me here. I felt safe from exposure to covid but even more they were caring. Attentive and empathetic. That has to be hard with the day to day they currently live. I unluckily have way too much experience in ERs. I rate this one of the best. They Listened and did everything to help me through things. I highly recommend them. If this is the treatment they give with the craziness of a pandemic then I can only think it could be even better without one. But I can’t find a thing they didn’t do great with this visit. A special shout out to my nurse Dustin. An angel for sure!!','2020-07-17 18:11:07.140000','2020-07-17 18:11:07.140000',5,'Sharon Richards','https://lh6.googleusercontent.com/-8cbXcBZJtyo/AAAAAAAAAAI/AAAAAAAAAAA/lO4-zzLVIac/c-rp-mo-ba3-br100/photo.jpg','14748677429039074158',21750),('AIe9_BHx9wW5OAXpNIH08blLdli07DfRgsUuk2N4NQIfdCEiJ_0CrNb-n3NsSyiyVcxZ18MOAernV4wQmSyh74v2TDIew1IOxh2PPGxjZlVHDWf_ukqb-oU',NULL,'2019-09-21 03:05:55.876000','2019-09-21 03:05:55.876000',5,'Aleida Miller','https://lh4.googleusercontent.com/-O22nihQVcuo/AAAAAAAAAAI/AAAAAAAAAAA/8jts6vvaqpY/c-rp-mo-br100/photo.jpg','13486358490203335051',818),('AIe9_BHx9wW5OAXpNIH08blLdli081qoLsONlNYjj3psKtpZ6jSfX-J8UUErvPgFIYn3-YpCoXRdEsglI-5g5Cn6x_nLMrhjGF9K3QcY14Dcwd5hliME0qk',NULL,'2020-03-13 16:09:05.460000','2020-03-13 16:09:05.460000',5,'Eric Villanueva','https://lh4.googleusercontent.com/-cQGZ_cYok20/AAAAAAAAAAI/AAAAAAAAAAA/_Joe2G39DnY/c-rp-mo-br100/photo.jpg','6521947413723274945',21169),('AIe9_BHx9wW5OAXpNIH08blLdli08CNrazheQoWLPzDLf3fqN__By-tBU-e0o-Gnw6EaQ-BeHaBSRukPZ3rK8crf1IZ6e306oHp0Eadah6vgF-tDTgWJ-rk','Super nice people, and fast service!!!','2016-08-21 19:17:36.776000','2016-08-21 19:17:36.776000',5,'The Landrum Life','https://lh3.googleusercontent.com/-HtzGAIpj7as/AAAAAAAAAAI/AAAAAAAAAAA/6Kb-GlITBvI/c-rp-mo-br100/photo.jpg','14567670160750071148',1986),('AIe9_BHx9wW5OAXpNIH08blLdli08pJOWF6vP9oFjn2l_MRdfsVuiVRZ1aRSaoJjbko8tYmqIvbigQir-rioWUG0AHJs8NLpJDHHSbYEnv8jMl30SaTTTFg','Great experience! Friendly people and everything was fast! Kendra, Laura, and Dr. Vakey were all great.','2020-03-01 22:16:35.771000','2020-03-01 22:16:35.771000',5,'Miguel Sobarzo','https://lh3.googleusercontent.com/-scALDZ-5v0s/AAAAAAAAAAI/AAAAAAAAAAA/zp8TjG7n50Q/c-rp-mo-br100/photo.jpg','16590124370714063921',13809),('AIe9_BHx9wW5OAXpNIH08blLdli08VaHwHMIgN96GkDg3JWEEOMUnZgAU14p3TlyGkEk-RmYZymDWRCZdNyD4FvpX_2TyooPsE9YqGAuBQLFjuo6Ppjk3yA','Had my 1st ER visit. This place was very professional, fast, knowledgeable and very caring staff. I would highly recommend.','2019-05-09 19:05:25.426000','2019-05-09 19:05:25.426000',5,'Dawn Chandler','https://lh3.googleusercontent.com/-IufS7IgcIw8/AAAAAAAAAAI/AAAAAAAAAAA/YMOmsHoRtH0/c-rp-mo-br100/photo.jpg','16590124370714063921',3391),('AIe9_BHx9wW5OAXpNIH08blLdli08yq2srJNRpLi0ELrwin48mP-rpyi4nmd_S3FZgdFo6wmytAVwmxF34wHa93sWZsguaFI0M9YZ2Tmrk-_jlnUr74BuHQ','I encountered a pretty deep laceration that required stitches to my index finger and I received immediate attention by Signature Care Copperfield amazing staff. Dr. Cavasos and his medical staff Sarah, and Elaine gave me the utmost treatment. They worked well as a team and did not hesitate to react with great professionalism and care. Thank you Signature Care for your treatment this evening.','2020-01-09 09:16:18.826000','2020-01-09 09:16:18.826000',5,'J Ben','https://lh5.googleusercontent.com/-3q7xn0ql3cU/AAAAAAAAAAI/AAAAAAAAAAA/NrSE6j1pAO0/c-rp-mo-br100/photo.jpg','17898197009688164559',9511),('AIe9_BHx9wW5OAXpNIH08blLdli08zjKlMHepW65NK0q1aPRc90rxW6_V8lvLZY_7hMIzNs2rMe6SrHhDL8QVthjzIG8Utbu7jxbiSlS4Rp3CmMvUqANC-U','Great people love it and very friendly . Alvean is very nice love her personality.','2019-06-26 21:51:41.733000','2019-06-26 21:51:41.733000',5,'Life Of Shuntae','https://lh4.googleusercontent.com/-kebMzox3Tp4/AAAAAAAAAAI/AAAAAAAAAAA/Zvvj-wHWmB4/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli09IxRryiGdVuU-0V493PvYFt30IP6m3o6n7IrhrJINXhq2lx8yfPcbxmh_BtDXxnvhL2e180MWntp2sqr8---W5T3QJs','In all had a great visit today was very fast friendly and very clean Dr.Mauldin Jose Alvean and Patricia are a graet team','2020-01-25 20:51:57.631000','2020-01-25 20:51:57.631000',5,'Dealta w','https://lh4.googleusercontent.com/-bGa5Qj8B8wI/AAAAAAAAAAI/AAAAAAAAAAA/aVQtMsPuaic/c-rp-mo-br100/photo.jpg','16389487648212004696',10178),('AIe9_BHx9wW5OAXpNIH08blLdli09P-utsa1ZukrsaLOzXjeTO0Rvy3wVxbr--sF69j7NJTpNQApx-LS9kWzWyjALMjWM2XrPYkxBr4ynfd8aHfSl-QXJm0','Lisa and Chris, Lauren and Marty were so awesome! So calm and nice when I was not! Thanks for getting to us as fast as possible and being out here in the heat.','2020-06-12 17:32:03.500000','2020-06-12 17:32:03.500000',5,'Mia Grimes','https://lh3.googleusercontent.com/a-/AOh14GjpzUq8vbDXAZahnBUThdjioSpoD5ZuH5Cw6Nkq=c0x00000000-cc-rp','16891069708558046635',22052),('AIe9_BHx9wW5OAXpNIH08blLdli09SYcYotsrCp7R7-Jfjt12_3MQeuwQisLhoIQQ0sfWx_2gdjZc6J_wNgkeLtb8x_Q29XneE7fPPg43lD5sLIZ7HF8zdE','Even though I was a frustrating patient, the staff was incredibly friendly and helpful.','2018-02-09 03:16:06.117000','2018-02-09 03:16:06.117000',5,'Amy Todd','https://lh6.googleusercontent.com/-E3L12m4M8pQ/AAAAAAAAAAI/AAAAAAAAAAA/07ZGX6afIRM/c-rp-mo-br100/photo.jpg','16891069708558046635',4513),('AIe9_BHx9wW5OAXpNIH08blLdli09x04bF-sKfITGZiVR___k048duzbCsSiOVe6VnJBCnGTio_1cL_4f7EXkPZpDaVBcFvxm5rbNIdH7wmZTa_bbvmQ2Uw','Nice friendly staff. This is my second time using them. Fast and friendly services from all staff members. Eric was gentle with tests that would be harmful elsewhere. Lucas was nice and friendly with hospitality. Even the main doctor Ashbrooks came periodically to check on me until tests results were completed. I would definitely recommend instead of the regular ER.','2020-02-16 18:40:03.378000','2020-02-16 18:40:03.378000',5,'Quentessa Robinson','https://lh4.googleusercontent.com/-ty5iPFXTA4k/AAAAAAAAAAI/AAAAAAAAAAA/f97gWCZSsaE/c-rp-mo-br100/photo.jpg','3272657195432704501',14356),('AIe9_BHx9wW5OAXpNIH08blLdli0aCwemsYDPeYK4t-Z1cl-hrIcShUMryjiGX5Y7F6C_d8zdqKnXL4gwkdnFRUTPZu1MlBFdeBaep3H4oTWgtKIwEumSJU',NULL,'2020-02-13 01:09:01.231000','2020-02-13 01:09:01.231000',5,'Carly Haack','https://lh5.googleusercontent.com/-iBeh7gwGDB0/AAAAAAAAAAI/AAAAAAAAAAA/OCG_CuhfAxI/c-rp-mo-br100/photo.jpg','16590124370714063921',13857),('AIe9_BHx9wW5OAXpNIH08blLdli0adRxaJsjPOr4Foj2PQmZ83HSZ5g_LckmI3EsbMR9RAmdDO1XGPZqDsof6H1QOyrl5BaoHuoxaEGElYy78Tqj-QOjUhs','All the staff, Ashley, Senaida, Keira, Randi and Dr Daniels were so amazing! They made our visit very comfortable and smooth. This is the place to go for your ER care!','2019-10-26 06:28:41.727000','2019-10-26 06:28:41.727000',5,'Erica Lujan','https://lh3.googleusercontent.com/-3iV-qEacTmY/AAAAAAAAAAI/AAAAAAAAAAA/-0DVT3wpZU8/c-rp-mo-br100/photo.jpg','6521947413723274945',8108),('AIe9_BHx9wW5OAXpNIH08blLdli0aMl68MgI1RoD-1n_vQKb3PilSjzRmbJ2Vn58EYoE8Jl85Tst5nlVYxHExoGfQr4KknB3l6amVFFP8ZcVj3Hs4mw4vJU','Staff are so nice. Super clean. I was in and out','2018-01-23 19:54:08.822000','2018-01-23 19:54:08.822000',5,'Shelby Cordell','https://lh3.googleusercontent.com/--fW-7mc70EE/AAAAAAAAAAI/AAAAAAAAAAA/tih4Ehjj_eE/c-rp-mo-br100/photo.jpg','16891069708558046635',4522),('AIe9_BHx9wW5OAXpNIH08blLdli0ARkfewjV2dIJYpaV9GADZIJp0tD5kJJM3PAXCmMley2ZeHoKOXkFK5UyIYvDqvI6kAzr_JO3zvh44BV44aqG0IpOEWI','Great service! They took great care of me! I will defiantly go back in the future','2018-12-01 03:40:11.051000','2018-12-01 03:40:11.051000',5,'Myriah Nance','https://lh5.googleusercontent.com/-qp6wVRcCvxc/AAAAAAAAAAI/AAAAAAAAAAA/oY03VTNtZTY/c-rp-mo-br100/photo.jpg','8626688543755174284',8637),('AIe9_BHx9wW5OAXpNIH08blLdli0AwTpHxA1f25Xj7VAVsvIbQtEsIZuGwXS2MlVel_5wJSJziEFM4ZP3N0OMFp9H0B5oUSx4DSht5_pUqT9BSTzIiFJpds','Excellent staff. Attentive to my stepsons needs, and very thorough. So grateful, thank you','2020-01-19 03:19:16.319000','2020-01-19 03:19:16.319000',5,'Inga - The Yoga Goddess','https://lh5.googleusercontent.com/-fvkcIVt_y8w/AAAAAAAAAAI/AAAAAAAAAAA/pHyH3rlGu6Q/c-rp-mo-br100/photo.jpg','14567670160750071148',9911),('AIe9_BHx9wW5OAXpNIH08blLdli0aYCOA-Q_gNPk4Sa3CJq1YJeFlvX87Zc-OoKmCWo8lCNKtHwQcVY2RVzJws4sE89xL0qgCo_41Rh0-pIgS_nYEuHRGPQ','Doesnt answer their phones','2020-02-28 18:15:26.232000','2020-02-28 18:15:26.232000',1,'Matthew Arrington','https://lh6.googleusercontent.com/-V08XndA_Hik/AAAAAAAAAAI/AAAAAAAAAAA/TfbRD4fFyME/c-rp-mo-br100/photo.jpg','16590124370714063921',13816),('AIe9_BHx9wW5OAXpNIH08blLdli0azz1LNsEDxzDEjGONk-wwBiY8Zmy9maN0bMS2socjGjSo9V0PihdAqCkNB0JZER2dMDE_pTItl4PmxstNqiqhyI7fRA','For the multiple times I have come, all my experiences has been great. the staff Dr Patel, and my nurses Agnes, Joey, Josh and Amy were very nice, professional. Definitely coming back again!','2019-05-07 04:03:21.847000','2019-05-07 04:03:21.847000',5,'Karen Rutherford','https://lh5.googleusercontent.com/-nvxuIwbz_Ko/AAAAAAAAAAI/AAAAAAAAAAA/RU-5OdMEzPw/c-rp-mo-br100/photo.jpg','3511292162159714121',7333),('AIe9_BHx9wW5OAXpNIH08blLdli0B--Zl0ZacNgxjih5dY3ahJ7NU_Xzcf6X26CPuzrdxjDU4gSJPaAga_k4UZWdbdvTUyzdEftBjarbxxyN-nQVgfvFeao','I had an amazing experience at the Westchase center. I came in for a extreme toothache and they immediately told me how important it was for me to make a dentist appointment to permanately get rid of the issue but in the meantime they definitely helped me with the pain. The staff was polite, the facility was clean and I was seen in under 10 mins. If you\'re thinking about going here, please go.','2018-10-16 12:28:23.060000','2018-10-16 12:28:23.060000',5,'Jasmine Traylor','https://lh3.googleusercontent.com/-D-sTBx_M6V4/AAAAAAAAAAI/AAAAAAAAAAA/ThFb8en5ydQ/c-rp-mo-br100/photo.jpg','12541597562633926366',597),('AIe9_BHx9wW5OAXpNIH08blLdli0B20TwWu9ws34V_vxCqBpoAkdBVOzrGYEDqOnTbylETUZNyAgfNdNGVrFiBzdV0YRlb2ao5CIfPY-oNwG23dViC5twDQ','Great, clean facility with wonderful staff. Tricia and Alvean were excellent!','2019-06-12 20:24:37.876000','2019-06-12 20:24:37.876000',5,'Kris Brand','https://lh3.googleusercontent.com/-5HydRtAYGWA/AAAAAAAAAAI/AAAAAAAAAAA/HmdIeUkgeX8/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli0B8MEC6Frvh-_gKDkEHVa-1usw7K4kqq_XEDkZsIIa-nBRaqSkXzhemNZkAm9SfobtGsx82SkQ1boeApk5g2G0lmJaj0','The whole experience was wonderful! Easy and fast in and out with so much care. Dr Daniels, Anthony, and Natalie were all so kind and helpful! Highly recommend!','2019-03-05 05:17:13.590000','2019-03-05 05:17:13.590000',5,'Alexis Macpherson','https://lh3.googleusercontent.com/-s2Ur3LhC7H0/AAAAAAAAAAI/AAAAAAAAAAA/b9pJMnyc--I/c-rp-mo-br100/photo.jpg','16590124370714063921',3510),('AIe9_BHx9wW5OAXpNIH08blLdli0BAb5FgVHYuGITfy9LI_EDG973piAoo0c-7t3n2gQzf4WCPfmCDSkIrZqkDeZqlruQbKNj_nHJnYqRANCZQxIjbEAEKo','Friendly staff. Visit was quick and','2019-05-24 14:42:51.352000','2019-05-24 14:42:51.352000',5,'Anonymous Texas','https://lh3.googleusercontent.com/-yFydRwEcUX0/AAAAAAAAAAI/AAAAAAAAAAA/KGoZ-qHc46M/c-rp-mo-br100/photo.jpg','6521947413723274945',8257),('AIe9_BHx9wW5OAXpNIH08blLdli0BAKRJCZib62aqIhY5_i9UziPQwxdoRqW-lekEEiXEYrC6WxEcXJsBX3Irw-bQNIFrq0vOr0IARX4FoyWWPABivkafc8',NULL,'2016-05-21 18:11:55.027000','2016-05-21 18:11:55.027000',5,'Jerry Richmond','https://lh5.googleusercontent.com/-BHRomTU2hqY/AAAAAAAAAAI/AAAAAAAAAAA/mYg5nLrowkw/c-rp-mo-br100/photo.jpg','3511292162159714121',7998),('AIe9_BHx9wW5OAXpNIH08blLdli0bKMVh94xtZOa6QviF72sfYhcZnO7c7-7rX_YjyvcU7nBbLhGv3JztCZulc0eYpIk9aM8w1kiq81e1mNtcVFFB-GNyQs','Great and fast service','2016-03-28 15:00:24.673000','2016-03-28 15:00:24.673000',5,'Ricardo Tola','https://lh4.googleusercontent.com/-Ps0MVIZa3XE/AAAAAAAAAAI/AAAAAAAAAAA/BoBY0dgWbY4/c-rp-mo-br100/photo.jpg','17394740196501090048',5271),('AIe9_BHx9wW5OAXpNIH08blLdli0brB8uVgWMqa0H8U1EZ5ZYM709KsR22rt7wxUCpt5-HMbbJIFRHIEnK2NWKhx-BFKrCfc7vPN7xvQoucSxywmoosFltM','very fast service and super friendly staff','2019-05-07 04:57:21.014000','2019-05-07 04:57:21.014000',5,'Kathy Juarez','https://lh6.googleusercontent.com/-T4VHJ-Qptco/AAAAAAAAAAI/AAAAAAAAAAA/_7WzzDJDyko/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli0BreVSrVX_2Wks3qiDWocWPvcawE91tWby5JNP-r2Zc_WZLhp8XJ_41r7uvZmYxWFZTVuCoNwkXONvDg8Pv0yXp_Pq7I','Dr.Faig \nNurse Irving\nTech Holly and Thelma \nAnd registration Ana and kandi were all very helpful today with all my concerns','2020-08-08 09:55:12.790000','2020-08-08 09:55:12.790000',5,'Adrienne Cancienne','https://lh3.googleusercontent.com/a-/AOh14GjAQ4miydAt0K9QfAZea8Kzhmo9PBvV4lAs5qxt7w=c0x00000000-cc-rp','12541597562633926366',21788),('AIe9_BHx9wW5OAXpNIH08blLdli0bvp8JfrQqK2m_KltSK5zO_E4Sjh_5L4oxD5VPimn29P_KpzAL_4OmuNnPSl5ZppEtGnaLIzJ1aSRYUYrVoDNNiFXHD4','I found Signature Care by chance. I was on my way home feeling horrible so I asked Goggle for ER/Urgent Care Facilities near me, I read a couple of reviews and headed their way. I actually thought it was to good to be true but hey I was feeling horrible so I said let me try it. I was so impressed with the staff upon entering the door, Everyone was so caring and compassionate. I would recommend Signature Care Emergency Center to everyone. Feeling as bad as I did on yesterday I need to be around a staff of caring people and that\'s exactly what I received. Thanks again.','2018-01-24 14:44:52.902000','2018-01-24 14:44:52.902000',5,'Susie Lacy','https://lh4.googleusercontent.com/-evsckxVSeJc/AAAAAAAAAAI/AAAAAAAAAAA/3n3d9g2-9j8/c-rp-mo-br100/photo.jpg','14567670160750071148',1669),('AIe9_BHx9wW5OAXpNIH08blLdli0BVq3NXhYCm3N-uFToM-JcQPT5SnrAMB5yVvAAIAlEhfthhV_5naacNRwb-McV2D6CDpZI3IbRY5shAE5FqL4kf0EUBA','Staff was very caring and helpful with my care. Manny Jeremy Pete and Dr. Huerta all courteous and attentive. Would recommend this facility.','2019-01-22 00:30:53.913000','2019-01-22 00:30:53.913000',5,'Victor Martinez','https://lh5.googleusercontent.com/-4UUvr98uA6Q/AAAAAAAAAAI/AAAAAAAAAAA/3CHg0rnQXOg/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8318),('AIe9_BHx9wW5OAXpNIH08blLdli0BZkv2G1x22TjyZ7gbk7glU6MaVQxx9x8WE006M5eb9oOw3b4Sa5kubOakuTWivvxR3sT3VAqxjBsFQ3WLYqwmaIxTU8','We got there yesterday (Easter Sunday) around noon. There was literally no wait at all. My 14 year old daughter was seen immediately and within the hour she had a cat scan done and appendicitis confirmed and was being transferred to the hospital for surgery. The entire team there was amazing. They were all super attentive ants caring. Even my daughter said how great the experience was! Highly recommend this urgent care center!','2019-04-22 12:02:20.983000','2019-04-22 12:02:20.983000',5,'Emmanuelle Roussel','https://lh5.googleusercontent.com/-x4ariGshqcI/AAAAAAAAAAI/AAAAAAAAAAA/4fgOhEha9dA/c-rp-mo-br100/photo.jpg','14904078213800803294',2145),('AIe9_BHx9wW5OAXpNIH08blLdli0c_7TV1PkTuqHN9KQZtV_GDGDVbebubzzg55GZG1nnB073FFVREIWFjVEC3_yu5Tv2tBEVENLnuBAaZN982bJNxxWAKo','It was an amazing experience. Great staff \n\nKim was super helpful!','2017-01-19 21:18:41.539000','2017-01-19 21:18:41.539000',5,'David Abbott','https://lh3.googleusercontent.com/-MHYjonGwgTs/AAAAAAAAAAI/AAAAAAAAAAA/JFXYLAzicoc/c-rp-mo-br100/photo.jpg','16590124370714063921',4089),('AIe9_BHx9wW5OAXpNIH08blLdli0C-_9miWbOKK-hbRAwfZcWxjW4y4ClBnw6eJNYdn3C47ssO3ckmdc0TOm5aiqiZIUC4RF2hs7i6aa1ag7BPjI0mL7XbY','Friendly and helpful. Resolved my issues in a short amount of time.','2016-11-10 00:24:54.798000','2016-11-10 00:24:54.798000',5,'beta nine','https://lh6.googleusercontent.com/-yqgjmerhDGs/AAAAAAAAAAI/AAAAAAAAAAA/ag7243hz6Qo/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',5180),('AIe9_BHx9wW5OAXpNIH08blLdli0CaD4gSlmobngKHBc7mI4o9aFC_ymatkJolZy2ZgZFMGhHx4SqtPUENfnLYSocbi5JLRW-UXV_k9TZYtgAUivrfmOBVY','This facility is amazing. They took very good care of me and there wasn\'t one person who wasn\'t friendly and helpful. The wait time was less than 10 minutes. I ended up having to stay over night and am so grateful for the help of my doctors, nurses, and everyone there. Much thanks to Manny, Lucas, and Delpha - you guys were amazing!','2019-08-13 22:23:06.851000','2019-08-13 22:23:06.851000',5,'Michelle Copeland','https://lh6.googleusercontent.com/-8vUO-0YaPqE/AAAAAAAAAAI/AAAAAAAAAAA/nGvKcfZzykg/c-rp-mo-br100/photo.jpg','6521947413723274945',8163),('AIe9_BHx9wW5OAXpNIH08blLdli0cBSe3Qw4Zphi0SN7FC7Fhqj3-9MQX0e_P-1fhVaepn2CgZsxtU7ELQvFR4MD72DwZrmSqmcZ-m12HRbotq0j7u8zi_w','The location was easy to find and very clean. Everyone was very nice. So if you\'re in need of great care and service. Stop by and see Dr. Leavitt nurse Lia, Aerial, Grace, and Shay.','2019-03-30 02:21:25.637000','2019-03-30 02:21:25.637000',5,'Christie Thomas','https://lh3.googleusercontent.com/-9W_cNRiWrZE/AAAAAAAAAAI/AAAAAAAAAAA/c_lKQSRmSaE/c-rp-mo-br100/photo.jpg','12541597562633926366',525),('AIe9_BHx9wW5OAXpNIH08blLdli0cCfMJubmYHS5mVuUeGp_TE7NvlgQ_WOkE2OwG2uRu_yAyt_C_Oy_31RkyL4RcFyO3EUQzlkD9IOgzgUbxEN0as2u1jA','The staff is so amazing they did everything to make me and my daughter comfortable and didn’t take long at all. I really appreciate them all they handled my baby with the best care for that I’m beyond grateful.','2017-12-24 18:22:04.212000','2017-12-24 18:22:04.212000',5,'Gina Thomas','https://lh6.googleusercontent.com/-eBQjiTGbR4o/AAAAAAAAAAI/AAAAAAAAAAA/SOSpNiNAwNk/c-rp-mo-br100/photo.jpg','8918455867446117794',9317),('AIe9_BHx9wW5OAXpNIH08blLdli0cGmXXNmjmTHUxLtswFYBMWum6obowang81FKnZn0sVDWfZ3O5hpMuJu5X9lxI9EdJfMGYU-H1kyCpQE4H0PXMsPO5cc',NULL,'2019-01-14 03:01:14.973000','2019-01-14 03:01:14.973000',5,'Reyna Nunez S','https://lh3.googleusercontent.com/-bIzWD79GdQY/AAAAAAAAAAI/AAAAAAAAAAA/I7_A887IuZQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8326),('AIe9_BHx9wW5OAXpNIH08blLdli0cOdj-MVuABEv3MKviUgkfZIVIwI1azT3v5RC1QZ64fDs9y6HE6HW9v94xfr_QDiK_er9_X-UCoUn9czUnXEDEoGBf8k','My overall experience was excellent. Fast quick service and everything was very pleasant from the receptionist Patricia to the doctors. I recommend this facility for all of your health needs.','2020-01-18 18:01:44.919000','2020-01-18 18:01:44.919000',5,'Valerie Mosby','https://lh4.googleusercontent.com/-dFwcUhfJM5g/AAAAAAAAAAI/AAAAAAAAAAA/rJTZT4G8S94/c-rp-mo-br100/photo.jpg','16389487648212004696',10048),('AIe9_BHx9wW5OAXpNIH08blLdli0CPQZQ_VHttghjoHid3peJnpaFgOrtgvlTw2_4n1ifeP5s4xFr_CC-nVmeWN0qDJMeWgnCQXVo6da-B0S0BoFvp2KV6I','They took really good care of my daughter!','2020-02-21 03:27:14.629000','2020-02-21 03:27:14.629000',5,'Cassie Clausell','https://lh5.googleusercontent.com/-RWyQcmiUnNo/AAAAAAAAAAI/AAAAAAAAAAA/DKUI7iAxFtA/c-rp-mo-br100/photo.jpg','8918455867446117794',14811),('AIe9_BHx9wW5OAXpNIH08blLdli0cuMf_XQ4QhSFknMggh9Msnyb1v70TUe_bEPjlhvG3g8O0vCrO6v53nX9YKLx7AbVUPO2goqj8zIdZ_EaLtDUmuYTrfc','Sita, Corey, Jose, Allison and Dr. Datta all gave me exceptional care! Hands down the greatest ER care center in West Texas!!! You are missing out if you go anywhere else!','2019-06-10 05:59:20.062000','2019-06-10 05:59:20.062000',5,'Ricky Adame','https://lh5.googleusercontent.com/-9R_LYoBjI9U/AAAAAAAAAAI/AAAAAAAAAAA/tZ_Ku0jCinc/c-rp-mo-br100/photo.jpg','13486358490203335051',977),('AIe9_BHx9wW5OAXpNIH08blLdli0CZtJ4jQ0YNPrD518Pl-1wprMBP3TMSevklULzjQ0SHGHSeruOgmn6SaPc5EPeKKMn7AZpM7y7q0FTEHZZM3OtO1GRSI','Everyone here was great and super nice. The staff including Kim, Dyveliz, Brad, and JR made our experience quick and easy.','2018-08-22 19:04:58.144000','2018-08-22 19:04:58.144000',5,'Tori King','https://lh6.googleusercontent.com/-MtHIZ-65AdA/AAAAAAAAAAI/AAAAAAAAAAA/9oEwQ3ok3vs/c-rp-mo-br100/photo.jpg','16590124370714063921',3773),('AIe9_BHx9wW5OAXpNIH08blLdli0d0bTMa9TKlG5DM2bFoRPaQMQq5_oaXYYYBXOyolu4AAVZgUgU9LRhTaCzmyNmbuflL_JPsB1V4kh0b3Ni3MX2HbBP_Q','I will definitely go back next time anyone in my family is sick. We were in and out in no time. We got put in a room immediately and they were very efficient with the RN (Anthony) getting my history while Natalie got my vitals. JR from radiology also was very quick to get me back and explained everything step by step. Dr Vakey was amazing. Knowledgeable, friendly, and took the time to sit and explain everything to me in detail. I cannot say enough good things about the facility (very modern and clean) and the staff. I had my kiddos with me, and by the time we left my 2 toddlers were wanting to stay! You can tell they have kids or at least have spent a lot of time around them!','2019-06-15 03:40:45.514000','2019-06-15 03:40:45.514000',5,'Taylor Pohler','https://lh6.googleusercontent.com/-FNYsrUfb8bg/AAAAAAAAAAI/AAAAAAAAAAA/EBRcfEAyTYM/c-rp-mo-br100/photo.jpg','16590124370714063921',3354),('AIe9_BHx9wW5OAXpNIH08blLdli0d4zm3WU2eqYmZIhObDsVvOOvYg8bUumWhzpTf502SO6mogJWoXutHxGCPVsO0YHwmOAo1Mcpz7hSBkNAul7voEz1pc8','From start to finish, my experience at Copperfield SignatureCare Emergency Center was ideal. Each staff member was attentive, professional, and timely. I was checked in by Tanisha who immediately greeted me with a smile and was very prepared with being able to explain my paperwork and the process. My nurse, Sarah G., was so sweet and also smiley. These women were able to lighten the experience of an ER visit substantially. Dr. Mauldin was extremely concise about my treatment options and answered all of my questions thoroughly. I could have not asked for a better experience.','2019-09-06 03:25:35.854000','2019-09-06 03:25:35.854000',5,'Brianna','https://lh3.googleusercontent.com/-FkVQ3eB5LLQ/AAAAAAAAAAI/AAAAAAAAAAA/SazVgODOVPI/c-rp-mo-br100/photo.jpg','17898197009688164559',5559),('AIe9_BHx9wW5OAXpNIH08blLdli0D5Np1h1q98bjfwaO8m9_hy64TgNHrs-M0iM7V5kmUHMuCkfKnUd4bSzQ5vv1_TQlERg7SwS9h3ImMoxOFrBymd2FRK0','I had a great quick experience. Erica, Ashley k, Ashley b, alicia, and jo Beth were great','2019-06-28 13:33:14.873000','2019-06-28 13:33:14.873000',5,'Marsha Upchurch','https://lh5.googleusercontent.com/-kY5kG-XaOBY/AAAAAAAAAAI/AAAAAAAAAAA/R2mgloXuOvk/c-rp-mo-br100/photo.jpg','8626688543755174284',8441),('AIe9_BHx9wW5OAXpNIH08blLdli0dcxJEDKIlCk9ChR-LfdUEnGXCnsOYrVUxYJg67Cr5yb4XahWFX_keEaccJOiUka0ri_0fDRDBo7u47jjIpWbXts910A','I am very grateful for SignatureCare Emergency Center. I am happy that I was treated and put on the right path. My medical issues have significantly gone down and one of the reasons is this place. Good doctors, nurses, and staff. They are not like Memorial Hermann who charge an arm and a leg! You all keep up the good work and take care!','2018-10-18 18:55:31.478000','2018-10-18 18:55:31.478000',5,'David Snow','https://lh6.googleusercontent.com/-nqFfX9hzdGY/AAAAAAAAAAI/AAAAAAAAAAA/QApqYwe495w/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',9225),('AIe9_BHx9wW5OAXpNIH08blLdli0Dez0WawwApkZImLYhlS51X0TgGP1eov8xJ8d42KeS2HgElbPmI_fohjI91Y0-TlgCnRV8eYkThR8hVQfV4_tsBI0c48','Dr. O’Malley, Nurse Alvean and Ms. Jocelyn were all extremely friendly and prompt with everything. The timing was fast and they made sure I left treated with wondering what was wrong with me. I definitely recommend this Emergency Room. And it was also very clean and they provide hot blankets.','2019-12-11 21:48:37.069000','2019-12-11 21:48:37.069000',5,'Mykhaela Ayshe','https://lh3.googleusercontent.com/-5pL-uMMhcdM/AAAAAAAAAAI/AAAAAAAAAAA/AFc_Rtm3Oa8/c-rp-mo-br100/photo.jpg','16389487648212004696',2552),('AIe9_BHx9wW5OAXpNIH08blLdli0dMDbi0DgBJ2ThMeOTdWK-tEOqXv7DE1ZpxzoAU2L4mx5EE645YiXweGiJHk1nw4wXeg7E4-k6zNYwdn4FHmafiQZB68','Great experience very nice and professional staff my kids love going here. Tiffany,Jennifer cogburn, brook, and Dr Veloso thank y\'all so much! Keep up the great work!','2019-05-10 02:41:42.355000','2019-05-10 02:41:42.355000',5,'Joseph Blankenship','https://lh6.googleusercontent.com/-rXVbHYL7eTM/AAAAAAAAAAI/AAAAAAAAAAA/pq4RJUskl1c/c-rp-mo-br100/photo.jpg','8626688543755174284',8492),('AIe9_BHx9wW5OAXpNIH08blLdli0DoLoofoA_lWZP5DAOh4wPyQeLWITbUoPNjWUA3_s-NHKos5xaLgQIhWyY0ETeGxOWOCnN-HhaOZq6oN5Y22kHJK3VcA','Look is a great nurse I always have a good experience . Dr Lucas was helpful','2019-02-15 00:15:10.814000','2019-02-15 00:15:10.814000',5,'Taylor Turjanica','https://lh3.googleusercontent.com/-7NZhG5n3mSc/AAAAAAAAAAI/AAAAAAAAAAA/x9-POf70FVQ/c-rp-mo-br100/photo.jpg','3272657195432704501',7014),('AIe9_BHx9wW5OAXpNIH08blLdli0DQdpRQYiErqGB5K36HCnG5KnqU8swL66dP_cPDEzYq8gAzTOFQd9oH1F9CV5J5sU0qgvO3gIUw1wWF7u58AQm-Sf014',NULL,'2020-03-04 08:10:01.807000','2020-03-04 08:10:01.807000',5,'Dusty Miller','https://lh6.googleusercontent.com/-5MYMLNTa378/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmsKLu6IZziO8M2rbnhlIxWsrm0-Q/c0x00000000-cc-rp/photo.jpg','3272657195432704501',21141),('AIe9_BHx9wW5OAXpNIH08blLdli0dr9X0g6T6nQJILSwp89IVkVgdaYTeoS89UnROYvJwS1alLvFQ3UXrFQk_aNlPODjxcFgNfbxZYtL9hErER1VLxq_eLM','awesome place they helped me and my little girl when everyone els was closed good service will never aways come if i have a emergency to them. thank you DR. SINGLA and the nurse NICOLE G. & SHOLA RADIOLOGY. RICARDO \nAND REGISTRATION. SAMANTHA KEEP UP THE GOOD WORK','2020-02-01 01:58:57.523000','2020-02-01 01:58:57.523000',5,'Leo Zamora','https://lh5.googleusercontent.com/-6UzboLez4bk/AAAAAAAAAAI/AAAAAAAAAAA/dRke3k33SSs/c-rp-mo-br100/photo.jpg','14567670160750071148',13570),('AIe9_BHx9wW5OAXpNIH08blLdli0dvbicp0MnpvmFLHMaMK9fXaKbLrPUdYlAuwQ9xBADpd7BXdLMCoEptTH4HR-pyxssWOjBr5FiyQnYhnDZ1CD2iXMToM','Excellent staff!! I was well welcome and treated. Dr. Daniels, tech So le, nurse Blake and register Delicia did great job taking care of me from the moment I arrived till I left. Big thanks to the staff for the great and amazing work!! Highly recommend this place!!','2019-11-05 18:54:54.146000','2019-11-05 18:54:54.146000',5,'Sirine Mars','https://lh5.googleusercontent.com/-SznOHD7izkg/AAAAAAAAAAI/AAAAAAAAAAA/fs8ylw4MRlE/c-rp-mo-br100/photo.jpg','8679688254631342173',8745),('AIe9_BHx9wW5OAXpNIH08blLdli0DxLKXJdXhN34lTUJtM-w8qwLvAZyEVwWtwnVaTuUEiKuJMprSw7P2bGJkq2dkWPMHSZV-fG-ijcilOIRjjI22aaD5nI','From the woman working at check in to everyone who treated me, the staff was professional and oh so kind. Thank you.','2017-07-10 13:52:41.654000','2017-07-10 13:52:41.654000',5,'Nina Villasenor','https://lh6.googleusercontent.com/-xISu_LfMj68/AAAAAAAAAAI/AAAAAAAAAAA/MIhcGH7S1MQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1798),('AIe9_BHx9wW5OAXpNIH08blLdli0dY5Zv9DXBaGEyMI_uJ1rYpRWodeT_OOk3ANCFkYc-IE6BOPjQ3fZksTbFyqMNKhLISw_8GmNn-MXyIKY6M65oGaHIB4','My nephew was extremely sick and taking him to a hospital was just going to make things harder. Signature care has taken care of my daughter before on a late night and was a very fast, informative, easy, and comforting experience. With the very pleasant experience in the past, I came back again last night for my nephew to be seen. Again it was just as the last visit. Very well taken care of and my sister most definitely knows where to go next time. Thank you Signature Care!','2016-10-02 22:14:26.579000','2016-10-02 22:14:26.579000',5,'J Ben','https://lh5.googleusercontent.com/-3q7xn0ql3cU/AAAAAAAAAAI/AAAAAAAAAAA/NrSE6j1pAO0/c-rp-mo-br100/photo.jpg','14567670160750071148',1964),('AIe9_BHx9wW5OAXpNIH08blLdli0dZfHndoyh3v0CXnSjsKQg19W0VOqBIfMcRfwdWJ3c_PokFhK5ASlhHaZwhDkDWeFRRHh8baoU87pXH_9wPUcTYKq1SQ','They were VERY helpful! I thought I was gonna die from a scorpion bite but I didn’t! 😂 shoutout to Dyveliz, Dr. Vakey, Nurse Remington, Rebecca, and Laura!!!!','2020-03-16 19:44:33.470000','2020-03-16 19:44:33.470000',5,'Breara Ratcliff','https://lh5.googleusercontent.com/-XFvG4SYlOzo/AAAAAAAAAAI/AAAAAAAAAAA/qMSm-eX4bP8/c-rp-mo-br100/photo.jpg','16590124370714063921',21025),('AIe9_BHx9wW5OAXpNIH08blLdli0ecAchF8TwhA8oK-BE1n2tVooH36jHliQOPoX9U8V4IwPd238fVkZOGK0FWwn3x_Hy9zlIX5_6tz2xEBO4tRuhr-gO1Y','Thanks for the great coffee Tanishia and the great hospitality.','2019-10-23 02:41:39.977000','2019-10-23 02:41:39.977000',5,'Nickeisha Cooke','https://lh4.googleusercontent.com/-QNNUWtgosg4/AAAAAAAAAAI/AAAAAAAAAAA/ZdSwSE8BR9g/c-rp-mo-br100/photo.jpg','17898197009688164559',5489),('AIe9_BHx9wW5OAXpNIH08blLdli0EcH_xNRaZkWmEdo2lMtNUHBi1sOn5AUh20TD_QES5f1vZg-_MH46bZQkBl7QpfnsW3e8C0WCZB7UwdqZdjYhwEqFiDY',' I will never go back there again. No one asked us any thing when we stood in front of the register desk for a while, even though there were a few people there. After the form was filled out, one of the front desk took time training the other how to enter the info into the system. Come on, this is the emergency center, and there were no sense of being urgent. I was even more disappointed seeing the doctor/nurse staff was quite un-proffesional in my opinion. I dont write out the details here because it would take me a long time to explain that. May be it was my unlucky day, or may be I overly analyzed the situation as I am an engineer. However, it was my first there and also my last. I went there because the location was closest to my house.','2016-12-03 07:01:29.737000','2016-12-03 07:01:29.737000',1,'david nguyen','https://lh6.googleusercontent.com/-MSLI8jpltp0/AAAAAAAAAAI/AAAAAAAAAAA/SSz9lIvX20w/c-rp-mo-br100/photo.jpg','17394740196501090048',5153),('AIe9_BHx9wW5OAXpNIH08blLdli0em5TWXqk9fG8K9E6iCX72_1C74EGjPx5MN3bMbuLYYQGEK7glIIJlA8OH3tdAR_2J5q5dj8S-SqfZ1IbNahFoRo5nWc',NULL,'2016-08-18 15:59:55.459000','2016-08-18 15:59:55.459000',4,'Sheherazad Williams','https://lh5.googleusercontent.com/-6q9_emoH7FI/AAAAAAAAAAI/AAAAAAAAAAA/1SdZFAMwuxU/c-rp-mo-br100/photo.jpg','14904078213800803294',2466),('AIe9_BHx9wW5OAXpNIH08blLdli0En8aRKtvjVzUXImYGLPX87aOvA-3JIZE_WP_USp4hk6PNNo09hUozn3bzYtf_uhNkLiXmgmbd2ob3Ts75SoF2QZyOOw','Very friendly staff\n\nSeen very quickly and felt like staff was knowledgeable and caring','2020-02-23 17:00:39.498000','2020-02-23 17:00:39.498000',5,'John Mangels','https://lh4.googleusercontent.com/-lftv_7vz9V8/AAAAAAAAAAI/AAAAAAAAAAA/OpatZZpF2ak/c-rp-mo-ba2-br100/photo.jpg','2694018788013845459',14215),('AIe9_BHx9wW5OAXpNIH08blLdli0eRWHrAPKKR91myyRzrhH5da_GcUdWzZFoKlugkDjDcnIcAA4CdcUd0hpwWjzZ0FfFg_Ptf4G9u3_J3WZahMK3DpU_b0','I am here right now with a sick child. I am thoroughly impressed. They figured it out. This is what a parent wants when there is an emergency with their child. It makes the big hospitals look very bad by comparison. \nIt\'s hard to articulate the length they have gone to. I would call it innovation. How many times have we all waited until the last possible moment to take ourselves or a loved one to the ER. We don\'t want to catch something serious trying to prevent something potentially serious. We don\'t want to wait 5 hours to have vitals checked. People are rude. People don\'t listen. It\'s cold and uncomfortable. There\'s a bunch of errors. You repeat yourself a million times. The doctor avoids you. People don\'t set an expectation or tell you what\'s going on. They don\'t solve the problem or diagnose, just patch you up. You feel like they\'re paying you to go through all that instead of like a customer.\n\nIf you could think of a place that answered all the problems of emergency room care, that place would be SignatureCare.\n\nThank you Signature Care for taking such good care of us.','2017-12-23 00:34:52.407000','2017-12-23 00:34:52.407000',5,'Keara Mack','https://lh5.googleusercontent.com/-aXUHmEX2FFs/AAAAAAAAAAI/AAAAAAAAAAA/QCgW5fbHMrY/c-rp-mo-br100/photo.jpg','8918455867446117794',9318),('AIe9_BHx9wW5OAXpNIH08blLdli0EsvkJERNZGg2prUssRLcAPPnVmyBwUTOSVp57gEaAx_wNtFi3oMGrTpAPax_U3XBWylBVlShM2wlZAgqYJIyZyv2GkA','It was really easy to get my test everyone was very kind and helpful. Thank you to, Delicia, Dr. Lindsay, Sonle, Karen, Amy, Yaslyn, and Rolando!!','2020-08-23 15:04:33.576000','2020-08-23 15:04:33.576000',5,'Liberty Meyn','https://lh3.googleusercontent.com/a-/AOh14GgRc-Xoq6AGn08B5Il2WUWSttl0AZWOELPhJ-P32Q=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli0ew9tbUyjV8uRup1ayjSlcmGLe6tEwLuEonnD5DdhCx30Z3vrxuGmKlR8HewgrC_M3Nt7aCwKNM0oG3UPDVLVop3pGD4','Jessica Sanchez was very professional and accommodating. Process was smooth and fast. Will definitely use them again .','2020-07-21 14:53:39.468000','2020-07-21 14:53:39.468000',5,'Eric P','https://lh5.googleusercontent.com/-zfhvTaGeQhI/AAAAAAAAAAI/AAAAAAAAAAA/EUSD4DMIjtQ/c-rp-mo-br100/photo.jpg','14748677429039074158',21624),('AIe9_BHx9wW5OAXpNIH08blLdli0F5UFK6DI5QGjFyuqS4GOyZZ-jMS-_eYpjwMy_snnigvkYuiO0TCh1zFAQS4YUOj7NIN7-PALYNklKS4HibSQK-TE9Lk','The care I received was phenomenal! The entire staff was professional and caring. I thank God for having the ER a few blocks away from my home. The entire ER team I met was absolulety amazing! They even made sure my wife was comfortable asked if she needed a warm blanket. From registration to leaving. Samantha, Pam, Dr. Zengh, Jessica, Duwauld and Marcia and hope I\'m not missing anyone... they were the best team I have experienced in any hospital..Very fast services but never felt my care or stay was rushed. They were attentive and made sure I had full understanding of my treatment and answered all my questions. I HIGHLY HIGHLY RECOMMEND Signature ER!!!! Thank you for your compassion and time. It was a pleasure meeting you all...even under those circumstances. There are not enough Thanks how well I was taken care with my fees were waived as a fast responder. Such a Blessing! 🙏🏾\nCMiller','2019-08-16 04:57:17.707000','2019-08-16 04:57:17.707000',5,'Jin3t D','https://lh3.googleusercontent.com/-bpdbIhe2igk/AAAAAAAAAAI/AAAAAAAAAAA/w4FH1JUb8KA/c-rp-mo-br100/photo.jpg','8918455867446117794',9080),('AIe9_BHx9wW5OAXpNIH08blLdli0fdbZlCmU6B9_BmcPRcO5AH8LWuEGxjwGuIWYnoFgJyZwvsZO7A4zJ0lQdFTbdbzgV2eFAy6ADLz-864zwgUimngw5g4','I cannot say enough about this place. I have a nervous system condition and have dealt with my fair share of ER clinics and they have been by far the best.They have seen me through my lowest times and have helped me stay in college at A&M.','2018-04-25 01:00:51.371000','2018-04-25 01:00:51.371000',5,'Mia Self','https://lh6.googleusercontent.com/-gDAfa-4Q-W4/AAAAAAAAAAI/AAAAAAAAAAA/ASNSd7iauds/c-rp-mo-br100/photo.jpg','16590124370714063921',3829),('AIe9_BHx9wW5OAXpNIH08blLdli0fjqYNltmIKXXobUfYlCcKv__mRlYJX5chphWenJFz2lzDCd0s-hEuzVbUEhvYRx0UEMI0aMYLiWeoavE6RHGEq2x8Jg','It’s was amazing from beginning to end even with being sick ! I was taken really good care of by. Jennifer Digs, Dr. Simmons and Nurse Billy Brooks. loved my Experience !','2018-12-31 06:29:15.223000','2018-12-31 06:29:15.223000',5,'Renayia Black','https://lh3.googleusercontent.com/-Hoxmeqqp1bc/AAAAAAAAAAI/AAAAAAAAAAA/YcvK92_qIQk/c-rp-mo-br100/photo.jpg','8626688543755174284',8624),('AIe9_BHx9wW5OAXpNIH08blLdli0fjWkqMup1Kv3Nik6LFTbNen_AK4Th2xfUbmPMRCkl9VSMSkD-pE9gcy_fz2zm9ys-SqZb3sTuvKTPSaxjaWp7kepYds','Excellent Service! Reasonable prices as well. Everybody treat us professionally and polite. In registration Mercades was polite and registered me in quick manner. Nurse Al was very informative and answered all my questions and Dr. Edwards was very knowledgeable and explain everything in detail. Overall I had a good experience','2019-05-19 00:18:12.255000','2019-05-19 00:18:12.255000',5,'Jesus Turcios','https://lh3.googleusercontent.com/-qhyk1mrOX4Q/AAAAAAAAAAI/AAAAAAAAAAA/eRZhF0vrzWo/c-rp-mo-br100/photo.jpg','17394740196501090048',4680),('AIe9_BHx9wW5OAXpNIH08blLdli0fn_Sa-p5PeQLZoCJI3oKJNsNqTC-V0jE7ig__yRCkVnfuanNU9_5MGpuzt-jEpd_kVdxIuoYqDMoK6XEAAR7dtka16A','Great hospitality! Enjoyed my overnight stay with my mom and they were there for all her needs and mines even though I’m not a patient.','2019-07-16 15:41:34.244000','2019-07-16 15:41:34.244000',5,'Ashley Beeler','https://lh6.googleusercontent.com/-jC38YAxgrPU/AAAAAAAAAAI/AAAAAAAAAAA/oYxxNWgNX-0/c-rp-mo-br100/photo.jpg','12541597562633926366',489),('AIe9_BHx9wW5OAXpNIH08blLdli0g1WZlI4dLRubPGqhmDB86wF9gcv9vToSrXcXra1vNEcMue2vIY4BmtcMb6598Sb-QFVeKUY85zIrChY5wzqOJQq_nYs',NULL,'2019-06-14 18:49:00.782000','2019-06-14 18:49:00.782000',5,'Camilla Jones','https://lh3.googleusercontent.com/-vczu2hNwhT8/AAAAAAAAAAI/AAAAAAAAAAA/wWwnMPSORjY/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli0g8kyX7J5qVohdhooqnJSJUm-UX3LCfX_iay0h8AxcEZBLyYgvqMuNPi5JXdjoOOZYi1Sz_r4yagPWmhS5WEz3TsXC7w','The location was perfect, very close to home as listed online. Everyone was very welcoming, beginning with the officer outside in the parking lot, she offered her help and even a wheelchair. The receptionist was also very nice and helpful made the process fast for me to get in ASAP, and assisted with some financial advice. I was not the happiest camper that night, I don\'t believe I was grumpy, but I hadn\'t slept in a couple of days due to tooth pain. I didn\'t have a dentist appointment until the following week and Dr. Michael understood what my problem was and knew exactly what to prescribe to relieve the discomfort and make it possible for me to sleep. I received really great care from Dr. Michael, who was very knowledgeable, and his team. Thank you!','2017-09-11 13:37:12.438000','2017-09-11 13:37:12.438000',5,'Rosa Ontiveros','https://lh5.googleusercontent.com/-Gg2Wd3h5I-w/AAAAAAAAAAI/AAAAAAAAAAA/gY8By4GKeW4/c-rp-mo-br100/photo.jpg','8918455867446117794',9361),('AIe9_BHx9wW5OAXpNIH08blLdli0gb6Lgg0lf--1JvAC_ViE8v78ScQcjM2dPiWZocxyE9F0ShE_7W26kzZMrkyOLj8EaNI66abPsoRndNl6wegh8NYs5Fk',NULL,'2019-05-31 22:56:00.031000','2019-05-31 22:56:00.031000',5,'Glenn Lawrence','https://lh3.googleusercontent.com/-s27Dhp2LAq8/AAAAAAAAAAI/AAAAAAAAAAA/xorPuyfRXX0/c-rp-mo-br100/photo.jpg','16590124370714063921',3370),('AIe9_BHx9wW5OAXpNIH08blLdli0GCxCo-O33-o3KbSGr31ZkGzMTDGCriYzo6R5jFiUBPrKGjejnvx103qSm1pC6c-v-Y7v4o5QwP7DFYngqs-9pM-lPiw','Nice and clean facility, friendly staff, thank you Olivia and Dawn for your excellent care .','2019-08-01 23:41:57.544000','2019-08-01 23:41:57.544000',5,'martin quiroga','https://lh5.googleusercontent.com/-BzkCV0NnqIs/AAAAAAAAAAI/AAAAAAAAAAA/185Xa1pQJoc/c-rp-mo-br100/photo.jpg','3511292162159714121',7229),('AIe9_BHx9wW5OAXpNIH08blLdli0gdsr7cwy0Z85FnkWq5ir3i2fD_UMX4Hv8SaP0hPIjk_jg60WDFNfRO6vmc8hntMn4Nb1PpIRouUpizWPQjOOJZ5s3UI','Best care ever! I totally recommend this center to everyone. Great care really fast! Super friendly and amazing atmosphere!','2016-04-24 04:16:04.036000','2016-04-24 04:16:04.036000',5,'Vanessa Longoria','https://lh5.googleusercontent.com/-L8-OYtKp3mY/AAAAAAAAAAI/AAAAAAAAAAA/XBhEzVLeP_w/c-rp-mo-br100/photo.jpg','3511292162159714121',8016),('AIe9_BHx9wW5OAXpNIH08blLdli0gGI7qYig3HW8WoOkVa1rtMZfKfB1AdbZbIk3VlGbfhXm7-BoWS1pMlJtpZ_4yHLSNXKCWjvsNu7S-PPEBsxqmcQhmxU','This is how urgent care ought to work. I\'ve been twice in the past year and a half, and both times I was in and out in less than an hour with the advice and prescriptions I needed to fix myself up. The waiting room is clean and comfortable and modern, the staff is super friendly, and the bills have been totally reasonable.','2018-12-05 04:11:56.724000','2018-12-05 04:11:56.724000',5,'Sean Ragan','https://lh5.googleusercontent.com/-i2TX8FbEx9s/AAAAAAAAAAI/AAAAAAAAAAA/dOL-9Vqv_HA/c-rp-mo-ba5-br100/photo.jpg','16891069708558046635',4395),('AIe9_BHx9wW5OAXpNIH08blLdli0gHv8a147dLlC4O2GNRR857edcuckXy1H6EU8gG24gc8j4drlfpZewdHJ8D_dTniyrHxzti3wIiD9F40Pi5LH9cwUn4g','Quickly in and out. Friendly and easy to work with staff','2016-06-28 19:04:28.548000','2016-06-28 19:04:28.548000',5,'Grant Robertson','https://lh4.googleusercontent.com/-2-rLi-vSa1I/AAAAAAAAAAI/AAAAAAAAAAA/qJPsypteANk/c-rp-mo-br100/photo.jpg','3511292162159714121',7970),('AIe9_BHx9wW5OAXpNIH08blLdli0GP2Xcv53nGz1QQia-sRK5kKbEp_tg_yu_FP_B2Z93mEHrZEws9R_iHfwZmttrt4e0ydDzKgVoNTe80afeo2IZBLXaZI','Brought my 4 month old son in and they took great care of him. Trisha was so sweet and caring. Nurse Kelly was very informative. Thanh helped us navigate paperwork easily. The staff here is great I would recommend them to anyone.','2020-01-12 20:28:02.816000','2020-01-12 20:28:02.816000',5,'Shaylene Ayala','https://lh6.googleusercontent.com/-tXcof_8IUP0/AAAAAAAAAAI/AAAAAAAAAAA/GnNFITVMMxk/c-rp-mo-br100/photo.jpg','8918455867446117794',14875),('AIe9_BHx9wW5OAXpNIH08blLdli0H02NZgBH5yTYfHAumeiZByweAFMAgPpevpFNAQSWw2qCjpoC_gNyxASMmTTFiDl4MP6puJqz8ECLOo0ZCX9MeJ4ZW6s','Dr. Patel \nAmy registration \nBryan E. RN','2019-05-04 06:41:05.777000','2019-05-04 06:41:05.777000',5,'gabbie hernandez','https://lh6.googleusercontent.com/-lzQUOHySqXw/AAAAAAAAAAI/AAAAAAAAAAA/KFCPY9ORkWY/c-rp-mo-br100/photo.jpg','14567670160750071148',1329),('AIe9_BHx9wW5OAXpNIH08blLdli0H43WQXjN95kcISEDxPlkQzxo-1w6ZMyO_koZR8HDfBuzQLWvAduQzEGJ9LZZI-6md7yV4TbytW1i4j4K1RgKMUhUtTU','Everyone here was very nice and detailed. Answered all my questions.','2019-12-22 21:46:42.336000','2019-12-22 21:46:42.336000',5,'Andrew Blackstone','https://lh5.googleusercontent.com/-nKGgVCA6YcQ/AAAAAAAAAAI/AAAAAAAAAAA/ZjZipVE8Tto/c-rp-mo-br100/photo.jpg','16590124370714063921',3010),('AIe9_BHx9wW5OAXpNIH08blLdli0H9t3X1W6zcTrzEfToir7FoKhNa2ck-LR-sEEFaXrJVqJNOhPeX2JjsYGt44aXrDeAUTk9Rk-0p8v71OZ9pTjc4CEtZI','Thank you for the wonderful care I was given tonight. Starting from the reception with Sita who greeted me promptly and got me back fast when i was short of breath. Thank you to the Nurse Kim and Er Tech Cory for helping me in the room making sure my breathing was okay. Thank you to the radtechs Allison and Ahui for the easy process during the chest xray. Overall grand service was given tonight :)','2019-04-17 04:28:07.709000','2019-04-17 04:28:07.709000',5,'carolyn new','https://lh6.googleusercontent.com/-T_91T1zujj8/AAAAAAAAAAI/AAAAAAAAAAA/rmsTRnWVcFM/c-rp-mo-br100/photo.jpg','13486358490203335051',1035),('AIe9_BHx9wW5OAXpNIH08blLdli0HdwNP_dO_NCAqmyphQLROxTL-jpmCF7osp8JZ7M9ZqQv1TCEt2kscMKuOQKt0jszCtAQEHCBtYCHjV1NEmwAVm6D4P4',NULL,'2017-03-23 08:57:27.981000','2017-03-23 08:57:27.981000',5,'Kriston Moorman','https://lh5.googleusercontent.com/-SmZnsqXard4/AAAAAAAAAAI/AAAAAAAAAAA/WGbsZRauU1M/c-rp-mo-br100/photo.jpg','16590124370714063921',4025),('AIe9_BHx9wW5OAXpNIH08blLdli0HkhRL_rrJYZQmDBZ4b3lthRHqtTZeid_WUtc5NiLgRphahMnkcBfRBDfpbnM3CfMCj0KMzV751RPcg6s57NGjrNQizM','Great great location, with GREAT customer service. Everyone was extremely helpful, from front office, nurse, and even Dr! Tanisha was absolutely amazing though! So helpful and personable, great hire guys!!','2019-10-04 03:27:01.757000','2019-10-04 03:27:01.757000',5,'Natalie Molina','https://lh3.googleusercontent.com/-llPdHGQehLU/AAAAAAAAAAI/AAAAAAAAAAA/2fvAb_WP2Fw/c-rp-mo-br100/photo.jpg','17898197009688164559',5520),('AIe9_BHx9wW5OAXpNIH08blLdli0hlWaqXjvmF3B50ervRDgAFjaDgUU39KHCsU6jJ_m-SaLpmFpWQtPAqbblk4sVAqHR-HPRiHVcEFVXbBhE44YuWD3lc0','The staff here was fast, friendly, and funny.... they made me feel better even before the meds just from their helpfulness and personalities alone. I would recommend anybody to go here. Thank you guys so much!!!','2019-11-10 15:07:49.949000','2019-11-10 15:07:49.949000',5,'New gen daily Musik','https://lh5.googleusercontent.com/-sO3r4Hk5Mnk/AAAAAAAAAAI/AAAAAAAAAAA/DiJgW38rYpA/c-rp-mo-br100/photo.jpg','8918455867446117794',9049),('AIe9_BHx9wW5OAXpNIH08blLdli0hoXUxA0ub1d6kIcDueNW77CObR3FqMnHVds2VOT_DQvnnBgMi_qezVaEv6sUcFWKF06CTANLuOWiUu5S8eBnHlJmuag','Great experience! Kimberley, jacob, and JR treated my friend awesome.','2017-08-04 22:03:53.253000','2017-08-04 22:03:53.253000',5,'Jessica Ringstaff','https://lh5.googleusercontent.com/-FmAifSEyAfI/AAAAAAAAAAI/AAAAAAAAAAA/5ePSDwb2qis/c-rp-mo-br100/photo.jpg','16590124370714063921',3968),('AIe9_BHx9wW5OAXpNIH08blLdli0HT65bzeuwWzG8sSlgnBQ31qO5sTjVGw_osCriNZtr8DMJazspwNr1x5xALGrxAiTRcuRfFfvZ0jsLjh1qTAJR5DdRj4','Took my husband here for a retest for COVID. Turned out he had a pulmonary embolism. It was a horrible time but thanks to the amazing staff here he was diagnosed and started on medication. Can’t thank these guys enough. Staff are reassuring and friendly. Highly recommend.','2020-08-09 19:13:33.802000','2020-08-09 19:13:33.802000',5,'Tracie Jenkins','https://lh3.googleusercontent.com/-QAS1IXo78jo/AAAAAAAAAAI/AAAAAAAAAAA/3lViGv6HMRw/c-rp-mo-br100/photo.jpg','2077061009497551125',22717),('AIe9_BHx9wW5OAXpNIH08blLdli0hv7M0kxtQsWsZP0gMb52N8G8VxzCYPujl2AtTntnDSMBNluR-Sp-7Ij-CjElX_Y6QODlwYlNY8Jlx4fVZDv0GEbSbD8','Very quick the staff was excellent definitely going to be coming back','2019-07-05 01:51:41.438000','2019-07-05 01:51:41.438000',5,'Kyelar Connally','https://lh4.googleusercontent.com/-bNJo2pKPZ04/AAAAAAAAAAI/AAAAAAAAAAA/-4kjyhOpCEc/c-rp-mo-br100/photo.jpg','13486358490203335051',900),('AIe9_BHx9wW5OAXpNIH08blLdli0HXTyUtj7r-USbL640hvbut3DiuIjpcbZLWahwUxN4UMRpZfiErHQieeIaaXswP8M0eqRU_S0eEe9YMZT5B7saNypXpU','My son has a cut on his forehead. All the staff were friendly and very efficient.','2017-02-23 22:57:16.478000','2017-02-23 22:57:16.478000',4,'Su K','https://lh6.googleusercontent.com/-GYG1_QkHsG8/AAAAAAAAAAI/AAAAAAAAAAA/fetB3-N86eQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2404),('AIe9_BHx9wW5OAXpNIH08blLdli0HZK50r-1wKUvX5cDkOit2KOjq9nWoDjcPckZl7LQxKiDuZo89ZZJAObwSiF5LODCud-EL6eQF2iufdrCJDGI8QuPuyw',NULL,'2019-03-18 22:53:57.071000','2019-03-18 22:53:57.071000',5,'Alyssa Wallace','https://lh3.googleusercontent.com/-uMDdJHMrze4/AAAAAAAAAAI/AAAAAAAAAAA/r3_vqdMbF7E/c-rp-mo-br100/photo.jpg','13486358490203335051',1057),('AIe9_BHx9wW5OAXpNIH08blLdli0I2cLzlVU_rAXiUVgL9xJoulOoKqMiVTAeornxzP7bKfpo4a8UOceBGMV87M5Ykx7orG_zsj6-xxuziKb_BPIceJMivc',NULL,'2020-05-24 14:17:35.939000','2020-05-24 14:17:35.939000',4,'Dennis Butler','https://lh3.googleusercontent.com/-Xun2tSbacI4/AAAAAAAAAAI/AAAAAAAAAAA/IHLbvT5vmco/c-rp-mo-br100/photo.jpg','2694018788013845459',21463),('AIe9_BHx9wW5OAXpNIH08blLdli0I7M-84xuCxqLkgEFeFZTamjFTWUWVUqlqBNhmapdWyhcw8sKM_K_gL8UwBs2TCG-_U0Ayq-6Mccki1r3kMRb2DTGaTQ','I came to this location when I was sick and tested positive for the virus. I waited my two weeks and came back and tested positive again. I was told by the Doctor to come back in a week to test again. Not once did they mention needing to have an appointment. When I came back a week later, the front desk staff were all so rude to me and gave me a form to make an online appointment in which there were none available for months online. I explained that I needed to retest twice to return back to work and they replied that they are not a testing center and could not see me without an appointment. Mind you, they saw me twice before without an appointment and I received a flier in the mail advertising rapid COVID testing with nothing stating I had to have an appointment. Also if you go in the website to make an appointment, it asks that you do not make one without having symptoms. So what are the positive tests who are asymptotic waiting to receive a negative test supposed to do? I went early this morning and they agreed to see me and I have been waiting in my car for 4 hours. Nobody wants to get tested but I have to in order to return back to work. The staff are not professional and make you feel like a burden to them to get your tests done.','2020-07-11 17:57:38.046000','2020-07-11 17:57:38.046000',1,'Jacey Bell','https://lh4.googleusercontent.com/-7hHl9LYEijg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm1CMbHg8gA31BF-StqSeOc3tFrdw/c0x00000000-cc-rp/photo.jpg','8679688254631342173',21586),('AIe9_BHx9wW5OAXpNIH08blLdli0iCC9v0ZNAuJnc34kM8uyke6A1X335OOun5PpkplFqsJJ0wxYrkiVncrFfo_XLQLCudCS7bb7nhpQ-kOu7D_HYgXPCr0',NULL,'2019-10-09 21:09:42.125000','2019-10-09 21:09:42.125000',5,'Ana Izaguirre','https://lh5.googleusercontent.com/-9jM4R7CTsLg/AAAAAAAAAAI/AAAAAAAAAAA/8EKHAKnRTjg/c-rp-mo-br100/photo.jpg','14904078213800803294',13677),('AIe9_BHx9wW5OAXpNIH08blLdli0id1xeDAW70cl7u3wHuEoVyAk541ifFe7ZGxcDnxAcpZO-fZQk4NdllSmwJeTibz9xrtKzHjEhHwqQ2-v2MeO9QwDl5M','Was very quick and pleasant service from registration lady Naomi! Took us no time to get help! Highly recommend','2019-06-26 02:51:14.051000','2019-06-26 02:51:14.051000',5,'Anna Belousova','https://lh5.googleusercontent.com/-7tnagxMQl40/AAAAAAAAAAI/AAAAAAAAAAA/qBDB5tDrgrU/c-rp-mo-br100/photo.jpg','16590124370714063921',3334),('AIe9_BHx9wW5OAXpNIH08blLdli0ifcXnUHPNImi0V4isbutCwAqfqGuyOETN0lLYe4REuDiSr7PCGqMkZjs2esGwXSLKsEQGrLw7At1XtSrDbHXyck-SeY','Very professional and calm space. Super clean and spacious and everyone was kind and worked very calmly with my son! Would recommend this center to anyone who needs emergency care!','2020-03-04 19:06:15.269000','2020-03-04 19:06:15.269000',5,'Grace Kubecka','https://lh6.googleusercontent.com/-RILTWaZzmhM/AAAAAAAAAAI/AAAAAAAAAAA/bYEDpq3hqgI/c-rp-mo-br100/photo.jpg','8918455867446117794',18449),('AIe9_BHx9wW5OAXpNIH08blLdli0iIsjIz0vgcgGftOrijMNzCVO6DBqBLj8uRJ8P8zYnmRkx2j8uefpjBXUsIgl4Wh4Wu8D_6Y4khWbAWx7R0syKV8bDPM','The staff at Signature (Kim, Lucas, and Eric) are very quick and knowledgeable. The site it self is very clean and welcoming. And our care here was fantastic. If you are feeling ill come here.','2020-02-28 20:25:51.785000','2020-02-28 20:25:51.785000',5,'Jason Cunningham','https://lh6.googleusercontent.com/-H-Mznuo7dcU/AAAAAAAAAAI/AAAAAAAAAAA/wQ63PSuihzc/c-rp-mo-br100/photo.jpg','3272657195432704501',14316),('AIe9_BHx9wW5OAXpNIH08blLdli0iLhyHocUz-NZCx96bJU6xcJl9v5qtq7F2u6q7XE5G1IoIaPt97VN84brF0B2buhccvOhjdVryFc5Vpku5BSP0tBeNes','Great place to go!!!! Doctors and nurses are so polite and caring of your wellbeing. It didn’t take long before I was seen by the doctor.','2017-12-01 13:05:43.314000','2017-12-01 13:05:43.314000',4,'Tiy Battle','https://lh5.googleusercontent.com/-POf32sbfX7g/AAAAAAAAAAI/AAAAAAAAAAA/g34jNHJd7jc/c-rp-mo-br100/photo.jpg','17394740196501090048',4925),('AIe9_BHx9wW5OAXpNIH08blLdli0Isk1v6dZY-mYuAZUkz45zizsudttfDZbMAo4hu0YvRXmzv6xGPoQhOQYive-TaqR7G0lCvTzP56QEN2XOtvxQzW8Sco','Kirsten (tech) did a great job at handing me the required paperwork to get scheduled for an appointment to get my stitches removed. Jacob the nurse was good at making a positive mood with his jokes as well as information needed to get my visit in as quickly as possible. Doctor Vakey gave me a great experience by making my visit as quick and painless as possible. I had two visits total, one being to get stitches Put in, and one visit to get them out. Both visits being quick and painless.','2019-04-23 20:33:26.900000','2019-04-23 20:33:26.900000',5,'James Forlenza','https://lh5.googleusercontent.com/-hSEDURGPg9w/AAAAAAAAAAI/AAAAAAAAAAA/rdQ4fdTogtQ/c-rp-mo-br100/photo.jpg','16590124370714063921',3411),('AIe9_BHx9wW5OAXpNIH08blLdli0IXlWGX0moyzGCYFipjfWcJ4k8p-0hgYV0oBut2s1KHW-CNYKwqnsA9pjYGYmPbQgUbOeN8rfNdTbX9kFjsi7Dj4ou5I','Thank you for the service your staff is very professional and always making sure you are taking care off. An appointment was made for follow up the next day but the suite number for the address is incorrect the place did not open until 9 and our appointment was at 7:30 which it took a while to find out. We were told our documents were going to be fax and they were not which had to wait for them as well. But will visit you again if need to','2017-11-21 15:48:34.607000','2017-11-21 15:48:34.607000',4,'Dalia Araujo','https://lh6.googleusercontent.com/-C_LH7bYrkvo/AAAAAAAAAAI/AAAAAAAAAAA/m-2MSwTjL8I/c-rp-mo-br100/photo.jpg','6521947413723274945',8347),('AIe9_BHx9wW5OAXpNIH08blLdli0iYsV92EdaQWWxY01Sn0sCbsDqOFkwcCyoTYR9XcjjEEFTtXkpArM3CYg1XV_LaGhaVgbTdYas7BoaTZcE5fIExtlC2U','Very fast and helpful! I really appreciate Dr Smith, and his staff Alvean, Tricia, Jesus and Sean.','2019-07-13 17:00:02.374000','2019-07-13 17:00:02.374000',5,'April Lewis','https://lh3.googleusercontent.com/-d19bgEXth9U/AAAAAAAAAAI/AAAAAAAAAAA/Eture93i0Yk/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli0jCuX8RsRzbAbugpYefJ0k0aWbl24r03QK5vJgfYfCBRhh36PODFLjgQB4q2-UuU7CAx9rXnpN7U37yRYtQ-Lopd_DrA',NULL,'2020-03-06 07:37:21.012000','2020-03-06 07:37:21.012000',5,'Kate','https://lh4.googleusercontent.com/-GlG4did6Rdc/AAAAAAAAAAI/AAAAAAAAAAA/KFfgZNjtzFg/c-rp-mo-br100/photo.jpg','16590124370714063921',20351),('AIe9_BHx9wW5OAXpNIH08blLdli0JgZV42XlgK35ffahywZhvbglOoo-nEhAET0gyEc6w4NlTiKumBJdeNBh8nlEtBwxXFzRa_iNFCziKsPBQV6T5kFu6wo','I highly recommend this hospital. They welcomed me and took great care of me after my accident. The Doctor and the nurses were wonderful. They also followed up with me afterwards. 10 stars!!!! Thank you all for such great care.','2018-03-11 20:23:49.188000','2018-03-11 20:23:49.188000',5,'Eli Gamachii','https://lh3.googleusercontent.com/-rFO9HEdkOSs/AAAAAAAAAAI/AAAAAAAAAAA/dX3J_2iRVrY/c-rp-mo-br100/photo.jpg','17898197009688164559',5933),('AIe9_BHx9wW5OAXpNIH08blLdli0JLyost_nfoHWqwYBJ9vgPQXNysIoUwla2Ot7WOb87GIKPkgrqnDHv8-U07EbaEi0g_ZGO195q1JQEDEIW_ztvKieW3Q','Wonderful ER, no wait. Everyone took care of me in a very timely manner. Dr. O’Malley, Tricia, Alvean, and Joclyn were all amazing and I would highly recommend Signature Care Emergency Center.','2019-04-10 14:23:13.117000','2019-04-10 14:23:13.117000',5,'Melissa Duran','https://lh4.googleusercontent.com/-85rjil5WWM4/AAAAAAAAAAI/AAAAAAAAAAA/__qoSgkXi9c/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli0JQxeYcsepiEYBuIujVSFeK618F1oAn9pXNyOD8jZrljCx4ObqHNM9B7MdTXx_zlN0oGz-790Wnc_Y-TbCtHyAQ7K_QY',NULL,'2020-01-31 17:50:09.946000','2020-01-31 17:50:09.946000',5,'Kayla Levingston','https://lh4.googleusercontent.com/-g_QbepafB28/AAAAAAAAAAI/AAAAAAAAAAA/EH6yx8E5l38/c-rp-mo-br100/photo.jpg','3272657195432704501',10462),('AIe9_BHx9wW5OAXpNIH08blLdli0jRj4Y09qD-uVbuKeayDSa7YjztXXH8BjvCZWF_HFYeCGmZGmngVjjeuAyLj5JkC1PiZMZYmXj6U39Bq61ZcE1M28tgc','From the moment we walked in everyone was so kind and caring and took wonderful care of us! We were first greeted by Sita and then treated by Dr.Thomas, Kim, Allison, and Andrea. Everyone treated us with such kindness and professionalism. They explained everything in great detail and met our every need and more. We also have a 2 1/2 year old son and they were so wonderful with him bringing him drinks, snacks and coloring books! We definitely recommend this ER to anyone. In the unfortunate event we need another ER visit we definitely know where to come. Thanks again to everyone at Signature Care for your outstanding service!','2019-09-18 04:50:27.926000','2019-09-18 04:50:27.926000',5,'Chelsea Brandolino','https://lh3.googleusercontent.com/-xw1d7NQ0vww/AAAAAAAAAAI/AAAAAAAAAAA/Vt55Fe7_1HI/c-rp-mo-br100/photo.jpg','13486358490203335051',823),('AIe9_BHx9wW5OAXpNIH08blLdli0jUAsONVUrEID6Ylxg17Fy-lMATGM5pGLTD4BPOgBuoqtZHNQWh0Te5_pHHEY1svia7uqkiJpDVWfVJahxZnDJnI8jEs','Dominic and manny took care of me right away.','2020-07-24 20:43:54.888000','2020-07-24 20:43:54.888000',5,'Paulina Rodriguez','https://lh3.googleusercontent.com/-EZfafPNvZoY/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucknrJ58b2tnC4KT-iF2IlmVTaGT6Q/c0x00000000-cc-rp/photo.jpg','6521947413723274945',22217),('AIe9_BHx9wW5OAXpNIH08blLdli0jZKa8iPgkq2twlCRTrlIBLI8110MNDOUGjiWml2zSBVtlnTvQaKblfhn8vzjkmWYM8uLQaz9_gwPfyD_cVJ0kPXFOMQ','It was amazing and great care here!\nDr. Datta, Soumitra\nAlvean A. (Nurse)\nTricia B. (Radiology)\nDarnisha A. (Registration)','2019-09-08 16:36:51.312000','2019-09-08 16:36:51.312000',5,'Becky Moore','https://lh6.googleusercontent.com/-uGKmMUXGNZk/AAAAAAAAAAI/AAAAAAAAAAA/Dj4-gbxoYYQ/c-rp-mo-br100/photo.jpg','16389487648212004696',2940),('AIe9_BHx9wW5OAXpNIH08blLdli0JzrKduWGqKWHQD2dYF_5YH36-8k_ha3uxRdpSjkYp_6OZ27KKTZuZiewgYRh7Sha1zt0oEzjuc5hBusA0HzFga-xoCg','Really nice people came here yesterday amazing!Made you feel really comfortable.☺','2016-08-01 17:46:17.014000','2016-08-01 17:46:17.014000',5,'Carlos Escobar','https://lh3.googleusercontent.com/-5QXJH1rI-r8/AAAAAAAAAAI/AAAAAAAAAAA/jx-YxQK2VhU/c-rp-mo-br100/photo.jpg','14904078213800803294',2471),('AIe9_BHx9wW5OAXpNIH08blLdli0K-ytvI4nNOudYm48ysp3cfKrJpkDjDz5x3yXc1kJlCsh5QHE6kgDgYiQnrscoVC7RYWAa8geM7iZFyLWrnt0ncBJTAM','Super friendly staff, gotten tested here twice. Everyone super nice and professional.','2020-08-08 01:21:17.304000','2020-08-08 01:21:17.304000',5,'Angel Nino','https://lh3.googleusercontent.com/a-/AOh14GgfW6YTOGlN4_b9kgWrkW3lHIYZe4yH-NRuqz1SwA=c0x00000000-cc-rp','14904078213800803294',21914),('AIe9_BHx9wW5OAXpNIH08blLdli0k0_r5sbv9eDX4MFI2tDMRp99ySpvDGWWv5Lf-2XvZgxK6wKeA4tUW54wa1NNNdsUrNUP-xsncRravvY4ObTGqXYmIB4','I had an car accident, and was in severe pain and needed urgent care, Signature was the closest and we rushed towards it and at front desk Karen greeted us pretty good and took me in quick, and the service they provide is pretty nice, I would suggest this place.','2020-01-29 11:01:36.836000','2020-01-28 22:04:58.230000',5,'Muhammad Ramiq','https://lh3.googleusercontent.com/-fT669924iPA/AAAAAAAAAAI/AAAAAAAAAAA/kZkmoL3Qky8/c-rp-mo-br100/photo.jpg','17394740196501090048',10238),('AIe9_BHx9wW5OAXpNIH08blLdli0k6_gIJQxs9Hg45hJ1KhdU6VOq7DIFtsNQhxgpuCXjZg0gqmwsn-TzDE8jiZy00K47IE48ORTpbydZyXMHH-EUMEpmrg','My son was sick and the Dr Starr and nurse Krystal Marquez went above and beyond to make sure he was comfortable and well taken care of. They made sure he had the necessary test done to make him feel better and get the proper diagnosis. Thank you so much Signaturecare especially to nurse Krystal.','2020-01-30 18:32:45.291000','2020-01-30 18:32:45.291000',5,'Sofiebella Duran','https://lh5.googleusercontent.com/-kVtIcwehEo0/AAAAAAAAAAI/AAAAAAAAAAA/11p1F0pAD2A/c-rp-mo-br100/photo.jpg','13486358490203335051',13451),('AIe9_BHx9wW5OAXpNIH08blLdli0K72UhDaLTXFFb6-cTn4awBmhIjBSwR25qtUgquEyvdPiM4grds5myyMhAMTeV3Djo35G4D_82QUL1VRolHTj_I8LvoI','From the time I came in Patricia, Jose and Tricia had everything taken care of. Quick fast care, so that I could get right back to work.','2020-03-12 21:03:11.750000','2020-03-12 21:03:11.750000',5,'Amy Hirst','https://lh6.googleusercontent.com/-1ul4e8l9Ul4/AAAAAAAAAAI/AAAAAAAAAAA/8zO1wKBQVh0/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',20946),('AIe9_BHx9wW5OAXpNIH08blLdli0k8aaiRDbLXQJ64pv6a0TkU9ClHt0sfNCTx49GYI8_1Xw_ARTdQEUG2vpJJKB3Viagl8M2BAg8tpG25lN2pyiPz1q6h8','Service was great! Real attentive and concerned! Dr. Ybarra, Rolando, Natalia and Stephanie were awesome..','2019-02-09 05:31:03.151000','2019-02-09 05:31:03.151000',5,'Carrington Allen','https://lh4.googleusercontent.com/-kH3NNEblt00/AAAAAAAAAAI/AAAAAAAAAAA/wijOjGS7xuU/c-rp-mo-br100/photo.jpg','8679688254631342173',8875),('AIe9_BHx9wW5OAXpNIH08blLdli0kBnBAz1hRu4w1uHJONpKS-oxt8CqsqTJTTHhRXxCLgX2PvSx7Z-cZEpKAIEULwEVfRjZOIRClPK9MLPSsCKoyZ6MRTU','I just want to say the moment I walked I was so very welcomed by the front desk. Ashley H. Made it a very easy and fast registration process. I don’t think the girls get enough credit for always getting patient back quick and taking care of everyone as fast as they can. Thank you Ashley H. Registration rocks and thank you!!','2019-12-20 10:06:46.145000','2019-12-20 10:06:46.145000',5,'Maria Gonzales','https://lh6.googleusercontent.com/-xX5VwWuUH2U/AAAAAAAAAAI/AAAAAAAAAAA/eEUPxAkAaGw/c-rp-mo-br100/photo.jpg','6521947413723274945',8045),('AIe9_BHx9wW5OAXpNIH08blLdli0KE0XoxZ9kPVIROVcPpsj9GyBzOwGFe6j7gzao0ajdveoLxFMcLMKeZLcctlfkuAU6G_OaXUa8FEDX3KZcU_Jb5f1s_I','Thanks to wonderful staff:\nStephanie\nEve\nJohn\nLeslie\nKelly','2018-08-03 16:48:52.982000','2018-08-03 16:48:52.982000',5,'Shaneecia Martin','https://lh3.googleusercontent.com/-3skRqVsi0J8/AAAAAAAAAAI/AAAAAAAAAAA/KzSuFCRgrR8/c-rp-mo-br100/photo.jpg','3511292162159714121',7667),('AIe9_BHx9wW5OAXpNIH08blLdli0KgCKe9BE8RkBKvh3IAVrZCAsGfMKEjTO8A3SRs9e683Txjxw2b8C5vbSWlfLEz-P2WvRqaUxwD2RTEzRV-B822AXJdE','I want to thank RT Fatima B, Nurse Sarah and Tanishia for all of your help.','2019-12-25 12:05:23.077000','2019-12-25 12:05:23.077000',5,'Thomas Dean','https://lh4.googleusercontent.com/-AxGx37pDG3Q/AAAAAAAAAAI/AAAAAAAAAAA/r5wEGL-d5zs/c-rp-mo-ba2-br100/photo.jpg','17898197009688164559',5328),('AIe9_BHx9wW5OAXpNIH08blLdli0kib7_VzFvpKeZo_QpjDn__OEGVrUXtK1lh4uogWonKH6MmvxKlCq_eRrL-GEAXgYebo0mC54o3VkJ0N2niFR8duKCpo','I had a wonderful experience. There was no waiting and i was in and out. They were friendly and professional.i would definitely fo back.','2017-09-26 12:11:36.036000','2017-09-26 12:11:36.036000',5,'Mechelle Johnson','https://lh4.googleusercontent.com/-spdgVDVz6T4/AAAAAAAAAAI/AAAAAAAAAAA/YaIHyoa8je4/c-rp-mo-br100/photo.jpg','8918455867446117794',9355),('AIe9_BHx9wW5OAXpNIH08blLdli0KjTO7mQuFSR8FttO4IKniVyHRmYD3NNysqGKA7S50YkcfKqAaFYV_wCJw6zmCzGVPkOLWiLKA-M64RkgjLN-H5tun4I',NULL,'2019-06-27 00:22:10.995000','2019-06-27 00:22:10.995000',5,'Alexis Pongrass','https://lh5.googleusercontent.com/-zPLMQnhXM1o/AAAAAAAAAAI/AAAAAAAAAAA/MLC7ZGM_cPA/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli0kNwC95zRAt11HOZEiiOCv-IS4pnQ_dPekybk67OxFu7titfSUguP5o6X50haC833aDfjrvHMpBlccoLFA7gREO4DZ7g','Brought my grandson in for a broken finger. Everyone was so nice and took really good care of him. The staff is super awesome and the Dr. was really great with him. You can tell they all care about their patients','2020-01-25 07:48:47.445000','2020-01-25 07:48:47.445000',5,'Pam Ford','https://lh6.googleusercontent.com/-ilE4q5JrC1k/AAAAAAAAAAI/AAAAAAAAAAA/40D7rDvQVIs/c-rp-mo-br100/photo.jpg','6521947413723274945',10310),('AIe9_BHx9wW5OAXpNIH08blLdli0Kt9agSs5RiY1gzYDdcNLVSfKpiQXRxJuglyxWHlGQ3kjeetU_xHVD4mTbyJUEus_icMIj-_VR1IfjIyUmnTUHifdkmY','Doctor harjai was kind the staff Erika,Marcus,patty we’re very helpful.','2019-09-25 18:09:23.563000','2019-09-25 18:09:23.563000',5,'Rosa Zamora','https://lh6.googleusercontent.com/-whZIdnHOBTs/AAAAAAAAAAI/AAAAAAAAAAA/QQu9OnDpXY8/c-rp-mo-br100/photo.jpg','16389487648212004696',2877),('AIe9_BHx9wW5OAXpNIH08blLdli0kvNYU9xFya8fUNTTqC17GtM4VyNVqD3e9snnGMcaqMLQlr3CylNWEnR_tna5owsb_oDvDt-gEFMOToIWssUObwO7dc4','Nick was great ! Keep up the work !','2018-08-11 17:59:29.176000','2018-08-11 17:59:29.176000',5,'Aeriel Holiday','https://lh6.googleusercontent.com/-5uEt1SxCsR8/AAAAAAAAAAI/AAAAAAAAAAA/2WgiAxjR2HM/c-rp-mo-br100/photo.jpg','3511292162159714121',7632),('AIe9_BHx9wW5OAXpNIH08blLdli0kYfL8PQTn4JWB9LxHG8nKtFqPS184AbzZSyfSce5pu3KGYtMXDSIBR1OEPuce8l9cEIokHQyex72T-hA3MIOg9MEV0g','My family has been here about 10 times since Thanksgiving and it has been wonderful each time! Everyone has been amazing. Jennifer and the girls at the front desk are super friendly. Matt Jenci Anne have been so caring and amazing for us. Highly recommend!','2020-01-05 18:13:29.100000','2020-01-05 18:13:29.100000',5,'MEAGAN REED','https://lh4.googleusercontent.com/-Cm9jedNRzog/AAAAAAAAAAI/AAAAAAAAAAA/xaAFBYJ-u6Q/c-rp-mo-br100/photo.jpg','8626688543755174284',14629),('AIe9_BHx9wW5OAXpNIH08blLdli0l16GyVmyXF69WYkw8I3-anRrXdiC9jn935Xlkwo-bZAXh5TEOvvvuwo--FGKohQ-oC3SCFRA_RRGAYF-cSG-2OiAOSA','Good service\nNurse was super sweet \nEverybody was so helpful and provided us with snacks and warm blankies\nThe best person was the ultrasound lady she was the sweetest person and kept me so calm','2017-01-02 17:15:42.724000','2017-01-02 17:15:42.724000',5,'Aimen Arabi','https://lh5.googleusercontent.com/-imOKOhYtsiU/AAAAAAAAAAI/AAAAAAAAAAA/lj6Bo0HrGeA/c-rp-mo-ba2-br100/photo.jpg','17394740196501090048',5140),('AIe9_BHx9wW5OAXpNIH08blLdli0l6S5HesXzCU8xRu1Th1Jb6g9V0yUWMxFEiTUK6OUCS3ZONzamJWLbR33ru548oPdc09D4_LFIPP5Z9pYpmiHG90TTR4','Wonderful experience today! Thank you Matt and John Bell for taking care of me and Jennifer Diggs for getting me registered quickly.','2019-08-21 00:00:14.257000','2019-08-21 00:00:14.257000',5,'Ashley Burton','https://lh4.googleusercontent.com/-3Z4kwcLc-Ig/AAAAAAAAAAI/AAAAAAAAAAA/EyQuO8CxrxQ/c-rp-mo-br100/photo.jpg','8626688543755174284',14682),('AIe9_BHx9wW5OAXpNIH08blLdli0l7pfAwJhNU4xzJOutwYUcTVZNZBvmlFq2F5s78hc0vWzLnmOLoquEGGDBcqXOml5eFwqCAKDseSDyBiKsF97qhqH0gs','The doctors and nurses were amazing. They made sure I had the right test done to make sure there was nothing wrong. And made sure I was doing okay.','2020-02-15 06:50:53.946000','2020-02-15 06:50:53.946000',5,'Ann James','https://lh6.googleusercontent.com/-Pf0d--Bx4K4/AAAAAAAAAAI/AAAAAAAAAAA/M0_NqwVn_EA/c-rp-mo-br100/photo.jpg','2694018788013845459',14234),('AIe9_BHx9wW5OAXpNIH08blLdli0LcX1rEuzCUJoJBlg4jbyRS-UR4SOOovWk4oEgUj7iPFql40zRE1Nt7W1mSRPBe1GTfHlM3VWE-EwGr1vE-r0lMhWSQI','Friendly, clean, and quick. \nMuch more welcoming and efficient than a regular hospital ER. \nMade sure i was as comfortable as possible. \nWould recommend to anybody.','2018-02-19 14:44:00.453000','2018-02-19 14:44:00.453000',5,'hailee gilbert','https://lh5.googleusercontent.com/-l_lJOFfdfNY/AAAAAAAAAAI/AAAAAAAAAAA/Um6ACgt3YlM/c-rp-mo-br100/photo.jpg','16590124370714063921',3858),('AIe9_BHx9wW5OAXpNIH08blLdli0leRLaj7Ml8L4o5-K8mCm8m6omX8rj33r6cZdAWDBoaIQPxFfRJjXB8h5ODmLL0gcR4Te5nvOttQHYcySfGo4SbEmxoA','This was my second time coming here and both times have been great. I was taken back almost immediately both times I’ve been here and met with the nurse and doctor within 10 mins. I strongly recommend this place especially if you live near by. Everyone I’ve met here is pretty friendly!','2018-07-28 23:24:38.640000','2018-07-28 23:24:38.640000',5,'Alyssa Waltmon','https://lh6.googleusercontent.com/-BsKvZqclatE/AAAAAAAAAAI/AAAAAAAAAAA/p61B33DXROM/c-rp-mo-br100/photo.jpg','14567670160750071148',1581),('AIe9_BHx9wW5OAXpNIH08blLdli0ljNLPjHbSbXfgyZxkNmoI4Y5DTv2zXMQ9rBr8A7UP9xW8wPZrAkaJV_z0UHqUbuXPotagTiTX0y57xlNU2DnVM05aYA','Great Experience!!! From the moment I walked in, Tatiana was very welcoming and the rest of the staff was absolutely the best! From my technician/nurse Brandon Williams, my other nurse Nicole G., my radiologist Bryan D. and Dr. Souman. They were all extremely friendly and truly made me feel welcomed.','2020-01-29 01:19:50.097000','2020-01-29 01:19:50.097000',5,'Andrea De La Cruz','https://lh5.googleusercontent.com/-jo00BS41ihE/AAAAAAAAAAI/AAAAAAAAAAA/7MIU6MMnADo/c-rp-mo-br100/photo.jpg','14567670160750071148',13584),('AIe9_BHx9wW5OAXpNIH08blLdli0LqTU6M9jkjWfvnj9bxQ8OKuKt8hvsmBkemH1iSW8F0RwAqqW_UdmaLnijGFG4TRdU8acV1Coz-kMsLuE4S3dgRyKKQQ','I stopped in the ER for severe stomach pain and was seen right away. Everyone was very helpful from Victoria at the front desk to the nurse and doctor. I waited a little time for a sonogram, but as soon as they arrived I was well taken care of. The entire experience, though originally painful, was smooth and comforting. I highly recommend going if you are not a fan of the hospital setting where you wait forever to be seen. Great staff and care.','2017-02-03 16:15:56.019000','2017-02-03 16:15:56.019000',5,'Cassandra Palacios','https://lh4.googleusercontent.com/-VKqu_7O7y2Y/AAAAAAAAAAI/AAAAAAAAAAA/g9S4HATv2Cc/c-rp-mo-br100/photo.jpg','3511292162159714121',7886),('AIe9_BHx9wW5OAXpNIH08blLdli0LTRIbihiTA-ArYdIHYKUe_hJlPhspMkA3jpRap9x5_EI2wAowwoIMmADW8vqU3bOsjsO2n2j3YG1yN4uTKAsZ8EgLHU','I recently came to this emergency care facility in Highway 6 and Bissonet and I can honestly say they provided the best service ever. They were quick and efficient but most importantly they made me feel welcome and comfortable while maintaining professionalism. The center is very clean and nice and the staff was amazing. Not only were they very attentive with me but also my step sister who came in the room as well. Dr. Hannah was very thorough in explaining my condition and made sure to listen attentively to my symptoms. Also, I specifically want to recognize Nurse Robert who went above and beyond by offering to bring coffee, blankets, and good laughs in spite of the scare that took us into the emergency room. 5/5 stars!','2017-12-10 19:33:32.551000','2017-12-10 19:33:32.551000',5,'Vanessa S.','https://lh6.googleusercontent.com/-YgKCmZ0bysY/AAAAAAAAAAI/AAAAAAAAAAA/fIyGc9EAKww/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',4915),('AIe9_BHx9wW5OAXpNIH08blLdli0m1a0os1VQqLgWv4YhdYrh3qJbuoyE4wBKUgjX-abTLVRkguXQE5tBi3e5LbXAG9_C9c_Fev1VaYrwdHXDpRMYls14ew','Great place to get treated when you’re feeling sick ! The front desk Neil and Sindy got me back fast, DrGolla was super nice, Selina and Sondra worked fast and I was out in less than an hour.','2020-03-04 19:05:46.454000','2020-03-04 19:05:46.454000',5,'Christian Rojas','https://lh5.googleusercontent.com/-eCsJK6IVmd8/AAAAAAAAAAI/AAAAAAAAAAA/IDzzaBk-yFI/c-rp-mo-br100/photo.jpg','17394740196501090048',21071),('AIe9_BHx9wW5OAXpNIH08blLdli0M2HR1-zCcq8HpQ9rMRRnIlDqVYKUajJUW5GPxLTTyyBOPBQ4vREKjQMZpaqvDYqV9oApQJgLnxPW5ts9gkH_j7Lexfk','Taylor at the front desk was so nice and helpful. Jerry, our nurse was fabulous and so funny! You hardly know you\'re not feeling good because he makes you laugh. Great center.','2017-03-11 04:05:02.350000','2017-03-11 04:05:02.350000',5,'sarah huante','https://lh4.googleusercontent.com/-vRXYhpP4urs/AAAAAAAAAAI/AAAAAAAAAAA/Se6AEI1hiro/c-rp-mo-br100/photo.jpg','16590124370714063921',4035),('AIe9_BHx9wW5OAXpNIH08blLdli0M5ycgX6B1jCxhjAFYfbbKbhIYqgeplZptMxCJdswif921vPoG5MJ_rawDMlf_H1CTgnYLeqtrI3K6uYM9Wb55ygHt2o','Great staff!\nDr. Henderson\nAlvean\nJordan\nJocelyn','2020-02-05 16:13:08.896000','2020-02-05 16:13:08.896000',5,'Sasha Wilson','https://lh6.googleusercontent.com/-YaEQS9NwzFY/AAAAAAAAAAI/AAAAAAAAAAA/L7IFlKIDGj4/c-rp-mo-br100/photo.jpg','16389487648212004696',22630),('AIe9_BHx9wW5OAXpNIH08blLdli0m8WRpDggcC1C2GiArwadvVZa98Vj4TnS9gSaS_eoINWzoo5ncvijoCQgrfyErs7CGNtzFJ15OEMuqSvu8mIMVyFPruk','The complete process was smooth and time taken when in emergency was less. The doctor was approachable. The other plus thing is when without medical insurance its very easy to know how much it would cost before starting on the process... give a little peace of mind. Dr Guharoy and Nurse Kristina were great.','2020-01-18 00:37:01.233000','2020-01-18 00:37:01.233000',4,'Ivar K','https://lh3.googleusercontent.com/-49339efHrUM/AAAAAAAAAAI/AAAAAAAAAAA/MI1Of0dLXIE/c-rp-mo-br100/photo.jpg','12541597562633926366',10019),('AIe9_BHx9wW5OAXpNIH08blLdli0Md2T25bd2-64Ej6C4lJKhTadkrl5hLpZWs6hlkYCHrdKqj77OY67V9eLlBsAXVvGpz4H2kidIAvQG8C9xe-1vJf-vdg','I came in for a dog bite, and received wonderful care and attention from Tech Norma, Nurse Hamzah, and Dr. Fiag. They have also called and checked in on me, to make sure I am doing well. For such a bad situation with the bite, it helps more than I can say to have such wonderful people take care of me. Thanks everyone!','2018-12-27 15:39:09.659000','2018-12-27 15:39:09.659000',5,'Rob Dansak','https://lh5.googleusercontent.com/-Ggt1NLDrAvo/AAAAAAAAAAI/AAAAAAAAAAA/_EGrnNvC3vA/c-rp-mo-br100/photo.jpg','3511292162159714121',7539),('AIe9_BHx9wW5OAXpNIH08blLdli0MODvlOptRMOiPKRIoF_QmAHSm4x-6bOmTOzRETq-Ws868BJurDEBgYrmo9HtRyZmatKks5_rahBKR2jf1qozu3GPaFg','Kathryn, Chelsey, Tina, Christina, Dr. , Dr. Lauren, Aileen, Ricardo, Lauren, Jennifer were all a great help when I visited!','2020-06-10 22:26:51.390000','2020-06-10 22:26:51.390000',5,'Helena Triska','https://lh6.googleusercontent.com/-6B_lVVFxaW0/AAAAAAAAAAI/AAAAAAAAAAA/iK_molii_i4/c-rp-mo-br100/photo.jpg','16891069708558046635',22059),('AIe9_BHx9wW5OAXpNIH08blLdli0Msf6KL6GzBHlhRZMBvABGhWdEwOpMBBhtAmCbyWeUS4Zpv9wPqwCw17d60rf6x70oRNFgLoGYQ_wCea9lPe-A-_ub0U','Very friendly staff! We were helped by Dr.Herbert, RN Remington, RN Jeri and Laura in radiology. By far the best ER experience we’ve ever had. Would give 5 stars but young blonde receptionist with clear glasses was very rude to us on the way out. The previous receptionist was better!','2019-12-08 13:35:22.270000','2019-12-08 13:35:22.270000',4,'Adrian Alegre','https://lh3.googleusercontent.com/-PPjA7xZQjJM/AAAAAAAAAAI/AAAAAAAAAAA/js6dWHHNJo4/c-rp-mo-br100/photo.jpg','16590124370714063921',3037),('AIe9_BHx9wW5OAXpNIH08blLdli0MSK8lQ5bO-rJE1tTSUaNHTLkvP0SCypYRkRVlYAMrJwMiZXQnm0X8PbsH1aKKlN5vQ7bvSWCxxeWsz2LsN1INbSGDzY','They did the best job you can ask for, i lost a good chunk of my middle finger, but you can ever tell now... Special thanks to Dr. Nguyen,(RN)Kim & (Tech) Andrew... If it wasn\'t for y\'all my new nickname would be Nubs! I greatly appreciate the service y\'all did!','2019-04-11 02:10:52.322000','2019-04-11 02:10:52.322000',5,'Christopher Pintor','https://lh6.googleusercontent.com/-6QWAnZEet_I/AAAAAAAAAAI/AAAAAAAAAAA/TwxB4ODeQ7c/c-rp-mo-br100/photo.jpg','13486358490203335051',1041),('AIe9_BHx9wW5OAXpNIH08blLdli0mumjn5gmcIu3cecT5p8ptzOcdCzEyGt5i8QhWIbloVNI52zKoAV1KirAtJMm-M06Cv5-DOosOALNH1DKHz7o0hmzgSY','Staff always kind and helpful from the nurses to the Drs. Service is usually very quick in and out. Anthony, RN Natalie-Tech and Dr. Jaber we\'re all great.','2019-02-25 00:37:06.887000','2019-02-25 00:37:06.887000',5,'Brittany Carroll','https://lh5.googleusercontent.com/-3-7_00Hu5FM/AAAAAAAAAAI/AAAAAAAAAAA/qKiAGV9tHK8/c-rp-mo-br100/photo.jpg','16590124370714063921',3521),('AIe9_BHx9wW5OAXpNIH08blLdli0naIWJm9vgKCmIldvpI7z8uFCP7_WM0vlKv4VJjkx-BzUB5vMuz7rQe-hWLJ9GylPIbzcSH6w4qgB9SIOilj0Gl1S4UI','Cody and Joe were friendly.','2020-07-29 13:28:06.907000','2020-07-29 13:28:06.907000',5,'Erica Nuñez','https://lh5.googleusercontent.com/-UtnhqlAKkQk/AAAAAAAAAAI/AAAAAAAAAAA/wC56tHdegc4/c-rp-mo-br100/photo.jpg','2077061009497551125',22769),('AIe9_BHx9wW5OAXpNIH08blLdli0ncW-eERixr1GrNNHN1sg2NyqJtU3zwLAqEODysmt8TFyqcRLvP85g2owXRecdrFWFwoYqasSBy5GanQ3J9YQJOHVPXw','Great staff! In and out in no time.','2020-08-04 20:32:15.044000','2020-08-04 20:32:15.044000',5,'Kienan Goodnight','https://lh3.googleusercontent.com/-Sir4hEGfiJw/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckG_RoS5SiQWva6TNFzQmFdbW0jHw/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21816),('AIe9_BHx9wW5OAXpNIH08blLdli0NfqXbgXsLvtn6q3EW1QXrnNJ9wC_ixpyCIbBmEJyzLJIazUzxLMTSTeEMFio7QHsXvunvhaZ7kgdy9ZQhRNHVguSaH4',NULL,'2020-05-20 17:20:45.373000','2020-05-20 17:20:45.373000',5,'Uyenlee2012','https://lh5.googleusercontent.com/-9WzxYNeVBZQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclN9mPAQT13RNFGgMvoH9G8zHCu4Q/c0x00000000-cc-rp/photo.jpg','17394740196501090048',22085),('AIe9_BHx9wW5OAXpNIH08blLdli0njxIYwS71O5PbQnkq8DNaDTecHMnPx6fqbsNrzptMRqEkh37cLPZB2ZyqbbQAYc233FQ3e9fLXuuCYCbRXaZzpCjwhA',NULL,'2019-03-16 05:04:21.430000','2019-03-16 05:04:21.430000',5,'Ifeoma Nzeh','https://lh6.googleusercontent.com/-_Gbiy1tk_tE/AAAAAAAAAAI/AAAAAAAAAAA/BrP6RjEm6Zg/c-rp-mo-br100/photo.jpg','14904078213800803294',2156),('AIe9_BHx9wW5OAXpNIH08blLdli0NKdN2Wbg_Pw8xssIiD_chJFanLHFRZhiAHtV500Tn458VFKJb3i_AvoHUwiwVhT5HJ5EbXwNQz9aNkTW2gQMvCEXgT8','I came in for a sharp pain in my lower left abdomen area and immediately was taken care of. Staff was super friendly and courteous and Dr Anders was very knowledgeable He pinpointed my problem quickly and effiecient. This place is awesome.','2017-10-26 01:38:02.751000','2017-10-26 01:38:02.751000',5,'Alex Turcios','https://lh5.googleusercontent.com/-wvwITGzZvnk/AAAAAAAAAAI/AAAAAAAAAAA/DGOdcqDq5pQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1740),('AIe9_BHx9wW5OAXpNIH08blLdli0NQMBDgeT5Tv77fe-2Zxla1DTEPDwBNpaCgaWh0a9iRm1PkZ5qc1Pzs763DyCWNCUb_DzjrtPuv9NwPK1mHy14qOoNp0','Friendly staff, short wait times and excellent care.','2019-06-26 21:47:01.114000','2019-06-26 21:47:01.114000',5,'Beth Armstrong','https://lh6.googleusercontent.com/-ZQP2cJqedcw/AAAAAAAAAAI/AAAAAAAAAAA/GRNkr2_vIw8/c-rp-mo-br100/photo.jpg','13486358490203335051',917),('AIe9_BHx9wW5OAXpNIH08blLdli0nt55Lhyfx00Jo1qLoD6jNJQVvZ8IaFYtMu4O2XypyYdmXY-A-Y4LsGvoY-PJo7E_eSecPG0WowDeGHCW5Knw5Au7Qxo','I have never felt like I was taken care of better than at Neighbors. I am so glad that I was referred here. The entire staff from start to finish we’re compassionate and caring.','2018-07-07 12:39:30.324000','2018-07-07 12:39:30.324000',5,'Renee\' Manning','https://lh4.googleusercontent.com/-En2_iWaNbb0/AAAAAAAAAAI/AAAAAAAAAAA/QiZgxO7pjg4/c-rp-mo-br100/photo.jpg','13486358490203335051',1127),('AIe9_BHx9wW5OAXpNIH08blLdli0nX5U3xKeNTEe67ABddnucCXpdQs0I41LAJU0MfTSMcuLSvDDIe0tQHWs4Mem1JwfQDSB43YcuNb16aHf10X2ZEcRdZw','My vist at this clinic was more then what l expected l came with a bad cold and this doctor was not just concern about my cold but my over all health he went beyond what l need Dr.Appiah really care about me l been without my medication for 4 month and Jocelyn Alvean and Marcus were fantastic','2019-10-09 21:21:51.648000','2019-10-09 21:21:51.648000',5,'Terry Johnson','https://lh4.googleusercontent.com/-C2CnqNaPyUk/AAAAAAAAAAI/AAAAAAAAAAA/wyZqzsCn2Iw/c-rp-mo-br100/photo.jpg','16389487648212004696',2839),('AIe9_BHx9wW5OAXpNIH08blLdli0nxdYGbASO8i3GbOPbxyhsHGd5XJCfodhdtIAkyKekayWK5ld612GTLXzdZqfmwc7BR072RnmwmVvkfwWHUX1uYudvPc','Came to the E TCJ location because it was closest to us. When my brother injured his foot. I called prior to arriving and the main location was very helpful in telling me what to expect when I arrive at my Location. Vanessa G said it would be less then 10 minutes to take us back to a room. And she was right. First of all the place it’s self is really nice and clean. And everyone is really friendly. Dr Estévez R was super sweet and really cared about what was wrong with my brother. And as an added bonus they have complementary drinks and snacks. I would definitely recommend this location to anyone who doesn’t want to pay high ER prices and long waits.','2019-12-14 03:14:48.300000','2019-12-14 03:14:48.300000',5,'JulieAnn Paredes','https://lh4.googleusercontent.com/-F2jg_QdTVeA/AAAAAAAAAAI/AAAAAAAAAAA/7IZufRi_6oQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1175),('AIe9_BHx9wW5OAXpNIH08blLdli0O-nziSxFxkpPh9U7KAjtZkrCEXEcYNjl1IgDg3JtTuWevWrY9b0b2lt6tzvofT6uDxq_CKBg0XnyFcya7wRdBTalyV8','Dyveliz at the front desk was very friendly and helpful! The RN, jacob, was very professional and nice as well. JR was very nice as well!','2018-08-15 20:24:39.662000','2018-08-15 20:24:39.662000',5,'sydney wilson','https://lh3.googleusercontent.com/-Psts84AAROg/AAAAAAAAAAI/AAAAAAAAAAA/w6NRN1pEhqY/c-rp-mo-br100/photo.jpg','16590124370714063921',3789),('AIe9_BHx9wW5OAXpNIH08blLdli0Od5BXFCrQ1yLyQHd1En_dIxhdeJc_4BJlf_hqMFft4SuBrOuKVZ80wtFwioRlULfbl337CW55U3meqzN1Zff321SmpE','I’m so glad we have this place in our area! It has changed the way we feel about going to the doctor completely! It is always quick but not skimping on care. Ashley Burron at the front always makes sure we have everything we need, from proper paperwork and assistance to snacks and comfort! Our family is very grateful for this place!','2019-01-04 19:34:52.019000','2019-01-04 19:34:52.019000',5,'Angel Chubbee','https://lh3.googleusercontent.com/-Sbngtn_mXtE/AAAAAAAAAAI/AAAAAAAAAAA/rwae0C1jQXc/c-rp-mo-br100/photo.jpg','8626688543755174284',8606),('AIe9_BHx9wW5OAXpNIH08blLdli0OfJGC8sw-ppShCqC94TIFqb4KJsCoDFt8XNM0QIPB8VG_Tye1RkzuMJK0Ul5a1VM0lMNrIRo_wVXYqXXcPFbpMGkRlY','Anthony, my nurse, was so considerate and helpful while I was here. He made sure I was being well taken care of! My doctor also took care of me so well! He explained the best option for me and did everything he could to get me on the right track to feeling better. Awesome place and awesome workers!!!','2018-09-16 15:59:55.910000','2018-09-16 15:59:55.910000',5,'Julie Cunningham','https://lh6.googleusercontent.com/-PgtuaN_oWHo/AAAAAAAAAAI/AAAAAAAAAAA/vskWg5QOIFs/c-rp-mo-br100/photo.jpg','16590124370714063921',3722),('AIe9_BHx9wW5OAXpNIH08blLdli0oJN5-AOimRpki4mgJrRTOuhz1vb6T6YReSsACRWS-cRB3jOFij6K2gxZM1P1eb7tFIGlIoOdUJjcUVIyKvPY6J4K7RU','Excellent, very professional. Physicians were polite and friendly kept me very relaxed.','2020-07-30 03:01:09.438000','2020-07-30 03:01:09.438000',5,'Ephraim Hailu','https://lh6.googleusercontent.com/-WgxTYfsFqbQ/AAAAAAAAAAI/AAAAAAAAAAA/ZA72sRwifPk/c-rp-mo-br100/photo.jpg','2077061009497551125',22963),('AIe9_BHx9wW5OAXpNIH08blLdli0ok1cB-NkPOaMi1P8L9EKZN_UBPSFYZIsqY-ZcwFtD_6F05YdMKj8VsMjYrb4dcNupYUmq3dHuyYTrnJSrzvl6dZqIm4','I absolutely love this location, I have been here a few times and each time the service gets better and better. The office is neat and clean the front desk, Nurses and Dr are amazing. The visit is very quick, they always take care of my needs and get me out of there. I highly recommend this office.','2019-02-26 13:25:42.647000','2019-02-26 13:25:42.647000',5,'Lafranzis Cox','https://lh5.googleusercontent.com/-YbKRsqwsifw/AAAAAAAAAAI/AAAAAAAAAAA/ksSeAKHdLpk/c-rp-mo-br100/photo.jpg','14904078213800803294',2164),('AIe9_BHx9wW5OAXpNIH08blLdli0OL9KTQBKEKNkyZdreo-ZP6znrpWsSa3MbxQlWXEMQmTOErkT2r1-lzxoUYOoD_Ip4CAwNNdJ4u2cZGMRbNuhphfeUEQ','Came in with major congestion and a painful throat that felt like it was on fire while being pregnant. Every one of the staff, Dr. DeWaal, Nurse Christina, ER tech, registration admin were extremely professional, courteous and managed my care with excellent service. All my concerns were addressed and were given a followup course of action. This is what a great ER should be like. Thank you for taking care of me!','2019-08-17 17:45:10.675000','2019-08-17 17:45:10.675000',5,'sophia ou','https://lh6.googleusercontent.com/-Z3rt1tmvQXg/AAAAAAAAAAI/AAAAAAAAAAA/lD8N_mfI9SU/c-rp-mo-br100/photo.jpg','16891069708558046635',4218),('AIe9_BHx9wW5OAXpNIH08blLdli0OnDaccRM69hyXwpwi5CJv9ZaTWA3__PZkwBSzKfN_RJyKjijM-AZf-8W7-KSTvdZ_UfaAfnKQejEgnEto0NYPP26Q1g','Only place that we could find that is actually open after 5:00 Pm. Excellent service even with a lapse in medical insurance!','2020-03-11 00:02:43.226000','2020-03-11 00:02:43.226000',5,'Chris Chrisman','https://lh3.googleusercontent.com/-vxaAforqWFM/AAAAAAAAAAI/AAAAAAAAAAA/LnR1P49ISJ0/c-rp-mo-br100/photo.jpg','16891069708558046635',15243),('AIe9_BHx9wW5OAXpNIH08blLdli0OPB853bjtZOfv5c0dy9BDBSdwFZeZNaKXRcNMR_a2nom2Oj40Cni71PIJzV6fKE5J2xSR7nMz2q3rFFOOFk-OaSZeG4','The staff was so nice and funny! Even though I was in large amounts of pain they made the mood very light and had me giggling! They were all so very awesome! Special thanks to DR. MAULDIN, MD, MARK \nNurse: Robert Issac\nRadiology Tech: John \nFront Desk: Therisa','2019-04-29 01:58:18.884000','2019-04-29 01:58:18.884000',5,'Shelby Phillips','https://lh5.googleusercontent.com/-UNizM4_NpWw/AAAAAAAAAAI/AAAAAAAAAAA/SRHZZO5DKUY/c-rp-mo-br100/photo.jpg','8679688254631342173',8849),('AIe9_BHx9wW5OAXpNIH08blLdli0OQWgaKIhMEhZH997jjLE9PswIQMwh0mD0TxEKfc5W3U8ZehXFRs8FzHgc56UqYM5HWoNvYpqqNSPc5GFIPQWSCc0F20','Good experience and pleasant staff. Though I was coming in for COVID testing, I wasn’t treated like a germ! Haha. Georgia was my nasal scrapper and she was very nice, quick, and gentle(as can be anyway). All and all good visit. And as a self pay very reasonable price. Thanks Signature!','2020-07-27 15:03:23.719000','2020-07-27 15:03:23.719000',5,'Amber Pulley','https://lh5.googleusercontent.com/-oRhVqkeMkA8/AAAAAAAAAAI/AAAAAAAAAAA/4VqkBzQq6Bo/c-rp-mo-br100/photo.jpg','14748677429039074158',22559),('AIe9_BHx9wW5OAXpNIH08blLdli0OUyDiT2Nh7fFajZz51JL5_5jQjGn-hG0x13nCdNhnnDnrmbb8oN6KswWsn8mqbym36TQiDVcUuy6r_zh-n24PVS-ycA','Wonderful staff. I received great and fast service. Couldn\'t have asked for more.','2019-06-05 02:33:44.088000','2019-06-05 02:33:44.088000',5,'Annie Dragoo','https://lh6.googleusercontent.com/-sTdFlDLS0eM/AAAAAAAAAAI/AAAAAAAAAAA/jjEHIThMM2k/c-rp-mo-br100/photo.jpg','16891069708558046635',4259),('AIe9_BHx9wW5OAXpNIH08blLdli0P9kUPsLZfNrbfoM081eFpBBVxzJAY_unjj6RzpWcuHUHojTiIHkcfKDhkDVgL5xfpYOfJfk9escYLZ6Bdt4_lSf3ZIQ',NULL,'2019-06-01 18:40:04.401000','2019-06-01 18:40:04.401000',5,'Christine Galaty','https://lh6.googleusercontent.com/-r5NGe4blylQ/AAAAAAAAAAI/AAAAAAAAAAA/488rBto3pp8/c-rp-mo-br100/photo.jpg','14904078213800803294',2136),('AIe9_BHx9wW5OAXpNIH08blLdli0pH-ENGT_bGszVcO-INuwRf-1D6eMEGDXL2wRWkkeIVnEh5PXzofJRO_NzL99rSMXERjG7vZvxTSR_i-mPJqySst3cds','Theresa M. is super sweet and swabbed me for covid and it didn\'t even hurt. Still waiting on results but she is amazing. Give that woman a raise!','2020-07-16 16:34:43.908000','2020-07-16 16:34:43.908000',5,'Julia Wilkison','https://lh6.googleusercontent.com/-ikjoK-_aqvM/AAAAAAAAAAI/AAAAAAAAAAA/XrmKVxI8auk/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',22897),('AIe9_BHx9wW5OAXpNIH08blLdli0pHdUMYGzs68JNbHLnayqMpbQhpIjSXAOpyaJNpemWboa4tN4fhXlXCmAG6vkhE9ZIINNElSTeaUSG7vRFn2K3BwSIOM',NULL,'2019-10-09 21:16:05.402000','2019-10-09 21:16:05.402000',5,'kirt coleman','https://lh4.googleusercontent.com/-rYU16lde_ss/AAAAAAAAAAI/AAAAAAAAAAA/fMecSoTLUcc/c-rp-mo-br100/photo.jpg','16389487648212004696',2840),('AIe9_BHx9wW5OAXpNIH08blLdli0PP6-Wf6bQOwAcHwCu5_AdSXwSiQVAwP4Uj2_S3xRbYQAPkMcCPX2_7wblD0IUJNluoi9fuXnTiFndmIf4xzSv0mX8U4','My experience with the Doctors and nurses at this location have always been remarkable. I have been to this facility 3 times and each time I receive excellent experience. They provide excellent care in a friendly clean safe environment.\n\nThanks','2016-06-20 22:41:44.701000','2016-06-20 22:41:44.701000',5,'Tamika Smith','https://lh3.googleusercontent.com/-1qQpU5_ulNo/AAAAAAAAAAI/AAAAAAAAAAA/CJAh8DrmRC8/c-rp-mo-br100/photo.jpg','17394740196501090048',5233),('AIe9_BHx9wW5OAXpNIH08blLdli0PRHWJ2su9c8XETATxM6XvMj4ClKiDslh99qYyH9r3FfBKoIJvcHaBqXxln2lRaIXPcZfS4AOef6ZoD6XIcoNcRM59yo','I was able to get care for a cut that I had late at night. The Emergency care center was not busy and able to be seen quickly. Staff, nurses, and Doctor were all very nice and courteous toward me thru having to get a few stitches and helpful when I returned to get them out. Definitely recommend using them if you need help with something quickly.','2019-03-17 22:09:59.612000','2019-03-17 22:09:59.612000',5,'Adam Lorensen','https://lh5.googleusercontent.com/-M4owZzu5vdE/AAAAAAAAAAI/AAAAAAAAAAA/A8nHyKQ1v6c/c-rp-mo-br100/photo.jpg','12541597562633926366',534),('AIe9_BHx9wW5OAXpNIH08blLdli0ptfM2IX6XBWaPuTlY43oxu1IVBW_XodrQkFty6oKhL_BJIl4ZE-Aa6KKQYE1GzQHeFbs1BJ7iGgjfFphSDJHUZ8SwoY','The staff was great (Dr. Ybarra, Blake, Felicia, and Son Le) there was no wait time at all and everyone was professional and super nice.','2020-01-24 15:51:08.738000','2020-01-24 15:51:08.738000',5,'Aten-Re El','https://lh3.googleusercontent.com/-XhfMNbmMgUA/AAAAAAAAAAI/AAAAAAAAAAA/gYGFBhKRsLo/c-rp-mo-br100/photo.jpg','8679688254631342173',10340),('AIe9_BHx9wW5OAXpNIH08blLdli0pw1NOT4pLhm1qSz1O2Tzqu5q5MK7byYZLGMYO1iHR9Qx3wGPl2daHPW5ePH37GkT7JXrFulabX_kkMNw2Z2YyK6C5ow','Care was great! Keera, Brad, and JR were amazing help!','2017-07-27 21:43:01.257000','2017-07-27 21:43:01.257000',5,'Jace Pfuhl','https://lh5.googleusercontent.com/-FiXvMMCLoX0/AAAAAAAAAAI/AAAAAAAAAAA/8QdWktPPC5o/c-rp-mo-br100/photo.jpg','16590124370714063921',3970),('AIe9_BHx9wW5OAXpNIH08blLdli0PWdYGTVTnZpU9TycfUGOlXFLvD5F--cAzE8MZKMG5cs-EPoC6CjCRAH-RbMaf-cbQh7aRekGvVz9unl4luJONYCy-sM','Overall great experience would advise','2019-06-21 04:44:42.745000','2019-06-21 04:44:42.745000',5,'Noah Rosen','https://lh3.googleusercontent.com/-SRkRHP-uZoM/AAAAAAAAAAI/AAAAAAAAAAA/bk2aMuq4zj8/c-rp-mo-br100/photo.jpg','16891069708558046635',4247),('AIe9_BHx9wW5OAXpNIH08blLdli0PwZWvBvCyd144nuW9wGfn10Jj4mqiun7wKecg4vL863X0Q2av2gLEdCDLMeL-4kYp1sO9xCOMPond0GPx_DF9IYtPm4','I would definitely give this place 5 stars. They were very professional courteous thorough and very very nice. If I was ever get sick again which I know I will this is definitely the place that I will go.','2017-11-12 23:58:33.526000','2017-11-12 23:58:33.526000',5,'Christopher Hancock','https://lh4.googleusercontent.com/-m_aPWiLd2cc/AAAAAAAAAAI/AAAAAAAAAAA/Ym-S9ycif7c/c-rp-mo-ba3-br100/photo.jpg','14567670160750071148',1733),('AIe9_BHx9wW5OAXpNIH08blLdli0pxxP-w4G1PSoZvEkFbiMO6970kX2OtaCtmnrzGqEC3cvLDAPyaBJYxI3v5gpuTSHoSHGPXa84R9afBhG83XCGyH8-kk','This ER is my go to when emergencies happen. My friend was injured and I knew to recommend Signature for the best and fasted service. The staff are super nice and accommodating. Norma, Dee, Dawn, and Joey helped us during a very chaotic and overwhelming time.','2020-02-02 23:58:24.379000','2020-02-02 23:58:24.379000',5,'LuvPinks','https://lh5.googleusercontent.com/--_gPJzZeypc/AAAAAAAAAAI/AAAAAAAAAAA/TFBQZjZkY-8/c-rp-mo-br100/photo.jpg','3511292162159714121',14430),('AIe9_BHx9wW5OAXpNIH08blLdli0q63mOv0JuSMSW55KAN1lcVBNiBeACpTAZuFD1NQ3AmwkgS9bWHcpUbE8hJhQ5TuktJvgORpYuaD1qy71qicgqnGRAD4','This ER was top notch from check in to discharge. The check in staff were extremely polite and the forms were not overwhelming. A gentleman came in while I was waiting and needed some W/C forms. They were very courteous to him and printed off a form and highlighted the number to call. They paged clinical staff to let them know they had a check in. An RN called me back and put me in a room and the tech brought me a blanket. The doctor came around pretty quickly and was sympathetic to my needs. I was nervous about being there as I don’t normally utilize ERs and I wasn’t in a bad wreck or anything. The Dr ordered a urine sample and the nurse took me to the restroom and then injected me with a steroid and another shot for inflammation. They didn’t hurt until after the shot!! The CT tech took me for a CT rather quickly and also gave me a blanket. By the time I returned my back was already feeling better and my neck too! \nThe dr came and explained my diagnosis and discharge. She left and the nurse returned with my discharge papers and the copy of my CT scan as I requested. From start to finish, I was here less than 2 hours!! I might add that the facility is spotless!','2019-05-02 01:00:24.938000','2019-05-02 01:00:24.938000',5,'Sheri Willoughby','https://lh3.googleusercontent.com/-22wP_BAc0EY/AAAAAAAAAAI/AAAAAAAAAAA/hBb4RP0MIYs/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8287),('AIe9_BHx9wW5OAXpNIH08blLdli0q6VV7bAgwyNGueSuyZHiuUUQQzzn42QCq_eyQhtTmSmsYppSJOqHmOlw5BS7ruu3OPmsm7BE3xr6ZcvAmzXqwgmBoL4','SignatureCare is the best! We have always had a wonderful experience anytime me or my kiddos needed to be seen in a pinch. Elizabeth at registration was so helpful, Ally in nursing was excellent with my son, and Dr. Singla was so knowledgeable!','2019-06-23 14:00:54.373000','2019-06-23 14:00:54.373000',5,'Lauren Bernard','https://lh5.googleusercontent.com/-YSqghCLLah4/AAAAAAAAAAI/AAAAAAAAAAA/-V7MaIZaonA/c-rp-mo-br100/photo.jpg','14904078213800803294',2125),('AIe9_BHx9wW5OAXpNIH08blLdli0QIP9gWNxeVkj7aNBa_tUeO-qDrufzbnuP0az6LZ2tCAFjnwcYmSwtV2qThLwhGC3zsIT7U9u_Kj99WRbu0XRvwcKfbc','Best place I’ve ever been to... care was great and the staff was just wonderful.. special thanks to Jani, Tricia, Keith, and Ileda for doing a great job','2019-10-20 18:13:35.706000','2019-10-20 18:13:35.706000',5,'Taliaferro Robinson','https://lh6.googleusercontent.com/-vszxKQMbAn8/AAAAAAAAAAI/AAAAAAAAAAA/nmKMcwbjRx0/c-rp-mo-br100/photo.jpg','16389487648212004696',2797),('AIe9_BHx9wW5OAXpNIH08blLdli0QJYDoarmkjNxEbgVUJ3x3woZBPC2z_sl0iot0ov58sK-4jODzIutptPDetEzuB9EQtZf2MuX9xMeijCCo9MsPIQLHWc','Treatment was really quick and every member of staff was so friendly and kind. This is a great facility to use especially when your normal doctor seems to have really restricted hours that don’t fit in with work.','2018-01-23 09:41:45.949000','2018-01-23 09:41:45.949000',5,'Jordan Cooper','https://lh5.googleusercontent.com/-4NCrsoxRsiA/AAAAAAAAAAI/AAAAAAAAAAA/niBjcJ299hc/c-rp-mo-br100/photo.jpg','14567670160750071148',1671),('AIe9_BHx9wW5OAXpNIH08blLdli0qmL_-Jn25dQg9ZD--2ViT9zQR6M-biyNR3eRjn6rrSbvME_NoNsXe__oBfWrjmeCISmiLkJVeSF1gVmLQWK-Wno5hC0','The whole staff was great! Tanisha has great guest service. Will pass up other emergency locations again to come get helped here','2019-11-20 03:13:53.416000','2019-11-20 03:13:53.416000',5,'rendell thompson','https://lh6.googleusercontent.com/-svIZtOWJSik/AAAAAAAAAAI/AAAAAAAAAAA/UCSaR-mq0Ow/c-rp-mo-br100/photo.jpg','17898197009688164559',5416),('AIe9_BHx9wW5OAXpNIH08blLdli0qSDluZF6H1nySLAk6EbrDRBBmIr4tlFtbZoYvzwfEbgbyBR5dx3c4ETucIj8x36Zg5ek34Cyhb_dIa6qsBjUbSBo4Dk','Great place to be seen fast and with no hassle. Shauda checked me in, in less then 2 min and before I could even fill out my paper work the nurse (Amy) showed me to my room. The staff are very professional and know what there doing. I will definitely come back here if me or my family members get sick or injured.','2020-02-10 14:22:50.715000','2020-02-10 14:22:50.715000',5,'Mike','https://lh3.googleusercontent.com/-bYBZ1PutIqw/AAAAAAAAAAI/AAAAAAAAAAA/DTSFkJgCPxQ/c-rp-mo-br100/photo.jpg','2694018788013845459',14243),('AIe9_BHx9wW5OAXpNIH08blLdli0QXVDIW3E-2BCcTP4euocPGQFrg7OmLMjPDE0M3Nt1t_EAb1oCnLBttfg56GrYYeZ_DrdK2QpE0Gfbu-L4sFqUaOql94','This ER is very clean, very fast, and the staff is friendly.. Tanishia W at the front desk is super nice and super cute','2019-05-22 02:46:57.479000','2019-05-22 02:46:57.479000',5,'Fu Lee Wane','https://lh3.googleusercontent.com/-fsikX-znTCE/AAAAAAAAAAI/AAAAAAAAAAA/B2XPyD_12zw/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5730),('AIe9_BHx9wW5OAXpNIH08blLdli0R2_hO_Bguiyhud5mggyG1wXipZtbNyidj8nuzTXJ5D62m5L2dOYQh9NO7eoMciqPFFwjzocThfb4cbHs4mGfMOaVAuk','Dr. Golla at Signature Care is one of the nicest, most attentive doctors I’ve ever met. He explains everything in detail and takes his time. I would recommend him to anyone needing care.','2018-10-05 16:01:21.476000','2018-10-05 16:01:21.476000',5,'Alexis Duff','https://lh5.googleusercontent.com/-q7V1DIq_znU/AAAAAAAAAAI/AAAAAAAAAAA/rAeORyv25w8/c-rp-mo-br100/photo.jpg','3511292162159714121',7577),('AIe9_BHx9wW5OAXpNIH08blLdli0RbWg-cXo_oGLmSZZ_eztnblPtzqiJESTHgvqk9oDro0zroka41xD-O2XaLXwRF8fZZOpvFfJ8HzgGHARZ3syFhztfFg','Staff was very responsive and quick to answer questions.','2018-09-16 01:44:56.336000','2018-09-16 01:44:56.336000',5,'Kaela Babbitt','https://lh4.googleusercontent.com/-DkMJnU0T_g0/AAAAAAAAAAI/AAAAAAAAAAA/6VZzGlqkua4/c-rp-mo-br100/photo.jpg','16590124370714063921',3727),('AIe9_BHx9wW5OAXpNIH08blLdli0rdN8fbwMzPZ7WvlPVxbuiuHs_wVb9o-1zcLB9sCAdX87T-lL5NjFECzBRrDhXs9g6GC2QG9HwL0TTVYFMdkR9S9DY2k','Manny was an awesome nurse and Dr Nguyen was amazing. They saw my son very fast and were so friendly and helpful. We really appreciate the staff at Signature Care and would certainly recommend this place','2019-07-12 19:16:03.110000','2019-07-12 19:16:03.110000',5,'Cheyenne Undisclosed','https://lh4.googleusercontent.com/-xN8i4b3r7Y8/AAAAAAAAAAI/AAAAAAAAAAA/g_vk-NdIhro/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8200),('AIe9_BHx9wW5OAXpNIH08blLdli0rG6zrNgBB7jukUwo-F3Div-q5iv7IzJ3xFgGr26Yrfcrs93RxpytMQdIHvjBTDIx0EYCPbQhcjEfpM9rhN91HwjUYH4','They were very helpful and got me in and out in a timely manner would refer to others','2019-03-03 05:28:26.579000','2019-03-03 05:28:26.579000',5,'Elizabeth D','https://lh6.googleusercontent.com/-WBdyNtoRdgs/AAAAAAAAAAI/AAAAAAAAAAA/VlTlr2rXqac/c-rp-mo-br100/photo.jpg','2694018788013845459',6181),('AIe9_BHx9wW5OAXpNIH08blLdli0RL4LxLW7FJp7VRanbicxoe9vk1YwV8OmFY2dcYoKRnBHEOpvbxU-lC-tHP5bpc1beCqOsUlPjXmN-B0eR8Xlvj8io-U','Awesome is not enough!! I waited for a long time at another location to be turned away when they realized they didn’t have the X-ray equipment to view a possible fracture. 😳. Came to Signature Care which is IMMACULATE, professional staff and drinks and snacks for my youngster while we waited. Offered us warm blankets when we came into the examination room. I love this place!','2019-11-04 22:08:00.480000','2019-11-04 22:08:00.480000',5,'Christina Ryan','https://lh5.googleusercontent.com/-KhHDSLFeldY/AAAAAAAAAAI/AAAAAAAAAAA/Cm2y9o-chX4/c-rp-mo-br100/photo.jpg','13486358490203335051',752),('AIe9_BHx9wW5OAXpNIH08blLdli0rXlYEJAzS8rhYszyWpn94L5nPcuMz7RfsCf_AVJCl9WYzOmqIO3TAwrbyAax0coIcYiCcP3nahQNwGR3SU3VmdAXrJE','Zero wait time even though there were several other people in the waiting room. Everyone was so kind and warm!','2020-07-27 21:09:46.435000','2020-07-27 21:09:46.435000',5,'Mary Kate Shannon','https://lh3.googleusercontent.com/a-/AOh14GgMQ2Uy09teasM6IpD4vbftql8jervfZ9aLvRizjA=c0x00000000-cc-rp','16590124370714063921',22012),('AIe9_BHx9wW5OAXpNIH08blLdli0RxqSmwOw_GanqBPjBaLEFCVrsYHH7bGFOGONmryfJhCOAPXmkxN9D8UKyrF0Mhwbc8sQg6GquOp9wD_2-tGGPrRDtLc','\"GREAT STAFF\"...Dr. Lindsay, James my RN 😊❤\' Amy 😁. I highly recommend SignatureCare Emergency Center The Heights.','2019-03-13 18:45:06.100000','2019-03-13 18:45:06.100000',5,'Deborah Batts','https://lh4.googleusercontent.com/-uhecZNiSAhQ/AAAAAAAAAAI/AAAAAAAAAAA/VgHCpjiIMqE/c-rp-mo-br100/photo.jpg','14567670160750071148',1365),('AIe9_BHx9wW5OAXpNIH08blLdli0rz6osYnwVT-mpZRoKVWLGqlGF5xjrdutEV4VmgDQ635SAfauLB0nuYBUdZeggw9zKdBMDTGO9sEA5Z-EkfLmiZ85mik','My husband and I took our daughter there few months ago to check if she had flu. She had some symptoms and I wanted to make sure. They did few test and billed the insurance for $2800 on top of $150 they charged us there. Insurance paid $2000 and now we got a bill for $800. They are a bunch of crooks. Please stay away.','2020-03-07 02:24:16.308000','2020-03-07 02:24:16.308000',1,'Betty Oommen','https://lh5.googleusercontent.com/-kdsrNimHX7E/AAAAAAAAAAI/AAAAAAAAAAA/noOxa67PQwM/c-rp-mo-br100/photo.jpg','8918455867446117794',14792),('AIe9_BHx9wW5OAXpNIH08blLdli0S-XBzYZ-I8SOd-171If0bpcnP3shEZwzKAJDvP4J4wh91Qru8RUc3ZS3lw9_p80SivYI5GNBrfFdMwYcLWa46g0ta14','Helpful and very sweet service from RN Mrs.Krystal last week while dealing with very horrible stomach pain.','2019-06-16 04:27:25.477000','2019-06-16 04:27:25.477000',5,'Edith Baeza','https://lh6.googleusercontent.com/-FZQGfW0ov7w/AAAAAAAAAAI/AAAAAAAAAAA/NX9dBn4X7nU/c-rp-mo-br100/photo.jpg','13486358490203335051',955),('AIe9_BHx9wW5OAXpNIH08blLdli0Sn8-UHdJW3M1mIspdgvc2sP8kkOuzL52SwrbeD_ORa-ZhSmoE6rJmsQ9WNcG8EQnm9jIIqUUoYh8pTtoRAglYNFJIF0','Service was fast & great but we were still sent to the hospital for a 24 hr stay for IV antibiotics. We paid $200 for that visit. When our medical insurance statement arrived, the urgent care charge was 3x higher than our 24 hr hospital stay bill. Good thing we have health insurance but my goodness, I didn\'t know this urgent care is very expensive for only a few hours stay.','2016-03-28 16:33:12.486000','2016-03-28 16:33:12.486000',4,'Sweetie Meb','https://lh6.googleusercontent.com/-rGt6XWx5sTo/AAAAAAAAAAI/AAAAAAAAAAA/ChvXDF71X4Q/c-rp-mo-br100/photo.jpg','17394740196501090048',5270),('AIe9_BHx9wW5OAXpNIH08blLdli0spdZj82NF2Q_gt0yPhUi8GFLXf5KLfbJGCZ4D7Z_d2iqny80weRDb3Kqf24rdfRQalg-0gsDhDBN80RCoQjNCmORsUQ','Dyveliz, Itza, Jeri, and Dr. Vakey did an awesome job today!','2019-12-16 20:29:39.597000','2019-12-16 20:29:39.597000',5,'Joseph Cabrera','https://lh5.googleusercontent.com/-F4lRoTKY2w4/AAAAAAAAAAI/AAAAAAAAAAA/sGgD8KzezBg/c-rp-mo-br100/photo.jpg','16590124370714063921',3018),('AIe9_BHx9wW5OAXpNIH08blLdli0sTI1YTKretxCIGA_D7tHTQuJUv2duSLu8HEvelmGU5wxABxuWK7hOfv2GuACiA1S49SEyMZGKecUcwC5Kc1CakrAWuA','My visit was exxeptionally well. Everyone was so kind and helpful. Dr. Thomas expained everything and was so patient. My nurse selina she was very helpful and helped us every step of the way. Lastly Keera greeted us and got us in quick. Thank you.','2019-10-03 14:58:38.399000','2019-10-03 14:58:38.399000',5,'zz plays','https://lh3.googleusercontent.com/-OuIj4VnJz58/AAAAAAAAAAI/AAAAAAAAAAA/GvxBFN9w-lA/c-rp-mo-br100/photo.jpg','17394740196501090048',4590),('AIe9_BHx9wW5OAXpNIH08blLdli0t-QMemy0MhtalnLT7jD7dRWN1B3hZefUK-_-528aji6Dqwei8t0Vhm6SYWBrRke-hj-xqhd7o4QsAX-CjAHFOhkHqS0','I am not someone who does well in hospitals or doctors. Erica immediately made me feel safe and welcome and took care of me. I was admitted and helped within 5 minutes. The entire facility was helpful and knowledgeable.','2020-02-03 23:51:04.453000','2020-02-03 23:51:04.453000',5,'Kara Thibeault','https://lh5.googleusercontent.com/-HAyvj6roXiM/AAAAAAAAAAI/AAAAAAAAAAA/LpTVz12ycBg/c-rp-mo-br100/photo.jpg','14567670160750071148',13564),('AIe9_BHx9wW5OAXpNIH08blLdli0T7VkBtOvqi3qOoPUymDaZPIiQe8UfhqPvPdx6yo7komrAYWNlCQCgpkZFD-vB_-8wQ-q8hdlAKKyB7VQ7-uDAvV7FYY','Jocelyn A \nMeredith\nalveanA\n\nThey was helpful & nice to me','2020-01-22 20:47:06.386000','2020-01-22 20:47:06.386000',5,'Ant honcho','https://lh6.googleusercontent.com/-oL5_e22pfI0/AAAAAAAAAAI/AAAAAAAAAAA/HBOuVHP81Lo/c-rp-mo-br100/photo.jpg','16389487648212004696',10194),('AIe9_BHx9wW5OAXpNIH08blLdli0tE0zbx3c5YfYNiuk827YNjKoNWH8a3Dmc4i1x1_WJYjx2UeaoQwGrQ4dTW6GckcVuCYYfEpxvaiSNTEeza-Gak-lFg4','Had a great experience here! Ms. Tanishia at the front was so kind and accommodating from finish to end. my nurse Jennifer was so sweet, made sure I was comfortable at all times. Enjoyed coming here. Definitely recommend.','2020-01-24 04:42:59.380000','2020-01-24 04:42:59.380000',5,'Megan Arrants','https://lh6.googleusercontent.com/-pK7mW6lVKNc/AAAAAAAAAAI/AAAAAAAAAAA/y3RjTHvSJRk/c-rp-mo-br100/photo.jpg','17898197009688164559',10247),('AIe9_BHx9wW5OAXpNIH08blLdli0TeSTmBfpsHJOMNDpBotyASMW-glnOrhdDVQE-JToptkQPFq5Jo1wuqxFraEJ2dna0Sc0UmR3xFQJHAM539v3jsmGTJk','Loved it here. Was nervous but the staff assured me that I’ll be fine. Very polite and took great care of me. Let’s not forget the receptionist at the front, she’s a doll xoxo','2019-08-15 16:37:38.596000','2019-08-15 16:37:38.596000',5,'Lesley A','https://lh5.googleusercontent.com/-ClrCfBrGZ-g/AAAAAAAAAAI/AAAAAAAAAAA/gzbRdOOhMCw/c-rp-mo-br100/photo.jpg','12541597562633926366',459),('AIe9_BHx9wW5OAXpNIH08blLdli0tObgf4pTqpvboWRp24SWVQxOgt83mv0V2vN_q3mluyOWtqI3yXyHSZ0mDC9dkgkbp1lGIZte_NHm6t4K0FNwN2lsFAo','Me and my daughter had been to this emergency room twice and we have had great service. Fast and reliable. No more than 10 minute waiting time. They do all the necessary testing even on site CAT scan and MRI exams. Results in minutes. We had life threaten emergencies and the professional personal attention saved us. I thank Dolores, Johnny, Ryan, Charles, and Dr. Smith for their help. Everyone is so sweet and caring. This site is definitely my place to go for any emergency.','2019-03-19 18:42:20.958000','2019-03-19 18:42:20.958000',5,'あほ','https://lh4.googleusercontent.com/-Kk4XyDEZeFs/AAAAAAAAAAI/AAAAAAAAAAA/4IGdSgOUc_o/c-rp-mo-br100/photo.jpg','14904078213800803294',2155),('AIe9_BHx9wW5OAXpNIH08blLdli0TPdqhP4OeZJzmdqegM5ONSAzUlSDwxKbaCat7aRO4-HM2HeEZx0aV8wO0AEyTa1TRUC7ClfsrYRsuLY9F7FhMqqa7xQ','Super nice staff Lisa V, Jolynn, Corey C, and Allison were amazing. They were quick and professional. If needed this is where I will come back to. Thank you so much!','2019-09-27 00:09:08.593000','2019-09-27 00:09:08.593000',5,'Kimberly Tate','https://lh4.googleusercontent.com/-ebH2_H4kYgQ/AAAAAAAAAAI/AAAAAAAAAAA/1Q2KQNwBd1g/c-rp-mo-br100/photo.jpg','13486358490203335051',814),('AIe9_BHx9wW5OAXpNIH08blLdli0tRJY1DNrc-RijGo7NYkRQBwEZBuFe2LDpSdSRnOlQkwHmEhyxDOgUo1dArT0FNODB35ixXTtBHbhblaA2UuUcOOegp4','I had a great experience today with Signature Care ER Center. The front desk staffs Alyssa & Karen are super welcoming and friendly. They check me in quickly after 10 mins, no waiting time. The assistant Shawn K has been super helpful during the entire progress. Dr. Garcia is very knowledgable and considerated toward my needs. Thank you Signature Care staffs for the good experience!','2020-01-30 19:52:04.231000','2020-01-30 19:52:04.231000',5,'Josh Ta','https://lh6.googleusercontent.com/-6yBew12IzVo/AAAAAAAAAAI/AAAAAAAAAAA/CpQjl85vPpE/c-rp-mo-br100/photo.jpg','8918455867446117794',14861),('AIe9_BHx9wW5OAXpNIH08blLdli0TT0AbmCrjjm_MdvzX4s9aebnuVGxI1hnRkjQvqtLkl5JwRN0bm68knxlbpjYXhFky-5u4V8HJbDntcLg_OKiZiFEJ_g','Amazing staff! One of the best experiences I’ve ever had in an ER. Anthony and Jacob were very helpful and attentive, always coming to make sure I was okay and to see if I needed anything. Dr. Vakey sat down with me and explained everything going on, even giving his personal experiences. Kirsten came and took my vitals every hour and was super sweet and kind. I definitely recommend coming here over your typical ER as the staff here is superb and I felt very welcomed by everyone.','2019-04-23 22:15:09.781000','2019-04-23 22:15:09.781000',5,'Elyse Menconi','https://lh3.googleusercontent.com/-6MqMzquD6TU/AAAAAAAAAAI/AAAAAAAAAAA/gPthJp9Swwg/c-rp-mo-ba2-br100/photo.jpg','16590124370714063921',3409),('AIe9_BHx9wW5OAXpNIH08blLdli0TTTg47mnWM39xDbRF2P-5edGJVAeTcPyo97E-ULsMqXn7WBwWxFHDCAqS59gBeUTqkzwl7JK_7oDNw8-EtJd3BNRDms','Audrey, Allison, Matt and Leah were great and very caring. Thank you','2020-02-02 03:10:20.248000','2020-02-02 03:10:20.248000',5,'J Mink','https://lh5.googleusercontent.com/-UPYcsu4ZUKM/AAAAAAAAAAI/AAAAAAAAAAA/l_or3AELSjs/c-rp-mo-br100/photo.jpg','13486358490203335051',13445),('AIe9_BHx9wW5OAXpNIH08blLdli0TX_bQGh0-rS67GyOCnVAvwrGmpoS78a08OhYUZCIz3v9eyR_UcS7hdL4E4ryat4vulJN86_vksN_DVUPcvgbXu4pXzQ','I would give 6-stars if I could...\nI had to go to this place twice within the last week, once for my GF with a several case of dehydration (on a Sunday at 9:30 AM) and I for some acute pain in my left knee (last night around midnight).\n1) and foremost: NO WAIT. My GF has to wait less than 5 minutes before been installed in the exam room, I didn\'t even have time to complete the paperworks...\n2) The Doctor is the one who examines you. Sure, the Nurse take you vitals, hear you story, but the Doctor will be the one performing your examination, deciding (with you) the course of treatment and your options...\n3) They do not \"push\" for additional examination. We decided both with the Doctor of the relevance of an X-Ray in my case, which I agreed to have done, just for peace of mind.\n4) Within 30 minutes, in each case, we were admitted, examined, treatment decided and under way.\n5) Every Team member is smiling, extremely nice, joking with you if they feel it is something you will respond to.\n6) They keep asking you if you want a blanket, something to drink (Water, Coke, Gatorade, Coffee, Juice...) or a snack each time you are waiting a couple of minutes, during the whole process...\n7) They are open 24/7.\n8) The whole experience was comparable with a 5-stars hotel with a concierge service. Definitively the place I will be going back next time under similar circumstances.\n\nOne site note, though. They care considered as a \"hospital\" facility and therefore will charge your insurance Co-Pay for consultation in an Hospital Emergency Room (NOT an Urgent Care facility). But if you can afford it, it definitively worth the 4-hours wait at the Hospital ER...','2018-10-10 16:48:12.083000','2018-10-10 16:48:12.083000',5,'Jérôme Istin','https://lh6.googleusercontent.com/-t8KEySd8p_M/AAAAAAAAAAI/AAAAAAAAAAA/dTcwzOCjQgI/c-rp-mo-br100/photo.jpg','14904078213800803294',2207),('AIe9_BHx9wW5OAXpNIH08blLdli0TXz8tdcJ5Uk7orlN0sJJrfLbGCZ2qF_CUhcb12MxOAn_HmGTC_l4NBc3FNWP-lIKAoL39dro5Ht5Egm8Ex_bUQKOA2k','Excellent customer service. They were so kind and very thorough. Got all my tests done within a timely manner. Everyone listened to my concerns and addressed as needed. I can\'t say enough good things about the staff. I will definitely come back if I have any medical problems. Dr. Edwards was kind and amazing. Ayesha, Janet, Eda, Joseph and Alisha were all kind and showed how much they care about the patient.','2019-04-07 23:37:59.662000','2019-04-07 23:37:59.662000',5,'Rhemy Sauter','https://lh5.googleusercontent.com/-vUop5HAtrFU/AAAAAAAAAAI/AAAAAAAAAAA/ZSuzMBUK-n8/c-rp-mo-br100/photo.jpg','17394740196501090048',4696),('AIe9_BHx9wW5OAXpNIH08blLdli0u8Ww0cvnB8g8KRqldsaAl8TApxbdsLJd2HMribNSsVi4sDYqTVOgWtUVfZfm-tEzt9xoZud6uIxBzZyEiaIrsbBjuNU','My husband needed ER care pronto and they were there for him every step of the way. The nicest people and ER care are there. Would never go anywhere else unless they weren\'t there. Couldn\'t ask for better care then my husband got.','2019-05-02 00:02:36.956000','2019-05-02 00:02:36.956000',5,'linda molina','https://lh3.googleusercontent.com/-soWd4w2xvDM/AAAAAAAAAAI/AAAAAAAAAAA/-qvDc4qpB2A/c-rp-mo-br100/photo.jpg','13486358490203335051',1025),('AIe9_BHx9wW5OAXpNIH08blLdli0UdDDDnPEE4dExuszL9AxDmo4tVHsz2HgkoE8Yw-Y62yi1a5HoNHDK4vcb3MvuV72Zde7UT9Q-oP5SYHHG83DAStj1sQ',NULL,'2018-09-05 12:40:01.401000','2018-09-05 12:40:01.401000',5,'Jonell Hughes','https://lh3.googleusercontent.com/-BNmh9y7B0DQ/AAAAAAAAAAI/AAAAAAAAAAA/5s6fDz2dpuo/c-rp-mo-br100/photo.jpg','8918455867446117794',9237),('AIe9_BHx9wW5OAXpNIH08blLdli0uEAhVw921637UWq94JcYq8Xi30JFTW0wOxbUldHaokyGgkKAE3Oj7BuCfOaaN4G9KSSfw8R-PGhlshtZkuj1AB1val4','Everyone was very nice and got us right in and out! It was nice that I could print most of the paperwork at home and fill it out before arriving! I hope we won’t have to be back, but if we do we’ll be comfortable knowing what to expect!','2020-05-31 16:36:39.037000','2020-05-31 16:36:39.037000',5,'Toni Uhl','https://lh3.googleusercontent.com/-B-MSA-HL1_o/AAAAAAAAAAI/AAAAAAAAAAA/4hJVRzL6pVM/c-rp-mo-br100/photo.jpg','13486358490203335051',21362),('AIe9_BHx9wW5OAXpNIH08blLdli0UipmcPejYUv5oue79-0M5NYEx2fpWIajrUxRGspmzmBCNAvBz06-ms4dWTQZxCjPqlPDr6JXFvHADM9uEpByxpO08i4',NULL,'2019-01-09 17:22:39.640000','2019-01-09 17:22:39.640000',5,'Kim Heck','https://lh5.googleusercontent.com/-UAcg687GS_8/AAAAAAAAAAI/AAAAAAAAAAA/Hi8c4EZ_054/c-rp-mo-br100/photo.jpg','8626688543755174284',8594),('AIe9_BHx9wW5OAXpNIH08blLdli0utefs0Oiv4bdg6qT9EUaVeQQ6DKjS15nZ-YfI4rDktKbfWVtmnFKZWLKaPOCtUNn43WhEn8IgQX7ggMx5mpyOyGDnTc','The location was very convenient in regards to my job. The front desk staff was welcoming and they got me signed in and in a room with minimal wait time. Dr. Dang was personable and thorough. I will revisit if needed.','2017-10-04 12:51:03.831000','2017-10-04 12:51:03.831000',5,'Sharon G','https://lh6.googleusercontent.com/-I_-L6NF6jkI/AAAAAAAAAAI/AAAAAAAAAAA/lZVosy79qww/c-rp-mo-br100/photo.jpg','8918455867446117794',9352),('AIe9_BHx9wW5OAXpNIH08blLdli0uWpZ-iaLrBqbMNBjw0mSNYoUwc8cRfQJZLNf9X67iwxTtTU62LhQk3tqgjzSiJKJ70vtA3AbgXYQ3yXRYiqaoz_ttIk','Very great experience , I\'m a new patient my check in time and being called to the back was less than 10 mins I was referred by my sister in law , she told me how fast and friendly her experience was and she was totally right .. very fast and friendly ERcare to come to .','2020-01-22 18:57:32.883000','2020-01-22 18:57:32.883000',5,'Kashi B','https://lh6.googleusercontent.com/-IbGgS8JL-NI/AAAAAAAAAAI/AAAAAAAAAAA/XlLEjBdI8Bc/c-rp-mo-br100/photo.jpg','16389487648212004696',10195),('AIe9_BHx9wW5OAXpNIH08blLdli0Ux3D092yrF6Urzf8pj03BDsSvB2VdC3DHQSFX5cSfPz370tKT0Wnr-TQ-MgDAMLN-OnsUTahor0BHVI_l2Aic7f0dBM','My mom came for a asthma attack, she loved her experience and she even said she wish they were her permanent doctors. It\'s a clean and friendly environment.this place is great.','2019-09-15 06:55:55.533000','2019-09-11 03:20:32.852000',5,'Angellica Jones-Fluker','https://lh4.googleusercontent.com/-59-elk9J1uM/AAAAAAAAAAI/AAAAAAAAAAA/oltRpFlTouI/c-rp-mo-br100/photo.jpg','16389487648212004696',2925),('AIe9_BHx9wW5OAXpNIH08blLdli0UXViJp_kQER2AWYygb_DzSIsQKCKxNiEgacb6-n6i-1MooxxOFZPRuo8igE7SsUm5bOQiRkEPPMBfUs5oYIMTwZdQZo','Great location . Always helpful and kind .','2018-09-08 01:13:59.277000','2018-09-08 01:13:59.277000',5,'CINTHIA GONZALEZ','https://lh5.googleusercontent.com/-NAlyIVZ5sCA/AAAAAAAAAAI/AAAAAAAAAAA/EhaAGvEChII/c-rp-mo-br100/photo.jpg','17394740196501090048',4804),('AIe9_BHx9wW5OAXpNIH08blLdli0v2vvTw8gXO3ks35d-Y7AC_0zSoXhzo4VxNqOldC8WsTmBn0p-QLW19HZQWFf19oyeY3AKvYrEseCtiWqoRKG_91n5WQ','Stephanie and Natalia went above and beyond to make sure my little brother was well taken care of and settled mine and my mom worries were settled. Rollie and Dr Alloju were helpful at best.','2019-11-17 01:03:53.745000','2019-11-17 01:03:53.745000',4,'Kaeisha Hendon','https://lh3.googleusercontent.com/-XGum1oeN7XQ/AAAAAAAAAAI/AAAAAAAAAAA/klTfP06HWVI/c-rp-mo-br100/photo.jpg','8679688254631342173',8725),('AIe9_BHx9wW5OAXpNIH08blLdli0vBiYzO5-1Pp6nr24SxHv-sj9k2-6HEKawVOe-ezmulyWPELthvXCtjMwuUmkUsrE9RDOymFrhyot9X41gT48qdGuyfM','Awesome Job doing a cleaning of my ears. Doctor and Nurse (Robert Cindy, Dr Ding) did an amazing job and would highly recommend seeing these two specific people !!!! 5 Stars super happy!!!!','2019-07-08 02:02:02.906000','2019-07-08 02:02:02.906000',5,'Raj Kumar','https://lh5.googleusercontent.com/-M5QwzJ_Jnss/AAAAAAAAAAI/AAAAAAAAAAA/obHRC8DTCAI/c-rp-mo-br100/photo.jpg','17394740196501090048',4637),('AIe9_BHx9wW5OAXpNIH08blLdli0VCiIquHpxUeHUqkO8TAP8Fjz2crWihwEpOekJOwOcYk9nTtyiT-rbKYnq2DPjIonQwtI3KMsIoBimpvShaF-vr858JE',NULL,'2019-10-26 20:31:08.890000','2019-10-26 20:31:08.890000',5,'Grecia Garcia','https://lh6.googleusercontent.com/-hxQkXJcG1mo/AAAAAAAAAAI/AAAAAAAAAAA/JfUQXgbtZ9Y/c-rp-mo-br100/photo.jpg','8679688254631342173',8769),('AIe9_BHx9wW5OAXpNIH08blLdli0vEvo3Pd_ihErAy1vCBA9NC85wVl-geAv4tfJaZYLcwet5LlBMQ6tAv87Q5EfJeT1GNrsnpcpj7Ly1cAZHRDYgCjtjc0','Staff was absolutely incredible. Was admitted and treated right away. The best emergency care I have ever received hands down.','2019-01-05 08:31:03.226000','2019-01-05 08:31:03.226000',5,'Justin Hampton','https://lh5.googleusercontent.com/-N603_108oE4/AAAAAAAAAAI/AAAAAAAAAAA/dqn2XS6k6es/c-rp-mo-br100/photo.jpg','8679688254631342173',8888),('AIe9_BHx9wW5OAXpNIH08blLdli0vgxB7W5D5UVprMzwdHyVXyWeuv966tic9B5B0FEOiGFPECnBFIzQNpcqh7hk09vm8p1wN2sEp6XPyi7IVGOyJ173uBc','Doc Lindsay nurse Sarah the rad tech Fatima & ms tanishia were wonderful they were very helpful and caring and also explained everything in full detail . Thanks again','2019-12-06 07:56:34.454000','2019-12-06 07:56:34.454000',5,'Triplea clay','https://lh6.googleusercontent.com/-Ll-opHXwndw/AAAAAAAAAAI/AAAAAAAAAAA/33Kpg87wyZ4/c-rp-mo-br100/photo.jpg','17898197009688164559',5373),('AIe9_BHx9wW5OAXpNIH08blLdli0vV2eYcmg3pc5Nfo0sRGiyISkf5rRSsM08wxineZGeJKLRNdyIZu0WggQSDtRctiVjyIVOzZQZl9_NJkhOsxmAdS2cFo','The staff is amazing! They’re so fast on getting you in and getting you taken care of! Definitely will be back.','2019-06-23 02:21:32.679000','2019-06-23 02:21:32.679000',5,'Jose Longoria','https://lh4.googleusercontent.com/-upZ9UEBO7Rc/AAAAAAAAAAI/AAAAAAAAAAA/KcSJ819T8io/c-rp-mo-br100/photo.jpg','13486358490203335051',935),('AIe9_BHx9wW5OAXpNIH08blLdli0vyacwIh72LI15KdzbAm8PvdCXuFdBB4k9ijL9rw_P91_BFR8_Gj7r7bsRKcfE-0jAW6PZQG7UxrvWOboG8X36u5swgg','Dr. Miller made sure my daughter was comfortable with all our decisions. Everyone was friendly and helpful - Christina, Tina, Shaunda, Chris','2019-12-19 00:13:29.492000','2019-12-19 00:13:29.492000',5,'Angela Peeler','https://lh3.googleusercontent.com/-1th43v5nTFo/AAAAAAAAAAI/AAAAAAAAAAA/q2jZScNfzgs/c-rp-mo-br100/photo.jpg','16891069708558046635',4111),('AIe9_BHx9wW5OAXpNIH08blLdli0W2KQCYGbb39Xrt_ld7elDCkE1YsJV5kVIGYZLLuNwhY0ddM9XBphIXWrbb0EJdsK4oYnS9d1CZsaC6tI-mPlRtvLQ8Y','Great environment with a awesome receptionist, Keera, who helped me understand my diagnosis while being quick and understanding.','2017-12-07 17:14:19.704000','2017-12-07 17:14:19.704000',5,'Blake Robertson','https://lh4.googleusercontent.com/-whfHxrcR2dM/AAAAAAAAAAI/AAAAAAAAAAA/gZ6wrhOzf1g/c-rp-mo-br100/photo.jpg','16590124370714063921',3899),('AIe9_BHx9wW5OAXpNIH08blLdli0w7r9Ju3_3DFUx0P84zcwEnVFZIY-jTaRIlaX2FxIVCFsBi8F43UmHTrz1GMFs5Sa0VWm8P6JQqCIB0OYgDFM8H6DCYk','Dr. Kimball , jeri Rn , Becca , Stephanie and Becky where all very helpful, patient and understanding thank you so much ...!!!','2019-07-06 02:32:57.116000','2019-07-06 02:32:57.116000',5,'taniel williams','https://lh4.googleusercontent.com/-20VSMO0WwEA/AAAAAAAAAAI/AAAAAAAAAAA/cltTSJ9kvU8/c-rp-mo-br100/photo.jpg','16590124370714063921',3315),('AIe9_BHx9wW5OAXpNIH08blLdli0wAGVj3b_v01Nt9Z1SZjf7ajfc2bGT8NFjXbX3PKuKEVv8d2RYflVuNtMPOZCuY9AbIbTTehWYXPbqJTwc0QDCuQIUmE','Fast service, friendly staffs, thanks to Dr. Golla, Fanny, Okarys and Janet for the hospitality.','2020-02-05 15:55:25.284000','2020-02-05 15:55:25.284000',5,'Bukola Johnson','https://lh4.googleusercontent.com/-mjfqwdbGCVw/AAAAAAAAAAI/AAAAAAAAAAA/UMhuxXIVB2g/c-rp-mo-br100/photo.jpg','17394740196501090048',14037),('AIe9_BHx9wW5OAXpNIH08blLdli0WQSVQXuhCE_QXkD_Ch6K8TgPciuUOucCprdOaLsAHAZC6CcqNYD2LJTC3zbYvr92loOeAfsgvtiLSMWigRCqPYvUAhI','They are always funny and amazing 😄😀','2020-02-26 03:54:20.444000','2020-02-26 03:54:20.444000',5,'Jazzmynn J','https://lh3.googleusercontent.com/-OkW5lBRJ5LU/AAAAAAAAAAI/AAAAAAAAAAA/2P9pPyoItEQ/c-rp-mo-br100/photo.jpg','14567670160750071148',13511),('AIe9_BHx9wW5OAXpNIH08blLdli0WSHFf0O5GEsLD5T3WVRgRJe2Lic1rFZutc82vKvU7xnr8HuGqVfk_ZoTCQrcG5afQUNyjiXmkpjiX6rr41oqs5PuJ1o','No words can describe how amazing the visit was! The registrar Okarys was so welcoming and warm. The nurse Jeri was very attentive and on point, straight perfection. Stephanie...goodness....so kind and VERY professional and lets give a huge shout out to Dr. Mauldin... BEST DOCTOR EVER! He was very informative and down to earth. I will def be returning. Thank you SignatureCare for being there. Thank you Ashley for referring me. (BEST MARKETER EVER!)','2020-02-27 01:41:33.961000','2020-02-27 01:41:33.961000',5,'katelyn ripkoski','https://lh6.googleusercontent.com/-jHaJezw1lt0/AAAAAAAAAAI/AAAAAAAAAAA/OfqR-svCzpY/c-rp-mo-br100/photo.jpg','16590124370714063921',13825),('AIe9_BHx9wW5OAXpNIH08blLdli0WXmdPVwl3-Ijl90-cbu_AA4SYb4UDlkSfEc45F9TLP8WotgE5ApltSE6yndbw0isUltzYwomFuas8b1wVsSu5_vI9Bg','Everyone was super helpful and friendly!!! Ashley from registration was amazing and helped me with any and all questions I had. Very clean and helpful staff!!! Totally recommended to ALL!!','2019-06-24 20:12:57.946000','2019-06-24 20:12:57.946000',5,'Jason Massie','https://lh5.googleusercontent.com/-wplm15tgLvc/AAAAAAAAAAI/AAAAAAAAAAA/jZqjVlDNVpQ/c-rp-mo-br100/photo.jpg','17898197009688164559',5678),('AIe9_BHx9wW5OAXpNIH08blLdli0XrZdFhhum2ZAsNY0R4V_N3IAnw2o7-10rF0mZ1sujoHn26BzeXADFexSb0scrCTskvP2-XwzWO7THB9oKPR3Y7QAJAE','Service and staff are very friendly! Doctors are very nice and do care about the patience. In fact we returned (bad luck us first mom second time mother in law) and service provided was the same! Highly recommend!','2019-09-21 16:40:36.768000','2019-09-21 16:40:36.768000',5,'Carolina Zambrano','https://lh6.googleusercontent.com/-NcAMGOOeuNA/AAAAAAAAAAI/AAAAAAAAAAA/W7jY4npa7Hw/c-rp-mo-br100/photo.jpg','14567670160750071148',1229),('AIe9_BHx9wW5OAXpNIH08blLdli0XtCADCr6iJFxnyi5WNXeN1vroRIxSVhSIzGhQx7nIh6WdCtycTZbEjINcwh_ErNNhcPO2LboVmHeL0CFi4xUVh9A_Eg','The staff and medical personel were great.very professional and helpful. They were thorough in all the testing and treatment. Every person was nice and personable. The place was nice and clean. It\'s was just a great experience considering the reason we were there.','2019-06-21 13:17:23.093000','2019-06-21 13:17:23.093000',5,'Melissa Medina','https://lh5.googleusercontent.com/-PE9KW2F-hXo/AAAAAAAAAAI/AAAAAAAAAAA/4n5zfGe_qck/c-rp-mo-br100/photo.jpg','14567670160750071148',1290),('AIe9_BHx9wW5OAXpNIH08blLdli0xWW5mZici5PBoxKbsyxTaYrZBTEU3o7_2tWOS3oQdjGOWhPMRnjoTRU98THOqU52yWeUpHGtMkskgInsJjwFisg5cFk',NULL,'2019-06-11 21:31:34.754000','2019-06-11 21:31:34.754000',5,'sotelo lee','https://lh5.googleusercontent.com/-3CvO2RqQNsw/AAAAAAAAAAI/AAAAAAAAAAA/ht7GCXgTa-Q/c-rp-mo-br100/photo.jpg','13486358490203335051',970),('AIe9_BHx9wW5OAXpNIH08blLdli0xXAN9yRcm81tI99f5D09WTvT1wv6zxzQwEdReG_EcEVzjdszHUR1Y-5DG6qxUDkfF__jUmyi5q3GIm9Wc2h9OU8GpiM','Both Christina R and C were very nice and friendly. Was able to switch channel for tv in my room got to watch a great movie while I waited also had delicious treats in the waiting room, overall one of the Best ER I have ever been to \nGot a warm blanket \nThe doctor elsbecker was great and focused on getting me out and getting me health all in a timely manner \nIf you need help and you can’t find and urgent care this is the place','2019-12-01 23:45:45.529000','2019-12-01 23:45:45.529000',5,'sam cole','https://lh6.googleusercontent.com/-5LtLD8bhT7c/AAAAAAAAAAI/AAAAAAAAAAA/cuFqX07SCwc/c-rp-mo-br100/photo.jpg','16891069708558046635',4133),('AIe9_BHx9wW5OAXpNIH08blLdli0yB81_0soQ1lAWHpeKZFOa5hroZCWU2cLl9iv6KOgVcHcQCYRcL1vUMf-8yxAb3ace7A_M18TEe-8aoT2gor963OvgBQ','Place was wonderful! Didn\'t wait one minute and everyone was super friendly!','2018-01-10 05:36:26.210000','2018-01-10 05:36:26.210000',5,'Deseree McCormick','https://lh4.googleusercontent.com/-YOtZvpODeaY/AAAAAAAAAAI/AAAAAAAAAAA/wyagsEdQI58/c-rp-mo-br100/photo.jpg','16891069708558046635',4525),('AIe9_BHx9wW5OAXpNIH08blLdli0YbH3bbsr-wIVwZCazf2AuWLwH3ZcnyfWV2ReZ5HynWoqzXrQQ8O6orElvFqnP5cBL__6tqdiuV3_aZEplEnx5pvHEec','I appreciate amy,rommel,dr. Patel ,Joey , and josh give us the best service cuz getting jumped hurts','2019-05-07 05:04:56.921000','2019-05-07 05:04:56.921000',2,'jaden body','https://lh3.googleusercontent.com/-4n9j0uul4nI/AAAAAAAAAAI/AAAAAAAAAAA/lh_5ga6lZwk/c-rp-mo-br100/photo.jpg','3511292162159714121',7331),('AIe9_BHx9wW5OAXpNIH08blLdli0YiGNbh8n3gpgkLbnG7fPMObQgTIwU2Z-xOGfAmEK8tFfg9m4wnbRwxVysmxLEfXllMT8V51OudPEdjKGScfyqsY5cTI','My experience was Awesome! Right when walked in the door, Shaunda greeted me and made me feel right at home. Dr. Miller and nurses Shelli and Chelsey took really good care of me super friendly and professional.Had a CT scan done. Tina who ran the test, explained every step and made me feel at ease. Highly recommend this facility.','2020-03-19 17:46:59.019000','2020-03-19 17:46:59.019000',5,'lindsay utterback','https://lh5.googleusercontent.com/-N4lcmb0g-Uk/AAAAAAAAAAI/AAAAAAAAAAA/3VU90zADct0/c-rp-mo-br100/photo.jpg','16891069708558046635',21041),('AIe9_BHx9wW5OAXpNIH08blLdli0yju8xxFj6gmHdQjvIkEAJeBST1AMNJKrR9mkBdll7d8pk2CemUpDiJzV1KbtrzFTNE8UxFnDZhzFbscfBDXFrfolHHY','Nurse Dawn saved my life and ER Tech Norma \nThx so much for all y’all help y’all the best','2019-12-19 20:35:39.751000','2019-12-19 20:35:39.751000',5,'Rahman Stokes','https://lh4.googleusercontent.com/-eCPuZbLkztU/AAAAAAAAAAI/AAAAAAAAAAA/m9cV-7TK63E/c-rp-mo-br100/photo.jpg','3511292162159714121',14482),('AIe9_BHx9wW5OAXpNIH08blLdli0YK7jjJKPs6Syy-W7jGLotLWhQXH9PZ0lrIGPzwfHCnjwIn6ecHA6B6WODideCH3T082v7XzSxgpMZVPNLiSJugMQX9k','Wonderful facility! Dr Vaaganees and Nurse Jacob we’re so incredibly helpful! They made me feel comfortable, heard, and respected. The woman at the front desk was attentive and quick to address my pain. I will always use signature care for my medical needs.','2019-07-14 16:45:19.665000','2019-07-14 16:45:19.665000',5,'Madison Frieben','https://lh6.googleusercontent.com/-tFzm97_GpPM/AAAAAAAAAAI/AAAAAAAAAAA/akbFln4LnUI/c-rp-mo-br100/photo.jpg','16590124370714063921',3298),('AIe9_BHx9wW5OAXpNIH08blLdli0Yl-H6aBro0P2slrbfaHH3TPYKztF5ux7GzSubv0gb2TuEFZdWJr7CuhQ2e6WpVQDCvyaL6Kf8UYpA2ljQ4dQzWrpGpA','Jessica S was very kind and helpful. I was in and out very quickly.','2020-07-21 11:52:40.773000','2020-07-21 11:52:40.773000',5,'Arturo Duran','https://lh4.googleusercontent.com/-LWaWFhSLqa8/AAAAAAAAAAI/AAAAAAAAAAA/---r5CefCaA/c-rp-mo-br100/photo.jpg','14748677429039074158',21630),('AIe9_BHx9wW5OAXpNIH08blLdli0ynJd9yC2zdU5usiNwfmyAvPgGlhw4tevfApcWTbWoQbbazo5fh0aCFOD35ERY0d1jG84VVd9QoxX_fJbv-aOz0yKIp4','I was extremely impressed by the quality of service I received. Dr. YUSUF, DO, SAMAR , Dawn, Nanci and the entire staff her was amazing. Thank you all!','2019-03-19 19:07:26.916000','2019-03-19 19:07:26.916000',5,'valescia martin','https://lh6.googleusercontent.com/-jF4zkvss3MY/AAAAAAAAAAI/AAAAAAAAAAA/rHVVkP9uu4o/c-rp-mo-br100/photo.jpg','17898197009688164559',5802),('AIe9_BHx9wW5OAXpNIH08blLdli0YpTlof6PpLuDpoomsE5K3_n-DFpUF4muSYYZ3LrkMfqATWm5zMV4IQ04VxbUrub6paTKx8BfXZHzQ248fURGhca_Nlw','1st visit to this place.. Jasmine greeted me with professionalism and respect... Dr. Estevez was very knowledgeable.. Alvean was very nice and knowledgeable as well... Tricia drew blood wish was painless.. so I\'m very pleased and most definitely will return in the future..','2019-07-25 15:18:46.410000','2019-07-25 15:18:46.410000',5,'Aaron Williams','https://lh3.googleusercontent.com/-4L-Mf68rCv4/AAAAAAAAAAI/AAAAAAAAAAA/-Hibi7ZtRkA/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHx9wW5OAXpNIH08blLdli0YR3Ca3ESrFr6qCKybhStM28wSMk8p2vPSeQN1IBlvwD-6d1Zp6MxVQUZ2V8kqEWDDf0fM10o13GiC0OL1_o2L3jIRmU','Fast. Got tended to right away by staff friendlier than you’ll find in any doctor’s office. Lisa, Jose, Aaron, Leah, and Dr. Miller made a great team and took very good care of my family. I’ll be back.','2019-12-21 19:00:17.631000','2019-12-21 19:00:17.631000',5,'Brynden Rivers','https://lh6.googleusercontent.com/-b4B9Mj0I9T8/AAAAAAAAAAI/AAAAAAAAAAA/KC96kufr38A/c-rp-mo-br100/photo.jpg','13486358490203335051',677),('AIe9_BHx9wW5OAXpNIH08blLdli0z3s5SZPzkSfzitryn9qpGW3RSTpR0DMqg0FGib_7EQnYoD7rZud3eqTccWYkLnnMYG3facj-0b7hCp0RLlL-88agiM8','The staff was great especially Robert he was very funny. The rooms were very clean and nice. The warm blankets were great along with the snacks.Thank you for everything!','2018-10-01 14:40:38.841000','2018-10-01 14:40:38.841000',5,'Josephine Salazar','https://lh3.googleusercontent.com/-mTVgSG8WRJs/AAAAAAAAAAI/AAAAAAAAAAA/tpHZ9LFxs1U/c-rp-mo-br100/photo.jpg','8918455867446117794',9230),('AIe9_BHx9wW5OAXpNIH08blLdli0z7w5IiTX9G68NnXE7MeweJQ17aUmYSCWbC72mfSq10t9lCmp3Dgl_Hf7FYF39-vQAHsMu4dFq79rwD6W8fdRnkv1xyU','Staff is wonderful. Ashley at the front desk was very helpful and friendly. My nurse Debbie was super sweet. SignatureCare ER is great ☺️','2020-02-21 23:15:30.430000','2020-02-21 23:15:30.430000',5,'Holly Nowell','https://lh4.googleusercontent.com/-H0NXluguFyQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuck-ZT05HPD_FL4ru1YpNqPcMtj7Xg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',21200),('AIe9_BHx9wW5OAXpNIH08blLdli0ZakNqcjKOfzPdhAXFfm-sWB4OfTk_sTD_zEZuNFWEylhK8qJWGBcg5mLL3qT7D4aSGAUVo2M433_VOoriqAFehCrP2Q','I can\'t tell you enough how GREAT these folks were!!!! I\'m sure there going to know exactly which patient of there\'s made this review because I reassured them consistently during my visit that they are the BEST facility I\'ve ever been to! First they saw me immediately!! Attacked exactly the problems I addressed and made me MORE than comfortable during the entire process! I almost didn\'t want to leave! I\'ve been dealing w a health issue my entire life.... never have I felt more confident in medical facility! Thanks everyone for all you did for me!!!! Can\'t say that enough!!','2017-09-21 18:40:04.443000','2017-09-21 18:40:04.443000',5,'Mandi Perkins','https://lh3.googleusercontent.com/-cFcKXaNDXxs/AAAAAAAAAAI/AAAAAAAAAAA/y8l_yZ7byb4/c-rp-mo-br100/photo.jpg','14904078213800803294',2322),('AIe9_BHx9wW5OAXpNIH08blLdli0ZBiXMq2liEd4Uk2zqtdL9Rtw6-HdhWb_OYtxTEB_qCoU3sGOTiT4UFwOiztoPzo9BtfBHXYv_hpwZ557NS8lIljkpJk','Dr Miller and nurse Brandon were excellent very attentive.','2019-09-08 13:10:20.589000','2019-09-08 13:10:20.589000',5,'Maria Peguero','https://lh3.googleusercontent.com/-cDMkHZejwME/AAAAAAAAAAI/AAAAAAAAAAA/V_Z6SXJu6NA/c-rp-mo-br100/photo.jpg','14567670160750071148',1248),('AIe9_BHx9wW5OAXpNIH08blLdli0ZcFiQcdZBdpKM8uRBR_GoeJi124DMs0aETMgp8DA5Lqlfs8_H126LYJpTFydbxVfkyjCunS6zx8kT05XuuS-3hSzKmE','Great service all staff friendly and helpfully, checking up several times to ask how\'s everything doing as a father I was worry to take my 1 yr old daughter to the ER but they just provides and excellent experience, I just love it, thanks so much','2017-05-10 12:05:59.516000','2017-05-10 12:05:59.516000',5,'fernando huerta','https://lh6.googleusercontent.com/-yIyqqIT1_P4/AAAAAAAAAAI/AAAAAAAAAAA/s5x9iGukuEQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1826),('AIe9_BHx9wW5OAXpNIH08blLdli0zGD73ftcNVgFBfPbzjliC8P5Cq35cIZN5XO-ECasA_J47th-z6nnV4F8bLUQEuU2VS5ZfReLFv9wjVNOFGHK-xgns2c','Dr. Maudlin, Nurse Jacob, my tech Morgan and my registration team Lorena and Amanda and all the staff were excellent!','2020-07-29 14:08:35.703000','2020-07-29 14:08:35.703000',5,'Elexis McCullough','https://lh3.googleusercontent.com/a-/AOh14GhjIBxP9i4ahYv1co3bVPlxRjuT-0txj7k7K0EMuA=c0x00000000-cc-rp','16590124370714063921',22005),('AIe9_BHx9wW5OAXpNIH08blLdli0ZIadPnCDkcDbLS8CMDpBuAPdtntPsRVt5w-vLBhLrg24egM9o-5V7ZUp1c5lU4NcLoqCTOGDJt17VyyOmLcAxSHOeSw','I WAS SO SICK AND THE STAFF MADE ME FEEL SO COMFORTABLE\nTHE NURSES, TECHS AND DOCTOR WERE ALL ATTENTIVE PROFESSIONAL AND CARING. THANK YOU I WILL RECOMMEND AND RETURN','2017-02-22 07:37:15.668000','2017-02-22 07:37:15.668000',5,'Cynthia Ramírez','https://lh6.googleusercontent.com/-dqL6FXCPVbc/AAAAAAAAAAI/AAAAAAAAAAA/nNuhXLpGGNg/c-rp-mo-br100/photo.jpg','14567670160750071148',1880),('AIe9_BHx9wW5OAXpNIH08blLdli0zK6FaRz9wrbypdWiKd6HteYrbR04vAIngfLFH_PPcM0D1-RZ5Q360TEHkgzZDjKe9F7dLJYrMm_XLgJlNzn-R2XF83s','Exceptional service! I went into the ER at about 2:40 this morning due to extreme mouth and tooth pain. I checked in with Quintessa and she was so amazing and such a sweetheart. She was very patient with me while I held an ice pack to my face with one hand and filled out paperwork with the other 😄 I waited no more than ten minutes to be called back and immediately got taken care of. You don’t see that every day at every emergency room. I had a very pleasant experience with nurse Gabriela and physician Levnej and radiologist Jose as well. They answered all of my questions and I was treated for my pain and prescribed medication to help me cope with it as well. I will certainly be returning here with any further issues I may have. This is my new ER for sure! ☺️🥰','2019-10-19 14:37:22.219000','2019-10-19 14:37:22.219000',5,'Jay Monae: Uncensored','https://lh4.googleusercontent.com/-b6mFojl2F0U/AAAAAAAAAAI/AAAAAAAAAAA/tyLoixa-wyU/c-rp-mo-br100/photo.jpg','2694018788013845459',6040),('AIe9_BHx9wW5OAXpNIH08blLdli0zoet80N2FzIRQHuMBb8PxYzm5knQ46FBeRn2MmKC1Z3XK3C7bjkdPE7KgCfOUXnzMMiIVznfeFeMMs99ToC8v87kZKw','Everyone here is kind and the private rooms are extremely clean! It’s so nice to not have to sit with other sick people and go home with other viruses you didn’t come with. If you have to visit an Urgent Care facility...this is the place!','2020-02-27 14:56:50.030000','2020-02-27 14:56:50.030000',5,'Marni Cullens','https://lh6.googleusercontent.com/-xrfGoTVn4_w/AAAAAAAAAAI/AAAAAAAAAAA/XgnudIyK3Xo/c-rp-mo-br100/photo.jpg','3272657195432704501',14325),('AIe9_BHx9wW5OAXpNIH08blLdli0zr9j9jjAUiMKp73tIfwA-ivqsFxHP9GuUU3SUj0017Wn3SDqIorEYeRL6JYlmV-zYXL_Bi5sRnOnxm4rRQqAL02h3x8','Came here to the ER and it was a good staff very friendly! Leslie and Olivia were very helpful. Nurse Gina was very good at what she does definitely recommend coming here! Amazing staff🥰','2019-01-16 19:41:17.906000','2019-01-16 19:41:17.906000',5,'Mona Cheyanne','https://lh6.googleusercontent.com/-ZTWVOFXfI8g/AAAAAAAAAAI/AAAAAAAAAAA/MgTjxxvV-oU/c-rp-mo-br100/photo.jpg','3511292162159714121',7472),('AIe9_BHx9wW5OAXpNIH08blLdli0zscFdTqwYhxRuIWaBLiPYfDJXhKK_QFjWkxcRkz8serSP53jwLy0M6bm3l_kFkRYhNAav2sFPZRBiwSH6ymFmC7F0NM','Great staff got me the help I needed','2017-10-11 17:07:45.936000','2017-10-11 17:07:45.936000',5,'Rosavelt Thompson','https://lh3.googleusercontent.com/-XwKpmiL01t4/AAAAAAAAAAI/AAAAAAAAAAA/wziYUNHARCM/c-rp-mo-br100/photo.jpg','14567670160750071148',1749),('AIe9_BHx9wW5OAXpNIH08blLdli0ZxHkD0S8g6r4-oEo7fVbi-ckdCIkNxFEvXzEyft4jyq0pE9_702NpI9sCDAIjhmYnCup7H3SafVo7MIqip-3XLKXNj8','Everyone there is extremely nice and helpful. They were fast and efficient . They also kept me laughing even though I was in terrible pain and they really listened to me.','2016-09-11 23:10:12.648000','2016-09-11 23:10:12.648000',5,'Dominique J','https://lh4.googleusercontent.com/-PQuZDxoeikU/AAAAAAAAAAI/AAAAAAAAAAA/g0EstD1Kpww/c-rp-mo-br100/photo.jpg','17394740196501090048',5204),('AIe9_BHx9wW5OAXpNIH08blLdli0zZSX-kMCJTd1Pnk5bZj9RZk--24hv9SoU-bg7TkONbkbvYs81U_YuA6rWX15pIc36zAKE7vT777PhCa9ZOnIr2ZevGg','Great service!! Thanks','2019-07-13 07:00:28.028000','2019-07-13 07:00:28.028000',5,'Manuela Serna','https://lh6.googleusercontent.com/-ArgWPPKe5VA/AAAAAAAAAAI/AAAAAAAAAAA/MpHClQREE_Y/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHXk3YYFixGZWg0d-wpwlOd_hjhxXC06YOQ4_FjE2ke0wT8f92mnOjV_MPcoQ1pgsB6eV8A-FRvjkzByN9AvNOEC80R0L7TAECDy8sTMriDHue0yok','Very helpful, fast process & amazing staff!☺️','2020-01-31 00:53:53.991000','2020-01-31 00:53:53.991000',5,'Michelle Aleya','https://lh5.googleusercontent.com/-FKRU-ya4bzo/AAAAAAAAAAI/AAAAAAAAAAA/0Taz_RBAZro/c-rp-mo-br100/photo.jpg','2694018788013845459',14261),('AIe9_BHXk3YYFixGZWg0d-wpwlOd1ZCSpPiALywVKCge7kwIY-52kt6j66T9DiaZGJKmZttyYOAQFTfBppTvuWm_yh3TRHeJQCwx-BusU_Ygzsn00f14rFo','Amazing team....they were fast... no wait time....and very friendly....','2019-10-31 14:20:23.972000','2019-10-31 14:20:23.972000',4,'Simra Zakaria','https://lh3.googleusercontent.com/-3TlwNVhKVD0/AAAAAAAAAAI/AAAAAAAAAAA/VDwWcTAozIc/c-rp-mo-br100/photo.jpg','16389487648212004696',2751),('AIe9_BHXk3YYFixGZWg0d-wpwlOd23Q3hRN6987SXmEPLDlEE0fCZEu7sZMcT3ykq2_5Nmv4apdmCAIXSQYaEqSO4g48NIo2twZZv8lTOLdPhWRCqWfEKII','Jennifer and Billy were very welcoming and the care was quick but thorough.','2019-01-01 12:57:08.579000','2019-01-01 12:57:08.579000',5,'Conner Brinkley','https://lh3.googleusercontent.com/-Bu-68ZhS1g0/AAAAAAAAAAI/AAAAAAAAAAA/wO-wTBL3do4/c-rp-mo-br100/photo.jpg','8626688543755174284',8623),('AIe9_BHXk3YYFixGZWg0d-wpwlOd3rREY4JiCifqka8d5C-bKBDu_2IaA9OUNuAL3TrtvV_UCv1DSfc4l9z-q5GVsk3fkzj983phi-4DeRASYsdI67csVH8','Had a great experience here at Er care. Lisa, Cynthia, Krystal, Audrey, Daniel, and Dr. Starr where the best doctors and nurses I’ve ever had','2020-05-21 15:25:00.331000','2020-05-21 15:25:00.331000',5,'francisco sanchez','https://lh4.googleusercontent.com/-lZu94nOB6QE/AAAAAAAAAAI/AAAAAAAAAAA/yrH9mhSwn_I/c-rp-mo-br100/photo.jpg','13486358490203335051',21364),('AIe9_BHXk3YYFixGZWg0d-wpwlOdI9nDL8-XTGUa-kWSm3x4bXkZemHVyndulILG76o7HIrp4uC5KN57Vd622jqtNDTVlfrjnKdgmHN2L4OD1nA8og5eROY','The whole team at Signature Care was great! Dr. Vaagenes, Anthony, Morgan, Natalie, and Angela were very efficient and helpful!','2019-01-26 17:18:09.254000','2019-01-26 17:18:09.254000',5,'Peyton Wohnoutka','https://lh6.googleusercontent.com/-J-jX7RaTuic/AAAAAAAAAAI/AAAAAAAAAAA/urMdFPzmDsM/c-rp-mo-br100/photo.jpg','16590124370714063921',3577),('AIe9_BHXk3YYFixGZWg0d-wpwlOdIj8rA6KR6pJlEwIJtIw2YUAz-UBSNOxaoQNKMcocD_8Iix0axAuaasRhvmYgmoN1d21ojspFk-_oeL-gdvxgumqFhnU',NULL,'2020-08-02 01:08:31.601000','2020-08-02 01:08:31.601000',5,'Morgan Mouer','https://lh3.googleusercontent.com/-E_Dg-RrT0DQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmE5XcwrP1NV2AHB4njuuiY4MIx6Q/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21937),('AIe9_BHXk3YYFixGZWg0d-wpwlOdj6MXd6mchLjH05XWcUGHV_r6rVAgeSzWH5wMVufpztZvxcWSzjsHVxU5WvJrqnfIxzc5O-rhHLs7B-8zHGqC6wqGA8s','Wonderful staff been there 2 times and they are the best place I\'ve seen in long time.. in and out quick as well wish I could go there when I need to see the doctor, I recommend this place to everyone..','2016-08-23 01:28:56.873000','2016-08-23 01:28:56.873000',5,'Diana Clark','https://lh5.googleusercontent.com/-91VjP3RyNDA/AAAAAAAAAAI/AAAAAAAAAAA/XlUVDFE453A/c-rp-mo-br100/photo.jpg','17394740196501090048',5211),('AIe9_BHXk3YYFixGZWg0d-wpwlOdOIHBaT4Hf9EeOCtpRrIYmBUUZ2gukVVkYKSMb9WHrsYy_nM7s2kVPhZFIVFZn8Tu1WAutsubs0eSAda3YAYAxw_C1c4','The staff was so nice the DR.slyvester nurse chariah and the registration nurse Leslie where all so nice they helped my sister really quick and got her to the room fast all very nice','2019-07-29 17:39:57.486000','2019-07-29 17:39:57.486000',5,'Kathy Torres','https://lh5.googleusercontent.com/-61VvtHRzNXI/AAAAAAAAAAI/AAAAAAAAAAA/TBNxpc5R8hE/c-rp-mo-br100/photo.jpg','3511292162159714121',7236),('AIe9_BHXk3YYFixGZWg0d-wpwlOdRnYG3Gpo_VcQ9ZboG-cp0lUraBVIgEOHfQ2UJ4XLIogtEk8lpgj6bvriF_-oUTO3AYuh6SYP1c6Z0qpOhicBSZ5krRc','Excellent facility every things is so clean and professional. The young lady at the desk that helped me when I went in was kind and calming, she answered all of my questions with clear and concise information. The physician and the nurse made me feel so calm and well taken care of. They are very professional and efficient at what they do all while keeping the patients emotions and concerns in mind and speaking to the concerns directly. Very great experience very great staff.','2019-06-17 18:47:24.045000','2019-06-17 18:47:24.045000',5,'Elizabeth Clark','https://lh5.googleusercontent.com/-iK7yAj7BNIY/AAAAAAAAAAI/AAAAAAAAAAA/daJlxRiWcF8/c-rp-mo-br100/photo.jpg','2694018788013845459',6130),('AIe9_BHXk3YYFixGZWg0d-wpwlOdsjtfmwIsN8LEs3n5hpRCc1MxWH85baFWRlUnm5eX08_NUU0aDI9yqwc9v7hDGtCsz1XBn8ghEsg3-0a4JUe6GgFm3lE','This place is excellent- efficient, clean, modern, and the staff were wonderful. ','2017-04-30 00:17:50.200000','2017-04-30 00:17:50.200000',5,'Christine Nanan','https://lh4.googleusercontent.com/-gsJ4VZtE-nw/AAAAAAAAAAI/AAAAAAAAAAA/_9CjbRzb8Tg/c-rp-mo-br100/photo.jpg','14567670160750071148',1835),('AIe9_BHXk3YYFixGZWg0d-wpwlOdt_KbKjIxxPwNATlEVDMm-YmY3i_S38B8TymUTWnac-W4jSk11r_6vPU_JZ5JWUGxkTlBGeHpQsOaBEh_lX2quudbGpE',NULL,'2019-11-04 01:04:11.344000','2019-11-04 01:04:11.344000',5,'Yoana Picazo','https://lh5.googleusercontent.com/-IU9mhiuwav4/AAAAAAAAAAI/AAAAAAAAAAA/s9U78149ke4/c-rp-mo-br100/photo.jpg','6521947413723274945',8098),('AIe9_BHXk3YYFixGZWg0d-wpwlOdU1-Vjl_gAv_2mqfe_6i68MnctI_hpE35Gep7JkMW7CCexouBt7hnag2QaOKR7hZaS0CoA7b2F4xjq0xLUqL3I_01lw4','The registration staff Amy, Valinceia, Julesia and Dalia were great help. I was having trouble making my appointment and they went above and beyond to help me with the registration process.','2020-07-22 20:02:30.180000','2020-07-22 20:02:30.180000',5,'Brendan Guajardo','https://lh4.googleusercontent.com/-zqH4uFjgpkM/AAAAAAAAAAI/AAAAAAAAAAA/1Zabx9bFvIM/c-rp-mo-br100/photo.jpg','8918455867446117794',22303),('AIe9_BHXk3YYFixGZWg0d-wpwlOduiuA1yVrvSKjfyLk7F4B4ogNAUfbv1GuASCqaNwdXI593xVOSKlSkOOXDaDM_O4HuwLfGRUUtEqVJZQ0wzXLcP8EWBc','SignatureCare Emergency Center made what had been an otherwise horrible day finish on a positive note. I was able to be assisted to a room within minutes of my arrival. The staff was very courteous and professional and thorough to my immediate needs. The doctor was in to see me within 15 minutes and provided more that adequate service to ease my pain and mind. The facility is very up to date and a great bridge for those who will follow up with their primary physician. If needed, I would certainly return again.','2017-03-01 19:32:28.128000','2017-03-01 19:32:28.128000',4,'Darwin Pennye','https://lh6.googleusercontent.com/-9-GV_Nr_AqE/AAAAAAAAAAI/AAAAAAAAAAA/1ou3tnFIn4k/c-rp-mo-br100/photo.jpg','17394740196501090048',5104),('AIe9_BHXk3YYFixGZWg0d-wpwlOdUR8BRDz60ul7JBCmVNJugGwRFZPihvQDXs_7cXbmU_OhiYXjN17NfwCcM-BjAoWbfI3KwOCfDYAx3wJzIbBeAh5FmQA','Dr Angela made our stay great and got our test back fast','2020-07-18 19:07:04.274000','2020-07-18 19:07:04.274000',5,'Roman Chiarelli','https://lh5.googleusercontent.com/-tx4lYkEawX0/AAAAAAAAAAI/AAAAAAAAAAA/uGvBDwBVFLk/c-rp-mo-br100/photo.jpg','14748677429039074158',21732),('AIe9_BHXk3YYFixGZWg0d-wpwlOdxQktDNC78KCgRJt6thDXYx3t99FtCrfy50yaS9d5Xp9rKr2SLLDigF4Sx_zHFIyC03vUY_Gl5h6SlrTazeryQLQ8evQ','Amazing team at this location. Shoutout to Dr. Faig, Olivia, Danny, Keri, Holly & Mildred. They were so nice and attentive. Thank you again!','2019-12-28 03:37:56.014000','2019-12-28 03:37:56.014000',5,'HecticNHeels','https://lh5.googleusercontent.com/-O5M--tc7JNM/AAAAAAAAAAI/AAAAAAAAAAA/N4CYBH_3Q9c/c-rp-mo-br100/photo.jpg','14904078213800803294',13647),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur_5_XLsRx79Uc8IQ-qivEdR8NJ8wjzdc-Y-zSb_azCI8MKHfIVRqEerBPtddBZfimjJInI6feBhPnTHZLz-VI3u2cIRE','Our experience is always great when we come here, but tonight I must say it was the absolute best! Beginning at the front desk, to Nurse Brandon and most of all Bryan. Both Brandon and Bryan were extremely friendly as soon as we walked into our room. Brian immediately offered both my husband and I a warm blanket, beverage and a snack. Dr. Sylvester had the best bedside manners and immediately ordered the appropriate medication for my husband. Thank you Signature Care!','2020-02-12 01:42:19.857000','2020-02-12 01:42:19.857000',5,'Regina Moreno','https://lh6.googleusercontent.com/-PHmyKKJc0ls/AAAAAAAAAAI/AAAAAAAAAAA/yDE4cfJ0q94/c-rp-mo-br100/photo.jpg','14567670160750071148',13535),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur_DGPO9mxe8s4p4nw2gTajUGcqUEyfs1c9zv4tZYo-kCyc7cThjbbdjk0ymIPFdTUPPOdhfCU6QxUsm-QcmZtUfOCVsw','Best medical experiences I\'ve had so far..Very accommodating,friendly and professional,all aspects from the Drs.,nurses as well as the support staff.Would give 6 stars!This visit we had Dr.Werzanski,Anthony,and Gabe assisting RNS.Natalie- Tech...thank you for such great care for my little guy Jordan...','2019-07-02 01:39:17.724000','2019-07-02 01:39:17.724000',5,'barry smith','https://lh3.googleusercontent.com/-gyWp8HHDKkE/AAAAAAAAAAI/AAAAAAAAAAA/BJPhpYM3E7s/c-rp-mo-br100/photo.jpg','16590124370714063921',3326),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur_DUHu4sx4F5_dimnGaYu1gQAvUghYHiNW2R1qeFhdRFcH7oK7RvcI5IDPt2n-6J2Df-RrZ3Qere_tQ1pxYJ8PouSxPc','Great experience! I was taken back almost immediately and received treatment for severe nausea/vomiting really quick. The doctors and nurses were great and kept me informed of my treatment the whole time. Definitely recommend!','2019-07-06 13:43:23.379000','2019-07-06 13:43:23.379000',5,'Coleman Sanders','https://lh6.googleusercontent.com/-PDGzgJzLZI4/AAAAAAAAAAI/AAAAAAAAAAA/8UldZ-XPVrE/c-rp-mo-br100/photo.jpg','17898197009688164559',5660),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur_JtUWF3VQVkf-BHVwxNItJXEVzWMZ56xjC792HYWaiiochcRyh543xSqSiJip9CmBaLNlrNzTjjOve2ysUMzsu25evg','I brought my husband in after he suffered trauma to his eye. At the time I was terrified, wondering if he will be able to see again and how that would affect our life. Drs. Golla and Ngo saw him immediately and not only took excellent care of my husband (he has his full vision back now) but also comforted me.The staff answered all of our questions and even called us the next day to check on my husband. This will be the only ER I use in the future! Great experience! Thank you Signature Care!','2016-06-07 01:11:27.100000','2016-06-07 01:11:27.100000',5,'Hoda Sana','https://lh6.googleusercontent.com/-XUARdNG9LKY/AAAAAAAAAAI/AAAAAAAAAAA/TE1RyYBrZOs/c-rp-mo-br100/photo.jpg','14567670160750071148',2024),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur_sOasjLmYNZ05ois3i-_IQxEmvZkL-i0ONq5G9DYHLjiBxqhwOzjTi4NNiVgXovM7M3_hAQVs53sExf2g8cSaWc-c0U','Dr. Boester was very helpful and made me feel much better and reassured that I would be ok after I came in with head pain from being rear ended hard. He was very pleasant and calming. I would definitely recommend this location. And I will be back for any other emergency needs. The following people went out of their way to make sure we were helped and comfortable: Churiah, Gina, Ke\'Aire, Dion, Anastasia. We will be back!','2018-09-20 01:17:40.169000','2018-09-20 01:17:40.169000',5,'dyllan jenkins','https://lh3.googleusercontent.com/-fV3_ZrKxQHI/AAAAAAAAAAI/AAAAAAAAAAA/JzMZ6AA-5jg/c-rp-mo-br100/photo.jpg','3511292162159714121',7591),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur-2UG0aCMG5-tpYeAzNVoovCDR3cBXfOADghWITrbe88brreBgm9CLCJ2eyZbZtzgDuJzoxBoS1WO9zJK0vtI58Qhaw8','Great service!! Starting from the registration with Mss.Tanishia, to the nurses Mss.ShellyD and Mss.HearherG!! They took care of my daughter really well:)','2019-05-01 02:38:13.154000','2019-05-01 02:38:13.154000',5,'Martha Rodriguez','https://lh4.googleusercontent.com/-zwCrLEbYhpU/AAAAAAAAAAI/AAAAAAAAAAA/bHl0rC0tNP4/c-rp-mo-br100/photo.jpg','17898197009688164559',5755),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur-2Ywr--aYHcMwAeWZh4KMXjG-b4-owrG0BYaCQxOvSIgABq2toyIokFIJya2MJRjtuy9u1Y8Fv1QRHPMBM6PQq-kse0','Everyone was so caring (Carly, Sarra, Holly, and Thelma)','2019-12-25 07:19:34.757000','2019-12-25 07:19:34.757000',5,'Jennifer Alvarez','https://lh3.googleusercontent.com/-SglOQVjzrIc/AAAAAAAAAAI/AAAAAAAAAAA/ELCMH-PIAm4/c-rp-mo-br100/photo.jpg','12541597562633926366',304),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur-eDghU8LdulaiSHmZzstMusYAtO6V7p-iynYpOu68xCh2r7wjtrrNO8bMIAPGvx44pkAS4VZMg-DSCiVezJGrTwedRM','Super friendly staff and fast service. Very knowledgeable and outgoing staff. The facility is also very clean and well maintained.','2019-12-23 02:15:37.763000','2019-12-23 02:15:37.763000',5,'Daisy Hurtado','https://lh6.googleusercontent.com/-79YBIcnwzQo/AAAAAAAAAAI/AAAAAAAAAAA/OvnDdkJ6boU/c-rp-mo-br100/photo.jpg','2694018788013845459',5977),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur-HoDsmjrj7JJ_Rw0moAKJ_c_-p7-HuSwIVVgeFYJCDv7FGdQqGsybU7rfdCFnDfWcFBsN5AISuASYSmBOm_lNasUlzA',NULL,'2016-11-28 12:16:12.359000','2016-11-28 12:16:12.359000',5,'luis vega','https://lh5.googleusercontent.com/-VEiRfiND69E/AAAAAAAAAAI/AAAAAAAAAAA/CYJs7hIfXss/c-rp-mo-br100/photo.jpg','17394740196501090048',5160),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur-VZWjiY24BTPx7wno8yKEBZhUsTidVKSO2kkI5HL0fJS3J7U4rxNiBOpNbBemzzi7SAC3T8Otm9TMuuet3PEkouxNyo',NULL,'2019-11-10 16:08:49.168000','2019-11-10 16:08:49.168000',5,'Cadi Fortes','https://lh3.googleusercontent.com/-2OEdikqt9vg/AAAAAAAAAAI/AAAAAAAAAAA/9MZGW0XpLQM/c-rp-mo-br100/photo.jpg','3511292162159714121',7147),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur02px46NKqzZUrCyxlzs70Hvp2XsKUinbM0B3eacWj3HACjrA59Yz03DVbqgxojAX37-Zh5Yr67NBcfdpF8fkqnWb0s0','Thank you so much Dr. Dewaal, Kanyon, Erica, and Nurse Sam. You never go to the ER for a good reason, but you took such good care of my daughter, and worked thru every possible scenario to make sure we had a treatment plan. The patience, time, thoughtfulness, and care you provided were the best I have ever received from an ER visit.','2020-03-06 21:27:40.803000','2020-03-06 21:27:40.803000',5,'Michelle Ouerfelli','https://lh5.googleusercontent.com/-1bnjMtDwcIE/AAAAAAAAAAI/AAAAAAAAAAA/2vOUL1sI9aw/c-rp-mo-br100/photo.jpg','14748677429039074158',18854),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur072g-v7Ct2CBeJWjHDVh6ntwvF6y98ofsWTHAMqsXxPjZxjRkir7caMDNF5MXKlJLwa1fKTm67PVXdHZf2A-YkSEHKI','Very kind and hospitable staff. Very clean and elegant facility as well','2019-05-10 01:24:43.710000','2019-05-10 01:24:43.710000',5,'Jahn Daux','https://lh4.googleusercontent.com/-4_LmYkrayIs/AAAAAAAAAAI/AAAAAAAAAAA/A08kBj0xqvM/c-rp-mo-br100/photo.jpg','2694018788013845459',6161),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur0cbICttiRDLY0JxRkxshtdAq8JxVm36NHJ-QSsT0YJjDn8GXOnes4ns7hDNcRteiXO43HqGtjuJq070h7JH4e9J_-O0','Great staff','2020-07-21 06:14:14.882000','2020-07-21 06:14:14.882000',5,'David Nachega','https://lh4.googleusercontent.com/-Z2YPFm_xviU/AAAAAAAAAAI/AAAAAAAAAAA/pJZQPn2alOs/c-rp-mo-br100/photo.jpg','14748677429039074158',21640),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur0hhw7d5kKRKhmcXMQ_DibjQBwuqKKid4EJr0dEcdhWcjo7nlvD1SjlZaiTd8ycR0KQRKfe_WQlk8Tmm5tQDA3B_HBH0','Amazing staff. Clean rooms. Charismatic dr. All around perfect. Thank you Peter , alvean really sweet lady , Marcus. ( funny guy ) and Jocelyn perfect perfect perfect staff','2019-07-31 14:28:41.574000','2019-07-31 14:28:41.574000',5,'Dj Bozo','https://lh3.googleusercontent.com/-A5GPzFBCBE4/AAAAAAAAAAI/AAAAAAAAAAA/opko1-WoP4I/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur0phHqlHSX6yCwwhlAOPijWplADjnUbLfzusMn9tBk4tAB2qEnlDbMmdEqu7odaf9y9FOtAIpbrEMWOLMJqtjRgeWmHI','Professional, friendly staff and a nice facility.','2020-07-27 21:02:00.209000','2020-07-27 21:02:00.209000',5,'JG 750','https://lh3.googleusercontent.com/a-/AOh14Gjflo4wJYzrLfeAV32TOguCO659wVcGUhmL89WpLQ=c0x00000000-cc-rp-ba3','17394740196501090048',22065),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur0Schz-FVqsW6y7hjexA4y8XOXBBnGQhJljK1X7A43waYDGDu3pljKGMyj1M0eCuIak7c8CpdvMHAOirQw1segdQPnwQ','Kendra was very welcoming and nice and nurse Jacob was very kind and Dr. Vakey very helpful and Super nice!! They got me felling better than I how I came in 😊','2020-02-15 23:03:32.133000','2020-02-15 23:03:32.133000',5,'Sacora Lewis','https://lh4.googleusercontent.com/-DozVqeUZQg4/AAAAAAAAAAI/AAAAAAAAAAA/Bb31hWIAzco/c-rp-mo-br100/photo.jpg','16590124370714063921',13852),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur0yihMFOJgR59EAg-WVEWva6iBj3H4Fhyr_u1Xz4kHK_o22iQorJqkXnRstecO3CeXejCcXrryX9gsKf0trHvRH1ziRc','We had a great reception when we arrived. They were very professional and courteous. Thank you Signature Care','2019-04-15 15:47:48.545000','2019-04-15 15:47:48.545000',5,'Brent Echols','https://lh3.googleusercontent.com/-qU0VrpM-g6o/AAAAAAAAAAI/AAAAAAAAAAA/vHOSS6BcjsE/c-rp-mo-br100/photo.jpg','8626688543755174284',8510),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur0zUQSv0FA3SjCRcuZT-ZWHvCNAXiQIhpNVYgHGTq83uZuwpMbtDNWCXTWISxKSYBKVblF3H49L54FPl2zyjXHQm4Qcc','I’ve been to this facility twice in the last 3 weeks, once for my husband and once for myself. We were in and out within 45 mins, and yes there were other patients. All staff from the nurses to the doctors were friendly and did their jobs well. They listened, and allowed us to be involved in our care management choices. All around great service.','2019-11-25 11:22:36.651000','2019-11-25 11:22:36.651000',5,'April Brookshire','https://lh6.googleusercontent.com/-ZLPS5brK2Wg/AAAAAAAAAAI/AAAAAAAAAAA/ABP7-oQdJnQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8081),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur10PZ_mtqwl_iA9grnjYWxbkbCCWfv9VOay5Y5w_Xq7XTxoZXy0v-6Ruu51fU9LDQyxuhlQLuU1_srp9VMMDesm1426Y','Great experience here. We came in with my husband’s chest pain (right side so not heart related). They was no wait, they ran all tests necessary to ensure it wasn’t anything worse and then try to figure out what was causing the pain. Lisa, Corey, and Allison took great care and were very kind. They got him discharged quickly once everything was resolved. Highly recommend!','2019-08-30 01:09:45.960000','2019-08-30 01:09:45.960000',5,'Gayle Moore','https://lh3.googleusercontent.com/-_uXLgD1Yd04/AAAAAAAAAAI/AAAAAAAAAAA/5gUkxI9tDVA/c-rp-mo-br100/photo.jpg','13486358490203335051',843),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur14IHsQr4jupl7uglLtO3k6NP2LmSDfOBf5Ojedc6Hodl5T9tc61tDnE7XMvj_O5SacWye2sLhv7A9HzfNhrDsGoz0WQ','Why tell us we can come with no appointment on the website and the. take people first with appointments. I wouldn’t made an appointment. In regards to covid testing. Idiots','2020-06-19 18:26:46.488000','2020-06-19 18:26:46.488000',1,'saagar shah','https://lh4.googleusercontent.com/-o3OMqkODqYg/AAAAAAAAAAI/AAAAAAAAAAA/3xkskMH_h_U/c-rp-mo-br100/photo.jpg','14904078213800803294',20979),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur1A-qAVPhijHq5YY_i5JtPIa5zrWEsL8IPhUEEE5xRegPSbagCZKAGOiUuBrhtd_Mfvi9H1f57ll2N22ylO2Nc_SSqW0','Whole experience was very good, they did everything they could to make sure i was comfortable! Everyone was very nice and very knowledgeable. I saw Dr. Vakey he took great care of me! and i never had to wait for anything! Lorena who checked me in was super sweet as well. My nurses Brad and Jeri were great as well! plus Becca and Jovana. Everyone was great would highly recommend and would definitely go back.','2019-09-08 19:38:18.946000','2019-09-08 19:38:18.946000',5,'Madison Krupa','https://lh5.googleusercontent.com/-IrNHvo_S2D0/AAAAAAAAAAI/AAAAAAAAAAA/8jJbn9uw_PU/c-rp-mo-br100/photo.jpg','16590124370714063921',3216),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur1iOVY3jzudgkLYKxUXWSs4Wx8OEhL4arvkrwb7dydjYF85K72UEOdXS39xkw2aicX-7O3S-SLgHriLk0EDZ1YEirRjM','So I walked-in for a Covid test and was initially advised to make an appointment online due to restrictions. However, after giving the Admins, Elisa T. & Brodrick R., puppy eyes and asking them to double check with the doctor for an exception, I was allowed to be seen. Great interaction and friendly service.','2020-08-05 09:23:26.740000','2020-08-05 09:23:26.740000',5,'krena c','https://lh5.googleusercontent.com/-UtUJr45hPhQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclifviIn3da9_5RYJZoSOGsq9PnCw/c0x00000000-cc-rp/photo.jpg','8918455867446117794',22264),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur1mjj1_l8DClKNVa749kTRS0GRfMwd-w3Se8ylYhYECb1K0QuZiMvC5oB5doDckykMAFj14HLDW142WmYqMJC69g02GA','Excellent care! Dr Zheng, nurse Josep, Shaylene, Lonnie, Alyssa treated me very well! I will always come back here!','2020-02-07 17:00:45.668000','2020-02-07 17:00:45.668000',5,'Kristine Jones','https://lh3.googleusercontent.com/-PruFc3ORmm4/AAAAAAAAAAI/AAAAAAAAAAA/YbJWvrEuDiE/c-rp-mo-br100/photo.jpg','8918455867446117794',14839),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur286OrOLQhn456u3sKwT3ppRstWsHaP7CaFCVT4gkc76uO_qFCYluuWh9V9GyFi__mC5J5kgobJmDuQkpoReRrf5zK8s','Excellent customer service. Very friendly staff!','2020-06-20 21:57:53.779000','2020-06-20 21:57:53.779000',5,'jaime marchand','https://lh5.googleusercontent.com/-NB54tAzEDic/AAAAAAAAAAI/AAAAAAAAAAA/RSk1SivlNCA/c-rp-mo-br100/photo.jpg','8918455867446117794',21225),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur2FVW9SkteNwtoruWHkA9wnCwFvfkVlgVvGZ5qv-T00WgCTeWAEe2v7xi49sMf6PKH56-P_NeXXw3DFVbzBfm72xHv98','Service was fast, professional, and very friendly from everyone including (sorry in advance if I spell names incorrectly!) Dr. Role, nurse Katie, and Delfino at registration. \nWe hope never to have to be back, but would go here if we had to! :)','2019-05-13 01:55:54.682000','2019-05-13 01:55:54.682000',5,'Ben Randle','https://lh4.googleusercontent.com/-_T-1iBW5pxk/AAAAAAAAAAI/AAAAAAAAAAA/h13M7calAXk/c-rp-mo-br100/photo.jpg','16891069708558046635',4281),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur2k2i8SX7PEpX5PMEavXijSsSclaADwfqG-ITt2g-TYVzjupLMwFbozhEvu9XWr3P4Tad3UDi4J_b8DUozoJsdBSloCg','The got us checked in and seen right away. They were so patient with my scared four year old and we had the best experience! Every person we met was genuinely friendly and professional. A big thank you to Dr. Henderson, nurse Alvean A, Tricia, Sean and Jesus! It was clean and inviting. We were offered warm blankets and snacks! Highly recommend!','2019-08-18 02:23:22.978000','2019-08-18 02:23:22.978000',5,'Meri Amber Pace','https://lh4.googleusercontent.com/-pfPghGqYwEA/AAAAAAAAAAI/AAAAAAAAAAA/w-NRMi3oJlg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur2KddfmVM6EyAxLM44fuUuFCM7sCw3A3nAWZlrO0SvnV4z7DINOOvCJ4-ZinN2KDO_221oFYlJv8hdHKjpswgg25ASos','I really wish I could make this my PCP!!! I was comfortable the whole time, and at ease. The staff were super polite and very accommodating.','2020-02-25 20:17:01.697000','2020-02-25 20:17:01.697000',5,'Key brooks','https://lh5.googleusercontent.com/-f0h5CKMCntA/AAAAAAAAAAI/AAAAAAAAAAA/gpSJy7sfkLA/c-rp-mo-br100/photo.jpg','12541597562633926366',13343),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur2N2QIxpIKh6DK2Ru_goDa1rNKBlnvyPKdpNGffIK97GxC-XEa02_GhgtkSTZakXJoI4xDfCD99dEkI9c-ZHYZ4vC1P0','Very clean and the staff is very nice. Thank you fir taking care of me. Facility clean and comfy. Went at 1am and they received me without hesitation','2020-01-11 11:34:05.725000','2020-01-11 11:34:05.725000',5,'Mariana Martinez','https://lh6.googleusercontent.com/-KwINJ0kqmlc/AAAAAAAAAAI/AAAAAAAAAAA/x0MQjdsMfsg/c-rp-mo-br100/photo.jpg','16891069708558046635',9500),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur2Wky3Y4juQ1RHLNHNy3G57fe9WbHLJNwZWIkaiIpfAx8xb02b3-0OuYHBqmNdjEXGWF67HgLxHbKI6oVf4cYPVWXfsA',NULL,'2020-03-13 16:05:50.765000','2020-03-13 16:05:50.765000',5,'robin delgado','https://lh5.googleusercontent.com/-qPpxQdv9ulc/AAAAAAAAAAI/AAAAAAAAAAA/-miWxowIR6U/c-rp-mo-br100/photo.jpg','16590124370714063921',21029),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur3IdFtwlmuXLv5sDMOzYtUTW994wuVUkTcS376blCyfxI2AZOLQnfAKTtfMRhRtqAgwijEYdJJKpsbwmcOlmlrpWE8eE','Tricia Erika And Heather Did an amazing job making me feel extremely comfortable on my visit.','2020-03-09 11:58:22.959000','2020-03-09 11:58:22.959000',5,'Carra Watts','https://lh5.googleusercontent.com/-D_ZmVjbk1Ms/AAAAAAAAAAI/AAAAAAAAAAA/dMcTD4Ga8Hw/c-rp-mo-br100/photo.jpg','16389487648212004696',13721),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur3nSiLZvqpJqSd9t9OrrzbFbB0wIQiDslXKdYoF6hY8ute3LtqOKKdG25DFVzgRo0z7R5VkQkUkzjNww3D5sjppMNgz8','Don’t waste your time. They lie about everything. Worst place by far!!','2020-06-22 01:05:42.865000','2020-06-22 01:05:42.865000',1,'Kristine Perales','https://lh3.googleusercontent.com/-6HykrxzMvas/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl5W1rdXqfNxBZmFZxlb7bTRFVseg/c0x00000000-cc-rp/photo.jpg','16389487648212004696',20999),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur415DxusTMddbTYWtM3pOVG_6V9qUvdmel8lXd_gCqVcjoO0op8WVAXDPwXOO5ZjqWX0FE_6FhkTKr9lLdIZO-LQ4t1g','Wonderful Team! Dr. Pham, RN Racheal, Rad Tech Jessica, and ER Tech Kat and Ashley at the front were wonderful!','2019-02-09 00:19:33.932000','2019-02-09 00:19:33.932000',5,'Ashley Skripol','https://lh6.googleusercontent.com/-HjJaAYXH96g/AAAAAAAAAAI/AAAAAAAAAAA/xsm47pALkro/c-rp-mo-br100/photo.jpg','17898197009688164559',5860),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur4NhErZyMm2TkMR8YJlgxkrWQIvLR3OfpEessrMIwGDrMYn22zrA7tSRRtlZTtnsu70Qr1Un72_b8GdR1Alza_KyYiU4',NULL,'2019-12-20 07:24:50.653000','2019-12-20 07:24:50.653000',5,'Allie Bonilla','https://lh5.googleusercontent.com/-BfrLwS6d1ks/AAAAAAAAAAI/AAAAAAAAAAA/DDuIQ36uaEw/c-rp-mo-br100/photo.jpg','13486358490203335051',681),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur4tizyfhDRT-0O1qAfpzZxWvXD5X4eJDizrWMguEvUoMY60cbah71Q0Nvy1zq6fu0pBnMg3R1guF1mInouYKf_A8eN1Q','February 27 my mom fell in our living room and injured her foot and knee. We got in the car and I called they checked her in over the phone. so she could be seen as soon as we arrived. We came into the waiting room they where so welcoming and nice. They got my mom into the room she was seen in under 30mins. They made sure we felt welcome and even offered snacks, drinks, and pain relievers for my mom. This is a place I fully recommend. Thanks you physician Farooqi, Nurse Remingtor, Radiology Jessica, and Registration Angela.','2020-02-28 04:45:13.538000','2020-02-28 04:45:13.538000',5,'Sadie And vee','https://lh6.googleusercontent.com/-jbKDu8h9A8A/AAAAAAAAAAI/AAAAAAAAAAA/sT2tAkvX_iw/c-rp-mo-br100/photo.jpg','2694018788013845459',14205),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur5iV6id6CXMtEyNVeTi-FlIC83-6TZO_kQ3uk35BoztcY4mJ81ERlRQNAjncnrBzoCwT08ktkxlyzceNbLx4OidkJWQc','I walked in this place expecting a long wait being that it’s an ER and it’s just natural to think you’re going to be here for a while, but I was genuinely surprised. I was recommended to this place by the Medinet clinic near by that I went too for two days without them being able to help me. From the moment I walked in this place they could see I was in obvious discomfort and before I could even sit down they had someone taking me back to a room. The doctor was in the room immediately (Dr. Edwards). Within 10 minutes I had an IV in, EKG done, and a breathing treatment going. Everyone was super professional, and highly skilled. I felt that I was in good hands every step of the way. The REG Mercedes as well as my nurses Robert, Nikki and Jesse especially, were very attentive and everyone\'s bedside manner was exceptional. I cant speak high enough praise for the staff here and how they made me feel comfortable in an uncomfortable situation. Being my first over night stay in a hospital you can imagine I was on edge. They also kept me informed throughout every process. The facilities as a whole are pretty great, more than I expected from a place on the neighborhood. I would recommend this staff to anyone who will ever need their services. A++','2019-01-30 18:09:16.699000','2019-01-30 18:09:16.699000',5,'Joseph Harris','https://lh6.googleusercontent.com/-p7dl9_c6hso/AAAAAAAAAAI/AAAAAAAAAAA/IuOfHd9zSqA/c-rp-mo-br100/photo.jpg','17394740196501090048',4730),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur5KtTxipq5IhkrbQSHa7yD5hyjief6AawaP0542BN1VH0y67KrQz6tQLwmPYnrat5BHOZjHGY3XCpL2p2Z9NwTEPJZhY','Awesome\nDr.S. edwards\nReg: maya\nNurse: kristina','2020-03-13 14:57:31.885000','2020-03-13 14:57:31.885000',5,'Catina Haywood','https://lh5.googleusercontent.com/-KwxT2QFKaOs/AAAAAAAAAAI/AAAAAAAAAAA/KgJyD7a067I/c-rp-mo-br100/photo.jpg','12541597562633926366',20907),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur5Tgn3Q21OzW8oTxwTw_71SH_vI22iKjtPMBewSsaItirXche3l8zIseT5LKLpj1ad2_brRXBBYjdfrgthfCgytnte84','(Translated by Google) It is truly incredible that blessing exists a hospital like this within the reach of our community🙏🏻😍. They treated my husband very well, excellent, you can say. Friendly staff, very fast, and efficient. And the prices wow very comfortable definitive the best ..\n\n(Original)\nSon increíbles de verdad q bendicion exista un hospital así al alcance de nuestra comunidad🙏🏻😍 . Atendieron a mi esposo muy bien., exelente se puede decir. El personal amable, muy rapido, y eficiente. Y los precios wow muy comodos definitivo lo mejores..','2019-07-10 15:39:12.746000','2019-07-10 15:39:12.746000',5,'Gabriela Mencia','https://lh3.googleusercontent.com/-Ggcbnt6LK-g/AAAAAAAAAAI/AAAAAAAAAAA/h_ngNtsPwdE/c-rp-mo-br100/photo.jpg','17898197009688164559',22715),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur6awL8mS281cLSEL6uUJXBaVXh7AGFszUz-7mhhMjIhddNR9mmES-QEy-8GujGy6jC6Y6XpNFuS2jX4PHGV2U5U9uCx8','Thanks to Dr Smith, Dr Miller, my nurse Jordan, Jonathan and Cynthia. There were others l would like to thank but I was so uncomfortable i didn\'t think to remember them at the time. They took very compassionate and kind care of me. This is the way an ER should be. As soon as I made a decision to have recommended surgery they transferred me to the hospital. Special thanks to the consuting urologist Dr Hoang.','2019-03-26 14:43:58.015000','2019-03-26 14:43:58.015000',5,'Pam Bortot','https://lh4.googleusercontent.com/-dIKQSl0OQts/AAAAAAAAAAI/AAAAAAAAAAA/Ld7G9K4sNMM/c-rp-mo-br100/photo.jpg','14904078213800803294',2154),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur6FqbBI_Hu2T9LQWaUSZ0LeQE_whRQNCB6OcU3Netl3va5C5CNtXAYW0JehmxBZvMASzFiTy-7WxIMj_1_1SlGij1Hu8','Liza V was very nice and helpful. Dr. Huerta made me feel better about the condition I came in for. Exceeded my expectations for a urgent care. Thank you!!','2019-10-28 03:28:01.270000','2019-10-28 03:28:01.270000',5,'Judith Piedra','https://lh5.googleusercontent.com/-IkvyFiGZ2FM/AAAAAAAAAAI/AAAAAAAAAAA/ueUk9rfIj6Q/c-rp-mo-br100/photo.jpg','13486358490203335051',758),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur6JSKfBqvRrLihtYc1FcwATn6aKisLl_LmWEmASqBtYYZoE4xDuJLjhaOTwJP5yQZuVgMF344W1HE_7A2Ps5_0vFKG8M','Great place! Great care! Best experience with ER!!','2018-08-09 18:42:29.701000','2018-08-09 18:42:29.701000',5,'Aaron Rosas','https://lh6.googleusercontent.com/-PrzdOdJd5Dc/AAAAAAAAAAI/AAAAAAAAAAA/5g6iqxT8tX0/c-rp-mo-br100/photo.jpg','3511292162159714121',7648),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur6mcmKuhvZVPEK1ytmH-gEzzW4DGjdxwptDfGD9hvsbi1vE4XiSrxoO_uBYbrapCMQUXnDoBW70HowxTS67Ej910uwnA','I visited SignatureCare for the first time yesterday. What a wonderfully better experience. They were able to see me within 15 minutes of arriving. Church and Agnes were able to help relieve my symptoms and Dr. Souman had a great bedside manner. Everyone (Shay, Lisa, Dion, Keaire) was so helpful and seemed like they really enjoyed helping others. Would highly recommend going here over PP. Thank y\'all so much for all the great service!','2018-10-26 19:37:28.622000','2018-10-26 19:37:28.622000',5,'Dustin Dickerson','https://lh6.googleusercontent.com/-Ro63IFMMshQ/AAAAAAAAAAI/AAAAAAAAAAA/R6v1q_Fpzbw/c-rp-mo-br100/photo.jpg','3511292162159714121',7565),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur7dW_1Oiaj474YAOiOb-RIfoEfjRIX1A_UcY0gLuaBmOP7_J7zOgNyIElUDhjJxx_yofatc0xAEhQnvHLRS-1-6H4H7E','Took my son in. Paid the $300 dollars and I was told that was it. Just got a bill for another $50 bucks, the total charges are just over $2000 dollars, for about a 10 min visit. Sorry when you say at the time of visit that I must prepay for services(300) that’s it I’m not paying you any more. This is why I refuse to give my ssn to ANY cash transaction at the doctors, they will try their bet to bill you more than agreed, then hold your credit score hostage. Do not believe the billing lady when she says it’s only $250, $350 if he needs a shot. Scam.','2017-12-31 12:48:19.562000','2017-12-31 12:48:19.562000',1,'William Summerlin','https://lh5.googleusercontent.com/-kA6bjyUFuPI/AAAAAAAAAAI/AAAAAAAAAAA/ly7NcUQ0qSU/c-rp-mo-ba3-br100/photo.jpg','6521947413723274945',8345),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur7f0zlK2lhW1ecH4V0ndnk4NbdZ-U8vOSWEHuJeEyEM-mFgi_mMRvs_ncGIf2ftdPoHLxlBJyD1ENiEMKCFEsaHcrp4s','Quick and easy. Great staff:)','2016-12-28 14:20:54.729000','2016-12-28 14:20:54.729000',5,'Kiara Burns','https://lh3.googleusercontent.com/-29op1rhuS_Y/AAAAAAAAAAI/AAAAAAAAAAA/3Vb0TTiBkOk/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1926),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur7q77G4GBw8wHJfhBzUnHu8OsliXrxG4Skemvp5R5ACVk1SIvBIJZ2B0IaAjV2WMYYbbQNjj9JfEZnIyTOk-emxqNK-w','Exceptional care as always! Kim, Kristina, Bekka, Quyen and Dr. Estevez were amazing and very caring with my daughter. Best Ever!','2019-06-23 20:40:15.847000','2019-06-23 20:40:15.847000',5,'Ashley Skripol','https://lh6.googleusercontent.com/-HjJaAYXH96g/AAAAAAAAAAI/AAAAAAAAAAA/xsm47pALkro/c-rp-mo-br100/photo.jpg','12541597562633926366',493),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur7S9zA_vI7Ufovop4VzHiSbRoLOcyBZ_RmsdmvtYQ93n67qgj_W68opdIdMEdSA3K7pJpim5_1Kn1BrDDtnUKuGu_LU8','Brought my sister in law in today sick and got her back very quickly and staff very nice and waiting area ckean and fresh','2020-02-17 22:18:25.232000','2020-02-17 22:18:25.232000',5,'rebecca garcia','https://lh3.googleusercontent.com/-hwG0ym5E9NI/AAAAAAAAAAI/AAAAAAAAAAA/Vrrqh1aIyac/c-rp-mo-br100/photo.jpg','3272657195432704501',14347),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur7tA5CNZVbJhikQwDho7EBHLGl9lcF663J8G_bBUmBBNfPxLn5snk6AzChNEIvhSf6MozB1iF89a1Y8zEk09YFAUgI3U',NULL,'2019-09-20 04:26:49.074000','2019-09-20 04:26:49.074000',5,'Grace Tomas','https://lh5.googleusercontent.com/-SgHdtzKjjq0/AAAAAAAAAAI/AAAAAAAAAAA/bHrxzW-1fLE/c-rp-mo-br100/photo.jpg','16590124370714063921',3192),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur80SPxcPEXU9CmNVXyORSzaRf5s4L8CBIWQGv_cqouBtdV1ZreU6rzfHH36gaGQXe6yp8WiGPVf2P5xFI7q5h3ZgMvEA','Very fast and good service','2018-03-16 13:11:48.190000','2018-03-16 13:11:48.190000',5,'A j','https://lh5.googleusercontent.com/-mLJm6fSThNA/AAAAAAAAAAI/AAAAAAAAAAA/9R6oh9W5wSc/c-rp-mo-br100/photo.jpg','8679688254631342173',8902),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur8C2gkf4ZTNjjW_alVHeSew6kzDtC49FPreKqMbAKvRmR2-PsfQxoeEyUGvWGJMjSHdzMgcyJx7Qg8hf7Y_jYiar5Z2o','I have visited the SignatureCare Emergency Center twice and both times I have been very pleased. They literally saved my life. I was in anaphylactic shock and my air passage had closed as I walked into the facility. They immediately brought me to the back and did everything needed to save my life. I am so greatful for the unbelievable kind service that every single person that worked here demonstrated. I couldn\'t thank them enough. The second time I visited was not as urgent but was treated with the same amount of care as before. I couldn\'t have been more happy with SignatureCare and the level of professionalism and care that they provide. Thank you.','2016-03-02 19:51:11.524000','2016-03-02 19:51:11.524000',5,'Sherrah Chester','https://lh4.googleusercontent.com/-4-ZPRPz3BRs/AAAAAAAAAAI/AAAAAAAAAAA/1UOn31-VhMc/c-rp-mo-br100/photo.jpg','17394740196501090048',5275),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur8cYVaPeEme3BXvhZOqVe8ubtxgDi9EJyPRDZ2_tb5RqOxAb1pzQ8eVyebsgMXx5kioRuIqd7iWXfQfbVYfagJaHw7Ck','All the people at SignatureCare are great caring people who takes your health as serious as you do! Fast, friendly, caring service for sure!!','2019-06-05 19:57:58.724000','2019-06-05 19:57:58.724000',5,'Rikki Ford','https://lh6.googleusercontent.com/-xaH5I1KEG5A/AAAAAAAAAAI/AAAAAAAAAAA/68Qz8BkNYKY/c-rp-mo-br100/photo.jpg','3272657195432704501',6952),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur8r0y_avsZRvSD25CRF9aZMQss1agQcqqs1xDyPJFFJIY0sDwlkmzAkADxGRbUnAJUMERo65l-GsXPIMQn7IwfIH1k7M',NULL,'2019-11-15 02:49:15.431000','2019-11-15 02:49:15.431000',1,'Tim Griffin','https://lh3.googleusercontent.com/-efx7JbSz5ps/AAAAAAAAAAI/AAAAAAAAAAA/LH0TbvOJU8Y/c-rp-mo-br100/photo.jpg','14567670160750071148',1189),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur9MoU-oqFTx4jmTtnii6gHHUmHlJa_q-wPM3dyHEooagrm2RKyfi1LNJdduKXyynEb8fGtqg0RThpaS-QjnAYzG5j_4s','Signature Care ER is great. Patricia at the front desk does a wonderful job of welcoming you in.Dr.Nguyen was knowledgeable, kind, and calm. He put me at ease and relayed info in a way that wasn\'t alarming and easy to understand. My nurse, Alvean, had a great bedside manner and was a wiz at the IV. Last but not least, my tecnician Chris, kept me laughing , all while performing the tests needed. If you have to be sick, there\'s no better place then here.','2020-01-26 22:24:19.069000','2020-01-26 22:24:19.069000',5,'Shannon Kittrell','https://lh6.googleusercontent.com/-vkS2WneGWPk/AAAAAAAAAAI/AAAAAAAAAAA/iZU1Ew7SQBA/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',10175),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ur9z50tBrp6N1qWtY4k-PXB8sjrwW4vmfEPnO0kt-kI_fUrfdetx4qeidcNzt0pqQ0GkgqZIBHenhMyMRSKO6na5wZJnM','Absolutely amazing place. I will not take my babies anywhere else. Very friendly staff. NO WAIT. Fast results. Never disappointed!!! Best Hospital/Emergency center in Odessa!!! Manny & Dr. Osiecki are amazing and very professional!!!','2019-02-14 16:03:45.043000','2019-02-14 16:03:45.043000',5,'Melissa Guerrero','https://lh3.googleusercontent.com/-shDkdt5i-nM/AAAAAAAAAAI/AAAAAAAAAAA/iBnkrU18wh4/c-rp-mo-br100/photo.jpg','6521947413723274945',8308),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ura3iX1aSuvtXSuTfiOp2kxzYNOFNjY-kdwlcQWl2k9s6HeR6d-hlhXHSmF7JbU-tG8UR0OXwbSbFRRCMN_lRGkXy_AVQ','My daughter was ill and lived out of town and I suggested we should come to signature care emergency care center on mall drive and as soon as we enter the clinic the staffing was awesome and on point with each and every need. My daughter and I were so thankful to have such a good experience at the signature care center. Dr Yost was was attentive to my daughter needs and the nurse Kara stayed with us to make sure she was comfortable and Shannon in X-ray, Courtney, and Shelbie was a perfect customer service lady! Signature care emergency center made my day. Thanks staff!','2020-02-20 23:50:01.956000','2020-02-20 23:50:01.956000',5,'lullia Jones','https://lh4.googleusercontent.com/-apbhlPHvoeA/AAAAAAAAAAI/AAAAAAAAAAA/8JcLxs-fiws/c-rp-mo-br100/photo.jpg','3272657195432704501',14335),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urA3RlTDh24KeZB9ytSgAuiTamLXCzbtzLxAU9a8tDRRr0E77Mg7yjeJ9hxPICFThwjYVFnfNwHkalG5C37lBhC7sow3Q','Keera, it was great','2019-06-08 21:49:18.311000','2019-06-08 21:49:18.311000',5,'batool naqvi','https://lh5.googleusercontent.com/-aB5KWXSKC3o/AAAAAAAAAAI/AAAAAAAAAAA/P7cbj-c5Q1M/c-rp-mo-br100/photo.jpg','17394740196501090048',4669),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urAA7Bjwm1u9-iHX0k4R5LOjDCM1gUCya3llZfp9kurDDSbzVpoV7cP0vQt6Rt5SVhwylrNl2jl4XnbzX3qagDAo6dR78','The staff was very friendly, short wait time to be seen and treated.','2018-09-13 19:18:25.008000','2018-09-13 19:18:25.008000',5,'Clementina Nunez','https://lh4.googleusercontent.com/--UwlJA-QK74/AAAAAAAAAAI/AAAAAAAAAAA/12q_-OYJE_s/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1511),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urAC2IQqamhWT3fGjwD2CVYdvDGjH96PWtu8Kxr5I51cja8J7acdMDy1KUDxfxExI8KThi4_mAuD45sEITyNUzEc53ybI','Robert and staff was EXCELLENT! I recommend my family and friends to signature care the service is great and the staff cares.','2018-09-21 23:43:38.952000','2018-09-21 23:43:38.952000',5,'Shakie Howard','https://lh3.googleusercontent.com/-Vvqe6g4o96k/AAAAAAAAAAI/AAAAAAAAAAA/-khOhKMr7XY/c-rp-mo-br100/photo.jpg','8918455867446117794',9235),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urAgSpTBFJuDMaflcCut8zecbtvP-YyYK2fWZVMKcqtTYBC820GynsOqcUIdDnYHD-XV6c1hd0GGgqV9k3HV87zzWiRh0','Ms.Victoria greeted soon as the glass doors open and explained everything to me at front desk. She also asked was i okay. Everything went sooo fast. I wasnt even done filling out paper work when i was called to back by joseph who did my blood pressure and offered me warm blanket..and it was warm lol..the doctor was very very helpful and understood my pain..i love this place...i feel better already.','2018-04-30 18:10:50.956000','2018-04-30 18:10:50.956000',5,'Amanda Lawson','https://lh6.googleusercontent.com/-TgqJ-BaMLyc/AAAAAAAAAAI/AAAAAAAAAAA/uQOsPzzYolA/c-rp-mo-ba2-br100/photo.jpg','14567670160750071148',1626),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urAgwYkab2sl6phhZzoziFPtM34Tju2yWCYq8yb5OIo_vhpQp4azLDcqKf442bZsZ2OyVgnQyjlBiptkM8ev6lA5xpo6U','Nice facility and friendly staff especially Stephanie !','2020-01-28 05:26:36.524000','2020-01-28 05:26:36.524000',5,'Reymundo Rico','https://lh6.googleusercontent.com/-HSSmu1mcRys/AAAAAAAAAAI/AAAAAAAAAAA/IHAJdNCJQbU/c-rp-mo-br100/photo.jpg','8679688254631342173',14784),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urapkEbMfDiiwAFIIwPYZ1Bx4KR6QM0VYNcNEf3dLaeoyyIzM6ovM-mSnL8BLwdL76sstoowbi1LxwvFMSh9_xMZ_c9jg',NULL,'2019-08-07 18:31:44.911000','2019-08-07 18:31:44.911000',5,'Daisy Chavarria','https://lh3.googleusercontent.com/-3fJsNG_cdWo/AAAAAAAAAAI/AAAAAAAAAAA/60IdNiPvqJQ/c-rp-mo-br100/photo.jpg','13486358490203335051',864),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uraq4IjA2qr6F2ml5kcdFD5CoZ_-DzsckTaPZMacYRBt2q-VIDskLhZR-bdBB4Idh45jgettJGgjPDbt60BKew9k-OOxA','The staff today were awesome! They all had a welcoming spirit. They were all attentive, professional and very informative. We were serviced right away. I highly recommend this facility!','2019-11-05 05:00:44.565000','2019-11-05 05:00:44.565000',5,'Tawana Williams','https://lh5.googleusercontent.com/-Lgqweinnl9w/AAAAAAAAAAI/AAAAAAAAAAA/gyYvzT6FFZA/c-rp-mo-br100/photo.jpg','14567670160750071148',1202),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urArWQbjLZa6RytcCg-bE8wVJjQSvxtAu_rU4yD0IBdLW8yXowe8Jt9dOaxf3ddLp6xVxtGO3WqOUcDs_INo8lE7xPCG8','Kat, Barbara, Dr. Gutfreund, and Frank were all amazing! Signature care ER is the best!','2019-05-02 09:11:53.705000','2019-05-02 09:11:53.705000',5,'Quintessa Styles','https://lh6.googleusercontent.com/-TJuq08RKVCc/AAAAAAAAAAI/AAAAAAAAAAA/xzTfcGgwkr8/c-rp-mo-br100/photo.jpg','2694018788013845459',6164),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urAS7_KMXGX6BOhXspXopy_bo9_tN8ThLOviW2paK3SCmhixNHk_utENOxviO3JU4r5nwy-X9_zgXe66SqmhSvxS_xShE','I had an awesome experience at the Cypress location. I know it\'s weird to say that for a ER visit but it was !!! From the moment I stepped in the receptionist Genesis was warm and welcoming. Within 10 minutes from arriving, we were taken to the back. Jordan was patient and kind to my little one as well as Alvean and Dr.Harjai. They were very clear with everything that was being done for my daughter. They gave her a drink and snack while we waited and so her meds wouldn\'t taste so bad..lol. I\'m so glad this facility is so close. Would definitely let everyone know about it. I literally was in and out in less than 30 minutes !!! The place is clean....looks very new and offer snacks, coffee and soda while you wait. Thank you from one worried parent. You definitely put my mind at ease. 😊','2019-11-16 19:10:04.184000','2019-11-16 19:10:04.184000',5,'P S','https://lh6.googleusercontent.com/-IUa5Md2e-ls/AAAAAAAAAAI/AAAAAAAAAAA/1tAvgnVYyGk/c-rp-mo-ba3-br100/photo.jpg','16389487648212004696',2680),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uraVkYoONGzk739U3Xd2TvZh7Wk_RhMPb6XXLXG03wMvWaYAapCOxgdgezJCFIkTCHEqINgCdXaDdsSKmzyQlTUv61yE8',NULL,'2019-02-19 19:55:14.487000','2019-02-19 19:55:14.487000',5,'Desha Barry','https://lh6.googleusercontent.com/-YVKLgSead80/AAAAAAAAAAI/AAAAAAAAAAA/hVt-gw5EmQo/c-rp-mo-br100/photo.jpg','8626688543755174284',8551),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urB29dNgg4NmjgdIsEjM2z3ce-6PTzzwbuZ4tBSl4IfJzWc7gPj3pG6ToMZffx5mZronQ9CY8qfvYqL0Jtj8LJ6qIbgbs','Super caring staff, very willing to explain everything they were doing and why. We received great, immediate care here.','2016-08-04 00:26:40.902000','2016-08-04 00:26:40.902000',5,'melinda coen','https://lh4.googleusercontent.com/-P5l3bFkSbZ0/AAAAAAAAAAI/AAAAAAAAAAA/2P0Wg3hJmW8/c-rp-mo-br100/photo.jpg','3511292162159714121',7954),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urB7VDtSqFW_6CNllek18QfpzqlIS1pVOoI-XH-o_w3gT2MCA-Z9lJNhrjeyAN63fBoh3464u5yUlwvN2DTjy8dqTqZ80','They were super fast in receiving me, the front desk lady was super sweet as well as the nurse and the doctor. Highly recommended if you want fast results and caring staff !','2019-06-01 15:39:03.582000','2019-06-01 15:39:03.582000',5,'Leticia Loera','https://lh4.googleusercontent.com/-BAB-PUDA6MQ/AAAAAAAAAAI/AAAAAAAAAAA/Nbv4r67krrY/c-rp-mo-br100/photo.jpg','17898197009688164559',5715),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urB9CtcxaEs4wtI9_-uUb46qT0d6q17Mltj-flWxnnJyal9d89dv5_Mby-3vZK9ffn7nbsxe3UP6dehMYngafwCQ9woR4','great new facility, friendly staff and was super fast','2019-01-30 12:21:59.469000','2019-01-30 12:21:59.469000',5,'Keri Maddox','https://lh4.googleusercontent.com/-3uzZ1TyRNdM/AAAAAAAAAAI/AAAAAAAAAAA/dN_FofNC7fQ/c-rp-mo-br100/photo.jpg','14904078213800803294',2175),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urba_oX8VEr4d85mpqZgdJhTfPSbaPW0kmbHq1gqGMfd10ArPQvPCJu_ZxWll3VjebBzNJrK9ZDnnwXmQ2Q-TnmwL-zuQ','Dr. Vakey, nurse Jacob, Jaun, Kendra, and Dyveliz were very helpful and quick to get me treatment!','2019-10-15 15:34:12.041000','2019-10-15 15:34:12.041000',5,'Katie T','https://lh3.googleusercontent.com/-x1yGtOLJ5t4/AAAAAAAAAAI/AAAAAAAAAAA/bBkiJxX1Qgo/c-rp-mo-br100/photo.jpg','16590124370714063921',3139),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urBefqLYciMwjAjF9j3quOCyZCKEoz0AOwIwU09qa1RIeHtTX1cTGv23zxSgQfG10xxK80J7wC5DFDahaezPQzDx278lE','As far as private ER gose this is one of the best, they really care for you.\n\nLittle to no wait time I was seen right away.I would recommend instead of a traditional Hospital ER.','2020-01-17 20:24:19.013000','2020-01-17 20:24:19.013000',5,'James Arnold','https://lh3.googleusercontent.com/-Sf7kY1HRCJo/AAAAAAAAAAI/AAAAAAAAAAA/ERDWUrqtd7E/c-rp-mo-ba5-br100/photo.jpg','14904078213800803294',13629),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urBihGXhtp9NsMXoJ25rAbzePcxt-cPDdz1AhYyuqZ12STOSdNKz7SK3x05uph5ANtJn9SiLdm4E4zf_wfn54v3nk1wYw',NULL,'2017-01-11 00:47:26.515000','2017-01-11 00:47:26.515000',5,'Verena Lueg','https://lh6.googleusercontent.com/-nc9vk2a10og/AAAAAAAAAAI/AAAAAAAAAAA/tv8yS44MYVQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7904),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urBJOkKMp8Ia3BxXi6NuHaWoP1FrKM2q5tS6QoE3dU7Te0NNdHRFw8uc4smSmmIU1upQDFSipwHaX8sYJ2DU6E4R557I8','Karly, Jennifer, and Brooke are awesome and helped me with everything.','2019-06-28 01:37:00.133000','2019-06-28 01:37:00.133000',5,'Craig Him self','https://lh5.googleusercontent.com/-DgaVCGM4dVg/AAAAAAAAAAI/AAAAAAAAAAA/cHNt5nwPycE/c-rp-mo-br100/photo.jpg','8626688543755174284',8442),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urBJrTclr-wuWwF6FRncSimDMsO62jBPWgt-qtYLmA2hY_rP7CBU3yqdURpw7gno1rI80TJz-ReThRP7fQifCfnw0dcfs','It was good. Quick and fast results. They staff was friendly and organized. Will come back to this location if I need to do another covid test.','2020-07-15 01:10:47.129000','2020-07-15 01:10:47.129000',5,'Jose De La Rosa','https://lh6.googleusercontent.com/-cj1XbkFbCH0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckNWSkBARDjprQ1hzAY4Mk5IdTj0A/c0x00000000-cc-rp/photo.jpg','14567670160750071148',21886),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urbokjFoo3tsof7nGuy9wzKeltqaPge1cMZPbH_ClMSBv-3cY2_GcsA--W45EBTII9WDHIg9HUhlULJ9VZQ7S9j35p0t8','Nurse Rebecca and staff were really helpful and attended me fast, answer all our questions and even help my kids ease there nerves. We thank you','2020-03-18 00:19:06.823000','2020-03-18 00:19:06.823000',5,'Alicia Hernandez','https://lh3.googleusercontent.com/-dcTyNJBlqZI/AAAAAAAAAAI/AAAAAAAAAAA/lG-vRz76DDs/c-rp-mo-br100/photo.jpg','6521947413723274945',21164),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urBoXlKzs6AG5Fji768DwAcSI5gVp6wwpSw7RMpqTexLx7H9KXTyH0-iVj07P1uyTAA5XlTVIxVJ7boc3z0MbN9xmEqZ8','Deanna was welcoming and extremely nice during the process of getting me registered. Dr. Mauldin, Kat, and Joshua were wonderful and took their time with making sure I get the care I needed. Was in and out in a timely manner even though they were busy.','2019-06-13 08:02:25.832000','2019-06-13 08:02:25.832000',5,'Aaliyah Cauley','https://lh4.googleusercontent.com/-Swo2d8XRa0s/AAAAAAAAAAI/AAAAAAAAAAA/yrsoEkvL24g/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urbTjavzbchVFbj_jE_2SA7T27JUDCJQOqTAmHybq0QujkdBKfnQbubSf5HAS9PMFK_TVFbXoQu246JS29VFScmAuIVq4','It was my first time here and I had a great experience! I had Bretnie as my nurse and she was awesome! Overall would definitely come back. Thanks for the help!!','2020-03-19 14:34:10.073000','2020-03-19 14:34:10.073000',5,'Grace Petty','https://lh3.googleusercontent.com/-8NfXThE6JNE/AAAAAAAAAAI/AAAAAAAAAAA/JICHMDZ3GJg/c-rp-mo-br100/photo.jpg','16590124370714063921',21022),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urbTK6GetipXcWNOyEOQhVOa1UFMempKKb7wIKcAM8N39YPVXo0z1yx-p099owbf196EaKfg1_d5H43nc4FZX_k_47PJI','I made an appointment for COVID testing. Got in right on time, check in quick, professional! Highly recommend!','2020-07-25 02:10:29.984000','2020-07-25 02:10:29.984000',5,'Kathleen McCarthy','https://lh3.googleusercontent.com/-mkc9EAmJV_Y/AAAAAAAAAAI/AAAAAAAAAAA/aJyFF9_RZ3o/c-rp-mo-br100/photo.jpg','2077061009497551125',22845),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urC-RAEHwcNCXCj_o2dG3mEVAnNPhVi58A0v44gmB_7_7vixlkfeDTd6rovhJDfQ5zSvMAq90_nOf5TsHErzeIGSfhXMA',NULL,'2020-01-25 02:57:26.221000','2020-01-25 02:57:26.221000',5,'kayden fox','https://lh4.googleusercontent.com/-L7qxNg7Fbtg/AAAAAAAAAAI/AAAAAAAAAAA/OpuVLQL51y0/c-rp-mo-br100/photo.jpg','2694018788013845459',14265),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urc1VoSk0HQwZmbl_UJ_iOAn-lzAt6SUUe25TVJA_J2qAEvrEzLY-HjC4H0NZc0TWeC67ojcj-f0AgbNT9pU5VscdyPvs','It was very quick and everyone was nice','2019-10-28 01:17:05.375000','2019-10-28 01:17:05.375000',5,'Ayanna DeSouZa','https://lh3.googleusercontent.com/-DeUYGRQ8A_g/AAAAAAAAAAI/AAAAAAAAAAA/MzLPPCfDfRg/c-rp-mo-br100/photo.jpg','13486358490203335051',761),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urC5_bI2KMEYEdq9Qc0-6mZjj_uEUDMjFPTQAVi1okF6iVEaNOreC0RdE3jtmYG2lJKL0chKZvRDmRFuP9BbJNMhxjY54',NULL,'2016-11-09 18:25:34.577000','2016-11-09 18:25:34.577000',5,'dominique bell','https://lh4.googleusercontent.com/-D4zoHFKDS38/AAAAAAAAAAI/AAAAAAAAAAA/udg8MFpfj-U/c-rp-mo-br100/photo.jpg','17394740196501090048',5181),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urCdScoKmM_Zjkof5aI2_e-57RAPSkzLzVEji8LEE5qZnrsQF0z36h7EMP0R-5zxevcVP15i0kVYRALizjII22ivRzoCs','Dr.Vaagenes was amazing! Such a nice doctor, made the experience so much easier! Jessica the RN was so warm and down to earth! Scott and Ryan explained everything in detail. Definitely calmed out nerves! Lastly Cynthia the registration desk clerk was so great! She made our experience a great one. So thankful to have such an amazing team so close to our home!','2019-06-27 17:45:11.968000','2019-06-27 17:45:11.968000',5,'Ernesto Rodriguez','https://lh6.googleusercontent.com/-5-IIA0ArMbE/AAAAAAAAAAI/AAAAAAAAAAA/Z6VHPQab_1o/c-rp-mo-br100/photo.jpg','14904078213800803294',2122),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urCEFuxsLLuy2Ki--TLR6D4CSrCfpeQcBBedU2GGj-t5dXeZA5AltXOlfRxmhjpXMK-2HxLqonYFoa--YJiyHJ-NlgE_U','The service from the point of walking in the door, being greeted with compassion, listened to, and the common courtesy showed was First Class','2018-01-10 13:48:07.958000','2018-01-10 13:48:07.958000',5,'Billy McKenzie','https://lh3.googleusercontent.com/-UzBscZxGpTY/AAAAAAAAAAI/AAAAAAAAAAA/7I5fyS8glD8/c-rp-mo-br100/photo.jpg','17394740196501090048',4903),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urcKr-gJRY3oaKUjc5xJ4OZ9AyMO0PIGmyeg3SlGqEopK1Vk-UllEPHrFiQAO6sVv5d9mOeJksgR1wOEAQPLG52ZlcN6w',NULL,'2020-01-20 03:41:20.593000','2020-01-20 03:41:20.593000',5,'Jack Right','https://lh4.googleusercontent.com/-fHuTuYtynGU/AAAAAAAAAAI/AAAAAAAAAAA/gW5eQEh50Bc/c-rp-mo-br100/photo.jpg','13486358490203335051',13465),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urcL8ySeBfH2hmKBRuV1edcfWvQAKskBmiX9oW8DTHGJxw_3LgIdZ83D_OCMWH0_YIhBX8gZYOal818cANLb7Lub9fe9U',NULL,'2020-02-28 07:08:23.863000','2020-02-28 07:08:23.863000',5,'Dylan Robichaud','https://lh5.googleusercontent.com/-oA9kx0YLCVs/AAAAAAAAAAI/AAAAAAAAAAA/YVaYRmp0_9I/c-rp-mo-br100/photo.jpg','16590124370714063921',13818),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urCP6zPj9E0d2jOA_YZ8tSY1Wh-H_rsNiSoctNCSK6bL2Alh-blJnwcZil4Yptkt36Da83Iug97vMFCMSnFTM9i7PX9sM','Great nurses/doctors and very quick service!','2020-07-30 18:17:21.251000','2020-07-30 18:17:21.251000',5,'CTX_ johnlegs','https://lh3.googleusercontent.com/a-/AOh14Gi94Z4bYNovZGc3st0OTocfq3Ihz98bDs64hPry3g=c0x00000000-cc-rp','16590124370714063921',21999),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urcpLTPYf0gR0JGYtTZ5A-Ar9SqDPKErC2MRgV7UbSm0fA4RVgtcU0GcfNqxuNpaSdtZ9CSs38g6tJkBz2b57t3qUYDXc','My visit to SignatureCare Emergency Center was great! The front desk staff was very helpful and JD and Cody made me feel comfortable during my visit.','2020-08-03 15:59:33.676000','2020-08-03 15:59:33.676000',5,'Karen Ellis','https://lh3.googleusercontent.com/-C51EpewbNFY/AAAAAAAAAAI/AAAAAAAAAAA/6xl7jok7gOg/c-rp-mo-br100/photo.jpg','2077061009497551125',22754),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urCpWmqlPUOrEpQ6mCwg-Sya9BTVSNCev5XlW25Mol_rKxF_BMpPDindQyGGQPDumjzew6tbL1cAA18rdWZxaLyccFmuU','It’s was an amazing warming entrance great attendants. Tanishia, the girl in the front, was super nice and helpful about the entire process. Definitely made everything easier!','2019-09-30 02:54:34.504000','2019-09-30 02:54:34.504000',5,'Pablo Hernandez','https://lh4.googleusercontent.com/-I5rX9uDKEuk/AAAAAAAAAAI/AAAAAAAAAAA/xTlzrDu3qeg/c-rp-mo-br100/photo.jpg','17898197009688164559',5533),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urcRnHKrK8lwvP3NVmsX6qCvIHtadUmGwpjW2XHX9TyY4syKtdpYAlO0EExO5ZcmGIk5re-ZoBt741njaHmXczJUEgpCA','Great experience Cindy at the front desk was very very nice and helpful. Nurse Gina got me In and out didn’t take much time at all. The doctor Singla did a thorough and quick exam. I was very pleased. They have snacks and good stuff on tv. Will be coming back if needed.','2020-01-24 16:16:15.355000','2020-01-24 16:16:15.355000',5,'Whitney Sadler','https://lh5.googleusercontent.com/-0E6rzKV3FC4/AAAAAAAAAAI/AAAAAAAAAAA/ad_bc3b3HW8/c-rp-mo-br100/photo.jpg','14567670160750071148',10135),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urcTCqT6B5fytxOTUxmenzQ2jpca9hWJUnMUgPkM_KSDaCIsnPw_9Jfjslg1WdIG8NH6_8B9VA3ub69kScqSWIUSf8-EE','I had a really good expirience sith SignatureCare! Everyone was very nice and as soon as I got there they had a doctor ready for me so I didnt have to sit and wait at all. I would recommend to anyone!','2017-02-02 20:30:14.777000','2017-02-02 20:30:14.777000',5,'Emilie Floyed','https://lh4.googleusercontent.com/-Paqlumpv0D0/AAAAAAAAAAI/AAAAAAAAAAA/2Gj5In8m5FQ/c-rp-mo-br100/photo.jpg','16590124370714063921',4071),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urcTSyeDpiXX-VoYyXU9vKCacLzNG_LB0docx4BJv5AvrULN_eidHk6MfBkSpI2s4MGlbG_ZnhLz0aF4-5UHcAsA8rOmI','Superb.','2019-08-14 04:35:39.457000','2019-08-14 04:35:39.457000',5,'Ken Chilak','https://lh3.googleusercontent.com/-LtrLVC8P444/AAAAAAAAAAI/AAAAAAAAAAA/jdkDjI5SYts/c-rp-mo-br100/photo.jpg','6521947413723274945',8162),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urDgm5G7bST-UscNHlPbWzp3-mwW2ZDoN6M6hqySx6KGC92kk4t_Weg9SxHjjeA1j3WFXG_L5drQGfVctIi5TPZx-OjXA','Faster and easier than going to the doc. Everyone is very nice.','2019-10-20 13:29:56.017000','2019-10-20 13:29:56.017000',5,'Sarah Wilson','https://lh3.googleusercontent.com/-X6QyPGVOIMY/AAAAAAAAAAI/AAAAAAAAAAA/SrovvIG1Suk/c-rp-mo-br100/photo.jpg','16590124370714063921',3128),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urDLsJ6Qz4hScNyT0XeG7CgzSDhEfB8KXQ7k7RKwWbdIwziYWjb4sredJHojIc-QJfjROSBMfLwImklz_79iv5b45Ptsc','Dr Pham and the nurse alvean were very helpful on giving me the information and help I needed. Nice staff and welcoming the second I walked in!','2019-11-26 13:30:40.271000','2019-11-26 13:30:40.271000',5,'Sarah Salazar','https://lh4.googleusercontent.com/-y4TV8oHWzBs/AAAAAAAAAAI/AAAAAAAAAAA/Nn06I8cPhIk/c-rp-mo-br100/photo.jpg','16389487648212004696',2632),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urdQ4m-my7yXhQZzrUf00cNb2Vw4kWwvRYsToR_vGVd2-CfQoGc8mokd4RcMs0A7hY1JWDPy96CkzMu3PwrrsoskdVN-Q','I really feel very confortable was given a chance ask questions and feel all questions answer very by everyone tonight Dr Daniels, Chantel, Laura, and Tanishia. Thanks!','2020-03-02 02:41:17.829000','2020-03-02 02:41:17.829000',5,'Ellen Scott','https://lh6.googleusercontent.com/-8fepe9-gUw0/AAAAAAAAAAI/AAAAAAAAAAA/nzhk-ZWrulc/c-rp-mo-br100/photo.jpg','17898197009688164559',14117),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urDQYnM_oLb5oTKmZGNF_BK9QP4whS_M88EvoNAXelalwTLPoDVtuoSX0DewGAmM5b2Eo0lH52x2fEpEx-oWpNgvUClX4','Very kind staff :)','2020-08-16 17:11:51.855000','2020-08-16 17:11:51.855000',5,'Malaina Enholm','https://lh5.googleusercontent.com/-KrkI1D0h_Xs/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucliUSqEZe6iTFFUQymaqByQSQq2cg/c0x00000000-cc-rp/photo.jpg','16590124370714063921',23051),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urDs2eRRjC1gol6h5cysYSbL7A1yE6FDZSocOnSrBaPF_c_V6s7yGuZYFZ5MFukR5T33xeMo0X-JaVL3lxdy2YksoJ6Z8',NULL,'2019-11-20 15:19:50.649000','2019-11-20 15:19:50.649000',5,'Jaime Hernandez','https://lh5.googleusercontent.com/-egBrvSjssCI/AAAAAAAAAAI/AAAAAAAAAAA/hFI-HrAdo_4/c-rp-mo-br100/photo.jpg','17898197009688164559',5411),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urds3qlW08uT7OwKmdPcTJywufyYjINa2GmHF4OQCV50kVX2WF7W1emWOlPV4S3NcFMwTDeDEYHXbGMxLxHpIvQDUGIwo','Love the staff, felt very welcome and they are very affordable. Great job. Dr.Smith, Ms. Ekaterini, Mr. Joshua and Ms. Melissa made my husband feel better.','2019-08-09 03:49:31.290000','2019-08-09 03:49:31.290000',5,'Maura Sanchez','https://lh6.googleusercontent.com/-ns5x2J3tO5U/AAAAAAAAAAI/AAAAAAAAAAA/1WLxt8hxIZo/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urdVElnzQXHDthTJZ1e65XTG0M0tXXRqkLqIVL4OU7NzD1Jp3VMHbqOSUM35Y_KceNXu7aHrBxFQxsnxR5kf52iTIo5RM','BEST ER IN TOWN! Super fast and friendly service. I think we waited maybe 5 minutes after checkout to be seen. Staff is wonderful, very respectful and always informs the patient what is going on. This facility is my #1 option for any emergency that comes up with me or my family. Definitely recommend it!','2020-03-08 19:06:25.972000','2020-03-08 19:06:25.972000',5,'Fernando Lopez','https://lh4.googleusercontent.com/-_XY8K1HllHM/AAAAAAAAAAI/AAAAAAAAAAA/pnWywTIV3cU/c-rp-mo-br100/photo.jpg','13486358490203335051',20930),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urDw0Fr7N1uYTeGAuSAIatwAfa4FqyvWqpBmJEcI7OzJO8Kf497nLi7QUEeeRYeyzi6f_qHpFrHlcfPvruEynzg9rsOTE','I had a great experience here with Kimberly, Jacob, and Victoria- and I didn\'t even have to pay a thing! They were super nice and very attentive. Also there was no wait which I loved!','2017-05-06 18:01:26.142000','2017-05-06 18:01:26.142000',5,'Selin Ozaltun','https://lh3.googleusercontent.com/-IV5dRZAWM0M/AAAAAAAAAAI/AAAAAAAAAAA/bxChNYqwRng/c-rp-mo-br100/photo.jpg','16590124370714063921',3992),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urDymPx-2xfbJswgZfYgRuEtsbhLwl4_3HcrBBSg3dP15pg17f7NGIDKAu9WuvX8vI3ITlg2DLaV1-kyVe9m1yYvT-B_g','Excellent service! Took my daughter last night she had high fever. They took care of her as soon as I was checked in. She was giving Motrin to get her fever down and took all the test to check if she had flu. I was offered a warm blanket and apple juice for my daughter. Very professional and so caring 👌','2020-02-19 20:50:04.255000','2020-02-19 20:50:04.255000',5,'Ingris Luna','https://lh4.googleusercontent.com/-jSBCdtTZTXg/AAAAAAAAAAI/AAAAAAAAAAA/OXWO9_gqFzk/c-rp-mo-ba3-br100/photo.jpg','8918455867446117794',14815),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ure6esIDZJ9pt-daDiKlCZysMYUHKUiStbzIRdOmeEOq7O7F9UlVWCLjXxReyRH1e9uKg1dJqIUpjpj8HcVYhG2iboTic','The most thorough, non-anxiety ER experience I\'ve ever had. I\'ll never go to a hospital ER again. Those folks were the most talented, highly skilled, professional, yet caring and attentive people I\'ve ever met. Even with my long list of comorbities and meds, their assessment and treatment got right to the real problem. If you\'re docs office is closed and you have an impending medical need, this is the place to go.','2016-11-05 18:04:14.634000','2016-11-05 18:04:14.634000',5,'Ronald Reeves','https://lh4.googleusercontent.com/-k2meL6bSbAE/AAAAAAAAAAI/AAAAAAAAAAA/CFGcwiPYXhY/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7926),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urEcFTc1fuFZaKCT4Bp86kJnh_1nDxqbN8iLmhyuFlzVvAMmHCtrJfZedpKtaDo_HyY8vhiK1J1SN9FpY43-qBP3FjrNo','my wife had a really bad pain and they took her straight in no wait and were very professional','2019-10-06 17:37:41.001000','2019-10-06 17:37:41.001000',5,'william smith','https://lh5.googleusercontent.com/-DdIO-Mieyrg/AAAAAAAAAAI/AAAAAAAAAAA/wCSQygebkvI/c-rp-mo-br100/photo.jpg','2694018788013845459',6054),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ureDMPkckZD_2yjggTEKhE20MtiF6zhXbMnCsGSJvh5YDVqM1d2SDspXPWPRRRaDrEIW38LCCIgqQKM4NjtRlIaLnsCpI','Took a friend in to get seen , the front desk girl Leticia was quick and so nice, would have never known she was in training!! Dr huerta is great, nurse Vanessa was very kind and knowledgeable, definitely going again if ever needed!','2020-02-27 04:28:27.858000','2020-02-27 04:28:27.858000',5,'Ricky Uranga','https://lh3.googleusercontent.com/-2b-zrO4BQJ4/AAAAAAAAAAI/AAAAAAAAAAA/9pQAJ8nUsAs/c-rp-mo-br100/photo.jpg','13486358490203335051',13410),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urEgNwVFlR9Z6Bj7t-b2EJY9EtD5R-jM4VYALSlMHc2tkIPtF9U8BK3uu69nMGYXvLMKdEGd0Sna0WWBw2RFBX7M-Tnx0','Thats why i came here because it called emergency.but then when i got there,dr check on me right away which is good but just send me home after.all the stuff was very polite and excellent customer care.but the thing for me is,thats why i came to emergency room because i was very painfull.I ask if is there any way they can put something on my sore to make me feel better but nothing.just give me a prescription and send me home after right away.i was a little bit pissed off because i went there so they can help me feel better but then its useless! Spend $100 right away which is i dont care but its like i went there for check up and thats it. I dont think im coming back again if that situation happened again.but will,all the stuff are very polite .i will recommend this for those urgent care needs.until now,im still in pain.im like giving away my $100 ,if i know thats gonna happen when i get there.i should buy any pain reliever:( 😔😔😔','2016-06-07 01:53:53.608000','2016-06-07 01:53:53.608000',5,'Rubi\'s Cooking Lesson','https://lh4.googleusercontent.com/-pEkhiFW04OY/AAAAAAAAAAI/AAAAAAAAAAA/m-tP_BobCT4/c-rp-mo-br100/photo.jpg','17394740196501090048',5241),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ureKwsymNaGg3qaNrUQyJASCkxmBxBWj1N6g8orpAY0YYu9D1V-mSbMunXQem3OJwQ4rVFIAnJjZnk2BV62gC-VsewNr0','I had a great experience. I walked out with stitches for a cut on my finger in under an hour from the time I walked in, to the time I walked out. Everyone was very friendly and helpful. The facility is clean and organized.','2016-09-09 01:12:54.153000','2016-09-09 01:12:54.153000',5,'Shawna honeycutt','https://lh6.googleusercontent.com/-bZowqv4BuUM/AAAAAAAAAAI/AAAAAAAAAAA/rPcX-Sw4_ak/c-rp-mo-br100/photo.jpg','14567670160750071148',1974),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urEnkkW3VIhHKIZNZFE0oul7yJUvmHNmSnZ6d3QlUbWzlJOKuCEG0BV9Ki8Dqujbh8FmjArFBqH28KzFOB5E2fXyfpZWo',NULL,'2019-09-17 16:52:07.294000','2019-09-17 16:52:07.294000',5,'Alena Chavez','https://lh6.googleusercontent.com/-ByqV5tEAPGE/AAAAAAAAAAI/AAAAAAAAAAA/zTjdNgBW06s/c-rp-mo-br100/photo.jpg','6521947413723274945',8141),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ureQ0j9Cy8MmjbHa7PS5jsF0vIYqMt9TOwk-rTeT1l2q-AHZ0bnfZOBkQ9YIJ7QmESxRbR4ZF1o8NYgLoeE646yoElQRI','Excellent place fast, friendly, and very accommodating','2020-02-17 07:51:12.899000','2020-02-17 07:51:12.899000',5,'Becky D','https://lh3.googleusercontent.com/-BI2vRrCjs8o/AAAAAAAAAAI/AAAAAAAAAAA/ysMIQ4_0TTs/c-rp-mo-br100/photo.jpg','6521947413723274945',14575),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urETN_CW8uEL1YysK4BUO35vpwbeqlEs5j1QWqRNVajlAuwHh_ECWMYfk0RAssPP7J62IiZna2YSBpH3DnTFEEfdzqckg','Manny, Ben, and Dr. Osiechi were great and tended to our child in a quick and calming manner. Whole visit took less than an hour. Very great service','2019-07-12 03:03:34.080000','2019-07-12 03:03:34.080000',5,'Fortnite Bros','https://lh4.googleusercontent.com/-2ui9Vt_7vdE/AAAAAAAAAAI/AAAAAAAAAAA/VRUXlCjn-Sw/c-rp-mo-br100/photo.jpg','6521947413723274945',8202),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urEvZ0bdyhnOcaIs0_vP7CVXpSLlTTJ_kPeXxuO7oDgIEjiwvlImYCHKfT6PhydFKXgv_PaspkI_RHfLPSHlX6kKuMe_4','This place is wonderful. Maya was very kind and friendly as soon as we walkes through the door. John came to help me out of the car with a bjg smile. Kristina came with a warm and friendly smile as well. Dr. Ortiz was amazing and ao friendly and down to earth. Thank you Signature Care dor treating me like a queen when I needes it.','2020-01-17 15:21:44.070000','2020-01-17 15:21:44.070000',5,'Marcia Johnson','https://lh4.googleusercontent.com/-TuL01VnJqNc/AAAAAAAAAAI/AAAAAAAAAAA/nQ90_WpEZCo/c-rp-mo-br100/photo.jpg','12541597562633926366',10025),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ureyMJVeYmSE1r9gMc_tOYci8ZIuu219xyMIkcOL7GUQ6cC6vG9FehIXLHyWjgjJDvyPithpy5oigmJyNJT4E_NTqtPS0','I highly recommend the Montrose SignatureCare Emergency Center to anyone who needs health assistance. Dr. Miller, Laura, Christian, and the rest of the team were helpful, patient, and got me the care I needed fast! The facility was clean and well-equipped, I was very comfortable.','2019-01-31 18:42:00.236000','2019-01-31 18:42:00.236000',5,'Madison Ford','https://lh4.googleusercontent.com/-GCL5idupRTU/AAAAAAAAAAI/AAAAAAAAAAA/eF5jHGaKTVw/c-rp-mo-br100/photo.jpg','3511292162159714121',7426),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urF7rSvJ_iFWJ-ITt8QSRYWNP2mxj7W0M1E7KVK0Toah-lVcLN17fSzvC9v21dNSuQyeMBGcV1zsd4OOKiBSPQrqV4bJs','They are very rude. Especially the night shift. There I was sitting waiting on them to attend me and they literally had me in the car dying. They get upset when you ask them the status on when you can be attended. The ladies in the front desk are the rudest of them all. \nAct more professional!\nI ended up having to rush over to another ER because they didn’t want to attend me. I understand first come first serve but I was in critical condition according to the other ER!','2020-07-27 23:19:11.550000','2020-07-27 23:19:11.550000',1,'Michael Argueta','https://lh3.googleusercontent.com/-U3mwhoJCExk/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucl7c4oIiQGW39crjdIt9d-SCDzAlg/c0x00000000-cc-rp/photo.jpg','8679688254631342173',22242),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urfey3hSuXFB3kbtWHlxRXzc9yiURXXLLSiPHnfbevzCCKuI6OiloXSK-cOsanc4pTT8AOPPZu3V6RjDpZXb0os8GJN5Y','I had not been feeling well for sometime. I decided to get checked out. The staff was very kind and caring. Everyone made sure i was as comfortable as possible. They all took time to make sure all my needs were met. Shelli was so sweet and made me feel super comfortable. \nI will defiantly come again for any emergancy medical situations.','2019-05-09 16:13:20.347000','2019-05-09 16:13:20.347000',5,'Pineapple Lady78','https://lh4.googleusercontent.com/-xMd6pPIqvN8/AAAAAAAAAAI/AAAAAAAAAAA/WYmR__wzG5A/c-rp-mo-ba2-br100/photo.jpg','16891069708558046635',4283),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urFh_qyB1O4-mk5dDPxFYWOaUkSL809q_F738bg2leEuGtF7IfgIAaYPyTKPiQztjH5G-GrIhHjUVIDHeaBoGT5uxFz6U','I want to say I went here yesterday June 7th, 2020 and I had a very good experience. The whole staff was very friendly and fast. I definitely recommend.','2020-06-08 13:44:47.356000','2020-06-08 13:44:47.356000',5,'Addictive Clover','https://lh3.googleusercontent.com/a-/AOh14GjKDPt_YvSSAnVG3GsSpQb5qwGeHTj0btwPM-SQBA=c0x00000000-cc-rp','2694018788013845459',21456),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urFHAWkRt_w4JYTz42ncSZyOPZbXwXv8CuCf-lXdx3jwq35fkpHJt-Y030dFKdAo0cN8xWI9VYeEL6ey44EZ2NP6UbmJI','By far- this is the absolute best emergency room/medical staff I have ever dealt with (Irving, Victoria, Tino, Christian, Ana and of course Dr. Patel). I wasn\'t even waiting for 1 minute before being called to the back and immediately cared for. I received a thorough examination and multiple tests- to rule out all possibilities. The entire staff here exhibited an excellent, warm and all around comforting bedside manner. Dr. Patel and I talked about my issues- where she displayed a genuine concern for my pain and wellbeing (which is not something you see often).To be honest, I am not a fan of people in the medical profession, but my experience here has shown me that good ones who care do exist. They accepted my insurance (United Health Care)- and the copay was the same as it would be at a Emergency Room. I will never go to another ER again...I will return here for any medical emergency. Thank you so much for everything!','2020-02-24 04:57:11.083000','2020-02-24 04:57:11.083000',5,'Judy Taylor','https://lh6.googleusercontent.com/-PHr3F3bZ2Os/AAAAAAAAAAI/AAAAAAAAAAA/27HvM6WsXaE/c-rp-mo-br100/photo.jpg','12541597562633926366',13349),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urfnOuzPaPtFxasgnWlhmObN7tDO9pb4YYL7h1voHQsaZ-Pt-XMXEA9V-qjFotS_0yr8B49vBgbfveTaZaPTuX3sZxq2o','Facility was very clean and everyone was nice. My nurses Lee K and Traveis were extremely nice and helpful. The receptionist Patricia was very welcoming.','2020-02-28 00:06:37.908000','2020-02-28 00:06:37.908000',5,'pernisha jones','https://lh4.googleusercontent.com/-DvV8VmPlVzQ/AAAAAAAAAAI/AAAAAAAAAAA/ijUj0aV2ySI/c-rp-mo-br100/photo.jpg','16389487648212004696',13751),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urfnW0AbFouGQol0PRVENPkm-ksu1Lvd_2mDj1O6eC1Dp3Tlcsku32ENmro8cakbWBchK9UM__f9h2uc3Al6q42HS1rQg','The staff at the Westchase location was amazing. Tristan, Brenda, Tino, and Dr. Figh thank you for taking care of everything swiftly and putting a smile on our faces too. As an attorney I hope that all urgent care clinics strive to be as informative, helpful, and efficient as you guys were tonight.','2019-01-14 03:17:55.099000','2019-01-14 03:17:55.099000',5,'Eman A','https://lh5.googleusercontent.com/-aEpp1-lFB-A/AAAAAAAAAAI/AAAAAAAAAAA/h4daWNIWlXc/c-rp-mo-ba3-br100/photo.jpg','12541597562633926366',568),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urFZNVnMkJRgkK_mhloaIS_du0Jqd8W5n_sE9cVU723XgzPuwJ799ajORiRlE6mj59VEkvkrEhnV8ApOnS0zIIBCXqUeA','Your staff was very nice and comforting I like the way I was treated the service was good and fast thank you for the service and I shared this word with other people','2020-01-26 07:29:42.644000','2020-01-26 07:29:42.644000',5,'Jason Willeford','https://lh4.googleusercontent.com/-KXB4f8Bse10/AAAAAAAAAAI/AAAAAAAAAAA/woypieX2VGM/c-rp-mo-br100/photo.jpg','8679688254631342173',10331),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urG0axif_w2nuUw3s-74b2Q2EcUCtThbPqENBqrR03E3_HAe8ee39pPDhsNIEdSHby8DUyXdO-6tc_ays7OnPYLh3EBGQ','Unfortunately this is the 2nd time in 2 week\'s I\'m having to visit and both experiences were exceptional! Dr.s Lingon and Elsbecker were very attentive to my history and concerns, spent as much time with me as I needed them to in order to feel comfortable and informed. The nursing staff is excellent! Christine, Christina x2 and Katie took great care with me and were very thoughtful and kind. From someone who gets to spend a lot of time with medical personnel for lots of chronic issues, I highly recommend this ER for top notch care!','2019-10-29 20:31:07.459000','2019-10-29 20:31:07.459000',5,'Catherine Bartlett','https://lh6.googleusercontent.com/-Rd36ruV4Wkc/AAAAAAAAAAI/AAAAAAAAAAA/RsNPIratD98/c-rp-mo-br100/photo.jpg','16891069708558046635',4169),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urg38SYtfyVCj6_SBCyuEChJMhfe_ywLRVz9GaTuTqAc5DfWH3G9ng4sgGGt9uRG0Ap4-BxfcueKmcJp0Gtzfr6UEMODw','Very professional ,Very fast ,and very friendly. That\'s something that you just don\'t get from a regular ER.. special thanks to: RT. Magali.....Tech.Pete.....Dr.Peter.....NurseManny.....and Maria with registration... you guys are awesome...God bless','2019-08-30 19:56:34.421000','2019-08-30 19:56:34.421000',5,'Tonya Collier','https://lh4.googleusercontent.com/-78t0UrXQsKw/AAAAAAAAAAI/AAAAAAAAAAA/XraEGf8DiGo/c-rp-mo-br100/photo.jpg','6521947413723274945',8154),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urg7Lge6_g7nRt7pAOotdVzBZfKutIVbkHMa8CdWsSPmxZDvnYz_8UbtPoJAZChpfXkfb_NKQJZNXS3-aSzFHb2iyDSwc','Even in the middle of the night, Signature Care Emergency Center has the most friendly and compassionate staff! I have such positive things to say about the facility and the team that helped me: Mara, Sita, Paige, Vanessa, David, Daniel, and Dr. Starr... Everyone is professional and personable. Beautiful and clean building as well! Thank you!','2020-07-15 08:35:54.362000','2020-07-15 08:35:54.362000',5,'Amber Pelletier','https://lh4.googleusercontent.com/-4SWnlDmig0o/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucmH2dpOPxi5HPgNLC4uaAQcCXZGtQ/c0x00000000-cc-rp/photo.jpg','13486358490203335051',21852),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urGbJ3t9LQ41OdqiVCA8ccsRLcZw5dkR4gqwqlT_LQ72aTWNM97KGs48zu7FgGFW_rdkO0l5Z7ULZ8P7rgdBq8Od442XQ','Staff was friendly and very fast service.','2019-06-07 20:19:19.102000','2019-06-07 20:19:19.102000',5,'Jennifer Duran','https://lh4.googleusercontent.com/-L0aZUC_BSaA/AAAAAAAAAAI/AAAAAAAAAAA/0mB8COq_pbY/c-rp-mo-br100/photo.jpg','17898197009688164559',5708),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urgBKZ_0-1dSSFTs5gAd_6_x7DLCSVdCMDdg2cBMxJa57urN7_vi1r5vnHVSdVR8eQ2Yvp9ratEKxQJmOeRwstJM96tIU','AA++ experience. Dr Mauldin/Evelyn/Duke/Waldo were awesome. Treated us with the utmost compassion and sincerity. Thanks Doc!','2019-03-11 15:11:52.517000','2019-03-11 15:11:52.517000',5,'Kicking Back','https://lh4.googleusercontent.com/-mjp6S0DSvY8/AAAAAAAAAAI/AAAAAAAAAAA/Er-_3v88ovo/c-rp-mo-br100/photo.jpg','8679688254631342173',8863),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urGesibx47d93IvZ67kOSoZTcH6Sn_dIcESQZvuF1InH5RGz_vmWy8rxJcTy92leMvlrK8psr1eSFSn7gdK17oi2fyWvI','Great service, fast and super friendly.','2019-02-18 16:52:55.271000','2019-02-18 16:52:55.271000',5,'JS G.','https://lh3.googleusercontent.com/-RFyTcc8D0Vk/AAAAAAAAAAI/AAAAAAAAAAA/_aMNBtLi0R8/c-rp-mo-br100/photo.jpg','17898197009688164559',5846),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urgl9C2xwZ3RWbOwdwjye6jfcKyMi5Gw5SW6ZwHmBjhovyCAHOZ7caqJy_u9MSvRugHrR27CaLEXAl4iOaiC3cXMrWcJs','The staff was extremely professional and fast! Was in and out within an hour for a minor emergency. Everyone was extremely friendly. I’m very satisfied with the low cost and great experience. Gabe was an amazing nurse and Dr. Werzanski was very kind and took care of me quickly. I will return here in the future.','2019-01-27 02:24:02.336000','2019-01-27 02:24:02.336000',5,'Elise Simmons','https://lh6.googleusercontent.com/-Dfh4lvZ3-fM/AAAAAAAAAAI/AAAAAAAAAAA/mGk0fu7O8h8/c-rp-mo-br100/photo.jpg','16590124370714063921',3568),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urGQ0A5Artg3jO4krB5Iw4ttrNDDC6kP1Iq4kS0ln_Xfta3R7vN90JL2ZStynzWGzUosyn2XznTK_hvQZuNDeGqIfTOq0',NULL,'2020-06-05 14:36:31.595000','2020-06-05 14:36:31.595000',3,'Rosy Sánchez','https://lh4.googleusercontent.com/-j0W_DkWMPe4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnNhENRKNHVTVj-SBmJ2_HHuaRZwQ/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21970),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urH_dcQQdM0RurR4iZPQ2ovfOPfBePP3RVTGg4oJQ_2VJ-96-fUkWESZg-gVpUv73J1HHRoAtaS9U4WhaU0lXy21s06IU',NULL,'2016-02-06 22:41:37.818000','2016-02-06 22:41:37.818000',5,'monica noria','https://lh3.googleusercontent.com/-UB29YziHy9Q/AAAAAAAAAAI/AAAAAAAAAAA/MK0Oh42v_SQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5287),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urHCfDYn3AIPMhXFdL67Te8KTamxtSbxlkHl03gfuVg8f9pVfqJl65s16CBJlRo7PyXs5r0xsyFjbRqaX9IvgQ2YICnZ4','GREAT FRIENDLY STAFF.\nTHANKS TO DR.PHAM\nNURSE ALVEAN\nELIDA\nGREAT JOB HOLDING ASSISTING NURSE Alvean','2019-11-26 20:58:28.267000','2019-11-26 20:58:28.267000',5,'Lamesha Stanford','https://lh4.googleusercontent.com/-OaMXD9FnOXQ/AAAAAAAAAAI/AAAAAAAAAAA/9eUMx2FJyyg/c-rp-mo-br100/photo.jpg','16389487648212004696',2624),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urHD3lwcKriGk9dhZpQxifhpDKEqjwN2SRje7yYjb4upZag--GfLRcsajt5V7c80iQe7Mqlsx54t2fJBJJA73MDmZ82Ek','Staff, doctor, and facility was great, just hope my insurance pays the high bill!!','2018-07-26 23:17:27.004000','2018-07-26 23:17:27.004000',4,'Greg Hazlewood','https://lh5.googleusercontent.com/-uju5bX2dnpo/AAAAAAAAAAI/AAAAAAAAAAA/ghJ8NHyxcXA/c-rp-mo-br100/photo.jpg','3511292162159714121',7682),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urhE1rFhtxQsGtFlEJ6-3hKsltk-HODoF-3L-FqDgiYGjkeT3NcB9jLda97mN38AEg1klEWkpA-EZ1i1CPJ0R21STImSY','Easy visit and not very crowded. Pleasant staff.','2020-07-30 20:34:12.388000','2020-07-30 20:34:12.388000',5,'Oralia Guerra','https://lh5.googleusercontent.com/--QhoS35Ttdg/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclqSlCMcGuhp40K-W9mB51E4onUBA/c0x00000000-cc-rp/photo.jpg','3511292162159714121',22148),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urHep1ybn0BPMX0JODosC92qwbIPUtD-18VI7BZ2CmhSxo11QZ4GsktWu6ozqRNXe_oHF9_rP0bsmWapU-zAJSw0QayYU','No lines, fast check in. My toddler had cut right above the eye, they put 3 stitches quite fast. Price is also good for self-paid patients.','2019-11-30 13:56:44.700000','2019-11-30 13:56:44.700000',5,'Alexandr Goroshko','https://lh4.googleusercontent.com/-STo79JwjsAM/AAAAAAAAAAI/AAAAAAAAAAA/5YoS0Ze8v2o/c-rp-mo-br100/photo.jpg','8918455867446117794',9041),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urHFrBD6K0HjbmCWqR9G8NTw5Ge-uukpqbCcpmTikvLWSa35iigxJcxpTPlxMXCpwwbN9tk1sSF4AD_uNHsYQWCN1mIR0','I had an amazing experience here. Very caring spirit along with professionalism and skill. Everyone does there job well here. You feel taken care of.','2019-05-17 22:11:27.674000','2019-05-17 22:11:27.674000',5,'Carmen Anderson','https://lh4.googleusercontent.com/-xdhNQJVGlfw/AAAAAAAAAAI/AAAAAAAAAAA/phIPoeNER3g/c-rp-mo-br100/photo.jpg','17898197009688164559',5736),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urhgWXJ4qGVHKPLfUlMUbk_QJgjK-9pjrqChh5MFbnzqwEHMAtQMP5ybAeILSjJUTflCPmLaVhQBy9PZ6wI01NYcQS1iM','Dr. Ortiz , Nurse Irving, Chanell, Holly & Thelma we’re all amazing staff! I came in here for a cold and the customer service was excellent! Thank you guys for all that you do I really appreciate you being open this late! \n\nI am totally a happy patient ❤️','2020-02-25 06:36:06.356000','2020-02-25 06:36:06.356000',5,'Marqua Luckey','https://lh3.googleusercontent.com/-Czw0YDn2P2E/AAAAAAAAAAI/AAAAAAAAAAA/cTS6Pc6EQ1g/c-rp-mo-br100/photo.jpg','12541597562633926366',13347),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urHkDGaZb_scttjeMC7Y7llVX0eetTbaZ2YHQoICo7G19n9B0eS6kSVFpR0fiA4nzSUowo0amiL0Fy7GaWd9Cmwq5eU0g','This place is great. I have had to stop in twice for late medical emergencies and was well taken care of during both instances. I would recommend this place to anyone!','2020-02-24 20:03:34.529000','2020-02-24 20:03:34.529000',5,'Dennis Kihlberg','https://lh3.googleusercontent.com/-8PdTHfszoJQ/AAAAAAAAAAI/AAAAAAAAAAA/vYlDfTDT7Kk/c-rp-mo-br100/photo.jpg','16891069708558046635',13932),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urHLKMvykN4UeKcWSbTpD9f4C37wQYo_ZW-BerhnqbPTAxsWFWH-cw1EEuMZfUkXK_3kvLuLcVU5xKOnDbyeUU-EI4kgg',NULL,'2019-08-30 04:35:57.188000','2019-08-30 04:35:57.188000',5,'Ashley buchinger','https://lh5.googleusercontent.com/-9WoJDav70v0/AAAAAAAAAAI/AAAAAAAAAAA/ZWX-ak3oRWY/c-rp-mo-br100/photo.jpg','16590124370714063921',3229),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urHmQkx4tH2V1_loDJm5kffrSe9qfA0De09Flqv_ANI2XdNlKH2478ovCZdQLGH0wBPUdI9hXNixMS3jmaFs_C2PD1-88','No wait, incredible staff and top-notch care by all staff! Even received a call the next morning from the Nurse manager to check up on my daughter and her current condition. Was also advised to call or come back in if any further questions/ concerns. Best experience by far I\'ve had in an Emergency Department environment ! Thank you SignatureCare ER- Stafford!','2017-08-08 16:56:37.310000','2017-08-08 16:56:37.310000',5,'Ashley Skripol','https://lh6.googleusercontent.com/-HjJaAYXH96g/AAAAAAAAAAI/AAAAAAAAAAA/xsm47pALkro/c-rp-mo-br100/photo.jpg','8918455867446117794',9370),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urhrlWu99L4Wn0TRG4Os4r1tOSnX7E53bJjMkhGNstu6UjiO9wVIQ4ALrNeochi6nFawclYYYeI_M_cKeg2WhzTl1-gw4',NULL,'2020-07-20 12:29:30.697000','2020-07-20 12:29:30.697000',5,'Nichole DeBerry','https://lh6.googleusercontent.com/-o0OYYYgZl9g/AAAAAAAAAAI/AAAAAAAAAAA/-G3BfpIqZkg/c-rp-mo-br100/photo.jpg','14748677429039074158',21683),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urHtT6miSyE_4dbNmtgzT-wDcL8ozKQGn4wkHEpR-ex_bJGHGBjZVVz41Br2Kv7VZt2ywcnB--KYGKsAZhMDYep3nlQHQ','The staff treated each patient with respect and warmth that we need when we get sick. They responded to emergency cases attentively. Provided the best care that every patient deserves. So we at Okey Dokey Locksmith highly recommends SignatureCare they treated their patients like how we treat our customers, with respect and provide them the security they need to their homes. Peace of mind is priceless.','2019-02-22 19:05:26.174000','2019-02-22 19:05:26.174000',5,'Sharon Thompson','https://lh5.googleusercontent.com/-y8Mih5V17Z4/AAAAAAAAAAI/AAAAAAAAAAA/V7-wnDC5okU/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7399),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urI-_IVNJx0ArdPhvVh6LFZx5YrFoRj6x2J9Hytnev6Hhxtk1KioDYV7ExUpJmzlOOfRcAPQslylyVWH-Py2doeNAks0w','I brought my 4 years old son here for a swollen foot and dr. Thomas MD., Nurse Jaime O., Rad Tech Carolina E, registration desk Tanisha W. Were all amazing, attentive, nice and most important tender and genuine and my son loved it.','2019-01-11 04:47:41.441000','2019-01-11 04:47:41.441000',5,'Rita Shteyn','https://lh4.googleusercontent.com/-oRZDoSGt2jY/AAAAAAAAAAI/AAAAAAAAAAA/pt9w1Csrlvs/c-rp-mo-br100/photo.jpg','17898197009688164559',5890),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uri3e0x63IwftDAygvSdWPKa3-CiHpRmTfwW0wpkjHUzQX2z-piYRopjr-XkMk6I43Pb0nbWVhXNnq_maTja-AOvU400g','Jessica S was such a caring person, she helped us in any way that was needed and made you feel welcomed in the facility.','2019-12-11 20:16:55.917000','2019-12-11 20:16:55.917000',5,'Carlos Martinez','https://lh3.googleusercontent.com/-uMJPaBONfBU/AAAAAAAAAAI/AAAAAAAAAAA/qE-S_bfBINo/c-rp-mo-br100/photo.jpg','13486358490203335051',690),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uri4rTyCdHtoyZlxViLxl5X4dp56f3VtpWv6Ey_6xvCjjZEs0RuApO8MT1ftEM2IAIOZqIdZwsLozSjVZakXWstCaw8Eg','This place is the absolute best! Always open and ready/willing to work with any problem you’re coming in with. Amazing and very professional staff.','2019-01-05 02:00:07.143000','2019-01-05 02:00:07.143000',5,'David Czyzyk','https://lh5.googleusercontent.com/-SZxLE9ZPC_k/AAAAAAAAAAI/AAAAAAAAAAA/ncgqEt7Zvv8/c-rp-mo-br100/photo.jpg','3511292162159714121',7522),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uri5JiC6tdGa-VQYxyS8Z2j0ogqMteqHsLcxjFAuAjRlSf5k4WpCbwGKPoP_WuH2FtyQ6pnVGJ7FXL7cA5ZpK-fnchoqk',NULL,'2020-07-20 21:00:42.665000','2020-07-20 21:00:42.665000',5,'Grace Lewis','https://lh6.googleusercontent.com/-pTELKggGu_k/AAAAAAAAAAI/AAAAAAAAAAA/p4VyKj_RSas/c-rp-mo-br100/photo.jpg','14748677429039074158',21660),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uri8du1EuJBPKruwQnRoilAW0j-6Z-nqZ0DHjD5Ro24CARflTOPqIlbkQI8Yee1CpVON6X5r426W3SsGrzzypHvFH4LNg',NULL,'2020-07-08 13:11:51.420000','2020-07-08 13:11:51.420000',5,'Aaron Petry','https://lh3.googleusercontent.com/a-/AOh14GhxgLjS29p9PghY640cDFbse5gupB6_kRc5vRHi=c0x00000000-cc-rp','14567670160750071148',21367),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urI9qoSSA9vJXGCiOf4frU3HvKgcwDrebKUDVxgsVgwobisji3RDmuK71wFVZUQP-fYSWUFpKUqq68ghLm7tTmlXxMFXU','Everyone was so helpful. Keera was so welcoming and helped me throughout my registration process. Jesse, Dr.Dang and Janet were great and they explained everything to me. Awesome!!','2019-07-25 19:22:25.431000','2019-07-25 19:22:25.431000',5,'Vanessa Parkin','https://lh3.googleusercontent.com/-1_7ulQCSrsY/AAAAAAAAAAI/AAAAAAAAAAA/xWARnrYPcrs/c-rp-mo-br100/photo.jpg','17394740196501090048',4623),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urIBUZ_PnICxuj2uhHVhzNe2HokXNpu6azyBaXVFjYcHJYSPb-Hl3RFmAlfxbfcUOwXgh9RtySqMZCbyPxSkjf1PI6a0E','The best ER experience I\'ve ever had! Went in for abdominal pain and was seen immediately. The staff is amazing, everybody makes you feel welcome. The facility is nice and super clean. I highly recommend it!','2017-07-03 15:48:24.916000','2017-07-03 15:48:24.916000',5,'Jesus Diaz','https://lh3.googleusercontent.com/-cgFgEWSOExk/AAAAAAAAAAI/AAAAAAAAAAA/Bft81O7ccVA/c-rp-mo-br100/photo.jpg','14904078213800803294',2341),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urIgB1fj-Rfgs74_zTxa39FdwicKJHBAN68Bu7vVRDBXXvtBdgmVFEJ9HBUwGUsvj3IvVOvGZwbJ5J0_8dwNXomrtyBT4','Great place!','2020-07-28 02:57:41.779000','2020-07-28 02:57:41.779000',5,'olivia hubert','https://lh6.googleusercontent.com/-RCotCbas2DM/AAAAAAAAAAI/AAAAAAAAAAA/mJO0xQQrqMo/c-rp-mo-br100/photo.jpg','14748677429039074158',22544),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urIJcWKkPQJ9RSpHkGLKJXoklcgsGxc-qltY2YFV1mF6K4OWYm6QUKSAknhKQGYUcdrrUxuT6m-6jotGDueM80duJlFZk',NULL,'2017-01-29 16:35:56.030000','2017-01-29 16:35:56.030000',5,'Rachel Denniston','https://lh4.googleusercontent.com/-VhZgbwields/AAAAAAAAAAI/AAAAAAAAAAA/lGMaTTSA9Jg/c-rp-mo-br100/photo.jpg','16590124370714063921',4075),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urIjEIK8OQv5gPkU2kQAzDKtsygaWwbTksbILS8cm5Z5Xce7lm4cUV7utKxT5ZtZGv1mG8sa6ZMi5OxtTe3mdGln63q84','My experience at the facility was very nice. The staff was friendly, helpful and efficient. The front desk clerk Dee immediately requested help from medical staff to take me right in to be seen. This place was great for me','2017-02-10 15:02:57.313000','2017-02-10 15:02:57.313000',5,'BOYD HOUSTON','https://lh6.googleusercontent.com/-FyTF4eHeeqI/AAAAAAAAAAI/AAAAAAAAAAA/dRQbJZVLlas/c-rp-mo-br100/photo.jpg','3511292162159714121',7883),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urIo4S1wacq6qCbdomB6LysH4GsH5CnIl8dIIUX_PY9S5q_pfhebF1z14o5Ct0kSSQYt-rTLSStMmzsDaTVwHARJzhDZs','The staff was really nice and helpful! Rebecca V. at the front desk helped us right away and we were able to see the doctor within 2 minutes of arriving. Everyone was very helpful!','2019-10-12 01:20:26.965000','2019-10-12 01:20:26.965000',5,'Amanda Davis','https://lh5.googleusercontent.com/-izkWbYSuskE/AAAAAAAAAAI/AAAAAAAAAAA/k0VjOi9vqoc/c-rp-mo-br100/photo.jpg','16590124370714063921',3150),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uriv9mx2woJGVCrlB_A2u3PwwNJ4Ja7oXZPyoFjjOLf_-Y3PCojlCkSs5Lf44_lSd6shhps-qofwWeSvC0AUclTuTSlcU','Excellent service very polite. Very fast','2019-02-22 20:22:18.742000','2019-02-22 20:22:18.742000',5,'april turner','https://lh5.googleusercontent.com/-1KARtrV2Boo/AAAAAAAAAAI/AAAAAAAAAAA/wcZXo7mdcrM/c-rp-mo-br100/photo.jpg','8626688543755174284',8548),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urjBVEEoNC1gcxY9KTAICjP9sVhYWmLqqhZgBR-gb6MJ3B-IJxe1FcAgTeAmdph4172bLSqfyf1NUHGApP-r1Sx17XTlg','The people here have little to no bedside manner or customer service skills. The doctor who I was going to see was very rude and made me feel stupid for coming in. AS I ALSO WORK in the medical field I was very disappointed with how I was being spoken to. Front receptionist had a attitude when I told her that I will not sign the forms/packet that was handed to me. Do not recommend. Worst experience ever.','2019-07-13 06:32:17.910000','2019-07-13 06:32:17.910000',1,'Yvette','https://lh5.googleusercontent.com/-zR6XAbsjNOY/AAAAAAAAAAI/AAAAAAAAAAA/XxU7iW2KGy4/c-rp-mo-br100/photo.jpg','8679688254631342173',8820),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urJhMeXwW85cbD1FRvtU_EPL0IJG05O1wMVuj7am3s6GSFP5uFpVX8rwyOuF1rJk7C14dC5TSwp1Fv_A2oYIbV-Vz9_H4','Always very quick. I\'ve been twice and I barely started filling in my paper work before I was called back!','2019-08-11 22:07:46.698000','2019-08-11 22:07:46.698000',5,'Gabrielle Amaya','https://lh5.googleusercontent.com/-FvMx4rYuVu4/AAAAAAAAAAI/AAAAAAAAAAA/Hbma0LCJGFo/c-rp-mo-br100/photo.jpg','16590124370714063921',3260),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urji2SGS3mvaWj7vz36DclXzErf5qZoNJ2DCPAB2aOwCYNTDPdfmiVOfnrbiUdxNhCboqdRaxLzTKoW_BEuHc6SuDltD8','I make an edit and give 5 Stars\n\nI just spoke to Maria from Billing Dept and she was amazing the way she helped. Thank you.\n\nI think this is the first place i experienced who thinks about their patients before anything. \n\nNot only the staff at ER but the Billing department too is very thoughtful -they provided huge discount for the charges they charge. \ni would say, first place who thinks from patients shoes.\n\nIts the best spot to go to. \nDoctors are good and fast.','2017-06-12 15:36:54.254000','2017-06-12 15:36:54.254000',5,'Vatsal Thakkar','https://lh4.googleusercontent.com/-yfl1mRZASx8/AAAAAAAAAAI/AAAAAAAAAAA/XscrwtqZPqY/c-rp-mo-ba4-br100/photo.jpg','17394740196501090048',5038),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urJPkxUrZKwvoAHefLUcXk6VfLplkrj7VLwY-zvz1403XnyLIiFsd6hQZYl3ItfA4QeRMS9NrDv5h3LGWNUHMRPTNHxeQ','Cat and Pat gave us great care and made us at ease during our visit!','2020-03-06 15:52:56.632000','2020-03-06 15:52:56.632000',5,'Miranda Lamar','https://lh4.googleusercontent.com/-_AfoDw8Y_hM/AAAAAAAAAAI/AAAAAAAAAAA/AE7jjf3i-Dw/c-rp-mo-br100/photo.jpg','16590124370714063921',21037),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urjqUzESLoZVC5lqiBGheGqUTRGarnpxLFigdrZcg3yoAL5JkWKEX8dzHkeDkdpoHWhS086s1_E-0D_aTsphay5UNHwEM','I had a good experience at the ER center in the Heights in spite of the fact was sick. The team Samatha, Brandon, Byran, Joann, Juan and Dr. Singla took care of me the whole time I was at the center. My wait time was less than 10 mins. The front desk representative Samatha was kind and patience by going over all my paperwork. The nurses Brandon and the 2nd nurse checked on me Bryan thorough out my visit. The rad tech Bryan made me feel comfortable and at ease while taken my CT Scan. Dr. Singla answered all my questions and I left feeling please. The facility was spotless and there was nothing out of order. I was out and at home in two hours. Good customer service.','2020-03-05 19:21:43.977000','2020-03-05 19:21:43.977000',5,'tappy jones','https://lh4.googleusercontent.com/-ZOaoCapVRbA/AAAAAAAAAAI/AAAAAAAAAAA/QM0EsHXOrc4/c-rp-mo-br100/photo.jpg','14567670160750071148',20953),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urJrUbyosNw3B3q-CdHOsrtYBs3dvVmrcvA9lRT5F21Tm1vNQ_-J0VFZaB9gtOzynH0rIIu0EiU3s1hbhIKtpua7XfdbI','Very friendly and fast medical attention, with the greatest snacks...','2019-07-09 23:20:34.881000','2019-07-09 23:20:34.881000',5,'Beatrice Saldivar','https://lh3.googleusercontent.com/-xsP-4hJ083c/AAAAAAAAAAI/AAAAAAAAAAA/b_hSleRPxBU/c-rp-mo-br100/photo.jpg','14567670160750071148',1277),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urjsgf616-oSYs-LxF-ZADB02WB_9Kz45qKKN5wUkv2OsSjQNAcSlmbWTQ7172igryryIGtZlmwitKKp-_ZEzKnJ56rw0','Fast, easy and simple process. People work steadily and quickly.','2019-06-05 18:48:32.632000','2019-06-05 18:48:32.632000',5,'Dash','https://lh3.googleusercontent.com/-0s_KA2jHZQk/AAAAAAAAAAI/AAAAAAAAAAA/q5DnmeP_rl0/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urJV4aHvpX7jAV6kxzkCvJJ0dbDEd7LkZc9OUp3CD95bK45leqb0ueV8tudWp7K10wht72jokwNaSLUc-iLxlAB6xdReQ','the experience is consistent! Every time we come here, we are in a room being treated before we can even finish the paperwork. Always see a dr. within 5 minutes of being in the room. Of course, we\'re consistently offered a warm blanket. This time, our young daughter was being treated; the staff was so good with her: very caring, funny and able to gain her trust and cooperation. We were in and out within an hour, prescription in hand and headed home. Can\'t say enough about this place. Completely first class!','2017-05-09 18:18:52.750000','2017-05-09 18:18:52.750000',5,'Stephen Rimes','https://lh4.googleusercontent.com/-NzDezHtbtXY/AAAAAAAAAAI/AAAAAAAAAAA/ANBKiDoqSyI/c-rp-mo-br100/photo.jpg','14567670160750071148',1827),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urK-wewbiSXxCN708sptzHB8e5KYcS7f-m45Y2wSdSpVUHfsV2Z94MH8YINQkzQOD9hc9h2e9XixfdXqxIA-TQ-1h7ZsM','What a great place. They took amazing care of our emergency.','2019-02-27 04:46:54.308000','2019-02-27 04:46:54.308000',5,'James K.','https://lh6.googleusercontent.com/-fXckfN1f0bk/AAAAAAAAAAI/AAAAAAAAAAA/qG8H_YGNKCg/c-rp-mo-br100/photo.jpg','16891069708558046635',4340),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urK-Wowk7LZgQlTeFReicaeYvTW-WbZu3pZfU0xG91HU1dSAFw7OlLEaACrgbmJ1yywD0qfjYUFfHl3sjMo-WYFXPCc4Q','I was visiting from out of town and fell ill and needed medical attention. I Googled \"Urgent Care\" and SignatureCare pulled up, and with great reviews. I\'m glad I chose to visit because it was a great experience! For starters, I didn\'t have to wait. As soon as I signed in, I was immediately taken to the back and the staff began attending to me. And the staff... The staff is amazing! Every one of them was very friendly, hospitable and attentive; Dr. Hannan, Carlson, Delena Marie, Penunuri and Alyssa. I would recommend SignatureCare to anyone in need of medical attention.','2016-09-30 15:32:50.162000','2016-09-30 15:32:50.162000',5,'Maxine Villegas','https://lh3.googleusercontent.com/-BamzBztxc44/AAAAAAAAAAI/AAAAAAAAAAA/wvFDJtVDdGQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7932),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urk-X8ai_uP7aGFj9elL4-SEJVUv36cpXR_klBo8EUcyYvmXlWCLl94BRZooA3Ru-s99p4d_BKM8hVJsWHSGl0HqUOsis','Had to come in for stitches. Easiest ER visit I have ever had. Had a plastic surgeon on call. He was here in less than 30 min. All things considered pretty painless process. I would come here again but really don’t hope I have to.','2018-12-08 01:25:08.299000','2018-12-08 01:25:08.299000',5,'Laura Delfausse','https://lh3.googleusercontent.com/-YUrTjMjZxFc/AAAAAAAAAAI/AAAAAAAAAAA/n9Gviq2gSdU/c-rp-mo-br100/photo.jpg','16891069708558046635',4392),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urk1IV1RcIOxR-0qPCzB41Ngf0J8OOX7F3f8nBZeNLV6GRZ-fBOuO3J-elBWP3GyWih_TNfEG66KcHyc09tePZ2VULXgY','The staff is super friendly and make everything very easy! Lorena T & Victoria P are very welcoming when you come up and don’t wait to acknowledge you like a lot of places do. Jeri D and Matt explained everything very clear & answered all the questions I had! This Signature Care is very efficient and well managed even in this time of crisis!','2020-07-31 20:26:25.614000','2020-07-31 20:26:25.614000',5,'Haley Cotton','https://lh6.googleusercontent.com/-DyLXBNl5uu0/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn52xXdPek4DO_4ayJDSYpsWMhoEQ/c0x00000000-cc-rp/photo.jpg','16590124370714063921',21989),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urK7p7tbNgCo5ORjBKn4eBwDjPGlFJiRyPjiB9qUp56qAvOemLvTwEtrq0XxJH97rkqKEOsNfkFZWq-R-xYFTQiiJkIjk','This ER was wonderful! Everyone was so helpful and nice!! And a big thank you to Courtney S.','2017-12-14 05:55:13.549000','2017-12-14 05:55:13.549000',5,'Anna Gibson','https://lh6.googleusercontent.com/-aKcNwRp_2aQ/AAAAAAAAAAI/AAAAAAAAAAA/TyqqtOL9qGw/c-rp-mo-br100/photo.jpg','8918455867446117794',9325),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urKCzgn578pn7FFaDydRrwYGLBWtvSmtwp1Xdv6dOb8M-UXS0t2Nr-gce_y42e2mXSZxBGON6NXcUfKFv0tCPFIyRpHHs','The staff was very nice and friendly and fast. Thanks dr yast, RN Karen and Kim at the front desk and Sherri the RAD tech','2019-04-19 17:32:33.951000','2019-04-19 17:32:33.951000',5,'Jennifer Freeman','https://lh3.googleusercontent.com/-aLM3u7iM0EE/AAAAAAAAAAI/AAAAAAAAAAA/1yf88i8UftQ/c-rp-mo-br100/photo.jpg','3272657195432704501',6975),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urKEUqVdEnUJHMXPif4qYW0qPQI5CzPaulq3mWbrMBvOG1Soh40TTwaDVmh1hS7p4_5XI7TFILenfhBksE_f36YvzVyQ0','Great place! Very friendly! Dr.Yost and nurse Jennifer W. were awesome!','2020-01-27 16:42:31.815000','2020-01-27 16:42:31.815000',5,'Hershie McKinney','https://lh4.googleusercontent.com/-gcHCOXxkowE/AAAAAAAAAAI/AAAAAAAAAAA/brmD3qLbun8/c-rp-mo-br100/photo.jpg','3272657195432704501',10273),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urKiAs6DxqO8s_t7Ah9LsnA8c8L_KlFr6eX6sV-vPCgUNRAsbiRKRlJg5UmHS-yVgW1sAbbkrs173nBwuFEd97F2WjJm8','What great staff they have Tabitha, Manny and Marisol were so super nice and very help..its nice when you are greeted with such kindness in a time that you are worried of things are gonna turn out. I really love going to Signature Care Emergency Center they have such great staff and the Center is so clean. Thank you so much💗','2020-08-08 00:21:30.488000','2020-08-08 00:21:30.488000',5,'Veronica Mendoza','https://lh3.googleusercontent.com/a-/AOh14GjjJJ5OZt_8n5jhrCMHY4xEtptfwwjvXnfOvtIRMw=c0x00000000-cc-rp','6521947413723274945',22179),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urKKOL8NOisWIjbAvdW0lpd7fg0B5FvOelkoz_zCbjs2OHB_lwINsTjCHqIE2FbgYKtAZYC2ZJyyhYKzeeYIv7yYTJrC4','Always quick to be seen and very respectful...Thank you...','2017-12-21 17:30:47.375000','2017-12-21 17:30:47.375000',5,'Clarence Langston','https://lh5.googleusercontent.com/-1sqS8qUpkK8/AAAAAAAAAAI/AAAAAAAAAAA/-wH2gDUEaeg/c-rp-mo-br100/photo.jpg','8918455867446117794',9319),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urKL7DKkI9VrbZ4B9vto7e-us539kneHohI8d28ar9GmWMxxq9Jw20_EpDCpznTdgSA8qJD5vEE-zK0wjwGA9od4hQRtg','Clean facility! They work very fast and the staff is amazing!!!!','2017-11-22 17:20:31.695000','2017-11-22 17:20:31.695000',5,'Tylundria Anthony','https://lh6.googleusercontent.com/-AVeLlwcJZ-8/AAAAAAAAAAI/AAAAAAAAAAA/KAGnR__YLcQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1727),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urKlRcdRgn3VemdVmBDmbR16VYDYKdU9QscbY6s6n8Cp19hUvc3VefZhXqSlBqyX5WPB4i9Lngy5xGg4xC_xq6kEQMdFY',NULL,'2020-02-26 23:33:15.788000','2020-02-26 23:33:15.788000',5,'Kintra Cooper','https://lh4.googleusercontent.com/-z27ObBYldwg/AAAAAAAAAAI/AAAAAAAAAAA/m2oU-p6W8Kc/c-rp-mo-br100/photo.jpg','8679688254631342173',14725),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urkmDA6aQPQh92Ep-xZK2Z-TLDHBzV31lCUk4OEzGcf_5fWmHEoqkkagXAkeRC70o7RhRwAFHRM-0AgRaKVWoGRi2jnUU','Came in at 7am on a Saturday and was taken care of right away. Dr. Kimball, Nurse Ashli, Carolyn and Aileen were so caring.','2020-02-29 15:33:00.236000','2020-02-29 15:33:00.236000',5,'Tiffanie Smith','https://lh3.googleusercontent.com/-56csWt_3epg/AAAAAAAAAAI/AAAAAAAAAAA/hYeazp4dEfo/c-rp-mo-br100/photo.jpg','16891069708558046635',13924),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urktzCw745mpPZ8CkF7v-lNTiqTJyQKEfEXsQmTU8uJwT2T4Szg2bQ11uCtiEHe4vhIlYdiwhBbFbn7G8636wVZ3UoqLw','Excellent staff, very caring','2019-05-14 20:43:40.569000','2019-05-14 20:43:40.569000',5,'Eddie Kyle','https://lh6.googleusercontent.com/-q25BOLgrtXY/AAAAAAAAAAI/AAAAAAAAAAA/SUE3qrQhrIs/c-rp-mo-br100/photo.jpg','8626688543755174284',8486),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urKvoNcNEBKnNqOTeHDNQcLeId1XuY0hVk3zGntHLRty_50EWP-JaQjUc725E4D_tCGuHLS8WqAGjPNvA4buZhJq7oz5I','Cody, JD and Sam were all very helpful with my Covid testing today. Thank you guys!','2020-07-28 13:08:39.089000','2020-07-28 13:08:39.089000',5,'Tyler Riordan','https://lh4.googleusercontent.com/-hO7VHw9mHvA/AAAAAAAAAAI/AAAAAAAAAAA/MaEQhNU1x0g/c-rp-mo-br100/photo.jpg','2077061009497551125',22801),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urkX_UV2llgr2q_G0kgLz-e88utCBkLUcSNu5bzZlhsIfNYAwMMQQyGArOVMF28bGJMrenSlj54q0Wrb2wvBECfcvpIX4','Patricia, Alvean and Marcus were great! They took great care of my wife.','2020-02-06 19:37:16.664000','2020-02-06 19:37:16.664000',5,'Joe Harris','https://lh3.googleusercontent.com/-UzoMtfprrko/AAAAAAAAAAI/AAAAAAAAAAA/ZvZppDyDiC4/c-rp-mo-br100/photo.jpg','16389487648212004696',22618),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urKyGHVWWTh2hiBXwCpOwzbhPeF9Bl3qKtFecXIoAWS_eX4k35bKCbfBJsh5XfDy85sEor2ULTTeQZiaX2LQ_AbjZiK3w','Aaron Ortega was wonderful to work with. He helped to ease my concerns about covid19 and provided me with valuable resources. He was a pleasure to work with which is especially nice when dealing with health concerns. Thank you Arron!','2020-06-27 18:27:53.979000','2020-06-27 18:27:53.979000',5,'Teresa Porath','https://lh4.googleusercontent.com/-u6gS5dDRmBM/AAAAAAAAAAI/AAAAAAAAAAA/F0Si5zlBzlY/c-rp-mo-br100/photo.jpg','13486358490203335051',21249),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urL9ATvGzXlxXamQvqmHHEbZ24OEdVH6wFOGmz1SKSdeGE2-3EtxTzweisFXJ_UvMqAUGtDvqunh_-QNlQ6lO3yELJuRk','By far- this is the absolute best emergency room/ medical staff I have ever dealt with. I wasn\'t even waiting for 1 minute before being called to the back and immediately cared for. I received a thorough examination and multiple tests- to rule out all possibilities. Both doctors (Dr. Pham and Dr. Harjai) exhibited excellent, warm and all around comforting bedside manners. Dr Harjai sat down with me and we talked about my issues- where he displayed a genuine concern for my pain and wellbeing (which is not something you see often).To be honest, I am not a fan of doctors, but my experience here has shown me that good ones who care do exist. They accepted my insurance (United Health Care)- and the copay was the same as it would be at a Emergency Room. I will never go to another ER again...I will return here for any medical emergency. Thank you so much for everything!','2019-12-20 02:45:19.955000','2019-12-20 02:45:19.955000',5,'Judy Taylor','https://lh6.googleusercontent.com/-PHr3F3bZ2Os/AAAAAAAAAAI/AAAAAAAAAAA/27HvM6WsXaE/c-rp-mo-br100/photo.jpg','16389487648212004696',2533),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urLlKtJbfm7v2SXQovatPnZNMmFsANfHfRvpBcNKqsdqkNcy1L7Lj5zXoYCOOMOcSqQ0f6jIhqZBo-5nWBgJUzxdE6BVQ','My experience was very pleasant! Kudos to the team! Patricia, Thuy An, Alvean, and Travis took great care of us! Thank you guys so much.','2020-02-13 17:32:27.139000','2020-02-13 17:32:27.139000',5,'Courtney Lackey','https://lh3.googleusercontent.com/-6LdVrFGlQKA/AAAAAAAAAAI/AAAAAAAAAAA/K-Fvk_PFs8Q/c-rp-mo-br100/photo.jpg','16389487648212004696',10884),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urLMCj5mXOedjupzHzUk1EcNXRblqsmQTA9en5ebTjcRkqYy7F0qvnp3fsLyNgDMuJva33alIMW0Ff1frdndw2ARvZGhU','The staff at Signature Care ( Doctor M.Wang, Patty, Rachel, Rommel, Fatima & Nikia) were so wonderful and friendly. I was able to check in and out with a easy process. Thank you!','2019-08-29 05:09:37.629000','2019-08-29 05:09:37.629000',5,'Hall’s Way Moonwalks','https://lh4.googleusercontent.com/-1BfZfmco6yA/AAAAAAAAAAI/AAAAAAAAAAA/VXbX7VQP50Y/c-rp-mo-br100/photo.jpg','17394740196501090048',4614),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urLp_z2mNwbAr-GzyJaZnd-1CINIw3QTC3YMA2phsdiMsK5dRJC7zEL0Ty7LI94VqRZRy_aKd_UBQ31UVnTf91n17UatM','I had a great experience tonight. \nVery friendly and caring staff... I would recommend this place to family and friends. 😀','2017-11-11 09:14:31.831000','2017-11-11 09:14:31.831000',5,'Ace Dawn','https://lh4.googleusercontent.com/-HCuyD6ua6hM/AAAAAAAAAAI/AAAAAAAAAAA/UwY8zK-PZeg/c-rp-mo-br100/photo.jpg','13486358490203335051',1128),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urLR3pLn2rDZ0p-A6Po3F1JHB1cZz3CdhX1r3F0XOwCEYgaPL-xrn1TUA03e84fgz10Bxl7qydK6dTwloUxDh_aHAameM','Maya the receptionist was a great help! Location is quick and fast. Definitely will visit again.','2020-01-04 19:04:33.814000','2020-01-04 19:04:33.814000',5,'Jeffery Jackson','https://lh4.googleusercontent.com/-6R4gI1tEVtw/AAAAAAAAAAI/AAAAAAAAAAA/OjLa-A0iEg4/c-rp-mo-br100/photo.jpg','12541597562633926366',254),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urlS76P_qREccAPbdfe7OJZhz6MG7-dYTRmfiUAXPWnnJtV2nBTHqZ91J4GQbiYe6KZCfGKZgMGnUaeXibrxp-O4-mNA4','I absolutely LOVE signature cares atmosphere. 100% recommend. Especially visit Lucas, Kim, and Sherri!!','2019-07-23 17:27:57.044000','2019-07-23 17:27:57.044000',5,'Zoe Lovelis','https://lh6.googleusercontent.com/-ZipyVi8k4kY/AAAAAAAAAAI/AAAAAAAAAAA/-Gf0rO2WNq4/c-rp-mo-br100/photo.jpg','3272657195432704501',6933),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urlZPKy80AkrtBymqn8qrD4PBKhaJBGI8us2cEoRX72fVB8cljwy5QsAu4aEToJyyrmKL6gTrs7rzc_P2KxFrkNOTrQCc','Came in thinking I may have strep throat. Waited almost no time at all. Just 10 minutes in the doctor was confirming I had strep and asked what kind of medication I wanted to treat it (pills or shot). Jennifer Diggs, John Bell, and Matt were all very helpful and kind!! Will absolutely come here again if I need ER care! Thank you, guys!','2019-08-06 20:12:46.304000','2019-08-06 20:12:46.304000',5,'Russell Keeling','https://lh6.googleusercontent.com/-Rq2Q1PmZue8/AAAAAAAAAAI/AAAAAAAAAAA/Vs47GqGCMo0/c-rp-mo-br100/photo.jpg','8626688543755174284',8419),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urM-umOhmhGqkZMwxOdNOQVr8M8cctljEGI_gUeFZYc9Wm-QPAkVTwYuFVPoIlwb-sAfc2UnhUQp3SoSUQ6uFUj8kxu8I',NULL,'2017-07-15 00:27:59.744000','2017-07-15 00:27:59.744000',5,'Zoe Lassiter','https://lh6.googleusercontent.com/-LPsIccAAO3k/AAAAAAAAAAI/AAAAAAAAAAA/KDIBTd25LTI/c-rp-mo-br100/photo.jpg','16891069708558046635',4547),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urM0m8Fo2Ruq3dIADYhqU-adQpWWb2DsnTiVXnoe6Yq2vf0DEDRw0c7GnGwaIC95m8v7ZJMmiGxWWaVn64jZVlJzO0J3o','The service was great very quick','2019-01-14 01:28:38.369000','2019-01-14 01:28:38.369000',5,'chas m','https://lh4.googleusercontent.com/-uiHvShqFR1Q/AAAAAAAAAAI/AAAAAAAAAAA/QH8h96ASj6o/c-rp-mo-br100/photo.jpg','12541597562633926366',569),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urM9yMIuwha-Q7JaguHJC-o_G6GgXxEuJuIBRhhSAJmJt4aBS0Zcx4Ex-9Vhz6XhBOLWupTtbUq4ZAwbrLtjBL7ma5Ufg','thanks to Tanishia for your help with my dad. You were great with explaining the cost and process.','2019-11-06 03:31:57.069000','2019-11-06 03:31:57.069000',5,'Mario Ortega','https://lh5.googleusercontent.com/-nX0XYROKaVE/AAAAAAAAAAI/AAAAAAAAAAA/l-AUJlOSOzA/c-rp-mo-br100/photo.jpg','17898197009688164559',5463),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urmazUvR-TGnxWq1Y-t0Ev-Ku4_qABAMcv-UqpaKvW6uymn6PexLsXrbYsMh60bT1yv9-NWSNvlx-dVoKqxEXGUm2WSpA','This is place is the true meaning of customer care. So happy that there are places that still really care about the their customers!!','2017-03-11 23:51:00.827000','2017-03-11 23:51:00.827000',5,'brad hullum','https://lh3.googleusercontent.com/-uoAfCNy0qzI/AAAAAAAAAAI/AAAAAAAAAAA/uQlB7Jgm7v4/c-rp-mo-br100/photo.jpg','14904078213800803294',2392),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urmBwn8JV06BoZ_mkaYHAYUNjIcb2rYEENSylPEK2MiJC2GFf1DM6hDc4pXkebjXTlGzj3s9poDL6IfTXc9hVq65c9pC4','They have been amazing since we got here super helpful and very attentive l. Our nurses Adam, Marty, thomsman and doctor Dewall made us feel very welcome!','2019-06-12 21:15:02.713000','2019-06-12 21:15:02.713000',5,'Andrew Parks','https://lh5.googleusercontent.com/-nVQHVPTNS_0/AAAAAAAAAAI/AAAAAAAAAAA/BmLML3M2OF4/c-rp-mo-br100/photo.jpg','16891069708558046635',4254),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urmd8OZceHoGRVQ0bBxtbMqH1_Aui5QChswi9rq3fTvoMTcxZ4x4LC0SvjO0Wl6siwMqzggqDkVWVSYbWaSZ2oKoLmf5w','Peggy, Cody, and Dana were so helpful. My visit was quick and painless. Thank you for making this a simple process!','2020-07-29 18:13:55.831000','2020-07-29 18:13:55.831000',5,'Amy Arnold','https://lh3.googleusercontent.com/-r21FgvbsG4Y/AAAAAAAAAAI/AAAAAAAAAAA/kOAqTQxJO7g/c-rp-mo-ba2-br100/photo.jpg','2077061009497551125',22956),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urMFzrbIfZ6s8--YSQXwFdOY9-mkPJqUV6QT3gg7l252Q5RM4QiOa2Bh4Cq5V3N7uYM_irGeADDNIXjnFMZwHSeYoPAXQ',NULL,'2019-07-27 23:08:36.704000','2019-07-27 23:08:36.704000',5,'Gary Hare','https://lh6.googleusercontent.com/-4YENpOaOWm0/AAAAAAAAAAI/AAAAAAAAAAA/ktNgMT-DezI/c-rp-mo-br100/photo.jpg','17898197009688164559',5621),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urmhbUvYuWuisf52szxNk_8eRyGe3VgcwgKwre9UNuWxs4uEDKp_jEfuHCKzbXOKYYBetEw4NjDlglYSh__WznCpBBFI8','The staff was extremely nice and understanding . The wait time was less than 5 minutes which is unheard of. I would definitely recommend this establishment .','2019-11-27 09:26:14.993000','2019-11-27 09:26:14.993000',5,'Jasmine Butler','https://lh6.googleusercontent.com/--XNa7srbAe8/AAAAAAAAAAI/AAAAAAAAAAA/Crnangfc_dc/c-rp-mo-br100/photo.jpg','2694018788013845459',6001),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urmP3yxppcCJaqat7eUm3luXbwpVzhR6WnV4Ip0D-S6XtYDmCnjdyFHu-HowPCkhjy-SX3j3obnsIMZBdTY6-59JI1TD0',NULL,'2016-05-23 14:55:47.047000','2016-05-23 14:55:47.047000',5,'Melissa Garcia','https://lh5.googleusercontent.com/-zvtHfyanwvM/AAAAAAAAAAI/AAAAAAAAAAA/tphUvej9CxA/c-rp-mo-br100/photo.jpg','3511292162159714121',7997),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urMTWoaSq2fM0a4qAnm0PAO86984jKHHsKbrjz1somPfWWZWLTvnc3gZdEWR95IyW_RhCN0qJWeJeXY00HTiT0oNC_c78','This is my second time coming to this location. Both time I was seen very quickly and also taken care off well they a great at what they do.','2019-09-19 00:22:41.799000','2019-09-19 00:22:41.799000',5,'Jaime Morgan','https://lh5.googleusercontent.com/-ewLWDIEuHSQ/AAAAAAAAAAI/AAAAAAAAAAA/AqoN2jOaLH8/c-rp-mo-br100/photo.jpg','12541597562633926366',418),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urmYC25B0z74jU9d4udwOEVKhPFfx_m0yNBGpM5ces2XV9ze0x1V577E8ZIkElPAJTkurCHNwiJOTH8Tv-j--SDD-izTk','Super easy and quick. Everyone was very nice and caring','2020-02-16 21:11:06.515000','2020-02-16 21:11:06.515000',5,'Meghan Savage','https://lh3.googleusercontent.com/-tW3XDb7qBug/AAAAAAAAAAI/AAAAAAAAAAA/wXhOcF3NFlY/c-rp-mo-br100/photo.jpg','2694018788013845459',14230),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urmymLNddZHHEmKMFjjydyxtlt8nDgZUunSabiRSuTLAqWumk3CC1u3n6N4ZT4vCMWEfUmloRpz16gHXzZUE-9CJ_94IU','Thanks to all the staff that helped my wife , Dr Vaagenes , Manuel the nurse , Maria at front desk and Magali from radiology, will not pick another ER , because of all of you and also staff that didn\'t even help us were very attentive ask us if we wanted snacks and drinks on the house , never thought we would have a great experience here in Odessa , facility was very clean and on point . Thanks again','2019-06-13 01:50:46.354000','2019-06-13 01:50:46.354000',5,'angel c','https://lh6.googleusercontent.com/-BztBrSnNU_k/AAAAAAAAAAI/AAAAAAAAAAA/fzwyqAcnM1A/c-rp-mo-ba2-br100/photo.jpg','6521947413723274945',8237),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urN4pqy2ZNTvbtipPpi65GQZcHWQR0887GH6_7reX3mi17PcRU0AsM3Taef8UlRHPPqoD6pJsD4JVuhqpHJmuVBRONxqg','Staff very nice. No wait time. Dr very thorough and explained results.','2017-03-30 22:16:07.006000','2017-03-30 22:16:07.006000',5,'Peggy Debolt','https://lh6.googleusercontent.com/-cyIHXJ6QT6k/AAAAAAAAAAI/AAAAAAAAAAA/E08vBHcx2sQ/c-rp-mo-br100/photo.jpg','17394740196501090048',5080),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urN4WJ7pp9ISzZMv5KoHD9lt1a9MrCS6lLqo-GS93CX_yivK4kq3N7Gfi0zxj8oBHhYXrk9VdMks_aOEaILhTwRSDwjq8','I have always had a great experience at the Heights location and co-pay is always waived for first responders and their family! #win','2019-05-13 15:05:43.026000','2019-05-13 15:05:43.026000',5,'keith burmaster','https://lh6.googleusercontent.com/-XeCnzGpjdqU/AAAAAAAAAAI/AAAAAAAAAAA/HFx0EAh0Rk0/c-rp-mo-br100/photo.jpg','14567670160750071148',1322),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urn8aqzVWIvrw1Bwe96Tj4_7ffM5mFXW4a0P3WzR7zFg5iW44fkgHl8-GNl4JwoBi0Ty_ZPQI5JFf6BUgW6VjJVGW4MS0','LOVED IT, Tanisha & Ms. Lynn were the sweetest!','2019-11-18 05:58:38.494000','2019-11-18 05:58:38.494000',5,'Kaela Stimpson','https://lh4.googleusercontent.com/-ev6Aoimc7IU/AAAAAAAAAAI/AAAAAAAAAAA/YQ87W-hqGOs/c-rp-mo-br100/photo.jpg','17898197009688164559',5427),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urN9qJI-vzgUcAo7q0PtVvNoRy4oYlZRKa-Y1PtUihwFcywnBBxx5pHgraxe2gOEkPYWmRU72CfcGUZZCpuJ1btRfzans','Andrew,Kim,Sita,Kristina,Carolyn were amazing and outstanding great service highly recommended by far the best ER in Midland tx!','2019-08-01 03:01:22.604000','2019-08-01 03:01:22.604000',5,'B&H Channel','https://lh4.googleusercontent.com/-xq9aWzzD_x8/AAAAAAAAAAI/AAAAAAAAAAA/c892c3zbZfE/c-rp-mo-br100/photo.jpg','13486358490203335051',874),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urnDEK7ABf2setkRvx_JihbDNUCMANkCb5WPib2J4AwOTYKcYtqXvyhMaqBQipTgEm0tBS-RapK8DDctgIaSMeyoQZzUE','Dr. Yusuf, Dawn, Maryann, and Olivia were great!','2019-12-20 17:47:28.236000','2019-12-20 17:47:28.236000',5,'Garrod Jackson','https://lh5.googleusercontent.com/-JlOPIP6Apos/AAAAAAAAAAI/AAAAAAAAAAA/rO3kqAPo7iI/c-rp-mo-br100/photo.jpg','3511292162159714121',14479),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urNdKl09kMDV5b9rW6iXO9sMYoJ4koe6yxfZgvK_V2CBA8J_ulIn_k2TQ1eHq6Hb2JTV4D3guTrqE7lkcHwJq9vpyYVWw',NULL,'2019-07-08 14:12:07.270000','2019-07-08 14:12:07.270000',5,'Janae Smith','https://lh3.googleusercontent.com/-Kr-RyvjfGbU/AAAAAAAAAAI/AAAAAAAAAAA/BSCQbReL0HU/c-rp-mo-br100/photo.jpg','17898197009688164559',5658),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urnraJ3F6Hp30E9aup-3hMlpfxF47ezxno5Y5GZHAD1twGoMlpNzFE_qf5wtgDeqBJXKsLC73k_fKI5NAPrnfBggoQA_w','(Translated by Google) Very good service, very happy with the attention and service. From Dr. O\'Malley, Alvear, Tricia, Jordan and receptionist Patricia all very attentive.\n\n(Original)\nMuy buen servicio, muy contentos con la atención y el servicio. Desde el Dr. O’Malley, Alvear, Tricia, Jordan y la recepcionista Patricia todos muy atentos.','2019-11-30 19:23:19.595000','2019-11-30 19:23:19.595000',5,'Enrique Favela','https://lh5.googleusercontent.com/-5Fk8QntrzLk/AAAAAAAAAAI/AAAAAAAAAAA/uEr0RQmfhkI/c-rp-mo-br100/photo.jpg','16389487648212004696',22638),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urNRZBBVYgBJxR0JERvAdYhoHtoRqwSuB4NE_NY1TZAvotpBBRNlMLUDN2-SPNDz95HFtKwgl-TZ1REE0c4o8mucYaGvo','I was surprised by how friendly the staff was! We got in and saw a doctor immediately. The entire process took no longer then an hour. Would definitely return if I had another emergency. Glad I didn\'t waste my time at the ER!','2016-04-25 14:34:43.937000','2016-04-25 14:34:43.937000',5,'Alexandra Morgan','https://lh4.googleusercontent.com/-720fH4X0ZQw/AAAAAAAAAAI/AAAAAAAAAAA/UvSST4FIUAc/c-rp-mo-br100/photo.jpg','17394740196501090048',5263),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urnvbPh0P_3U_XyYW_f9U_i9hP8xclrz03ZGgaTXW5-RxY7RNiJZ97NT6ksCXf_AGrViYQy2N54XyZVB3jAb7jkwNMmhg','Very friendly and welcoming staff. They were focused with their work but also very comforting. Dr. Dyveliz did a great job of reassuring me during my visit. Jacob was awesome with explaining what he was doing. JR was very friendly and patient with me during my first CT scan.','2018-08-03 19:25:56.870000','2018-08-03 19:10:55.261000',5,'Andrew Ortiz','https://lh6.googleusercontent.com/-XMbYsKCDhdk/AAAAAAAAAAI/AAAAAAAAAAA/c1E9c1ddf8Q/c-rp-mo-br100/photo.jpg','16590124370714063921',3800),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urNzh6Nl_1aAg8KtOz7p-36O0cNRUzmacCQXPFqYxvPl8WJzbvrmEain8QweE7QVuCyCSnitMFnvLIOGQUoEae2-lo57M','All staff was very friendly and ready to help! Made a trip to emergency room during such a weird time in the world a comfortable experience! Highly recommended!','2020-08-04 14:31:45.452000','2020-08-04 14:31:45.452000',5,'Jake Meinardus','https://lh4.googleusercontent.com/-KQcClBdctBc/AAAAAAAAAAI/AAAAAAAAAAA/u9Mg4R-hcA0/c-rp-mo-br100/photo.jpg','2077061009497551125',22735),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uro-oATGTxU-pTvkSLCvhT9NxW9l0poJLvy_cY4B7PDpZ9_MyZSj41y37Zlb904IqESveY6ToZJOgaC5zpLtOwPyOWJBs','I had to go in for a stomach ache and I was very impressed with the service at signature care on TC Jester. The staff and doctors were amazing, the wait was short. Rachel, Dr. Miller and Dr. Ratliff were so attentive and caring. I felt so lucky to have come here for medical attention.','2018-03-31 00:33:09.650000','2018-03-31 00:33:09.650000',5,'Axzel Sequera','https://lh4.googleusercontent.com/-W7-Ee2AjxD0/AAAAAAAAAAI/AAAAAAAAAAA/Z--ve-1lO6U/c-rp-mo-br100/photo.jpg','14567670160750071148',1642),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urO2Aqbhpk1sYrz37u_-m-Y_k64grAvtHweLzWo3ZLh7EME2E5NYSlIarLKZfnvqrZfJDsAfWwwdxil7ZhgxJ-nM__T-Y','Jesica s she is very nice whit the patients in drive thru and all the personal in the clinic are very nice also they are very attentive to the patient and they give us all information we need to l give the 5 🔆\nThank you all !!','2020-07-20 15:21:58.254000','2020-07-20 15:21:58.254000',5,'Frank Segura','https://lh4.googleusercontent.com/-mfZcc3Qr9jc/AAAAAAAAAAI/AAAAAAAAAAA/uW3mwBh88Q4/c-rp-mo-br100/photo.jpg','14748677429039074158',21671),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urO67pIMmeZUP_qS3uew2szC-gALLHho8AAuaGIp_bQZqc5JRluGHZ1Qo4dCRvNJRlEfrcVcka0hqgkWfACO0frH_bq0g','Absolutely the best team of Doctors, Nurses to front desk personnel. I was listened to and questions answered. I highly recommend Signature Care Emergency!','2018-06-22 06:49:07.055000','2018-06-22 06:49:07.055000',5,'Tony Ryder','https://lh4.googleusercontent.com/-5xA1Wgqs_v8/AAAAAAAAAAI/AAAAAAAAAAA/VNppEV3szC4/c-rp-mo-br100/photo.jpg','14567670160750071148',1608),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uroBgE0s445MpuvwOpaIOJv9p99JmocR0BBcP-mg6jetpf2IKHZ5voKoeo5XRVTAoW8dG-WFSK5Ef3kQMMqc0Cldexu1A','I can’t tell you enough good things to say about the care we have received from Sarah, James, Dr. Thomas, and can’t forget Daniel. The took great care of my son!!! Tanishia at the front desk kept us inform the whole visit.','2019-11-20 01:31:53.664000','2019-11-20 01:31:53.664000',5,'FONDA HIGGENBOTHAM','https://lh4.googleusercontent.com/-GC6MA3xv0j4/AAAAAAAAAAI/AAAAAAAAAAA/wW6O5bkzcBc/c-rp-mo-br100/photo.jpg','17898197009688164559',5418),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urOQR7Aatyq2xPWo3V8C1evQZQEv8g9e95Wyvcpru6sUBs6o_jfFsTFirGrC_xWTQVwlGmhypAZ6SZtFD5tApuVZgwJQ8','Great customer service and very friendly staff got to us quick! Would recommend to friends and family. Dr. Cavazos was great knew what he was talking about and Nurse Rollie handled me with care. Rad Tech: great customer service skills very friendly. Reg: Stephanie was kind and helped us in a timely manner great Customer service skill.','2019-11-20 02:20:49.220000','2019-11-20 02:20:49.220000',5,'Jailene Coss','https://lh4.googleusercontent.com/-MOMISSiNnzw/AAAAAAAAAAI/AAAAAAAAAAA/3ltNtUZmOU0/c-rp-mo-br100/photo.jpg','8679688254631342173',8716),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uroX4lzC8uo8-RaMm-E0Mo_j44SlytAGYI54vQyHcDCCMj1F_yC__C0asmIXjtJN2G0h9ElIc-NEiBW0wPgYlJT-2lW58','Amazing help from registrations Tanishia w \nDoctor Patel ,Nurse :Sarah G \n,rad tech :Fatima B , Er Tech Daniel B','2019-12-11 05:26:08.781000','2019-12-11 05:26:08.781000',5,'xPro_Sage_','https://lh3.googleusercontent.com/-j0OWJVQbBdk/AAAAAAAAAAI/AAAAAAAAAAA/WQkmGSSNybA/c-rp-mo-br100/photo.jpg','17898197009688164559',5362),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uroySnR1dFFQwiVhEZatK6C6rntCObl_4iZ2OWjGI2E3WCVrDU3zqWeM9ngcYGUC-xZydR1ujRR2PihfZMXmzIK-XvUiw','A little far from home, but worth the trip and only place open 24 hours, that could handle my situation. Had severe dental pain (it was midnight and no dentist office open), went in and was seen in less than 3 minutes, everyone was welcoming, friendly and handled my care effectively. Dr. Rose, Nurse Katie, RT-Frank & Edward at front desk were very compassionate. Thank you!','2017-11-30 17:17:38.117000','2017-11-30 17:17:38.117000',5,'Ladell Mitchell','https://lh5.googleusercontent.com/-swnQO9igxRQ/AAAAAAAAAAI/AAAAAAAAAAA/062JlWerxpk/c-rp-mo-br100/photo.jpg','16891069708558046635',4534),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urp2EsqTwbt2JaAnVBfA6OI_h2xoKINVQ-Jq4FHL-QXH65MCI5XCn7NBjOskwxPMvzksUgwQOQWXufTon1bXY4cS_ydZA','I came in with a friend that needed medical attention and was extremely impressed with the service. Her RN, Anthony, was very attentive and helpful as was her Tech Natalie and Dr. Vakey. They all did an awesome job and I would highly recommend them.','2019-05-20 21:33:10.331000','2019-05-20 21:33:10.331000',5,'Jessamy Tomlinson','https://lh4.googleusercontent.com/-xVRD0L9ZMrw/AAAAAAAAAAI/AAAAAAAAAAA/byl_ur46DDo/c-rp-mo-br100/photo.jpg','16590124370714063921',3381),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urPaJivPlYPRkhi2Erv0AhpXJZUbFiigeeHojpCux5a0pU3WSirvIwd_J5ZQS9WgZ2aOnpx_U8FdpFMttH0kY-lGFVumU',NULL,'2020-07-11 17:34:33.455000','2020-07-11 17:34:33.455000',5,'Ray Stroud','https://lh5.googleusercontent.com/-EQC2msk0dUo/AAAAAAAAAAI/AAAAAAAAAAA/k_k9py-ewmI/c-rp-mo-br100/photo.jpg','2077061009497551125',22861),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urPbVWOex0bosNrM_xyYW1V7K9bUHOWro8oc9pIrkkFMrX4Wvw7_ZkyO6x_1j77M9qqg_ZJZ5uh3v0w0lhH6iUKMILNjo','awesome facility and every attentive, my nurses Keira and Senaida were very nice and made sure I was ok... Dr. Anders was also really nice and answered all my questions! Definitely recommend signature care more then the regular er hospitals','2019-12-24 07:48:40.914000','2019-12-24 07:48:40.914000',5,'Jannette Rodriguez','https://lh5.googleusercontent.com/-c1fG65mb4Oo/AAAAAAAAAAI/AAAAAAAAAAA/2yS2jD8N4kM/c-rp-mo-br100/photo.jpg','6521947413723274945',8041),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urPLEPn6PPo2zw-3Eia5jHAFRwiy1DTWBk7dprsdkmX-pr4PuGqd25U4dhoPlZCrpk79mrYn8egTxiHvBa7SJ2fKS1A7k','Cody helped me out; quick covid test, results within 20-45 min. Beats waiting a week+. Do this if you have private insurance, they don’t accept medicare.','2020-08-03 21:50:59.851000','2020-08-03 21:50:59.851000',5,'Chandler Scott','https://lh6.googleusercontent.com/-dEYk8uNNUKc/AAAAAAAAAAI/AAAAAAAAAAA/dBk3PweV7OU/c-rp-mo-br100/photo.jpg','2077061009497551125',22741),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urpM4Jgnp5BgTXO9WwrYro16-lPeRuoitcghYdgKBvMCiEklnk5UAf1aGPnf2L9cgZhNOXsgZBJPdxq_bgNlmc5sUP8yE',NULL,'2019-07-01 18:08:53.585000','2019-07-01 18:08:53.585000',5,'Lisa Serpas','https://lh4.googleusercontent.com/-eOgDvXFsUto/AAAAAAAAAAI/AAAAAAAAAAA/GGcUawmfRYk/c-rp-mo-br100/photo.jpg','13486358490203335051',904),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urPODLgyieky6pUCAIMC_bkdGeqdwqh87hu3XxuKlZ_vWq_nHR5HUBd9n7DvT3UyEAzt2Zjze4jnLQVxfFGp474kBOqcQ','As a healthcare provider I always get nervous when the roles switched and I become the patient however this facility took care of me promptly and made me feel comfortable.','2017-05-30 09:21:27.634000','2017-05-30 09:21:27.634000',5,'ambrielle davis','https://lh4.googleusercontent.com/-ToJSBpcJnJY/AAAAAAAAAAI/AAAAAAAAAAA/AIiCuF5cpkA/c-rp-mo-br100/photo.jpg','3511292162159714121',7816),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urpqoAWnCByeEKawVDFMb41J19A24XitSKALRKaVpJb3sHt68jaRS-7riam-bwlFX7S-2vaBaBYWOJa6bpcp4H5_zj9A4','Experience was great! Lisa made the paper work easy as possible. Jose did a great pain free job at drawing my blood. Allison and Leah completed blood work fast. Dr Huerta was very professional and informative. I would definitely recommend this emergency center.','2020-05-31 15:10:31.290000','2020-05-31 15:10:31.290000',5,'Rodney Hobbs','https://lh4.googleusercontent.com/-TOSDhnP-xz4/AAAAAAAAAAI/AAAAAAAAAAA/F62C1m2FTg8/c-rp-mo-br100/photo.jpg','13486358490203335051',21363),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urPRNHxRn40MlyemsabP3NiW2ZrpsCvTuKuJYCUW59BDPAmV3VNxeG8YPOrOIA-hTC7wIOPrd4KkulEbWDmLalpYPZXG0','The South Austin location has the best staff. Amanda made sure that I had a room immediately and made me a priority. Everyone had an upbeat attitude and overall good vibe. I would go there again, if I had an emergency situation.','2020-01-18 00:44:03.875000','2020-01-18 00:44:03.875000',5,'Lisa McDaniel','https://lh6.googleusercontent.com/-ZiQp0O3JrlQ/AAAAAAAAAAI/AAAAAAAAAAA/c9xCApkN6LM/c-rp-mo-br100/photo.jpg','16891069708558046635',10069),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urPRuIaxgI6QmlGic8P41G_FA6_qEPLu05GwWyJIEYf5P1mi-TzTRE4AoXuUqMVtszDBiZ_TK8bk1kILTjvkp1ar907hU','Very friendly and professional young staff and hardly no wait. for the issue that I had, it was a very good experience compared to other places. A+','2017-02-20 18:02:54.186000','2017-02-20 18:02:54.186000',5,'Dee Diab','https://lh6.googleusercontent.com/-0vlfBEPW_DM/AAAAAAAAAAI/AAAAAAAAAAA/tN_WwqSBixs/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7873),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urpstvoysVm5cCQc7a2wP9GOj5Y7hbYJ24j9O6O-_be7TxL8P7GgTISNzOYq-Q9y8kTNJ57ijKkb-dAVxVsScOuJXfI1k','Very sweet staff. I was in and seen the doctor within a hour. Linda check me in and had me in a room in no time at all. Karen the nurse was very nice and filled out all the paperwork. Very,very thankful for that one. Sara was very kind and quick with the x-rays. The environment was extremely clean and nice. Dr.Curtis came in and listen to me. I don’t feel like I was charged for useless stuff. I would recommend for anyone to come in that has a non emergency or emergency situation:','2019-12-26 01:37:53.351000','2019-12-26 01:37:53.351000',5,'emily gentry','https://lh5.googleusercontent.com/-AfufPkArlbw/AAAAAAAAAAI/AAAAAAAAAAA/5XAod0X0IZ4/c-rp-mo-br100/photo.jpg','3272657195432704501',6828),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urqb8umeonqEL92AWGpNneDrgVADce5QYVKxOLsm_pheDw6nTDkGzFPSV0KXfvNJqndx8squqPCv7VkYeoDftJXon1hPs',NULL,'2018-04-16 20:07:53.779000','2018-04-16 20:07:53.779000',5,'imquyen p','https://lh5.googleusercontent.com/-eivTQoBMdI8/AAAAAAAAAAI/AAAAAAAAAAA/FeNNSWJl4iE/c-rp-mo-br100/photo.jpg','14904078213800803294',2262),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urQBxbnoborRwybOd2S4Hr1qbeJL7b1zHPGccU7SJf7D_8477iDonyr0G11owI2UvoQasyZfPIBTfbEDhpLM7h5XgO47U','Best ER I’ve been too . I was seen within 5 minutes of being there . The staff were very nice and the doctor and nurse were wonderful .','2018-06-17 12:38:22.563000','2018-06-17 12:38:22.563000',5,'Steven Nguyen','https://lh3.googleusercontent.com/-MNDNNtjfEkA/AAAAAAAAAAI/AAAAAAAAAAA/lCEjIwL559A/c-rp-mo-br100/photo.jpg','8918455867446117794',9262),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urqC7xxU1rCKBHl7OsvHUb7u5C8aBe0rrO2ZUIZgrovCq_vpzNFVkDm7KLDC7KGihUqysmqYIPeFZF288ftaAuEfbX7aQ','Great staff and excellent service','2018-07-17 13:44:59.555000','2018-07-17 13:44:59.555000',5,'TEMI KUKU','https://lh6.googleusercontent.com/-jEfuiIGilig/AAAAAAAAAAI/AAAAAAAAAAA/BEUsdwGXO_k/c-rp-mo-br100/photo.jpg','17394740196501090048',4831),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urQlkS8g2EhLUrwh3tOAsVNJ6n2NVEk9xYb70E0fgQmppl36tu2ee183ITnpJLucDIyeN3XUvxzKHPBLhL1KYAMIkD9LQ',NULL,'2019-02-12 19:06:00.646000','2019-02-12 19:06:00.646000',5,'Krystel Woods','https://lh6.googleusercontent.com/-U5e1LcPsI00/AAAAAAAAAAI/AAAAAAAAAAA/wfEaaCXj14o/c-rp-mo-br100/photo.jpg','6521947413723274945',8311),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urr6LlJZuNLMU8OiATLPUHJCTHDDiCgsooKtugrcgDmMUL4dy14twUelfsR7nSRuSdfSDJSZsAcGt6r1w42Qx2kEHK4tI','The building was clean. The front desk staff was fast. They had a room ready for me before I could even fill out the paperwork (which wasn\'t too much either). The nurses and the doctor all seemed knowledgeable and were professional and efficient. I don\'t want to need an after hours clinic again anytime soon, but if I do, I will go here.','2019-09-12 13:54:15.281000','2019-09-12 13:54:15.281000',5,'Howard Teal','https://lh3.googleusercontent.com/-T5Cq6EHoIB8/AAAAAAAAAAI/AAAAAAAAAAA/CGn4FsTw9PU/c-rp-mo-br100/photo.jpg','16891069708558046635',4203),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urr860o3s9HIs8V2MrPCzQOMTcGWf3SwtkEolxD5dUPtwmR5JAt_9brr0RjtC8qWDCGWsqcP5bfcJt_FS0Rk6gBscWV28','The staff was great and friendly. Okarys was helpful with the paperwork. Mr Ralph was patient with my grandson\'s vitals. Nurse Selena and Dr. Wang reassured me that everything was okay.','2020-02-24 16:47:47.151000','2020-02-24 16:47:47.151000',5,'Gia Garcia','https://lh6.googleusercontent.com/-rL0IppU9X7k/AAAAAAAAAAI/AAAAAAAAAAA/tvCe2m7M8qU/c-rp-mo-ba3-br100/photo.jpg','17394740196501090048',14008),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urR9kiJyslV1TbEoUp9IBxTIgM8QVH8uEnbMjgAoLpf4HZSXd1B4AdIe37cXF2unqDtVd75b3sNCb94-zodTXdyDaaTfw','The staff and Dr. Faig at the Westchase location were extremely kind - from the receptionist (Angela) to the Radiology Tech (Laura). The nurses were awesome, everyone was attentive and caring. They all made sure I was not there any longer than necessary. I hope to never go back, but if I have a reason, I will certainly go there. I highly recommend this very clean Center.','2019-12-13 19:33:43.431000','2019-12-13 19:33:43.431000',5,'Terri Matthies','https://lh3.googleusercontent.com/-5lKcxp8UTL8/AAAAAAAAAAI/AAAAAAAAAAA/lZY4C51i4S8/c-rp-mo-br100/photo.jpg','12541597562633926366',351),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urRdSBJmXm5-dGFVw_IgW-SUWfTxwEcDMl9XT0MZ40afVAUpgg5gYefmUetnkUSIGy-ZrNm3TwFp3WoDwSoADMq1cmQ4U',NULL,'2019-01-30 03:17:24.080000','2019-01-30 03:17:24.080000',5,'rahul dubey','https://lh4.googleusercontent.com/-vyKXbuGmIpQ/AAAAAAAAAAI/AAAAAAAAAAA/WP_UQ1jKlGc/c-rp-mo-br100/photo.jpg','16891069708558046635',4363),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urRETB8W4SfNOkBxX_Rz_vuau0flfV5DGyp7N-8_UJAwOPN47pKzBrDTkb_DG62xBocljUYK7xZuiaMr6TAztjczBsFjY','Loved my nurse Gabe. Best care I’ve had in College Station','2020-01-15 11:24:39.313000','2020-01-15 11:24:39.313000',5,'Brittany Mauritzen','https://lh5.googleusercontent.com/-gPhxCfX88RA/AAAAAAAAAAI/AAAAAAAAAAA/gIoVcXrdmzA/c-rp-mo-br100/photo.jpg','16590124370714063921',9755),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urRJXLj05eqS9WsXDb7o795ELHmfCSSF2A3gWIBRubA7_S2RrHUA5ehsTY6nLKl2IfqwXwZtvsnkdzwVbptcOz9JKWo0A','I want to say thanks to Dr. Vaagenes for helping my wife. He quickly found her bad stomach pain end up being she needed to remove her appendix. Dr Vaagenes didn’t waist no time and set up a surgery. I thank you very much.','2020-03-18 00:35:12.135000','2020-03-18 00:35:12.135000',5,'Guillermo Hernandez','https://lh6.googleusercontent.com/-5NLnxoBq7Zc/AAAAAAAAAAI/AAAAAAAAAAA/Hhfb9wumim8/c-rp-mo-br100/photo.jpg','6521947413723274945',21163),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urRr7C_Qr2xMXJBlhgQvre9Z23glXIdnbGzDqQNiFYm_808aIOxYV5O8H1W4DdqWyMvGjfHPFDn9vAiE1sHFhiN5l91mg',NULL,'2017-04-09 04:46:05.860000','2017-04-09 04:46:05.860000',5,'mai thanh nguyen','https://lh4.googleusercontent.com/-FDmrO73y3Ec/AAAAAAAAAAI/AAAAAAAAAAA/fcwSowePyf0/c-rp-mo-br100/photo.jpg','14904078213800803294',2370),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urrRkrihNxpyWMSslMnJmXhUqkJ0MRMz4AHOwsPTZ9FjatRtJVksEMAWfmPDHZs4f2RuUgfBXG75KArMr_6ABUXgTQ1eE','I had a great experience.\n\nThe team was excellent, Dr. O\'Malley, Jani-nurse, Erick-Radiology and Jesus-registration all were awesome','2019-05-18 18:41:53.815000','2019-05-18 18:41:53.815000',5,'katiee mckayla','https://lh5.googleusercontent.com/-dBVhfnQ-1Pg/AAAAAAAAAAI/AAAAAAAAAAA/8kYAmP2XC1E/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urRWC6vASvZdl6CV7w2KpXgPG5GJiS7UiILjnPHfOvpWThkxanjQkTNSLfWgXZrTAwEQcPBJ-s8Q3RGHC_CZjob74YE44','Everyone made me feel at ease and was so supportive during my visit. Special thanks to Dr. Henderson and Nurse Sarah for seeing me so quickly and making me feel so comfortable.','2019-07-22 15:47:04.841000','2019-07-22 15:47:04.841000',5,'Trix Sk8','https://lh5.googleusercontent.com/-QLnzWz9QhTo/AAAAAAAAAAI/AAAAAAAAAAA/YbFE7gzB_XI/c-rp-mo-br100/photo.jpg','17898197009688164559',5627),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urRWensTXIBMRSDnKZ9rMM9kxg0HzaI79tw9uFn4KapAuwhkB3OHa68T_99vIR86N3jBn7P01ewNZQV7OK_L4MpBipLuE',NULL,'2019-12-29 02:39:42.025000','2019-12-29 02:39:42.025000',5,'Janet Partridge','https://lh4.googleusercontent.com/-bfjm6666fQY/AAAAAAAAAAI/AAAAAAAAAAA/rAhoQLkGDPw/c-rp-mo-br100/photo.jpg','8626688543755174284',14635),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urRxLIZDJxCQth5a6LKaJKozb2nkbbmO6vYft1AcYNt0Xu5XwjCqPZePyQzMGgedMt86dT88leairLNI-3-p5_vf6m7vI','They are clean and nice they took good care of my son and there is no wait','2017-03-27 00:07:10.575000','2017-03-27 00:07:10.575000',5,'Christiana Sodeke','https://lh6.googleusercontent.com/-DaMarNcgDmk/AAAAAAAAAAI/AAAAAAAAAAA/8baD4NL3x2Q/c-rp-mo-br100/photo.jpg','17394740196501090048',5084),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urRy-bh9Qxz8_WQWIcajYaTEiy5x4povVkIY8BWLAuZ_LswQDlQU0L10ETjF3Alu60Vuh6MRdnw1Uywc1oLUT7HUae0Vo','The wait time was really quick and the customer service was fantastic! Dyveliz was so welcoming and friendly. The facility is very clean and comfortable. They even have a snack bar for the guests.','2018-09-08 05:06:36.949000','2018-09-08 05:06:36.949000',5,'Tahgi Hood','https://lh4.googleusercontent.com/-YwvbANonnvM/AAAAAAAAAAI/AAAAAAAAAAA/mhAcpz3Gg7E/c-rp-mo-br100/photo.jpg','16590124370714063921',3738),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urry3Rb89wXxCDS1fhM1kUxJzwYqRu7fJDBv8NdR4fOwBcF_sIft3CE3Ky6UwEsDWhVCrm1MjZMVzeXA0oiSi3_7Nsdj0','This ER has by far has one of the most professional Health care providers and Nurses. They are very friendly and polite. Time spent in the ER is short and they do things really fast. Great Service.','2020-02-15 11:15:33.338000','2020-02-15 11:15:33.338000',5,'Alimamy G Kanu','https://lh3.googleusercontent.com/-Ogn2rN-F3QQ/AAAAAAAAAAI/AAAAAAAAAAA/AtC6SZlb4ck/c-rp-mo-br100/photo.jpg','2694018788013845459',14233),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urS18RgV9GXZkl8xonUD4XU04_mUdRUTgU2fzkbZQpZMqP6bbB7TC79bwPFluYuQi8UOaBgaJRAxm8NeQ0P8JYAGLSOHY','Thanks to Dr Henderson, Chantel, and Tanishia. \nEveryone was fantastic and took care of us quick fast and in a hurry.','2019-12-30 06:05:44.790000','2019-12-30 06:05:44.790000',5,'Mark Myload','https://lh3.googleusercontent.com/-9UxKtjZ_hms/AAAAAAAAAAI/AAAAAAAAAAA/dpjgdRwajbQ/c-rp-mo-ba3-br100/photo.jpg','17898197009688164559',5315),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urS1uUZoUfWMz1TMG6cc2FaC_69q2Dn4BZACH-4YPoXaivSs-zE3UEJHvsJoYlhLTGwoeqLikk5K0jG1pkSNel6_GFVw8','Friendly staff from the front desk to the tech, nurse and doctor. I was helped by Jocelyn, Jose and Thuy and they were all fabulous! I will recommend Signature Care Cypress to friends and family!!','2020-02-22 23:57:34.426000','2020-02-22 23:57:34.426000',5,'Cynthia Martinez','https://lh5.googleusercontent.com/-QW4HDIQWkqY/AAAAAAAAAAI/AAAAAAAAAAA/F1xYJDHRQPE/c-rp-mo-ba2-br100/photo.jpg','16389487648212004696',13776),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urs8TSpxSSGluHj_lRRTGn-hKy9pooJp7GA1t3qS3imwcof79fluq-4XFJ2BUqV9X3XL_o6P9b9Tmoz_ZWIS7E3uF_znU','Really impressed by the staff and facility! The doctor and nurses did a great job of making us comfortable especially about a sensitive health issue. I wasn\'t the patient myself in this case but would definitely come in the case of an emergency.','2018-08-15 21:56:54.044000','2018-08-15 21:56:54.044000',5,'Chloe Maitland','https://lh4.googleusercontent.com/-XR9eJAHiUjQ/AAAAAAAAAAI/AAAAAAAAAAA/vfl5NHwFKBk/c-rp-mo-br100/photo.jpg','16891069708558046635',4449),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urSAGkJDeWpGmdGviNQwh39_RdO4jcKLWZ-RIX-0oAfco60_PEooN12bvM_MlZ1wmdDZnCRvIUI59ewft5yNetvwa5dHw','Dr. Yusif\nAmy A.\nChuriah M.\nNormal T.\nEve M.\n\nAmazing care and service. Made me feel super comfortable overnight. In the best hands for any emergency.','2020-01-24 17:36:13.325000','2020-01-24 17:36:13.325000',5,'Rita Roke','https://lh4.googleusercontent.com/-cxdVZkKSpOg/AAAAAAAAAAI/AAAAAAAAAAA/9LScqLKhx1I/c-rp-mo-br100/photo.jpg','3511292162159714121',14449),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urScHRqT7efviz8UpKhYoGK9avvsm1b4e3e9IT4fHJ_HZ16t-58vMS68QMAa64LDZhOLNthbEdB4EGnCVTlWJRfLWUNI0','Its very nice here because they offer free snacks','2019-05-17 23:02:24.858000','2019-05-17 23:02:24.858000',5,'Angel Jaimes','https://lh5.googleusercontent.com/-qCI0CQw7igc/AAAAAAAAAAI/AAAAAAAAAAA/0ONMeayhoEI/c-rp-mo-br100/photo.jpg','16891069708558046635',4277),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ursy10XYBkiN-X_EV5F6o8JR7Wh31g1QuLYJe3v4SDUNE04oyBf4mMdXI3brB35KhJQKkvdhr7XhPA8zA_c6KPhAdbpKY',NULL,'2020-07-21 10:13:14.490000','2020-07-21 10:13:14.490000',5,'Aaron Petry','https://lh3.googleusercontent.com/a-/AOh14GhxgLjS29p9PghY640cDFbse5gupB6_kRc5vRHi=c0x00000000-cc-rp','8679688254631342173',22247),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ursyevV9iwgnw9uDr8ikq6uMzM1645ixaQ24cSrML4rFZENj_naoQJCqwf0wV5WSsD67MkLrBmysJS9IHbjZ1cn_5KyOk','Fast and polite','2020-08-01 14:02:31.548000','2020-08-01 14:02:31.548000',5,'John Garcia','https://lh5.googleusercontent.com/-WoF_6HPEcaQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucma1L1aPeEyqkvlSZIuTAHrMQI6RQ/c0x00000000-cc-rp/photo.jpg','14904078213800803294',21943),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urt2kTIkRlR8NqAeCUq6e_ZsIRdKEa8BoK4gsd0WhdTDIqpDcQT9lfHthkxo-V3XGNQ2ZQYkJz7myTZw7NoRgiHkMBcxY','I have been here numerous times and EVERY visit, despite the Dr or staff, has been the same experience as far as bedside manner. Absolutely everyone is polite, compassionate and warm. I have never experienced wrongful treatment. I have also obserbed the treatment of other patients and despite their weight, race, sexual preference or anything, I saw the same love being provided. \n\nI came during a shift change and both Drs treated me kindly wether they were coming or leaving. Dr. Leavit was amazing. My RN johnny and Radiation tech Bryan ( who both has cared for me on more than 1 occasion) were AMAZING as always. I love this place','2018-09-12 01:31:42.808000','2018-09-12 01:31:42.808000',5,'Sky Money','https://lh6.googleusercontent.com/-QsZZIlUsoXM/AAAAAAAAAAI/AAAAAAAAAAA/vogxbCyCkpc/c-rp-mo-br100/photo.jpg','14567670160750071148',1513),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urt6tdE-Kq-_0BTQY6iqArMd3knPVGo9dqZvS9E7Ka1YoN8UqrcBiMBRZOfkPn_i7cCvsVf7y0kRbxKahSvEM6bpUKXsw','Alvean A. and Marcus was very caring. I really appreciate them.','2020-01-15 14:21:28.449000','2020-01-15 14:21:28.449000',5,'MTB BASS','https://lh4.googleusercontent.com/-E8FLcCh7Jm8/AAAAAAAAAAI/AAAAAAAAAAA/05eBqSstOLI/c-rp-mo-br100/photo.jpg','16389487648212004696',9730),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urTB3G9d7OCVRfNwmChkaG19me85qmWWHeYZ41RVsoGelkMY6caIQXRpByQP2wd69IBX9ByPHmxg06X45cU-TZSzqEOUY','Quick, accurate, and very helpful staff.','2016-05-27 21:42:45.097000','2016-05-27 21:42:45.097000',5,'D McCain','https://lh6.googleusercontent.com/-UaQHF5xxfQs/AAAAAAAAAAI/AAAAAAAAAAA/9fiIckWyzGQ/c-rp-mo-br100/photo.jpg','3511292162159714121',7996),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urthFSUqnNTHkWimQ1RwPlr25yakBdLAJ8XhFpaZInwGk2nDmBcJHW_e2JvvqAkk75QkPMIi_bPBY4rQvOIbUGCrI4Fvg','Always fast service and friendly people. Thank you Lisa H. & Jaime & Savannah.','2019-07-29 13:09:53.645000','2019-07-29 13:09:53.645000',5,'Patricia Chagolla','https://lh4.googleusercontent.com/-GdyoSbXK9rE/AAAAAAAAAAI/AAAAAAAAAAA/TdnZ5AGIXWU/c-rp-mo-br100/photo.jpg','13486358490203335051',879),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urTJXIzp_i1CO-afWtRHYkzmIS7dQs1a8Tv_0I-fcHt9GS5PhDJoXtXyQxSXOnlxKrD-N92wbG9d27JvA0Mk_WhxKXnug','Fast efficient and caring. Took longer for paperwork than the wait for doctor. Highly recommend.','2020-01-24 22:26:22.925000','2020-01-24 22:26:22.925000',5,'Barbara Hansinger','https://lh5.googleusercontent.com/-D8pLGlmE9TQ/AAAAAAAAAAI/AAAAAAAAAAA/lprHQSLly4A/c-rp-mo-br100/photo.jpg','2694018788013845459',14266),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urTMtA-s2C2QxRka4tvT4PGnoiUkA7OkKSgWFkWp0Toxl0qTf2MN4OAWrQnxDCsF9TaHib9Z_tGOWlDLPMvu_cV_VgNyo','Awesome doctor Golla and caring staff! Highly recommend! Very quick assessment, totally worth paying ER rates for the high quality care.','2020-02-26 19:31:00.565000','2020-02-26 19:31:00.565000',5,'Jewel Adams','https://lh4.googleusercontent.com/-MQSokHLo2MY/AAAAAAAAAAI/AAAAAAAAAAA/e1KX8CVGuVk/c-rp-mo-br100/photo.jpg','12541597562633926366',13339),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urtuC18gbTRuWkAvRyqZf4uOMBJWb6uLoQiwtu63YVaNRAIkRk1ViPUv8g6cQ6KEl9UDuBWkqncZxWTXtUKisfDU3u5MA',NULL,'2019-03-13 18:56:34.777000','2019-03-13 18:56:34.777000',5,'Hannah Cordoba','https://lh5.googleusercontent.com/-ekH2jSYwojk/AAAAAAAAAAI/AAAAAAAAAAA/CHhikrFyks4/c-rp-mo-br100/photo.jpg','16891069708558046635',4326),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uru_bM5uB67HVIU5G_N5hONMHLfton_0jVSmtri3qp4leC2p66JG-icOIal-savStSTtbd0ZeDpa9-SxbvzSBc9ia05-M','I will definitely be coming to this facility if ever needed! Thank you Dee for everything!!','2019-06-19 00:36:13.925000','2019-06-19 00:36:13.925000',5,'D Saldi101','https://lh6.googleusercontent.com/-jdX4yIplWbs/AAAAAAAAAAI/AAAAAAAAAAA/CoLk5RNh5j0/c-rp-mo-ba2-br100/photo.jpg','3511292162159714121',7298),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urU1ic-e2kVmLOZIW6VTqbVF0O_GJ2CRhHghjasz6-CngcNnvTw3cyHqRPenqK-kxRIKI6t_3SvBsD2r_M5PNgb2KLyHM','Everyone working at SignatureCare is a kind and compassionate person. I came here with horrible pain, and I didn\'t even wait 5 minutes before I was seen by Nurse Christina, who is the sweetest angel of mercy, followed by Dr. Kanti, who is very knowledgeable and has great bedside manner.\nThey explained my options, and didn\'t charge anything before a clear explanation followed by my consent. There are no surprises here. They gave me the medicine I needed, which immediately relieved my pain. I am grateful to them and to the front desk receptionist, Janet. She was warm and welcoming, and made me feel at ease from the moment I walked in.\n\nThey take every measure possible to ease your pain and make you feel comfortable. This is going to be my go to place for care, including non-emergencies. They are better than any emergency room out there.\n\nMy friend, who kindly drove me here since I was in too much pain to drive myself, had a good time waiting for me. The reception area has snacks and drinks for those waiting. Thank you all for making my experience positive all around, from the moment I walked in to the moment I left. God bless you all.','2017-06-30 06:04:52.752000','2017-06-30 06:04:52.752000',5,'Rana Ashuri','https://lh6.googleusercontent.com/-9m5ds429Fpo/AAAAAAAAAAI/AAAAAAAAAAA/nTwDEnnvBvw/c-rp-mo-ba3-br100/photo.jpg','16891069708558046635',4551),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urue36yh9qE7uKse8-P-xK5-ER6_fQewwpxeQ1S3ZCJL9z5PQajVhPNLSHFUgu4r16yDjblIPcXdr7Jy448LJot9EPCMM','I had an awesome experience with the care I received at Signature care Emergency Center. Dr. Dendy was very sweet and patient. Tanisha at registration was so warm and welcoming. I highly recommend this place.','2019-03-13 01:34:38.020000','2019-03-13 01:34:38.020000',5,'Patricia Bushnell','https://lh6.googleusercontent.com/-6Rku0XbEMNU/AAAAAAAAAAI/AAAAAAAAAAA/G93nmXuM8PY/c-rp-mo-br100/photo.jpg','17898197009688164559',5812),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uruFCgYXtuZ7gH2og1D5N3IqQ51XZ60n8YaYpVOYOMiAYzUIdmpB5kmcE5M0bTnuHXvgsuTMBbzaUmhOeCKPw0T68pdt4',NULL,'2019-01-22 01:36:59.002000','2019-01-22 01:36:59.002000',5,'Drew McCulley','https://lh5.googleusercontent.com/-0trB1HYjvXc/AAAAAAAAAAI/AAAAAAAAAAA/ndF44iaJqTU/c-rp-mo-br100/photo.jpg','13486358490203335051',1097),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uruMjfZwEHKE8mj6_WnyGHhSBbAErzJ31b4pa0kA3TDw5SRhP5APmtqmC20Tvr2FGmihqeYiJQeQbgsud-iZiBeQY3gcA','Nice people and fast service from elsbecker, Cristina, Tina, Shaunda, Chris.','2019-10-30 22:19:37.574000','2019-10-30 22:19:37.574000',5,'Jacob Votaw','https://lh5.googleusercontent.com/-LeurAmjYEoQ/AAAAAAAAAAI/AAAAAAAAAAA/D_dGRfSJ3YY/c-rp-mo-br100/photo.jpg','16891069708558046635',4167),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urUOrRT66X2ZVfO00fMuiXnRlrmcVr76oHlRnD8MvN1iX3LMR84_iLXOLgygdDWEdc5KCM0UYSGyajpqRPNalVTmV4BBY',NULL,'2019-08-28 22:56:48.863000','2019-08-28 22:56:48.863000',5,'Kaytlan Hargrove','https://lh3.googleusercontent.com/-oTk0slERlJI/AAAAAAAAAAI/AAAAAAAAAAA/qaXegp3SUyQ/c-rp-mo-ba2-br100/photo.jpg','3272657195432704501',6902),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urup4Y8jO8OFr9aBLxbkrW9uY-76pqXUwEXjl3EG57jSO39fnA5Ql2u7OwQNr4OOk4cJWLT5-uy4J782rd4DlNa62jfzU','Amazing!! So helpful! Such a great experience','2020-08-21 03:23:00.296000','2020-08-21 03:23:00.296000',5,'Samantha Kaire','https://lh4.googleusercontent.com/-hxVkcw_wY68/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucni0sYRLHUMIbyGcO1Poma_jHrE5Q/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uruPyzlPOgH6GAGQ6ATyBFxAjA58zammb09owtzMUsMbR7q_3MY8OAeUjEpZa5ksJSXsQ7jITHXBClHxskrthPtKwrw8g','Dr. Patel, registration: amy, RN: Dawn, ER Tech: yasmina, RAD Tech: eve','2020-02-12 13:53:48.938000','2020-02-12 13:53:48.938000',5,'ofelia Cardoza','https://lh6.googleusercontent.com/-5T52TFlCg04/AAAAAAAAAAI/AAAAAAAAAAA/o6N1tmDh1cI/c-rp-mo-br100/photo.jpg','3511292162159714121',14417),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urUquG0njPiP4aRcP1H18orQr-GHAOIXd7R-I20fOTZXX-962zI17lBooReeGW9WEbJ91p3tMxXBCqOaisxpWQBqol9gw','The entire staff here is awesome. From registration with Rita to being cared for by Jonathan, Rommel , Adolfo & Dr. Jolly. Everyone is attentive and made me feel at home. What a great experience.','2020-02-17 02:36:43.501000','2020-02-17 02:36:43.501000',5,'jessica miniel','https://lh5.googleusercontent.com/-qvMBdE_TEZQ/AAAAAAAAAAI/AAAAAAAAAAA/Dccfu3guDkA/c-rp-mo-br100/photo.jpg','14904078213800803294',20996),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urusL_9h70lhreHkh_U-7HvhOd7OMeaxLOnx6_paOuy9grgg7l1gsDk4VywKZw9nwpoThJmpVwFwVc0AELyYfYDL4aOq8','Excellent care provided by Dr. Leavitt, Nurse Jani and Radiation Tech. Marcus. Jocelyn got me checked in fast and answered all of the questions I had. I definitely reccomend anybody to go to Signaturecare for their medical needs.','2019-08-26 19:42:43.680000','2019-08-26 19:42:43.680000',5,'Thomas Davis','https://lh5.googleusercontent.com/-PIrVfKketF8/AAAAAAAAAAI/AAAAAAAAAAA/BNx4mDgVpCI/c-rp-mo-br100/photo.jpg','16389487648212004696',2974),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urv-e1BbFpLuY10SsmJXCrF_c0NbsqwdnYQRsA691t1HIqoq_D6uWCO0a_1pm9-tHE2mTsX_Gsi4lhZyX1hWWQIGpFfUU','We were in and out in an hour, everyone was nice, pleasant and willing to assist. Will come back.','2016-08-23 12:47:14.084000','2016-08-23 12:47:14.084000',5,'Jasmine Wedlow','https://lh3.googleusercontent.com/-Z5dAU-AAlCg/AAAAAAAAAAI/AAAAAAAAAAA/oheBxtKmRqk/c-rp-mo-br100/photo.jpg','17394740196501090048',5210),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urV0NnmWkQIxdIeAcjHac0PStl5wjMmQSuu6QT_QJ5UqXqRdPIf-Kgjq_wqcVJybyOjDrorQ3Ig0I-fYQhSnAKjZPFpd4','It was a great experience. It was quick and organized and explained my injury in details.','2017-02-10 21:44:46.313000','2017-02-10 21:44:46.313000',5,'Nathan Harwell','https://lh3.googleusercontent.com/-J7timSQrDfM/AAAAAAAAAAI/AAAAAAAAAAA/EkoOzsuUevU/c-rp-mo-br100/photo.jpg','16590124370714063921',4056),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urV1-_ZL70B3Uw3P19vJLTP98UUHq8uWmd6LGEcA-slaSQ80zpzaKGVE9oYKFIAL4WTmUfK62I5f6utLWQy-FdLb2LLH8',NULL,'2019-06-08 22:57:07.167000','2019-06-08 22:57:07.167000',5,'Rosemary Cervantes','https://lh5.googleusercontent.com/-aWwHPsMJWS4/AAAAAAAAAAI/AAAAAAAAAAA/XEmzC4zxmcY/c-rp-mo-br100/photo.jpg','6521947413723274945',8245),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urV41Um-Va9-ER846WSuNyeht0iXxOjcMWS4vuf4jJ7yJejQpo_c2NQk8M3s6gHTODJu4gwHtc00wS5twzru6KWoAwMp4','Hands down the best medical service I have ever received. So clean and equipped building. Had to stop by for my baby\'s fever in the morning. Even though they don\'t have pediatrician Dr. HEHMAN, MD, MICHAEL G was more knowledgeable than my pediatrician. He was so friendly, answered every single question we had in a willful manner. The antibiotics he ordered was so expensive, did teach me GoodRx on the phone made me save $150. Nurse Fallacara-Pailes,Nichole M was really helpful and kind as well. I don\'t easily give 5 stars but they deserve all the stars on planet. Special thanks to Radiology Tech: Biju Puthenpurackal,Mathew and Front Desk: Cruz,Genesis. Great staff. It is best not to visit urgent cares but if you have to make sure to go to SignatureCare.','2018-08-25 05:31:27.751000','2018-08-25 05:31:27.751000',5,'Mehmet Bereket','https://lh3.googleusercontent.com/-Lm7sEjxcfPU/AAAAAAAAAAI/AAAAAAAAAAA/AFyGDcYMFac/c-rp-mo-br100/photo.jpg','8918455867446117794',9240),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urV5NBwAfrIttk3OLiFJKl1M0nR_ipb-V5n4u9Q78HNnLhas3DQkrODRSxjV8mo65HAhWBBzjHCeuyFgzwlJHmOaFYykk',NULL,'2020-08-05 12:18:23.691000','2020-08-05 12:18:23.691000',5,'Nick Vandenbossche','https://lh3.googleusercontent.com/a-/AOh14GiTLfb1-r2hgWZGFaOf7-jLTE1DHWr26wIlSHGZ0Q=c0x00000000-cc-rp','14904078213800803294',21931),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urv7LqgMkSDv-jD6TkRdvPGSZqfwu0nwQPfZWmiWsAw5WHd2E4Da_lSqTNBHzpQKlq1TJDIxDGZXLJYhPWXa0nhCCgOdY','Loved the personalized care! Thank you!','2020-01-30 13:35:54.876000','2020-01-30 13:35:54.876000',5,'keith wakefield','https://lh3.googleusercontent.com/-vXzUU2P75ww/AAAAAAAAAAI/AAAAAAAAAAA/_QBELgCn5vg/c-rp-mo-br100/photo.jpg','16389487648212004696',10420),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urV8vtno4H7S6MlaBMe0xuz1mKrUNU_mxjf8LdN3-tYy3zGQb9wuoJbPeHxPjL9PO20SW47ew1c8Wn1g1sYkpSoS1bxx8','Very fast service straight to the point diagnosed and treated fast Corey was very attentive and professional will definitely fell comfortable coming back','2019-06-08 18:01:25.606000','2019-06-08 18:01:25.606000',5,'Sergio Brito','https://lh3.googleusercontent.com/-T7yOYccHDz4/AAAAAAAAAAI/AAAAAAAAAAA/rLpAkMNTvjw/c-rp-mo-br100/photo.jpg','13486358490203335051',981),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urV8zw1cMuQ6KRANRFRwDeovSnAHQbowFRf8ZKnvyB2yuITFzq_dLjF-XdmC1wvcHmuwl5cqtVZSQEl0-49wRhg0n8pkA','Came in late, straight from work. Sent back before even finishing paperwork. Was tag teamed by 2 nurses. One asking questions one taking vitals. Got tested and treated in less than 30 minutes. Awesome service!','2020-01-27 06:03:21.174000','2020-01-27 06:03:21.174000',5,'Ivithos','https://lh6.googleusercontent.com/-WEOYk0Em2as/AAAAAAAAAAI/AAAAAAAAAAA/pgQNgYUeF_c/c-rp-mo-ba2-br100/photo.jpg','13486358490203335051',13453),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urVa6JzvbD9AAPn5A-F12MxCe_SydZEFsqCuKu4JbtTfHF0-nmh42ZESoERysTkGWw14YkXLJT4Y6E3bUECuCb0JnRbdw','Great staff.Fast service .Dr.O’Mally is a awesome friendly doctor','2019-06-08 16:34:04.675000','2019-06-08 16:34:04.675000',5,'Olga Ventura','https://lh4.googleusercontent.com/-QRYLRTs2eRI/AAAAAAAAAAI/AAAAAAAAAAA/OET7ywZE1Lg/c-rp-mo-br100/photo.jpg','16389487648212004696',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urVdDNukjGwMf_bdrI5DubUN4Ap-pFwyOSFLoXUQpAhe5BNEw5YGRt0ewzhlFaxkJouOTuaOJaOxSUv5aH5KBkB8tswsc','This was by far thee BEST emergency room I have ever visited. The hospitality is exceptional, and Dr. Chowdhury listened first, and made sure I understood his reasoning. The Rad Tech (Nanci) along with Nurse Steve acted quickly and made us and our comfort a priority. The Registration nurse didnt overwhelm us with billing and insurance at any momenrt during our visit. I wish this Doc had a practice I would most definitely make him my PCP.','2020-03-14 01:31:42.686000','2020-03-14 01:31:42.686000',5,'Justin Davis','https://lh5.googleusercontent.com/-Zg6pnI15OVA/AAAAAAAAAAI/AAAAAAAAAAA/jOabDX-aU08/c-rp-mo-br100/photo.jpg','8679688254631342173',21211),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urve0ne-IuyIX6clJIuIft3GUwEEb8WFmejGH7yWqHF48ghyJWK7GQQ6wcxATvDmRHvdEkFTOlgKkr6bWnyhNCjRPVcr0','Jessica S was very nice & polite. She helped get us through very quickly.','2019-08-03 01:23:35.785000','2019-08-03 01:23:35.785000',5,'I Carrasco','https://lh5.googleusercontent.com/-MqEtBEbc8XM/AAAAAAAAAAI/AAAAAAAAAAA/z_NTLKeldB4/c-rp-mo-br100/photo.jpg','6521947413723274945',8171),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urvedl9qHSWl_p5ntqvaLWdBWQdbgNwg7WwIPbgM3psMzGOkLaMiM4KtO2EXr4G5WgQo9AOE9UgP97gFzaNY65coHrH7Y','Had a great experience and help with \ndr.yost\nRn:Mollie\nRad tech:eric\nRegistration:tobie','2020-01-15 06:40:18.295000','2020-01-15 06:40:18.295000',5,'maddi brown','https://lh5.googleusercontent.com/-Tqio7rm1l3g/AAAAAAAAAAI/AAAAAAAAAAA/7f-x6I5hB-8/c-rp-mo-br100/photo.jpg','3272657195432704501',9811),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urvej0YWOrqCcevCB4E-4vgp93VmzFmia0fdc3Rtzv9EMrhTpCsrq-UfvQJ1YDMmZS8cdRsC8hk4OxZlLKHAHpAYX-tII','Miss Malissa was so friendly from the moment I walked in. She immediately processed my paperwork so i could be seen quicker. My doctor, Dr. Daniel\'s was very knowledgeable and helpful and showed a genuine concern for my health. My ER tech John was also very nice throughout the process. I will definitely come back if anything else goes wrong.','2019-08-05 20:55:42.570000','2019-08-05 20:55:42.570000',5,'Tay Tay','https://lh6.googleusercontent.com/-o5kbJfR0qiY/AAAAAAAAAAI/AAAAAAAAAAA/yZ8CS0bIl70/c-rp-mo-br100/photo.jpg','12541597562633926366',463),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urvmasO8TFmwhANvUNpH3CJ0j2_QMYsgYq9nIHQRRHIqdn-uHlH0_zm8CaMkYzDHaR6wXTSi7BFqlVTJKHUCdGwP39AWM','My fiance came here for some stomach pain at 5am and the staff were fast, nice, and knowledgeable! Dr. Zhen and Kristina were amazing, we will be coming back for sure!','2020-01-03 17:17:08.615000','2020-01-03 17:17:08.615000',5,'Brody Saxe','https://lh5.googleusercontent.com/-V_TcpsaMrJg/AAAAAAAAAAI/AAAAAAAAAAA/-OoSZNVeNX4/c-rp-mo-br100/photo.jpg','12541597562633926366',259),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urvuH1l-8XehrTorYlo1ikfVcbviPoIspI1p1xGWJ7uPdmYin3hBg7wylkTvYIsBXtqz5mS8NXZZeJ8HpRjS6YnVIusDY','Easy place to get a COVID test. We paid cash and had our results quickly. Dr Linsey was kind, Rolondo did a good job taking our vitals. The staff, Sonle, Karen, Amy and Yaslyn were available and easy to talk to. This process was smooth and simple.','2020-08-23 15:08:56.657000','2020-08-23 15:08:56.657000',5,'Wendy Wight','https://lh3.googleusercontent.com/a-/AOh14GgmYjTEIrZThYupCtScenz0sPm74KN1dDvabA3Q=c0x00000000-cc-rp','8679688254631342173',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urvWahyTbN_D4-5COGW7fX6NX1_HW0voLDbk2Z4TsWEc8Yoiylcdo7M3V-AWr0mDL9-rAzvK7v7gQ7fYEp9lrlUyh2684','I had a great experience, everyone was nice and professional. Jocelyn was very nice and got me in real quick. The whole staff, Dr. Ortiz, Meredith S., Alvean A, and Marcus B was very helpful and professional. Also, Meredith, the nurse that attended me made me laugh a lot and made my experience here fun. I definitely would recommend this place for Emergencies only, NOT urgent. I got checked in and out real quick, just in time for me to go to work.','2020-03-11 17:42:13.365000','2020-03-11 17:42:13.365000',5,'Jordan Nguyen','https://lh5.googleusercontent.com/-IvwPZgeps_o/AAAAAAAAAAI/AAAAAAAAAAA/AVuSNOGUfp0/c-rp-mo-br100/photo.jpg','16389487648212004696',13711),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urVwLQJkgzoXrITV477OoMqw4odHoRDWcD172niiohLEOZK01C0HG-LZY5821Ua7Ke9AkfquxVeV4fer41Fd6QtgIQm_Q','I took my 6 yo daughter in for stitches on a Friday after work. We were seen very quickly and everyone was super nice and caring. Lord willing we won\'t be returning but if/when we have another emergency, this will be where we go. Highly recommend.','2019-10-29 12:48:07.669000','2019-10-29 12:48:07.669000',5,'Destinee Kibler','https://lh3.googleusercontent.com/-nOXBhqcsRuQ/AAAAAAAAAAI/AAAAAAAAAAA/JJ7hk9vvMXY/c-rp-mo-br100/photo.jpg','6521947413723274945',8103),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urVxTUmXZzUMzOu4n5J4DAKCS98CLU9bUr7V67EiPpYgf7XAjVuKUHao-rP5U6zhzsxSpNKqpuYO2u7XGsy8zlVM-_34A','Dr. Golla, nurse Melissa, Marvin & Sindy were all super nice, helpful and available.','2019-09-18 18:30:41.591000','2019-09-18 18:30:41.591000',5,'Loren Prye','https://lh4.googleusercontent.com/-vZiQWlLA3hw/AAAAAAAAAAI/AAAAAAAAAAA/5GCIeBJdVNk/c-rp-mo-br100/photo.jpg','14567670160750071148',1233),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urVymKaZXaPiZFsgs_Tnvq7b4IM8fjTDD8W-Hoji2yWEQJdLYx-GePaWxbTUCOz6OMRnt9n74upCdHYYKnlYo0aIU3f4g','All staff were great and very attentive to my needs and concerns.','2017-09-26 19:19:39.684000','2017-09-26 19:19:39.684000',5,'J\'Mara W','https://lh3.googleusercontent.com/-KmTD2OKJyHI/AAAAAAAAAAI/AAAAAAAAAAA/61XqydxXfAg/c-rp-mo-br100/photo.jpg','8918455867446117794',9354),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urW4oaltxiIZ5jES6_OB2ASeF2nqPMDFzi0OBebTtixS2Yk9cANuOsOVPQ94NjEeWsUwzReFIkuf76vaNh8nQl0CXViVk','The emergency care my family and I have received at Signature Care (Heights) is always excellent. The doctors, nurses and staff are always kind and caring.','2019-07-31 02:50:32.036000','2019-07-31 02:50:32.036000',5,'John Moak','https://lh5.googleusercontent.com/-C5XL1VPeTJo/AAAAAAAAAAI/AAAAAAAAAAA/KVX41CnQ8Pc/c-rp-mo-br100/photo.jpg','14567670160750071148',1263),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urwDI4rERu8fXOtjaF_IJR0ON0u8axhhge-EZI05Iwk7rcbpji2sbtAxhnken_pZhUkHxj2cVUR95yNNgf1KnncVx7vec','Everyone here was amazing. They took care of my daughter very quickly. I don\'t think we waited even 5 mins. Jessica at the front was extremely sweet. Dr. Golla was very helpful and answered all of our questions. Adam and Janet made my daughter feel very comfortable. Highly recommend!','2019-01-31 18:47:05.877000','2019-01-31 18:47:05.877000',5,'Anum Baig','https://lh5.googleusercontent.com/-6GQRcE2gSlI/AAAAAAAAAAI/AAAAAAAAAAA/JI3S174s9xc/c-rp-mo-br100/photo.jpg','17394740196501090048',4729),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urwEvgEnnMjvT_kMpAa0eJ1WoKOahAn7Jcdm9TGnj0Z8DiOFj7FqwO4MxIdUMiUnB0d7v0JYAHnzo6k4t3m3zjD53Kiow','We don’t like to get sick! But every time we had an emergency this place treated us really good! We feel calm and safe with them!.. thanks to the staff! Dr. Harjai and the team johnny, aaron, aubrey and ashley for doing an excellent job and this time to took care of my wife! We appreciate that!','2018-11-04 01:29:01.495000','2018-11-04 01:29:01.495000',5,'Jesus Parra','https://lh5.googleusercontent.com/-ERj70Zoxa_Y/AAAAAAAAAAI/AAAAAAAAAAA/r_0PuA3nOko/c-rp-mo-br100/photo.jpg','14904078213800803294',2200),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urWFUQChOjSpFCBdDFMf9JKjKMu6KaMpozqXKxh_rwOrtQ3ox8CLCfTTjkNdEzsdw91joTKvOpMMwfasoUML_EHaLvSts',NULL,'2020-07-26 15:07:02.625000','2020-07-26 15:07:02.625000',5,'Heidi Dinh','https://lh6.googleusercontent.com/-crYOwB7MO1Q/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclpRTAGgXX4kLQeVc1RWG3F1paHHw/c0x00000000-cc-rp/photo.jpg','16389487648212004696',21957),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urWgDo9xhJIkZTbfA0i6yAKRsjMyQO6M6bASDisVHvqpPYjzysJpS9v5G-YtdEjmecuuFyM0qbYapnIY3Cqkm4-fJadTc','Signature Care made me feel welcomed and safe. Amy checked me in right away and even offered me a wheel chair. All my Jessica checked on me regularly and kept me updated. Dr. Braun and Dion were very thorough in explaining what was happening. I really enjoyed the warm blankets. The doctor kept me feeling at ease. Thank you everyone(:','2019-05-05 10:00:49.245000','2019-05-05 10:00:49.245000',5,'Sarah Damron','https://lh5.googleusercontent.com/-FWSZQ_YwhXk/AAAAAAAAAAI/AAAAAAAAAAA/W0pUx8eS05I/c-rp-mo-br100/photo.jpg','3511292162159714121',7342),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urwMP_d1La7elp9tgl9VsowIxmp2IaqB1zYKfm22mbF7kQ1fGYGVAatW7X43LvhZ3dEE1NgmNqxJRhhrlzvsLip86s-xs','I\'ve never had a better experience in my life. I seen immediately by miss Jocelyn. She was nice and patient made it very easy to check in. Once I was in the back the rooms and the facility was amazing, never seen an urgent care so.nice I was seen by 2 nurses immediately who were kind and attentive the really seemed to care, not even ten minutes later my dr. Was in my room seeing me she was nice and made me feel i was her her only patient. I would recommend this location to everyone I\'ll always come.back. thanks to dr. Faroogi and to nurse ekaterini\nbetter','2020-01-27 16:06:14.887000','2020-01-27 16:06:14.887000',5,'Timothy Griesbacr57h','https://lh3.googleusercontent.com/-_ddTNkVeK6s/AAAAAAAAAAI/AAAAAAAAAAA/DQITTDTqk9I/c-rp-mo-ba4-br100/photo.jpg','16389487648212004696',10168),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urWnqHy7MaMhMvTK8-boxYe3tnaFPyvMAiWtdc5wlaFQI2zTULRmBxOeF59PuLz0nAhX0GLZb7PbPySAErS5SvZaqm_qM','Fantastic customer service! Fast and efficient.','2019-04-11 01:52:47.174000','2019-04-11 01:52:47.174000',5,'Jason Crouch','https://lh4.googleusercontent.com/-HtYQ7rmiIHw/AAAAAAAAAAI/AAAAAAAAAAA/RIl-6IJUm38/c-rp-mo-br100/photo.jpg','13486358490203335051',1042),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urWpk2dCC-3ef28O-BSML-xfWnVZcwXYt4nDI62kp3aki45d6Vq6eet6Ki9-rRR8fX67KSBWIu5yFXVapQjFe_ZXKBPQ4','The staff was very friendly and the doctor was sure accurate. Spent as long as needed yo ask for questions to the nurse and the doctor.','2019-12-30 19:40:37.557000','2019-12-30 19:40:37.557000',5,'natalia Cortés','https://lh5.googleusercontent.com/-dxblN8nOGsw/AAAAAAAAAAI/AAAAAAAAAAA/GNE2EoYGb8Y/c-rp-mo-br100/photo.jpg','16891069708558046635',4099),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urWpVIYY96emJcxlTmWPB77-k2JaqeGqat93N7BVhmEkVHt8_7JxVPAD3KyPWOywELeEwfoBCvUmd8vDkiCORoR5vKF3A','Dr. O\'Malley is awesome! Best bedside manner! My new favorite doc! Staff is great and friendly. Thanks nurse Alvean & receptionist Patricia. Best medical service I ever had.','2019-12-01 21:32:14.417000','2019-12-01 21:32:14.417000',5,'Asia Carter','https://lh3.googleusercontent.com/-K1N0Z-m1ayE/AAAAAAAAAAI/AAAAAAAAAAA/eVT4PzE_VHg/c-rp-mo-br100/photo.jpg','16389487648212004696',2593),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urWS-6CN18fAPWT-1qgiEchabALZ1CEbGii8jJWaiajvMn8u6bh_naY-0JhNB0PFN7PeN-8HavhckE0K10wyOUYFXeC84','It was nice clean and receptionist tanishia was great and funny best time I ever had thanks','2019-12-20 04:53:59.586000','2019-12-20 04:53:59.586000',5,'Oh boy it’s Pierre','https://lh5.googleusercontent.com/-bqQge4vqUxk/AAAAAAAAAAI/AAAAAAAAAAA/BTy7Icano7E/c-rp-mo-br100/photo.jpg','17898197009688164559',5347),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urwTQb2B-jvJ5WkDTWXw5lW4mNbflEFmfkhNz-7mYiGkx_ayKOAyxw9IDy8TerI-LEyBkCu7ps0zXvaHyhJWYcGxbhabE','Super convenient and fast. I felt so welcomed','2018-10-02 18:14:02.049000','2018-10-02 18:14:02.049000',5,'Asia Dee','https://lh5.googleusercontent.com/-g1RCJ5xqaOA/AAAAAAAAAAI/AAAAAAAAAAA/psy6MvAkCOs/c-rp-mo-ba3-br100/photo.jpg','3511292162159714121',7581),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urwvNFUX4WMbaNu2HoyhkO5XKTUPOShzyzcUvcPB34vCUIs31JqqEiE5kXR6vcO45nx8rG6QYr-h7kGWtFQOKbg7afVjU','Had a very helpful and pleasing experience','2020-02-19 17:00:49.331000','2020-02-19 17:00:49.331000',5,'Ali Bates','https://lh5.googleusercontent.com/-oN91dSaRqnQ/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclBtayslINJboHkTBOBfNoKW5n-qg/c0x00000000-cc-rp/photo.jpg','8626688543755174284',14610),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urx27wisB_dS5is-va6MrYXqW6lZFkRf5CgZKQl2lpDzVQsJVfq-dy_P4PqvJf6oU6YizbxOTmA2gM9fAsU2JrbFQYeLw','Quick and easy, definitely recommend. Cody and Nydia were great!','2020-08-12 19:05:16.016000','2020-08-12 19:05:16.016000',5,'Tristan Otworth','https://lh5.googleusercontent.com/-VpfmReJ-RxU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckxAnkNoZXfNagxG5A4HDK7qKA6qw/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urX5-wJMhapXDG-w6t6BIJ8IaTF6wvVgd-WOSq1kUb8Hm6DoBR0DtIR0miQKLEgX8Bi7Siounq2-VYUTxf0KSs9W7Ykek','Been there twice - Took my husband there the first time and had to go for personal emergency the second. Clean and well organized facilty. No wait time. Experienced doctors. They accept most insurance policies which is a breeze. My go-to emergency center. Love it!','2017-06-08 17:54:53.782000','2017-06-08 17:54:53.782000',5,'Blog Baby','https://lh6.googleusercontent.com/-hDpDv0j4Zf0/AAAAAAAAAAI/AAAAAAAAAAA/NbMTiPe8dVg/c-rp-mo-br100/photo.jpg','14567670160750071148',1813),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urxaxgFGIS9PaEAuIyk-_4Z5Jt_UUD1PgBHUcZytnIhX_xnIIHOy_GFjBvpMe9Gpl0GzLr6qLS4OvLT9MrrsszoVFzJjg','They make you wait a lot even there was no body here','2017-12-26 19:40:12.288000','2017-12-26 19:40:12.288000',1,'Nicki Del','https://lh4.googleusercontent.com/-hR-UjlZy59w/AAAAAAAAAAI/AAAAAAAAAAA/L4tGCZOA9s0/c-rp-mo-br100/photo.jpg','8918455867446117794',9316),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urXflzAC4YP8C8ScoWxjF98AomJDVnzt5J8jAowsnuy6UsRdIkkQYrWr-gZaX31gFWbvSSijWLRTm5mN1wScUlwoiOrvA','Had to take my mother to this facility it was so clean and the staff was fantastic in making us feel comfortable and taking great care of my mom. Thank you Evelyn, Diem, Joseph, Tina, & Dr. Boester you guys are the best. I would highly recommend the facility if you need emergency care. Thanks','2018-08-05 22:38:14.333000','2018-08-05 22:38:14.333000',5,'Zachary George','https://lh6.googleusercontent.com/-GweXQdghmOU/AAAAAAAAAAI/AAAAAAAAAAA/0e-GYuUxV_M/c-rp-mo-br100/photo.jpg','14567670160750071148',1574),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urxL7fF3taff9MijBz-v4Bb04tPZP_UebCJtYUDYBVfxfSmbuy9qpJ8JrPnWA0DH-wlVKMrQc7HKI_0QsrlfbjShYvsq4','It was a good experience to my parents thanks.','2020-08-05 15:02:25.914000','2020-08-05 15:02:25.914000',5,'Jose Tenorio','https://lh3.googleusercontent.com/a-/AOh14GiuqRg0dU9ohmXsTghdzyWYsobmtI1emaIb58Uo=c0x00000000-cc-rp','14904078213800803294',21927),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urxO7cy2w0daXPhlhRgof-bTLPVnRrCOm8LpDdqWD4ZoisruhsvaewraCe5L3C6JkjR_2zE9eg_1tLcNUmfCTG5ZWuoRo','Katrina, Shane and doctor Ding were all very professional and really nice. I am having a great experience, and everytime my family comes here, we always have very fast experience with no wait, and it\'s always consistent.','2019-09-18 01:57:48.410000','2019-09-18 01:57:48.410000',5,'Brittany D. Byars','https://lh5.googleusercontent.com/-Pr6DNRCOsi8/AAAAAAAAAAI/AAAAAAAAAAA/EmujbHPD2Mc/c-rp-mo-br100/photo.jpg','8679688254631342173',8804),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urXpBpr0RVwJN8MwQCl2f91EdNPVc19LSh1W-LS6SEQ6_ld_IwCoeVwanzx4vwoP-idRgBaA8bFRpqozZrqVGEgmrpUrA','Amazing service! Kindest nurses! Would come back every time I’m sick! Thank you so much.','2020-08-21 03:24:21.088000','2020-08-21 03:24:21.088000',5,'Julia Garfinkel','https://lh4.googleusercontent.com/-u1d_ldnyllc/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuclpr0dAIYbFORwaAZuex5xnJYr6Xw/c0x00000000-cc-rp/photo.jpg','2077061009497551125',NULL),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urXR3PWS5MQ6GtMrPWSfx07CLbSkImSg-60XHH9iPxPPxXNP9nhByPikABzN2nWBJSefHgZz97XvW52MnnCdICFosdXS4',NULL,'2019-01-17 19:22:56.820000','2019-01-17 19:22:56.820000',5,'J Yvonne Smith','https://lh4.googleusercontent.com/-sQGuCaebgP8/AAAAAAAAAAI/AAAAAAAAAAA/v5X76I08dWc/c-rp-mo-br100/photo.jpg','6521947413723274945',8324),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ury-CqPj5jAfRMu8MVwA1DyxOYnOuuF0l7VQb9DOSP-AuwYWkiWpGwz5a2OIGt_HdgLcuu2_YK9RNIYCPLRFPXueaCpnw','Dr. DeWall and the entire staff at SignatureCare are the best. Their bedside manor and approach to customer service it tip top. Makes a same day visit easy.. Keep up the good work!','2019-07-30 19:59:00.315000','2019-07-30 19:59:00.315000',5,'Charles Wood','https://lh5.googleusercontent.com/-JnP1dD1w57g/AAAAAAAAAAI/AAAAAAAAAAA/X9Seyeeb3gs/c-rp-mo-br100/photo.jpg','16891069708558046635',4232),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urY1ofFejDB8g9dE-vV5oFgFF_sGVVd1uXAAEV3MJpETLOaoGgw2Px0-JU9rAbVpzY3e0Qqp8re81B_3X0hK9bbkajhY4','Had the best care from Signature Care emergency center. Thank you Tanishia, Shelley, Dr. Patel, and Heather !!','2019-02-01 04:38:30.684000','2019-02-01 04:38:30.684000',5,'Bridgette Anderson','https://lh6.googleusercontent.com/-lT05qVIbq20/AAAAAAAAAAI/AAAAAAAAAAA/veWaF8dW4YA/c-rp-mo-br100/photo.jpg','17898197009688164559',5869),('AIe9_BHZM2k_MpOhRgkb8w5Bn_ury491tsVkG9kMcN1mTuO_UXkXZQcrvCiBzhQkgpMUGny1yH7XYaTyMomFiMxwJ1kqhlG1oeuZvN7MS-tlnJaUs_-lG2g','Friendly, Professional and caring staff! Everyone from front desk to the doctor are amazing and provide comfort to their patients. ','2017-07-01 15:33:52.638000','2017-07-01 15:33:52.638000',5,'Stormy Burns','https://lh4.googleusercontent.com/-PCXfdnkHBoQ/AAAAAAAAAAI/AAAAAAAAAAA/6BNmGnS3Rok/c-rp-mo-br100/photo.jpg','16891069708558046635',4550),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uryA8vJdnuK43btKmtU3qLYHoBDI3bzhuwysm4goikt8XmB_XNb3dsRmHAMSJyYk_yqn1MZ9DSy7gBC-JgMmzWHRFrhwQ','I want to thank Signature care team composed of: Cynthia,Aaron,Johnny,Ryan, and Dr.Ortiz for the care you gave my mother. Thank y’all for being so caring and explaining in detail each test, medication, and question she had. Thank y’all from the bottom of my heart.','2020-01-23 21:58:06.830000','2020-01-23 21:58:06.830000',5,'Nimean Blanco','https://lh4.googleusercontent.com/-fnL-26kR7wE/AAAAAAAAAAI/AAAAAAAAAAA/G8s1d5Geamw/c-rp-mo-br100/photo.jpg','14904078213800803294',13623),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uryAuYaLH2p4hRqHNcS52KZXXGuV-8HShgyGZWRNyPHbA0dv23PWYVzW7MQiYkR1rdxhrjLRKtQ0Rmc5wDn-pxHmIOUz4','Awesome staff.Thanks to Genesis,Melissa,Victor and Dr.Hehman','2017-02-14 22:02:03.650000','2017-02-14 22:02:03.650000',5,'Jose Zamarripa','https://lh3.googleusercontent.com/-eXZHaYbrr80/AAAAAAAAAAI/AAAAAAAAAAA/05OgrqPowIQ/c-rp-mo-br100/photo.jpg','14567670160750071148',1883),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uryeqGK8CrppJ9bRCsG22AfNzwMP4S5HR5oWlqb5QpsK9cUgwKaYr7cc4DgvpY0fwCRa2Xrdx8MbMA7Z36hiDtqdS9E-I',NULL,'2019-09-25 10:47:34.853000','2019-09-25 10:47:34.853000',5,'Meredith Hasselmeier','https://lh5.googleusercontent.com/-ItzMcdUY4ag/AAAAAAAAAAI/AAAAAAAAAAA/0KdEkfQqp0g/c-rp-mo-br100/photo.jpg','17898197009688164559',5539),('AIe9_BHZM2k_MpOhRgkb8w5Bn_uryfTzKmSBQyRIUz_f1p4ndzPb_0q_fN-g4bxMYsO1svD1uIPyFd60bQKU0Tj9sW7YOONe7p1FmUnuQGD9l4te6dcdI4A','We have been here many times and we\'re for the most part, happy with the service and attention.','2020-03-13 12:31:33.722000','2020-03-13 12:31:33.722000',5,'ronald quintero','https://lh5.googleusercontent.com/-P5132lBJuzc/AAAAAAAAAAI/AAAAAAAAAAA/GA1eH2bhSyg/c-rp-mo-br100/photo.jpg','14567670160750071148',20945),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urYiywD3TFnsn8fe1a8dvfkWOB35KoWmoU3IdWLURq6WcQonj8UqMAVZne_tI-UXE2nT7gmzLoKenwbTuiuGpD2sbHVs4','Jessica and Shanna were amazing! Extremely friendly and understanding. They put my worst fears at ease and helped me with any questions I had or concerns. Nicest place iv ever been too! The doctor had great bedside manners, very efficient and understanding as well. I will be coming back as a repeat client!','2019-07-03 16:24:17.698000','2019-07-03 16:24:17.698000',5,'Clarisa Ciriza','https://lh3.googleusercontent.com/-2CvDKcGdys8/AAAAAAAAAAI/AAAAAAAAAAA/Cv67MExDgkQ/c-rp-mo-br100/photo.jpg','6521947413723274945',8213),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urYR_JPFJ4sOD5iV3JjvP3hcXlvkVFGbkXbVwT1MRHPrycpyjB_TF6yQR9S9CNRRIo_0ozkvhO12zLyujxAaZeAl_L-Jo','I have been here many times for my covid test and everyone is super nice and helpful!! Thanks JD, Cody and Sam and the whole team at Signature Care Pflugerville!!','2020-07-28 16:32:39.219000','2020-07-28 16:32:39.219000',5,'Cynthia Gipson','https://lh5.googleusercontent.com/-LIyDqefuYnI/AAAAAAAAAAI/AAAAAAAAAAA/i3iGX2YkrzE/c-rp-mo-br100/photo.jpg','2077061009497551125',22795),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urZ8atQvLzQZPJcpVpK7nYDR4Y4IjR7AynEf3Wbha6dg7QajIaX6AH8YYauKeBXH5nU1bVGSqjHJb31VQWgDT1RmfCseE','This place is clean, convenient and the staff is awesome. They were all very nice, attentive and patient. They did not rush me out and took their time to find the solution for me. I would recommend people to go there for an emergency to get very good care.','2018-08-24 01:21:21.894000','2018-08-24 01:21:21.894000',5,'Nakiesha Pellerin','https://lh3.googleusercontent.com/-E7EKngY9sxw/AAAAAAAAAAI/AAAAAAAAAAA/ffDtmRqYucg/c-rp-mo-br100/photo.jpg','17394740196501090048',4815),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urZrOOwT0lgr-uyrJnaNwZV34HjIghGzPd_M1dSlKxzd5ERcoulIhxdSGcGgirK5xnbrGAZosVHBVjyGCUTFWkg6OqLSY','Talk about fast & friendly service. Aerial was great, she went above & beyond to find my insurance to verify, since I didn’t have my actual card on me. Before I could even sit down in the waiting area to complete my paper work, I was called to the back. The entire staff was nothing short of AMAZING ! Dr. Daniels customer service is EMACULATE ! She explained everything & then some in ways that I could understand. She was very articulate, she didn’t talk to fast & she made sure I understood everything & that she answered all my questions before she left the room. Literally within 15-20 minutes of being in the room they figured out what was wrong with me & explained the steps they were taking to ensure I’m better. I want to say thank you to Dr. Daniels, Nurse Tristins, Sherwin the Radiolody Tech (whom did my x-ray & within 10 minutes I got me X-ray emailed to me) , Thelma he ER Tech & Aerial at Regustration. You guys are all amazing keep up the GREAT work. You are all VERY appreciated !!','2019-06-11 07:54:52.629000','2019-06-11 07:54:52.629000',5,'Shakella Tillis','https://lh3.googleusercontent.com/-1tYdGt6rPH8/AAAAAAAAAAI/AAAAAAAAAAA/XWl511ZxOak/c-rp-mo-br100/photo.jpg','12541597562633926366',500),('AIe9_BHZM2k_MpOhRgkb8w5Bn_urzWzwni5TmiSMim-TZTQzkKB4bpk2aeZFvHJWf-Uhz4QxoSjCwOx8EzEvDqlXCoq3w5Aum0F7FmQNNr4H2wuNgEWP-bk','I had a wonderful experience at the Cypress location! Dr. Leavitt, nurse Jani and Marcus were outstanding! The front personal were amazing also! Thank you Vanessa and Jocelyn!! We were in and out really quickly!','2019-11-11 19:32:10.628000','2019-11-11 19:32:10.628000',5,'Cori','https://lh4.googleusercontent.com/-PUZjX-1mQso/AAAAAAAAAAI/AAAAAAAAAAA/cY8icxaqw2o/c-rp-mo-br100/photo.jpg','16389487648212004696',2716); /*!40000 ALTER TABLE `review_review` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_useraccount` -- DROP TABLE IF EXISTS `user_useraccount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_useraccount` ( `id` int(11) NOT NULL AUTO_INCREMENT, `location_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `location_id` (`location_id`), UNIQUE KEY `user_id` (`user_id`), CONSTRAINT `user_useraccount_location_id_d98f9b06_fk_gauth_loc` FOREIGN KEY (`location_id`) REFERENCES `gauth_location` (`location_id`), CONSTRAINT `user_useraccount_user_id_944a2ae6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_useraccount` -- LOCK TABLES `user_useraccount` WRITE; /*!40000 ALTER TABLE `user_useraccount` DISABLE KEYS */; /*!40000 ALTER TABLE `user_useraccount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `yelp_yelplocation` -- DROP TABLE IF EXISTS `yelp_yelplocation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `yelp_yelplocation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `location_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `location_id` (`location_id`), CONSTRAINT `yelp_yelplocation_location_id_33ec523c_fk_gauth_loc` FOREIGN KEY (`location_id`) REFERENCES `gauth_location` (`location_id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `yelp_yelplocation` -- LOCK TABLES `yelp_yelplocation` WRITE; /*!40000 ALTER TABLE `yelp_yelplocation` DISABLE KEYS */; INSERT INTO `yelp_yelplocation` VALUES (1,'https://www.yelp.com/biz/signaturecare-emergency-center-montrose-houston-2','3511292162159714121'),(2,'https://www.yelp.com/biz/signaturecare-emergency-center-the-heights-houston-4','14567670160750071148'),(3,'https://www.yelp.com/biz/signaturecare-emergency-center-memorial-city-houston-4','14904078213800803294'),(4,'https://www.yelp.com/biz/signaturecare-emergency-center-westchase-houston-4','12541597562633926366'),(5,'https://www.yelp.com/biz/signaturecare-emergency-center-midland-midland','13486358490203335051'),(6,'https://www.yelp.com/biz/signaturecare-emergency-center-odessa-odessa','6521947413723274945'),(7,'https://www.yelp.com/biz/signaturecare-emergency-center-paris-paris-2','8626688543755174284'),(8,'https://www.yelp.com/biz/signaturecare-emergency-center-bellaire-houston','8679688254631342173'),(9,'https://www.yelp.com/biz/signaturecare-emergency-center-stafford-stafford-2','8918455867446117794'),(10,'https://www.yelp.com/biz/signaturecare-emergency-center-texarkana-texarkana-2','3272657195432704501'),(11,'https://www.yelp.com/biz/signaturecare-emergency-center-killeen-killeen-2','2694018788013845459'),(12,'https://www.yelp.com/biz/signaturecare-emergency-center-pflugerville-pflugerville','2077061009497551125'),(13,'https://www.yelp.com/biz/signaturecare-emergency-center-south-austin-austin-2','16891069708558046635'),(14,'https://www.yelp.com/biz/signaturecare-emergency-center-college-station-bryan-college-station','16590124370714063921'),(15,'https://www.yelp.com/biz/signaturecare-emergency-center-cypress-houston','16389487648212004696'),(16,'https://www.yelp.com/biz/signaturecare-emergency-center-mission-bend-houston-5','17394740196501090048'),(17,'https://www.yelp.com/biz/signaturecare-emergency-center-copperfield-houston-2','17898197009688164559'),(18,'https://www.yelp.com/biz/signaturecare-emergency-center-lewisville-lewisville-2','14748677429039074158'); /*!40000 ALTER TABLE `yelp_yelplocation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `yelp_yelpreview` -- DROP TABLE IF EXISTS `yelp_yelpreview`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `yelp_yelpreview` ( `id` int(11) NOT NULL AUTO_INCREMENT, `reviewer_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `profile` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `rating` int(11) NOT NULL, `date_posted` datetime(6) NOT NULL, `comment` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `location_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `yelp_yelpreview_location_id_b83ae32e_fk_yelp_yelplocation_id` (`location_id`), CONSTRAINT `yelp_yelpreview_location_id_b83ae32e_fk_yelp_yelplocation_id` FOREIGN KEY (`location_id`) REFERENCES `yelp_yelplocation` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=767 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `yelp_yelpreview` -- LOCK TABLES `yelp_yelpreview` WRITE; /*!40000 ALTER TABLE `yelp_yelpreview` DISABLE KEYS */; INSERT INTO `yelp_yelpreview` VALUES (1,'Nayrobi P.','/user_details?userid=KJXQdLmTYQQYA_H_CjMSzQ',1,'2020-06-09 00:00:00.000000','The way the do their rapid covid test is flawed. The nurse had the swab in my nose for less than a second and resulted in a false negative despite me being exposed and showing symptoms. If i wasnt smart and quarantined i couldve been out and about spreading it. At cvs they do both nostrils and count down to 10 each time. Not to mention i paid $175 for that... and when i told them they tested me wrong 100% they said it would be another $175.',1),(2,'Malcolm L.','/user_details?userid=hYxmMw8aWIQPERuPRLIyRg',1,'2020-05-10 00:00:00.000000','My car was rear ended on August 10, 2019 and I went to this urgent care to be seen. The visit went well. However, they are making it impossible for my attorney to receive the billing. I\'ve called and visited this place a lot of times to try to get them to provide my attorney with the billing. Here we are 8 months later and they still have not provided the billing. Save yourself the headache and go to another hospital or urgent care if possible.Now they\'ve responded on 5-9-2020 to instruct me to do what I\'ve been doing since August 2019. I\'ve already tried calling, emailing, and occasionally showing up in person hoping for a different result. Still no success. This is truly sad and pathetic.',1),(3,'Stephanie D.','/user_details?userid=EVAXmoXI6it8pzLnTIrKaQ',5,'2020-05-09 00:00:00.000000','My daughter was experiencing stomach pains, nauseas, and diarrhea so I decided to bring her into Urgent care. We are new to the area so finding patient center care during a heightened time was important to me. Little did I know that coming here would be one of the best experiences that we\'ve ever had. Everyone from the security guard at to the doctor were EXTREMELY, kind, patient, professional and understanding. We felt welcomed as soon as we walked in and although it was early in the morning we were greeted with warm smiles. The waiting room was clean and inviting. The paperwork process was painless and non-discriminatory, which I appreciated as I have been profiled and discriminated against at other facilities in the past. The exam room was orderly, clean and kid friendly. My daughter absolutely loved seeing all of the underwater sea animals on the walls (that definitely helped break the ice considering what was to come) which made her feel at ease. Also, the exam room was very clean and comfortable. We\'re used to having a stool to sit on, if that.Leslie was amazing! I needed to contact our insurance company to confirm some information and right in the middle of my call, my daughter began vomiting. Leslie jumped right in and continued the call for me so I could tend to my daughter.Churiah, RN and Seblie -where do I began? They were so loving and gentle with my daughter as she received a pretty invasive nose swab. They provided us informed consent, explained each step and reassured us of what was to come. Dr.Grinblatas exceeded any expectations that I had. He was kind, calm (considering this is such a heightened time), informative, relatable and put all of my worries at ease. He made sure to take his time and continually ask if I had questions or needed more information. We are so grateful for his level of care. The cherry on top? Churiah gave my daughter a complete tour (with safety precautions) of one of the exam rooms! What curious toddler doesn\'t love a chance to explore all of the tools that are being used to examine them? All in all, if it\'s urgent and you need care then this location is the place to go. We live in the area, but if you don\'t then let me reassure you that it is worth the drive!',1),(4,'Julianna V.','/user_details?userid=4b1XHKyVCCPZrTpenCJUaw',5,'2020-04-24 00:00:00.000000','I came in today because I woke up with a swollen face. The Montrose location has been so great starting with Ms. Leslie who assisted me quickly and was there to assist me. Dr. Boester was super kind to me before I even knew he was my dr. Not to mention extremely knowledgeable! Tony asked all the right questions, Ms. Eve taught me something new regarding wearing gloves and made me feel comfortable during my CT scan, and Lai made sure that we were doing everything to protect me during the CT scan. Thank you all for your help!',1),(5,'Gail G.','/user_details?userid=WDr7a0Uo6vw5pj_mA7K4rA',5,'2020-03-31 00:00:00.000000','Amazed at the experience I had here.  Customer service was awesome. Super clean facility and the wait was probably about 5 min. The nurse offered me something to eat because I didn\'t eat breakfast before I came, so sweet.  Receptionist was very helpful. The doctor was nice and explained everything. The other nurse was super friendly.  I can\'t believe I actually had a good experience in the ER LOL. Although nobody wants to be in an emergency room, I highly recommend. Weird.',1),(6,'Kendra P.','/user_details?userid=vilGmFkj6YAcEkeSqjA4AQ',5,'2020-03-22 00:00:00.000000','the front desk,the young lady Tanisha,was super sweet.I can\'t thank the staff of this Emergency Room!FromEveryone was just amazing!Not to mention the knowledge that the staff has. Dr.Garcia was beyond carrying. Dr.Garcia made sure the I was comfortable before leaving his ER. I literally was treated like family. I would recommend this SignatureCare Facility to anyone who lives in the bear creek area, even if you live far and can make it over to this side of town it would be worth it. Thank you all!',1),(7,'Dominique O.','/user_details?userid=nSPIX2eNXWnNs6DUiYxxPg',5,'2020-02-27 00:00:00.000000','I was not the patient on this visit. However, my wife needed immediate help and they did just that. Cared for her very quickly and had great bedside manner. They addressed all of our concerns and questions. They were also all really personable, friendly, and polite from registration with Itza, the RN Dawn, ER Tech Olivia, the RAD Tech Jacque, and of course, Dr. Akunyili was amazing.',1),(8,'Camila G.','/user_details?userid=_XyAoi1gxMb_DXQHaRpONw',5,'2020-02-18 00:00:00.000000','I came in feelings horrible with flu symptoms. The whole team starting from veronica in registration, my RNs Dawn and Gina, Norma and Jaqueline were all very assertive. I did not have to wait too long the service was fast and efficient. Dr. Grinblata was very kind to thoroughly explain everything to me and help me pick the best choice for my treatment.',1),(9,'Will T.','/user_details?userid=0cCVTYd4SXmF6dtbDPnjxQ',5,'2020-02-09 00:00:00.000000','Had a great experience at Signature Care Montrose. The staff was very friendly and helpful. shout out to Norma, Churiah, Ke\'Aire and Dr. Yusuf!',1),(10,'Anum S.','/user_details?userid=bdr5x8L5YOIdwA2PTOGYlg',5,'2020-01-28 00:00:00.000000','I had another great experience at this facility. Amy, Churiah, Norma and Eve were amazing. Thank you guys!',1),(11,'Kayla P.','/user_details?userid=by2_PvZCoeKC5Swu5h2OZQ',1,'2019-12-29 00:00:00.000000','Nobody ever reached out to me. It\'s obvious they don\'t really care about their negligence. The ultrasound technician I pray that she is fired. How after 2 ultrasounds she did not detect an ectopic pregnancy??????? Did she really graduate or someone took the classes for her? Women\'s hospital of Texas helped me the BEST! Their ultrasound technician detected the ectopic pregnancy immediately and informed my OB/GYN of her findings. You all are paying for advertising but in fact this facility at SignatureCare need to be reported. Stole money from my insurance and didn\'t take care of me properly. I\'m disgusted, agitated, and embarrassed for going the 2nd time.',1),(12,'Joseph M.','/user_details?userid=OR-jkrvibPbLlHVQVj0hjA',5,'2019-12-29 00:00:00.000000','This place makes me feel so cared for.  I\'ve been here twice and each time the staff and doctors have been so attentive, informative, and fast! I had no wait time and the doctor saw me right after the nurse left the room. Not fun having to go here of course but the staff make it warm and caring. Would highly recommend if you have to go.',1),(13,'Deborah M.','/user_details?userid=dnQzdLHYduCH6tooEkiGYA',5,'2019-12-26 00:00:00.000000','Christmas Day - Flu here in Houston that would be nuff said but I will say more.Walked in to this facility on the recommendation of my daughter who also now has the flu (sharing is caring), I received the gift from the son-in-law, who shared with all, but I digress. The check in receptionist was awesome and took our information quickly and got us back to the doctors area fast as could be (who wants flu people around,right).We met two nurses who took the vitals etc, then a fantastic doctor who did some preliminary listening for pneumonia etc and then came the dreaded nose swab - damn that\'s nasty - to determine if in fact you have the FLU! and of course we did, charming just charming. Next for me is a quick breathing treatment because Houston air is a bit sucky for people with asthma and then here comes the shot glass of steroids and Tamiflu. Oh joy!Thankfully we had the FLU shot so this mild case could have been so much worse. Christmas was ok just a bit on the yucky feeling side and everyone shared the Flu. This place was very responsive and I have the utmost of respect for the doctor and nurses and that nose swabber guy who did it to my schnoz on Christmas Day.Happy Fludays',1),(14,'Jenny B.','/user_details?userid=zyAJC9YVkCIpV9qa79vaPw',5,'2019-12-21 00:00:00.000000','Great service, have been here a couple times and never been disappointed. Great service from Dr. O\'Malley Dawn RN and Olivia the tech.',1),(15,'Kristen F.','/user_details?userid=e-tXNAweH9ZK9Kh2w3xKag',5,'2019-12-20 00:00:00.000000','Amazing facility and excellent care from all of the staff. Highly recommend this location for any emergency incident. Dr Yusuf, Dr Sylvester, Dr Lindsay and Dr Grinblatas are all so very patient and caring in their explanations of what\'s medically going on. Grateful for their awesome medical care! Great service from Nurse Raj, Nurse Dawn and Nurse Gina too. Thank you for caring about your patients so much.',1),(16,'Britt R.','/user_details?userid=LiQmeWqAuAY1wutgH7fThg',5,'2019-12-20 00:00:00.000000','Super fast service without a wait.  A staff that cares, and reasonable prices for those without insurance.   Wont go to another er anytime soon.',1),(17,'Christina D.','/user_details?userid=shpNZIOJF0oyVmHO7whFNw',5,'2019-12-09 00:00:00.000000','My 21 year old son was not feeling well and getting worse over the course for few days.  I was so concerned that he had an upper respiratory infection or worse, so we went here to make sure he was going to be ok.  They ran all test including an X-ray.  The staff and doctors had such great bed side and customer service top rated mannerisms.  They were wonderful from beginning to end.',1),(18,'Stephanie M.','/user_details?userid=r4r8xr9wUYnhIft9_dA6jQ',5,'2019-11-29 00:00:00.000000','I tore the ligaments in my foot and came here on a Sunday at 12:30 in the afternoon had an x-ray and I walked out with a boot and a prescription at 1:15. My insurance took care of the entire bill. I didn\'t pay a dime. Everyone is nice and professional. I would highly recommend this place.',1),(19,'Jenee D.','/user_details?userid=1TtHSZO0yQqLkbHkjOB8wQ',5,'2019-09-18 00:00:00.000000','This was my first time coming to this center. I had 0 wait time and the nurses Dawn and Norma got me situated quickly. Unfortunately I had to stay longer than I had hoped but everyone went above & beyond to make sure I was comfortable. Dr. Patel was very kind and very thorough while treating me, making sure I understood the results of the diagnostic tests that were taken. I would highly recommend.',1),(20,'Patricia L.','/user_details?userid=Ohneij5SMMbry03MZXsbuw',5,'2019-08-23 00:00:00.000000','I visited here over a year ago with my daughter in the middle of the night when she had a UTI and was in excruciating pain. We now received 2 bills from here only today: one for $1700 and one for $500. None of it was covered by insurance(as all was applied to her deductible). She was charged $300 for a pregnancy test she did not know of, after she had told the doctor there was absolutely no chance she was pregnant. On top of these high charges, she did not even receive the proper antibiotics and the infection came back less than a month later, being told by her physician that this was a resurgence from the first after not receiving the prescription she needed. I called today and was told that she was treated how the doctor saw fitting. I would not recommend going here to anyone. And IUPDATE:After discussing my concerns with another person at this agency, they agreed to revise the bill and did not charge me for the service. My recommendation is to use anything labeled \"Emergency Room\" only in a life threatening situation and seek out an Urgent Care facility if your doctor\'s office is otherwise closed. I appreciate this facility for listening to my complaints and concerns.',1),(21,'Sylas D.','/user_details?userid=sFAQNbGxuir1EEn91e5hPw',5,'2019-07-25 00:00:00.000000','This place is amazing! I\'ve been 3-4 times and every time I\'m in there I\'m taken back within 5 minutes and stabilized immediately. The last doctor I saw, Dr. Boester(sorry if I spelled this wrong), was so kind and knew exactly what to do and how to treat me. The nurses were amazing too and even brought me snacks and a warm blanket. 10/10 would recommend!',1),(22,'Tony W.','/user_details?userid=GaaPk8VmJ_6zEp9nBaHDtw',5,'2019-07-08 00:00:00.000000','Ongoing Pattern of Excellent Care!I\'ve unfortunately needed to visit this ER now four times, once for me and three times for my wife.   In each occurrence, we\'ve been impressed by the friendly and quick service, the professionalism of the staff, the capabilities available for testing and the overall competence/expertise of the medical team.    They brought in specialists in multiple areas quickly.  Billing was handled smoothly.     This is now our go to place for any urgent medical issues where our normal provider is not available.',1),(23,'Julie B.','/user_details?userid=noU6R80H8r6A4PFxtxIlBA',1,'2019-06-22 00:00:00.000000','The bills arrive about a year after you visit and leave you broke.  I will never go again.  I went in for a spider bite.  The Dr never even examined me.  She walked in the room looked at it from 5\' away and said, \"yes, you were bit by something\". For that I have been billed $1,800.  It was 15 minutes.  The icing on the cake was the bill for the ice pack they never gave me.',1),(24,'Melissa L.','/user_details?userid=9SIKAxvkD620CEq3YqE_Rw',5,'2019-06-20 00:00:00.000000','Exceptional care! Great doctor! I was in & out fast and they really helped with all my questions! Totally recommend',1),(25,'Kaylin Danielle A.','/user_details?userid=e_rWKqZVhUrMJCdn2fjaJg',5,'2019-06-19 00:00:00.000000','Got in an accident and of course this was the first place I thought of. Brenda Roman was of great help omg with the rest of the staff. The nurse got my IV on the first try (which is rare for me!) and Dr. Sylvester was very informative! As always I\'m super satisfied and will never go anywhere else!',1),(26,'Gabrielle R.','/user_details?userid=hkf5VHGEkcnK68Oueadfdg',5,'2019-06-18 00:00:00.000000','This place is incredibly fast and understanding. Dee at the front desk went above and beyond to take care of every need I had and I couldn\'t be more thankful for her!! Highly suggest this place for any medical need you may have!',1),(27,'Ravel P.','/user_details?userid=vGPP6Zw0Y2npYIBreIQkTw',1,'2019-06-17 00:00:00.000000','... had the most disturbing discovery after going to the Montrose Ig\'ntCare to get my Medical Chart, it was very early in the morning and I stopped in to get my paperwork --this is where & when i truly realized I was not just overlooked & dismissed on my initial visit for my ... appearance ... I didn\'t only have my health compromised by the whim of the staff... On review of my medical chart, it was obvious Ig\'ntCare took aggressive action against my well being, and even after investigating the situation, RoundTMC [their $-admin] supported the immorality in the most heinous display of passive aggression by not telling me --yet still being apologetic on my treatment[*maltreatment]What would one feel... if an establishment knows a group of their your own has acted out in total contrast to what depicts the establishment as a medical care provider, literally allows shtt to manifest randomly, undoubtedly blocks one from gathering information by having one flagged with the testing- lab_corps -facility, and gives no indication of rectifying the situation..?   I felt betrayed at first, then again recently, when out of the blue a telephone call from RoundTMC made me relive the whole incident [in my own words] a second time. The inquiring administrator assured me I would get the apology I \'deserved\'... Shortly after that their Legal-Department has put out the notice that I should not be communicated with...SignatureCare, RoundTMC, and Labcorps, will not provide further info for me to digest ... but I forgot to mention to them, that on my last visit, before dealing with the arrogant Morning-Shift Doctor at the Montrose Facility... there was an earlier incident with the staff that morning,  where they attempted to unlock my truck after I locked myself out in haste ( ON viewing of my medical chart) ... but in light of how this establishment backstabs I\'m glad there\'s film/footage, to question the gesture & the  use of medical equipment... much like it should have been questioned on my initial visit.  ...& No... I Never was offered a Warm Blanket... I would have preferred a warm welcome instead ( medical attention would have been nice too!  )',1),(28,'Sophia R.','/user_details?userid=zziOatLMIw0vCsQWp3qnnw',1,'2019-06-16 00:00:00.000000','I wish I could rate this place zero stars. I came in after an ovarian cyst rupture and my back pain was shooting up my spine. It\'s felt like my back was breaking. Dr Jaber deemed it not emergent and said I had to pay 1300 to be seen or I could leave.',1),(29,'Denah R.','/user_details?userid=7Dt16G7qgD_rDSQ5n3p-uA',5,'2019-06-15 00:00:00.000000','Dr.Miller, Agnes, and Amy were so sweet and helpful! They were also quick to service. Will definitely come back!',1),(30,'Vanessa R.','/user_details?userid=FPupite4g43BdXub_0JTkw',5,'2019-06-15 00:00:00.000000','After my sister suffered a gnarly gash, we found ourselves walking through the doors of SignatureCare. Having no insurance & extreme distaste for hospitals, this was our best option given it was Saturday. SO SO SO pleased with our experience. Leslie greeted us & had registration squared away in no time. In a snap, we were led back to a patient room. The staff took extremely good care of sis, the cost was reasonable & the facility was legit nice. It has less of a clinical feel, but rather more like a very spacious upscale specialist office. The doc was also amazing! Thanks doc!!!!!',1),(31,'Jordan G.','/user_details?userid=JJLLjelCG4harvMgijyrwg',5,'2019-06-11 00:00:00.000000','Brenda was so helpful and this place was great, I walked out feeling better than I came in and they knew exactly what my problem was.',1),(32,'Adam F.','/user_details?userid=hj9XndsobO5C4AJC_5I36g',5,'2019-05-25 00:00:00.000000','One quick comment: I\'ve been here twice now and each experience has mirrored all of the 4-5 Star reviews shown on Yelp. I have read the really negative reviews, and I must say that they seem to be angry patients who are blaming the one person/people they can blame. I encourage you to read the reviews to understand the positive experiences, rather than taking others\' vitriol as strong recommendations. Just my two cents. On with the actual 5-Star Reviews-- -- -- My second visit at SignatureCare - Montrose was just as convenient, friendly and successful as my first experience. For emergency / urgent care, SignatureCare - Montrose is leaps and bounds above the rest. The Brenda R. and the rest of the staff is incredibly friendly and professional, making my check-in an absolute breeze--no lines, no wait times, and ultimately an easy check-out. They always offer a wheelchair and a warm blanket upon arrival and Brenda offered on this visit, though I declined both. As for the actual care, my nurse and attending physician were phenomenal. Churia was attentive and inquisitive, listening to my symptoms and full story then relaying that exact message to the physician. Oh, and she offered me a warm blanket in my patient room as well. Fast forward to the treatment, Churia was caring and efficient. Dr. Sylvester was collected and engaged, having reviewed the nurse\'s notes, picked up in the symptom threads immediately, and respected my experience and pain through the process. His diagnosis matched accordingly and he prescribed the proper medication and regimen to get through this episode. He ended our consult with a handshake, which is always appreciated as a patient. All in all, fully recommend Signature Care - Montrose for your convenient and local Emergency Center.',1),(33,'Johnny M.','/user_details?userid=MABYS_xxN2YGthfW7v0SGA',5,'2019-05-22 00:00:00.000000','The folks at SignatureCare are remarkably kind and helpful. I went here due to a medical emergency, and the wait time to see a doctor was only a few minutes. The doctor and attendants were kind, professional, and supportive. Brenda, the receptionist, was phenomenal! They also worked with me to make the visit affordable. Thank you so much!',1),(34,'Mario D.','/user_details?userid=n40z18JI7GJGOJYaAw0d_A',5,'2019-05-17 00:00:00.000000','I Had pains in my abdomen and found this place online. I was met by the receptionist Brenda R who was very friendly got me in quickly with virtually no wait time. Dr. Golla showed alot of concern for what I was going through and made me feel at ease and answered all my questions. I thought it would be awhile before I knew what my issue was but I got my diagnosis fairly quickly and the prescriptions to treat it. I was in and out before I knew it. Great service ...Great Staff! I would recommend this place to anyone.',1),(35,'Krystal J.','/user_details?userid=LhZ_6qcWFdmgGPuoHwLuMg',5,'2019-05-10 00:00:00.000000','Found myself at SignatureCare after my school nurse told me my mosquito bite looked a bit odd. I was nervous because my insurance was expired but didn\'t have much of a choice. The staff was extremely welcoming and reassuring the entire time. Dr. Golla is probably the most caring and friendly doctor I have ever encountered. Was completely patient with me and my frantic family on the phone, they were overseas freaking out. The self pay was really affordable and I was in and out of one the best visits to the ER. Thank you all so much!',1),(36,'David L.','/user_details?userid=Jq2_kxrSON06xxgJKBFm_g',2,'2019-05-08 00:00:00.000000','They tried to over charge our insurance company for what turned out to be a urinary track infection that my wife had on the weekend. We protested and they reduced charges by more than half. An ER is not the place to go for sore throat and congestion but they had a lot of those. They should go to an Urgent Care where rates or lower or wait until Monday and see their Dr.',1),(37,'Gerland B.','/user_details?userid=aJWdXEVPnd4_A_MMZyyGJw',5,'2019-05-05 00:00:00.000000','Came here for my kidney stones and was taken care in such a great way! The staff was super friendly and helpful and made a bad experience much better!Would definitely recommend anyone to come here if you want to get a treatment where you feel heard and safe.Dr. Patel, Gracie and Amy made the process enjoyable and effortless.10/10',1),(38,'BreAnna H.','/user_details?userid=I-1QBN06l9RKcgut_bmQzg',5,'2019-05-04 00:00:00.000000','Dr. Souman, Amy of registration, and Agnes the RN were very nice and helpful today. Would highly recommend to anyone!',1),(39,'Emily B.','/user_details?userid=LLdJJZPTb6lMmtlMCUbR3A',5,'2019-04-22 00:00:00.000000','Great and honest service provided by Amy, Langit (RN), & Dr Dendy. They processed me quickly through check-in, throughly assessed of symptoms + history, and resolved my issue efficiently.',1),(40,'Benson B.','/user_details?userid=Fgdblh1y5M22ztzc_uUlFg',5,'2019-04-20 00:00:00.000000','Dr. Wren was great and answered all of the questions. They had excellent customer service. Would recommend for any emergency situation.',1),(41,'Ghufran A.','/user_details?userid=xXyhwllCTZw3Fj5TMZxN7A',5,'2019-04-19 00:00:00.000000','Gina my friends nurse, Dr. Souman, Dion, and Amy all helped very nicely! I recommend to anyone.',1),(42,'Aislyn E.','/user_details?userid=OM-4KOLW5IBzbGFapwICtA',5,'2019-04-08 00:00:00.000000','Amazing care from the start, Amy the receptionist was very kind and walked me through everything . RN Gina was very sweet and attentive. Dr.Ngozi took very good care of me. I would highly recommend this place to everyone!',1),(43,'Casey C.','/user_details?userid=sVg0H51XmguiNahIYXLsHw',5,'2019-03-18 00:00:00.000000','I have been here 3 times now over the past few years. It has been for kidney stones(which sometimes come on quick and are extremely painful). And each time here I have been treated great. I have never had to wait more than 2 or 3 minutes to be called back. The staff at the front desk are extremely kind and helpful. The nurses are kind and help get you situated immediately. The rooms that they hold you in are very comfortable. There are drinks and snacks available for patients and whoever brought them in. I can not recommend this place enough! Whenever time is a top concern, come here! They\'ll see you immediately and great you effectively! Being seen quick and treated kindly is so important when you are in a lot of pain/not feeling well. Even if I didn\'t live in the area, I would still make the drive here!',1),(44,'Arinjoy G.','/user_details?userid=i0gXoa8PVnFnr85cilrRrw',5,'2019-03-10 00:00:00.000000','Dr. Grinblatas, Jessica, Iwona, Norma and Amy are the absolute best! From the moment we stepped in there to when we left 6 hours later, they were there for us in every possible way. If anything were to ever go wrong again, we wouldn\'t hesitate for even a second to come back here, as we now know exactly the team to count on!',1),(45,'Catherine T.','/user_details?userid=wX1BJyGQ1g9i7-KyYNjcOA',1,'2019-01-31 00:00:00.000000','I had some food poisoning like symptoms at a late Sunday night and thought it would be a good idea to come here. The front desk did tell me they are categorized as emergency room but they accept most insurance. Thinking it just meant higher copay I went in......Boy! wrong decision! Although the facility was nice and clean and there is no wait time I should have known there is a good reason! I went online and checked my insurance claims today because my HSA card keeps getting declined at the pharmacy. My heart skipped a beat when I saw what they billed me. Not only they exhausted all my HSA account balance( the medical expenses I originally budget for my whole year and this is only January!) I also have close to $4000 balances owe to them. Everything they billed me are out-of-network which means they get to call the price! My insurance company is UHC so it\'s not a small one. My whole pregnancy did not cost me this much! I also had been to ER of Methodist not long ago for a minor car accident. The actual ER was more reasonable than this madness! So do yourself a favor, medical center is only another 10 minutes drive away. Avoid yourself to be in this kind of frustrating situation! I read Texas lawmakers are working on some laws to regulate this kind of misleading practices and I\'m going to share this story to my state representative. So deceiving of them to tell you they accept insurance but not warn you nothing they provide is in network! houstonchronicle.com/bus…',1),(46,'S G.','/user_details?userid=aZrpgqWlIjxFLM5_9od4ag',1,'2019-01-09 00:00:00.000000','Charging practices are insane!!  Over $1,000 emergency room charge just to be seen.  Never again!!  All they did was write me a prescription for an antibiotic, which they can not distribute so it is off to the 24 hr pharmacy. I have Anthem Blue Cross and my insurance company rejected the charge.  Now I have to start the process of getting them to fix this.  Absolutely INSANE!!  This is a clinic NOT a full service hospital.',1),(47,'Mark B.','/user_details?userid=ovOGcep2hPxUWMIniiH4lQ',1,'2019-01-07 00:00:00.000000','While they might be able to see you quickly, the \"doctors\" are what you would expect in a strip mall... The ones that couldn\'t even get a job at a sub-par suburb mini-hospital.  I know countless uncertified nurses that know more than these failures of \"doctors\".  Also, they will not take your insurance and you will be billed a TON OF MONEY afterwards.  Avoid at all cost. Go to a real ER (two minutes away in the actual Med Ctr).',1),(48,'Lior I.','/user_details?userid=43DLsVYqknqwFllWEAXoAQ',1,'2019-01-05 00:00:00.000000','Fast service. Unprofessional billing. They won\'t bill my health insurance. Billed me and told me I had to claim it myself. Any time saved by not going to a traditional ER is going to be lost on managing medical claims. Also, since they are a private ER they can charge whatever they want.      My wife brought me in after a car crash. I experienced soreness. I was there for two hours, during which they performed four CT scans. They took my car insurance info, but not my healthcare one. After maxing out my personal injury (PIP) benefits with my car insurance there was about $13,500 still owed. They told me that they won\'t bill the medical provider for the reminder and that I have to do it myself. When I asked how come a medical service center won\'t bill a healthcare provider, they said that they do in case of colds,etc but not in case of car accidents.\"We just don\'t\" was the answer. I am willing to pay any deductibles, etc, but making me submit all the claims is unreasonable. My insurance covers 100% of medical emergencies, but they won\'t do it. My new hobby is going to be becoming a claim specialist. Please consider going to an old fashion ER at a hospital.',1),(49,'Erica O.','/user_details?userid=33_M4nSt8ZhqmrpSvs824A',5,'2018-12-18 00:00:00.000000','I went to Signature Care on 12/15/18 for an eye injury. Once I got to the emergency room there was no wait and I was seen in about 2 minutes after being in the waiting area. My nurse Hamzah J A was AMAZING!!!! After going through such a traumatic experience, he made me feel comfortable, safe, and not embarrassed. After telling him about my job interview he even gave me tips on how to email my interviewer and explain what\'s going on. I was also offered a heated blanket and water while I rested and waited for the lab info to come back. The doctor and lab tech were also so compassionate, careful, and amazing as well! I will never go to another emergency room after having such an amazing experience here. The next day Hamzah J A also called to check in on me and see how I was doing. Signature Care is AMAZING!!!',1),(50,'Jennifer G.','/user_details?userid=CkNDtpfaJCr6ft4k8NCrWg',5,'2018-12-10 00:00:00.000000','Close to my house. Low wait time. Can treat you for minor or major emergencies. Onsite diagnostics. Very nice waiting area. They give tours. D at the front desk can give Starbucks cards.  Accept all major insurance. Note- this is not an urgent care. This is a true emergency center. A legit hospital not an urgent care :) the location and nice area make it seem otherwise so I thought I\'d note.',1),(51,'Katie S.','/user_details?userid=7Meebexu0AD8q7E2Zv43LQ',5,'2018-11-27 00:00:00.000000','Everyone I\'ve met here is wonderful...both knowledgeable and kind. Dee at the front desk answered my many questions and made sure to get me the best care and value out of my visit. I didn\'t have to sit for more than 30 seconds before I was called back into my own private room. Each staff member is well informed and very thorough. I\'m so happy I found this place!',1),(52,'Sierra C.','/user_details?userid=h1FQuJ0ADFTcQ-QFXsN9dw',5,'2018-11-17 00:00:00.000000','So I just just JUST left this clinic. I\'m pretty sick but they really do deserve this review. They totally earned it!The things that are important to me: 1. The staff seemed to work as a team and everyone was so kind. Every question and concern I had was answered. Everyone was very patient.2. The nurse who put in my IV only had to poke me ONE time. Which is UNHEARD of for me bc I\'ve been told I have very small veins (and I know I haven\'t been staying hydrated due to my throat being so swollen). 3. Does the entire staff look like they belong on Grey\'s Anatomy? Absolutely. Glad I got to be in a real life episode. 3.5 ESPECIALLY DR. B. Seriously he should be cast in an actual episode. I didn\'t get the chance to ask if he was an actor, unfortunately. Shonda Rhimes, I found your new McDreamy: get to H-Town asap. 4. The staff & doctor keep you informed every step of the way.5. The wait time is LITERALLY 5-10 mins. FOR A WALK IN. It\'s that fast. 6. The facility itself is very clean! Cleaner than any regular ER. 7. They are so accommodating. Both for the patient and family members. I got 2 warm blankets. They have coffee, juices, water, and snacks. I can\'t swallow rn so I can\'t go into detail about their snack selection but I BET they have some great ones. 8. Quiet-- maybe bc I went on a Saturday night. But more quiet than any other doctors office/hospital/ER I\'ve ever been in.9. Child friendly.',1),(53,'Ann J.','/user_details?userid=JmeOo_BMJ291tbeu6RepTw',5,'2018-10-17 00:00:00.000000','Wow. Where to even start? For 1) I never write reviews and for 2) go here. While traveling for work - I got desperately sick and fast. Flu. Went to their urgent care facility a few hours after the chills and high fever had set in. I\'ve had good - even great - medical care before, but I\'ve never had flawless and this was flawless. They were efficient, they were kind, they were comprehensive, and most of all - they made me feel better. I\'d love to remember all the names of the folks that helped me, but honestly - I was a mess. If you were on staff around 8pm on 10/16/18 - thank you! I can\'t be more grateful for how better I feel and for the level of kindness you all extended me.',1),(54,'Jay B.','/user_details?userid=H7bGHaFFZ6ubENfyAKexFA',5,'2018-10-13 00:00:00.000000','The staff is so polite, the building is always clean, it doesn\'t take very long to get in/out. The appointment alone is $175, I believe, but if you are in desperate need of an ER, I would go here. They give you accommodations such as water and a warm blanket while you are waiting to be seen. It is as comfortable as any ER could possily be.',1),(55,'Tikya T.','/user_details?userid=kkfdWHBShDOM4vRKSJwoeA',2,'2018-09-26 00:00:00.000000','Although the service was descent I have an issue with the front desk person who gave me false information. When I first walked into the establishment I asked were they in network with my insurance and the lady told me yes... fast forward to 2 months later a get a bill for over $30,000 from my insurance because guess what... They were not in network with my insurance... Now yes I did sign the palate to accept financial responsibility of my visit but I was under the impression that I was just paying what my insurance would not cover.... Completely unacceptable, will I return based on this situation NO! Be careful when making sure they are covered with your insurance because they will just lie to you and take your money!',1),(56,'Nia N.','/user_details?userid=sv1uu_Ja4_BWlISYybyVqA',5,'2018-09-22 00:00:00.000000','Came in for a twisted ankle and had great service! The staff was very accommodating and made me feel cared about! 10 our 10 come here if you\'re hurt!',1),(57,'Ken N.','/user_details?userid=nWP_TZrpnN6xHbF23V2D5A',5,'2018-09-22 00:00:00.000000','They were so friendly and helpful when we showed up.  I\'m definitely having my next accident on the way to SignatureCare!',1),(58,'Nicole L.','/user_details?userid=FvAqsw7795_Eh7yDBsO0Sw',5,'2018-09-08 00:00:00.000000','Hayleigh the first person I saw walking in the door was phenomenal!!!!! The entire staff is amazing .... so friendly .... educate you on everything they are doing ... I\'m so impressed. Best ER I\'ve ever been to.',1),(59,'Maira F.','/user_details?userid=QeWbKyEuqzdnRJIi-e7UpA',5,'2018-08-28 00:00:00.000000','I highly recommend this ER if you have any emergencies. It\'s clean, fast, and straightforward. We\'ve been here 3 times and Ke\'Aire (receptionist) was very kind, quick and understanding to our concerns. Dr. Guharoy was very knowledgeable when I voiced my concerns and explained to me exactly what was going on. Nurse Chih and Anastasia were great. They kept everything clean, talked us through what they were doing and were PROs with injections. I would come here again if the situation arises. *knock on wood*',1),(60,'Mayan S.','/user_details?userid=ux5_Ql1GWVgQgbZj88PHHg',5,'2018-08-15 00:00:00.000000','All of the staff is super friendly and understanding. All of the doctors took vey good care of the patients for big or small cases. Much cleaner and more discrete than your typical ER. I will always go to this place as my first choice. Plus they have lots of snacks and warm blankets :)',1),(61,'Jaime G.','/user_details?userid=mFF-EyIW5_e-S28LA2vdOA',5,'2018-08-11 00:00:00.000000','Signature care is a great facility! The staff is really friendly. Will definitely be coming back here.',1),(62,'L\'Rissa P.','/user_details?userid=wxlL65BFApF5zdsQ2sEpTw',5,'2018-08-06 00:00:00.000000','This was a quick and honest visit. They got me in immediately and Dr. Yusuf gave me multiple options on what I wanted to do. The nurses were extremely helpful and nice to me as soon as I came in. Very helpful place and I would come back if needed.',1),(63,'J L.','/user_details?userid=4jPBG1x5ye5I5FFJOoB-IA',5,'2018-08-04 00:00:00.000000','My husband was diagnosed with Kidney stones. We can\'t be more grateful for all their help, assistance, and most of all the care they provided! Very happy and extremely satisfied with their service. Especially when we don\'t like going to ER. Thanks to ALL the staff for making us feel welcome and cared for.',1),(64,'Coltyn C.','/user_details?userid=NUp8ss4AS8eJm7gG-QW64g',5,'2018-07-25 00:00:00.000000','This was my first time at an emergency center and I had a great experience! Everyone was extremely helpful and concerned about my visit. I especially have to thank Dee for being an incredible help during my visit and calming my nerves. I would definitely recommend this place to anyone!',1),(65,'Chelsey C.','/user_details?userid=ksCVIMGGHaTCYzkorvtCbA',5,'2018-07-12 00:00:00.000000','Came for a minor skin wound and I was in and out in an hour and a half! Staff was fast and friendly and Hayleigh up front was great! I would highly recommend when you don\'t want a long wait with a big ER for something minor.',1),(66,'Katie G.','/user_details?userid=86DDZdxOT25TqsS82qbjWQ',1,'2018-07-03 00:00:00.000000','Worst Urgent Care; doesn\'t listen to the patient! Terrible doctor today, terrible nurse, said my pain is psychological, really?? After 18 years of pain! Avoid!!!',1),(67,'Leanne E.','/user_details?userid=JIrK22yEeCBlw_9BlrgPpw',5,'2018-06-21 00:00:00.000000','I came in on a weeknight kind of late struggling with symptoms related to care received from my regular doctor. I was in a lot of pain because my regular doctor had given me an injection improperly. I was greeted quick and warmly and whisked back within 2-3 minutes. The nurses were awesome and really cared! The doctor came in immediately and listened closely. He was able to determine the problem and rules out some other things without needing a ton of tests. I am very appreciative of their caring approach. They\'re not like a regular ER where you go and wait hours and you may or not get quality care. I highly recommend this location and if I ever need emergent care this will be my first stop.',1),(68,'Sarah P.','/user_details?userid=DaxWohHIsVOoz7am6ZVdKw',5,'2018-05-10 00:00:00.000000','Went in when I had an asthma attack and they immediately saw me and gave me a breathing treatment. The doctors were really nice and helpful. I highly recommend this urgent care!',1),(69,'Linh N.','/user_details?userid=iK6rUacITAvjsg_31OgqGw',5,'2018-03-14 00:00:00.000000','Needed to see a doctor and run some blood work immediately and thank goodness I came here. No wait at all and I was immediately seen. Results for blood work & scans were also in 30 mins. Doesn\'t get better than that!!!',1),(70,'Eleonora M.','/user_details?userid=XSSwj7eSDtpI7NCNv0p5jw',5,'2018-03-14 00:00:00.000000','I am very happy with this experience at Signature Care. The team there make me feel safe , the doctors, nurses , technicians , and receptionists. All of them very kind and profesional . The medicine @ SCare is integrative , all the profesionales work as a team . You can have blood test , CTscan , X-ray , etc . I think is less expensive that hospital emergency services. They have the best doctors in this location . The nurses are very well trained and with great actitud. Thank you very much for getting the best treatment and be concerned about my well being . Totally I recommend this place My photos are not very good because I was been treated by the team but I added to yelp so you can have an idea',1),(71,'Kevin D.','/user_details?userid=ULIx6I3UrccPf7EpLbOJ1g',5,'2018-02-14 00:00:00.000000','My visit was fast, the doctor was very nice, especially the front receptionist Mercy. Best emergency room visit I\'ve ever had.',1),(72,'Mariana Y.','/user_details?userid=wb_aDNImp3r-kl-Aa8u7yw',5,'2018-02-14 00:00:00.000000','Dr. Smith took care of my infected finger quickly and painlessly. Gave me options for treatment which I appreciated. When I walked in on a Wednesday morning had zero wait, was able to finish paperwork in the room rather than in waiting room. The nurses were kind and offering me a warm blanket and a beverage which was a nice touch. Doctor also explained the follow up instructions to me and told me what to expect/watch out for. Facility is clean and inviting. What is nice is they can accommodate pretty much anything an ER attached to a hospital can. I would definitely recommend if you need to be seen by a doctor. Bonus that it\'s 24/7!',1),(73,'Edward k.','/user_details?userid=6cKMNBISoqMJyAZpQAGjbg',5,'2018-02-04 00:00:00.000000','This facility is really nice. Like a spa. The staff are the friendliest you will ever meet.',1),(74,'Caroline L.','/user_details?userid=cmySkw5F4BCsm4g6QpFZTw',3,'2018-01-29 00:00:00.000000','Good service. Friendly staff. A little slow though so I wouldn\'t go there if in a rush.',1),(75,'Andrea J.','/user_details?userid=Fz2m-ANGU41qPsXsWDKbNw',5,'2018-01-26 00:00:00.000000','The staff here are amazing. Arianna at the front desk was very kind and attentive. She helped me very quickly and I was in a room in less than 5 minuets. The nurse was very understanding of my situation and kind. I wish all hospitals and doctors were this amazing. I recommend this place if you ever feel like you need to go to the ER. You will be in and out faster then any other place.',1),(76,'Andrea B.','/user_details?userid=2kyjv0M5oTXqEx8NOHgr1w',2,'2018-01-12 00:00:00.000000','I am disappointed in my care here.  I went in last week.  The physician on call was condescending and dismissive toward my issue.  Not only am I a doctor, but I have had this illness before.  Not only did I get the wrong diagnosis, but I was also denied the medication I needed.  I ended up going to another doctor later in the week.  Got the right diagnosis.  Slowly working toward recovery.  Then on top of the negative experience, when a person is leaving the ER, they don\'t care to stop and fill out a customer service evaluation.  If I were sick enough to come to the ER, I doubt I am well enough to fill out your form on my way out.  Horrible timing.',1),(77,'Lily Z.','/user_details?userid=OkZrn0IAM7GXPbDqMn67LQ',5,'2018-01-09 00:00:00.000000','I cannot speak highly enough of the medical care I received at SignatureCare...I told everyone that it felt like I was at the luxury spa version of an ER. Dr. Singla was so calm and took all of my pain seriously. The nurses and various specialists were SO. KIND. and kept my boyfriend and I entertained through all the stress of having a stomach virus in a city we were just visiting for the weekend. Thank you for everything!!',1),(78,'Nancy T.','/user_details?userid=zGBudmCBO5Ko5Zirt0XP7g',5,'2018-01-08 00:00:00.000000','Sunday 1/7/18 So it looks like my first review of 2018 will be SignatureCareI\'m going to preface the I\'m a SUPER healthy person who drinks a gallon of water a day and meal preps my meals. But I\'m guessing working 7 days a week and over 10 overs kinda caught up to me. I don\'t know how though. I RARELY EVER GET SICK. It\'s usually about once a year or never but when I do, its like fekkin deathy.Friday night was when it happened. Got the biggest migraine of all time. Then Saturday I still went to work and my symptoms were getting worse. Sunday comes along and its just terrible. It was serious flu-like symptoms. fml.2 1/2 days go by and my friends are concerned about my health. I was getting really sick. There\'s a building right off Westheimer right between Montrose and Youkum. So I walk across the street at around 5pm~ since I live really close to what I THOUGHT was an URGENT CARE to be treated. The ladies at the front desk greeted me and were so nice to me. I filled it all the needed paper work and waited. I didn\'t wait but 10 minutes.And then it hit me. I went back up to the front desk and asked the ladies if this facility was an Urgent Care or an Emergency Room. And lo and behold it was an Emergency room.Mind you. My insurance only covers for copay:Urgent Care for $75ER for $500HOLY SHIT. I AIN\'T ABOUT TO COUGH UP $500SO... before bouncing. I told the ladies and they actually were fine. They told me that because I didn\'t know this facility was a stand alone ER with no wait time, that they would waive my fee of $500 and only charge me my Urgent Care copay. Omg. I couldn\'t believe. They made me sign a waiver saying that I couldn\'t afford a specific amount, pretty much my ER copay and that I can only pay this amount ie my Urgent Care copay. Thank God.While that was happening the nurse came out less than 5 minutes.I didn\'t realize how big the place was in the inside. Facility was SO clean. omg. From getting triaged by the nurse to being seen by the doctors and back to nurses....omg. I saw two doctors last night. They switch out doctors at 6pm and mind you I checked in at 5pm. The first doctor I saw was Dr. Singha (sp?) and he was sooooooooo patient with me. I explained my symptoms and he said everything I was describing was flu. I had some swollen lymh nodes and had some labs done, as well as get an IV through with saline to rehydrate me. I was getting chills that night, even with the blanket. My first doctor left and doctor #2 came in the check on me. Dr. Yusuf (sp?) checked my labs and put in a steroid to help ease the pain. Nurses came in and put in a little more saline and then took out my IV.Like I said, from the front desk, to the beside manner of the nurses to the doctors was amazing. Even Dr. Singha took the time to explain ER bills to me. Look I\'m still young and working full time but I can\'t always afford everything. I can\'t stress enough to always ask about how much things will cost. And my doctor was actually educated about ER bills. Most if not all aren\'t. And I work at a clinic. So I was appreciative about that.I left a 8pm feeling better. My severe migraine went away, assuming it was the steroid that helped. And I walked home. 3 whole hours and I didn\'t stay overnight. I feel better...hope I still do since I\'m writing this review the next day LOLI\'d honestly recommend this ER vs Hospital ER. This place is STILL an ER but with less wait time, and by that I mean less than 10-15 minutes vs at a hospital you\'d wait 5-7 HOURS. And you still get the full service of an ER.  Positive experience.',1),(79,'Marisa S.','/user_details?userid=rHhABVq5BPuKXXOGP1h68Q',5,'2017-12-30 00:00:00.000000','One of the best ER experiences you\'ll ever have in Houston. Clean, nice decor, quick, and they take great care of their patients.',1),(80,'Jorge A.','/user_details?userid=9SxUsXv5Dmkus09Kv8vMcw',5,'2017-12-29 00:00:00.000000','This place was terrific, the receptionist was super friendly, and the team that treated me was so lovely and respectful. I just referred my sister as she is under the weather as well. Need to get better, this is the place to come! Cheers, be well!',1),(81,'Kellie H.','/user_details?userid=f2Pdx0FNpGH_ndKFcy5kPw',5,'2017-12-27 00:00:00.000000','The 5 star rating is for how easy it was to get in, get seen and diagnosed, and get out with prescription in hand without having to spend a ton of money. I was called back to see the Dr before I was even done completing my paperwork. Everyone was very nice as well. If I get sick again, I wouldn\'t hesitate to go back here, but hopefully I won\'t need to.',1),(82,'Jennie J.','/user_details?userid=Vdj2e6ugO_iGA_Vq2jj_PQ',5,'2017-12-27 00:00:00.000000','Dr Edwards and the staff were wonderful! I went in with pretty severe back pain and it turns out I have scoliosis and no one caught it before now.',1),(83,'Marilyn W.','/user_details?userid=g152QC5IIDj__vnUdnSm8g',5,'2017-12-26 00:00:00.000000','Everyone was very nice and thorough.  This place is top notch. It\'s very clean and modern.  I felt very secure that i would be taken the best care of and I was.  Check-in was easy and I was seen in an expeditious manner.  Dr. Offer Faig ZVI ran the proper test to assure when I left i would be relieved of my symptoms, Nurse Rachel Reyes was very attentive and offered a warm blanket which really knocked off the chill I was experiencing, Bryan Dilli the Radiology Tech was very assuring and precise with his instructions and Ms. Brenda Roman at the front desk was gracious and handled my check-in and out very professionally and with little time spent doing so. Thank you to the team at this location.',1),(84,'Ashley W.','/user_details?userid=B32kdJGxBy3DOAXBfebs6A',5,'2017-12-26 00:00:00.000000','We saw Dr. Soli in the wee hours of Christmas morning. We were in and out within 45 min. From the lady at the front desk to our nurse to the doctor, everyone was so nice. I didn\'t feel like they were rushing us in or out although we were seen quickly. I would definitely come back if needed. It was very clean inside, the first thing they did when we were in our room was offer a warm blanket! The dr was thorough and quick. They even called the next day to check on my daughter.',1),(85,'Veronique J.','/user_details?userid=kLRcE3Xow8RZxyGOnkYDxQ',5,'2017-12-26 00:00:00.000000','First experience in a hospital in the US. Now I understand what they pay for. It has nothing to do with the hospital back home. Very fast service. I could get what I needed in less than an hour in and out. Staff \" courtois \".',1),(86,'Carolina F.','/user_details?userid=XnkE25zKqamEm41gK1UQsg',4,'2017-12-21 00:00:00.000000','Great emergent care experience - absolutely no wait, plenty of kind staff and prompt attention. My wait was so little I barely had time to fill out the intake paperwork. The nurses were even kind to me through all of my medical-related anxieties since I don\'t do well in these settings. The facility is well prepared with spacious private rooms and even imaging equipment that you wouldn\'t expect in a strip mall clinic. However, I did feel that they tried to do a hard sell on a pelvic scan to diagnose my stomach issues that were just due to a virus. I refused the radiology several times and in the end it wasn\'t necessary. The more the doctor prescribes and orders, the more they can charge, so be wary of overprescribing and requiring unnecessary tests. I was also annoyed by the receptionist who decided to stop us on our way out of the clinic to tell me the total for my visit. This seemed rude and out of touch to a person who had spent the last 5 hours vomiting bile. It was 11 pm and I was pretty gone between the medication and how sick I was feeling, so I told her to just put me on whatever payment plan is most affordable. She replied \"oh we\'ll bill you later but I wanted to let you know your total\".  Girl, no. Let me go home. My brain ain\'t even here.',1),(87,'David F.','/user_details?userid=UUs24bJzGPIqmhwEIDTc6A',5,'2017-12-20 00:00:00.000000','Fantastic staff with great quality service. My wait time was less than 30 seconds and they had me diagnosed with x-rays and I was on my way home in less than 45 minutes.',1),(88,'Legna M.','/user_details?userid=RiPEw7uOdLfNYexTRzpmmw',5,'2017-12-18 00:00:00.000000','I visited this location for first time and had such a great experience.  The place is very nice and conveniently located. All staff is very professional and  show care all time, the attention is personalized. Diana, the receptionist was very friendly and made check in/out very  simple. The nurses Qyun,  Agnes and Tony were very friendly, attentive, efficient  and professional. Dr  Boester was very nice and knowledgeable I liked he was present when I told my symptoms to the nurse so I do not have to repeat my story couple of times. He also took the time to explain  treatment, options and results.  This is a great ER; fast,  high tech equipment and personalized attention.  Definitely I highly recommend this ER. Thanks SignatureCare team',1),(89,'Alexandra W.','/user_details?userid=sxtVf1tpx5t-KNO_9P_d3Q',5,'2017-12-03 00:00:00.000000','I came here after a week of being sick. Went to 2 doctors and they said i had a \"common cold\".. it was not a common cold. Came to this ER and i was immediately hooked up to vital fluids. I ended up being incredibly malnourished and dehydrated. Very dangerous. I lost 10 lbs (im a 90 lb girl) so it was VERY dangerous for me. Im there for 5 hours and i already feel 80% back to normal. Love this place, will ALWAYS go here.',1),(90,'Krista C.','/user_details?userid=MEQOSkuH7Y4fBnCQ7wBjQw',5,'2017-11-08 00:00:00.000000','Went here yesterday for and they got me back into a room immediately with iv fluids and a warm blanket. I had very nice nurses / doctors. I was very impressed with this place!  Clean and quick. Would definitely come back!',1),(91,'Kaeli B.','/user_details?userid=qwbV_e58uuagXJBcL2Fiig',5,'2017-10-30 00:00:00.000000','Overall great experience! No wait time and all staff was extremely polite and welcoming. Would definitely recommend this center to a friend!',1),(92,'MadJo A.','/user_details?userid=evhICk02k6nGz2AIPSTGmQ',5,'2017-10-18 00:00:00.000000','Mercy assisted me at the front desk, every nurse & doctor was so beautifully nice. I feel way better after going here!',1),(93,'Anne L.','/user_details?userid=zgpqfUb0fph8jv4-i0-cMQ',5,'2017-09-28 00:00:00.000000','We came in as our daughter had a very nasty stomach bug. We received excellent care! Everyone was kind, informative, empathic and efficient! Our daughter felt better quickly and so did we! Thanks to the staff for such warm and diligent, professional care.',1),(94,'Dania K.','/user_details?userid=Ml3I2U5NOyjDpLPf7Fc_UQ',5,'2017-09-25 00:00:00.000000','Dr. Boester was very kind and helpful in assisting my hurt arm. He made the whole process easier, with the whole staff being very accommodating and very hospitable. I would recommend a visit here, great experience!',1),(95,'Ann B.','/user_details?userid=vx4dErQLePeFqBOQ4Dn_sA',5,'2017-09-17 00:00:00.000000','Thank God for this emergency care center - it saved me hours from sitting in a hospital emergency room, they had incredible, professional, knowledgeable staff and it is a one stop shop (had an onsite lab, cat scan machine, IV\'s, etc.).....I highly recommend this to anyone who need medical attention!!!',1),(96,'Adriana S.','/user_details?userid=ZPSLbeuRjF96yNACfNqI5A',5,'2017-09-13 00:00:00.000000','Let me start off by saying from start to finish they made me feel comfortable and welcomed! I am currently switching jobs so I do not have insurance, which as some may know can make you fearful of going to certain hospitals or clinics due to overpricing and rudeness. Everyone I came in contact with treated me with care. Dr. Boester came in an informed me I had my first case of strep throat. For those who don\'t know strep feels like you are swallowing a bag of nails. He walked me through different treatment options and his team made sure I had everything I needed. I would refer anyone! Thank you all for everything.',1),(97,'Monica L.','/user_details?userid=wTnjyQivsgNVx02uxv0gZA',5,'2017-09-09 00:00:00.000000','Had an amazing experience. From the front desk checkin with Marcy to great doctor and nurses. I was very well taken care of.',1),(98,'G M.','/user_details?userid=TCstQV3hFJIcst38JDrv2w',5,'2017-08-21 00:00:00.000000','Wow--what a positive experience for someone who\'s never been to an ER or hospital.  I trusted this group from the time I walked in the door.  Very professional, very compassionate, very knowledgible and honest.  Definitely recommend...',1),(99,'Chi N.','/user_details?userid=jrPck-bQOlWNnXqW8iNrvQ',3,'2017-08-06 00:00:00.000000','This is an Emergency Room. I made the mistake thinking it was an urgent care.  Urgent care you pay less, your copay is also less. I came here with a light cold . Ended up with a 100 copay instead of my 35 copay at urgent care. And my insurance was billed an additional $1000 for 5 minutes of care.  Just be aware you will get charged ER rate at this facility. I also did not ask for my copay in advance, nor did they tell me in advance.  So it\'s my fault.. but I feel like they should tell you the copay in advance if you are utilizing insurance.',1),(100,'J S.','/user_details?userid=54bSgz-HGasM5eDHWZ_ZBQ',5,'2017-08-04 00:00:00.000000','Ok so I came in on 8/2/17 with severe chest pain radiating to my back! I thought I was going to glory y\'all! I am in the medical field, so it was imperative for me to find a place that had a really good staff and was clean! My main staff was: DR. CHEN  JERRY  D.O.; Nurse: Noyes,Laura; Front Desk: Hoang,Mercy, but I also had a wonderful x-ray and ultrasound technician as well! Everyone was wonderful! I didn\'t have a long wait, I came in and they immediately got me to the back, everyone explained everything they were doing, and made me feel very welcomed! Dr. Chen was super thorough with testing and diagnosed my issue. My nurse Laura was so patient and kind, she even called to check on me after my surgery! Mercy knows the insurance and was available to answer all my questions as well as able to check me in and out expeditiously! My X-ray and ultrasound techs were super thorough and very personable. I was extremely impressed with their services! They even ordered me food while I waited after my diagnosis in observation throughout the day! I am so thankful I found them, and I\'m relieved my issue was resolved, I HIGHLY recommend this place!',1),(101,'Brit M.','/user_details?userid=EJXUHkai6FLEIBTNpLx7BA',4,'2017-07-31 00:00:00.000000','I\'ve only been to the ER once in my entire life,  and the one time I went I chose SignatureCare.  This was the cleanest, most friendly, and attentative ER! They quickly tried to find out what was wrong with me and tried their best to make sure I was comfortable. Well, they could not figure out what was wrong with me and ended up transferring me to a different ER which was a DEATH TRAP.I really wish they could have diagnosed me correctly and treated me at SignatureCare instead of transferring me to another ER.',1),(102,'Abigail P.','/user_details?userid=QtZfSLZwokD0EqtSiY2kIg',4,'2017-07-18 00:00:00.000000','I struggled with the billing system here but when I expressed my frustration I received immediate assistance from customer services that was considerate and helpful. My problem was resolved quickly and I am genuinely grateful for the assistance.',1),(103,'Tanya M.','/user_details?userid=tUfXznw-HHhimBOwZY3JqA',5,'2017-06-19 00:00:00.000000','I have been to this location twice now for two entirely different issues and both times it was exactly what I needed.  Got in quick, didn\'t have a million forms to fill out, extremely knowledgeable and helpful staff from Mercy at intake, Jeff the nurse, to Dr. Edozie.  I have gone to other places (Walgreens Clinic and MedSpring Urgent Care) and my experience is always terrible! If it isn\'t a long wait, then the staff is plain terrible, and with my insurance I don\'t think I pay much more, if any, to go to this ER clinic over those.',1),(104,'Rob C.','/user_details?userid=8RAlqWHqMEvyHq-aBEZjJw',5,'2017-06-18 00:00:00.000000','Clean, friendly, and thorough.  I checked in and walked out in under an hour.  Great place and will use again (if needed).',1),(105,'K M.','/user_details?userid=QRQZdnbL6VKlewsxDB7S9A',5,'2017-06-18 00:00:00.000000','I saw a nurse and a doctor before I could even finish the paperwork.  It might have been the timing, but even early on a Saturday night, that felt impressive to me.I came in for a possible concussion, and they were efficient and helpful.  They didn\'t order unnecessary tests and explained everything to me throughout.I can\'t speak to how they would handle a major emergency since it turned out to be a fairly minor head injury, but they were polite, efficient, and very helpful.',1),(106,'Weili H.','/user_details?userid=DYtxxK7C2tv6MZRaLZxM7w',5,'2017-06-08 00:00:00.000000','When they first opened I was skeptical of an ER taking up retail space that could be used for other stores I might be more inclined to shop in, but when my daughter burned up in the middle of the night with a 104 fever for the 4th night in a row, they were the only place open and available. There was no wait and the receptionist, nurses, and doctor were all super friendly and helpful. The facility was very clean and well-kept. I am not sure how much that night will have cost, but the peace of mind knowing what\'s going on with my 2-year-old in the middle of the night was worth it.',1),(107,'Kathleen C.','/user_details?userid=IFcuGSPgpQJHGsvJC_YJGA',5,'2017-06-07 00:00:00.000000','I suspected my asthma was acting up so I decided it was time for a visit to an urgent care clinic. The clinic closest to me, at Westheimer and Montrose, had all five star reviews, so I chose that one. It is clean and attractive and new, but the best of all was that each staff member was kind and had time to spend with me. Within two hours, they had done the diagnostics (x-ray, EKG, blood work and had given me the treatments I needed.) They faxed some prescriptions to a 24-hour Walgreens, which is across the street from the clinic so I picked up those new meds at 2:30 in the morning, 10 mins after discharge. And needed another visit...again, fast and compassionate care.',1),(108,'Jessica S.','/user_details?userid=X5t9NgjQwA2IxSjEDOjHVw',5,'2017-06-04 00:00:00.000000','I came in on Memorial Day with some really bad poison ivy covering my entire back, legs, arms, neck... It was very unpleasant. I was taken care of very quickly and given the required medications. The entire experience was really easy and quick and I\'m feeling much better now. It\'s also really pretty inside. My roommate and I were pleasantly surprised with how the inside looked.',1),(109,'Shauna R.','/user_details?userid=bwCqy7_FqSkAP26JNSo1pw',5,'2017-05-31 00:00:00.000000','Having new episodes of migraines and after our local ER was extremely busy and I had a bad experience a few days before but was in so much pain decided to visit said ER again against my better judgement...the angel of a secretary told us about SignatureCare ER and said they would take great care of us...SHE WAS ABSOLUTELY RIGHT! Dr Faig sat and spoke with me and my husband and explained EVERYTHING and actually included me in the plan of care! Our nurse, Christine was absolutely amazing and nothing but caring, as well as all of the other staff! Keaire at the front desk got us right back and was very pleasant even though I was probably not as I was in a lot of pain (that always helps!). We were in and out in 3 hours which included pain meds and scans. Dr Faig even offered to keep me over night and have neuro see my in the morning.',1),(110,'Pup T.','/user_details?userid=HZSdoUBdLgRF4AACgzQ6Gw',5,'2017-05-30 00:00:00.000000','I\'ll start by saying I normally don\'t write reviews. But they were so nice and professional the entire time I felt this review is needed. I will try to be as descriptive as I can be with this review.I walked in on Memorial Day. I could Bailey talk, had difficulty breathing and swallowing. The receptionist was very curious and very patient with me. She was able to answer most of my questions with me limiting myself to gestures. Had to speak a few times but that was because I couldn\'t figure out how to gesture my question properly. Once I filled out the forms, she instructed us to please sit down and wait a short period, less than 7 minutes, until I would be called back.-waiting area description-The waiting area was very nice, sadly i have been in a lot of ER\'s before so I am used to really old layouts or just uncomfortable seating. The seats were very comfortable for the short time I was waiting. The furniture was modern and in a practical layout; it showed, to me, that they care about their patients even before they are seen.-end-Once a I was brought back all the nurses that were working greeted me. Granted it was just a simple welcome in, we will be right with you, but it meant a lot to even get that.-room description-The room I was placed in was spacious and very nice. It had a large TV in case I was going to be there for awhile a nice comfortable hospital bed, like one of the ones long term patients get and three chairs in case I had people with me. Which was nice because it gave my partner somewhere to sit while I was back in the room.-end-I was in the room not even 5 minutes before two nurses walked in and greeted me. They started asking the general questions you\'re asked upon first arrival to a ER or UC center. My partner explained I was having difficulty speaking. I nodded and used a very soft whisper when needed to answer the questions. This lasted maybe 5-6 minutes and then they asked if I would like a warm blanket or to have the tv turned on. They said the doctor would be in shortly.This is the most dreaded waiting time for anyone in a ER or UC center. Because there is no telling how long the way will be. I can happily report that my wait to see the doctor was maybe a little longer than 5 minutes, but I\'m guessing at time because I didn\'t check a clock during that time.The doctor came into the room and talked to me for a little bit and asked for me to open my mouth so he could see my throat. Within a few seconds he said, wow you have a very server case of Strep Throat. He then checked my partner due to our close proximity all the time and he said my partner was displaying easy warning sings of a case but currently only shows the standard \"red inflammation\" look. He suggested that my partner get the test as well. He then swapped us both and said he would come back in once the test results were completed. Which this starts the next anxious waiting game. Because lab results can take forever sometimes. Well 3 minutes later he walked in and confirmed what he thought I had and informed my partner that he tested negative. He said that as his personal recommendation my partner start a low dose treated, but as his professional opinion no treatment was needed and it was my partners choice. Then looked and me and said apologized and said I don\'t have a choice.He explained what I was going to be getting and then he did ask if I would like a fluid bag. Because while examining my mouth he said I looked dehydrated, which I probably was since I could t drink anything for about 7 hours by this point.I said yes and he left to get the medications needed for treatment. This is when a third nurse entered the room. I will admit I had a slight freak out because the only thing I thought was oh great another nurse, will I have to explain myself again?She greeted us both and asked who was who. She handed my partner his 1 pill. Then looked at me and asked if I was ready for my shots. I was envious of not being able to take the pills but I could t protest dude to the fact I couldn\'t swallow anything.She gave me the shots and hooked up the IV bag. Then she said she would be back in 30 minutes to check on me. She offered a warm blanket and asked if we\'d like the TV turned on.We thanked her and said no thank you. She left and the 30 minutes did what ER UC minutes do for patients, they drug on like normal. But true to her word she came back within 30 minutes. She gave me my last shot and explained the other medications the doctor has prescribed to me. She then asked if I had any questions and when I said no she said you\'re free to go. Then showed us our. On our way out the other staff members said they hope that I get better very quickly and that I don\'t have to come back anytime soon. All in all, this was by far one of the best visions I\'ve had to a ER UC. They were very polite and it felt like they were tending to my every need.I would 100% recommend them to anyone.',1),(111,'Andrea F.','/user_details?userid=lKTb5VVP5QE-QChFzps8og',5,'2017-05-30 00:00:00.000000','I was visiting Houston from Austin for a short overnight stay. I woke up in the middle of the night with a headache and while rubbing my head- found a tick from what I assume was a recent camping trip. After freaking out, I called this clinic. They were helpful on the phone and I decided to head straight there. I was greeted by Sindy, who was very helpful and then taken back right away by RN- Christine. She performed an assessment and vitals right away and was very pleasant and knowledgeable. Dr. Zhen was just as pleasant and knowledgeable as well, and performed a thorough assessment. They treated me and gave me info on tick bites and helped ease my anxiety. Check out again with Sindy was very pleasant and she was very helpful and accommodating. I could not have asked for a better experience, and I am so glad that I chose this emergency clinic to go to and would highly recommend it to everyone!!',1),(112,'Dorian G.','/user_details?userid=88eABOrtvhDO0oZNprz9mQ',5,'2017-05-30 00:00:00.000000','We have now been here twice in as many months and had very good experiences. Our most recent visit was over a holiday weekend when I was afraid that the medical center ERs would be flooded with patients. We were back in a room within 5 minutes of entering the facility and received great care from our nurse as well as Dr. Faig. Unfortunately we did need to be transported to a hospital but the doctor had called ahead and we were already admitted and went straight to the room upon arrival to the hospital. No waiting in another ER cue or waiting to find a place to go. We will definitely return in an emergency in the future.',1),(113,'C M.','/user_details?userid=9wbwguff2o9WaqG9Gz4KjA',5,'2017-05-29 00:00:00.000000','Professional, efficient, caring- the entire staff from receptionist to doctor.  Fully equipped with X-ray, ctscan, blood ab, And I appreciated the warm blanket too!  I work in a hospital and  expected the worst on a holiday weekend and got the best.',1),(114,'Jayne N.','/user_details?userid=7tuxFFqjEPCqZbfp05h3Cg',5,'2017-05-27 00:00:00.000000','Went to this emergency center today due to numbness in legs and pain in my right side ovary. The process from check-in until release was so flawless. I have never been to a medical facility where so many of the medical staff were so friendly and attentive. They were all wonderful, Particularly Dr. Adam Boester, whose calm demeanor tremendously eased my panic mode. Dr. Boester thoroughly and patiently addressed each one of my concerns. (And there were many!) My exams were completed with care and diligence. Although it wasn\'t something serious, I thought it was and I\'m glad I had somewhere to go to get all of the right tests to ease my mind. Thank you to all the kind staff and to Dr. Boester who went above and beyond to make sure I was comfortable, but most of all took the time to listen to me, which is what every doctor should aim to do more of, with regard to their patients. I\'m so glad I decided to go to this emergency room. I had the most compassionate and thorough diagnosis and treatment than I have ever had at any doctors office.',1),(115,'Nicole J.','/user_details?userid=eDtQJVBD7GK15gFapQl5sw',5,'2017-05-12 00:00:00.000000','Awesome care from these amazing doctors. My 4 year old was extremely sick and they were so amazing with him! I will definitely be going back for my next emergency!',1),(116,'JD C.','/user_details?userid=_Hy-0kg4kTUr4pgP1v08lg',5,'2017-04-27 00:00:00.000000','So basically one Sunday my back utterly seized up, basically paralyzing me for a day, which was all sort of not fun. Luckily, when I was mobile (though in severe pain) again, I went to SignatureCare. Dr. Nitin, the nurses, and staff were all super friendly, and I got out of there with three shiny new presciptions after a CAT scan, a shot, and barely any wait time. Hell, I got a warm blanket and a coke. A+ would visit again (though hopefully not too soon!)',1),(117,'Ariann L.','/user_details?userid=oknExX4aTncndkw152xZhg',5,'2017-04-27 00:00:00.000000','I burned myself in the dumbest way and they were incredibly helpful! Mercy was so gracious and understanding ! She immediately put me at ease. I was in and out in an hour! Thank you all!',1),(118,'Hannah M.','/user_details?userid=hHyMdOY0B6_zxHcVL26_zA',5,'2017-04-22 00:00:00.000000','Dr. Braun and Dr. Hoang are great! We had a problem and they fixed it! In a sensitive area they were very nice very understanding, professional, didn\'t cost an arm and a leg (literally and figuratively). Absolutely recommend for the more intimate episodes.',1),(119,'Naomi T.','/user_details?userid=pskFkV55LedqmWnDvZvWEQ',5,'2017-04-13 00:00:00.000000','Honestly the best ER I\'ve been to. I cut myself on a mandolin and was in a lot of pain and bleeding fast. The cut was relatively big and the skin cane all the way off so there was no way to stitch it back on. They were very patient and friendly and kept me informed throughout the visit. Dr. Garcia and the rest of the team were very reassuring and positive. I hate going to the doctor for anything. If I am ever in need for urgent care in the Houston area I will definitely be returning to them. P.S. they gave me a bag full of \"merchandise\" like some koozies and a teddy bear as well as bandages to use for my thumb.',1),(120,'Amanda P.','/user_details?userid=Yv4sBa5BPYVm3fwa5L_tpQ',5,'2017-03-28 00:00:00.000000','I was seen very quickly. Alyssa was so nice at the front desk and got me to the back fast. The nurse Jeff took good care of me from there. The facility is really nice and clean. I was offered beverages and a warm blanket while waiting on test results. Dr. Faig explained everything to me and got medication on board quickly so I\'d feel better faster. All in all, great staff... nice facility, I\'d definitely recommend being treated there!',1),(121,'Erika P.','/user_details?userid=JlSnDqKi8N6BjtZ9_W0YAg',5,'2017-03-19 00:00:00.000000','Our 5 year old hurt her neck so we came to SignatureCare emergency center Montrose. They got us in a room and made our daughter, Kennedy feel safe and assured her not to be scared and that everything was going to be ok. They helped calm her down, which made the whole process of exams and xrays/ct\'s that much easier. As parents, they were very precise, detailed, professional, and very kind. They covered all the details very well and answered our questions thoroughly. I was very impressed by each staff member and left knowing if our family ever needed ER care, we would return here.',1),(122,'Martin A.','/user_details?userid=PZPTzmLbzQdl1a399SC0jQ',1,'2017-03-06 00:00:00.000000','Very deceiving. I was feeling sick. I came in and got a flu shot and they took blood. I was told at the front my insurance was accepted then I got. $5000 bill. For being in there 45 minutes for a flu shot and blood they took for no reason probably knowing I had the flu already. This is why I asked prior. I asked if they accepted my insurance they said yes. But they accepted MY OUT OF NETWORK INSURANCE,   So yes they did accept not just IN-NETWORK. She knew what I was really asking,because I called another care center today and they said specifically yes we accept your insurance but you are out of network after giving information . So this particular location will let you get ripped off. Personally I will not return. And they can charge this off until I\'m 80. MAKE SURE YOU TSLK TO YOUR INSURANCE COMPANY BEFORE GOING HERE DO NOT LISTEN TO THEM. That is all.',1),(123,'Angel M.','/user_details?userid=eipsrfA8RynDWCtdeXBufw',5,'2017-03-05 00:00:00.000000','The greeter Terra was on point! Handed her my license and insurance card filled out a small half sheet of paper. And within 5 min I was already in a room! Shelli the nurse made me feel at home 3 min tops I was getting my blood pressure checked and temperature. Dr Craig came and diagnosed and within 10 min procedure started. It was very painful but he had a lot of patience. The total visit was over within 45 min!!!!!! Wow amazed!!!!',1),(124,'Donna S.','/user_details?userid=pUVW7SNgT0DQ8nw12ytogw',5,'2017-02-27 00:00:00.000000','Happy to take care of my wife\'s complaint tonight, in and out, complete and thorough.  Thanks to Rene at the welcoming front desk, for the comfortable room and respectful treatment!',1),(125,'Monique R.','/user_details?userid=06PgmB0lClPtNTR7THxt7g',5,'2017-02-23 00:00:00.000000','I love it here. They took me in immediately, were extremely attentive and detailed and in the best moods even though it was the night shift. I came here before for my boyfriend and they were exactly the same. I prefer this place over the hospital any and every day.',1),(126,'Erik A.','/user_details?userid=ig3AUeGW36wZDLt6r4JHFQ',5,'2017-02-16 00:00:00.000000','I visit the Montrose neighborhood often and I drive or walk by. When I woke up early one morning ill with a sore throat and congestion, the first place I thought to go was Signature Care. Being open 24/7 was the appeal as most other urgent care centers in the area don\'t open until 8/9 am. When I entered the lobby, I was greeted by the staff and nurses who guided me through the forms that I needed to fill out and information I need to provide by my insurance. They were kind and very helpful. Within 15 minutes of arriving, I was seen by Dr. Pradeep Golla. We talked through my symptoms and recent history. He discussed with me the illnesses that had been passing through Houston this season. He suggested running a few tests to ensure I receive the proper treatment. He also discussed the details to the treatment to ensure I understood. I was in and out of the clinic within an hour. They even faxed my prescriptions to a nearby Walgreens where I was able to pick them up almost immediately. Overall, I had a great visit. I would return for future urgent care. I would recommend to friends and family.',1),(127,'Samantha D.','/user_details?userid=e8b2BOc5o1AFQEG3uvTf3A',5,'2017-02-11 00:00:00.000000','Excellent Service and care.  Pleasant staff including Cindy and our nurse. Would happily return if I need treatment again!',1),(128,'Alie D.','/user_details?userid=qUXfWRWeJrhKDKurCfz9KA',5,'2017-02-08 00:00:00.000000','Quick and easy. The receptionist, Tory was very helpful. All of the nurses and doctors we\'re very friendly. Beautiful and clean facility, would definitely recommend!',1),(129,'Kelli G.','/user_details?userid=pT9BbuPry4liSu0LIn4BeA',1,'2017-02-06 00:00:00.000000','I took my husband to SignatureCare Montrose while he was having a severe bout of billiary colic which he has had in the past. During these attacks my husband feels intense abdominal pain and vomits profusely. When we were there on the first of February, the staff worked quickly to relieve his pain and performed an ultrasound diagnosing gallstones. He had another attack on the third of February so we went back to SignatureCare. Dr. Torre was appalling. He came in and told my husband he had billiary colic because of what he had eaten that day. And that was it. I watched my husband writhe in severe pain and vomit just as all of his other attacks had gone. And nothing happened. He was not given pain or sufficient nausea treatment to make him comfortable. He was left writhing in pain with no additional ultrasound even though this was his second attack in three days. I complained to the nurse and the doctor returned to berate my husband further for not following an ultra-low-fat diet. My husband received one shot of phenergan which was insufficient to relieve his pain or nausea. We were pushed out the door and we returned home where my husband withstood the pain for a few more hours. My husband still does not feel good but is dealing with the pain until he can have his gallbladder surgically removed. We cannot, will not go back to this clinic to be berated again while no medical steps are taken to ascertain whether his gallbladder is inflamed and needs to come out immediately.',1),(130,'Tori S.','/user_details?userid=lMNX517qIEUugzJNMCTcPA',5,'2017-02-03 00:00:00.000000','Extremely friendly staff! Very caring and made you feel comfortable! Clean facility! Dr Torre was amazing and Mercy at the front desk was awesome!',1),(131,'Anna K.','/user_details?userid=LbEwuy7LX8p_t4VA1Od6dw',5,'2017-01-31 00:00:00.000000','Thank you to this ER center for providing exceptional, quick and caring help during a very stressful and scary situation. I came in on a Sunday evening after struggling with post-sinus breathing issues that turned into bronchitis. Per the other reviews, no wait, patient and caring staff, and discussing recommendations and options made all of the difference.Due to the severity of my issues, I had to stay overnight two nights which was preferable over going to a hospital. I met several of the doctors and nurses and everyone was beyond helpful and really cared about patients well-being and progress. I was most impressed by Agnes, who took special care to look into any discomfort or concern I showed. She also provided very generous amenities that were so helpful for a longer stay.The radiologist was also extremely kind and professional and was very patient with me acting like a baby.I would highly recommend this center to anyone who is dealing with a minor emergency or a larger issue, as they have the capability to do a lot there. I agree with the other reviewers that everything is very clean, organized and professional. My discharge papers were very detailed and well-explained. I also loved my goodie bag and bear.As great as it is to be home and feeling well, this was the most positive experience that really exceeded expectations.',1),(132,'Colbie L.','/user_details?userid=g_Ejbw4uE-q6MXrt90NUDA',5,'2017-01-30 00:00:00.000000','Highly recommend this place for anything you might need!  They are 24-hours, and plenty of easy parking options.  I came here because I felt faint and exhausted form overworking myself, and they were able to talk me through what was going on, and were very attentive and kept asking how I was doing.  There was no wait, and from the moment I walked in, everyone was in so friendly and in a very happy mood.  And when you\'re not feeling well, positive people definitely help turn around the situation.',1),(133,'Mollie W.','/user_details?userid=hb018V-j49jz5SoEAAEsiw',5,'2017-01-25 00:00:00.000000','It sucks going to the emergency room, but they made it as comfortable as possible! I went in with a concern, they were so kind and friendly.  The place was immaculately clean and I was in and out- no wait! Hopefully I don\'t have to visit an ER again, but if I do- I will definitely consider them!',1),(134,'Caitlin S.','/user_details?userid=WFVOKfsWyKd-gbHnaisOJw',5,'2017-01-23 00:00:00.000000','Very clean, very fast, very efficient and very kind! Came here with a broken wrist, they had a full house but I didn\'t have to wait and was given excellent care. Highly recommend if you ( unfortunately) need the ER!',1),(135,'Noah R.','/user_details?userid=tEwXIGM6bjg9AfAwvhPTiA',4,'2017-01-23 00:00:00.000000','There was no wait when I arrived at 11 pm. Everyone on staff was very polite. The facilities were more hotel like than medical office. I got a cat scan that was painless. I\'m afraid to see what my insurance doesn\'t cover!',1),(136,'Austin A.','/user_details?userid=CLzUaOHHPYzHRhPfkYM-xw',5,'2017-01-20 00:00:00.000000','Great service.  Very friendly staff that knows what they are doing. I highly suggest this ER if you are in need and in the area. They constantly asked how I was feeling and if I needed anything. The place is very clean and well kept.   I would recommend this place.',1),(137,'Paula M.','/user_details?userid=k4tAmeBPyFJcsoFWsvFQBQ',5,'2016-12-29 00:00:00.000000','I had a great experience at this urgent care. The receptionist was very friendly and I was seen by the doctor soon after I arrived. Everyone who helped me was very pleasant, including the nurse, doctor and the X-ray technician. The doctor explained everything thoroughly and had me out the door with prescriptions in around 25 minutes. I would definitely recommend this location to everyone.',1),(138,'Jill A.','/user_details?userid=yyguCDNB-PsSWUDyadKyDQ',5,'2016-12-15 00:00:00.000000','This place was amazing from our initial phone call til our departure. The staff was fast, walked rigjt in and got to see the Dr within 10 minutes. Dr Grinblatas was soooo pleasant, informative the absolute best. If he ever goes into practice I would be his first patient.  This place was the best.',1),(139,'Travis J.','/user_details?userid=20U33jbAybIy5SaB93W4Ow',1,'2016-12-11 00:00:00.000000','GOT AN EXTRA $1300 DOLLARS LYING AROUND? OF COURSE YOU DO!!!BUT DOES BURNING IT IN THE GARBAGE SOUND LIKE IT\'S WORTH THE HASSLE?! OF COURSE NOT!!!Who has the time to stress about THE FASTEST way to be swindled out of cash when THIS place is open? Like many of you, I\'m without costly health insurance, and not because of the price-tag, but because it\'s SO MUCH FUN!I\'ve had chronic cough & flu symptoms for few weeks, and even after finishing a round of antibiotics, the symptoms still haven\'t gone away. In fact, they\'re bad enough that I tried to have them treated at 4am on a Saturday, because WHAT ELSE WOULD I BE DOING?Inside the attractive facilities, an EXTREMELY friendly staff was prompt and courteous (especially the sleeping security guard...he had an intensely calming effect), but when I didn\'t have $1300 for x-rays I was suddenly informed that this was \"no longer an emergency,\" and there was NOTHING they could do. Given the astonishing medical breakthroughs in recent years (for instance cataract-melting steroids, a re-engineered polio virus that treats cancer, and the world\'s FIRST SUCCESSFUL PENIS TRANSPLANT), you can imagine my surprise! But as I said (and in case you forgot), the helpful, attentive staff and I were LITERALLY OUT OF OPTIONS.Since I was prepared to spend up to $500 or say even $750 dollars on tests or treatment (on the off-chance I\'d receive say, oh I don\'t know, some free baby-aspirin, a brochure on Christian Science, or maybe even some lukewarm tap water), I asked if there were any possible alternatives. The smiling associate went to check and while waiting I overhead some nurses openly discussing how much more money they made on the weekends. This got me thinking: GEE, I REALLY SHOULD HAVE MORE MONEY THAN I DO. SHOULDA BEEN A NURSE I GUESS!!!Sadly, all I could do was leave kicking myself, processing the harsh reality that not having thirteen individual one hundred dollar bills for ghost pictures of my insides wasn\'t just my fault, it was MY MISTAKE.So what\'s the \"take-away\" here? Well for starters, DON\'T BE POOR. Basically that. Requiring \"urgent care\" or \"medical attention\" isn\'t for you to decide, especially because it doesn\'t have anything to do with your actual health. And secondly, if you ARE poor (over even upper middle-class!) then there\'s probably nothing physically wrong with you. And finally, spend less time (basically none) when you\'re sick trying to do anything about it. You\'d be wise to focus what little energy and strength you DO actually have on finding, getting, and having more money. Because at SignatureCare Emergency Center, being alive isn\'t just not affordable, it\'s inconvenient, and we can\'t expect them to lie to us for free. HAPPY HOLIDAYS!',1),(140,'JDE E.','/user_details?userid=65VN5BhFWkAtJ8RjxCx3Lg',5,'2016-12-08 00:00:00.000000','I have never had a better experience with a 24 Hour Emergency Care center. I didn\'t even get time to finish my paperwork before they brought me in to see the doctor. Two nurses attended to me to check my vitals which took all of five minutes. The doctor came in after that. He was very caring and I was in and out, diagnosed in less than 20 minutes. This was at midnight and they even gave me the first dose of my antibiotic so I didn\'t have to go to the pharmacy and could go home and sleep. I would recommend this place to anyone with minor or major care needs.',1),(141,'Whitney A.','/user_details?userid=0SFnYg_x8Co7SYtiR29G5Q',5,'2016-11-13 00:00:00.000000','I needed an urgent care asap when i broke out in hives due to stress. I walked in and was greeted so politely. Before I could even finish filling out the paperwork I was brought to the back to be seen by the doctor. They were very nice and quick with trying to figure out what was going on. They provided me with a couple prescriptions and a steroid shot to stop the intense itching. If I ever need to go somewhere for an emergency I will definitely be coming back here. Great staff!',1),(142,'Cassie B.','/user_details?userid=0V5Ocgkk6H5sL-awNqtyrg',5,'2016-10-28 00:00:00.000000','This place was great. I was greater by Angela, who was so nice and eased my anxiety about being there. I waited no longer than 2 minutes before I was taken back to a room. Both nurses that I interacted with were calming, nice and funny. I never felt scared or anxious while in there. Dr. Asem was thorough and direct, which I appreciated. This will be my go-to if I ever need an emergency center again.',1),(143,'Sld D.','/user_details?userid=ouVFY0w2St_0lk8hddnhzg',5,'2016-10-21 00:00:00.000000','I came here after I picked up a nasty bug while traveling in Central America. Here\'s a bit about my experience.1. No wait. I was taken back to a room almost immediately in a wheelchair. They let my friend fill out my paperwork for me because I was too sick to.2. The nurses are some of the friendliest ever3. They medicated me promptly, and I started to improve right away4. Their doctor\'s bedside manner was impeccable5. After a minor billing issue, I was able to speak with a friendly and courteous manager who addressed the issue and fixed it immediatelyOverall, I am quite impressed with the professionalism and friendly nature of the staff here. If you are looking for a freestanding ER in the Inner Loop, I can recommend Signature Care.',1),(144,'Andrew L.','/user_details?userid=WZHrLF0Rd7OpxnSiDVbxmQ',5,'2016-10-13 00:00:00.000000','I may have ruptured my achilles playing basketball and came here, what a great facility! Very fast, got an X-ray, out the door in no time. Kinda bummed about my foot, but in regards to getting care quickly, I\'m happy I came and would come back in a heartbeat. Thanks guys!!',1),(145,'Karen L.','/user_details?userid=eDsDlRnhovWzu8C-OmoUSw',5,'2016-10-08 00:00:00.000000','My first time to ever visit one if these kinds of urgent care facilities.  I was impressed with the very friendly, efficient and professional staff as well as with the cleanliness of the facility.  The professionalism of Dr. Kotey, nurse Delena Marie Carlson, and receptionist Alyssa Penunuri was exceptional.  I highly recommend to anyone that finds themselves in need of fast minor medical care!',1),(146,'Edye C.','/user_details?userid=Gk3Yq-CaCKiGhrHfemF9DA',5,'2016-09-04 00:00:00.000000','We\'re from out of town for a football game, husband has allergic reaction to something,  face, lips swollen, hives and they treated him like a king, IV steroids, Benadryl, Epi pen and within minutes looking so much better.  Scary there for a little bit, thought might have to intubation him.  This place is not 5 stars, it is 500 stars by far!!!! So nice and helpful and professional and courteous, cannot say enough about this place and its staff!! We were at this place from 7-3 and do u know they even ordered us lunch AND paid for it!! I am truly speechless at the professionalism, courtesy, care and concern that every single staff member showed us when we were there.  I wish we lived here as I would spread the word about this place forever!!! Thank you so very Very much for taking such great care if my husband, forever grateful!!',1),(147,'Darryl H.','/user_details?userid=9jFxG-rghorQJwycD01H5g',4,'2016-08-30 00:00:00.000000','My wife missed a step and went down hard on her knees.  Went to the Montrose center and got right in, wheelchair from car to room.  Had doctor exam within 45 minutes and then x-rays.Round trip of about 2.5 hours and everything was OK.  Doc and staff very helpful and considerate.  I\'m sure there will be a next time and we will go back there.  Tory at the front desk was great.',1),(148,'Samantha H.','/user_details?userid=fZ7KfGeSPI6VfJtKD-2XHg',5,'2016-08-25 00:00:00.000000','Extremely impressed with my visit!!! Everyone starting from the front desk had great service. Wonderful people & I\'ll definitely recommend. Thank you DR. GRINBLATAS IORAM M.D., Nurse: Reed, Jesse, Xray tech & even the lovely Front Desk: Victoria Luna from SignatureCare Emergency.',1),(149,'Oscar S.','/user_details?userid=Ll_iqIablIUI456VUVCW2Q',5,'2016-08-24 00:00:00.000000','I was seen within 5 minutes. Very courteous and knowledgable staff. Dr. Chen has great bedside manner. Already my bronchitis is going away with the shot I was given!',1),(150,'Rita C.','/user_details?userid=x04aKnOJ93Ikc1Zi5h5fNQ',5,'2016-08-23 00:00:00.000000','I fell and did not know if I had sprained or broken my ankle. A vulnerable state when you\'re not from Houston. I trusted I would find an amazing place and be treated well. I found the reviews here very helpful. The facility seemed like it was out of the future. It was very clean and everyone was super nice. I was seen quickly and cared for well. I have not received any billing details yet but I trust that will all be reasonable and my insurance will cover the bulk. Thank You All. Your kindness was beautiful.',1),(151,'Rosendo C.','/user_details?userid=rEkcL5pQ7bmMh4rbLhI2kQ',5,'2016-08-20 00:00:00.000000','Virtually no wait time! The nurses were awesome. I got to watch tv in the room while I was attended to.',1),(152,'Ekin E.','/user_details?userid=IqTGeotskZyh6XH7ovAaAw',5,'2016-08-20 00:00:00.000000','I was very sick last night with the symptoms of a severe cold (turns out it\'s bronchitis), when I needed to go to Signature Care. My overall experience was great. The facility is clean, modern and the people were extremely helpful. There was no wait time to be admitted and the doctor and two nurses were with me right away. Dr. Boester gave me a realistic outlook about how long it will take for me to get better, which is what I expect from a good doctor. He was also friendly, and answered my questions in the best way possible. Marie, the nurse, was nice and careful through the treatment (getting a shot and a nasal treatment). The most importantly, I woke up in the morning feeling a million times better! I will go on with my treatment at home. Thanks SignatureCare!',1),(153,'Deirdre Y.','/user_details?userid=8CCKCs2dYk1VmV09nj5G3g',5,'2016-08-18 00:00:00.000000','Best staff and facility to be seen at! Front desk offered directions and was very helpful. I was feeling horrible with pain and a stomach bug but within minutes they had me back to normal. Usually when offered a \"warm\" blanket at other places it\'s not but the one that they offered was very warm.',1),(154,'Wendy E.','/user_details?userid=96UERduY7SgfrDlAwAr2Kg',5,'2016-08-14 00:00:00.000000','I could not have had a better experience with this hospital! The lady at the front desk, Tory, was extremely helpful in answering all of my questions and offered me a warm blanket and snacks/beverages. She was so sweet and even spoke to be about ways I could obtain health insurance for the future. There was NO wait at all! After signing in, I was immediately brought into the back where a handsome nurse came and spoke to me. He was very kind and professional. The doctor was in shortly after and gave me a thorough exam before prescribing me enough meds needed until I could get into my doctor on Monday. When leaving, I found my husband in an immaculately clean waiting room where he was playing an arcade machine and drinking fresh coffee! There was a mini fridge loaded with an assortment of beverages and a basket filled with snacks for the family to help themselves to while waiting. I\'d also like to add that I do not have insurance and the price of my visit was the same as if I were to go to my regular doctor! I was expecting to pay a lot...nope!I HIGHLY recommend anyone seeking immediate medical attention go to this place to be treated.',1),(155,'Josh B.','/user_details?userid=DjGLxfO8pghXssyAqox_lQ',5,'2016-08-11 00:00:00.000000','Every review is true! A very positive place with super nice professionals. Definitely WILL recommend it to anyone. My life has changed with the diagnosis since I was discharged on 8/11/16.',1),(156,'Rebecca M.','/user_details?userid=3LJChlfxQb1C7yBGhXT8EA',5,'2016-08-06 00:00:00.000000','This was the cleanest, most modern, newest, nicest ER I have ever been to. It looks like it was brand new but it\'s been open for two years. When we arrived, we were the only ones in the waiting room which honestly was so nice to see since I\'m use to packed ERs with 4 hour waits just to check in. We arrived around 3 and we\'re checked in by 315. The front desk staff was very friendly and professional in helping us find out the charge with our insurance. The front desk staff was very friendly and professional in helping us find out the charge with our insurance. Our technician was Jason and he was very nice and relatable. Dr. Bansal was very professional and knowledgeable. He explained what he believed it was and then answered all our questions when the results came in. We were admitted at about 315 and we\'re out around 515. They said they were very busy and all the rooms were full, but we did not hear any noise or any signs of chaos. I actually thought it wasn\'t busy until I overhead a nurse saying all the rooms were full. They hold their composure very well and it was a very smooth visit. We were in the finding Nemo room (pediatrics) and even though we aren\'t kids; I really enjoyed the light-hearted theme. We were asked by several different staff if we needed anything throughout the time we were there. If I ever need to go to an ER again, I will be going here.',1),(157,'Dre K.','/user_details?userid=2xkT_McR3n5UykQ2ceb_TQ',5,'2016-08-05 00:00:00.000000','Caring ,fast and efficient . Who ever likes going to the doctor\'s office? Definitely not me. If all visits were conducted in this manner. I wouldn\'t mind going at all. From the front desk to the doctor and nurse everyone was helpful , nice and friendly .',1),(158,'Adam W.','/user_details?userid=UetZDX_29mxdqcntH-yOeA',5,'2016-08-04 00:00:00.000000','What a terrific experience.  I waited like 3 minutes.  Very very excellent.  It was super clean and very modern.  Very professional and great snacks.  I don\'t know that I\'ll ever go to a hospital again.   Thanks all.',1),(159,'Colleen D.','/user_details?userid=D2hFz_2oiMGYSb2H8Ra6lw',5,'2016-07-29 00:00:00.000000','I arrived in incredible pain and was taken care of with respect and kindness immediately. The entire staff is wonderful, caring and kind, from receptionist to technicians to the attending physician. The facility is clean and modern and even the bed was comfortable for my three hour stay. I couldn\'t be more grateful for the care I was shown and would recommend this location to absolutely anyone.',1),(160,'Lin Y.','/user_details?userid=MtQ0meo7hn0iyNf7wq9dUg',5,'2016-07-20 00:00:00.000000','Nurse, front desk and doctor are all very nice and friendly,  not like those scam clinics,  they were very clear what the charge will be.  Not even 5 minutes waiting time which is very impressive.  The ones I experienced previously were all super slow.  All I can say is if you live around here need some urgent care,  this is the place to visit.',1),(161,'Kelli S.','/user_details?userid=5JfvrLMN7nGhHyTzbY2sZw',5,'2016-07-18 00:00:00.000000','First off the waiting room and treatment areas super clean and very pretty. The welcome center was very helpful in asking what you needed treated. I went before work on Monday morning and I was taken before I even got my paperwork finished. Everyone was very friendly. They checked me over and then took me to get X-rays. X-rays took around 20 minutes and I was diagnosed. Loved the speed of service, doctors, nurses, and cleanliness',1),(162,'Ruby S.','/user_details?userid=gA_kmxbzxpbeVAXKVDxM7w',5,'2016-07-05 00:00:00.000000','Brought my husband to this facility because of labored breathing and we were pleasantly surprised. Dr. Boester was very thorough and attentive. Facility is very clean and everyone was professional. We could not  have found a better place for immediate service. I would recommend this facility for any emergency.  Dr. Boester you are the best. Thank you.',1),(163,'Lindsay M.','/user_details?userid=mQ0a20CT_l2WuaEHbF1b4Q',5,'2016-07-05 00:00:00.000000','I went to SignatureCare in the middle of the night last night and I had an overall wonderful experience.  The staff was extremely nice and thorough.  The Nurse Jesse was really wonderful and even though I\'m not good with needles, he talked me through it the whole time I needed to get an IV.  I also got a warm blanket before I went in for my CT - great surprise.  If I ever have another emergency, I\'ll definitely be sure to come here again.',1),(164,'Ceci U.','/user_details?userid=hNNVD8I23TLm-PJOtNTEPg',5,'2016-06-27 00:00:00.000000','The service here was fantastic. When I arrived, there was no wait and I was immediately taken to the back. The nurses were amazing and were patiently inquiring about my symptoms while explaining each thing they were doing as they did it. The staff ran all necessary tests and the physician explained the results thoroughly. The process was smooth and I would definitely recommend.',1),(165,'Jenny T.','/user_details?userid=SibvuJUrMD3WQtNfUDnMFQ',5,'2016-06-09 00:00:00.000000','I came here due to strep throat and would highly recommend this place to anyone.  We were warmly received by the receptionist and brought back within 2 minutes,  well before I finished the paperwork.  Nurse Marie, the RN on site, quickly went to work getting my vitals and finding out that I get strep very often. The second she walked out a tall ginger man walked in. Turns out the ginger is the doctor! Doctor Boester. He made me aware that there\'s a treatment for strep that I\'ve never been informed of. A shot plus a second steroid shot that kills off the strep within hours. This info will forever change my life. No more taking horse pills for 10 days and waiting 2 to 3 days to feel better. Thank you ginger doctor!  Nurse Marie comes in with my shots moments later. She took a few minutes to warm up the shots so they wouldn\'t hurt as much while chatting with me. I could barely feel the shots. She\'s very skilled, caring and charming. While waiting for 15 minutes just to be sure I didn\'t have a reaction to the shots, Nurse Marie escorted us to a large very pleasant waiting room with couches, a free arcade machine, kids play area, and fully stocked with coffee, drinks, and snacks. Wonderful, new, clean ER with very charming and knowledgeable staff.',1),(166,'Colby H.','/user_details?userid=wg4peWFtJNm-ymdlr9iQPg',5,'2016-06-05 00:00:00.000000','The service was extremely professional. Alyssa was very welcoming and had a great smile. Jesse was very helpful and kept me calm, even though I thought I was \"dying.\"  Turns out, I wasn\'t haha',1),(167,'Lissi R.','/user_details?userid=WXAcq9cpZ6mQZfDHDukmYg',5,'2016-05-27 00:00:00.000000','I came if after getting burned at work. There was no wait time, the staff got me in and out quick and treated me accordingly. The dr. Was great at explaining his diagnosis to me. Everyone was friendly and welcoming. You can tell they put their patients firsts. Would defiantly come back or refer a friend to this place. And the dr and nurse are',1),(168,'Javier F.','/user_details?userid=bqjhXnOEaIfHXEXvXnebbQ',5,'2016-05-27 00:00:00.000000','Great compassionate, professional people. When in an emergency I couldn\'t ask for a better place to go to.',1),(169,'El H.','/user_details?userid=abZfeHAU9srEDq0SUmTj0g',5,'2016-05-21 00:00:00.000000','Staff and doctors are very personable and prompt. I was called in before I finished my paperwork. Clean and well-appointed facility. I took a friend here and returned for myself (even though there were closer options). Superbly managed. Highly recommend.',1),(170,'Bethany N.','/user_details?userid=X8qsz9ap-V_O5SgCkZMRzQ',5,'2016-05-03 00:00:00.000000','Service was really quick and the staff was friendly.  My questions were answered thoroughly and both the Dr. and nursing staff made sure I was fully informed and taken care of.  Definitely the best (and fastest, took less than 30 minutes from the time I entered to the time I left) emergency medicine experience I\'ve had.',1),(171,'Elena S.','/user_details?userid=--iIcDS0aXEDD_uCQdgFNg',5,'2016-04-15 00:00:00.000000','Dr. Souman and the entire staff helped me immediately. I woke up and could not open my eyes due to severe eye pain. I couldn\'t see. My husband took me to signature care and they managed to rinse my eyes and help me. I feel a lot better now. They are definitely there when you need them. I think the doctors are affiliated with Memorial Herman, at least that was on their hospital clothes so my husband told me. Excellent service and care.',1),(172,'Katy Jo B.','/user_details?userid=9J2QUy0ufDeCNCuvcHht6w',5,'2016-03-28 00:00:00.000000','Everyone was very welcoming. I had concerns about the cost of a particular treatment, and the staff called my insurance to make sure I knew the cost and how it would be billed. Very great experience. I will be back if I get sick :)',1),(173,'Jerry C.','/user_details?userid=IgB4AmdKKEcrymhuF1-gGg',5,'2016-03-17 00:00:00.000000','My mother in law had abdominal pain, took her to signature care er in montrose location, dr. Kimbell has one of the best bedside manners you could imagine along with Eve and every staff member there. they diagnosed her with acute cholecystitis, they contacted their surgeon dr. Vega and she arrived quickly and made the determination for surgery. surgery was scheduled same evening. now my mother in law made full recovery back at home. I cannot say how happy the patient and family are with the care at signature care. Ive never imagined how streamlined the process for surgery can be arranged as they have done for her. thank-you signature care.',1),(174,'Luigi M.','/user_details?userid=7n-UwZDsMqseoJDBlOCvTw',5,'2016-03-08 00:00:00.000000','Excellent venue and excellent service. I came here with a stomach ache that would not go away. It turned out to require surgery. The took me in right away in the middle of the night. They ran all required test within an hour and by the morning I was already scheduled for surgery.  The staff here was super attentive, super friendly, and empathetic. Thank you!',1),(175,'Alex S.','/user_details?userid=Z3IpEVMHYPsFYkKXNG4gHQ',1,'2016-03-07 00:00:00.000000','UPDATE: crooks: $2000 bill for 20 minutes of work to do 5 stitches. After they told me my copay would cover. Billing department tried to keep me quiet by taking off a small percentage and a payment plan.Had my ear split open from a hockey puck on a Saturday morning and came in here a couple hours after it happened. Virtually no wait to be taken back and diagnosed, cleaned, then a few shots of lidocaine, and then a quick procedure to put in 5 sutures. The only thing was a 20-30 minute wait after the procedure for the nurse to come back in and clean my ear, and she didn\'t do the best job. Other than that this place was great; little to no waits, very clear and friendly care from everyone there (front desk, nurses, and doctor). Unless you\'re having a severe medical injury, come here in lieu of a hospital ER.',1),(176,'Paul R.','/user_details?userid=68oNHfM4C9bEi_4BleOgWw',5,'2016-02-27 00:00:00.000000','I really appreciate the care I received here for my broken wrist after a tumble on my bike.   Dr. Braun, Lawrence and Mathew were all very helpful in taking care of me, and were all very pleasant--more than that, actually, in each\'s bedside manner.  I left very confident that I had received top quality care.  Very clean and modern facility, no wait.  X-ray and Cat-scan onsite. If you have to go, go here.  BTW--I found this place via Yelp and I appreciate those who left reviews before me.',1),(177,'glorianne n.','/user_details?userid=PODcTDmjK8dWqWQ3BeHhpg',5,'2016-02-18 00:00:00.000000','This place definitely took \" taking care of the patient and family\" to a whole new level! The MD AND Staff were so amazing! Great bedside manner, very attentive,  knowledgeable, and really care about the well-being of the patient AND family! The MD really explained everything that they were going to do, why they were going to do it, and when the test results came back, they were in explaining what the results were, what they meant, and what the next step was. They literally did everything from head to toe just to make sure he didn\'t miss a thing! The MD was even the one who kept on coming in here to ask if we were ok,  if we needed anything,  and to let us know our consult was running a little late,  when he arrived, when he was coming in to see us,  and even right after our consult was finished,  he came in to see if we understood everything and answered every single one of our questions! When we found out we had to stay most of our day, they moved us to an observation room where there was a mini fridge stocked with Gatorade, sodas, etc. They even had a tv with cable, an apple tv  and an iPad at the bedside! On top of that,  they had someone who comes around 6pm and takes food orders to do food runs and picks up whatever food you wanted!I was really blown away by the way they try and make you feel as comfortable as possible during a difficult and scary time. I mean,  I honestly hope we never have to go to another ER ever again,  but I was very pleased and thankful that we were referred by another doctor to come here when we needed to! Thank you Dr.  Golla and to both our nurses Ray for taking such great care of us! We really appreciate you!',1),(178,'Jessica R.','/user_details?userid=gkUqHRX0yp6BEG9yn7V04Q',5,'2016-02-17 00:00:00.000000','Great place to get checked. I came here after I was in a minor car accident and everyone was very helpful in explaining both my physical procedure and how everything would work with the insurance company. Excellent staff!',1),(179,'Tony R.','/user_details?userid=wAwzrZe-QKbWZCnNJb9kyg',5,'2016-02-10 00:00:00.000000','Everyone I\'ve met has been super nice and empathetic. They listen to your concerns, and provide treatment with you in mind, not based on what the insurance company will pay.  They go out of their way to provide the simplest of comfort. From a glass of water or even juice.  I hope I\'m never sick, but if that happens again, I will definitely be back.',1),(180,'Gabrielle A.','/user_details?userid=dqPWfUwYdPbiRShCY7aWqw',5,'2016-02-07 00:00:00.000000','You can\'t find another ER that will go above and beyond for its patients like the doctors and nurses do here. There was no wait time, quick access to X-ray and CT, and the staff genuinely cares about the patients. Even once discharged from the ER, Dr. Braun and RN Melissa still willingly went out of their way to follow up and listen to any concerns and help set up appointments with necessary specialists which otherwise could\'ve taken weeks.',1),(181,'Brandon A.','/user_details?userid=v3o_sTiGlFEkS_LAURwYgA',5,'2016-02-07 00:00:00.000000','Came in with a friend who broke their arm. They were quick to get X-rays and immediately put the arm in a splint. The staff was friendly and checked on us multiple times while we were waiting for splint to set. Followed up with us and provided excellent recommendations for the necessary surgery he needed. The facilities are incredibly nice, clean, and they have a lot of the equipment an emergency room at a hospital would have., including X-ray and CT machines. Have been to several clinics similar to this and this was by far the best.',1),(182,'Chris S.','/user_details?userid=7AlNTRn4hBsbqLSn3whvZQ',5,'2016-01-18 00:00:00.000000','Took my fiancé there two days ago with abdominal pain.  Everyone was very nice and pace of treatment was the quickest of any emergency room I have ever been to.   The whole place looks brand knew and super clean. During my fiancés ultrasound there was a family room with drinks, snacks and an arcade machine to pass time if need be.  Sylvester took us back to our room and was very nice and professional. The doctor also had great bedside manners. I will be using this place again if need be! Thanks Dr. Braun and your team for the pleasant ER experiment.',1),(183,'Ori M.','/user_details?userid=wyLrYf4sCQKmv2MJuLAjxQ',5,'2015-08-28 00:00:00.000000','OMG If I had not been sick I would have thought I was at an expense spa.  The minute I got there I was escorted into a clean beautiful exam room and treated with the kindness and respect.  The facility is top notch and very relaxing....so much so that I almost forgot that I was in an ER.  Everyone was kind and respectful.  They checked on me constantly and made sure to answer all my questions.  The service was quick but very comprehensive.  I totally recommend Signaturecare to everyone.  I promise you will not be disappointed.  They even followed up with me the next day to make sure I was feeling better.I live in Pearland but should I need an ER, I will make my way back to Signaturecare.',1),(184,'Ikita C.','/user_details?userid=bkJdtlaGEHc7rr4vwaOymw',5,'2015-08-16 00:00:00.000000','I usually don\'t write reviews but this ER is like no other. I\'ve never walked into an ER and have people move as fast as the staff here. From the receptionist at the front desk, to the nurses and even the Doctors, they were not only prompt but showed they cared as much about my problem as I did. Dr. Bansal didn\'t try to just give me meds. to mask the pain, He done a complete work up. I mean all of this from an ER! There are hospitals that will tell you to address one main problem and move on. Not here! He sat and explained what and why he was doing what he was doing and answered my questions patiently. At no time did I feel like the staff was trying to rush out the room. The nurses rounded in a timely manner all why asking if I needed anything, their tones were of true care that if I asked they wouldn\'t hesitate.  Not to mention the cleanliness of the rooms.  Did I forget to mention there\'s a mini refrigerator in the room stocked with at least 8 different types of beverages. I must say this is patient care at its finest. This place most definitely hold true to its name and motto,  SignatureCare. No matter you location if you want not just prompt service, but adequate care this is the place to come and I live in Pearland. We need more ER \'so like this with such professional standards.',1),(185,'Jasmine S.','/user_details?userid=q6wsHag0S-ycoiQSkwy3Sw',5,'2015-08-08 00:00:00.000000','Signaturecare Emergency Center is definitely a wonderful friendly medical environment. Dr. Boester and his staff are completely professional and have plenty of patience for their patients. They will answer all of your questions and give you the most comfortable visit. Their emergency center is also very sanitary. I will definitely be returning here when needed and will send all of my friends and family members here. I\'m very thankful with the entire staff, but especially with Dr. Boester for making my first visit an excellent one.',1),(186,'Lisa S.','/user_details?userid=RbKEKXHZS7qCRalRc0DJ3g',5,'2015-08-07 00:00:00.000000','I went into this facility and I felt like I was very important from the moment I walked in the front door. I was great with a smile from friendly registration and was immediately escorted to a room.  The nursing staff was wonderful, attentive and very caring. Richard and Lisa were my nurses and took excellent care of me.  The doctors were very nice as well. The Dr. that took care of me was very caring, empathetic and attentive and made sure that I was comfortable during my stay and answered all of my questions. Dr, Hannan is a wonderful doctor with an excellent bedside manner.  The facility itself is beautiful and very clean.  I will recommend this facility to everyone I know and I will definitely be going again if I get sick.  Thank you so much for the wonderful experience and the excellent care.  This goes for the entire staff.',1),(187,'Ann B.','/user_details?userid=vx4dErQLePeFqBOQ4Dn_sA',5,'2020-06-13 00:00:00.000000','The Signature Care centers are the best thing invented!  They have all of the same equipment and expertise as an emergency room but better!  They get you into a room right away, the staff is excellent, both caring and top notch and they are extremely responsive and efficient!  I wish they had these all over the US!  The one in the Heights is fantastic - thank you for all that you do!Please open these in upstate NY (Rochester)!',2),(188,'Angela C.','/user_details?userid=393y8lyW0EqXp2Nl__8yfA',5,'2020-06-04 00:00:00.000000','This was my first time at a local emergency center and I had a great experience. The staff were so calm, patient & encouraging throughout my visit. I was seen immediately and all of my concerns were addressed with sincerity and I really appreciate them for that. Kudos to you all: Dr. Miller, Nicole J, Dustin, Tim, Rebecca',2),(189,'David H.','/user_details?userid=g260DbnLbelpSJl7WWgw0w',1,'2020-05-17 00:00:00.000000','Have an ingrown toenail hurting real bad, in the front they told me they could assist  me. Doctor didn\'t even touch it or looked at it up close. Had to pay a deductible for nothing.',2),(190,'Keedra G.','/user_details?userid=rMECg9jmNW3xtE1uEjwsKw',5,'2020-05-14 00:00:00.000000','I was recently at SignatureCare because I needed stitches in my finger. Despite the unpleasant situation, I could not have asked for a better ER experience. The staff was very friendly and compassionate. Dr. Miller not only had excellent bedside manner, but he also did a great job with the stitches. My finger has now completely healed with very minimal scarring. I\'m so glad I went to SignatureCare.',2),(191,'Traci A.','/user_details?userid=LO2zlYvkOAXEysXYcXTIlA',5,'2020-05-07 00:00:00.000000','I just want to say how impressed I am with the staff here.   I have gone to them for the past three years.  (Cancer, blood pressure, hip issues). Always very accommodating to me with great service.',2),(192,'Katherine T.','/user_details?userid=D2t3LLaPUUeII8YFliCNjw',5,'2020-03-27 00:00:00.000000','Signature Care ER saved my husband\'s life! This is not an exaggeration or an overstatement. This is REAL. He nearly died and they saved him. All the while, they helped me through the most traumatic event of our lives. I hate that I can\'t remember everyone\'s names because they were all so wonderful. I do recall specifically that Regina was so kind and she made me feel like I wasn\'t alone. Her words were just what I needed to hear. I can\'t express enough how much I appreciate the team at Signature Care because of your hard work and diligence, my husband came home and for that I will be forever grateful. THANK YOU!',2),(193,'Kel E.','/user_details?userid=yeJaVrV67IWpWmpGgbWPIA',2,'2020-03-11 00:00:00.000000','Unfortunately, I\'ve had to lower my reviews of this place. Had stitches put in my laceration the other evening and they came out . The wound is open wide now and the dr refused to numb the area before claiming he didn\'t wanna stick me twice. Now the wound is majorly hurting and is infected. My moms a nurse and said that showed the stitches weren\'t done properly and this is a bad omen.  The customer service manager called about this review and promised she would not be charging for the stitches and visit since I had the issue. Tonight I went into this facility and was told by a rather abrupt front desk staff member that I showed a \"very large balance \" and needed to call the billing office. I was going to change my review for the excellent care I received tonight but after this girl rudely told me I was actually charged for the last visit with the hand injury above and was lied to about not being charged, my 2 stars will stay . Update: customer service called and said I wouldn\'t be charged. Update August 2019- went again for back pain. They automatically claimed that it\'s my frequent  kidney problems causing it due to the past cat scans and records. Refused to give me anything more than Toradol for pain because  I was driving (never had that happen before) so I was discharged without any real treatment. Went to my urologist the next day and was told I needed an MRI because most likely I have a messed up sciatic nerve. The pain is excruciating and my dr was appalled that they misdiagnosed me and automatically made a conjecture that it\'s my kidneys without checking further. You can\'t send people home like that and not find the real source. Now I\'ll probably need back surgery. Thanks a lUpdate: 3/2020- despicable ! I have insurance which they refused to take. Told me I could do self pay. But that they couldn\'t tell me how much I would be FORCED to pay up front unless a dr saw me and \"decided if it was emergent or not \"- so I left. I have flu like symptoms and can\'t talk or breathe . Yet they basically told me I could choose to leave . So I did. They only care about money nothing else.  If I have the virus and am sick and die I guess my mom can call an attorney for negligence.',2),(194,'Brittany B.','/user_details?userid=_ncGBr1oWAHFLcR0oYLzxw',5,'2020-02-15 00:00:00.000000','Very satisfied with the service. I came in for a urinary issue, the staff (Samantha, Christine M, Nicole G, Dustin, Ricardo & Dr Singla) were great. I think I had a 2-3 minute wait at the front desk, the nursing staff & radiology tech saw me quickly & gave me information about what they were going to do & why. Dr. Singla was very informative, gave me the information on what was going on with my body plus some other information I didn\'t know. I really appreciate the staff here, the efficiency, kindness & knowledge. I was in & out in about 2 hours which is awesome!',2),(195,'Jhane J.','/user_details?userid=RUXgqAl9L-8qCiZ8WoGavw',5,'2020-01-17 00:00:00.000000','I cannot begin to express my satisfaction with the staff and services at the Signature Care I visited. From the front desk, to the nurses, and the doctor. Each and every one of them was courteous, professional, and made my visit as comfortable as they possibly could. My wait time in both the waiting room and the exam room was short . Dr. G & the cardiologist on call put me at ease and explained everything. Thanks!!',2),(196,'Ashley M.','/user_details?userid=4KEQLs5y-u7t3Ol1cUscdA',5,'2020-01-14 00:00:00.000000','This place is awesome! Chris was an excellent nurse as he tended to my every need and was very informative. Upon arrival I was greeted by the friendly staff, had little to no wait time and was seen by the Dr.Miller who took great care of me. Every question I had was answered and I didn\'t feel the pressure to commit to anything I was unsure of as the staff explained everything to me in great detail. This is a go-to place for quick, efficient, and helpful care!',2),(197,'Veronica S.','/user_details?userid=Y72qmv5kDZjpjoPKWtf75A',5,'2020-01-11 00:00:00.000000','I was immediately seen after check-in. Nurse Nicole G and Dr. Estevez were very attentive and informative. I highly recommend SignatureCare in The Heights!',2),(198,'Markee P.','/user_details?userid=kSqIUX4aQEqn5ITw6nzLWw',5,'2020-01-10 00:00:00.000000','Came in for my daughter that has RSV went back right away the process was very easy!! The staff was amazing!! Thank y\'all so much',2),(199,'Victoria G.','/user_details?userid=b5hVcMhGy12gRhHbbFYAGg',5,'2020-01-09 00:00:00.000000','We came in for my boyfriends severe infection in his mouth and we were greeted by Tatiana at the front desk who was just wonderful and very knowledgeable. Then we were taken inside by Christine the nurse who was also so wonderful and nice. Not to long after Dr.Lim was in and assessed the situation and took such good care of my boyfriend with compassion and respect. All in all such a great experience, I highly recommend this place if you need to come to urgent care.',2),(200,'Nicole J.','/user_details?userid=YyMDVt0o-dUk2CFqbnSCRQ',5,'2019-12-23 00:00:00.000000','They did a great job with my daughter while she had SOB. Quick, efficient care. Joseph and Reginna the nurses were great. Dr Dendy was awesome also. Best place to bring anyone for an emergency, fast service.',2),(201,'James M.','/user_details?userid=ebpa2gHq5JcA-Z5YkeQ6Jg',5,'2019-12-21 00:00:00.000000','Today was my first visit to Signature Care.I could not have been more impressed.Receptionist and check in took minutes.The ER nurses got me on morphine within minutes of getting assigned to a room.The imaging tech came and got me within 5 minutes and the Dr had the results within 20 minutes.It took over 3 hours to get me checked in to the hospital of my choice. This delay was caused by my insurance provider and the hospital, SC was so helpful in getting a hospital room assignment, no easy task on a Saturday afternoon.Now I sit in my hospital room tanked up on morphine waiting for surgery.',2),(202,'Staci B.','/user_details?userid=tTh3iVARSIrk1kHyAYk_OQ',5,'2019-12-09 00:00:00.000000','Fast, efficient and completely affordable. The lobby is clean and full of refreshments and snacks. We were able to walk in and be seen in less than 5 minutes on a Monday night. Virtually no wait. Ended up with a bill that was exactly what they quoted me.',2),(203,'Eric R.','/user_details?userid=PcFhp_qKs3o3n0IWrB8now',5,'2019-12-02 00:00:00.000000','Good care in timely manner! Always return here for emergencies! Came in due to car accident head injury and they took me in quick... had no problems what so ever.',2),(204,'Megan M.','/user_details?userid=UzgBiZJwRlnW_iMkjugP_Q',5,'2019-11-08 00:00:00.000000','Staff has truly some of the most commendable bedside manner I\'ve experienced. I\'ve been here twice - for ongoing, unstoppable migraines each time. The most recent time was over the weekend, while also battling bronchitis. The tech was super gentle when inserting the needle for the IV. Nurse turned off lights and was very quiet, knowing light and noise sensitivity are associated with migraine. The doctor was upset when the \"cocktail\" didn\'t relieve me of more pain, but offered alternative solutions, with explanations for why they weren\'t typically recommended. He was very caring and thorough. I truly can\'t give enough stars to this location.',2),(205,'Katie S.','/user_details?userid=tl9pZzz70uLCobW8CQM1WQ',5,'2019-10-27 00:00:00.000000','Great super quick service. Needed service at 1:30 am, out by 2 am!Nikki and Amanda were prompt and helpful.',2),(206,'Irene F.','/user_details?userid=Cf2yM9B2-1BIhnWA6XV3FQ',5,'2019-10-22 00:00:00.000000','We arrived because of chest pains and they immediate triaged my husband to make sure it was not life threatening.  It was the attention to both our comfort and care that was outstanding. Every person who engaged us was a patient advocate making sure we were comfortable and informed with the process. Highly recommend',2),(207,'Kerissa J.','/user_details?userid=XaGnzm-xQ2b0AnLA7O3x6g',5,'2019-10-04 00:00:00.000000','I came to SignatureCare Emergency Center on T.C. jester after a car accident on 10/4/19 for check up. I was greeted by friendly staff and taken in immediately. My nurse was lovely and attentive. Dr. Miller had great bedside manner and fully assessed me, listened attentively and explained all procedures thoroughly. Every person working this day was excellent! I wish all facilities were just like this one. I felt well taken care of.',2),(208,'Ronald Q.','/user_details?userid=AB13qJ71CusR5huhUBwogw',5,'2019-09-09 00:00:00.000000','We have been here twice in less than 24hrs, first with my mother in law and next with my mom. Dr. Miller look after them both and was great. Excellent service all around and very professional. We do appreciate everybody\'s effort and how polite they were in both cases. For sure we recommend this service and finger crossed, we gone be back but when need it, we won\'t hesitate on visiting them again.Thank to the team!',2),(209,'Melinda R.','/user_details?userid=kFTv7S3SN5u9kLWP65m5Dg',5,'2019-08-29 00:00:00.000000','I wish I didn\'t have to write a review for an emergency room, but since I do I\'m happy to say that minus the very sick toddler my experience at Signature Care was excellent! We arrived about 530am on a Monday morning and were issued right in to a child-friendly room. I appreciate that the front desk attendant filled out my first intake form for me as I was holding a vomiting toddler, the first instance of the excellent service we received. The inside was sparkling clean and comfortable as well, which I appreciated. The nurse we saw first was kind and efficient, again something I appreciate since I had literally been up all night with a very sick kid. She didn\'t waste time or words but still managed to be kind and friendly. And Dr. Miller was one of the best doctors I\'ve ever had the privilege of meeting. Not only did he come in right away, but he was kind and respectful to my sick and scared 2-year old, and he really worked hard to make her feel comfortable with him. He easily could have rushed through everything with her crying (as it was also the end of his shift at 6am) but he took his time and explained everything to me and her as he checked her out. Once my kid was feeling better, the checkout process was also a breeze. The staff had changed at 6am but Dr. Miller had brought in the new doctor and introduced her before he left, and made sure that I was clear on what next steps were in case I had any questions. I still wish I hadn\'t had to come here, but Signature Care and Dr. Miller really did a lot to make this unpleasant experience as pleasant as it could be.',2),(210,'Ella M.','/user_details?userid=0yrGBOiDXxJsC8YY_nmZBQ',5,'2019-08-23 00:00:00.000000','Dr Miller, Amy and nurse Brandon took great care of me during my visit. They were prompt, thorough and attentive. I was offered a warm blanket and frequently checked on. The location could not be more convenient! I will definitely come here for future emergencies and recommend it to friends and family.',2),(211,'Genevieve C.','/user_details?userid=jmC7XgWNXPFDCPjjP1-C4g',1,'2019-08-21 00:00:00.000000','Don\'t go here unless you are dying . A year later I was randomly sent a bill for $2,400 for being there for less than 10 mins and one injection',2),(212,'Ipsa O.','/user_details?userid=EWVSdI0yvfe1sJPVlGhkbQ',1,'2019-08-09 00:00:00.000000','I was treated for the flu and I got two bills  for  one $5,684.97 and another for $752.40. This people lied to me . They get your insurance information but they never once tells you an estimate of how much this whole thing is going to be . had I known my bill was going to be this much I would\'ve never put a step on this place. Yeah they treat you nice that\'s how they get you. I will fight this in court and will get me an attorney.  This is ridiculous how this hospitals get you . I will post this every social media you can possibly think off',2),(213,'Christa J.','/user_details?userid=Ph3_V-oSnmTQWbVL1gZSmA',5,'2019-08-03 00:00:00.000000','Really good service and great staff! Ive been here a few times and liked that you can also get hospital service without having to be referred elsewhere for CT scans, EKG, etc. They really care and follow up with you after you leave to make sure you are ok. They also dont rush you to leave and really commit to making sure you are better when you leave than when you came in. I would recommend this place to anyone in the area.',2),(214,'Kate M.','/user_details?userid=yA0q_CiwcEZVFNrty2qCtA',1,'2019-07-08 00:00:00.000000','I called to get a price for a calcium scoring. I was told they do not give pricing over the phone. I would have to make an appointment with a doctor. Not going there.',2),(215,'Rick S.','/user_details?userid=qSsU54I6UtJwoUuMfY9-Vg',5,'2019-06-21 00:00:00.000000','I arrived with a spider bite with slight bruising .. At the minute I walked in was greeted by the receptionist and not even 5 minutes till I was seen by the excellent nurse and Doctor . I felt really at ease and felt like I knew these caregivers for a longtime! I was offered a blanket or anything I needed .. treated with my diagnosis and left with a smile on my face . Thank you ..thank you .. thank you !!',2),(216,'Alli S.','/user_details?userid=-IcuwptriARnTWf_EaqgrA',5,'2019-05-12 00:00:00.000000','Fantastic customer service and wonderful front desk staff. Our community is lucky to have such an expedient and well staffed urgent care.',2),(217,'Huong L.','/user_details?userid=1pQSoeTuOTVjgge7p4FeTQ',2,'2019-04-17 00:00:00.000000','I would be very hesitant to come back to this place.  The staff is super nice and fast to address my concerns, but my bill and the questionable practices of how/when my insurance was billed has me questioning this establishment.  1.  I have two charges for the exact same visit.  2.  I came to the ER in 5/18 and my insurance was not billed until 2/19.  Why??  3.  I was there for less than an hour total, and saw the doc for max of 5-10min.  how can the charges be so significant?  4.  I called the ER to clarify and it was a worthless conversation.',2),(218,'Sean C.','/user_details?userid=imlVAhg33tZMkm8aLdwHFQ',5,'2019-04-11 00:00:00.000000','I checked myself into SignatureCare Emergency Center after not feeling well all morning and afternoon. First thought was, this is a really nice ER. The receptionist was very friendly! She checked me in and I was sitting in one of their huge private rooms within minutes. The service provided by the Doctor and Nurses on staff was top notch. I highly recommend to anyone looking for an ER. I know I will defiantly go back!',2),(219,'Larry C.','/user_details?userid=26X6AY2WOD5PuvcPw5gOkg',5,'2019-03-21 00:00:00.000000','I love this place. My son got sick and they helped him and they were all very nice. The doctor and the nurses were knowledgeable and caring.  The facility is nice and clean and they have my son snacks and stickers. They did a nice job with his shots. We would recommend this place.',2),(220,'Savera T.','/user_details?userid=z7Rvts3CJSE2oMIUis9seA',5,'2019-03-11 00:00:00.000000','I came here for a medical emergency and they took me in right away. The service was great. I am impressed with the clinic and I\'m happy that it\'s close to me. Niki (RN) is the sweetest nurse I\'ve ever met. Lindsay (main Doctor) was awesome, and Amy was personable and positive. Thank you!',2),(221,'Brittani B.','/user_details?userid=cROuBh9WQwuPlENhZPb6ZQ',5,'2019-03-11 00:00:00.000000','I brought my mother to this facility for chest pains and the staff was quick and very attentive. They took her minutes before her appointment time. Chasity did her IV and was extremely careful. The nurse James and Dr.Lindsay were extremely informative and listened to all of my mothers concerns. I would highly recommend this location.',2),(222,'Valerie B.','/user_details?userid=Ru_TSpGB4xRDJBSTcFCMNg',5,'2019-03-05 00:00:00.000000','Place is super clean and welcoming!  People were very friendly and accommodating.  There was no wait to see the doc which is so nice when you are sick.',2),(223,'Jen K.','/user_details?userid=jqlANDPmER0mFvRioiXQ3g',5,'2019-02-17 00:00:00.000000','I visited this location yesterday after having been bedridden for two days after what I thought was a cold, got progressively worse. There was no wait when I got there and within 10 minutes of entering, I was already taken back to a patient room. The nurses were attentive and got tests done quickly (EKG, strep, flu). It turns out I have the flu and after Dr. Ding visited with me and discussed all the medications she was writing a script for, I was on my way to the pharmacy. No kidding, today I am actually up on my feet, doing light cleaning, and feel like I\'m on the better side of this nasty flu. Definitely recommend this location! Thank you nurse Hamzah and Dr. Ding!',2),(224,'Cynthia R.','/user_details?userid=j35pygrkuidJQNeqoRY9Cw',5,'2019-02-10 00:00:00.000000','Yesterday was the 2nd time I had to visit this location and each time the experience has been stellar from check in to check out. They saw me right away and Erica at the front desk great. Both the nurse, Melissa, and Dr Craig took the time to listen to my symptoms and my concerns. I even received my first dose of medication at the visit. I was in and out at no time. J would definitely recommend visiting here if you ever find yourself needing their services!',2),(225,'Mariel A.','/user_details?userid=Dbk43bXH57wbjkK1dV7qDQ',5,'2019-01-14 00:00:00.000000','I came here after I got into a car accident. I was greeted promptly by the receptionist,Amanda. She was very helpful and courteous. The RN, Barbara came in and took my vitals and made sure that I was comfortable. I really liked her bedside manner and how comforting she was with me. Dr. Akunyili was very friendly and attentive. I could tell that it was important to him that I was receiving the best care and that my discomforts were being resolved and explained to me. I had to get XRays and Bryan was very friendly and attentive. The staff here has been awesome. The RN James , Ricardo, and Amanda made sure that I was comfortable and helped promptly. I would recommend this facility rather than any other emergency care center in Houston.',2),(226,'Margaret H.','/user_details?userid=EcUhqo5gLHJbVKM8VxCreQ',5,'2018-11-26 00:00:00.000000','I received better care from the entire staff from time I called them until I left. They X-ray your foot (in my case) and answer all your questions with patience and I followed their instructions and my foot has healed. My husband and I want to help spread the word about how this is the bast care you can receive and it\'s available 24/7. Thank you Signature Care.',2),(227,'Mark R.','/user_details?userid=FjtihJ5L9uXe3KexJ4SqTQ',5,'2018-09-11 00:00:00.000000','I was treated so well when I came in for an X-ray.  I hurt my foot and didn\'t know if it was sprained or broke and they rapidly helped me get an X-ray.  My only complaint is that they didn\'t tell me my co-pay before I had the x-ray.  I was under the assumption that they were an \"urgent care\" facility.  They weren\'t.   So my co-pay was 9 times more than it would have been at an \"urgent care.\"  I would have definitely went to a urgent care facility instead of this emergency room because it cost me $300 instead of $35.  Their title \"signature care\" is why I thought they were an urgent care.  In the end it\'s my fault for not confirming the co-pay.  I just wanted to help out anyone in the future who might think this is an \"urgent care\" facility.',2),(228,'Adam B.','/user_details?userid=mnutvoMUOtKiKI2Pr1QPgw',5,'2018-09-10 00:00:00.000000','SignatureCare is the best emergency center I have ever been too. The facility is very clean, service was fast and friendly. The nurses Gracie and Joseph where great. Jocelyn at the front desk was friendly and Dr Souman is very professional and knowledgeable!',2),(229,'Meme B.','/user_details?userid=YidQZPmhGJE7Vk2l-Cdc_w',5,'2018-09-03 00:00:00.000000','Loved this place. Game me the feel of my PCP\'s clinic as they were very welcoming, warming, and attentive. Didn\'t feel like your urgent care or emergency room at all! I couldn\'t even sit down before they called me to the back. Best part is that i was literally in an out in about 2 hours. This will be my new go-to place for emergency visits.',2),(230,'Mia J.','/user_details?userid=PQDi21iSHsb7vy06v_S9Hg',5,'2018-08-11 00:00:00.000000','During my visit I got the chance to meet jeff,Nick,Leslie, and Dee. They were super nice and very helpful! Dr. Yusuf was the greatest. Sure to return when ever I need care!',2),(231,'Chris W.','/user_details?userid=77eOLkI9Rj4FcDBAheoCvw',5,'2018-07-12 00:00:00.000000','Just want to say thank you Dr Lauren from patient Chris your bedside hospitality was spot on.  Your prior staff, ditto. Thanks Doc!',2),(232,'Martin E.','/user_details?userid=VNdH1fyIdcfKK-EAa67lDg',5,'2018-06-03 00:00:00.000000','The service and attention you get here is better than anywhere else. Dr. Golla and Nurse Racheal constantly checked up on me and were both truly professional and wonderful people. Evelyn at the front desk got me in quickly (which you won\'t always see at other ER places) and Richard the radiology tech made sure my CT scan went smoothly.Dr. Golla was able to figure out what the issue was and explained everything in a manner that was easy to understand. They put me on antibiotics and wrote me prescriptions to help out with everything. They truly care about your health here.I am so glad I went here for my emergency. I highly recommend SignatureCare and especially this heights location. If I ever run into some kind of health problem, I will definitely be returning.',2),(233,'Kat K.','/user_details?userid=p0AuUtMvoMO6R8UdMyMMpQ',2,'2018-04-23 00:00:00.000000','2 stars, because you did not run my insurance when it can cover it. Please, do not pretend you did, because I called the insurance company, and they said you didn\'t. Pretty messed up, and sneaky on your part. Also, asking someone to fill out a rating card is very unprofessional. Would I recommend this place? Maybe. Y\'all were nice, but please fix those issues, then maybe I would come back when I need it.',2),(234,'Kelly E.','/user_details?userid=HsJx6SiM1bKfn9qPqQsZ_Q',5,'2018-04-19 00:00:00.000000','Idk what else to say but AMAZING! I went in w immense pain and from the front desk to the doctor and nurses, I felt absolutely comfortable. The front desk was so kind and prompt. We waited less than 5 minutes and immediately the nurses were so polite and friendly. They saw the pain I was in and were very gentle and kind. The doctor came in and he was so friendly and informative. During my procedure both the nurse and doctor were reassuring and kept me informed the entire time. Even as a self pay the cost wasn\'t terrible, they don\'t overcharge and ding you for everything as a hospital emergency room does. If ER visit is ever needed for my husband or myself again, this is where we will go! Thank you to the whole staff!',2),(235,'Chelsea F.','/user_details?userid=3224-z-ghWuBUUw0CP0Skg',5,'2018-04-05 00:00:00.000000','I was looking for an ER center because I\'m 20 weeks pregnant and had been having terrible stomach pains since Wednesday. I talked to my dr a couple of times and she said I was fine, drink more water etc. By Saturday, I couldn\'t take it anymore. I passed out at my friends party and my husband finally said we\'re going to the ER. When we got there, the front desk was SO helpful and friendly. We waited MAYBE 3 minutes and were taken back. All protocols were followed, my vitals taken etc. I was seen by a couple of doctors as it was shift change when we came in. Both were so very nice and informative. We were there a total of 3 hours because we had to wait on the ultrasound tech to come from another part of town. Everything turned out to be fine and the doctors checked everything out. Even had bloodwork and ultrasound read by the hospital within those 3 hours. We were very pleased and will keep this location as our #1 go to in case of emergency - hopefully we\'ll never have to come again, but if we do, I\'ll totally trust them!',2),(236,'David E.','/user_details?userid=M4BZQJsuy1m-zPQrOCl--w',5,'2018-04-05 00:00:00.000000','The entire staff at this location is amazing!!!  I was admitted in 10 minutes and that is because i had to fill out some paperwork.  I went in for a swollen eye and thought something got into it but it turns out to be a corneal abrasion. Melissa and Dr Dang was the best.  Their bed side manner was on point and they explained everything to you thoroughly during my entire visit.  Melissa gave me a follow up call to check up on me.  I was always hesitant to go to any urgent care places because there are so many popping up right now and it did not give me a good vibe especially I am a self pay patient but this office changed my entire thought .  Overall I was well taken care of.',2),(237,'Mary L.','/user_details?userid=XPF5D1aeM-1nDhci6FpWWQ',5,'2018-03-25 00:00:00.000000','Convenient, quality, affordable (my mom was self pay because she is on Medicare) care. My mother had an accident where she fell with a vase  and ended up needing 10 stitches on her face and 10 on her thumb. Our neighbor who had seen her fall recommended SignitureCare and I am so grateful that he did. It was 4:30 PM Sunday and there was no wait and we were seen immediately. The nurse Kelly with kind and compassionate and did everything she could to make my mother comfortable.  Dr Vaagenes was AMAZING.  He spent 2.5 hours on her stitches. He had only finished her thumb when there was a shift change. He could tell my sister and I were not comfortable with him leaving by our facial expressions so HE offered to STAYED PAST HIS SHIFT to finish the stitches.  During the time in the room, his bedside manners were fantastic. He did everything he could to deliver quality, compassionate care including answering all of our questions (my sister and I work in the healthcare industry so there were many)and he did not get defensive or offended.This is a private emergency room and does not accept Medicare so we were self pay.  I was surprised at how affordable the care was, given everything that Dr. Vaagenes has done and the 2.5 hours he spent with her.I also want to give a shout out to the front staff. They did an excellent job making the waiting area feel inviting and respecting my request not to mention payment around my parents (as we did not want my mom to worry about that.)I cannot say again how appreciative we are for the care that my mom received. I would highly recommend SignitureCare although I hope we won\'t be needing ER services anytime soon!',2),(238,'Hannah B.','/user_details?userid=WqH-OpTl5yiRoFkcKv0F-Q',5,'2018-03-16 00:00:00.000000','Updating after another visit.I have used this location before with much success. After being given the wrong medication to treat Strep from Walgreens on a Tuesday. Friday night I opted to go into the SignatureCare Emergency Center and was given a new antibiotic, a shot for immediate pain relief, a steroid shot, and an oral pain medication to take as needed in the days to come. I was in and out within an hour. WOW, y\'all! I had serious relief within 2 hours. I could finally eat and drink things without crying or wincing. **Please do not let a lack of insurance (or having private insurance) deter you from coming here. They offer reasonable cash prices/payment plans for those who elect not to use their insurance. Thank you, thank you, thank you again for a wonderful visit!!',2),(239,'Heather P.','/user_details?userid=t9HxIFXJi6P26FHIc97stQ',2,'2018-03-16 00:00:00.000000','I would like to give this facility more stars because the front desk staff is incredible and the facility itself was beautiful and very functional. However, once we were in a room the nurse wasn\'t as talkative and didn\'t have the best bedside manner as we would have liked, but she was decent. Then the doctor came in and the entire visit turned completely ridiculous.I brought my partner in for severe constipation X\'s about 6 weeks only using the restroom with stimulant laxatives. We do not have insurance and was going to be paying partial cash the rest on a payment plan. The reason we chose the ER is because we have tried every single thing minus seeing a doctor. You name it, over the counter laxatives, fiber, expensive probiotics, stool softeners, prunes, liquid diet, a gallon or more of water a day, running daily, and lastly a shower enema. Nothing is working. No doctor\'s office will take you without insurance as she does have a GI doctor prior to her losing her insurance. Her dad had GI cancer at about her age and we needed to know if she had any bowel obstructions. So now you know a little bit of back history. Let\'s get into the doctor. My partner likes for me to chime in when she forgets something. She gets nervous and embarrassed easily and often forgets major details. It\'s something we agree upon prior to going into the doctors office whether she wants me to help her through the explanation. Tonight she wanted help. I told the nurse this so they wouldn\'t think I was controlling or forcing her to be there. As I was helping her through her explanation, the doctor stopped me and boldly asked me \"who are you to the patient\" I stated I am her partner. Since we are a same sex couple it seemed to catch him off guard it also seemed he changed his demeanor after that. He began to state thinga like \"I don\'t know what else to do for you, you have done everything I would recommend for someone who is constipated\" \"I don\'t know what to do I\'m just a lonely ol ER doctor\" he said \"I don\'t know\" six times in the 5 minutes he was in the room. He never offered further testing such as blood tests even though she has lost 15 pounds in less than a month. He didn\'t offer imaging to check for obstructions. He only felt her stomach in two places. I happen to also be a nurse (which I never mentioned to him) and I know that is not how you check someone\'s stomach who is presenting with severe GI issues. He barely touched her!!!! When he finally said \"I don\'t know what to do with constipation since I\'m an ER doctor and I don\'t deal with constipation\" insinuating that we were clearly not being taken seriously, I finally spoke up matter of factly and asked him if he thought of doing other tests. It was only then that he offered an x-ray to check for bowel obstruction and to see how much fecal matter was actually inside of her. Dr. Jerry Chen, in my opinion is a disgrace as a doctor and absolutely the face of what\'s wrong with American healthcare. If you decide to go to this ER, which I do still recommend, please ask for a different doctor to spare your time and money. I did express my disappointment to the front desk and she did not make us pay for the awful visit, which was nice. However, my partner is still in bed because she can barely walk with no relief and we still have no answers.',2),(240,'Alea H.','/user_details?userid=AfZJKsLxGYKWhs-0GC6XAg',5,'2018-03-02 00:00:00.000000','Dr. Miller and his team were excellent. I thought I broke my ankle which is why I was there. They took great care of me. Snacks. Water. Blankets. It was speedy and friendly. This will be my go-to place from now on and I highly recommend it. Best part - it was just a sprain.',2),(241,'Nick E.','/user_details?userid=LaGMPt6XtVEW6Qi7La_MWg',5,'2018-02-26 00:00:00.000000','Dr. Vaagenes and the nurses, techs and front desk folks provided the best treatment I\'ve ever had at any medical facility. I was being treated within 5 minutes of arrival with compassion and pain relief.  I was kept informed and checked on by the doctor every 15 minutes. It\'s the only place I\'d go for emergency care for me, my friends, and family.',2),(242,'Heather O.','/user_details?userid=Y1euPzfb3CsnLkRaQgO9IA',5,'2018-02-25 00:00:00.000000','Caught the flu on a layover, took an Uber here because the reviews were so good. Everyone I interacted with was wonderful. I was in and out in about an hour ( probably when have been our sooner but my heart rate was a little high and they just wanted it to come down a bit.) Staff bought me ice and warm blankets and couldn\'t have been nicer. Thank God for this place because it\'s stinks getting sick when you are traveling and don\'t know where to go.',2),(243,'Yvonne H.','/user_details?userid=rzBBCjaA9yXz34kxJERrtw',5,'2018-02-01 00:00:00.000000','As always a great visit. Love Dr. Garcia. Evelyn and Janeane at front desk are always sweet and friendly.',2),(244,'Dina I.','/user_details?userid=wv_H3c4JpTZC-JG1IYMajg',5,'2018-01-20 00:00:00.000000','This is an amazing place. I can\'t even call it a facility because medical facilities have been cold and unfriendly for me up until today. We went it for consultation for neurologic disease and were seen right away. The Doctor was so kind and so helpful was trying to understand our condition but in the end they recommended is to see a specialist. The best medical experience ever. I will never go to a different Urgent Care and will definitely never go to a different ER again.',2),(245,'Lela K.','/user_details?userid=fckEhT9tQeDmjE13w6hCxw',5,'2018-01-07 00:00:00.000000','I came here due to dehydration from the stomach flu.  They explained that his was an emergency room so I\'d be billed like an emergency room, which I understood but I did appreciate them informing me.  I was able to get checked in in a timely manner and Jackie at the front desk was extremely help and kind.  Once I was taken back, Johnny, got me hooked up with the IV and started treating me with medicine per the doctor\'s orders.  I was out of there by 11pm and I got there around 7:40pm.  Overall it was a great experience and very convenient to where I live as well.  I appreciate their kindness in the care that they gave.',2),(246,'Carla T.','/user_details?userid=mEqiFB1XdoaOiJOMU4Mfog',5,'2017-12-28 00:00:00.000000','Fast and efficient all while being patient and compassionate. Snacks, drinks and best of all!!! The exam rooms have a bed for the patient and a sofa for family/friends!!!',2),(247,'Omar B.','/user_details?userid=oUDFxPOeUu5nRJclu3OXWA',5,'2017-10-27 00:00:00.000000','For the past couple of days I had been suffering with the same upper respiratory irritation that many others have been dealing with.  I was not getting better with over-the-counter remedies, so I decided to try out SignatureCare.  I had an extremely favorable experience from the time I walked in, to the time I departed.  The front desk agent was courteous and was able to verify my insurance in minutes.  I was called back by the nurse within five minutes, so I did not even have time to fill out my paperwork.  The doctor did not keep me waiting, so I was able to get my diagnosis and close out the visit in about thirty minutes total.  This is a great option to have in the neighborhood.',2),(248,'Adam G.','/user_details?userid=Slpt6jcVxb_dbl8Ggcda8A',5,'2017-10-05 00:00:00.000000','I have never been to an emergency care center so I didn\'t know what to expect coming in at 6 in the morning. I was immediately relived when I saw how nice and relaxing the interior was for the patients and was immediately greeted by staff that were more than happy to help me through the check in process!Once I was in the exam room every nurse or assistant that talked to me was kind and made me feel very comfortable despite my pain. My ER doctor was especially helpful insuring they had my back and were going to help me the easiest and most stressless way possible.I was in and out quicker than any other medical center  thanks to their care and I couldn\'t reccomend them enough as a go-to ER! Thank y\'all for what you do!',2),(249,'Mai-Anh N.','/user_details?userid=kvflMRdlKBpjgbQA-UQFYQ',5,'2017-10-04 00:00:00.000000','I love this place. 24 hours, clean, professional and caring. I\'ve had to come in twice, and the facilities are always clean and quiet. The staff is always caring and kind. Bedside manner has been top notch, and the care I receive is on point. We always appreciate the little extra amenities they provide, as well. We will continue coming here where and when we can. Thank you Angela, Lia, and Dr. Smith for your excellent care. We will definitely continue to come back!',2),(250,'Kristi U.','/user_details?userid=t1VxiVXmeFZB_e65vQgkRg',5,'2017-09-11 00:00:00.000000','Amazing care!  They saw me before I had even finished writing my name on the initial paperwork. Dr. Chang, Kelly, Derek, and Angela were all extremely friendly, professional, and caring. Thy diagnosed me quickly and managed my pain even quicker. I highly recommend as opposed to sitting in a crowded ER room for hours on end!',2),(251,'Samantha A.','/user_details?userid=iRsE1f1UpQqcNVuKY9HDyA',5,'2017-08-20 00:00:00.000000','Decided to come here instead of Memorial ER for a late night issue. Couldn\'t recommend it more. They were very attentive and caring. The doctors and nurses were very thorough. The place is immaculately clean and they use Door Dash to bring in food for you. Hope we don\'t have to come back but will be our first choice in the next emergency.',2),(252,'Adam G.','/user_details?userid=7ffefAL99IU6RXt9Oo9aKA',5,'2017-08-15 00:00:00.000000','I came here in agony vomiting and suffering.  Dr Adam diagnosed me with a 4mm kidney stone and offered compassionate care, keeping me comfortable and medicated to get through this ordeal.   Nurses were incredible.  I will never go anywhere else.   Doc ordered the urologist who woke me up at 6 am to discuss my condition and follow up care.  Literally the best',2),(253,'Sabrina F.','/user_details?userid=j1EGHqWCewMTBimrTDpg0g',5,'2017-08-10 00:00:00.000000','Came in early morning for some weird pains. Everyone was amazing from the moment I stepped in.No linesEverything was super clean! Ran tests quickly and got pain managed right away. The doctor was quick and to the point. He was thorough  and very nice.All in all a great experience!',2),(254,'VeAniqka G.','/user_details?userid=0c-DEjwz_YuRoMt9kTTRSg',5,'2017-07-24 00:00:00.000000','jackie is amazing!!! she is the sweetest thing ever has the greatest amount of patience!!!!!! derek was extremely nice and comforting as well as joseph! they are humorous with me and that helped make me comfortable. i didnt have a wait at all!! Dr Dang is the best ever! i even had outstanding service from the security guard LaKita she is very professional and sweet thanks for everything signature care!',2),(255,'Paula R.','/user_details?userid=g-vuZMFU9Env2amHPkz4zQ',5,'2017-07-20 00:00:00.000000','We arrived at 3 AM with our one-year-old and 107° temperature.  Dr. Sylvester and his team immediately got into action to reduce her fever and to identify what was going on. they did a lot of tests but they determined finally that she had pneumonia.  From the minute we ran in and from that point on the entire staff made sure that my husband and my daughter and I were comfortable the entire time by making sure that all of our needs were met.  We spent a long 12 hours at the emergency center under the unbelievable care of Dr. Sylvester, Dr. Miller and their entire staff.   They took care of us like we were their family. There is no doubt in my mind that if we have another emergency we will be visiting the signature care center immediately before going to any emergency room... thank you for everything!!!',2),(256,'Tricia C.','/user_details?userid=cIq1v3Ynanq93OgBy2pLkw',5,'2017-07-09 00:00:00.000000','Quick care. I didn\'t even have time to sit down or fill out the paperwork before I was in a room and being asked questions for the proper treatment. The staff was awesome, the doctor was knowledgeable, I was treated and out in just a little while.I had never been to an ER prior to this visit, but if needed I would definitely come here again.',2),(257,'Lucy P.','/user_details?userid=Bldz82x4kqgcH-BYazipQw',5,'2017-06-26 00:00:00.000000','I came to the ER on a Sunday evening to have my arm checked out. I really wanted peace of mind and that is exactly what I got. I was taken back right away and the doctor was in within 10 minutes. I think my whole visit was 30 minutes. As I was leaving the security guard even walked me to my car.',2),(258,'Katelynn M.','/user_details?userid=Td7MtWW-D8XDIq0sI8rHsg',5,'2017-06-13 00:00:00.000000','I was seen quickly for a migraine. Dr. Garcia and especially nurse Rachael listened to me and centered my care around my comfort level and needs. I\'m a pretty high maintenance patient, especially when in migraine level pain. Nurse Rachael never lost her patience with me. I hope I don\'t have to go back, but I\'m glad to know I have a place I can go to get such great care.',2),(259,'tasha d.','/user_details?userid=L5Gp3CV9WDFmk7RIH-5DdQ',1,'2017-05-22 00:00:00.000000','Review update: I just got the bill for this place and it is absolutely absurd. I didn\'t pay this much to have my daughter at memorial Hermann hospital! Some of my charges include $1,100 for 31 minutes of IV fluid. I went In for minor nausea and food poisoning like symptoms. Needless to say my total bill was thousands of dollars out of pocket and I have Aetna insurance through my employer. The charges were after insurance. I will definitely be speaking to the center as they Coded my visit as a level 4.',2),(260,'Aimee R.','/user_details?userid=aMHcIANSTrW90yOwFg6zwQ',5,'2017-05-21 00:00:00.000000','This place is awesome! The staff made it easy and took the stress away from our urgent situation. The lady at the front desk, Shaleah, was so sweet, the nurse, Rachel, and Dr Patel were kind and patient with us. The facility was clean and very kid friendly. Thank you so much SignatureCare in the Heights for being there when my family needed your help!',2),(261,'Tracy M.','/user_details?userid=iMQGUguK2xHTwaWwZVV4_g',5,'2017-05-18 00:00:00.000000','Very impressed with this clinic! We had absolutely no wait time and got placed in a room immediately. My husband had fractured his collarbone and while we waited for them to do x-rays they gave us a warm blanket and we watched tv. They also had snacks and drinks in the waiting room. Staff was incredibly nice and the entire facility was very clean. Hope not to have to come back, but if I do I know it will be a great experience!',2),(262,'Brad S.','/user_details?userid=ujdXr31XikLQ_xlldmucXg',5,'2017-05-11 00:00:00.000000','Almost zero wait time....that\'s why I chose them. I knew if went to a hospital, I\'d have been there for 4 hours without being seen yet.  Staff was friendly and caring, and Dr. Akunyili explained every step of the way. Couldn\'t ask for better service!',2),(263,'Crystal R.','/user_details?userid=IlIc0s1ySJefoep6mTRLpA',5,'2017-05-05 00:00:00.000000','Very impressed! The place is very clean and new. I can\'t tell you much about the waiting room because they got us in before I even finished the paperwork! The nurse was so friendly and sweet with my 9 month old son. She got his vitals quickly and even offered us water and a warm blanket. We waited about 5 minutes before the doctor came in to see us. He was amazing! He was so friendly and explained everything he was going to do to check our son before he did it, so we were prepared. He talked to him and acted playful, didn\'t just treat him like a patient. We were in an out of the place in 30 minutes! That has never happened at any ER before!This place is totally 5-star and I\'d recommend anyone to go to this ER if needed.',2),(264,'Jennifer G.','/user_details?userid=rGLNr74XqPGz92cMXIx17g',5,'2017-04-27 00:00:00.000000','I brought my 7 week old son here on the 10th at about 2am. Before my husband could finish filling out the paperwork they called us in. They immediately started checking my son\'s vitals and asking why we brought him in. They took x-rays, blood, and nasal swipe and within a couple of hours diagnosed him with RSV. We were told he needed to be admitted to the hospital. The staff at Signature were great even though my son is very young and tiny which they are not used to treating such young patients it didn\'t stop them from taking care of him. The nurses had to make their own splint for his IV since they didn\'t have tiny ones and it worked good enough to get him to the hospital. They took care of the whole transfer and the paperwork that I didn\'t have to say much to the EMT\'s that took us there and the nurses at the hospital were waiting for him when we got there. All went smooth and the total process from arriving at Signature to the hospital room was less then 5 hours! I will not hesitate to go there again if I need to.',2),(265,'Erin S.','/user_details?userid=6jQbKYKl0FYOt4o1isalsQ',5,'2017-04-25 00:00:00.000000','Went in last night around 8pm for a cold I had that wouldn\'t go away and come to find out it was bronchitis. Excellent staff from the front desk personnel to the doctor and nurses. Extremely helpful and personable. I was checked in immediately and was in and out within an hour and 30 minutes! A beautiful and comfortable facility as well, I would highly recommend this facility to any of my friends and family.  Thank you for the fast and wonderful care, I do appreciate it!',2),(266,'Sherrin A.','/user_details?userid=AgUWxg2StDYge7G6TH4RoQ',5,'2017-04-22 00:00:00.000000','My boyfriend got the works package. Phenomenal service, fast responses & answers! Thank you so much Dr Baester and your team. Clean friendly facility and Best service we\'ve ever had in a hospital setting.',2),(267,'Chinh T.','/user_details?userid=XiBRKegRwSvle7QJFgpY1w',1,'2017-04-09 00:00:00.000000','If I could no stars I would. I went there on March 29th. The doctor that treated me was Dr. Hashibul Hannann. He wanted to order a thyroid panel on me, I asked why because I knew I had hypothyroidism. He seemed surprised although I told the nurse and it should in my chart. Apparently he didn\'t read it. He sent off my blood work for more testing. It\'s been almost 2 weeks and no one called me to give me the results. So I had to call them. It really defeats the purpose of putting emergency in the name of your facility if they seem to take their time with everything. That\'s bad especially if you are trusting your life in their hands. Sad thing is, my insurance is paying for the care dispensed by Dr. Hashi-bullshit. I will NEVER go here again. Waste of time and money.',2),(268,'Nava S.','/user_details?userid=qxwO5hNDn5hphHDUnTdryw',5,'2017-04-08 00:00:00.000000','They took me in as soon as I came in and signed my paperwork. Very friendly staff and the doctor had great bed side manners. I was very pleased with my experience.',2),(269,'Lina M.','/user_details?userid=05wI7yQRQofdTyGm5aq_7Q',5,'2017-03-30 00:00:00.000000','Came here due to an allergic reaction and all the staff members were professional and attentive. They were very knowledgeable and informative of the treatment I was receiving and subdued my emergency promptly. All nurses and the doctor were very courteous and considerate. They were also very communicative of precautionary options to take as preventive measures. Excellent service! Very considerate staff!',2),(270,'Theo M.','/user_details?userid=ExDK8TX7dh9RuvpBsYvOJQ',5,'2017-03-23 00:00:00.000000','Amazing service and almost no wait. Everyone was very friendly and attentive. This is most definitely the best ER I have been to. I highly recommend it.',2),(271,'Alma A.','/user_details?userid=ZWwpH_8xz3Hy4zHPnWuBXQ',5,'2017-03-15 00:00:00.000000','No wait time which is a major plus for me. I have two small children at home so I wanted to see a doctor for my sinus infection ASAP.  I signed in, gave them my info and they saw me within the minute. During my visit I had to bring my two small children and the staff was very courtesy and patient with me. They gave my oldest child stickers and a coloring book to keep her entertained and my youngest was entertained with one of the free granola bars they had in the waiting room. It is an emergency room, so the rooms do look like it. But I rather go here and not wait than to sit in a doctor\'s officer for an hour. Well worth the visit.I was seen by DR. SOUMAN ASEM M.D.My nurse was Melissa Herring-Bass and the Front Desk Clerk was Janean Nylander.',2),(272,'Carla R.','/user_details?userid=An6oDLKb60skfwqbx0CmRw',5,'2017-03-05 00:00:00.000000','Everyone here from start to finish was so kind. I was seen within 10 minutes. The Dr. did not seem rushed and took his time when evaluating me. If I ever get sick again so quickly, I will come here. Best urgent care I\'ve been to.',2),(273,'Rebecca C.','/user_details?userid=05gOcXhez3qyAzUq70H0oA',5,'2017-02-24 00:00:00.000000','I came to this clinic today because my earlier visit with my doctor did not help me feel at ease. I came here and the front desk was so nice. The nurse was extremely nice and friendly as well as the doctor. The place is really nice and clean . The doctor was super sweet and knowledgeable and definitely gave me a piece of mind. I highly recommend this place to anyone that has an urgent need.',2),(274,'Greg C.','/user_details?userid=9L_lwpkusHfwZcNOAqGPjA',5,'2017-02-22 00:00:00.000000','Dr. Soli was prompt and attentive. Laurel, the RN, was top notch. While this is an ER, you may have options- particularly if your issue is not an emergency (mine was an ear infection and I didn\'t want to fight traffic to go across town to my family physician. No wait and the entire process was as good as I could have ever asked for. Highly recommend.',2),(275,'Sally W.','/user_details?userid=e9a9L0P4o3JGMpXxYYWovA',4,'2017-02-21 00:00:00.000000','Ok, initially I had a 1 star review. This info must have gotten out because they really stepped up their game. Initially they wouldn\'t let me uber home with my son after receiving pain meds. Then they offered to pay for an uber. The red headed nurse was amazing. She offered to take me home herself and brought my kiddo treats and a stuffed bear. Hopefully my sinuses feel better as quickly as their service improved. I\'ll definitely be back if I need to.',2),(276,'Hope F.','/user_details?userid=eOMue5OP2Q6xXHs5ChhgIw',5,'2017-02-20 00:00:00.000000','I wiped out on my bike right in front of this place! The staff was amazing! Friendly, professional, quick with the CT scan. The facility is clean and modern. And completely covered by insurance!',2),(277,'Christin S.','/user_details?userid=rluabQRowGPdcdmG6rfQ7w',5,'2017-02-17 00:00:00.000000','The staff was extremely helpful and personable.  The wait time was super quick and I was continuously checked on so I knew what was going on at all times.  My nurse was Raymund who was great and brought me a heated blanket.  The doctor was Dr. Thomas who was sweet, but at times did not seem to remember what I had told her previously making it seem like she was not paying attention.  However, she was good at explaining the next steps that I should take in the treatment process, if necessary.  Airianna was fabulous when checking me out at the front desk.  The price that I was supposed to pay was a fair amount higher than my copay; however, she helped me with the process and waived some fees!! Overall, great experience! The establishment was very clean and up to date!',2),(278,'Ankit S.','/user_details?userid=QO9hek7_kLcMGi4NCdCA4g',5,'2017-02-12 00:00:00.000000','Dr. Singla and the staff at SignatureCare were very friendly, timely and accommodating. It was a great experience and I would certainly recommend!',2),(279,'Tamika M.','/user_details?userid=7mN9EGLEQilAhvPIm-9Jlw',5,'2017-02-12 00:00:00.000000','The last place a sick person wants to be is in an emergency room with other sick people and getting a sick visit appointment with a PCP is ridiculously difficult nowadays. That\'s why I chose to go into Signature Care this morning. I\'m so glad I did. The aesthetic of the office is so pleasant and comfortable. I checked in with Mercy who explained the process thoroughly and in layman\'s terms. She was even kind enough to apologize for having to ask me questions because I could barely speak through my sore throat. I would have enjoyed some hot tea or coffee, but I called back almost immediately. My doctor was Nitin Singla and my nurse was Melissa B. Bedside manner was amazing. Melissa is so funny and helped me laugh with the two young men who took my vitals & cultures...even though I was madder than lil babies about. I hate that I don\'t remember their names, but I hope the facility sees this review and tells then thank you for me. I was in & out in less than an hour with a diagnosis and treatment plan. If a recommendation is needed by anyone I know, I would send them to Signature Care.',2),(280,'Sara B.','/user_details?userid=rKg1f2Q6Cjn3YEAIG9aqXA',5,'2017-02-12 00:00:00.000000','Super quick service -- had barely sat down before they were calling me back! The receptionist, Mercy, was so friendly and welcoming, as were the nurses and physicians that I saw. They had plenty of coffee, drinks, and snacks available for free in the waiting room too. Was in an out within about thirty minutes and the staff was thorough in addressing everything that could be wrong. Oh! AND they wrap you up in a warm blanket -- what\'s not to love about that?Could not recommend enough if you\'re sick or injured in the Heights.',2),(281,'Cindy H.','/user_details?userid=DmAHfq2q9MfOvRRkJIYe9w',5,'2017-01-22 00:00:00.000000','I walked in and was so impressed with the professionalism, cleanliness and caring individuals.   The staff and doctor were top notch.  They took vitals, listened and was very passionate.  I would highly recommend then for any type visit.  I will be back.',2),(282,'Chelsea F.','/user_details?userid=yTReesR_Zf-5ySqja0lMhA',5,'2016-12-25 00:00:00.000000','Great experience! Friendly staff and no wait! Was in and out quickly and taken care of with amazing bedside manners! Highly recommend!DR. Habacuc Diaz Garcia M.D. Nurse: Jackson, Nicole Front Desk: Saldivar, Dee',2),(283,'Devon O.','/user_details?userid=SYJ0ICDC8s_Bn1Sg5bmi4g',5,'2016-12-21 00:00:00.000000','Wonderful experience! The waiting area was very clean and the beverage fridge and snack tray was a nice plus. The staff was friendly and helpful, and the wait time was not long. It was nice to get a follow up call on my appointment as well. Highly recommend!',2),(284,'Mario V.','/user_details?userid=8VSylvbALXGg4okJdmOL6w',5,'2016-12-09 00:00:00.000000','Came in around 2:30pm and I was out within an hour. The doctor, nurses, front desk clerk and everyone who was there showed amazing service. I have never been to any emergency room or even clinic that has showed this much professionalism and care for a patient. It\'s one one of those places where you\'d want to go back and yet don\'t want to because you\'ll need a painful reason. It\'s definitely on top of my list and would recommend.',2),(285,'Lisa T.','/user_details?userid=m68-0bZAaAabNxF9zK_XIw',4,'2016-11-28 00:00:00.000000','I really want to leave a 5-star review.  The staff is beyond friendly, service was quick and efficient.  Our nurse, Holly, did a fabulous job and the facilities are spotless and even inviting.  Most likely you will have your best ever ER/urgent care/walk in clinic experience here.  So why the 4-Stars?  Because I was prescribed a ridiculously strong antibiotic Ciprofloxacin (part of the Flouroquinolone family of antibiotics--main toxin in them is Fluoride) with some really nasty side effects.  (My fault for not reading the box it came in, but there are two FDA \"black box\" warnings on it.)  I was not warned that this drug can cause permanent nerve damage after even one dose (per the black box warning) or lead to a ruptured tendon. When I came back in after two days on it, asking to have it switched, I was treated a bit suspiciously. Yes, the side effects i was having were weird...tingly/numb lips, tongue and toes; weird frenzied nerve action under the skin of my forearms, a leg that went rubbery, short term memory issues, etc. but I was asked about my \"other\" anxiety issues.  They did agree to switch meds, then kept saying that I must have had an allergic reaction to it.  Side effects like mine, and MUCH worse, are all over online.  I did not experience an allergy, but the direct result of fluoride poisoning.  Now I am working on detoxing from it.  I really wish that this medicine had been explained, and that I would have been offered an alternative.  Below, in the FDA\'s own words:\"The U.S. Food and Drug Administration is advising that the serious side effects associated with fluoroquinolone antibacterial drugs generally outweigh the benefits for patients with sinusitis, bronchitis, and uncomplicated urinary tract infections who have other treatment options,\" the FDA said in a Drug Safety Communication.',2),(286,'Chris M.','/user_details?userid=AtRhgwtAr3mY2U5KdS_p6Q',5,'2016-11-27 00:00:00.000000','The best experience I have ever had at a medical facility. From the moment I walked in to the time I checked out the Signature Care team provided the best customer service in a timely manner. Everyone was polite, helpful and concerned about making sure I was taken care of. Each step of the way they explained what they were doing and why. The doctor explained what was wrong and how he was going to treat me.  The nurses and lab technicians checked to make sure I was comfortable and if I needed anything. Once I had my exam and x-rays the team provided me with a folder of information about the two scripts I was given, my diagnosis and recommendations of 3 podiatrist I could follow-up with. Who does that?  They happily answered all my questions completely. They walked me to the front to check out and provided me with some parting swag. Unbelievable.  I highly recommend them if you ever need medical attention. OUTSTANDING, AMAZING and PROFESSIONAL.',2),(287,'Frances S.','/user_details?userid=7y2HtE_ylLJB3kLm22_gAg',5,'2016-11-23 00:00:00.000000','We came to signature care because my sister had a cough. They attended us very quickly. All the staff was very nice, Dr. Boester took care of my sister and they gave my sister a treatment. We were in and out quickly.',2),(288,'Raquel C.','/user_details?userid=tNk_hmrNAbRzTvvGB03BRA',5,'2016-11-22 00:00:00.000000','Excellent service, kind , tolerant care providers. Facilities in top condition and very fast to provide services. Thank you team',2),(289,'Maco F.','/user_details?userid=dT5QGhP0XB64b0XR54pHag',5,'2016-11-05 00:00:00.000000','Speedy and attentive service. I went in for back pain. The nurse and doctor took really good care of me.',2),(290,'Brittany B.','/user_details?userid=Yv16ifLBsS6fo8XUtSWq9g',5,'2016-10-27 00:00:00.000000','I was seen in less than 5 minutes and everyone I encountered was extremely attentive and kind. Would definitely recommend to anyone seeking efficient and attentive care.',2),(291,'Sasha A.','/user_details?userid=YReArpmiGUCiV2wCFYUAog',5,'2016-10-26 00:00:00.000000','I had a great experience at Signature Care emergency center. After being turned down a lot of places due to not having insurance at the moment. The staff here was very understanding and helping! Janean at the front desk was VERY welcoming and understanding she explained everything throughly and laid out my options where I understood. I highly recommend this place to anyone if you are looking for immediate care with no wait!',2),(292,'Stephen R.','/user_details?userid=gEmptT0cPhaDlXDiRmuHPw',5,'2016-10-04 00:00:00.000000','My experience here was unbelievable.  Within 3 minutes of walking in, I was admitted to a room.  Immediately, a nurse arrived and began assisting me.  Every step of the process was handled with the utmost professionalism.  No time to fill out the complete admission paperwork?  Not a problem; we\'ll get to it before you leave.  I saw the Dr. no less than 4 times during my 2 hour visit.  Every professional asked numerous times if we had any questions -- these people are willing to give you their most valuable commodity, their time!!  They tell you what they\'re going to do; why they\'re doing it;  when to expect it (e.g., I\'m giving you an injection on 1, 2, 3); and what you\'ll experience (e.g., this injection will give you a salt water taste in your mouth).  The diagnosis was spot on. They explained why the condition happened; what the treatment would be; and how to handle it in the future.  The facilities are brand new; unbelievably clean and comfortable; and clearly designed with the patients in mind.  When getting a CT scan, they offered me a heated blanket so I would be comfortable.  They were incredibly kind to my toddler and gave her (as a gift) a stuffed animal to play with.  They had FREE soft drinks, juice, sodas and snacks for my family while they waited.  There were TVs in each room with full cable, Netflix, etc.; very helpful when you want to be distracted (i.e., an injection).  They made sure we had each of their names and numbers before we left in case we had any questions.  I even received a follow up call the following day from the nurse to check on my status.  Folks, if you\'ve ever thought of going anywhere else, don\'t.  Just don\'t.   If you go once, you will never go to a hospital ER again. I have eternal praise for this facility, the doctors, nurses and staff.  Easily the best medical experience I have had, which is saying something when you don\'t feel well.',2),(293,'Alex S.','/user_details?userid=fQEbUX6y4qMYyOKw_-oHwQ',5,'2016-09-29 00:00:00.000000','I stopped by this center because I had been having some pain in my foot. The building is brand-new and everything is impeccable. I was taken care of immediately. The young woman at the reception desk is kind and speaks clearly. Both the nurse and the doctor were amenable, friendly and professional. I was wearing a skirt, so for my x-rays the tech immediately offered a sheet to cover myself. I did not even have to ask. To me this shows that these individuals are observant and proactive. While I waited for my results I was offered a nice warm blanket. I really think this is an excellent place and if I ever have any other minor issues this would be the place I would come to.The only thing I did not like, and which I think would be a good suggestion to this medical group, is that I walked out and I have no idea how much this is going to cost me.',2),(294,'Ella B.','/user_details?userid=F5aQXZXdl8_hSJMF9RLdyQ',5,'2016-09-28 00:00:00.000000','Everyone was very attentive and made sure I was as comfortable as possible. The staff is amazing and precise!! I was there alone and it didn\'t bother me one bit because they kept checking on me to make sure I was ok! Adam the radiology tech was so down to earth and explained all procedures to me before getting a CT scan!! You can tell he really loves what he do and I appreciate that so much. All in all I hope I don\'t have to go back since it is an emergency room lol but in the case I do, I will definitely come to them.',2),(295,'Jme M.','/user_details?userid=C6BRS4HHEP-LWs32AKX04w',5,'2016-09-20 00:00:00.000000','I didn\'t want to go to the emergency room and wait hours on end when I can be at home in pain, in peace. Where I\'m from all the emergency rooms are connected to a hospital, so it\'s always a drag.   But I walked in thinking it was an urgent care and walked out happy that it wasn\'t one.  I came in, in so much pain not even realizing the big sign saying emergency center. But I will say I\'m happy I walked into this place and didn\'t walk into an urgent care. Everything here was an A+. They got me in right away, the staff including the Dr. was pleasant, respectful, understanding, and caring. The lobby was big and clean, the room was big, privet and clean. The nurse always came in to make sure I was comfortable. After figuring out what was wrong, I was discharged with in 5 min. I walked in thinking it was a urgent care and nothing was going to get done, and walked out of a supper convenient emergency room with a smile on my face and good vibes. For now on this will be the place I run to when I have an emergency. It should be yours to.',2),(296,'Jerrica A.','/user_details?userid=mtRh2KrmtDh5uU0CQL6tog',5,'2016-09-20 00:00:00.000000','No one likes having to visit the ER! These guys made my experience as good as it could have been! The poor nurses had to deal with my irrational phobia of needles, and were very kind and comforting throughout the entire scary ordeal. They kept my spirits high and kept my mind off the pain I was in. I\'m very happy I went here rather than a hospital ER that would have charged me an arm and a leg just to park there! Thanks for your help guys!',2),(297,'Linda T.','/user_details?userid=B9rBamGky99I1eZK9MWffQ',5,'2016-09-14 00:00:00.000000','Um...so clearly no one wants to have to go to an urgent care or ER ever but if you did have too I highly suggest this one. Opened not too long ago and the service was amazing and best part is no lines. They really acknowledge the urgent need for medical care and try to treat and diagnose you immediately so that you don\'t stay in pain. Honestly this place was a real lifesaver, literally and I didn\'t even expect it. I can\'t say thank you enough to them because I might not have been here to write this review otherwise.',2),(298,'C J.','/user_details?userid=HrvqGcxZEJKbKuWBSLQfYQ',5,'2016-09-13 00:00:00.000000','had to utilize signature care late one night for an acute skin condition while visiting friends and family in Houston. The care I received here was truly exceptional.  Each professional--front desk, nurses, and MD all were kind, welcoming, and treated me with respect. My doctor (Billy Miller) was awesome. He treated my health issue efficiently and painlessly. I was in and out in no time. Great model of care!',2),(299,'Jennifer E.','/user_details?userid=CP_pL_jEfI0NIc3LJ2suAw',5,'2016-09-11 00:00:00.000000','Broke my little toe, waited 4-5 hours before finally deciding to call SignatureCare ER Center in Heights to make sure my Aetna insurance would be accepted and it was.  Was told I\'d have no-copay and responsible for 20% of the bill.The place is very nice inside and didn\'t have to wait but about one minute after completing short/simple paperwork.  Everyone there was professional and friendly.  Was put in a \'bayou view\' room with a TV, watched cyclists pass by on the bike trail during my short wait for x-rays, then Dr. Edwards took care of numbing and re-setting the bone, wrapping my little toe up next to fourth toe with a splint.  Glad to have this ER clinic so close to home and it\'s open 24/7 and way better than sitting in a miserable hospital ER for hours and uncomfortable seating.  Was offerered something to drink in the nice waiting room, treated very well.  Now I\'m just hoping the insurance/billing process goes well and this toe heals up correctly.',2),(300,'Emily P.','/user_details?userid=n8_lbaaoAiuz62DSx9usrA',5,'2016-09-02 00:00:00.000000','They took good care of my family. It was very clean and quiet - helped us feel calm during our visit. The staff was polite and helpful. We would recommend this ER/urgent care.',2),(301,'Christa R.','/user_details?userid=F-LysZEa4j8Y3XPuWRJsWA',5,'2016-08-29 00:00:00.000000','went at 1:30 am for my son, who ended up having strep throat.  the place was clean, the service was fast and professional, they explained everything well and showed much care for my hurting son (even offering him a popsicle).  i highly recommend this place and am so glad it\'s in the heights!',2),(302,'Kristin S.','/user_details?userid=ABAx8S_4XQehl7teZ5wBdQ',5,'2016-08-27 00:00:00.000000','Unfortunately my thumb had a bad run-in with our mandoline vegetable slicer while cooking dinner this past week. I used my left hand to do a quick check of Yelp reviews for nearby urgent care centers, and decided to visit this facility. I can echo all of the excellent experiences others have had here. Check in was smooth, the waiting area was comfortable, and there were plenty of snacks and drinks available. I waited about 5 minutes until the nurse called me back into the exam room and took a brief history. About 15 minutes after that the doctor came and saw me. Overall the care was wonderful. I felt like they did a good job explaining my options and getting me patched up quickly. We left to return home only an hour and a half after we arrived. Check out and billing were smooth, they provided a folder with my discharge summary and aftercare instructions. They actually called me the next day to see how I was doing. I couldn\'t have asked for a better experience! Hopefully I won\'t need to visit them again, but if I have an emergency I know exactly where I\'ll go!',2),(303,'Jenn M.','/user_details?userid=EiJiOZ7Lc1Xaooneq6dSrA',5,'2016-08-18 00:00:00.000000','After being sick for almost 2 weeks I decided after work to finally find a place to get seen. My doctor was closed and I saw this place was close to home and had great reviews-an urgent care with consistently good reviews that also consistently said \"no wait time?\" Yes please. The place was clean, huge waiting area, with pleasant staff, and a keurig (always a plus). My boyfriend and I barely got me checked in before the nurse, Chris, walked us back. Dr Vakey, Chris, and Lisa were all awesome! And the X-ray tech (I forgot his name) was really attentive too. They even offered us warm blankets while I was there having my tests and treatments done. I would definitely go back here and recommend it to anyone needing to see a doctor after hours. Best experience I\'ve had at a healthcare facility. Hands down.',2),(304,'Andrew L.','/user_details?userid=Lh43FPlsdGDGchiUTwF2mw',5,'2016-08-14 00:00:00.000000','They have quick service and are very friendly. Not sure I\'d like to say I would go back.. Lol but if I do have another injury in the future This will be my first place to go',2),(305,'Ashley W.','/user_details?userid=GF4VlJz0Xcx1Kdb8-TA0Nw',5,'2016-08-02 00:00:00.000000','The staff were very friendly and welcoming. They all made me feel comfortable and they truly listened. Great new clinic in the neighborhood! I highly recommend this clinic. It\'s a beautiful facility as well.',2),(306,'Courtney G.','/user_details?userid=BQF3q_zu3ZcIhkq0jB_qfw',5,'2016-07-29 00:00:00.000000','So grateful I live 2 blocks from this ER. They treat you like you\'re at a luxury hotel, you\'re in and out in record time, and the staff is great at what they do. I probably scared the hell out of everyone when I ran in, holding my 4 yr old while both of us were covered in blood. When I say covered, I mean like so much blood it looked like a crime scene. We were in the back with the entire staff helping out two seconds after we walked in. The first thing they did was clean him up, assess the situation (which looked way worse than it actually was), and then start treating him. Meanwhile, I was shaking so badly that I couldn\'t do anything. The front desk staff helped me fill out all the paperwork, and the nurse started cleaning the blood off of me. Once everything was settled down, then the doctor, himself, watched my kids while I went to the bathroom to clean up. I was terrified when we arrived, but by the time we left (which was only about 40 minutes later) they had taken such good care of us, physically and emotionally, that it was as if it never even happened. I honestly think the experience would have been much more traumatizing for my kids and i if we had gone anywhere else.',2),(307,'Kasey E.','/user_details?userid=QRxpJwUJ4AwjSnMdYoQb0Q',5,'2016-07-27 00:00:00.000000','Everyone was very nice and knowledgable. Got in and out in under an hour. Sadly, they couldn\'t help my issue but I\'d go back for anything else.',2),(308,'Katie G.','/user_details?userid=86DDZdxOT25TqsS82qbjWQ',5,'2016-07-06 00:00:00.000000','I am so thankful I found SignitureCare Emergency Center in the Heights!  The staff and physician were so kind, understanding and helpful!  I felt extremely grateful for there care.  I have had migraines for 16 years, so I\'ve seen my fair share of doctors.  At SignatureCare I was treated like a person and not just a patient.  I would go back here again if ever necessary!',2),(309,'Mary W.','/user_details?userid=9H7FnjQLXkLaS7iw8nFk3Q',5,'2016-06-12 00:00:00.000000','Signature Care has an amazing staff and they took excellent care of me!  There was no wait time and I was seen right away!  I\'m one of th u send people who hardly ever go to the Dr for myself.  I don\'t even have a primary doctor because I haven\'t had a good experience with any of the Dr that I have gone to.  When I had an emergency because my blood pressure was way too high I was desperate to find a Dr that\'s open on the weekend. I just happened to find Signature Care ER online and I\'m sure glad I found them because my friend had the same problem and she went to an Urgent Care on 1960 and was sent home without any medication and was just told to that she needed to go see her doctor. All the staff at Signature Care was very attentive and answered all my questions. They even had a program to help pay for my $250 ER co-pay!  I can\'t afford ER copay so they just charged me an Urgent Care copay of $75!  They are equipped with everything needed to take care of their patients. I highly recommend this place!  Dr. Michael Hehman, nurse Melissa and front desk receptionist Stephanie were very knowledgeable and attentive!  They even called me the next day you check up on my condition!',2),(310,'Hoda S.','/user_details?userid=0tW_34a6cAo40b0NMel7Ng',5,'2016-06-06 00:00:00.000000','I brought my husband in after he suffered trauma to his eye. At the time I was terrified, wondering if he will be able to see again and how that would affect our life. Drs. Golla and Ngo saw him immediately and not only took excellent care of my husband (he has his full vision back now) but also comforted me.The staff answered all of our questions and even called us the next day to check on my husband. This will be the only ER I use in the future! Great experience! Thank you Signature Care!',2),(311,'Monica S.','/user_details?userid=EqR4pvzIWkcCdNWxKVkLyg',5,'2016-06-02 00:00:00.000000','I had to go in for a sprained ankle in the middle of the night. I was immediately seen and the nurses, front desk lady, and Doctor were great. Even though it took a long time to get the X-ray results, the staff were very friendly and they offered us snacks. The results never came in but the doctor did not see a fracture or break. The nurse said she would call if something came up. Otherwise it was just a bad sprain. It\'s nice to have an urgent care clinic so close to our home. Great customer/patient experience!',2),(312,'Rachel H.','/user_details?userid=H783rqFVvlj0ddp7YSrAnQ',5,'2016-05-30 00:00:00.000000','Amazing! I had to go in a couple times to see them about an ear infection and every single time each person I encountered was so nice a accommodating - there was never a wait and always a warm blanket!',2),(313,'Bianca L.','/user_details?userid=Mv-5JY90vEpY0gZl_iHHFg',5,'2016-05-28 00:00:00.000000','Amazing amazing care! I went on a sat they took me in within 5 mins !! The receptionist was beyond sweet printed out and informed me about my insurance took her time to help me . Nurse was super sweet . The doc was very informative, nice, patient and took his time to see what was wrong with me! Overal I would come here and recommend anyone ! Ooooo and the facility was super clean! And up to date',2),(314,'Robert G.','/user_details?userid=N9JAkt8C7NcEzzLwjRH7Kg',5,'2016-05-27 00:00:00.000000','Great Place in great location. Front Desk, PA assistant and Doctor were very informational. Quick service, out in less than 30min. Will indeed return if needed!!',2),(315,'Amanda S.','/user_details?userid=SEiK1Jw5aWU-9O2aWlwvfw',5,'2016-05-24 00:00:00.000000','This place is amazing. I\'ve been twice and each time I was taken care of better than any facility I\'ve been to. My 17 yr old son has tremendous anxiety with hospitals and Drs due to a traumatic experience at Texas Children\'s  and this facility and Dr were so accommodating and amazing with him. Hope I don\'t need to, but if I have an emergency, this is where I\'m going.',2),(316,'D L.','/user_details?userid=jX2p4ClUOMWVdaTkZ2GciQ',5,'2016-05-04 00:00:00.000000','The doctor and the nurses were unbelievably kind and helpful. They were sympathetic to me and did what ever they could to make sure I was as comfortable as possible. Why anyone would not come here to get healed is beyond me. Dr.Grant was the best.',2),(317,'Malynda S.','/user_details?userid=8el2uWIHbbWaxG5QmnMckA',5,'2016-04-19 00:00:00.000000','The facility was clean, the staff was friendly and the nurse and Doctor were helpful and understanding.',2),(318,'Shelly B.','/user_details?userid=lAmsp4YkSAWV2Pb-nmMTrg',5,'2016-03-20 00:00:00.000000','I was seen within minutes. The staff was very friendly, caring and promptly assessed and treated my condition. Would definitely recommend to others and will be returning.',2),(319,'Ke Z.','/user_details?userid=gP-cdiiytezFbVPAVUrtEQ',5,'2016-03-18 00:00:00.000000','I\'ve used several SignatureCare ERs in the area. They are all beautiful facilities with all the essential medical equipment, not to mention extremely kind and experienced staff. The heights ER is no exception, and it\'s location is so convenient. I had to take my young kids there on a weekend when they weren\'t feeling well and the pediatrician\'s office was closed. There was no wait, the doctor evaluated and worked up my child quickly but thoughtfully. We left feeling reassured and with a detailed treatment plan. Can\'t say enough good things about this establishment. I would definitely seek their care again if needed!',2),(320,'Elizabeth A.','/user_details?userid=sKbzXEnaoOmnRus2RD9kYA',5,'2016-03-17 00:00:00.000000','No wait and great service by all. The receptionist, nurse, and doctor were all very efficient, understanding, and thorough. Facility was large and clean.',2),(321,'Michele W.','/user_details?userid=BI_xGdFrqkfmqyCVrdQ_Tg',1,'2020-06-14 00:00:00.000000','Horrible experience at their Stafford location. Worst ER or Urgent Care experience I have ever had. Go here only if you want to die alone in a waiting room. You will not be seen by a doctor. We have been here almost 5 hours and have only \"seen\" the front desk lady, who is incredibly rude and condescending. Go somewhere else. We came here for the \"rapid\" covid test....5 hours later, this has been anything but \"rapid\". Horrific experience sitting outside in the Houston heat of summer. Do not come here for medical needs. Do not come here for covid tests. This place is awful. The people are awful.',3),(322,'Tommy L.','/user_details?userid=vUOtIrgzTGlk3_CxpiPCMQ',1,'2020-03-10 00:00:00.000000','Signature CareSignature Care ER cut my three year old sons face. My son got three stitches for a fall that occurred on the stairs. Getting the stitches in his chin was smooth without much issue. The doctor was attentive and understood he was dealing with a child and took the necessary precautions to keep him calm and take his time.The disaster occurred when we went in for a follow-up to remove the stitches. Instead of taking the time and care to keep a three year old boy calm, the doctor rushed through the stitch removal process which terrified my son. The doctor didn\'t take the care to understand a three year old boy would be upset with someone tugging at his new wound. My son was screaming and flailing and the doctor still tried to remove the stitches with a scalpel. The entire situation felt rushed. He never gave him enough time to calm down. My son ended up with two cuts on his cheek. I don\'t understand how a veteran doctor could be so absolutely careless with a little boy. Now my son is going to end up with a scar in his face for the rest of his life because of the negligence of an incompetent doctor with a scalpel and lack of patience. This lack of care absolutely disgusts and infuriates me. We took multiple short breaks to let him calm down and each time he places the scalpel next to my sons face on the bedside. Each time the doctor rushed to start again. The doctor also suggested sedating my son before even mentioning numbing his chin. I\'m glad my wife stopped that from happening because the level of care I\'ve experienced here might have killed him with unnecessary sedation medicine and methods. How could they let this happen to my little boy? Now he\'s going to have to live with a scar in his face for the rest of his life. It\'s atrocious. They hurt my little boy with their carelessness and I need other parents to know. Don\'t go here. These people don\'t care. The only repercussion the doctor had was taking some extra courses for sutures. Going to Signature Care was the worst decision of my life.',3),(323,'Sue Ellen H.','/user_details?userid=jGSlMZGYL368TVAgsyIcHw',5,'2020-02-14 00:00:00.000000','Super friendly, fast, and efficient. So glad they are open 24 hrs and are close to the freeway. You never  know when you need to come in fast! Love them.',3),(324,'Josue V.','/user_details?userid=MOekZRT042grYuRYW7KWHA',5,'2020-01-17 00:00:00.000000','I came here to check up on some lower abdominal pain. As soon as I got registered I was tended to. Nurse Kayla and Jessica treated me well and asked all the right questions to know what was causing my pain. Dr. Smith treated me well with regards to my pain and advising me as to what could be the issue or cause of the pain. I got an ultra sound done and turns out everything is fine, other than what could possibly have been swelling. I was given medication in case the pain comes back and also given medication while getting checked up to ease the pain. Overall the Signature Care team works diligently to take care of their patients, I had no issues whatsoever and definitely recommend anyone in the vicinity to get care from this great team.',3),(325,'J.k. H.','/user_details?userid=-m_p4pOU9Sfz7RT7-120bQ',5,'2020-01-11 00:00:00.000000','This place is the best. The staff is awesome. I hate going to the ER but this place makes it not so bad.',3),(326,'Brenda A.','/user_details?userid=s6opoLdLWT-sMhqmB4cUsA',5,'2019-06-04 00:00:00.000000','Was treated at 2:30am for a minor issue. The whole process was really fast and easy. Very clean facility and the personnel was nice, helpful, and knowledgeable.',3),(327,'Alexandria V.','/user_details?userid=nvDLMLjnfoeXAwncL9rKZg',5,'2019-04-30 00:00:00.000000','I was nervous about having to go to the ER and expecting a long wait and stressed-out nurses. That was not the case at all! They saw me to the back very quickly and everyone - the receptionist, the nurse, the techs, the doctor - was very kind and  caring. Excellent bedside and patient care. If I or a loved one needed to be seen in an ER I\'d definitely recommend this place. Thank you for being wonderful.',3),(328,'Suzanne R.','/user_details?userid=skb1BoxSD_XqDOZWndnvWQ',5,'2019-01-21 00:00:00.000000','This is my first visit here. My husband and son have both been here, and had a positive experience as I have as well.  Clean, friendly staff, it\'s my new favorite place for urgent care! All nurses and doctor have a nice bedside manner. Also - CT and Ultrasound available onsite.',3),(329,'Aurora M.','/user_details?userid=_qIASRZvVaah91J0Nz1c1w',5,'2018-11-23 00:00:00.000000','Excellent Emergency room service,  from the moment we arrived at the ER we were greeted by Amy at the front desk. Very kind and helped make the check in process easier.',3),(330,'Gracie E.','/user_details?userid=V4c0qHqtQYqLiZw9hKuD0A',5,'2018-11-15 00:00:00.000000','Don\'t take your sick, hurt or injured loved ones anywhere else! I have tried other emergency places and they do not provide the care I received here. The warm blanket alone made me a true convert. They even made a follow-up call to check on me.',3),(331,'Jason P.','/user_details?userid=HLkL_EW2vZ8BFMuuHN1z8g',1,'2018-10-23 00:00:00.000000','BEWARE: I went here in December and told them that I didn\'t want any treatment that wouldn\'t be covered 100% by my insurance. They agreed and took good care of me for a couple of hours (I was very sick). After a couple of hours I walked out feeling better. I just got a bill in the mail for $2035. They billed my insurance $7000 and still want $2035 from me. I\'ll NEVER visit one of these facilities again.',3),(332,'Ivan G.','/user_details?userid=gMvWoG-O5lxnjaB6_YogSQ',5,'2018-07-14 00:00:00.000000','First time here and had a an amazing experience everyone from the receptionist Hayleigh and the nurse Ally to Dr. Smith everyone was so helpful and I was treated with care. Will be coming back again.',3),(333,'Jerry C.','/user_details?userid=IgB4AmdKKEcrymhuF1-gGg',5,'2018-06-27 00:00:00.000000','I was a patient at this ER last week and all i could say is that i received the best care and service.  The front receptionist, the technicians, nurse and Dr. Faig were amazing!  The service was really prompt and I got reassurance that my illness was not serious after my evaluation.  Thank-you!!',3),(334,'Buddy H.','/user_details?userid=GtFvN073VTghr5UlR1vvbA',2,'2018-06-19 00:00:00.000000','Hope you \" Talked \" to your employees ...... .And another problem ...... your postal mailed advertising cards say \" All Major Insurance accepted \"...... HA HA HA HA !NOT TRUE !',3),(335,'Erica M.','/user_details?userid=MhzqftKM7WQDV3sb_3D21g',5,'2018-06-02 00:00:00.000000','I cannot say enough good things about the staff here. I came in late on a Friday night and was brought back immediately and made comfortable. The nurses were very attentive and I saw the doctor as much as the nurses (which never happens). They had to call a tech in from home, but when she got there she was very happy and easy going. You would never know you just woke her up and made her come to work on a Friday night. Even the specialist they consult with should get 5 stars. When my doctor had to reach out to a specialist at 3 AM because he wanted a second opinion they called back very quickly and made me feel very taken care of. And can I say WARM BLANKETS, as many as you want. Seriously. Again great job to these people for making a horrible experience as smooth and as comfortable as possible!!',3),(336,'Marisa S.','/user_details?userid=rHhABVq5BPuKXXOGP1h68Q',5,'2018-04-22 00:00:00.000000','I took my daughter here today and she was seen in 5 minutes...instantly greeted with a smile and a warm blanket. Carissa was our nurse- she was very attentive and sweet. The doctor was informative, professional, and went the extra mile to make sure she felt comfortable and taken care of. Welcoming staff. The facility is immaculately clean. Free snacks, beverages, coffee, & tea available. We had a private room with a big tv & cable. They are amazingly fast- but we did not feel rushed in any way. Her comfort was a priority. After a chest x-ray and two breathing treatments, my daughter was discharged feeling 100 times better. The entire process from check-in to discharge was only 90 minutes. I highly recommend Signature Care.',3),(337,'Marco G.','/user_details?userid=amyI8G9QDpZr2zKuDKV4HA',5,'2018-02-19 00:00:00.000000','I\'m someone that does not go to the dr or hospital often but I was in extreme pain with a horrible infection in my nose. I searched on google maps place was 5 min from home and had great reviews... when I got there I may have been the only one there before I finished filling out the paperwork they took me back to a room. Carissa was my nurse and she was super sweet she\'s the only name I can remember but the dr was nice too! They kept my drivers license and actually had to go back and get it maybe they thought I wouldn\'t pay lol with no insurance my out of pocket expense was 175 and 15$/13$ for the two prescriptions seems expensive but for the level of service and level of pain I feel it\'s nothing!',3),(338,'Angie F.','/user_details?userid=CUaLH1e3Sr3eXXUe4f-PWg',1,'2018-02-18 00:00:00.000000','This was our first visit to this center and it was by far the worst service ever.  The nurses came in to give medicine for everything else but what we came in to be seen for and the doctor was MIA for 20 minuets!  No explanation as why it was taking so long and the nurses only response to any questions was \"I\'ll need to ask the doctor!\" Then what are you even working here for, just to pass out pills!I highly don\'t recommend coming here.    Is there an option for negative stars for a rating because that\'s what this place deserves.',3),(339,'Miranda G.','/user_details?userid=IbvivZlahkxbcAfIwWj8dw',5,'2018-01-26 00:00:00.000000','This place was amazing! On a Friday night, I only had a 10 minute wait until they took care of my kiddo. We pulled into the patient drop off area & 5 minutes later a nurse came out with a wheelchair to assist my son. Everyone was very polite, attentive, and knowledgeable. So thankful we found this clean and up-to-date 24/7 Urgent Care Center.',3),(340,'Amanda W.','/user_details?userid=Nng45yZaQ5sBoy8--TLFXg',5,'2018-01-12 00:00:00.000000','It sure was very helpful very thorough snd the staff wzs very nice and efficient. I would recommend this place to anyone may take care of me with care and made sure I was comfortable and they were very clear and help me understand everything that I needed to know about what was wrong with me. This is one of the fastest and best emergency care places I\'ve been to I love them.',3),(341,'Karen M.','/user_details?userid=CZDSC-qJFESaI3f4wJv0iw',5,'2018-01-07 00:00:00.000000','I went to signature urgent care for food poisoning and was treated with such kindness from the second I walked in until the second I left. Nurse Mark was amazing and made me feel very comfortable. Dr. Kimet had wonderful bedside manners. I would definitely go back! I even called today to get some follow up advice and help and Dr. Mark was so kind and made me feel like I was his number 1 priority. To top it all off, a police man walked me to my car (which was parked right in front) because it was night time and I was alone. Highly recommend this location!',3),(342,'Alan M.','/user_details?userid=aGHJIcj3-Wl5T7VswHMxxQ',5,'2017-12-26 00:00:00.000000','Caring & friendly staff,thorough exam, listened to my concerns, answered concerns w/o judgement, clean facility, convenient parking.  Christmas saved!  Thank you.',3),(343,'Margarita A.','/user_details?userid=gQ2pVjE12WwTOgfGRqkX5w',5,'2017-12-03 00:00:00.000000','No one wants to go to the ER. However, Signature Care was a very comfortable experience. The staff was professional, warm and friendly as soon as I entered the door. I was cared for promptly, x-rayed and stitched up in less than 1.5 hours. Dr. Smith, Carissa. Selina and the medical assistant (I\'m sorry I forgot her name) were excellent. Thank you all for your care!',3),(344,'Kristi W.','/user_details?userid=fPgWqdUTr5sVVsgBI-hnmg',5,'2017-11-28 00:00:00.000000','I cannot rave more about the care I received at SignatureCare Emergency Center - Memorial City! I unfortunately had to go in on Thanksgiving and I cannot imagine that\'s a very popular day to have to work at the ER but every single person I interacted with at SignatureCare was so kind, warm, caring, and just generally pleasant. From the sweet lady who checked me in, to the man who walked me to my room, to my two nurses, to my actual doctor, to the ultrasound lady. Truly everyone was incredibly kind and helpful! My doctor was not in a rush and answered ALL of my questions. They also worked very quickly and I was in and out in under 2 hours - THAT NEVER HAPPENS! My only regret is that I actually live in Austin and don\'t have this kind of care here but at least I know that whenever I\'m back visiting family in Houston, if anything should ever happen, I know the BEST place to go to be taken care of. THANK YOU to everyone at SignatureCare for the incredible care and for making what was truly a very scary experience, as comfortable as could be.My care team: DR. AKUNYILI J EDOZIE M.D. Nurse: York,Carissa  Radiology Tech: Brinsko,David  Front Desk: Ball,Cynthia Joyce',3),(345,'Michelle S.','/user_details?userid=pROBb9VlIvwoGoRio_gE3w',5,'2017-10-09 00:00:00.000000','Had an allergic reaction and was too worried to wait to see a PCP. Staff was super helpful and thorough.',3),(346,'Vadim P.','/user_details?userid=JVP2zyvevOap_x1J-Ct99w',5,'2017-09-24 00:00:00.000000','Excellent service. Very professional staff. Doctor as well as nurse and front office representative were very professional, took their time to make me feel comfortable. Great experience. Definitely will recommend to consider this place in case of emergencies. And big thanks to all of our healthcare professionals.',3),(347,'Carlos A.','/user_details?userid=m7Dv5hmJyZZ8sNZcQZcG4w',5,'2017-09-23 00:00:00.000000','Before Hurricane Harvey left he left behind a little present for some of us with all the contaminants left in the air. Unfortunately for me I ended up with bronchitis. Not a fun thing to have to deal with. By the time I finally realized that this wasn\'t just a cough that was being persistent I had developed severe bronchitis which is a step from pneumonia. I had checked with another clinic that I had been more familiar with to see if they could see me but they were closed so at this point a little desperate as I was beginning to realize this was only getting worse by the moment.  Did a search and found SignatureCare. From the time I walked in miserably to their follow up call with me earlier today service has been excellent. Staff was friendly and empathetic - explained what I had and got me on the path to getting back to my healthy self. Its probably not good if you are having to do a search for an emergency center but if you are in need of one and in the nearby area - without any doubt this is the place to go. I highly recommend them and will be going there as the need arises hopefully not anytime soon :)',3),(348,'Cree C.','/user_details?userid=8NAaFgbZdwyDNnRacWJJcg',5,'2017-09-12 00:00:00.000000','I had the most amazing experience at this urgent care facility!! Me and my wife came around 7:30am and experienced wonderful customer service all the way from the front desk down to the nurse!! They made me feel extremely comfortable and welcomed the nurse Carrisa and the front desk woman Cynthia were AWESOME I definitely recommend this place',3),(349,'Jodie H.','/user_details?userid=VPSI0dXkqkM154D-HuaGyw',5,'2017-09-07 00:00:00.000000','Great place!  Facility is clean and staff was great!  No waiting. Highly recommend.  Took the time to explain everything and make sure I knew how to care for myself when I left.',3),(350,'Uwa O.','/user_details?userid=g3lysCKtGKb7guv3JQ9d-A',5,'2017-08-25 00:00:00.000000','Very helpful, friendly, nice. Excellent services and staff. The staff did an exceptional job of making sure I was as comfortable as can be during my procedure. They are really accommodating. My experience was excellent and I will continue to make the trip to signaturecare in memorial city, I cannot thank them enough for all they have done for me.',3),(351,'Jacob M.','/user_details?userid=jBzl04tnoQC4AU3fEUoJuw',5,'2017-08-14 00:00:00.000000','I am very happy with my visit to Signature Care. Everyone was nice, the visit was very quick, and their prices are reasonable. I would highly recommend them.',3),(352,'Angela W.','/user_details?userid=C3O6HHnXbJBYItasEl0bUg',5,'2017-07-10 00:00:00.000000','I am so happy with my visit to SignatureCare. Every staff member I encountered was very kind, efficient and compassionate. I\'d prefer to avoid another visit to the ER but I\'d gladly come back here if needed. The facilites were very clean and the waiting room seating was very comfortable for my bad back. They also had coffee! I was out in under two hours. The hours leading up to the visit were stressful and miserable; I\'m so thankful for the attentiveness and kindness I received tonight.',3),(353,'Kristi C.','/user_details?userid=OKnccwwh3y7TmCPhQFpxag',5,'2017-05-09 00:00:00.000000','I visited SignatureCare for an x-ray and was in and out in under an hour. They took me to a room and were checking me before I could even finish my paperwork. The nurses, doctor, and x-ray tech were all very kind, attentive, and professional. The facility was very clean, quiet, and my son enjoyed the snacks in the waiting area. I would highly recommend this ER Center and wouldn\'t hesitate to return again if, God forbid, I have another injury.',3),(354,'Cindy C.','/user_details?userid=a7CunAv7n4lP_YKbsOcIzQ',5,'2017-04-28 00:00:00.000000','Nobody likes having to go to the ER, but if you HAVE to go, this place is the best of the best.  Friendly and compassionate; quick yet thorough.  As a patient, I was made to feel like my care was their utmost concern, and my family was treated with respect and courtesy during the visit.  I would highly recommend this location and the wonderful team to anyone needing their services.  These guys are rock stars.',3),(355,'Annie B.','/user_details?userid=7XhbWbp46E4VywzuyX09Yw',4,'2017-02-25 00:00:00.000000','I came to Signature Care on my lunch break for an injury to my right hand. It had been about a week since the incident, and I was unsure if it was broken. Finally I had enough with the pain, and went to the ER. The front desk staff were warm and welcoming, and helped me fill out my paperwork when I was struggling. Within 5 minutes, I was back and being taken care of. Everyone seemed so concerned, and happy to help. I was given a warm blanket, a Gatorade, and a snack before the doctor came. My hand was broken, but I was quickly put in a cast, and sent to the orthopedic Dr.  with prescriptions in hand. I hope I wont need to go to the ER again, anytime soon- but if I do, I know I\'m going to Signature Care. I wish I could go there for my regular appointments!',3),(356,'Bern A.','/user_details?userid=MQQ4r2eIA6lKWLn9azUQyQ',5,'2017-02-01 00:00:00.000000','My review is a little late. However better late then never. I\'ve been here a couple of times in the last couple of months (long story) and each time I\'ve been treated with the greatest team ever! Everyone made me feel as if I was important, and the entire staff were very knowledgeable, and helpful! I totally did not expect this experience to be as great as it was, and if this place wasn\'t an ER I\'d definitely be back just for a normal checkup! So thumbs up to y\'all! Appreciate it!!',3),(357,'Alicia J.','/user_details?userid=NOpThwzI2cs2fF1N0dvYGw',5,'2017-01-27 00:00:00.000000','The staff here is amazing. From reception to triage, nursing to the doctor. I was very surprised.  The level is treatment her is celebrity status. I would definitely recommend this emergency room to everyone.',3),(358,'Vilma A.','/user_details?userid=zTENcxg53SZUwbQFMZW3KQ',5,'2017-01-03 00:00:00.000000','Very friendly service! I will recommend them to everyone. Thank you Signature urgent care center !! Angie and C.Sandoval are awesome. Well honestly everyone were very caring and took good care of me . Dr.Ofer Faig made sure I left feeling better and that my pain was gone before he sent me home.',3),(359,'Bill S.','/user_details?userid=iC83ihWVxNPz-HP8jBHAIQ',5,'2016-12-27 00:00:00.000000','Just remember this an emergency care facility and not urgent care.  I was seen by the on duty MD within 10 minutes on arriving.  Everyone from the receptionist to the discharge nurse were friendly and efficient.  I will use again for an emergency.',3),(360,'Misti T.','/user_details?userid=_qnimDkA7bW7sK9HZNhqLw',5,'2016-12-08 00:00:00.000000','I arrived here after an appointment with Entrust which was located down the road, I at first wondered why Entrust had recommended this place instead of the other ER clinic which was in the same parking lot. Well after my visit there this past Saturday I realized why. SignatureCare Emergency Center was amazing. The entire staff was super nice and warm, they made me feel cared for and that we would get the answers to my health issues. They offered a blanket and when they brought it to me it was like it was fresh out of the dryer it smelled and felt great. I cannot recommend this place enough and if I ever need any additional care I will for sure return to them. Was a great experiance and feeling much better already. 10/10 would visit again :)',3),(361,'J B.','/user_details?userid=mydMR8sCcVdjNXbbFNCgSg',5,'2016-11-10 00:00:00.000000','The wait to get in to see the nurse was about 5 minutes and they were able to conduct all the tests that I needed.  They were very thorough, caring, and attentive.  It did take 4 hours to do all the x-rays, blood work, and scans, but I was able to get results at the time I was there.  I didn\'t have to wait for them to send information to my doctors (which often takes 1 to 2 days) to get back to me about the results. Thank you to all the staff at Memorial Signature Care! I didn\'t have to go to a hospital, slept in my own bed, and feel tons better today.',3),(362,'Helen T.','/user_details?userid=SOGB5hQHD4MDtNoUDO-7BQ',5,'2016-10-28 00:00:00.000000','Great place!  Brought my husband in for leg pain and the staff here is awesome! The guy at the front desk was friendly and once they brought us to a room the nurses and Dr. Golla were waiting to help. Multiple times they offered both of us a selection of drinks and warm blankets. Everyone is very attentive and caring. You can tell they like their job and want to make you feel better! The process here has been smooth and pleasant. I recommend this place to everyone. We will be back if we ever need their services!',3),(363,'Stephanie L.','/user_details?userid=75q1KDCruIOZQHtgHRGaag',5,'2016-10-19 00:00:00.000000','I was sent to signature care this past Sunday with very severe body aches, chills, nausea...etc. Since I just returned from Peru,I was concerned I might caught some virus. When I arrived, the front dest receptionist was very nice and we got through the paper work fairly quick , wait time was only 10 mins. As I went in, I have two nurses helping me and asking my symptoms. Mark was one of them. He was very approachable and patient, trying everything he could to make me feel less painful. Dr Garcia was also very nice , trying to explain the possible causes of my illness. I was originally traveling the next day but for obvious reason I can\'t anymore. They were very helpful providing dr notes that proves my condition is not allowed for travel. After a day, I received phone calls from Mark the nurse checking on me. It was a really great ER experience ! Highly recommended !',3),(364,'Lory M.','/user_details?userid=PdG-tODfscWQHjXzem0ddg',5,'2016-10-02 00:00:00.000000','The whole staff here was excellent. I had no idea what was wrong with me and was in tears. They had me diagnosed treated and on my way in 30 minuets. Now that is how it should be when you are in pain! I was very surprised at the setup and equipment they have. Full on ER. Great care.',3),(365,'Lile A.','/user_details?userid=v1PzyTVJ0vOOzQSMX2bTuQ',5,'2016-09-28 00:00:00.000000','It was a really good experience for my first time going to a ER will definitely go back if I ever again have a emergency everyone was nice and understanding and got me in really fast',3),(366,'Amber B.','/user_details?userid=FG3Jeq6omcxHgI40qgPkzg',5,'2016-09-27 00:00:00.000000','I\'m from Baton Rouge and ERs are a shortage there. I must say Im extremely impressed with the quickness and urgency the staff has at this facility. Also how much they care and show compassion to their patients. The staff is super cool and gives great information. Thanks Dr Smith and staff!',3),(367,'Xavier C.','/user_details?userid=POvmhQJUSLbeD80HFevYMQ',5,'2016-09-10 00:00:00.000000','My experience was excellent, I cannot thank enough the entire staff.  This is the best ER experience I have ever had. I walked in around 4am yesterday with severe abdominal pain. I am sure I looked horrible since the second the girl from the front desk saw me, she immediately called the nurse who rushed me in a room and started treating me right away. The doctor was not only very helpful and took the time to walk me through what he was doing, but also had great bedside manners.  At 7am, my doctor\'s shift and nurse staff ended and was introduced to a new doctor and nursing staff. The new staff was as amazing as the prior one, it was a very seamless transition.The new doctor was also very caring and personal and with excellent bedside manners. He took the time to walk me through the procedures I was going under and made me feel very comfortable at all times. Also, the nursing staff was excellent and very caring. In my case, they were trying to identify whether the source of my pain was abdominal or my heart. This ER center is well equipped with X-rays, CT scan, ultrasound, etc.  Given my situation, the ER doctor managed to get a cardiologist and a general surgeon to check me up and assist with identifying the source of my problem. I had to spend several hours due to all the tests I had to get done, and the doctor and nursing staff kept me comfortable and informed at all times. They even provided my wife with lunch and were very attentive to her as well.  After having all the tests done, the ER doctor was able to identify the problem and the general surgeon confirmed the diagnosis, I ended up having emergency surgery to remove my gall bladder a couple hours after. Not the way I was planning on spending my Friday, but very glad I went to Signature Care. Again, I cannot thank enough the entire staff the took such an excellent care of me. The doctors took the time to find out what was wrong with me and provide the proper treatment right away. Thanks to Signature Care, I am now back at home with my family recovering from surgery and getting ready for my vacation next week. I will definitely trust my life again to them if in need, hopefully not :)',3),(368,'Hang T.','/user_details?userid=0szA6dWeOpexEMyv5BOb0w',5,'2016-08-14 00:00:00.000000','They were amazing here! As soon as I waked in the front desk was super sweet. When I went to the back for them to take care of me everyone was very thorough with what they were doing and how they were doing it! They gave me very thorough details on how they were going to take care of me. Everyone was super gentle',3),(369,'Mike D.','/user_details?userid=ctlxdzW1sT4-63fAiWW6Pw',5,'2016-08-09 00:00:00.000000','Staff was exceedingly friendly and took care of my needs plus facility was comfortable, clean and had extensive capabilities.',3),(370,'E P.','/user_details?userid=jIf3DBe29W71nph7aRTrVg',5,'2016-07-28 00:00:00.000000','Doctor Kimball and his assistant are very professional and have a great sense of humor.  I will recommend everyone to visit this place in emergency service.',3),(371,'Phil R.','/user_details?userid=Kw4P_MSp7pyZ3mJNE_ViZw',5,'2016-07-15 00:00:00.000000','Very nice place, quick and comforting. The nurse and Doctor were very informative and nice and comforting. If ever I needed to return for any type of treatment (God forbid lol) I would be coming here',3),(372,'Halye S.','/user_details?userid=_rXO_wXz0TsuMXYvKdZikA',5,'2016-07-06 00:00:00.000000','They did a great job.  They were very nice and friendly and a ton faster than a hospital emergency room',3),(373,'Kathy S.','/user_details?userid=S8434dpRlvm016qspq3lqw',2,'2020-06-12 00:00:00.000000','When we went to the Stafford location, the service was great. BUT I had a lab test done-it has been 6 days and when I called, they still didn\'t have the results. I asked them to call the lab to check on it, and they refused. This is not what I consider good customer service. I now have to go to another facility to repeat the test & wait another 3-5 days. I am not please with the lack of follow up!',4),(374,'Krista K.','/user_details?userid=jaENIQVDoOax3TwLRxZX5g',1,'2020-06-05 00:00:00.000000','I had to literally give my self a day to calm down from my last visit. The most disrespectful treatment I have literally ever had and mind you I spent a week in ben taub but ben taub was like a god send in comparison to the rude and disrespectful doctor I encountered. I went in previously and the nurse called and said if not feeling please come back so we can check on you, being that I had trouble breathing I couldn\'t eat standing to take one step felt like training for the Olympics. I have 2 children so I do everything to live for them. First visit the doctor calls me \"insurance challenged\" I ignore the visit that was enough for me to write this to everyone I know and as well you strangers the doctor comes in notices my breathing and everything else and says \" you will have to pay for your drugs upfront if that\'s what you want\" I never once mentioned drugs I only mentioned my problem and if the asshole doctor looked over his notes he would know of all my visits I\'ve maybe allowed pain relief 2 times declining all others. I just want to know what I ca do speed up this process of healing to help my children get their mother back now if I die its it\'s because a doctor cared less about his out and dont forget not be insurance challenged when you go. I am a mother of two who couldn\'t afford medical insurance but try to pay my bills I got shot and had to take time to heal from that so It\'s not like I am rich.',4),(375,'Jony H.','/user_details?userid=TGryGSbsBr4ALcnhvhnDlQ',5,'2020-02-23 00:00:00.000000','Super quick and friendly staff; no hidden costs or fees. It is a free evaluation and they will let you know the costs of tests before doing them if you are not having a serious emergency. Doctor Nguyen was super honest and straight forward with what he recommended for me. By far the best experience, I\'m super grateful and relieved. He gave me a piece of mind. Would definitely recommend. 11/10',4),(376,'Mercy H.','/user_details?userid=RQzndUIlJCXElGuI-M2bTQ',5,'2019-12-28 00:00:00.000000','Between nurse Kristina, Dr Zhen and Dr California this couldn\'t have been a better ER stay. It truly is concierge service for the same cost to your insurance as a large hospital facility. From the warm gel for an ultrasound to an offered warm blanket, this place does things right when it comes to keeping patients comfortable during their stay. Not to mention, each staff member displayed great patient care and concern. I was never left unattended for hours or had to feel like I was just another number in a great sea of people to be cared for. They individualize patient care and do an excellent job at being attentive to my needs during my stay. I\'m extremely thankful for the staff and to the amazing people who have given patients (like myself) the opportunity to be cared for without waiting in a long line of sick people, or feeling forgotten about in one of the patient rooms. SignatureCare does patient care the right way and I\'ll never be seen at a different ER.',4),(377,'Akilah H.','/user_details?userid=Xx5bMO4LyVnPFkgW_i4w9w',4,'2019-11-25 00:00:00.000000','Brought someone here for a possible bone fracture or sprain. We were unsure what it was. Wait time is quick. See a doctor pretty fast. No issue with doing paperwork and signing in. The doctor we had was quirky and weird but did good as for as treatment options.',4),(378,'Ralphelle J.','/user_details?userid=BBjUnDpzY3_fqTfBRoO5eA',5,'2019-11-12 00:00:00.000000','Just Left This Facility & The Staff Was Amazing! I Enjoyed The Atmosphere. Dr. Dang Was Very Quick & Thorough Also Nurse Kristina Explained Everything In A Professional Manner.',4),(379,'Kirsten T.','/user_details?userid=byahVHROE6fuEp8VQ7Q3ZQ',5,'2019-08-27 00:00:00.000000','I recieved excellent service at the facility. Haleigh and Vivian were so kind and welcoming. I would recommend this location',4),(380,'Asia K.','/user_details?userid=8bFWgpI-MkIklRrB-2K-EQ',1,'2019-08-03 00:00:00.000000','I went in there yesterday at around 7/7:30pm and the lady in front gave me the feeling of as if my issue wasn\'t an emergency. She was busy on the computer mainly! I couldn\'t even stand up correctly because of my pain in my tummy and I needed to use the restroom. She asked if I could hold it until I fill out paperwork? Not knowing a person\'s situation, and you\'re telling a patient to hold something they cannot physically do? Isn\'t this supposed to be an medical center for emergencies? She says if the doctor doesn\'t find anything wrong the first time, they aren\'t going to prescribe it as an emergency.I came here before which is why I gave it a better rating the first time around. I thought about what was charged the first time I came.. if there were going to charge me $800 for them to give me an over the counter medicine  and a 10mg pain killer and charge me the same $800 for the same thing is not worth it!!! I will never go back again. Thankfully I found another place with better care and better prices!',4),(381,'Lana B.','/user_details?userid=HtT6XvOxWuUCU6I6Z_rSrA',5,'2019-01-06 00:00:00.000000','Fantastic emergency care center! One of the best I\'ve ever been to. The staff, nurses and the doctor are all very professional, prompt, friendly and efficient. The facility is nice and new too. Very impressed with the service and level of care!',4),(382,'Amanda L.','/user_details?userid=SG819QEynOIzsrDxSYKExw',5,'2018-09-04 00:00:00.000000','Treated my two year old son wonderfully.  Staff was very patient with him even though he was not the most cooperative.  Would definitely come back again or recommend to friends and family.',4),(383,'Emme R.','/user_details?userid=SrRK2vr6-Y3Xqe3-3Xvm6g',5,'2018-07-15 00:00:00.000000','We had an emergency and this ER office offered us a great service, every one from, techs, nurses and a great Dr Tran. We highly recommend this facilities. Just take a sweater because like all hospital they keep it cold.',4),(384,'Charle C.','/user_details?userid=icSs-fgEo-xyooxjjhhHUw',5,'2020-05-02 00:00:00.000000','My spouse and I cane in for the Covid-19 antibody test.  The process was well thought out and the staff couldn\'t have been nicer.  Audrey the RN was so nice and efficient.   I will be back if the need arises.  Also, I just want to give a special thank you to all the staff that was working behind the scene to make the experience so pleasant.',5),(385,'Alexis C.','/user_details?userid=WRLYiyWVlLPTxjVFwGtqTg',5,'2020-04-29 00:00:00.000000','Sita in registration was welcoming and quick. I was taken straight back to a room. Nurse Heather and nurse Candi had great teamwork, quick and were super nice! Carolyn was great and informative when doing my CT scan. Dr. Daniels was a great listener, friendly and thorough. I left feeling back to my normal self. Highly recommend this emergency center!',5),(386,'Lhundon D.','/user_details?userid=TT1TlYyOOIdW53R1WiAJWg',4,'2019-12-08 00:00:00.000000','Dr. Diaz was very nice and understanding and took great care of me, Alexis was my nurse she was super sweet very tentative, the staff overall is respectful and very helpful and the facility is very nice and clean.',5),(387,'Andrew C.','/user_details?userid=GjuyhwxpMmrtWoNLkCs5IA',5,'2019-06-30 00:00:00.000000','The ONLY place to go for emergency medical care!!! Beautiful facility that is extremely clean and very modern with the most caring and friendly staff I\'ve ever encountered. They took amazing care of my grandfather when we took him there while he was in town visiting for the holidays. I wouldn\'t go anywhere else in the area!! A +++',5),(388,'Kasey S.','/user_details?userid=RlxVJxniM9zpjlpevOftbQ',5,'2019-06-28 00:00:00.000000','Was very surprised by how friendly and kind the staff was here. We brought our one year old because he gashed his head on the table. The room he was given was so cute for kids and even had a tv for cartoons. They were very friendly and calm with him even though he was crying and didn\'t want to be still. The building was clean and nice.',5),(389,'Sarah G.','/user_details?userid=kiHby7Jotm24QDM3SB32LA',5,'2019-06-16 00:00:00.000000','I was actually quite shocked when I went to review this Urgent Care and saw only 1 review for 1-Star.  (P.S. there are more reviews for this place on Yelp  BUT for some reason they are listed under \"not recommended\" even though they are positive reviews... BUT if you desire to read tons more reviews, do a Google search. There you will find a more accurate rating. Currently they have 197 reviews with a 4.8/5 rating.)Anyways, here is the review I left on Google (with some extras I just added):Wow! What an AWESOME experience! We came in on a Sunday morning around 9am. Wait time was maybe 5 minutes! I couldn\'t even start the paperwork it was so quick! The facility is BEAUTIFUL! It\'s modern, new and clean! The reception area is comfortable and has plenty of seating. The actual triage room was set up for kids. Fun Disney characters adorned the walls. There is a refreshment area in lobby with the juices, water, coffee and assorted snacks (goldfish, crackers, fruit snacks, etc). This was an unexpected and delightful surprise. The staff here are AMAZING! I can\'t sing their praises enough. So friendly. So caring and they are awesome with young kids. My daughter\'s 5 and they eased her fears. Dr. Pham was wonderful, nurse Lisa V. was excellent and the receptionist Jocelyn was warm and inviting! My daughter was scared and nervous to be there. The nurse could sense that and gave her a cute cuddly teddy bear to ease her fears. It was a nice touch! Hopefully we don\'t NEED to come to an urgent care but if we do, we are definitely coming here! Thanks for everything Signature Care!(Not sure what the bill will end up being. Hopefully not too bad like the other Yelper published.)',5),(390,'Margaret S.','/user_details?userid=mKuPyPZRAxf-LgPRAVKWpQ',1,'2019-06-13 00:00:00.000000','STAY WAY AWAY!! I went to this place after hours of violent vomiting. I was there 3 hours. One of the techs seriously hurt me because he could not hit a vein and then was very abusive when I asked for someone else. They billed me well over $10,000 for a stomach bug. I should have just suffered at home. You could have had surgery for less than this. Care was not very good and then they will rip you off. Just go to the emergency room or die. DO NOT GO HERE!!!!!!',5),(391,'Kerrie N Victor M.','/user_details?userid=ccMQXmTzVVc2gBEAshQU1A',5,'2019-12-14 00:00:00.000000','Brought my son in for upper respiratory problems and he received great care. The staff and Dr. was very friendly and he was seen in a very quick fashion.  Anytime you need a quick care I recommend coming to signature care emergency facility.',6),(392,'Daniel J.','/user_details?userid=mMFbNEmWpv1M2BShPvKBfA',5,'2019-11-09 00:00:00.000000','Always excellent service. Low wait times. I really appreciate how much personal care they put into helping every time we\'ve had to come. It\'s the only ER I ever want to visit if we have to.',6),(393,'Lisa B.','/user_details?userid=EPBgd7txvtbPAEgbZO5-aQ',5,'2019-05-10 00:00:00.000000','I\'d much rather be writing a review for a fabulous bookstore or restaurant but this weekend we needed an ER so I wanted to share the experience with y\'all. My hubby had been fighting a sinus infection for several days and this morning admitted he had lost the fight. We aren\'t from the area so I googled area walk in clinics. The reviews really had me dreading dealing with any of the clinics in Odessa. Then we noticed that this place had excellent reviews (over 70 five star reviews) but it sounded like more of an emergency room than a clinic. I decided to just call and ask them if they treated issues like my husband\'s. The lady I spoke with was very professional and kind. She said that they did treatment for anything that a walk-in clinic or emergency room did. Then she texted directions to my phone.Once we got to the office they had us fill out just a few papers and we were in the back being treated in about 5 minutes. The doctor really listened to us. Everyone from the front desk to the nurses to the doctor was very friendly and professional. My husband has heart issues and the staff took the appropriate precautions for his condition. The office was clean and modern. Not at all like the Petri dishes that some walk in clinics are. We will definitely keep this place in our GPS and phones when we\'re in the area!',6),(394,'Chris G.','/user_details?userid=JC208osx0TIv7wbqp1yfMg',1,'2020-06-15 00:00:00.000000','This place has ZERO concept of time.  On Friday I came in at 12:50 for a COVID test and told the wait was approximately 4-5 hours.  I came back at 5:00 and was told someone should call me within the next 45 minutes.  I came back in at 6:30 asking about the status and was \"moved up\" in the line and told it should be a few more minutes.  I was finally called at 7:15 to take the test and told results should be back in 30 minutes.  At around 9:10pm I still hadn\'t been called for results. I went to the front desk and asked for my drivers license so I could leave.  The guy at the counter just handed me my results, which I was actually grateful for.I don\'t know where these other reviews are coming from but the entire time I was there I witnessed several other people going through the exact same thing I was, which was having to go up to the counter to get any sort of idea on what was going on.  I tried to be patient and understanding since these are healthcare workers dealing with potentially sick people all day and not go up to the counter every 10 minutes, but they need to learn to give reasonable expectations of time. My Human Resources dept recommended that I come here for this COVID test however I made her promise not to send anyone else from our company here.  The amount of time I wasted was unacceptable and I made her promise not subject my colleagues to the same.',8),(395,'Farzad P.','/user_details?userid=nwxF0IiaGEE06IPzo3730g',1,'2020-06-13 00:00:00.000000','The rapid covid test is a lie. Showed up at 9am was quoted 1 hr wait by dismissive staff, only to pay 3 1/2 hours later(Waiting in the sun outside) at12:37pm. In which I was quoted to wait another 30 mins to finally get tested... over two hours after I payed I was called to come in for testing the process took more than an hour after I showed up! All in all I wasted 6 hours of my day here.... I will be driving up everyday to let the poor people being lied to the truth about their wait times',8),(396,'Madison R.','/user_details?userid=zGHth6fwTuza7CLQYawNRg',1,'2020-06-10 00:00:00.000000','Do not go here.  The staff is rude. Front desk woman mean and acts like she doesn\'t wanna be there and has No answers... went in for  what I thought would be a quick coronavirus test ended up waiting over an hour in my car with no idea how long I would be sitting there.',8),(397,'Karyn E.','/user_details?userid=zKWe4QaixtcQhIGgNf0sgw',5,'2020-05-19 00:00:00.000000','I put Crazy glue in my eye instead of eye drops. I went to the ER and was put in a room within five minutes. I was so embarrassed, but Dr. Miller made me feel at ease. He was compassionate and caring and took excellent care of me. The nurse was just as nice as he could be. I would definitely go back, such a wonderful experience',8),(398,'Shunte C.','/user_details?userid=8xGa63y410Ayq9qUYEnkjQ',5,'2020-05-03 00:00:00.000000','A couple of days ago I had to come to the facility and I have never been to an emergency room that was so quick and pleasant. The staff including the doctor was amazing. They made an unpleasant experience pleasant. The staff including the Dr gave exceptional customer service. I definitely will come back if I should have an emergency again.',8),(399,'Cordelle W.','/user_details?userid=4eEhIKrucpwcxDeTigOrFw',5,'2020-03-16 00:00:00.000000','They did a great job and helping me get better with my breathing treatment and I\'m highly impressed with how professional of the staff. They all welcomed me in with respect and care. They are fast pace and focused on helping me get better! I\'m satisfied with all of the members: Karen, Mackenzie, Ricky, MaryAnn, and Ybarra!',8),(400,'MeLiss L.','/user_details?userid=iywFnS4NDcOgvjp3J2RhTA',5,'2020-02-18 00:00:00.000000','I was so happy I chose to go to SignatureCare Bellaire. From the moment I walked in I was welcomed by all the team members behind the desk. Ashley helped me through registration and thoroughly explained everything. Yasmina, Blake and Rick were wonderful and made me feel so comfortable and Dr. Tran was so kind and thorough as well. As nervous as I was, they made it such a great experience. Dr. Tran diagnosed me, gave me all the options I needed and explained everything I needed to know. Should you need care, I highly recommend this location!',8),(401,'Cicely B.','/user_details?userid=xWsaUCVnDbtYDlT_jWJJzg',5,'2020-02-05 00:00:00.000000','I\'ve felt terrible for a few days, but as soon as I walked into Signature Care\'s Bellaire location I felt the first day of hope.  Delicia was warm, friendly, empathetic, and efficient.  My nurse Duke and Dr. Cavazos assessed and diagnosed me, while making sure I was comfortable throughout the process.  I highly recommend this team for your urgent care needs.',8),(402,'Karen C.','/user_details?userid=DVAlXIISYVuNn6aaMAlTgA',5,'2020-01-25 00:00:00.000000','Wonderful experience, everyone was welcoming and sweet. Dr YbarraNurse RollieRad tech NataliaReceptionist Stephanie',8),(403,'Melia M.','/user_details?userid=Lf5ZiOebY1wyHD_PsiJFNA',5,'2020-01-14 00:00:00.000000','I came in at 10:08pm and was seen immediately and treated  with great care. The staff, Stephanie in registration, Dr. Daniels, Nurses Rollie & Leslie, Radiology Tech Natalia, were all amazing and friendly. I hope I won\'t need their services again but if I do, I\'ll  come here. Oh and if you\'re self pay they\'re very reasonable and they have payment plans. Thank you all very much you\'ve put my mind at ease.',8),(404,'Terrika T.','/user_details?userid=sx1pke9r6veCeLRSav8z4Q',5,'2020-01-14 00:00:00.000000','Leslie, Rollie, Nantalia, and Stephanie were all absolutely lovely & awesome.  I arrived in so much pain and they were quickly attending to my needs while making me comfortable at ease. I highly recommend them as your er!',8),(405,'Robert B.','/user_details?userid=RFHiDtlDIOaOlXurImtPXg',5,'2020-01-11 00:00:00.000000','Incredible overall healthcare experience. The staff, nurse, technician and doctor were so friendly, attentive and competent.  I don\'t know why anyone would put themselves through a traditional emergency room process unless the circumstances of the trauma dictated.',8),(406,'Jay C.','/user_details?userid=TejcjnA7tqiLOf8Eg6EJkw',5,'2019-12-31 00:00:00.000000','Got into a bad car accident last night and ended up having to come here to get an X-ray and make sure nothing was broken. The staff were very kind and helpful with my needs. MaryAnn was very helpful at the front desk and the nurse Rollie and Yasmina were superb! The radiologist Natalia was great and Dr. Guharoy was very clear and helpful.',8),(407,'Lauryn R.','/user_details?userid=Tw2oTaNrt7BCxyvijOcLMg',5,'2019-12-31 00:00:00.000000','Came into this Emergency Room after my brother got into a car wreck and the staff took splendid care of us! Very friendly from the moment we walked in. It wasn\'t very busy so we were brought into a room immediately and were seen very quickly. Shout out to Dr. Guharoy, RN Rollie, Mary Ann, Natalia, and Yasmina. Excellent staff and they were all very attentive. We will come here first again for any future emergencies.',8),(408,'Chad R.','/user_details?userid=ArxCgicfCudMvHj38MTyGw',1,'2019-11-19 00:00:00.000000','First off how do you have an emergency room where you have a nurse walk by the desk and look at you and go into a clearly empty room and never say anything. Come out. Look at you again and still say nothing.  And you have to wait for someone to come to the front desk to get help. My husband came here 3 weeks ago and it was smooth and stressless. Yet here we are again and this time at 630 pm. It\'s now 655 and we are just getting our paperwork. The woman that is checking us in. Who for sake of her I won\'t drop names. Oh wait she didn\'t even answer me when I asked. Has been rude and everything else but helpful. She said \"I need your IDs and insurance.\" And we gave them to her. Standard protocol. First thing out of her mouth in such a questioning manner. \"Oh, you don\'t have a Texas id?\". Like that really matters in an emergency. We are both being seen and I said \"No\" Our drivers license is from North Carolina. Cause we moved here\" and she just looked at me. Then went to wrlooked up and said\" Did I give you my pen\" and of course I looked at her as of saying, well I didn\'t remember to bring my own. She then proceeded to express to my husband that he had to go ahead of me for some reason to get into a room and that she couldn\'t let us go into the room together. But after we both independently expressed that as our wish we are both being seen. Bottom line. If you can wait till after the shift change do it. Cause she just ruined my whole outlook on this place',8),(409,'Dainyeille B.','/user_details?userid=7R7NlKBkoTivAFR_9oNlpw',5,'2019-09-08 00:00:00.000000','I wasn\'t feeling well but was very reluctant to go to the emergency room because the wait and experience is hardly ever a pleasant one. This was my first visit here and I was very impressed. The lady at the front desk was very welcoming, nice and knowledgeable. The check in process was quick and smooth and I was almost immediately given a room after I finished my paperwork. I really liked the doctor and the staff. The longest part was waiting on my X-rays but that was expected. Everything was thoroughly explained from start to finish. Kudos to the staff at this location for seamless service!',8),(410,'Tyra W.','/user_details?userid=2SVTRco1huXad1oDXayBQA',5,'2019-06-12 00:00:00.000000','Dr. Spangler, Duke-nurse, Amy-registration and Waldo- rad tech we\'re very friendly and helpful. They made us very comfortable. From check in to check out the service was great.',8),(411,'Alissa H.','/user_details?userid=MUOVYVPl-kcBTUmVCkUl_w',5,'2019-01-06 00:00:00.000000','Everyone here was lovely! I came in because I was having heart palpitations and I wanted to get it checked out. I got into an exam room immediately and the staff was friendly and listened to my concerns (better to get heart stuff checked out). They have a lab and x-ray facilities onsite, so I was able to get answers quickly!',8),(412,'Allison E.','/user_details?userid=dmF-h9ABHesDVJu0Ppci1w',5,'2019-01-01 00:00:00.000000','This ER recently opened and is within 5 minutes of my home in Bellaire.  My husband was treated there last weekend and I can\'t speak highly enough about the staff and quality of care.  From the moment you walk into the beautiful facility, you are greeted by friendly staff and quickly escorted back to a room to be treated.  My husband ultimately needed to stay overnight and they went out of their way to make him comfortable, even bringing him a plush robe, toiletries, etc. They brought our kids coloring books and snacks.  The nurses were all very kind and responsive.  The doctors were compassionate and communicated very well to keep us informed of what was going on.  While no one ever wants or expects to be needing emergency care, this would definitely be top on my list of places to go.',8),(413,'Michele W.','/user_details?userid=BI_xGdFrqkfmqyCVrdQ_Tg',1,'2020-06-14 00:00:00.000000','Horrible experience. Worst ER or Urgent Care experience I have ever had. Go here only if you want to die alone in a waiting room. You will not be seen by a doctor. We have been here almost 5 hours and have only \"seen\" the front desk lady, who is incredibly rude and condescending. Go somewhere else. We came here for the \"rapid\" covid test....5 hours later, this has been anything but \"rapid\". Horrific experience sitting outside in the Houston heat of summer. Do not come here for medical needs. Do not come here for covid tests. This place is awful. The people are awful.',9),(414,'Eric R.','/user_details?userid=lGyfYnGOVNIc8wG7A5hr0A',3,'2020-06-14 00:00:00.000000','Came in for a COVID-19 test. It was very busy at 8am and I knew there would be a good wait. (4-4.5hr)But after seeing the doc 1:25p. I was told 15-20 minutes to get the results.I was also here with other coworkers and none of them waited less than an hour for the result. Yes it\'s a rapid result test but be honest and say 60-90 minutes and we\'ll out with you for the result. Currently 2:25',9),(415,'Karen C.','/user_details?userid=DVAlXIISYVuNn6aaMAlTgA',5,'2020-05-31 00:00:00.000000','I went to signature care around 11:30pm due to asthma complications. I was treated right away, everyone was extremely kind, and I was discharged in a timely manner and feeling a lot better. Thank you Sibienne, Shobha, Dauwald, Marcia, and Dr. Goss',9),(416,'Betty O.','/user_details?userid=MKVrtygV7ra2BKDYs_X1Xw',1,'2020-03-18 00:00:00.000000','Please stay away from this place. They are a bunch of crooks. They will charge you up front and bill your insurance a crazy fee. I\'m still getting mail from my insurance company for a flu check.',9),(417,'Clarita T.','/user_details?userid=ywT7B_ycx3bGL1xZPl9wJQ',5,'2020-03-12 00:00:00.000000','I came to ER today because my son Stepped on a nail. We were in and out and the staff was very helpful.',9),(418,'Norva S.','/user_details?userid=gBPP-fmGofdmuQQaCbFxNw',1,'2020-02-07 00:00:00.000000','My husband was brought in with an infection.  They gave him antibiotics, instead of the white blood cells going down to normal, they went up, and he died. His nurse told me that during the night he had to go home and check on his kids,  My husband died while  the negligent nurse was at home instead of being available for his patient',9),(419,'Sherry C.','/user_details?userid=kRIZEt2-Q3h1qsWj5J54EQ',1,'2020-01-06 00:00:00.000000','1/9/20 Response to owner comment: LOL- first I was misled with your billing/fees. I was told I would be contacted and was not. I filled out survey and again not followed up. I write a review and now I have to contact you?? Nah...I\'m not chasing you all. I feel like you all should be the ones to reach out to me to fix your issue/mistake. Original Review:My son had a sprained wrist he had been complaining about for a few days. I decided to get it checked out and called SC. I spoke with Adell and he was excellent on the phone. He told me my son would be seen and then I would be quoted a price and decide if I wanted to proceed. He assured me nothing would be charged without my consent. I took my son in and was there literally less than 15 minutes. No one at any point consulted me about prices/charges. When I walk out to checkout, the receptionist told me it was $300!! I asked her to get me Adell and she said he was not even on site. Luckily I redialed the number and he answered. I told him what happened and he agreed that I was not properly informed. He asked to speak to front desk and then they decided that a manager would reach out to me (Tara). I was then asked to fill out a survey, which I did expressing my dissatisfaction. No one ever followed up with me. This incident happened in October and I just now got a bill in the mail for $300. This company was very deceptive to me and absolutely unprofessional. Beware.',9),(420,'Lilly A.','/user_details?userid=r8QGOW5J47PdVGVxMLOOGg',5,'2019-10-13 00:00:00.000000','Very Clean and very friendly staff. Brought my boyfriend here late night. This is the only emergency room in Stafford that is not like a Methodist ER. We got checked in and in a room in less than 5 min. ALOT quicker than if we would have went to a major ER Hospital.',9),(421,'Mackenzie J.','/user_details?userid=eTJK-IB-AOOBNzVw_oL68Q',1,'2019-06-11 00:00:00.000000','Small update to this. Signature Care refunded our copay $250 amount which I guess is nice since they didnt do anything anyway. But they still billed our insurance which is now denying the claim. So now we are supposed to pay $900!!!! Who are these crooks and how do they operate a business like this???',9),(422,'Joseph O.','/user_details?userid=zUX7oc6oV536dz7vexKPyw',5,'2019-05-06 00:00:00.000000','Our son was recently taken care of due to a kidney stone at Signature Care and all I can say is that they took care of him as if he was one of their own children. Admittance was immediate and service was excellent. I truly must state again that service was excellent. This was from the front desk to the doctor, the nurse and the full medical team. They explained everything from the beginning and constantly updated us on the latest progress. I\'d like to say that when an emergency occurs, the last worry should be the trivial things and they made sure that those things were not any worry at all.',9),(423,'Tito M.','/user_details?userid=g9z_-3KfT5w0H0vTK1jQyw',1,'2019-03-25 00:00:00.000000','I step in at this clinic juts because it was around the corner but I totally regretted wasting my copay of $250 Juts to be attended by a \"nurse\" that doesn\'t know anything. I saw the doctor for a Max of 3 minutes and her diagnosis was \"I don\'t know\" what you have.... are you serious? I understand that  doctors won\'t know exactly what a person has but at least give a more reasonable explanation.By the way the just check my blood pressure and never my body temperature. But they did gave me a warm blanket that\'s does nothing.Be aware of visiting this place unless you have the extra money to just waste it.Why charge people for doing nothing ? I wish I could  get my refund !! That\'s just taking advantage of others, I should just google it which was more helpful then this place...',9),(424,'Patti G.','/user_details?userid=9NIUkDFrV5mwiHg0tgHfqQ',4,'2019-03-08 00:00:00.000000','Doctor has average for patients, I think the security guard cared more than the doctor. Front staff was great and Gus was the shit.',9),(425,'Brent C.','/user_details?userid=i-ArGfE5UzCgpNSB60Bmqw',5,'2019-01-30 00:00:00.000000','5 Stars. All the way!I\'ve visited this location 2 times. When they say no wait time, they mean it! I wasn\'t even finished the short paper work before they called me back.Staff is amazing, we were actually greeted at the door. They have an understanding for patient care that is unmatched.I\'ll say a bit more about this most recent visit. I went in for some serious dehydration, with vomiting and lower back pain.Within 10 minutes of arriving they\'d already gotten me back, Chris our ER tech, Trisha our Nurse and! Dr. Sylvestor had already been in to talk with me.Within 20 minutes of arrival, they gave me IV fluids and medication.We had to try a couple of medications for the pain, but they knocked out my vomiting right away. This was after an entire day of being sick every 20 minutes. I walked in feeling quite bad, and I walked out of there feeling like an entirely different person. No pain, no vomiting. Dr. Sylvestor spent a long time, explaining and breaking everything down in ways that were super easy to understand.I truly do believe the staff cares about every person they touch. I walked out feeling amazing!The treatment, the care, the bedside manner is just impeccable. The lovely Trisha also spent a long time going over the before and after numbers from blood work.Chris\' bedside manner was the best. He\'s quick, gentle and he made being at Signature Care a lot more comforting, they all did. I wasn\'t able to thank everyone enough.',9),(426,'Marilyn T.','/user_details?userid=qcTSz2eq1BlKSkL3aM69_g',5,'2018-10-07 00:00:00.000000','Excellent care The doctor and nurse very professional I would highly reccomend. My family visits the location multiple times always the best care',9),(427,'Yesenia R.','/user_details?userid=8ZEK4Z8HHDRSiq1tp621hw',5,'2018-09-04 00:00:00.000000','Great Dr! Explained everything to me. We arrived late at night and they did everything in a timely matter. I\'ll defiantly be back.',9),(428,'Kelli F.','/user_details?userid=SwA0aBzzJukK7v1doiDJcA',4,'2018-07-17 00:00:00.000000','The Dr. Singla and staff were very attentive and caring. They come and check on you to make sure are taken care of and they do the utmost to make you as comfortable as possible. This is my go to place for emergency care and I would highly recommend it.',9),(429,'Dman S.','/user_details?userid=vuGr73LDPQomORUqUKVbkw',1,'2018-07-17 00:00:00.000000','They are very slow to have over 15 or more workers. It\'s very small. Plus the wait with 10 or more people will have a waiting period over 5 hours long not good.',9),(430,'Paige T.','/user_details?userid=x56BFYIQ5yyWgEc7NXGhpQ',5,'2018-07-16 00:00:00.000000','I went in last night and was helped right away, no long unnecessary waiting. Everyone was super helpful and told me exactly what was going on with me. My doctor was Adam Boester and he was extremely on point with timeliness and gave me all the right things to do in order to help what was going on with me. Also, the place was very calm and clean, you can defiantly tell that it was well taking care of and that\'s the most important thing to me about hospitals/doctors offices. I would definitely chose going here than any other place.',9),(431,'David A.','/user_details?userid=fo6Ia5FOYkIfNOvvyCh_UA',5,'2018-05-06 00:00:00.000000','I went on a Saturday had a messed up knee for about a week they took care of me right away everybody there was super nice / x-rays & ultrasound I would definitely go back again all top-of-the-line equipment knowledgeable nice people thank you doctor and staff',9),(432,'Dubble A.','/user_details?userid=nalA0IxCWrxGgJmzr_889Q',5,'2018-02-07 00:00:00.000000','This place is amazing! The receptionist, Sibienne, was extremely friendly and checked my little one in quickly! Dr. Evens was very thorough and made sure my 3 year old was comfortable and happy (he even smiled at her the entire time). Raymund, our nurse, was very nice and patient with my son as well. Given it was very late at night, when it was time to leave, my son and I were escorted out to our car to make sure we safely in our car! It says a lot when my son says \"Mommy, when are we going back to see the friends at the doctor?\" Kuddos to SignatureCare ER and thank you for truly being concerned about my 3 year old and taking excellent care of him!',9),(433,'Pearl S.','/user_details?userid=8tYnL1CyDI12UF_dXW0Rvw',5,'2018-02-07 00:00:00.000000','This emergency center is very nice , great staff. I was very pleased with their care for my loved one.  They were helpful with cost and even sent my loved one a get well card signed by his care team post his appointment. I would recommend them to the locals verses the other surrounding emergency rooms . THIS IS NOT AN URGENT CARE IT IS A FULL EMERGENCY ROOM. Read your insurance card properly for the correct copay so you know difference.',9),(434,'A A.','/user_details?userid=81uWUUNbqllBGQbPO72kzA',4,'2017-12-28 00:00:00.000000','I was immediately seen however i would\'ve given 5-stars if my pain was addressed right away. Staffs are friendly and approachable.',9),(435,'Doe D.','/user_details?userid=SpIaJ6DXAnNm_Gw6-QKZ2g',5,'2017-11-13 00:00:00.000000','I\'ll try and keep this short and sweet.  On Thursday the 9th I woke up with a slight headache and back pain I didn\'t think anything of it...throughout the day the pain started to get a little worse.  I thought to myself...maybe I slept wrong.  So, I\'m at work on my grind.  Later that night The fam and I go to my nephews football game.  A nice cool wind chill had just pushed through my body was slowly starting to shut down.  Again, not thinking anything of it I simply say to myself take a nice hot shower and go to bed early.  I did just that and after a hot shower I felt great!!!  Well, Friday morning I wake up.  My headache is even worse!!!  I took some quick pain meds and was off to work.  Throughout the day my back pain gets even worse.  I finish the day go home take a nice hot bath and immediately after I take some Motrin!!!  I wake up feeling fantastic.  I go back to work on Saturday...two hours in Im ready to call it a day.  The pain is simply unbearable from an excruciating headache to extreme back pain.  I go home ready myself for another hot shower and this time take a serious shot of NyQuil.  I knock out and at exactly 3:35 a.m. I feel as though someone has just hit me in the head repeatedly with a hammer or a bat!!!  I knew I had to get up and take care of this immediately!!!  I had heard from several people and even drove by this emergency care facility on several occasions.  Believe me when I tell you that this is by far the best place I have ever been to for immediate care!!!  Starting with the administrative staff Jocelyn up front!!!  She was very informative over the phone and in person.  The other three care providers that blew me away were Allen whom took excellent care of me and Informed me of every little action in extreme detail.  Then there was Pam my nurse!!!  She went above and beyond the scope of caring for me.  She too explained every move she made in extreme detail and leaving no question I asked unanswered.  Last but not least of course was Dr Ding...handling me with extreme care and making sure I was extremely comfortable for an excruciatingly painful procedure she was about to perform on me.  We shifted about five time before we both found our comfort zones to do my spinal tap!!!  I am extremely grateful to those who had informed me of this emergency care center.  More than anything I love that I didn\'t even feel like a patient.  It was very intimate and comforting to the point where I felt like I was in my bed at home and family was taking care of me!!!  THANK YOU ALL SO MUCH!!!  BEST CARE I\'VE EVER HAD!!!  At the request of Dr Ding and Nurse Pam I was instructed to find a primary care physician but I\'d much rather come here than to any PCP!!!  I highly recommend this emergency care center!!!',9),(436,'Marquetta W.','/user_details?userid=KT1JV2-rT75YOtk-vQZ5eg',1,'2017-10-09 00:00:00.000000','I sought emergency treatment on 10/7/2017 for anaphylaxis ( my throat was closing).  I was greeted without a smile by a Hispanic nurse Brenda. P.  I was directed to a treatment room where the nurse started to obtain a medical history.  I started answering the question but became angry and started yelling \"My throat is swelling, don\'t you think that it will be better if you give me a steroid shot first and then ask me the questions.\" I had tears running down my face and this nurse could have cared less.  Her response \"Yelling isn\'t going to help; I can\'t do anything until I get some information from you.\"  Dr. Hehman came into the room after hearing me yelling and said: \"We can give her a Solu-Medrol, go ahead and give it to her.\" The nurse hesitated to get the medication and took her 5 minutes to give me the medication.  When she returned to the room I was sitting on the bed shaking; she was nice enough to ask me if I wanted a warm blanket and went to retrieve it which only took her less than one minute. She then gave me the injection.  She didn\'t give me the call light.  The doctor checked on me twice, which was nice.  The last time that I saw the nurse was when I was checking out.  She briefly went over my medication and led me to the waiting room.  I felt as if was I being kicked out.  She did say anything like \"I hope you feel better, or thanks for choosing Signature Care Stafford.\"  The nurse lacked compassion and empathy.  There were many other urgent care facilities that I could have went to, but I chose this one, and I deeply regret it.  I am RN and have worked in the ER.  I always treated my patients as if they were VIP.  I greet them with a smile, have them change their clothes and put on a gown, I make sure that they are comfortable in the bed and provide them with a warm blanket, and I make sure that I give them the call bell.  In my case, I would have assessed the patient allergies and immediately asked the Dr. for a steroid order.  I would have given the medication, and then I would have obtained the patient medical history, and given him/her paper to write their response so I wouldn\'t  aggravate their symptoms?  Since when is documentation more important than patient care?  Is this what nursing has come to documentation first, care second?  If so, then this is a disservice to patients such as myself, and changes need to be made.Comment by a RN who is very disappointed in the healthcare system.',9),(437,'Thi T.','/user_details?userid=bIbVecTrOSOqfnQ7afiwfQ',4,'2017-08-16 00:00:00.000000','Went in today and filled out very simple paperwork. Before I could even finish writing my name, they paged the nurse to call me into the room which is just like an emergency center hospital room. A nurse named Brenda and a nurse\'s assistant named Titiana asked me what brought me there and took my vitals which was about 10 minutes. Waited about another 5 minutes before a doctor named Dr. Habacuc Garcia came to see me to address my concerns. I took away one star only because the doctor wasn\'t exactly sure what was causing my issues and believes it to be a fungal infection of some type. So I got quite a few prescriptions for my ailments and was told to come back if symptoms did not improve or if it got worse. I didn\'t feel confident about my diagnosis because I felt the doctor didn\'t feel that confident himself saying that it \"might\" be a fungal infection. But then again I was just glad to get some type of assistance because every doctor in town was booked or way overpriced. I\'m crossing my fingers that all the medicines I was prescribed will get rid of whatever is causing my issues. The place is newly built 4 months in and everything is very sanitary and clean. I also was scared they would charge me an arm and a leg but my visit was in the $$$ which is a lot but they do offer payment plans which helps a ton when you don\'t have insurance and are self pay. It would have been much more expensive at a regular hospital. Brenda was especially sweet and very caring. Staff was very attentive and checked in on me to make sure I was ok. Total time there was a little over an hour and I was on my way home. Would recommend if you have an emergency and don\'t want to wait!',9),(438,'Tamika I.','/user_details?userid=svi-sbsBcvFuzN3KFSgH_Q',5,'2017-07-16 00:00:00.000000','Dr Sylvester Craig was very nice and helpfulI was there almost 2 hours they offered me food and drinkHim and nurse Brenda were awesomeHe really made me feel comfortable',9),(439,'Therese C.','/user_details?userid=hDhZR0B2seKLcHEU-N8Z5Q',5,'2017-07-10 00:00:00.000000','As soon as I walked in, the young lady at the front desk, Jessica, took note of my hives and immediately called a nurse to take me back. She had my husband fill out the forms for me and got my little boy a teddy bear and a warm blanket.I was seen immediately by Lia, the nurse, and she took me back to a room for my vitals. She asked a few questions and grabbed the doctor on her way to grab the IV stuff for me. Dr. Daniel was very friendly and efficient. I was given medicine right away and they grabbed my husband from the lobby for me. I got a warm blanket and the observed me for a while.Overall, everyone was very friendly, efficient and the space was clean and modern. I would absolutely recommend coming here!',9),(440,'Marilyn C.','/user_details?userid=jDPkJtfRL6dG-6tooDrz-A',5,'2017-07-05 00:00:00.000000','My Signature Care Emergency visit was wonderful, even though I was not feeling well.  The location was very easy to find.  I was seen right away and my care was thorough.  My care team was awesome. Thank you DR. TRAN, TRAN M.D., Nurse: Conrad,Jerry Clifford, Front Desk: Rojas,Jessica Rae Sanchez, and also the fellow (I forgot his name) who did the CT scans.  At my follow-up appointment, my regular doctor was also impressed that they provided me with copies of all the tests results and medications prescribed.',9),(441,'Carsyn F.','/user_details?userid=KJfCbZ9viKMuPumN3I2dkA',5,'2020-06-12 00:00:00.000000','Chris and Lisa were amazing! The whole process of getting tested was seamless! This team rocks!',13),(442,'Ian V.','/user_details?userid=UKlwd6PLwSj2LkQ3cdjFxg',5,'2020-05-29 00:00:00.000000','I came in to get stitches for a work related incident, all employees were kind and professional as well as personable. Also gave a gift card on the way out. I would recommend, easy-quick-painless. Thank you',13),(443,'Gabriela A.','/user_details?userid=Vg_GH9NqbCJ34qFGooMZiA',5,'2020-05-20 00:00:00.000000','My baby fell and cracked her head open during Coronavirus. Not only was I terrified of the fall and if she had a concussion or needed stitches but was scared to go near or in a hospital. We choose SignatureCare Emergency. My husband and I couldn\'t be more grateful for the Dr., nurses and staff that took care of our girl and treated us so well. They made us feel calm, welcome and safe. Thank you a million times. We recommend SignatureCare Emergency to anyone in need. Take care :)',13),(444,'Cody C.','/user_details?userid=I1Oi-Dxb_yAaDOS8HLAoVw',5,'2020-05-15 00:00:00.000000','I want to start off by saying this was the quickest trip to the ER I have ever had. The entire staff was kind and compassionate, also had some good chats with Nurse Gabe while I was waiting on test results. For now on I will recommend this ER to everyone I know. These people care about you!',13),(445,'Ashley C.','/user_details?userid=lnbRZrOei4CF0kZ-J6ROcA',5,'2020-04-28 00:00:00.000000','I came here and the process was seamless. Got checked in outside for a COVID screening. I was the only one in the waiting room, handed over my insurance was taken to a room immediately after. Everyone was extremely nice and helpful. They made me feel at ease (aside from my extreme pain). If you\'re in an emergency situation that urgent care can\'t cover, id definitely recommend coming here.',13),(446,'Cara C.','/user_details?userid=zKQYkh8JowqVMN1Z8VyBBg',5,'2020-04-25 00:00:00.000000','Came in with some back pain at about 9pm. They gave me some paperwork to fill out and got me into a room before I could even put the pen down to write something. Everyone was very kind and quick, making sure that I was super comfortable. Dr. Elsbecker listened to everything I said and made sure to address all my concerns. I really appreciate everyone who helped me here to get in and out as fast and comfortable as possible.',13),(447,'Annika W.','/user_details?userid=RrhtGI4uvhg_WzFmKWKXng',5,'2020-03-17 00:00:00.000000','Christina R, Christina C, and my doctor Elsbecker were awesome, I came in with a persistent cough and they gave me a chest x ray, and a warm blanket! I was seen super fast and everyone was so kind! I definitely recommend coming here if you aren\'t feeling well!',13),(448,'Lauren W.','/user_details?userid=vF1319BQAbzvNqzQmKK87Q',5,'2020-03-08 00:00:00.000000','Honestly, as a healthcare professional myself, I\'m weary of the stand alone ERs, but was pleasantly surprised. The entire staff was kind, helpful, timely, and knowledgeable. Christina, Kathy, Kate, Katherine, (and everyone who I couldn\'t remember their names) and the MD were all wonderful. Hope I never need to return, but if I or a friend do need an ER, this is where we will be going. Thanks again!Side note: to those who give places less stars due to billing, this is the cost of healthcare in the US. Yes it\'s unfair and ridiculous even when you have insurance and get stuck with the bill. Vote and advocate for change. Don\'t complain on yelp. This is the state of our healthcare. It\'s absolutely insane and will continue to be until we change it. Thanks. Rant over.',13),(449,'garrett l.','/user_details?userid=t_SNpYVPpCtqehEZIWmMlg',5,'2020-03-05 00:00:00.000000','This Emergency Room is awesome.  They get you in quick without having to wait long.  In addition, they really explain your treatment plan.  They were also incredible nice.  I would recommend this group.',13),(450,'Roxy N.','/user_details?userid=o5jN76-90lhUNfG-jCFgfg',2,'2020-03-02 00:00:00.000000','This ER is incredibly clean, new, and comfortable. The staff is great, thorough and kind. HOWEVER, I urge you to PLEASE be careful using this facility with regards to insurance. I am very confused about how the other patients of this facility have had such a great billing experience. I had (recently moved out of the state) some of the best insurance in the state of Texas, and was left with a $6,000+ bill (after insurance!) from SignatureCare. There were several months of back and forth between my insurance company and SignatureCare, in which my insurance company (again, one of the number one providers in Austin), explained that although SignatureCare claims to accept all insurance providers in the state and cites a Texas State law that prohibits insurance companies from refusing to cover the bill, I had still used an out-of-network ER and would not be fully covered. After the back and forth came to an end, SignatureCare reduced my bill to $1,500 and stated they would give me a discount if I paid the bill in full. I am of course thankful that the bill was cut down to only $1,500, but had I known I would be dealing with all this back and forth with a \"freestanding emergency center,\" I would have visited a hospital that was within my insurance coverage. Was the experience and service great? Yes! Absolutely! Just please be careful and do your research with your insurance company if your situation is not life-threatening like mine. I completely take responsibility for using an out-of-network ER for something that was not life-threatening, but all of the information I received at the facility led me to believe I was covered. Instead, I am stuck with a $1,500 bill.',13),(451,'Mallory S.','/user_details?userid=PHMORi6k_jEHFz-bfRrZdQ',5,'2020-02-24 00:00:00.000000','This place is fantastic! No one enjoys being sick, especially on the weekend. But Signature Care took great care of me and my husband. When we walked into the door, we were greeted by Aileen. She was so quick and efficient! We probably waited 5 minutes before we were called back. My technician, Linda was so kind and thorough. Also, she\'s great at starting IVs! Next we saw our nurse, Adam. He was amazing. So friendly, encouraging and definitely made the situation not as tense. Lastly, Dr. Leung was fantastic too. Very thorough and made sure my concerns were taken care of! It\'s rare to find this kind of service (from start to finish) at the big hospitals in town. We will always consider Signature Care as an option in the future.',13),(452,'Brittnie H.','/user_details?userid=Uds_hH_k81LvuZL70X6agA',5,'2020-02-20 00:00:00.000000','Absolutely outstanding service! Came for a kidney stone and was taken almost immediately. Staff is SO FRIENDLY and kind. Dr Lingon was exceptional! Would recommend',13),(453,'Shaunda H.','/user_details?userid=sTtYGUzWGuwlDYx1-dxu5g',5,'2020-02-19 00:00:00.000000','I was thoroughly impressed with the fast service from this establishment I checked in with Aileen and filled out paperwork and was seen all within 45 mins. I was having some sort of allergic reaction or rash that Dr. Elsbecker assessed and treat immediately - he was perfect! The dream team he brought with him consisted of Adam my nurse who administered a shot in my tushie I barely felt. Chris and Drew were awesome in asking question and taking my vitals. I was comfortable and the warm blanket made my visit even better. Highly recommend this place and the care they provide! Thank you SignatureCare!',13),(454,'Jason F.','/user_details?userid=v10xptm5sl0n_rSTuEy2WA',5,'2020-02-16 00:00:00.000000','Woah I can\'t say enough good things about this place and these people.  We just took our 4 year old as she was struggling with a cough and a fever for about a week.  After a few regular care visits she seems still pretty bad today so we took her to SignatureCare.Luckily it was not busy and we were seeing a doctor within 10 minutes.  Everyone was crazy nice, nurse and tech Marty and Andrew were great, and  Dr. Lingan was outstanding.  They were great with our little one, and made sure we covered our bases, answered all our questions. and helped us catch some early pneumonia.  The facility is great with everything on site, and we even learned you can stay overnight for many cases instead of going to larger hospitals, as they are a full ER center that covers most major emergencies.Anyway we would definitely recommend it and it will be our first choice in the future!',13),(455,'Jaclyn T.','/user_details?userid=uQBbVydKOmpuijmI49jNZw',5,'2020-01-17 00:00:00.000000','Walked through the doors and was greeted by the registration tech, Earl. I\'m someone who gets extremely nervous when visiting any type of medical facilities. Greeting me with a smile somehow calms me down a little. I filled out the paperwork and gave him my insurance. Prior to arrival at the ER, I called to make sure that this facility was in-network with my insurance. He assured me that it was and I will only have to pay $100 copay. I sat down with my boyfriend waiting to be call to the back. It was a fairly short wait, probably around 5 minutes (granted we went in on a Tuesday night). As we walked towards the back, I remembered my boyfriend asking the ER Tech, Chelsey, if it was ok if he tagged along and she responded \"If she is comfortable with it then that\'s fine!\" That was actually a different experience for me, it made me felt even more relaxed knowing that the ER staff wanted to make sure I felt safe and at eased. I got into the room and was asked \"What\'s the reason for the visit today?\" My dog bit the corner of my lip while we were rough playing, which was why I came. She then proceed to ask me a series of questions while my vitals were being taken. Once that was completed, Nurse Katie came in to examine the situation of my lip (It wasn\'t a big deal to me, but it was for my boyfriend). She took a look at it and told me that my wounds are already healing, mind you, this incident happened Monday night. I knew I didn\'t have to go to the ER! Nonetheless, it helped relieved some stress off of him.I was told the doctor for the night was Dr. Lingan, and he would be in shortly. Dr. Lingan arrives and was super friendly and approachable. He informed me the cut was not infected it was starting to heal. But since it was an animal bite, he had to prescribe me an antibiotic. He applied some septic cream onto the wound and gave me extra so I could take home. Yay free stuff, that\'s always a plus! Once the examination was completed, Nurse Katie gave me a folder with information regarding my prescription and instructions on how to clean my wound. She gave me some extra Bactracin to take home as well. She walked us to the front desk so we can end our visit and head home. I was only charged the $100 copay which was written on my insurance card. I had a great experience at SignatureCare! All the staff took great care of me and I felt like I was in great hands!',13),(456,'S S.','/user_details?userid=dGe5_I1nipasXEyIYJ_MWA',5,'2020-01-13 00:00:00.000000','Nurse Ashli and Dr Miller were great!  Registration was simple too - thank you Aileen and Jennifer.Had a great experience here today with my 4 year old daughter.  The nurse and doctor were so sweet and caring.  My daughter had been traumatized by the flu the last few days, wouldn\'t take medicine and then burst her eardrum from fluid in her ears.  We brought her to SignatureCare then (after a referral from a close friend that loves this place).  I have to say, the nurse blew bubbles to distract my daughter, while playing Paw Patrol, while giving her Oreos.  I mean, I\'ve never seen my daughter happy at a doctors office before!   These people are saints and know how to interact with children.  The wait time was nonexistent, the nurse and doctor were extremely knowledgeable and friendly, even though I act like I\'m a doctor sometimes.We will certainly be back (hopefully not soon, but at least we found our place to go in emergencies).  I will never go to dirty St David\'s hospital again.   I haven\'t gotten the bill yet so I can\'t speak to that, but everything else was perfect.',13),(457,'sara e.','/user_details?userid=VX__uJWz74VFZ-0s9kyd1w',5,'2020-01-12 00:00:00.000000','Dr Jones, Christina, Chris and Shawnda made our unfortunate trip here so much better than any doctor or ER trip!!! Shawnda is SO friendly and helpful & Dr Jones was great with both girls!',13),(458,'Claudia A.','/user_details?userid=QuWSAWEAS70KYQkaGjOzHg',5,'2020-01-01 00:00:00.000000','And starting the new year not so great, I have been feeling bad for days and thought it was a normal cold that would run its course. Well it was not . It was strep, I am so so grateful for the service and care I recieved from Dr. Elsbecker and Katie  it was agreat experience, they were very clear with all the info and I can assure if I ever feel bad I will not wait 5 days in pain to feel better, I will come and get help',13),(459,'Carly P.','/user_details?userid=Fysz3TQ59rYto81SmiCGHA',5,'2019-12-31 00:00:00.000000','I came here to get tested for the flu. Great staff, Christina is awesome! They gave me an IV and were extremely thorough and caring. This doesn\'t matter, but I also have to mention that the doctor here is nothing short of mcdreamy. Fix your hair ladies...',13),(460,'Elena G.','/user_details?userid=geb7cRF29rs3QtF-6r3WCA',5,'2019-12-18 00:00:00.000000','The staff here are amazing! Shaunda at the front desk took good care of me and was very through in explaining the paperwork, including a form with billing information. The facility is clean and the service was very fast for an Emergency Center. My nurse Christina was very nice and did everything she could to make me feel comfortable. Dr. Miller was great at giving me a thorough diagnosis and had great bedside manners. This facility is extremely well managed - kudos to Adam Pinion!',13),(461,'Neeley W.','/user_details?userid=2cN0afKPFPaxDNv0Zja94w',5,'2019-12-18 00:00:00.000000','I can\'t say enough wonderful things about this emergency center and their staff. My 8 month old baby got influenza bad (his pediatrician never tested him though he had 102 fever and we were there 2 days in a row). They tested tested him, ran an IV in his tiny arm as he was very dehydrated and lethargic and got him comfortable. They did everything perfectly and treated me like I was a guest in a beautiful hotel durning this heartbreaking time. We have been here a few times with our other child they are always fast professional and very comforting. We have NEVER been asked to pay our co pay and we have never received a bill, they bill everything directly to our insurance!',13),(462,'Andrea S.','/user_details?userid=AbBW9WvmSSBEMtSBzppCRQ',5,'2019-12-16 00:00:00.000000','Everyone was so accommodating and welcoming from the moment I arrived! They kept me updated on what was happening and ensured I had a warm blanket and was comfortable while waiting for results.  It was the most efficient ER I\'ve been to by far! Thanks to Dr. Elsbecker, Shelli, Linda and Christina for your quick and wonderful care!',13),(463,'Reynold T.','/user_details?userid=IFPnOPnqaHoRLKBMIiH2VA',5,'2019-12-13 00:00:00.000000','Flu season is here, and Signature Care is the absolute best way to respond. I was greeted immediately in a clean and relaxing reception area with cold drinks and snacks. Nurse Shelli brought me back almost immediately and was awesome- thorough, kind, and effective. We knocked out the necessary tests , the Dr efficiently and effectively made the diagnosis and prescribed the meds to fix me right up. Everyone in my family has been to this Signature Care for one reason or another, and we will always be back. Soooooo much better than  typical doctor offices, and much more fairly priced.',13),(464,'Melissa W.','/user_details?userid=YDcJDtNaDEondrGbmWX_Qw',5,'2019-12-04 00:00:00.000000','Fast, easy, calm, clean, kind, knowledgeable, great for kids, they even offer snacks and beverages while you wait which is no time hardly. We were in and out in like 45 minutes!Everyone was super cool and nice. Excellent, common sense service. This is hands down the best experience I\'ve ever had in a medical setting. Well done, guys!I\'ve recommended you to my kid\'s entire school and all my local friends.',13),(465,'Staci I.','/user_details?userid=deQ0K16dq5W8OTUDKanmBw',5,'2019-11-25 00:00:00.000000','Dr. Elsbecker and his whole team were attentive and super helpful. Kara very relatable and helped put me at ease. Chris was awesome and found the perfect boot for my injured foot. It was like the glass slipper scene in Cinderella. I appreciate the quick in and out and outstanding service provided.',13),(466,'Natalie S.','/user_details?userid=Yd1otsZQ94t_NwFtY-gUBg',5,'2019-11-18 00:00:00.000000','This is the best emergency care I have ever visited. Super clean and delicious snacks! Earl, Townsend and Gabriel are amazing as was Dr. Lingan was excellent. I highly recommend this emergency care facility! If I could give them more stars I would!!',13),(467,'D. S.','/user_details?userid=4rQg5OkwtsRyJeMektj-wg',5,'2019-11-16 00:00:00.000000','This is the most incredible ER. I have been here twice and have had THE BEST experiences. We were greeted immediately by Aileen at the front desk and offered beverages and snacks in the waiting room (my son loved it). We didn\'t wait more than 5 minutes before we were called back and put in a room. My son was offered a warm blanket and got to watch PJ Masks on the tv (which again, he loved!). The ER team came into our room within minutes. Adam, the ER nurse and facility manager, Andrew, the ER Tech and Dr. deWaal, were all so attentive, kind and caring. They quickly observed my sons injury and decided an x ray was necessary. Christina, the radiology tech, was warm and engaging with my son. She was successfully able to get my 4 year old to sit still long enough to get the images she needed. I made a note to remember everyone\'s names because the level of care was SO excellent. We were in and out the door in less than an hour! Incredible care without the long wait! 10/10 would recommend!',13),(468,'Ashli E.','/user_details?userid=JzcE4YfMlHJRIH5OChb0xA',5,'2019-11-05 00:00:00.000000','This was literally the best ER experience I have ever had. I was greeted with smiling faces and a sense of calm when I was feeling absolutely terrible. From the lovely receptionist (I cannot remember her name--I\'m sorry!), to my nurse Marty, director Adam, ER tech Andrew, Dr. Leung, and Rad tech Christina I was treated with compassion and controlled urgency. I left within an hour of my arrival time, feeling worlds better. Thank you Signature Care!!',13),(469,'Samuel R.','/user_details?userid=d_hFFEWHEEZgBJLsIcKmQg',5,'2019-10-29 00:00:00.000000','Loved this place. First yelp review to say how easy and relaxing my experience at Signature Urgent care. I brought my fiance into the care center early this morning and the staff worked fantastically to treat her. Christina took care of us upon check in seamlessly, Tina worked with my fiance to get her chest xray and Christina R was her excellent nurse who took care of her. Dr. Elsbecker was very kind, attentive and patient with my fiance and I. Highly recommend this location!',13),(470,'Allie A.','/user_details?userid=SpnxUk4b3PgkwfWMd36Uhw',5,'2019-10-21 00:00:00.000000','This is the best ER experience I have ever had. I wasn\'t the patient...my boyfriend was, but I will come here when I need to go to an ER. It took less than 5 minutes for him to be taken to a room, a nurse came in immediately and then the doctor. I mean talk about fast! They were so nice and helpful. The entire place is extremely clean. They have sooooo many snacks for you and a phone charging station in the waiting room. This is the place you want to go when you have an emergency. Adam was my boyfriend\'s nurse and he was so nice and funny. He even told an awesome joke. Tina was the tech. And Dr Lingan was the doctor. There were all amazing!',13),(471,'Luke P.','/user_details?userid=J9Yufym0BqTYVNTqW-n3ag',1,'2019-10-19 00:00:00.000000','Avoid this place if possible.  Not because of the staff or service, but the insane billing amounts.  There is no transparency about the cost upfront and I started to get suspicious when they kept giving me things that I didn\'t think were required.  I all wanted was an x-ray to see if my ankle was broken or sprained.  The total cost was $2,325 and costs me $605 after insurance.  Here\'s some pricing info that you will not get upfront for an x-ray ER Visit / diagnosis - $1,300x-ray - $4502 pills of Motrin - $20Crutches that I didn\'t need or ask for - $100 - ($24 on Amazon)Ankle foot brace - $450.  ($32 on Amazon). I understand this is an ER and a business but these prices are insane.  Luckily insurance covers a lot of this but it feels like the insurance company is getting ripped off, and I\'m still on the hook for 25% of the cost. I didn\'t even get the first bill for 4 months after the visit, and it says I\'m 91-120 past due.   How the heck am I supposed to pay a bill that never arrived until now?The 5-star yelp reviews are partially why I came here in the first place.   Unfortunately, it was not a 5-star experience when it comes to billing and pricing transparency.  Hopefully, someone will see this and have a better understanding of what to expect.',13),(472,'Kems M.','/user_details?userid=W4neG0uWzfkflXzU6W7lxg',5,'2019-10-16 00:00:00.000000','I am an employer in the area and have had to accompany a few employees to this facility. Never feels like an emergency room and the individuals at the front desk greet you as though you are being welcomed at a restaurant or hotel. Today was no exception as the individuals I interacted with were friendly, welcoming and courteous rivaling most hospitality forward places I have been. Kudos to the group today Elsbecker, Cristina, Chris, Delfino and Shaundra. Well done though I hope I do not meet you all too frequently.',13),(473,'Lisa S.','/user_details?userid=kIit8KXK3ynOdJbEZrDrEg',5,'2019-10-03 00:00:00.000000','I couldn\'t have wished for nicer care for my husband. He doesn\'t feel well and I\'m a nurse. I want the best for my sweetheart. Polite, responsive and caring. Hope we never see you again but.... if we need an ER we know where to go!',13),(474,'Brenda G.','/user_details?userid=9xGIEzqX07cXV7SK7ckFYQ',5,'2019-09-29 00:00:00.000000','This emergency center is absolutely incredible. I came with a friend that needed to be seen and the staff was incredible, attentive, and caring. Earl offered some amazing snacks and made us comfortable while we waited. Adam and Townesend were compassionate, knowledgeable, and super friendly.  If I am ever in need of emergency care I will absolutely come to this place. They took great care of my best friend and me as a visitor. I highly recommend!',13),(475,'Ethan H.','/user_details?userid=311RGG46oq8tRX-kv8JpCg',5,'2019-09-29 00:00:00.000000','First, if you need care, this is an excellent option. Adam and Dr. Leung were incredible. I was having a hypertensive episode and the team here took absolute care of me! Townesend and Earl got me rolling and Doctor was in and walked me through what to do. I\'d rather come here than a some of the hospitals I\'ve been in any day.',13),(476,'Judi A.','/user_details?userid=hRffhQr1YKSdquYdh6qPhA',1,'2019-09-17 00:00:00.000000','I went into signature care in August for shortness of breath and very high blood pressure so I was concerned about my heart.  Overall the attention was good, people were attentive and I thought the service was very good.  I am not knocking them there.  The only issue with the service is that they couldn\'t draw my blood and I ended up with bruising.The problem is I was mislead.  I asked the person if the front desk if they were an \"in-network\" Cigna provider.  He looked at my card where there is a $300 copay and said that is all I would owe.  I did not say \"do you take Cigna\" because I have been in benefits for 40 years and know better.  I even told him I would get in my car and go elsewhere if they weren\'t and he said that everything would be covered.About half way through, I got really concerned because they were running all kinds of test.  They even wanted to put an IV in me in case the doctor wanted to use it.  I told them no that I would wait and see and turns out I did not need an IV.  At that point I went back out front in my little backless robe and asked the guy again \"Are you sure you are in-network with Cigna\" because I did not want to get hit with a huge bill.  He said \"Yes we are in network\".  I remember that clearly.Well, I found out today that they are an out of network provider.  Some corporate patient advocate (that\'s an oxymoron if there ever was one) called me about the bill.  Lucky for me, Cigna will cover things because of the co-pay but it could have been really bad.I hate the state of our health care.  That little trip was $10000.00 with some useless test \"just to be sure\".  The problem is the misinformation I was provided when I walked in.  This is crazy when you can be set up to have huge bills even when you do you best to prevent it.Again, service was great but don\'t believe what they tell you about taking insurance.',13),(477,'Patrick G.','/user_details?userid=FQzi66-EK1wDSOOGg7SMvg',5,'2019-08-23 00:00:00.000000','Dr. DeWaal was really kind and educated me well. I appreciate his time with me as a patient. This place has short wait times and a great professional staff. I would recommend them to anyone in Austin or traveling to Austin for medical care . Adam the nurse manager made me feel welcome as a patient and I appreciated it.',13),(478,'Heaven H.','/user_details?userid=uXcbsJKiUMOEF1deSfUCXA',5,'2019-08-06 00:00:00.000000','Had to unexpectedly take my sister in. Everyone was very nice, the establishment was very clean. As soon as we walked in the door we were greeted and a nurse took my sister directly to the back.The male nurse there, I really wish I could remember his name. Was absolutely amazing! He was so helpful, slightly funny and very very caring.In a time of need I feel completely comfortable placing my love ones in the care provided here.',13),(479,'Helen R.','/user_details?userid=0BomsAAVRFz6auVVLTpA8g',5,'2019-07-25 00:00:00.000000','I went there because I was feeling really sick. The doctor and nurses were so incredible! Christina C, Adam, Vanessa, Linda and and Christopher M made me feel so welcomed. They were amazing and took such great care of me. If you\'re not feeling well, go in to Signature Care. I promise you won\'t regret it. Thanks again for managing my pain and keeping a close eye one me. Hopefully I don\'t HAVE to go back but if I did, this is the place I would go! Y\'all are incredible!',13),(480,'Thomas P.','/user_details?userid=3u_d5G3P4MXVMHr2CgSidA',5,'2019-07-25 00:00:00.000000','I recently took my wife here and we had the best experience. The staff was both professional and friendly. I got the names of the people who helped us because I wanted to say thank you to Christina C, Adam, Vanessa, Linda, and Christopher M! If we need the services again we will come back for sure!',13),(481,'Lisa O.','/user_details?userid=Ouz4R8N4pDyYBqML6zb-ZA',3,'2019-07-15 00:00:00.000000','Signature Care Emergency Center misdiagnosed an early spontaneous miscarriage with a molar pregnancy. After my obgyn performed the D&C two days later, the biopsy came back negative for pregnancy tissue which means it was neither molar nor gestational trophoblastic disease. Granted, I accidentally gave Signature Care the wrong date as my period.  I was a week further into the pregnancy than I thought. My obgyn said my hcg level was too low for molar and the ultrasound images on the CD did not appear molar. Also, my obgyn said the miscarriage date was too early to be molar. Because of Signature Care\'s misdiagnosis, I had to spend $2700 out of pocket for an unnecessary D&C surgery with no pregnancy tissue to clean out.  One star for the radiologist at Signature Care who misdiagnosed my ultrasound images with a molar pregnancy.Five stars for the nurse who kindly tended to me and administered morphine for the pain. I forget her name. Maybe Christina?',13),(482,'Amy R.','/user_details?userid=-ar1dYpDHKCTP9Xr5DrSfQ',5,'2019-06-18 00:00:00.000000','They move you through to the back, quickly and when you meet with the doctor, they will spend all of the time you need to have your questions answered!! Really good experience, even with an almost 102 temperature!',13),(483,'Emily B.','/user_details?userid=vJb0aClhkbahYClMiApWWw',5,'2019-06-04 00:00:00.000000','Thank you to Adam and all the staff at SignatureCare for making my experience so efficient w/genuine customer service. As soon as I talked w/my nurse Christina and then Dr. Elsbecker I felt immediately at ease, taken care of, and reassured that I was where I was supposed to be. This will be my go to place for future emergency health concerns .',13),(484,'Jen B.','/user_details?userid=muTH0tc4jIklXCiaiJsABA',5,'2019-05-20 00:00:00.000000','I live in Circle C and both kids suffer from pretty severe allergies that result in breathing difficulties.  This place has been a godsend.  During our most recent visit, Christina at the front desk was very friendly.  Adam, the nurse manager joked with the kids and made them feel at home.Linda took both kids back for x-rays.  She\'s a pro and very friendly.Dr. Rose was amazing.  She clearly cares about her patients and went way beyond a typical MD visit.  She had some great suggestions that would complement the traditional approach and everything was based on evidence based research.We were seen quickly, given warm blankets and treated like guests.  This is a great place with great people.',13),(485,'Aubrey S.','/user_details?userid=T1-4owW9HRca0je7jIH-2w',5,'2019-05-05 00:00:00.000000','I\'ve taken my kids and gone several times myself to this free standing ER. This place is wonderful. They are very professional and take the time to make sure all of your concerns and needs are met. Christina has been our nurse several times and is always very sweet and makes sure we have everything we need to make us comfortable. Dr. Miller and Dr. Elsbecker gave us wonderful care taking the time to make sure we were going to be feeling better in no time. If ever you have urgent needs this is the place to go!',13),(486,'Genesis R.','/user_details?userid=r-4eX88DGOLv1-OkU2Xtgw',5,'2019-04-30 00:00:00.000000','This is such a great place! I was attended right away and they were able to help me with my situation.  Front desk, Delfino, was helpful and answered my questions. The nurse, Gabriel , performed great services and gave me helpful information. Dr. Rose is such a great doctor!! I honestly wish she could be my gynecologist lol. She was super helpful and answered questions I would ask. She also gave me some suggestions and advice about my problem. This whole center is great. I would highlyrecommend to anybody and if I ever have another problem ( not soon, I hope ha) I would most definitely come back here. :-)',13),(487,'Leah P.','/user_details?userid=EYNbdZmer-OJaPR6cnR1dw',5,'2019-04-29 00:00:00.000000','Everything was on point from the moment I walked in. Very friendly and professional staff. Got me back to a room and checked out immediately. Would definitely recommend to friends and family.An extra thank you to Dr. Rose, Edward, Shelli, Freddy and Linda for your amazing care.',13),(488,'Dustin Q.','/user_details?userid=n9B2ULP_mFqlxmqTEsz9mw',5,'2019-03-22 00:00:00.000000','I visited SignatureCare after my strep throat continued worsening after two days of an antibiotics. I was greeted warmly at the front desk by Delfino and was taken back within 5 minutes of my arrival. Nurse Shelli and Dr. De Waal first tended to me and were very helpful. They brought me warmed blankets because I was shivering and immediately got me set up on an IV. After doing a CT scan they notice an abscess in the back of my throat so they got in touch with an ENT and arranged for me an appointment the following morning. Nurse Katie was very attentive and helpful through my stay. Huge thanks to the staff for taking care of me. Your staff and facility are top notch.',13),(489,'Kylee K.','/user_details?userid=8vd27-ODRQIc63fday09xg',5,'2019-03-20 00:00:00.000000','This facility defiently deserves a 5 star review. As soon as you walk in you know you are at the right facility. Clean, well lit, organized and stocked snack and drink area. As someone who works in the medical field, I appreciate fast and excellent customer service! First of all, we picked this place out of all the others due to their hours plus the kind register on the phone with insurance questions, by-the-way thank you Delfino! You also greeted us immediately upon walking inside.The nurse Katie was very kind, personable and made my girlfriend feel comfortable, when normally she is a bit anxious in doctor circumstances. The X-ray technician was very nice and fast! It took under 15 minutes to receive the results and we have waited HOURS before at other urgent cares/ERs. The pictures were also sent immediately to our email with user friendly page access. Dr. DeWaal was ABSOLUTELY outstanding. Very knowledgeable and informative but personable and humorous. He wasn\'t pushy (like other doctors can be) in regards to referring out to specialists immediately or giving us products while we were there that we didn\'t necessarily need. Example: she came in with a splint, instead of racking our bill he verified that it was the correct type and stated she could continue using the same one. Every step of the process at SignatureCare was exactly how you would want to be treated. If ever needed we will know where to go!',13),(490,'Gilberto S.','/user_details?userid=-soRVD2SFYxoUx4NskSycA',5,'2019-03-17 00:00:00.000000','Can\'t thank you enough, for getting me in soooo fast,from the time I checked in, I was seeing the Dr. Rose before I  even had a chance finish the registration paperwork.   Other clinics could learn a thing or two about organization & attentiveness fro you.   Also, can\'t say enough on how nice, clean & organized your clinic is...There\'s no such thing as a nice visit to an emergency clinic, but it\'s such a nice change to not being treated as a number & addressed so promptly.. Thanks again',13),(491,'Kelley O.','/user_details?userid=GkbHh4tipbei0Q2UoY7rGQ',5,'2019-03-08 00:00:00.000000','The staff and Dr. at Signature Care we\'re friendly, helpful, and efficient. I was in and out within a half and hour. I was very pleased with the whole experience!',13),(492,'Andrew K.','/user_details?userid=-f80xy6xMd4Wk-0j26SQpg',5,'2019-03-07 00:00:00.000000','Great care. No wait. Was in observation for over a full day so I dealt with a a lot of their staff and everyone was great. I highly recommend coming here.',13),(493,'Mich S.','/user_details?userid=vvOzmS49iqWaMVtXWrjxgg',5,'2019-03-07 00:00:00.000000','This was literally the best medical experience I\'ve ever had. It\'s been over 6 mo and I still think about it when I drive past. It\'s a beautiful and peaceful waiting area, but everyone from the person who answered the phone, to the front desk, to the assistant, to the provider, was wonderful. So kind and professional. The medical assistant was so friendly I would\'ve gotten happy hour with her. The provider was knowledgeable and relatable. She explained everything in a way I could understand, made me feel safe and did the procedure with ease. The only thing that was a little unexpected was the billing process. There was some confusion when I tried to check on the status, and it took 6-7 mo to clear instead of the much shorter window they mentioned. But it\'s all sorted now. I\'m beyond thankful. Amazed a medical experience could be so warm, friendly and professional all at once. Wish I could have them as my main provider!As others have said, they deserve every single 5-star review. Where\'s the 6-star option?',13),(494,'Stephanie V.','/user_details?userid=CdJPI3B4OtiyhvsA44c84A',5,'2019-02-28 00:00:00.000000','This clinic deserves every 5 star review they have! I walked in and was greeted with two smiles (Christine & Christine) they made me feel welcome and in good hands, took me to the back within 5 minutes of arriving. They said not to worry about filling my paperwork out right away that I could turn it in at the end.I had a large private room and bed with a TV, it was very clean, and they offered me a warm blanket. They even called me after my visit to make sure I was feeling better and again to let me know if I get a bill from my insurance not to pay it, they\'re working on processing it. 5 star service!',13),(495,'Angela M.','/user_details?userid=2afLee6sj1NWKSPDmAUVwg',5,'2019-02-26 00:00:00.000000','Dr. Rose and all the staff were amazing. Diagnosis was quick and literally saved my life.  Had surgery the next day.',13),(496,'Ricardo A.','/user_details?userid=kXnjZ31bqSzT6TEtPHseMA',5,'2019-02-17 00:00:00.000000','Stellar service, very attentive and friendly. As soon as you walk in the door they ask how they can help and get you to be seen right away. The facilities are very nice, they offer snacks and drinks for the kids and even have a TV with cartoons. So if you have kiddos and have an emergency this is the place to go! They even offer a warm blanket once you are inside! Overall great staff and very nice facilities.',13),(497,'Justin T.','/user_details?userid=AJrO2ZNPgp-DwLUsf9nWMQ',5,'2019-02-15 00:00:00.000000','Amazing service and everything was explained well. Everything from reception to my visit from the physician was excellent and they made it a very welcoming place. I was treated in a timely manner and given detailed instructions on what I was taking and why I was taking it. I would highly recommend this facility.',13),(498,'Jennifer A.','/user_details?userid=PE2mB2xaYCdhsE9Ytkj5Tw',5,'2019-02-09 00:00:00.000000','SignatureCare Emergency is the BEST emergency center I\'ve experienced. The wonderfulness began with the most friendly and helpful registration with Earl. He helped us feel comfortable with our emergency. Dr Miller and Nurse John and Radiology Tech Tina were patient and kind and helped make an uncomfortable situation comfortable. Thank you. PS awesome FREE snacks. Yum',13),(499,'Julia R.','/user_details?userid=H0uicmPe9RidONXqerv99Q',5,'2019-02-05 00:00:00.000000','My experience was awesome. Super fast process, and my nurse Gabe was great. They came to check on me every few minutes and really made me feel like a priority.',13),(500,'Kristina D.','/user_details?userid=P2IrDPKgANaH1jCiR3mhDg',5,'2019-01-23 00:00:00.000000','This place is really amazing.  Handles insurance that is very consumer friendly,  staff was great and friendly and helpful.  Adam, Natasha and Doctor Elsbeker were all attentive, friendly, and helped get my husband\'s pain under control very quickly.I will be sure to use this as my urgent care place over a hospital\'s ER any day of the week.  Thank you for a great company, care, and staff.',13),(501,'Andrea H.','/user_details?userid=uTZQ-AbevkAbD708nKtbTQ',5,'2019-01-19 00:00:00.000000','Over the last few years we\'ve gone to SignatureCare for EVERYTHING from steroid-shot-severe allergies, to eye abrasions, to pain from in various places (on different occasions), to unsettling coughs, and so on. They are always SO nice and are quick to see you without being short with you. They\'ll answer your questions throughly, explain their diagnoses, and how they came about them. Plus, it doesn\'t hurt that they have legit drinks and snacks available. The facility is very clean and we feel completely comfortable every time we are there. If you never try SignatureCare, you\'re missing out on an amazing standard Er alternative. Thank you guys for being awesome!',13),(502,'Angel P.','/user_details?userid=gjZ-HBBJ2sNKMwL8xudRZA',5,'2019-01-11 00:00:00.000000','This was our first time here and the stuff was very helpful. The receptionist was super generous and very polite. Dr. Mueller was very polite and helpful. She explained and took her time in making sure ever question was answered. This place very awesome! We will recommend this place to everyone!',13),(503,'Kate C.','/user_details?userid=px_WUR1CBmglI3DKdwkTRA',5,'2018-12-19 00:00:00.000000','I never leave reviews but this place was so amazing that I just had to do it. I was sent here from my job at a restaurant when I, unfortunately, was injured. The entire staff was incredibly friendly and made me feel very comfortable and even walked me through the Worker\'s Compensation process. They thoroughly explained all the after care and made sure all of my questions were answered which really meant a great deal to me. I was extremely impressed and would HIGHLY recommend them to anyone who needs it. Thank you, Signature Care! You guys are awesome.',13),(504,'Sarah M.','/user_details?userid=fRsAuxAHIAYnGNGjg6VGfw',5,'2018-12-18 00:00:00.000000','This place goes over and beyond! Got in a bad car accident that totaled my car and came here for severe neck pain and it\'s a beautiful facility and Dr. Rose and her staff were so friendly and quick to get me back and taken care of. Answered all my questions and gave me many options before doing anything. Hoping I don\'t need their services in the future, I\'m very fortunate to know they are located so close to my home/work Incase of another emergency. They are a A++',13),(505,'David B.','/user_details?userid=Dl6SIG49Chys5qEiCinDZw',5,'2018-12-18 00:00:00.000000','Had the unfortunate need for some stitches in my hand due to a chainsaw accident. The staff and Doc were super fast and and very professional the entire process took under 30 minutes. Unreal the white glove treatment! I felt like a rock star!',13),(506,'Brandi S.','/user_details?userid=F6RiXE4sqyoz1OGEU-DpBA',5,'2018-12-18 00:00:00.000000','Hands down the BEST ER/EMERGENCY CARE I have ever been to, as a patient or a parent of a sick child! The quality of care starts as soon as you walk through the front doors and does not end until you leave! EVERY SINGLE staff member, from reception, to nurse, to physician, to discharge were kind, helpful, HAPPY , and took extra time to make sure our stay was as comfortable as possible! I will absolutely come here again! I just cannot say enough amazing things about the center itself and it\'s staff!!!! Thank you thank to everyone who helped me these past 12 hours! Y\'all are rockstars!!!',13),(507,'Shea T.','/user_details?userid=GegfWxStC8md82q35c2NlA',5,'2018-12-03 00:00:00.000000','I had an amazing experience taking my 4 year old daughter here when she was sent home with a fever. She is terrified of doctors but all of the staff made sure she felt comfortable and safe. I recently went back to get myself tested and was well taken care of. If you need anything call and ask for Amy, Natasha, or Dr. Rose. The whole staff is amazing! Very welcoming and a very clean facility. Go see them!',13),(508,'Chelle A.','/user_details?userid=fxQ8Gx3BBnYROheJbn2PVA',5,'2018-11-19 00:00:00.000000','Was seen right away. I was very impressed at the speed from the start to check out. They offered me a warm blanket two or three times. I felt very attended to for the time I was there. Would go back but hope I don\'t have to.',13),(509,'Alia M.','/user_details?userid=tiIubfg3ppJVKwhvFJJMpQ',5,'2018-11-19 00:00:00.000000','Received excellent care and observation for a few hours treating my sons migraine. Dr. Jones, Christina, and Linda were very caring and compassionate. Didn\'t have to wait to be seen at all and discharged awhile later when my son was feeling 100x better. Thank you for what you do!',13),(510,'Lauren M.','/user_details?userid=qJ523ZqbvecUXA5-lhmT-Q',5,'2018-10-23 00:00:00.000000','I would have to say that I received the best customer service from the staff. Edward at the front desk is very nice and friendly and he can answer any questions you  may have. If he can\'t answer it he will ask and get you an answer quickly. I went in for a sore throat and Dr. DeWaal definitely educated me on my symptoms that I was having . They did a throat culture and got me out of there in no time. I would say this is the bucees of Austin ! Clean , friendly and a comfortable location! I would recommend any friend, family or neighbor to this location . I would also say it is worth the drive because I live about 45 minutes north in Round Rock and for the care they provide I would drive back in a heart beat regardless of construction and traffic. They are true healthcare professionals willing to provide the Austin community with the best care!',13),(511,'Rui Z.','/user_details?userid=lPq0Q1pToqYORr2aMKa8rg',2,'2018-09-11 00:00:00.000000','I would have given a 5 star for the experience but the bill we received afterwards was just way too high. Much higher than our expectations for sure. We took our son to ER on 8/18/2018 for nursemaids elbow. The doctor and nurse were nice and a simple twist of his arm fixed the problem. It was so subtle we didn\'t even notice that she did it. There\'s no u/s or CT scan or anything done besides two blood pressure measurements. We were in and out of the facility within half an hour or so. The front desk lady told us they would file the insurance. Then when we checked EOB on the insurance company\'s website we were surprised to find a bill of $2300 for facility charge. For the doctor\'s bill there\'s also a surgery charge besides the emergency room service charge, which was another surprise. I was trying to reach SignatureCare ER billing asking for itemized receipts but with no success. I agree with the other reviewer that if money is not an issue then this would be a good facility to go to; but with so many facilities available to choose from we may go to a different one that charges less next time.',13),(512,'Chase L.','/user_details?userid=sVErEfAL9KjbKOeaa0Kheg',5,'2018-09-10 00:00:00.000000','The entire staff at SignatureCare was incredibly helpful and polite to me during my visit. The person working the front desk, Edward was able to answer my questions I had about my insurance and explain to me what my options were. The RN, Christina was very nice and quickly got me back into my room and ready for Dr. Goodman. Dr. Goodman did an awesome job at explaining what was going and what his recommended treatment was. I left SignatureCare feeling confident in his diagnoses and treatment!',13),(513,'Jimmie G.','/user_details?userid=Sz-pwoJupQfHUDs0A78VRg',1,'2018-09-05 00:00:00.000000','Great setup and I love the small refrigerator with an abundance of drinks to choose from. The front desk worker was great, however I DID NOT like the doctor who came in to see me for my sore throat and earache. He was a tall, skinny, younger white man with a huge attitude. After I told him what I was initially there for and he had a chance to look at my throat and ear, he said that it looked like strep throat and an ear infection. I was thinking that I would then get a shot and some antibiotics and sent on my way home. This was not the case. The doctor then said that the nurse would be coming back into the room to do a series of tests and to take blood samples that he would send to the lab. I thought to myself why would they need any of these tests and a blood sample done if you can already see what the problem is? The nurse then came back into the room and told me what he was going to be doing, and I told him that I am declining the tests and that i\'ll pass on the labs and all of the extra irrelevant things that he wanted to do. He then went and got the doctor who then returned back to the room with a huge attitude and he started questioning me on why I didn\'t want all of these tests done. I explained to him that they were unnecessary and don\'t make any sense. He then started to be a smart ass and making comments about why I came to the E.R. in the first place. Very unprofessional and unacceptable. If I wasn\'t feeling so sick at the time I definitely would have had a few choice words for him, but I felt so bad that only told him that I didn\'t need his help and walked out of the E.R. room. This doctor proceeded to follow me out into the lobby of the E.R. room talking under his breath. I will NEVER be back at this emergency care center ever again. I don\'t care if it\'s the last one on earth, I\'d rather suffer. I did enjoy the free orange juice though, but unfortunately his attitude and nonsense has left a bad taste in my mouth.',13),(514,'Cedric B.','/user_details?userid=ylEeoNqfPZDhEb1PhINIvA',5,'2018-08-06 00:00:00.000000','Cara, Linda and Dr. Jones took really good care of me! I am so grateful for them. I was in so much pain with kidney stones and they made sure I was comfortable at all times. Thank you for everything! I\'ll be back for any other medical issues I may have. 5/5 would recommend to anyone.',13),(515,'Raeanne W.','/user_details?userid=oUnNctOOluXYgSE3NsJ_iA',5,'2018-07-30 00:00:00.000000','From desk clerk to physician, everyone at SignatureCare Emergency Center was kind, courteous, and went above and beyond in caring for me.  As soon as my friend drove up, one of the nurses brought a wheelchair to the parking lot to help me get inside since I had suffered a knee injury and was unable to walk.  This high level of care continued throughout my stay.  The tech, nurses, and physician took the time to explain my diagnosis, make sure I was comfortable, and answered all my questions.  They even were able to schedule a same-day appointment with a specialist since I required surgery.  I did not expect to have such a pleasant experience, especially when I was in some pain!  What a fantastic place - I recommend it to all my friends and family.FYI - I chose this location because of the yelp reviews...they don\'t lie!',13),(516,'John F.','/user_details?userid=jmRy85hP5mbJLjhDTxLnvA',2,'2018-07-11 00:00:00.000000','I visited this facility 3/31/18 at about 8:30 PM for a cut on my index finger that required 5 stitches. The staff was polite and competent and I was in and out in about an hour and 15 minutes. My issue is the total charge for that visit was just under $6,000.00 and I could not believe the amount. There is a $2,000.00 facility charge for walking in the door, that would have been nice to know. If money is no object then by all means the care is good but we have many other good choices in Austin and I encourage you to find other quality urgent care locations. I did call them about the charges and they were comfortable with their rates.',13),(517,'Cedric D.','/user_details?userid=B2qZh_6kE7HKYimkEubz7A',5,'2018-07-08 00:00:00.000000','Front desk was very clear about explaining the difference between an ER and urgent care unlike some other facilities I\'ve visited. If you need an ER, there\'s no comparison to Signature from The local st davids or seton emergency rooms that are noisy and while you will see a doctor quickly, all the labs and radiology work ups take forever. At signature, the facility is quiet, immaculate and they don\'t seem short staffed so everyone is in a good mood. The ER doctor explains what he\'s going to do and why he\'s doing it. I\'m treated like a valued customer and not a patient who is lucky to be the recipient of health care. The billing process is the same as any other facility I\'ve been to except you don\'t get a bill for radiology or laboratory like the hospital ER\'s. Just a facility and ER doctor bill. I satisfied my copay already so the visit was covered by my insurance but the ER explained at checkout that they would work to ensure that the patient copay would be fair and flexible for the services received. I\'m lucky that this facility is in the south austin area. I can\'t spend all night in an ER and then be expected to work the next day!Visited again on 07.07.18:If you have private insurance, why you would choose to go to a hospital emergency room is beyond me. Maybe you don\'t like a pristine luxury setting, friendly employees, a serene environment with no alarms, moaning, or screaming and professionals who are efficient, courteous and spend time with you. If you are allergic to any of those qualities, don\'t come to SignatureCare. You\'d be disappointed with an ER that treats you like you have a first class ticket and you pay the same insurance obligation as coach. In two hours on a Saturday, I was checked in, treated for flu like symptoms and discharged with a complete explanations due treatment plan. SignatureCare, Thank you for valuing my time.',13),(518,'Franky M.','/user_details?userid=mS5sWi_KBmJCbDDrSkONrA',5,'2018-06-15 00:00:00.000000','Seriously the fastest ER, wait no, literally the fastest medical visit I\'ve EVER HAD. The staff was very friendly and knowledgeable. They saw me right away and had me out of there in no time. The facility is modern and friendly. The staff made all the difference in the world.',13),(519,'Maria M.','/user_details?userid=cpySQBAgv6J4WuSZqZwtXg',5,'2018-05-24 00:00:00.000000','WOW. What a gem of a place. I have had so many bad experiences at other smaller emergency clinics and ER\'s but this place has restored my faith. I will not go anywhere else from now on. I picked this place based on previous reviews, even though it was further away than other ER\'s in my area. The reviews were not wrong. I was greeted like an old long lost friend upon arrival and made to feel very welcome. Most places barely look up at you, hoping you\'ll disappear. These folks were ready to get me in quickly and taken care of. Waiting Room was empty, and there was no wait before being called back. It\'s clean, well maintained and lots of snacks and beverages in the waiting room. Christina (didn\'t catch last name I think it starts with a C) at the reception desk and Andy the office manager were super friendly from check in to check out. I had a  gash on my foot from broken glass so was going to see if I needed stitches. This place is equipped for serious emergencies OR minor bumps, scrapes, fever etc. I will definitely be using this place for the next my son isn\'t well. Sherri the Nurse and and Tina the radiology tech were so professional, yet friendly and easy to talk to. It really alleviated my nerves and helped my blood pressure come down!!! You get a heated blanket too. Nice touch!The doc (Dr De Waal)  came in about 2 mins after vitals were done. No long cold wait in the treatment area either. He was really nice, down to earth, (cute) and friendly. He explained every procedure thoroughly. There was so much friendly banter and had I someone with me almost the whole time. It was around 9am on a weekday. Sherri\'s tetanus shot skills were on point. Didn\'t even feel it. Luckily no glass in wound, and I was cleaned and patched up. I left there knowing the care I received was top notch. It was a breath of fresh air, compared to any other emergency room I\'ve been to, so  I would definitely recommend this facility. It was WELL worth the drive.',13),(520,'Methods G.','/user_details?userid=DYse2NR7dAoowT9FwsQ6Kg',5,'2018-05-11 00:00:00.000000','This ER in Circle C is really outstanding. The doctor and nurses, not only were wonderful and knowledgeable, but they also really care. This is definitely not the normal experience you would get going to a regular ER. Everyone was very nice and the treatment was great. No need to go any further. Highly recommend it.',13),(521,'Tiffany F.','/user_details?userid=6-QABEd2PJT7btjcy4DCwA',5,'2018-05-07 00:00:00.000000','Excellent facility with a very professional staff.  Shelli the nurse was super helpful! I highly recommend going to this facility.',13),(522,'Anna C.','/user_details?userid=hyVCB7yxgvtWbbkI8y91sw',5,'2018-05-01 00:00:00.000000','Extremely impressed! My husband wasn\'t able to walk and move the lower part of his body. A nightmare. They took care of my husband the better way possible..and he get there with pain level 10 no walking and get out with pain level 1 on his feet!!! Love it... Dr.rose Ruby was extremely professional, nice etc etc...thank you for this great service!',13),(523,'Lauren R.','/user_details?userid=DtGFuhjOYTCwHH0ASb_9ZQ',5,'2018-04-11 00:00:00.000000','Almost 2 weeks ago, at 17 weeks pregnant, I walked into SC with a painful kidney stone and severe nausea. Dr. Rose and her team got me into my room and an IV hooked up to get pain medicine flowing in probably under 5 minutes. They gave me everything possible that was safe to the baby to get the pain under control. They even did an ultra sound so we could check on the baby while we were there to make sure she was okay. The facility was clean and we were the only ones in there. They accommodated not only myself, husband and son, but my in laws and parents who were also in town with me for the Easter weekend. They transferred me to the local hospital a short while later and everyone at the hospital who spoke to Dr. Rose before my arrival about my case could tell she was concerned and cared about my well being. I was visiting my husband who is living in Austin for work so it was so nice to know that I was in such great care while I was away from my own doctors in Houston. I hope I never have to go back for anything, but if I do, I know where I will be heading. Thank you all for a smooth   and \"pain free\" experience. Y\'all are the best!',13),(524,'Kat G.','/user_details?userid=7HmabyU7E31lsLq8L_nk0w',5,'2018-02-22 00:00:00.000000','I came in with a dangerously low potassium level and am thankful that I had such a great group of nurses and doctor to get me back to a normal level! Shelli, my nurse, was a God send. She made me feel comfortable, was wonderful with a needle, and relayed information to me in a way that I could easily understand. If you ever need emergency care, I highly recommend coming here.',13),(525,'Taune L.','/user_details?userid=tvIvPUBusGD53EyekIAq5Q',5,'2018-02-12 00:00:00.000000','We had an emergency situation with our son that, of course, occurred at the very end of the day on Friday. Our pediatrician was closed and we rushed straight to SignatureCare. The doctors and staff at SignatureCare showed more kindness, caring and true compassion for our son and our family as a whole, than I have ever experience at a medical care provider. Honestly, it felt like more of a medical concierge experience than your run of the mill urgent care drop in. Without hesitation, I recommend SignatureCare and know that they truly have their patient\'s health and well-being at the fore front of their mind while caring for you. Dr. Steven Elsbecker and our Nurse Christina Ramirez are top notch and showed genuine concern going above and beyond to ensure that our son received amazing attention and care. Thank you again for helping to put this worried mama\'s mind at ease.',13),(526,'Katy E.','/user_details?userid=jinDVVONrPJgv54TeJjQEg',5,'2018-02-08 00:00:00.000000','This was my first time visiting a stand alone emergency care center and I am so thankful that I chose SignatureCare for my needs! The team consisting of Front Desk Clerk Airianna, Radiology Tech Frank, Nurse Brandon and Dr. Rose was very welcoming, thorough, patient, friendly, and caring. Ambience was relaxing with extremely comfy seats, snacks, and t.v. as you wait. My experience was exceptional and will recommend this specific location to anyone needing some care.',13),(527,'Kyrsten L.','/user_details?userid=aQyZpTNLVse6oMlYY6aXLw',5,'2018-01-08 00:00:00.000000','This ER had exceptional service. They were extremely timely in how quickly they saw and treated my little one (1 year old). We were in and out in under 30 minutes. The staff was so sweet to my little man and even gave him a cute little monkey when he got upset. They were able to explain everything in a way I could easily understand. I appreciate this whole staff and will continue to use this ER if I am in need in the future.',13),(528,'Steven E.','/user_details?userid=VmZDzpRh4ZsFC0lw8Fi23Q',5,'2018-01-08 00:00:00.000000','I brought my son in at 1 am and was so impressed with how quickly and professionally everything happened, even in the middle of the night. We were treated with great respect, worked up quickly and the staff were all fantastic. 10 stars for Dr Rose, Shelly and Tina!  This was my second visit and I\'ve been nothing but impressed',13),(529,'Rick Q.','/user_details?userid=fr-P7hBduwA77X4kwLvICw',5,'2018-01-02 00:00:00.000000','Dr Rose, and nurse Shellie and the entire staff are absolute angels.  I came in with excruciating muscle spasms.  I was seen immediately and taken very good care of.  Dr Rose was thorough in her evaluation and carefully explained my diagnosis.  She was kind and compassionate.  I would recommend this place to anyone',13),(530,'Juan B.','/user_details?userid=akd4raedSt21Cf65gpVlyg',5,'2017-12-31 00:00:00.000000','I had an amazing experience visiting this place. Everyone from Edward at the front desk, Kathryn my nurse, and Dr. Ruby were extremely nice and offered me a warm blanket when I got in. So nice! I felt like a friend was taking care of me.',13),(531,'Amanda B.','/user_details?userid=yATaMZXRI6tE7lN2GimKBg',5,'2017-12-29 00:00:00.000000','We will never go to Seton\'s ER again after finding this wonderful place!  This is the best experience we have ever had in an emergency room!  Highly recommend!  The staff is kind, caring, and professional.  There was no wait.  The bill was a fraction of what Seton charges....this will be our first choice for emergency care in the future, for sure!',13),(532,'Mercy H.','/user_details?userid=RQzndUIlJCXElGuI-M2bTQ',5,'2017-12-12 00:00:00.000000','What\'s better than not waiting in an ER? The staff are friendly and the medical team knowledgeable.',13),(533,'Carlye A.','/user_details?userid=V5nXtWU1E_NjoQaqR20-Kw',5,'2017-10-26 00:00:00.000000','I had a bad ear infection which had gotten extremely uncomfortable, so I decided to go have it looked at. Signature was open and very close to me , the staff was extremely helpful and very friendly. They got me in and out, and on my way. Overall, my experience was great. The office was very clean and comfortable, everyone was friendly and helpful and they got me in and out while attending to my needs. 5 stars!!',13),(534,'Meghan W.','/user_details?userid=KVB0PY72wDt0zP1OML5XmQ',5,'2017-10-24 00:00:00.000000','Outstanding service. Injured my foot and I was seen immediately upon arrival. No waiting. Incredibly nice and personable staff. The entire visit lasted 30 minutes - from the moment I walked in the door to the moment I departed. The visit included X-rays, results and a thorough discussion with the doctor looking after me. After this experience, I won\'t go anywhere else. Best care I\'ve ever received in any sort of emergency/ER/urgent care setting.',13),(535,'Linda M.','/user_details?userid=Icyrlhl0mn1i2hhGmA1g6w',5,'2017-10-17 00:00:00.000000','This place is amazing! I was calling around and thanks to the help and details of this facility I decided to go in for my baby and was treated beyond good from the start to the end!! Their should be more places like this! They show so much care and compassion for their patients. Very nice and clean and everyone is so nice specially the receptionist and Dr!! The visit was so fast and the rooms comfortable!! Thanks so much for your help!',13),(536,'Christi G.','/user_details?userid=UQiN8dwLw5rTeECqZKhzKg',5,'2017-10-17 00:00:00.000000','Visiting an emergency room is never fun, but the folks at Signature were professional, helpful, and efficient.  I\'m grateful for the care and, frankly, the speed in which they got us in and out. (Work night) The doctor and nurse explained everything clearly, they were friendly, and engaging.Thank you for the excellent care!',13),(537,'Jeffrey H.','/user_details?userid=YXp2AfWxMs6o644zv5iipQ',5,'2017-09-23 00:00:00.000000','Very quick, kind, and attentive staff. Great experience through a tough time. Doctor was very intelligent and informative.',13),(538,'Veronica A.','/user_details?userid=qhJOgwNVD9kcNqTxOhfkpA',5,'2017-08-28 00:00:00.000000','I was unsure about going here because I had a really bad ear ache and thought I\'d have better chances in a hospital ER. I am SO happy I came. The facility is so nice and clean. The staff is top notch. So nice and accommodating. Dr De Waal was so knowledgeable, personable, and even funny. I was in a ton of pain and he still made me laugh. Like if this guy had his own practice I would switch!  If you go here you will. It be disappointed. Best medical experience I\'ve had in over 10 years.',13),(539,'Drew B.','/user_details?userid=NvWRVx5LLfHQABzVQ8h5yA',5,'2017-08-26 00:00:00.000000','Dr. Rose was amazing. She had great bedside manner, and is calm, kind, and knowledge. She determined that my issue required immediate care at a hospital, and she called the hospital to arrange for my arrival and ensure that everything went smoothly. When the hospital staff seemed to be confused, we called Dr. Rose and she spoke directly to the nurse, and also called directly to the attending physician. Talk about going above and beyond!!! The rest of the staff was very friendly and the office is clean and professional. Highly recommend.',13),(540,'Andrea B.','/user_details?userid=ZkVaYkYPe9Dr3E_Iz-FVaQ',5,'2017-08-25 00:00:00.000000','This place was totally amazing. They quickly saw my husband for a concerning issue and Dr. Rose was so kind and helpful quickly referring us where we needed to go. We will definitely be back and would highly recommend.',13),(541,'Chris W.','/user_details?userid=VdspKrTk9Xx06a5NqJ4x_Q',5,'2017-07-14 00:00:00.000000','I am new to area and needed a good care facility.  I can not give this place enough stars or appreciation.  I hurt my foot and went to one place and they hurt me worse.  I came here and the care given was so wonderful.  I can\'t say enough about Dawn who greeted me to Gabriel my RN who can work a shot like no body I\'ve encountered.  Really did not hurt and best care.   And my Dr. Elsbecker, I owe you many thanks and you my friend make a patient calm and not worry.   I wish you all have the same experience.   This place sets the bar of what care should be.',13),(542,'Kristen V.','/user_details?userid=nrSRp4w5ktPMftuYl028ug',5,'2017-06-05 00:00:00.000000','the folks at this emergency room were excellent.  they were fast, attentive, concerned, and calm.  i really appreciated them in my time of need!',13),(543,'Shiv C.','/user_details?userid=SqNhMRvEsB1LFRKJmJtrmQ',5,'2017-05-15 00:00:00.000000','Absolutely fantastic.Staff was very professional and most importantly super quick! I walked out feeling confident of my diagnosis and positive about my recovery. Would absolutely recommend signaturecare to anyone in need of medical help.Thanks Chris, Christina and Dr. Hannan for taking care of me!',13),(544,'Leah P.','/user_details?userid=HwE534612SzlpJWrWn6lTg',5,'2017-05-09 00:00:00.000000','I took my son in for abdominal pain, we were taken seriously and admitted almost immediately. The staff and doctors were professional, attentive, and caring during a very scary time. The facilities were very clean, and the front desk welcoming and responsive. Unlike other ER experiences, the check out time was minimal and pricing met my expectations. Since I\'m a mother of two boys, I\'m sure I\'ll have other occasions to visit, and I\'d highly recommend the SignatureCare Emergency Center-South Austin!',13),(545,'S W.','/user_details?userid=lb1HRnzitPuUgEv7f-Y8Bg',5,'2017-04-29 00:00:00.000000','Came In on a Saturday afternoon with pneumonia. The facilities were very nice and all of the staff from the front desk, nurses and doctor were super nice and attentive. I would definitely recommend it.',13),(546,'Melinda M.','/user_details?userid=liH1ZiCgHBy5BdJSw541_w',2,'2020-06-10 00:00:00.000000','I turned to them yesterday because once again the medical community in Bryan/College could not care less and left me hanging during serious medical issues, and had in the past received the most wonderful care. After suffering all weekend with high fever, bone crunching headaches, dizziness, body aches, fatigue and finding out that the 940 appointment I had made with my pcp had not been logged and there was no way I would been seen I turned to premier physicians. I received treatment in my car, after covid testing which left me with a nose bleed came back negative the test being 90% accurate I was given something for the headaches and dismissed by the arrogant  doctor. I enquired, something is causing my illness maybe an infection that needs antibiotics.  The doctor said I would have to know were the fever was coming from, WOW slap up side head that would have meant an actual examination which I was not going to receive, 10% being to great a risk factor for such a supreme being to take for the likes of you, your probably lying anyway. Now that last little part was not actually spoken, but very much percieved and felt. I had just been let down by the one place I had been telling people are the best caregivers in the Bryan College Station area. Back in January l was lamenting the issues I was having with medical in the Bryan College Station area at the pharmacy and was told, your problem is that that you have a paycheck and insurance in this town you have to be a socially elite or indigent to get good medical care,  by indigent he meant college students not the poor and homeless.  Thank You for listening.',14),(547,'Logan W.','/user_details?userid=omcxS8Md-sURPkPy19fDrg',2,'2020-05-11 00:00:00.000000','I went in for what I thought was strep throat. After asking multiple times, they assured me that they were in network with my insurance BCBS. They did multiple tests and couldn\'t tell me what was wrong so I left no better than the way I came. They charged me $150 and I was on my way. 6 months later I received a bill for $700!Update:After talking with the billing company they were very ready to work with me to come to an agreement we were both happy with. That being said it is important to understand this is an ER not urgent care so you will have to pay a large copay if you go here and your insurance most likely will not cover the whole bill (I have BCBS insurance). My insurance covered the ER services but not the physicians services (which were $700). Just make sure they explain to you all of this BEFORE you get care here. I feel with this being a college town, they get a lot of young patients like me who don\'t understand their billing process and need to do a better job of explaining. Basically if your ailment is minor then it\'s not worth it to go here.',14),(548,'Melissa M.','/user_details?userid=xPt7-kfQ0wF5ZgOm-NsLeQ',5,'2020-05-03 00:00:00.000000','From beginning to end the visit was top notch. Although the staff had to manage the restrictions of the COVID mandated distancing requirements, the staff maintained a high level of medical professionalism combined with the right amount of personal engagement. Nurse Remington was thorough during check in, JR was helpful and attentive, and finally, the ER physician Dr. Vakey was extremely attentive to our situation and made sure to cover all possible reasons for our health situation. He explained everything that would happen and made sure I understood everything going on. Although it was a challenging visit for us medically, I was grateful that we were treated with kindness and dignity. True professionals and good people. Working during this pandemic is already stressful, but the  team at SignatureCare made the difference when it came to our extremely stressful situation and I am grateful for that.Thank You ...',14),(549,'Mathew W.','/user_details?userid=lXDrF2fyo5_jP260_pnKgA',1,'2020-03-02 00:00:00.000000','Came in with a concussion, they charged me $200 and sent me on the way. Was later billed $4,000 for an ER visit and 2 CT scans even though I only had one. COMPLETE SCAM STAY AWAY!',14),(550,'Maia R.','/user_details?userid=w5U1VoEqkDKQLPGTSZRSOw',1,'2020-02-12 00:00:00.000000','Worst medical experience I\'ve ever had in my whole life . Showed up with mild stomach bug symptoms expecting a quick examination and maybe a prescription. Instead, I was treated badly, not informed of any of the medical procedures they were doing to me and ripped me off. They ran blood tests, gave me TWO I.V bags, ran urine samples, and gave  me a shot. I asked them not to perform any of these procedures and they said I could not refuse treatment and proceeded to continue. They gave no explanation as to why they were running so many tests, despite my confusion and anxiety over the situation. They completely ripped me off. I left with no actual diagnosis and it cost 500 dollars. All of their extra tests were to make money off of me. I was treated horrendously and ignored most of my visit. I called out for help while connected to the I.V bag and was ignored so I eventually had to walk out to the hallway to get someone\'s attention.UPDATE-- I paid 500 in the clinic and was then billed another 3000. Seriously a rip off there was nothing wrong with me and I did not give consent for the medical exams. Completely took advantage of me.',14),(551,'Kaitlin W.','/user_details?userid=beXn_sUxfQcbm_mFLvqQ5A',1,'2019-10-21 00:00:00.000000','DO NOT GO HERE! Things seem fine and dandy while they\'re taking care of you, but MONTHS later (after receiving no bill) you\'ll get notified that your \"bill\" was sent to collections with outrageous amounts of charges for things they never did. I was charged for an IV, multiple lab tests, charged twice for the same visit, when all I had done was a physical check (without any of those things). THIS PLACE IS A SCAM ARTIST AVOID AT ALL COSTS',14),(552,'Julie M.','/user_details?userid=VAbJ8tvFkil_u6TDCpxX2A',4,'2019-10-02 00:00:00.000000','Rebecca and Dyveliz were kind when they registered me and the doctor offered me great information after my car accident.',14),(553,'Echo L.','/user_details?userid=fGC_Md5MK2LOZTHKw_jk1Q',1,'2019-07-02 00:00:00.000000','Sorry guys my previous review was wrong. They give ppl gift cards to ask them leave good reviews on social media.They send you a HUGE BILL 2 months later. DONT GO BC THEY LIE TO YOU! The lady worked at the front desk confirmed with me again and again mostly I will only be charged for the co-pay. The lady told me it is in my insurance network. But it turned out mostly they charged you a lot after you leave. It happened first to my roommate then to me. So that\'s actually mostly what gonna happen. You\'ll be charged for thousands of dollars. It is not in the network with BCBS (the A&M insurance). If you do have to go there, record whatever they told you. Ask them what they are going to charge you. So you\'ll have good evidences for future appealing. Update review. This time it\'s me in trouble and I went to SignatureCare. The nurse who help me is super nice and very patient (I forgot her name maybe Cat or Kathleen). She explained everything to me in detail and wrote down extra stuffs for me to remember. I was in a rush and I forgot to take my credit card, and they actually do online payment. They are very professional. We went to that place at 7 pm. They took care of my friend quickly. They do accept blue cross blue shield insurance co-pay. Anthony and Dr. Vakey help my roommate with her wound. My roommate was very nervous and they were very patient and tried to comfort her during that time. The place is quite and clean. I hope everyone never need to go to a ER, but if you do need to, this is a decent place',14),(554,'Evan T.','/user_details?userid=okqSK7EMKY8yLRK-d71xSw',1,'2019-01-09 00:00:00.000000','The service was fine medically, but their payment and accounting were absolutely terrible. They use a third party that is very unhelpful and hard to contact. They keep making adjustments and sending me bills even after I paid the bill. I forgot to mention that the bills were coming 12-16 months after the service. Keep what you are doing medically, but you lost a customer until you get a new payment party that doesn\'t wait 15 months to send unexpected invoices.',14),(555,'Caroline R.','/user_details?userid=mTOfWsHGPoziIvooK7i_sg',1,'2018-10-23 00:00:00.000000','We brought my daughter in with severe abdominal pain.  They had to stick her 3 times to get an IV started.  The doctor examined her and said that it wasn\'t her appendix so he was ordering an ultrasound.  He was very abrupt and they kept us waiting even though no one was doing anything in the entire place and she was the only patient.  We got out of there bc she and I were both very uncomfortable with the care she was receiving and she ended up having emergency surgery the next day to remove her appendix.  Had we stayed, it likely would have ruptured because of the initial misdiagnosis.  We were there less than an hour and they only did labs that they ran in the office and we got a bill for $2226.00.   Even if they find something, you\'re going to have to go to a real hospital anyway so avoid this place.',14),(556,'Margret S.','/user_details?userid=HkIBOZQEQfOEH2Btz5szvQ',5,'2018-08-13 00:00:00.000000','Wonderful experience here! Very welcoming and professional staff. Alexis, Kim, Anthony and Rebecca made my visit go quickly and smoothly. 10/10 would say the most positive experience I\'ve had with receiving medical treatment. Each of them helped me with my insurance questions and got me the care I needed. Thank you for being so kind.',14),(557,'Morgan A.','/user_details?userid=z1UqQDyolxQp1ih8DbfG6Q',5,'2018-03-24 00:00:00.000000','Amazing, amazing care. Came in on 03/01/2018 due to a car accident and my nurse was Anthony S. he was absolutely amazing, very attentive. It was a matter of minutes before they took me back and started caring for my issues. They have an amazing team and I also went back on 03/05/2018 for the same thing and they did an amazing job again. I would highly recommend going there if you feel you need to go to an emergency room. Amazing care, Amazing team and a very clean environment. I was honestly scared to go by myself because I had never been to an emergency room alone and I had no family I could call in College Station but they definitely changed my mind about emergency rooms. absolutely amazing !!',14),(558,'Shelby R.','/user_details?userid=HogvU82kCGWdTRmSoXbPgA',5,'2018-02-04 00:00:00.000000','I was extremely impressed from the moment I entered the facility. The office was clean, there was hardly any wait time, and my nurse and doctor were so nice and helpful! The treatment was completed in a timely manner, and I feel so much better. At the end of my visit I was given a folder with a treatment plan and follow up physicians which was extremely helpful. I\'ll be sure to make this my go to emergency center! Special thanks to Dr. Vakey and Nurse Gabe for handling my case and having incredible bedside manners!',14),(559,'Leora H.','/user_details?userid=zXfzNk6-F6705RzbJ3vB-w',2,'2017-09-30 00:00:00.000000','I came here because the student health services on campus is always very full and wait time is super long. This place did get me in very quickly, but I was not impressed with the quality of care. I will not return unless it is my only option because I feel confident that there are other emergency clinics with better customer service.',14),(560,'Sharon B.','/user_details?userid=FwKizsJ3_PrS3alAAz-OcA',5,'2017-09-22 00:00:00.000000','Have been here twice, once with each of my children. We have barely been able to sit down before they called us back both times and were seen immediately by the nurse and then the doctor. All of the staff, from receptionists, nurses, x-ray techs, lab techs and doctors, have been truly amazing!With my son and I having a rare, chronic disease, we have had more than our fair share of ER visits and I will say this is by far the best and only ER I will ever go to again! I only wish they had come to B/CS sooner.',14),(561,'Emily H.','/user_details?userid=nGP4-9lE0aW7ers21paA4A',5,'2017-09-20 00:00:00.000000','Best urgent care I\'ve been to! Very fast and helpful. The entire staff was very welcoming and warm. Dr. Vackey spent a lot of time to explain the diagnosis and Jacob, the nurse was very attentive. Dyveliz at check-in was very delightful to talk to in the morning.',14),(562,'Melaney H.','/user_details?userid=lkw6-Ndy9ufgt-8IhGhEuA',5,'2017-09-01 00:00:00.000000','Kimberly, Jacob, and Morgan were very diligent and caring! Great place',14),(563,'Alexandra A.','/user_details?userid=gkBYWj56aGw9DHrMK1ZORQ',5,'2017-08-23 00:00:00.000000','Staff was very welcoming and genuinely caring. Great overall experience, and in a very timely manner !',14),(564,'Miriam C.','/user_details?userid=VFdgafvJ-GRAzqsiEK2Stw',4,'2017-08-22 00:00:00.000000','My roommate recommended me to come here and I  was very impressed with how they took care of me and listened to my symptoms. The only downfall was that I wasn\'t able to receive a doctors note over email which meant I had to drive back to the office when I wasn\'t under any condition to do to so. Just a small detail but I thought I had signed some paper stating I could receive medical documents via email. But who knows, still waiting to recover',14),(565,'Hayley R.','/user_details?userid=0wsUKd__fEx50rIY3--3fw',5,'2017-05-08 00:00:00.000000','This place is awesome! I was very scared when I went in for diagnosis, and everyone made me feel comfortable. The care was very personal. The radiologist Gus showed me my scans in the back afterwards because I said that it\'d be cool. The RN Kelly was so sweet and kept me smiling my whole visit, and Dr. Kimball gave me excellent care. I would definitely use SignatureCare again. I feel so much better thanks to them :)',14),(566,'David B.','/user_details?userid=VHpp7jIAQfBTID54VgnV6Q',1,'2017-04-21 00:00:00.000000','Make sure you understand their basic charge is $2500+ when you walk in the door---ok if you have a real emergency, but they note on their website they treat \"minor\" emergencies.   My son had a persistent cough and went to Signature because the normal provider he went to in a similar location had closed.  Got minimal treatment (sat in a room 45 minutes waiting on provider) other than a prescription---because basically he should have been at a CVS minute clinic or TelaDoc  to get what he needed.  College town is a great place to take advantage of students who have little life experience in understanding the reason these Emergency Clinics are popping up all over, is they serve a need to some and really rip off folks who should be told they do not really have a $2500+ emergency need.',14),(567,'Chandler A.','/user_details?userid=R7kzKPodXbp2Ozg9nihf3w',5,'2017-04-18 00:00:00.000000','This new SignatureCare location in College Station is grade A! They have excellent efficiency and keep the ER very clean. I was offered refreshments upon entering and a blanket while waiting in the room. If I ever need emergency help I will be going to SignatureCare.',14),(568,'Caroline C.','/user_details?userid=20DCbTp2pDhqzJ2lR9I0mw',5,'2017-04-09 00:00:00.000000','Such a great team. The center was very clean, they were super quick and overall very helpful!',14),(569,'Didier M.','/user_details?userid=Wz_nAMpRNPEDBhjXyiCMbg',5,'2020-03-06 00:00:00.000000','Awesome service! We were in and out! Diana and Sindy were extremely nice and helpful. They explained everything toughly. Dr. Thomas was able to diagnose me very quickly. Tech Fatima explained my condition and what to do next. Definitely recommend!',16),(570,'Emily C.','/user_details?userid=4uY_vymz3m6QAqLe1ymoqw',5,'2020-03-04 00:00:00.000000','Had an absolutely fantastic experience with signaturecare. No wait time and everyone here works efficiently. Excellent doctors and staff. Doctor Golla, RN Fanny and Zinaida, ER tech Amelia, and Sindy in registration all went above and beyond!',16),(571,'Fernando M.','/user_details?userid=dTWmVOZsr3FDUt1G2evvcw',5,'2020-02-06 00:00:00.000000','Came to the clinic late at night very nervous about my situation but the receptionist (Rashaad and Sindy) were friendly and upbeat considering the time and Dr Wang explain to me in detail on what I should do. I left the clinic in relief!',16),(572,'Ally Q.','/user_details?userid=8v2NZYXF-9iUcnxuUkiaBA',1,'2019-12-31 00:00:00.000000','Don\'t be fooled by all the \"good\" reviews as I was. I came in because of a stye however my experience was very unpleasant, the wait took forever, on top of that I was unsatisfied with the service. Dr. Edwards did not improve my eye with her course of treatment, instead my other eye is infected with what could possibly be another stye. I am very disappointed I wasted my time and money at this emergency center. Will not be returning and will let family and friends know to seek medical care elsewhere.',16),(573,'April G.','/user_details?userid=F0N7CSLm2Dn2N5wLYYgGkw',5,'2019-12-18 00:00:00.000000','Came here this morning for a sore throat and arrived at 7:05am. Was seen right away. The wait area was very clean as well as the exam room. They Are checking in a breeze. I spent about 30 minutes here from start to finish. I was seen, diagnosed and treated promptly. I definitely will return here until he future. The staff were nice and attentive and made it clear about my diagnosis and treatment. Probably one of the best experiences I\'ve had with an urgent care center.',16),(574,'Sydney N.','/user_details?userid=XOA_kX83Sl-i7xBOkNQ1dg',5,'2019-12-07 00:00:00.000000','Came in to check my daughters rash and all the staff here are pleasant and very informative. They are all friendly and helpful. I would highly recommend this place.',16),(575,'Latisha M.','/user_details?userid=pJkJSfJqT06Qc0B0jAYspQ',1,'2019-11-14 00:00:00.000000','Thursday , November 14,2019 3:44 A.m ,   I came to the emergency room because I had the worst pain in my wisdom tooth. I signed in and the lady at the desk told me Give her my ID and insurance. I did not have my insurance but I gave her my ID. She told me the doctor will talk to you and ask you some questions he will decide if it is an emergency or non-emergency. If it is an emergency he will treat you and we will work out a payment plan with you but if it is a non-emergency you have to pay $175 upfront he\'ll send you home with an ejection and pain meds. The doctor came in and asked me questions and left the room the lady at the desk came back in and told me that the doctor decided it was a non-emergency and since you don\'t have insurance your only options are to pay the $175 upfront or you can sign to refuse services and he will send you on your way. I had no other choice because I did not have the money......I have never in my life felt so embarrassed, helpless and like trash, i\'m not one to get sick often let alone go to the emergency room this was dire and I was in a lot of pain and to have been treated as if I was nothing it\'s so disheartening it brought tears to my eyes to know that a 27 year old women that is in a tremendous amount of pain cannot even seek help from an emergency room without payment first ...how terrifying it is to live in the world so wicked and the worst part is no one even sees that this is a huge problem just knowing that one day when I am on my last days and something that can be easily taken care of will not be because I don\'t have the money for it so they would just leave it , how terrifying',16),(576,'Nancy R.','/user_details?userid=LLSMXSnrY_5yWcuUDfdbEg',5,'2019-08-28 00:00:00.000000','I came in for a quick check up and I must say Doctor M.Wang , Patty from registration , nurses Rachel & Rommel , the radiologist Fatima and the Er Tech Nikia were AMAZING !!!',16),(577,'Hai N.','/user_details?userid=_-IFj5OPTa4QteopoZ_6Rw',5,'2019-07-07 00:00:00.000000','CINDY, Mrs Lisa and Fatima, Robert, as well as Dr Ding were all friendly, helpful and wonderful to deal with. Great staff, team work and excellent facility',16),(578,'Pam P.','/user_details?userid=WNwRRD1DNQqeMcGrcNYHCA',5,'2019-06-25 00:00:00.000000','I always seem to get sick near the weekends or after hours when my pcp\'s office is closed or I can\'t get in for an appointment. I googled Urgent care near me to find a place to go because I thought I was having some sort of respiratory failure. Yes I\'m exaggerating but you get the point, I wasn\'t feeling well. My throat was hurting, one of my eyes was red and caked with mucus. Stuffy nose, can\'t breathe, you name it, that was me! I called and asked the lady did they take Aetna insurance and did I need an appointment. I also asked was there a long wait. They did take my insurance, I did not need an appointment and they wait was typically no longer that 5-10 mins. I hurried up and got to the clinic. Upon entering, the first thing I noticed was how clean and modern the set up was. There was no one else in the waiting area which brought me great relief because I felt I would be seen quicker. I checked in, the receptionist was very friendly and filled out some short paperwork and shortly thereafter they took me back. The assistants were very nice and helpful, the male nurse was very sweet and comforting and the doctor I saw was very good also. They did a test for strep throat and luckily it came back negative but I did get a steroid, antibiotic and pink eye drops and Sudafed. I am on the mend now and even received a follow up call from the office the next day to make sure I was feeling better. What awesome service!The next day, my 9 year old son woke up complaining that his throat was hurting and it felt hot. I instantly decided to take him to this same clinic because I had such a favorable experience. Just like me, they took great care of him. He did have a little bit more of a wait because this time we came during a doctor shift change. It\'s wasn\'t bad though because they put him in bed with a light blanket since he had a fever, gave him some Gatorade and a remote to watch cartoons while we wait. He tested negative for strep also, however she wrote me a prescription for the antibiotic anyway and told me to give it s few days to see if his symptoms are purely viral and will go away on their on. She gave him some fever reducer and an oral steroid and within an hour he felt fine. I must mention this. This is not an urgent care, this is an emergency room clinic. She extended a courtesy of a $50 charge for my first visit. This clinic charges $150 after that for visits. Is it worth it, yes. The care I received in the short wait time is better than spending hours at a hospital er only to be billed much more. My time is valuable and I would highly recommend this place because of the level of service and the overall atmosphere.',16),(579,'Diane P.','/user_details?userid=MI8q09ba57sTtoHf3MekVA',5,'2019-04-06 00:00:00.000000','We visited Signature Care this afternoon when my son had a panic attack.  Everyone from the front check in to Dr. Sylvester were caring, quick and knowledgeable.  They knew just what to do to calm down my son and which tests to run.  They were very supportive to me and my husband as well.  They got us right in and once the testing was complete they finished up with us and we were back at home with some medicine to help with the muscle twitching.  It was so much better than a big hospital with all the waiting.  It was very clean in the waiting room and in the private room area.  I am so thankful they were there.  I would definitely go back but of course we\'d rather be healthy & at home :)',16),(580,'Ranicia M.','/user_details?userid=MHKmekjSsQXlQ1qSvjFGzQ',5,'2018-11-21 00:00:00.000000','Very attentive & helpful, was in & out at a good time. Had some abdominal pain & other issues. They ran test & recommended i see my doctor soon to get a better understanding of the issue',16),(581,'Cesia L.','/user_details?userid=uETGU7vOFAczcUCTmEuHIg',5,'2018-11-10 00:00:00.000000','We are every happy with our experience with Dr. Edwards, Nikalela Rabgey RN, Robert Swart RN, and Thelma Dienm they we\'re a tremendous help when we brought in my sister with a panic attack. I would highly recommend you think about them first when you have an emergency. :)',16),(582,'Vanesa V.','/user_details?userid=Wn_u2lJgtW4256m3hIU9Aw',1,'2018-10-31 00:00:00.000000','I just received a bill that was over $1000 today from a visit that took place over a year ago! We took my baby here when she had a fever and had rashes on her body which turned out to just be hand foot and mouth. All they did was give her Tylenol and that amounted to over a $1000.....I\'m in shock. I called to speak to the billing department today and apparently on top of this $1000 we owe another $2000 for another visit we made back in April when my daughter had an allergic reaction. I don\'t understand why I am just now getting a bill over a year later and also don\'t understand how they could be trying to charge me an arm and a leg for something so small.',16),(583,'Nikki R.','/user_details?userid=rWeAvseUf5v3rkOFx2ncyQ',5,'2018-09-25 00:00:00.000000','My sons pediatrician was out of town and I desperately needed to get him into see a physician. I had never taken my son to Signature care before. I was greeted with a very pleasant registration clerk that quickly checked my son in. Dr.Golla was working that day and took excellent care of my son and was very reassuring. The Er staff working were friendly and very professional. I am defiantly using this facility in the future for other family members.Thanks Mission Bend for a pleasant experience.',16),(584,'Marla A.','/user_details?userid=qAQ8zryt05WmaZ-GV0sRCw',1,'2018-07-24 00:00:00.000000','NEVER AGAIN!  I\'d give 0 stars if I could. Manipulated me into having a series of X-rays the dr & I had previously agreed were unnecessary- given medication that was contraindicated due to my diagnosis of a stomach ulcer & which ultimately gave me intense stomach upset & pain - incorrect medication added to my \"reported\" medication list & then refused to correct it - received zero response to my request for office manager to return a call - spoke to two separate employees, neither of which made any effort to resolve my issues - spent over $400 for the visit and medication & the end result was worse than not helping but instead made me feel worse. This place sucks & i will never go back.  Adding insult to injury, they shamelessly solicit a review in return for a Starbucks gift card. As you can see from the attached pics if you claim a satisfaction with the visit it takes you right to a publicly available forum to post the review, however if you claim dissatisfaction you aren\'t forwarded to a public forum and instead have only the option to privately message an office manager. Originally I posted a satisfactory review because the problem didn\'t arise until later & the office manager responded first thing when she returned to work the next morning. However, when I edited my review to reflect my opinion of what ultimately occurred and asked for a return call - none was forthcoming. I\'m planning to file an official complaint with appropriate agencies detailing what I consider to be unethical unprofessional & negligent medical treatment & behavior on the part of the medical practice as a whole and to include specific individual staff members. While my personal situation thus far has resulted in inconvenience, financial hardship, unnecessary pain & discomfort - it concerns & appalls me that it could have been far worse. You people should be ashamed of yourselves both as a whole & individually - at the VERY least.',16),(585,'Matt T.','/user_details?userid=S_aYHouli8_YLCJm4NrkAg',5,'2018-04-29 00:00:00.000000','These guys are great. I came in at 2 am with what I found out to be appendicitis. They got me in a room in 5 minutes and eased my pain the whole morning. I talked to 7 or 8 different people and they were all very kind. Two great emt guys guided my way to the hospital, and at the end of the day, my car was not towed. So all and all, they made one of the worst nights of my life as bearable as possible. Trust these people with your life.',16),(586,'Gissel G.','/user_details?userid=JqNAQeiasMNbvukuiUFtGg',5,'2018-04-25 00:00:00.000000','We had gone to a previous doctor who told us to go to the emergency room, my daughter had influenza b and pneumonia everyone was very fast efficient and caring. The price wasn\'t too bad either I had out of pocket without insurance. We ended up having to get transferred to another hospital and admitted in and SignatureCare nurse kept in touch to make sure my daughter was ok.',16),(587,'Michael R.','/user_details?userid=mxM_cDwhfinYR3J3r2iZyA',5,'2018-04-21 00:00:00.000000','I was suffering from  a sore throat and and couldn\'t get into my primary for another week.  I went in on 04/20/18 and was seen by the staff which included DR. VAAGENES, DO, PETTER A , Nurse: Ramirez,Adam, Radiology Tech: Thomas,Tino and Front Desk: Penunuri,Alyssa. I was in and out in under an hour with a diagnosis of strep throat and prescription with my initial dosage given and the facility! Top notch service across the board. It feels more like a resort than an urgent care facility.  Please understand this is not a one time experience as I\'ve visited in the past and the service has been consistent regardless of the on duty staff on any given day.   Definitely my go to facility for my minor care needs when I need speedy, proficient health service provided by a smiling staff of highly trained professionals!',16),(588,'Sonya B.','/user_details?userid=Z3W5WKY5BJe1PTmktd253Q',5,'2018-04-09 00:00:00.000000','They are great!  This facility provided great customer service.  Please visit them if you have an emergency.',16),(589,'Denard M.','/user_details?userid=EZrXcEoVCeAzwOfbqQxUzg',5,'2018-03-14 00:00:00.000000','I must say that my experience at this emergency Hospital was absolutely cathartic.  I went in ensuing chest pains and was concerned about having a heart attack but the care that I received from Dr. Golla and his staff assuaged my fears.  Dr. Golla was very informative, reassuring, and understanding. Plus, I was checked in and discharged all within 1 hour in 30 minutes!  These guys are fast and THOROUGH.  I definitely recommend these guys in the event of an emergency!',16),(590,'Tri D.','/user_details?userid=MoeuSTbxJBqQefgW0smlRA',5,'2018-02-07 00:00:00.000000','From the Front Desk receptionist to the doctors assistant, to the a Doctor himself. Everyone was really nice. They honestly really care about you, they treat you like their own family. Rather than going to the hospital I prefer to just come here if I\'m ever really sick because they really take care of you and want you to get better. Everyone there has a warm heart and words cant describe how thankful I am. I just want to say thank you to Doctor P. Golla personally for his service, keep doing what you\'re doing. Not that I wanna go to the hospital but if I ever need it I\'ll definitely come here. I will recommend this place to all my friends. You guys deserve the recognition.Thank you once again',16),(591,'Echo M.','/user_details?userid=PbxtNpmgSfFjD_z04Gi2xQ',5,'2018-01-13 00:00:00.000000','Excellent service from the front desk to the nurse, doctor and imaging tech. I felt my needs were genuinely cared about by all staff members. And the best part i was in an out within an hour. On top of that they even gave me my dose of prescribed medication so i didn\'t have to visit a 24 hour pharmacy that night. I will be utilizing SignatureCare Emergency from now on when a problem arises.',16),(592,'Katrina L.','/user_details?userid=VHEW5qGEYu5qK2ydvVyTcA',5,'2017-12-27 00:00:00.000000','This emergency room is really nice and clean. The staff is quick and friendly. I went near the holidays and still didn\'t have to wait long. If I ever need to go to an emergency room again, this will be the one!',16),(593,'Tonja B.','/user_details?userid=ZX3huH82RAWnGELF_7V_JA',5,'2017-12-27 00:00:00.000000','I\'ve used Signature Care several times now and have always had excellent service. No waiting, friendly staff, very knowledgeable, and best of all, my health emergency was properly diagnosed and resolved (of course there were times that a follow up with my physician had to be done due to the nature of my illness/emergency). I highly recommend this ER. They even work with you on billing.',16),(594,'Kelli F.','/user_details?userid=SwA0aBzzJukK7v1doiDJcA',4,'2017-12-16 00:00:00.000000','I always have been treated like a person not like a number or box they can check off. The staff is always caring, helpful, and compassionate. Dr. Chen explained everything clearly in a step my step matter, that help me ease my thoughts. I would highly recommend this facility, rather than a hospital.',16),(595,'Vanessa S.','/user_details?userid=YTNM5Ss4ZBjzpV2QBSa6eA',5,'2017-12-10 00:00:00.000000','I recently came to this emergency care facility in Highway  6 and Bissonet and I can honestly say they provided the best service ever. They were quick and efficient but most importantly they made me feel welcome and comfortable while maintaining professionalism. The center is very clean and nice and the staff was amazing. Not only were they very attentive with me but also my step sister who came in the room as well. Dr. Hannah was very thorough in explaining my condition and made sure to listen attentively to my symptoms. Also, I specifically want to recognize Nurse Robert who went above and beyond by offering to bring coffee, blankets, and good laughs in spite of the scare that took us into the emergency room. 5/5 stars!',16),(596,'Ernie E.','/user_details?userid=8Ur4k5LjsOl_RXA3wOtvsg',5,'2017-12-04 00:00:00.000000','It was my first time here, was not disappointed with the friendliness of the staff. From the time you enter the building until the time you leave, the staff is there to help you understand billing, the nurses explain what medications I was given and what they would do. Very clean location will be going back here for any medical emergencies.',16),(597,'Ahma H.','/user_details?userid=2jxE-cvG4f0RnGtXte76VQ',5,'2017-11-26 00:00:00.000000','Very useful Emergency Room. Updated slick interiors, fast and competent front desk in take. I arrived late last night with an emergency, a severe allergic reaction to a medicine another doctor prescribed. After ten minutes I realized I needed to go to the Emergency Room. I was in trouble and it was a Saturday night of a holiday weekend. I was taking my chances to go to a hospital ER from personal experience with an unknown of how many hours I would wait to be seen.My situation was complicated and my condition was rapidly declining. So I took an educated guess a neighborhood ER would fit the bill. This risk paid off.As soon as I arrived the caring staff didn\'t blink but jumped into action.I was given an IV and a battery of medicines to stabilize me. Wow. I\'m so grateful. As I write now after my 1.5 hours visit,  I feel relieved and grateful for the prompt response to stabilize me and get me patched up.The 5 stars are for the updated pleasing atmosphere, competent staff and sense of urgency.I don\'t know if there billing department will be as stellar, so I\'m reserving comment for that as I wait for any additional papers/billing to follow in the business days ahead. If you need an ER and can\'t make it into the Big ER in time, or want to avoid the long lines on a weekend in the ER (the latter was my fear) give this place a try.First time patient. Will return or recommend.Yelp Check-Ins receive a $5 Starbucks Gift Card. Nice!Hats off to nurse Richard despite the painful pic line in my hand. And a very competent female Doc and medical tech for the assist. God bless you all!',16),(598,'Kendra B.','/user_details?userid=OqLBBdsIa53mPHwGfXZ1Kg',5,'2017-11-07 00:00:00.000000','I visited Signature ER and im happy i did. They have a great staff and make you feel real welcome. They are equipped just like a regular ER but you dont have to wait 3 hours to be seen. I will never visit another ER again.',16),(599,'Kilee K.','/user_details?userid=aotA_yG9Bn-MPbxxp__WZw',5,'2017-11-04 00:00:00.000000','Everyone dreads that trip to the emergency room, but if you have to go I would recommend SignatureCare in Stafford. From the moment I walked in, I was greeted with a smile! Alyssa, Pamela and Dr. Zheng were amazing and really cared about my concern and made sure that I was happy and well taken care of. The facility is clean and orderly. I was back into my exam room within 5 minutes of signing in. Awesome customer service!',16),(600,'Ingrid H.','/user_details?userid=iamt3VLjHcP4fZDrRg3Z3A',5,'2017-10-23 00:00:00.000000','I absolutely LOVE this facility. My entire family visits in emergency situations. We never have to wait longer than 10 minutes and the process is so smooth. They appear to genuinely care for you as a person and not just as a \"claim\" - if that makes any sense.',16),(601,'Judianna C.','/user_details?userid=-yEFjSSsxIeOvX6Cglwbwg',5,'2017-10-22 00:00:00.000000','Excellent Customer Services! From front desk to nurses to doctors. They made me feel warm and trustable.',16),(602,'Latasha P.','/user_details?userid=aCt9WZ2TtFOrR3hvoktbHQ',5,'2017-10-14 00:00:00.000000','Excellent Customer Services! Attentive to all my needs and to top warm blankets, fast and friendly service. Recommending to all my friends.',16),(603,'Quoc N.','/user_details?userid=JFD_VpzV9as-a7q-KLP_RA',1,'2017-09-29 00:00:00.000000','My daughter went there in 2015 for a stomach pain.  I instructed my daughter to ask them if they were in network with BCBS of Texas, and this was their answer:  \"you will be billed in network,\". At that time, I thought that it meant that they were in network, so my daughter stayed for the check up.  They did all kinds of tests, including  a ct scan of the brain! They couldnt figure out what was wrong with my daughter, so they called an ambulance and transferred my daughter to memorial Herman.  She was given a prescription for birth control and sent home.  So I ended up with a bill from the ambulance and  memorial herman, which were reasonable.  About 2 months later, we received a bill from signature care for more than $21,000.  It turned out, signature care was not in network with BCBS of Texas, which meant I would be responsible for the difference.  Through a lengthy negotiation and lots of phone calls, I was able to lower it to  about $2500.  The lesson I learned is to always call your insurance to verify the network/ out of network status of a business.  They twisted their answer in order to trick me into believing that they were in network.  Even though I was able to negotiate a lower payment, it took lots of time and anguish.',16),(604,'Ceita N.','/user_details?userid=bzCqMA2GvGI-Vf8PBXQZjw',5,'2017-09-27 00:00:00.000000','My experience at signature care was professional and very thorough. I was in much pain and I was greeted with lots of care...the front desk was professional... The nurse was very nice and caring...gentle because I was hurting...the doctor took precaution.. Ran test...and took great are of me. I will definitely l visit again.',16),(605,'Tassie C.','/user_details?userid=8-u8G_AecvhxqQfdI1sLww',5,'2017-09-23 00:00:00.000000','Beautiful facility. Front desk personnel very helpful, informative and inviting! No long waits....they also offer xrays here onsite. Plenty of parking and great cash pay rates if no insurance.',16),(606,'Estela V.','/user_details?userid=UymyPdWhcD8lvcHfxfEEZQ',5,'2017-09-19 00:00:00.000000','I enjoyed the visit, very nice and friendly staff! They were very tentative to my needs and were checking up on me to see if I needed anything while there. The receptionist Victoria was very sweet as well as my nurse Brenda! I would definitely come back. Almost forgot, they were super quick!',16),(607,'Meghan K.','/user_details?userid=AQkvHOsn8yc2TCFZv_p1TA',5,'2017-08-05 00:00:00.000000','Quick, easy, and efficient! Would definitely recommend this spot. I came in for a strep throat yesterday and feel completely back to normal less than 24 hours later.',16),(608,'Detra D.','/user_details?userid=VMdHeSKZT9uKrvWUPU-v7A',5,'2017-08-01 00:00:00.000000','The facility\'s waiting room is nicely decorated. I arrived at 6:00 a.m. on a Monday morning and was taken back in less than 2 minutes by nurse, Robert. From the front desk to the back patient room, I was treated with respect and compassion. The  doctor, Jasmine Thomas, was top notched and after she could not make out the suspected critter that bit me from my photograph I showed her, she brought out a photo line up of several different sized and shaped insects and asked me to identify the one I photographed. Low and behold, she was on the money with identifying the species. I was given 3 prescriptions w/detailed directions, a shot to stop the allergic reaction, and well wishes to get better soon. I left there feeling so blessed to have them as a medical resource w/expertise and compassion in my community.',16),(609,'Son N.','/user_details?userid=_nP3CAcrU8d_m82noBXqcw',5,'2017-07-23 00:00:00.000000','My mother was experiencing severe symptoms from her prescribed medications\' side effects and menopause, so I had to take her to this emergency center (We did not know what was causing her to constantly feel fatigued and nauseous. Like other previous reviews mentioned, the nurses and doctors were really patient, caring, and quick. The application process was not lengthy, and my mother was carried into the emergency room in no time. They did a few tests on her to check for the cause of her weakness and nausea, which I found really helpful because the tests\' results could help me and my mother understand more about her current health and what she needs to do to maintain a healthy state. I would recommend everyone to at least visit this emergency center once if the urgent situation is severe and the hospitals are far away.',16),(610,'Ronda R.','/user_details?userid=R9JvwG-cfIRDQVTlPkJklw',5,'2017-06-25 00:00:00.000000','I had a great experience at Signature Care. They were very efficient, yet caring. I was in and out in 30 minutes, which means a lot when you\'re not feeling well. I will definitely go back to them in the future, if the need arises.',16),(611,'Kirstin D.','/user_details?userid=ks5SeLQL3Oqy7g7jbL6VFg',5,'2017-06-06 00:00:00.000000','Had a great experience here. I was seen right away! I was in and out! The staff is very attentive and caring. Dr. Golla was great in trying to help diagnose the pain I\'m having on the right side of my body. He made me feel comfortable and he\'s seemed genuine.',16),(612,'Princess A.','/user_details?userid=e7kPJ_mmKribMNpmxn0phw',5,'2017-06-05 00:00:00.000000','I had the most amazing experience. All the staff were extremely polite and most importantly caring.',16),(613,'Dominique J.','/user_details?userid=A97ZExr1BUDEeibvwzla_g',5,'2017-06-03 00:00:00.000000','Every time I come here the service is excellent ! You don\'t have to wait long and every one is super warm and welcoming. I really love Dr. Edwards and the team that was there with her they really treated me well and help me feel much better! Best emergency center ever!',16),(614,'Pat M.','/user_details?userid=DTqYNg86CYwvFtjlP-8S5g',5,'2017-05-30 00:00:00.000000','I was experiencing great pain and discomfort when I went into the Emergency Care Unit. The doctors and nurses and waitstaff took very good care of me and my son who went in with me. I had a bad reaction to some medication while inside of the emergency care room but they took very good care of me and allowed me to get a little better before releasing me. I just wish I could have stayed longer until I felt completely better. I pray I will not have to go back anytime soon but I am glad they are their if I need them. And I would definitely recommend SignatureCare Emergency Center-in Mission Bend to all my family and friends.',16),(615,'Sheerah C.','/user_details?userid=SN0jgPRlE4Rz6vtYyhjneg',5,'2017-05-29 00:00:00.000000','I always have such a great experience here. The nurses and doctors here make you feel like your the only patient in the whole building. They are not forceful and they constantly check to make sure your comfortable. That is why I feel so comfortable going back if I need to. I can\'t say enough great things about them.',16),(616,'John H.','/user_details?userid=tgICeqxqX1x9_xuWBZMhfA',5,'2017-05-26 00:00:00.000000','It is very rare that I visit a doctors office but I was visiting the Houston area from Louisiana and found myself in severe pain. My wife did a quick internet search and we ended up at Signature Care in Sugarland. I was very impressed with the entire experience. I was waited on immediately, was seen by the nurse within about one minute and then by the doctor within five minutes. They were all very pleasant and more importantly very helpful.',16),(617,'Sana S.','/user_details?userid=AWtYaKhFY0j-d3PzX7J7UQ',5,'2017-05-25 00:00:00.000000','Everyone was super caring and polite! We had a great experience. We were in and out within a few hours. Everyone working there was attentive and made us feel like they were glad we came. I will ALWAYS come here for emergencies.',16),(618,'Kelsey B.','/user_details?userid=W1DoNG8MU9n-gdqxJhxneQ',5,'2017-05-11 00:00:00.000000','My experience at the Emergency Room was one I will not forget. From the moment I walked in, the staff was friendly and super nurturing. I was seen within 5 minutes of entering and taken care immediately after that. Both nurses, Reed & Jesse, were phenomenal. They made sure that I was comfortable and they insured that I knew everything that they were doing before they did it. Both were very informative and kind. The doctor that treated me was hands down one of the nicest doctors I\'ve ever seen. His name was Doctor Pradeep and his number one priority was making sure that my symptoms were taken care of immediately. He was thorough in finding out what was wrong and I couldn\'t have asked for a better doctor to help get me back to health. Again, this emergency room was too notch and I appreciate all of the efforts they put in to make my stay as comfortable as possible.',16),(619,'Nicole D.','/user_details?userid=zguqRWGlYS_hGCd0RNTVRg',4,'2017-04-11 00:00:00.000000','I was treated very well. The facility is very nice.they tested me from ultrasounds to CT and managed my pain well.',16),(620,'Joe G.','/user_details?userid=tQy8v_S6CU2Tgz0uGWLEQQ',5,'2017-02-28 00:00:00.000000','I had never been to SignatureCare before, but I was in a situation where it was late at night, and waiting to make an appointment with my primary care physician was not really an option. When I got there the staff was more than welcoming, and we were taken to an exam room almost immediately. Virginia Aguillon at the front desk made sure of that. Nurse Rachel Reyes was quick to come into the room to take my vitals, offered us water or anything else we would like, and was probably the nicest nurse I had ever dealt with. Dr. Grinblatas Ioram came in next and was a great listener, and seemed genuinely concerned, taking into consideration the amount of pain I was in.  He did a great job of diagnosing my issue, and the discharge was quick and simple. We were even offered a blanket if we were cold! I would definitely recommend SignatureCare to my family and friends, and would trust them with my own Emergency/Urgent Care needs in the future. Also, if you read this Dr. Ioram, I\'m feeling much better this morning than I did last night!',16),(621,'Elyse S.','/user_details?userid=2Al1137aoSxW0uDyOco_gg',5,'2017-02-26 00:00:00.000000','Exceptional care with a smile, and not a fake smile like most other places either. Every analyzation of issues I presented was done professionally. I now know what\'s going on with my body more than I did when I visited my own pcp. Thank the lord for this staff.',16),(622,'Kynishia T.','/user_details?userid=QlsgPY4hyzjXlYLrgMd5sw',5,'2017-02-22 00:00:00.000000','The receptionist Victoria very nice and welcoming. Soon as I got there was taken straight to the back by my nurse Rachel Reyes there was no wait. Rachel was very nice and comfortung. The whole staff was very nice and attentive. I have been here many times before they take very good care of you. Dr. Dang Hoang Hung D.O was friendly,attentive and very knowledgable. You almost forget you are in the ER cause the atmosphere is so calm and relaxed I drive from the northside of Houston to come here because of the service. I have sent tons of referrals and they were blown away with the experience.',16),(623,'Annie N.','/user_details?userid=aTajXdC9ju7mLBRHlk17-Q',5,'2017-02-18 00:00:00.000000','I called in to see if they accepted my insurance and Honey helped me through the phone. When I came in she was extremely nice and caring and guided me through all of my questions and needs. When I was in the room the see the doctor, the three nurses who were helping me was super cool. Even made me laugh a couple of time. I felt super welcomed and extremely cared for when I\'m here. I recommend everyone to come here when in a state of need for a doctors care.',16),(624,'Rima K.','/user_details?userid=vextF9Xm6IPU9Sby15kvJw',5,'2017-02-10 00:00:00.000000','My 3 year old got sick and with no one near by to help me I was able to quickly schedule an appointment online. I arrived a few minutes early and the staff was ready to see me and moved us straight into a room with no wait. The staff was kind and patient with my child and was able to do the tests needed in a quick and efficient manner. They had her feeling much better physically and emotionally (stickers and lollipops didn\'t hurt). Check out was painless, we were escorted to the car door and they even called the next day to make sure she was doing ok. I would definitely go back if needed!',16),(625,'Susan T.','/user_details?userid=AbkvOX2OOPuQlxAg1EWF3Q',5,'2017-02-04 00:00:00.000000','Awesome service. Honey- front desk receptionist - was friendly and professional. I was checked in quickly and promptly seen by the doctor. I was kept informed of theaters they ran and why they were needed. I won\'t hesitate to go again in an emergency.',16),(626,'Yvette D.','/user_details?userid=fqtvtO8FWN7GY8jlHYPQaQ',5,'2017-01-26 00:00:00.000000','I had a great experience with me day long visit. Welcoming staff and helpful receptionist (honey). I would recommend!',16),(627,'Thanh N.','/user_details?userid=zW-rAMj3BOIl4ZLwqEznYg',5,'2017-01-25 00:00:00.000000','I had a really bad cough and chest pains so i decide to come here. Overall i had a great experience . The doctors and the entire staff was very friendly. Honey at the front desk was extremely helpful and nice to me.',16),(628,'Denise W.','/user_details?userid=zuYnGnmfI1OJwpmRA7DHCA',4,'2017-01-06 00:00:00.000000','I was satisfied but since they pulled benzocaine from the market she should have given me a script for pain pills until the anabiotic\'s kicked in my ear has a shooting pain so bad  ant pay another $175 just for a script',16),(629,'Komal F.','/user_details?userid=eEK50bSFxw_RnFt6Ig0gXQ',5,'2016-12-31 00:00:00.000000','I haven\'t even fully left this place and had the urge to write a review. I have never been so satisfied and pleased with a place and it\'s service as I have been here at this emergency care center. Came here just to get my moms chest pain checked out and as advertised-there was no wait. They had us fill out a single half sheet of paper just to identify the patient and the reason of the visit. Called us in, and the nurse started immediately asking questions, very kind a full 10/10 bedside manner. The nurse was very gentle and attentive to everything my mom was having concerns about. The doctor came in and was very polite and began to get things rolling including the tests and scans. They were respectful enough to hold off the paper works (which is amazing to see in a facility because that shows they are more concerned about delivering the best care and not how much your pocket can afford). However, the receptionist did come in prior to any further care and explained the pricing and charges that will take place she also cleared up any question or concerns we had. I am so pleased and highly recommend this clean, organized facility with an exceptionally kind and caring and welcoming set of staff members to all those who come upon an urgent or emergent situation.',16),(630,'Tahara D.','/user_details?userid=4wBnkT_U4HofSQ19TjLtAw',5,'2016-12-13 00:00:00.000000','This was my first time visiting a Signature Care facility. I was taken to the back right after signing in and speaking with Mercy at the front desk. As soon as I was seated on the bed, Betty started asking questions. Everyone was extremely friendly and comforting. Each person introduced themselves which I loved...since my health is in your hands.Dr. Golla is awesome!!!! He kept me informed on what was next and the timeframe on each. He checked on me numerous times and always asked if I had any questions. This location off of highway 6 is definitely my facility of choice. Once my treatment was done, Betty came in with a folder which had a listing of my diagnoses and treatments, a disk with my X-rays on it (which was super cool) and my prescriptions. She explained the purpose of each prescription and when/how often to consume them. She made sure all my questions were answered. She also walked me back to the front desk when treatment was finalized. I will definitely recommend them to family and friends. GREAT service all around!!',16),(631,'Josh P.','/user_details?userid=h9GzK4t395V_zhNMTEfDAQ',4,'2016-10-17 00:00:00.000000','When an emergency arises, there\'s no time to waste. That\'s why my first choice is SignatureCare, whenever crisis finds it\'s way to us. Thankfully the are in my insurance network, however they have many payment options in place and seemed to have a large array of patients. During our short, 2 hour stay, we were taken care of satisfactorily. There was nothing spectacular about it, aside from them correctly addressing the issue. THAT is what matters most, nothing else. However, the nurse can was hot \'n\' cold and it was stretched out a bit. Loud laughing was heard for a portion of the stay, which wasn\'t putting our serious situation in a better mood. One nurse started undressing my wife, and ended up hurting her. It wasn\'t serious, but it wasn\'t nice. The other was fantastic, but it shouldn\'t be such a balancing act. I would recommend and feel comfortable coming here the next time, heaven forbid, we need to return. I\'m confident we would get the same, signature care as the first time.',16),(632,'Adam R.','/user_details?userid=jlUSSZjgsKIgXLbEf2fskw',5,'2016-07-30 00:00:00.000000','Excellent customer service, staff are friendly, educated, and they know how to make patients feel comfortable and safe. Physicians have great bed side manor, fast and concise service, no wait time and always offers warm blankets upon arrival! If you want the best care come to Signature Care Emergency Room, you deserve it!',16),(633,'Kelly B.','/user_details?userid=NrQWPBlvLeheOnyeddBu4g',5,'2016-07-17 00:00:00.000000','What an AMAZING experience! I have only been to the ER twice in my life; once to a hospital ER and once to SignatureCare and I got the FULL SignatureCare red carpet! The ENTIRE team was warm and friendly. They took their time explaining what was going to happen as well as what I will feel during a procedure. Dr. G (ER Dr) did not rush to his diagnosis and wanted to cover all bases before he would release me. His bedside manner is outstanding! He took his time TALKING to me!!!  That\'s unheard of these days where everyone is just a number.  You are NOT a number here!I was also introduced to a wonderful cardiologist, Dr. Daher.  He also has the same compassion for his patients. If you ever need an ER, I would highly recommend SignatureCare as you will receive the BEST service!  I\'ve already told my friends and family about them!!!',16),(634,'Taz B.','/user_details?userid=_LsW48_W_R3q7BfgGCjNfA',5,'2016-06-23 00:00:00.000000','Great service, friendly staff, no wait time.  Took my grandson to the ER for his asthma, before I could even finish filling up their forms, they took us in and the nurses started doing what they needed to do before the doctor came in.  Told me what my cost would be before they started the treatments.  Hopefully I wont be receiving additional bills later...',16),(635,'Louise H.','/user_details?userid=GZi_Sh8FwYIx1cCEQTUqGg',5,'2016-06-23 00:00:00.000000','Within minutes of walking in the door my 18 month old was seen and treated. The nurses and doctors were super nice calming and helpful. The rooms were clean and equipment up to date. After she was treated we were out in a reasonable time. They are open 24 hours an well staffed which is awesome Not sure how the bill looks yet but pretty much no matter where you go for medical treatment in the US these days the bill is always sky high even if you have good insurance so I am not able to comment on that yet. Although, they did say they charge the same as a regular hospital ER so I\'d much rather go here than a hospital ER. Very much less crowded too',16),(636,'Mitch J.','/user_details?userid=mAa6HIdY_IDltTp0tEwZag',5,'2016-06-11 00:00:00.000000','Very professional staff! Airianna was very helpful in understanding my copay. Highly recommend',16),(637,'Jainy J.','/user_details?userid=0yrFRVPnPvBAJSZUR_OreA',5,'2016-06-11 00:00:00.000000','The staff here was amazing. They thoroughly tested my husband and took time to explain everything. The diagnosis was spot on. Airianna at the front desk was very helpful as well. Will definitely come back here again, if needed.',16),(638,'Fe M.','/user_details?userid=8f02zYozA8ckSjwZx8tZJA',3,'2016-06-06 00:00:00.000000','The service was great. The staff was friendly. There was virtually no wait time. I would come back in the future should the need arise. They have Keurig coffee. In the aftermath:It is difficult to get someone from billing to answer or even respond to phone calls and voice mails. They will file a medical lien against you and will not get back to you to explain why. I am very displeased with their level of professionalism pertaining to their administrative functions. I\'m downgrading my review by one star as a result. Another update:Well, there\'s still no contact or resolution. How can I even begin to settle a bill if I cannot even get a return call or fulfillment on a commitment to make contact with me. I cannot recommend this place on the grounds of principle.',16),(639,'Kimberly P.','/user_details?userid=_G-xtTjHFOC-xLR4vMkN4w',5,'2016-05-13 00:00:00.000000','This place was fantastic! There was no wait to get in, the staff was very nice and the doctor\'s treated my dad great and promptly organized his transfer to another facility for additional care. Its very convenient to have a facility so close by.',16),(640,'Allison E.','/user_details?userid=dmF-h9ABHesDVJu0Ppci1w',5,'2016-04-29 00:00:00.000000','Went here last week when my husband injured his finger.  Felt welcome and reassured from the moment we walked in.  The front desk staff was friendly and helpful.  The facility was spotless and very nicely decorated.  We were taken back to an exam room immediately and saw Dr. Braun.  He was very warm in his bedside manner and thorough.  He sat down and got the whole scoop about said finger injury and carefully looked it over.  After a couple X-rays (which he looked over with us, and pointed out exactly what was going on), he placed a split and it wasn\'t long before we were on our way.  The nurses were all super nice and professional and made sure that I (the super pregnant wife of the patient) was doing ok too.Would not hesitate coming back here or referring friends to this excellent facility!',16),(641,'Mark N.','/user_details?userid=9-gdLofOudyMk4ODeLzVFQ',5,'2016-04-22 00:00:00.000000','Friendly staff. Receptionist was very warm and welcoming. Nurses were friendly and reassuring. Doctor was knowledgable and patient with me. Great staff here.',16),(642,'Junebug B.','/user_details?userid=j2vt4DZJ43-Z6li_DoNyaw',5,'2016-04-21 00:00:00.000000','Great service! Very professional staff and they took care of my migraine within 30 minutes!',16),(643,'Logan G.','/user_details?userid=gDdRQdrChhnHjA33nd9jgQ',5,'2016-03-27 00:00:00.000000','Signature care got in touch with me and did everything in their power to accomodate me. Extremely pleasant people who make you feel like you are not alone in your struggles. Thank you very much for reaching out to me and helping me in every way possible',16),(644,'Jennifer T.','/user_details?userid=WzvvXhwD_jf6KtcEh5PkXQ',5,'2016-02-23 00:00:00.000000','This place is amazing! The entire staff are so friendly and helpful. I brought my son in to get stitches due to an accident he had at school. The doctor and the nurses were so awesome at there job that my son stayed still during the whole procedure. I took him yesterday for his follow up and to get his stitches removed. I would definitely recommend this place to anyone with kids. Mercedes and Jordan were awesome. Thank you guys for making my son and my experience wonderful. This my place to go from now on with any of my emergencies. Thank you,Jennifer Turcios',16),(645,'Angela M.','/user_details?userid=5tx-rCAT61spK3ye_YjtcQ',5,'2016-02-02 00:00:00.000000','This is definitely the best ER!!!!!! Dr. Golla and staff treated me from the moment I walked in as if I was the only patient in the facility. Like most of us do, I diagnosed myself before I went in. Thinking antibiotics would solve my problems. Dr. Golla suggested lab work, a CT and an ultrasound. All were performed within 30mins. Test results were received just as fast. Unfortunately, the results were not good and I would need to have surgery. I assumed that I would have to be transferred and admitted into a hospital. That wasn\'t the case. Dr. Golla called a general surgeon over to see me. They were able to get me into the Operating Room the same day. Their physicians have continued to follow up with me since I\'ve been home. I strongly recommend SignatureCare and definitely will go back if me or my children have another medical emergency.',16),(646,'Claudia R.','/user_details?userid=3lO7JDC3OUelNl8qvF0qCQ',5,'2016-02-02 00:00:00.000000','The entire staff was friendly. I was seen immediately and was out of there in no time. This was my first tome there and i will go back when needed.',16),(647,'Alexander C.','/user_details?userid=6xwmpEl4jw4gEEqSna2vCg',5,'2015-12-25 00:00:00.000000','Absolutely Amazing!!!! Today is Christmas, I have been having a severe cough for about two weeks, I was in the middle of watching Star Wars the force awakens, and I just about had it! So I look for a place nearby and it happens to be signature care down the street! Man the facility is clean! I mean High Definition 1080p clean lol, the young lady in the front desk was very nice, and was very brief because she was getting me to a doctor asap! My RN was Mrs. Campbell and she was the nicest RN I have ever encountered! Usually some are mean but this lady was on point and very sweet and reassuring. Now Dr.Braun, he is Godsent!!! He made sure I was taken care of and was very knowledgeable and answered every question with reassurance, . I trust my life with this team and I will now go to them from now on. I\'d give 6 stars if I could, oh by the way the security guard was a really nice guy as well , he walked me to my car and made sure I was ok to drive! I\'ve never felt so taken care of!',16),(648,'Brittany A.','/user_details?userid=NwHHQ3vgQyy7xqildl8sTg',2,'2015-11-23 00:00:00.000000','My mom was complaining of calf pain for a few days and thought it was just a muscle cramp. I convinced her to get it checked out so we decided to come here. We didn\'t wait long to get a room in the back and be seen by the doctor/nurse.  When the doctor came in I told him my moms symptoms and how she thought it was just a muscle cramp. So he ordered an ultrasound of that leg. The ultrasound technician wasn\'t friendly at all. My mom came in for CALF PAIN and the technician didn\'t bother using the Doppler on my moms calf. She only used it from the groin to the back of the knee. When she was done she didn\'t say a single word and walked out. She also didn\'t bother wiping off the gel from my moms leg. When the doctor came in with the results he told her she was negative for any clots and handed her a sheet with information on muscle cramps. I asked him if he could please order some lab work to check if she had any blood clots (d-dimer)...he also ordered a potassium level. I was very confused as to WHY this wasn\'t done when we first arrived and WHY I had to ASK for it.  So eventually someone came in to get the labs and start an IV. That lady obviously hit a valve while trying to advance the catheter of the IV and my mom started crying (it was painful) and the lady didn\'t take the darn thing out! She was trying to force that IV in her! She finally stopped trying to force it and took the whole thing out. When the results came back the d-dimer was elevated (indicating a potential clot). The doctor asked my mom to come back on Friday (this was on a Sunday) for a repeat ultrasound. The next day (Monday) my mom called her primary care physicians office to inform them about her elevated d-dimer and they set her up with a hematologist, who then ordered a STAT ultrasound...and found a CLOT. She had to start taking a blood thinner medication immediately. I really expected to have a better experience here than the one I actually got. The only good things I can say about this place is the fact that there\'s hardly any wait time and the doctor/nurse (the nurse that saw us initially and got a set of vital signs) were very nice and attentive. I\'m also disappointed with the \"calf pain\" protocol at this place...if they even have one.',16),(649,'Liliana H.','/user_details?userid=XEanVjOzntK12oZqhrR57w',1,'2015-10-20 00:00:00.000000','My son went there by accident thinking that it was an urgent care instead of emergency care. He had a minor cut on his foot. He was seen by the staff and immediately told that there wasn\'t much that they could do medically as it was very minor. He was told that he would not be charged since they didn\'t do anything. Cut to a month and a half later, we get an explanation of benefits from our insurance company in which SignatureCare filed a claim that totaled almost $1000 dollar.....for doing ABSOLUTELY NOTHING! This is totally unacceptable and fraudulent as far as we are concerned! SignatureCare, your billing department will most definitely be hearing from us!',16),(650,'Diana G.','/user_details?userid=kTB35vXK3Y60fAx04UHjoQ',5,'2015-06-21 00:00:00.000000','I have been to this ER three times (twice for my son and once for me) and they have always been amazing. As you can imagine, no one wants to go to an ER but they are fast, friendly and have always resolved my issues. I will definitely go back if needed but I\'m hoping my accident prone family will take a break.',16),(651,'Kristine P.','/user_details?userid=k1LKT4ZMsAzf3kwFtieaWA',5,'2015-05-31 00:00:00.000000','I ABSOLUTELY loved this facility and would recommend to anyone! Right when my fiancé and I walked in the place was very nice and clean with a coffee machine and even a children\'s waiting area. The receptionist, Melinda was so nice and helpful & made sure we were taken care of! We were seen right away & all the staff were very friendly. we had our own private room with cable, and were in and out, so glad we came here instead of a hospital!',16),(652,'Kamran H.','/user_details?userid=JO_udNQRbIQUbuOaXYyEwQ',5,'2015-05-23 00:00:00.000000','Walked in on the 13th of May describing some lower abdominal pain on none other than the day of my final exams. Thinking I would just be constipated or gas I went just to check and make sure. Didn\'t take more than 2 mins for them to admit me in. Two really nice girls took care of me and asked me all info pertaining to my pain and honestly just relaxed me while I was there. Another very nice lady did an X-ray and CT scan on me and the doctor was also very kind and he informed me that I had appendicitis . Turned out I was going to the hospital to have surgery and missing my final exam. I will be going back to personally thank all of them for doing a fantastic job in helping me. I am thankfully healing well from the surgery and also got a batman sticker before I was taken to the hospital! I highly recommend coming here if time allows.',16),(653,'Rose E.','/user_details?userid=7IITEIiGd4_1TnwqAtQKnA',5,'2015-05-20 00:00:00.000000','I am glad that this facility is available 24 hours a day. They were so efficient and professional,  not to mention caring. I was treated with the kindness of an expert professionals.  I recommend this emergency room!',16),(654,'Carola M.','/user_details?userid=Lo_8maV9otTQ3Jxa6CEgfg',4,'2015-05-18 00:00:00.000000','I am very grateful for the staff here, because they really took care of my Mother. I brought my mom in because she was having pains around the diaphragm and gallbladder area when she would breath in and out. She has Medicaid unfortunately this place does not accept Medicaid, that is the only reason I gave this place 4 stars. It would be nice if they accept all types of financial aid or insurances. So my Mother would be responsible for a bill with no discount no bueno.There was no wait they accepted her immediately, and they started working on her. They took her temperature and she had a very high fever so they immediately started giving her antibiotics through her IV. The Doctor came in to find out what was going on, and after hearing the complaints he was very professional and he told my Mother all that they need to do to find out what was causing her pain when she breaths. He gave his opinion on what he think it is, it could be her gall bladder or pneumonia. He ordered to do an X-ray on her chest, blood work, an ultra sound on her gall bladder and lung area, and to finish the antibiotics along with morphine for the pain. After doing all what needed to be done and while we were waiting for the results there was the convenience of being able to watch television with cable. Everything went by smooth and professional, after two hours of waiting for the results the Doctor came in and diagnosed her with Pneumonia. He said by prescribing her with more antibiotics in two weeks she should be okay. By the time we left she no longer had a fever. Like they could not take her Medicaid she had to pay the Bill in full, and I can tell you this that for all that they did on her I was expecting for her bill to be much more. Thank goodness it was not that much. This place is great, it is close and convenient and I give this place two thumbs up.',16),(655,'Faraz K.','/user_details?userid=ld_jAzU5XHeP5uODBCMnIQ',1,'2015-05-03 00:00:00.000000','There is no doubt that the doctors and some staffs are really nice. But there exists the billing department that will ruin your whole experience.I have a pretty good insurance coverage from my employer. I visited the facility early this year for an emergency. The receptionist confirmed that my insurance plan is accepted by the facility. After two months of last visit, their billing department sent two claims with different names to my insurance company that is usual for any ER to make more money from unfortunate patient who is in need of an immediate medical assistance (Shame on all ERs). First claim was fine but for second claim, they used different provider name that was out-of-network for my insurance. Due to which I need to pay full out of pocket amount. The total bill $770 exceeded my estimates of $360.Top Complaints:* I was misinformed that they accept my insurance. But in real, they accept it only for facility but not for professional services.* The purpose of using different provider name (that is mostly out of yours insurance network) is to charge you high out-of-network fees.',16),(656,'Zee S.','/user_details?userid=PHyqN3pD6zmw758LeeTj4g',5,'2015-05-02 00:00:00.000000','Very friendly staff from the front desk to the nurses to the doctor.They took my sick child in right away and tended to him in a very quick, friendly, professional way.Would recommend this place over any ER!',16),(657,'Alez W.','/user_details?userid=o7vWKWI1oMzjOSOFeL0sIQ',4,'2015-04-11 00:00:00.000000','Went there today with a minor emergency this morning. The staff including Melinda was very nice and quick, I was in and out  within a hour. Dr. Dang was a good doctor seems he really care for patients.',16),(658,'Jade S.','/user_details?userid=WT-4giitVSaHCd4wRvK3OQ',5,'2015-02-16 00:00:00.000000','The staff and facility was amazing! I was seen within 10 mins of arrival. The doctors had great bedside manner. The entire staff treated me with care. The facility was clean and comfortable and my room had cable. They even followed up with me after I was discharged to see if my condition had improved. I also loved that they were able to do all of my labs and tests on site. I would recommend this place to any of my friends and family. I hope I don\'t have to go back, but if I did I would definitely return.',16),(659,'PJ C.','/user_details?userid=T9XuzhZ7ZLII9PQBq4OCKw',5,'2014-12-14 00:00:00.000000','Took my friend there in a Saturday night for emergency care and we were seen within 5 min of arrival.  Got every test done on site with no waiting.  Had a private room with cable TV and every single staff member treated her with concern and care.  They are open 24/7 and easy to find.  We had a great experience and I highly recommend this ER.',16),(660,'Veronica V.','/user_details?userid=zTBcNsiuzMbhtWYO10nQpA',5,'2014-10-14 00:00:00.000000','What a great experience! everyone was very friendly and helpful! I did have to wait a bit for my daughter\'s test results but over all our experience was great. The rooms are clean and very nice!!!',16),(661,'Lori S.','/user_details?userid=da4U0J07-YbAxDWPJNCZHw',5,'2014-04-16 00:00:00.000000','Everyone here, even at 3:00 AM on a Sunday morning, was kind and helpful. The doctor and nurse were friendly and had me treated and out the door, with lab results, in 20 minutes. The doctor called a few days later to check on my progress, and I also got a lovely, handwritten thank you note in the mail. If I ever need emergency treatment again, this clinic will be my first choice.',16),(662,'Risa C.','/user_details?userid=oFt0iXfLClQ8UMA9XgxYfA',5,'2014-03-22 00:00:00.000000','I just wanted to send you a sincere thank you for the professional, prompt, and expert care you ALL provided me and my son at PhysiciansER.  The doctor and staff took the time to answer all my questions as well as care for my son\'s needs in a kid friendly environment.  Thank you for opening in my neighborhood and can\'t wait to spread the great news about the awesome care we received!!',16),(663,'mike g.','/user_details?userid=05b69pjD0GXHLBeHkDEOlg',5,'2014-03-18 00:00:00.000000','I went by there today with an ankle sprain.  I realy liked there service. The physician was helpful.',16),(664,'kanti b.','/user_details?userid=RNmHPE-9zrgGMdYpHuNmYQ',5,'2014-03-03 00:00:00.000000','Got excellent treatment here for a sprained ankle.  Was in and out in 20 minutes.  This doctor was funny and nice.',16),(665,'Apryl R.','/user_details?userid=Pa41eg6POFvVrRBe8v5gBw',5,'2020-02-05 00:00:00.000000','As a mom of 3 boys we visit these places more often then I\'d like to admit! This time was for me! I\'m very clumsy! This was by far the BEST ER I\'ve been too ever! Receptionist were sweet and friendly! Kat the nurse was fantastic! Very kind and hospitable! Dr Jones was caring and had great bedside manner! This place was great. Hoping I won\'t return anytime soon but if I do we\'ll definitely be coming back here!!',11),(666,'Ashley I.','/user_details?userid=rGiN4wPrBpAZInxpomaeTQ',1,'2020-06-16 00:00:00.000000','I know we are all trying to adapt to the changes we are faced with due to COVID-19,  but I am disappointed in the way this clinic is handling the testing. I signed in around 11am yesterday and was told to expect about a 1.5 hour wait, which I expected so that was fine. I checked back in around 2pm, and they had only made it through 15 or so people since I initially signed in. I was encouraged to wait at home since I live nearby, and was told they will call me. The employee managing the sign-in station even wrote down next to my name that I was waiting at home and to call 10 minutes ahead of time so I could go back. Around 5pm I still hadn\'t heard anything so I called them to check in and was told they will get to my number later in the evening. Fast forward to 730pm or so - I went back to the clinic because I couldn\'t get anyone on the phone. I waited in line to talk to the woman at the desk, only to be told that testing ended for the night and would resume tomorrow. I was pretty surprised no one called to let me know after I had been waiting all day long. I was even more surprised when I heard the gentleman in front of me say that he brought his friend with, but his friend wasn\'t able to sign in earlier that day - and he was told he would be tested along with his friend despite not being on the immensely long waitlist!So this morning I got to the clinic by 9am and the staff were all very rude and said to come back at 10am. I\'m not a morning person myself, so I didn\'t take it personally. I figured they needed their cup of Joe, but they were still quite rude at 10am. I will say the test itself was quick and not as painful as I was expecting, but it was done outside in front of everyone waiting when I would expect it to be done in a sterile exam room, inside the building. After your test, they bring you into an exam room to wait for your results so I\'m not sure why they wouldn\'t just test in there, but I did overhear one employee tell another that it was to \"limit the exposure for the staff\", which doesn\'t quite make sense since we were taken inside after the test was administered. Needless to say - I won\'t recommend this testing location to others, but I\'m glad my test is over & done with.',12),(667,'Ana A.','/user_details?userid=f-HH-ELzZf6Q9_Yyayoz_A',1,'2020-06-16 00:00:00.000000','Came in trying to get a test conducted. I spoke in a low voice trying to be discreet since there was a lobby full of people. When addressed by the employee she was not discreet or mindful that I didn\'t want my business being disclosed to other people. I walked out feeling ashamed of having gone in to inquire. I tried to reach the location prior to coming in to inquire but was unable to reach anything. Very upset as to how unprofessional things were handled.',17),(668,'Aaron M.','/user_details?userid=xGtrzabm2OvDQSEQpw49dw',1,'2019-09-21 00:00:00.000000','I came into this facility last night.  The front desk staff was kind, helpful and the staff saw me quickly.  However, I came in with a previous history of Bell\'s palsy.  I knew it was happening again.  The ER physician was respectful to me, but she told me I had to be fully worked up for a stroke and that there was no way I could have the differential diagnosis of Bell\'s palsy at this facility, which is supposedly a fully functional emergency department.  I was told that I would be treated for a stroke regardless.  I left the facility against medical advice, and went to another ER connected to a reputable hospital.  I was seen there immediately as a possible stroke but was ruled out within 4 minutes and diagnosed with Bell\'s palsy.  I waited  as the ER doctor confirmed this with a neurologist over the phone.  I was treated with the corrected medications I needed for early treatment of Bell\'s palsy and was able to avoid a complete stroke workup, which includes an overnight hospital stay.  I am doing fine today and can confirm I was not having a stroke yesterday.  I wish I had the same experience at signature but unfortunately i believe the care was subpar.',17),(669,'Raychelle R.','/user_details?userid=-9dPL-iO79hkN5MFrf5w9A',5,'2019-08-14 00:00:00.000000','Husband was went in for diverctilitus, was admitted overnight and I must say it was the most pleasant hospital stay we\'ve ever had to endure. From the initial Er walk-in to check-out, the entire staff was fast, friendly & thorough. Way more pleasant experience than you receive at the larger hospitals. Definitely will be my go to if a future emergency situation arises.',17),(670,'Stephanie B.','/user_details?userid=scoBoZVaKls3xYzPwvk8IA',5,'2019-08-12 00:00:00.000000','Great and friendly service! Everyone was welcoming and the visit was fast and efficient. I\'d definitely recommend coming here!',17),(671,'Rae B.','/user_details?userid=3slQvFsPw6Q8I1NOniHAkg',5,'2019-06-19 00:00:00.000000','Everything about this place is great from Tanishia at the front desk to the doctors and nurses level of care! Laura is THE BEST rad tech I have ever met!  Even with them being super busy I was never neglected in my care and pain. This is my first time here and if I need emergency care again I\'ll be back at my first choice!',17),(672,'Makayla R.','/user_details?userid=Nwaxr5CPpg6Sm8DqhzKS6g',4,'2019-05-15 00:00:00.000000','Signature care is my spot to go if I have to go to an ER, although they are pricey it is worth it . Every visit I had a warm welcome and compassion from a African American female (night shift ) ... she opened the door for us and walks us to our car to ensure the patients safety . My doctor was very professional and ensured I was in a better state before I left ..... the only reason I\'m not giving the place a 5 star is because it took the check out lady 30 min to figure out how to check me out !!',17),(673,'Rachel H.','/user_details?userid=hqqwXiXi4LdPZBhRcQee8A',5,'2018-11-16 00:00:00.000000','This is my second trip here once for gall stones this time for kidney stone. They have new name but both visits they are friendly, have cat scan on sight and the facility is always clean. They quickly try to get you comfortable. It has taken about 2-3 hours both times which is considerably quicker than standard ER and that includes pain management, IV, labs and cat scan. The staff was very nice and professional. They file insurance.',17),(674,'Micaela L.','/user_details?userid=nf-j2E1SKw6o5Yt3ESHoMQ',2,'2020-06-20 00:00:00.000000','The staff is excellent here which is why I gave them 2 stars, but my problem stems from corporate offices... I got an antibody test done a week ago after being exposed to COVID-19 and was told my results would be back in \"2-5 days\" and to \"call if there\'s any problems.\" After day 4, I started to get a feeling that maybe my info wasn\'t put in correctly and my test results were just floating around in the system which is why I haven\'t heard anything via phone/email/labcorp portal, so I started to reach out. First I tried via phone. While I was there, the phone rang constantly with no one answering it, but I didn\'t think anything of it until now. I realize they just aren\'t answering phone calls at this time, but are still instructing patients to call? There isn\'t even an alternate phone number listed on any of the paperwork I received. I then tried email with no luck, so I started to reach out via social media. I hate being this person, butI I honestly feel like I have no choice. The social media manager was the only person I talked to who was understanding and tried to push me through to customer service who simply said \"I can\'t help you.\" Never had I asked for a HIPPA violation, but just some information on how I can get help with my problem. I hoped they could pass my info along, and the facility could contact me, but nope! I completely understand and sympathize with health care professionals during this pandemic, don\'t get me wrong, but how this situation has been handled is unprofessional. My suggestion would be for them to put in voicemail services and have a designated person answering triaged voicemails once an hour. I honestly believe my rapid test and antibody tests were scams at this point and have demanded a refund so I can go get my test done somewhere else. I\'ve heard of Spectracell giving results back in hours, so they will be who I end up going to as I should\'ve done in the first place. Do not come here for anything COVID-19 related.',1),(675,'Leslie Q.','/user_details?userid=t-pWdBEkP1khkzF4ghy8RQ',5,'2020-06-20 00:00:00.000000','Super friendly staff. Well organized! All staff provide great customer service from the ladies at the front to the nurses and doctors. The guy passing out the wristbands was very nice and welcoming!',1),(676,'Lam S.','/user_details?userid=Xv6bH6p63DUheLu5b5ngfg',1,'2020-06-19 00:00:00.000000','Do NOT go to this place for a rapid covid test. They are not dedicating people to actually administering it and are squeezing people in between regular patients from my experience, so your advance scheduled time slot goes completely out the window. Got there at 6am for a wristband and a time slot at 7pm. Arrived at 6:30pm and still could not get the test at 10pm. I had to leave bc there seemed to be no movement at all. The excuse was that they had regular patients to see. Then what\'s the point of acting like you had a schedule at all?!?I put myself more at risk in that waiting room for the 3-hour wait for the (non)test than what brought me there. After 1.5 hours outside in the sun. Felt like a money grab from a place that wasn\'t prepared to offer the service as advertised.',1),(677,'A S.','/user_details?userid=d2Cnd50uPpC17zBAPlwOEA',3,'2020-06-24 00:00:00.000000','SINCE CORONA VIRUS: ITS NOT 24HR/ NOT in & out in 15 min. SignatureCare hasn\'t updated info. My husband is ill, he went to the Heights location because it says they are open 24 hrs/7 days a week and do covid testing.  He arrives around 10am, the officer on duty says they are close & advices people to come tommorrow around 4am. My husband said he only saw a few more cars in line, so he assumed they might be out of testing kits? Today he shows up at 4am and there\'s a line. He\'s a  block away.  Its close to 8am, and still not opened. Site should say a more specific time.  If you go at any time later than 4am, you will be in a huge line waiting to open. ADVICE: I think some people came before and figured out to wait in line and then have the ppl that needed to be tested show up later and hop in their car. I don\'t blame them for doing this, especially if its someone elderly that cant wait that long in the car.',2),(678,'G C.','/user_details?userid=MVG_VAsdgRaKo_yv02CVYA',1,'2020-06-19 00:00:00.000000','Went today, June 19th around 4:45, the Hispanic lady behind the counter was extremely rude and had a mouth on her like a trash can.... she was unhelpful and could not have been more rude.  If you like being talked down to and treated badly by office staff, then this is your place !!!  Also, waited on the phone for over 45 minutes before I drove over.... and that\'s an answering service not even a connection to the place.  Don\'t waste your time, life is too short for this kind of treatment. These chain places have no connection to community and thus treat people in a disconnected manner.',2),(679,'Bea C.','/user_details?userid=j0dqCrHle3KrISelIjAV7Q',1,'2020-06-15 00:00:00.000000','Their website advertises that they do Covid testing but when I got there, it\'s only limited amount of cars per day. They don\'t answer the phones either so we can ask. Could have avoided the trip over there. Wish they would post that on their website.',2),(680,'Irene L.','/user_details?userid=m_m98ON18WmsshnLpxPshQ',1,'2020-06-21 00:00:00.000000','If I could give a negative star I would. Called this place to confirm a covid test for me and my mom, was advised to show up at 8 am and receive a wristband for a later appointment. Arrived at 7:30 with my 80 year old mom, waited only to be told that testing was full and others had arrived at 3 am. Not very professional and no one provides the same answers. A group of people in line were upset and also advised to show up at 8 and get in line. When asked to find out if we should continue to wait and if employee could check with someone , she had a serious attitude. Went inside and came back out and said \"no more testing today we are full, and now I have been exposed and probably won\'t have babies. This was uncalled for , we are at their mercy to be tested.  Thankfully I found an amazing place that you can get in line online and stayed on course with their time slots.  I have sent this place 5 additional clients to be tested.  I will never return to this place.',3),(681,'Jj R.','/user_details?userid=LOROCjbaKznmRisDTceevw',5,'2020-06-23 00:00:00.000000','Came in because I cut my hand and I couldn\'t have had a better experience the stuff was so helpful starting with the front desk helping me as soon as I walked Carly greeted me and helped me ASAP! Sherwin walked me and took my X-ray in no time! Thelma came in my room and took care of me! Big shout out to Dr.wang for the perfect stitches!!!',4),(682,'Ben N.','/user_details?userid=65hPy0vA5svV5rQc4jjMLA',5,'2020-06-17 00:00:00.000000','Dr. Cindy Simmons is a terrific doctor. Excellent bedside manner, extremely knowledgeable and friendly. She gladly answered all of our questions and made our experience overall more enjoyable. All staff was friendly and professional as well, and the facility is clean and well-kept. We drove from quite a ways away, and are quite relieved that we did!',7),(683,'Nick M.','/user_details?userid=tSMlqtWgGCgP0SwHpMQoyQ',1,'2020-06-23 00:00:00.000000','I was tested for COVID-19 at this location almost a month ago and I never got my results. I keeps calling and no one answers the phone. Are y\'all even alive there?',9),(684,'Tad G.','/user_details?userid=4SnX008XLsolMpc4kPN16g',5,'2020-06-20 00:00:00.000000','Came in for a Covid test and was in and out in 30 mins. Great staff, great customers service. Highly recommend.',9),(685,'Bella R.','/user_details?userid=ZiFa78nTTp1W9QWzsNkn6A',5,'2020-06-20 00:00:00.000000','This is the best emergency room I have ever been to. They treated me immediately and gave me the best service! I would recommend this ER to anyone!',12),(686,'Thomas G.','/user_details?userid=M2iFpV1wZiqObUOf6h4FEQ',5,'2020-06-24 00:00:00.000000','Solid',13),(687,'Molly S.','/user_details?userid=CrMX_SQdjPvOxxakM_-QrQ',1,'2020-06-19 00:00:00.000000','Went in for something non Covid related there are so many people coming in the door asking for Covid tests. Why wouldn\'t they have someone outside fielding people? I feel my health was put at risk. Why mix Covid and non Covid people? Plus this is an ER visit location. Tell me that the second I walk in the door with 6 Covid people around me. Absolutely beyond pissed off!!!!!!',13),(688,'Lauren H.','/user_details?userid=a00VMxGFM6qVrQVjy5iTXw',1,'2020-06-23 00:00:00.000000','Came here for COVID testing because the claim to give you results within 15 mins. Not only did I have to come at 1 am but also waited for hours for results. They should\'ve just said they wouldn\'t be available in 15 mins and give me a call when my results were available instead of putting out false advertisement!',14),(689,'Alicia M.','/user_details?userid=LaqCBehDTCbiSxSZLDCXpw',1,'2020-06-21 00:00:00.000000','I went to this location on a Monday to be tested for coronavirus. I had called and was told there was a wait time but not told how extensive this wait time would be. Arrived at 2:00 and was told my slot would be around 5:30-6:00. Came back at 5:00 and learned they had only tested around 30 people in that time and it would be much longer. Waited in my truck for 4 hours, and then called and learned they had only tested another 20 or so more. Decided to go home and was told they\'d call me when my slot came up. After multiple times calling back for updates I learned they were only testing about 1 person per hour. The next morning I hadn\'t ever been called and called to ask what happened. She informed me there must have been a mistake and to be there in 30 minutes and they\'d make a spot for me.  The woman on shift at the desk Tuesday was the first nurse to actually seemed to care about me as a patient, her name started with a D, but I can\'t remember her full name. I arrived and was told to wait in my truck and they\'d call me in 15 minutes, after 1 hour I hadn\'t received a call and was told the call didn\'t go through so my slot was given to someone else. At this point I went and stood outside of the building for a further hour and a half until I was called inside the waiting room. Then sat for another hour until I was given paperwork, filled that out then sat for another hour. Was finally called back and had my vitals taken by a nice nurse, who reassured my my doctors anxiety was for nothing and I would be taken great care of and was then told that they would come take the swab shortly. After an hour alone In the room with no one coming in to test me, I stepped out to ask how much longer it would be and was informed that no one had noted I was in the room, so I had been completely forgotten for an hour. Then was tested, with the rapid 15 minute test, and didn\'t get my results for 45 minutes. We decided a PCR test was also needed and I waited an additional 30 minutes before that was taken. Was reassured by the doctor I would have my results back in 48-72 hours. It has now been 5 days and I have reached out to ask if my results are in many times, each time waiting at least 45 minutes to an hour and a half to be told each time they didn\'t have them yet and each time have been met with an extremely negative attitude and told some variant of \"You\'re not the only patient we have to deal with\" which I fully understand, however, it has now been 6 days since I started trying to get tested and I have no answers. I was told three times in the last two days that a nurse would call me back with my results, and the only time I actually did is when I was no longer being nice and said I cannot wait any longer and was very upset. I was called by a VERY unprofessional and rude man who informed me my test has not even been run by LabCorp and told me \"well its the middle of a pandemic, what do you expect\" to answer that, I was expecting at least an ounce of human decency. Do not go to this company for any kind of medical treatment if you want to be treated like anything other than a number.',14),(690,'G C.','/user_details?userid=MVG_VAsdgRaKo_yv02CVYA',1,'2020-06-19 00:00:00.000000','Went today, June 19th around 4:45, the Hispanic lady behind the counter was extremely rude and had a mouth on her like a trash can.... she was unhelpful and could not have been more rude.  If you like being talked down to and treated badly by office staff, then this is your place !!!  Also, waited on the phone for over 45 minutes before I drove over.... and that\'s an answering service not even a connection to the place.  Don\'t waste your time, life is too short for this kind of treatment. These chain places have no connection to community and thus treat people in a disconnected manner.',14),(691,'Amanda M.','/user_details?userid=rOa-4FOb-sy9iUPIwnHvBg',1,'2020-06-17 00:00:00.000000','So so so frustrated with this place! I have tried 4 times now to get tested for covid and they are no help & completely unorganized. The first time i called and they said no i couldn\'t come in at that time, but to come in later because they were doing walk ins from 7- 8:30, so we went it an hour early, just for them to turn us away. we asked to make an appointment and they told us no, they only take walks in but we could come again at 8 am. so we get there at 7:15 am, wait in line for 2 and a half hours, only for them to tell us to come back at midnight! well, we go back at midnight, and the front desk lady tells us our appointment was moved to 11 for whatever reason and the phone number we gave her is out of service so she couldn\'t call and can\'t test us either. we triple checked the number, and they matched up and it is a working number! she said the next available appointment isn\'t for another 48 hours so we would have to wait till then. one of my friends went in and waited in line for 7 hours to be tested, and he was one of the first 20 in line to be tested! another one had a similar experience to mine and kept being told different times, and didn\'t get tested until almost 20 hours after his scheduled time! and today, i had another friend go in who\'s appointment was at 9 pm and he didn\'t get taken back until almost 11:30! will not be coming here ever again and will be letting others know as well',14),(692,'Paula W.','/user_details?userid=hZUKz_E0n8j2nWhS4tswLg',1,'2020-06-18 00:00:00.000000','Called to schedule rapid COVID testing. Very helpful on the phone- took our info- told our names were on the list- told to go to the clinic and pick up a number for an appointment to come back later for the test. Told every person to be tested has to be present to get a ticket. Load up my exposed, potentially positive child, my other child, myself and drive the 40 minutes to get there only to be told they had given out the last tickets hours ago and won\'t have more tickets until Saturday- today is Thursday. Suggested that I just show up at midnight to get in line for a ticket (again everyone needing tested required to be present) I asked about the call I had registered with and was told it was a call center and they had no control over it. Obviously the call center has no idea what is actually happening at the clinic. Wasted hours of my day I could have been somewhere else trying to get help had I been given accurate information.',15),(693,'Ari S.','/user_details?userid=Jeyj5-VZpPQS2J9wQQNrDA',1,'2020-06-15 00:00:00.000000','The front service is horrible not even during these times are the frondesk girls helpful at all. Even after i had been waiting for more than 3hours outside in the hot weather. Jasmine was rude and didnt try to help me with the payment the phone lines were down and she acted like she didnt care to help. My employer was taking care of the cost and she didnt want to speak to my supervisor over on my phone. She had an attitude and was not helpful at all no matter the circumstances specially when they have to deal with coustomers that speak a different language. she could have explained the steps I needed to take to get my payment done instead of being rude and not helping me. There needs to be more people that try and help the patients instead of giving them a hard time. I do want to thank hayleigh for atleast trying to help me eventhough there was a language barrier. She is the reason along with the doctor I am giving them one star because they really deserve no star at all. They need to train their front desk some manners and good costumer service. They also need to get on the same page with their answering service because they say one thing and when you get there the front desk says a completely different thing.',15),(694,'Cain B.','/user_details?userid=_tat7SwRlL2qRLNmhRMriQ',4,'2019-11-25 00:00:00.000000','The staff was friendly and quickly saw to it my family member was taken care of. A big thanks to Dr. O\'MalleyDana H,  RNMarcus B, RadiologyJocelyn A, Registration Jordan N, ER Tech',15),(695,'Ingrid M.','/user_details?userid=nHnErGAgQrqhFmbpar1rGw',5,'2019-06-16 00:00:00.000000','Dr. Smith, Jana, and the whole team here were so nice and helpful with my mom.  We had to stay overnight and they were very attentive. The place is nice and clean, room was very comfortable.',15),(696,'Angelica Y.','/user_details?userid=dQ3A1rXH2xyNiNKuKdPN8g',1,'2020-06-24 00:00:00.000000','If you don\'t have COVID-19, you will at least get pneumonia. I was told to come here between 2 and 3 am to get a time slot for the test. I have been standing in the rain for 3 hours. It is degrading and inhumane. I have a 90-year-old at home I am trying to protect. One of my colleges have tested positive.I\'m still waiting and I\'m not impressed by our city and state propaganda about how easy it is for a test',17),(697,'Saroosh L.','/user_details?userid=4PR5tlSdzo4ShkFMYHmE0A',1,'2020-06-17 00:00:00.000000','Website doesn\'t work, no one picks up the phones.  Can\'t imagine what a mess it would be if you actually went there.Edit : phone picked up and hung up twice.',17),(698,'Joe C.','/user_details?userid=l8OFVE-YboA4NVkPSZKc_A',1,'2020-07-07 00:00:00.000000','Huge money grab establishment. Went there for something possibly in my eye. Flushed and checked. Nothing found. Sent my insurance 6 separate bills for a 30 min visit. No way to make sense of all these bills and ridiculously overpriced. Won\'t be back unless I am unconscious and brought there by ambulance.',1),(699,'Saru L.','/user_details?userid=dztQRBvioGA4jaGA5hi7Yw',1,'2020-06-29 00:00:00.000000','Was there beginning of April because I needed a miss work letter from self quarantined for COVID. Had all the symptoms but no fever. All they did was took my vital sign. MD put her stethoscope on me. Got my letter. That was all the treatment. No test or counseling. Just got my bill. $1300. I am having difficulties justifying this.',1),(700,'Mary Ann W.','/user_details?userid=CFzXkIOU2NhqIt8iKMxEMw',3,'2020-06-24 00:00:00.000000','The reviews from COVID testing are concerning. I went there at 7 a.m. with no symptoms, but had been directly exposed about a week before. He put the swab up my nose and it barely went up my nose. Now I am worried that I had a false negative.',1),(701,'Connie c.','/user_details?userid=nLSUIW6SVwmGW3PE1J_kFQ',1,'2020-06-29 00:00:00.000000','I don\'t even know how to begin , I\'m just upset because they were closing when I was getting there  tonight with my roommate that was in need of medical care. The nurse came outside and said they were closing for the night and they were taking online appointments for the next day. I thought this was an emergency care that helps others not only Covid patients Im a little confused if this is only for Covid patients.',2),(702,'Kate L.','/user_details?userid=VYYPIDPbeC0Am1x_-yFieQ',1,'2020-07-01 00:00:00.000000','Got a call last week bc I had been a prior patient reminding me that they had COVID tests and inviting me to come in and get tested. Tried to call today with no answer to see if there was a wait. 7am went for a test and was stopped from entering bc they don\'t take walk-ins anymore, and I needed to make an appointment. Went online while sitting in the parking lot, and there are no appointments in their system for the next 2 months. I called again, and she told me that at 3pm each day is when you can make appointments but no promises on availability. I am not sure why they are soliciting patients for a service they are clearly completely overwhlemed providing. Hope this helps others understand how they are actually operating.',3),(703,'Laura A.','/user_details?userid=wKtg5BhYk2TPJ_kiHYXnsA',4,'2020-07-03 00:00:00.000000','For covid resting the results are fast... however you wait almost an hour even though you have an appointment. I got there before my scheduled time and waited a long time, make sure to go about 30 mins or even 40 mins before your appointment to get out of there quick. Other than that great staff, and also doctor and nurse are really good to asking questions and truly listening to what you\'re concern about.',4),(704,'Griffin S.','/user_details?userid=8KDt93csx-Xa8ynRevY9OA',1,'2020-06-30 00:00:00.000000','Sunday night I called and spent 45 minutes on hold waiting to speak with a nurse which was expected due to the crazy amount of people getting COVID tests. The man I spoke with was very kind and told me they were hanging wristbands out 8am-8pm. Following his recommendation, the next morning I got there at 7am to get In line for a wristband. After waiting for 15 mins a nurse came out and said that system didn\'t work for them so just go online and schedule an appointment. The problem with that is I order to do that you had to pay $10 that was promised to be refunded upon checkout after your test. Any who- I scheduled an appointment for 9pm that same day. I got there just on time and waited for 2 1/2 hours and saw MAYBE 5 people go inside that whole time. There was absolute no organization. I understand it\'s a crazy time and I feel for the staff but a 2 1/2 hour delay with NO communication is a little crazy to me. I ended up leaving without a test. Now it\'s impossible for me to get a refund because of the long hold time again. Geez... I do not recommend getting tested here. The location on Wirt rd is apparently a lot faster?',4),(705,'Jess G.','/user_details?userid=-aD2Ki9tJdp4EGNIdxFHRQ',1,'2020-07-03 00:00:00.000000','With covid going full force I understand that everyone is busy. I have called 4 times and waited 20+ min on hold only to be HUNG UP ON  when I became the 4-5 caller. Extremely disheartening and disappointed with Signature Care.',6),(706,'Anne G.','/user_details?userid=GhYzHJW9TbIlldhzil8Usw',5,'2020-07-16 00:00:00.000000','I had rapid result Covid-19 test at the Montrose SignatureCare this evening and it was a great experience, made better by me receiving a negative test result. The staff is very professional and friendly, and they take care to make certain their lobby is clean and not crowded. Yes, there was a little wait for my appointment (about 1 hour), but I was thrilled to find a local local rapid testing site that could test me the day after I learned I was exposed the the virus.',1),(707,'Karisa R.','/user_details?userid=WX2srEZlvL6SkPyG1ZAmlQ',5,'2020-07-09 00:00:00.000000','Such a well organized and clean office. I\'ve had a much better experience here than the Stafford location. The staff is very friendly and professional Stafford location should take notes',1),(708,'Rene F.','/user_details?userid=RyEELRkR_Ms2DkkOftJkcA',5,'2020-07-14 00:00:00.000000','Went for a COVID test and was impressed with how organized and fast the process was. I would recommend family and friends to book your appointment and get tested! Also, Okarys was very friendly and informative!',2),(709,'Dana I.','/user_details?userid=KEhoImWfj2WhTOJS937G4A',1,'2020-07-15 00:00:00.000000','DO NOT GO HERE FOR COVID TESTING. My mother had an appointment for 7:00pm, we arrived at 6:30pm, she is still currently in line and the time is 9:20pm. Staff is not accommodating or organized at all. They were passing out multiples of the same waiting numbers, you have to wait outside in the heat, and we had to ask for the registration forms several times. I wouldn\'t even recommended as a last result. My sister was able to test within an hour at another location.',3),(710,'M G.','/user_details?userid=v4f5ihThCLioW0CWGHik7w',1,'2020-07-18 00:00:00.000000','Front desk is inconsiderate and rude to the hispanic uninsured patients. I sent my Mother here since I had previously visited. She was weak, obviously sick and helpless. The front desk personnel was very insensitive with my mom. Please retain, your staff to be kind and respectful. We\'re all in the pandemic together and the way my mother was treated was uncalled for.',4),(711,'Ivan C.','/user_details?userid=zK_QuVRs4rC0Ihpfl9LibQ',1,'2020-07-12 00:00:00.000000','It was a complete chaos, My wife and I waited 3:45 min outside, process was lengthy, lack of coordination and do not follow protocol, at 11:30 pm a emergency customer showed up and the emergency crew didn\'t have the right equipment and right way to get the person out of the car and inside of the clinic.Finally they  were able to get this person inside    using the same door everybody else was getting in. Instead using the emergency entrance.My wife and I were the, at that point we decided to leave without taking the test.This place require a better supervision and control.',4),(712,'Christy A.','/user_details?userid=jxLNdosO6-D-k7AlPslGpA',1,'2020-07-19 00:00:00.000000','I usually never do this but I felt like I had to. I\'m never rude and I never yell nor am I disrespectful. This place is absolutely horrible they are rude and are extremely disrespectful. I asked a lady a question and got yelled at and was told to go wait outside by  another lady that I wasn\'t even talking to. She was rude and disrespectful and it seems like she was having a bad day and took it off on me. I left and I\'m never planning on coming back.',8),(713,'Wendy U.','/user_details?userid=SW71kR1uN9UkMY8mB4qfzA',1,'2020-07-06 00:00:00.000000','if i could give less than a star i would , front desk let us rude ! and does not have no sympathy towards the sick patient. i\'d get this staff under control ! we\'re in the middle of a global pandemic where we need kindness in this world more than ever.',8),(714,'Michael M.','/user_details?userid=unrwAN8HOPa729CZJhfnrg',1,'2020-07-03 00:00:00.000000','If I could give this place 0 stars I would. Front desk lady is so rude and this was on two different occasions.',8),(715,'Shane A.','/user_details?userid=jBbNwdQvRZA_qwyA5Q06Zw',5,'2020-07-23 00:00:00.000000','I visited SignatureCare Emergency for Covid testing. The staff were excellent and very professional. They staff  Ikenna Amaliri and Elisa Trevino. helped answer the questions I had about covid. And helped clear up some rumors I had heard about the testing.',9),(716,'Ambrosia A.','/user_details?userid=vjr7e-Bk48HOCtyvQZ4K9w',5,'2020-07-17 00:00:00.000000','The man who did my COVID test was the sweetest guy ever, he tried his best so it would only hurt a bit, and generally was gentle and kind. All the nurses I talked to were compassionate and nice, and I went in at 3am. Wonderful team they have!',9),(717,'Kelsey H.','/user_details?userid=rhdNyKa9qkU37p2yYJjT0A',2,'2020-07-04 00:00:00.000000','Came to this location after being referred by others who took the COVID rapid test. If I could have gone elsewhere I would have due to the rudeness of the front desk associate. Before arriving we looked on their website to see what we needed to do to have a COVID test done. Their website CLEARLY states \" If you have COVID-19 symptoms, no scheduling is required to get evaluated\". We arrived at the location and there was a security guard who stopped us before entering and asked if we had an appointment. I told her no and she then took a phone call on what looked to be her cell phone and made a hand gesture to come in. We walked in and a front desk associate asked what we needed. I explained we wanted to take a COVID test and explained our symptoms. She then spoke with another front desk associate who then came up to us and again asked us what we needed. I explained again that we wanted to take a COVID test and explained our symptoms and she asked if we had an appointment. I told her no and she said I would have to make an appointment online. I told her their website stated if you have COVID symptoms no appointment was needed. She then said because we are having shortness of breath and that is a life-threatening emergency that they would be able to see us.She handed us paper work and we took a seat. About 5 minutes later she asked out loud from behind the desk if we were done. I assumed she was yelling out at us because I saw no one else in the waiting room filling out paper work. I yelled out back at her no, thinking in my head you JUST gave us the paper work and why not call me by my name if you have a question? I was also helping my sister who was not an adult fill out her paper work as well.  Another few minutes passed and the same front desk associate said out loud \"what is your phone number\". I looked at her and asked if she was talking to me because there were other people in the waiting room and she was. Was I suppose to yell out my phone number back to her? Again she could have called me by my name or asked me to come up to the front desk rather then yell out what is my phone number. I didn\'t get her name but she was short and petite with long black hair, perhaps Hispanic / Filipino. Another few minutes passed and she yelled out for us to come up to the desk but I told her we are not done with the paperwork. She said that was fine and she would help us fill it out. She then took the paper work and flipped it to the pages that needed the signature and asked me to sign. I didn\'t even get a chance to read everything through?! I was already feed up with the way we were being treated and just signed the papers and gave them to her.  The actual process to take the test went good. There were two men who were helping us and they were both very friendly and explained everything to us very thorough. The same front desk associate came back to collect payment and this time she was humming and seemed to be more happy helping us? Yet, that didn\'t change my mind about the rude attitude she gave us earlier.',9),(718,'Corbin S.','/user_details?userid=5tzxpUW-Yt8sz_oCdukKCg',1,'2020-07-03 00:00:00.000000','I scheduled a drive thru covid-19 test on the website. When I got there I was told that I need to go inside and check in at the front desk, fill out papers, and then wait to get called back to get swabbed. The only part of the drive thru appointment was that after someone gets swabbed they get in their car and go through the drive thru for their results. Very inefficient and unhealthy to have people waiting together in the lobby to get tested. It\'s in waiting rooms like yours where the virus spreads. When I found out I had to go inside still and wait inside and get tested inside I told them to just cancel my appointment and I left. Horrible service. Don\'t call it a drive thru test online if it\'s not an actual drive thru test. I will never come back to a Signature Care even if it\'s for an emergency and it\'s the closest place to me. Never again. Horrible.',9),(719,'Jason N.','/user_details?userid=3JHISEMLSMbUa5OxbcxCFA',1,'2020-07-07 00:00:00.000000','I came here to get my 2 year old tested for Covid-19.  He had symptoms of a cough, fever and runny nose.  We were left in the waiting room for 7 hours!  When I went up to inquire about the wait...a nurse walked by and said, \"We\'ve seen 100 of you people today.\"  I told her, \"I paid my $175 like the first 100 and expect to be number 101.\"  Terrible service and very, very inefficient.  There are too many other 24 hour Emergency Rooms in Texarkana to think about going to this one.',10),(720,'Courtney L.','/user_details?userid=Y-Hq0CO-9up6-2Nom5-lbQ',5,'2020-07-24 00:00:00.000000','I needed to get a COVID test and my friend recommended this location. It was an easy process to make the appointment for the following day online. Once we arrived they only allow 5 patients in at a time. I was able to go in, check in for and fill out some paperwork. All of the staff was friendly and helpful. The test wasn\'t comfortable but the gentleman that administered the test made it quick and easy. I\'d say maybe 10-15 min in the exam room. Once completed, you return to your car and wait for your results to be brought to you in your vehicle. All done in a little over an hour.',12),(721,'Pilly R.','/user_details?userid=57qnpqIl662ZoVw79gdGCg',5,'2020-07-24 00:00:00.000000','There level of professionalism is unbeat! They were very quick to check me in and get me out as soon as possible. The drs are very knowledgeable and answered all my questions.  Steven helped me feel comfortable and made sure my son was happy and stayed happy!  Will definitely go again!',12),(722,'Candice Z.','/user_details?userid=if5M1xv8WFlCcuAveWE0Qg',5,'2020-07-24 00:00:00.000000','Covid testing process was a breeze with the online appointment. Everyone was busy but you can tell they care about each person passing through the door. Thank you for your help and service during this Pandemic.',12),(723,'Jesus S.','/user_details?userid=pdjHxkJiu9y68WIOMJR9Lg',5,'2020-07-24 00:00:00.000000','They had a good staff and very nice. Went in for a COVID checkup and they were quick. Will come here again if I ever need anything.',12),(724,'Natalie S.','/user_details?userid=kzFN7h58zUhfhSmZKeTvhg',5,'2020-07-24 00:00:00.000000','They got me in for a rapid Covid test same day. Lauren is amazing! I had my results 20 min after testing. Fast and efficient! Nice workflow that was very professional. It was a clean facility that I felt very safe. The doctor and nurses had great bedside manner that made me feel at ease.',12),(725,'John S.','/user_details?userid=6Ft-sMjXFVjNLqJT15Digw',1,'2020-06-25 00:00:00.000000','Beware of this place . My employer made reservations for seventeen of us today at Eight AM It is now 10:16 and we have not been called. Lots of people came after us and went in but  we are still waiting.No way to run a business',12),(726,'Peps C.','/user_details?userid=nLaULk1bwszeSoSa7Q800w',1,'2020-06-24 00:00:00.000000','I called this location to see if they take walk-ins for rapid COVID testing as advised by the Signature Care ER Center at slaughter. I waited (about 50mins)to speak to someone since I got turned away at the slaughter location. I didn\'t want to drive another 30 or so minutes only to be turned away. I didn\'t mind waiting on the phone, I understand it can get busy especially with what is going on. When I finally spoke to someone she gives unclear information about testing that appointments are required, but you can also walk in?. I ask about setting up an appointment and she says they can\'t schedule appointment over the phone. I would have to go there to do it. This makes me more upset since I was already at the south location and no one mentioned or offered to do that. They were just quick to turn me away! This place should be called signature we don\'t care. Medical facilities should be places where you have people who want to help others.',12),(727,'Lisa B.','/user_details?userid=fAMZ5GvDSY0MCSLEMhS-1A',1,'2020-07-21 00:00:00.000000','I brought my 80 year old mother in for a COVID test. We made the appointment for 2pm. At 3:15pm she still had not been tested AND was made to sit outside in 94 degree heat for over an hour until they called her. Disgusting. 80 years old!!! There were 5 people all waiting in the grass behind the clinic in this heat. I left to go get waters for everyone from the convenience store across the street. Testing took over 30 minutes before Mom came back out at which time was asked to sit OUTSIDE AGAIN! We still don\'t have the results and are still waiting. There were at least 5 people with a 2pm appointment. Now 3:45 and Mom waiting still for her results. I understand the wait I guess but forcing an 80 year old woman to sit in the grass in the heat for over an hour with no water or bathroom???',13),(728,'Kate M.','/user_details?userid=XPZwwA9GGNppWCVNjqYdtw',5,'2020-07-09 00:00:00.000000','I am traveling to Ohio this weekend for a surprise 80th birthday party for my mother.  With Texas being such a high risk state, I decided to get tested for Covid.  I have heard the horror stories of long wait times so blocked off the entire afternoon.  To my surprise, I was in and out in less than 45 minutes.  The emergency room doctor (Dr. Elsbecker) quickly greeted me and reviewed the process.  Within a few minutes, somebody was swabbing me and was told the results would be ready in about 15 minutes.  True to their word, the handsome Dr. Elsbecker gave me my results - negative!  He gave me a big smile and said, \"tell your mother Happy Birthday\".I would never go anyway else!',13),(729,'Louis C.','/user_details?userid=42Kg8Q5jdc__W-si2c2g0g',1,'2020-06-26 00:00:00.000000','The website and call center is a bunch of bs don\'t go there thinking you are going to get covid testing 24/7 without an appointment. You call the phone number they tell you one thing but when you get there they require an appointment. I called ahead of time to confirm no appointment needed, had my entire family (6 people) drive over an hour at 8am just for them to get there to be told they have to schedule and appointment and it\'s at 11pm.',13),(730,'Cq C.','/user_details?userid=ur5qrhfm0G9lcbopdwIyYQ',5,'2020-07-25 00:00:00.000000','The registration staff could not have been more welcoming (Lorena and amanda) and friendly with helping me fill out all the necessary paperwork. Dr. Jacob and nurse sara made the corona test super easy and quick and I couldn\'t recommend them more!!!',14),(731,'James B.','/user_details?userid=N_QBgzftH0D6fYyr7JWAPg',5,'2020-07-25 00:00:00.000000','Lorena and amanda had some of the best customer service 10/10 would recommend i would definitely come here if you have any urgent health problems',14),(732,'Joel R.','/user_details?userid=AeWcwn13Em9KyXImRi1Q4Q',1,'2020-06-30 00:00:00.000000','COVID testing is a mess and they\'re not gonna be forthright with you as to when you can get in. I was told on a Monday they were booked but they could get me in the next day, Tuesday, that they would call in the morning with the time. They never did, so I came by in the afternoon. Waited an hour outside in the Texas summer heat because they weren\'t answering their phone only to be told I was 32nd in line...for Wednesday. Just tell me that on Monday! Instead you just wasted my time and made it harder for me to get a time-sensitive test elsewhere.',14),(733,'Jason W.','/user_details?userid=i1CQSJf1xxasBaM8bYkt0A',2,'2020-07-22 00:00:00.000000','Second Covid test for me as I needed a negative test to return to work.  First test facility took 20 mins total and 4 days for results. Came here for a second and it took hours to get to even enter waiting room to register. I was number 2 outside. Watched many people walk off. The staff just seems very unorganized and not ambitious. They will just do test at their leisure. Appointments mean absolutely nothing.',15),(734,'Dollie A.','/user_details?userid=h-GATl6xDfEBa6ukgNjg_A',5,'2020-07-17 00:00:00.000000','I was skeptical about coming here after reading all the reviews BUT I\'m glad I did. I found these guys over the internet and called to find out more info. The lady over the phone was extremely nice I mean this is THE BESR customer service I have received over the phone BUT still these reviews almost scared me away. Yes the $10 charge to register is a bit much BUT they do this to make sure people don\'t cancel. Otherwise those who really need the test won\'t get it. I arrived and only my son (5) and I had appointments but I brought my other son (14) with me and husband just to see if there was any possible way they could be tested as well. They were so nice and were able to accommodate my family of 4 right then in there. I was so grateful as I\'ve been sick and my nephew (who lives with us) tested positive this morning. I don\'t know what my results are yet but I can tell you that I will be coming back to this facility for any ER related issues (let\'s hope I don\'t have many). Thank you for all your help and support!! You made a very difficult time so easy and pain free!!',15),(735,'Maggie M.','/user_details?userid=97K0HyxmqGZsSgXSKz6NbQ',1,'2020-07-13 00:00:00.000000','This \"rapid testing\" site does not even deserve a 1 Star. I know and understand that there is a high need for tests but I\'ve seen urgent cares do a better job at handling their appointments. First of all, the $10 non refundable reservation fee is a scam. Because once you show up, you are told that the wait time is between 1-3 hours even with an appointment, plus the additional hour to wait for your results. I may also mention that you are not even allowed to talk to the medical assistant and only to the security guard if you have any questions upon your arrival. Last week, I went to another urgent care facility for the regular test and was seen immediately because I had AN APPOINTMENT. The wait line is outside, which is fine if you are a walk in but unexpected if you have paid for an appointment time slot. This is also NOT a free testing facility, they are billing my insurance, so I understand that there will be wait times but if you are a paying customer that intends to use insurance, why is it being treated like the free testing centers in the city. To be told to wait outside, this is Houston in mid-July! I can only imagine the poor people making appointments mid day in the July heat, having to wait outside. My appointment was at 7 am and when we got there at 6:45, the line outside was already long, I am also 5 months pregnant which is why I chose a rapid test and appointment facility. Khalid save your response and excuses. This is unacceptable!!! You can\'t get people\'s deposits and then make them wait ridiculous times. I will be calling Harris county and your corporate office. Also, hire better medical assistants who can help and communicate protocol better. The woman at the front was rude, once I was \"allowed\" to speak with her.',15),(736,'Jose T.','/user_details?userid=BFbLetgBqJfnjcE--6lrDQ',1,'2020-06-27 00:00:00.000000','The WORST testing center. Instead of helping people during this time of chaos, they offer \"rapid COVID testing\" and make people stand in line for 12+hours. Giving 1 star because it\'s the lowest possible it will allow to rate. Definitely need to work on their organization to truly offer good patient care.',15),(737,'Amanda P.','/user_details?userid=kyRxwDosENwqPuaQkNBl3A',5,'2020-07-01 00:00:00.000000','I came in here 4 days after having my gallbladder removed by the worst surgeon I\'ve ever had the displeasure of meeting at HMC. I was not given antibiotics or proper pain management, and nobody from his office even did a follow up call after surgery. After days of agony, bloating and hurting to even breathe, my husband insisted I get checked out and I\'m really really glad we chose this emergency room clinic. I was in so much pain when I got there, I sat in the waiting room for maybe  3 minutes before they took me back. I was assessed and immediately started on a line for antibiotics and they had my pain under control within 30 minutes. I was in and out of CT shortly after .  The nurses, techs, doctors and staff here are nothing short of the best care I\'ve received probably ever. The bill was no laughing matter, but when I needed care they stepped up and god forbid my family or I end up in a position to need an ER again we will be coming here. To the staff, thank you, THANK YOU for listening and hearing me when I said something was wrong. Thank you from the bottom of my heart.',16),(738,'Cristal T.','/user_details?userid=ryHHtKFrcjR5OG0xsXv7dg',1,'2020-06-24 00:00:00.000000','I was on hold for 1hr and 45 minutes. I just wanted to ask simple questions regarding testing. All the wait to just hear them pick up the phone and hang up. Trust me if I had all my answers by visiting their website I wouldn\'t have called in the first place. I understand they are probably overwhelmed with calls as I was on hold for a while but the least they can do is answer some simple questions. This is unacceptable during the time where many people are wanting simple answers. I am sure that if I went in it would have probably been a bad experience.',16),(739,'Amir D.','/user_details?userid=mc2rEMt0PfFpd2mckWPPFw',1,'2020-07-16 00:00:00.000000','Worst service !!! Appointment 12 am  till 1:30 am not a word. What is the point of making appointment?!Won\'t recommend the place at all. Definitely not LE friendly !!!!Each person at the front desk got her own answer to your question !!! Do not waste your time ...',17),(740,'Dan H.','/user_details?userid=GnxLELNNt8lBvbGOKEZuHg',1,'2020-07-13 00:00:00.000000','I hate giving a bad review to anyone, but I must.  Care was fine, but the billing department is so awful.  They charged me a lot so I set up a one year payment plan with them.  After I had paid it all, they added another month (13 total) of payments taken from my Credit Card.  I contacted them and they admitted charging one month too much but then they found another bill of more than $1,000.  What?  How did that happen?  Now they want more.  Just one visit and they want almost $3,000.  I said no and I wanted my overpayment back.  They refused and demanded more payments.  So I am reporting them to everyone I can find.  BBB, Yelps, etc.  Don\'t trust these bandits.  Certainly don\'t give any account numbers to them.',17),(741,'Susana L.','/user_details?userid=a_IaD1RjtNaPGHdTCq3GqQ',1,'2020-06-26 00:00:00.000000','I\'m upset with front counter staff. I checked in at 5:15pm after  50 mins of waiting, I found out that they didn\'t check me in for the ER side. On top of that is still had to wait an extra 30 mins because other ppl that checked into the ER after me was being called. I\'m not demanding to be seen first but I probably wouldn\'t have to wait so long if I was checked in at 5:15pm.',17),(742,'Nery R.','/user_details?userid=ZpPDp3k635402dnUGqDTVA',5,'2020-07-23 00:00:00.000000','Oz was my nurse, he was very helpful! Made the visit better than I expected. Ask for him every time!',18),(743,'Juhi M.','/user_details?userid=vbAZgHCqnrrLb0a9s3VzgA',5,'2020-07-20 00:00:00.000000','Jessica S. was so sweet! She was very informative and eager to help us. Definitely coming back for future needs.',18),(744,'H B.','/user_details?userid=t5ghZfi17OiWs8qfwMQy9g',1,'2020-07-12 00:00:00.000000','What a horrible dreadful place. Insist on payment ahead of time then endure a 4+ hour wait deep into the wee hours of the morning. Only to be dealt with by an exceedingly rude and unkind nurse. DONT COME HEREUPDATE: the response that the urgent care center posted is the same each time. No good reviews to be seen. This was not a one time bad occurrence. You have an owner/management issue.',18),(745,'Evan W.','/user_details?userid=-cC0g6lLG2oJle-lUok67A',1,'2020-07-07 00:00:00.000000','The lack of professionalism of the staff here is wild.They were very rude, refusing to answer even simple questions and gave off a very hostile vibe to people trying to register Woman at the front was NOT wearing her mask. This is a medical facility for crying out loud!!People who showed up AFTER me were getting admitted for COVID testing before I was. I asked to see what position in the queue I was, and they flat out refused, dismissively telling to me that it\'ll \"be a while\".It\'s worth noting, while I was waiting, they told several other people what their position in line was, but just decided not to tell me. They make you book an appointment online for COVID testing, but when you arrive, you\'re forced to wait 2-3 hours out in your car, they don\'t call you to come back inside, and you\'re just left in confusion.Very disorganized, there doesn\'t seem to be any communication between the front desk and the back office.',18),(746,'Sheila R.','/user_details?userid=lWbO94mGK9fgq7vF-5TdWA',1,'2020-07-06 00:00:00.000000','Worst place ever. Front desk lady wasn\'t wearing a mask the entire time. She kept sneezing. They\'re rude. I get it you\'re busy but if you hate your job or don\'t care about your health or the health of others don\'t work at a clinic lol. You ask small questions and they trip and give you attitude. Trash.',18),(747,'Deez J.','/user_details?userid=XU1VwNohZeBTJcU2VpIw5Q',3,'2020-06-30 00:00:00.000000','Info on COVID-19 testing! ONLY COME HERE IF YOU NEED 15 MINUTE COVID-19 RAPID TESTING!!!! Save your time driving here only for them to tell you, they have a 10 hour wait time and tell you to come back at 12midnight to get a wristband for a next day appointment. ( I really wish they gave updated info online, phone, or a sign outside, it would save them time and the patients time of having to tell every single person. ) I got there at 11:15pm to wait in line until 2:30am I finally left. I waited in line outside for 3 HOURS 15 MINUTES!!!!!!! I was the 59th person in line. They gave me a 5pm time slot for \"the next day.\"I understand they are soooo busy and under staffed, the staff is friendly, I just wish they were more upfront with the process of getting a Covid test.',18),(748,'Blayne B.','/user_details?userid=KbMcg07Nxo20fqU8nO0MSA',1,'2020-06-25 00:00:00.000000','I came here for covid testing. On the website and on the recording on the phone it says no appointment is needed. The phone wait time was over 30 minutes and I live 30 min away so I just started driving. When I arrived (I still hadn\'t gotten through on the phone) they told me they only take walk ins from midnight to 8 am, I would need to come back in person tomorrow morning to get an appointment for Saturday. So that means two more hour long round trips. I could just go to CVS and get a test that comes back in 2 days by that point.',18),(749,'Rachelle B.','/user_details?userid=_LQ41SxbkF983OB4woNQXw',5,'2020-08-15 00:00:00.000000','The staff was quick, friendly, attentive, and compassionate. Couldn\'t have asked for a better experience.',1),(750,'D J.','/user_details?userid=Bce3cU96BjbRML7jkMwZYQ',3,'2020-08-13 00:00:00.000000','Unfortunately, even though Signature is in a great location should I need urgent care, they do not accept my Aetna Medicare Advantage. That\'s major insurance that a lot of people have. Too bad I cannot go there....',2),(751,'Amy E.','/user_details?userid=y8D3218WCilaZNl841UaRg',1,'2020-07-26 00:00:00.000000','My husband fell off his motorized scooter going 17 miles an hour straight into his head. His entire face was bleeding from eye to chin. I understand there are Covid patients but they made him wait in a room for 4 hours before getting to him. One person even came into the room and said \"dude your still here?!?\" because they clearly forgot about him. I called another ER room nearby and they said they could scan him right away if I took him over there.  Needless to say we ended up staying thinking it couldn\'t have been much longer. We got here at 9:00pm and it is now past 2:00am and I am still here writing this in the parking lot... I am so upset.  If you have a real emergency, go someplace else! You might be in serious trouble waiting for them to get to you here!',2),(752,'Terrance W.','/user_details?userid=_gArxNtDweqSfjjwFoEbwQ',5,'2020-08-02 00:00:00.000000','The staff at the front desk, the nurse, and the doctor was incredibly nice and helpful. I went in to get my COVID testing. I highly recommend this clinic. It was easy to schedule an appointment online. The process to admit and see the doctor was quick and organize',3),(753,'Airel W.','/user_details?userid=PhXyThDSCM4v-v8h3zUAXQ',5,'2020-08-15 00:00:00.000000','Dr.Singla was very friendly and took good care of me along with the nurses Sarah and Fahme the radiology tech Hanh is very sweet. Carl and Genesis was very fast and nice I will be returning for any issues.',4),(754,'Nicole J.','/user_details?userid=WwC9NvEDQ48_uxpOsbsQcw',5,'2020-08-06 00:00:00.000000','I set up an appointment for Covid testing, from the moment I walked in I felt welcome, I was in and out of the facility within 45 minutes. Everyone was very helpful, Irvin and Marissa were very patient and they provided great service',4),(755,'Rachelle B.','/user_details?userid=_LQ41SxbkF983OB4woNQXw',5,'2020-08-15 00:00:00.000000','The staff were quick, friendly, attentive, and compassionate. Couldn\'t have asked for a better experience. Thank you!',5),(756,'Jennifer F.','/user_details?userid=63FXiGq_xbw9R8dpKmu1Zg',1,'2020-08-13 00:00:00.000000','Okay here\'s another update to why this place is a scam. Instead of the amount I previously put in my review. Now they\'re charging my insurance 2k. Mind you again, I was willing to pay the $175 from the start and the front desk said if I had insurance then to not worry because they\'d pay for everything. So I go from trying to pay a basic $175 to suddenly owing them $1,993.00 for a NEGATIVE COVID TEST. For a doctor to just come in the doorway and ask if I had symptoms, to which I replied no and he walked away. This place is complete trash. A scam.',9),(757,'Fatima P.','/user_details?userid=n_anvQRqe7cJzfRx4Zkbng',1,'2020-08-05 00:00:00.000000','Please do not come here for a covid test even if you need your results \"ASAP\". The reviews are not lies! They are trying to bill me $1,784.00 for my COVID exam! They did not let me know my insurance was \"out of network\" when they should AT least let you know as a COURTESY. On the other hand their service was great even though I was there from 2pm-8pm but don\'t let there people trick you. It is not $10 I am leaving this review for it is almost 2k. Please stay away!',9),(758,'Kelsey H.','/user_details?userid=rhdNyKa9qkU37p2yYJjT0A',2,'2020-08-03 00:00:00.000000','*UPDATE* It\'s been more then a month since the owner responded to my comment and suggested I email them, and STILL no response back to me.Came to this location after being referred by others who took the COVID rapid test. If I could have gone elsewhere I would have due to the rudeness of the front desk associate. Before arriving we looked on their website to see what we needed to do to have a COVID test done. Their website CLEARLY states \" If you have COVID-19 symptoms, no scheduling is required to get evaluated\". We arrived at the location and there was a security guard who stopped us before entering and asked if we had an appointment. I told her no and she then took a phone call on what looked to be her cell phone and made a hand gesture to come in. We walked in and a front desk associate asked what we needed. I explained we wanted to take a COVID test and explained our symptoms. She then spoke with another front desk associate who then came up to us and again asked us what we needed. I explained again that we wanted to take a COVID test and explained our symptoms and she asked if we had an appointment. I told her no and she said I would have to make an appointment online. I told her their website stated if you have COVID symptoms no appointment was needed. She then said because we are having shortness of breath and that is a life-threatening emergency that they would be able to see us.She handed us paper work and we took a seat. About 5 minutes later she asked out loud from behind the desk if we were done. I assumed she was yelling out at us because I saw no one else in the waiting room filling out paper work. I yelled out back at her no, thinking in my head you JUST gave us the paper work and why not call me by my name if you have a question? I was also helping my sister who was not an adult fill out her paper work as well.  Another few minutes passed and the same front desk associate said out loud \"what is your phone number\". I looked at her and asked if she was talking to me because there were other people in the waiting room and she was. Was I suppose to yell out my phone number back to her? Again she could have called me by my name or asked me to come up to the front desk rather then yell out what is my phone number. I didn\'t get her name but she was short and petite with long black hair, perhaps Hispanic / Filipino. Another few minutes passed and she yelled out for us to come up to the desk but I told her we are not done with the paperwork. She said that was fine and she would help us fill it out. She then took the paper work and flipped it to the pages that needed the signature and asked me to sign. I didn\'t even get a chance to read everything through?! I was already feed up with the way we were being treated and just signed the papers and gave them to her.  The actual process to take the test went good. There were two men who were helping us and they were both very friendly and explained everything to us very thorough. The same front desk associate came back to collect payment and this time she was humming and seemed to be more happy helping us? Yet, that didn\'t change my mind about the rude attitude she gave us earlier.',9),(759,'Mayra C.','/user_details?userid=hwe3VCsa185vofm3-coUSg',5,'2020-07-30 00:00:00.000000','Highly recommend this location.  All whole staff from front desk to Dr. Spohn have been very helpful and informative. -Mayra',12),(760,'Lorena D.','/user_details?userid=ikNE5YKJK-vhAP4YK6KgNw',5,'2020-07-27 00:00:00.000000','I have been going to this St. David\'s ER since 2012. I began to have some health issues at work and decided to go to this E.R. The nurses were very professional and kind, but so was the doctor that was in charge of my case. I had X-Rays taken and the tech was also very kind and professional.They found the reason I was having difficulties, so I was transported to where I could be helped the most.  Since then, other members of the family began to go to this E.R. when they needed fast, medical help. In the 8 years I have been coming to this E.R, we have gotten excellent medical service just about 90% of the time, and that kind of consistent  excellence is 1 in a million!',12),(761,'Angela R.','/user_details?userid=NA0yjbKH9k7QQkw2FvBfTg',3,'2020-08-03 00:00:00.000000','I understand that we\'re in the middle of a pandemic. I work as a healthcare worker too, so I understand how hectic it is. But when a mistake is made, a quick and polite apology is not too much to ask for, and today that did not happen.I won\'t give them anything less than 3 stars because I\'ve had previous great experiences but today\'s just really disappointed me and my family. I\'m beyond livid because the front desk employee and another employee did not verify the patient\'s full name and date of birth before discussing my mother\'s private information with the incorrect patient. Then when I expressed how upset this made me, they seemed to care less.Another RN apart from those 2 people came out and apologized for the mistake. A big thank you to her, that was very appreciated. Please make sure you have them double check DOB, and your full name. Thankful the other patient checked the paperwork & went back in when she realized their mistake.',13),(762,'Sonia E.','/user_details?userid=p_d063fBHhJz0QhbXLdABw',5,'2020-08-02 00:00:00.000000','Earlier today I had a minor mishap while washing my cuisinart blade.  I went to this care facility and immediately was given prompt, but caring attention.From the front desk personnel to Lindsey, Shelli, Chelsey and last, but not the least, Dr. Lingan.I really appreciated how efficient everyone was in my treatment and thankful for their care.I highly recommend this care facility for any medical needs and am thankful it is in my neighborhood!',13),(763,'Sarah B.','/user_details?userid=CqVmR8N-zhBqbzsj8VcwaQ',5,'2020-08-15 00:00:00.000000','I\'ve been to signature care several times and I always come back because their service is so great!! It\'s really nice to be greeted by really sweet people like Lorena and Rebecca to make you feel more comfortable at registration. My nurse, Jacob, and Dr. Vakey were very attentive to me and were very kind. Highly recommend!',14),(764,'Megan Z.','/user_details?userid=K4TBf3XQKb5hWAyvj75vTw',5,'2020-08-15 00:00:00.000000','I had a great experience at this urgent care today. The staff was very help and patient with me and Lorena and Rebecca were very helpful throughout the whole process. Everything was very clean and i felt super comfortable. I definitely recommend!',14),(765,'Shaina G.','/user_details?userid=_PDwx-MlT4KjYQ5gzF20Dw',5,'2020-08-12 00:00:00.000000','This 24 hour ER center was AMAZING! They got me in so quickly and the staff was SO kind! They really do care about their patients and enjoy their jobs, even during such a hard time.',18),(766,'Peter B.','/user_details?userid=CPWOgNdQSh1Hh3yV8IKiAw',1,'2020-07-27 00:00:00.000000','9:00pm appointment to wait two hours in the parking lot.   It\'s nearly midnight now and I\'m waiting for the results.  Dude who took my blood for the antibody test couldn\'t find my vein on my left arm.  I\'ve never had that happen. Cmon guys.  My three year old could run a tighter ship.  Are you hiring?',18); /*!40000 ALTER TABLE `yelp_yelpreview` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2020-08-24 14:41:54